blob: e861d05676d56cb367cf4d16ef843047633c489f [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
Denis Vlasenko67b23e62006-10-03 21:00:06 +00003 * universal getopt32 implementation for busybox
Manuel Novoa III cad53642003-03-19 09:13:01 +00004 *
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +00005 * Copyright (C) 2003-2005 Vladimir Oleynik <dzo@simtreas.ru>
Manuel Novoa III cad53642003-03-19 09:13:01 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Manuel Novoa III cad53642003-03-19 09:13:01 +00008 */
Denys Vlasenko036585a2017-08-08 16:38:18 +02009#if ENABLE_LONG_OPTS
Denys Vlasenko488dd702011-05-29 04:24:13 +020010# include <getopt.h>
11#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000013
Denys Vlasenko727948e2017-08-04 16:23:42 +020014//kbuild:lib-y += getopt32.o
15
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000016/* Documentation
Mike Frysinger2bf88a82005-04-18 22:42:58 +000017
Denis Vlasenko67b23e62006-10-03 21:00:06 +000018uint32_t
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000019getopt32(char **argv, const char *applet_opts, ...)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000020
Denys Vlasenko237bedd2016-07-06 21:58:02 +020021 The command line options are passed as the applet_opts string.
Mike Frysinger2bf88a82005-04-18 22:42:58 +000022
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000023 If one of the given options is found, a flag value is added to
Denys Vlasenko237bedd2016-07-06 21:58:02 +020024 the return value.
Mike Frysinger2bf88a82005-04-18 22:42:58 +000025
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000026 The flag value is determined by the position of the char in
Denys Vlasenko237bedd2016-07-06 21:58:02 +020027 applet_opts string. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000028
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000029 flags = getopt32(argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000030
Denys Vlasenko237bedd2016-07-06 21:58:02 +020031 "r" will set 1 (bit 0)
32 "n" will set 2 (bit 1)
33 "u" will set 4 (bit 2)
34 "g" will set 8 (bit 3)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000035
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000036 and so on. You can also look at the return value as a bit
37 field and each option sets one bit.
Mike Frysinger2bf88a82005-04-18 22:42:58 +000038
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000039 On exit, global variable optind is set so that if you
40 will do argc -= optind; argv += optind; then
41 argc will be equal to number of remaining non-option
42 arguments, first one would be in argv[0], next in argv[1] and so on
43 (options and their parameters will be moved into argv[]
44 positions prior to argv[optind]).
Denis Vlasenko65dbd872006-09-03 12:27:25 +000045
Denys Vlasenko237bedd2016-07-06 21:58:02 +020046 "o:" If one of the options requires an argument, then add a ":"
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000047 after the char in applet_opts and provide a pointer to store
48 the argument. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000049
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000050 char *pointer_to_arg_for_a;
51 char *pointer_to_arg_for_b;
52 char *pointer_to_arg_for_c;
53 char *pointer_to_arg_for_d;
Mike Frysinger2bf88a82005-04-18 22:42:58 +000054
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000055 flags = getopt32(argv, "a:b:c:d:",
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +000056 &pointer_to_arg_for_a, &pointer_to_arg_for_b,
57 &pointer_to_arg_for_c, &pointer_to_arg_for_d);
Mike Frysinger2bf88a82005-04-18 22:42:58 +000058
Denys Vlasenko237bedd2016-07-06 21:58:02 +020059 The type of the pointer may be controlled by "o::" or "o+" in
60 the external string opt_complementary (see below for more info).
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000061
Denys Vlasenko237bedd2016-07-06 21:58:02 +020062 "o::" If option can have an *optional* argument, then add a "::"
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000063 after its char in applet_opts and provide a pointer to store
64 the argument. Note that optional arguments _must_
65 immediately follow the option: -oparam, not -o param.
Mike Frysingere5d0bde2005-05-10 23:48:35 +000066
Denys Vlasenko237bedd2016-07-06 21:58:02 +020067 "o:+" This means that the parameter for this option is a nonnegative integer.
68 It will be processed with xatoi_positive() - allowed range
69 is 0..INT_MAX.
70
71 int param; // "unsigned param;" will also work
72 getopt32(argv, "p:+", &param);
73
74 "o:*" This means that the option can occur multiple times. Each occurrence
75 will be saved as a llist_t element instead of char*.
76
77 For example:
78 The grep applet can have one or more "-e pattern" arguments.
79 In this case you should use getopt32() as follows:
80
81 llist_t *patterns = NULL;
82
83 (this pointer must be initializated to NULL if the list is empty
84 as required by llist_add_to_end(llist_t **old_head, char *new_item).)
85
86 getopt32(argv, "e:*", &patterns);
87
88 $ grep -e user -e root /etc/passwd
89 root:x:0:0:root:/root:/bin/bash
90 user:x:500:500::/home/user:/bin/bash
91
Denys Vlasenko457825f2021-06-06 12:07:11 +020092 "^" options string is "^optchars""\0""opt_complementary".
93
94 "!" If the first character in the applet_opts string is a '!',
95 report bad options, missing required options,
96 inconsistent options with all-ones return value (instead of abort.
97
Mike Frysinger992a58c2006-02-22 22:56:30 +000098 "+" If the first character in the applet_opts string is a plus,
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000099 then option processing will stop as soon as a non-option is
100 encountered in the argv array. Useful for applets like env
101 which should not process arguments to subprograms:
102 env -i ls -d /
103 Here we want env to process just the '-i', not the '-d'.
Mike Frysinger992a58c2006-02-22 22:56:30 +0000104
Denys Vlasenko457825f2021-06-06 12:07:11 +0200105 (The order of multiple prefixes must be "^!+...")
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200106
Denys Vlasenko036585a2017-08-08 16:38:18 +0200107uint32_t
108getopt32long(char **argv, const char *applet_opts, const char *logopts...)
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000109
Denys Vlasenko036585a2017-08-08 16:38:18 +0200110 This allows you to define long options:
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000111
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000112 static const char applet_longopts[] ALIGN1 =
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200113 //"name\0" has_arg val
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100114 "verbose\0" No_argument "v"
115 ;
Denys Vlasenko036585a2017-08-08 16:38:18 +0200116 opt = getopt32long(argv, applet_opts, applet_longopts, ...);
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000117
Denys Vlasenko036585a2017-08-08 16:38:18 +0200118 The last element (val) typically is set to
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000119 matching short option from applet_opts. If there is no matching
120 char in applet_opts, then:
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200121 - return bit has next position after short options
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000122 - if has_arg is not "No_argument", use ptr for arg also
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000123 - opt_complementary affects it too
Mike Frysingerfb6d22c2005-05-11 00:02:39 +0000124
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000125 Note: a good applet will make long options configurable via the
126 config process and not a required feature. The current standard
127 is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS.
Mike Frysingerfb6d22c2005-05-11 00:02:39 +0000128
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200129opt_complementary - option modifiers.
Mike Frysingerfb6d22c2005-05-11 00:02:39 +0000130
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000131 ":" The colon (":") is used to separate groups of two or more chars
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000132 and/or groups of chars and special characters (stating some
133 conditions to be checked).
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000134
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000135 "abc" If groups of two or more chars are specified, the first char
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000136 is the main option and the other chars are secondary options.
137 Their flags will be turned on if the main option is found even
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200138 if they are not specified on the command line. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000139
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200140 flags = getopt32(argv, "^abcd""\0""abc")
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000141
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000142 If getopt() finds "-a" on the command line, then
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000143 getopt32's return value will be as if "-a -b -c" were
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000144 found.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000145
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000146 "ww" Adjacent double options have a counter associated which indicates
Denys Vlasenko29ca1592010-11-22 18:13:15 +0100147 the number of occurrences of the option.
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000148 For example the ps applet needs:
149 if w is given once, GNU ps sets the width to 132,
150 if w is given more than once, it is "unlimited"
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000151
Denis Vlasenko1d426652008-03-17 09:09:09 +0000152 int w_counter = 0; // must be initialized!
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200153 getopt32(argv, "^w""\0""ww", &w_counter);
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000154 if (w_counter)
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000155 width = (w_counter == 1) ? 132 : INT_MAX;
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000156 else
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000157 get_terminal_width(...&width...);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000158
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000159 w_counter is a pointer to an integer. It has to be passed to
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000160 getopt32() after all other option argument sinks.
Denis Vlasenko6429aab2006-09-23 12:22:11 +0000161
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000162 For example: accept multiple -v to indicate the level of verbosity
163 and for each -b optarg, add optarg to my_b. Finally, if b is given,
164 turn off c and vice versa:
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000165
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000166 llist_t *my_b = NULL;
167 int verbose_level = 0;
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200168 f = getopt32(argv, "^vb:*c"
169 "\0""vv:b-c:c-b"
170 , &my_b, &verbose_level);
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000171 if (f & 2) // -c after -b unsets -b flag
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000172 while (my_b) dosomething_with(llist_pop(&my_b));
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000173 if (my_b) // but llist is stored if -b is specified
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000174 free_llist(my_b);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000175 if (verbose_level) printf("verbose level is %d\n", verbose_level);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000176
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000177Special characters:
178
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000179 "-N" A dash as the first char in a opt_complementary group followed
180 by a single digit (0-9) means that at least N non-option
181 arguments must be present on the command line
182
183 "=N" An equal sign as the first char in a opt_complementary group followed
184 by a single digit (0-9) means that exactly N non-option
185 arguments must be present on the command line
186
187 "?N" A "?" as the first char in a opt_complementary group followed
188 by a single digit (0-9) means that at most N arguments must be present
189 on the command line.
190
191 "V-" An option with dash before colon or end-of-line results in
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000192 bb_show_usage() being called if this option is encountered.
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000193 This is typically used to implement "print verbose usage message
194 and exit" option.
195
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000196 "a-b" A dash between two options causes the second of the two
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000197 to be unset (and ignored) if it is given on the command line.
Rob Landleyf76cd962006-05-03 21:23:15 +0000198
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000199 [FIXME: what if they are the same? like "x-x"? Is it ever useful?]
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000200
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000201 For example:
202 The du applet has the options "-s" and "-d depth". If
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000203 getopt32 finds -s, then -d is unset or if it finds -d
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000204 then -s is unset. (Note: busybox implements the GNU
205 "--max-depth" option as "-d".) To obtain this behavior, you
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200206 set opt_complementary to "s-d:d-s". Only one flag value is
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000207 added to getopt32's return value depending on the
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000208 position of the options on the command line. If one of the
209 two options requires an argument pointer (":" in applet_opts
210 as in "d:") optarg is set accordingly.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000211
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000212 char *smax_print_depth;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000213
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200214 opt = getopt32(argv, "^sd:x""\0""s-d:d-s:x-x", &smax_print_depth);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000215
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000216 if (opt & 2)
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000217 max_print_depth = atoi(smax_print_depth);
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000218 if (opt & 4)
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000219 printf("Detected odd -x usage\n");
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000220
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000221 "a--b" A double dash between two options, or between an option and a group
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000222 of options, means that they are mutually exclusive. Unlike
223 the "-" case above, an error will be forced if the options
224 are used together.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000225
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000226 For example:
227 The cut applet must have only one type of list specified, so
Denis Vlasenkoa0319ba2007-08-16 10:37:49 +0000228 -b, -c and -f are mutually exclusive and should raise an error
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000229 if specified together. In this case you must set
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200230 opt_complementary to "b--cf:c--bf:f--bc". If two of the
Denis Vlasenko09196572007-07-21 13:27:44 +0000231 mutually exclusive options are found, getopt32 will call
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100232 bb_show_usage() and die.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000233
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000234 "x--x" Variation of the above, it means that -x option should occur
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000235 at most once.
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000236
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200237 "o+" A plus after a char in opt_complementary means that the parameter
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000238 for this option is a nonnegative integer. It will be processed
Denys Vlasenko77832482010-08-12 14:14:45 +0200239 with xatoi_positive() - allowed range is 0..INT_MAX.
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000240
241 int param; // "unsigned param;" will also work
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200242 getopt32(argv, "^p:""\0""p+", &param);
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000243
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200244 "o::" A double colon after a char in opt_complementary means that the
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000245 option can occur multiple times. Each occurrence will be saved as
246 a llist_t element instead of char*.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000247
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000248 For example:
249 The grep applet can have one or more "-e pattern" arguments.
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000250 In this case you should use getopt32() as follows:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000251
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000252 llist_t *patterns = NULL;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000253
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000254 (this pointer must be initializated to NULL if the list is empty
Denis Vlasenko8d9f4952007-04-08 15:08:42 +0000255 as required by llist_add_to_end(llist_t **old_head, char *new_item).)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000256
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200257 getopt32(argv, "^e:""\0""e::", &patterns);
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200258
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000259 $ grep -e user -e root /etc/passwd
260 root:x:0:0:root:/root:/bin/bash
261 user:x:500:500::/home/user:/bin/bash
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000262
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200263 "o+" and "o::" can be handled by "o:+" and "o:*" specifiers
264 in option string (and it is preferred), but this does not work
265 for "long options only" cases, such as tar --exclude=PATTERN,
266 wget --header=HDR cases.
267
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000268 "a?b" A "?" between an option and a group of options means that
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000269 at least one of them is required to occur if the first option
270 occurs in preceding command line arguments.
Rob Landleyf76cd962006-05-03 21:23:15 +0000271
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000272 For example from "id" applet:
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000273
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000274 // Don't allow -n -r -rn -ug -rug -nug -rnug
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200275 flags = getopt32(argv, "^rnug""\0""r?ug:n?ug:u--g:g--u");
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000276
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000277 This example allowed only:
278 $ id; id -u; id -g; id -ru; id -nu; id -rg; id -ng; id -rnu; id -rng
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000279
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000280 "X" A opt_complementary group with just a single letter means
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000281 that this option is required. If more than one such group exists,
282 at least one option is required to occur (not all of them).
283 For example from "start-stop-daemon" applet:
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000284
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000285 // Don't allow -KS -SK, but -S or -K is required
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200286 flags = getopt32(argv, "^KS...""\0""K:S:K--S:S--K");
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000287
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000288
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000289 Don't forget to use ':'. For example, "?322-22-23X-x-a"
290 is interpreted as "?3:22:-2:2-2:2-3Xa:2--x" -
291 max 3 args; count uses of '-2'; min 2 args; if there is
292 a '-2' option then unset '-3', '-X' and '-a'; if there is
293 a '-2' and after it a '-x' then error out.
Denis Vlasenko737d1312007-08-25 18:25:24 +0000294 But it's far too obfuscated. Use ':' to separate groups.
Eric Andersen8876fb22003-06-20 09:01:58 +0000295*/
296
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000297/* Code here assumes that 'unsigned' is at least 32 bits wide */
298
Denys Vlasenko987be932022-02-06 20:07:12 +0100299const char *const bb_argv_dash[] ALIGN_PTR = { "-", NULL };
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000300
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000301enum {
302 PARAM_STRING,
303 PARAM_LIST,
304 PARAM_INT,
305};
306
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000307typedef struct {
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000308 unsigned char opt_char;
309 smallint param_type;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000310 unsigned switch_on;
311 unsigned switch_off;
312 unsigned incongruously;
313 unsigned requires;
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000314 void **optarg; /* char**, llist_t** or int *. */
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000315 int *counter;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000316} t_complementary;
Eric Andersen8876fb22003-06-20 09:01:58 +0000317
Denys Vlasenko036585a2017-08-08 16:38:18 +0200318uint32_t option_mask32;
319
320#if ENABLE_LONG_OPTS
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000321static const struct option bb_null_long_options[1] = {
Eric Andersen8876fb22003-06-20 09:01:58 +0000322 { 0, 0, 0, 0 }
323};
Denys Vlasenko036585a2017-08-08 16:38:18 +0200324#else
325#define vgetopt32(argv,applet_opts,applet_long_options,p) \
326 vgetopt32(argv,applet_opts,p)
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000327#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000328
Denys Vlasenkodd5a4022017-08-04 16:46:17 +0200329/* Please keep getopt32 free from xmalloc */
330
Denys Vlasenko036585a2017-08-08 16:38:18 +0200331static uint32_t
332vgetopt32(char **argv, const char *applet_opts, const char *applet_long_options, va_list p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000333{
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000334 int argc;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000335 unsigned flags = 0;
336 unsigned requires = 0;
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200337 unsigned len;
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000338 t_complementary complementary[33]; /* last stays zero-filled */
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200339 char dont_die_flag;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000340 int c;
341 const unsigned char *s;
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200342 const char *opt_complementary;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000343 t_complementary *on_off;
Denys Vlasenko036585a2017-08-08 16:38:18 +0200344#if ENABLE_LONG_OPTS
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000345 const struct option *l_o;
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000346 struct option *long_options = (struct option *) &bb_null_long_options;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000347#endif
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000348 unsigned trigger;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000349 int min_arg = 0;
350 int max_arg = -1;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000351 int spec_flgs = 0;
352
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200353#define SHOW_USAGE_IF_ERROR 1
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000354
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000355 on_off = complementary;
356 memset(on_off, 0, sizeof(complementary));
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000357
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200358 len = strlen(applet_opts);
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200359
Denis Vlasenko28e67962009-04-26 23:22:40 +0000360 /* skip bbox extension */
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200361 opt_complementary = NULL;
362 if (applet_opts[0] == '^') {
Denis Vlasenko28e67962009-04-26 23:22:40 +0000363 applet_opts++;
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200364 /* point it past terminating NUL */
365 opt_complementary = applet_opts + len;
366 }
367
368 /* skip another bbox extension */
369 dont_die_flag = applet_opts[0];
370 if (dont_die_flag == '!')
371 applet_opts++;
372
373 applet_opts = strcpy(alloca(len + 1), applet_opts);
Denis Vlasenko28e67962009-04-26 23:22:40 +0000374
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000375 /* skip GNU extension */
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000376 s = (const unsigned char *)applet_opts;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000377 if (*s == '+' || *s == '-')
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000378 s++;
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200379 c = 0;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000380 while (*s) {
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000381 if (c >= 32)
382 break;
383 on_off->opt_char = *s;
Rostislav Skudnov87625122017-02-01 18:35:13 +0000384 on_off->switch_on = (1U << c);
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000385 if (*++s == ':') {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000386 on_off->optarg = va_arg(p, void **);
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200387 if (s[1] == '+' || s[1] == '*') {
388 /* 'o:+' or 'o:*' */
389 on_off->param_type = (s[1] == '+') ?
390 PARAM_INT : PARAM_LIST;
391 overlapping_strcpy((char*)s + 1, (char*)s + 2);
392 }
393 /* skip possible 'o::' (or 'o:+:' !) */
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000394 while (*++s == ':')
395 continue;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000396 }
397 on_off++;
398 c++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000399 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000400
Denys Vlasenko036585a2017-08-08 16:38:18 +0200401#if ENABLE_LONG_OPTS
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000402 if (applet_long_options) {
403 const char *optstr;
404 unsigned i, count;
405
406 count = 1;
407 optstr = applet_long_options;
408 while (optstr[0]) {
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000409 optstr += strlen(optstr) + 3; /* skip NUL, has_arg, val */
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000410 count++;
411 }
412 /* count == no. of longopts + 1 */
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000413 long_options = alloca(count * sizeof(*long_options));
Denis Vlasenkof4cee7a2007-07-25 17:18:06 +0000414 memset(long_options, 0, count * sizeof(*long_options));
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000415 i = 0;
416 optstr = applet_long_options;
417 while (--count) {
418 long_options[i].name = optstr;
419 optstr += strlen(optstr) + 1;
420 long_options[i].has_arg = (unsigned char)(*optstr++);
421 /* long_options[i].flag = NULL; */
422 long_options[i].val = (unsigned char)(*optstr++);
423 i++;
424 }
425 for (l_o = long_options; l_o->name; l_o++) {
426 if (l_o->flag)
427 continue;
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000428 for (on_off = complementary; on_off->opt_char; on_off++)
429 if (on_off->opt_char == l_o->val)
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000430 goto next_long;
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000431 if (c >= 32)
432 break;
433 on_off->opt_char = l_o->val;
Rostislav Skudnov87625122017-02-01 18:35:13 +0000434 on_off->switch_on = (1U << c);
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000435 if (l_o->has_arg != no_argument)
436 on_off->optarg = va_arg(p, void **);
437 c++;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000438 next_long: ;
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000439 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000440 }
Denys Vlasenko036585a2017-08-08 16:38:18 +0200441#endif /* ENABLE_LONG_OPTS */
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200442
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200443 s = (const unsigned char *)opt_complementary;
444 if (s) for (; *s; s++) {
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000445 t_complementary *pair;
446 unsigned *pair_switch;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000447
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000448 if (*s == ':')
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000449 continue;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000450 c = s[1];
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000451 if (*s == '?') {
452 if (c < '0' || c > '9') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000453 spec_flgs |= SHOW_USAGE_IF_ERROR;
454 } else {
455 max_arg = c - '0';
456 s++;
457 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000458 continue;
459 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000460 if (*s == '-') {
Denys Vlasenkodd5a4022017-08-04 16:46:17 +0200461 if (c >= '0' && c <= '9') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000462 min_arg = c - '0';
463 s++;
464 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000465 continue;
466 }
Denis Vlasenko456fa6c2006-10-20 18:36:55 +0000467 if (*s == '=') {
468 min_arg = max_arg = c - '0';
469 s++;
470 continue;
471 }
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000472 for (on_off = complementary; on_off->opt_char; on_off++)
473 if (on_off->opt_char == *s)
Denys Vlasenkob47b3ce2011-08-10 00:51:29 +0200474 goto found_opt;
475 /* Without this, diagnostic of such bugs is not easy */
476 bb_error_msg_and_die("NO OPT %c!", *s);
477 found_opt:
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000478 if (c == ':' && s[2] == ':') {
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000479 on_off->param_type = PARAM_LIST;
480 continue;
481 }
482 if (c == '+' && (s[2] == ':' || s[2] == '\0')) {
483 on_off->param_type = PARAM_INT;
Denys Vlasenkob47b3ce2011-08-10 00:51:29 +0200484 s++;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000485 continue;
486 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000487 if (c == ':' || c == '\0') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000488 requires |= on_off->switch_on;
489 continue;
490 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000491 if (c == '-' && (s[2] == ':' || s[2] == '\0')) {
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000492 flags |= on_off->switch_on;
493 on_off->incongruously |= on_off->switch_on;
494 s++;
495 continue;
496 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000497 if (c == *s) {
498 on_off->counter = va_arg(p, int *);
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000499 s++;
500 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000501 pair = on_off;
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100502 pair_switch = &pair->switch_on;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000503 for (s++; *s && *s != ':'; s++) {
504 if (*s == '?') {
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100505 pair_switch = &pair->requires;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000506 } else if (*s == '-') {
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100507 if (pair_switch == &pair->switch_off)
508 pair_switch = &pair->incongruously;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000509 else
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100510 pair_switch = &pair->switch_off;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000511 } else {
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000512 for (on_off = complementary; on_off->opt_char; on_off++)
513 if (on_off->opt_char == *s) {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000514 *pair_switch |= on_off->switch_on;
515 break;
516 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000517 }
518 }
519 s--;
Eric Andersen8876fb22003-06-20 09:01:58 +0000520 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000521
Denis Vlasenkofd5a3d22008-11-12 22:06:46 +0000522 /* In case getopt32 was already called:
Denys Vlasenko60161812017-08-29 14:32:17 +0200523 * reset libc getopt() internal state.
Denys Vlasenko63073572011-02-02 19:05:25 +0100524 * run_nofork_applet() does this, but we might end up here
Denis Vlasenkofd5a3d22008-11-12 22:06:46 +0000525 * also via gunzip_main() -> gzip_main(). Play safe.
526 */
Kaarle Ritvanen835ad3a2017-04-12 00:58:46 +0300527 GETOPT_RESET();
Denis Vlasenkofd5a3d22008-11-12 22:06:46 +0000528
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200529 /* skip 0: some applets cheat: they do not actually HAVE argv[0] */
530 argc = 1 + string_array_len(argv + 1);
531
Denis Vlasenko97728162008-01-28 22:57:10 +0000532 /* Note: just "getopt() <= 0" will not work well for
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000533 * "fake" short options, like this one:
534 * wget $'-\203' "Test: test" http://kernel.org/
535 * (supposed to act as --header, but doesn't) */
Denys Vlasenko036585a2017-08-08 16:38:18 +0200536#if ENABLE_LONG_OPTS
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000537 while ((c = getopt_long(argc, argv, applet_opts,
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000538 long_options, NULL)) != -1) {
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000539#else
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000540 while ((c = getopt(argc, argv, applet_opts)) != -1) {
Denis Vlasenko24af7202007-03-15 13:28:46 +0000541#endif
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000542 /* getopt prints "option requires an argument -- X"
543 * and returns '?' if an option has no arg, but one is reqd */
Denis Vlasenko97728162008-01-28 22:57:10 +0000544 c &= 0xff; /* fight libc's sign extension */
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000545 for (on_off = complementary; on_off->opt_char != c; on_off++) {
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000546 /* c can be NUL if long opt has non-NULL ->flag,
547 * but we construct long opts so that flag
548 * is always NULL (see above) */
549 if (on_off->opt_char == '\0' /* && c != '\0' */) {
550 /* c is probably '?' - "bad option" */
Denis Vlasenko28e67962009-04-26 23:22:40 +0000551 goto error;
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000552 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000553 }
Denis Vlasenko09196572007-07-21 13:27:44 +0000554 if (flags & on_off->incongruously)
Denis Vlasenko28e67962009-04-26 23:22:40 +0000555 goto error;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000556 trigger = on_off->switch_on & on_off->switch_off;
557 flags &= ~(on_off->switch_off ^ trigger);
558 flags |= on_off->switch_on ^ trigger;
559 flags ^= trigger;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000560 if (on_off->counter)
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000561 (*(on_off->counter))++;
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100562 if (optarg) {
563 if (on_off->param_type == PARAM_LIST) {
Denis Vlasenko1d426652008-03-17 09:09:09 +0000564 llist_add_to_end((llist_t **)(on_off->optarg), optarg);
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100565 } else if (on_off->param_type == PARAM_INT) {
Denys Vlasenko77832482010-08-12 14:14:45 +0200566//TODO: xatoi_positive indirectly pulls in printf machinery
567 *(unsigned*)(on_off->optarg) = xatoi_positive(optarg);
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100568 } else if (on_off->optarg) {
Denis Vlasenko1d426652008-03-17 09:09:09 +0000569 *(char **)(on_off->optarg) = optarg;
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100570 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000571 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000572 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000573
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000574 /* check depending requires for given options */
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000575 for (on_off = complementary; on_off->opt_char; on_off++) {
Denis Vlasenko28e67962009-04-26 23:22:40 +0000576 if (on_off->requires
577 && (flags & on_off->switch_on)
578 && (flags & on_off->requires) == 0
579 ) {
580 goto error;
581 }
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000582 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000583 if (requires && (flags & requires) == 0)
Denis Vlasenko28e67962009-04-26 23:22:40 +0000584 goto error;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000585 argc -= optind;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000586 if (argc < min_arg || (max_arg >= 0 && argc > max_arg))
Denis Vlasenko28e67962009-04-26 23:22:40 +0000587 goto error;
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000588
589 option_mask32 = flags;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000590 return flags;
Denis Vlasenko28e67962009-04-26 23:22:40 +0000591
592 error:
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200593 if (dont_die_flag != '!')
Denis Vlasenko28e67962009-04-26 23:22:40 +0000594 bb_show_usage();
595 return (int32_t)-1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000596}
Denys Vlasenko036585a2017-08-08 16:38:18 +0200597
598uint32_t FAST_FUNC
599getopt32(char **argv, const char *applet_opts, ...)
600{
601 uint32_t opt;
602 va_list p;
603
604 va_start(p, applet_opts);
605 opt = vgetopt32(argv, applet_opts, NULL, p);
606 va_end(p);
607 return opt;
608}
609
610#if ENABLE_LONG_OPTS
611uint32_t FAST_FUNC
612getopt32long(char **argv, const char *applet_opts, const char *longopts, ...)
613{
614 uint32_t opt;
615 va_list p;
616
617 va_start(p, longopts);
618 opt = vgetopt32(argv, applet_opts, longopts, p);
619 va_end(p);
620 return opt;
621}
622#endif