SDKRef
SDKRef
SDKRef
VirtualBox
R
Version 5.1.26
c 2004-2017 Oracle Corporation
http://www.virtualbox.org
Contents
1 Introduction 21
1.1 Modularity: the building blocks of VirtualBox . . . . . . . . . . . . . . . . . . . 21
1.2 Two guises of the same Main API: the web service or COM/XPCOM . . . . . . 22
1.3 About web services in general . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
1.4 Running the web service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
1.4.1 Command line options of vboxwebsrv . . . . . . . . . . . . . . . . . . . 24
1.4.2 Authenticating at web service logon . . . . . . . . . . . . . . . . . . . . 25
2 Environment-specific notes 27
2.1 Using the object-oriented web service (OOWS) . . . . . . . . . . . . . . . . . . . 27
2.1.1 The object-oriented web service for JAX-WS . . . . . . . . . . . . . . . . 27
2.1.2 The object-oriented web service for Python . . . . . . . . . . . . . . . . 29
2.1.3 The object-oriented web service for PHP . . . . . . . . . . . . . . . . . 30
2.2 Using the raw web service with any language . . . . . . . . . . . . . . . . . . . 30
2.2.1 Raw web service example for Java with Axis . . . . . . . . . . . . . . . 30
2.2.2 Raw web service example for Perl . . . . . . . . . . . . . . . . . . . . . 31
2.2.3 Programming considerations for the raw web service . . . . . . . . . . 32
2.3 Using COM/XPCOM directly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
2.3.1 Python COM API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
2.3.2 Common Python bindings layer . . . . . . . . . . . . . . . . . . . . . . 36
2.3.3 C++ COM API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
2.3.4 Event queue processing . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
2.3.5 Visual Basic and Visual Basic Script (VBS) on Windows hosts . . . . . . 39
2.3.6 C binding to VirtualBox API . . . . . . . . . . . . . . . . . . . . . . . . 39
5 Classes (interfaces) 52
5.1 IAdditionsFacility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
5.1.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
5.2 IAdditionsStateChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . . . 52
5.2.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
5.3 IAppliance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
5.3.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
5.3.2 addPasswords . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
5.3.3 createVFSExplorer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
5.3.4 getMediumIdsForPasswordId . . . . . . . . . . . . . . . . . . . . . . . . 55
5.3.5 getPasswordIds . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
5.3.6 getWarnings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
5.3.7 importMachines . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
2
Contents
5.3.8 interpret . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
5.3.9 read . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
5.3.10 write . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
5.4 IAudioAdapter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
5.4.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
5.4.2 getProperty . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
5.4.3 setProperty . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
5.5 IBIOSSettings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
5.5.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
5.6 IBandwidthControl . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
5.6.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
5.6.2 createBandwidthGroup . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
5.6.3 deleteBandwidthGroup . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
5.6.4 getAllBandwidthGroups . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
5.6.5 getBandwidthGroup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
5.7 IBandwidthGroup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
5.7.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
5.8 IBandwidthGroupChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . . 61
5.8.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
5.9 ICPUChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
5.9.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
5.10 ICPUExecutionCapChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . 62
5.10.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
5.11 ICanShowWindowEvent (IVetoEvent) . . . . . . . . . . . . . . . . . . . . . . . . 62
5.11.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
5.12 ICertificate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
5.12.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
5.12.2 isCurrentlyExpired . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
5.12.3 queryInfo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
5.13 IClipboardModeChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . . . 65
5.13.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
5.14 IConsole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
5.14.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
5.14.2 addDiskEncryptionPassword . . . . . . . . . . . . . . . . . . . . . . . . 68
5.14.3 addDiskEncryptionPasswords . . . . . . . . . . . . . . . . . . . . . . . . 68
5.14.4 attachUSBDevice . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
5.14.5 clearAllDiskEncryptionPasswords . . . . . . . . . . . . . . . . . . . . . 69
5.14.6 createSharedFolder . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
5.14.7 detachUSBDevice . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70
5.14.8 findUSBDeviceByAddress . . . . . . . . . . . . . . . . . . . . . . . . . . 70
5.14.9 findUSBDeviceById . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70
5.14.10 getDeviceActivity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70
5.14.11 getGuestEnteredACPIMode . . . . . . . . . . . . . . . . . . . . . . . . . 71
5.14.12 getPowerButtonHandled . . . . . . . . . . . . . . . . . . . . . . . . . . 71
5.14.13 pause . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
5.14.14 powerButton . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
5.14.15 powerDown . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
5.14.16 powerUp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
5.14.17 powerUpPaused . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
5.14.18 removeDiskEncryptionPassword . . . . . . . . . . . . . . . . . . . . . . 72
5.14.19 removeSharedFolder . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
5.14.20 reset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
5.14.21 resume . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
3
Contents
5.14.22 sleepButton . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
5.14.23 teleport . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
5.15 IDHCPServer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
5.15.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
5.15.2 addGlobalOption . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
5.15.3 addVmSlotOption . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
5.15.4 getMacOptions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
5.15.5 getVmSlotOptions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
5.15.6 removeVmSlotOptions . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
5.15.7 setConfiguration . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
5.15.8 start . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
5.15.9 stop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
5.16 IDirectory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
5.16.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
5.16.2 close . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
5.16.3 read . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
5.17 IDisplay . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
5.17.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
5.17.2 attachFramebuffer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
5.17.3 completeVHWACommand . . . . . . . . . . . . . . . . . . . . . . . . . 78
5.17.4 detachFramebuffer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
5.17.5 drawToScreen . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
5.17.6 getScreenResolution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
5.17.7 invalidateAndUpdate . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
5.17.8 invalidateAndUpdateScreen . . . . . . . . . . . . . . . . . . . . . . . . 79
5.17.9 notifyHiDPIOutputPolicyChange . . . . . . . . . . . . . . . . . . . . . . 80
5.17.10 notifyScaleFactorChange . . . . . . . . . . . . . . . . . . . . . . . . . . 80
5.17.11 queryFramebuffer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
5.17.12 querySourceBitmap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
5.17.13 setScreenLayout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
5.17.14 setSeamlessMode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
5.17.15 setVideoModeHint . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
5.17.16 takeScreenShot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
5.17.17 takeScreenShotToArray . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
5.17.18 viewportChanged . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
5.18 IDisplaySourceBitmap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
5.18.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
5.18.2 queryBitmapInfo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
5.19 IDnDBase . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
5.19.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
5.19.2 addFormats . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
5.19.3 isFormatSupported . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
5.19.4 removeFormats . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
5.20 IDnDModeChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . . . . . . 84
5.20.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
5.21 IDnDSource (IDnDBase) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
5.21.1 dragIsPending . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
5.21.2 drop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
5.21.3 receiveData . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
5.22 IDnDTarget (IDnDBase) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
5.22.1 cancel . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
5.22.2 drop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
5.22.3 enter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
4
Contents
5.22.4 leave . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
5.22.5 move . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
5.22.6 sendData . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
5.23 IEmulatedUSB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
5.23.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
5.23.2 webcamAttach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
5.23.3 webcamDetach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
5.24 IEvent . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
5.24.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
5.24.2 setProcessed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
5.24.3 waitProcessed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
5.25 IEventListener . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
5.25.1 handleEvent . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
5.26 IEventSource . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
5.26.1 createAggregator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
5.26.2 createListener . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
5.26.3 eventProcessed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
5.26.4 fireEvent . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
5.26.5 getEvent . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
5.26.6 registerListener . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
5.26.7 unregisterListener . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
5.27 IEventSourceChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . . . . 93
5.27.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
5.28 IExtPack (IExtPackBase) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
5.28.1 queryObject . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
5.29 IExtPackBase . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
5.29.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94
5.29.2 queryLicense . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
5.30 IExtPackFile (IExtPackBase) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
5.30.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
5.30.2 install . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
5.31 IExtPackManager . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
5.31.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
5.31.2 cleanup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
5.31.3 find . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
5.31.4 isExtPackUsable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
5.31.5 openExtPackFile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
5.31.6 queryAllPlugInsForFrontend . . . . . . . . . . . . . . . . . . . . . . . . 97
5.31.7 uninstall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
5.32 IExtPackPlugIn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
5.32.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
5.33 IExtraDataCanChangeEvent (IVetoEvent) . . . . . . . . . . . . . . . . . . . . . . 98
5.33.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
5.34 IExtraDataChangedEvent (IEvent) . . . . . . . . . . . . . . . . . . . . . . . . . . 99
5.34.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
5.35 IFile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
5.35.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
5.35.2 close . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100
5.35.3 queryInfo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100
5.35.4 querySize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
5.35.5 read . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
5.35.6 readAt . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
5.35.7 seek . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
5
Contents
6
Contents
7
Contents
8
Contents
9
Contents
10
Contents
11
Contents
12
Contents
13
Contents
14
Contents
15
Contents
16
Contents
5.154.20registerMachine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 330
5.154.21removeDHCPServer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 331
5.154.22removeNATNetwork . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 331
5.154.23removeSharedFolder . . . . . . . . . . . . . . . . . . . . . . . . . . . . 331
5.154.24setExtraData . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 331
5.154.25setSettingsSecret . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 332
5.155 IVirtualBoxClient . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 332
5.155.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 332
5.155.2 checkMachineError . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 332
5.156 IVirtualBoxErrorInfo . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 333
5.156.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 333
5.157 IVirtualSystemDescription . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 334
5.157.1 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 334
5.157.2 addDescription . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
5.157.3 getDescription . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
5.157.4 getDescriptionByType . . . . . . . . . . . . . . . . . . . . . . . . . . . . 337
5.157.5 getValuesByType . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 337
5.157.6 setFinalValues . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 338
5.158 IWebsessionManager . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 338
5.158.1 getSessionObject . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 338
5.158.2 logoff . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 338
5.158.3 logon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 339
17
Contents
18
Contents
19
Contents
20
1 Introduction
VirtualBox comes with comprehensive support for third-party developers. This Software Devel-
opment Kit (SDK) contains all the documentation and interface files that are needed to write
code that interacts with VirtualBox.
The orange area represents code that runs in kernel mode, the blue area represents userspace
code.
At the bottom of the stack resides the hypervisor the core of the virtualization engine, con-
trolling execution of the virtual machines and making sure they do not conflict with each other
or whatever the host computer is doing otherwise.
On top of the hypervisor, additional internal modules provide extra functionality. For example,
the RDP server, which can deliver the graphical output of a VM remotely to an RDP client, is a
separate module that is only loosely tacked into the virtual graphics device. Live Migration and
Resource Monitor are additional modules currently in the process of being added to VirtualBox.
What is primarily of interest for purposes of the SDK is the API layer block that sits on top of
all the previously mentioned blocks. This API, which we call the Main API, exposes the entire
feature set of the virtualization engine below. It is completely documented in this SDK Reference
see chapter 5, Classes (interfaces), page 52 and chapter 6, Enumerations (enums), page 340
and available to anyone who wishes to control VirtualBox programmatically. We chose the
name Main API to differentiate it from other programming interfaces of VirtualBox that may
be publicly accessible.
With the Main API, you can create, configure, start, stop and delete virtual machines, retrieve
performance statistics about running VMs, configure the VirtualBox installation in general, and
21
1 Introduction
more. In fact, internally, the front-end programs VirtualBox and VBoxManage use nothing but
this API as well there are no hidden backdoors into the virtualization engine for our own front-
ends. This ensures the entire Main API is both well-documented and well-tested. (The same
applies to VBoxHeadless, which is not shown in the image.)
1.2 Two guises of the same Main API: the web service or
COM/XPCOM
There are several ways in which the Main API can be called by other code:
1. VirtualBox comes with a web service that maps nearly the entire Main API. The web ser-
vice ships in a stand-alone executable (vboxwebsrv) that, when running, acts as an HTTP
server, accepts SOAP connections and processes them.
Since the entire web service API is publicly described in a web service description file (in
WSDL format), you can write client programs that call the web service in any language with
a toolkit that understands WSDL. These days, that includes most programming languages
that are available: Java, C++, .NET, PHP, Python, Perl and probably many more.
All of this is explained in detail in subsequent chapters of this book.
There are two ways in which you can write client code that uses the web service:
a) For Java as well as Python, the SDK contains easy-to-use classes that allow you to use
the web service in an object-oriented, straightforward manner. We shall refer to this
as the object-oriented web service (OOWS).
The OO bindings for Java are described in chapter 11, Using Java API, page 392, those
for Python in chapter 2.1.2, The object-oriented web service for Python, page 29.
b) Alternatively, you can use the web service directly, without the object-oriented client
layer. We shall refer to this as the raw web service.
You will then have neither native object orientation nor full type safety, since web
services are neither object-oriented nor stateful. However, in this way, you can write
client code even in languages for which we do not ship object-oriented client code; all
you need is a programming language with a toolkit that can parse WSDL and generate
client wrapper code from it.
We describe this further in chapter 2.2, Using the raw web service with any language,
page 30, with samples for Java and Perl.
2. Internally, for portability and easier maintenance, the Main API is implemented using the
Component Object Model (COM), an interprocess mechanism for software components
originally introduced by Microsoft for Microsoft Windows. On a Windows host, VirtualBox
will use Microsoft COM; on other hosts where COM is not present, it ships with XPCOM,
a free software implementation of COM originally created by the Mozilla project for their
browsers.
So, if you are familiar with COM and the C++ programming language (or with any other
programming language that can handle COM/XPCOM objects, such as Java, Visual Basic or
C#), then you can use the COM/XPCOM API directly. VirtualBox comes with all necessary
files and documentation to build fully functional COM applications. For an introduction,
please see chapter 2.3, Using COM/XPCOM directly, page 36 below.
The VirtualBox front-ends (the graphical user interfaces as well as the command line),
which are all written in C++, use COM/XPCOM to call the Main API. Technically, the web
service is another front-end to this COM API, mapping almost all of it to SOAP clients.
22
1 Introduction
In the following chapters, we will describe the different ways in which to program VirtualBox,
starting with the method that is easiest to use and then increase complexity as we go along.
1. The VirtualBox web service (the server): this is the vboxwebsrv executable shipped with
VirtualBox. Once you start this executable (which acts as a HTTP server on a specific
TCP/IP port), clients can connect to the web service and thus control a VirtualBox installa-
tion.
2. VirtualBox also comes with WSDL files that describe the services provided by the web ser-
vice. You can find these files in the sdk/bindings/webservice/ directory. These files are
understood by the web service toolkits that are shipped with most programming languages
and enable you to easily access a web service even if you dont use our object-oriented
client layers. VirtualBox is shipped with pregenerated web service glue code for several
languages (Python, Perl, Java).
3. A client that connects to the web service in order to control the VirtualBox installation.
Unless you play with some of the samples shipped with VirtualBox, this needs to be written
by you.
1 Insome ways, web services promise to deliver the same thing as CORBA and DCOM did years ago. However, while
these previous technologies relied on specific binary protocols and thus proved to be difficult to use between diverging
platforms, web services circumvent these incompatibilities by using text-only standards like HTTP and XML. On the
downside (and, one could say, typical of things related to XML), a lot of standards are involved before a web service
can be implemented. Many of the standards invented around XML are used one way or another. As a result, web
services are slow and verbose, and the details can be incredibly messy. The relevant standards here are called SOAP
and WSDL, where SOAP describes the format of the messages that are exchanged (an XML document wrapped in
an HTTP header), and WSDL is an XML format that describes a complete API provided by a web service. WSDL in
turn uses XML Schema to describe types, which is not exactly terse either. However, as you will see from the samples
provided in this chapter, the VirtualBox web service shields you from these details and is easy to use.
23
1 Introduction
Note: The web service executable is not contained with the VirtualBox SDK, but instead
ships with the standard VirtualBox binary package for your specific platform. Since the
SDK contains only platform-independent text files and documentation, the binaries are
instead shipped with the platform-specific packages. For this reason the information
how to run it as a service is included in the VirtualBox documentation.
The vboxwebsrv program, which implements the web service, is a text-mode (console) pro-
gram which, after being started, simply runs until it is interrupted with Ctrl-C or a kill command.
Once the web service is started, it acts as a front-end to the VirtualBox installation of
the user account that it is running under. In other words, if the web service is run under
the user account of user1, it will see and manipulate the virtual machines and other data
represented by the VirtualBox data of that user (for example, on a Linux machine, under
/home/user1/.config/VirtualBox; see the VirtualBox User Manual for details on where this
data is stored).
24
1 Introduction
--timeout (or -t): This specifies the session timeout, in seconds, and defaults to 300 (five
minutes). A web service client that has logged on but makes no calls to the web service
will automatically be disconnected after the number of seconds specified here, as if it had
called the IWebSessionManager::logoff() method provided by the web service itself.
It is normally vital that each web service client call this method, as the web service can
accumulate large amounts of memory when running, especially if a web service client does
not properly release managed object references. As a result, this timeout value should not
be set too high, especially on machines with a high load on the web service, or the web
service may eventually deny service.
--check-interval (or -i): This specifies the interval in which the web service checks
for timed-out clients, in seconds, and defaults to 5. This normally does not need to be
changed.
--threads (or -T): This specifies the maximum number or worker threads, and defaults
to 100. This normally does not need to be changed.
--keepalive (or -k): This specifies the maximum number of requests which can be sent
in one web service connection, and defaults to 100. This normally does not need to be
changed.
--authentication (or -A): This specifies the desired web service authentication method.
If the parameter is not specified or the empty string is specified it does not change the
authentication method, otherwise it is set to the specified value. Using this parameter is a
good measure against accidental misconfiguration, as the web service ensures periodically
that it isnt changed.
--verbose (or -v): Normally, the web service outputs only brief messages to the console
each time a request is served. With this option, the web service prints much more de-
tailed data about every request and the COM methods that those requests are mapped to
internally, which can be useful for debugging client programs.
--pidfile (or -P): Name of the PID file which is created when the daemon was started.
--logfile (or -F) <file>: If this is specified, the web service not only prints its output
to the console, but also writes it to the specified file. The file is created if it does not exist;
if it does exist, new output is appended to it. This is useful if you run the web service
unattended and need to debug problems after they have occurred.
--logrotate (or -R): Number of old log files to keep, defaults to 10. Log rotation is
disabled if set to 0.
--logsize (or -S): Maximum size of log file in bytes, defaults to 100MB. Log rotation is
triggered if the file grows beyond this limit.
--loginterval (or -I): Maximum time interval to be put in a log file before rotation is
triggered, in seconds, and defaults to one day.
25
1 Introduction
For testing purposes, it is recommended that you first disable authentication with this com-
mand:
VBoxManage setproperty websrvauthlibrary null
Warning: This will cause all logons to succeed, regardless of user name or password.
This should of course not be used in a production environment.
Generally, the mechanism by which clients are authenticated is configurable by way of the
VBoxManage command:
This way you can specify any shared object/dynamic link module that conforms with the
specifications for VirtualBox external authentication modules as laid out in section VRDE au-
thentication of the VirtualBox User Manual; the web service uses the same kind of modules as
the VirtualBox VRDE server. For technical details on VirtualBox external authentication modules
see chapter 10, VirtualBox external authentication modules, page 390
By default, after installation, the web service uses the VBoxAuth module that ships with
VirtualBox. This module uses PAM on Linux hosts to authenticate users. Any valid user-
name/password combination is accepted, it does not have to be the username and password
of the user running the web service daemon. Unless vboxwebsrv runs as root, PAM authenti-
cation can fail, because sometimes the file /etc/shadow, which is used by PAM, is not read-
able. On most Linux distribution PAM uses a suid root helper internally, so make sure you test
this before deploying it. One can override this behavior by setting the environment variable
VBOX_PAM_ALLOW_INACTIVE which will suppress failures when unable to read the shadow pass-
word file. Please use this variable carefully, and only if you fully understand what youre doing.
26
2 Environment-specific notes
The Main API described in chapter 5, Classes (interfaces), page 52 and chapter 6, Enumerations
(enums), page 340 is mostly identical in all the supported programming environments which
have been briefly mentioned in the introduction of this book. As a result, the Main APIs general
concepts described in chapter 3, Basic VirtualBox concepts; some examples, page 47 are the same
whether you use the object-oriented web service (OOWS) for JAX-WS or a raw web service
connection via, say, Perl, or whether you use C++ COM bindings.
Some things are different depending on your environment, however. These differences are
explained in this chapter.
2.1.1.1 Preparations
Since JAX-WS is already integrated into Java 6, no additional preparations are needed for Java
6.
If you are using Java 5 (JDK 1.5.x), you will first need to download and install an external
JAX-WS implementation, as Java 5 does not support JAX-WS out of the box; for example, you can
27
2 Environment-specific notes
The web service now waits for connections and will run until you press Ctrl+C in this
second terminal. The -v argument causes it to log all connections to the terminal. (See
chapter 1.4, Running the web service, page 24 for details on how to run the web service.)
3. Back in the first terminal and still in the samples directory, to start a simple client example
just type:
make run16
The clienttest sample imitates a few typical command line tasks that VBoxManage,
VirtualBoxs regular command-line front-end, would provide (see the VirtualBox User Manual
for details). In particular, you can run:
java clienttest show vms: show the virtual machines that are registered locally.
java clienttest list hostinfo: show various information about the host this
VirtualBox installation runs on.
java clienttest startvm <vmname|uuid>: start the given virtual machine.
The clienttest.java sample code illustrates common basic practices how to use the
VirtualBox OOWS for JAX-WS, which we will explain in more detail in the following chapters.
28
2 Environment-specific notes
2. After that, the code calls IWebsessionManager::logon(), which is the first call that actually
communicates with the server. This authenticates the client with the web service and
returns an instance of IVirtualBox, the most fundamental interface of the VirtualBox web
service, from which all other functionality can be derived.
If logon doesnt work, please take another look at chapter 1.4.2, Authenticating at web
service logon, page 25.
2 On On Mac OS X only the Python versions bundled with the OS are officially supported. This means 2.6 and 2.7 for
10.9 and later.
3 See http://sourceforge.net/project/showfiles.php?group_id=78018.
29
2 Environment-specific notes
See chapter 4, The VirtualBox shell, page 50 for more details on the shells functionality. For
you, as a VirtualBox application developer, the vboxshell sample could be interesting as an exam-
ple of how to write code targeting both local and remote cases (COM/XPCOM and SOAP). The
common part of the shell is the same the only difference is how it interacts with the invocation
layer. You can use the connect shell command to connect to remote VirtualBox servers; in this
case you can skip starting the local web server.
1. Any COM method call becomes a plain function call in the raw web service, with the
object as an additional first parameter (before the real parameters listed in the docu-
mentation). So when the documentation says that the IVirtualBox interface supports
the createMachine() method (see IVirtualBox::createMachine()), the web service op-
eration is IVirtualBox_createMachine(...), and a managed object reference to an
IVirtualBox object must be passed as the first argument.
2. For attributes in interfaces, there will be at least one get function; there will also be a
set function, unless the attribute is readonly. The attribute name will be appended to
the get or set prefix, with a capitalized first letter. So, the version readonly attribute of
the IVirtualBox interface can be retrieved by calling IVirtualBox_getVersion(vbox),
with vbox being the VirtualBox object.
3. Whenever the API documentation says that a method (or an attribute getter) returns an
object, it will returned a managed object reference in the web service instead. As said
above, managed object references should be released if the web service client does not log
off again immediately!
1. Create a working directory somewhere. Under your VirtualBox installation directory, find
the sdk/webservice/samples/java/axis/ directory and copy the file clienttest.java
to your working directory.
2. Open a terminal in your working directory. Execute the following command:
4 See https://www.php.net/soap.
30
2 Environment-specific notes
Use the directory where the Axis JAR files are located. Mind the quotes so that your shell
passes the * character to the java executable without expanding. Alternatively, add a
corresponding -classpath argument to the java call above.
If the command executes successfully, you should see an org directory with subdirecto-
ries containing Java source files in your working directory. These classes represent the
interfaces that the VirtualBox web service offers, as described by the WSDL file.
This is the bit that makes using web services so attractive to client developers: if a lan-
guages toolkit understands WSDL, it can generate large amounts of support code auto-
matically. Clients can then easily use this support code and can be done with just a few
lines of code.
3. Next, compile the clienttest.java source:
javac clienttest.java
The web service now waits for connections and will run until you press Ctrl+C in this
second terminal. The -v argument causes it to log all connections to the terminal. (See
chapter 1.4, Running the web service, page 24 for details on how to run the web service.)
5. Back in the original terminal where you compiled the Java source, run the resulting binary,
which will then connect to the web service:
java clienttest
The client sample will connect to the web service (on localhost, but the code could be
changed to connect remotely if the web service was running on a different machine) and
make a number of method calls. It will output the version number of your VirtualBox
installation and a list of all virtual machines that are currently registered (with a bit of
seemingly random data, which will be explained later).
1. If SOAP::Lite is not yet installed on your system, you will need to install the package
first. On Debian-based systems, the package is called libsoap-lite-perl; on Gentoo, its
dev-perl/SOAP-Lite.
31
2 Environment-specific notes
3. To start the VirtualBox web service, open a second terminal and change to the directory
where the VirtualBox executables are located. Then type:
./vboxwebsrv -v
The web service now waits for connections and will run until you press Ctrl+C in this
second terminal. The -v argument causes it to log all connections to the terminal. (See
chapter 1.4, Running the web service, page 24 for details on how to run the web service.)
4. In the first terminal with the Perl sample, run the clienttest.pl script:
perl -I ../lib clienttest.pl
Web services, as expressed by WSDL, are not object-oriented. Even worse, they are nor-
mally stateless (or, in web services terminology, loosely coupled). Web service operations
are entirely procedural, and one cannot normally make assumptions about the state of a
web service between function calls.
In particular, this normally means that you cannot work on objects in one method call that
were created by another call.
By contrast, the VirtualBox Main API, being expressed in COM, is object-oriented and works
entirely on objects, which are grouped into public interfaces, which in turn have attributes
and methods associated with them.
For the VirtualBox web service, this results in three fundamental conventions:
1. All function names in the VirtualBox web service consist of an interface name and a
method name, joined together by an underscore. This is because there are only functions
(operations) in WSDL, but no classes, interfaces, or methods.
In addition, all calls to the VirtualBox web service (except for logon, see below) take a
managed object reference as the first argument, representing the object upon which the
underlying method is invoked. (Managed object references are explained in detail below;
see chapter 2.2.3.3, Managed object references, page 34.)
So, when one would normally code, in the pseudo-code of an object-oriented language, to
invoke a method upon an object:
IMachine machine;
result = machine.getName();
In the VirtualBox web service, this looks something like this (again, pseudo-code):
IMachineRef machine;
result = IMachine_getName(machine);
32
2 Environment-specific notes
2. To make the web service stateful, and objects persistent between method calls, the
VirtualBox web service introduces a session manager (by way of the IWebsessionManager
interface), which manages object references. Any client wishing to interact with the web
service must first log on to the session manager and in turn receives a managed object ref-
erence to an object that supports the IVirtualBox interface (the basic interface in the Main
API).
In other words, as opposed to other web services, the VirtualBox web service is both object-
oriented and stateful.
(The managed object reference oVirtualBox is just a string consisting of digits and dashes.
However, it is a string with a meaning and will be checked by the web service. For details,
see below. As hinted above, IWebsessionManager::logon() is the only operation provided
by the web service which does not take a managed object reference as the first argument!)
3. The VirtualBox Main API documentation says that the IVirtualBox interface has a version
attribute, which is a string. For each attribute, there is a get and a set method in
COM, which maps to according operations in the web service. So, to retrieve the version
attribute of this IVirtualBox object, the web service client does this:
string version;
version = webservice.IVirtualBox_getVersion(oVirtualBox);
print version;
4. The web service client calls IWebsessionManager::logoff() with the VirtualBox managed
object reference. This will clean up all allocated resources.
33
2 Environment-specific notes
Internally, in the web service process, each managed object reference is simply a small data
structure, containing a COM pointer to the real COM object, the web session ID and the object
ID. This structure is allocated on creation and stored efficiently in hashes, so that the web service
can look up the COM object quickly whenever a web service client wishes to make a method call.
The random session ID also ensures that one web service client cannot intercept the objects of
another.
Managed object references are not destroyed automatically and must be released by explicitly
calling IManagedObjectRef::release(). This is important, as otherwise hundreds or thousands of
managed object references (and corresponding COM objects, which can consume much more
memory!) can pile up in the web service process and eventually cause it to deny service.
To reiterate: The underlying COM object, which the reference points to, is only freed if the
managed object reference is released. It is therefore vital that web service clients properly clean
up after the managed object references that are returned to them.
When a web service client calls IWebsessionManager::logoff(), all managed object references
created during the session are automatically freed. For short-lived sessions that do not create a
lot of objects, logging off may therefore be sufficient, although it is certainly not best practice.
34
2 Environment-specific notes
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:test="http://test/">
<SOAP-ENV:Body>
<test:SayHello>
<name>Peter</name>
</test:SayHello>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
A similar message the response message would be sent back from the web service to the
client, containing the return value Hello Peter.
Most programming languages provide automatic support to generate such messages whenever
code in that programming language makes such a request. In other words, these programming
languages allow for writing something like this (in pseudo-C++ code):
webServiceClass service("localhost", 18083); // server and port
string result = service.SayHello("Peter"); // invoke remote procedure
and would, for these two pseudo-lines, automatically perform these steps:
1. prepare a connection to a web service running on port 18083 of localhost;
2. for the SayHello() function of the web service, generate a SOAP message like in the above
example by encoding all arguments of the remote procedure call (which could involve all
kinds of type conversions and complex marshalling for arrays and structures);
3. connect to the web service via HTTP and send that message;
4. wait for the web service to send a response message;
5. decode that response message and put the return value of the remote procedure into the
result variable.
Service descriptions in WSDL In the above explanations about SOAP, it was left open how
the programming language learns about how to translate function calls in its own syntax into
proper SOAP messages. In other words, the programming language needs to know what opera-
tions the web service supports and what types of arguments are required for the operations data
in order to be able to properly serialize and deserialize the data to and from the web service.
For example, if a web service operation expects a number in double floating point format for a
particular parameter, the programming language cannot send to it a string instead.
For this, the Web Service Definition Language (WSDL) was invented, another XML substandard
that describes exactly what operations the web service supports and, for each operation, which
parameters and types are needed with each request and response message. WSDL descriptions
can be incredibly verbose, and one of the few good things that can be said about this standard is
that it is indeed supported by most programming languages.
So, if it is said that a programming language supports web services, this typically means
that a programming language has support for parsing WSDL files and somehow integrating the
remote procedure calls into the native language syntax for example, like in the Java sample
shown in chapter 2.2.1, Raw web service example for Java with Axis, page 30.
For details about how programming languages support web services, please refer to the docu-
mentation that comes with the individual languages. Here are a few pointers:
1. For C++, among many others, the gSOAP toolkit is a good option. Parts of gSOAP are
also used in VirtualBox to implement the VirtualBox web service.
2. For Java, there are several implementations already described in this document (see chap-
ter 2.1.1, The object-oriented web service for JAX-WS, page 27 and chapter 2.2.1, Raw web
service example for Java with Axis, page 30).
35
2 Environment-specific notes
3. Perl supports WSDL via the SOAP::Lite package. This in turn comes with a tool called
stubmaker.pl that allows you to turn any WSDL file into a Perl package that you can
import. (You can also import any WSDL file live by having it parsed every time the script
runs, but that can take a while.) You can then code (again, assuming the above example):
my $result = servicename->sayHello("Peter");
A sample that uses SOAP::Lite was described in chapter 2.2.2, Raw web service example for
Perl, page 31.
vbox = win32com.client.Dispatch("VirtualBox.VirtualBox")
session = win32com.client.Dispatch("VirtualBox.Session")
mach = vbox.findMachine("uuid or name of machine to start")
progress = mach.launchVMProcess(session, "gui", "")
progress.waitForCompletion(-1)
36
2 Environment-specific notes
We supply the VirtualBoxManager constructor with 2 arguments: style and parameters. Style
defines which bindings style to use (could be MSCOM, XPCOM or WEBSERVICE), and if set
to None defaults to usable platform bindings (MS COM on Windows, XPCOM on other platforms).
The second argument defines parameters, passed to the platform-specific module, as we do in
the second example, where we pass username and password to be used to authenticate against
the web service.
After obtaining the VirtualBoxManager instance, one can perform operations on the IVirtu-
alBox class. For example, the following code will a start virtual machine by name or ID:
from vboxapi import VirtualBoxManager
mgr = VirtualBoxManager(None, None)
vbox = mgr.vbox
name = "Linux"
mach = vbox.findMachine(name)
session = mgr.getSessionObject(vbox)
progress = mach.launchVMProcess(session, "gui", "")
progress.waitForCompletion(-1)
mgr.closeMachineSession(session)
Following code will print all registered machines and their log folders
from vboxapi import VirtualBoxManager
mgr = VirtualBoxManager(None, None)
vbox = mgr.vbox
Code above demonstrates cross-platform access to array properties (certain limitations prevent
one from using vbox.machines to access a list of available virtual machines in case of XPCOM),
and a mechanism of uniform session creation and closing (mgr.getSessionObject()).
In case you want to use the glue layer with a different Python installation, use these steps in a
shell to add the necessary files:
# cd VBOX_INSTALL_PATH/sdk/installer
# PYTHON vboxapisetup.py install
37
2 Environment-specific notes
1. Attribute getters and setters. COM has the notion of attributes in interfaces, which
roughly compare to C++ member variables in classes. The difference is that for each
attribute declared in an interface, COM automatically provides a get method to return
the attributes value. Unless the attribute has been marked as readonly, a set attribute
is also provided.
To illustrate, the IVirtualBox interface has a version attribute, which is read-only and of
the wstring type (the standard string type in COM). As a result, you can call the get
method for this attribute to retrieve the version number of VirtualBox.
Unfortunately, the implementation differs between COM and XPCOM. Microsoft COM
names the get method like this: get_Attribute(), whereas XPCOM uses this syn-
tax: GetAttribute() (and accordingly for set methods). To hide these differences, the
VirtualBox glue code provides the COMGETTER(attrib) and COMSETTER(attrib) macros.
So, COMGETTER(version)() (note, two pairs of brackets) expands to get_Version() on
Windows and GetVersion() on other platforms.
2. Unicode conversions. While the rest of the modern world has pretty much settled on
encoding strings in UTF-8, COM, unfortunately, uses UCS-16 encoding. This requires a lot
of conversions, in particular between the VirtualBox Main API and the Qt GUI, which, like
the rest of Qt, likes to use UTF-8.
To facilitate these conversions, VirtualBox provides the com::Bstr and com::Utf8Str
classes, which support all kinds of conversions back and forth.
3. COM autopointers. Possibly the greatest pain of using COM reference counting is
alleviated by the ComPtr<> template provided by the ptr.h file in the glue layer.
38
2 Environment-specific notes
can be used for both blocking and non-blocking operations. For the Python bindings, a common
layer provides the method
VirtualBoxManager.waitForEvents(ms)
2.3.5 Visual Basic and Visual Basic Script (VBS) on Windows hosts
On Windows hosts, one can control some of the VirtualBox Main API functionality from VBS
scripts, and pretty much everything from Visual Basic programs.5
VBS is scripting language available in any recent Windows environment. As an example, the
following VBS code will print VirtualBox version:
set vb = CreateObject("VirtualBox.VirtualBox")
Wscript.Echo "VirtualBox version " & vb.version
Dim vb As VirtualBox.IVirtualBox
vb = CreateObject("VirtualBox.VirtualBox")
machines = ""
For Each m In vb.Machines
m = m & " " & m.Name
Next
39
2 Environment-specific notes
/*
* VBoxCGlueInit() loads the necessary dynamic library, handles errors
* (producing an error message hinting what went wrong) and gives you
* the pointer to the function table (g_pVBoxFuncs).
*
* Once you get the function table, then how and which functions
* to use is explained below.
*
* g_pVBoxFuncs->pfnClientInitialize does all the necessary startup
* action and provides us with pointers to an IVirtualBoxClient instance.
* It should be matched by a call to g_pVBoxFuncs->pfnClientUninitialize()
* when done.
*/
if (VBoxCGlueInit())
{
fprintf(stderr, "s: FATAL: VBoxCGlueInit failed: %s\n",
argv[0], g_szVBoxErrMsg);
40
2 Environment-specific notes
return EXIT_FAILURE;
}
g_pVBoxFuncs->pfnClientInitialize(NULL, &vboxclient);
if (!vboxclient)
{
fprintf(stderr, "%s: FATAL: could not get VirtualBoxClient reference\n",
argv[0]);
return EXIT_FAILURE;
}
If vboxclient is still NULL this means the initializationi failed and the VirtualBox C API cannot
be used.
It is possible to write C applications using multiple threads which all use the VirtualBox API, as
long as youre initializing the C API in each thread which your application creates. This is done
with g_pVBoxFuncs->pfnClientThreadInitialize() and likewise before the thread is termi-
nated the API must be uninitialized with g_pVBoxFuncs->pfnClientThreadUninitialize().
You dont have to use these functions in worker threads created by COM/XPCOM (which you
might observe if your code uses active event handling), everything is initialized correctly already.
On Windows the C bindings create a marshaller which supports a wide range of COM threading
models, from STA to MTA, so you dont have to worry about these details unless you plan to use
active event handlers. See the sample code how to get this to work reliably (in other words think
twice if passive event handling isnt the better solution after you looked at the sample code).
rc = IVirtualBox_get_Revision(vbox, &revision);
if (SUCCEEDED(rc))
{
printf("Revision: %u\n", revision);
}
The convenience macros for calling a method are named by prepending the method name with
the interface name (using _as the separator).
41
2 Environment-specific notes
So far only attribute getters were illustrated, but generic method calls are straightforward,
too:
IMachine *machine = NULL;
BSTR vmname = ...;
...
/*
* Calling IMachine::findMachine(...)
*/
rc = IVirtualBox_FindMachine(vbox, vmname, &machine);
All objects with their methods and attributes are documented in chapter 5, Classes (interfaces),
page 52.
The ownership of a string determines who is responsible for releasing resources associated with
the string. Whenever the API creates a string (essentially for output parameters), ownership is
transferred to the caller. To avoid resource leaks, the caller should release resources once the
string is no longer needed. There are plenty of examples in the sample code.
42
2 Environment-specific notes
Likewise, getting arrays results from output parameters is done using helper functions which
manage memory allocations as part of their other functionality:
SAFEARRAY *psa = g_pVBoxFuncs->pfnSafeArrayOutParamAlloc();
ULONG *pData;
ULONG cElements;
IArrayDemo_ReturnArray(pThis, ComSafeArrayAsOutTypeParam(psa, ULONG));
g_pVBoxFuncs->pfnSafeArrayCopyOutParamHelper((void **)&pData, &cElements, VT_I4, psa);
g_pVBoxFuncs->pfnSafeArrayDestroy(psa);
This covers the necessary functionality for all array element types except interface references.
These need special helpers to manage the reference counting correctly. The following code
snippet gets the list of VMs, and passes the first IMachine reference to another API function
(assuming that there is at least one element in the array, to simplify the example):
SAFEARRAY psa = g_pVBoxFuncs->pfnSafeArrayOutParamAlloc();
IMachine **machines = NULL;
ULONG machineCnt = 0;
ULONG i;
IVirtualBox_get_Machines(virtualBox, ComSafeArrayAsOutIfaceParam(machinesSA, IMachine *));
g_pVBoxFuncs->pfnSafeArrayCopyOutIfaceParamHelper((IUnknown ***)&machines, &machineCnt, machinesSA);
g_pVBoxFuncs->pfnSafeArrayDestroy(machinesSA);
/* Now "machines" contains the IMachine references, and machineCnt the
* number of elements in the array. */
...
SAFEARRAY *psa = g_pVBoxFuncs->pfnSafeArrayCreateVector(VT_IUNKNOWN, 0, 1);
g_pVBoxFuncs->pfnSafeArrayCopyInParamHelper(psa, (void *)&machines[0], sizeof(machines[0]));
IVirtualBox_GetMachineStates(ComSafeArrayAsInParam(psa), ...);
...
g_pVBoxFuncs->pfnSafeArrayDestroy(psa);
for (i = 0; i < machineCnt; ++i)
{
IMachine *machine = machines[i];
IMachine_Release(machine);
}
free(machines);
Handling output parameters needs more special effort than input parameters, thus only for
the former there are special helpers, and the latter is handled through the generic array support.
The actual event handler implementation is quite tedious, as it has to implement a complete
API interface. Especially on Windows it is a lot of work to implement the complicated IDispatch
43
2 Environment-specific notes
interface, requiring to load COM type information and using it in the IDispatch method imple-
mentation. Overall this is quite tedious compared to passive event handling.
Passive event handling uses a similar event loop structure, which requires calling the following
function in a loop, and processing the returned event appropriately:
rc = IEventSource_GetEvent(pEventSource, pListener, cTimeoutMS, &pEvent);
After processing the event it needs to be marked as processed with the following method call:
rc = IEventSource_EventProcessed(pEventSource, pListener, pEvent);
This is vital for vetoable events, as they would be stuck otherwise, waiting whether the veto
comes or not. It does not do any harm for other event types, and in the end is cheaper than
checking if the event at hand is vetoable or not.
The general event handling concepts are described in the API specification (see chapter 3.4,
VirtualBox events, page 48), including how to aggregate multiple event sources for processing
in one event loop. As mentioned, the sample illustrates the practical aspects of how to use
both types of event handling, active and passive, from a C application. Additional hints are in
the comments documenting the helper methods in VBoxCAPI_v4_3.h. The code complexity of
active event handling (and its inherenly platform/compiler specific aspects) should be motivation
to use passive event handling whereever possible.
...
/*
* Make sure g_pVBoxFuncs->pfnClientUninitialize() is called at exit, no
* matter if we return from the initial call to main or call exit()
* somewhere else. Note that atexit registered functions are not
* called upon abnormal termination, i.e. when calling abort() or
* signal().
*/
if (atexit(g_pVBoxFuncs->pfnClientUninitialize()) != 0) {
fprintf(stderr, "failed to register g_pVBoxFuncs->pfnClientUninitialize()\n");
exit(EXIT_FAILURE);
}
Another idea would be to write your own void myexit(int status) function, calling
g_pVBoxFuncs->pfnClientUninitialize() followed by the real exit(), and use it instead
of exit() throughout your program and at the end of main.
If you expect the program to be terminated by a signal (e.g. user types CTRL-C sending
SIGINT) you might want to install a signal handler setting a flag noting that a signal was sent
and then calling g_pVBoxFuncs->pfnClientUninitialize() later on, not from the handler
itself.
That said, if a client program forgets to call g_pVBoxFuncs->pfnClientUninitialize() be-
fore it terminates, there is a mechanism in place which will eventually release references held by
the client. On Windows it can take quite a while, in the order of 6-7 minutes.
44
2 Environment-specific notes
# Link program.
program: program.o VBoxCAPICGlue.o VirtualBox_i.o
$(CC) -o $@ $^ -ldl -lpthread
45
2 Environment-specific notes
this area. The code should be double checked if it uses the correct way to manage memory, and
is freeing it only after the last use.
Note: This section applies to Linux, Mac OS X and Solaris hosts only and describes
deprecated use of the API from C.
Starting with version 2.2, VirtualBox offers a C binding for its API which works only on plat-
forms using XPCOM. Refer to the old SDK documentation (included in the SDK packages for
version 4.3.6 or earlier), it still applies unchanged. The fundamental concepts are similar (but
the syntactical details are quite different) to the newer cross-platform C binding which should be
used for all new code, as the support for the old C binding will go away in a major release after
version 4.3.
46
3 Basic VirtualBox concepts; some
examples
The following explains some basic VirtualBox concepts such as the VirtualBox object, sessions and
how virtual machines are manipulated and launched using the Main API. The coding examples
use a pseudo-code style closely related to the object-oriented web service (OOWS) for JAX-WS.
Depending on which environment you are using, you will need to adjust the examples.
Boolean attribute getters can sometimes be called isAttribute() due to JAX-WS naming
conventions.
47
3 Basic VirtualBox concepts; some examples
This session object must then be used like a mutex semaphore in common programming envi-
ronments. Before you can change machine settings, you must write-lock the machine by calling
IMachine::lockMachine() with your processs session object.
After the machine has been locked, the ISession::machine attribute contains a copy of the
original IMachine object upon which the session was opened, but this copy is mutable: you can
invoke set methods on it.
When done making the changes to the machine, you must call IMachine::saveSettings(), which
will copy the changes you have made from your mutable machine back to the real machine and
write them out to the machine settings XML file. This will make your changes permanent.
Finally, it is important to always unlock the machine again, by calling ISession::unlockMachine().
Otherwise, when the calling process end, the machine will receive the aborted state, which can
lead to loss of data.
So, as an example, the sequence to change a machines memory to 1024 MB is something like
this:
IWebsessionManager mgr ...;
IVirtualBox vbox = mgr.logon(user, pass);
...
IMachine machine = ...; // read-only machine
ISession session = mgr.getSessionObject();
machine.lockMachine(session, LockType.Write); // machine is now locked for writing
IMachine mutable = session.getMachine(); // obtain the mutable machine copy
mutable.setMemorySize(1024);
mutable.saveSettings(); // write settings to XML
session.unlockMachine();
The callers session object can then be used as a sort of remote control to the VM process that
was launched. It contains a console object (see ISession::console) with which the VM can be
paused, stopped, snapshotted or other things.
48
3 Basic VirtualBox concepts; some examples
which will then get notified by the server when an event (represented by the IEvent interface)
happens.
The IEvent interface is an abstract parent interface for all events that can occur in VirtualBox.
The actual events that the server sends out are then of one of the specific subclasses, for example
IMachineStateChangedEvent or IMediumChangedEvent.
As an example, the VirtualBox GUI waits for machine events and can thus update its display
when the machine state changes or machine settings are modified, even if this happens in another
client. This is how the GUI can automatically refresh its display even if you manipulate a machine
from another client, for example, from VBoxManage.
To register an event listener to listen to events, use code like this:
EventSource es = console.getEventSource();
IEventListener listener = es.createListener();
VBoxEventType aTypes[] = (VBoxEventType.OnMachineStateChanged);
// list of event types to listen for
es.registerListener(listener, aTypes, false /* active */);
// register passive listener
IEvent ev = es.getEvent(listener, 1000);
// wait up to one second for event to happen
if (ev != null)
{
// downcast to specific event interface (in this case we have only registered
// for one type, otherwise IEvent::type would tell us)
IMachineStateChangedEvent mcse = IMachineStateChangedEvent.queryInterface(ev);
... // inspect and do something
es.eventProcessed(listener, ev);
}
...
es.unregisterListener(listener);
A graphical user interface would probably best start its own thread to wait for events and then
process these in a loop.
The events mechanism was introduced with VirtualBox 3.3 and replaces various callback in-
terfaces which were called for each event in the interface. The callback mechanism was not
compatible with scripting languages, local Java bindings and remote web services as they do not
support callbacks. The new mechanism with events and event listeners works with all of these.
To simplify developement of application using events, concept of event aggregator was intro-
duced. Essentially its mechanism to aggregate multiple event sources into single one, and then
work with this single aggregated event source instead of original sources. As an example, one
can evaluate demo recorder in VirtualBox Python shell, shipped with SDK - it records mouse and
keyboard events, represented as separate event sources. Code is essentially like this:
listener = console.eventSource.createListener()
agg = console.eventSource.createAggregator([console.keyboard.eventSource, console.mouse.eventSource])
agg.registerListener(listener, [ctx[global].constants.VBoxEventType_Any], False)
registered = True
end = time.time() + dur
while time.time() < end:
ev = agg.getEvent(listener, 1000)
processEent(ev)
agg.unregisterListener(listener)
Without using aggregators consumer have to poll on both sources, or start multiple threads to
block on those sources.
49
4 The VirtualBox shell
VirtualBox comes with an extensible shell, which allows you to control your virtual machines
from the command line. It is also a nontrivial example of how to use the VirtualBox APIs from
Python, for all three COM/XPCOM/WS styles of the API.
You can easily extend this shell with your own commands. Create a subdirectory named
.config/VirtualBox/shexts below your home directory (respectively .VirtualBox/shexts
on a Windows system and Library/VirtualBox/shexts on OS X) and put a Python file imple-
menting your shell extension commands in this directory. This file must contain an array named
commands containing your command definitions:
commands = {
cmd1: [Command cmd1 help, cmd1],
cmd2: [Command cmd2 help, cmd2]
}
For example, to create a command for creating hard drive images, the following code can be
used:
def createHdd(ctx,args):
# Show some meaningful error message on wrong input
if (len(args) < 3):
print "usage: createHdd sizeM location type"
return 0
# Get arguments
size = int(args[1])
loc = args[2]
if len(args) > 3:
format = args[3]
else:
# And provide some meaningful defaults
format = "vdi"
# Report errors
if not hdd.id:
print "cannot create disk (file %s exist?)" %(loc)
return 0
# 0 means continue execution, other values mean exit from the interpreter
return 0
commands = {
50
4 The VirtualBox shell
Just store the above text in the file createHdd (or any other meaningful name) in
.config/VirtualBox/shexts/. Start the VirtualBox shell, or just issue the reloadExts com-
mand, if the shell is already running. Your new command will now be available.
51
5 Classes (interfaces)
5.1 IAdditionsFacility
Note: With the web service, this interface is mapped to a structure. Attributes that
return this interface will not return an object, but a complete structure containing the
attributes listed below as structure members.
5.1.1 Attributes
5.1.1.1 classType (read-only)
AdditionsFacilityClass IAdditionsFacility::classType
Time stamp of the last status update, in milliseconds since 1970-01-01 UTC.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a Guest Additions property changes. Interested callees should query IGuest
attributes to find out what has changed.
52
5 Classes (interfaces)
5.2.1 Attributes
5.2.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IAdditionsStateChangedEvent::midlDoesNotLikeEmptyInterfaces
5.3 IAppliance
Represents a platform-independent appliance in OVF format. An instance of this is returned by
IVirtualBox::createAppliance(), which can then be used to import and export virtual machines
within an appliance with VirtualBox.
The OVF standard suggests two different physical file formats:
1. If the appliance is distributed as a set of files, there must be at least one XML descriptor file
that conforms to the OVF standard and carries an .ovf file extension. If this descriptor file
references other files such as disk images, as OVF appliances typically do, those additional
files must be in the same directory as the descriptor file.
2. If the appliance is distributed as a single file, it must be in TAR format and have the .ova file
extension. This TAR file must then contain at least the OVF descriptor files and optionally
other files.
At this time, VirtualBox does not not yet support the packed (TAR) variant; support will be
added with a later version.
Importing an OVF appliance into VirtualBox as instances of IMachine involves the following
sequence of API calls:
1. Call IVirtualBox::createAppliance(). This will create an empty IAppliance object.
2. On the new object, call read() with the full path of the OVF file you would like to import.
So long as this file is syntactically valid, this will succeed and fill the appliance object with
the parsed data from the OVF file.
3. Next, call interpret(), which analyzes the OVF data and sets up the contents of the
IAppliance attributes accordingly. These can be inspected by a VirtualBox front-end
such as the GUI, and the suggestions can be displayed to the user. In particular, the
virtualSystemDescriptions[] array contains instances of IVirtualSystemDescription which
represent the virtual systems (machines) in the OVF, which in turn describe the virtual
hardware prescribed by the OVF (network and hardware adapters, virtual disk images,
memory size and so on). The GUI can then give the user the option to confirm and/or
change these suggestions.
4. If desired, call IVirtualSystemDescription::setFinalValues() for each virtual system (ma-
chine) to override the suggestions made by the interpret() routine.
5. Finally, call importMachines() to create virtual machines in VirtualBox as instances of
IMachine that match the information in the virtual system descriptions. After this call
succeeded, the UUIDs of the machines created can be found in the machines[] array at-
tribute.
Exporting VirtualBox machines into an OVF appliance involves the following steps:
1. As with importing, first call IVirtualBox::createAppliance() to create an empty IAppliance
object.
2. For each machine you would like to export, call IMachine::exportTo() with the IAppliance
object you just created. Each such call creates one instance of IVirtualSystemDescription
inside the appliance.
53
5 Classes (interfaces)
4. Finally, call write() with a path specification to have the OVF file written.
5.3.1 Attributes
5.3.1.1 path (read-only)
wstring IAppliance::path
Path to the main file of the OVF appliance, which is either the .ovf or the .ova file passed to
read() (for import) or write() (for export). This attribute is empty until one of these methods
has been called.
Array of virtual disk definitions. One such description exists for each disk definition in the
OVF; each string array item represents one such piece of disk information, with the information
fields separated by tab (\\t) characters.
The caller should be prepared for additional fields being appended to this string in future
versions of VirtualBox and therefore check for the number of tabs in the strings returned.
In the current version, the following eight fields are returned per string in the array:
3. Populated size (optional unsigned integer indicating the current size of the disk; can be
approximate; -1 if unspecified)
4. Format (string identifying the disk format, typically http://www.vmware.com/specifications/vmdk.html#sparse
5. Reference (where to find the disk image, typically a file name; if empty, then the disk
should be created on import)
6. Image size (optional unsigned integer indicating the size of the image, which need not
necessarily be the same as the values specified above, since the image may be compressed
or sparse; -1 if not specified)
7. Chunk size (optional unsigned integer if the image is split into chunks; presently unsup-
ported and always -1)
8. Compression (optional string equaling gzip if the image is gzip-compressed)
Array of virtual system descriptions. One such description is created for each virtual sys-
tem (machine) found in the OVF. This array is empty until either interpret() (for import) or
IMachine::exportTo() (for export) has been called.
54
5 Classes (interfaces)
Contains the UUIDs of the machines created from the information in this appliances. This is
only relevant for the import case, and will only contain data after a call to importMachines()
succeeded.
The X.509 signing certificate, if the imported OVF was signed, null if not signed. This is
available after calling read().
5.3.2 addPasswords
void IAppliance::addPasswords(
[in] wstring identifiers[],
[in] wstring passwords[])
5.3.3 createVFSExplorer
IVFSExplorer IAppliance::createVFSExplorer(
[in] wstring URI)
5.3.4 getMediumIdsForPasswordId
uuid[] IAppliance::getMediumIdsForPasswordId(
[in] wstring passwordId)
Returns a list of medium identifiers which use the given password identifier.
5.3.5 getPasswordIds
wstring[] IAppliance::getPasswordIds()
Returns a list of password identifiers which must be supplied to import or export encrypted
virtual machines.
5.3.6 getWarnings
wstring[] IAppliance::getWarnings()
55
5 Classes (interfaces)
5.3.7 importMachines
IProgress IAppliance::importMachines(
[in] ImportOptions options[])
Imports the appliance into VirtualBox by creating instances of IMachine and other interfaces
that match the information contained in the appliance as closely as possible, as represented by
the import instructions in the virtualSystemDescriptions[] array.
Calling this method is the final step of importing an appliance into VirtualBox; see IAppliance
for an overview.
Since importing the appliance will most probably involve copying and converting disk images,
which can take a long time, this method operates asynchronously and returns an IProgress object
to allow the caller to monitor the progress.
After the import succeeded, the UUIDs of the IMachine instances created can be retrieved from
the machines[] array attribute.
5.3.8 interpret
void IAppliance::interpret()
Interprets the OVF data that was read when the appliance was constructed. After calling this
method, one can inspect the virtualSystemDescriptions[] array attribute, which will then contain
one IVirtualSystemDescription for each virtual machine found in the appliance.
Calling this method is the second step of importing an appliance into VirtualBox; see
IAppliance for an overview.
After calling this method, one should call getWarnings() to find out if problems were encoun-
tered during the processing which might later lead to errors.
5.3.9 read
IProgress IAppliance::read(
[in] wstring file)
file Name of appliance file to open (either with an .ovf or .ova extension, depending on
whether the appliance is distributed as a set of files or as a single file, respectively).
5.3.10 write
IProgress IAppliance::write(
[in] wstring format,
[in] ExportOptions options[],
[in] wstring path)
format Output format, as a string. Currently supported formats are ovf-0.9, ovf-1.0 and
ovf-2.0; future versions of VirtualBox may support additional formats.
options Options for the exporting operation.
path Name of appliance file to open (either with an .ovf or .ova extension, depending on
whether the appliance is distributed as a set of files or as a single file, respectively).
56
5 Classes (interfaces)
Writes the contents of the appliance exports into a new OVF file.
Calling this method is the final step of exporting an appliance from VirtualBox; see IAppliance
for an overview.
Since exporting the appliance will most probably involve copying and converting disk images,
which can take a long time, this method operates asynchronously and returns an IProgress object
to allow the caller to monitor the progress.
5.4 IAudioAdapter
The IAudioAdapter interface represents the virtual audio adapter of the virtual machine. Used
in IMachine::audioAdapter.
5.4.1 Attributes
5.4.1.1 enabled (read/write)
boolean IAudioAdapter::enabled
Flag whether the audio adapter is present in the guest system. If disabled, the virtual guest
hardware will not contain any audio adapter. Can only be changed when the VM is not running.
Flag whether the audio adapter is enabled for audio input. Only relevant if the adapter is
enabled.
Flag whether the audio adapter is enabled for audio output. Only relevant if the adapter is
enabled.
The exact variant of audio codec hardware presented to the guest. For HDA and SB16, only
one variant is available, but for AC97, there are several.
Audio driver the adapter is connected to. This setting can only be changed when the VM is not
running.
57
5 Classes (interfaces)
5.4.2 getProperty
wstring IAudioAdapter::getProperty(
[in] wstring key)
5.4.3 setProperty
void IAudioAdapter::setProperty(
[in] wstring key,
[in] wstring value)
5.5 IBIOSSettings
The IBIOSSettings interface represents BIOS settings of the virtual machine. This is used only in
the IMachine::BIOSSettings attribute.
5.5.1 Attributes
5.5.1.1 logoFadeIn (read/write)
boolean IBIOSSettings::logoFadeIn
58
5 Classes (interfaces)
Local file system path for external BIOS splash image. Empty string means the default image
is shown on boot.
I/O-APIC support flag. If set, VirtualBox will provide an I/O-APIC and support IRQs above 15.
Offset in milliseconds from the host system time. This allows for guests running with a dif-
ferent system date/time than the host. It is equivalent to setting the system date/time in the
BIOS except it is not an absolute value but a relative one. Guest Additions time synchronization
honors this offset.
PXE debug logging flag. If set, VirtualBox will write extensive PXE trace information to the
release log.
The location of the file storing the non-volatile memory content when the VM is powered off.
The file does not always exist.
This feature will be realized after VirtualBox v4.3.0.
59
5 Classes (interfaces)
5.6 IBandwidthControl
Controls the bandwidth groups of one machine used to cap I/O done by a VM. This includes
network and disk I/O.
5.6.1 Attributes
5.6.1.1 numGroups (read-only)
unsigned long IBandwidthControl::numGroups
5.6.2 createBandwidthGroup
void IBandwidthControl::createBandwidthGroup(
[in] wstring name,
[in] BandwidthGroupType type,
[in] long long maxBytesPerSec)
5.6.3 deleteBandwidthGroup
void IBandwidthControl::deleteBandwidthGroup(
[in] wstring name)
5.6.4 getAllBandwidthGroups
IBandwidthGroup[] IBandwidthControl::getAllBandwidthGroups()
5.6.5 getBandwidthGroup
IBandwidthGroup IBandwidthControl::getBandwidthGroup(
[in] wstring name)
5.7 IBandwidthGroup
Represents one bandwidth group.
60
5 Classes (interfaces)
5.7.1 Attributes
5.7.1.1 name (read-only)
wstring IBandwidthGroup::name
The maximum number of bytes which can be transfered by all entities attached to this group
during one second.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.8.1 Attributes
5.8.1.1 bandwidthGroup (read-only)
IBandwidthGroup IBandwidthGroupChangedEvent::bandwidthGroup
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.9.1 Attributes
5.9.1.1 CPU (read-only)
unsigned long ICPUChangedEvent::CPU
61
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.10.1 Attributes
5.10.1.1 executionCap (read-only)
unsigned long ICPUExecutionCapChangedEvent::executionCap
Note: This interface extends IVetoEvent and therefore supports all its methods and
attributes as well.
5.11.1 Attributes
5.11.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean ICanShowWindowEvent::midlDoesNotLikeEmptyInterfaces
5.12 ICertificate
X.509 certificate details.
5.12.1 Attributes
5.12.1.1 versionNumber (read-only)
CertificateVersion ICertificate::versionNumber
62
5 Classes (interfaces)
Issuer name. Each member of the array is on the format COMPONENT=NAME, e.g. C=DE,
ST=Example, L=For Instance, O=Beispiel GmbH, CN=beispiel.example.org.
63
5 Classes (interfaces)
Whether this certificate is a certificate authority. Will return E_FAIL if this attribute is not
present.
Array of dotted extended key usage OIDs. Empty array if not present.
64
5 Classes (interfaces)
5.12.2 isCurrentlyExpired
boolean ICertificate::isCurrentlyExpired()
Tests if the certificate has expired at the present time according to the X.509 validity of the
certificate.
5.12.3 queryInfo
wstring ICertificate::queryInfo(
[in] long what)
what
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.13.1 Attributes
5.13.1.1 clipboardMode (read-only)
ClipboardMode IClipboardModeChangedEvent::clipboardMode
5.14 IConsole
The IConsole interface represents an interface to control virtual machine execution.
A console object gets created when a machine has been locked for a particular session (client
process) using IMachine::lockMachine() or IMachine::launchVMProcess(). The console object
can then be found in the sessions ISession::console attribute.
Methods of the IConsole interface allow the caller to query the current virtual machine exe-
cution state, pause the machine or power it down, save the machine state or take a snapshot,
attach and detach removable media and so on.
See also: ISession
65
5 Classes (interfaces)
5.14.1 Attributes
5.14.1.1 machine (read-only)
IMachine IConsole::machine
Note: This is a convenience property, it has the same value as ISession::machine of the
corresponding session object.
Note: This property always returns the same value as the corresponding property of
the IMachine object for this console session. For the process that owns (executes) the
VM, this is the preferable way of querying the VM state, because no IPC calls are made.
Guest object.
Note: If the machine is not running, any attempt to use the returned object will result
in an error.
Note: If the machine is not running, any attempt to use the returned object will result
in an error.
66
5 Classes (interfaces)
Note: If the machine is not running, any attempt to use the returned object will result
in an error.
Debugging interface.
List of USB devices currently attached to the remote VRDE client. Once a new device is phys-
ically attached to the remote host computer, it appears in this list and remains there until de-
tached.
Collection of shared folders for the current session. These folders are called transient shared
folders because they are available to the guest OS running inside the associated virtual machine
only for the duration of the session (as opposed to IMachine::sharedFolders[] which represent
permanent shared folders). When the session is closed (e.g. the machine is powered down),
these folders are automatically discarded.
New shared folders are added to the collection using createSharedFolder(). Existing shared
folders can be removed using removeSharedFolder().
67
5 Classes (interfaces)
Whether the guest clipboard should be connected to the host one or whether it should only
be allowed access to the VRDE clipboard. This setting may not affect existing guest clipboard
connections which are already connected to the host clipboard.
5.14.2 addDiskEncryptionPassword
void IConsole::addDiskEncryptionPassword(
[in] wstring id,
[in] wstring password,
[in] boolean clearOnSuspend)
id The identifier used for the password. Must match the identifier used when the encrypted
medium was created.
password The password.
clearOnSuspend Flag whether to clear the password on VM suspend (due to a suspending host
for example). The password must be supplied again before the VM can resume.
Adds a password used for hard disk encryption/decryption.
If this method fails, the following error codes may be reported:
VBOX_E_PASSWORD_INCORRECT: The password provided wasnt correct for at least one
disk using the provided ID.
5.14.3 addDiskEncryptionPasswords
void IConsole::addDiskEncryptionPasswords(
[in] wstring ids[],
[in] wstring passwords[],
[in] boolean clearOnSuspend)
ids List of identifiers for the passwords. Must match the identifier used when the encrypted
medium was created.
passwords List of passwords.
clearOnSuspend Flag whether to clear the given passwords on VM suspend (due to a suspend-
ing host for example). The passwords must be supplied again before the VM can resume.
Adds a password used for hard disk encryption/decryption.
If this method fails, the following error codes may be reported:
VBOX_E_PASSWORD_INCORRECT: The password provided wasnt correct for at least one
disk using the provided ID.
68
5 Classes (interfaces)
5.14.4 attachUSBDevice
void IConsole::attachUSBDevice(
[in] uuid id,
[in] wstring captureFilename)
Attaches a host USB device with the given UUID to the USB controller of the virtual machine.
The device needs to be in one of the following states: Busy, Available or Held, otherwise an
error is immediately returned.
When the device state is Busy, an error may also be returned if the host computer refuses to
release it for some reason.
See also: IUSBDeviceFilters::deviceFilters[], USBDeviceState
If this method fails, the following error codes may be reported:
5.14.5 clearAllDiskEncryptionPasswords
void IConsole::clearAllDiskEncryptionPasswords()
5.14.6 createSharedFolder
void IConsole::createSharedFolder(
[in] wstring name,
[in] wstring hostPath,
[in] boolean writable,
[in] boolean automount)
hostPath Full path to the shared folder in the host file system.
writable Whether the share is writable or readonly
automount Whether the share gets automatically mounted by the guest or not.
Creates a transient new shared folder by associating the given logical name with the given host
path, adds it to the collection of shared folders and starts sharing it. Refer to the description of
ISharedFolder to read more about logical names.
If this method fails, the following error codes may be reported:
69
5 Classes (interfaces)
5.14.7 detachUSBDevice
IUSBDevice IConsole::detachUSBDevice(
[in] uuid id)
Detaches an USB device with the given UUID from the USB controller of the virtual machine.
After this method succeeds, the VirtualBox server re-initiates all USB filters as if the device
were just physically attached to the host, but filters of this machine are ignored to avoid a
possible automatic re-attachment.
See also: IUSBDeviceFilters::deviceFilters[], USBDeviceState
If this method fails, the following error codes may be reported:
5.14.8 findUSBDeviceByAddress
IUSBDevice IConsole::findUSBDeviceByAddress(
[in] wstring name)
name Address of the USB device (as assigned by the host) to search for.
5.14.9 findUSBDeviceById
IUSBDevice IConsole::findUSBDeviceById(
[in] uuid id)
5.14.10 getDeviceActivity
DeviceActivity[] IConsole::getDeviceActivity(
[in] DeviceType type[])
type
70
5 Classes (interfaces)
5.14.11 getGuestEnteredACPIMode
boolean IConsole::getGuestEnteredACPIMode()
Checks if the guest entered the ACPI mode G0 (working) or G1 (sleeping). If this method
returns false, the guest will most likely not respond to external ACPI events.
If this method fails, the following error codes may be reported:
5.14.12 getPowerButtonHandled
boolean IConsole::getPowerButtonHandled()
5.14.13 pause
void IConsole::pause()
5.14.14 powerButton
void IConsole::powerButton()
5.14.15 powerDown
IProgress IConsole::powerDown()
Initiates the power down procedure to stop the virtual machine execution.
The completion of the power down procedure is tracked using the returned IProgress object.
After the operation is complete, the machine will go to the PoweredOff state.
If this method fails, the following error codes may be reported:
71
5 Classes (interfaces)
5.14.16 powerUp
IProgress IConsole::powerUp()
Starts the virtual machine execution using the current machine state (that is, its current exe-
cution state, current settings and current storage devices).
Note: This method is only useful for front-ends that want to actually execute virtual
machines in their own process (like the VirtualBox or VBoxSDL front-ends). Unless you
are intending to write such a front-end, do not call this method. If you simply want to
start virtual machine execution using one of the existing front-ends (for example the
VirtualBox GUI or headless server), use IMachine::launchVMProcess() instead; these
front-ends will power up the machine automatically for you.
If the machine is powered off or aborted, the execution will start from the beginning (as if the
real hardware were just powered on).
If the machine is in the Saved state, it will continue its execution the point where the state has
been saved.
If the machine IMachine::teleporterEnabled property is enabled on the machine being pow-
ered up, the machine will wait for an incoming teleportation in the TeleportingIn state. The
returned progress object will have at least three operations where the last three are defined as:
(1) powering up and starting TCP server, (2) waiting for incoming teleportations, and (3) per-
form teleportation. These operations will be reflected as the last three operations of the progress
objected returned by IMachine::launchVMProcess() as well.
See also: IMachine::saveState()
If this method fails, the following error codes may be reported:
VBOX_E_INVALID_VM_STATE: Virtual machine already running.
VBOX_E_HOST_ERROR: Host interface does not exist or name not set.
VBOX_E_FILE_ERROR: Invalid saved state file.
5.14.17 powerUpPaused
IProgress IConsole::powerUpPaused()
Identical to powerUp except that the VM will enter the Paused state, instead of Running.
See also: powerUp()
If this method fails, the following error codes may be reported:
VBOX_E_INVALID_VM_STATE: Virtual machine already running.
VBOX_E_HOST_ERROR: Host interface does not exist or name not set.
VBOX_E_FILE_ERROR: Invalid saved state file.
5.14.18 removeDiskEncryptionPassword
void IConsole::removeDiskEncryptionPassword(
[in] wstring id)
id The identifier used for the password. Must match the identifier used when the encrypted
medium was created.
Removes a password used for hard disk encryption/decryption from the running VM. As soon
as the medium requiring this password is accessed the VM is paused with an error and the
password must be provided again.
72
5 Classes (interfaces)
5.14.19 removeSharedFolder
void IConsole::removeSharedFolder(
[in] wstring name)
Removes a transient shared folder with the given name previously created by createSharedFolder()
from the collection of shared folders and stops sharing it.
If this method fails, the following error codes may be reported:
5.14.20 reset
void IConsole::reset()
5.14.21 resume
void IConsole::resume()
5.14.22 sleepButton
void IConsole::sleepButton()
5.14.23 teleport
IProgress IConsole::teleport(
[in] wstring hostname,
[in] unsigned long tcpport,
[in] wstring password,
[in] unsigned long maxDowntime)
73
5 Classes (interfaces)
Note: The current implementation treats this a guideline, not as an absolute rule.
5.15 IDHCPServer
The IDHCPServer interface represents the VirtualBox DHCP server configuration.
To enumerate all the DHCP servers on the host, use the IVirtualBox::DHCPServers[] attribute.
5.15.1 Attributes
5.15.1.1 eventSource (read-only)
IEventSource IDHCPServer::eventSource
specifies server IP
74
5 Classes (interfaces)
5.15.2 addGlobalOption
void IDHCPServer::addGlobalOption(
[in] DhcpOpt option,
[in] wstring value)
option
value
5.15.3 addVmSlotOption
void IDHCPServer::addVmSlotOption(
[in] wstring vmname,
[in] long slot,
[in] DhcpOpt option,
[in] wstring value)
vmname
slot
option
value
5.15.4 getMacOptions
wstring[] IDHCPServer::getMacOptions(
[in] wstring mac)
mac
5.15.5 getVmSlotOptions
wstring[] IDHCPServer::getVmSlotOptions(
[in] wstring vmname,
[in] long slot)
vmname
slot
75
5 Classes (interfaces)
5.15.6 removeVmSlotOptions
void IDHCPServer::removeVmSlotOptions(
[in] wstring vmname,
[in] long slot)
vmname
slot
5.15.7 setConfiguration
void IDHCPServer::setConfiguration(
[in] wstring IPAddress,
[in] wstring networkMask,
[in] wstring FromIPAddress,
[in] wstring ToIPAddress)
5.15.8 start
void IDHCPServer::start(
[in] wstring networkName,
[in] wstring trunkName,
[in] wstring trunkType)
5.15.9 stop
void IDHCPServer::stop()
76
5 Classes (interfaces)
5.16 IDirectory
Abstract parent interface for directories handled by VirtualBox.
5.16.1 Attributes
5.16.1.1 directoryName (read-only)
wstring IDirectory::directoryName
5.16.2 close
void IDirectory::close()
Closes this directory. After closing operations like reading the next directory entry will not be
possible anymore.
5.16.3 read
IFsObjInfo IDirectory::read()
5.17 IDisplay
The IDisplay interface represents the virtual machines display.
The object implementing this interface is contained in each IConsole::display attribute and
represents the visual output of the virtual machine.
The virtual display supports pluggable output targets represented by the IFramebuffer inter-
face. Examples of the output target are a window on the host computer or an RDP sessions
display on a remote computer.
5.17.1 Attributes
5.17.1.1 guestScreenLayout (read-only)
IGuestScreenInfo IDisplay::guestScreenLayout[]
77
5 Classes (interfaces)
5.17.2 attachFramebuffer
uuid IDisplay::attachFramebuffer(
[in] unsigned long screenId,
[in] IFramebuffer framebuffer)
screenId
framebuffer
5.17.3 completeVHWACommand
void IDisplay::completeVHWACommand(
[in] [ptr] octet command)
5.17.4 detachFramebuffer
void IDisplay::detachFramebuffer(
[in] unsigned long screenId,
[in] uuid id)
screenId
id
5.17.5 drawToScreen
void IDisplay::drawToScreen(
[in] unsigned long screenId,
[in] [ptr] octet address,
[in] unsigned long x,
[in] unsigned long y,
[in] unsigned long width,
[in] unsigned long height)
78
5 Classes (interfaces)
Draws a 32-bpp image of the specified size from the given buffer to the given point on the VM
display.
If this method fails, the following error codes may be reported:
5.17.6 getScreenResolution
void IDisplay::getScreenResolution(
[in] unsigned long screenId,
[out] unsigned long width,
[out] unsigned long height,
[out] unsigned long bitsPerPixel,
[out] long xOrigin,
[out] long yOrigin,
[out] GuestMonitorStatus guestMonitorStatus)
screenId
width
height
bitsPerPixel
xOrigin
yOrigin
guestMonitorStatus
Queries certain attributes such as display width, height, color depth and the X and Y origin for
a given guest screen.
The parameters xOrigin and yOrigin return the X and Y coordinates of the framebuffers
origin.
All return parameters are optional.
5.17.7 invalidateAndUpdate
void IDisplay::invalidateAndUpdate()
Does a full invalidation of the VM display and instructs the VM to update it.
If this method fails, the following error codes may be reported:
5.17.8 invalidateAndUpdateScreen
void IDisplay::invalidateAndUpdateScreen(
[in] unsigned long screenId)
79
5 Classes (interfaces)
5.17.9 notifyHiDPIOutputPolicyChange
void IDisplay::notifyHiDPIOutputPolicyChange(
[in] boolean fUnscaledHiDPI)
fUnscaledHiDPI
Notify OpenGL HGCM host service about HiDPI monitor scaling policy change.
5.17.10 notifyScaleFactorChange
void IDisplay::notifyScaleFactorChange(
[in] unsigned long screenId,
[in] unsigned long u32ScaleFactorWMultiplied,
[in] unsigned long u32ScaleFactorHMultiplied)
screenId
u32ScaleFactorWMultiplied
u32ScaleFactorHMultiplied
Notify OpenGL HGCM host service about graphics content scaling factor change.
5.17.11 queryFramebuffer
IFramebuffer IDisplay::queryFramebuffer(
[in] unsigned long screenId)
screenId
5.17.12 querySourceBitmap
void IDisplay::querySourceBitmap(
[in] unsigned long screenId,
[out] IDisplaySourceBitmap displaySourceBitmap)
screenId
displaySourceBitmap
5.17.13 setScreenLayout
void IDisplay::setScreenLayout(
[in] ScreenLayoutMode screenLayoutMode,
[in] IGuestScreenInfo guestScreenInfo[])
screenLayoutMode
guestScreenInfo
80
5 Classes (interfaces)
5.17.14 setSeamlessMode
void IDisplay::setSeamlessMode(
[in] boolean enabled)
enabled
Enables or disables seamless guest display rendering (seamless desktop integration) mode.
5.17.15 setVideoModeHint
void IDisplay::setVideoModeHint(
[in] unsigned long display,
[in] boolean enabled,
[in] boolean changeOrigin,
[in] long originX,
[in] long originY,
[in] unsigned long width,
[in] unsigned long height,
[in] unsigned long bitsPerPixel)
display The number of the guest display to send the hint to.
Asks VirtualBox to request the given video mode from the guest. This is just a hint and it
cannot be guaranteed that the requested resolution will be used. Guest Additions are required
for the request to be seen by guests. The caller should issue the request and wait for a resolution
change and after a timeout retry.
Specifying 0 for either width, height or bitsPerPixel parameters means that the corre-
sponding values should be taken from the current video mode (i.e. left unchanged).
If the guest OS supports multi-monitor configuration then the display parameter specifies the
number of the guest display to send the hint to: 0 is the primary display, 1 is the first secondary
and so on. If the multi-monitor configuration is not supported, display must be 0.
If this method fails, the following error codes may be reported:
81
5 Classes (interfaces)
5.17.16 takeScreenShot
void IDisplay::takeScreenShot(
[in] unsigned long screenId,
[in] [ptr] octet address,
[in] unsigned long width,
[in] unsigned long height,
[in] BitmapFormat bitmapFormat)
screenId
address
width
height
bitmapFormat
Takes a screen shot of the requested size and format and copies it to the buffer allocated by the
caller and pointed to by address. The buffer size must be enough for a 32 bits per pixel bitmap,
i.e. width * height * 4 bytes.
Note: This API can be used only locally by a VM process through the COM/XPCOM
C++ API as it requires pointer support. It is not available for scripting languages,
Java or any webservice clients. Unless you are writing a new VM frontend use
takeScreenShotToArray().
5.17.17 takeScreenShotToArray
octet[] IDisplay::takeScreenShotToArray(
[in] unsigned long screenId,
[in] unsigned long width,
[in] unsigned long height,
[in] BitmapFormat bitmapFormat)
Takes a guest screen shot of the requested size and format and returns it as an array of bytes.
82
5 Classes (interfaces)
5.17.18 viewportChanged
void IDisplay::viewportChanged(
[in] unsigned long screenId,
[in] unsigned long x,
[in] unsigned long y,
[in] unsigned long width,
[in] unsigned long height)
5.18 IDisplaySourceBitmap
5.18.1 Attributes
5.18.1.1 screenId (read-only)
unsigned long IDisplaySourceBitmap::screenId
5.18.2 queryBitmapInfo
void IDisplaySourceBitmap::queryBitmapInfo(
[out] [ptr] octet address,
[out] unsigned long width,
[out] unsigned long height,
[out] unsigned long bitsPerPixel,
[out] unsigned long bytesPerLine,
[out] BitmapFormat bitmapFormat)
address
width
height
bitsPerPixel
bytesPerLine
bitmapFormat
Information about the screen bitmap.
83
5 Classes (interfaces)
5.19 IDnDBase
Base abstract interface for dragn drop.
5.19.1 Attributes
5.19.1.1 formats (read-only)
wstring IDnDBase::formats[]
Returns the protocol version which is used to communicate with the guest.
5.19.2 addFormats
void IDnDBase::addFormats(
[in] wstring formats[])
5.19.3 isFormatSupported
boolean IDnDBase::isFormatSupported(
[in] wstring format)
5.19.4 removeFormats
void IDnDBase::removeFormats(
[in] wstring formats[])
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
84
5 Classes (interfaces)
5.20.1 Attributes
5.20.1.1 dndMode (read-only)
DnDMode IDnDModeChangedEvent::dndMode
Note: This interface extends IDnDBase and therefore supports all its methods and
attributes as well.
5.21.1 dragIsPending
DnDAction IDnDSource::dragIsPending(
[in] unsigned long screenId,
[out] wstring formats[],
[out] DnDAction allowedActions[])
screenId The screen ID where the drag and drop event occurred.
formats On return the supported mime types.
allowedActions On return the actions which are allowed.
Ask the source if there is any drag and drop operation pending. If no drag and drop operation
is pending currently, DnDAction_Ignore is returned.
If this method fails, the following error codes may be reported:
5.21.2 drop
IProgress IDnDSource::drop(
[in] wstring format,
[in] DnDAction action)
Informs the source that a drop event occurred for a pending drag and drop operation.
If this method fails, the following error codes may be reported:
5.21.3 receiveData
octet[] IDnDSource::receiveData()
Receive the data of a previously drag and drop event from the source.
If this method fails, the following error codes may be reported:
85
5 Classes (interfaces)
Note: This interface extends IDnDBase and therefore supports all its methods and
attributes as well.
5.22.1 cancel
boolean IDnDTarget::cancel()
Requests cancelling the current operation. The target can veto the request in case the operation
is not cancelable at the moment.
If this method fails, the following error codes may be reported:
5.22.2 drop
DnDAction IDnDTarget::drop(
[in] unsigned long screenId,
[in] unsigned long x,
[in] unsigned long y,
[in] DnDAction defaultAction,
[in] DnDAction allowedActions[],
[in] wstring formats[],
[out] wstring format)
screenId The screen ID where the Drag and Drop event occurred.
5.22.3 enter
DnDAction IDnDTarget::enter(
[in] unsigned long screenId,
[in] unsigned long y,
[in] unsigned long x,
[in] DnDAction defaultAction,
[in] DnDAction allowedActions[],
[in] wstring formats[])
86
5 Classes (interfaces)
screenId The screen ID where the drag and drop event occurred.
5.22.4 leave
void IDnDTarget::leave(
[in] unsigned long screenId)
screenId The screen ID where the drag and drop event occurred.
5.22.5 move
DnDAction IDnDTarget::move(
[in] unsigned long screenId,
[in] unsigned long x,
[in] unsigned long y,
[in] DnDAction defaultAction,
[in] DnDAction allowedActions[],
[in] wstring formats[])
screenId The screen ID where the drag and drop event occurred.
x X-position of the event.
87
5 Classes (interfaces)
5.22.6 sendData
IProgress IDnDTarget::sendData(
[in] unsigned long screenId,
[in] wstring format,
[in] octet data[])
screenId The screen ID where the drag and drop event occurred.
format The MIME type the data is in.
data The actual data.
5.23 IEmulatedUSB
Manages emulated USB devices.
5.23.1 Attributes
5.23.1.1 webcams (read-only)
wstring IEmulatedUSB::webcams[]
5.23.2 webcamAttach
void IEmulatedUSB::webcamAttach(
[in] wstring path,
[in] wstring settings)
Attaches the emulated USB webcam to the VM, which will use a host video capture device.
5.23.3 webcamDetach
void IEmulatedUSB::webcamDetach(
[in] wstring path)
88
5 Classes (interfaces)
5.24 IEvent
Abstract parent interface for VirtualBox events. Actual events will typically implement a more
specific interface which derives from this (see below).
Introduction to VirtualBox events
Generally speaking, an event (represented by this interface) signals that something happened,
while an event listener (see IEventListener) represents an entity that is interested in certain
events. In order for this to work with unidirectional protocols (i.e. web services), the concepts
of passive and active listener are used.
Event consumers can register themselves as listeners, providing an array of events they are in-
terested in (see IEventSource::registerListener()). When an event triggers, the listener is notified
about the event. The exact mechanism of the notification depends on whether the listener was
registered as an active or passive listener:
Waitable events are useful in situations where the event generator wants to track delivery or
a party wants to wait until all listeners have completed the event. A typical example would be a
vetoable event (see IVetoEvent) where a listeners might veto a certain action, and thus the event
producer has to make sure that all listeners have processed the event and not vetoed before
taking the action.
A given event may have both passive and active listeners at the same time.
Using events
Any VirtualBox object capable of producing externally visible events provides an eventSource
read-only attribute, which is of the type IEventSource. This event source object is notified by
VirtualBox once something has happened, so consumers may register event listeners with this
event source. To register a listener, an object implementing the IEventListener interface must
be provided. For active listeners, such an object is typically created by the consumer, while
for passive listeners IEventSource::createListener() should be used. Please note that a listener
created with IEventSource::createListener() must not be used as an active listener.
Once created, the listener must be registered to listen for the desired events (see
IEventSource::registerListener()), providing an array of VBoxEventType enums. Those elements
can either be the individual event IDs or wildcards matching multiple event IDs.
After registration, the callbacks IEventListener::handleEvent() method is called automatically
when the event is triggered, while passive listeners have to call IEventSource::getEvent() and
IEventSource::eventProcessed() in an event processing loop.
The IEvent interface is an abstract parent interface for all such VirtualBox events coming in. As
a result, the standard use pattern inside IEventListener::handleEvent() or the event processing
loop is to check the type attribute of the event and then cast to the appropriate specific interface
using QueryInterface().
89
5 Classes (interfaces)
5.24.1 Attributes
5.24.1.1 type (read-only)
VBoxEventType IEvent::type
Event type.
If we can wait for this event being processed. If false, waitProcessed() returns immediately,
and setProcessed() doesnt make sense. Non-waitable events are generally better performing, as
no additional overhead associated with waitability imposed. Waitable events are needed when
one need to be able to wait for particular event processed, for example for vetoable changes, or
if event refers to some resource which need to be kept immutable until all consumers confirmed
events.
5.24.2 setProcessed
void IEvent::setProcessed()
Internal method called by the system when all listeners of a particular event have called
IEventSource::eventProcessed(). This should not be called by client code.
5.24.3 waitProcessed
boolean IEvent::waitProcessed(
[in] long timeout)
timeout Maximum time to wait for event processing, in ms; 0 = no wait, -1 = indefinite wait.
Wait until time outs, or this event is processed. Event must be waitable for this operation to
have described semantics, for non-waitable returns true immediately.
5.25 IEventListener
Event listener. An event listener can work in either active or passive mode, depending on the
way it was registered. See IEvent for an introduction to VirtualBox event handling.
5.25.1 handleEvent
void IEventListener::handleEvent(
[in] IEvent event)
90
5 Classes (interfaces)
5.26 IEventSource
Event source. Generally, any object which could generate events can be an event source, or aggre-
gate one. To simplify using one-way protocols such as webservices running on top of HTTP(S),
an event source can work with listeners in either active or passive mode. In active mode it is
up to the IEventSource implementation to call IEventListener::handleEvent(), in passive mode
the event source keeps track of pending events for each listener and returns available events on
demand.
See IEvent for an introduction to VirtualBox event handling.
5.26.1 createAggregator
IEventSource IEventSource::createAggregator(
[in] IEventSource subordinates[])
Creates an aggregator event source, collecting events from multiple sources. This way a single
listener can listen for events coming from multiple sources, using a single blocking getEvent()
on the returned aggregator.
5.26.2 createListener
IEventListener IEventSource::createListener()
5.26.3 eventProcessed
void IEventSource::eventProcessed(
[in] IEventListener listener,
[in] IEvent event)
Must be called for waitable events after a particular listener finished its event processing.
When all listeners of a particular event have called this method, the system will then call
IEvent::setProcessed().
5.26.4 fireEvent
boolean IEventSource::fireEvent(
[in] IEvent event,
[in] long timeout)
91
5 Classes (interfaces)
5.26.5 getEvent
IEvent IEventSource::getEvent(
[in] IEventListener listener,
[in] long timeout)
Get events from this peers event queue (for passive mode). Calling this method regularly is
required for passive event listeners to avoid system overload; see registerListener() for details.
If this method fails, the following error codes may be reported:
5.26.6 registerListener
void IEventSource::registerListener(
[in] IEventListener listener,
[in] VBoxEventType interesting[],
[in] boolean active)
Note: To avoid system overload, the VirtualBox server process checks if pas-
sive event listeners call getEvent() frequently enough. In the current implemen-
tation, if more than 500 pending events are detected for a passive event listener,
it is forcefully unregistered by the system, and further getEvent() calls will return
VBOX_E_OBJECT_NOT_FOUND.
5.26.7 unregisterListener
void IEventSource::unregisterListener(
[in] IEventListener listener)
Unregister an event listener. If listener is passive, and some waitable events are still in queue
they are marked as processed automatically.
92
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.27.1 Attributes
5.27.1.1 listener (read-only)
IEventListener IEventSourceChangedEvent::listener
Note: This interface extends IExtPackBase and therefore supports all its methods and
attributes as well.
Interface for querying information about an extension pack as well as accessing COM objects
within it.
5.28.1 queryObject
$unknown IExtPack::queryObject(
[in] wstring objUuid)
Queries the IUnknown interface to an object in the extension pack main module. This allows
plug-ins and others to talk directly to an extension pack.
5.29 IExtPackBase
Interface for querying information about an extension pack as well as accessing COM objects
within it.
93
5 Classes (interfaces)
5.29.1 Attributes
5.29.1.1 name (read-only)
wstring IExtPackBase::name
The extension pack version string. This is restricted to the dotted version number and op-
tionally a build indicator. No tree revision or tag will be included in the string as those
things are available as separate properties. An optional publisher tag may be present like for
IVirtualBox::version.
Examples: 1.2.3, 1.2.3_BETA1 and 1.2.3_RC2.
The name of the VRDE module if the extension pack sports one.
94
5 Classes (interfaces)
String indicating why the extension pack is not usable. This is an empty string if usable and
always a non-empty string if not usable.
The default HTML license text for the extension pack. Same as calling queryLicense with
preferredLocale and preferredLanguage as empty strings and format set to html.
5.29.2 queryLicense
wstring IExtPackBase::queryLicense(
[in] wstring preferredLocale,
[in] wstring preferredLanguage,
[in] wstring format)
preferredLocale The preferred license locale. Pass an empty string to get the default license.
preferredLanguage The preferred license language. Pass an empty string to get the default
language for the locale.
format The license format: html, rtf or txt. If a license is present there will always be an HTML
of it, the rich text format (RTF) and plain text (txt) versions are optional. If
Note: This interface extends IExtPackBase and therefore supports all its methods and
attributes as well.
95
5 Classes (interfaces)
5.30.1 Attributes
5.30.1.1 filePath (read-only)
wstring IExtPackFile::filePath
5.30.2 install
IProgress IExtPackFile::install(
[in] boolean replace,
[in] wstring displayInfo)
replace Set this to automatically uninstall any existing extension pack with the same name as
the one being installed.
displayInfo Platform specific display information. Reserved for future hacks.
Install the extension pack.
5.31 IExtPackManager
5.31.1 Attributes
5.31.1.1 installedExtPacks (read-only)
IExtPack IExtPackManager::installedExtPacks[]
5.31.2 cleanup
void IExtPackManager::cleanup()
5.31.3 find
IExtPack IExtPackManager::find(
[in] wstring name)
96
5 Classes (interfaces)
5.31.4 isExtPackUsable
boolean IExtPackManager::isExtPackUsable(
[in] wstring name)
5.31.5 openExtPackFile
IExtPackFile IExtPackManager::openExtPackFile(
[in] wstring path)
path The path of the extension pack tarball. This can optionally be followed by a ::SHA-
256=hex-digit of the tarball.
5.31.6 queryAllPlugInsForFrontend
wstring[] IExtPackManager::queryAllPlugInsForFrontend(
[in] wstring frontendName)
Gets the path to all the plug-in modules for a given frontend.
This is a convenience method that is intended to simplify the plug-in loading process for a
frontend.
5.31.7 uninstall
IProgress IExtPackManager::uninstall(
[in] wstring name,
[in] boolean forcedRemoval,
[in] wstring displayInfo)
5.32 IExtPackPlugIn
Interface for keeping information about a plug-in that ships with an extension pack.
97
5 Classes (interfaces)
5.32.1 Attributes
5.32.1.1 name (read-only)
wstring IExtPackPlugIn::name
The name of the frontend or component name this plug-in plugs into.
Note: This interface extends IVetoEvent and therefore supports all its methods and
attributes as well.
Notification when someone tries to change extra data for either the given machine or (if null)
global extra data. This gives the chance to veto against changes.
5.33.1 Attributes
5.33.1.1 machineId (read-only)
uuid IExtraDataCanChangeEvent::machineId
ID of the machine this event relates to. Null for global extra data changes.
98
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.34.1 Attributes
5.34.1.1 machineId (read-only)
uuid IExtraDataChangedEvent::machineId
ID of the machine this event relates to. Null for global extra data changes.
5.35 IFile
Abstract parent interface for files handled by VirtualBox.
5.35.1 Attributes
5.35.1.1 eventSource (read-only)
IEventSource IFile::eventSource
5.35.1.2 id (read-only)
unsigned long IFile::id
99
5 Classes (interfaces)
5.35.2 close
void IFile::close()
Closes this file. After closing operations like reading data, writing data or querying information
will not be possible anymore.
5.35.3 queryInfo
IFsObjInfo IFile::queryInfo()
100
5 Classes (interfaces)
5.35.4 querySize
long long IFile::querySize()
5.35.5 read
octet[] IFile::read(
[in] unsigned long toRead,
[in] unsigned long timeoutMS)
5.35.6 readAt
octet[] IFile::readAt(
[in] long long offset,
[in] unsigned long toRead,
[in] unsigned long timeoutMS)
timeoutMS Timeout (in ms) to wait for the operation to complete. Pass 0 for an infinite timeout.
5.35.7 seek
long long IFile::seek(
[in] long long offset,
[in] FileSeekOrigin whence)
101
5 Classes (interfaces)
5.35.8 setACL
void IFile::setACL(
[in] wstring acl,
[in] unsigned long mode)
5.35.9 setSize
void IFile::setSize(
[in] long long size)
5.35.10 write
unsigned long IFile::write(
[in] octet data[],
[in] unsigned long timeoutMS)
data Array of bytes to write. The size of the array also specifies how much to write.
timeoutMS Timeout (in ms) to wait for the operation to complete. Pass 0 for an infinite timeout.
5.35.11 writeAt
unsigned long IFile::writeAt(
[in] long long offset,
[in] octet data[],
[in] unsigned long timeoutMS)
102
5 Classes (interfaces)
5.36 IFramebuffer
5.36.1 Attributes
5.36.1.1 width (read-only)
unsigned long IFramebuffer::width
Frame buffer pixel format. Its one of the values defined by BitmapFormat.
Note: This attribute must never (and will never) return Opaque the format of the
frame buffer must be always known.
Hint from the frame buffer about how much of the standard screen height it wants to use for
itself. This information is exposed to the guest through the VESA BIOS and VMMDev interface
so that it can use it for determining its video mode table. It is not guaranteed that the guest
respects the value.
An alpha-blended overlay which is superposed over the frame buffer. The initial purpose is to
allow the display of icons providing information about the VM state, including disk activity, in
front ends which do not have other means of doing that. The overlay is designed to controlled
exclusively by IDisplay. It has no locking of its own, and any changes made to it are not guar-
anteed to be visible until the affected portion of IFramebuffer is updated. The overlay can be
created lazily the first time it is requested. This attribute can also return null to signal that the
overlay is not implemented.
103
5 Classes (interfaces)
Platform-dependent identifier of the window where context of this frame buffer is drawn, or
zero if theres no such window.
5.36.2 getVisibleRegion
Note: The address of the provided array must be in the process space of this IFrame-
buffer object.
5.36.3 notify3DEvent
void IFramebuffer::notify3DEvent(
[in] unsigned long type,
[in] octet data[])
104
5 Classes (interfaces)
5.36.4 notifyChange
void IFramebuffer::notifyChange(
[in] unsigned long screenId,
[in] unsigned long xOrigin,
[in] unsigned long yOrigin,
[in] unsigned long width,
[in] unsigned long height)
5.36.5 notifyUpdate
void IFramebuffer::notifyUpdate(
[in] unsigned long x,
[in] unsigned long y,
[in] unsigned long width,
[in] unsigned long height)
x
y
width
height
Informs about an update. Gets called by the display object where this buffer is registered.
5.36.6 notifyUpdateImage
void IFramebuffer::notifyUpdateImage(
[in] unsigned long x,
[in] unsigned long y,
[in] unsigned long width,
[in] unsigned long height,
[in] octet image[])
x
y
width
height
image Array with 32BPP image data.
105
5 Classes (interfaces)
5.36.7 processVHWACommand
void IFramebuffer::processVHWACommand(
[in] [ptr] octet command)
Posts a Video HW Acceleration Command to the frame buffer for processing. The commands
used for 2D video acceleration (DDraw surface creation/destroying, blitting, scaling, color con-
version, overlaying, etc.) are posted from quest to the host to be processed by the host hardware.
Note: The address of the provided command must be in the process space of this
IFramebuffer object.
5.36.8 setVisibleRegion
void IFramebuffer::setVisibleRegion(
[in] [ptr] octet rectangles,
[in] unsigned long count)
Suggests a new visible region to this frame buffer. This region represents the area of the VM
display which is a union of regions of all top-level windows of the guest operating system running
inside the VM (if the Guest Additions for this system support this functionality). This information
may be used by the frontends to implement the seamless desktop integration feature.
Note: The address of the provided array must be in the process space of this IFrame-
buffer object.
Note: The IFramebuffer implementation must make a copy of the provided array of
rectangles.
106
5 Classes (interfaces)
5.36.9 videoModeSupported
boolean IFramebuffer::videoModeSupported(
[in] unsigned long width,
[in] unsigned long height,
[in] unsigned long bpp)
width
height
bpp
Returns whether the frame buffer implementation is willing to support a given video mode.
In case it is not able to render the video mode (or for some reason not willing), it should return
false. Usually this method is called when the guest asks the VMM device whether a given video
mode is supported so the information returned is directly exposed to the guest. It is important
that this method returns very quickly.
Note: This interface extends IFramebuffer and therefore supports all its methods and
attributes as well.
The IFramebufferOverlay interface represents an alpha blended overlay for displaying status
icons above an IFramebuffer. It is always created not visible, so that it must be explicitly shown.
It only covers a portion of the IFramebuffer, determined by its width, height and co-ordinates. It
is always in packed pixel little-endian 32bit ARGB (in that order) format, and may be written to
directly. Do re-read the width though, after setting it, as it may be adjusted (increased) to make
it more suitable for the front end.
5.37.1 Attributes
5.37.1.1 x (read-only)
unsigned long IFramebufferOverlay::x
5.37.1.2 y (read-only)
unsigned long IFramebufferOverlay::y
The global alpha value for the overlay. This may or may not be supported by a given front end.
107
5 Classes (interfaces)
5.37.2 move
void IFramebufferOverlay::move(
[in] unsigned long x,
[in] unsigned long y)
x
y
5.38 IFsObjInfo
Abstract parent interface for VirtualBox file system object information. This can be information
about a file or a directory, for example.
5.38.1 Attributes
5.38.1.1 accessTime (read-only)
long long IFsObjInfo::accessTime
108
5 Classes (interfaces)
The unique identifier (within the filesystem) of this filesystem object (st_ino).
The device number of the device which this filesystem object resides on (st_dev).
The logical size (st_size). For normal files this is the size of the file. For symbolic links, this is
the length of the path name contained in the symbolic link. For other objects this fields needs to
be specified.
109
5 Classes (interfaces)
5.39 IGuest
The IGuest interface represents information about the operating system running inside the virtual
machine. Used in IConsole::guest.
IGuest provides information about the guest operating system, whether Guest Additions are
installed and other OS-specific virtual machine properties.
5.39.1 Attributes
5.39.1.1 OSTypeId (read-only)
wstring IGuest::OSTypeId
Identifier of the Guest OS type as reported by the Guest Additions. You may use
IVirtualBox::getGuestOSType() to obtain an IGuestOSType object representing details about
the given Guest OS type.
Note: If Guest Additions are not installed, this value will be the same as
IMachine::OSTypeId.
110
5 Classes (interfaces)
Retrieves the dragn drop source implementation for the guest side, that is, handling and
retrieving dragn drop data from the guest.
Retrieves the dragn drop source implementation for the host side. This will allow the host to
handle and initiate a dragn drop operation to copy data from the host to the guest.
Returns a collection of current known facilities. Only returns facilities where a status is known,
e.g. facilities with an unknown status will not be returned.
111
5 Classes (interfaces)
5.39.2 createSession
IGuestSession IGuest::createSession(
[in] wstring user,
[in] wstring password,
[in] wstring domain,
[in] wstring sessionName)
user User name this session will be using to control the guest; has to exist and have the appro-
priate rights to execute programs in the VM. Must not be empty.
password Password of the user account to be used. Empty passwords are allowed.
domain Domain name of the user account to be used if the guest is part of a domain. Optional.
This feature is not implemented yet.
sessionName The sessions friendly name. Optional, can be empty.
Creates a new guest session for controlling the guest. The new session will be started asyn-
chronously, meaning on return of this function it is not guaranteed that the guest session is in a
started and/or usable state. To wait for successful startup, use the IGuestSession::waitFor() call.
A guest session represents one impersonated user account in the guest, so every operation
will use the same credentials specified when creating the session object via createSession().
Anonymous sessions, that is, sessions without specifying a valid user account in the guest are not
allowed reasons of security.
There can be a maximum of 32 sessions at once per VM. An error will be returned if this has
been reached.
For more information please consult IGuestSession
5.39.3 findSession
IGuestSession[] IGuest::findSession(
[in] wstring sessionName)
sessionName The sessions friendly name to find. Wildcards like ? and * are allowed.
Finds guest sessions by their friendly name and returns an interface array with all found guest
sessions.
5.39.4 getAdditionsStatus
boolean IGuest::getAdditionsStatus(
[in] AdditionsRunLevelType level)
5.39.5 getFacilityStatus
AdditionsFacilityStatus IGuest::getFacilityStatus(
[in] AdditionsFacilityType facility,
[out] long long timestamp)
112
5 Classes (interfaces)
5.39.6 internalGetStatistics
void IGuest::internalGetStatistics(
[out] unsigned long cpuUser,
[out] unsigned long cpuKernel,
[out] unsigned long cpuIdle,
[out] unsigned long memTotal,
[out] unsigned long memFree,
[out] unsigned long memBalloon,
[out] unsigned long memShared,
[out] unsigned long memCache,
[out] unsigned long pagedTotal,
[out] unsigned long memAllocTotal,
[out] unsigned long memFreeTotal,
[out] unsigned long memBalloonTotal,
[out] unsigned long memSharedTotal)
cpuUser Percentage of processor time spent in user mode as seen by the guest.
cpuKernel Percentage of processor time spent in kernel mode as seen by the guest.
cpuIdle Percentage of processor time spent idling as seen by the guest.
memTotal Total amount of physical guest RAM.
memFree Free amount of physical guest RAM.
memBalloon Amount of ballooned physical guest RAM.
memShared Amount of shared physical guest RAM.
memCache Total amount of guest (disk) cache memory.
pagedTotal Total amount of space in the page file.
memAllocTotal Total amount of memory allocated by the hypervisor.
memFreeTotal Total amount of free memory available in the hypervisor.
memBalloonTotal Total amount of memory ballooned by the hypervisor.
memSharedTotal Total amount of shared memory in the hypervisor.
5.39.7 setCredentials
void IGuest::setCredentials(
[in] wstring userName,
[in] wstring password,
[in] wstring domain,
[in] boolean allowInteractiveLogon)
113
5 Classes (interfaces)
Store login credentials that can be queried by guest operating systems with Additions installed.
The credentials are transient to the session and the guest may also choose to erase them. Note
that the caller cannot determine whether the guest operating system has queried or made use of
the credentials.
If this method fails, the following error codes may be reported:
5.39.8 updateGuestAdditions
IProgress IGuest::updateGuestAdditions(
[in] wstring source,
[in] wstring arguments[],
[in] AdditionsUpdateFlag flags[])
source Path to the Guest Additions .ISO file to use for the update.
arguments Optional command line arguments to use for the Guest Additions installer. Useful
for retrofitting features which werent installed before in the guest.
flags AdditionsUpdateFlag flags.
Note: This interface extends IDirectory and therefore supports all its methods and
attributes as well.
5.40.1 Attributes
5.40.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestDirectory::midlDoesNotLikeEmptyInterfaces
114
5 Classes (interfaces)
Note: This interface extends IDnDSource and therefore supports all its methods and
attributes as well.
Implementation of the IDnDSource object for source dragn drop operations on the guest.
5.41.1 Attributes
5.41.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestDnDSource::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IDnDTarget and therefore supports all its methods and
attributes as well.
Implementation of the IDnDTarget object for target dragn drop operations on the guest.
5.42.1 Attributes
5.42.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestDnDTarget::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IFile and therefore supports all its methods and attributes
as well.
5.43.1 Attributes
5.43.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestFile::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IGuestSessionEvent and therefore supports all its methods
and attributes as well.
115
5 Classes (interfaces)
5.44.1 Attributes
5.44.1.1 file (read-only)
IGuestFile IGuestFileEvent::file
Note: This interface extends IGuestFileEvent and therefore supports all its methods
and attributes as well.
Base abstract interface for all guest file input/output (IO) events.
5.45.1 Attributes
5.45.1.1 offset (read-only)
long long IGuestFileIOEvent::offset
Note: This interface extends IGuestFileIOEvent and therefore supports all its methods
and attributes as well.
5.46.1 Attributes
5.46.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestFileOffsetChangedEvent::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IGuestFileIOEvent and therefore supports all its methods
and attributes as well.
116
5 Classes (interfaces)
5.47.1 Attributes
5.47.1.1 data (read-only)
octet IGuestFileReadEvent::data[]
Note: This interface extends IGuestFileEvent and therefore supports all its methods
and attributes as well.
5.48.1 Attributes
5.48.1.1 registered (read-only)
boolean IGuestFileRegisteredEvent::registered
Note: This interface extends IGuestFileEvent and therefore supports all its methods
and attributes as well.
5.49.1 Attributes
5.49.1.1 status (read-only)
FileStatus IGuestFileStateChangedEvent::status
Note: This interface extends IGuestFileIOEvent and therefore supports all its methods
and attributes as well.
117
5 Classes (interfaces)
5.50.1 Attributes
5.50.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestFileWriteEvent::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IFsObjInfo and therefore supports all its methods and
attributes as well.
5.51.1 Attributes
5.51.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestFsObjInfo::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.52.1 Attributes
5.52.1.1 scancodes (read-only)
long IGuestKeyboardEvent::scancodes[]
Array of scancodes.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.53.1 Attributes
5.53.1.1 changeType (read-only)
GuestMonitorChangedEventType IGuestMonitorChangedEvent::changeType
118
5 Classes (interfaces)
Physical X origin relative to the primary screen. Valid for Enabled and NewOrigin.
Physical Y origin relative to the primary screen. Valid for Enabled and NewOrigin.
Note: This interface extends IReusableEvent and therefore supports all its methods and
attributes as well.
5.54.1 Attributes
5.54.1.1 mode (read-only)
GuestMouseEventMode IGuestMouseEvent::mode
5.54.1.2 x (read-only)
long IGuestMouseEvent::x
5.54.1.3 y (read-only)
long IGuestMouseEvent::y
119
5 Classes (interfaces)
5.54.1.4 z (read-only)
long IGuestMouseEvent::z
Z delta.
5.54.1.5 w (read-only)
long IGuestMouseEvent::w
W delta.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.55.1 Attributes
5.55.1.1 contactCount (read-only)
long IGuestMultiTouchEvent::contactCount
X positions.
Y positions.
Contact identifiers.
120
5 Classes (interfaces)
Timestamp of the event in milliseconds. Only relative time between events is important.
5.56 IGuestOSType
Note: With the web service, this interface is mapped to a structure. Attributes that
return this interface will not return an object, but a complete structure containing the
attributes listed below as structure members.
5.56.1 Attributes
5.56.1.1 familyId (read-only)
wstring IGuestOSType::familyId
5.56.1.3 id (read-only)
wstring IGuestOSType::id
121
5 Classes (interfaces)
122
5 Classes (interfaces)
Returns true if using USB Human Interface Devices, such as keyboard and mouse recom-
mended.
123
5 Classes (interfaces)
Returns true if using VCPU reset on triple fault is recommended for this OS type.
Note: This interface extends IProcess and therefore supports all its methods and at-
tributes as well.
Implementation of the IProcess object for processes the host has started in the guest.
5.57.1 Attributes
5.57.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IGuestProcess::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IGuestSessionEvent and therefore supports all its methods
and attributes as well.
124
5 Classes (interfaces)
5.58.1 Attributes
5.58.1.1 process (read-only)
IGuestProcess IGuestProcessEvent::process
Note: This interface extends IGuestProcessEvent and therefore supports all its methods
and attributes as well.
Base abstract interface for all guest process input/output (IO) events.
5.59.1 Attributes
5.59.1.1 handle (read-only)
unsigned long IGuestProcessIOEvent::handle
Input/output (IO) handle involved in this event. Usually 0 is stdin, 1 is stdout and 2 is stderr.
5.60 IGuestProcessInputNotifyEvent
(IGuestProcessIOEvent)
Note: This interface extends IGuestProcessIOEvent and therefore supports all its meth-
ods and attributes as well.
5.60.1 Attributes
5.60.1.1 status (read-only)
ProcessInputStatus IGuestProcessInputNotifyEvent::status
125
5 Classes (interfaces)
Note: This interface extends IGuestProcessIOEvent and therefore supports all its meth-
ods and attributes as well.
5.61.1 Attributes
5.61.1.1 data (read-only)
octet IGuestProcessOutputEvent::data[]
Note: This interface extends IGuestProcessEvent and therefore supports all its methods
and attributes as well.
5.62.1 Attributes
5.62.1.1 registered (read-only)
boolean IGuestProcessRegisteredEvent::registered
5.63 IGuestProcessStateChangedEvent
(IGuestProcessEvent)
Note: This interface extends IGuestProcessEvent and therefore supports all its methods
and attributes as well.
5.63.1 Attributes
5.63.1.1 status (read-only)
ProcessStatus IGuestProcessStateChangedEvent::status
126
5 Classes (interfaces)
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
5.64.1 Attributes
5.64.1.1 name (read-only)
wstring IGuestPropertyChangedEvent::name
5.65 IGuestScreenInfo
5.65.1 Attributes
5.65.1.1 screenId (read-only)
unsigned long IGuestScreenInfo::screenId
127
5 Classes (interfaces)
5.66 IGuestSession
A guest session represents one impersonated user account in the guest, so every operation will
use the same credentials specified when creating the session object via IGuest::createSession().
There can be a maximum of 32 sessions at once per VM, whereas session 0 is reserved for the
root session.
This root session is controlling all other guest sessions and also is responsible for actions which
require system level privileges.
Each guest session keeps track of the guest directories and files that it opened as well as guest
processes it has created. To work on guest files or directories a guest session offers methods to
open or create such objects (see fileOpen() or directoryOpen() for instance). Similarly, there a
methods for creating guest processes.
There can be up to 2048 objects (guest processes, files and directories) a time per guest session.
Exceeding the limit will result in an error.
When done with either of these objects, including the guest session itself, use the appropriate
close() method to let the object do its cleanup work.
Closing a session via close() will try to close all the mentioned objects above unless these
objects are still used by a client.
A set of environment variables changes is associated with each session (environmentChanges[]).
These are applied to the base environment of the impersonated guest user when creating a new
guest process. For additional flexibility the processCreate() and processCreateEx() methods
allows you to specify individual environment changes for each process you create. With newer
guest addition versions, the base environment is also made available via environmentBase[].
(One reason for why we record changes to a base environment instead of working directly on an
environment block is that we need to be compatible with older guest additions. Another reason
is that this way it is always possible to undo all the changes youve scheduled.)
5.66.1 Attributes
5.66.1.1 user (read-only)
wstring IGuestSession::user
Returns the user name used by this session to impersonate users in the guest.
Returns the domain name used by this session to impersonate users in the guest.
128
5 Classes (interfaces)
5.66.1.4 id (read-only)
unsigned long IGuestSession::id
Returns the protocol version which is used by this session to communicate with the guest.
The set of scheduled environment changes to the base environment of the session. They are
in putenv format, i.e. VAR=VALUE for setting and VAR for unsetting. One entry per variable
(change). The changes are applied when creating new guest processes.
This is writable, so to undo all the scheduled changes, assign it an empty array.
The base environment of the session. They are on the VAR=VALUE form, one array entry
per variable.
Access fails with VBOX_E_NOT_SUPPORTED if the guest additions does not support the ses-
sion base environment feature. Support for this was introduced with protocol version XXXX.
Access fails with VBOX_E_INVALID_OBJECT_STATE if the guest additions has yet to report the
session base environment.
129
5 Classes (interfaces)
The style of paths used by the guest. Handy for giving the right kind of path specifications to
fileOpen() and similar methods.
5.66.2 close
void IGuestSession::close()
Closes this session. All opened guest directories, files and processes which are not referenced
by clients anymore will be closed. Guest processes which fall into this category and still are
running in the guest will be terminated automatically.
5.66.3 directoryCopy
IProgress IGuestSession::directoryCopy(
[in] wstring source,
[in] wstring destination,
[in] DirectoryCopyFlags flags[])
source The path to the directory to copy (in the guest). Guest path style.
destination The path to the target directory (in the guest). Unless the CopyIntoExisting flag is
given, the directory shall not already exist. Guest path style.
130
5 Classes (interfaces)
5.66.4 directoryCopyFromGuest
IProgress IGuestSession::directoryCopyFromGuest(
[in] wstring source,
[in] wstring destination,
[in] DirectoryCopyFlags flags[])
source Path to the directory on the guest side that should be copied to the host. Guest path
style.
destination Where to put the directory on the host. Unless the CopyIntoExisting flag is given,
the directory shall not already exist. Host path style.
5.66.5 directoryCopyToGuest
IProgress IGuestSession::directoryCopyToGuest(
[in] wstring source,
[in] wstring destination,
[in] DirectoryCopyFlags flags[])
source Path to the directory on the host side that should be copied to the guest. Host path style.
destination Where to put the file in the guest. Unless the CopyIntoExisting flag is given, the
directory shall not already exist. Guest style path.
5.66.6 directoryCreate
void IGuestSession::directoryCreate(
[in] wstring path,
[in] unsigned long mode,
[in] DirectoryCreateFlag flags[])
131
5 Classes (interfaces)
5.66.7 directoryCreateTemp
wstring IGuestSession::directoryCreateTemp(
[in] wstring templateName,
[in] unsigned long mode,
[in] wstring path,
[in] boolean secure)
templateName Template for the name of the directory to create. This must contain at least one
X character. The first group of consecutive X characters in the template will be replaced
by a random alphanumeric string to produce a unique name.
mode The UNIX-style access mode mask to create the directory with. Whether/how all three
access groups and associated access rights are realized is guest OS dependent. The API
does the best it can on each OS.
This parameter is ignore if the secure parameter is set to true.
path The path to the directory in which the temporary directory should be created. Guest path
style.
secure Whether to fail if the directory can not be securely created. Currently this means that
another unprivileged user cannot manipulate the path specified or remove the temporary
directory after it has been created. Also causes the mode specified to be ignored. May not
be supported on all guest types.
5.66.8 directoryExists
boolean IGuestSession::directoryExists(
[in] wstring path,
[in] boolean followSymlinks)
132
5 Classes (interfaces)
5.66.9 directoryOpen
IGuestDirectory IGuestSession::directoryOpen(
[in] wstring path,
[in] wstring filter,
[in] DirectoryOpenFlag flags[])
Opens a directory in the guest and creates a IGuestDirectory object that can be used for further
operations.
Note: This method follows symbolic links by default at the moment, this may change
in the future.
5.66.10 directoryRemove
void IGuestSession::directoryRemove(
[in] wstring path)
path Path to the directory that should be removed. Guest path style.
Note: Symbolic links in the final component will not be followed, instead an not-a-
directory error is reported.
5.66.11 directoryRemoveRecursive
IProgress IGuestSession::directoryRemoveRecursive(
[in] wstring path,
[in] DirectoryRemoveRecFlag flags[])
path Path of the directory that is to be removed recursively. Guest path style.
flags Zero or more DirectoryRemoveRecFlag flags.
133
5 Classes (interfaces)
Note: WARNING!! THE FLAGS ARE NOT CURRENTLY IMPLEMENTED. THE IMPLE-
MENTATION WORKS AS IF FLAGS WAS SET TO ContentAndDir.
Note: If the final path component is a symbolic link, this method will fail as it can only
be applied to directories.
5.66.12 environmentDoesBaseVariableExist
boolean IGuestSession::environmentDoesBaseVariableExist(
[in] wstring name)
name Name of the environment variable to look for. This cannot be empty nor can it contain
any equal signs.
Checks if the given environment variable exists in the sessions base environment
(environmentBase[]).
If this method fails, the following error codes may be reported:
VBOX_E_NOT_SUPPORTED: If the guest additions does not support the session base envi-
ronment feature. Support for this was introduced with protocol version XXXX.
VBOX_E_INVALID_OBJECT_STATE: If the guest additions has yet to report the session base
environment.
5.66.13 environmentGetBaseVariable
wstring IGuestSession::environmentGetBaseVariable(
[in] wstring name)
name Name of the environment variable to get.This cannot be empty nor can it contain any
equal signs.
VBOX_E_NOT_SUPPORTED: If the guest additions does not support the session base envi-
ronment feature. Support for this was introduced with protocol version XXXX.
VBOX_E_INVALID_OBJECT_STATE: If the guest additions has yet to report the session base
environment.
5.66.14 environmentScheduleSet
void IGuestSession::environmentScheduleSet(
[in] wstring name,
[in] wstring value)
name Name of the environment variable to set. This cannot be empty nor can it contain any
equal signs.
value Value to set the session environment variable to.
Schedules setting an environment variable when creating the next guest process. This affects
the environmentChanges[] attribute.
134
5 Classes (interfaces)
5.66.15 environmentScheduleUnset
void IGuestSession::environmentScheduleUnset(
[in] wstring name)
name Name of the environment variable to unset. This cannot be empty nor can it contain any
equal signs.
Schedules unsetting (removing) an environment variable when creating the next guest pro-
cess. This affects the environmentChanges[] attribute.
5.66.16 fileCopy
IProgress IGuestSession::fileCopy(
[in] wstring source,
[in] wstring destination,
[in] FileCopyFlag flags[])
source The path to the file to copy (in the guest). Guest path style.
destination The path to the target file (in the guest). This cannot be a directory. Guest path
style.
flags Zero or more FileCopyFlag values.
5.66.17 fileCopyFromGuest
IProgress IGuestSession::fileCopyFromGuest(
[in] wstring source,
[in] wstring destination,
[in] FileCopyFlag flags[])
source Path to the file on the guest side that should be copied to the host. Guest path style.
destination Where to put the file on the host (file, not directory). Host path style.
135
5 Classes (interfaces)
5.66.18 fileCopyToGuest
IProgress IGuestSession::fileCopyToGuest(
[in] wstring source,
[in] wstring destination,
[in] FileCopyFlag flags[])
source Path to the file on the host side that should be copied to the guest. Host path style.
destination Where to put the file in the guest (file, not directory). Guest style path.
flags Zero or more FileCopyFlag values.
Copies a file from the host to the guest.
5.66.19 fileCreateTemp
IGuestFile IGuestSession::fileCreateTemp(
[in] wstring templateName,
[in] unsigned long mode,
[in] wstring path,
[in] boolean secure)
templateName Template for the name of the file to create. This must contain at least one X
character. The first group of consecutive X characters in the template will be replaced by
a random alphanumeric string to produce a unique name.
mode The UNIX-style access mode mask to create the file with. Whether/how all three access
groups and associated access rights are realized is guest OS dependent. The API does the
best it can on each OS.
This parameter is ignore if the secure parameter is set to true.
path The path to the directory in which the temporary file should be created.
secure Whether to fail if the file can not be securely created. Currently this means that another
unprivileged user cannot manipulate the path specified or remove the temporary file after
it has been created. Also causes the mode specified to be ignored. May not be supported
on all guest types.
Creates a temporary file in the guest.
If this method fails, the following error codes may be reported:
VBOX_E_NOT_SUPPORTED: The operation is not possible as requested on this particular
guest OS.
E_INVALIDARG: Invalid argument. This includes an incorrectly formatted template, or a
non-absolute path.
VBOX_E_IPRT_ERROR: The temporary file could not be created. Possible reasons include
a non-existing path or an insecure path when the secure option was requested.
136
5 Classes (interfaces)
5.66.20 fileExists
boolean IGuestSession::fileExists(
[in] wstring path,
[in] boolean followSymlinks)
5.66.21 fileOpen
IGuestFile IGuestSession::fileOpen(
[in] wstring path,
[in] FileAccessMode accessMode,
[in] FileOpenAction openAction,
[in] unsigned long creationMode)
creationMode The UNIX-style access mode mask to create the file with if openAction requested
the file to be created (otherwise ignored). Whether/how all three access groups and as-
sociated access rights are realized is guest OS dependent. The API does the best it can on
each OS.
Opens a file and creates a IGuestFile object that can be used for further operations.
If this method fails, the following error codes may be reported:
5.66.22 fileOpenEx
IGuestFile IGuestSession::fileOpenEx(
[in] wstring path,
[in] FileAccessMode accessMode,
[in] FileOpenAction openAction,
[in] FileSharingMode sharingMode,
[in] unsigned long creationMode,
[in] FileOpenExFlags flags[])
accessMode The file access mode (read, write and/or append). See FileAccessMode for details.
137
5 Classes (interfaces)
openAction What action to take depending on whether the file exists or not. See
FileOpenAction for details.
sharingMode The file sharing mode in the guest. This parameter is currently ignore for all
guest OSes. It will in the future be implemented for Windows, OS/2 and maybe Solaris
guests only, the others will ignore it. Use All.
creationMode The UNIX-style access mode mask to create the file with if openAction requested
the file to be created (otherwise ignored). Whether/how all three access groups and as-
sociated access rights are realized is guest OS dependent. The API does the best it can on
each OS.
flags Zero or more FileOpenExFlags values.
Opens a file and creates a IGuestFile object that can be used for further operations, extended
version.
If this method fails, the following error codes may be reported:
5.66.23 fileQuerySize
long long IGuestSession::fileQuerySize(
[in] wstring path,
[in] boolean followSymlinks)
path Path to the file which size is requested. Guest path style.
followSymlinks It true, symbolic links in the final path component will be followed to their
target, and the size of the target is returned. If false, symbolic links in the final path
component will make the method call fail (symblink is not a regular file).
5.66.24 fsObjExists
boolean IGuestSession::fsObjExists(
[in] wstring path,
[in] boolean followSymlinks)
path Path to the file system object to check the existance of. Guest path style.
followSymlinks If true, symbolic links in the final component will be followed and the method
will instead check if the target exists. If false, symbolic links in the final component will
satisfy the method and it will return true in exists.
Checks whether a file system object (file, directory, etc) exists in the guest or not.
If this method fails, the following error codes may be reported:
138
5 Classes (interfaces)
5.66.25 fsObjMove
IProgress IGuestSession::fsObjMove(
[in] wstring source,
[in] wstring destination,
[in] FsObjMoveFlags flags[])
5.66.26 fsObjQueryInfo
IGuestFsObjInfo IGuestSession::fsObjQueryInfo(
[in] wstring path,
[in] boolean followSymlinks)
path Path to the file system object to gather information about. Guest path style.
followSymlinks Information about symbolic links is returned if false. Otherwise, symbolic
links are followed and the returned information concerns itself with the symlink target if
true.
Queries information about a file system object (file, directory, etc) in the guest.
If this method fails, the following error codes may be reported:
VBOX_E_OBJECT_NOT_FOUND: The file system object was not found.
VBOX_E_IPRT_ERROR: Error while querying information.
5.66.27 fsObjRemove
void IGuestSession::fsObjRemove(
[in] wstring path)
path Path to the file system object to remove. Guest style path.
Removes a file system object (file, symlink, etc) in the guest. Will not work on directories, use
directoryRemove() to remove directories.
Note: This method will remove symbolic links in the final path component, not follow
them.
139
5 Classes (interfaces)
5.66.28 fsObjRename
void IGuestSession::fsObjRename(
[in] wstring oldPath,
[in] wstring newPath,
[in] FsObjRenameFlag flags[])
Renames a file system object (file, directory, symlink, etc) in the guest.
If this method fails, the following error codes may be reported:
5.66.29 fsObjSetACL
void IGuestSession::fsObjSetACL(
[in] wstring path,
[in] boolean followSymlinks,
[in] wstring acl,
[in] unsigned long mode)
path Full path of the file system object which ACL to set
followSymlinks If true symbolic links in the final component will be followed, otherwise, if
false, the method will work directly on a symbolic link in the final component.
mode UNIX-style mode mask to use if acl is empty. As mention in directoryCreate() this is
realized on a best effort basis and the exact behavior depends on the Guest OS.
Sets the access control list (ACL) of a file system object (file, directory, etc) in the guest.
If this method fails, the following error codes may be reported:
5.66.30 processCreate
IGuestProcess IGuestSession::processCreate(
[in] wstring executable,
[in] wstring arguments[],
[in] wstring environmentChanges[],
[in] ProcessCreateFlag flags[],
[in] unsigned long timeoutMS)
executable Full path to the file to execute in the guest. The file has to exists in the guest VM
with executable right to the session user in order to succeed. If empty/null, the first entry
in the arguments array will be used instead (i.e. argv[0]).
140
5 Classes (interfaces)
Note: Starting with VirtualBox 5.0 this array starts with argument 0 instead of argu-
ment 1 as in previous versions. Whether the zeroth argument can be passed to the
guest depends on the VBoxService version running there. If you depend on this, check
that the protocolVersion is 3 or higher.
Note: Starting at VirtualBox 4.2 guest process execution by is default limited to serve
up to 255 guest processes at a time. If all 255 guest processes are active and running,
creating a new guest process will result in an error.
If ProcessCreateFlag_WaitForStdOut and/or ProcessCreateFlag_WaitForStdErr are set,
the guest process will not enter the terminated state until all data from the specified
streams have been read read.
5.66.31 processCreateEx
IGuestProcess IGuestSession::processCreateEx(
[in] wstring executable,
[in] wstring arguments[],
[in] wstring environmentChanges[],
[in] ProcessCreateFlag flags[],
[in] unsigned long timeoutMS,
[in] ProcessPriority priority,
[in] long affinity[])
executable Full path to the file to execute in the guest. The file has to exists in the guest VM
with executable right to the session user in order to succeed. If empty/null, the first entry
in the arguments array will be used instead (i.e. argv[0]).
arguments Array of arguments passed to the new process.
Note: Starting with VirtualBox 5.0 this array starts with argument 0 instead of argu-
ment 1 as in previous versions. Whether the zeroth argument can be passed to the
guest depends on the VBoxService version running there. If you depend on this, check
that the protocolVersion is 3 or higher.
141
5 Classes (interfaces)
affinity Processor affinity to set for the new process. This is a list of guest CPU numbers the
process is allowed to run on.
Note: This is silently ignored if the guest does not support setting the affinity of pro-
cesses, or if the guest additions does not implemet this feature.
Creates a new process running in the guest with the extended options for setting the process
priority and affinity.
See processCreate() for more information.
5.66.32 processGet
IGuestProcess IGuestSession::processGet(
[in] unsigned long pid)
5.66.33 symlinkCreate
void IGuestSession::symlinkCreate(
[in] wstring symlink,
[in] wstring target,
[in] SymlinkType type)
symlink Path to the symbolic link that should be created. Guest path style.
target The path to the symbolic link target. If not an absolute, this will be relative to the
symlink location at access time. Guest path style.
type The symbolic link type (mainly for Windows). See SymlinkType for more information.
Creates a symbolic link in the guest.
If this method fails, the following error codes may be reported:
E_NOTIMPL: The method is not implemented yet.
142
5 Classes (interfaces)
5.66.34 symlinkExists
boolean IGuestSession::symlinkExists(
[in] wstring symlink)
5.66.35 symlinkRead
wstring IGuestSession::symlinkRead(
[in] wstring symlink,
[in] SymlinkReadFlag flags[])
5.66.36 waitFor
GuestSessionWaitResult IGuestSession::waitFor(
[in] unsigned long waitFor,
[in] unsigned long timeoutMS)
waitFor Specifies what to wait for; see GuestSessionWaitForFlag for more information.
timeoutMS Timeout (in ms) to wait for the operation to complete. Pass 0 for an infinite timeout.
5.66.37 waitForArray
GuestSessionWaitResult IGuestSession::waitForArray(
[in] GuestSessionWaitForFlag waitFor[],
[in] unsigned long timeoutMS)
waitFor Specifies what to wait for; see GuestSessionWaitForFlag for more information.
timeoutMS Timeout (in ms) to wait for the operation to complete. Pass 0 for an infinite timeout.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
143
5 Classes (interfaces)
5.67.1 Attributes
5.67.1.1 session (read-only)
IGuestSession IGuestSessionEvent::session
Note: This interface extends IGuestSessionEvent and therefore supports all its methods
and attributes as well.
5.68.1 Attributes
5.68.1.1 registered (read-only)
boolean IGuestSessionRegisteredEvent::registered
5.69 IGuestSessionStateChangedEvent
(IGuestSessionEvent)
Note: This interface extends IGuestSessionEvent and therefore supports all its methods
and attributes as well.
5.69.1 Attributes
5.69.1.1 id (read-only)
unsigned long IGuestSessionStateChangedEvent::id
144
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.70.1 Attributes
5.70.1.1 name (read-only)
wstring IGuestUserStateChangedEvent::name
Name of the FQDN (fully qualified domain name) this user is bound to. Optional.
What was changed for this guest user. See GuestUserState for more information.
5.71 IHost
The IHost interface represents the physical machine that this VirtualBox installation runs on.
An object implementing this interface is returned by the IVirtualBox::host attribute. This inter-
face contains read-only information about the hosts physical hardware (such as what processors
and disks are available, what the host operating system is, and so on) and also allows for ma-
nipulating some of the hosts hardware, such as global USB device filters and host interface
networking.
5.71.1 Attributes
5.71.1.1 DVDDrives (read-only)
IMedium IHost::DVDDrives[]
145
5 Classes (interfaces)
List of USB devices currently attached to the host. Once a new device is physically attached to
the host computer, it appears in this list and remains there until detached.
Note: If USB functionality is not available in the given edition of VirtualBox, this
method will set the result code to E_NOTIMPL.
List of USB device filters in action. When a new device is physically attached to the host
computer, filters from this list are applied to it (in order they are stored in the list). The first
matched filter will determine the action performed on the device.
Unless the device is ignored by these filters, filters of all currently running virtual machines
(IUSBDeviceFilters::deviceFilters[]) are applied to it.
Note: If USB functionality is not available in the given edition of VirtualBox, this
method will set the result code to E_NOTIMPL.
146
5 Classes (interfaces)
147
5 Classes (interfaces)
5.71.2 addUSBDeviceSource
void IHost::addUSBDeviceSource(
[in] wstring backend,
[in] wstring id,
[in] wstring address,
[in] wstring propertyNames[],
[in] wstring propertyValues[])
5.71.3 createHostOnlyNetworkInterface
IProgress IHost::createHostOnlyNetworkInterface(
[out] IHostNetworkInterface hostInterface)
5.71.4 createUSBDeviceFilter
IHostUSBDeviceFilter IHost::createUSBDeviceFilter(
[in] wstring name)
Creates a new USB device filter. All attributes except the filter name are set to empty (any
match), active is false (the filter is not active).
The created filter can be added to the list of filters using insertUSBDeviceFilter().
See also: USBDeviceFilters[]
5.71.5 findHostDVDDrive
IMedium IHost::findHostDVDDrive(
[in] wstring name)
148
5 Classes (interfaces)
5.71.6 findHostFloppyDrive
IMedium IHost::findHostFloppyDrive(
[in] wstring name)
5.71.7 findHostNetworkInterfaceById
IHostNetworkInterface IHost::findHostNetworkInterfaceById(
[in] uuid id)
Note: The method returns an error if the given GUID does not correspond to any host
network interface.
5.71.8 findHostNetworkInterfaceByName
IHostNetworkInterface IHost::findHostNetworkInterfaceByName(
[in] wstring name)
Note: The method returns an error if the given name does not correspond to any host
network interface.
5.71.9 findHostNetworkInterfacesOfType
IHostNetworkInterface[] IHost::findHostNetworkInterfacesOfType(
[in] HostNetworkInterfaceType type)
5.71.10 findUSBDeviceByAddress
IHostUSBDevice IHost::findUSBDeviceByAddress(
[in] wstring name)
name Address of the USB device (as assigned by the host) to search for.
Searches for a USB device with the given host address.
See also: IUSBDevice::address
If this method fails, the following error codes may be reported:
VBOX_E_OBJECT_NOT_FOUND: Given name does not correspond to any USB device.
149
5 Classes (interfaces)
5.71.11 findUSBDeviceById
IHostUSBDevice IHost::findUSBDeviceById(
[in] uuid id)
5.71.12 generateMACAddress
wstring IHost::generateMACAddress()
5.71.13 getProcessorCPUIDLeaf
void IHost::getProcessorCPUIDLeaf(
[in] unsigned long cpuId,
[in] unsigned long leaf,
[in] unsigned long subLeaf,
[out] unsigned long valEax,
[out] unsigned long valEbx,
[out] unsigned long valEcx,
[out] unsigned long valEdx)
Note: The current implementation might not necessarily return the description for this
exact CPU.
150
5 Classes (interfaces)
5.71.14 getProcessorDescription
wstring IHost::getProcessorDescription(
[in] unsigned long cpuId)
Note: The current implementation might not necessarily return the description for this
exact CPU.
5.71.15 getProcessorFeature
boolean IHost::getProcessorFeature(
[in] ProcessorFeature feature)
5.71.16 getProcessorSpeed
unsigned long IHost::getProcessorSpeed(
[in] unsigned long cpuId)
5.71.17 insertUSBDeviceFilter
void IHost::insertUSBDeviceFilter(
[in] unsigned long position,
[in] IHostUSBDeviceFilter filter)
Note: Duplicates are not allowed, so an attempt to insert a filter already in the list is
an error.
Note: If USB functionality is not available in the given edition of VirtualBox, this
method will set the result code to E_NOTIMPL.
151
5 Classes (interfaces)
5.71.18 removeHostOnlyNetworkInterface
IProgress IHost::removeHostOnlyNetworkInterface(
[in] uuid id)
id Adapter GUID.
5.71.19 removeUSBDeviceFilter
void IHost::removeUSBDeviceFilter(
[in] unsigned long position)
Removes a USB device filter from the specified position in the list of filters.
Positions are numbered starting from 0. Specifying a position equal to or greater than the
number of elements in the list will produce an error.
Note: If USB functionality is not available in the given edition of VirtualBox, this
method will set the result code to E_NOTIMPL.
5.71.20 removeUSBDeviceSource
void IHost::removeUSBDeviceSource(
[in] wstring id)
5.72 IHostNameResolutionConfigurationChangeEvent
(IEvent)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.72.1 Attributes
5.72.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IHostNameResolutionConfigurationChangeEvent::midlDoesNotLikeEmptyInterfaces
152
5 Classes (interfaces)
5.73 IHostNetworkInterface
Represents one of hosts network interfaces. IP V6 address and network mask are strings
of 32 hexadecimal digits grouped by four. Groups are separated by colons. For example,
fe80:0000:0000:0000:021e:c2ff:fed2:b030.
5.73.1 Attributes
5.73.1.1 name (read-only)
wstring IHostNetworkInterface::name
5.73.1.3 id (read-only)
uuid IHostNetworkInterface::id
Returns the name of a virtual network the interface gets attached to.
153
5 Classes (interfaces)
5.73.2 DHCPRediscover
void IHostNetworkInterface::DHCPRediscover()
5.73.3 enableDynamicIPConfig
void IHostNetworkInterface::enableDynamicIPConfig()
5.73.4 enableStaticIPConfig
void IHostNetworkInterface::enableStaticIPConfig(
[in] wstring IPAddress,
[in] wstring networkMask)
IPAddress IP address.
networkMask network mask.
sets and enables the static IP V4 configuration for the given interface.
154
5 Classes (interfaces)
5.73.5 enableStaticIPConfigV6
void IHostNetworkInterface::enableStaticIPConfigV6(
[in] wstring IPV6Address,
[in] unsigned long IPV6NetworkMaskPrefixLength)
IPV6Address IP address.
IPV6NetworkMaskPrefixLength network mask.
sets and enables the static IP V6 configuration for the given interface.
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
Notification when host PCI device is plugged/unplugged. Plugging usually takes place on VM
startup, unplug - when IMachine::detachHostPCIDevice() is called.
See also: IMachine::detachHostPCIDevice()
5.74.1 Attributes
5.74.1.1 plugged (read-only)
boolean IHostPCIDevicePlugEvent::plugged
Note: This interface extends IUSBDevice and therefore supports all its methods and
attributes as well.
The IHostUSBDevice interface represents a physical USB device attached to the host computer.
Besides properties inherited from IUSBDevice, this interface adds the state property that holds
the current state of the USB device.
See also: IHost::USBDevices[], IHost::USBDeviceFilters[]
155
5 Classes (interfaces)
5.75.1 Attributes
5.75.1.1 state (read-only)
USBDeviceState IHostUSBDevice::state
Note: This interface extends IUSBDeviceFilter and therefore supports all its methods
and attributes as well.
The IHostUSBDeviceFilter interface represents a global filter for a physical USB device used by
the host computer. Used indirectly in IHost::USBDeviceFilters[].
Using filters of this type, the host computer determines the initial state of the USB device after
it is physically attached to the hosts USB controller.
5.76.1 Attributes
5.76.1.1 action (read/write)
USBDeviceFilterAction IHostUSBDeviceFilter::action
Action performed by the host when an attached USB device matches this filter.
5.77 IHostVideoInputDevice
Represents one of hosts video capture devices, for example a webcam.
5.77.1 Attributes
5.77.1.1 name (read-only)
wstring IHostVideoInputDevice::name
156
5 Classes (interfaces)
5.78 IInternalMachineControl
5.78.1 authenticateExternal
void IInternalMachineControl::authenticateExternal(
[in] wstring authParams[],
[out] wstring result)
5.78.2 autoCaptureUSBDevices
void IInternalMachineControl::autoCaptureUSBDevices()
Requests a capture all matching USB devices attached to the host. When the request is com-
pleted, the VM process will get a IInternalSessionControl::onUSBDeviceAttach() notification per
every captured device.
5.78.3 beginPowerUp
void IInternalMachineControl::beginPowerUp(
[in] IProgress progress)
progress
Tells VBoxSVC that IConsole::powerUp() is under ways and gives it the progress object that
should be part of any pending IMachine::launchVMProcess() operations. The progress object
may be called back to reflect an early cancelation, so some care have to be taken with respect to
any cancelation callbacks. The console object will call endPowerUp() to signal the completion of
the progress object.
5.78.4 beginPoweringDown
void IInternalMachineControl::beginPoweringDown(
[out] IProgress progress)
progress Progress object created by VBoxSVC to wait until the VM is powered down.
Called by the VM process to inform the server it wants to stop the VM execution and power
down.
5.78.5 captureUSBDevice
void IInternalMachineControl::captureUSBDevice(
[in] uuid id,
[in] wstring captureFilename)
id
captureFilename
Requests a capture of the given host USB device. When the request is completed, the VM
process will get a IInternalSessionControl::onUSBDeviceAttach() notification.
157
5 Classes (interfaces)
5.78.6 detachAllUSBDevices
void IInternalMachineControl::detachAllUSBDevices(
[in] boolean done)
done
Notification that a VM that is being powered down. The done parameter indicates whether
which stage of the power down were at. When done = false the VM is announcing its inten-
tions, while when done = true the VM is reporting what it has done.
Note: In the done = true case, the server must run its own filters and filters of all VMs
but this one on all detach devices as if they were just attached to the host computer.
5.78.7 detachUSBDevice
void IInternalMachineControl::detachUSBDevice(
[in] uuid id,
[in] boolean done)
id
done
Notification that a VM is going to detach (done = false) or has already detached (done =
true) the given USB device. When the done = true request is completed, the VM process will
get a IInternalSessionControl::onUSBDeviceDetach() notification.
Note: In the done = true case, the server must run its own filters and filters of all VMs
but this one on the detached device as if it were just attached to the host computer.
5.78.8 ejectMedium
IMediumAttachment IInternalMachineControl::ejectMedium(
[in] IMediumAttachment attachment)
Tells VBoxSVC that the guest has ejected the medium associated with the medium attachment.
5.78.9 endPowerUp
void IInternalMachineControl::endPowerUp(
[in] long result)
result
Tells VBoxSVC that IConsole::powerUp() has completed. This method may query status infor-
mation from the progress object it received in beginPowerUp() and copy it over to any in-progress
IMachine::launchVMProcess() call in order to complete that progress object.
158
5 Classes (interfaces)
5.78.10 endPoweringDown
void IInternalMachineControl::endPoweringDown(
[in] long result,
[in] wstring errMsg)
Called by the VM process to inform the server that powering down previously requested by
#beginPoweringDown is either successfully finished or there was a failure.
If this method fails, the following error codes may be reported:
5.78.11 finishOnlineMergeMedium
void IInternalMachineControl::finishOnlineMergeMedium()
5.78.12 lockMedia
void IInternalMachineControl::lockMedia()
Locks all media attached to the machine for writing and parents of attached differencing media
(if any) for reading. This operation is atomic so that if it fails no media is actually locked.
This method is intended to be called when the machine is in Starting or Restoring state. The
locked media will be automatically unlocked when the machine is powered off or crashed.
5.78.13 onSessionEnd
IProgress IInternalMachineControl::onSessionEnd(
[in] ISession session)
Triggered by the given session object when the session is about to close normally.
5.78.14 pullGuestProperties
void IInternalMachineControl::pullGuestProperties(
[out] wstring names[],
[out] wstring values[],
[out] long long timestamps[],
[out] wstring flags[])
159
5 Classes (interfaces)
flags The flags of the properties returned. The array entries match the corresponding entries in
the name array.
Get the list of the guest properties matching a set of patterns along with their values, time
stamps and flags and give responsibility for managing properties to the console.
5.78.15 pushGuestProperty
void IInternalMachineControl::pushGuestProperty(
[in] wstring name,
[in] wstring value,
[in] long long timestamp,
[in] wstring flags)
5.78.16 reportVmStatistics
void IInternalMachineControl::reportVmStatistics(
[in] unsigned long validStats,
[in] unsigned long cpuUser,
[in] unsigned long cpuKernel,
[in] unsigned long cpuIdle,
[in] unsigned long memTotal,
[in] unsigned long memFree,
[in] unsigned long memBalloon,
[in] unsigned long memShared,
[in] unsigned long memCache,
[in] unsigned long pagedTotal,
[in] unsigned long memAllocTotal,
[in] unsigned long memFreeTotal,
[in] unsigned long memBalloonTotal,
[in] unsigned long memSharedTotal,
[in] unsigned long vmNetRx,
[in] unsigned long vmNetTx)
validStats Mask defining which parameters are valid. For example: 0x11 means that cpuIdle
and XXX are valid. Other parameters should be ignored.
cpuUser Percentage of processor time spent in user mode as seen by the guest.
cpuKernel Percentage of processor time spent in kernel mode as seen by the guest.
cpuIdle Percentage of processor time spent idling as seen by the guest.
memTotal Total amount of physical guest RAM.
memFree Free amount of physical guest RAM.
memBalloon Amount of ballooned physical guest RAM.
memShared Amount of shared physical guest RAM.
160
5 Classes (interfaces)
5.78.17 runUSBDeviceFilters
void IInternalMachineControl::runUSBDeviceFilters(
[in] IUSBDevice device,
[out] boolean matched,
[out] unsigned long maskedInterfaces)
device
matched
maskedInterfaces
Asks the server to run USB devices filters of the associated machine against the given USB
device and tell if there is a match.
Note: Intended to be used only for remote USB devices. Local ones dont require to
call this method (this is done implicitly by the Host and USBProxyService).
5.78.18 unlockMedia
void IInternalMachineControl::unlockMedia()
5.78.19 updateState
void IInternalMachineControl::updateState(
[in] MachineState state)
state
Note: This operation will also update the settings file with the correct information
about the saved state file and delete this file from disk when appropriate.
161
5 Classes (interfaces)
5.79 IInternalSessionControl
5.79.1 Attributes
5.79.1.1 PID (read-only)
unsigned long IInternalSessionControl::PID
Returns suitable machine state for the VM execution state. Useful for choosing a sensible ma-
chine state after a complex operation which failed or otherwise resulted in an unclear situation.
5.79.2 accessGuestProperty
void IInternalSessionControl::accessGuestProperty(
[in] wstring name,
[in] wstring value,
[in] wstring flags,
[in] unsigned long accessMode,
[out] wstring retValue,
[out] long long retTimestamp,
[out] wstring retFlags)
name
value
flags
accessMode 0 = get, 1 = set, 2 = delete.
retValue
retTimestamp
retFlags
162
5 Classes (interfaces)
5.79.3 assignRemoteMachine
void IInternalSessionControl::assignRemoteMachine(
[in] IMachine machine,
[in] IConsole console)
machine
console
Assigns the machine and the (remote) console object associated with this remote-type session.
If this method fails, the following error codes may be reported:
5.79.4 cancelSaveStateWithReason
void IInternalSessionControl::cancelSaveStateWithReason()
5.79.5 enableVMMStatistics
void IInternalSessionControl::enableVMMStatistics(
[in] boolean enable)
5.79.6 enumerateGuestProperties
void IInternalSessionControl::enumerateGuestProperties(
[in] wstring patterns,
[out] wstring keys[],
[out] wstring values[],
[out] long long timestamps[],
[out] wstring flags[])
patterns The patterns to match the properties against as a comma-separated string. If this is
empty, all properties currently set will be returned.
keys The key names of the properties returned.
values The values of the properties returned. The array entries match the corresponding entries
in the key array.
timestamps The time stamps of the properties returned. The array entries match the corre-
sponding entries in the key array.
flags The flags of the properties returned. The array entries match the corresponding entries in
the key array.
163
5 Classes (interfaces)
Return a list of the guest properties matching a set of patterns along with their values, time
stamps and flags.
If this method fails, the following error codes may be reported:
5.79.7 onBandwidthGroupChange
void IInternalSessionControl::onBandwidthGroupChange(
[in] IBandwidthGroup bandwidthGroup)
5.79.8 onCPUChange
void IInternalSessionControl::onCPUChange(
[in] unsigned long cpu,
[in] boolean add)
5.79.9 onCPUExecutionCapChange
void IInternalSessionControl::onCPUExecutionCapChange(
[in] unsigned long executionCap)
5.79.10 onClipboardModeChange
void IInternalSessionControl::onClipboardModeChange(
[in] ClipboardMode clipboardMode)
5.79.11 onDnDModeChange
void IInternalSessionControl::onDnDModeChange(
[in] DnDMode dndMode)
164
5 Classes (interfaces)
5.79.12 onMediumChange
void IInternalSessionControl::onMediumChange(
[in] IMediumAttachment mediumAttachment,
[in] boolean force)
Triggered when attached media of the associated virtual machine have changed.
If this method fails, the following error codes may be reported:
5.79.13 onNetworkAdapterChange
void IInternalSessionControl::onNetworkAdapterChange(
[in] INetworkAdapter networkAdapter,
[in] boolean changeAdapter)
networkAdapter
changeAdapter
Triggered when settings of a network adapter of the associated virtual machine have changed.
If this method fails, the following error codes may be reported:
5.79.14 onParallelPortChange
void IInternalSessionControl::onParallelPortChange(
[in] IParallelPort parallelPort)
parallelPort
Triggered when settings of a parallel port of the associated virtual machine have changed.
If this method fails, the following error codes may be reported:
5.79.15 onSerialPortChange
void IInternalSessionControl::onSerialPortChange(
[in] ISerialPort serialPort)
serialPort
Triggered when settings of a serial port of the associated virtual machine have changed.
If this method fails, the following error codes may be reported:
165
5 Classes (interfaces)
5.79.16 onSharedFolderChange
void IInternalSessionControl::onSharedFolderChange(
[in] boolean global)
global
Triggered when a permanent (global or machine) shared folder has been created or removed.
Note: We dont pass shared folder parameters in this notification because the order in
which parallel notifications are delivered is not defined, therefore it could happen that
these parameters were outdated by the time of processing this notification.
5.79.17 onShowWindow
void IInternalSessionControl::onShowWindow(
[in] boolean check,
[out] boolean canShow,
[out] long long winId)
check
canShow
winId
5.79.18 onStorageControllerChange
void IInternalSessionControl::onStorageControllerChange()
Triggered when settings of a storage controller of the associated virtual machine have changed.
If this method fails, the following error codes may be reported:
166
5 Classes (interfaces)
5.79.19 onStorageDeviceChange
void IInternalSessionControl::onStorageDeviceChange(
[in] IMediumAttachment mediumAttachment,
[in] boolean remove,
[in] boolean silent)
Triggered when attached storage devices of the associated virtual machine have changed.
If this method fails, the following error codes may be reported:
5.79.20 onUSBControllerChange
void IInternalSessionControl::onUSBControllerChange()
Triggered when settings of the USB controller object of the associated virtual machine have
changed.
If this method fails, the following error codes may be reported:
5.79.21 onUSBDeviceAttach
void IInternalSessionControl::onUSBDeviceAttach(
[in] IUSBDevice device,
[in] IVirtualBoxErrorInfo error,
[in] unsigned long maskedInterfaces,
[in] wstring captureFilename)
device
error
maskedInterfaces
captureFilename
Triggered when a request to capture a USB device (as a result of matched USB filters or di-
rect call to IConsole::attachUSBDevice()) has completed. A nullerror object means success,
otherwise it describes a failure.
If this method fails, the following error codes may be reported:
167
5 Classes (interfaces)
5.79.22 onUSBDeviceDetach
void IInternalSessionControl::onUSBDeviceDetach(
[in] uuid id,
[in] IVirtualBoxErrorInfo error)
id
error
Triggered when a request to release the USB device (as a result of machine termination or
direct call to IConsole::detachUSBDevice()) has completed. A nullerror object means success,
otherwise it describes a failure.
If this method fails, the following error codes may be reported:
VBOX_E_INVALID_VM_STATE: Session state prevents operation.
VBOX_E_INVALID_OBJECT_STATE: Session type prevents operation.
5.79.23 onVRDEServerChange
void IInternalSessionControl::onVRDEServerChange(
[in] boolean restart)
5.79.24 onVideoCaptureChange
void IInternalSessionControl::onVideoCaptureChange()
5.79.25 onlineMergeMedium
void IInternalSessionControl::onlineMergeMedium(
[in] IMediumAttachment mediumAttachment,
[in] unsigned long sourceIdx,
[in] unsigned long targetIdx,
[in] IProgress progress)
168
5 Classes (interfaces)
5.79.26 pauseWithReason
void IInternalSessionControl::pauseWithReason(
[in] Reason reason)
Internal method for triggering a VM pause with a specified reason code. The reason code can
be interpreted by device/drivers and thus it might behave slightly differently than a normal VM
pause.
See also: IConsole::pause()
If this method fails, the following error codes may be reported:
5.79.27 reconfigureMediumAttachments
void IInternalSessionControl::reconfigureMediumAttachments(
[in] IMediumAttachment attachments[])
Reconfigure all specified medium attachments in one go, making sure the current state corre-
sponds to the specified medium.
If this method fails, the following error codes may be reported:
5.79.28 resumeWithReason
void IInternalSessionControl::resumeWithReason(
[in] Reason reason)
Internal method for triggering a VM resume with a specified reason code. The reason code can
be interpreted by device/drivers and thus it might behave slightly differently than a normal VM
resume.
See also: IConsole::resume()
If this method fails, the following error codes may be reported:
5.79.29 saveStateWithReason
boolean IInternalSessionControl::saveStateWithReason(
[in] Reason reason,
[in] IProgress progress,
[in] wstring stateFilePath,
[in] boolean pauseVM)
169
5 Classes (interfaces)
stateFilePath File path the VM process must save the execution state to.
pauseVM The VM should be paused before saving state. It is automatically unpaused on error
in the vanilla save state case.
Internal method for triggering a VM save state with a specified reason code. The reason code
can be interpreted by device/drivers and thus it might behave slightly differently than a normal
VM save state.
This call is fully synchronous, and the caller is expected to have set the machine state appro-
priately (and has to set the follow-up machine state if this call failed).
See also: IMachine::saveState()
If this method fails, the following error codes may be reported:
5.79.30 uninitialize
void IInternalSessionControl::uninitialize()
Uninitializes (closes) this session. Used by VirtualBox to close the corresponding remote ses-
sion when the direct session dies or gets closed.
If this method fails, the following error codes may be reported:
5.79.31 updateMachineState
void IInternalSessionControl::updateMachineState(
[in] MachineState machineState)
machineState
Updates the machine state in the VM process. Must be called only in certain cases (see the
method implementation).
If this method fails, the following error codes may be reported:
5.80 IKeyboard
The IKeyboard interface represents the virtual machines keyboard. Used in IConsole::keyboard.
Use this interface to send keystrokes or the Ctrl-Alt-Del sequence to the virtual machine.
5.80.1 Attributes
5.80.1.1 keyboardLEDs (read-only)
KeyboardLED IKeyboard::keyboardLEDs[]
170
5 Classes (interfaces)
5.80.2 putCAD
void IKeyboard::putCAD()
Sends the Ctrl-Alt-Del sequence to the keyboard. This function is nothing special, it is just a
convenience function calling putScancodes() with the proper scancodes.
If this method fails, the following error codes may be reported:
VBOX_E_IPRT_ERROR: Could not send all scan codes to virtual keyboard.
5.80.3 putScancode
void IKeyboard::putScancode(
[in] long scancode)
scancode
Sends a scancode to the keyboard.
If this method fails, the following error codes may be reported:
VBOX_E_IPRT_ERROR: Could not send scan code to virtual keyboard.
5.80.4 putScancodes
unsigned long IKeyboard::putScancodes(
[in] long scancodes[])
scancodes
Sends an array of scancodes to the keyboard.
If this method fails, the following error codes may be reported:
VBOX_E_IPRT_ERROR: Could not send all scan codes to virtual keyboard.
5.80.5 releaseKeys
void IKeyboard::releaseKeys()
Causes the virtual keyboard to release any keys which are currently pressed. Useful when host
and guest keyboard may be out of sync.
If this method fails, the following error codes may be reported:
VBOX_E_IPRT_ERROR: Could not release some or all keys.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when the guest OS executes the KBD_CMD_SET_LEDS command to alter the state
of the keyboard LEDs.
171
5 Classes (interfaces)
5.81.1 Attributes
5.81.1.1 numLock (read-only)
boolean IKeyboardLedsChangedEvent::numLock
NumLock status.
CapsLock status.
ScrollLock status.
5.82 IMachine
The IMachine interface represents a virtual machine, or guest, created in VirtualBox.
This interface is used in two contexts. First of all, a collection of objects implementing this
interface is stored in the IVirtualBox::machines[] attribute which lists all the virtual machines
that are currently registered with this VirtualBox installation. Also, once a session has been
opened for the given virtual machine (e.g. the virtual machine is running), the machine object
associated with the open session can be queried from the session object; see ISession for details.
The main role of this interface is to expose the settings of the virtual machine and provide
methods to change various aspects of the virtual machines configuration. For machine objects
stored in the IVirtualBox::machines[] collection, all attributes are read-only unless explicitly
stated otherwise in individual attribute and method descriptions.
In order to change a machine setting, a session for this machine must be opened using one
of the lockMachine() or launchVMProcess() methods. After the machine has been successfully
locked for a session, a mutable machine object needs to be queried from the session object and
then the desired settings changes can be applied to the returned object using IMachine attributes
and methods. See the ISession interface description for more information about sessions.
Note that IMachine does not provide methods to control virtual machine execution (such as
start the machine, or power it down) these methods are grouped in a separate interface called
IConsole.
See also: ISession, IConsole
5.82.1 Attributes
5.82.1.1 parent (read-only)
IVirtualBox IMachine::parent
172
5 Classes (interfaces)
parent
id
settingsFilePath
accessible
accessError
Note: In the current implementation, once this property returns true, the machine
will never become inaccessible later, even if its settings file cannot be successfully
read/written any more (at least, until the VirtualBox server is restarted). This limi-
tation may be removed in future releases.
173
5 Classes (interfaces)
You cannot have two or more machines with the same name if they use the same subdirec-
tory for storing the machine settings files.
You cannot change the name of the machine if it is running, or if any file in the directory
containing the settings file is being used by another running machine or by any other
process in the host operating system at a time when saveSettings() is called.
If any of the above limitations are hit, saveSettings() will return an appropriate error message
explaining the exact reason and the changes you made to this machine will not be saved.
Starting with VirtualBox 4.0, a .vbox extension of the settings file is recommended, but not
enforced. (Previous versions always used a generic .xml extension.)
5.82.1.7 id (read-only)
uuid IMachine::id
Array of machine group names of which this machine is a member. "" and "/" are synonyms
for the toplevel group. Each group is only listed once, however they are listed in no particular
order and there is no guarantee that there are no gaps in the group hierarchy (i.e. "/group",
"/group/subgroup/subsubgroup" is a valid result).
Note: This value may differ from the value returned by IGuest::OSTypeId if Guest
Additions are installed to the guest OS.
174
5 Classes (interfaces)
The UUID presented to the guest via memory tables, hardware and guest properties. For most
VMs this is the same as the id, but for VMs which have been cloned or teleported it may be the
same as the source VM. The latter is because the guest shouldnt notice that it was cloned or
teleported.
This setting determines whether VirtualBox allows CPU hotplugging for this machine.
Means to limit the number of CPU cycles a guest can use. The unit is percentage of host CPU
cycles per second. The valid range is 1 - 100. 100 (the default) implies no limit.
Virtual CPUID portability level, the higher number the fewer newer or vendor specific CPU
feature is reported to the guest (via the CPUID instruction). The default level of zero (0) means
that all virtualized feautres supported by the host is pass thru to the guest. While the three (3)
is currently the level supressing the most features.
Exactly which of the CPUID features are left out by the VMM at which level is subject to change
with each major version.
This setting determines whether VirtualBox allows page fusion for this machine (64-bit hosts
only).
175
5 Classes (interfaces)
This setting determines whether VirtualBox allows this machine to make use of the 3D graphics
support available on the host.
This setting determines whether VirtualBox allows this machine to make use of the 2D video
acceleration support available on the host.
Note: Only effective on Windows XP and later guests with Guest Additions installed.
This setting determines whether VirtualBox uses video recording to record VM session.
This setting determines the filename VirtualBox uses to save the recorded content. This setting
cannot be changed while video capturing is enabled.
Note: When setting this attribute, the specified path has to be absolute (full path).
When reading this attribute, a full path is always returned.
176
5 Classes (interfaces)
This setting determines the horizontal resolution of the recorded video. This setting cannot be
changed while video capturing is enabled.
This setting determines the vertical resolution of the recorded video. This setting cannot be
changed while video capturing is enabled.
This setting determines the bitrate in kilobits per second. Increasing this value makes the
video look better for the cost of an increased file size. This setting cannot be changed while
video capturing is enabled.
This setting determines the maximum number of frames per second. Frames with a higher
frequency will be skipped. Reducing this value increases the number of skipped frames and
reduces the file size. This setting cannot be changed while video capturing is enabled.
This setting determines the maximum amount of time in milliseconds the video capture will
work for. The capture stops as the defined time interval has elapsed. If this value is zero the
capturing will not be limited by time. This setting cannot be changed while video capturing is
enabled.
This setting determines the maximal number of captured video file size in MB. The capture
stops as the captured video file size has reached the defined. If this value is zero the capturing
will not be limited by file size. This setting cannot be changed while video capturing is enabled.
This setting contains any additional video capture options required in comma-separated
key=value format. This setting cannot be changed while video capturing is enabled.
177
5 Classes (interfaces)
Type of firmware (such as legacy BIOS or EFI), used for initial bootstrap in this VM.
Type of pointing HID (such as mouse or tablet) used in this VM. The default is typically
PS2Mouse but can vary depending on the requirements of the guest operating system.
Type of keyboard HID used in this VM. The default is typically PS2Keyboard but can vary
depending on the requirements of the guest operating system.
This attribute controls if High Precision Event Timer (HPET) is enabled in this VM. Use this
property if you want to provide guests with additional time source, or if guest requires HPET to
function correctly. Default is false.
Full path to the directory used to store snapshot data (differencing media and saved state files)
of this machine.
The initial value of this property is < path_to_settings_file>/<machine_uuid>.
Currently, it is an error to try to change this property on a machine that has snapshots (because
this would require to move possibly large files to a different location). A separate method will
be available for this purpose later.
Note: Setting this property to null or to an empty string will restore the initial value.
Note: When setting this property, the specified path can be absolute (full path) or
relative to the directory where the machine settings file is located. When reading this
property, a full path is always returned.
Note: The specified path may not exist, it will be created when necessary.
178
5 Classes (interfaces)
Note: If USB functionality is not available in the given edition of VirtualBox, this
method will set the result code to E_NOTIMPL.
Note: If USB functionality is not available in the given edition of VirtualBox, this
method will set the result code to E_NOTIMPL.
179
5 Classes (interfaces)
Whether the settings of this machine have been modified (but neither yet saved nor discarded).
Note: For newly created unregistered machines, the value of this property is al-
ways true until saveSettings() is called (no matter if any machine settings have been
changed after the creation or not). For opened machines the value is set to false (and
then follows to normal rules).
Name of the session. If sessionState is Spawning or Locked, this attribute contains the same
value as passed to the launchVMProcess() method in the name parameter. If the session was
established with lockMachine(), it is the name of the session (if set, otherwise empty string). If
sessionState is SessionClosed, the value of this attribute is an empty string.
Identifier of the session process. This attribute contains the platform-dependent identifier of
the process whose session was used with lockMachine() call. The returned value is only valid if
sessionState is Locked or Unlocking by the time this property is read.
180
5 Classes (interfaces)
Time stamp of the last execution state change, in milliseconds since 1970-01-01 UTC.
Full path to the file that stores the execution state of the machine when it is in the Saved state.
Note: When the machine is not in the Saved state, this attribute is an empty string.
Full path to the folder that stores a set of rotated log files recorded during machine execution.
The most recent log file is named VBox.log, the previous log file is named VBox.log.1 and so
on (up to VBox.log.3 in the current version).
Current snapshot of this machine. This is null if the machine currently has no snapshots. If
it is not null, then it was set by one of takeSnapshot(), deleteSnapshot() or restoreSnapshot(),
depending on which was called last. See ISnapshot for details.
Number of snapshots taken on this machine. Zero means the machine doesnt have any snap-
shots.
Returns true if the current state of the machine is not identical to the state stored in the
current snapshot.
The current state is identical to the current snapshot only directly after one of the following
calls are made:
restoreSnapshot()
takeSnapshot() (issued on a powered off or saved machine, for which settingsModified
returns false)
The current state remains identical until one of the following happens:
181
5 Classes (interfaces)
Note: For machines that dont have snapshots, this property is always false.
Collection of shared folders for this machine (permanent shared folders). These folders are
shared automatically at machine startup and available only to the guest OS installed within this
machine.
New shared folders are added to the collection using createSharedFolder(). Existing shared
folders can be removed using removeSharedFolder().
Synchronization mode between the host OS clipboard and the guest OS clipboard.
When set to true, the virtual machine becomes a target teleporter the next time it is powered
on. This can only set to true when the VM is in the PoweredOff or Aborted state.
The TCP port the target teleporter will listen for incoming teleportations on.
0 means the port is automatically selected upon power on. The actual value can be read from
this property while the machine is waiting for incoming teleportations.
The address the target teleporter will listen on. If set to an empty string, it will listen on all
addresses.
182
5 Classes (interfaces)
The password to check for on the target teleporter. This is just a very basic measure to prevent
simple hacks and operators accidentally beaming a virtual machine to the wrong place.
Note that you SET a plain text password while reading back a HASHED password. Setting a
hashed password is currently not supported.
Fault tolerance state; disabled, source or target. This property can be changed at any time. If
you change it for a running VM, then the fault tolerance address and port must be set beforehand.
The TCP port the fault tolerance source or target will use for communication.
The password to check for on the standby VM. This is just a very basic measure to prevent
simple hacks and operators accidentally choosing the wrong standby VM.
The interval in ms used for syncing the state between source and target.
When set to true, the RTC device of the virtual machine will run in UTC time, otherwise in
local time. Especially Unix guests prefer the time in UTC.
When set to true, the builtin I/O cache of the virtual machine will be enabled.
183
5 Classes (interfaces)
Array of PCI devices assigned to this machine, to get list of all PCI devices attached to the
machine use IConsole::attachedPCIDevices[] attribute, as this attribute is intended to list only
devices additional to what described in virtual hardware config. Usually, this list keeps hosts
physical devices assigned to the particular machine.
Enables the tracing facility in the VMM (including PDM devices + drivers). The VMM will
consume about 0.5MB of more memory when enabled and there may be some extra overhead
from tracepoints that are always enabled.
Tracepoint configuration to apply at startup when tracingEnabled is true. The string speci-
fies a space separated of tracepoint group names to enable. The special group all enables all
tracepoints. Check DBGFR3TracingConfig for more details on available tracepoint groups and
such.
Note that on hosts supporting DTrace (or similar), a lot of the tracepoints may be implemented
exclusively as DTrace probes. So, the effect of the same config may differ between Solaris and
Windows for example.
Enables tracepoints in PDM devices and drivers to use the VMCPU or VM structures when
firing off trace points. This is especially useful with DTrace tracepoints, as it allows you to use
the VMCPU or VM pointer to obtain useful information such as guest register state.
This is disabled by default because devices and drivers normally has no business accessing the
VMCPU or VM structures, and are therefore unable to get any pointers to these.
184
5 Classes (interfaces)
Number of seconds to wait until the VM should be started during system boot.
Selects which VM frontend should be used by default when launching this VM through the
launchVMProcess() method. Empty or null strings do not define a particular default, it is up
to launchVMProcess() to select one. See the description of launchVMProcess() for the valid
frontend types.
This per-VM setting overrides the default defined by ISystemProperties::defaultFrontend at-
tribute, and is overridden by a frontend type passed to launchVMProcess().
Sets the priority of the VM process. It is a VM setting which can be changed both before
starting the VM and at runtime. The valid values are system specific, and if a value is specified
which does not get recognized, then it will be remembered (useful for preparing VM configs for
other host OSes), with a successful result.
The default value is the empty string, which selects the default process priority.
Experimental feature to select the guest CPU profile. The default is host, which indicates the
host CPU. All other names are subject to change.
The profiles are found in src/VBox/VMM/VMMR3/cpus/.
185
5 Classes (interfaces)
5.82.2 addStorageController
IStorageController IMachine::addStorageController(
[in] wstring name,
[in] StorageBus connectionType)
name
connectionType
Adds a new storage controller (SCSI, SAS or SATA controller) to the machine and returns it as
an instance of IStorageController.
name identifies the controller for subsequent calls such as getStorageControllerByName(),
getStorageControllerByInstance(), removeStorageController(), attachDevice() or mountMedium().
After the controller has been added, you can set its exact type by setting the IStorageController::controllerType.
If this method fails, the following error codes may be reported:
VBOX_E_OBJECT_IN_USE: A storage controller with given name exists already.
E_INVALIDARG: Invalid controllerType.
5.82.3 addUSBController
IUSBController IMachine::addUSBController(
[in] wstring name,
[in] USBControllerType type)
name
type
Adds a new USB controller to the machine and returns it as an instance of IUSBController.
If this method fails, the following error codes may be reported:
VBOX_E_OBJECT_IN_USE: A USB controller with given type exists already.
E_INVALIDARG: Invalid controllerType.
5.82.4 adoptSavedState
void IMachine::adoptSavedState(
[in] wstring savedStateFile)
Note: Its a callers responsibility to make sure the given saved state file is compatible
with the settings of this virtual machine that represent its virtual hardware (memory
size, storage disk configuration etc.). If there is a mismatch, the behavior of the virtual
machine is undefined.
186
5 Classes (interfaces)
5.82.5 applyDefaults
void IMachine::applyDefaults(
[in] wstring flags)
Applies the defaults for the configured guest OS type. This is primarily for getting sane settings
straight after creating a new VM, but it can also be applied later.
Note: This is primarily a shortcut, centralizing the tedious job of getting the recom-
mended settings and translating them into settings updates. The settings are made at
the end of the call, but not saved.
5.82.6 attachDevice
void IMachine::attachDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] DeviceType type,
[in] IMedium medium)
controllerPort Port to attach the device to. For an IDE controller, 0 specifies the primary con-
troller and 1 specifies the secondary controller. For a SCSI controller, this must range from
0 to 15; for a SATA controller, from 0 to 29; for an SAS controller, from 0 to 7.
device Device slot in the given port to attach the device to. This is only relevant for IDE con-
trollers, for which 0 specifies the master device and 1 specifies the slave device. For all
other controller types, this must be 0.
type Device type of the attached device. For media opened by IVirtualBox::openMedium(), this
must match the device type specified there.
medium Medium to mount or null for an empty drive.
Attaches a device and optionally mounts a medium to the given storage controller
(IStorageController, identified by name), at the indicated port and device.
This method is intended for managing storage devices in general while a machine is powered
off. It can be used to attach and detach fixed and removable media. The following kind of media
can be attached to a machine:
For fixed and removable media, you can pass in a medium that was previously opened
using IVirtualBox::openMedium().
Only for storage devices supporting removable media (such as DVDs and floppies), you
can also specify a null pointer to indicate an empty drive or one of the medium objects
listed in the IHost::DVDDrives[] and IHost::floppyDrives[] arrays to indicate a host drive.
For removable devices, you can also use mountMedium() to change the media while the
machine is running.
187
5 Classes (interfaces)
In a VMs default configuration of virtual machines, the secondary master of the IDE controller
is used for a CD/DVD drive.
After calling this returns successfully, a new instance of IMediumAttachment will appear in the
machines list of medium attachments (see mediumAttachments[]).
See IMedium and IMediumAttachment for more information about attaching media.
The specified device slot must not have a device attached to it, or this method will fail.
Note: You cannot attach a device to a newly created machine until this machines
settings are saved to disk using saveSettings().
Note: If the medium is being attached indirectly, a new differencing medium will
implicitly be created for it and attached instead. If the changes made to the machine
settings (including this indirect attachment) are later cancelled using discardSettings(),
this implicitly created differencing medium will implicitly be deleted.
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range, or file or UUID
not found.
VBOX_E_INVALID_OBJECT_STATE: Machine must be registered before media can be at-
tached.
VBOX_E_INVALID_VM_STATE: Invalid machine state.
VBOX_E_OBJECT_IN_USE: A medium is already attached to this or another virtual ma-
chine.
5.82.7 attachDeviceWithoutMedium
void IMachine::attachDeviceWithoutMedium(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] DeviceType type)
Attaches a device and optionally mounts a medium to the given storage controller
(IStorageController, identified by name), at the indicated port and device.
This method is intended for managing storage devices in general while a machine is powered
off. It can be used to attach and detach fixed and removable media. The following kind of media
can be attached to a machine:
188
5 Classes (interfaces)
For fixed and removable media, you can pass in a medium that was previously opened
using IVirtualBox::openMedium().
Only for storage devices supporting removable media (such as DVDs and floppies) with
an empty drive or one of the medium objects listed in the IHost::DVDDrives[] and
IHost::floppyDrives[] arrays to indicate a host drive. For removable devices, you can also
use mountMedium() to change the media while the machine is running.
In a VMs default configuration of virtual machines, the secondary master of the IDE controller
is used for a CD/DVD drive. IMediumAttachment will appear in the machines list of medium
attachments (see mediumAttachments[]).
See IMedium and IMediumAttachment for more information about attaching media.
The specified device slot must not have a device attached to it, or this method will fail.
Note: You cannot attach a device to a newly created machine until this machines
settings are saved to disk using saveSettings().
Note: If the medium is being attached indirectly, a new differencing medium will
implicitly be created for it and attached instead. If the changes made to the machine
settings (including this indirect attachment) are later cancelled using discardSettings(),
this implicitly created differencing medium will implicitly be deleted.
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range, or file or UUID
not found.
VBOX_E_INVALID_OBJECT_STATE: Machine must be registered before media can be at-
tached.
VBOX_E_INVALID_VM_STATE: Invalid machine state.
VBOX_E_OBJECT_IN_USE: A medium is already attached to this or another virtual ma-
chine.
5.82.8 attachHostPCIDevice
void IMachine::attachHostPCIDevice(
[in] long hostAddress,
[in] long desiredGuestAddress,
[in] boolean tryToUnbind)
Attaches host PCI device with the given (host) PCI address to the PCI bus of the virtual ma-
chine. Please note, that this operation is two phase, as real attachment will happen when VM
will start, and most information will be delivered as IHostPCIDevicePlugEvent on IVirtualBox
event source.
See also: IHostPCIDevicePlugEvent
If this method fails, the following error codes may be reported:
189
5 Classes (interfaces)
VBOX_E_INVALID_VM_STATE: Virtual machine state is not stopped (PCI hotplug not yet
implemented).
VBOX_E_PDM_ERROR: Virtual machine does not have a PCI controller allowing attachment
of physical devices.
VBOX_E_NOT_SUPPORTED: Hardware or host OS doesnt allow PCI device passthrough.
5.82.9 canShowConsoleWindow
boolean IMachine::canShowConsoleWindow()
Returns true if the VM console process can activate the console window and bring it to fore-
ground on the desktop of the host PC.
Note: This method will fail if a session for this machine is not currently open.
5.82.10 cloneTo
IProgress IMachine::cloneTo(
[in] IMachine target,
[in] CloneMode mode,
[in] CloneOptions options[])
Creates a clone of this machine, either as a full clone (which means creating independent
copies of the hard disk media, save states and so on), or as a linked clone (which uses its own
differencing media, sharing the parent media with the source machine).
The target machine object must have been created previously with IVirtualBox::createMachine(),
and all the settings will be transferred except the VM name and the hardware UUID. You can set
the VM name and the new hardware UUID when creating the target machine. The network MAC
addresses are newly created for all enabled network adapters. You can change that behaviour
with the options parameter. The operation is performed asynchronously, so the machine object
will be not be usable until the progress object signals completion.
If this method fails, the following error codes may be reported:
5.82.11 createSharedFolder
void IMachine::createSharedFolder(
[in] wstring name,
[in] wstring hostPath,
[in] boolean writable,
[in] boolean automount)
190
5 Classes (interfaces)
hostPath Full path to the shared folder in the host file system.
Creates a new permanent shared folder by associating the given logical name with the given
host path, adds it to the collection of shared folders and starts sharing it. Refer to the description
of ISharedFolder to read more about logical names.
If this method fails, the following error codes may be reported:
5.82.12 deleteConfig
IProgress IMachine::deleteConfig(
[in] IMedium media[])
media List of media to be closed and whose storage files will be deleted.
Deletes the files associated with this machine from disk. If medium objects are passed in
with the aMedia argument, they are closed and, if closing was successful, their storage files are
deleted as well. For convenience, this array of media files can be the same as the one returned
from a previous unregister() call.
This method must only be called on machines which are either write-locked (i.e. on instances
returned by ISession::machine) or on unregistered machines (i.e. not yet registered machines
created by IVirtualBox::createMachine() or opened by IVirtualBox::openMachine(), or after hav-
ing called unregister()).
The following files will be deleted by this method:
If unregister() had been previously called with a cleanupMode argument other than Un-
registerOnly, this will delete all saved state files that the machine had in use; possibly one
if the machine was in Saved state and one for each online snapshot that the machine had.
On each medium object passed in the aMedia array, this will call IMedium::close().
If that succeeds, this will attempt to delete the mediums storage on disk. Since the
IMedium::close() call will fail if the medium is still in use, e.g. because it is still attached
to a second machine; in that case the storage will not be deleted.
Finally, the machines own XML file will be deleted.
Since deleting large disk image files can be a time-consuming I/O operation, this method oper-
ates asynchronously and returns an IProgress object to allow the caller to monitor the progress.
There will be one sub-operation for each file that is being deleted (saved state or medium storage
file).
Note: settingsModified will return true after this method successfully returns.
191
5 Classes (interfaces)
5.82.13 deleteGuestProperty
void IMachine::deleteGuestProperty(
[in] wstring name)
5.82.14 deleteSnapshot
IProgress IMachine::deleteSnapshot(
[in] uuid id)
Starts deleting the specified snapshot asynchronously. See ISnapshot for an introduction to
snapshots.
The execution state and settings of the associated machine stored in the snapshot will be
deleted. The contents of all differencing media of this snapshot will be merged with the contents
of their dependent child media to keep the medium chain valid (in other words, all changes
represented by media being deleted will be propagated to their child medium). After that, this
snapshots differencing medium will be deleted. The parent of this snapshot will become a new
parent for all its child snapshots.
If the deleted snapshot is the current one, its parent snapshot will become a new current
snapshot. The current machine state is not directly affected in this case, except that currently
attached differencing media based on media of the deleted snapshot will be also merged as
described above.
If the deleted snapshot is the first or current snapshot, then the respective IMachine attributes
will be adjusted. Deleting the current snapshot will also implicitly call saveSettings() to make all
current machine settings permanent.
Deleting a snapshot has the following preconditions:
Child media of all normal media of the deleted snapshot must be accessible (see
IMedium::state) for this operation to succeed. If only one running VM refers to all images
which participates in merging the operation can be performed while the VM is running.
Otherwise all virtual machines whose media are directly or indirectly based on the media
of deleted snapshot must be powered off. In any case, online snapshot deleting usually is
slower than the same operation without any running VM.
You cannot delete the snapshot if a medium attached to it has more than one child medium
(differencing images) because otherwise merging would be impossible. This might be the
case if there is more than one child snapshot or differencing images were created for other
reason (e.g. implicitly because of multiple machine attachments).
Note: Merging medium contents can be very time and disk space consuming, if these
media are big in size and have many children. However, if the snapshot being deleted
is the last (head) snapshot on the branch, the operation will be rather quick.
192
5 Classes (interfaces)
5.82.15 deleteSnapshotAndAllChildren
IProgress IMachine::deleteSnapshotAndAllChildren(
[in] uuid id)
Starts deleting the specified snapshot and all its children asynchronously. See ISnapshot
for an introduction to snapshots. The conditions and many details are the same as with
deleteSnapshot().
This operation is very fast if the snapshot subtree does not include the current state. It is still
significantly faster than deleting the snapshots one by one if the current state is in the subtree and
there are more than one snapshots from current state to the snapshot which marks the subtree,
since it eliminates the incremental image merging.
5.82.16 deleteSnapshotRange
IProgress IMachine::deleteSnapshotRange(
[in] uuid startId,
[in] uuid endId)
Starts deleting the specified snapshot range. This is limited to linear snapshot lists, which
means there may not be any other child snapshots other than the direct sequence between the
start and end snapshot. If the start and end snapshot point to the same snapshot this method is
completely equivalent to deleteSnapshot(). See ISnapshot for an introduction to snapshots. The
conditions and many details are the same as with deleteSnapshot().
This operation is generally faster than deleting snapshots one by one and often also needs less
extra disk space before freeing up disk space by deleting the removed disk images corresponding
to the snapshot.
193
5 Classes (interfaces)
5.82.17 detachDevice
void IMachine::detachDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device)
5.82.18 detachHostPCIDevice
void IMachine::detachHostPCIDevice(
[in] long hostAddress)
Detach host PCI device from the virtual machine. Also HostPCIDevicePlugEvent on IVirtualBox
event source will be delivered. As currently we dont support hot device unplug, IHostPCIDevi-
cePlugEvent event is delivered immediately.
See also: IHostPCIDevicePlugEvent
If this method fails, the following error codes may be reported:
194
5 Classes (interfaces)
VBOX_E_INVALID_VM_STATE: Virtual machine state is not stopped (PCI hotplug not yet
implemented).
5.82.19 discardSavedState
void IMachine::discardSavedState(
[in] boolean fRemoveFile)
Forcibly resets the machine to Powered Off state if it is currently in the Saved state (previ-
ously created by saveState()). Next time the machine is powered up, a clean boot will occur.
Note: This operation is equivalent to resetting or powering off the machine without
doing a proper shutdown of the guest operating system; as with resetting a running
phyiscal computer, it can can lead to data loss.
If fRemoveFile is true, the file in the machine directory into which the machine state was
saved is also deleted. If this is false, then the state can be recovered and later re-inserted into
a machine using adoptSavedState(). The location of the file can be found in the stateFilePath
attribute.
If this method fails, the following error codes may be reported:
5.82.20 discardSettings
void IMachine::discardSettings()
Discards any changes to the machine settings made since the session has been opened or since
the last call to saveSettings() or discardSettings().
195
5 Classes (interfaces)
5.82.21 enumerateGuestProperties
void IMachine::enumerateGuestProperties(
[in] wstring patterns,
[out] wstring names[],
[out] wstring values[],
[out] long long timestamps[],
[out] wstring flags[])
patterns The patterns to match the properties against, separated by | characters. If this is
empty or null, all properties will match.
names The names of the properties returned.
values The values of the properties returned. The array entries match the corresponding entries
in the name array.
timestamps The time stamps of the properties returned. The array entries match the corre-
sponding entries in the name array.
flags The flags of the properties returned. The array entries match the corresponding entries in
the name array.
Return a list of the guest properties matching a set of patterns along with their values, time
stamps and flags.
5.82.22 exportTo
IVirtualSystemDescription IMachine::exportTo(
[in] IAppliance appliance,
[in] wstring location)
Exports the machine to an OVF appliance. See IAppliance for the steps required to export
VirtualBox machines to OVF.
5.82.23 findSnapshot
ISnapshot IMachine::findSnapshot(
[in] wstring nameOrId)
196
5 Classes (interfaces)
5.82.24 getBootOrder
DeviceType IMachine::getBootOrder(
[in] unsigned long position)
position Position in the boot order (1 to the total number of devices the machine can boot from,
as returned by ISystemProperties::maxBootPosition).
Returns the device type that occupies the specified position in the boot order.
@todo [remove?] If the machine can have more than one device of the returned type (such
as hard disks), then a separate method should be used to retrieve the individual device that
occupies the given position.
If here are no devices at the given position, then Null is returned.
@todo getHardDiskBootOrder(), getNetworkBootOrder()
If this method fails, the following error codes may be reported:
5.82.25 getCPUIDLeaf
void IMachine::getCPUIDLeaf(
[in] unsigned long id,
[out] unsigned long valEax,
[out] unsigned long valEbx,
[out] unsigned long valEcx,
[out] unsigned long valEdx)
Returns the virtual CPU cpuid information for the specified leaf.
Currently supported index values for cpuid: Standard CPUID leafs: 0 - 0xA Extended CPUID
leafs: 0x80000000 - 0x8000000A
See the Intel and AMD programmers manuals for detailed information about the cpuid in-
struction and its leafs.
If this method fails, the following error codes may be reported:
5.82.26 getCPUProperty
boolean IMachine::getCPUProperty(
[in] CPUPropertyType property)
197
5 Classes (interfaces)
5.82.27 getCPUStatus
boolean IMachine::getCPUStatus(
[in] unsigned long cpu)
5.82.28 getEffectiveParavirtProvider
ParavirtProvider IMachine::getEffectiveParavirtProvider()
5.82.29 getExtraData
wstring IMachine::getExtraData(
[in] wstring key)
5.82.30 getExtraDataKeys
wstring[] IMachine::getExtraDataKeys()
Returns an array representing the machine-specific extra data keys which currently have values
defined.
5.82.31 getGuestProperty
void IMachine::getGuestProperty(
[in] wstring name,
[out] wstring value,
[out] long long timestamp,
[out] wstring flags)
198
5 Classes (interfaces)
5.82.32 getGuestPropertyTimestamp
long long IMachine::getGuestPropertyTimestamp(
[in] wstring property)
5.82.33 getGuestPropertyValue
wstring IMachine::getGuestPropertyValue(
[in] wstring property)
5.82.34 getHWVirtExProperty
boolean IMachine::getHWVirtExProperty(
[in] HWVirtExPropertyType property)
5.82.35 getMedium
IMedium IMachine::getMedium(
[in] wstring name,
[in] long controllerPort,
[in] long device)
Returns the virtual medium attached to a device slot of the specified bus.
Note that if the medium was indirectly attached by mountMedium() to the given device slot
then this method will return not the same object as passed to the mountMedium() call. See
IMedium for more detailed information about mounting a medium.
If this method fails, the following error codes may be reported:
199
5 Classes (interfaces)
5.82.36 getMediumAttachment
IMediumAttachment IMachine::getMediumAttachment(
[in] wstring name,
[in] long controllerPort,
[in] long device)
name
controllerPort
device
Returns a medium attachment which corresponds to the controller with the given name, on
the given port and device slot.
If this method fails, the following error codes may be reported:
VBOX_E_OBJECT_NOT_FOUND: No attachment exists for the given controller/port/device
combination.
5.82.37 getMediumAttachmentsOfController
IMediumAttachment[] IMachine::getMediumAttachmentsOfController(
[in] wstring name)
name
Returns an array of medium attachments which are attached to the the controller with the
given name.
If this method fails, the following error codes may be reported:
VBOX_E_OBJECT_NOT_FOUND: A storage controller with given name doesnt exist.
5.82.38 getNetworkAdapter
INetworkAdapter IMachine::getNetworkAdapter(
[in] unsigned long slot)
slot
Returns the network adapter associated with the given slot. Slots are numbered sequen-
tially, starting with zero. The total number of adapters per machine is defined by the
ISystemProperties::getMaxNetworkAdapters() property, so the maximum slot number is one less
than that propertys value.
If this method fails, the following error codes may be reported:
E_INVALIDARG: Invalid slot number.
5.82.39 getParallelPort
IParallelPort IMachine::getParallelPort(
[in] unsigned long slot)
slot
Returns the parallel port associated with the given slot. Slots are numbered sequen-
tially, starting with zero. The total number of parallel ports per machine is defined by the
ISystemProperties::parallelPortCount property, so the maximum slot number is one less than
that propertys value.
If this method fails, the following error codes may be reported:
E_INVALIDARG: Invalid slot number.
200
5 Classes (interfaces)
5.82.40 getSerialPort
ISerialPort IMachine::getSerialPort(
[in] unsigned long slot)
slot
Returns the serial port associated with the given slot. Slots are numbered sequen-
tially, starting with zero. The total number of serial ports per machine is defined by the
ISystemProperties::serialPortCount property, so the maximum slot number is one less than
that propertys value.
If this method fails, the following error codes may be reported:
5.82.41 getStorageControllerByInstance
IStorageController IMachine::getStorageControllerByInstance(
[in] StorageBus connectionType,
[in] unsigned long instance)
connectionType
instance
Returns a storage controller of a specific storage bus with the given instance number.
If this method fails, the following error codes may be reported:
5.82.42 getStorageControllerByName
IStorageController IMachine::getStorageControllerByName(
[in] wstring name)
name
5.82.43 getUSBControllerByName
IUSBController IMachine::getUSBControllerByName(
[in] wstring name)
name
201
5 Classes (interfaces)
5.82.44 getUSBControllerCountByType
unsigned long IMachine::getUSBControllerCountByType(
[in] USBControllerType type)
type
Returns the number of USB controllers of the given type attached to the VM.
5.82.45 hotPlugCPU
void IMachine::hotPlugCPU(
[in] unsigned long cpu)
5.82.46 hotUnplugCPU
void IMachine::hotUnplugCPU(
[in] unsigned long cpu)
5.82.47 launchVMProcess
IProgress IMachine::launchVMProcess(
[in] ISession session,
[in] wstring name,
[in] wstring environment)
session Client session object to which the VM process will be connected (this must be in Un-
locked state).
name Front-end to use for the new VM process. The following are currently supported:
"gui": VirtualBox Qt GUI front-end
"headless": VBoxHeadless (VRDE Server) front-end
"sdl": VirtualBox SDL front-end
"emergencystop": reserved value, used for aborting the currently running VM or
session owner. In this case the session parameter may be null (if it is non-null
it isnt used in any way), and the progress return value will be always null. The
operation completes immediately.
"": use the per-VM default frontend if set, otherwise the global default defined in
the system properties. If neither are set, the API will launch a "gui" session, which
may fail if there is no windowing environment available. See defaultFrontend and
ISystemProperties::defaultFrontend.
202
5 Classes (interfaces)
Spawns a new process that will execute the virtual machine and obtains a shared lock on the
machine for the calling session.
If launching the VM succeeds, the new VM process will create its own session and write-lock
the machine for it, preventing conflicting changes from other processes. If the machine is already
locked (because it is already running or because another session has a write lock), launching the
VM process will therefore fail. Reversely, future attempts to obtain a write lock will also fail
while the machine is running.
The callers session object remains separate from the session opened by the new VM process.
It receives its own IConsole object which can be used to control machine execution, but it cannot
be used to change all VM settings which would be available after a lockMachine() call.
The caller must eventually release the sessions shared lock by calling ISession::unlockMachine()
on the local session object once this call has returned. However, the sessions state (see
ISession::state) will not return to Unlocked until the remote session has also unlocked the
machine (i.e. the machine has stopped running).
Launching a VM process can take some time (a new VM is started in a new process, for which
memory and other resources need to be set up). Because of this, an IProgress object is returned to
allow the caller to wait for this asynchronous operation to be completed. Until then, the callers
session object remains in the Unlocked state, and its ISession::machine and ISession::console
attributes cannot be accessed. It is recommended to use IProgress::waitForCompletion() or simi-
lar calls to wait for completion. Completion is signalled when the VM is powered on. If launching
the VM fails, error messages can be queried via the progress object, if available.
The progress object will have at least 2 sub-operations. The first operation covers the
period up to the new VM process calls powerUp. The subsequent operations mirror the
IConsole::powerUp() progress object. Because IConsole::powerUp() may require some extra
sub-operations, the IProgress::operationCount may change at the completion of operation.
For details on the teleportation progress operation, see IConsole::powerUp().
The environment argument is a string containing definitions of environment variables in the
following format:
NAME[=VALUE]\n
NAME[=VALUE]\n
...
where \\n is the new line character. These environment variables will be appended to the
environment of the VirtualBox server process. If an environment variable exists both in the server
process and in this list, the value from this list takes precedence over the servers variable. If the
value of the environment variable is omitted, this variable will be removed from the resulting
environment. If the environment string is null or empty, the server environment is inherited by
the started process as is.
If this method fails, the following error codes may be reported:
203
5 Classes (interfaces)
5.82.48 lockMachine
void IMachine::lockMachine(
[in] ISession session,
[in] LockType lockType)
Locks the machine for the given session to enable the caller to make changes to the machine
or start the VM or control VM execution.
There are two ways to lock a machine for such uses:
If you want to make changes to the machine settings, you must obtain an exclusive write
lock on the machine by setting lockType to Write.
This will only succeed if no other process has locked the machine to prevent conflicting
changes. Only after an exclusive write lock has been obtained using this method, one
can change all VM settings or execute the VM in the process space of the session object.
(Note that the latter is only of interest if you actually want to write a new front-end for
virtual machines; but this API gets called internally by the existing front-ends such as
VBoxHeadless and the VirtualBox GUI to acquire a write lock on the machine that they are
running.)
On success, write-locking the machine for a session creates a second copy of the IMachine
object. It is this second object upon which changes can be made; in VirtualBox terminology,
the second copy is mutable. It is only this second, mutable machine object upon which
you can call methods that change the machine state. After having called this method, you
can obtain this second, mutable machine object using the ISession::machine attribute.
If you only want to check the machine state or control machine execution without actually
changing machine settings (e.g. to get access to VM statistics or take a snapshot or save
the machine state), then set the lockType argument to Shared.
If no other session has obtained a lock, you will obtain an exclusive write lock as described
above. However, if another session has already obtained such a lock, then a link to that
existing session will be established which allows you to control that existing session.
To find out which type of lock was obtained, you can inspect ISession::type, which will
have been set to either WriteLock or Shared.
In either case, you can get access to the IConsole object which controls VM execution.
Also in all of the above cases, one must always call ISession::unlockMachine() to release the
lock on the machine, or the machines state will eventually be set to Aborted.
To change settings on a machine, the following sequence is typically performed:
1. Call this method to obtain an exclusive write lock for the current session.
2. Obtain a mutable IMachine object from ISession::machine.
3. Change the settings of the machine by invoking IMachine methods.
4. Call saveSettings().
5. Release the write lock by calling ISession::unlockMachine().
204
5 Classes (interfaces)
5.82.49 mountMedium
void IMachine::mountMedium(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] IMedium medium,
[in] boolean force)
Mounts a medium (IMedium, identified by the given UUID id) to the given storage controller
(IStorageController, identified by name), at the indicated port and device. The device must
already exist; see attachDevice() for how to attach a new device.
This method is intended only for managing removable media, where the device is fixed but
media is changeable at runtime (such as DVDs and floppies). It cannot be used for fixed media
such as hard disks.
The controllerPort and device parameters specify the device slot and have have the same
meaning as with attachDevice().
The specified device slot can have a medium mounted, which will be unmounted first. Speci-
fying a zero UUID (or an empty string) for medium does just an unmount.
See IMedium for more detailed information about attaching media.
If this method fails, the following error codes may be reported:
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range.
VBOX_E_INVALID_OBJECT_STATE: Attempt to attach medium to an unregistered virtual
machine.
VBOX_E_INVALID_VM_STATE: Invalid machine state.
VBOX_E_OBJECT_IN_USE: Medium already attached to this or another virtual machine.
5.82.50 nonRotationalDevice
void IMachine::nonRotationalDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] boolean nonRotational)
205
5 Classes (interfaces)
Sets a flag in the device information which indicates that the medium is not based on rotational
technology, i.e. that the access times are more or less independent of the position on the medium.
This may or may not be supported by a particular drive, and is silently ignored in the latter
case. At the moment only hard disks (which is a misnomer in this context) accept this setting.
Changing the setting while the VM is running is forbidden. The device must already exist; see
attachDevice() for how to attach a new device.
The controllerPort and device parameters specify the device slot and have have the same
meaning as with attachDevice().
If this method fails, the following error codes may be reported:
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range.
VBOX_E_INVALID_OBJECT_STATE: Attempt to modify an unregistered virtual machine.
VBOX_E_INVALID_VM_STATE: Invalid machine state.
5.82.51 passthroughDevice
void IMachine::passthroughDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] boolean passthrough)
Sets the passthrough mode of an existing DVD device. Changing the setting while the VM is
running is forbidden. The setting is only used if at VM start the device is configured as a host
DVD drive, in all other cases it is ignored. The device must already exist; see attachDevice() for
how to attach a new device.
The controllerPort and device parameters specify the device slot and have have the same
meaning as with attachDevice().
If this method fails, the following error codes may be reported:
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range.
VBOX_E_INVALID_OBJECT_STATE: Attempt to modify an unregistered virtual machine.
VBOX_E_INVALID_VM_STATE: Invalid machine state.
5.82.52 queryLogFilename
wstring IMachine::queryLogFilename(
[in] unsigned long idx)
Queries for the VM log file name of an given index. Returns an empty string if a log file with
that index doesnt exists.
206
5 Classes (interfaces)
5.82.53 querySavedGuestScreenInfo
void IMachine::querySavedGuestScreenInfo(
[in] unsigned long screenId,
[out] unsigned long originX,
[out] unsigned long originY,
[out] unsigned long width,
[out] unsigned long height,
[out] boolean enabled)
5.82.54 querySavedScreenshotInfo
BitmapFormat[] IMachine::querySavedScreenshotInfo(
[in] unsigned long screenId,
[out] unsigned long width,
[out] unsigned long height)
Returns available formats and size of the screenshot from saved state.
5.82.55 readLog
octet[] IMachine::readLog(
[in] unsigned long idx,
[in] long long offset,
[in] long long size)
Reads the VM log file. The chunk size is limited, so even if you ask for a big piece there might
be less data returned.
207
5 Classes (interfaces)
5.82.56 readSavedScreenshotToArray
octet[] IMachine::readSavedScreenshotToArray(
[in] unsigned long screenId,
[in] BitmapFormat bitmapFormat,
[out] unsigned long width,
[out] unsigned long height)
5.82.57 readSavedThumbnailToArray
octet[] IMachine::readSavedThumbnailToArray(
[in] unsigned long screenId,
[in] BitmapFormat bitmapFormat,
[out] unsigned long width,
[out] unsigned long height)
5.82.58 removeAllCPUIDLeaves
void IMachine::removeAllCPUIDLeaves()
5.82.59 removeCPUIDLeaf
void IMachine::removeCPUIDLeaf(
[in] unsigned long id)
Removes the virtual CPU cpuid leaf for the specified index
If this method fails, the following error codes may be reported:
208
5 Classes (interfaces)
5.82.60 removeSharedFolder
void IMachine::removeSharedFolder(
[in] wstring name)
Removes the permanent shared folder with the given name previously created by
createSharedFolder() from the collection of shared folders and stops sharing it.
If this method fails, the following error codes may be reported:
5.82.61 removeStorageController
void IMachine::removeStorageController(
[in] wstring name)
name
Removes a storage controller from the machine with all devices attached to it.
If this method fails, the following error codes may be reported:
5.82.62 removeUSBController
void IMachine::removeUSBController(
[in] wstring name)
name
5.82.63 restoreSnapshot
IProgress IMachine::restoreSnapshot(
[in] ISnapshot snapshot)
Starts resetting the machines current state to the state contained in the given snapshot, asyn-
chronously. All current settings of the machine will be reset and changes stored in differencing
media will be lost. See ISnapshot for an introduction to snapshots.
After this operation is successfully completed, new empty differencing media are created for
all normal media of the machine.
If the given snapshot is an online snapshot, the machine will go to the Saved, so that the next
time it is powered on, the execution state will be restored from the state of the snapshot.
209
5 Classes (interfaces)
Note: The machine must not be running, otherwise the operation will fail.
Note: If the machine state is Saved prior to this operation, the saved state file will be
implicitly deleted (as if discardSavedState() were called).
5.82.64 saveSettings
void IMachine::saveSettings()
Saves any changes to machine settings made since the session has been opened or a new ma-
chine has been created, or since the last call to saveSettings() or discardSettings(). For registered
machines, new settings become visible to all other VirtualBox clients after successful invocation
of this method.
Note: The method sends IMachineDataChangedEvent notification event after the con-
figuration has been successfully saved (only for registered machines).
Note: Calling this method is only valid on instances returned by ISession::machine and
on new machines created by IVirtualBox::createMachine() but not yet registered, or on
unregistered machines after calling unregister().
5.82.65 saveState
IProgress IMachine::saveState()
Saves the current execution state of a running virtual machine and stops its execution.
After this operation completes, the machine will go to the Saved state. Next time it is powered
up, this state will be restored and the machine will continue its execution from the place where
it was saved.
This operation differs from taking a snapshot to the effect that it doesnt create new differenc-
ing media. Also, once the machine is powered up from the state saved using this method, the
saved state is deleted, so it will be impossible to return to this state later.
Note: On success, this method implicitly calls saveSettings() to save all current ma-
chine settings (including runtime changes to the DVD medium, etc.). Together with
the impossibility to change any VM settings when it is in the Saved state, this guar-
antees adequate hardware configuration of the machine when it is restored from the
saved state file.
210
5 Classes (interfaces)
Note: The machine must be in the Running or Paused state, otherwise the operation
will fail.
5.82.66 setAutoDiscardForDevice
void IMachine::setAutoDiscardForDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] boolean discard)
Sets a flag in the device information which indicates that the medium supports discarding
unused blocks (called trimming for SATA or unmap for SCSI devices) .This may or may not be
supported by a particular drive, and is silently ignored in the latter case. At the moment only
hard disks (which is a misnomer in this context) accept this setting. Changing the setting while
the VM is running is forbidden. The device must already exist; see attachDevice() for how to
attach a new device.
The controllerPort and device parameters specify the device slot and have have the same
meaning as with attachDevice().
If this method fails, the following error codes may be reported:
5.82.67 setBandwidthGroupForDevice
void IMachine::setBandwidthGroupForDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] IBandwidthGroup bandwidthGroup)
211
5 Classes (interfaces)
Sets the bandwidth group of an existing storage device. The device must already exist; see
attachDevice() for how to attach a new device.
The controllerPort and device parameters specify the device slot and have have the same
meaning as with attachDevice().
If this method fails, the following error codes may be reported:
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range.
VBOX_E_INVALID_OBJECT_STATE: Attempt to modify an unregistered virtual machine.
VBOX_E_INVALID_VM_STATE: Invalid machine state.
5.82.68 setBootOrder
void IMachine::setBootOrder(
[in] unsigned long position,
[in] DeviceType device)
position Position in the boot order (1 to the total number of devices the machine can boot from,
as returned by ISystemProperties::maxBootPosition).
device The type of the device used to boot at the given position.
Puts the given device to the specified position in the boot order.
To indicate that no device is associated with the given position, Null should be used.
@todo setHardDiskBootOrder(), setNetworkBootOrder()
If this method fails, the following error codes may be reported:
E_INVALIDARG: Boot position out of range.
E_NOTIMPL: Booting from USB device currently not supported.
5.82.69 setCPUIDLeaf
void IMachine::setCPUIDLeaf(
[in] unsigned long id,
[in] unsigned long valEax,
[in] unsigned long valEbx,
[in] unsigned long valEcx,
[in] unsigned long valEdx)
212
5 Classes (interfaces)
5.82.70 setCPUProperty
void IMachine::setCPUProperty(
[in] CPUPropertyType property,
[in] boolean value)
5.82.71 setExtraData
void IMachine::setExtraData(
[in] wstring key,
[in] wstring value)
Note: Before performing the actual data change, this method will ask all registered
listeners using the IExtraDataCanChangeEvent notification for a permission. If one of
the listeners refuses the new value, the change will not be performed.
Note: This method can be called outside the machine session and therefore its a callers
responsibility to handle possible race conditions when several clients change the same
key at the same time.
213
5 Classes (interfaces)
5.82.72 setGuestProperty
void IMachine::setGuestProperty(
[in] wstring property,
[in] wstring value,
[in] wstring flags)
5.82.73 setGuestPropertyValue
void IMachine::setGuestPropertyValue(
[in] wstring property,
[in] wstring value)
5.82.74 setHWVirtExProperty
void IMachine::setHWVirtExProperty(
[in] HWVirtExPropertyType property,
[in] boolean value)
214
5 Classes (interfaces)
5.82.75 setHotPluggableForDevice
void IMachine::setHotPluggableForDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] boolean hotPluggable)
Sets a flag in the device information which indicates that the attached device is hot pluggable
or not. This may or may not be supported by a particular controller and/or drive, and is silently
ignored in the latter case. Changing the setting while the VM is running is forbidden. The device
must already exist; see attachDevice() for how to attach a new device.
The controllerPort and device parameters specify the device slot and have have the same
meaning as with attachDevice().
If this method fails, the following error codes may be reported:
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range.
VBOX_E_INVALID_OBJECT_STATE: Attempt to modify an unregistered virtual machine.
5.82.76 setNoBandwidthGroupForDevice
void IMachine::setNoBandwidthGroupForDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device)
Sets no bandwidth group for an existing storage device. The device must already exist; see
attachDevice() for how to attach a new device. The controllerPort and device parameters
specify the device slot and have have the same meaning as with attachDevice().
If this method fails, the following error codes may be reported:
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range.
VBOX_E_INVALID_OBJECT_STATE: Attempt to modify an unregistered virtual machine.
215
5 Classes (interfaces)
5.82.77 setSettingsFilePath
IProgress IMachine::setSettingsFilePath(
[in] wstring settingsFilePath)
settingsFilePath New settings file path, will be used to determine the new location for the
attached media if it is in the same directory or below as the original settings file.
Currently, it is an error to change this property on any machine. Later this will allow setting a
new path for the settings file, with automatic relocation of all files (including snapshots and disk
images) which are inside the base directory. This operation is only allowed when there are no
pending unsaved settings.
Note: Setting this property to null or to an empty string is forbidden. When setting
this property, the specified path must be absolute. The specified path may not exist, it
will be created when necessary.
5.82.78 setStorageControllerBootable
void IMachine::setStorageControllerBootable(
[in] wstring name,
[in] boolean bootable)
name
bootable
Sets the bootable flag of the storage controller with the given name.
If this method fails, the following error codes may be reported:
5.82.79 showConsoleWindow
long long IMachine::showConsoleWindow()
Activates the console window and brings it to foreground on the desktop of the host PC. Many
modern window managers on many platforms implement some sort of focus stealing prevention
logic, so that it may be impossible to activate a window without the help of the currently active
application. In this case, this method will return a non-zero identifier that represents the top-
level window of the VM console process. The caller, if it represents a currently active process,
is responsible to use this identifier (in a platform-dependent manner) to perform actual window
activation.
Note: This method will fail if a session for this machine is not currently open.
216
5 Classes (interfaces)
5.82.80 takeSnapshot
IProgress IMachine::takeSnapshot(
[in] wstring name,
[in] wstring description,
[in] boolean pause,
[out] uuid id)
Note: This method implicitly calls saveSettings() to save all current machine settings
before taking an offline snapshot.
5.82.81 temporaryEjectDevice
void IMachine::temporaryEjectDevice(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] boolean temporaryEject)
217
5 Classes (interfaces)
5.82.82 unmountMedium
void IMachine::unmountMedium(
[in] wstring name,
[in] long controllerPort,
[in] long device,
[in] boolean force)
Unmounts any currently mounted medium (IMedium, identified by the given UUID id) to
the given storage controller (IStorageController, identified by name), at the indicated port and
device. The device must already exist;
This method is intended only for managing removable media, where the device is fixed but
media is changeable at runtime (such as DVDs and floppies). It cannot be used for fixed media
such as hard disks.
The controllerPort and device parameters specify the device slot and have have the same
meaning as with attachDevice().
The specified device slot must have a medium mounted, which will be unmounted. If there
is no mounted medium it will do nothing. See IMedium for more detailed information about
attaching/unmounting media.
If this method fails, the following error codes may be reported:
E_INVALIDARG: SATA device, SATA port, IDE port or IDE slot out of range.
VBOX_E_INVALID_OBJECT_STATE: Attempt to unmount medium that is not removable -
not DVD or floppy.
5.82.83 unregister
IMedium[] IMachine::unregister(
[in] CleanupMode cleanupMode)
218
5 Classes (interfaces)
With UnregisterOnly, the machine will only be unregistered, but no additional cleanup
will be performed. The call will fail if the machine is in Saved state or has any snapshots
or any media attached (see IMediumAttachment). It is the responsibility of the caller to
delete all such configuration in this mode. In this mode, the API behaves like the former
IVirtualBox::unregisterMachine() API which it replaces.
With DetachAllReturnNone, the call will succeed even if the machine is in Saved state
or if it has snapshots or media attached. All media attached to the current machine state
or in snapshots will be detached. No medium objects will be returned; all of the machines
media will remain open.
With DetachAllReturnHardDisksOnly, the call will behave like with DetachAllReturn-
None, except that all the hard disk medium objects which were detached from the machine
will be returned as an array. This allows for quickly passing them to the deleteConfig() API
for closing and deletion.
With Full, the call will behave like with DetachAllReturnHardDisksOnly, except that all
media will be returned in the array, including removable media like DVDs and floppies.
This might be useful if the user wants to inspect in detail which media were attached to the
machine. Be careful when passing the media array to deleteConfig() in that case because
users will typically want to preserve ISO and RAW image files.
A typical implementation will use DetachAllReturnHardDisksOnly and then pass the result-
ing IMedium array to deleteConfig(). This way, the machine is completely deleted with all its
saved states and hard disk images, but images for removable drives (such as ISO and RAW files)
will remain on disk.
This API does not verify whether the media files returned in the array are still attached to
other machines (i.e. shared between several machines). If such a shared image is passed to
deleteConfig() however, closing the image will fail there and the image will be silently skipped.
This API may, however, move media from this machines media registry to other media reg-
istries (see IMedium for details on media registries). For machines created with VirtualBox 4.0 or
later, if media from this machines media registry are also attached to another machine (shared
attachments), each such medium will be moved to another machines registry. This is because
without this machines media registry, the other machine cannot find its media any more and
would become inaccessible.
This API implicitly calls saveSettings() to save all current machine settings before unregister-
ing it. It may also silently call saveSettings() on other machines if media are moved to other
machines media registries.
After successful method invocation, the IMachineRegisteredEvent event is fired.
The call will fail if the machine is currently locked (see ISession).
Note: If the given machine is inaccessible (see accessible), it will be unregistered and
fully uninitialized right afterwards. As a result, the returned machine object will be
unusable and an attempt to call any method will return the Object not ready error.
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
219
5 Classes (interfaces)
5.83.1 Attributes
5.83.1.1 temporary (read-only)
boolean IMachineDataChangedEvent::temporary
true if the settings change is temporary. All permanent settings changes will trigger an event,
and only temporary settings changes for running VMs will trigger an event. Note: sending events
for temporary changes is NOT IMPLEMENTED.
5.84 IMachineDebugger
5.84.1 Attributes
5.84.1.1 singleStep (read/write)
boolean IMachineDebugger::singleStep
Whether to execute all the code in the instruction interpreter. This is mainly for testing the
interpreter and not an execution mode intended for general consumption.
220
5 Classes (interfaces)
Flag indicating whether the VM is currently making use of CPU hardware virtualization exten-
sions.
Flag indicating whether the VM is currently making use of the nested paging CPU hardware
virtualization extension.
Flag indicating whether the VM is currently making use of the VPID VT-x extension.
221
5 Classes (interfaces)
Flag indicating whether the VM is currently making use of the unrestricted execution feature
of VT-x.
Flag indicating whether the VM is currently making use of the Physical Address Extension CPU
feature.
The rate at which the virtual time runs expressed as a percentage. The accepted range is 2%
to 20000%.
5.84.1.22 VM (read-only)
long long IMachineDebugger::VM
Gets the user-mode VM handle, with a reference. Must be passed to VMR3ReleaseUVM when
done. This is only for internal use while we carve the details of this interface.
VM uptime in milliseconds, i.e. time in which it could have been executing guest code. Ex-
cludes the time when the VM was paused.
5.84.2 detectOS
wstring IMachineDebugger::detectOS()
222
5 Classes (interfaces)
5.84.3 dumpGuestCore
void IMachineDebugger::dumpGuestCore(
[in] wstring filename,
[in] wstring compression)
filename The name of the output file. The file must not exist.
compression Reserved for future compression method indicator.
5.84.4 dumpGuestStack
wstring IMachineDebugger::dumpGuestStack(
[in] unsigned long cpuId)
5.84.5 dumpHostProcessCore
void IMachineDebugger::dumpHostProcessCore(
[in] wstring filename,
[in] wstring compression)
filename The name of the output file. The file must not exist.
5.84.6 dumpStats
void IMachineDebugger::dumpStats(
[in] wstring pattern)
Dumps VM statistics.
5.84.7 getRegister
wstring IMachineDebugger::getRegister(
[in] unsigned long cpuId,
[in] wstring name)
223
5 Classes (interfaces)
5.84.8 getRegisters
void IMachineDebugger::getRegisters(
[in] unsigned long cpuId,
[out] wstring names[],
[out] wstring values[])
5.84.9 getStats
wstring IMachineDebugger::getStats(
[in] wstring pattern,
[in] boolean withDescriptions)
5.84.10 info
wstring IMachineDebugger::info(
[in] wstring name,
[in] wstring args)
5.84.11 injectNMI
void IMachineDebugger::injectNMI()
5.84.12 loadPlugIn
wstring IMachineDebugger::loadPlugIn(
[in] wstring name)
name The plug-in name or DLL. Special name all loads all installed plug-ins.
224
5 Classes (interfaces)
5.84.13 modifyLogDestinations
void IMachineDebugger::modifyLogDestinations(
[in] wstring settings)
settings The destination settings string. See iprt/log.h for details. To target the release logger,
prefix the string with release:.
5.84.14 modifyLogFlags
void IMachineDebugger::modifyLogFlags(
[in] wstring settings)
settings The flags settings string. See iprt/log.h for details. To target the release logger, prefix
the string with release:.
5.84.15 modifyLogGroups
void IMachineDebugger::modifyLogGroups(
[in] wstring settings)
settings The group settings string. See iprt/log.h for details. To target the release logger, prefix
the string with release:.
5.84.16 queryOSKernelLog
wstring IMachineDebugger::queryOSKernelLog(
[in] unsigned long maxMessages)
maxMessages Max number of messages to return, counting from the end of the log. If 0, there
is no limit.
5.84.17 readPhysicalMemory
octet[] IMachineDebugger::readPhysicalMemory(
[in] long long address,
[in] unsigned long size)
225
5 Classes (interfaces)
5.84.18 readVirtualMemory
octet[] IMachineDebugger::readVirtualMemory(
[in] unsigned long cpuId,
[in] long long address,
[in] unsigned long size)
5.84.19 resetStats
void IMachineDebugger::resetStats(
[in] wstring pattern)
Reset VM statistics.
5.84.20 setRegister
void IMachineDebugger::setRegister(
[in] unsigned long cpuId,
[in] wstring name,
[in] wstring value)
value The new register value. Hexadecimal, decimal and octal formattings are supported in
addition to any special formattings returned by the getters.
5.84.21 setRegisters
void IMachineDebugger::setRegisters(
[in] unsigned long cpuId,
[in] wstring names[],
[in] wstring values[])
226
5 Classes (interfaces)
5.84.22 unloadPlugIn
void IMachineDebugger::unloadPlugIn(
[in] wstring name)
name The plug-in name or DLL. Special name all unloads all plug-ins.
5.84.23 writePhysicalMemory
void IMachineDebugger::writePhysicalMemory(
[in] long long address,
[in] unsigned long size,
[in] octet bytes[])
5.84.24 writeVirtualMemory
void IMachineDebugger::writeVirtualMemory(
[in] unsigned long cpuId,
[in] long long address,
[in] unsigned long size,
[in] octet bytes[])
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.85.1 Attributes
5.85.1.1 machineId (read-only)
uuid IMachineEvent::machineId
227
5 Classes (interfaces)
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
The given machine was registered or unregistered within this VirtualBox installation.
5.86.1 Attributes
5.86.1.1 registered (read-only)
boolean IMachineRegisteredEvent::registered
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
5.87.1 Attributes
5.87.1.1 state (read-only)
MachineState IMachineStateChangedEvent::state
5.88 IManagedObjectRef
Note: This interface is supported in the web service only, not in COM/XPCOM.
228
5 Classes (interfaces)
5.88.1 getInterfaceName
wstring IManagedObjectRef::getInterfaceName()
Returns the name of the interface that this managed object represents, for example, IMa-
chine, as a string.
5.88.2 release
void IManagedObjectRef::release()
Releases this managed object reference and frees the resources that were allocated for it in the
webservice server process. After calling this method, the identifier of the reference can no longer
be used.
5.89 IMedium
The IMedium interface represents virtual storage for a machines hard disks, CD/DVD or floppy
drives. It will typically represent a disk image on the host, for example a VDI or VMDK file
representing a virtual hard disk, or an ISO or RAW file representing virtual removable media,
but can also point to a network location (e.g. for iSCSI targets).
Instances of IMedium are connected to virtual machines by way of medium attachments, which
link the storage medium to a particular device slot of a storage controller of the virtual machine.
In the VirtualBox API, virtual storage is therefore always represented by the following chain of
object links:
Existing media are opened using IVirtualBox::openMedium(); new hard disk media can be
created with the VirtualBox API using the IVirtualBox::createMedium() method. Differencing
hard disks (see below) are usually implicitly created by VirtualBox as needed, but may also be
created explicitly using createDiffStorage(). VirtualBox cannot create CD/DVD or floppy images
(ISO and RAW files); these should be created with external tools and then opened from within
VirtualBox.
Only for CD/DVDs and floppies, an IMedium instance can also represent a host drive. In
that case the id attribute contains the UUID of one of the drives in IHost::DVDDrives[] or
IHost::floppyDrives[].
Media registries
When a medium has been opened or created using one of the aforementioned APIs, it be-
comes known to VirtualBox. Known media can be attached to virtual machines and re-found
through IVirtualBox::openMedium(). They also appear in the global IVirtualBox::hardDisks[],
IVirtualBox::DVDImages[] and IVirtualBox::floppyImages[] arrays.
229
5 Classes (interfaces)
Prior to VirtualBox 4.0, opening a medium added it to a global media registry in the
VirtualBox.xml file, which was shared between all machines and made transporting machines
and their media from one host to another difficult.
Starting with VirtualBox 4.0, media are only added to a registry when they are attached to a
machine using IMachine::attachDevice(). For backwards compatibility, which registry a medium
is added to depends on which VirtualBox version created a machine:
If the medium has first been attached to a machine which was created by VirtualBox 4.0
or later, it is added to that machines media registry in the machine XML settings file. This
way all information about a machines media attachments is contained in a single file and
can be transported easily.
For older media attachments (i.e. if the medium was first attached to a machine which was
created with a VirtualBox version before 4.0), media continue to be registered in the global
VirtualBox settings file, for backwards compatibility.
230
5 Classes (interfaces)
contains the path specification but not the file name part and ends with either a forward slash or
a backslash character. In response, VirtualBox will generate a new UUID for the hard disk and
compose the file name using the following pattern:
<path>/{<uuid>}.<ext>
where <path> is the supplied path specification, <uuid> is the newly generated UUID and
<ext> is the default extension for the storage format of this hard disk. After that, you may call
any of the methods that create a new hard disk storage unit and they will use the generated
UUID and file name.
5.89.1 Attributes
5.89.1.1 id (read-only)
uuid IMedium::id
UUID of the medium. For a newly created medium, this value is a randomly generated UUID.
Optional description of the medium. For a newly created medium the value of this attribute is
an empty string.
Medium types that dont support this attribute will return E_NOTIMPL in attempt to get or set
this attributes value.
Note: For some storage types, reading this attribute may return an outdated (last
known) value when state is Inaccessible or LockedWrite because the value of this at-
tribute is stored within the storage unit itself. Also note that changing the attribute
value is not possible in such case, as well as when the medium is the LockedRead state.
Returns the current medium state, which is the last state set by the accessibility check per-
formed by refreshState(). If that method has not yet been called on the medium, the state is
Inaccessible; as opposed to truly inaccessible media, the value of lastAccessError will be an
empty string in that case.
231
5 Classes (interfaces)
Returns the storage format variant information for this medium as an array of the flags de-
scribed at MediumVariant. Before refreshState() is called this method returns an undefined
value.
Physical size of the storage unit used to hold medium data (in bytes).
Note: For media whose state is Inaccessible, the value of this property is the last known
size. For NotCreated media, the returned value is zero.
232
5 Classes (interfaces)
Note: null is returned if there is no associated medium format object. This can e.g.
happen for medium objects representing host drives and other special medium objects.
If a medium is attached to a virtual machine (either in the current state or in one of the
snapshots), its type cannot be changed.
As long as the medium has children, its type cannot be set to Writethrough.
The type of all differencing media is Normal and cannot be changed.
The type of a newly created or opened medium is set to Normal, except for DVD and floppy
media, which have a type of Writethrough.
Parent of this medium (the medium this medium is directly based on).
Only differencing media have parents. For base (non-differencing) media, null is returned.
233
5 Classes (interfaces)
Children of this medium (all differencing media directly based on this medium). A null array
is returned if this medium does not have any children.
Note: The read-only condition represented by this attribute is related to the medium
type and usage, not to the current medium state and not to the read-only state of the
storage unit.
Logical size of this medium (in bytes), as reported to the guest OS running inside the virtual
machine this medium is attached to. The logical size is defined when the medium is created and
cannot be changed later.
Note: For media whose state is state is Inaccessible, the value of this property is the
last known logical size. For NotCreated media, the returned value is zero.
234
5 Classes (interfaces)
Whether this differencing medium will be automatically reset each time a virtual machine it
is attached to is powered up. This attribute is automatically set to true for the last differencing
image of an immutable medium (see MediumType).
See reset() for more information about resetting differencing media.
Note: Reading this property on a base (non-differencing) medium will always false.
Changing the value of this property in this case is not supported.
Text message that represents the result of the last accessibility check performed by
refreshState().
An empty string is returned if the last accessibility check was successful or has not yet been
called. As a result, if state is Inaccessible and this attribute is empty, then refreshState() has
yet to be called; this is the default value of media after VirtualBox initialization. A non-empty
string indicates a failure and should normally describe a reason of the failure (for example, a file
read error).
Note: The returned array will include a machine even if this medium is not attached to
that machine in the current state but attached to it in one of the machines snapshots.
See getSnapshotIds() for details.
5.89.2 changeEncryption
IProgress IMedium::changeEncryption(
[in] wstring currentPassword,
[in] wstring cipher,
[in] wstring newPassword,
[in] wstring newPasswordId)
currentPassword The current password the medium is protected with. Use an empty string to
indicate that the medium isnt encrypted.
cipher The cipher to use for encryption. An empty string indicates no encryption for the result.
newPassword The new password the medium should be protected with. An empty password
and password ID will result in the medium being encrypted with the current password.
newPasswordId The ID of the new password when unlocking the medium.
235
5 Classes (interfaces)
Starts encryption of this medium. This means that the stored data in the medium is encrypted.
This medium will be placed to LockedWrite state.
Please note that the results can be either returned straight away, or later as the result of the
background operation via the object returned via the progress parameter.
If this method fails, the following error codes may be reported:
VBOX_E_NOT_SUPPORTED: Encryption is not supported for this medium because it is at-
tached to more than one VM or has children.
5.89.3 checkEncryptionPassword
void IMedium::checkEncryptionPassword(
[in] wstring password)
5.89.4 cloneTo
IProgress IMedium::cloneTo(
[in] IMedium target,
[in] MediumVariant variant[],
[in] IMedium parent)
Note: This medium will be placed to LockedRead state for the duration of this opera-
tion.
236
5 Classes (interfaces)
5.89.5 cloneToBase
IProgress IMedium::cloneToBase(
[in] IMedium target,
[in] MediumVariant variant[])
Starts creating a clone of this medium in the format and at the location defined by the target
argument.
The target medium must be either in NotCreated state (i.e. must not have an existing storage
unit) or in Created state (i.e. created and not locked, and big enough to hold the data or else the
copy will be partial). Upon successful completion, the cloned medium will contain exactly the
same sector data as the medium being cloned, except that in the first case a new UUID for the
clone will be randomly generated, and in the second case the UUID will remain unchanged.
The parent argument defines which medium will be the parent of the clone. In this case the
clone will be a base image, i.e. completely independent. It is possible to specify an arbitrary
medium for this parameter, including the parent of the medium which is being cloned. Even
cloning to a child of the source medium is possible. Note that when cloning to an existing image,
the parent argument is ignored.
After the returned progress object reports that the operation is successfully complete, the tar-
get medium gets remembered by this VirtualBox installation and may be attached to virtual
machines.
Note: This medium will be placed to LockedRead state for the duration of this opera-
tion.
5.89.6 close
void IMedium::close()
237
5 Classes (interfaces)
5.89.7 compact
IProgress IMedium::compact()
Starts compacting of this medium. This means that the medium is transformed into a possibly
more compact storage representation. This potentially creates temporary images, which can
require a substantial amount of additional disk space.
This medium will be placed to LockedWrite state and all its parent media (if any) will be
placed to LockedRead state for the duration of this operation.
Please note that the results can be either returned straight away, or later as the result of the
background operation via the object returned via the progress parameter.
If this method fails, the following error codes may be reported:
VBOX_E_NOT_SUPPORTED: Medium format does not support compacting (but potentially
needs it).
5.89.8 createBaseStorage
IProgress IMedium::createBaseStorage(
[in] long long logicalSize,
[in] MediumVariant variant[])
5.89.9 createDiffStorage
IProgress IMedium::createDiffStorage(
[in] IMedium target,
[in] MediumVariant variant[])
238
5 Classes (interfaces)
Note: The medium will be set to LockedRead state for the duration of this operation.
5.89.10 deleteStorage
IProgress IMedium::deleteStorage()
Note: If the deletion operation fails, it is not guaranteed that the storage unit still
exists. You may check the state value to answer this question.
5.89.11 getEncryptionSettings
wstring IMedium::getEncryptionSettings(
[out] wstring cipher)
5.89.12 getProperties
wstring[] IMedium::getProperties(
[in] wstring names,
[out] wstring returnNames[])
239
5 Classes (interfaces)
Note: Currently the value of this argument is ignored and the method always returns
all existing properties.
The list of all properties supported by the given medium format can be obtained with
IMediumFormat::describeProperties().
The method returns two arrays, the array of property names corresponding to the names argu-
ment and the current values of these properties. Both arrays have the same number of elements
with each element at the given index in the first array corresponds to an element at the same
index in the second array.
For properties that do not have assigned values, an empty string is returned at the appropriate
index in the returnValues array.
5.89.13 getProperty
wstring IMedium::getProperty(
[in] wstring name)
Returns the value of the custom medium property with the given name.
The list of all properties supported by the given medium format can be obtained with
IMediumFormat::describeProperties().
Note: If this method returns an empty string in value, the requested property is sup-
ported but currently not assigned any value.
5.89.14 getSnapshotIds
uuid[] IMedium::getSnapshotIds(
[in] uuid machineId)
Returns an array of UUIDs of all snapshots of the given machine where this medium is attached
to.
If the medium is attached to the machine in the current state, then the first element in the array
will always be the ID of the queried machine (i.e. the value equal to the machineId argument),
followed by snapshot IDs (if any).
If the medium is not attached to the machine in the current state, then the array will contain
only snapshot IDs.
The returned array may be null if this medium is not attached to the given machine at all,
neither in the current state nor in one of the snapshots.
240
5 Classes (interfaces)
5.89.15 lockRead
IToken IMedium::lockRead()
5.89.16 lockWrite
IToken IMedium::lockWrite()
241
5 Classes (interfaces)
This method sets the medium state (see state) to LockedWrite on success. The mediums
previous state must be either Created or Inaccessible.
Locking an inaccessible medium is not an error; this method performs a logical lock that
prevents modifications of this medium through the VirtualBox API, not a physical file-system
lock of the underlying storage unit.
If this method fails, the following error codes may be reported:
5.89.17 mergeTo
IProgress IMedium::mergeTo(
[in] IMedium target)
Starts merging the contents of this medium and all intermediate differencing media in the
chain to the given target medium.
The target medium must be either a descendant of this medium or its ancestor (otherwise this
method will immediately return a failure). It follows that there are two logical directions of the
merge operation: from ancestor to descendant (forward merge) and from descendant to ancestor
(backward merge). Let us consider the following medium chain:
Base <- Diff_1 <- Diff_2
Here, calling this method on the Base medium object with Diff_2 as an argument will be a
forward merge; calling it on Diff_2 with Base as an argument will be a backward merge. Note
that in both cases the contents of the resulting medium will be the same, the only difference is
the medium object that takes the result of the merge operation. In case of the forward merge
in the above example, the result will be written to Diff_2; in case of the backward merge, the
result will be written to Base. In other words, the result of the operation is always stored in the
target medium.
Upon successful operation completion, the storage units of all media in the chain between this
(source) medium and the target medium, including the source medium itself, will be automati-
cally deleted and the relevant medium objects (including this medium) will become uninitialized.
This means that any attempt to call any of their methods or attributes will fail with the "Object
not ready" (E_ACCESSDENIED) error. Applied to the above example, the forward merge of
Base to Diff_2 will delete and uninitialize both Base and Diff_1 media. Note that Diff_2 in
this case will become a base medium itself since it will no longer be based on any other medium.
Considering the above, all of the following conditions must be met in order for the merge
operation to succeed:
Neither this (source) medium nor any intermediate differencing medium in the chain be-
tween it and the target medium is attached to any virtual machine.
Neither the source medium nor the target medium is an Immutable medium.
The part of the medium tree from the source medium to the target medium is a linear
chain, i.e. all medium in this chain have exactly one child which is the next medium in
this chain. The only exception from this rule is the target medium in the forward merge
operation; it is allowed to have any number of child media because the merge operation
will not change its logical contents (as it is seen by the guest OS or by children).
None of the involved media are in LockedRead or LockedWrite state.
242
5 Classes (interfaces)
Note: This (source) medium and all intermediates will be placed to Deleting state and
the target medium will be placed to LockedWrite state and for the duration of this
operation.
5.89.18 refreshState
MediumState IMedium::refreshState()
If the current medium state (see MediumState) is one of Created, Inaccessible or Locke-
dRead, then this performs an accessibility check on the medium and sets the value of the state
attribute accordingly; that value is also returned for convenience.
For all other state values, this does not perform a refresh but returns the state only.
The refresh, if performed, may take a long time (several seconds or even minutes, depending
on the storage unit location and format) because it performs an accessibility check of the storage
unit. This check may cause a significant delay if the storage unit of the given medium is, for
example, a file located on a network share which is not currently accessible due to connectivity
problems. In that case, the call will not return until a timeout interval defined by the host OS
for this operation expires. For this reason, it is recommended to never read this attribute on the
main UI thread to avoid making the UI unresponsive.
If the last known state of the medium is Created and the accessibility check fails, then the
state would be set to Inaccessible, and lastAccessError may be used to get more details about
the failure. If the state of the medium is LockedRead, then it remains the same, and a non-
empty value of lastAccessError will indicate a failed accessibility check in this case.
Note that not all medium states are applicable to all medium types.
5.89.19 reset
IProgress IMedium::reset()
5.89.20 resize
IProgress IMedium::resize(
[in] long long logicalSize)
Starts resizing this medium. This means that the nominal size of the medium is set to the new
value. Both increasing and decreasing the size is possible, and there are no safety checks, since
VirtualBox does not make any assumptions about the medium contents.
Resizing usually needs additional disk space, and possibly also some temporary disk space.
Note that resize does not create a full temporary copy of the medium, so the additional disk
space requirement is usually much lower than using the clone operation.
This medium will be placed to LockedWrite state for the duration of this operation.
243
5 Classes (interfaces)
Please note that the results can be either returned straight away, or later as the result of the
background operation via the object returned via the progress parameter.
If this method fails, the following error codes may be reported:
5.89.21 setIds
void IMedium::setIds(
[in] boolean setImageId,
[in] uuid imageId,
[in] boolean setParentId,
[in] uuid parentId)
parentId New parent UUID for the image. If an empty string is passed, then a new UUID is
automatically created, provided setParentId is true. A zero UUID is valid.
Changes the UUID and parent UUID for a hard disk medium.
5.89.22 setLocation
IProgress IMedium::setLocation(
[in] wstring location)
Changes the location of this medium. Some medium types may support changing the storage
unit location by simply changing the value of the associated property. In this case the operation
is performed immediately, and progress is returning a null reference. Otherwise on success
there is a progress object returned, which signals progress and completion of the operation. This
distinction is necessary because for some formats the operation is very fast, while for others it
can be very slow (moving the image file by copying all data), and in the former case itd be a
waste of resources to create a progress object which will immediately signal completion.
When setting a location for a medium which corresponds to a/several regular file(s) in the
hosts file system, the given file name may be either relative to the VirtualBox home folder or
absolute. Note that if the given location specification does not contain the file extension part then
a proper default extension will be automatically appended by the implementation depending on
the medium type.
If this method fails, the following error codes may be reported:
5.89.23 setProperties
void IMedium::setProperties(
[in] wstring names[],
[in] wstring values[])
244
5 Classes (interfaces)
5.89.24 setProperty
void IMedium::setProperty(
[in] wstring name,
[in] wstring value)
Sets the value of the custom medium property with the given name.
The list of all properties supported by the given medium format can be obtained with
IMediumFormat::describeProperties().
Note: Setting the property value to null or an empty string is equivalent to deleting
the existing value. A default value (if it is defined for this property) will be used by the
format backend in this case.
5.90 IMediumAttachment
Note: With the web service, this interface is mapped to a structure. Attributes that
return this interface will not return an object, but a complete structure containing the
attributes listed below as structure members.
The IMediumAttachment interface links storage media to virtual machines. For each medium
(IMedium) which has been attached to a storage controller (IStorageController) of a machine
(IMachine) via the IMachine::attachDevice() method, one instance of IMediumAttachment is
added to the machines IMachine::mediumAttachments[] array attribute.
245
5 Classes (interfaces)
Each medium attachment specifies the storage controller as well as a port and device number
and the IMedium instance representing a virtual hard disk or floppy or DVD image.
For removable media (DVDs or floppies), there are two additional options. For one, the
IMedium instance can be null to represent an empty drive with no media inserted (see
IMachine::mountMedium()); secondly, the medium can be one of the pseudo-media for host
drives listed in IHost::DVDDrives[] or IHost::floppyDrives[].
Attaching Hard Disks
Hard disks are attached to virtual machines using the IMachine::attachDevice() method and
detached using the IMachine::detachDevice() method. Depending on a mediums type (see
IMedium::type), hard disks are attached either directly or indirectly.
When a hard disk is being attached directly, it is associated with the virtual machine and
used for hard disk operations when the machine is running. When a hard disk is being attached
indirectly, a new differencing hard disk linked to it is implicitly created and this differencing hard
disk is associated with the machine and used for hard disk operations. This also means that if
IMachine::attachDevice() performs a direct attachment then the same hard disk will be returned
in response to the subsequent IMachine::getMedium() call; however if an indirect attachment is
performed then IMachine::getMedium() will return the implicitly created differencing hard disk,
not the original one passed to IMachine::attachDevice(). In detail:
Normal base hard disks that do not have children (i.e. differencing hard disks linked
to them) and that are not already attached to virtual machines in snapshots are attached
directly. Otherwise, they are attached indirectly because having dependent children or
being part of the snapshot makes it impossible to modify hard disk contents without break-
ing the integrity of the dependent party. The IMedium::readOnly attribute allows to quickly
determine the kind of the attachment for the given hard disk. Note that if a normal base
hard disk is to be indirectly attached to a virtual machine with snapshots then a special
procedure called smart attachment is performed (see below).
Normal differencing hard disks are like normal base hard disks: they are attached directly
if they do not have children and are not attached to virtual machines in snapshots, and
indirectly otherwise. Note that the smart attachment procedure is never performed for
differencing hard disks.
Immutable hard disks are always attached indirectly because they are designed to be non-
writable. If an immutable hard disk is attached to a virtual machine with snapshots then a
special procedure called smart attachment is performed (see below).
Writethrough hard disks are always attached directly, also as designed. This also means
that writethrough hard disks cannot have other hard disks linked to them at all.
Shareable hard disks are always attached directly, also as designed. This also means that
shareable hard disks cannot have other hard disks linked to them at all. They behave
almost like writethrough hard disks, except that shareable hard disks can be attached to
several virtual machines which are running, allowing concurrent accesses. You need special
cluster software running in the virtual machines to make use of such disks.
Note that the same hard disk, regardless of its type, may be attached to more than one virtual
machine at a time. In this case, the machine that is started first gains exclusive access to the hard
disk and attempts to start other machines having this hard disk attached will fail until the first
machine is powered down.
Detaching hard disks is performed in a deferred fashion. This means that the given hard disk
remains associated with the given machine after a successful IMachine::detachDevice() call until
IMachine::saveSettings() is called to save all changes to machine settings to disk. This deferring
is necessary to guarantee that the hard disk configuration may be restored at any time by a call
to IMachine::discardSettings() before the settings are saved (committed).
246
5 Classes (interfaces)
Note that if IMachine::discardSettings() is called after indirectly attaching some hard disks
to the machine but before a call to IMachine::saveSettings() is made, it will implicitly delete
all differencing hard disks implicitly created by IMachine::attachDevice() for these indirect at-
tachments. Such implicitly created hard disks will also be immediately deleted when detached
explicitly using the IMachine::detachDevice() call if it is made before IMachine::saveSettings().
This implicit deletion is safe because newly created differencing hard disks do not contain any
user data.
However, keep in mind that detaching differencing hard disks that were implicitly created by
IMachine::attachDevice() before the last IMachine::saveSettings() call will not implicitly delete
them as they may already contain some data (for example, as a result of virtual machine exe-
cution). If these hard disks are no more necessary, the caller can always delete them explicitly
using IMedium::deleteStorage() after they are actually de-associated from this machine by the
IMachine::saveSettings() call.
Smart Attachment
When normal base or immutable hard disks are indirectly attached to a virtual machine then
some additional steps are performed to make sure the virtual machine will have the most recent
view of the hard disk being attached. These steps include walking through the machines
snapshots starting from the current one and going through ancestors up to the first snapshot.
Hard disks attached to the virtual machine in all of the encountered snapshots are checked
whether they are descendants of the given normal base or immutable hard disk. The first found
child (which is the differencing hard disk) will be used instead of the normal base or immutable
hard disk as a parent for creating a new differencing hard disk that will be actually attached to
the machine. And only if no descendants are found or if the virtual machine does not have any
snapshots then the normal base or immutable hard disk will be used itself as a parent for this
differencing hard disk.
It is easier to explain what smart attachment does using the following example:
NOT
...
CurState (D3->B.vdi)
The first column is the virtual machine configuration before the base hard disk B.vdi is at-
tached, the second column shows the machine after this hard disk is attached. Constructs like
D1->B.vdi and similar mean that the hard disk that is actually attached to the machine is a
differencing hard disk, D1.vdi, which is linked to (based on) another hard disk, B.vdi.
As we can see from the example, the hard disk B.vdi was detached from the machine before
taking Snapshot 4. Later, after Snapshot 4 was taken, the user decides to attach B.vdi again.
B.vdi has dependent child hard disks (D1.vdi, D2.vdi), therefore it cannot be attached directly
and needs an indirect attachment (i.e. implicit creation of a new differencing hard disk). Due
to the smart attachment procedure, the new differencing hard disk (D3.vdi) will be based on
D2.vdi, not on B.vdi itself, since D2.vdi is the most recent view of B.vdi existing for this
snapshot branch of the given virtual machine.
Note that if there is more than one descendant hard disk of the given base hard disk found in
a snapshot, and there is an exact device, channel and bus match, then this exact match will be
used. Otherwise, the youngest descendant will be picked up.
There is one more important aspect of the smart attachment procedure which is not related
to snapshots at all. Before walking through the snapshots as described above, the backup
247
5 Classes (interfaces)
copy of the current list of hard disk attachment is searched for descendants. This backup
copy is created when the hard disk configuration is changed for the first time after the last
IMachine::saveSettings() call and used by IMachine::discardSettings() to undo the recent hard
disk changes. When such a descendant is found in this backup copy, it will be simply re-attached
back, without creating a new differencing hard disk for it. This optimization is necessary to make
it possible to re-attach the base or immutable hard disk to a different bus, channel or device slot
without losing the contents of the differencing hard disk actually attached to the machine in
place of it.
5.90.1 Attributes
5.90.1.1 medium (read-only)
IMedium IMediumAttachment::medium
Medium object associated with this attachment; it can be null for removable devices.
Name of the storage controller of this attachment; this refers to one of the controllers in
IMachine::storageControllers[] by name.
Port number of this attachment. See IMachine::attachDevice() for the meaning of this value
for the different controller types.
Device slot number of this attachment. See IMachine::attachDevice() for the meaning of this
value for the different controller types.
248
5 Classes (interfaces)
Signals that the removable medium has been ejected. This is not necessarily equivalent to
having a null medium association.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.91.1 Attributes
5.91.1.1 mediumAttachment (read-only)
IMediumAttachment IMediumChangedEvent::mediumAttachment
249
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
The configuration of the given medium was changed (location, properties, child/parent or
anything else).
5.92.1 Attributes
5.92.1.1 medium (read-only)
IMedium IMediumConfigChangedEvent::medium
5.93 IMediumFormat
The IMediumFormat interface represents a medium format.
Each medium format has an associated backend which is used to handle media stored in this
format. This interface provides information about the properties of the associated backend.
Each medium format is identified by a string represented by the id attribute. This string is
used in calls like IVirtualBox::createMedium() to specify the desired format.
The list of all supported medium formats can be obtained using ISystemProperties::mediumFormats[].
See also: IMedium
5.93.1 Attributes
5.93.1.1 id (read-only)
wstring IMediumFormat::id
"VDI"
"vdi"
"VdI"
250
5 Classes (interfaces)
5.93.2 describeFileExtensions
void IMediumFormat::describeFileExtensions(
[out] wstring extensions[],
[out] DeviceType types[])
5.93.3 describeProperties
void IMediumFormat::describeProperties(
[out] wstring names[],
[out] wstring descriptions[],
[out] DataType types[],
[out] unsigned long flags[],
[out] wstring defaults[])
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
The given medium was registered or unregistered within this VirtualBox installation.
251
5 Classes (interfaces)
5.94.1 Attributes
5.94.1.1 mediumId (read-only)
uuid IMediumRegisteredEvent::mediumId
5.95 IMouse
The IMouse interface represents the virtual machines mouse. Used in IConsole::mouse.
Through this interface, the virtual machines virtual mouse can be controlled.
5.95.1 Attributes
5.95.1.1 absoluteSupported (read-only)
boolean IMouse::absoluteSupported
252
5 Classes (interfaces)
Whether the guest OS can currently switch to drawing its own mouse cursor on demand.
5.95.2 putEventMultiTouch
void IMouse::putEventMultiTouch(
[in] long count,
[in] long long contacts[],
[in] unsigned long scanTime)
Sends a multi-touch pointer event. The coordinates are expressed in pixels and start from
[1,1] which corresponds to the top left corner of the virtual display.
253
5 Classes (interfaces)
Note: The guest may not understand or may choose to ignore this event.
5.95.3 putEventMultiTouchString
void IMouse::putEventMultiTouchString(
[in] long count,
[in] wstring contacts,
[in] unsigned long scanTime)
5.95.4 putMouseEvent
void IMouse::putMouseEvent(
[in] long dx,
[in] long dy,
[in] long dz,
[in] long dw,
[in] long buttonState)
dx Amount of pixels the mouse should move to the right. Negative values move the mouse to
the left.
dy Amount of pixels the mouse should move downwards. Negative values move the mouse
upwards.
dz Amount of mouse wheel moves. Positive values describe clockwise wheel rotations, negative
values describe counterclockwise rotations.
dw Amount of horizontal mouse wheel moves. Positive values describe a movement to the left,
negative values describe a movement to the right.
buttonState The current state of mouse buttons. Every bit represents a mouse button as follows:
Bit 0 (0x01)left mouse buttonBit 1 (0x02)right mouse buttonBit 2 (0x04)middle mouse
button A value of 1 means the corresponding button is pressed. otherwise it is released.
Initiates a mouse event using relative pointer movements along x and y axis.
If this method fails, the following error codes may be reported:
254
5 Classes (interfaces)
5.95.5 putMouseEventAbsolute
void IMouse::putMouseEventAbsolute(
[in] long x,
[in] long y,
[in] long dz,
[in] long dw,
[in] long buttonState)
Positions the mouse pointer using absolute x and y coordinates. These coordinates are ex-
pressed in pixels and start from [1,1] which corresponds to the top left corner of the virtual
display.
Note: This method will have effect only if absolute mouse positioning is supported by
the guest OS.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when the mouse capabilities reported by the guest have changed. The new capa-
bilities are passed.
5.96.1 Attributes
5.96.1.1 supportsAbsolute (read-only)
boolean IMouseCapabilityChangedEvent::supportsAbsolute
255
5 Classes (interfaces)
5.97 IMousePointerShape
The guest mouse pointer description.
5.97.1 Attributes
5.97.1.1 visible (read-only)
boolean IMousePointerShape::visible
256
5 Classes (interfaces)
Shape bitmaps.
The shape buffer contains a 1bpp (bits per pixel) AND mask followed by a 32bpp XOR (color)
mask.
For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb).
For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values.
An AND mask is provided for pointers with alpha channel, so if the client does not support
alpha, the pointer could be displayed as a normal color pointer.
The AND mask is a 1bpp bitmap with byte aligned scanlines. The size of the AND mask
therefore is cbAnd = (width + 7) / 8 * height. The padding bits at the end of each scanline
are undefined.
The XOR mask follows the AND mask on the next 4-byte aligned offset: uint8_t *pu8Xor
= pu8And + (cbAnd + 3) & ~3. Bytes in the gap between the AND and the XOR mask are
undefined. The XOR mask scanlines have no gap between them and the size of the XOR mask is:
cbXor = width * 4 * height.
Note: If shape size is 0, then the shape is not known or did not change. This can
happen if only the pointer visibility is changed.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when the guest mouse pointer shape has changed. The new shape data is given.
5.98.1 Attributes
5.98.1.1 visible (read-only)
boolean IMousePointerShapeChangedEvent::visible
257
5 Classes (interfaces)
5.99 INATEngine
Interface for managing a NAT engine which is used with a virtual machine. This allows
for changing NAT behavior such as port-forwarding rules. This interface is used in the
INetworkAdapter::NATEngine attribute.
5.99.1 Attributes
5.99.1.1 network (read/write)
wstring INATEngine::network
The network attribute of the NAT engine (the same value is used with built-in DHCP server to
fill corresponding fields of DHCP leases).
258
5 Classes (interfaces)
TFTP prefix attribute which is used with the built-in DHCP server to fill the corresponding
fields of DHCP leases.
TFTP boot file attribute which is used with the built-in DHCP server to fill the corresponding
fields of DHCP leases.
TFTP server attribute which is used with the built-in DHCP server to fill the corresponding
fields of DHCP leases.
Whether the DHCP server should pass the DNS domain used by the host.
Whether the DHCP server (and the DNS traffic by NAT) should pass the address of the DNS
proxy and process traffic using DNS servers registered on the host.
Whether the DHCP server (and the DNS traffic by NAT) should pass the address of the DNS
proxy and process traffic using the host resolver mechanism.
259
5 Classes (interfaces)
5.99.2 addRedirect
void INATEngine::addRedirect(
[in] wstring name,
[in] NATProtocol proto,
[in] wstring hostIP,
[in] unsigned short hostPort,
[in] wstring guestIP,
[in] unsigned short guestPort)
name The name of the rule. An empty name is acceptable, in which case the NAT engine auto-
generates one using the other parameters.
proto Protocol handled with the rule.
hostIP IP of the host interface to which the rule should apply. An empty ip address is acceptable,
in which case the NAT engine binds the handling socket to any interface.
5.99.3 getNetworkSettings
void INATEngine::getNetworkSettings(
[out] unsigned long mtu,
[out] unsigned long sockSnd,
[out] unsigned long sockRcv,
[out] unsigned long TcpWndSnd,
[out] unsigned long TcpWndRcv)
mtu
sockSnd
sockRcv
TcpWndSnd
TcpWndRcv
Returns network configuration of NAT engine. See setNetworkSettings() for parameter de-
scriptions.
260
5 Classes (interfaces)
5.99.4 removeRedirect
void INATEngine::removeRedirect(
[in] wstring name)
5.99.5 setNetworkSettings
void INATEngine::setNetworkSettings(
[in] unsigned long mtu,
[in] unsigned long sockSnd,
[in] unsigned long sockRcv,
[in] unsigned long TcpWndSnd,
[in] unsigned long TcpWndRcv)
sockRcv Capacity of the socket receive buffer in bytes when creating a new socket.
TcpWndSnd Initial size of the NAT engines sending TCP window in bytes when establishing a
new TCP connection.
TcpWndRcv Initial size of the NAT engines receiving TCP window in bytes when establishing
a new TCP connection.
5.100 INATNetwork
5.100.1 Attributes
5.100.1.1 networkName (read/write)
wstring INATNetwork::networkName
TBD: the idea, technically we can start any number of the NAT networks, but we should expect
that at some point we will get collisions because of port-forwanding rules. so perhaps we should
support only single instance of NAT network.
This is CIDR IPv4 string. Specifying it user defines IPv4 addresses of gateway (low address +
1) and DHCP server (= low address + 2). Note: If there are defined IPv4 port-forward rules
update of network will be ignored (because new assignment could break existing rules).
261
5 Classes (interfaces)
This attribute is read-only. Its recalculated on changing network attribute (low address of
network + 1).
This a CIDR IPv6 defining prefix for link-local addresses autoconfiguration within network.
Note: ignored if attribute IPv6Enabled is false.
Offset in ipv6 network from network id for address mapped into loopback6 interface of the
host.
262
5 Classes (interfaces)
5.100.2 addLocalMapping
void INATNetwork::addLocalMapping(
[in] wstring hostid,
[in] long offset)
hostid
offset
5.100.3 addPortForwardRule
void INATNetwork::addPortForwardRule(
[in] boolean isIpv6,
[in] wstring ruleName,
[in] NATProtocol proto,
[in] wstring hostIP,
[in] unsigned short hostPort,
[in] wstring guestIP,
[in] unsigned short guestPort)
isIpv6
ruleName
guestIP The IP address of the guest which the NAT engine will forward matching packets to.
An empty IP address is not acceptable.
guestPort The port number to forward.
5.100.4 removePortForwardRule
void INATNetwork::removePortForwardRule(
[in] boolean iSipv6,
[in] wstring ruleName)
iSipv6
ruleName
5.100.5 start
void INATNetwork::start(
[in] wstring trunkType)
5.100.6 stop
void INATNetwork::stop()
263
5 Classes (interfaces)
Note: This interface extends INATNetworkChangedEvent and therefore supports all its
methods and attributes as well.
5.101.1 Attributes
5.101.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean INATNetworkAlterEvent::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.102.1 Attributes
5.102.1.1 networkName (read-only)
wstring INATNetworkChangedEvent::networkName
5.103 INATNetworkCreationDeletionEvent
(INATNetworkAlterEvent)
Note: This interface extends INATNetworkAlterEvent and therefore supports all its
methods and attributes as well.
5.103.1 Attributes
5.103.1.1 creationEvent (read-only)
boolean INATNetworkCreationDeletionEvent::creationEvent
5.104 INATNetworkPortForwardEvent
(INATNetworkAlterEvent)
Note: This interface extends INATNetworkAlterEvent and therefore supports all its
methods and attributes as well.
5.104.1 Attributes
5.104.1.1 create (read-only)
boolean INATNetworkPortForwardEvent::create
264
5 Classes (interfaces)
Note: This interface extends INATNetworkAlterEvent and therefore supports all its
methods and attributes as well.
5.105.1 Attributes
5.105.1.1 enabled (read-only)
boolean INATNetworkSettingEvent::enabled
265
5 Classes (interfaces)
5.106 INATNetworkStartStopEvent
(INATNetworkChangedEvent)
Note: This interface extends INATNetworkChangedEvent and therefore supports all its
methods and attributes as well.
5.106.1 Attributes
5.106.1.1 startEvent (read-only)
boolean INATNetworkStartStopEvent::startEvent
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
5.107.1 Attributes
5.107.1.1 slot (read-only)
unsigned long INATRedirectEvent::slot
266
5 Classes (interfaces)
5.108 INetworkAdapter
Represents a virtual network adapter that is attached to a virtual machine. Each virtual machine
has a fixed number of network adapter slots with one instance of this attached to each of them.
Call IMachine::getNetworkAdapter() to get the network adapter that is attached to a given slot
in a given machine.
Each network adapter can be in one of five attachment modes, which are represented by the
NetworkAttachmentType enumeration; see the attachmentType attribute.
5.108.1 Attributes
5.108.1.1 adapterType (read/write)
NetworkAdapterType INetworkAdapter::adapterType
Type of the virtual network adapter. Depending on this value, VirtualBox will provide a differ-
ent virtual network hardware to the guest.
Slot number this adapter is plugged into. Corresponds to the value you pass to
IMachine::getNetworkAdapter() to obtain this instance.
Flag whether the network adapter is present in the guest system. If disabled, the virtual
guest hardware will not contain this network adapter. Can only be changed when the VM is not
running.
Ethernet MAC address of the adapter, 12 hexadecimal characters. When setting it to null or
an empty string for an enabled adapter, VirtualBox will generate a unique MAC address. Disabled
adapters can have an empty MAC address.
267
5 Classes (interfaces)
Name of the driver to use for the Generic network attachment type.
Flag whether the adapter reports the cable as connected or not. It can be used to report offline
situations to a VM.
The promiscuous mode policy of the network adapter when attached to an internal network,
host only network or a bridge.
268
5 Classes (interfaces)
Flag whether network traffic from/to the network card should be traced. Can only be toggled
when the VM is turned off.
Filename where a network trace will be stored. If not set, VBox-pid.pcap will be used.
Points to the NAT engine which handles the network address translation for this interface. This
is active only when the interface actually uses NAT.
Network boot priority of the adapter. Priority 1 is highest. If not set, the priority is considered
to be at the lowest possible setting.
5.108.2 getProperties
wstring[] INetworkAdapter::getProperties(
[in] wstring names,
[out] wstring returnNames[])
Note: Currently the value of this argument is ignored and the method always returns
all existing properties.
The method returns two arrays, the array of property names corresponding to the names argu-
ment and the current values of these properties. Both arrays have the same number of elements
with each element at the given index in the first array corresponds to an element at the same
index in the second array.
269
5 Classes (interfaces)
5.108.3 getProperty
wstring INetworkAdapter::getProperty(
[in] wstring key)
Returns the value of the network attachment property with the given name.
If the requested data key does not exist, this function will succeed and return an empty string
in the value argument.
If this method fails, the following error codes may be reported:
5.108.4 setProperty
void INetworkAdapter::setProperty(
[in] wstring key,
[in] wstring value)
Sets the value of the network attachment property with the given name.
Setting the property value to null or an empty string is equivalent to deleting the existing
value.
If this method fails, the following error codes may be reported:
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a property of one of the virtual network adapters changes. Interested callees
should use INetworkAdapter methods and attributes to find out what has changed.
5.109.1 Attributes
5.109.1.1 networkAdapter (read-only)
INetworkAdapter INetworkAdapterChangedEvent::networkAdapter
5.110 IPCIAddress
Address on the PCI bus.
270
5 Classes (interfaces)
5.110.1 Attributes
5.110.1.1 bus (read/write)
short IPCIAddress::bus
Bus number.
Device number.
5.110.2 asLong
long IPCIAddress::asLong()
5.110.3 fromLong
void IPCIAddress::fromLong(
[in] long number)
number
5.111 IPCIDeviceAttachment
Note: With the web service, this interface is mapped to a structure. Attributes that
return this interface will not return an object, but a complete structure containing the
attributes listed below as structure members.
5.111.1 Attributes
5.111.1.1 name (read-only)
wstring IPCIDeviceAttachment::name
Device name.
271
5 Classes (interfaces)
5.112 IParallelPort
The IParallelPort interface represents the virtual parallel port device.
The virtual parallel port device acts like an ordinary parallel port inside the virtual machine.
This device communicates to the real parallel port hardware using the name of the parallel device
on the host computer specified in the #path attribute.
Each virtual parallel port device is assigned a base I/O address and an IRQ number that will be
reported to the guest operating system and used to operate the given parallel port from within
the virtual machine.
See also: IMachine::getParallelPort()
5.112.1 Attributes
5.112.1.1 slot (read-only)
unsigned long IParallelPort::slot
Slot number this parallel port is plugged into. Corresponds to the value you pass to
IMachine::getParallelPort() to obtain this instance.
Flag whether the parallel port is enabled. If disabled, the parallel port will not be reported to
the guest OS.
Host parallel device name. If this parallel port is enabled, setting a null or an empty string as
this attributes value will result in the parallel port behaving as if not connected to any device.
272
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a property of one of the virtual parallel ports changes. Interested callees
should use ISerialPort methods and attributes to find out what has changed.
5.113.1 Attributes
5.113.1.1 parallelPort (read-only)
IParallelPort IParallelPortChangedEvent::parallelPort
5.114 IPerformanceCollector
The IPerformanceCollector interface represents a service that collects and stores performance
metrics data.
Performance metrics are associated with objects of interfaces like IHost and IMachine. Each
object has a distinct set of performance metrics. The set can be obtained with getMetrics().
Metric data is collected at the specified intervals and is retained internally. The interval and
the number of retained samples can be set with setupMetrics(). Both metric data and collection
settings are not persistent, they are discarded as soon as VBoxSVC process terminates. Moreover,
metric settings and data associated with a particular VM only exist while VM is running. They
disappear as soon as VM shuts down. It is not possible to set up metrics for machines that are
powered off. One needs to start VM first, then set up metric collection parameters.
Metrics are organized hierarchically, with each level separated by a slash (/) character. Gener-
ally, the scheme for metric names is like this:
Category/Metric[/SubMetric][:aggregation]
Category/Metric together form the base metric name. A base metric is the smallest unit for
which a sampling interval and the number of retained samples can be set. Only base metrics
can be enabled and disabled. All sub-metrics are collected when their base metric is collected.
Collected values for any set of sub-metrics can be queried with queryMetricsData().
For example CPU/Load/User:avg metric name stands for the CPU category, Load metric,
User submetric, average aggregate. An aggregate function is computed over all retained data.
Valid aggregate functions are:
avg average
min minimum
max maximum
When setting up metric parameters, querying metric data, enabling or disabling metrics wild-
cards can be used in metric names to specify a subset of metrics. For example, to select all
CPU-related metrics use CPU/*, all averages can be queried using *:avg and so on. To query
metric values without aggregates *: can be used.
The valid names for base metrics are:
CPU/Load
CPU/MHz
273
5 Classes (interfaces)
RAM/Usage
RAM/VMM
The general sequence for collecting and retrieving the metrics is:
Obtain an instance of IPerformanceCollector with IVirtualBox::performanceCollector
Allocate and populate an array with references to objects the metrics will be collected for.
Use references to IHost and IMachine objects.
Allocate and populate an array with base metric names the data will be collected for.
Call setupMetrics(). From now on the metric data will be collected and stored.
Wait for the data to get collected.
Allocate and populate an array with references to objects the metric values will be queried
for. You can re-use the object array used for setting base metrics.
Allocate and populate an array with metric names the data will be collected for. Note that
metric names differ from base metric names.
Call queryMetricsData(). The data that have been collected so far are returned. Note that
the values are still retained internally and data collection continues.
For an example of usage refer to the following files in VirtualBox SDK:
Java: bindings/webservice/java/jax-ws/samples/metrictest.java
Python: bindings/xpcom/python/sample/shellcommon.py
5.114.1 Attributes
5.114.1.1 metricNames (read-only)
wstring IPerformanceCollector::metricNames[]
5.114.2 disableMetrics
IPerformanceMetric[] IPerformanceCollector::disableMetrics(
[in] wstring metricNames[],
[in] $unknown objects[])
metricNames Metric name filter. Comma-separated list of metrics with wildcard support.
objects Set of objects to disable metrics for.
Turns off collecting specified base metrics. Returns an array of IPerformanceMetric describing
the metrics have been affected.
Note: Null or empty metric name array means all metrics. Null or empty object array
means all existing objects. If metric name array contains a single element and object
array contains many, the single metric name array element is applied to each object
array element to form metric/object pairs.
274
5 Classes (interfaces)
5.114.3 enableMetrics
IPerformanceMetric[] IPerformanceCollector::enableMetrics(
[in] wstring metricNames[],
[in] $unknown objects[])
metricNames Metric name filter. Comma-separated list of metrics with wildcard support.
objects Set of objects to enable metrics for.
Note: Null or empty metric name array means all metrics. Null or empty object array
means all existing objects. If metric name array contains a single element and object
array contains many, the single metric name array element is applied to each object
array element to form metric/object pairs.
5.114.4 getMetrics
IPerformanceMetric[] IPerformanceCollector::getMetrics(
[in] wstring metricNames[],
[in] $unknown objects[])
metricNames Metric name filter. Currently, only a comma-separated list of metrics is supported.
objects Set of objects to return metric parameters for.
Note: Null metrics array means all metrics. Null object array means all existing
objects.
5.114.5 queryMetricsData
long[] IPerformanceCollector::queryMetricsData(
[in] wstring metricNames[],
[in] $unknown objects[],
[out] wstring returnMetricNames[],
[out] $unknown returnObjects[],
[out] wstring returnUnits[],
[out] unsigned long returnScales[],
[out] unsigned long returnSequenceNumbers[],
[out] unsigned long returnDataIndices[],
[out] unsigned long returnDataLengths[])
metricNames Metric name filter. Comma-separated list of metrics with wildcard support.
objects Set of objects to query metrics for.
returnMetricNames Names of metrics returned in returnData.
returnObjects Objects associated with metrics returned in returnData.
returnUnits Units of measurement for each returned metric.
275
5 Classes (interfaces)
returnScales Divisor that should be applied to return values in order to get floating
point values. For example: (double)returnData[returnDataIndices[0]+i] /
returnScales[0] will retrieve the floating point value of i-th sample of the first met-
ric.
returnSequenceNumbers Sequence numbers of the first elements of value sequences of par-
ticular metrics returned in returnData. For aggregate metrics it is the sequence number
of the sample the aggregate started calculation from.
returnDataIndices Indices of the first elements of value sequences of particular metrics re-
turned in returnData.
returnDataLengths Lengths of value sequences of particular metrics.
Note: Null or empty metric name array means all metrics. Null or empty object array
means all existing objects. If metric name array contains a single element and object
array contains many, the single metric name array element is applied to each object
array element to form metric/object pairs.
Note: Data collection continues behind the scenes after call to queryMetricsData.
The return data can be seen as the snapshot of the current state at the time of
queryMetricsData call. The internally kept metric values are not cleared by the
call. This allows querying different subsets of metrics or aggregates with subsequent
calls. If periodic querying is needed it is highly suggested to query the values with
interval*count period to avoid confusion. This way a completely new set of data
values will be provided by each query.
5.114.6 setupMetrics
IPerformanceMetric[] IPerformanceCollector::setupMetrics(
[in] wstring metricNames[],
[in] $unknown objects[],
[in] unsigned long period,
[in] unsigned long count)
metricNames Metric name filter. Comma-separated list of metrics with wildcard support.
276
5 Classes (interfaces)
Sets parameters of specified base metrics for a set of objects. Returns an array of
IPerformanceMetric describing the metrics have been affected.
Note: Null or empty metric name array means all metrics. Null or empty object array
means all existing objects. If metric name array contains a single element and object
array contains many, the single metric name array element is applied to each object
array element to form metric/object pairs.
5.115 IPerformanceMetric
The IPerformanceMetric interface represents parameters of the given performance metric.
5.115.1 Attributes
5.115.1.1 metricName (read-only)
wstring IPerformanceMetric::metricName
Number of recent samples retained by the performance collector for this metric.
When the collected sample count exceeds this number, older samples are discarded.
Unit of measurement.
277
5 Classes (interfaces)
5.116 IProcess
Abstract parent interface for processes handled by VirtualBox.
5.116.1 Attributes
5.116.1.1 arguments (read-only)
wstring IProcess::arguments[]
The exit code. Only available when the process has been terminated normally.
278
5 Classes (interfaces)
5.116.2 read
octet[] IProcess::read(
[in] unsigned long handle,
[in] unsigned long toRead,
[in] unsigned long timeoutMS)
5.116.3 terminate
void IProcess::terminate()
Note: It can take up to 30 seconds to get a guest process killed. In case a guest process
could not be killed an appropriate error is returned.
5.116.4 waitFor
ProcessWaitResult IProcess::waitFor(
[in] unsigned long waitFor,
[in] unsigned long timeoutMS)
waitFor Specifies what to wait for; see ProcessWaitForFlag for more information.
timeoutMS Timeout (in ms) to wait for the operation to complete. Pass 0 for an infinite timeout.
5.116.5 waitForArray
ProcessWaitResult IProcess::waitForArray(
[in] ProcessWaitForFlag waitFor[],
[in] unsigned long timeoutMS)
waitFor Specifies what to wait for; see ProcessWaitForFlag for more information.
timeoutMS Timeout (in ms) to wait for the operation to complete. Pass 0 for an infinite timeout.
279
5 Classes (interfaces)
5.116.6 write
unsigned long IProcess::write(
[in] unsigned long handle,
[in] unsigned long flags,
[in] octet data[],
[in] unsigned long timeoutMS)
5.116.7 writeArray
unsigned long IProcess::writeArray(
[in] unsigned long handle,
[in] ProcessInputFlag flags[],
[in] octet data[],
[in] unsigned long timeoutMS)
5.117 IProgress
The IProgress interface is used to track and control asynchronous tasks within VirtualBox.
An instance of this is returned every time VirtualBox starts an asynchronous task (in other
words, a separate thread) which continues to run after a method call returns. For example,
IMachine::saveState(), which saves the state of a running virtual machine, can take a long time
to complete. To be able to display a progress bar, a user interface such as the VirtualBox graphical
user interface can use the IProgress object returned by that method.
Note that IProgress is a read-only interface in the sense that only the VirtualBox internals
behind the Main API can create and manipulate progress objects, whereas client code can only
use the IProgress object to monitor a tasks progress and, if cancelable is true, cancel the task by
calling cancel().
A task represented by IProgress consists of either one or several sub-operations that run se-
quentially, one by one (see operation and operationCount). Every operation is identified by a
number (starting from 0) and has a separate description.
You can find the individual percentage of completion of the current operation in
operationPercent and the percentage of completion of the task as a whole in percent.
Similarly, you can wait for the completion of a particular operation via waitForOperationCompletion()
or for the completion of the whole task via waitForCompletion().
280
5 Classes (interfaces)
5.117.1 Attributes
5.117.1.1 id (read-only)
uuid IProgress::id
ID of the task.
Current progress value of the task as a whole, in percent. This value depends on how many
operations are already complete. Returns 100 if completed is true.
Estimated remaining time until the task completes, in seconds. Returns 0 once the task has
completed; returns -1 if the remaining time cannot be computed, in particular if the current
progress is 0.
Even if a value is returned, the estimate will be unreliable for low progress values. It will
become more reliable as the task progresses; it is not recommended to display an ETA before at
least 20% of a task have completed.
281
5 Classes (interfaces)
Extended information about the unsuccessful result of the progress operation. May be null if
no extended information is available. Valid only if completed is true and resultCode indicates a
failure.
Number of sub-operations this task is divided into. Every task consists of at least one suboper-
ation.
When non-zero, this specifies the number of milliseconds after which the operation will auto-
matically be canceled. This can only be set on cancelable objects.
282
5 Classes (interfaces)
5.117.2 cancel
void IProgress::cancel()
5.117.3 setCurrentOperationProgress
void IProgress::setCurrentOperationProgress(
[in] unsigned long percent)
percent
5.117.4 setNextOperation
void IProgress::setNextOperation(
[in] wstring nextOperationDescription,
[in] unsigned long nextOperationsWeight)
nextOperationDescription
nextOperationsWeight
5.117.5 waitForAsyncProgressCompletion
void IProgress::waitForAsyncProgressCompletion(
[in] IProgress pProgressAsync)
Waits until the other task is completed (including all sub-operations) and forward all changes
from the other progress to this progress. This means sub-operation number, description, percent
and so on.
You have to take care on setting up at least the same count on sub-operations in this progress
object like there are in the other progress object.
If the other progress object supports cancel and this object gets any cancel request (when here
enabled as well), it will be forwarded to the other progress object.
If there is an error in the other progress, this error isnt automatically transfered to this progress
object. So you have to check any operation error within the other progress object, after this
method returns.
283
5 Classes (interfaces)
5.117.6 waitForCompletion
void IProgress::waitForCompletion(
[in] long timeout)
Waits until the task is done (including all sub-operations) with a given timeout in milliseconds;
specify -1 for an indefinite wait.
Note that the VirtualBox/XPCOM/COM/native event queues of the calling thread are not pro-
cessed while waiting. Neglecting event queues may have dire consequences (degrade perfor-
mance, resource hogs, deadlocks, etc.), this is specially so for the main thread on platforms
using XPCOM. Callers are advised wait for short periods and service their event queues between
calls, or to create a worker thread to do the waiting.
If this method fails, the following error codes may be reported:
5.117.7 waitForOperationCompletion
void IProgress::waitForOperationCompletion(
[in] unsigned long operation,
[in] long timeout)
operation Number of the operation to wait for. Must be less than operationCount.
timeout Maximum time in milliseconds to wait or -1 to wait indefinitely.
Waits until the given operation is done with a given timeout in milliseconds; specify -1 for an
indefinite wait.
See for event queue considerations.
If this method fails, the following error codes may be reported:
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.118.1 Attributes
5.118.1.1 generation (read-only)
unsigned long IReusableEvent::generation
5.118.2 reuse
void IReusableEvent::reuse()
Marks an event as reused, increments generation, fields shall no longer be considered valid.
284
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
fatal
non-fatal with retry
non-fatal warnings
Fatal errors are indicated by the fatal parameter set to true. In case of fatal errors, the virtual
machine execution is always paused before calling this notification, and the notification handler
is supposed either to immediately save the virtual machine state using IMachine::saveState() or
power it off using IConsole::powerDown(). Resuming the execution can lead to unpredictable
results.
Non-fatal errors and warnings are indicated by the fatal parameter set to false. If the virtual
machine is in the Paused state by the time the error notification is received, it means that the user
can try to resume the machine execution after attempting to solve the problem that caused the
error. In this case, the notification handler is supposed to show an appropriate message to the
user (depending on the value of the id parameter) that offers several actions such as Retry, Save
or Power Off. If the user wants to retry, the notification handler should continue the machine
execution using the IConsole::resume() call. If the machine execution is not Paused during this
notification, then it means this notification is a warning (for example, about a fatal condition that
can happen very soon); no immediate action is required from the user, the machine continues its
normal execution.
Note that in either case the notification handler must not perform any action directly on a
thread where this notification is called. Everything it is allowed to do is to post a message to
another thread that will then talk to the user and take the corresponding action.
Currently, the following error identifiers are known:
"HostMemoryLow"
"HostAudioNotResponding"
"VDIStorageFull"
"3DSupportIncompatibleAdditions"
5.119.1 Attributes
5.119.1.1 fatal (read-only)
boolean IRuntimeErrorEvent::fatal
5.119.1.2 id (read-only)
wstring IRuntimeErrorEvent::id
Error identifier.
285
5 Classes (interfaces)
5.120 ISerialPort
The ISerialPort interface represents the virtual serial port device.
The virtual serial port device acts like an ordinary serial port inside the virtual machine. This
device communicates to the real serial port hardware in one of two modes: host pipe or host
device.
In host pipe mode, the #path attribute specifies the path to the pipe on the host computer that
represents a serial port. The #server attribute determines if this pipe is created by the virtual
machine process at machine startup or it must already exist before starting machine execution.
In host device mode, the #path attribute specifies the name of the serial port device on the
host computer.
There is also a third communication mode: the disconnected mode. In this mode, the guest
OS running inside the virtual machine will be able to detect the serial port, but all port write
operations will be discarded and all port read operations will return no data.
See also: IMachine::getSerialPort()
5.120.1 Attributes
5.120.1.1 slot (read-only)
unsigned long ISerialPort::slot
Slot number this serial port is plugged into. Corresponds to the value you pass to
IMachine::getSerialPort() to obtain this instance.
Flag whether the serial port is enabled. If disabled, the serial port will not be reported to the
guest OS.
Note: Changing this attribute may fail if the conditions for path are not met.
286
5 Classes (interfaces)
Flag whether this serial port acts as a server (creates a new pipe on the host) or as a client
(uses the existing pipe). This attribute is used only when hostMode is PortMode_HostPipe or
PortMode_TCP.
Path to the serial ports pipe on the host when hostMode is PortMode_HostPipe, the host
serial device name when hostMode is PortMode_HostDevice or the TCP port (server) or host-
name:port (client) when hostMode is PortMode_TCP. For those cases, setting a null or empty
string as the attributes value is an error. Otherwise, the value of this property is ignored.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a property of one of the virtual serial ports changes. Interested callees
should use ISerialPort methods and attributes to find out what has changed.
5.121.1 Attributes
5.121.1.1 serialPort (read-only)
ISerialPort ISerialPortChangedEvent::serialPort
5.122 ISession
The ISession interface represents a client process and allows for locking virtual machines (repre-
sented by IMachine objects) to prevent conflicting changes to the machine.
Any caller wishing to manipulate a virtual machine needs to create a session object first, which
lives in its own process space. Such session objects are then associated with IMachine objects
living in the VirtualBox server process to coordinate such changes.
There are two typical scenarios in which sessions are used:
To alter machine settings or control a running virtual machine, one needs to lock a machine
for a given session (client process) by calling IMachine::lockMachine().
Whereas multiple sessions may control a running virtual machine, only one process can
obtain a write lock on the machine to prevent conflicting changes. A write lock is also
needed if a process wants to actually run a virtual machine in its own context, such as the
VirtualBox GUI or VBoxHeadless front-ends. They must also lock a machine for their own
sessions before they are allowed to power up the virtual machine.
As a result, no machine settings can be altered while another process is already using
it, either because that process is modifying machine settings or because the machine is
running.
287
5 Classes (interfaces)
To start a VM using one of the existing VirtualBox front-ends (e.g. the VirtualBox GUI or
VBoxHeadless), one would use IMachine::launchVMProcess(), which also takes a session
object as its first parameter. This session then identifies the caller and lets the caller control
the started machine (for example, pause machine execution or power it down) as well as
be notified about machine execution state changes.
How sessions objects are created in a client process depends on whether you use the Main API
via COM or via the webservice:
When using the COM API directly, an object of the Session class from the VirtualBox type
library needs to be created. In regular COM C++ client code, this can be done by calling
createLocalObject(), a standard COM API. This object will then act as a local session
object in further calls to open a session.
In the webservice, the session manager (IWebsessionManager) instead creates a session ob-
ject automatically whenever IWebsessionManager::logon() is called. A managed object ref-
erence to that session object can be retrieved by calling IWebsessionManager::getSessionObject().
5.122.1 Attributes
5.122.1.1 state (read-only)
SessionState ISession::state
Type of this session. The value of this attribute is valid only if the session currently has a
machine locked (i.e. its state is Locked), otherwise an error will be returned.
Name of this session. Important only for VM sessions, otherwise it it will be remembered, but
not used for anything significant (and can be left at the empty string which is the default). The
value can only be changed when the session state is SessionState_Unlocked. Make sure that you
use a descriptive name which does not conflict with the VM process session names: GUI/Qt,
GUI/SDL and headless.
Console object associated with this session. Only sessions which locked the machine for a VM
process have a non-null console.
288
5 Classes (interfaces)
5.122.2 unlockMachine
void ISession::unlockMachine()
Unlocks a machine that was previously locked for the current session.
Calling this method is required every time a machine has been locked for a particular session
using the IMachine::launchVMProcess() or IMachine::lockMachine() calls. Otherwise the state
of the machine will be set to Aborted on the server, and changes made to the machine settings
will be lost.
Generally, it is recommended to unlock all machines explicitly before terminating the applica-
tion (regardless of the reason for the termination).
Note: Do not expect the session state (state to return to Unlocked immediately after
you invoke this method, particularly if you have started a new VM process. The session
state will automatically return to Unlocked once the VM is no longer executing, which
can of course take a very long time.
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
The state of the session for the given machine was changed. See also: IMachine::sessionState
5.123.1 Attributes
5.123.1.1 state (read-only)
SessionState ISessionStateChangedEvent::state
5.124 ISharedFolder
Note: With the web service, this interface is mapped to a structure. Attributes that
return this interface will not return an object, but a complete structure containing the
attributes listed below as structure members.
The ISharedFolder interface represents a folder in the host computers file system accessible
from the guest OS running inside a virtual machine using an associated logical name.
There are three types of shared folders:
289
5 Classes (interfaces)
Logical names of shared folders must be unique within the given scope (global, permanent or
transient). However, they do not need to be unique across scopes. In this case, the definition of
the shared folder in a more specific scope takes precedence over definitions in all other scopes.
The order of precedence is (more specific to more general):
1. Transient definitions
2. Permanent definitions
3. Global definitions
For example, if MyMachine has a shared folder named C_DRIVE (that points to C:\\), then
creating a transient shared folder named C_DRIVE (that points to C:\\\\WINDOWS) will change
the definition of C_DRIVE in the guest OS so that \\\\VBOXSVR\\C_DRIVE will give access to
C:\\WINDOWS instead of C:\\ on the host PC. Removing the transient shared folder C_DRIVE
will restore the previous (permanent) definition of C_DRIVE that points to C:\\ if it still exists.
Note that permanent and transient shared folders of different machines are in different name
spaces, so they dont overlap and dont need to have unique logical names.
Note: Global shared folders are not implemented in the current version of the product.
5.124.1 Attributes
5.124.1.1 name (read-only)
wstring ISharedFolder::name
Whether the folder defined by the host path is currently accessible or not. For example, the
folder can be inaccessible if it is placed on the network share that is not available by the time
this property is read.
290
5 Classes (interfaces)
Text message that represents the result of the last accessibility check.
Accessibility checks are performed each time the accessible attribute is read. An empty string
is returned if the last accessibility check was successful. A non-empty string indicates a failure
and should normally describe a reason of the failure (for example, a file read error).
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a shared folder is added or removed. The scope argument defines
one of three scopes: global shared folders (Global), permanent shared folders of the machine
(Machine) or transient shared folders of the machine (Session). Interested callees should use
query the corresponding collections to find out what has changed.
5.125.1 Attributes
5.125.1.1 scope (read-only)
Scope ISharedFolderChangedEvent::scope
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
291
5 Classes (interfaces)
5.126.1 Attributes
5.126.1.1 winId (read/write)
long long IShowWindowEvent::winId
Platform-dependent identifier of the top-level VM console window, or zero if this method has
performed all actions necessary to implement the show window semantics for the given platform
and/or this VirtualBox front-end.
5.127 ISnapshot
The ISnapshot interface represents a snapshot of the virtual machine.
Together with the differencing media that are created when a snapshot is taken, a machine
can be brought back to the exact state it was in when the snapshot was taken.
The ISnapshot interface has no methods, only attributes; snapshots are controlled through
methods of the IMachine interface which also manage the media associated with the snapshot.
The following operations exist:
Each snapshot contains a copy of virtual machines settings (hardware configuration etc.). This
copy is contained in an immutable (read-only) instance of IMachine which is available from the
snapshots machine attribute. When restoring the snapshot, these settings are copied back to the
original machine.
In addition, if the machine was running when the snapshot was taken (IMachine::state is
Running), the current VM state is saved in the snapshot (similarly to what happens when a VMs
292
5 Classes (interfaces)
state is saved). The snapshot is then said to be online because when restoring it, the VM will be
running.
If the machine was in Saved saved, the snapshot receives a copy of the execution state file
(IMachine::stateFilePath).
Otherwise, if the machine was not running (PoweredOff or Aborted), the snapshot is offline; it
then contains a so-called zero execution state, representing a machine that is powered off.
5.127.1 Attributes
5.127.1.1 id (read-only)
uuid ISnapshot::id
Virtual machine this snapshot is taken on. This object stores all settings the machine had when
taking this snapshot.
Note: The returned machine object is immutable, i.e. no any settings can be changed.
293
5 Classes (interfaces)
Parent snapshot (a snapshot this one is based on), or null if the snapshot has no parent (i.e.
is the first snapshot).
Child snapshots (all snapshots having this one as a parent). By inspecting this attribute starting
with a machines root snapshot (which can be obtained by calling IMachine::findSnapshot() with
a null UUID), a machines snapshots tree can be iterated over.
5.127.2 getChildrenCount
unsigned long ISnapshot::getChildrenCount()
Note: This interface extends ISnapshotEvent and therefore supports all its methods
and attributes as well.
Snapshot properties (name and/or description) have been changed. See also: ISnapshot
5.128.1 Attributes
5.128.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean ISnapshotChangedEvent::midlDoesNotLikeEmptyInterfaces
Note: This interface extends ISnapshotEvent and therefore supports all its methods
and attributes as well.
Note: This notification is delivered after the snapshot object has been uninitialized on
the server (so that any attempt to call its methods will return an error).
5.129.1 Attributes
5.129.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean ISnapshotDeletedEvent::midlDoesNotLikeEmptyInterfaces
294
5 Classes (interfaces)
Note: This interface extends IMachineEvent and therefore supports all its methods and
attributes as well.
5.130.1 Attributes
5.130.1.1 snapshotId (read-only)
uuid ISnapshotEvent::snapshotId
Note: This interface extends ISnapshotEvent and therefore supports all its methods
and attributes as well.
Snapshot of the given machine has been restored. See also: ISnapshot
5.131.1 Attributes
5.131.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean ISnapshotRestoredEvent::midlDoesNotLikeEmptyInterfaces
Note: This interface extends ISnapshotEvent and therefore supports all its methods
and attributes as well.
A new snapshot of the machine has been taken. See also: ISnapshot
5.132.1 Attributes
5.132.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean ISnapshotTakenEvent::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when the execution state of the machine has changed. The new state is given.
295
5 Classes (interfaces)
5.133.1 Attributes
5.133.1.1 state (read-only)
MachineState IStateChangedEvent::state
5.134 IStorageController
Represents a storage controller that is attached to a virtual machine (IMachine). Just as drives
(hard disks, DVDs, FDs) are attached to storage controllers in a real computer, virtual drives
(represented by IMediumAttachment) are attached to virtual storage controllers, represented by
this interface.
As opposed to physical hardware, VirtualBox has a very generic concept of a storage controller,
and for purposes of the Main API, all virtual storage is attached to virtual machines via instances
of this interface. There are five types of such virtual storage controllers: IDE, SCSI, SATA, SAS
and Floppy (see bus). Depending on which of these four is used, certain sub-types may be
available and can be selected in controllerType.
Depending on these settings, the guest operating system might see significantly different vir-
tual hardware.
5.134.1 Attributes
5.134.1.1 name (read/write)
wstring IStorageController::name
296
5 Classes (interfaces)
The number of currently usable ports on the controller. The minimum and maximum number
of ports for one controller are stored in minPortCount and maxPortCount.
The bus type of the storage controller (IDE, SATA, SCSI, SAS or Floppy).
The exact variant of storage controller hardware presented to the guest. Depending on this
value, VirtualBox will provide a different virtual storage controller hardware to the guest. For
SATA, SAS and floppy controllers, only one variant is available, but for IDE and SCSI, there are
several.
For SCSI controllers, the default type is LsiLogic.
If true, the storage controller emulation will use a dedicated I/O thread, enable the host I/O
caches and use synchronous file APIs on the host. This was the only option in the API before
VirtualBox 3.2 and is still the default for IDE controllers.
If false, the host I/O cache will be disabled for image files attached to this storage controller.
Instead, the storage controller emulation will use asynchronous I/O APIs on the host. This makes
it possible to turn off the host I/O caches because the emulation can handle unaligned access to
the file. This should be used on OS X and Linux hosts if a high I/O load is expected or many
virtual machines are running at the same time to prevent I/O cache related hangs. This option
new with the API of VirtualBox 3.2 and is now the default for non-IDE storage controllers.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.135.1 Attributes
5.135.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IStorageControllerChangedEvent::midlDoesNotLikeEmptyInterfaces
297
5 Classes (interfaces)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.136.1 Attributes
5.136.1.1 storageDevice (read-only)
IMediumAttachment IStorageDeviceChangedEvent::storageDevice
5.137 ISystemProperties
The ISystemProperties interface represents global properties of the given VirtualBox installation.
These properties define limits and default values for various attributes and parameters. Most
of the properties are read-only, but some can be changed by a user.
5.137.1 Attributes
5.137.1.1 minGuestRAM (read-only)
unsigned long ISystemProperties::minGuestRAM
298
5 Classes (interfaces)
Maximum size of a virtual disk image in bytes. Informational value, does not reflect the limits
of any virtual disk image format.
Maximum device position in the boot order. This value corresponds to the total number of
devices a machine can boot from, to make it possible to include all possible devices to the boot
list. See also: IMachine::setBootOrder()
299
5 Classes (interfaces)
Full path to the default directory used to create new or open existing machines when a machine
settings file name contains no path.
Starting with VirtualBox 4.0, by default, this attribute contains the full path of folder named
VirtualBox VMs in the users home directory, which depends on the host platform.
When setting this attribute, a full path must be specified. Setting this property to null or an
empty string or the special value Machines (for compatibility reasons) will restore that default
value.
If the folder specified herein does not exist, it will be created automatically as needed.
See also: IVirtualBox::createMachine(), IVirtualBox::openMachine()
"VDI"
"vdi"
"VdI"
300
5 Classes (interfaces)
Note: Setting this property to null or empty string will restore the initial value.
Issue a warning if the free disk space is below (or in some disk intensive operation is expected
to go below) the given size in bytes.
Issue a warning if the free disk space is below (or in some disk intensive operation is expected
to go below) the given percentage.
Issue an error if the free disk space is below (or in some disk intensive operation is expected
to go below) the given size in bytes.
Issue an error if the free disk space is below (or in some disk intensive operation is expected
to go below) the given percentage.
301
5 Classes (interfaces)
Library that provides authentication for Remote Desktop clients. The library is used if a virtual
machines authentication type is set to external in the VM RemoteDisplay configuration.
The system library extension (.DLL or .so) must be omitted. A full path can be specified; if
not, then the library must reside on the systems default library path.
The default value of this property is "VBoxAuth". There is a library of that name in one of the
default VirtualBox library directories.
For details about VirtualBox authentication libraries and how to implement them, please refer
to the VirtualBox manual.
Note: Setting this property to null or empty string will restore the initial value.
Library that provides authentication for webservice clients. The library is used if a virtual
machines authentication type is set to external in the VM RemoteDisplay configuration and
will be called from within the IWebsessionManager::logon() implementation.
As opposed to VRDEAuthLibrary, there is no per-VM setting for this, as the webservice is a
global resource (if it is running). Only for this setting (for the webservice), setting this value to
a literal "null" string disables authentication, meaning that IWebsessionManager::logon() will
always succeed, no matter what user name and password are supplied.
The initial value of this property is "VBoxAuth", meaning that the webservice will use the
same authentication library that is used by default for VRDE (again, see VRDEAuthLibrary). The
format and calling convention of authentication libraries is the same for the webservice as it is
for VRDE.
Note: Setting this property to null or empty string will restore the initial value.
This value specifies how many old release log files are kept.
302
5 Classes (interfaces)
This value hold the default audio driver for the current system.
The path to the autostart database. Depending on the host this might be a filesystem path or
something else.
The path to the default Guest Additions ISO image. Can be empty if the location is not known
in this installation.
Supported bitmap formats which can be used with takeScreenShot and takeScreenShotToArray
methods.
5.137.2 getDefaultIoCacheSettingForStorageController
boolean ISystemProperties::getDefaultIoCacheSettingForStorageController(
[in] StorageControllerType controllerType)
Returns the default I/O cache setting for the given storage controller
5.137.3 getDeviceTypesForStorageBus
DeviceType[] ISystemProperties::getDeviceTypesForStorageBus(
[in] StorageBus bus)
Returns list of all the supported device types (DeviceType) for the given type of storage bus.
303
5 Classes (interfaces)
5.137.4 getMaxDevicesPerPortForStorageBus
unsigned long ISystemProperties::getMaxDevicesPerPortForStorageBus(
[in] StorageBus bus)
Returns the maximum number of devices which can be attached to a port for the given storage
bus.
5.137.5 getMaxInstancesOfStorageBus
unsigned long ISystemProperties::getMaxInstancesOfStorageBus(
[in] ChipsetType chipset,
[in] StorageBus bus)
Returns the maximum number of storage bus instances which can be configured for each VM.
This corresponds to the number of storage controllers one can have. Value may depend on
chipset type used.
5.137.6 getMaxInstancesOfUSBControllerType
unsigned long ISystemProperties::getMaxInstancesOfUSBControllerType(
[in] ChipsetType chipset,
[in] USBControllerType type)
Returns the maximum number of USB controller instances which can be configured for each
VM. This corresponds to the number of USB controllers one can have. Value may depend on
chipset type used.
5.137.7 getMaxNetworkAdapters
unsigned long ISystemProperties::getMaxNetworkAdapters(
[in] ChipsetType chipset)
Maximum total number of network adapters associated with every IMachine instance.
5.137.8 getMaxNetworkAdaptersOfType
unsigned long ISystemProperties::getMaxNetworkAdaptersOfType(
[in] ChipsetType chipset,
[in] NetworkAttachmentType type)
Maximum number of network adapters of a given attachment type, associated with every
IMachine instance.
304
5 Classes (interfaces)
5.137.9 getMaxPortCountForStorageBus
unsigned long ISystemProperties::getMaxPortCountForStorageBus(
[in] StorageBus bus)
Returns the maximum number of ports the given storage bus supports.
5.137.10 getMinPortCountForStorageBus
unsigned long ISystemProperties::getMinPortCountForStorageBus(
[in] StorageBus bus)
Returns the minimum number of ports the given storage bus supports.
5.137.11 getStorageControllerHotplugCapable
boolean ISystemProperties::getStorageControllerHotplugCapable(
[in] StorageControllerType controllerType)
5.138 IToken
The IToken interface represents a token passed to an API client, which triggers cleanup actions
when it is explicitly released by calling the abandon() method (preferred, as it is accurately
defined when the release happens), or when the object reference count drops to 0. The latter
way is implicitly used when an API client crashes, however the discovery that there was a crash
can take rather long, depending on the platform (COM needs 6 minutes). So better dont rely on
the crash behavior too much.
5.138.1 abandon
void IToken::abandon()
Releases this token. Cannot be undone in any way, and makes the token object unusable (even
the dummy() method will return an error), ready for releasing. It is a more defined way than
just letting the reference count drop to 0, because the latter (depending on the platform) can
trigger asynchronous cleanup activity.
5.138.2 dummy
void IToken::dummy()
Purely a NOOP. Useful when using proxy type API bindings (e.g. the webservice) which man-
age objects on behalf of the actual client, using an object reference expiration time based garbage
collector.
305
5 Classes (interfaces)
5.139 IUSBController
5.139.1 Attributes
5.139.1.1 name (read/write)
wstring IUSBController::name
USB standard version which the controller implements. This is a BCD which means that the
major version is in the high byte and minor version is in the low byte.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a property of the virtual USB controllers changes. Interested callees should
use IUSBController methods and attributes to find out what has changed.
5.140.1 Attributes
5.140.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IUSBControllerChangedEvent::midlDoesNotLikeEmptyInterfaces
5.141 IUSBDevice
The IUSBDevice interface represents a virtual USB device attached to the virtual machine.
A collection of objects implementing this interface is stored in the IConsole::USBDevices[]
attribute which lists all USB devices attached to a running virtual machines USB controller.
5.141.1 Attributes
5.141.1.1 id (read-only)
uuid IUSBDevice::id
Unique USB device ID. This ID is built from #vendorId, #productId, #revision and #serial-
Number.
306
5 Classes (interfaces)
Vendor ID.
Product ID.
Product revision number. This is a packed BCD represented as unsigned short. The high byte
is the integer part and the low byte is the decimal.
Manufacturer string.
Product string.
307
5 Classes (interfaces)
The major USB version of the host USB port the device is physically connected to - 1, 2 or 3.
For devices not connected to anything this will have the same value as the version attribute.
Whether the device is physically connected to a remote VRDE client or to a local host machine.
5.142 IUSBDeviceFilter
The IUSBDeviceFilter interface represents an USB device filter used to perform actions on a group
of USB devices.
This type of filters is used by running virtual machines to automatically capture selected USB
devices once they are physically attached to the host computer.
A USB device is matched to the given device filter if and only if all attributes of the device
match the corresponding attributes of the filter (that is, attributes are joined together using the
logical AND operation). On the other hand, all together, filters in the list of filters carry the
semantics of the logical OR operation. So if it is desirable to create a match like this vendor
id OR this product id, one needs to create two filters and specify any match (see below) for
unused attributes.
All filter attributes used for matching are strings. Each string is an expression representing a
set of values of the corresponding device attribute, that will match the given filter. Currently, the
following filtering expressions are supported:
Interval filters. Used to specify valid intervals for integer device attributes (Vendor ID,
Product ID and Revision). The format of the string is:
int:((m)|([m]-[n]))(,(m)|([m]-[n]))*
308
5 Classes (interfaces)
where m and n are integer numbers, either in octal (starting from 0), hexadecimal (starting
from 0x) or decimal (otherwise) form, so that m < n. If m is omitted before a dash (-), the
minimum possible integer is assumed; if n is omitted after a dash, the maximum possible
integer is assumed.
Boolean filters. Used to specify acceptable values for boolean device attributes. The format
of the string is:
true|false|yes|no|0|1
Exact match. Used to specify a single value for the given device attribute. Any string that
doesnt start with int: represents the exact match. String device attributes are compared
to this string including case of symbols. Integer attributes are first converted to a string
(see individual filter attributes) and then compared ignoring case.
Any match. Any value of the corresponding device attribute will match the given filter. An
empty or null string is used to construct this type of filtering expressions.
Note: On the Windows host platform, interval filters are not currently available. Also
all string filter attributes (manufacturer, product, serialNumber) are ignored, so they
behave as any match no matter what string expression is specified.
5.142.1 Attributes
5.142.1.1 name (read/write)
wstring IUSBDeviceFilter::name
Visible name for this filter. This name is used to visually distinguish one filter from another, so
it can neither be null nor an empty string.
Vendor ID filter. The string representation for the exact matching has the form XXXX, where X
is the hex digit (including leading zeroes).
Product ID filter. The string representation for the exact matching has the form XXXX, where X
is the hex digit (including leading zeroes).
309
5 Classes (interfaces)
Product revision number filter. The string representation for the exact matching has the form
IIFF, where I is the decimal digit of the integer part of the revision, and F is the decimal digit
of its fractional part (including leading and trailing zeros). Note that for interval filters, its best
to use the hexadecimal form, because the revision is stored as a 16 bit packed BCD value; so the
expression int:0x0100-0x0199 will match any revision from 1.0 to 1.99.
Manufacturer filter.
Product filter.
Note: This filter makes sense only for machine USB filters, i.e. it is ignored by IHos-
tUSBDeviceFilter objects.
This is an advanced option for hiding one or more USB interfaces from the guest. The value is
a bit mask where the bits that are set means the corresponding USB interface should be hidden,
masked off if you like. This feature only works on Linux hosts.
310
5 Classes (interfaces)
5.143 IUSBDeviceFilters
5.143.1 Attributes
5.143.1.1 deviceFilters (read-only)
IUSBDeviceFilter IUSBDeviceFilters::deviceFilters[]
5.143.2 createDeviceFilter
IUSBDeviceFilter IUSBDeviceFilters::createDeviceFilter(
[in] wstring name)
5.143.3 insertDeviceFilter
void IUSBDeviceFilters::insertDeviceFilter(
[in] unsigned long position,
[in] IUSBDeviceFilter filter)
Note: Duplicates are not allowed, so an attempt to insert a filter that is already in the
collection, will return an error.
311
5 Classes (interfaces)
5.143.4 removeDeviceFilter
IUSBDeviceFilter IUSBDeviceFilters::removeDeviceFilter(
[in] unsigned long position)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a USB device is attached to or detached from the virtual USB controller.
This notification is sent as a result of the indirect request to attach the device because
it matches one of the machine USB filters, or as a result of the direct request issued by
IConsole::attachUSBDevice() or IConsole::detachUSBDevice().
This notification is sent in case of both a succeeded and a failed request completion. When the
request succeeds, the error parameter is null, and the given device has been already added to
(when attached is true) or removed from (when attached is false) the collection represented
by IConsole::USBDevices[]. On failure, the collection doesnt change and the error parameter
represents the error message describing the failure.
5.144.1 Attributes
5.144.1.1 device (read-only)
IUSBDevice IUSBDeviceStateChangedEvent::device
5.145 IUSBProxyBackend
The USBProxyBackend interface represents a source for USB devices available to the host for
attaching to the VM.
312
5 Classes (interfaces)
5.145.1 Attributes
5.145.1.1 name (read-only)
wstring IUSBProxyBackend::name
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when VBoxSVC becomes unavailable (due to a crash or similar unexpected cir-
cumstances) or available again.
5.146.1 Attributes
5.146.1.1 available (read-only)
boolean IVBoxSVCAvailabilityChangedEvent::available
5.147 IVFSExplorer
The VFSExplorer interface unifies access to different file system types. This includes local file
systems as well remote file systems like S3. For a list of supported types see VFSType. An
instance of this is returned by IAppliance::createVFSExplorer().
5.147.1 Attributes
5.147.1.1 path (read-only)
wstring IVFSExplorer::path
313
5 Classes (interfaces)
5.147.2 cd
IProgress IVFSExplorer::cd(
[in] wstring dir)
5.147.3 cdUp
IProgress IVFSExplorer::cdUp()
5.147.4 entryList
void IVFSExplorer::entryList(
[out] wstring names[],
[out] unsigned long types[],
[out] long long sizes[],
[out] unsigned long modes[])
Returns a list of files/directories after a call to update(). The user is responsible for keeping
this internal list up do date.
5.147.5 exists
wstring[] IVFSExplorer::exists(
[in] wstring names[])
Checks if the given file list exists in the current directory level.
5.147.6 remove
IProgress IVFSExplorer::remove(
[in] wstring names[])
5.147.7 update
IProgress IVFSExplorer::update()
Updates the internal list of files/directories from the current directory level. Use entryList() to
get the full list after a call to this method.
314
5 Classes (interfaces)
5.148 IVRDEServer
5.148.1 Attributes
5.148.1.1 enabled (read/write)
boolean IVRDEServer::enabled
Flag whether multiple simultaneous connections to the VM are permitted. Note that this will
be replaced by a more powerful mechanism in the future.
Flag whether the existing connection must be dropped and a new connection must be estab-
lished by the VRDE server, when a new client connects in single connection mode.
The name of Extension Pack providing VRDE for this VM. Overrides ISystemProperties::defaultVRDEExtPack.
Library used for authentication of RDP clients by this VM. Overrides ISystemProperties::VRDEAuthLibrary.
315
5 Classes (interfaces)
5.148.2 getVRDEProperty
wstring IVRDEServer::getVRDEProperty(
[in] wstring key)
5.148.3 setVRDEProperty
void IVRDEServer::setVRDEProperty(
[in] wstring key,
[in] wstring value)
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when a property of the VRDE server changes. Interested callees should use IVRDE-
Server methods and attributes to find out what has changed.
5.149.1 Attributes
5.149.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IVRDEServerChangedEvent::midlDoesNotLikeEmptyInterfaces
5.150 IVRDEServerInfo
Note: With the web service, this interface is mapped to a structure. Attributes that
return this interface will not return an object, but a complete structure containing the
attributes listed below as structure members.
Contains information about the remote desktop (VRDE) server capabilities and status. This is
used in the IConsole::VRDEServerInfo attribute.
5.150.1 Attributes
5.150.1.1 active (read-only)
boolean IVRDEServerInfo::active
316
5 Classes (interfaces)
VRDE server port number. If this property is equal to 0, then the VRDE server failed to start,
usually because there are no free IP ports to bind to. If this property is equal to -1, then the
VRDE server has not yet been started.
When the last connection was established, in milliseconds since 1970-01-01 UTC.
When the last connection was terminated or the current time, if connection is still active, in
milliseconds since 1970-01-01 UTC.
How many bytes were sent in last or current, if still active, connection.
How many bytes were received in last or current, if still active, connection.
317
5 Classes (interfaces)
Public key exchange method used when connection was established. Values: 0 - RDP4 public
key exchange scheme. 1 - X509 certificates were sent to client.
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
Notification when the status of the VRDE server changes. Interested callees should use
IVRDEServerInfo attributes to find out what is the current status.
5.151.1 Attributes
5.151.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IVRDEServerInfoChangedEvent::midlDoesNotLikeEmptyInterfaces
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
318
5 Classes (interfaces)
5.152.1 addApproval
void IVetoEvent::addApproval(
[in] wstring reason)
5.152.2 addVeto
void IVetoEvent::addVeto(
[in] wstring reason)
5.152.3 getApprovals
wstring[] IVetoEvent::getApprovals()
5.152.4 getVetos
wstring[] IVetoEvent::getVetos()
5.152.5 isApproved
boolean IVetoEvent::isApproved()
5.152.6 isVetoed
boolean IVetoEvent::isVetoed()
Note: This interface extends IEvent and therefore supports all its methods and at-
tributes as well.
5.153.1 Attributes
5.153.1.1 midlDoesNotLikeEmptyInterfaces (read-only)
boolean IVideoCaptureChangedEvent::midlDoesNotLikeEmptyInterfaces
319
5 Classes (interfaces)
5.154 IVirtualBox
The IVirtualBox interface represents the main interface exposed by the product that provides
virtual machine management.
An instance of IVirtualBox is required for the product to do anything useful. Even though the
interface does not expose this, internally, IVirtualBox is implemented as a singleton and actually
lives in the process of the VirtualBox server (VBoxSVC.exe). This makes sure that IVirtualBox can
track the state of all virtual machines on a particular host, regardless of which frontend started
them.
To enumerate all the virtual machines on the host, use the machines[] attribute.
Error information handling is a bit special with IVirtualBox: creating an instance will always
succeed. The return of the actual error code/information is postponed to any attribute or method
call. The reason for this is that COM likes to mutilate the error code and lose the detailed error
information returned by instance creation.
5.154.1 Attributes
5.154.1.1 version (read-only)
wstring IVirtualBox::version
A string representing the version number of the product. The format is 3 integer numbers
divided by dots (e.g. 1.0.1). The last number represents the build number and will frequently
change.
This may be followed by a _ALPHA[0-9]*, _BETA[0-9]* or _RC[0-9]* tag in prerelease builds.
Non-Oracle builds may (/shall) also have a publisher tag, at the end. The publisher tag starts
with an underscore just like the prerelease build type tag.
A string representing the version number of the product, without the publisher information
(but still with other tags). See version.
A string representing the package type of this product. The format is OS_ARCH_DIST where
OS is either WINDOWS, LINUX, SOLARIS, DARWIN. ARCH is either 32BITS or 64BITS. DIST is
either GENERIC, UBUNTU_606, UBUNTU_710, or something like this.
A string representing the VirtualBox API version number. The format is 2 integer numbers
divided by an underscore (e.g. 1_0). After the first public release of packages with a particular
API version the API will not be changed in an incompatible way. Note that this guarantee does
not apply to development builds, and also there is no guarantee that this version is identical to
the first two integer numbers of the package version.
320
5 Classes (interfaces)
To be defined exactly, but we need something that the Validation Kit can use to figure which
methods and attributes can safely be used on a continuously changing trunk (and occasional
branch).
Full path to the directory where the global settings file, VirtualBox.xml, is stored.
In this version of VirtualBox, the value of this property is always <user_dir>/.VirtualBox
(where <user_dir> is the path to the user directory, as determined by the host OS), and cannot
be changed.
This path is also used as the base to resolve relative paths in places where relative paths are
allowed (unless otherwise expressly indicated).
Full name of the global settings file. The value of this property corresponds to the value of
homeFolder plus /VirtualBox.xml.
Array of all machine group names which are used by the machines which are accessible. Each
group is only listed once, however they are listed in no particular order and there is no guarantee
that there are no gaps in the group hierarchy (i.e. "/", "/group/subgroup" is a valid result).
321
5 Classes (interfaces)
Collection of global shared folders. Global shared folders are available to all virtual machines.
New shared folders are added to the collection using createSharedFolder(). Existing shared
folders can be removed using removeSharedFolder().
Note: In the current version of the product, global shared folders are not implemented
and therefore this collection is always empty.
DHCP servers.
322
5 Classes (interfaces)
5.154.2 checkFirmwarePresent
boolean IVirtualBox::checkFirmwarePresent(
[in] FirmwareType firmwareType,
[in] wstring version,
[out] wstring url,
[out] wstring file)
Check if this VirtualBox installation has a firmware of the given type available, either system-
wide or per-user. Optionally, this may return a hint where this firmware can be downloaded
from.
5.154.3 composeMachineFilename
wstring IVirtualBox::composeMachineFilename(
[in] wstring name,
[in] wstring group,
[in] wstring createFlags,
[in] wstring baseFolder)
323
5 Classes (interfaces)
Returns a recommended full path of the settings file name for a new virtual machine.
This API serves two purposes:
See IMachine::name and createMachine() for more details about the machine name.
groupName defines which additional subdirectory levels should be included. It must be either a
valid group name or null or empty string which designates that the machine will not be related
to a machine group.
If baseFolder is a null or empty string (which is recommended), the default machine set-
tings folder (see ISystemProperties::defaultMachineFolder) will be used as a base folder for the
created machine, resulting in a file name like /home/user/VirtualBox VMs/name/name.vbox.
Otherwise the given base folder will be used.
This method does not access the host disks. In particular, it does not check for whether a
machine with this name already exists.
5.154.4 createAppliance
IAppliance IVirtualBox::createAppliance()
Creates a new appliance object, which represents an appliance in the Open Virtual Machine
Format (OVF). This can then be used to import an OVF appliance into VirtualBox or to export
machines as an OVF appliance; see the documentation for IAppliance for details.
5.154.5 createDHCPServer
IDHCPServer IVirtualBox::createDHCPServer(
[in] wstring name)
Creates a DHCP server settings to be used for the given internal network name
If this method fails, the following error codes may be reported:
5.154.6 createMachine
IMachine IVirtualBox::createMachine(
[in] wstring settingsFile,
[in] wstring name,
[in] wstring groups[],
[in] wstring osTypeId,
[in] wstring flags)
settingsFile Fully qualified path where the settings file should be created, empty string or null
for a default folder and file based on the name argument and the primary group. (see
composeMachineFilename()).
name Machine name.
324
5 Classes (interfaces)
groups Array of group names. null or an empty array have the same meaning as an array with
just the empty string or "/", i.e. create a machine without group association.
osTypeId Guest OS Type ID.
flags Additional property parameters, passed as a comma-separated list of name=value
type entries. The following ones are recognized: forceOverwrite=1 to overwrite
an existing machine settings file, UUID=<uuid> to specify a machine UUID and
directoryIncludesUUID=1 to switch to a special VM directory naming scheme which
should not be used unless necessary.
Creates a new virtual machine by creating a machine settings file at the given location.
VirtualBox machine settings files use a custom XML dialect. Starting with VirtualBox 4.0,
a .vbox extension is recommended, but not enforced, and machine files can be created at
arbitrary locations.
However, it is recommended that machines are created in the default machine folder (e.g.
/home/user/VirtualBox VMs/name/name.vbox; see ISystemProperties::defaultMachineFolder).
If you specify null or empty string (which is recommended) for the settingsFile argument,
composeMachineFilename() is called automatically to have such a recommended name com-
posed based on the machine name given in the name argument and the primary group.
If the resulting settings file already exists, this method will fail, unless the forceOverwrite flag
is set.
The new machine is created unregistered, with the initial configuration set according to the
specified guest OS type. A typical sequence of actions to create a new virtual machine is as
follows:
1. Call this method to have a new machine created. The returned machine object will be
mutable allowing to change any machine property.
2. Configure the machine using the appropriate attributes and methods.
3. Call IMachine::saveSettings() to write the settings to the machines XML settings file. The
configuration of the newly created machine will not be saved to disk until this method is
called.
4. Call registerMachine() to add the machine to the list of machines known to VirtualBox.
The specified guest OS type identifier must match an ID of one of known guest OS types listed
in the guestOSTypes[] array.
Note: IMachine::settingsModified will return false for the created machine, until any
of machine settings are changed.
Note: There is no way to change the name of the settings file or subfolder of the created
machine directly.
325
5 Classes (interfaces)
5.154.7 createMedium
IMedium IVirtualBox::createMedium(
[in] wstring format,
[in] wstring location,
[in] AccessMode accessMode,
[in] DeviceType aDeviceTypeType)
format Identifier of the storage format to use for the new medium.
location Location of the storage unit for the new medium.
accessMode Whether to open the image in read/write or read-only mode. For a DVD device
type, this is ignored and read-only mode is always assumed.
aDeviceTypeType Must be one of HardDisk, DVD or Floppy.
Creates a new base medium object that will use the given storage format and location for
medium data.
The actual storage unit is not created by this method. In order to do it, and before you are able
to attach the created medium to virtual machines, you must call one of the following methods to
allocate a format-specific storage unit at the specified location:
IMedium::createBaseStorage()
IMedium::createDiffStorage()
Some medium attributes, such as IMedium::id, may remain uninitialized until the medium
storage unit is successfully created by one of the above methods.
Depending on the given device type, the file at the storage location must be in one of the media
formats understood by VirtualBox:
With a HardDisk device type, the file must be a hard disk image in one of the formats
supported by VirtualBox (see ISystemProperties::mediumFormats[]). After the storage unit
is successfully created and this method succeeds, if the medium is a base medium, it will
be added to the hardDisks[] array attribute.
With a DVD device type, the file must be an ISO 9960 CD/DVD image. After this method
succeeds, the medium will be added to the DVDImages[] array attribute.
With a Floppy device type, the file must be an RAW floppy image. After this method
succeeds, the medium will be added to the floppyImages[] array attribute.
The list of all storage formats supported by this VirtualBox installation can be obtained using
ISystemProperties::mediumFormats[]. If the format attribute is empty or null then the default
storage format specified by ISystemProperties::defaultHardDiskFormat will be used for disks r
creating a storage unit of the medium.
Note that the format of the location string is storage format specific. See IMedium::location
and IMedium for more details.
If this method fails, the following error codes may be reported:
VBOX_E_OBJECT_NOT_FOUND: format identifier is invalid. See ISystemProperties::mediumFormats[].
VBOX_E_FILE_ERROR: location is a not valid file name (for file-based formats only).
5.154.8 createNATNetwork
INATNetwork IVirtualBox::createNATNetwork(
[in] wstring networkName)
networkName
326
5 Classes (interfaces)
5.154.9 createSharedFolder
void IVirtualBox::createSharedFolder(
[in] wstring name,
[in] wstring hostPath,
[in] boolean writable,
[in] boolean automount)
Creates a new global shared folder by associating the given logical name with the given host
path, adds it to the collection of shared folders and starts sharing it. Refer to the description of
ISharedFolder to read more about logical names.
5.154.10 findDHCPServerByNetworkName
IDHCPServer IVirtualBox::findDHCPServerByNetworkName(
[in] wstring name)
Searches a DHCP server settings to be used for the given internal network name
If this method fails, the following error codes may be reported:
5.154.11 findMachine
IMachine IVirtualBox::findMachine(
[in] wstring nameOrId)
nameOrId What to search for. This can either be the UUID or the name of a virtual machine.
Note: Inaccessible machines cannot be found by name, only by UUID, because their
name cannot safely be determined.
5.154.12 findNATNetworkByName
INATNetwork IVirtualBox::findNATNetworkByName(
[in] wstring networkName)
networkName
327
5 Classes (interfaces)
5.154.13 getExtraData
wstring IVirtualBox::getExtraData(
[in] wstring key)
5.154.14 getExtraDataKeys
wstring[] IVirtualBox::getExtraDataKeys()
Returns an array representing the global extra data keys which currently have values defined.
5.154.15 getGuestOSType
IGuestOSType IVirtualBox::getGuestOSType(
[in] wstring id)
5.154.16 getMachineStates
MachineState[] IVirtualBox::getMachineStates(
[in] IMachine machines[])
5.154.17 getMachinesByGroups
IMachine[] IVirtualBox::getMachinesByGroups(
[in] wstring groups[])
groups What groups to match. The usual group list rules apply, i.e. passing an empty list will
match VMs in the toplevel group, likewise the empty string.
Gets all machine references which are in one of the specified groups.
328
5 Classes (interfaces)
5.154.18 openMachine
IMachine IVirtualBox::openMachine(
[in] wstring settingsFile)
Opens a virtual machine from the existing settings file. The opened machine remains unregis-
tered until you call registerMachine().
The specified settings file name must be fully qualified. The file must exist and be a valid
machine XML settings file whose contents will be used to construct the machine object.
Note: IMachine::settingsModified will return false for the opened machine, until any
of machine settings are changed.
5.154.19 openMedium
IMedium IVirtualBox::openMedium(
[in] wstring location,
[in] DeviceType deviceType,
[in] AccessMode accessMode,
[in] boolean forceNewUuid)
location Location of the storage unit that contains medium data in one of the supported storage
formats.
deviceType Must be one of HardDisk, DVD or Floppy.
accessMode Whether to open the image in read/write or read-only mode. For a DVD device
type, this is ignored and read-only mode is always assumed.
forceNewUuid Allows the caller to request a completely new medium UUID for the image which
is to be opened. Useful if one intends to open an exact copy of a previously opened image,
as this would normally fail due to the duplicate UUID.
With a HardDisk device type, the file must be a hard disk image in one of the formats
supported by VirtualBox (see ISystemProperties::mediumFormats[]). After this method
succeeds, if the medium is a base medium, it will be added to the hardDisks[] array at-
tribute.
With a DVD device type, the file must be an ISO 9960 CD/DVD image. After this method
succeeds, the medium will be added to the DVDImages[] array attribute.
With a Floppy device type, the file must be an RAW floppy image. After this method
succeeds, the medium will be added to the floppyImages[] array attribute.
329
5 Classes (interfaces)
After having been opened, the medium can be re-found by this method and can be attached to
virtual machines. See IMedium for more details.
The UUID of the newly opened medium will either be retrieved from the storage location, if
the format supports it (e.g. for hard disk images), or a new UUID will be randomly generated
(e.g. for ISO and RAW files). If for some reason you need to change the mediums UUID, use
IMedium::setIds().
If a differencing hard disk medium is to be opened by this method, the operation will suc-
ceed only if its parent medium and all ancestors, if any, are already known to this VirtualBox
installation (for example, were opened by this method before).
This method attempts to guess the storage format of the specified medium by reading medium
data at the specified location.
If accessMode is ReadWrite (which it should be for hard disks and floppies), the image is
opened for read/write access and must have according permissions, as VirtualBox may actually
write status information into the disks metadata sections.
Note that write access is required for all typical hard disk usage in VirtualBox, since VirtualBox
may need to write metadata such as a UUID into the image. The only exception is opening a
source image temporarily for copying and cloning (see IMedium::cloneTo() when the image will
be closed again soon.
The format of the location string is storage format specific. See IMedium::location and
IMedium for more details.
If this method fails, the following error codes may be reported:
VBOX_E_FILE_ERROR: Invalid medium storage file location or could not find the medium
at the specified location.
VBOX_E_IPRT_ERROR: Could not get medium storage format.
E_INVALIDARG: Invalid medium storage format.
5.154.20 registerMachine
void IVirtualBox::registerMachine(
[in] IMachine machine)
machine
Registers the machine previously created using createMachine() or opened using openMachine()
within this VirtualBox installation. After successful method invocation, the IMachineRegisteredEvent
event is fired.
Note: This method implicitly calls IMachine::saveSettings() to save all current machine
settings before registering it.
330
5 Classes (interfaces)
5.154.21 removeDHCPServer
void IVirtualBox::removeDHCPServer(
[in] IDHCPServer server)
5.154.22 removeNATNetwork
void IVirtualBox::removeNATNetwork(
[in] INATNetwork network)
network
5.154.23 removeSharedFolder
void IVirtualBox::removeSharedFolder(
[in] wstring name)
5.154.24 setExtraData
void IVirtualBox::setExtraData(
[in] wstring key,
[in] wstring value)
Note: Before performing the actual data change, this method will ask all registered
event listener using the IExtraDataCanChangeEvent notification for a permission. If
one of the listeners refuses the new value, the change will not be performed.
331
5 Classes (interfaces)
5.154.25 setSettingsSecret
void IVirtualBox::setSettingsSecret(
[in] wstring password)
Unlocks the secret data by passing the unlock password to the server. The server will cache
the password for that machine.
If this method fails, the following error codes may be reported:
5.155 IVirtualBoxClient
Convenience interface for client applications. Treat this as a singleton, i.e. never create more
than one instance of this interface.
At the moment only available for clients of the local API (not usable via the webservice). Once
the session logic is redesigned this might change.
Error information handling is a bit special with IVirtualBoxClient: creating an instance will
always succeed. The return of the actual error code/information is postponed to any attribute
or method call. The reason for this is that COM likes to mutilate the error code and lose the
detailed error information returned by instance creation.
5.155.1 Attributes
5.155.1.1 virtualBox (read-only)
IVirtualBox IVirtualBoxClient::virtualBox
5.155.2 checkMachineError
void IVirtualBoxClient::checkMachineError(
[in] IMachine machine)
Perform error checking before using an IMachine object. Generally useful before starting a VM
and all other uses. If anything is not as it should be then this method will return an appropriate
error.
332
5 Classes (interfaces)
5.156 IVirtualBoxErrorInfo
The IVirtualBoxErrorInfo interface represents extended error information.
Extended error information can be set by VirtualBox components after unsuccessful or par-
tially successful method invocation. This information can be retrieved by the calling party as an
IVirtualBoxErrorInfo object and then shown to the client in addition to the plain 32-bit result
code.
In MS COM, this interface extends the IErrorInfo interface, in XPCOM, it extends the nsIExcep-
tion interface. In both cases, it provides a set of common attributes to retrieve error information.
Sometimes invocation of some components method may involve methods of other components
that may also fail (independently of this methods failure), or a series of non-fatal errors may
precede a fatal error that causes method failure. In cases like that, it may be desirable to preserve
information about all errors happened during method invocation and deliver it to the caller. The
next attribute is intended specifically for this purpose and allows to represent a chain of errors
through a single IVirtualBoxErrorInfo object set after method invocation.
Note: errors are stored to a chain in the reverse order, i.e. the initial error object you
query right after method invocation is the last error set by the callee, the object it points
to in the next attribute is the previous error and so on, up to the first error (which is
the last in the chain).
5.156.1 Attributes
5.156.1.1 resultCode (read-only)
long IVirtualBoxErrorInfo::resultCode
Result code of the error. Usually, it will be the same as the result code returned by the method
that provided this error information, but not always. For example, on Win32, CoCreateInstance()
will most likely return E_NOINTERFACE upon unsuccessful component instantiation attempt, but
not the value the component factory returned. Value is typed long, not result, to make interface
usable from scripting languages.
Optional result data of this error. This will vary depending on the actual error usage. By
default this attribute is not being used.
Note: In MS COM, it is the same as IErrorInfo::GetGUID, except for the data type. In
XPCOM, there is no equivalent.
333
5 Classes (interfaces)
5.157 IVirtualSystemDescription
Represents one virtual system (machine) in an appliance. This interface is used in the
IAppliance::virtualSystemDescriptions[] array. After IAppliance::interpret() has been called, that
array contains information about how the virtual systems described in the OVF should best be
imported into VirtualBox virtual machines. See IAppliance for the steps required to import an
OVF into VirtualBox.
5.157.1 Attributes
5.157.1.1 count (read-only)
unsigned long IVirtualSystemDescription::count
334
5 Classes (interfaces)
5.157.2 addDescription
void IVirtualSystemDescription::addDescription(
[in] VirtualSystemDescriptionType type,
[in] wstring VBoxValue,
[in] wstring extraConfigValue)
type
VBoxValue
extraConfigValue
This method adds an additional description entry to the stack of already available descrip-
tions for this virtual system. This is handy for writing values which arent directly supported by
VirtualBox. One example would be the License type of VirtualSystemDescriptionType.
5.157.3 getDescription
void IVirtualSystemDescription::getDescription(
[out] VirtualSystemDescriptionType types[],
[out] wstring refs[],
[out] wstring OVFValues[],
[out] wstring VBoxValues[],
[out] wstring extraConfigValues[])
types
refs
OVFValues
VBoxValues
extraConfigValues
Returns information about the virtual system as arrays of instruction items. In each array,
the items with the same indices correspond and jointly represent an import instruction for
VirtualBox.
The list below identifies the value sets that are possible depending on the VirtualSystemDescriptionType
enum value in the array item in aTypes[]. In each case, the array item with the same index in
OVFValues[] will contain the original value as contained in the OVF file (just for informational
purposes), and the corresponding item in aVBoxValues[] will contain a suggested value to be
used for VirtualBox. Depending on the description type, the aExtraConfigValues[] array item
may also be used.
OS: the guest operating system type. There must be exactly one such array item on
import. The corresponding item in aVBoxValues[] contains the suggested guest operating
system for VirtualBox. This will be one of the values listed in IVirtualBox::guestOSTypes[].
The corresponding item in OVFValues[] will contain a numerical value that described the
operating system in the OVF.
Name: the name to give to the new virtual machine. There can be at most one such
array item; if none is present on import, then an automatic name will be created from the
operating system type. The corresponding item im OVFValues[] will contain the suggested
virtual machine name from the OVF file, and aVBoxValues[] will contain a suggestion for
a unique VirtualBox IMachine name that does not exist yet.
Description: an arbitrary description.
335
5 Classes (interfaces)
License: the EULA section from the OVF, if present. It is the responsibility of the calling
code to display such a license for agreement; the Main API does not enforce any such policy.
HardDiskControllerSCSI: a SCSI hard disk controller. There can be at most one such
item. The items in OVFValues[] and aVBoxValues[] will either be LsiLogic, Bus-
Logic or LsiLogicSas. (Note that in OVF, the LsiLogicSas controller is treated as a SCSI
controller whereas VirtualBox considers it a class of storage controllers of its own; see
StorageControllerType). The matching item in the aRefs[] array will be used as with IDE
controllers (see above).
HardDiskImage: a virtual hard disk, most probably as a reference to an image file. There
can be an arbitrary number of these items, one for each virtual disk image that accompanies
the OVF.
The array item in OVFValues[] will contain the file specification from the OVF file (without
a path since the image file should be in the same location as the OVF file itself), whereas the
item in aVBoxValues[] will contain a qualified path specification to where VirtualBox uses
the hard disk image. This means that on import the image will be copied and converted
from the ovf location to the vbox location; on export, this will be handled the other
way round.
The matching item in the aExtraConfigValues[] array must contain a string of the fol-
lowing format: controller=<index>;channel=<c> In this string, <index> must be an
integer specifying the hard disk controller to connect the image to. That number must be
the index of an array item with one of the hard disk controller types (HardDiskController-
SCSI, HardDiskControllerSATA, HardDiskControllerIDE). In addition, <c> must specify
the channel to use on that controller. For IDE controllers, this can be 0 or 1 for master or
slave, respectively. For compatibility with VirtualBox versions before 3.2, the values 2 and
3 (for secondary master and secondary slave) are also supported, but no longer exported.
For SATA and SCSI controllers, the channel can range from 0-29.
CDROM: a virtual CD-ROM drive. The matching item in aExtraConfigValue[] contains
the same attachment information as with HardDiskImage items.
336
5 Classes (interfaces)
NetworkAdapter: a network adapter. The array item in aVBoxValues[] will specify the
hardware for the network adapter, whereas the array item in aExtraConfigValues[] will
have a string of the type=<X> format, where <X> must be either NAT or Bridged.
USBController: a USB controller. There can be at most one such item. If, and only if,
such an item is present, USB support will be enabled for the new virtual machine.
SoundCard: a sound card. There can be at most one such item. If and only if such an item
is present, sound support will be enabled for the new virtual machine. Note that the virtual
machine in VirtualBox will always be presented with the standard VirtualBox soundcard,
which may be different from the virtual soundcard expected by the appliance.
5.157.4 getDescriptionByType
void IVirtualSystemDescription::getDescriptionByType(
[in] VirtualSystemDescriptionType type,
[out] VirtualSystemDescriptionType types[],
[out] wstring refs[],
[out] wstring OVFValues[],
[out] wstring VBoxValues[],
[out] wstring extraConfigValues[])
type
types
refs
OVFValues
VBoxValues
extraConfigValues
This is the same as getDescription() except that you can specify which types should be re-
turned.
5.157.5 getValuesByType
wstring[] IVirtualSystemDescription::getValuesByType(
[in] VirtualSystemDescriptionType type,
[in] VirtualSystemDescriptionValueType which)
type
which
This is the same as getDescriptionByType() except that you can specify which value types
should be returned. See VirtualSystemDescriptionValueType for possible values.
337
5 Classes (interfaces)
5.157.6 setFinalValues
void IVirtualSystemDescription::setFinalValues(
[in] boolean enabled[],
[in] wstring VBoxValues[],
[in] wstring extraConfigValues[])
enabled
VBoxValues
extraConfigValues
This method allows the appliances user to change the configuration for the virtual system
descriptions. For each array item returned from getDescription(), you must pass in one boolean
value and one configuration value.
Each item in the boolean array determines whether the particular configuration item should
be enabled. You can only disable items of the types HardDiskControllerIDE, HardDiskCon-
trollerSATA, HardDiskControllerSCSI, HardDiskImage, CDROM, Floppy, NetworkAdapter, USB-
Controller and SoundCard.
For the vbox and extra configuration values, if you pass in the same arrays as returned in
the aVBoxValues and aExtraConfigValues arrays from getDescription(), the configuration remains
unchanged. Please see the documentation for getDescription() for valid configuration values for
the individual array item types. If the corresponding item in the aEnabled array is false, the
configuration value is ignored.
5.158 IWebsessionManager
Note: This interface is supported in the web service only, not in COM/XPCOM.
5.158.1 getSessionObject
ISession IWebsessionManager::getSessionObject(
[in] IVirtualBox refIVirtualBox)
refIVirtualBox
Returns a managed object reference to a new ISession object for every call to this method.
See also: ISession
5.158.2 logoff
void IWebsessionManager::logoff(
[in] IVirtualBox refIVirtualBox)
refIVirtualBox
Logs off the client who has previously logged on with logon() and destroys all resources as-
sociated with the websession (most importantly, all managed objects created in the server while
the websession was active).
338
5 Classes (interfaces)
5.158.3 logon
IVirtualBox IWebsessionManager::logon(
[in] wstring username,
[in] wstring password)
username
password
Logs a new client onto the webservice and returns a managed object reference to the IVirtu-
alBox instance, which the client can then use as a basis to further queries, since all calls to the
VirtualBox API are based on the IVirtualBox interface, in one way or the other.
339
6 Enumerations (enums)
6.1 APICMode
BIOS APIC initialization mode. If the hardware does not support the mode then the code falls
back to a lower mode.
Disabled
APIC
X2APIC
6.2 AccessMode
Access mode for opening files.
ReadOnly
ReadWrite
6.3 AdditionsFacilityClass
Guest Additions facility classes.
Driver Driver.
Service System service.
Program Program.
Feature Feature.
6.4 AdditionsFacilityStatus
Guest Additions facility states.
340
6 Enumerations (enums)
6.5 AdditionsFacilityType
Guest Additions facility IDs.
6.6 AdditionsRunLevelType
Guest Additions run level type.
6.7 AdditionsUpdateFlag
Guest Additions update flags.
WaitForUpdateStartOnly Starts the regular updating process and waits until the actual Guest
Additions update inside the guest was started. This can be necessary due to needed inter-
action with the guest OS during the installation phase.
341
6 Enumerations (enums)
6.8 AudioCodecType
The exact variant of audio codec hardware presented to the guest; see IAudioAdapter::audioCodec.
6.9 AudioControllerType
Virtual audio controller type.
AC97
SB16
HDA
6.10 AudioDriverType
Host audio driver type.
6.11 AuthType
VirtualBox authentication type.
342
6 Enumerations (enums)
6.12 AutostopType
Autostop types, used with IMachine::autostopType.
6.13 BIOSBootMenuMode
BIOS boot menu mode.
Disabled
MenuOnly
MessageAndMenu
6.14 BandwidthGroupType
Type of a bandwidth control group.
6.15 BitmapFormat
Format of a bitmap. Generic values for formats used by the source bitmap, the screen shot or
image update APIs.
Opaque Unknown buffer format (the user may not assume any particular format of the buffer).
BGR Generic BGR format without alpha channel. Pixel layout depends on the number of bits
per pixel:
32 - bits 31:24 undefined, bits 23:16 R, bits 15:8 G, bits 7:0 B.
16 - bits 15:11 R, bits 10:5 G, bits 4:0 B.
343
6 Enumerations (enums)
6.16 CPUPropertyType
Virtual CPU property type. This enumeration represents possible values of the IMachine get- and
setCPUProperty methods.
Null Null value (never used by the API).
PAE This setting determines whether VirtualBox will expose the Physical Address Extension
(PAE) feature of the host CPU to the guest. Note that in case PAE is not available, it will
not be reported.
LongMode This setting determines whether VirtualBox will advertise long mode (i.e. 64-bit
guest support) and let the guest enter it.
TripleFaultReset This setting determines whether a triple fault within a guest will trigger an in-
ternal error condition and stop the VM (default) or reset the virtual CPU/VM and continue
execution.
APIC This setting determines whether an APIC is part of the virtual CPU. This feature can only
be turned off when the X2APIC feature is off.
X2APIC This setting determines whether an x2APIC is part of the virtual CPU. Since this feature
implies that the APIC feature is present, it automatically enables the APIC feature when
set.
6.17 CertificateVersion
X.509 certificate version numbers.
V1
V2
V3
Unknown
6.18 ChipsetType
Type of emulated chipset (mostly southbridge).
Null null value. Never used by the API.
PIIX3 A PIIX3 (PCI IDE ISA Xcelerator) chipset.
ICH9 A ICH9 (I/O Controller Hub) chipset.
6.19 CleanupMode
Cleanup mode, used with IMachine::unregister().
UnregisterOnly Unregister only the machine, but neither delete snapshots nor detach media.
DetachAllReturnNone Delete all snapshots and detach all media but return none; this will keep
all media registered.
DetachAllReturnHardDisksOnly Delete all snapshots, detach all media and return hard disks
for closing, but not removable media.
Full Delete all snapshots, detach all media and return all media for closing.
344
6 Enumerations (enums)
6.20 ClipboardMode
Host-Guest clipboard interchange mode.
Disabled
HostToGuest
GuestToHost
Bidirectional
6.21 CloneMode
Clone mode, used with IMachine::cloneTo().
6.22 CloneOptions
Clone options, used with IMachine::cloneTo().
Link Create a clone VM where all virtual disks are linked to the original VM.
KeepAllMACs Dont generate new MAC addresses of the attached network adapters.
KeepNATMACs Dont generate new MAC addresses of the attached network adapters when
they are using NAT.
KeepDiskNames Dont change the disk names.
6.23 DataFlags
None
Mandatory
Expert
Array
FlagMask
6.24 DataType
Int32
Int8
String
345
6 Enumerations (enums)
6.25 DeviceActivity
Device activity for IConsole::getDeviceActivity().
Null
Idle
Reading
Writing
6.26 DeviceType
Device type.
Null Null value, may also mean no device (not allowed for IConsole::getDeviceActivity()).
Floppy Floppy device.
DVD CD/DVD-ROM device.
HardDisk Hard disk device.
Network Network device.
USB USB device.
SharedFolder Shared folder device.
Graphics3D Graphics device 3D activity.
6.27 DhcpOpt
SubnetMask
TimeOffset
Router
TimeServer
NameServer
DomainNameServer
LogServer
Cookie
LPRServer
ImpressServer
ResourseLocationServer
HostName
BootFileSize
MeritDumpFile
346
6 Enumerations (enums)
DomainName
SwapServer
RootPath
ExtensionPath
IPForwardingEnableDisable
NonLocalSourceRoutingEnableDisable
PolicyFilter
MaximumDatagramReassemblySize
DefaultIPTime2Live
PathMTUAgingTimeout
IPLayerParametersPerInterface
InterfaceMTU
AllSubnetsAreLocal
BroadcastAddress
PerformMaskDiscovery
MaskSupplier
PerformRouteDiscovery
RouterSolicitationAddress
StaticRoute
TrailerEncapsulation
ARPCacheTimeout
EthernetEncapsulation
TCPDefaultTTL
TCPKeepAliveInterval
TCPKeepAliveGarbage
NetworkInformationServiceDomain
NetworkInformationServiceServers
NetworkTimeProtocolServers
VendorSpecificInformation
Option_44
Option_45
Option_46
Option_47
347
6 Enumerations (enums)
Option_48
Option_49
IPAddressLeaseTime
Option_64
Option_65
TFTPServerName
BootfileName
Option_68
Option_69
Option_70
Option_71
Option_72
Option_73
Option_74
Option_75
Option_119
6.28 DhcpOptEncoding
Legacy
Hex
6.29 DirectoryCopyFlags
Directory copying flags.
6.30 DirectoryCreateFlag
Directory creation flags.
348
6 Enumerations (enums)
6.31 DirectoryOpenFlag
Directory open flags.
6.32 DirectoryRemoveRecFlag
Directory recursive removement flags.
Note: WARNING!! THE FLAGS ARE CURRENTLY IGNORED. THE METHOD APPLIES
ContentAndDir REGARDLESS OF THE INPUT.
6.33 DnDAction
Possible actions of a dragn drop operation.
Ignore Do nothing.
6.34 DnDMode
Drag and drop interchange mode.
Disabled
HostToGuest
GuestToHost
Bidirectional
349
6 Enumerations (enums)
6.35 ExportOptions
Export options, used with IAppliance::write().
CreateManifest Write the optional manifest file (.mf) which is used for integrity checks prior
import.
ExportDVDImages Export DVD images. Default is not to export them as it is rarely needed for
typical VMs.
StripAllMACs Do not export any MAC address information. Default is to keep them to avoid
losing information which can cause trouble after import, at the price of risking duplicate
MAC addresses, if the import options are used to keep them.
StripAllNonNATMACs Do not export any MAC address information, except for adapters using
NAT. Default is to keep them to avoid losing information which can cause trouble after
import, at the price of risking duplicate MAC addresses, if the import options are used to
keep them.
6.36 FaultToleranceState
Used with IMachine::faultToleranceState.
6.37 FileAccessMode
File open access mode for use with IGuestSession::fileOpen() and IGuestSession::fileOpenEx().
ReadWrite Open the file with both read and write access.
AppendOnly Open the file for appending only, no read or seek access.
AppendRead Open the file for appending and read. Writes always goes to the end of the file
while reads are done at the current or specified file position.
350
6 Enumerations (enums)
6.38 FileCopyFlag
File copying flags.
Update Only copy when the source file is newer than the destination file or when the destination
file is missing.
6.39 FileOpenAction
What action IGuestSession::fileOpen() and IGuestSession::fileOpenEx() should take whether the
file being opened exists or not.
Note: Currently undefined whether we will inherit mode and ACLs from the existing
file or replace them.
OpenExistingTruncated Opens and truncate an existing file, fails if no file exists. (Was ot.)
AppendOrCreate Opens an existing file and places the file pointer at the end of the file, creates
the file if it does not exist. This action implies write access. (Was oa.)
351
6 Enumerations (enums)
6.40 FileOpenExFlags
Open flags for IGuestSession::fileOpenEx().
6.41 FileSeekOrigin
What a file seek (IFile::seek()) is relative to.
6.42 FileSharingMode
File sharing mode for IGuestSession::fileOpenEx().
WriteDelete Share write and delete access to the file, denying reading.
All Share all access, i.e. read, write and delete, to the file.
6.43 FileStatus
File statuses.
352
6 Enumerations (enums)
6.44 FirmwareType
Firmware type.
6.45 FramebufferCapabilities
Framebuffer capability flags.
6.46 FsObjMoveFlags
File moving flags.
Replace Replace the destination file, symlink, etc if it exists, however this does not allow re-
placing any directories.
FollowLinks Follow symbolic links in the final components or not (only applied to the given
source and target paths, not to anything else).
6.47 FsObjRenameFlag
Flags for use when renaming file system objects (files, directories, symlink, etc), see
IGuestSession::fsObjRename().
Replace This will attempt to replace any destination object other except directories. (The de-
fault is to fail if the destination exists.)
353
6 Enumerations (enums)
6.48 FsObjType
File system object (file) types.
Unknown Used either if the object has type that is not in this enum, or if the type has not yet
been determined or set.
Fifo FIFO or named pipe, depending on the platform/terminology.
6.49 GraphicsControllerType
Graphics controller type, used with IMachine::unregister().
6.50 GuestMonitorChangedEventType
How the guest monitor has been changed.
6.51 GuestMonitorStatus
The current status of the guest display.
354
6 Enumerations (enums)
6.52 GuestMouseEventMode
The mode (relative, absolute, multi-touch) of a pointer event.
@todo A clear pattern seems to be emerging that we should usually have multiple input devices
active for different types of reporting, so we should really have different event types for relative
(including wheel), absolute (not including wheel) and multi-touch events.
6.53 GuestSessionStatus
Guest session status. This enumeration represents possible values of the IGuestSession::status
attribute.
6.54 GuestSessionWaitForFlag
Guest session waiting flags. Multiple flags can be combined.
6.55 GuestSessionWaitResult
Guest session waiting results. Depending on the session waiting flags (for more information see
GuestSessionWaitForFlag) the waiting result can vary based on the sessions current status.
To wait for a guest session to terminate after it has been created by IGuest::createSession()
one would specify GuestSessionWaitResult_Terminate.
355
6 Enumerations (enums)
6.56 GuestUserState
State a guest user has been changed to.
LoggedOut A guest user has been successfully logged out of the guest OS.
Locked A guest user has locked its account. This might include running a password-protected
screensaver in the guest.
Note: Currently only available for Windows guests since Windows 2000 SP2.
356
6 Enumerations (enums)
Note: On Windows guests this function currently only supports reporting contiguous
idle times up to 49.7 days per user.
The event will be triggered if a guest user is not active for at least 5 seconds. This threshold
can be adjusted by either altering VBoxServices command line in the guest to
--vminfo-user-idle-threshold <ms>
with the RDONLYGUEST flag on the host. In both cases VBoxService needs to be restarted
in order to get the changes applied.
InUse A guest user continued using the guest OS after being idle.
Created A guest user has been successfully created.
RoleChanged To guest OS has changed the role of a user permanently, e.g. granting / denying
administrative rights.
357
6 Enumerations (enums)
6.57 HWVirtExPropertyType
Hardware virtualization property type. This enumeration represents possible values for the
IMachine::getHWVirtExProperty() and IMachine::setHWVirtExProperty() methods.
6.58 HostNetworkInterfaceMediumType
Type of encapsulation. Ethernet encapsulation includes both wired and wireless Ethernet con-
nections. See also: IHostNetworkInterface
6.59 HostNetworkInterfaceStatus
Current status of the interface. See also: IHostNetworkInterface
6.60 HostNetworkInterfaceType
Network interface type.
Bridged
HostOnly
358
6 Enumerations (enums)
6.61 ImportOptions
Import options, used with IAppliance::importMachines().
KeepAllMACs Dont generate new MAC addresses of the attached network adapters.
KeepNATMACs Dont generate new MAC addresses of the attached network adapters when
they are using NAT.
6.62 KeyboardHIDType
Type of keyboard device used in a virtual machine.
None No keyboard.
PS2Keyboard PS/2 keyboard.
6.63 KeyboardLED
Keyboard LED indicators.
NumLock
CapsLock
ScrollLock
6.64 LockType
Used with IMachine::lockMachine().
Write Lock the machine for writing. This requests an exclusive lock, i.e. there cannot be any
other API client holding any type of lock for this VM concurrently. Remember that a VM
process counts as an API client which implicitly holds the equivalent of a shared lock during
the entire VM runtime.
VM Lock the machine for writing, and create objects necessary for running a VM in this process.
359
6 Enumerations (enums)
6.65 MachineState
Virtual machine execution state.
This enumeration represents possible values of the IMachine::state attribute.
Below is the basic virtual machine state diagram. It shows how the state changes during virtual
machine execution. The text in square braces shows a method of the IConsole or IMachine
interface that performs the given state transition.
Note that states to the right from PoweredOff, Aborted and Saved in the above diagram are
called online VM states. These states represent the virtual machine which is being executed in
a dedicated process (usually with a GUI window attached to it where you can see the activity
of the virtual machine and interact with it). There are two special pseudo-states, FirstOnline
and LastOnline, that can be used in relational expressions to detect if the given machine state is
online or not:
When the virtual machine is in one of the online VM states (that is, being executed), only a few
machine settings can be modified. Methods working with such settings contain an explicit note
about that. An attempt to change any other setting or perform a modifying operation during this
time will result in the VBOX_E_INVALID_VM_STATE error.
All online states except Running, Paused and Stuck are transitional: they represent temporary
conditions of the virtual machine that will last as long as the operation that initiated such a
condition.
The Stuck state is a special case. It means that execution of the machine has reached the Guru
Meditation condition. This condition indicates an internal VMM (virtual machine manager)
failure which may happen as a result of either an unhandled low-level virtual hardware exception
or one of the recompiler exceptions (such as the too-many-traps condition).
Note also that any online VM state may transit to the Aborted state. This happens if the process
that is executing the virtual machine terminates unexpectedly (for example, crashes). Other than
that, the Aborted state is equivalent to PoweredOff.
There are also a few additional state diagrams that do not deal with virtual machine execution
and therefore are shown separately. The states shown on these diagrams are called offline VM
states (this includes PoweredOff, Aborted and Saved too).
The first diagram shows what happens when a lengthy setup operation is being executed (such
as IMachine::attachDevice()).
360
6 Enumerations (enums)
The next two diagrams demonstrate the process of taking a snapshot of a powered off virtual
machine, restoring the state to that as of a snapshot or deleting a snapshot, respectively.
361
6 Enumerations (enums)
Stopping Machine is being normally stopped powering it off, or after the guest OS has initiated
a shutdown sequence.
OnlineSnapshotting Like LiveSnapshotting, but the machine was paused when the merging
of differencing media was started.
RestoringSnapshot A machine snapshot is being restored; this typically does not take long.
DeletingSnapshot A machine snapshot is being deleted; this can take a long time since this may
require merging differencing media. This value indicates that the machine is not running
while the snapshot is being deleted.
SettingUp Lengthy setup operation is in progress.
Snapshotting Taking an (offline) snapshot.
FirstOnline Pseudo-state: first online state (for use in relational expressions).
6.66 MediumFormatCapabilities
Medium format capability flags.
Differencing Supports being used as a format for differencing media (see IMedium::createDiffStorage()).
Asynchronous Supports asynchronous I/O operations for at least some configurations.
362
6 Enumerations (enums)
File The format backend operates on files (the IMedium::location attribute of the medium
specifies a file used to store medium data; for a list of supported file extensions see
IMediumFormat::describeFileExtensions()).
Properties The format backend uses the property interface to configure the storage location
and properties (the IMediumFormat::describeProperties() method is used to get access to
properties supported by the given medium format).
TcpNetworking The format backend uses the TCP networking interface for network access.
CapabilityMask
6.67 MediumState
Virtual medium state. See also: IMedium
NotCreated Associated medium storage does not exist (either was not created yet or was
deleted).
Created Associated storage exists and accessible; this gets set if the accessibility check per-
formed by IMedium::refreshState() was successful.
Inaccessible Medium accessibility check (see IMedium::refreshState()) has not yet been
performed, or else, associated medium storage is not accessible. In the first case,
IMedium::lastAccessError is empty, in the second case, it describes the error that occurred.
Creating Associated medium storage is being created.
6.68 MediumType
Virtual medium type. For each IMedium, this defines how the medium is attached to a virtual
machine (see IMediumAttachment) and what happens when a snapshot (see ISnapshot) is taken
of a virtual machine which has the medium attached. At the moment DVD and floppy media are
always of type writethrough.
Normal Normal medium (attached directly or indirectly, preserved when taking snapshots).
Immutable Immutable medium (attached indirectly, changes are wiped out the next time the
virtual machine is started).
Writethrough Write through medium (attached directly, ignored when taking snapshots).
Shareable Allow using this medium concurrently by several machines.
363
6 Enumerations (enums)
MultiAttach A medium which is indirectly attached, so that one base medium can be used for
several VMs which have their own differencing medium to store their modifications. In
some sense a variant of Immutable with unset AutoReset flag in each differencing medium.
6.69 MediumVariant
Virtual medium image variant. More than one flag may be set. See also: IMedium
Standard No particular variant requested, results in using the backend default.
VmdkSplit2G VMDK image split in chunks of less than 2GByte.
VmdkRawDisk VMDK image representing a raw disk.
VmdkStreamOptimized VMDK streamOptimized image. Special import/export format which
is read-only/append-only.
VmdkESX VMDK format variant used on ESX products.
VdiZeroExpand Fill new blocks with zeroes while expanding image file.
Fixed Fixed image. Only allowed for base images.
Diff Differencing image. Only allowed for child images.
NoCreateDir Special flag which suppresses automatic creation of the subdirectory. Only used
when passing the medium variant as an input parameter.
6.70 MouseButtonState
Mouse button state.
LeftButton
RightButton
MiddleButton
WheelUp
WheelDown
XButton1
XButton2
MouseStateMask
364
6 Enumerations (enums)
6.71 NATAliasMode
AliasLog
AliasProxyOnly
AliasUseSamePorts
6.72 NATProtocol
Protocol definitions used with NAT port-forwarding rules.
6.73 NetworkAdapterPromiscModePolicy
The promiscuous mode policy of an interface.
6.74 NetworkAdapterType
Network adapter type.
6.75 NetworkAttachmentType
Network attachment type.
365
6 Enumerations (enums)
Internal
HostOnly
Generic
NATNetwork
6.76 ParavirtProvider
The paravirtualized guest interface provider. This enumeration represents possible values for the
IMachine::paravirtProvider attribute.
6.77 PathStyle
The path style of a system. (Values matches the RTPATH_STR_F_STYLE_XXX defines in
iprt/path.h!)
DOS DOS-style paths with forward and backward slashes, drive letters and UNC. Known from
DOS, OS/2 and Windows.
UNIX UNIX-style paths with forward slashes only.
Unknown The path style is not known, most likely because the guest additions arent active yet.
6.78 PointingHIDType
Type of pointing device used in a virtual machine.
None No mouse.
PS2Mouse PS/2 auxiliary device, a.k.a. mouse.
USBMouse USB mouse (relative pointer).
USBTablet USB tablet (absolute pointer). Also enables a relative USB mouse in addition.
ComboMouse Combined device, working as PS/2 or USB mouse, depending on guest behavior.
Using this device can have negative performance implications.
USBMultiTouch USB multi-touch device. Also enables the USB tablet and mouse devices.
366
6 Enumerations (enums)
6.79 PortMode
The PortMode enumeration represents possible communication modes for the virtual serial port
device.
6.80 ProcessCreateFlag
Guest process execution flags.
Note: The values are passed to the guest additions, so its not possible to change (move)
or reuse values.here. See EXECUTEPROCESSFLAG_XXX in GuestControlSvc.h.
WaitForProcessStartOnly Only use the specified timeout value to wait for starting the guest
process - the guest process itself then uses an infinite timeout.
IgnoreOrphanedProcesses Do not report an error when executed processes are still alive
when VBoxService or the guest OS is shutting down.
Hidden Do not show the started process according to the guest OS guidelines.
Profile Utilize the users profile data when exeuting a process. Only available for Windows
guests at the moment.
WaitForStdOut The guest process waits until all data from stdout is read out.
WaitForStdErr The guest process waits until all data from stderr is read out.
ExpandArguments Expands environment variables in process arguments.
Note: This is not yet implemented and is currently silently ignored. We will document
the protocolVersion number for this feature once it appears, so dont use it till then.
UnquotedArguments Work around for Windows and OS/2 applications not following normal
argument quoting and escaping rules. The arguments are passed to the application without
any extra quoting, just a single space between each.
367
6 Enumerations (enums)
6.81 ProcessInputFlag
Guest process input flags.
6.82 ProcessInputStatus
Process input statuses.
6.83 ProcessOutputFlag
Guest process output flags for specifying which type of output to retrieve.
6.84 ProcessPriority
Process priorities.
6.85 ProcessStatus
Process execution statuses.
368
6 Enumerations (enums)
6.86 ProcessWaitForFlag
Process waiting flags. Multiple flags can be combined.
6.87 ProcessWaitResult
Process waiting results. Depending on the process waiting flags (for more information see
ProcessWaitForFlag) the waiting result can vary based on the processes current status.
To wait for a guest process to terminate after it has been created by IGuestSession::processCreate()
or IGuestSession::processCreateEx() one would specify ProcessWaitFor_Terminate.
If a guest process has been started with ProcessCreateFlag_WaitForStdOut a client can wait
with ProcessWaitResult_StdOut for new data to arrive on stdout; same applies for ProcessCre-
ateFlag_WaitForStdErr and ProcessWaitResult_StdErr.
Timeout The waiting operation timed out. Also use if the guest process has timed out in the
guest side (kill attempted).
StdIn The process signalled that stdin became available for writing.
StdOut Data on stdout became available for reading.
369
6 Enumerations (enums)
6.88 ProcessorFeature
CPU features.
HWVirtEx
PAE
LongMode
NestedPaging
6.89 Reason
Internal event reason type.
6.90 Scope
Scope of the operation.
A generic enumeration used in various methods to define the action or argument scope.
Global
Machine
Session
6.91 ScreenLayoutMode
How IDisplay::setScreenLayout method should work.
Apply If the guest is already at desired mode then the API might avoid setting the mode.
Reset Always set the new mode even if the guest is already at desired mode.
6.92 SessionState
Session state. This enumeration represents possible values of IMachine::sessionState and
ISession::state attributes.
370
6 Enumerations (enums)
Locked In IMachine::sessionState, this means that the machine is currently locked for a session,
whose process identifier can then be found in the IMachine::sessionPID attribute.
In ISession::state, this means that a machine is currently locked for this session, and
the mutable machine object can be found in the ISession::machine attribute (see
IMachine::lockMachine() for details).
Spawning A new process is being spawned for the machine as a result of IMachine::launchVMProcess()
call. This state also occurs as a short transient state during an IMachine::lockMachine()
call.
Unlocking The session is being unlocked.
6.93 SessionType
Session type. This enumeration represents possible values of the ISession::type attribute.
6.94 SettingsVersion
Settings version of VirtualBox settings files. This is written to the version attribute of the root
VirtualBox element in the settings file XML and indicates which VirtualBox version wrote the
file.
371
6 Enumerations (enums)
6.95 StorageBus
The bus type of the storage controller (IDE, SATA, SCSI, SAS or Floppy); see IStorageController::bus.
Floppy
SAS
USB
PCIe
6.96 StorageControllerType
The exact variant of storage controller hardware presented to the guest; see IStorageController::controllerType.
IntelAhci An Intel AHCI SATA controller; this is the only variant for SATA.
PIIX3 An IDE controller of the PIIX3 variant.
PIIX4 An IDE controller of the PIIX4 variant.
ICH6 An IDE controller of the ICH6 variant.
I82078 A floppy disk controller; this is the only variant for floppy drives.
LsiLogicSas A variant of the LsiLogic controller using SAS.
USB Special USB based storage controller.
372
6 Enumerations (enums)
6.97 SymlinkReadFlag
Symbolic link reading flags.
6.98 SymlinkType
Symbolic link types. This is significant when creating links on the Windows platform, ignored
elsewhere.
6.99 TouchContactState
Touch event contact state.
6.100 USBConnectionSpeed
USB device/port speed state. This enumeration represents speeds at which a USB device can
communicate with the host.
The speed is a function of both the device itself and the port which it is attached to, including
hubs and cables in the path.
Note: Due to differences in USB stack implementations on various hosts, the reported
speed may not exactly match the actual speed.
373
6 Enumerations (enums)
6.101 USBControllerType
The USB controller type. IUSBController::type.
EHCI
XHCI
Last Last element (invalid). Used for parameter checks.
6.102 USBDeviceFilterAction
Actions for host USB device filters. See also: IHostUSBDeviceFilter, USBDeviceState
6.103 USBDeviceState
USB device state. This enumeration represents all possible states of the USB device physically
attached to the host computer regarding its state on the host computer and availability to guest
computers (all currently running virtual machines).
Once a supported USB device is attached to the host, global USB filters (IHost::USBDeviceFilters[])
are activated. They can either ignore the device, or put it to USBDeviceState_Held state, or do
nothing. Unless the device is ignored by global filters, filters of all currently running guests
(IUSBDeviceFilters::deviceFilters[]) are activated that can put it to USBDeviceState_Captured
state.
If the device was ignored by global filters, or didnt match any filters at all (including guest
ones), it is handled by the host in a normal way. In this case, the device state is determined by
the host and can be one of USBDeviceState_Unavailable, USBDeviceState_Busy or USBDeviceS-
tate_Available, depending on the current device usage.
Besides auto-capturing based on filters, the device can be manually captured by guests
(IConsole::attachUSBDevice()) if its state is USBDeviceState_Busy, USBDeviceState_Available or
USBDeviceState_Held.
Note: Due to differences in USB stack implementations in Linux and Win32, states US-
BDeviceState_Busy and USBDeviceState_Unavailable are applicable only to the Linux
version of the product. This also means that (IConsole::attachUSBDevice()) can only
succeed on Win32 if the device state is USBDeviceState_Held.
374
6 Enumerations (enums)
Available Not used by the host computer, available to guests (the host computer can also start
using the device at any time).
Held Held by the VirtualBox server (ignored by the host computer), available to guests.
Captured Captured by one of the guest computers, not available to anybody else.
6.104 VBoxEventType
Type of an event. See IEvent for an introduction to VirtualBox event handling.
375
6 Enumerations (enums)
376
6 Enumerations (enums)
6.105 VFSType
Virtual file systems supported by VFSExplorer.
File
Cloud
S3
WebDav
6.106 VirtualSystemDescriptionType
Used with IVirtualSystemDescription to describe the type of a configuration value.
Ignore
OS
Name
Product
Vendor
Version
377
6 Enumerations (enums)
ProductUrl
VendorUrl
Description
License
Miscellaneous
CPU
Memory
HardDiskControllerIDE
HardDiskControllerSATA
HardDiskControllerSCSI
HardDiskControllerSAS
HardDiskImage
Floppy
CDROM
NetworkAdapter
USBController
SoundCard
SettingsFile Not used/implemented right now, will be added later in 4.1.x.
6.107 VirtualSystemDescriptionValueType
Used with IVirtualSystemDescription::getValuesByType() to describe the value type to fetch.
Reference
Original
Auto
ExtraConfig
378
7 Host-Guest Communication Manager
The VirtualBox Host-Guest Communication Manager (HGCM) allows a guest application or a
guest driver to call a host shared library. The following features of VirtualBox are implemented
using HGCM:
Shared Folders
Shared Clipboard
Guest configuration interface
The shared library contains a so called HGCM service. The guest HGCM clients establish
connections to the service to call it. When calling a HGCM service the client supplies a function
code and a number of parameters for the function.
Name Description
size Size of the entire request.
version Version of the header, must be set to 0x10001.
type Type of the request.
rc HGCM return code, which will be set by the VMM device.
reserved1 A reserved field 1.
reserved2 A reserved field 2.
flags HGCM flags, set by the VMM device.
result The HGCM result code, set by the VMM device.
379
7 Host-Guest Communication Manager
Note:
7.2.2 Connect
The connection request must be issued by the guest HGCM client before it can call the HGCM
service (VMMDevHGCMConnect):
Name Description
header The generic HGCM request header with type equal to
VMMDevReq_HGCMConnect (60).
type The type of the service location information (32 bit).
loca- The service location information (128 bytes).
tion
clien- The client identifier assigned to the connecting client by the HGCM subsystem
tId (32-bit).
The type field tells the HGCM how to look for the requested service:
380
7 Host-Guest Communication Manager
VBoxSharedFolders
VBoxSharedClipboard
VBoxGuestPropSvc
VBoxSharedOpenGL
There is no difference between both types of HGCM services, only the location mechanism is
different.
The client identifier is returned by the host and must be used in all subsequent requests by the
client.
7.2.3 Disconnect
This request disconnects the client and makes the client identifier invalid (VMMDevHGCMDis-
connect):
Name Description
header The generic HGCM request header with type equal to
VMMDevReq_HGCMDisconnect (61).
clien- The client identifier previously returned by the connect request (32-bit).
tId
Name Description
header The generic HGCM request header with type equal to either
VMMDevReq_HGCMCall32 (62) or VMMDevReq_HGCMCall64 (63).
clien- The client identifier previously returned by the connect request (32-bit).
tId
func- The function code to be processed by the service (32 bit).
tion
cParms The number of following parameters (32-bit). This value is 0 if the function
requires no parameters.
parms An array of parameter description structures (HGCMFunctionParameter32 or
HGCMFunctionParameter64).
381
7 Host-Guest Communication Manager
The
7.2.5 Cancel
This request cancels a call request (VMMDevHGCMCancel):
Name Description
header The generic HGCM request header with type equal to VMMDevReq_HGCMCancel
(64).
VBoxGuestHGCMConnectInfo data;
382
7 Host-Guest Communication Manager
data.result = VINF_SUCCESS;
data.Loc.type = VMMDevHGCMLoc_LocalHost_Existing;
strcpy (data.Loc.u.host.achName, "VBoxSharedFolders");
if (RT_SUCCESS (rc))
{
rc = data.result;
}
if (RT_SUCCESS (rc))
{
/* Get the assigned client identifier. */
ulClientID = data.u32ClientID;
}
VBoxGuestHGCMDisconnectInfo data;
data.result = VINF_SUCCESS;
data.u32ClientID = ulClientID;
383
7 Host-Guest Communication Manager
} VBoxSFRead;
...
VBoxSFRead data;
/* Initialize parameters. */
data.root.type = VMMDevHGCMParmType_32bit;
data.root.u.value32 = pMap->root;
data.handle.type = VMMDevHGCMParmType_64bit;
data.handle.u.value64 = hFile;
data.offset.type = VMMDevHGCMParmType_64bit;
data.offset.u.value64 = offset;
data.cb.type = VMMDevHGCMParmType_32bit;
data.cb.u.value32 = *pcbBuffer;
data.buffer.type = VMMDevHGCMParmType_LinAddr_Out;
data.buffer.u.Pointer.size = *pcbBuffer;
data.buffer.u.Pointer.u.linearAddr = (uintptr_t)pBuffer;
if (RT_SUCCESS (rc))
{
rc = data.callInfo.result;
*pcbBuffer = data.cb.u.value32; /* This is returned by the HGCM service. */
}
VBOXGUEST_IOCTL_HGCM_CONNECT
VBOXGUEST_IOCTL_HGCM_DISCONNECT
VBOXGUEST_IOCTL_HGCM_CALL
These IOCTLs get the same input buffer as VbglHGCM* functions and the output buffer has the
same format as the input buffer. The same address can be used as the input and output buffers.
For example see the guest part of shared clipboard, which runs as an application and uses the
HGCM interface.
384
7 Host-Guest Communication Manager
The service must check the ptable->cbSize and ptable->u32Version fields of the input
structure and fill the remaining fields with function pointers of entry points and the size of the
required client buffer size.
The HGCM service gets a dedicated thread, which calls service entry points synchronously, that
is the service will be called again only when a previous call has returned. However, the guest
calls can be processed asynchronously. The service must call a completion callback when the
operation is actually completed. The callback can be issued from another thread as well.
Service entry points are listed in the VBox/hgcmsvc.h in the VBOXHGCMSVCFNTABLE structure.
Entry Description
pf- The service is being unloaded.
nUn-
load
pfn- A client u32ClientID is connected to the service. The pvClient parameter points
Con- to an allocated memory buffer which can be used by the service to store the client
nect information.
pfnDis- A client is being disconnected.
con-
nect
pfn- A guest client calls a service function. The callHandle must be used in the
Call VBOXHGCMSVCHELPERS::pfnCallComplete callback when the call has been
processed.
pfn- Called by the VirtualBox host components to perform functions which should be
Host- not accessible by the guest. Usually this entry point is used by VirtualBox to
Call configure the service.
pfn- The VM state is being saved and the service must save relevant information using
SaveS- the SSM API (VBox/ssm.h).
tate
pfn- The VM is being restored from the saved state and the service must load the saved
Load- information and be able to continue operations from the saved state.
State
385
8 RDP Web Control
The VirtualBox RDP Web Control (RDPWeb) provides remote access to a running VM. RDPWeb is
a RDP (Remote Desktop Protocol) client based on Flash technology and can be used from a Web
browser with a Flash plugin.
<div id=FlashRDP>
</div>
would have ElementId equal to FlashRDP and Element equal to the div element.
RDPWebClient.embedSWF(SWFFileName, ElementId)
Uses SWFObject library to replace the HTML element with the Flash movie.
RDPWebClient.isRDPWebControlById(ElementId)
Returns true if the given id refers to a RDPWeb Flash element.
386
8 RDP Web Control
RDPWebClient.isRDPWebControlByElement(Element)
Returns true if the given element is a RDPWeb Flash element.
RDPWebClient.getFlashById(ElementId)
Returns an element, which is referenced by the given id. This function will try to resolve
any element, event if it is not a Flash movie.
getProperty(Name)
setProperty(Name)
connect()
disconnect()
keyboardSendCAD()
Rebranding to Oracle.
387
9 Drag and Drop
Since VirtualBox 4.2 its possible to transfer files from host to the Linux guests by dragging files,
directories or text from the host into the guests screen. This is called drag and drop (DnD).
In version 5.0 support for Windows guests has been added, as well as the ability to transfer
data the other way around, that is, from the guest to the host.
Note: Currently only the VirtualBox Manager frontend supports drag and drop.
This chapter will show how to use the required interfaces provided by VirtualBox for adding
drag and drop functionality to third-party frontends.
text/uri-list - A list of URIs (Uniform Resource Identifier, see RFC3986) pointing to the file
and/or directory paths already transferred from the source to the target.
text/plain;charset=utf-8 and UTF8_STRING - text in UTF-8 format.
text/plain, TEXT and STRING - plain ASCII text, depending on the sources active ANSI
page (if any).
If, for whatever reason, a certain default format should not be supported or a new format
should be registered, IDnDSource and IDnDTarget have methods derived from IDnDBase which
provide adding, removing and enumerating specific formats.
388
9 Drag and Drop
Note: Registering new or removing default formats on the guest side currently is not
implemented.
389
10 VirtualBox external authentication
modules
VirtualBox supports arbitrary external modules to perform authentication. The module is
used when the authentication method is set to external for a particular VM VRDE access
and the library was specified with VBoxManage setproperty vrdeauthlibrary. Web ser-
vice also use the authentication module which was specified with VBoxManage setproperty
websrvauthlibrary.
This library will be loaded by the VM or web service process on demand, i.e. when the first
remote desktop connection is made by a client or when a client that wants to use the web service
logs on.
External authentication is the most flexible as the external handler can both choose to grant
access to everyone (like the null authentication method would) and delegate the request to
the guest authentication component. When delegating the request to the guest component, the
handler will still be called afterwards with the option to override the result.
An authentication library is required to implement exactly one entry point:
#include "VBoxAuth.h"
/**
* Authentication library entry point.
*
* Parameters:
*
* szCaller The name of the component which calls the library (UTF8).
* pUuid Pointer to the UUID of the accessed virtual machine. Can be NULL.
* guestJudgement Result of the guest authentication.
* szUser User name passed in by the client (UTF8).
* szPassword Password passed in by the client (UTF8).
* szDomain Domain passed in by the client (UTF8).
* fLogon Boolean flag. Indicates whether the entry point is called
* for a client logon or the client disconnect.
* clientId Server side unique identifier of the client.
*
* Return code:
*
* AuthResultAccessDenied Client access has been denied.
* AuthResultAccessGranted Client has the right to use the
* virtual machine.
* AuthResultDelegateToGuest Guest operating system must
* authenticate the client and the
* library must be called again with
* the result of the guest
* authentication.
*
* Note: When fLogon is 0, only pszCaller, pUuid and clientId are valid and the return
* code is ignored.
*/
AuthResult AUTHCALL AuthEntry(
const char *szCaller,
PAUTHUUID pUuid,
AuthGuestJudgement guestJudgement,
const char *szUser,
const char *szPassword
const char *szDomain
int fLogon,
390
10 VirtualBox external authentication modules
unsigned clientId)
{
/* Process request against your authentication source of choice. */
// if (authSucceeded(...))
// return AuthResultAccessGranted;
return AuthResultAccessDenied;
}
A note regarding the UUID implementation of the pUuid argument: VirtualBox uses a consis-
tent binary representation of UUIDs on all platforms. For this reason the integer fields comprising
the UUID are stored as little endian values. If you want to pass such UUIDs to code which as-
sumes that the integer fields are big endian (often also called network byte order), you need to
adjust the contents of the UUID to e.g. achieve the same string representation. The required
changes are:
Using this conversion you will get identical results when converting the binary UUID to the string
representation.
The guestJudgement argument contains information about the guest authentication status.
For the first call, it is always set to AuthGuestNotAsked. In case the AuthEntry function returns
AuthResultDelegateToGuest, a guest authentication will be attempted and another call to the
AuthEntry is made with its result. This can be either granted / denied or no judgement (the
guest component chose for whatever reason to not make a decision). In case there is a problem
with the guest authentication module (e.g. the Additions are not installed or not running or the
guest did not respond within a timeout), the not reacted status will be returned.
391
11 Using Java API
11.1 Introduction
VirtualBox can be controlled by a Java API, both locally (COM/XPCOM) and from remote (SOAP)
clients. As with the Python bindings, a generic glue layer tries to hide all platform differences,
allowing for source and binary compatibility on different platforms.
11.2 Requirements
To use the Java bindings, there are certain requirements depending on the platform. First of all,
you need JDK 1.5 (Java 5) or later. Also please make sure that the version of the VirtualBox API
.jar file exactly matches the version of VirtualBox you use. To avoid confusion, the VirtualBox API
provides versioning in the Java package name, e.g. the package is named org.virtualbox_3_2
for VirtualBox version 3.2.
XPCOM - for all platforms, but Microsoft Windows. A Java bridge based on JavaXPCOM is
shipped with VirtualBox. The classpath must contain vboxjxpcom.jar and the vbox.home
property must be set to location where the VirtualBox binaries are. Please make sure that
the JVM bitness matches bitness of VirtualBox you use as the XPCOM bridge relies on native
libraries.
Start your application like this:
COM - for Microsoft Windows. We rely on Jacob - a generic Java to COM bridge - which has
to be installed seperately. See http://sourceforge.net/projects/jacob-project/ for
installation instructions. Also, the VirtualBox provided vboxjmscom.jar must be in the
class path.
Start your application like this:
SOAP - all platforms. Java 6 is required, as it comes with builtin support for SOAP via the
JAX-WS library. Also, the VirtualBox provided vbojws.jar must be in the class path. In
the SOAP case its possible to create several VirtualBoxManager instances to communicate
with multiple VirtualBox hosts.
Start your application like this:
Exception handling is also generalized by the generic glue layer, so that all methods could
throw VBoxException containing human-readable text message (see getMessage() method)
along with wrapped original exception (see getWrapped() method).
392
11 Using Java API
11.3 Example
This example shows a simple use case of the Java API. Differences for SOAP vs. local version
are minimal, and limited to the connection setup phase (see ws variable). In the SOAP case its
possible to create several VirtualBoxManager instances to communicate with multiple VirtualBox
hosts.
import org.virtualbox_4_3.*;
....
VirtualBoxManager mgr = VirtualBoxManager.createInstance(null);
boolean ws = false; // or true, if we need the SOAP version
if (ws)
if (ws)
mgr.disconnect();
mgr.cleanup();
For more a complete example, see TestVBox.java, shipped with the SDK. It contains excep-
tion handling and error printing code, which is important for reliable larger scale projects.
It is good practice in long-running API clients to process the system events every now and then
in the main thread (does not work in other threads). As a rule of thumb it makes sense to process
them every few 100msec to every few seconds). This is done by calling
mgr.waitForEvents(0);
This avoids that a large number of system events accumulate, which can need a significant
amount of memory, and as they also play a role in object cleanup it helps freeing additional
memory in a timely manner which is used by the API implementation itself. Javas garbage
collection approach already needs more memory due to the delayed freeing of memory used
by no longer accessible objects, and not processing the system events exacerbates the memory
usage. The TestVBox.java example code sprinkles such lines over the code to achieve the
desired effect. In multi-threaded applications it can be called from the main thread periodically.
Sometimes its possible to use the non-zero timeout variant of the method, which then waits
the specified number of milliseconds for events, processing them immediately as they arrive. It
achieves better runtime behavior than separate sleeping/processing.
393
12 License information
The sample code files shipped with the SDK are generally licensed liberally to make it easy for
anyone to use this code for their own application code.
The Java files under bindings/webservice/java/jax-ws/ (library files for the object-
oriented web service) are, by contrast, licensed under the GNU Lesser General Public License
(LGPL) V2.1.
See sdk/bindings/webservice/java/jax-ws/src/COPYING.LIB for the full text of the
LGPL 2.1.
When in doubt, please refer to the individual source code files shipped with this SDK.
394
13 Main API change log
Generally, VirtualBox will maintain API compatibility within a major release; a major release
occurs when the first or the second of the three version components of VirtualBox change (that
is, in the x.y.z scheme, a major release is one where x or y change, but not when only z changes).
In other words, updates like those from 2.0.0 to 2.0.2 will not come with API breakages.
Migration between major releases most likely will lead to API breakage, so please make sure
you updated code accordingly. The OOWS Java wrappers enforce that mechanism by putting
VirtualBox classes into version-specific packages such as org.virtualbox_2_2. This approach
allows for connecting to multiple VirtualBox versions simultaneously from the same Java appli-
cation.
The following sections list incompatible changes that the Main API underwent since the origi-
nal release of this SDK Reference with VirtualBox 2.0. A change is deemed incompatible only
if it breaks existing client code (e.g. changes in method parameter lists, renamed or removed
interfaces and similar). In other words, the list does not contain new interfaces, methods or
attributes or other changes that do not affect existing client code.
395
13 Main API change log
Two new machine states have been introduced to allow proper distinction between sav-
ing state and taking a snapshot. MachineState::Saving now is used exclusively while the
VMs state is being saved, without any overlaps with snapshot functionality. The new state
MachineState::Snapshotting is used when an offline snapshot is taken and likewise the new
state MachineState::OnlineSnapshotting is used when an online snapshot is taken.
A new event has been introduced, which signals when a snapshot has been restored:
ISnapshotRestoredEvent. Previously the event ISnapshotDeletedEvent was signalled,
which isnt logical (but could be distinguished from actual deletion by the fact that the
snapshot was still there).
The method IVirtualBox::createMedium() replaces VirtualBox::createHardDisk().
Adjusting existing code needs adding two parameters with value AccessMode_ReadWrite
and DeviceType_HardDisk respectively. The new method supports creating floppy and
DVD images, and (less obviously) further API functionality such as cloning floppy images.
The method IMachine::getStorageControllerByInstance() now has an additional parameter
(first parameter), for specifying the storage bus which the storage controller must be using.
The method was not useful before, as the instance numbers are only unique for a specfic
storage bus.
396
13 Main API change log
397
13 Main API change log
398
13 Main API change log
399
13 Main API change log
The IGuestFile APIs are now implemented to provide native guest file access from the host.
The parameter list for IMedium::updateGuestAdditions() was modified. It now supports
specifying optional command line arguments for the Guest Additions installer performing
the actual update on the guest.
A new event IGuestUserStateChangedEvent was introduced to provide guest user status
updates to the host via event listeners. To use this event there needs to be at least the 4.3
Guest Additions installed on the guest. At the moment only the states Idle and InUse of
the GuestUserState enumeration arei supported on Windows guests, starting at Windows
2000 SP2.
The attribute IGuestSession::protocolVersion was added to provide a convenient way to
lookup the guest sessions protocol version it uses to communicate with the installed Guest
Additions on the guest. Older Guest Additions will set the protocol version to 1, whereas
Guest Additions 4.3 will set the protocol version to 2. This might change in the future as
new features arise.
IDisplay::getScreenResolution has been extended to return the display position in
the guest.
The IUSBController class is not a singleton of IMachine anymore but IMachine contains
a list of USB controllers present in the VM. The USB device filter handling was moved to
IUSBDeviceFilters.
400
13 Main API change log
401
13 Main API change log
The method IVirtualBox::openMedium() has one more parameter now, which allows re-
solving duplicate medium UUIDs without the need for external tools.
The INetworkAdapter interface has been cleaned up. The various methods to activate an
attachment type have been replaced by the INetworkAdapter::attachmentType setter.
402
13 Main API change log
Additionally each attachment mode now has its own attribute, which means that host only
networks no longer share the settings with bridged interfaces.
To allow introducing new network attachment implementations without making API
changes, the concept of a generic network attachment driver has been introduced, which
is configurable through key/value properties.
This version introduces the guest facilities concept. A guest facility either represents a mod-
ule or feature the guest is running or offering, which is defined by AdditionsFacilityType.
Each facility is member of a AdditionsFacilityClass and has a current status indicated by
AdditionsFacilityStatus, together with a timestamp (in ms) of the last status update.
To address the above concept, the following changes were made:
In the IGuest interface, the following were removed:
the supportsSeamless attribute;
the supportsGraphics attribute;
The function IGuest::getFacilityStatus() was added. It quickly provides a facilitys
status without the need to get the facility collection with IGuest::facilities.
The attribute IGuest::facilities was added to provide an easy to access collection of
all currently known guest facilities, that is, it contains all facilies where at least one
status update was made since the guest was started.
The interface IAdditionsFacility was added to represent a single facility returned by
IGuest::facilities.
AdditionsFacilityStatus was added to represent a facilitys overall status.
AdditionsFacilityType and AdditionsFacilityClass were added to represent the facilitys
type and class.
The confusingly named and impractical session APIs were changed. In existing client code,
the following changes need to be made:
Replace any IVirtualBox::openSession(uuidMachine, ...) API call with the
machines IMachine::lockMachine() call and a LockType.Write argument. The func-
tionality is unchanged, but instead of opening a direct session on a machine all
documentation now refers to obtaining a write lock on a machine for the client ses-
sion.
Similarly, replace any IVirtualBox::openExistingSession(uuidMachine, ...)
call with the machines IMachine::lockMachine() call and a LockType.Shared argu-
ment. Whereas it was previously impossible to connect a client session to a run-
ning VM process in a race-free manner, the new API will atomically either write-
lock the machine for the current session or establish a remote link to an exist-
ing session. Existing client code which tried calling both openSession() and
openExistingSession() can now use this one call instead.
Third, replace any IVirtualBox::openRemoteSession(uuidMachine, ...) call
with the machines IMachine::launchVMProcess() call. The functionality is un-
changed.
403
13 Main API change log
The SessionState enum was adjusted accordingly: Open is now Locked, Closed
is now Unlocked, Closing is now Unlocking.
Virtual machines created with VirtualBox 4.0 or later no longer register their media in the
global media registry in the VirtualBox.xml file. Instead, such machines list all their
media in their own machine XML files. As a result, a number of media-related APIs had to
be modified again.
Neither IVirtualBox::createHardDisk() nor IVirtualBox::openMedium() register
media automatically any more.
IMachine::attachDevice() and IMachine::mountMedium() now take an IMedium ob-
ject instead of a UUID as an argument. It is these two calls which add media to a
registry now (either a machine registry for machines created with VirtualBox 4.0 or
later or the global registry otherwise). As a consequence, if a medium is opened but
never attached to a machine, it is no longer added to any registry any more.
To reduce code duplication, the APIs IVirtualBox::findHardDisk(), getHard-
Disk(), findDVDImage(), getDVDImage(), findFloppyImage() and getFloppy-
Image() have all been merged into IVirtualBox::findMedium(), and IVirtual-
Box::openHardDisk(), openDVDImage() and openFloppyImage() have all been
merged into IVirtualBox::openMedium().
The rare use case of changing the UUID and parent UUID of a medium previously
handled by openHardDisk() is now in a separate IMedium::setIDs method.
ISystemProperties::get/setDefaultHardDiskFolder() have been removed
since disk images are now by default placed in each machines folder.
The ISystemProperties::infoVDSize attribute replaces the getMaxVDISize() API call;
this now uses bytes instead of megabytes.
Machine management APIs were enhanced as follows:
IVirtualBox::createMachine() is no longer restricted to creating machines in the de-
fault Machines folder, but can now create machines at arbitrary locations. For this
to work, the parameter list had to be changed.
The long-deprecated IVirtualBox::createLegacyMachine() API has been re-
moved.
To reduce code duplication and for consistency with the aforementioned media APIs,
IVirtualBox::getMachine() has been merged with IVirtualBox::findMachine(),
and IMachine::getSnapshot() has been merged with IMachine::findSnapshot().
IVirtualBox::unregisterMachine() was replaced with IMachine::unregister()
with additional functionality for cleaning up machine files.
IMachine::deleteSettings has been replaced by IMachine::delete, which allows
specifying which disk images are to be deleted as part of the deletion, and because it
can take a while it also returns a IProgress object reference, so that the completion
of the asynchronous activities can be monitored.
IConsole::forgetSavedState has been renamed to IConsole::discardSavedState().
All event callbacks APIs were replaced with a new, generic event mechanism that can be
used both locally (COM, XPCOM) and remotely (web services). Also, the new mechanism
is usable from scripting languages and a local Java. See events for details. The new concept
will require changes to all clients that used event callbacks.
additionsActive() was replaced with additionsRunLevel() and getAdditionsStatus() in
order to support a more detailed status of the current Guest Additions loading/readiness
state. IGuest::additionsVersion() no longer returns the Guest Additions interface version
but the installed Guest Additions version and revision in form of 3.3.0r12345.
404
13 Main API change log
To address shared folders auto-mounting support, the following APIs were extended to
require an additional automount parameter:
IVirtualBox::createSharedFolder()
IMachine::createSharedFolder()
IConsole::createSharedFolder()
Also, a new property named autoMount was added to the ISharedFolder interface.
The appliance (OVF) APIs were enhanced as follows:
IMachine::export received an extra parameter location, which is used to decide
for the disk naming.
IAppliance::write() received an extra parameter manifest, which can suppress creat-
ing the manifest file on export.
IVFSExplorer::entryList() received two extra parameters sizes and modes, which
contains the sizes (in bytes) and the file access modes (in octal form) of the returned
files.
Support for remote desktop access to virtual machines has been cleaned up to allow third
party implementations of the remote desktop server. This is called the VirtualBox Remote
Desktop Extension (VRDE) and can be added to VirtualBox by installing the corresponding
extension package; see the VirtualBox User Manual for details.
The following API changes were made to support the VRDE interface:
IVRDPServer has been renamed to IVRDEServer.
IRemoteDisplayInfo has been renamed to IVRDEServerInfo.
IMachine::VRDEServer replaces VRDPServer.
IConsole::VRDEServerInfo replaces RemoteDisplayInfo.
ISystemProperties::VRDEAuthLibrary replaces RemoteDisplayAuthLibrary.
The following methods have been implemented in IVRDEServer to support generic
VRDE properties:
IVRDEServer::setVRDEProperty
IVRDEServer::getVRDEProperty
IVRDEServer::VRDEProperties
A few implementation-specific attributes of the old IVRDPServer interface have been
removed and replaced with properties:
IVRDPServer::Ports has been replaced with the "TCP/Ports" property. The
property value is a string, which contains a comma-separated list of ports or
ranges of ports. Use a dash between two port numbers to specify a range. Exam-
ple: "5000,5010-5012"
IVRDPServer::NetAddress has been replaced with the "TCP/Address" prop-
erty. The property value is an IP address string. Example: "127.0.0.1"
IVRDPServer::VideoChannel has been replaced with the "VideoChannel/Enabled"
property. The property value is either "true" or "false"
IVRDPServer::VideoChannelQuality has been replaced with the "VideoChannel/Quality"
property. The property value is a string which contain a decimal number in range
10..100. Invalid values are ignored and the quality is set to the default value 75.
Example: "50"
The VirtualBox external authentication module interface has been updated and made more
generic. Because of that, VRDPAuthType enumeration has been renamed to AuthType.
405
13 Main API change log
406
13 Main API change log
handled specially, and that means you can have more than one of them. As before, drives
can only be changed while the VM is powered off. Mounting (or unmounting) removable
media at runtime is possible with IMachine::mountMedium().
Newly created virtual machines have no storage controllers associated with them. Even
the IDE Controller needs to be created explicitly. The floppy controller is now visible as
a separate controller, with a new storage bus type. For each storage bus type you can
query the device types which can be attached, so that it is not necessary to hardcode any
attachment rules.
This required matching changes e.g. in the callback interfaces (the medium specific change
notification was replaced by a generic medium change notification) and removing associ-
ated enums (e.g. DriveState). In many places the incorrect use of the plural form media
was replaced by medium, to improve consistency.
Reading the IMedium::state attribute no longer automatically performs an accessibility
check; a new method IMedium::refreshState() does this. The attribute only returns the
state now.
There were substantial changes related to snapshots, triggered by the branched snap-
shots functionality introduced with version 3.1. IConsole::discardSnapshot was re-
named to IConsole::deleteSnapshot(). IConsole::discardCurrentState and ICon-
sole::discardCurrentSnapshotAndState were removed; corresponding new functionality is
in IConsole::restoreSnapshot(). Also, when IConsole::takeSnapshot() is called
on a running virtual machine, a live snapshot will be created. The old behavior was to
temporarily pause the virtual machine while creating an online snapshot.
The IVRDPServer, IRemoteDisplayInfo" and IConsoleCallback interfaces were
changed to reflect VRDP server ability to bind to one of available ports from a list of
ports.
The IVRDPServer::port attribute has been replaced with IVRDPServer::ports, which
is a comma-separated list of ports or ranges of ports.
An IRemoteDisplayInfo::port" attribute has been added for querying the actual port
VRDP server listens on.
An IConsoleCallback::onRemoteDisplayInfoChange() notification callback has been added.
The parameter lists for the following functions were modified:
IHost::removeHostOnlyNetworkInterface()
IHost::removeUSBDeviceFilter()
In the OOWS bindings for JAX-WS, the behavior of structures changed: for one, we imple-
mented natural structures field access so you can just call a get method to obtain a field.
Secondly, setters in structures were disabled as they have no expected effect and were at
best misleading.
407
13 Main API change log
The uses of NULL strings have been changed greatly. All out parameters now use empty
strings to signal a null value. For in parameters both the old NULL and empty string is
allowed. This change was necessary to support more client bindings, especially using the
web service API. Many of them either have no special NULL value or have trouble dealing
with it correctly in the respective library code.
Accidentally, the TSBool interface still appeared in 3.0.0, and was removed in 3.0.2. This
is an SDK bug, do not use the SDK for VirtualBox 3.0.0 for developing clients.
The type of IVirtualBoxErrorInfo::resultCode changed from result to long.
The parameter list of IVirtualBox::openHardDisk was changed.
The method IConsole::discardSavedState was renamed to IConsole::forgetSavedState, and
a parameter was added.
The method IConsole::powerDownAsync was renamed to IConsole::powerDown, and the
previous method with that name was deleted. So effectively a parameter was added.
In the IFramebuffer interface, the following were removed:
the operationSupported attribute;
(as a result, the FramebufferAccelerationOperation enum was no longer needed
and removed as well);
the solidFill() method;
the copyScreenBits() method.
In the IDisplay interface, the following were removed:
the setupInternalFramebuffer() method;
the lockFramebuffer() method;
the unlockFramebuffer() method;
the registerExternalFramebuffer() method.
408
13 Main API change log
IHostFloppyDriveCollection
IHostUSBDeviceCollection
IHostUSBDeviceFilterCollection
IProgressCollection
ISharedFolderCollection
ISnapshotCollection
IUSBDeviceCollection
IUSBDeviceFilterCollection
Since Host Interface Networking was renamed to bridged networking and host-only
networking was introduced, all associated interfaces needed renaming as well. In detail:
The HostNetworkInterfaceType enum has been renamed to HostNetworkInterfaceMediumType
The IHostNetworkInterface::type attribute has been renamed to IHostNetworkInterface::mediumType
INetworkAdapter::attachToHostInterface() has been renamed to INetworkAdapter::attachToBridgedInterfa
In the IHost interface, createHostNetworkInterface() has been renamed to
createHostOnlyNetworkInterface()
Similarly, removeHostNetworkInterface() has been renamed to removeHostOnlyNetworkInterface()
409
13 Main API change log
As a result, all parts of the API that previously referenced IHardDisk, IDVDIm-
age or IFloppyImage or any of the old subclasses are gone and will have replace-
ments that use IHardDisk2, IDVDImage2 and IFloppyImage2; see, for example, IMa-
chine::attachHardDisk2.
In particular, the IVirtualBox::hardDisks2 array replaces the earlier IVirtual-
Box::hardDisks collection.
IGuestOSType was extended to group operating systems into families and for 64-bit sup-
port.
The IHostNetworkInterface interface was completely rewritten to account for the changes
in how Host Interface Networking is now implemented in VirtualBox 2.1.
The IVirtualBox::machines2[] array replaces the former IVirtualBox::machines collection.
410