VirtualBox

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

Last change on this file since 70712 was 70712, checked in by vboxsync, 7 years ago

Main,VBoxManage: Added CPUPropertyType_HWVirt. Translates to --nested-hw-virt in VBoxManage/modifyvm

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 63.5 KB
Line 
1/* $Id: VBoxManageHelp.cpp 70712 2018-01-23 16:18:22Z vboxsync $ */
2/** @file
3 * VBoxManage - help and other message output.
4 */
5
6/*
7 * Copyright (C) 2006-2017 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/env.h>
27#include <iprt/err.h>
28#include <iprt/getopt.h>
29#include <iprt/stream.h>
30#include <iprt/message.h>
31
32#include "VBoxManage.h"
33
34
35/*********************************************************************************************************************************
36* Defined Constants And Macros *
37*********************************************************************************************************************************/
38/** If the usage is the given number of length long or longer, the error is
39 * repeated so the user can actually see it. */
40#define ERROR_REPEAT_AFTER_USAGE_LENGTH 16
41
42
43/*********************************************************************************************************************************
44* Global Variables *
45*********************************************************************************************************************************/
46#ifndef VBOX_ONLY_DOCS
47enum HELP_CMD_VBOXMANAGE g_enmCurCommand = HELP_CMD_VBOXMANAGE_INVALID;
48/** The scope maskt for the current subcommand. */
49uint64_t g_fCurSubcommandScope = RTMSGREFENTRYSTR_SCOPE_GLOBAL;
50
51/**
52 * Sets the current command.
53 *
54 * This affects future calls to error and help functions.
55 *
56 * @param enmCommand The command.
57 */
58void setCurrentCommand(enum HELP_CMD_VBOXMANAGE enmCommand)
59{
60 Assert(g_enmCurCommand == HELP_CMD_VBOXMANAGE_INVALID);
61 g_enmCurCommand = enmCommand;
62 g_fCurSubcommandScope = RTMSGREFENTRYSTR_SCOPE_GLOBAL;
63}
64
65
66/**
67 * Sets the current subcommand.
68 *
69 * This affects future calls to error and help functions.
70 *
71 * @param fSubcommandScope The subcommand scope.
72 */
73void setCurrentSubcommand(uint64_t fSubcommandScope)
74{
75 g_fCurSubcommandScope = fSubcommandScope;
76}
77
78
79
80
81/**
82 * Prints brief help for a command or subcommand.
83 *
84 * @returns Number of lines written.
85 * @param enmCommand The command.
86 * @param fSubcommandScope The subcommand scope, REFENTRYSTR_SCOPE_GLOBAL
87 * for all.
88 * @param pStrm The output stream.
89 */
90static uint32_t printBriefCommandOrSubcommandHelp(enum HELP_CMD_VBOXMANAGE enmCommand, uint64_t fSubcommandScope, PRTSTREAM pStrm)
91{
92 uint32_t cLinesWritten = 0;
93 uint32_t cPendingBlankLines = 0;
94 uint32_t cFound = 0;
95 for (uint32_t i = 0; i < g_cHelpEntries; i++)
96 {
97 PCRTMSGREFENTRY pHelp = g_apHelpEntries[i];
98 if (pHelp->idInternal == (int64_t)enmCommand)
99 {
100 cFound++;
101 if (cFound == 1)
102 {
103 if (fSubcommandScope == RTMSGREFENTRYSTR_SCOPE_GLOBAL)
104 RTStrmPrintf(pStrm, "Usage - %c%s:\n", RT_C_TO_UPPER(pHelp->pszBrief[0]), pHelp->pszBrief + 1);
105 else
106 RTStrmPrintf(pStrm, "Usage:\n");
107 }
108 RTMsgRefEntryPrintStringTable(pStrm, &pHelp->Synopsis, fSubcommandScope, &cPendingBlankLines, &cLinesWritten);
109 if (!cPendingBlankLines)
110 cPendingBlankLines = 1;
111 }
112 }
113 Assert(cFound > 0);
114 return cLinesWritten;
115}
116
117
118/**
119 * Prints the brief usage information for the current (sub)command.
120 *
121 * @param pStrm The output stream.
122 */
123void printUsage(PRTSTREAM pStrm)
124{
125 printBriefCommandOrSubcommandHelp(g_enmCurCommand, g_fCurSubcommandScope, pStrm);
126}
127
128
129/**
130 * Prints full help for a command or subcommand.
131 *
132 * @param enmCommand The command.
133 * @param fSubcommandScope The subcommand scope, REFENTRYSTR_SCOPE_GLOBAL
134 * for all.
135 * @param pStrm The output stream.
136 */
137static void printFullCommandOrSubcommandHelp(enum HELP_CMD_VBOXMANAGE enmCommand, uint64_t fSubcommandScope, PRTSTREAM pStrm)
138{
139 uint32_t cPendingBlankLines = 0;
140 uint32_t cFound = 0;
141 for (uint32_t i = 0; i < g_cHelpEntries; i++)
142 {
143 PCRTMSGREFENTRY pHelp = g_apHelpEntries[i];
144 if ( pHelp->idInternal == (int64_t)enmCommand
145 || enmCommand == HELP_CMD_VBOXMANAGE_INVALID)
146 {
147 cFound++;
148 RTMsgRefEntryPrintStringTable(pStrm, &pHelp->Help, fSubcommandScope, &cPendingBlankLines, NULL /*pcLinesWritten*/);
149 if (cPendingBlankLines < 2)
150 cPendingBlankLines = 2;
151 }
152 }
153 Assert(cFound > 0);
154}
155
156
157/**
158 * Prints the full help for the current (sub)command.
159 *
160 * @param pStrm The output stream.
161 */
162void printHelp(PRTSTREAM pStrm)
163{
164 printFullCommandOrSubcommandHelp(g_enmCurCommand, g_fCurSubcommandScope, pStrm);
165}
166
167
168/**
169 * Display no subcommand error message and current command usage.
170 *
171 * @returns RTEXITCODE_SYNTAX.
172 */
173RTEXITCODE errorNoSubcommand(void)
174{
175 Assert(g_enmCurCommand != HELP_CMD_VBOXMANAGE_INVALID);
176 Assert(g_fCurSubcommandScope == RTMSGREFENTRYSTR_SCOPE_GLOBAL);
177
178 return errorSyntax("No subcommand specified");
179}
180
181
182/**
183 * Display unknown subcommand error message and current command usage.
184 *
185 * May show full command help instead if the subcommand is a common help option.
186 *
187 * @returns RTEXITCODE_SYNTAX, or RTEXITCODE_SUCCESS if common help option.
188 * @param pszSubcommand The name of the alleged subcommand.
189 */
190RTEXITCODE errorUnknownSubcommand(const char *pszSubcommand)
191{
192 Assert(g_enmCurCommand != HELP_CMD_VBOXMANAGE_INVALID);
193 Assert(g_fCurSubcommandScope == RTMSGREFENTRYSTR_SCOPE_GLOBAL);
194
195 /* check if help was requested. */
196 if ( strcmp(pszSubcommand, "--help") == 0
197 || strcmp(pszSubcommand, "-h") == 0
198 || strcmp(pszSubcommand, "-?") == 0)
199 {
200 printFullCommandOrSubcommandHelp(g_enmCurCommand, g_fCurSubcommandScope, g_pStdOut);
201 return RTEXITCODE_SUCCESS;
202 }
203
204 return errorSyntax("Unknown subcommand: %s", pszSubcommand);
205}
206
207
208/**
209 * Display too many parameters error message and current command usage.
210 *
211 * May show full command help instead if the subcommand is a common help option.
212 *
213 * @returns RTEXITCODE_SYNTAX, or RTEXITCODE_SUCCESS if common help option.
214 * @param papszArgs The first unwanted parameter. Terminated by
215 * NULL entry.
216 */
217RTEXITCODE errorTooManyParameters(char **papszArgs)
218{
219 Assert(g_enmCurCommand != HELP_CMD_VBOXMANAGE_INVALID);
220 Assert(g_fCurSubcommandScope != RTMSGREFENTRYSTR_SCOPE_GLOBAL);
221
222 /* check if help was requested. */
223 if (papszArgs)
224 {
225 for (uint32_t i = 0; papszArgs[i]; i++)
226 if ( strcmp(papszArgs[i], "--help") == 0
227 || strcmp(papszArgs[i], "-h") == 0
228 || strcmp(papszArgs[i], "-?") == 0)
229 {
230 printFullCommandOrSubcommandHelp(g_enmCurCommand, g_fCurSubcommandScope, g_pStdOut);
231 return RTEXITCODE_SUCCESS;
232 }
233 else if (!strcmp(papszArgs[i], "--"))
234 break;
235 }
236
237 return errorSyntax("Too many parameters");
238}
239
240
241/**
242 * Display current (sub)command usage and the custom error message.
243 *
244 * @returns RTEXITCODE_SYNTAX.
245 * @param pszFormat Custom error message format string.
246 * @param ... Format arguments.
247 */
248RTEXITCODE errorSyntax(const char *pszFormat, ...)
249{
250 Assert(g_enmCurCommand != HELP_CMD_VBOXMANAGE_INVALID);
251
252 showLogo(g_pStdErr);
253
254 va_list va;
255 va_start(va, pszFormat);
256 RTMsgErrorV(pszFormat, va);
257 va_end(va);
258
259 RTStrmPutCh(g_pStdErr, '\n');
260 if ( printBriefCommandOrSubcommandHelp(g_enmCurCommand, g_fCurSubcommandScope, g_pStdErr)
261 >= ERROR_REPEAT_AFTER_USAGE_LENGTH)
262 {
263 /* Usage was very long, repeat the error message. */
264 RTStrmPutCh(g_pStdErr, '\n');
265 va_start(va, pszFormat);
266 RTMsgErrorV(pszFormat, va);
267 va_end(va);
268 }
269 return RTEXITCODE_SYNTAX;
270}
271
272
273/**
274 * Worker for errorGetOpt.
275 *
276 * @param rcGetOpt The RTGetOpt return value.
277 * @param pValueUnion The value union returned by RTGetOpt.
278 */
279static void errorGetOptWorker(int rcGetOpt, union RTGETOPTUNION const *pValueUnion)
280{
281 if (rcGetOpt == VINF_GETOPT_NOT_OPTION)
282 RTMsgError("Invalid parameter '%s'", pValueUnion->psz);
283 else if (rcGetOpt > 0)
284 {
285 if (RT_C_IS_PRINT(rcGetOpt))
286 RTMsgError("Invalid option -%c", rcGetOpt);
287 else
288 RTMsgError("Invalid option case %i", rcGetOpt);
289 }
290 else if (rcGetOpt == VERR_GETOPT_UNKNOWN_OPTION)
291 RTMsgError("Unknown option: %s", pValueUnion->psz);
292 else if (rcGetOpt == VERR_GETOPT_INVALID_ARGUMENT_FORMAT)
293 RTMsgError("Invalid argument format: %s", pValueUnion->psz);
294 else if (pValueUnion->pDef)
295 RTMsgError("%s: %Rrs", pValueUnion->pDef->pszLong, rcGetOpt);
296 else
297 RTMsgError("%Rrs", rcGetOpt);
298}
299
300
301/**
302 * Handled an RTGetOpt error or common option.
303 *
304 * This implements the 'V' and 'h' cases. It reports appropriate syntax errors
305 * for other @a rcGetOpt values.
306 *
307 * @retval RTEXITCODE_SUCCESS if help or version request.
308 * @retval RTEXITCODE_SYNTAX if not help or version request.
309 * @param rcGetOpt The RTGetOpt return value.
310 * @param pValueUnion The value union returned by RTGetOpt.
311 */
312RTEXITCODE errorGetOpt(int rcGetOpt, union RTGETOPTUNION const *pValueUnion)
313{
314 Assert(g_enmCurCommand != HELP_CMD_VBOXMANAGE_INVALID);
315
316 /*
317 * Check if it is an unhandled standard option.
318 */
319 if (rcGetOpt == 'V')
320 {
321 RTPrintf("%sr%d\n", VBOX_VERSION_STRING, RTBldCfgRevision());
322 return RTEXITCODE_SUCCESS;
323 }
324
325 if (rcGetOpt == 'h')
326 {
327 printFullCommandOrSubcommandHelp(g_enmCurCommand, g_fCurSubcommandScope, g_pStdOut);
328 return RTEXITCODE_SUCCESS;
329 }
330
331 /*
332 * We failed.
333 */
334 showLogo(g_pStdErr);
335 errorGetOptWorker(rcGetOpt, pValueUnion);
336 if ( printBriefCommandOrSubcommandHelp(g_enmCurCommand, g_fCurSubcommandScope, g_pStdErr)
337 >= ERROR_REPEAT_AFTER_USAGE_LENGTH)
338 {
339 /* Usage was very long, repeat the error message. */
340 RTStrmPutCh(g_pStdErr, '\n');
341 errorGetOptWorker(rcGetOpt, pValueUnion);
342 }
343 return RTEXITCODE_SYNTAX;
344}
345
346#endif /* !VBOX_ONLY_DOCS */
347
348
349
350void showLogo(PRTSTREAM pStrm)
351{
352 static bool s_fShown; /* show only once */
353
354 if (!s_fShown)
355 {
356 RTStrmPrintf(pStrm, VBOX_PRODUCT " Command Line Management Interface Version "
357 VBOX_VERSION_STRING "\n"
358 "(C) 2005-" VBOX_C_YEAR " " VBOX_VENDOR "\n"
359 "All rights reserved.\n"
360 "\n");
361 s_fShown = true;
362 }
363}
364
365
366
367
368void printUsage(USAGECATEGORY fCategory, uint32_t fSubCategory, PRTSTREAM pStrm)
369{
370 bool fDumpOpts = false;
371#ifdef RT_OS_LINUX
372 bool fLinux = true;
373#else
374 bool fLinux = false;
375#endif
376#ifdef RT_OS_WINDOWS
377 bool fWin = true;
378#else
379 bool fWin = false;
380#endif
381#ifdef RT_OS_SOLARIS
382 bool fSolaris = true;
383#else
384 bool fSolaris = false;
385#endif
386#ifdef RT_OS_FREEBSD
387 bool fFreeBSD = true;
388#else
389 bool fFreeBSD = false;
390#endif
391#ifdef RT_OS_DARWIN
392 bool fDarwin = true;
393#else
394 bool fDarwin = false;
395#endif
396#ifdef VBOX_WITH_VBOXSDL
397 bool fVBoxSDL = true;
398#else
399 bool fVBoxSDL = false;
400#endif
401
402 if (fCategory == USAGE_DUMPOPTS)
403 {
404 fDumpOpts = true;
405 fLinux = true;
406 fWin = true;
407 fSolaris = true;
408 fFreeBSD = true;
409 fDarwin = true;
410 fVBoxSDL = true;
411 fCategory = USAGE_ALL;
412 }
413
414 RTStrmPrintf(pStrm,
415 "Usage:\n"
416 "\n");
417
418 if (fCategory == USAGE_ALL)
419 RTStrmPrintf(pStrm,
420 " VBoxManage [<general option>] <command>\n"
421 " \n \n"
422 "General Options:\n \n"
423 " [-v|--version] print version number and exit\n"
424 " [-q|--nologo] suppress the logo\n"
425 " [--settingspw <pw>] provide the settings password\n"
426 " [--settingspwfile <file>] provide a file containing the settings password\n"
427 " [@<response-file>] load arguments from the given response file (bourne style)\n"
428 " \n \n"
429 "Commands:\n \n");
430
431 const char *pcszSep1 = " ";
432 const char *pcszSep2 = " ";
433 if (fCategory != USAGE_ALL)
434 {
435 pcszSep1 = "VBoxManage";
436 pcszSep2 = "";
437 }
438
439#define SEP pcszSep1, pcszSep2
440
441 if (fCategory & USAGE_LIST)
442 RTStrmPrintf(pStrm,
443 "%s list [--long|-l] [--sorted|-s]%s vms|runningvms|ostypes|hostdvds|hostfloppies|\n"
444#if defined(VBOX_WITH_NETFLT)
445 " intnets|bridgedifs|hostonlyifs|natnets|dhcpservers|\n"
446#else
447 " intnets|bridgedifs|natnets|dhcpservers|hostinfo|\n"
448#endif
449 " hostinfo|hostcpuids|hddbackends|hdds|dvds|floppies|\n"
450 " usbhost|usbfilters|systemproperties|extpacks|\n"
451 " groups|webcams|screenshotformats\n"
452 "\n", SEP);
453
454 if (fCategory & USAGE_SHOWVMINFO)
455 RTStrmPrintf(pStrm,
456 "%s showvminfo %s <uuid|vmname> [--details]\n"
457 " [--machinereadable]\n"
458 "%s showvminfo %s <uuid|vmname> --log <idx>\n"
459 "\n", SEP, SEP);
460
461 if (fCategory & USAGE_REGISTERVM)
462 RTStrmPrintf(pStrm,
463 "%s registervm %s <filename>\n"
464 "\n", SEP);
465
466 if (fCategory & USAGE_UNREGISTERVM)
467 RTStrmPrintf(pStrm,
468 "%s unregistervm %s <uuid|vmname> [--delete]\n"
469 "\n", SEP);
470
471 if (fCategory & USAGE_CREATEVM)
472 RTStrmPrintf(pStrm,
473 "%s createvm %s --name <name>\n"
474 " [--groups <group>, ...]\n"
475 " [--ostype <ostype>]\n"
476 " [--register]\n"
477 " [--basefolder <path>]\n"
478 " [--uuid <uuid>]\n"
479 "\n", SEP);
480
481 if (fCategory & USAGE_MODIFYVM)
482 {
483 RTStrmPrintf(pStrm,
484 "%s modifyvm %s <uuid|vmname>\n"
485 " [--name <name>]\n"
486 " [--groups <group>, ...]\n"
487 " [--description <desc>]\n"
488 " [--ostype <ostype>]\n"
489 " [--iconfile <filename>]\n"
490 " [--memory <memorysize in MB>]\n"
491 " [--pagefusion on|off]\n"
492 " [--vram <vramsize in MB>]\n"
493 " [--acpi on|off]\n"
494#ifdef VBOX_WITH_PCI_PASSTHROUGH
495 " [--pciattach 03:04.0]\n"
496 " [--pciattach 03:04.0@02:01.0]\n"
497 " [--pcidetach 03:04.0]\n"
498#endif
499 " [--ioapic on|off]\n"
500 " [--hpet on|off]\n"
501 " [--triplefaultreset on|off]\n"
502 " [--apic on|off]\n"
503 " [--x2apic on|off]\n"
504 " [--paravirtprovider none|default|legacy|minimal|\n"
505 " hyperv|kvm]\n"
506 " [--paravirtdebug <key=value> [,<key=value> ...]]\n"
507 " [--hwvirtex on|off]\n"
508 " [--nestedpaging on|off]\n"
509 " [--largepages on|off]\n"
510 " [--vtxvpid on|off]\n"
511 " [--vtxux on|off]\n"
512 " [--pae on|off]\n"
513 " [--longmode on|off]\n"
514 " [--ibpb-on-vm-exit on|off]\n"
515 " [--ibpb-on-vm-entry on|off]\n"
516 " [--nested-hw-virt on|off]\n"
517 " [--cpu-profile \"host|Intel 80[86|286|386]\"]\n"
518 " [--cpuid-portability-level <0..3>\n"
519 " [--cpuid-set <leaf[:subleaf]> <eax> <ebx> <ecx> <edx>]\n"
520 " [--cpuid-remove <leaf[:subleaf]>]\n"
521 " [--cpuidremoveall]\n"
522 " [--hardwareuuid <uuid>]\n"
523 " [--cpus <number>]\n"
524 " [--cpuhotplug on|off]\n"
525 " [--plugcpu <id>]\n"
526 " [--unplugcpu <id>]\n"
527 " [--cpuexecutioncap <1-100>]\n"
528 " [--rtcuseutc on|off]\n"
529#ifdef VBOX_WITH_VMSVGA
530 " [--graphicscontroller none|vboxvga|vmsvga]\n"
531#else
532 " [--graphicscontroller none|vboxvga]\n"
533#endif
534 " [--monitorcount <number>]\n"
535 " [--accelerate3d on|off]\n"
536#ifdef VBOX_WITH_VIDEOHWACCEL
537 " [--accelerate2dvideo on|off]\n"
538#endif
539 " [--firmware bios|efi|efi32|efi64]\n"
540 " [--chipset ich9|piix3]\n"
541 " [--bioslogofadein on|off]\n"
542 " [--bioslogofadeout on|off]\n"
543 " [--bioslogodisplaytime <msec>]\n"
544 " [--bioslogoimagepath <imagepath>]\n"
545 " [--biosbootmenu disabled|menuonly|messageandmenu]\n"
546 " [--biosapic disabled|apic|x2apic]\n"
547 " [--biossystemtimeoffset <msec>]\n"
548 " [--biospxedebug on|off]\n"
549 " [--boot<1-4> none|floppy|dvd|disk|net>]\n"
550 " [--nic<1-N> none|null|nat|bridged|intnet"
551#if defined(VBOX_WITH_NETFLT)
552 "|hostonly"
553#endif
554 "|\n"
555 " generic|natnetwork"
556 "]\n"
557 " [--nictype<1-N> Am79C970A|Am79C973"
558#ifdef VBOX_WITH_E1000
559 "|\n 82540EM|82543GC|82545EM"
560#endif
561#ifdef VBOX_WITH_VIRTIO
562 "|\n virtio"
563#endif /* VBOX_WITH_VIRTIO */
564 "]\n"
565 " [--cableconnected<1-N> on|off]\n"
566 " [--nictrace<1-N> on|off]\n"
567 " [--nictracefile<1-N> <filename>]\n"
568 " [--nicproperty<1-N> name=[value]]\n"
569 " [--nicspeed<1-N> <kbps>]\n"
570 " [--nicbootprio<1-N> <priority>]\n"
571 " [--nicpromisc<1-N> deny|allow-vms|allow-all]\n"
572 " [--nicbandwidthgroup<1-N> none|<name>]\n"
573 " [--bridgeadapter<1-N> none|<devicename>]\n"
574#if defined(VBOX_WITH_NETFLT)
575 " [--hostonlyadapter<1-N> none|<devicename>]\n"
576#endif
577 " [--intnet<1-N> <network name>]\n"
578 " [--nat-network<1-N> <network name>]\n"
579 " [--nicgenericdrv<1-N> <driver>\n"
580 " [--natnet<1-N> <network>|default]\n"
581 " [--natsettings<1-N> [<mtu>],[<socksnd>],\n"
582 " [<sockrcv>],[<tcpsnd>],\n"
583 " [<tcprcv>]]\n"
584 " [--natpf<1-N> [<rulename>],tcp|udp,[<hostip>],\n"
585 " <hostport>,[<guestip>],<guestport>]\n"
586 " [--natpf<1-N> delete <rulename>]\n"
587 " [--nattftpprefix<1-N> <prefix>]\n"
588 " [--nattftpfile<1-N> <file>]\n"
589 " [--nattftpserver<1-N> <ip>]\n"
590 " [--natbindip<1-N> <ip>\n"
591 " [--natdnspassdomain<1-N> on|off]\n"
592 " [--natdnsproxy<1-N> on|off]\n"
593 " [--natdnshostresolver<1-N> on|off]\n"
594 " [--nataliasmode<1-N> default|[log],[proxyonly],\n"
595 " [sameports]]\n"
596 " [--macaddress<1-N> auto|<mac>]\n"
597 " [--mouse ps2|usb|usbtablet|usbmultitouch]\n"
598 " [--keyboard ps2|usb\n"
599 " [--uart<1-N> off|<I/O base> <IRQ>]\n"
600 " [--uartmode<1-N> disconnected|\n"
601 " server <pipe>|\n"
602 " client <pipe>|\n"
603 " tcpserver <port>|\n"
604 " tcpclient <hostname:port>|\n"
605 " file <file>|\n"
606 " <devicename>]\n"
607#if defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
608 " [--lpt<1-N> off|<I/O base> <IRQ>]\n"
609 " [--lptmode<1-N> <devicename>]\n"
610#endif
611 " [--guestmemoryballoon <balloonsize in MB>]\n"
612 " [--audio none|null", SEP);
613 if (fWin)
614 {
615#ifdef VBOX_WITH_WINMM
616 RTStrmPrintf(pStrm, "|winmm|dsound");
617#else
618 RTStrmPrintf(pStrm, "|dsound");
619#endif
620 }
621 if (fLinux || fSolaris)
622 {
623 RTStrmPrintf(pStrm, ""
624#ifdef VBOX_WITH_AUDIO_OSS
625 "|oss"
626#endif
627#ifdef VBOX_WITH_AUDIO_ALSA
628 "|alsa"
629#endif
630#ifdef VBOX_WITH_AUDIO_PULSE
631 "|pulse"
632#endif
633 );
634 }
635 if (fFreeBSD)
636 {
637#ifdef VBOX_WITH_AUDIO_OSS
638 /* Get the line break sorted when dumping all option variants. */
639 if (fDumpOpts)
640 {
641 RTStrmPrintf(pStrm, "|\n"
642 " oss");
643 }
644 else
645 RTStrmPrintf(pStrm, "|oss");
646#endif
647#ifdef VBOX_WITH_AUDIO_PULSE
648 RTStrmPrintf(pStrm, "|pulse");
649#endif
650 }
651 if (fDarwin)
652 {
653 RTStrmPrintf(pStrm, "|coreaudio");
654 }
655 RTStrmPrintf(pStrm, "]\n");
656 RTStrmPrintf(pStrm,
657 " [--audioin on|off]\n"
658 " [--audioout on|off]\n"
659 " [--audiocontroller ac97|hda|sb16]\n"
660 " [--audiocodec stac9700|ad1980|stac9221|sb16]\n"
661 " [--clipboard disabled|hosttoguest|guesttohost|\n"
662 " bidirectional]\n"
663 " [--draganddrop disabled|hosttoguest]\n");
664 RTStrmPrintf(pStrm,
665 " [--vrde on|off]\n"
666 " [--vrdeextpack default|<name>\n"
667 " [--vrdeproperty <name=[value]>]\n"
668 " [--vrdeport <hostport>]\n"
669 " [--vrdeaddress <hostip>]\n"
670 " [--vrdeauthtype null|external|guest]\n"
671 " [--vrdeauthlibrary default|<name>\n"
672 " [--vrdemulticon on|off]\n"
673 " [--vrdereusecon on|off]\n"
674 " [--vrdevideochannel on|off]\n"
675 " [--vrdevideochannelquality <percent>]\n");
676 RTStrmPrintf(pStrm,
677 " [--usbohci on|off]\n"
678 " [--usbehci on|off]\n"
679 " [--usbxhci on|off]\n"
680 " [--usbrename <oldname> <newname>]\n"
681 " [--snapshotfolder default|<path>]\n"
682 " [--teleporter on|off]\n"
683 " [--teleporterport <port>]\n"
684 " [--teleporteraddress <address|empty>\n"
685 " [--teleporterpassword <password>]\n"
686 " [--teleporterpasswordfile <file>|stdin]\n"
687 " [--tracing-enabled on|off]\n"
688 " [--tracing-config <config-string>]\n"
689 " [--tracing-allow-vm-access on|off]\n"
690#if 0
691 " [--iocache on|off]\n"
692 " [--iocachesize <I/O cache size in MB>]\n"
693#endif
694#if 0
695 " [--faulttolerance master|standby]\n"
696 " [--faulttoleranceaddress <name>]\n"
697 " [--faulttoleranceport <port>]\n"
698 " [--faulttolerancesyncinterval <msec>]\n"
699 " [--faulttolerancepassword <password>]\n"
700#endif
701#ifdef VBOX_WITH_USB_CARDREADER
702 " [--usbcardreader on|off]\n"
703#endif
704 " [--autostart-enabled on|off]\n"
705 " [--autostart-delay <seconds>]\n"
706#if 0
707 " [--autostop-type disabled|savestate|poweroff|\n"
708 " acpishutdown]\n"
709#endif
710#ifdef VBOX_WITH_VIDEOREC
711 " [--videocap on|off]\n"
712 " [--videocapscreens all|<screen ID> [<screen ID> ...]]\n"
713 " [--videocapfile <filename>]\n"
714 " [--videocapres <width> <height>]\n"
715 " [--videocaprate <rate>]\n"
716 " [--videocapfps <fps>]\n"
717 " [--videocapmaxtime <ms>]\n"
718 " [--videocapmaxsize <MB>]\n"
719 " [--videocapopts <key=value> [,<key=value> ...]]\n"
720#endif
721 " [--defaultfrontend default|<name>]\n"
722 "\n");
723 }
724
725 if (fCategory & USAGE_CLONEVM)
726 RTStrmPrintf(pStrm,
727 "%s clonevm %s <uuid|vmname>\n"
728 " [--snapshot <uuid>|<name>]\n"
729 " [--mode machine|machineandchildren|all]\n"
730 " [--options link|keepallmacs|keepnatmacs|\n"
731 " keepdisknames]\n"
732 " [--name <name>]\n"
733 " [--groups <group>, ...]\n"
734 " [--basefolder <basefolder>]\n"
735 " [--uuid <uuid>]\n"
736 " [--register]\n"
737 "\n", SEP);
738
739 if (fCategory & USAGE_MOVEVM)
740 RTStrmPrintf(pStrm,
741 "%s movevm %s <uuid|vmname>\n"
742 " --type basic\n"
743 " [--folder <path>]\n"
744 "\n", SEP);
745
746 if (fCategory & USAGE_IMPORTAPPLIANCE)
747 RTStrmPrintf(pStrm,
748 "%s import %s <ovfname/ovaname>\n"
749 " [--dry-run|-n]\n"
750 " [--options keepallmacs|keepnatmacs|importtovdi]\n"
751 " [more options]\n"
752 " (run with -n to have options displayed\n"
753 " for a particular OVF)\n\n", SEP);
754
755 if (fCategory & USAGE_EXPORTAPPLIANCE)
756 RTStrmPrintf(pStrm,
757 "%s export %s <machines> --output|-o <name>.<ovf/ova/tar.gz>\n"
758 " [--legacy09|--ovf09|--ovf10|--ovf20|--opc10]\n"
759 " [--manifest]\n"
760 " [--iso]\n"
761 " [--options manifest|iso|nomacs|nomacsbutnat]\n"
762 " [--vsys <number of virtual system>]\n"
763 " [--product <product name>]\n"
764 " [--producturl <product url>]\n"
765 " [--vendor <vendor name>]\n"
766 " [--vendorurl <vendor url>]\n"
767 " [--version <version info>]\n"
768 " [--description <description info>]\n"
769 " [--eula <license text>]\n"
770 " [--eulafile <filename>]\n"
771 "\n", SEP);
772
773 if (fCategory & USAGE_STARTVM)
774 {
775 RTStrmPrintf(pStrm,
776 "%s startvm %s <uuid|vmname>...\n"
777 " [--type gui", SEP);
778 if (fVBoxSDL)
779 RTStrmPrintf(pStrm, "|sdl");
780 RTStrmPrintf(pStrm, "|headless|separate]\n");
781 RTStrmPrintf(pStrm,
782 " [-E|--putenv <NAME>[=<VALUE>]]\n"
783 "\n");
784 }
785
786 if (fCategory & USAGE_CONTROLVM)
787 {
788 RTStrmPrintf(pStrm,
789 "%s controlvm %s <uuid|vmname>\n"
790 " pause|resume|reset|poweroff|savestate|\n"
791 " acpipowerbutton|acpisleepbutton|\n"
792 " keyboardputscancode <hex> [<hex> ...]|\n"
793 " keyboardputstring <string1> [<string2> ...]|\n"
794 " keyboardputfile <filename>|\n"
795 " setlinkstate<1-N> on|off |\n"
796#if defined(VBOX_WITH_NETFLT)
797 " nic<1-N> null|nat|bridged|intnet|hostonly|generic|\n"
798 " natnetwork [<devicename>] |\n"
799#else /* !VBOX_WITH_NETFLT */
800 " nic<1-N> null|nat|bridged|intnet|generic|natnetwork\n"
801 " [<devicename>] |\n"
802#endif /* !VBOX_WITH_NETFLT */
803 " nictrace<1-N> on|off |\n"
804 " nictracefile<1-N> <filename> |\n"
805 " nicproperty<1-N> name=[value] |\n"
806 " nicpromisc<1-N> deny|allow-vms|allow-all |\n"
807 " natpf<1-N> [<rulename>],tcp|udp,[<hostip>],\n"
808 " <hostport>,[<guestip>],<guestport> |\n"
809 " natpf<1-N> delete <rulename> |\n"
810 " guestmemoryballoon <balloonsize in MB> |\n"
811 " usbattach <uuid>|<address>\n"
812 " [--capturefile <filename>] |\n"
813 " usbdetach <uuid>|<address> |\n"
814 " audioin on|off |\n"
815 " audioout on|off |\n"
816 " clipboard disabled|hosttoguest|guesttohost|\n"
817 " bidirectional |\n"
818 " draganddrop disabled|hosttoguest |\n"
819 " vrde on|off |\n"
820 " vrdeport <port> |\n"
821 " vrdeproperty <name=[value]> |\n"
822 " vrdevideochannelquality <percent> |\n"
823 " setvideomodehint <xres> <yres> <bpp>\n"
824 " [[<display>] [<enabled:yes|no> |\n"
825 " [<xorigin> <yorigin>]]] |\n"
826 " screenshotpng <file> [display] |\n"
827 " videocap on|off |\n"
828 " videocapscreens all|none|<screen>,[<screen>...] |\n"
829 " videocapfile <file>\n"
830 " videocapres <width>x<height>\n"
831 " videocaprate <rate>\n"
832 " videocapfps <fps>\n"
833 " videocapmaxtime <ms>\n"
834 " videocapmaxsize <MB>\n"
835 " setcredentials <username>\n"
836 " --passwordfile <file> | <password>\n"
837 " <domain>\n"
838 " [--allowlocallogon <yes|no>] |\n"
839 " teleport --host <name> --port <port>\n"
840 " [--maxdowntime <msec>]\n"
841 " [--passwordfile <file> |\n"
842 " --password <password>] |\n"
843 " plugcpu <id> |\n"
844 " unplugcpu <id> |\n"
845 " cpuexecutioncap <1-100>\n"
846 " webcam <attach [path [settings]]> | <detach [path]> | <list>\n"
847 " addencpassword <id>\n"
848 " <password file>|-\n"
849 " [--removeonsuspend <yes|no>]\n"
850 " removeencpassword <id>\n"
851 " removeallencpasswords\n"
852 "\n", SEP);
853 }
854
855 if (fCategory & USAGE_DISCARDSTATE)
856 RTStrmPrintf(pStrm,
857 "%s discardstate %s <uuid|vmname>\n"
858 "\n", SEP);
859
860 if (fCategory & USAGE_ADOPTSTATE)
861 RTStrmPrintf(pStrm,
862 "%s adoptstate %s <uuid|vmname> <state_file>\n"
863 "\n", SEP);
864
865 if (fCategory & USAGE_SNAPSHOT)
866 RTStrmPrintf(pStrm,
867 "%s snapshot %s <uuid|vmname>\n"
868 " take <name> [--description <desc>] [--live]\n"
869 " [--uniquename Number,Timestamp,Space,Force] |\n"
870 " delete <uuid|snapname> |\n"
871 " restore <uuid|snapname> |\n"
872 " restorecurrent |\n"
873 " edit <uuid|snapname>|--current\n"
874 " [--name <name>]\n"
875 " [--description <desc>] |\n"
876 " list [--details|--machinereadable]\n"
877 " showvminfo <uuid|snapname>\n"
878 "\n", SEP);
879
880 if (fCategory & USAGE_CLOSEMEDIUM)
881 RTStrmPrintf(pStrm,
882 "%s closemedium %s [disk|dvd|floppy] <uuid|filename>\n"
883 " [--delete]\n"
884 "\n", SEP);
885
886 if (fCategory & USAGE_STORAGEATTACH)
887 RTStrmPrintf(pStrm,
888 "%s storageattach %s <uuid|vmname>\n"
889 " --storagectl <name>\n"
890 " [--port <number>]\n"
891 " [--device <number>]\n"
892 " [--type dvddrive|hdd|fdd]\n"
893 " [--medium none|emptydrive|additions|\n"
894 " <uuid|filename>|host:<drive>|iscsi]\n"
895 " [--mtype normal|writethrough|immutable|shareable|\n"
896 " readonly|multiattach]\n"
897 " [--comment <text>]\n"
898 " [--setuuid <uuid>]\n"
899 " [--setparentuuid <uuid>]\n"
900 " [--passthrough on|off]\n"
901 " [--tempeject on|off]\n"
902 " [--nonrotational on|off]\n"
903 " [--discard on|off]\n"
904 " [--hotpluggable on|off]\n"
905 " [--bandwidthgroup <name>]\n"
906 " [--forceunmount]\n"
907 " [--server <name>|<ip>]\n"
908 " [--target <target>]\n"
909 " [--tport <port>]\n"
910 " [--lun <lun>]\n"
911 " [--encodedlun <lun>]\n"
912 " [--username <username>]\n"
913 " [--password <password>]\n"
914 " [--passwordfile <file>]\n"
915 " [--initiator <initiator>]\n"
916 " [--intnet]\n"
917 "\n", SEP);
918
919 if (fCategory & USAGE_STORAGECONTROLLER)
920 RTStrmPrintf(pStrm,
921 "%s storagectl %s <uuid|vmname>\n"
922 " --name <name>\n"
923 " [--add ide|sata|scsi|floppy|sas|usb|pcie]\n"
924 " [--controller LSILogic|LSILogicSAS|BusLogic|\n"
925 " IntelAHCI|PIIX3|PIIX4|ICH6|I82078|\n"
926 " [ USB|NVMe]\n"
927 " [--portcount <1-n>]\n"
928 " [--hostiocache on|off]\n"
929 " [--bootable on|off]\n"
930 " [--rename <name>]\n"
931 " [--remove]\n"
932 "\n", SEP);
933
934 if (fCategory & USAGE_BANDWIDTHCONTROL)
935 RTStrmPrintf(pStrm,
936 "%s bandwidthctl %s <uuid|vmname>\n"
937 " add <name> --type disk|network\n"
938 " --limit <megabytes per second>[k|m|g|K|M|G] |\n"
939 " set <name>\n"
940 " --limit <megabytes per second>[k|m|g|K|M|G] |\n"
941 " remove <name> |\n"
942 " list [--machinereadable]\n"
943 " (limit units: k=kilobit, m=megabit, g=gigabit,\n"
944 " K=kilobyte, M=megabyte, G=gigabyte)\n"
945 "\n", SEP);
946
947 if (fCategory & USAGE_SHOWMEDIUMINFO)
948 RTStrmPrintf(pStrm,
949 "%s showmediuminfo %s [disk|dvd|floppy] <uuid|filename>\n"
950 "\n", SEP);
951
952 if (fCategory & USAGE_CREATEMEDIUM)
953 RTStrmPrintf(pStrm,
954 "%s createmedium %s [disk|dvd|floppy] --filename <filename>\n"
955 " [--size <megabytes>|--sizebyte <bytes>]\n"
956 " [--diffparent <uuid>|<filename>\n"
957 " [--format VDI|VMDK|VHD] (default: VDI)\n"
958 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
959 "\n", SEP);
960
961 if (fCategory & USAGE_MODIFYMEDIUM)
962 RTStrmPrintf(pStrm,
963 "%s modifymedium %s [disk|dvd|floppy] <uuid|filename>\n"
964 " [--type normal|writethrough|immutable|shareable|\n"
965 " readonly|multiattach]\n"
966 " [--autoreset on|off]\n"
967 " [--property <name=[value]>]\n"
968 " [--compact]\n"
969 " [--resize <megabytes>|--resizebyte <bytes>]\n"
970 " [--move <path]\n"
971 " [--description <description string>]"
972 "\n", SEP);
973
974 if (fCategory & USAGE_CLONEMEDIUM)
975 RTStrmPrintf(pStrm,
976 "%s clonemedium %s [disk|dvd|floppy] <uuid|inputfile> <uuid|outputfile>\n"
977 " [--format VDI|VMDK|VHD|RAW|<other>]\n"
978 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
979 " [--existing]\n"
980 "\n", SEP);
981
982 if (fCategory & USAGE_MEDIUMPROPERTY)
983 RTStrmPrintf(pStrm,
984 "%s mediumproperty %s [disk|dvd|floppy] set <uuid|filename>\n"
985 " <property> <value>\n"
986 "\n"
987 " [disk|dvd|floppy] get <uuid|filename>\n"
988 " <property>\n"
989 "\n"
990 " [disk|dvd|floppy] delete <uuid|filename>\n"
991 " <property>\n"
992 "\n", SEP);
993
994 if (fCategory & USAGE_ENCRYPTMEDIUM)
995 RTStrmPrintf(pStrm,
996 "%s encryptmedium %s <uuid|filename>\n"
997 " [--newpassword <file>|-]\n"
998 " [--oldpassword <file>|-]\n"
999 " [--cipher <cipher identifier>]\n"
1000 " [--newpasswordid <password identifier>]\n"
1001 "\n", SEP);
1002
1003 if (fCategory & USAGE_MEDIUMENCCHKPWD)
1004 RTStrmPrintf(pStrm,
1005 "%s checkmediumpwd %s <uuid|filename>\n"
1006 " <pwd file>|-\n"
1007 "\n", SEP);
1008
1009 if (fCategory & USAGE_CONVERTFROMRAW)
1010 RTStrmPrintf(pStrm,
1011 "%s convertfromraw %s <filename> <outputfile>\n"
1012 " [--format VDI|VMDK|VHD]\n"
1013 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
1014 " [--uuid <uuid>]\n"
1015 "%s convertfromraw %s stdin <outputfile> <bytes>\n"
1016 " [--format VDI|VMDK|VHD]\n"
1017 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
1018 " [--uuid <uuid>]\n"
1019 "\n", SEP, SEP);
1020
1021 if (fCategory & USAGE_GETEXTRADATA)
1022 RTStrmPrintf(pStrm,
1023 "%s getextradata %s global|<uuid|vmname>\n"
1024 " <key>|enumerate\n"
1025 "\n", SEP);
1026
1027 if (fCategory & USAGE_SETEXTRADATA)
1028 RTStrmPrintf(pStrm,
1029 "%s setextradata %s global|<uuid|vmname>\n"
1030 " <key>\n"
1031 " [<value>] (no value deletes key)\n"
1032 "\n", SEP);
1033
1034 if (fCategory & USAGE_SETPROPERTY)
1035 RTStrmPrintf(pStrm,
1036 "%s setproperty %s machinefolder default|<folder> |\n"
1037 " hwvirtexclusive on|off |\n"
1038 " vrdeauthlibrary default|<library> |\n"
1039 " websrvauthlibrary default|null|<library> |\n"
1040 " vrdeextpack null|<library> |\n"
1041 " autostartdbpath null|<folder> |\n"
1042 " loghistorycount <value>\n"
1043 " defaultfrontend default|<name>\n"
1044 " logginglevel <log setting>\n"
1045 "\n", SEP);
1046
1047 if (fCategory & USAGE_USBFILTER_ADD)
1048 RTStrmPrintf(pStrm,
1049 "%s usbfilter %s add <index,0-N>\n"
1050 " --target <uuid|vmname>|global\n"
1051 " --name <string>\n"
1052 " --action ignore|hold (global filters only)\n"
1053 " [--active yes|no] (yes)\n"
1054 " [--vendorid <XXXX>] (null)\n"
1055 " [--productid <XXXX>] (null)\n"
1056 " [--revision <IIFF>] (null)\n"
1057 " [--manufacturer <string>] (null)\n"
1058 " [--product <string>] (null)\n"
1059 " [--remote yes|no] (null, VM filters only)\n"
1060 " [--serialnumber <string>] (null)\n"
1061 " [--maskedinterfaces <XXXXXXXX>]\n"
1062 "\n", SEP);
1063
1064 if (fCategory & USAGE_USBFILTER_MODIFY)
1065 RTStrmPrintf(pStrm,
1066 "%s usbfilter %s modify <index,0-N>\n"
1067 " --target <uuid|vmname>|global\n"
1068 " [--name <string>]\n"
1069 " [--action ignore|hold] (global filters only)\n"
1070 " [--active yes|no]\n"
1071 " [--vendorid <XXXX>|\"\"]\n"
1072 " [--productid <XXXX>|\"\"]\n"
1073 " [--revision <IIFF>|\"\"]\n"
1074 " [--manufacturer <string>|\"\"]\n"
1075 " [--product <string>|\"\"]\n"
1076 " [--remote yes|no] (null, VM filters only)\n"
1077 " [--serialnumber <string>|\"\"]\n"
1078 " [--maskedinterfaces <XXXXXXXX>]\n"
1079 "\n", SEP);
1080
1081 if (fCategory & USAGE_USBFILTER_REMOVE)
1082 RTStrmPrintf(pStrm,
1083 "%s usbfilter %s remove <index,0-N>\n"
1084 " --target <uuid|vmname>|global\n"
1085 "\n", SEP);
1086
1087 if (fCategory & USAGE_SHAREDFOLDER_ADD)
1088 RTStrmPrintf(pStrm,
1089 "%s sharedfolder %s add <uuid|vmname>\n"
1090 " --name <name> --hostpath <hostpath>\n"
1091 " [--transient] [--readonly] [--automount]\n"
1092 "\n", SEP);
1093
1094 if (fCategory & USAGE_SHAREDFOLDER_REMOVE)
1095 RTStrmPrintf(pStrm,
1096 "%s sharedfolder %s remove <uuid|vmname>\n"
1097 " --name <name> [--transient]\n"
1098 "\n", SEP);
1099
1100#ifdef VBOX_WITH_GUEST_PROPS
1101 if (fCategory & USAGE_GUESTPROPERTY)
1102 usageGuestProperty(pStrm, SEP);
1103#endif /* VBOX_WITH_GUEST_PROPS defined */
1104
1105#ifdef VBOX_WITH_GUEST_CONTROL
1106 if (fCategory & USAGE_GUESTCONTROL)
1107 usageGuestControl(pStrm, SEP, fSubCategory);
1108#endif /* VBOX_WITH_GUEST_CONTROL defined */
1109
1110 if (fCategory & USAGE_METRICS)
1111 RTStrmPrintf(pStrm,
1112 "%s metrics %s list [*|host|<vmname> [<metric_list>]]\n"
1113 " (comma-separated)\n\n"
1114 "%s metrics %s setup\n"
1115 " [--period <seconds>] (default: 1)\n"
1116 " [--samples <count>] (default: 1)\n"
1117 " [--list]\n"
1118 " [*|host|<vmname> [<metric_list>]]\n\n"
1119 "%s metrics %s query [*|host|<vmname> [<metric_list>]]\n\n"
1120 "%s metrics %s enable\n"
1121 " [--list]\n"
1122 " [*|host|<vmname> [<metric_list>]]\n\n"
1123 "%s metrics %s disable\n"
1124 " [--list]\n"
1125 " [*|host|<vmname> [<metric_list>]]\n\n"
1126 "%s metrics %s collect\n"
1127 " [--period <seconds>] (default: 1)\n"
1128 " [--samples <count>] (default: 1)\n"
1129 " [--list]\n"
1130 " [--detach]\n"
1131 " [*|host|<vmname> [<metric_list>]]\n"
1132 "\n", SEP, SEP, SEP, SEP, SEP, SEP);
1133
1134#if defined(VBOX_WITH_NAT_SERVICE)
1135 if (fCategory & USAGE_NATNETWORK)
1136 {
1137 RTStrmPrintf(pStrm,
1138 "%s natnetwork %s add --netname <name>\n"
1139 " --network <network>\n"
1140 " [--enable|--disable]\n"
1141 " [--dhcp on|off]\n"
1142 " [--port-forward-4 <rule>]\n"
1143 " [--loopback-4 <rule>]\n"
1144 " [--ipv6 on|off]\n"
1145 " [--port-forward-6 <rule>]\n"
1146 " [--loopback-6 <rule>]\n\n"
1147 "%s natnetwork %s remove --netname <name>\n\n"
1148 "%s natnetwork %s modify --netname <name>\n"
1149 " [--network <network>]\n"
1150 " [--enable|--disable]\n"
1151 " [--dhcp on|off]\n"
1152 " [--port-forward-4 <rule>]\n"
1153 " [--loopback-4 <rule>]\n"
1154 " [--ipv6 on|off]\n"
1155 " [--port-forward-6 <rule>]\n"
1156 " [--loopback-6 <rule>]\n\n"
1157 "%s natnetwork %s start --netname <name>\n\n"
1158 "%s natnetwork %s stop --netname <name>\n\n"
1159 "%s natnetwork %s list [<pattern>]\n"
1160 "\n", SEP, SEP, SEP, SEP, SEP, SEP);
1161
1162
1163 }
1164#endif
1165
1166#if defined(VBOX_WITH_NETFLT)
1167 if (fCategory & USAGE_HOSTONLYIFS)
1168 {
1169 RTStrmPrintf(pStrm,
1170 "%s hostonlyif %s ipconfig <name>\n"
1171 " [--dhcp |\n"
1172 " --ip<ipv4> [--netmask<ipv4> (def: 255.255.255.0)] |\n"
1173 " --ipv6<ipv6> [--netmasklengthv6<length> (def: 64)]]\n"
1174# if !defined(RT_OS_SOLARIS) || defined(VBOX_ONLY_DOCS)
1175 " create |\n"
1176 " remove <name>\n"
1177# endif
1178 "\n", SEP);
1179 }
1180#endif
1181
1182 if (fCategory & USAGE_DHCPSERVER)
1183 {
1184 RTStrmPrintf(pStrm,
1185 "%s dhcpserver %s add|modify --netname <network_name> |\n"
1186#if defined(VBOX_WITH_NETFLT)
1187 " --ifname <hostonly_if_name>\n"
1188#endif
1189 " [--ip <ip_address>\n"
1190 " --netmask <network_mask>\n"
1191 " --lowerip <lower_ip>\n"
1192 " --upperip <upper_ip>]\n"
1193 " [--enable | --disable]\n\n"
1194 "%s dhcpserver %s remove --netname <network_name> |\n"
1195#if defined(VBOX_WITH_NETFLT)
1196 " --ifname <hostonly_if_name>\n"
1197#endif
1198 "\n", SEP, SEP);
1199 }
1200
1201 if (fCategory & USAGE_USBDEVSOURCE)
1202 {
1203 RTStrmPrintf(pStrm,
1204 "%s usbdevsource %s add <source name>\n"
1205 " --backend <backend>\n"
1206 " --address <address>\n"
1207 "%s usbdevsource %s remove <source name>\n"
1208 "\n", SEP, SEP);
1209 }
1210
1211#ifndef VBOX_ONLY_DOCS /* Converted to man page, not needed. */
1212 if (fCategory == USAGE_ALL)
1213 {
1214 uint32_t cPendingBlankLines = 0;
1215 for (uint32_t i = 0; i < g_cHelpEntries; i++)
1216 {
1217 PCRTMSGREFENTRY pHelp = g_apHelpEntries[i];
1218 while (cPendingBlankLines-- > 0)
1219 RTStrmPutCh(pStrm, '\n');
1220 RTStrmPrintf(pStrm, " %c%s:\n", RT_C_TO_UPPER(pHelp->pszBrief[0]), pHelp->pszBrief + 1);
1221 cPendingBlankLines = 0;
1222 RTMsgRefEntryPrintStringTable(pStrm, &pHelp->Synopsis, RTMSGREFENTRYSTR_SCOPE_GLOBAL,
1223 &cPendingBlankLines, NULL /*pcLinesWritten*/);
1224 cPendingBlankLines = RT_MAX(cPendingBlankLines, 1);
1225 }
1226 }
1227#endif
1228}
1229
1230/**
1231 * Print a usage synopsis and the syntax error message.
1232 * @returns RTEXITCODE_SYNTAX.
1233 */
1234RTEXITCODE errorSyntax(USAGECATEGORY fCategory, const char *pszFormat, ...)
1235{
1236 va_list args;
1237 showLogo(g_pStdErr); // show logo even if suppressed
1238#ifndef VBOX_ONLY_DOCS
1239 if (g_fInternalMode)
1240 printUsageInternal(fCategory, g_pStdErr);
1241 else
1242 printUsage(fCategory, ~0U, g_pStdErr);
1243#else
1244 RT_NOREF_PV(fCategory);
1245#endif
1246 va_start(args, pszFormat);
1247 RTStrmPrintf(g_pStdErr, "\nSyntax error: %N\n", pszFormat, &args);
1248 va_end(args);
1249 return RTEXITCODE_SYNTAX;
1250}
1251
1252/**
1253 * Print a usage synopsis and the syntax error message.
1254 * @returns RTEXITCODE_SYNTAX.
1255 */
1256RTEXITCODE errorSyntaxEx(USAGECATEGORY fCategory, uint32_t fSubCategory, const char *pszFormat, ...)
1257{
1258 va_list args;
1259 showLogo(g_pStdErr); // show logo even if suppressed
1260#ifndef VBOX_ONLY_DOCS
1261 if (g_fInternalMode)
1262 printUsageInternal(fCategory, g_pStdErr);
1263 else
1264 printUsage(fCategory, fSubCategory, g_pStdErr);
1265#else
1266 RT_NOREF2(fCategory, fSubCategory);
1267#endif
1268 va_start(args, pszFormat);
1269 RTStrmPrintf(g_pStdErr, "\nSyntax error: %N\n", pszFormat, &args);
1270 va_end(args);
1271 return RTEXITCODE_SYNTAX;
1272}
1273
1274/**
1275 * errorSyntax for RTGetOpt users.
1276 *
1277 * @returns RTEXITCODE_SYNTAX.
1278 *
1279 * @param fCategory The usage category of the command.
1280 * @param fSubCategory The usage sub-category of the command.
1281 * @param rc The RTGetOpt return code.
1282 * @param pValueUnion The value union.
1283 */
1284RTEXITCODE errorGetOptEx(USAGECATEGORY fCategory, uint32_t fSubCategory, int rc, union RTGETOPTUNION const *pValueUnion)
1285{
1286 /*
1287 * Check if it is an unhandled standard option.
1288 */
1289#ifndef VBOX_ONLY_DOCS
1290 if (rc == 'V')
1291 {
1292 RTPrintf("%sr%d\n", VBOX_VERSION_STRING, RTBldCfgRevision());
1293 return RTEXITCODE_SUCCESS;
1294 }
1295#endif
1296
1297 if (rc == 'h')
1298 {
1299 showLogo(g_pStdErr);
1300#ifndef VBOX_ONLY_DOCS
1301 if (g_fInternalMode)
1302 printUsageInternal(fCategory, g_pStdOut);
1303 else
1304 printUsage(fCategory, fSubCategory, g_pStdOut);
1305#endif
1306 return RTEXITCODE_SUCCESS;
1307 }
1308
1309 /*
1310 * General failure.
1311 */
1312 showLogo(g_pStdErr); // show logo even if suppressed
1313#ifndef VBOX_ONLY_DOCS
1314 if (g_fInternalMode)
1315 printUsageInternal(fCategory, g_pStdErr);
1316 else
1317 printUsage(fCategory, fSubCategory, g_pStdErr);
1318#else
1319 RT_NOREF2(fCategory, fSubCategory);
1320#endif
1321
1322 if (rc == VINF_GETOPT_NOT_OPTION)
1323 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid parameter '%s'", pValueUnion->psz);
1324 if (rc > 0)
1325 {
1326 if (RT_C_IS_PRINT(rc))
1327 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid option -%c", rc);
1328 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid option case %i", rc);
1329 }
1330 if (rc == VERR_GETOPT_UNKNOWN_OPTION)
1331 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Unknown option: %s", pValueUnion->psz);
1332 if (rc == VERR_GETOPT_INVALID_ARGUMENT_FORMAT)
1333 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid argument format: %s", pValueUnion->psz);
1334 if (pValueUnion->pDef)
1335 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "%s: %Rrs", pValueUnion->pDef->pszLong, rc);
1336 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "%Rrs", rc);
1337}
1338
1339/**
1340 * errorSyntax for RTGetOpt users.
1341 *
1342 * @returns RTEXITCODE_SYNTAX.
1343 *
1344 * @param fUsageCategory The usage category of the command.
1345 * @param rc The RTGetOpt return code.
1346 * @param pValueUnion The value union.
1347 */
1348RTEXITCODE errorGetOpt(USAGECATEGORY fCategory, int rc, union RTGETOPTUNION const *pValueUnion)
1349{
1350 return errorGetOptEx(fCategory, ~0U, rc, pValueUnion);
1351}
1352
1353/**
1354 * Print an error message without the syntax stuff.
1355 *
1356 * @returns RTEXITCODE_SYNTAX.
1357 */
1358RTEXITCODE errorArgument(const char *pszFormat, ...)
1359{
1360 va_list args;
1361 va_start(args, pszFormat);
1362 RTMsgErrorV(pszFormat, args);
1363 va_end(args);
1364 return RTEXITCODE_SYNTAX;
1365}
1366
Note: See TracBrowser for help on using the repository browser.

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