VirtualBox

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

Last change on this file since 89697 was 89597, checked in by vboxsync, 4 years ago

Main: bugref:9341: Added ability to change VM autostart options when VM is powered on

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