VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp@ 53062

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

USB: Integrate USB sniffer. Make it possible to specify a file to dump the traffic to when attaching a USB device with VBoxManage

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 49.4 KB
Line 
1/* $Id: VBoxManageHelp.cpp 53062 2014-10-15 12:34:18Z vboxsync $ */
2/** @file
3 * VBoxManage - help and other message output.
4 */
5
6/*
7 * Copyright (C) 2006-2014 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
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#include <VBox/version.h>
23
24#include <iprt/buildconfig.h>
25#include <iprt/ctype.h>
26#include <iprt/err.h>
27#include <iprt/getopt.h>
28#include <iprt/stream.h>
29
30#include "VBoxManage.h"
31
32
33
34void showLogo(PRTSTREAM pStrm)
35{
36 static bool s_fShown; /* show only once */
37
38 if (!s_fShown)
39 {
40 RTStrmPrintf(pStrm, VBOX_PRODUCT " Command Line Management Interface Version "
41 VBOX_VERSION_STRING "\n"
42 "(C) 2005-" VBOX_C_YEAR " " VBOX_VENDOR "\n"
43 "All rights reserved.\n"
44 "\n");
45 s_fShown = true;
46 }
47}
48
49void printUsage(USAGECATEGORY fCategory, uint32_t fSubCategory, PRTSTREAM pStrm)
50{
51 bool fDumpOpts = false;
52#ifdef RT_OS_LINUX
53 bool fLinux = true;
54#else
55 bool fLinux = false;
56#endif
57#ifdef RT_OS_WINDOWS
58 bool fWin = true;
59#else
60 bool fWin = false;
61#endif
62#ifdef RT_OS_SOLARIS
63 bool fSolaris = true;
64#else
65 bool fSolaris = false;
66#endif
67#ifdef RT_OS_FREEBSD
68 bool fFreeBSD = true;
69#else
70 bool fFreeBSD = false;
71#endif
72#ifdef RT_OS_DARWIN
73 bool fDarwin = true;
74#else
75 bool fDarwin = false;
76#endif
77#ifdef VBOX_WITH_VBOXSDL
78 bool fVBoxSDL = true;
79#else
80 bool fVBoxSDL = false;
81#endif
82
83 if (fCategory == USAGE_DUMPOPTS)
84 {
85 fDumpOpts = true;
86 fLinux = true;
87 fWin = true;
88 fSolaris = true;
89 fFreeBSD = true;
90 fDarwin = true;
91 fVBoxSDL = true;
92 fCategory = USAGE_ALL;
93 }
94
95 RTStrmPrintf(pStrm,
96 "Usage:\n"
97 "\n");
98
99 if (fCategory == USAGE_ALL)
100 RTStrmPrintf(pStrm,
101 " VBoxManage [<general option>] <command>\n"
102 " \n \n"
103 "General Options:\n \n"
104 " [-v|--version] print version number and exit\n"
105 " [-q|--nologo] suppress the logo\n"
106 " [--settingspw <pw>] provide the settings password\n"
107 " [--settingspwfile <file>] provide a file containing the settings password\n"
108 " \n \n"
109 "Commands:\n \n");
110
111 const char *pcszSep1 = " ";
112 const char *pcszSep2 = " ";
113 if (fCategory != USAGE_ALL)
114 {
115 pcszSep1 = "VBoxManage";
116 pcszSep2 = "";
117 }
118
119#define SEP pcszSep1, pcszSep2
120
121 if (fCategory & USAGE_LIST)
122 RTStrmPrintf(pStrm,
123 "%s list [--long|-l]%s vms|runningvms|ostypes|hostdvds|hostfloppies|\n"
124#if defined(VBOX_WITH_NETFLT)
125 " intnets|bridgedifs|hostonlyifs|natnets|dhcpservers|\n"
126#else
127 " intnets|bridgedifs|natnets|dhcpservers|hostinfo|\n"
128#endif
129 " hostinfo|hostcpuids|hddbackends|hdds|dvds|floppies|\n"
130 " usbhost|usbfilters|systemproperties|extpacks|\n"
131 " groups|webcams|screenshotformats\n"
132 "\n", SEP);
133
134 if (fCategory & USAGE_SHOWVMINFO)
135 RTStrmPrintf(pStrm,
136 "%s showvminfo %s <uuid|vmname> [--details]\n"
137 " [--machinereadable]\n"
138 "%s showvminfo %s <uuid|vmname> --log <idx>\n"
139 "\n", SEP, SEP);
140
141 if (fCategory & USAGE_REGISTERVM)
142 RTStrmPrintf(pStrm,
143 "%s registervm %s <filename>\n"
144 "\n", SEP);
145
146 if (fCategory & USAGE_UNREGISTERVM)
147 RTStrmPrintf(pStrm,
148 "%s unregistervm %s <uuid|vmname> [--delete]\n"
149 "\n", SEP);
150
151 if (fCategory & USAGE_CREATEVM)
152 RTStrmPrintf(pStrm,
153 "%s createvm %s --name <name>\n"
154 " [--groups <group>, ...]\n"
155 " [--ostype <ostype>]\n"
156 " [--register]\n"
157 " [--basefolder <path>]\n"
158 " [--uuid <uuid>]\n"
159 "\n", SEP);
160
161 if (fCategory & USAGE_MODIFYVM)
162 {
163 RTStrmPrintf(pStrm,
164 "%s modifyvm %s <uuid|vmname>\n"
165 " [--name <name>]\n"
166 " [--groups <group>, ...]\n"
167 " [--description <desc>]\n"
168 " [--ostype <ostype>]\n"
169 " [--iconfile <filename>]\n"
170 " [--memory <memorysize in MB>]\n"
171 " [--pagefusion on|off]\n"
172 " [--vram <vramsize in MB>]\n"
173 " [--acpi on|off]\n"
174#ifdef VBOX_WITH_PCI_PASSTHROUGH
175 " [--pciattach 03:04.0]\n"
176 " [--pciattach 03:04.0@02:01.0]\n"
177 " [--pcidetach 03:04.0]\n"
178#endif
179 " [--ioapic on|off]\n"
180 " [--hpet on|off]\n"
181 " [--triplefaultreset on|off]\n"
182 " [--paravirtprovider none|default|legacy|minimal|\n"
183 " hyperv]\n"
184 " [--hwvirtex on|off]\n"
185 " [--nestedpaging on|off]\n"
186 " [--largepages on|off]\n"
187 " [--vtxvpid on|off]\n"
188 " [--vtxux on|off]\n"
189 " [--pae on|off]\n"
190 " [--longmode on|off]\n"
191 " [--synthcpu on|off]\n"
192 " [--cpuidset <leaf> <eax> <ebx> <ecx> <edx>]\n"
193 " [--cpuidremove <leaf>]\n"
194 " [--cpuidremoveall]\n"
195 " [--hardwareuuid <uuid>]\n"
196 " [--cpus <number>]\n"
197 " [--cpuhotplug on|off]\n"
198 " [--plugcpu <id>]\n"
199 " [--unplugcpu <id>]\n"
200 " [--cpuexecutioncap <1-100>]\n"
201 " [--rtcuseutc on|off]\n"
202#ifdef VBOX_WITH_VMSVGA
203 " [--graphicscontroller none|vboxvga|vmsvga]\n"
204#else
205 " [--graphicscontroller none|vboxvga]\n"
206#endif
207 " [--monitorcount <number>]\n"
208 " [--accelerate3d on|off]\n"
209#ifdef VBOX_WITH_VIDEOHWACCEL
210 " [--accelerate2dvideo on|off]\n"
211#endif
212 " [--firmware bios|efi|efi32|efi64]\n"
213 " [--chipset ich9|piix3]\n"
214 " [--bioslogofadein on|off]\n"
215 " [--bioslogofadeout on|off]\n"
216 " [--bioslogodisplaytime <msec>]\n"
217 " [--bioslogoimagepath <imagepath>]\n"
218 " [--biosbootmenu disabled|menuonly|messageandmenu]\n"
219 " [--biossystemtimeoffset <msec>]\n"
220 " [--biospxedebug on|off]\n"
221 " [--boot<1-4> none|floppy|dvd|disk|net>]\n"
222 " [--nic<1-N> none|null|nat|bridged|intnet"
223#if defined(VBOX_WITH_NETFLT)
224 "|hostonly"
225#endif
226 "|\n"
227 " generic|natnetwork"
228 "]\n"
229 " [--nictype<1-N> Am79C970A|Am79C973"
230#ifdef VBOX_WITH_E1000
231 "|\n 82540EM|82543GC|82545EM"
232#endif
233#ifdef VBOX_WITH_VIRTIO
234 "|\n virtio"
235#endif /* VBOX_WITH_VIRTIO */
236 "]\n"
237 " [--cableconnected<1-N> on|off]\n"
238 " [--nictrace<1-N> on|off]\n"
239 " [--nictracefile<1-N> <filename>]\n"
240 " [--nicproperty<1-N> name=[value]]\n"
241 " [--nicspeed<1-N> <kbps>]\n"
242 " [--nicbootprio<1-N> <priority>]\n"
243 " [--nicpromisc<1-N> deny|allow-vms|allow-all]\n"
244 " [--nicbandwidthgroup<1-N> none|<name>]\n"
245 " [--bridgeadapter<1-N> none|<devicename>]\n"
246#if defined(VBOX_WITH_NETFLT)
247 " [--hostonlyadapter<1-N> none|<devicename>]\n"
248#endif
249 " [--intnet<1-N> <network name>]\n"
250 " [--nat-network<1-N> <network name>]\n"
251 " [--nicgenericdrv<1-N> <driver>\n"
252 " [--natnet<1-N> <network>|default]\n"
253 " [--natsettings<1-N> [<mtu>],[<socksnd>],\n"
254 " [<sockrcv>],[<tcpsnd>],\n"
255 " [<tcprcv>]]\n"
256 " [--natpf<1-N> [<rulename>],tcp|udp,[<hostip>],\n"
257 " <hostport>,[<guestip>],<guestport>]\n"
258 " [--natpf<1-N> delete <rulename>]\n"
259 " [--nattftpprefix<1-N> <prefix>]\n"
260 " [--nattftpfile<1-N> <file>]\n"
261 " [--nattftpserver<1-N> <ip>]\n"
262 " [--natbindip<1-N> <ip>\n"
263 " [--natdnspassdomain<1-N> on|off]\n"
264 " [--natdnsproxy<1-N> on|off]\n"
265 " [--natdnshostresolver<1-N> on|off]\n"
266 " [--nataliasmode<1-N> default|[log],[proxyonly],\n"
267 " [sameports]]\n"
268 " [--macaddress<1-N> auto|<mac>]\n"
269 " [--mouse ps2|usb|usbtablet|usbmultitouch]\n"
270 " [--keyboard ps2|usb\n"
271 " [--uart<1-N> off|<I/O base> <IRQ>]\n"
272 " [--uartmode<1-N> disconnected|\n"
273 " server <pipe>|\n"
274 " client <pipe>|\n"
275 " file <file>|\n"
276 " <devicename>]\n"
277#if defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
278 " [--lpt<1-N> off|<I/O base> <IRQ>]\n"
279 " [--lptmode<1-N> <devicename>]\n"
280#endif
281 " [--guestmemoryballoon <balloonsize in MB>]\n"
282 " [--audio none|null", SEP);
283 if (fWin)
284 {
285#ifdef VBOX_WITH_WINMM
286 RTStrmPrintf(pStrm, "|winmm|dsound");
287#else
288 RTStrmPrintf(pStrm, "|dsound");
289#endif
290 }
291 if (fSolaris)
292 {
293 RTStrmPrintf(pStrm, "|solaudio"
294#ifdef VBOX_WITH_SOLARIS_OSS
295 "|oss"
296#endif
297 );
298 }
299 if (fLinux)
300 {
301 RTStrmPrintf(pStrm, "|oss"
302#ifdef VBOX_WITH_ALSA
303 "|alsa"
304#endif
305#ifdef VBOX_WITH_PULSE
306 "|pulse"
307#endif
308 );
309 }
310 if (fFreeBSD)
311 {
312 /* Get the line break sorted when dumping all option variants. */
313 if (fDumpOpts)
314 {
315 RTStrmPrintf(pStrm, "|\n"
316 " oss");
317 }
318 else
319 RTStrmPrintf(pStrm, "|oss");
320#ifdef VBOX_WITH_PULSE
321 RTStrmPrintf(pStrm, "|pulse");
322#endif
323 }
324 if (fDarwin)
325 {
326 RTStrmPrintf(pStrm, "|coreaudio");
327 }
328 RTStrmPrintf(pStrm, "]\n");
329 RTStrmPrintf(pStrm,
330 " [--audiocontroller ac97|hda|sb16]\n"
331 " [--clipboard disabled|hosttoguest|guesttohost|\n"
332 " bidirectional]\n"
333 " [--draganddrop disabled|hosttoguest]\n");
334 RTStrmPrintf(pStrm,
335 " [--vrde on|off]\n"
336 " [--vrdeextpack default|<name>\n"
337 " [--vrdeproperty <name=[value]>]\n"
338 " [--vrdeport <hostport>]\n"
339 " [--vrdeaddress <hostip>]\n"
340 " [--vrdeauthtype null|external|guest]\n"
341 " [--vrdeauthlibrary default|<name>\n"
342 " [--vrdemulticon on|off]\n"
343 " [--vrdereusecon on|off]\n"
344 " [--vrdevideochannel on|off]\n"
345 " [--vrdevideochannelquality <percent>]\n");
346 RTStrmPrintf(pStrm,
347 " [--usb on|off]\n"
348 " [--usbehci on|off]\n"
349 " [--snapshotfolder default|<path>]\n"
350 " [--teleporter on|off]\n"
351 " [--teleporterport <port>]\n"
352 " [--teleporteraddress <address|empty>\n"
353 " [--teleporterpassword <password>]\n"
354 " [--teleporterpasswordfile <file>|stdin]\n"
355 " [--tracing-enabled on|off]\n"
356 " [--tracing-config <config-string>]\n"
357 " [--tracing-allow-vm-access on|off]\n"
358#if 0
359 " [--iocache on|off]\n"
360 " [--iocachesize <I/O cache size in MB>]\n"
361#endif
362#if 0
363 " [--faulttolerance master|standby]\n"
364 " [--faulttoleranceaddress <name>]\n"
365 " [--faulttoleranceport <port>]\n"
366 " [--faulttolerancesyncinterval <msec>]\n"
367 " [--faulttolerancepassword <password>]\n"
368#endif
369#ifdef VBOX_WITH_USB_CARDREADER
370 " [--usbcardreader on|off]\n"
371#endif
372 " [--autostart-enabled on|off]\n"
373 " [--autostart-delay <seconds>]\n"
374#if 0
375 " [--autostop-type disabled|savestate|poweroff|\n"
376 " acpishutdown]\n"
377#endif
378#ifdef VBOX_WITH_VPX
379 " [--vcpenabled on|off]\n"
380 " [--vcpscreens [<display>],...\n"
381 " [--vcpfile <filename>]\n"
382 " [--vcpwidth <width>]\n"
383 " [--vcpheight <height>]\n"
384 " [--vcprate <rate>]\n"
385 " [--vcpfps <fps>]\n"
386 " [--vcpmaxtime <time>]\n"
387 " [--vcpmaxsize <size>]\n"
388 " [--vcpoptions <options>]\n"
389#endif
390 " [--defaultfrontend default|<name>]\n"
391 "\n");
392 }
393
394 if (fCategory & USAGE_CLONEVM)
395 RTStrmPrintf(pStrm,
396 "%s clonevm %s <uuid|vmname>\n"
397 " [--snapshot <uuid>|<name>]\n"
398 " [--mode machine|machineandchildren|all]\n"
399 " [--options link|keepallmacs|keepnatmacs|\n"
400 " keepdisknames]\n"
401 " [--name <name>]\n"
402 " [--groups <group>, ...]\n"
403 " [--basefolder <basefolder>]\n"
404 " [--uuid <uuid>]\n"
405 " [--register]\n"
406 "\n", SEP);
407
408 if (fCategory & USAGE_IMPORTAPPLIANCE)
409 RTStrmPrintf(pStrm,
410 "%s import %s <ovfname/ovaname>\n"
411 " [--dry-run|-n]\n"
412 " [--options keepallmacs|keepnatmacs]\n"
413 " [more options]\n"
414 " (run with -n to have options displayed\n"
415 " for a particular OVF)\n\n", SEP);
416
417 if (fCategory & USAGE_EXPORTAPPLIANCE)
418 RTStrmPrintf(pStrm,
419 "%s export %s <machines> --output|-o <name>.<ovf/ova>\n"
420 " [--legacy09|--ovf09|--ovf10|--ovf20]\n"
421 " [--manifest]\n"
422 " [--iso]\n"
423 " [--options manifest|iso|nomacs|nomacsbutnat]\n"
424 " [--vsys <number of virtual system>]\n"
425 " [--product <product name>]\n"
426 " [--producturl <product url>]\n"
427 " [--vendor <vendor name>]\n"
428 " [--vendorurl <vendor url>]\n"
429 " [--version <version info>]\n"
430 " [--description <description info>]\n"
431 " [--eula <license text>]\n"
432 " [--eulafile <filename>]\n"
433 "\n", SEP);
434
435 if (fCategory & USAGE_STARTVM)
436 {
437 RTStrmPrintf(pStrm,
438 "%s startvm %s <uuid|vmname>...\n"
439 " [--type gui", SEP);
440 if (fVBoxSDL)
441 RTStrmPrintf(pStrm, "|sdl");
442 RTStrmPrintf(pStrm, "|headless]\n");
443 RTStrmPrintf(pStrm,
444 "\n");
445 }
446
447 if (fCategory & USAGE_CONTROLVM)
448 {
449 RTStrmPrintf(pStrm,
450 "%s controlvm %s <uuid|vmname>\n"
451 " pause|resume|reset|poweroff|savestate|\n"
452 " acpipowerbutton|acpisleepbutton|\n"
453 " keyboardputscancode <hex> [<hex> ...]|\n"
454 " setlinkstate<1-N> on|off |\n"
455#if defined(VBOX_WITH_NETFLT)
456 " nic<1-N> null|nat|bridged|intnet|hostonly|generic|\n"
457 " natnetwork [<devicename>] |\n"
458#else /* !VBOX_WITH_NETFLT */
459 " nic<1-N> null|nat|bridged|intnet|generic|natnetwork\n"
460 " [<devicename>] |\n"
461#endif /* !VBOX_WITH_NETFLT */
462 " nictrace<1-N> on|off |\n"
463 " nictracefile<1-N> <filename> |\n"
464 " nicproperty<1-N> name=[value] |\n"
465 " nicpromisc<1-N> deny|allow-vms|allow-all |\n"
466 " natpf<1-N> [<rulename>],tcp|udp,[<hostip>],\n"
467 " <hostport>,[<guestip>],<guestport> |\n"
468 " natpf<1-N> delete <rulename> |\n"
469 " guestmemoryballoon <balloonsize in MB> |\n"
470 " usbattach <uuid>|<address>\n"
471 " [--capturefile <filename>] |\n"
472 " usbdetach <uuid>|<address> |\n"
473 " clipboard disabled|hosttoguest|guesttohost|\n"
474 " bidirectional |\n"
475 " draganddrop disabled|hosttoguest |\n"
476 " vrde on|off |\n"
477 " vrdeport <port> |\n"
478 " vrdeproperty <name=[value]> |\n"
479 " vrdevideochannelquality <percent> |\n"
480 " setvideomodehint <xres> <yres> <bpp>\n"
481 " [[<display>] [<enabled:yes|no> |\n"
482 " [<xorigin> <yorigin>]]] |\n"
483 " screenshotpng <file> [display] |\n"
484 " vcpenabled on|off |\n"
485 " vcpscreens all|none|<screen>,[<screen>...] |\n"
486 " setcredentials <username>\n"
487 " --passwordfile <file> | <password>\n"
488 " <domain>\n"
489 " [--allowlocallogon <yes|no>] |\n"
490 " teleport --host <name> --port <port>\n"
491 " [--maxdowntime <msec>]\n"
492 " [--passwordfile <file> |\n"
493 " --password <password>] |\n"
494 " plugcpu <id> |\n"
495 " unplugcpu <id> |\n"
496 " cpuexecutioncap <1-100>\n"
497 " webcam <attach [path [settings]]> | <detach [path]> | <list>\n"
498 "\n", SEP);
499 }
500
501 if (fCategory & USAGE_DISCARDSTATE)
502 RTStrmPrintf(pStrm,
503 "%s discardstate %s <uuid|vmname>\n"
504 "\n", SEP);
505
506 if (fCategory & USAGE_ADOPTSTATE)
507 RTStrmPrintf(pStrm,
508 "%s adoptstate %s <uuid|vmname> <state_file>\n"
509 "\n", SEP);
510
511 if (fCategory & USAGE_SNAPSHOT)
512 RTStrmPrintf(pStrm,
513 "%s snapshot %s <uuid|vmname>\n"
514 " take <name> [--description <desc>] [--live] |\n"
515 " delete <uuid|snapname> |\n"
516 " restore <uuid|snapname> |\n"
517 " restorecurrent |\n"
518 " edit <uuid|snapname>|--current\n"
519 " [--name <name>]\n"
520 " [--description <desc>] |\n"
521 " list [--details|--machinereadable]\n"
522 " showvminfo <uuid|snapname>\n"
523 "\n", SEP);
524
525 if (fCategory & USAGE_CLOSEMEDIUM)
526 RTStrmPrintf(pStrm,
527 "%s closemedium %s disk|dvd|floppy <uuid|filename>\n"
528 " [--delete]\n"
529 "\n", SEP);
530
531 if (fCategory & USAGE_STORAGEATTACH)
532 RTStrmPrintf(pStrm,
533 "%s storageattach %s <uuid|vmname>\n"
534 " --storagectl <name>\n"
535 " [--port <number>]\n"
536 " [--device <number>]\n"
537 " [--type dvddrive|hdd|fdd]\n"
538 " [--medium none|emptydrive|additions|\n"
539 " <uuid|filename>|host:<drive>|iscsi]\n"
540 " [--mtype normal|writethrough|immutable|shareable|\n"
541 " readonly|multiattach]\n"
542 " [--comment <text>]\n"
543 " [--setuuid <uuid>]\n"
544 " [--setparentuuid <uuid>]\n"
545 " [--passthrough on|off]\n"
546 " [--tempeject on|off]\n"
547 " [--nonrotational on|off]\n"
548 " [--discard on|off]\n"
549 " [--hotpluggable on|off]\n"
550 " [--bandwidthgroup <name>]\n"
551 " [--forceunmount]\n"
552 " [--server <name>|<ip>]\n"
553 " [--target <target>]\n"
554 " [--tport <port>]\n"
555 " [--lun <lun>]\n"
556 " [--encodedlun <lun>]\n"
557 " [--username <username>]\n"
558 " [--password <password>]\n"
559 " [--initiator <initiator>]\n"
560 " [--intnet]\n"
561 "\n", SEP);
562
563 if (fCategory & USAGE_STORAGECONTROLLER)
564 RTStrmPrintf(pStrm,
565 "%s storagectl %s <uuid|vmname>\n"
566 " --name <name>\n"
567 " [--add ide|sata|scsi|floppy|sas]\n"
568 " [--controller LSILogic|LSILogicSAS|BusLogic|\n"
569 " IntelAHCI|PIIX3|PIIX4|ICH6|I82078]\n"
570 " [--portcount <1-n>]\n"
571 " [--hostiocache on|off]\n"
572 " [--bootable on|off]\n"
573 " [--remove]\n"
574 "\n", SEP);
575
576 if (fCategory & USAGE_BANDWIDTHCONTROL)
577 RTStrmPrintf(pStrm,
578 "%s bandwidthctl %s <uuid|vmname>\n"
579 " add <name> --type disk|network\n"
580 " --limit <megabytes per second>[k|m|g|K|M|G] |\n"
581 " set <name>\n"
582 " --limit <megabytes per second>[k|m|g|K|M|G] |\n"
583 " remove <name> |\n"
584 " list [--machinereadable]\n"
585 " (limit units: k=kilobit, m=megabit, g=gigabit,\n"
586 " K=kilobyte, M=megabyte, G=gigabyte)\n"
587 "\n", SEP);
588
589 if (fCategory & USAGE_SHOWHDINFO)
590 RTStrmPrintf(pStrm,
591 "%s showhdinfo %s <uuid|filename>\n"
592 "\n", SEP);
593
594 if (fCategory & USAGE_CREATEHD)
595 RTStrmPrintf(pStrm,
596 "%s createhd %s --filename <filename>\n"
597 " [--size <megabytes>|--sizebyte <bytes>]\n"
598 " [--diffparent <uuid>|<filename>\n"
599 " [--format VDI|VMDK|VHD] (default: VDI)\n"
600 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
601 "\n", SEP);
602
603 if (fCategory & USAGE_MODIFYHD)
604 RTStrmPrintf(pStrm,
605 "%s modifyhd %s <uuid|filename>\n"
606 " [--type normal|writethrough|immutable|shareable|\n"
607 " readonly|multiattach]\n"
608 " [--autoreset on|off]\n"
609 " [--property <name=[value]>]\n"
610 " [--compact]\n"
611 " [--resize <megabytes>|--resizebyte <bytes>]\n"
612 "\n", SEP);
613
614 if (fCategory & USAGE_CLONEHD)
615 RTStrmPrintf(pStrm,
616 "%s clonehd %s <uuid|inputfile> <uuid|outputfile>\n"
617 " [--format VDI|VMDK|VHD|RAW|<other>]\n"
618 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
619 " [--existing]\n"
620 "\n", SEP);
621
622 if (fCategory & USAGE_HDPROPERTY)
623 RTStrmPrintf(pStrm,
624 "%s hdproperty %s set <uuid|filename>\n"
625 " <property> <value>\n"
626 "\n"
627 " get <uuid|filename>\n"
628 " <property>\n"
629 "\n"
630 " delete <uuid|filename>\n"
631 " <property>\n"
632 "\n", SEP);
633
634 if (fCategory & USAGE_CONVERTFROMRAW)
635 RTStrmPrintf(pStrm,
636 "%s convertfromraw %s <filename> <outputfile>\n"
637 " [--format VDI|VMDK|VHD]\n"
638 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
639 " [--uuid <uuid>]\n"
640 "%s convertfromraw %s stdin <outputfile> <bytes>\n"
641 " [--format VDI|VMDK|VHD]\n"
642 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
643 " [--uuid <uuid>]\n"
644 "\n", SEP, SEP);
645
646 if (fCategory & USAGE_GETEXTRADATA)
647 RTStrmPrintf(pStrm,
648 "%s getextradata %s global|<uuid|vmname>\n"
649 " <key>|enumerate\n"
650 "\n", SEP);
651
652 if (fCategory & USAGE_SETEXTRADATA)
653 RTStrmPrintf(pStrm,
654 "%s setextradata %s global|<uuid|vmname>\n"
655 " <key>\n"
656 " [<value>] (no value deletes key)\n"
657 "\n", SEP);
658
659 if (fCategory & USAGE_SETPROPERTY)
660 RTStrmPrintf(pStrm,
661 "%s setproperty %s machinefolder default|<folder> |\n"
662 " hwvirtexclusive on|off |\n"
663 " vrdeauthlibrary default|<library> |\n"
664 " websrvauthlibrary default|null|<library> |\n"
665 " vrdeextpack null|<library> |\n"
666 " autostartdbpath null|<folder> |\n"
667 " loghistorycount <value>\n"
668 " defaultfrontend default|<name>\n"
669 "\n", SEP);
670
671 if (fCategory & USAGE_USBFILTER_ADD)
672 RTStrmPrintf(pStrm,
673 "%s usbfilter %s add <index,0-N>\n"
674 " --target <uuid|vmname>|global\n"
675 " --name <string>\n"
676 " --action ignore|hold (global filters only)\n"
677 " [--active yes|no] (yes)\n"
678 " [--vendorid <XXXX>] (null)\n"
679 " [--productid <XXXX>] (null)\n"
680 " [--revision <IIFF>] (null)\n"
681 " [--manufacturer <string>] (null)\n"
682 " [--product <string>] (null)\n"
683 " [--remote yes|no] (null, VM filters only)\n"
684 " [--serialnumber <string>] (null)\n"
685 " [--maskedinterfaces <XXXXXXXX>]\n"
686 "\n", SEP);
687
688 if (fCategory & USAGE_USBFILTER_MODIFY)
689 RTStrmPrintf(pStrm,
690 "%s usbfilter %s modify <index,0-N>\n"
691 " --target <uuid|vmname>|global\n"
692 " [--name <string>]\n"
693 " [--action ignore|hold] (global filters only)\n"
694 " [--active yes|no]\n"
695 " [--vendorid <XXXX>|\"\"]\n"
696 " [--productid <XXXX>|\"\"]\n"
697 " [--revision <IIFF>|\"\"]\n"
698 " [--manufacturer <string>|\"\"]\n"
699 " [--product <string>|\"\"]\n"
700 " [--remote yes|no] (null, VM filters only)\n"
701 " [--serialnumber <string>|\"\"]\n"
702 " [--maskedinterfaces <XXXXXXXX>]\n"
703 "\n", SEP);
704
705 if (fCategory & USAGE_USBFILTER_REMOVE)
706 RTStrmPrintf(pStrm,
707 "%s usbfilter %s remove <index,0-N>\n"
708 " --target <uuid|vmname>|global\n"
709 "\n", SEP);
710
711 if (fCategory & USAGE_SHAREDFOLDER_ADD)
712 RTStrmPrintf(pStrm,
713 "%s sharedfolder %s add <uuid|vmname>\n"
714 " --name <name> --hostpath <hostpath>\n"
715 " [--transient] [--readonly] [--automount]\n"
716 "\n", SEP);
717
718 if (fCategory & USAGE_SHAREDFOLDER_REMOVE)
719 RTStrmPrintf(pStrm,
720 "%s sharedfolder %s remove <uuid|vmname>\n"
721 " --name <name> [--transient]\n"
722 "\n", SEP);
723
724#ifdef VBOX_WITH_GUEST_PROPS
725 if (fCategory & USAGE_GUESTPROPERTY)
726 usageGuestProperty(pStrm, SEP);
727#endif /* VBOX_WITH_GUEST_PROPS defined */
728
729#ifdef VBOX_WITH_GUEST_CONTROL
730 if (fCategory & USAGE_GUESTCONTROL)
731 usageGuestControl(pStrm, SEP, fSubCategory);
732#endif /* VBOX_WITH_GUEST_CONTROL defined */
733
734 if (fCategory & USAGE_DEBUGVM)
735 {
736 RTStrmPrintf(pStrm,
737 "%s debugvm %s <uuid|vmname>\n"
738 " dumpguestcore --filename <name> |\n"
739 " info <item> [args] |\n"
740 " injectnmi |\n"
741 " log [--release|--debug] <settings> ...|\n"
742 " logdest [--release|--debug] <settings> ...|\n"
743 " logflags [--release|--debug] <settings> ...|\n"
744 " osdetect |\n"
745 " osinfo |\n"
746 " getregisters [--cpu <id>] <reg>|all ... |\n"
747 " setregisters [--cpu <id>] <reg>=<value> ... |\n"
748 " show [--human-readable|--sh-export|--sh-eval|\n"
749 " --cmd-set] \n"
750 " <logdbg-settings|logrel-settings>\n"
751 " [[opt] what ...] |\n"
752 " statistics [--reset] [--pattern <pattern>]\n"
753 " [--descriptions]\n"
754 "\n", SEP);
755 }
756 if (fCategory & USAGE_METRICS)
757 RTStrmPrintf(pStrm,
758 "%s metrics %s list [*|host|<vmname> [<metric_list>]]\n"
759 " (comma-separated)\n\n"
760 "%s metrics %s setup\n"
761 " [--period <seconds>] (default: 1)\n"
762 " [--samples <count>] (default: 1)\n"
763 " [--list]\n"
764 " [*|host|<vmname> [<metric_list>]]\n\n"
765 "%s metrics %s query [*|host|<vmname> [<metric_list>]]\n\n"
766 "%s metrics %s enable\n"
767 " [--list]\n"
768 " [*|host|<vmname> [<metric_list>]]\n\n"
769 "%s metrics %s disable\n"
770 " [--list]\n"
771 " [*|host|<vmname> [<metric_list>]]\n\n"
772 "%s metrics %s collect\n"
773 " [--period <seconds>] (default: 1)\n"
774 " [--samples <count>] (default: 1)\n"
775 " [--list]\n"
776 " [--detach]\n"
777 " [*|host|<vmname> [<metric_list>]]\n"
778 "\n", SEP, SEP, SEP, SEP, SEP, SEP);
779
780#if defined(VBOX_WITH_NAT_SERVICE)
781 if (fCategory & USAGE_NATNETWORK)
782 {
783 RTStrmPrintf(pStrm,
784 "%s natnetwork %s add --netname <name>\n"
785 " --network <network>\n"
786 " [--enable|--disable]\n"
787 " [--dhcp on|off]\n"
788 " [--port-forward-4 <rule>]\n"
789 " [--loopback-4 <rule>]\n"
790 " [--ipv6 on|off]\n"
791 " [--port-forward-6 <rule>]\n"
792 " [--loopback-6 <rule>]\n\n"
793 "%s natnetwork %s remove --netname <name>\n\n"
794 "%s natnetwork %s modify --netname <name>\n"
795 " [--network <network>]\n"
796 " [--enable|--disable]\n"
797 " [--dhcp on|off]\n"
798 " [--port-forward-4 <rule>]\n"
799 " [--loopback-4 <rule>]\n"
800 " [--ipv6 on|off]\n"
801 " [--port-forward-6 <rule>]\n"
802 " [--loopback-6 <rule>]\n\n"
803 "%s natnetwork %s start --netname <name>\n\n"
804 "%s natnetwork %s stop --netname <name>\n"
805 "\n", SEP, SEP, SEP, SEP, SEP);
806
807
808 }
809#endif
810
811#if defined(VBOX_WITH_NETFLT)
812 if (fCategory & USAGE_HOSTONLYIFS)
813 {
814 RTStrmPrintf(pStrm,
815 "%s hostonlyif %s ipconfig <name>\n"
816 " [--dhcp |\n"
817 " --ip<ipv4> [--netmask<ipv4> (def: 255.255.255.0)] |\n"
818 " --ipv6<ipv6> [--netmasklengthv6<length> (def: 64)]]\n"
819# if !defined(RT_OS_SOLARIS)
820 " create |\n"
821 " remove <name>\n"
822# endif
823 "\n", SEP);
824 }
825#endif
826
827 if (fCategory & USAGE_DHCPSERVER)
828 {
829 RTStrmPrintf(pStrm,
830 "%s dhcpserver %s add|modify --netname <network_name> |\n"
831#if defined(VBOX_WITH_NETFLT)
832 " --ifname <hostonly_if_name>\n"
833#endif
834 " [--ip <ip_address>\n"
835 " --netmask <network_mask>\n"
836 " --lowerip <lower_ip>\n"
837 " --upperip <upper_ip>]\n"
838 " [--enable | --disable]\n\n"
839 "%s dhcpserver %s remove --netname <network_name> |\n"
840#if defined(VBOX_WITH_NETFLT)
841 " --ifname <hostonly_if_name>\n"
842#endif
843 "\n", SEP, SEP);
844 }
845 if (fCategory & USAGE_EXTPACK)
846 {
847 RTStrmPrintf(pStrm,
848 "%s extpack %s install [--replace] <tarball> |\n"
849 " uninstall [--force] <name> |\n"
850 " cleanup\n"
851 "\n", SEP);
852 }
853}
854
855/**
856 * Print a usage synopsis and the syntax error message.
857 * @returns RTEXITCODE_SYNTAX.
858 */
859RTEXITCODE errorSyntax(USAGECATEGORY fCategory, const char *pszFormat, ...)
860{
861 va_list args;
862 showLogo(g_pStdErr); // show logo even if suppressed
863#ifndef VBOX_ONLY_DOCS
864 if (g_fInternalMode)
865 printUsageInternal(fCategory, g_pStdErr);
866 else
867 printUsage(fCategory, ~0U, g_pStdErr);
868#endif /* !VBOX_ONLY_DOCS */
869 va_start(args, pszFormat);
870 RTStrmPrintf(g_pStdErr, "\nSyntax error: %N\n", pszFormat, &args);
871 va_end(args);
872 return RTEXITCODE_SYNTAX;
873}
874
875/**
876 * Print a usage synopsis and the syntax error message.
877 * @returns RTEXITCODE_SYNTAX.
878 */
879RTEXITCODE errorSyntaxEx(USAGECATEGORY fCategory, uint32_t fSubCategory, const char *pszFormat, ...)
880{
881 va_list args;
882 showLogo(g_pStdErr); // show logo even if suppressed
883#ifndef VBOX_ONLY_DOCS
884 if (g_fInternalMode)
885 printUsageInternal(fCategory, g_pStdErr);
886 else
887 printUsage(fCategory, fSubCategory, g_pStdErr);
888#endif /* !VBOX_ONLY_DOCS */
889 va_start(args, pszFormat);
890 RTStrmPrintf(g_pStdErr, "\nSyntax error: %N\n", pszFormat, &args);
891 va_end(args);
892 return RTEXITCODE_SYNTAX;
893}
894
895/**
896 * errorSyntax for RTGetOpt users.
897 *
898 * @returns RTEXITCODE_SYNTAX.
899 *
900 * @param fCategory The usage category of the command.
901 * @param fSubCategory The usage sub-category of the command.
902 * @param rc The RTGetOpt return code.
903 * @param pValueUnion The value union.
904 */
905RTEXITCODE errorGetOptEx(USAGECATEGORY fCategory, uint32_t fSubCategory, int rc, union RTGETOPTUNION const *pValueUnion)
906{
907 /*
908 * Check if it is an unhandled standard option.
909 */
910 if (rc == 'V')
911 {
912 RTPrintf("%sr%d\n", VBOX_VERSION_STRING, RTBldCfgRevision());
913 return RTEXITCODE_SUCCESS;
914 }
915
916 if (rc == 'h')
917 {
918 showLogo(g_pStdErr);
919#ifndef VBOX_ONLY_DOCS
920 if (g_fInternalMode)
921 printUsageInternal(fCategory, g_pStdOut);
922 else
923 printUsage(fCategory, fSubCategory, g_pStdOut);
924#endif
925 return RTEXITCODE_SUCCESS;
926 }
927
928 /*
929 * General failure.
930 */
931 showLogo(g_pStdErr); // show logo even if suppressed
932#ifndef VBOX_ONLY_DOCS
933 if (g_fInternalMode)
934 printUsageInternal(fCategory, g_pStdErr);
935 else
936 printUsage(fCategory, fSubCategory, g_pStdErr);
937#endif /* !VBOX_ONLY_DOCS */
938
939 if (rc == VINF_GETOPT_NOT_OPTION)
940 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid parameter '%s'", pValueUnion->psz);
941 if (rc > 0)
942 {
943 if (RT_C_IS_PRINT(rc))
944 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid option -%c", rc);
945 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid option case %i", rc);
946 }
947 if (rc == VERR_GETOPT_UNKNOWN_OPTION)
948 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Unknown option: %s", pValueUnion->psz);
949 if (rc == VERR_GETOPT_INVALID_ARGUMENT_FORMAT)
950 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid argument format: %s", pValueUnion->psz);
951 if (pValueUnion->pDef)
952 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "%s: %Rrs", pValueUnion->pDef->pszLong, rc);
953 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "%Rrs", rc);
954}
955
956/**
957 * errorSyntax for RTGetOpt users.
958 *
959 * @returns RTEXITCODE_SYNTAX.
960 *
961 * @param fUsageCategory The usage category of the command.
962 * @param rc The RTGetOpt return code.
963 * @param pValueUnion The value union.
964 */
965RTEXITCODE errorGetOpt(USAGECATEGORY fCategory, int rc, union RTGETOPTUNION const *pValueUnion)
966{
967 return errorGetOptEx(fCategory, ~0U, rc, pValueUnion);
968}
969
970/**
971 * Print an error message without the syntax stuff.
972 *
973 * @returns RTEXITCODE_SYNTAX.
974 */
975RTEXITCODE errorArgument(const char *pszFormat, ...)
976{
977 va_list args;
978 va_start(args, pszFormat);
979 RTMsgErrorV(pszFormat, args);
980 va_end(args);
981 return RTEXITCODE_SYNTAX;
982}
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