blob: af9def58986300acdbc09d891bf40274b787d2f2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Josh Poimboeuf1843b4e2015-12-15 09:39:40 -06002#ifndef __SUBCMD_PARSE_OPTIONS_H
3#define __SUBCMD_PARSE_OPTIONS_H
Ingo Molnar07800602009-04-20 15:00:56 +02004
Arnaldo Carvalho de Melod5f805c2017-01-05 12:44:05 -03005#include <linux/kernel.h>
Arnaldo Carvalho de Melo80354582010-05-17 15:51:10 -03006#include <stdbool.h>
Josh Poimboeuf2f4ce5e2015-12-15 09:39:38 -06007#include <stdint.h>
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -03008
Josh Poimboeuf24b1e5d2015-12-18 06:39:17 -06009#ifndef NORETURN
10#define NORETURN __attribute__((__noreturn__))
11#endif
12
Ingo Molnar07800602009-04-20 15:00:56 +020013enum parse_opt_type {
14 /* special types */
15 OPTION_END,
16 OPTION_ARGUMENT,
17 OPTION_GROUP,
18 /* options with no arguments */
19 OPTION_BIT,
Ian Munsiec0555642010-04-13 18:37:33 +100020 OPTION_BOOLEAN,
21 OPTION_INCR,
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -030022 OPTION_SET_UINT,
Ingo Molnar07800602009-04-20 15:00:56 +020023 OPTION_SET_PTR,
24 /* options with arguments (usually) */
25 OPTION_STRING,
26 OPTION_INTEGER,
Peter Zijlstrae61078a2009-06-03 11:24:33 +020027 OPTION_LONG,
Arnaldo Carvalho de Melo4ba8b3e2018-10-18 15:24:07 -030028 OPTION_ULONG,
Ingo Molnar07800602009-04-20 15:00:56 +020029 OPTION_CALLBACK,
Arnaldo Carvalho de Melo6ba85ce2010-05-17 12:16:48 -030030 OPTION_U64,
Arnaldo Carvalho de Meloc100edb2010-05-17 15:30:00 -030031 OPTION_UINTEGER,
Ingo Molnar07800602009-04-20 15:00:56 +020032};
33
34enum parse_opt_flags {
35 PARSE_OPT_KEEP_DASHDASH = 1,
36 PARSE_OPT_STOP_AT_NON_OPTION = 2,
37 PARSE_OPT_KEEP_ARGV0 = 4,
38 PARSE_OPT_KEEP_UNKNOWN = 8,
39 PARSE_OPT_NO_INTERNAL_HELP = 16,
40};
41
42enum parse_opt_option_flags {
43 PARSE_OPT_OPTARG = 1,
44 PARSE_OPT_NOARG = 2,
45 PARSE_OPT_NONEG = 4,
46 PARSE_OPT_HIDDEN = 8,
47 PARSE_OPT_LASTARG_DEFAULT = 16,
Namhyung Kimd152d1b2014-10-23 00:15:45 +090048 PARSE_OPT_DISABLED = 32,
Namhyung Kim42bd71d2014-10-23 00:15:48 +090049 PARSE_OPT_EXCLUSIVE = 64,
Wang Nan0c8c2072015-03-13 12:51:54 +000050 PARSE_OPT_NOEMPTY = 128,
Wang Nan48e1cab2015-12-14 10:39:22 +000051 PARSE_OPT_NOBUILD = 256,
52 PARSE_OPT_CANSKIP = 512,
Ingo Molnar07800602009-04-20 15:00:56 +020053};
54
55struct option;
56typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
57
58/*
59 * `type`::
60 * holds the type of the option, you must have an OPTION_END last in your
61 * array.
62 *
63 * `short_name`::
64 * the character to use as a short option name, '\0' if none.
65 *
66 * `long_name`::
67 * the long option name, without the leading dashes, NULL if none.
68 *
69 * `value`::
70 * stores pointers to the values to be filled.
71 *
72 * `argh`::
73 * token to explain the kind of argument this option wants. Keep it
Ingo Molnar65c9fee2018-12-03 11:22:00 +010074 * homogeneous across the repository.
Ingo Molnar07800602009-04-20 15:00:56 +020075 *
76 * `help`::
77 * the short help associated to what the option does.
78 * Must never be NULL (except for OPTION_END).
79 * OPTION_GROUP uses this pointer to store the group header.
80 *
81 * `flags`::
82 * mask of parse_opt_option_flags.
Ingo Molnar65c9fee2018-12-03 11:22:00 +010083 * PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs)
Ingo Molnar07800602009-04-20 15:00:56 +020084 * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
85 * PARSE_OPT_NONEG: says that this option cannot be negated
86 * PARSE_OPT_HIDDEN this option is skipped in the default usage, showed in
87 * the long one.
88 *
89 * `callback`::
90 * pointer to the callback to use for OPTION_CALLBACK.
91 *
92 * `defval`::
93 * default value to fill (*->value) with for PARSE_OPT_OPTARG.
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -030094 * OPTION_{BIT,SET_UINT,SET_PTR} store the {mask,integer,pointer} to put in
Ingo Molnar07800602009-04-20 15:00:56 +020095 * the value when met.
96 * CALLBACKS can use it like they want.
Adrian Hunter167faf32013-11-18 11:55:56 +020097 *
98 * `set`::
99 * whether an option was set by the user
Ingo Molnar07800602009-04-20 15:00:56 +0200100 */
101struct option {
102 enum parse_opt_type type;
103 int short_name;
104 const char *long_name;
105 void *value;
106 const char *argh;
107 const char *help;
Wang Nan48e1cab2015-12-14 10:39:22 +0000108 const char *build_opt;
Ingo Molnar07800602009-04-20 15:00:56 +0200109
110 int flags;
111 parse_opt_cb *callback;
112 intptr_t defval;
Adrian Hunter167faf32013-11-18 11:55:56 +0200113 bool *set;
Adrian Hunterea8e08a2014-07-14 13:02:54 +0300114 void *data;
Namhyung Kim369a2472016-10-24 12:00:02 +0900115 const struct option *parent;
Ingo Molnar07800602009-04-20 15:00:56 +0200116};
117
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -0300118#define check_vtype(v, type) ( BUILD_BUG_ON_ZERO(!__builtin_types_compatible_p(typeof(v), type)) + v )
119
Ingo Molnarf37a2912009-07-01 12:37:06 +0200120#define OPT_END() { .type = OPTION_END }
Namhyung Kim369a2472016-10-24 12:00:02 +0900121#define OPT_PARENT(p) { .type = OPTION_END, .parent = (p) }
Ingo Molnarf37a2912009-07-01 12:37:06 +0200122#define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) }
123#define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) }
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -0300124#define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h), .defval = (b) }
Arnaldo Carvalho de Melo80354582010-05-17 15:51:10 -0300125#define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h) }
Namhyung Kimb272a592015-10-25 00:49:25 +0900126#define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h), .flags = (f) }
Adrian Hunter167faf32013-11-18 11:55:56 +0200127#define OPT_BOOLEAN_SET(s, l, v, os, h) \
128 { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), \
129 .value = check_vtype(v, bool *), .help = (h), \
130 .set = check_vtype(os, bool *)}
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -0300131#define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) }
132#define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h), .defval = (i) }
Ingo Molnarf37a2912009-07-01 12:37:06 +0200133#define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (p) }
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -0300134#define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) }
135#define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h) }
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -0300136#define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, long *), .help = (h) }
Arnaldo Carvalho de Melo4ba8b3e2018-10-18 15:24:07 -0300137#define OPT_ULONG(s, l, v, h) { .type = OPTION_ULONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned long *), .help = (h) }
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -0300138#define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = check_vtype(v, u64 *), .help = (h) }
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900139#define OPT_STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char **), .argh = (a), .help = (h) }
Adrian Hunter2dd6d8a2015-04-30 17:37:32 +0300140#define OPT_STRING_OPTARG(s, l, v, a, h, d) \
141 { .type = OPTION_STRING, .short_name = (s), .long_name = (l), \
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900142 .value = check_vtype(v, const char **), .argh =(a), .help = (h), \
Adrian Hunter2dd6d8a2015-04-30 17:37:32 +0300143 .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d) }
Jiri Olsab66fb1d2017-01-03 09:19:54 +0100144#define OPT_STRING_OPTARG_SET(s, l, v, os, a, h, d) \
145 { .type = OPTION_STRING, .short_name = (s), .long_name = (l), \
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900146 .value = check_vtype(v, const char **), .argh = (a), .help = (h), \
Jiri Olsab66fb1d2017-01-03 09:19:54 +0100147 .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d), \
148 .set = check_vtype(os, bool *)}
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900149#define OPT_STRING_NOEMPTY(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char **), .argh = (a), .help = (h), .flags = PARSE_OPT_NOEMPTY}
Ingo Molnar07800602009-04-20 15:00:56 +0200150#define OPT_DATE(s, l, v, h) \
Ingo Molnarf37a2912009-07-01 12:37:06 +0200151 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = "time", .help = (h), .callback = parse_opt_approxidate_cb }
Ingo Molnar07800602009-04-20 15:00:56 +0200152#define OPT_CALLBACK(s, l, v, a, h, f) \
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900153 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f) }
Arjan van de Vena79d7db2009-09-12 07:52:54 +0200154#define OPT_CALLBACK_NOOPT(s, l, v, a, h, f) \
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900155 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f), .flags = PARSE_OPT_NOARG }
Frederic Weisbecker5a4b1812009-07-02 17:58:20 +0200156#define OPT_CALLBACK_DEFAULT(s, l, v, a, h, f, d) \
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900157 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f), .defval = (intptr_t)d, .flags = PARSE_OPT_LASTARG_DEFAULT }
Akihiro Nagaie4e18d52010-12-03 12:58:53 +0900158#define OPT_CALLBACK_DEFAULT_NOOPT(s, l, v, a, h, f, d) \
159 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l),\
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900160 .value = (v), .arg = (a), .help = (h), .callback = (f), .defval = (intptr_t)d,\
Akihiro Nagaie4e18d52010-12-03 12:58:53 +0900161 .flags = PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NOARG}
Adrian Hunterea8e08a2014-07-14 13:02:54 +0300162#define OPT_CALLBACK_OPTARG(s, l, v, d, a, h, f) \
163 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), \
Soramichi AKIYAMAf7ee6592017-01-13 21:56:23 +0900164 .value = (v), .argh = (a), .help = (h), .callback = (f), \
Adrian Hunterea8e08a2014-07-14 13:02:54 +0300165 .flags = PARSE_OPT_OPTARG, .data = (d) }
Ingo Molnar07800602009-04-20 15:00:56 +0200166
167/* parse_options() will filter out the processed options and leave the
168 * non-option argments in argv[].
169 * Returns the number of arguments left in argv[].
Josh Poimboeuf24a88bd2015-12-15 09:39:34 -0600170 *
171 * NOTE: parse_options() and parse_options_subcommand() may call exit() in the
172 * case of an error (or for 'special' options like --list-cmds or --list-opts).
Ingo Molnar07800602009-04-20 15:00:56 +0200173 */
174extern int parse_options(int argc, const char **argv,
175 const struct option *options,
176 const char * const usagestr[], int flags);
177
Ramkumar Ramachandra09a71b92014-03-03 20:26:36 -0500178extern int parse_options_subcommand(int argc, const char **argv,
179 const struct option *options,
180 const char *const subcommands[],
181 const char *usagestr[], int flags);
182
Ingo Molnar07800602009-04-20 15:00:56 +0200183extern NORETURN void usage_with_options(const char * const *usagestr,
184 const struct option *options);
Namhyung Kimc7118362015-10-25 00:49:27 +0900185extern NORETURN __attribute__((format(printf,3,4)))
186void usage_with_options_msg(const char * const *usagestr,
187 const struct option *options,
188 const char *fmt, ...);
Ingo Molnar07800602009-04-20 15:00:56 +0200189
190/*----- incremantal advanced APIs -----*/
191
192enum {
193 PARSE_OPT_HELP = -1,
194 PARSE_OPT_DONE,
Ramkumar Ramachandra09a71b92014-03-03 20:26:36 -0500195 PARSE_OPT_LIST_OPTS,
196 PARSE_OPT_LIST_SUBCMDS,
Ingo Molnar07800602009-04-20 15:00:56 +0200197 PARSE_OPT_UNKNOWN,
198};
199
200/*
201 * It's okay for the caller to consume argv/argc in the usual way.
202 * Other fields of that structure are private to parse-options and should not
203 * be modified in any way.
204 */
205struct parse_opt_ctx_t {
206 const char **argv;
207 const char **out;
208 int argc, cpidx;
209 const char *opt;
Namhyung Kim42bd71d2014-10-23 00:15:48 +0900210 const struct option *excl_opt;
Ingo Molnar07800602009-04-20 15:00:56 +0200211 int flags;
212};
213
214extern int parse_options_usage(const char * const *usagestr,
Namhyung Kimac697622013-11-01 16:33:11 +0900215 const struct option *opts,
216 const char *optstr,
217 bool short_opt);
Ingo Molnar07800602009-04-20 15:00:56 +0200218
Ingo Molnar07800602009-04-20 15:00:56 +0200219
220/*----- some often used options -----*/
221extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
222extern int parse_opt_approxidate_cb(const struct option *, const char *, int);
223extern int parse_opt_verbosity_cb(const struct option *, const char *, int);
224
225#define OPT__VERBOSE(var) OPT_BOOLEAN('v', "verbose", (var), "be verbose")
226#define OPT__QUIET(var) OPT_BOOLEAN('q', "quiet", (var), "be quiet")
227#define OPT__VERBOSITY(var) \
228 { OPTION_CALLBACK, 'v', "verbose", (var), NULL, "be more verbose", \
229 PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }, \
230 { OPTION_CALLBACK, 'q', "quiet", (var), NULL, "be more quiet", \
231 PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }
232#define OPT__DRY_RUN(var) OPT_BOOLEAN('n', "dry-run", (var), "dry run")
233#define OPT__ABBREV(var) \
234 { OPTION_CALLBACK, 0, "abbrev", (var), "n", \
235 "use <n> digits to display SHA-1s", \
236 PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 }
237
238extern const char *parse_options_fix_filename(const char *prefix, const char *file);
239
Namhyung Kimd152d1b2014-10-23 00:15:45 +0900240void set_option_flag(struct option *opts, int sopt, const char *lopt, int flag);
Wang Nan48e1cab2015-12-14 10:39:22 +0000241void set_option_nobuild(struct option *opts, int shortopt, const char *longopt,
242 const char *build_opt, bool can_skip);
Josh Poimboeuf1843b4e2015-12-15 09:39:40 -0600243
244#endif /* __SUBCMD_PARSE_OPTIONS_H */