VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h@ 54791

Last change on this file since 54791 was 54487, checked in by vboxsync, 10 years ago

FE/VBoxManage: Add support for medium encryption

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.8 KB
Line 
1/* $Id: VBoxManage.h 54487 2015-02-25 12:50:45Z vboxsync $ */
2/** @file
3 * VBoxManage - VirtualBox command-line interface, internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___H_VBOXMANAGE
19#define ___H_VBOXMANAGE
20
21#ifndef VBOX_ONLY_DOCS
22#include <VBox/com/com.h>
23#include <VBox/com/ptr.h>
24#include <VBox/com/VirtualBox.h>
25#include <VBox/com/string.h>
26#include <VBox/com/array.h>
27#endif /* !VBOX_ONLY_DOCS */
28
29#include <iprt/types.h>
30#include <iprt/message.h>
31#include <iprt/stream.h>
32#include <iprt/getopt.h>
33
34////////////////////////////////////////////////////////////////////////////////
35//
36// definitions
37//
38////////////////////////////////////////////////////////////////////////////////
39
40/** @name Syntax diagram category.
41 * @{ */
42#define USAGE_DUMPOPTS 0
43#define USAGE_LIST RT_BIT_64(0)
44#define USAGE_SHOWVMINFO RT_BIT_64(1)
45#define USAGE_REGISTERVM RT_BIT_64(2)
46#define USAGE_UNREGISTERVM RT_BIT_64(3)
47#define USAGE_CREATEVM RT_BIT_64(4)
48#define USAGE_MODIFYVM RT_BIT_64(5)
49#define USAGE_CLONEVM RT_BIT_64(6)
50#define USAGE_STARTVM RT_BIT_64(7)
51#define USAGE_CONTROLVM RT_BIT_64(8)
52#define USAGE_DISCARDSTATE RT_BIT_64(9)
53#define USAGE_SNAPSHOT RT_BIT_64(10)
54#define USAGE_CLOSEMEDIUM RT_BIT_64(11)
55#define USAGE_SHOWMEDIUMINFO RT_BIT_64(12)
56#define USAGE_CREATEMEDIUM RT_BIT_64(13)
57#define USAGE_MODIFYMEDIUM RT_BIT_64(14)
58#define USAGE_CLONEMEDIUM RT_BIT_64(15)
59#define USAGE_CREATEHOSTIF RT_BIT_64(17)
60#define USAGE_REMOVEHOSTIF RT_BIT_64(18)
61#define USAGE_GETEXTRADATA RT_BIT_64(19)
62#define USAGE_SETEXTRADATA RT_BIT_64(20)
63#define USAGE_SETPROPERTY RT_BIT_64(21)
64#define USAGE_USBFILTER (RT_BIT_64(22) | RT_BIT_64(23) | RT_BIT_64(24))
65#define USAGE_USBFILTER_ADD RT_BIT_64(22)
66#define USAGE_USBFILTER_MODIFY RT_BIT_64(23)
67#define USAGE_USBFILTER_REMOVE RT_BIT_64(24)
68#define USAGE_SHAREDFOLDER (RT_BIT_64(25) | RT_BIT_64(26))
69#define USAGE_SHAREDFOLDER_ADD RT_BIT_64(25)
70#define USAGE_SHAREDFOLDER_REMOVE RT_BIT_64(26)
71#define USAGE_LOADSYMS RT_BIT_64(29)
72#define USAGE_LOADMAP RT_BIT_64(30)
73#define USAGE_SETHDUUID RT_BIT_64(31)
74#define USAGE_CONVERTFROMRAW RT_BIT_64(32)
75#define USAGE_LISTPARTITIONS RT_BIT_64(33)
76#define USAGE_CREATERAWVMDK RT_BIT_64(34)
77#define USAGE_DEBUGVM RT_BIT_64(35)
78#define USAGE_ADOPTSTATE RT_BIT_64(36)
79#define USAGE_MODINSTALL RT_BIT_64(37)
80#define USAGE_MODUNINSTALL RT_BIT_64(38)
81#define USAGE_RENAMEVMDK RT_BIT_64(39)
82#ifdef VBOX_WITH_GUEST_PROPS
83# define USAGE_GUESTPROPERTY RT_BIT_64(40)
84#endif /* VBOX_WITH_GUEST_PROPS defined */
85#define USAGE_CONVERTTORAW RT_BIT_64(41)
86#define USAGE_METRICS RT_BIT_64(42)
87#define USAGE_CONVERTHD RT_BIT_64(43)
88#define USAGE_IMPORTAPPLIANCE RT_BIT_64(44)
89#define USAGE_EXPORTAPPLIANCE RT_BIT_64(45)
90#define USAGE_HOSTONLYIFS RT_BIT_64(46)
91#define USAGE_DHCPSERVER RT_BIT_64(47)
92#define USAGE_DUMPHDINFO RT_BIT_64(48)
93#define USAGE_STORAGEATTACH RT_BIT_64(49)
94#define USAGE_STORAGECONTROLLER RT_BIT_64(50)
95#ifdef VBOX_WITH_GUEST_CONTROL
96# define USAGE_GUESTCONTROL RT_BIT_64(51)
97#endif /* VBOX_WITH_GUEST_CONTROL defined */
98#define USAGE_DEBUGLOG RT_BIT_64(52)
99#define USAGE_SETHDPARENTUUID RT_BIT_64(53)
100#define USAGE_PASSWORDHASH RT_BIT_64(54)
101#define USAGE_EXTPACK RT_BIT_64(55)
102#define USAGE_BANDWIDTHCONTROL RT_BIT_64(56)
103#define USAGE_GUESTSTATS RT_BIT_64(57)
104#define USAGE_REPAIRHD RT_BIT_64(58)
105#define USAGE_NATNETWORK RT_BIT_64(59)
106#define USAGE_MEDIUMPROPERTY RT_BIT_64(60)
107#define USAGE_ENCRYPTMEDIUM RT_BIT_64(61)
108#define USAGE_ALL (~(uint64_t)0)
109/** @} */
110
111#ifdef VBOX_WITH_GUEST_CONTROL
112# define USAGE_GSTCTRL_EXEC RT_BIT(0)
113# define USAGE_GSTCTRL_COPYFROM RT_BIT(1)
114# define USAGE_GSTCTRL_COPYTO RT_BIT(2)
115# define USAGE_GSTCTRL_CREATEDIR RT_BIT(3)
116# define USAGE_GSTCTRL_REMOVEDIR RT_BIT(4)
117# define USAGE_GSTCTRL_REMOVEFILE RT_BIT(5)
118# define USAGE_GSTCTRL_RENAME RT_BIT(6)
119# define USAGE_GSTCTRL_CREATETEMP RT_BIT(7)
120# define USAGE_GSTCTRL_LIST RT_BIT(8)
121# define USAGE_GSTCTRL_PROCESS RT_BIT(9)
122# define USAGE_GSTCTRL_KILL RT_BIT(10)
123# define USAGE_GSTCTRL_SESSION RT_BIT(11)
124# define USAGE_GSTCTRL_STAT RT_BIT(12)
125# define USAGE_GSTCTRL_UPDATEADDS RT_BIT(13)
126# define USAGE_GSTCTRL_WATCH RT_BIT(14)
127#endif
128
129typedef uint64_t USAGECATEGORY;
130
131/** command handler argument */
132struct HandlerArg
133{
134 int argc;
135 char **argv;
136
137#ifndef VBOX_ONLY_DOCS
138 ComPtr<IVirtualBox> virtualBox;
139 ComPtr<ISession> session;
140#endif
141};
142
143/** flag whether we're in internal mode */
144extern bool g_fInternalMode;
145
146/** showVMInfo details */
147typedef enum
148{
149 VMINFO_NONE = 0,
150 VMINFO_STANDARD = 1, /**< standard details */
151 VMINFO_FULL = 2, /**< both */
152 VMINFO_MACHINEREADABLE = 3, /**< both, and make it machine readable */
153 VMINFO_COMPACT = 4
154} VMINFO_DETAILS;
155
156////////////////////////////////////////////////////////////////////////////////
157//
158// global variables
159//
160////////////////////////////////////////////////////////////////////////////////
161
162extern bool g_fDetailedProgress; // in VBoxManage.cpp
163
164////////////////////////////////////////////////////////////////////////////////
165//
166// prototypes
167//
168////////////////////////////////////////////////////////////////////////////////
169
170/* VBoxManageHelp.cpp */
171void printUsage(USAGECATEGORY fCategory, uint32_t fSubCategory, PRTSTREAM pStrm);
172RTEXITCODE errorSyntax(USAGECATEGORY fCategory, const char *pszFormat, ...);
173RTEXITCODE errorSyntaxEx(USAGECATEGORY fCategory, uint32_t fSubCategory, const char *pszFormat, ...);
174RTEXITCODE errorGetOpt(USAGECATEGORY fCategory, int rc, union RTGETOPTUNION const *pValueUnion);
175RTEXITCODE errorGetOptEx(USAGECATEGORY fCategory, uint32_t fSubCategory, int rc, union RTGETOPTUNION const *pValueUnion);
176RTEXITCODE errorArgument(const char *pszFormat, ...);
177
178void printUsageInternal(USAGECATEGORY fCategory, PRTSTREAM pStrm);
179
180#ifndef VBOX_ONLY_DOCS
181HRESULT showProgress(ComPtr<IProgress> progress);
182#endif
183
184/* VBoxManage.cpp */
185void showLogo(PRTSTREAM pStrm);
186
187#ifndef VBOX_ONLY_DOCS
188RTEXITCODE readPasswordFile(const char *pszFilename, com::Utf8Str *pPasswd);
189
190int handleInternalCommands(HandlerArg *a);
191#endif /* !VBOX_ONLY_DOCS */
192
193/* VBoxManageControlVM.cpp */
194int handleControlVM(HandlerArg *a);
195#ifndef VBOX_ONLY_DOCS
196unsigned int getMaxNics(IVirtualBox* vbox, IMachine* mach);
197#endif
198
199/* VBoxManageModifyVM.cpp */
200#ifndef VBOX_ONLY_DOCS
201void parseGroups(const char *pcszGroups, com::SafeArray<BSTR> *pGroups);
202#endif
203int handleModifyVM(HandlerArg *a);
204
205/* VBoxManageDebugVM.cpp */
206int handleDebugVM(HandlerArg *a);
207
208/* VBoxManageGuestProp.cpp */
209extern void usageGuestProperty(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2);
210
211/* VBoxManageGuestCtrl.cpp */
212extern void usageGuestControl(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2, uint32_t fSubCategory);
213
214#ifndef VBOX_ONLY_DOCS
215/* VBoxManageGuestProp.cpp */
216extern int handleGuestProperty(HandlerArg *a);
217
218/* VBoxManageGuestCtrl.cpp */
219extern int handleGuestControl(HandlerArg *a);
220
221/* VBoxManageVMInfo.cpp */
222HRESULT showSnapshots(ComPtr<ISnapshot> &rootSnapshot,
223 ComPtr<ISnapshot> &currentSnapshot,
224 VMINFO_DETAILS details,
225 const com::Utf8Str &prefix = "",
226 int level = 0);
227int handleShowVMInfo(HandlerArg *a);
228HRESULT showVMInfo(ComPtr<IVirtualBox> pVirtualBox,
229 ComPtr<IMachine> pMachine,
230 ComPtr<ISession> pSession,
231 VMINFO_DETAILS details = VMINFO_NONE);
232const char *machineStateToName(MachineState_T machineState, bool fShort);
233HRESULT showBandwidthGroups(ComPtr<IBandwidthControl> &bwCtrl,
234 VMINFO_DETAILS details);
235
236/* VBoxManageList.cpp */
237int handleList(HandlerArg *a);
238
239/* VBoxManageMetrics.cpp */
240int handleMetrics(HandlerArg *a);
241
242/* VBoxManageMisc.cpp */
243int handleRegisterVM(HandlerArg *a);
244int handleUnregisterVM(HandlerArg *a);
245int handleCreateVM(HandlerArg *a);
246int handleCloneVM(HandlerArg *a);
247int handleStartVM(HandlerArg *a);
248int handleDiscardState(HandlerArg *a);
249int handleAdoptState(HandlerArg *a);
250int handleGetExtraData(HandlerArg *a);
251int handleSetExtraData(HandlerArg *a);
252int handleSetProperty(HandlerArg *a);
253int handleSharedFolder(HandlerArg *a);
254int handleExtPack(HandlerArg *a);
255
256/* VBoxManageDisk.cpp */
257HRESULT openMedium(HandlerArg *a, const char *pszFilenameOrUuid,
258 DeviceType_T enmDevType, AccessMode_T enmAccessMode,
259 ComPtr<IMedium> &pMedium, bool fForceNewUuidOnOpen,
260 bool fSilent);
261int handleCreateMedium(HandlerArg *a);
262int handleModifyMedium(HandlerArg *a);
263int handleCloneMedium(HandlerArg *a);
264int handleMediumProperty(HandlerArg *a);
265int handleEncryptMedium(HandlerArg *a);
266RTEXITCODE handleConvertFromRaw(int argc, char *argv[]);
267HRESULT showMediumInfo(const ComPtr<IVirtualBox> &pVirtualBox,
268 const ComPtr<IMedium> &pMedium,
269 const char *pszParentUUID,
270 bool fOptLong);
271int handleShowMediumInfo(HandlerArg *a);
272int handleCloseMedium(HandlerArg *a);
273int parseMediumType(const char *psz, MediumType_T *penmMediumType);
274int parseBool(const char *psz, bool *pb);
275
276/* VBoxManageStorageController.cpp */
277int handleStorageAttach(HandlerArg *a);
278int handleStorageController(HandlerArg *a);
279
280// VBoxManageImport.cpp
281int handleImportAppliance(HandlerArg *a);
282int handleExportAppliance(HandlerArg *a);
283
284// VBoxManageSnapshot.cpp
285int handleSnapshot(HandlerArg *a);
286
287/* VBoxManageUSB.cpp */
288int handleUSBFilter(HandlerArg *a);
289
290/* VBoxManageHostonly.cpp */
291int handleHostonlyIf(HandlerArg *a);
292
293/* VBoxManageDHCPServer.cpp */
294int handleDHCPServer(HandlerArg *a);
295
296/* VBoxManageNATNetwork.cpp */
297int handleNATNetwork(HandlerArg *a);
298
299
300/* VBoxManageBandwidthControl.cpp */
301int handleBandwidthControl(HandlerArg *a);
302
303#endif /* !VBOX_ONLY_DOCS */
304
305#endif /* !___H_VBOXMANAGE */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette