1 #include <linux/compiler.h>
2 #include <linux/types.h>
8 #include "subcmd-util.h"
9 #include "parse-options.h"
10 #include "subcmd-config.h"
18 static int opterror(const struct option
*opt
, const char *reason
, int flags
)
20 if (flags
& OPT_SHORT
)
21 fprintf(stderr
, " Error: switch `%c' %s", opt
->short_name
, reason
);
22 else if (flags
& OPT_UNSET
)
23 fprintf(stderr
, " Error: option `no-%s' %s", opt
->long_name
, reason
);
25 fprintf(stderr
, " Error: option `%s' %s", opt
->long_name
, reason
);
30 static const char *skip_prefix(const char *str
, const char *prefix
)
32 size_t len
= strlen(prefix
);
33 return strncmp(str
, prefix
, len
) ? NULL
: str
+ len
;
36 static void optwarning(const struct option
*opt
, const char *reason
, int flags
)
38 if (flags
& OPT_SHORT
)
39 fprintf(stderr
, " Warning: switch `%c' %s", opt
->short_name
, reason
);
40 else if (flags
& OPT_UNSET
)
41 fprintf(stderr
, " Warning: option `no-%s' %s", opt
->long_name
, reason
);
43 fprintf(stderr
, " Warning: option `%s' %s", opt
->long_name
, reason
);
46 static int get_arg(struct parse_opt_ctx_t
*p
, const struct option
*opt
,
47 int flags
, const char **arg
)
54 } else if ((opt
->flags
& PARSE_OPT_LASTARG_DEFAULT
) && (p
->argc
== 1 ||
55 **(p
->argv
+ 1) == '-')) {
56 res
= (const char *)opt
->defval
;
57 } else if (p
->argc
> 1) {
61 return opterror(opt
, "requires a value", flags
);
67 static int get_value(struct parse_opt_ctx_t
*p
,
68 const struct option
*opt
, int flags
)
70 const char *s
, *arg
= NULL
;
71 const int unset
= flags
& OPT_UNSET
;
75 return opterror(opt
, "takes no value", flags
);
76 if (unset
&& (opt
->flags
& PARSE_OPT_NONEG
))
77 return opterror(opt
, "isn't available", flags
);
78 if (opt
->flags
& PARSE_OPT_DISABLED
)
79 return opterror(opt
, "is not usable", flags
);
81 if (opt
->flags
& PARSE_OPT_EXCLUSIVE
) {
82 if (p
->excl_opt
&& p
->excl_opt
!= opt
) {
85 if (((flags
& OPT_SHORT
) && p
->excl_opt
->short_name
) ||
86 p
->excl_opt
->long_name
== NULL
) {
87 snprintf(msg
, sizeof(msg
), "cannot be used with switch `%c'",
88 p
->excl_opt
->short_name
);
90 snprintf(msg
, sizeof(msg
), "cannot be used with %s",
91 p
->excl_opt
->long_name
);
93 opterror(opt
, msg
, flags
);
98 if (!(flags
& OPT_SHORT
) && p
->opt
) {
100 case OPTION_CALLBACK
:
101 if (!(opt
->flags
& PARSE_OPT_NOARG
))
107 case OPTION_SET_UINT
:
109 return opterror(opt
, "takes no value", flags
);
111 case OPTION_ARGUMENT
:
115 case OPTION_UINTEGER
:
123 if (opt
->flags
& PARSE_OPT_NOBUILD
) {
127 err
= snprintf(reason
, sizeof(reason
),
128 opt
->flags
& PARSE_OPT_CANSKIP
?
129 "is being ignored because %s " :
130 "is not available because %s",
132 reason
[sizeof(reason
) - 1] = '\0';
135 strncpy(reason
, opt
->flags
& PARSE_OPT_CANSKIP
?
140 if (!(opt
->flags
& PARSE_OPT_CANSKIP
))
141 return opterror(opt
, reason
, flags
);
146 if (opt
->flags
& PARSE_OPT_NOARG
)
148 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
155 case OPTION_SET_UINT
:
158 case OPTION_ARGUMENT
:
162 case OPTION_CALLBACK
:
165 case OPTION_UINTEGER
:
173 err
= get_arg(p
, opt
, flags
, NULL
);
177 optwarning(opt
, reason
, flags
);
184 *(int *)opt
->value
&= ~opt
->defval
;
186 *(int *)opt
->value
|= opt
->defval
;
190 *(bool *)opt
->value
= unset
? false : true;
192 *(bool *)opt
->set
= true;
196 *(int *)opt
->value
= unset
? 0 : *(int *)opt
->value
+ 1;
199 case OPTION_SET_UINT
:
200 *(unsigned int *)opt
->value
= unset
? 0 : opt
->defval
;
204 *(void **)opt
->value
= unset
? NULL
: (void *)opt
->defval
;
210 *(const char **)opt
->value
= NULL
;
211 else if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
212 *(const char **)opt
->value
= (const char *)opt
->defval
;
214 err
= get_arg(p
, opt
, flags
, (const char **)opt
->value
);
216 /* PARSE_OPT_NOEMPTY: Allow NULL but disallow empty string. */
217 if (opt
->flags
& PARSE_OPT_NOEMPTY
) {
218 const char *val
= *(const char **)opt
->value
;
223 /* Similar to unset if we are given an empty string. */
224 if (val
[0] == '\0') {
225 *(const char **)opt
->value
= NULL
;
232 case OPTION_CALLBACK
:
234 return (*opt
->callback
)(opt
, NULL
, 1) ? (-1) : 0;
235 if (opt
->flags
& PARSE_OPT_NOARG
)
236 return (*opt
->callback
)(opt
, NULL
, 0) ? (-1) : 0;
237 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
238 return (*opt
->callback
)(opt
, NULL
, 0) ? (-1) : 0;
239 if (get_arg(p
, opt
, flags
, &arg
))
241 return (*opt
->callback
)(opt
, arg
, 0) ? (-1) : 0;
245 *(int *)opt
->value
= 0;
248 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
) {
249 *(int *)opt
->value
= opt
->defval
;
252 if (get_arg(p
, opt
, flags
, &arg
))
254 *(int *)opt
->value
= strtol(arg
, (char **)&s
, 10);
256 return opterror(opt
, "expects a numerical value", flags
);
259 case OPTION_UINTEGER
:
261 *(unsigned int *)opt
->value
= 0;
264 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
) {
265 *(unsigned int *)opt
->value
= opt
->defval
;
268 if (get_arg(p
, opt
, flags
, &arg
))
270 *(unsigned int *)opt
->value
= strtol(arg
, (char **)&s
, 10);
272 return opterror(opt
, "expects a numerical value", flags
);
277 *(long *)opt
->value
= 0;
280 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
) {
281 *(long *)opt
->value
= opt
->defval
;
284 if (get_arg(p
, opt
, flags
, &arg
))
286 *(long *)opt
->value
= strtol(arg
, (char **)&s
, 10);
288 return opterror(opt
, "expects a numerical value", flags
);
293 *(u64
*)opt
->value
= 0;
296 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
) {
297 *(u64
*)opt
->value
= opt
->defval
;
300 if (get_arg(p
, opt
, flags
, &arg
))
302 *(u64
*)opt
->value
= strtoull(arg
, (char **)&s
, 10);
304 return opterror(opt
, "expects a numerical value", flags
);
308 case OPTION_ARGUMENT
:
311 die("should not happen, someone must be hit on the forehead");
315 static int parse_short_opt(struct parse_opt_ctx_t
*p
, const struct option
*options
)
317 for (; options
->type
!= OPTION_END
; options
++) {
318 if (options
->short_name
== *p
->opt
) {
319 p
->opt
= p
->opt
[1] ? p
->opt
+ 1 : NULL
;
320 return get_value(p
, options
, OPT_SHORT
);
326 static int parse_long_opt(struct parse_opt_ctx_t
*p
, const char *arg
,
327 const struct option
*options
)
329 const char *arg_end
= strchr(arg
, '=');
330 const struct option
*abbrev_option
= NULL
, *ambiguous_option
= NULL
;
331 int abbrev_flags
= 0, ambiguous_flags
= 0;
334 arg_end
= arg
+ strlen(arg
);
336 for (; options
->type
!= OPTION_END
; options
++) {
340 if (!options
->long_name
)
343 rest
= skip_prefix(arg
, options
->long_name
);
344 if (options
->type
== OPTION_ARGUMENT
) {
348 return opterror(options
, "takes no value", flags
);
351 p
->out
[p
->cpidx
++] = arg
- 2;
355 if (!prefixcmp(options
->long_name
, "no-")) {
357 * The long name itself starts with "no-", so
358 * accept the option without "no-" so that users
359 * do not have to enter "no-no-" to get the
362 rest
= skip_prefix(arg
, options
->long_name
+ 3);
367 /* Abbreviated case */
368 if (!prefixcmp(options
->long_name
+ 3, arg
)) {
374 if (!strncmp(options
->long_name
, arg
, arg_end
- arg
)) {
378 * If this is abbreviated, it is
379 * ambiguous. So when there is no
380 * exact match later, we need to
383 ambiguous_option
= abbrev_option
;
384 ambiguous_flags
= abbrev_flags
;
386 if (!(flags
& OPT_UNSET
) && *arg_end
)
387 p
->opt
= arg_end
+ 1;
388 abbrev_option
= options
;
389 abbrev_flags
= flags
;
392 /* negated and abbreviated very much? */
393 if (!prefixcmp("no-", arg
)) {
398 if (strncmp(arg
, "no-", 3))
401 rest
= skip_prefix(arg
+ 3, options
->long_name
);
402 /* abbreviated and negated? */
403 if (!rest
&& !prefixcmp(options
->long_name
, arg
+ 3))
414 return get_value(p
, options
, flags
);
417 if (ambiguous_option
) {
419 " Error: Ambiguous option: %s (could be --%s%s or --%s%s)",
421 (ambiguous_flags
& OPT_UNSET
) ? "no-" : "",
422 ambiguous_option
->long_name
,
423 (abbrev_flags
& OPT_UNSET
) ? "no-" : "",
424 abbrev_option
->long_name
);
428 return get_value(p
, abbrev_option
, abbrev_flags
);
432 static void check_typos(const char *arg
, const struct option
*options
)
437 if (!prefixcmp(arg
, "no-")) {
438 fprintf(stderr
, " Error: did you mean `--%s` (with two dashes ?)", arg
);
442 for (; options
->type
!= OPTION_END
; options
++) {
443 if (!options
->long_name
)
445 if (!prefixcmp(options
->long_name
, arg
)) {
446 fprintf(stderr
, " Error: did you mean `--%s` (with two dashes ?)", arg
);
452 static void parse_options_start(struct parse_opt_ctx_t
*ctx
,
453 int argc
, const char **argv
, int flags
)
455 memset(ctx
, 0, sizeof(*ctx
));
456 ctx
->argc
= argc
- 1;
457 ctx
->argv
= argv
+ 1;
459 ctx
->cpidx
= ((flags
& PARSE_OPT_KEEP_ARGV0
) != 0);
461 if ((flags
& PARSE_OPT_KEEP_UNKNOWN
) &&
462 (flags
& PARSE_OPT_STOP_AT_NON_OPTION
))
463 die("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together");
466 static int usage_with_options_internal(const char * const *,
467 const struct option
*, int,
468 struct parse_opt_ctx_t
*);
470 static int parse_options_step(struct parse_opt_ctx_t
*ctx
,
471 const struct option
*options
,
472 const char * const usagestr
[])
474 int internal_help
= !(ctx
->flags
& PARSE_OPT_NO_INTERNAL_HELP
);
475 int excl_short_opt
= 1;
478 /* we must reset ->opt, unknown short option leave it dangling */
481 for (; ctx
->argc
; ctx
->argc
--, ctx
->argv
++) {
483 if (*arg
!= '-' || !arg
[1]) {
484 if (ctx
->flags
& PARSE_OPT_STOP_AT_NON_OPTION
)
486 ctx
->out
[ctx
->cpidx
++] = ctx
->argv
[0];
492 if (internal_help
&& *ctx
->opt
== 'h') {
493 return usage_with_options_internal(usagestr
, options
, 0, ctx
);
495 switch (parse_short_opt(ctx
, options
)) {
497 return parse_options_usage(usagestr
, options
, arg
, 1);
506 check_typos(arg
, options
);
508 if (internal_help
&& *ctx
->opt
== 'h')
509 return usage_with_options_internal(usagestr
, options
, 0, ctx
);
511 switch (parse_short_opt(ctx
, options
)) {
513 return parse_options_usage(usagestr
, options
, arg
, 1);
515 /* fake a short option thing to hide the fact that we may have
516 * started to parse aggregated stuff
518 * This is leaky, too bad.
520 ctx
->argv
[0] = strdup(ctx
->opt
- 1);
521 *(char *)ctx
->argv
[0] = '-';
532 if (!arg
[2]) { /* "--" */
533 if (!(ctx
->flags
& PARSE_OPT_KEEP_DASHDASH
)) {
541 if (internal_help
&& !strcmp(arg
, "help-all"))
542 return usage_with_options_internal(usagestr
, options
, 1, ctx
);
543 if (internal_help
&& !strcmp(arg
, "help"))
544 return usage_with_options_internal(usagestr
, options
, 0, ctx
);
545 if (!strcmp(arg
, "list-opts"))
546 return PARSE_OPT_LIST_OPTS
;
547 if (!strcmp(arg
, "list-cmds"))
548 return PARSE_OPT_LIST_SUBCMDS
;
549 switch (parse_long_opt(ctx
, arg
, options
)) {
551 return parse_options_usage(usagestr
, options
, arg
, 0);
562 if (!(ctx
->flags
& PARSE_OPT_KEEP_UNKNOWN
))
563 return PARSE_OPT_UNKNOWN
;
564 ctx
->out
[ctx
->cpidx
++] = ctx
->argv
[0];
567 return PARSE_OPT_DONE
;
570 parse_options_usage(usagestr
, options
, arg
, excl_short_opt
);
571 if ((excl_short_opt
&& ctx
->excl_opt
->short_name
) ||
572 ctx
->excl_opt
->long_name
== NULL
) {
573 char opt
= ctx
->excl_opt
->short_name
;
574 parse_options_usage(NULL
, options
, &opt
, 1);
576 parse_options_usage(NULL
, options
, ctx
->excl_opt
->long_name
, 0);
578 return PARSE_OPT_HELP
;
581 static int parse_options_end(struct parse_opt_ctx_t
*ctx
)
583 memmove(ctx
->out
+ ctx
->cpidx
, ctx
->argv
, ctx
->argc
* sizeof(*ctx
->out
));
584 ctx
->out
[ctx
->cpidx
+ ctx
->argc
] = NULL
;
585 return ctx
->cpidx
+ ctx
->argc
;
588 int parse_options_subcommand(int argc
, const char **argv
, const struct option
*options
,
589 const char *const subcommands
[], const char *usagestr
[], int flags
)
591 struct parse_opt_ctx_t ctx
;
593 /* build usage string if it's not provided */
594 if (subcommands
&& !usagestr
[0]) {
597 astrcatf(&buf
, "%s %s [<options>] {", subcmd_config
.exec_name
, argv
[0]);
599 for (int i
= 0; subcommands
[i
]; i
++) {
602 astrcat(&buf
, subcommands
[i
]);
609 parse_options_start(&ctx
, argc
, argv
, flags
);
610 switch (parse_options_step(&ctx
, options
, usagestr
)) {
615 case PARSE_OPT_LIST_OPTS
:
616 while (options
->type
!= OPTION_END
) {
617 if (options
->long_name
)
618 printf("--%s ", options
->long_name
);
623 case PARSE_OPT_LIST_SUBCMDS
:
625 for (int i
= 0; subcommands
[i
]; i
++)
626 printf("%s ", subcommands
[i
]);
630 default: /* PARSE_OPT_UNKNOWN */
631 if (ctx
.argv
[0][1] == '-')
632 astrcatf(&error_buf
, "unknown option `%s'",
635 astrcatf(&error_buf
, "unknown switch `%c'", *ctx
.opt
);
636 usage_with_options(usagestr
, options
);
639 return parse_options_end(&ctx
);
642 int parse_options(int argc
, const char **argv
, const struct option
*options
,
643 const char * const usagestr
[], int flags
)
645 return parse_options_subcommand(argc
, argv
, options
, NULL
,
646 (const char **) usagestr
, flags
);
649 #define USAGE_OPTS_WIDTH 24
652 static void print_option_help(const struct option
*opts
, int full
)
657 if (opts
->type
== OPTION_GROUP
) {
660 fprintf(stderr
, "%s\n", opts
->help
);
663 if (!full
&& (opts
->flags
& PARSE_OPT_HIDDEN
))
665 if (opts
->flags
& PARSE_OPT_DISABLED
)
668 pos
= fprintf(stderr
, " ");
669 if (opts
->short_name
)
670 pos
+= fprintf(stderr
, "-%c", opts
->short_name
);
672 pos
+= fprintf(stderr
, " ");
674 if (opts
->long_name
&& opts
->short_name
)
675 pos
+= fprintf(stderr
, ", ");
677 pos
+= fprintf(stderr
, "--%s", opts
->long_name
);
679 switch (opts
->type
) {
680 case OPTION_ARGUMENT
:
685 case OPTION_UINTEGER
:
686 if (opts
->flags
& PARSE_OPT_OPTARG
)
688 pos
+= fprintf(stderr
, "[=<n>]");
690 pos
+= fprintf(stderr
, "[<n>]");
692 pos
+= fprintf(stderr
, " <n>");
694 case OPTION_CALLBACK
:
695 if (opts
->flags
& PARSE_OPT_NOARG
)
700 if (opts
->flags
& PARSE_OPT_OPTARG
)
702 pos
+= fprintf(stderr
, "[=<%s>]", opts
->argh
);
704 pos
+= fprintf(stderr
, "[<%s>]", opts
->argh
);
706 pos
+= fprintf(stderr
, " <%s>", opts
->argh
);
708 if (opts
->flags
& PARSE_OPT_OPTARG
)
710 pos
+= fprintf(stderr
, "[=...]");
712 pos
+= fprintf(stderr
, "[...]");
714 pos
+= fprintf(stderr
, " ...");
717 default: /* OPTION_{BIT,BOOLEAN,SET_UINT,SET_PTR} */
723 case OPTION_SET_UINT
:
728 if (pos
<= USAGE_OPTS_WIDTH
)
729 pad
= USAGE_OPTS_WIDTH
- pos
;
732 pad
= USAGE_OPTS_WIDTH
;
734 fprintf(stderr
, "%*s%s\n", pad
+ USAGE_GAP
, "", opts
->help
);
735 if (opts
->flags
& PARSE_OPT_NOBUILD
)
736 fprintf(stderr
, "%*s(not built-in because %s)\n",
737 USAGE_OPTS_WIDTH
+ USAGE_GAP
, "",
741 static int option__cmp(const void *va
, const void *vb
)
743 const struct option
*a
= va
, *b
= vb
;
744 int sa
= tolower(a
->short_name
), sb
= tolower(b
->short_name
), ret
;
754 const char *la
= a
->long_name
?: "",
755 *lb
= b
->long_name
?: "";
756 ret
= strcmp(la
, lb
);
762 static struct option
*options__order(const struct option
*opts
)
764 int nr_opts
= 0, len
;
765 const struct option
*o
= opts
;
766 struct option
*ordered
;
768 for (o
= opts
; o
->type
!= OPTION_END
; o
++)
771 len
= sizeof(*o
) * (nr_opts
+ 1);
772 ordered
= malloc(len
);
775 memcpy(ordered
, opts
, len
);
777 qsort(ordered
, nr_opts
, sizeof(*o
), option__cmp
);
782 static bool option__in_argv(const struct option
*opt
, const struct parse_opt_ctx_t
*ctx
)
786 for (i
= 1; i
< ctx
->argc
; ++i
) {
787 const char *arg
= ctx
->argv
[i
];
790 if (arg
[1] == '\0') {
791 if (arg
[0] == opt
->short_name
)
796 if (opt
->long_name
&& strcmp(opt
->long_name
, arg
) == 0)
799 if (opt
->help
&& strcasestr(opt
->help
, arg
) != NULL
)
805 if (arg
[1] == opt
->short_name
||
806 (arg
[1] == '-' && opt
->long_name
&& strcmp(opt
->long_name
, arg
+ 2) == 0))
813 static int usage_with_options_internal(const char * const *usagestr
,
814 const struct option
*opts
, int full
,
815 struct parse_opt_ctx_t
*ctx
)
817 struct option
*ordered
;
820 return PARSE_OPT_HELP
;
825 fprintf(stderr
, " Error: %s\n", error_buf
);
829 fprintf(stderr
, "\n Usage: %s\n", *usagestr
++);
830 while (*usagestr
&& **usagestr
)
831 fprintf(stderr
, " or: %s\n", *usagestr
++);
833 fprintf(stderr
, "%s%s\n",
834 **usagestr
? " " : "",
839 if (opts
->type
!= OPTION_GROUP
)
842 ordered
= options__order(opts
);
846 for ( ; opts
->type
!= OPTION_END
; opts
++) {
847 if (ctx
&& ctx
->argc
> 1 && !option__in_argv(opts
, ctx
))
849 print_option_help(opts
, full
);
856 return PARSE_OPT_HELP
;
859 void usage_with_options(const char * const *usagestr
,
860 const struct option
*opts
)
862 usage_with_options_internal(usagestr
, opts
, 0, NULL
);
866 void usage_with_options_msg(const char * const *usagestr
,
867 const struct option
*opts
, const char *fmt
, ...)
870 char *tmp
= error_buf
;
873 if (vasprintf(&error_buf
, fmt
, ap
) == -1)
874 die("vasprintf failed");
879 usage_with_options_internal(usagestr
, opts
, 0, NULL
);
883 int parse_options_usage(const char * const *usagestr
,
884 const struct option
*opts
,
885 const char *optstr
, bool short_opt
)
890 fprintf(stderr
, "\n Usage: %s\n", *usagestr
++);
891 while (*usagestr
&& **usagestr
)
892 fprintf(stderr
, " or: %s\n", *usagestr
++);
894 fprintf(stderr
, "%s%s\n",
895 **usagestr
? " " : "",
902 for ( ; opts
->type
!= OPTION_END
; opts
++) {
904 if (opts
->short_name
== *optstr
) {
905 print_option_help(opts
, 0);
911 if (opts
->long_name
== NULL
)
914 if (!prefixcmp(opts
->long_name
, optstr
))
915 print_option_help(opts
, 0);
916 if (!prefixcmp("no-", optstr
) &&
917 !prefixcmp(opts
->long_name
, optstr
+ 3))
918 print_option_help(opts
, 0);
921 return PARSE_OPT_HELP
;
925 int parse_opt_verbosity_cb(const struct option
*opt
,
926 const char *arg __maybe_unused
,
929 int *target
= opt
->value
;
932 /* --no-quiet, --no-verbose */
934 else if (opt
->short_name
== 'v') {
948 static struct option
*
949 find_option(struct option
*opts
, int shortopt
, const char *longopt
)
951 for (; opts
->type
!= OPTION_END
; opts
++) {
952 if ((shortopt
&& opts
->short_name
== shortopt
) ||
953 (opts
->long_name
&& longopt
&&
954 !strcmp(opts
->long_name
, longopt
)))
960 void set_option_flag(struct option
*opts
, int shortopt
, const char *longopt
,
963 struct option
*opt
= find_option(opts
, shortopt
, longopt
);
970 void set_option_nobuild(struct option
*opts
, int shortopt
,
972 const char *build_opt
,
975 struct option
*opt
= find_option(opts
, shortopt
, longopt
);
980 opt
->flags
|= PARSE_OPT_NOBUILD
;
981 opt
->flags
|= can_skip
? PARSE_OPT_CANSKIP
: 0;
982 opt
->build_opt
= build_opt
;