blob: c7c4079c2a5e6bdef0ae77a80ea455ec264e24c9 [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 */
9
Denys Vlasenko488dd702011-05-29 04:24:13 +020010#if ENABLE_LONG_OPTS || ENABLE_FEATURE_GETOPT_LONG
11# include <getopt.h>
12#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000013#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000014
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000015/* Documentation
Mike Frysinger2bf88a82005-04-18 22:42:58 +000016
Denis Vlasenko67b23e62006-10-03 21:00:06 +000017uint32_t
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000018getopt32(char **argv, const char *applet_opts, ...)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000019
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000020 The command line options must be declared in const char
21 *applet_opts as a string of chars, for example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000022
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000023 flags = getopt32(argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000024
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000025 If one of the given options is found, a flag value is added to
26 the return value (an unsigned long).
Mike Frysinger2bf88a82005-04-18 22:42:58 +000027
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000028 The flag value is determined by the position of the char in
29 applet_opts string. For example, in the above case:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000030
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000031 flags = getopt32(argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000032
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000033 "r" will add 1 (bit 0)
34 "n" will add 2 (bit 1)
Denis Vlasenkoab8c9372007-09-28 22:13:55 +000035 "u" will add 4 (bit 2)
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000036 "g" will add 8 (bit 3)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000037
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000038 and so on. You can also look at the return value as a bit
39 field and each option sets one bit.
Mike Frysinger2bf88a82005-04-18 22:42:58 +000040
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000041 On exit, global variable optind is set so that if you
42 will do argc -= optind; argv += optind; then
43 argc will be equal to number of remaining non-option
44 arguments, first one would be in argv[0], next in argv[1] and so on
45 (options and their parameters will be moved into argv[]
46 positions prior to argv[optind]).
Denis Vlasenko65dbd872006-09-03 12:27:25 +000047
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000048 ":" If one of the options requires an argument, then add a ":"
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000049 after the char in applet_opts and provide a pointer to store
50 the argument. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000051
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000052 char *pointer_to_arg_for_a;
53 char *pointer_to_arg_for_b;
54 char *pointer_to_arg_for_c;
55 char *pointer_to_arg_for_d;
Mike Frysinger2bf88a82005-04-18 22:42:58 +000056
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000057 flags = getopt32(argv, "a:b:c:d:",
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +000058 &pointer_to_arg_for_a, &pointer_to_arg_for_b,
59 &pointer_to_arg_for_c, &pointer_to_arg_for_d);
Mike Frysinger2bf88a82005-04-18 22:42:58 +000060
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000061 The type of the pointer (char* or llist_t*) may be controlled
62 by the "::" special separator that is set in the external string
Denis Vlasenko67b23e62006-10-03 21:00:06 +000063 opt_complementary (see below for more info).
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000064
65 "::" If option can have an *optional* argument, then add a "::"
66 after its char in applet_opts and provide a pointer to store
67 the argument. Note that optional arguments _must_
68 immediately follow the option: -oparam, not -o param.
Mike Frysingere5d0bde2005-05-10 23:48:35 +000069
Mike Frysinger992a58c2006-02-22 22:56:30 +000070 "+" If the first character in the applet_opts string is a plus,
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000071 then option processing will stop as soon as a non-option is
72 encountered in the argv array. Useful for applets like env
73 which should not process arguments to subprograms:
74 env -i ls -d /
75 Here we want env to process just the '-i', not the '-d'.
Mike Frysinger992a58c2006-02-22 22:56:30 +000076
Denis Vlasenko28e67962009-04-26 23:22:40 +000077 "!" Report bad option, missing required options,
78 inconsistent options with all-ones return value (instead of abort).
79
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000080const char *applet_long_options
Mike Frysingere5d0bde2005-05-10 23:48:35 +000081
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000082 This struct allows you to define long options:
Mike Frysingere5d0bde2005-05-10 23:48:35 +000083
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000084 static const char applet_longopts[] ALIGN1 =
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +010085 //"name\0" has_arg val
86 "verbose\0" No_argument "v"
87 ;
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000088 applet_long_options = applet_longopts;
Mike Frysingere5d0bde2005-05-10 23:48:35 +000089
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000090 The last member of struct option (val) typically is set to
91 matching short option from applet_opts. If there is no matching
92 char in applet_opts, then:
93 - return bit have next position after short options
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000094 - if has_arg is not "No_argument", use ptr for arg also
Denis Vlasenko67b23e62006-10-03 21:00:06 +000095 - opt_complementary affects it too
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000096
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +000097 Note: a good applet will make long options configurable via the
98 config process and not a required feature. The current standard
99 is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS.
Mike Frysingerfb6d22c2005-05-11 00:02:39 +0000100
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000101const char *opt_complementary
Mike Frysingerfb6d22c2005-05-11 00:02:39 +0000102
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000103 ":" The colon (":") is used to separate groups of two or more chars
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000104 and/or groups of chars and special characters (stating some
105 conditions to be checked).
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000106
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000107 "abc" If groups of two or more chars are specified, the first char
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000108 is the main option and the other chars are secondary options.
109 Their flags will be turned on if the main option is found even
110 if they are not specifed on the command line. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000111
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000112 opt_complementary = "abc";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000113 flags = getopt32(argv, "abcd")
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000114
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000115 If getopt() finds "-a" on the command line, then
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000116 getopt32's return value will be as if "-a -b -c" were
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000117 found.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000118
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000119 "ww" Adjacent double options have a counter associated which indicates
Denys Vlasenko29ca1592010-11-22 18:13:15 +0100120 the number of occurrences of the option.
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000121 For example the ps applet needs:
122 if w is given once, GNU ps sets the width to 132,
123 if w is given more than once, it is "unlimited"
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000124
Denis Vlasenko1d426652008-03-17 09:09:09 +0000125 int w_counter = 0; // must be initialized!
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000126 opt_complementary = "ww";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000127 getopt32(argv, "w", &w_counter);
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000128 if (w_counter)
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000129 width = (w_counter == 1) ? 132 : INT_MAX;
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000130 else
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000131 get_terminal_width(...&width...);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000132
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000133 w_counter is a pointer to an integer. It has to be passed to
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000134 getopt32() after all other option argument sinks.
Denis Vlasenko6429aab2006-09-23 12:22:11 +0000135
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000136 For example: accept multiple -v to indicate the level of verbosity
137 and for each -b optarg, add optarg to my_b. Finally, if b is given,
138 turn off c and vice versa:
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000139
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000140 llist_t *my_b = NULL;
141 int verbose_level = 0;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000142 opt_complementary = "vv:b::b-c:c-b";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000143 f = getopt32(argv, "vb:c", &my_b, &verbose_level);
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000144 if (f & 2) // -c after -b unsets -b flag
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000145 while (my_b) dosomething_with(llist_pop(&my_b));
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000146 if (my_b) // but llist is stored if -b is specified
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000147 free_llist(my_b);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000148 if (verbose_level) printf("verbose level is %d\n", verbose_level);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000149
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000150Special characters:
151
Denys Vlasenko00528822009-09-11 23:26:42 +0200152 "-" A group consisting of just a dash forces all arguments
153 to be treated as options, even if they have no leading dashes.
154 Next char in this case can't be a digit (0-9), use ':' or end of line.
155 Example:
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000156
Denys Vlasenko00528822009-09-11 23:26:42 +0200157 opt_complementary = "-:w-x:x-w"; // "-w-x:x-w" would also work,
158 getopt32(argv, "wx"); // but is less readable
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000159
Denys Vlasenko00528822009-09-11 23:26:42 +0200160 This makes it possible to use options without a dash (./program w x)
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000161 as well as with a dash (./program -x).
162
Denis Vlasenkofd5a3d22008-11-12 22:06:46 +0000163 NB: getopt32() will leak a small amount of memory if you use
164 this option! Do not use it if there is a possibility of recursive
165 getopt32() calls.
Denis Vlasenkoe417be62008-08-20 23:03:38 +0000166
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000167 "--" A double dash at the beginning of opt_complementary means the
168 argv[1] string should always be treated as options, even if it isn't
169 prefixed with a "-". This is useful for special syntax in applets
170 such as "ar" and "tar":
171 tar xvf foo.tar
172
Denis Vlasenkofd5a3d22008-11-12 22:06:46 +0000173 NB: getopt32() will leak a small amount of memory if you use
174 this option! Do not use it if there is a possibility of recursive
175 getopt32() calls.
Denis Vlasenkoe417be62008-08-20 23:03:38 +0000176
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000177 "-N" A dash as the first char in a opt_complementary group followed
178 by a single digit (0-9) means that at least N non-option
179 arguments must be present on the command line
180
181 "=N" An equal sign as the first char in a opt_complementary group followed
182 by a single digit (0-9) means that exactly N non-option
183 arguments must be present on the command line
184
185 "?N" A "?" as the first char in a opt_complementary group followed
186 by a single digit (0-9) means that at most N arguments must be present
187 on the command line.
188
189 "V-" An option with dash before colon or end-of-line results in
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000190 bb_show_usage() being called if this option is encountered.
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000191 This is typically used to implement "print verbose usage message
192 and exit" option.
193
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000194 "a-b" A dash between two options causes the second of the two
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000195 to be unset (and ignored) if it is given on the command line.
Rob Landleyf76cd962006-05-03 21:23:15 +0000196
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000197 [FIXME: what if they are the same? like "x-x"? Is it ever useful?]
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000198
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000199 For example:
200 The du applet has the options "-s" and "-d depth". If
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000201 getopt32 finds -s, then -d is unset or if it finds -d
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000202 then -s is unset. (Note: busybox implements the GNU
203 "--max-depth" option as "-d".) To obtain this behavior, you
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000204 set opt_complementary = "s-d:d-s". Only one flag value is
205 added to getopt32's return value depending on the
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000206 position of the options on the command line. If one of the
207 two options requires an argument pointer (":" in applet_opts
208 as in "d:") optarg is set accordingly.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000209
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000210 char *smax_print_depth;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000211
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000212 opt_complementary = "s-d:d-s:x-x";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000213 opt = getopt32(argv, "sd:x", &smax_print_depth);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000214
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000215 if (opt & 2)
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000216 max_print_depth = atoi(smax_print_depth);
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000217 if (opt & 4)
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000218 printf("Detected odd -x usage\n");
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000219
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000220 "a--b" A double dash between two options, or between an option and a group
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000221 of options, means that they are mutually exclusive. Unlike
222 the "-" case above, an error will be forced if the options
223 are used together.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000224
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000225 For example:
226 The cut applet must have only one type of list specified, so
Denis Vlasenkoa0319ba2007-08-16 10:37:49 +0000227 -b, -c and -f are mutually exclusive and should raise an error
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000228 if specified together. In this case you must set
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000229 opt_complementary = "b--cf:c--bf:f--bc". If two of the
Denis Vlasenko09196572007-07-21 13:27:44 +0000230 mutually exclusive options are found, getopt32 will call
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100231 bb_show_usage() and die.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000232
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000233 "x--x" Variation of the above, it means that -x option should occur
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000234 at most once.
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000235
Denis Vlasenko1d426652008-03-17 09:09:09 +0000236 "a+" A plus after a char in opt_complementary means that the parameter
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000237 for this option is a nonnegative integer. It will be processed
Denys Vlasenko77832482010-08-12 14:14:45 +0200238 with xatoi_positive() - allowed range is 0..INT_MAX.
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000239
240 int param; // "unsigned param;" will also work
241 opt_complementary = "p+";
242 getopt32(argv, "p:", &param);
243
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000244 "a::" 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
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000257 opt_complementary = "e::";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000258
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000259 getopt32(argv, "e:", &patterns);
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000260 $ grep -e user -e root /etc/passwd
261 root:x:0:0:root:/root:/bin/bash
262 user:x:500:500::/home/user:/bin/bash
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000263
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000264 "a?b" A "?" between an option and a group of options means that
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000265 at least one of them is required to occur if the first option
266 occurs in preceding command line arguments.
Rob Landleyf76cd962006-05-03 21:23:15 +0000267
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000268 For example from "id" applet:
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000269
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000270 // Don't allow -n -r -rn -ug -rug -nug -rnug
Denis Vlasenko1d426652008-03-17 09:09:09 +0000271 opt_complementary = "r?ug:n?ug:u--g:g--u";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000272 flags = getopt32(argv, "rnug");
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000273
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000274 This example allowed only:
275 $ 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 +0000276
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000277 "X" A opt_complementary group with just a single letter means
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000278 that this option is required. If more than one such group exists,
279 at least one option is required to occur (not all of them).
280 For example from "start-stop-daemon" applet:
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000281
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000282 // Don't allow -KS -SK, but -S or -K is required
Denis Vlasenko6666ac42007-08-24 21:46:24 +0000283 opt_complementary = "K:S:K--S:S--K";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000284 flags = getopt32(argv, "KS...);
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000285
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000286
Denis Vlasenkof0d6cc82006-09-29 13:56:58 +0000287 Don't forget to use ':'. For example, "?322-22-23X-x-a"
288 is interpreted as "?3:22:-2:2-2:2-3Xa:2--x" -
289 max 3 args; count uses of '-2'; min 2 args; if there is
290 a '-2' option then unset '-3', '-X' and '-a'; if there is
291 a '-2' and after it a '-x' then error out.
Denis Vlasenko737d1312007-08-25 18:25:24 +0000292 But it's far too obfuscated. Use ':' to separate groups.
Eric Andersen8876fb22003-06-20 09:01:58 +0000293*/
294
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000295/* Code here assumes that 'unsigned' is at least 32 bits wide */
296
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000297const char *const bb_argv_dash[] = { "-", NULL };
298
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000299const char *opt_complementary;
Eric Andersen8876fb22003-06-20 09:01:58 +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
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000318/* You can set applet_long_options for parse called long options */
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200319#if ENABLE_LONG_OPTS || ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000320static const struct option bb_null_long_options[1] = {
Eric Andersen8876fb22003-06-20 09:01:58 +0000321 { 0, 0, 0, 0 }
322};
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000323const char *applet_long_options;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000324#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000325
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000326uint32_t option_mask32;
327
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000328uint32_t FAST_FUNC
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000329getopt32(char **argv, const char *applet_opts, ...)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000330{
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000331 int argc;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000332 unsigned flags = 0;
333 unsigned requires = 0;
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000334 t_complementary complementary[33]; /* last stays zero-filled */
Denis Vlasenko28e67962009-04-26 23:22:40 +0000335 char first_char;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000336 int c;
337 const unsigned char *s;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000338 t_complementary *on_off;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000339 va_list p;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200340#if ENABLE_LONG_OPTS || ENABLE_FEATURE_GETOPT_LONG
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000341 const struct option *l_o;
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000342 struct option *long_options = (struct option *) &bb_null_long_options;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000343#endif
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000344 unsigned trigger;
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000345 char **pargv;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000346 int min_arg = 0;
347 int max_arg = -1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000348
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000349#define SHOW_USAGE_IF_ERROR 1
350#define ALL_ARGV_IS_OPTS 2
351#define FIRST_ARGV_IS_OPT 4
Denis Vlasenko468aea22008-04-01 14:47:57 +0000352
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000353 int spec_flgs = 0;
354
Denis Vlasenko43016162008-08-20 00:15:42 +0000355 /* skip 0: some applets cheat: they do not actually HAVE argv[0] */
356 argc = 1;
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000357 while (argv[argc])
358 argc++;
359
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000360 va_start(p, applet_opts);
Eric Andersen8876fb22003-06-20 09:01:58 +0000361
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000362 c = 0;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000363 on_off = complementary;
364 memset(on_off, 0, sizeof(complementary));
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000365
Denis Vlasenko28e67962009-04-26 23:22:40 +0000366 /* skip bbox extension */
367 first_char = applet_opts[0];
368 if (first_char == '!')
369 applet_opts++;
370
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000371 /* skip GNU extension */
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000372 s = (const unsigned char *)applet_opts;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000373 if (*s == '+' || *s == '-')
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000374 s++;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000375 while (*s) {
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000376 if (c >= 32)
377 break;
378 on_off->opt_char = *s;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000379 on_off->switch_on = (1 << c);
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000380 if (*++s == ':') {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000381 on_off->optarg = va_arg(p, void **);
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000382 while (*++s == ':')
383 continue;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000384 }
385 on_off++;
386 c++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000387 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000388
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200389#if ENABLE_LONG_OPTS || ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000390 if (applet_long_options) {
391 const char *optstr;
392 unsigned i, count;
393
394 count = 1;
395 optstr = applet_long_options;
396 while (optstr[0]) {
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000397 optstr += strlen(optstr) + 3; /* skip NUL, has_arg, val */
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000398 count++;
399 }
400 /* count == no. of longopts + 1 */
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000401 long_options = alloca(count * sizeof(*long_options));
Denis Vlasenkof4cee7a2007-07-25 17:18:06 +0000402 memset(long_options, 0, count * sizeof(*long_options));
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000403 i = 0;
404 optstr = applet_long_options;
405 while (--count) {
406 long_options[i].name = optstr;
407 optstr += strlen(optstr) + 1;
408 long_options[i].has_arg = (unsigned char)(*optstr++);
409 /* long_options[i].flag = NULL; */
410 long_options[i].val = (unsigned char)(*optstr++);
411 i++;
412 }
413 for (l_o = long_options; l_o->name; l_o++) {
414 if (l_o->flag)
415 continue;
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000416 for (on_off = complementary; on_off->opt_char; on_off++)
417 if (on_off->opt_char == l_o->val)
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000418 goto next_long;
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000419 if (c >= 32)
420 break;
421 on_off->opt_char = l_o->val;
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000422 on_off->switch_on = (1 << c);
423 if (l_o->has_arg != no_argument)
424 on_off->optarg = va_arg(p, void **);
425 c++;
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000426 next_long: ;
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000427 }
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100428 /* Make it unnecessary to clear applet_long_options
429 * by hand after each call to getopt32
430 */
431 applet_long_options = NULL;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000432 }
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200433#endif /* ENABLE_LONG_OPTS || ENABLE_FEATURE_GETOPT_LONG */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000434 for (s = (const unsigned char *)opt_complementary; s && *s; s++) {
435 t_complementary *pair;
436 unsigned *pair_switch;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000437
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000438 if (*s == ':')
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000439 continue;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000440 c = s[1];
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000441 if (*s == '?') {
442 if (c < '0' || c > '9') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000443 spec_flgs |= SHOW_USAGE_IF_ERROR;
444 } else {
445 max_arg = c - '0';
446 s++;
447 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000448 continue;
449 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000450 if (*s == '-') {
451 if (c < '0' || c > '9') {
452 if (c == '-') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000453 spec_flgs |= FIRST_ARGV_IS_OPT;
454 s++;
455 } else
456 spec_flgs |= ALL_ARGV_IS_OPTS;
457 } else {
458 min_arg = c - '0';
459 s++;
460 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000461 continue;
462 }
Denis Vlasenko456fa6c2006-10-20 18:36:55 +0000463 if (*s == '=') {
464 min_arg = max_arg = c - '0';
465 s++;
466 continue;
467 }
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000468 for (on_off = complementary; on_off->opt_char; on_off++)
469 if (on_off->opt_char == *s)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000470 break;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000471 if (c == ':' && s[2] == ':') {
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000472 on_off->param_type = PARAM_LIST;
473 continue;
474 }
475 if (c == '+' && (s[2] == ':' || s[2] == '\0')) {
476 on_off->param_type = PARAM_INT;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000477 continue;
478 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000479 if (c == ':' || c == '\0') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000480 requires |= on_off->switch_on;
481 continue;
482 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000483 if (c == '-' && (s[2] == ':' || s[2] == '\0')) {
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000484 flags |= on_off->switch_on;
485 on_off->incongruously |= on_off->switch_on;
486 s++;
487 continue;
488 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000489 if (c == *s) {
490 on_off->counter = va_arg(p, int *);
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000491 s++;
492 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000493 pair = on_off;
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100494 pair_switch = &pair->switch_on;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000495 for (s++; *s && *s != ':'; s++) {
496 if (*s == '?') {
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100497 pair_switch = &pair->requires;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000498 } else if (*s == '-') {
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100499 if (pair_switch == &pair->switch_off)
500 pair_switch = &pair->incongruously;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000501 else
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100502 pair_switch = &pair->switch_off;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000503 } else {
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000504 for (on_off = complementary; on_off->opt_char; on_off++)
505 if (on_off->opt_char == *s) {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000506 *pair_switch |= on_off->switch_on;
507 break;
508 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000509 }
510 }
511 s--;
Eric Andersen8876fb22003-06-20 09:01:58 +0000512 }
Denys Vlasenkod46c36c2010-03-16 17:57:53 +0100513 opt_complementary = NULL;
Denis Vlasenkoff131b92007-04-10 15:42:06 +0000514 va_end(p);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000515
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000516 if (spec_flgs & (FIRST_ARGV_IS_OPT | ALL_ARGV_IS_OPTS)) {
517 pargv = argv + 1;
518 while (*pargv) {
519 if (pargv[0][0] != '-' && pargv[0][0] != '\0') {
Denis Vlasenkoe417be62008-08-20 23:03:38 +0000520 /* Can't use alloca: opts with params will
521 * return pointers to stack!
522 * NB: we leak these allocations... */
523 char *pp = xmalloc(strlen(*pargv) + 2);
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000524 *pp = '-';
525 strcpy(pp + 1, *pargv);
526 *pargv = pp;
527 }
528 if (!(spec_flgs & ALL_ARGV_IS_OPTS))
Denis Vlasenkoea7c9b32008-09-25 10:39:10 +0000529 break;
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000530 pargv++;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000531 }
532 }
Denis Vlasenko24af7202007-03-15 13:28:46 +0000533
Denis Vlasenkofd5a3d22008-11-12 22:06:46 +0000534 /* In case getopt32 was already called:
535 * reset the libc getopt() function, which keeps internal state.
Denys Vlasenko63073572011-02-02 19:05:25 +0100536 * run_nofork_applet() does this, but we might end up here
Denis Vlasenkofd5a3d22008-11-12 22:06:46 +0000537 * also via gunzip_main() -> gzip_main(). Play safe.
538 */
539#ifdef __GLIBC__
540 optind = 0;
541#else /* BSD style */
542 optind = 1;
543 /* optreset = 1; */
544#endif
545 /* optarg = NULL; opterr = 0; optopt = 0; - do we need this?? */
546
Denis Vlasenko97728162008-01-28 22:57:10 +0000547 /* Note: just "getopt() <= 0" will not work well for
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000548 * "fake" short options, like this one:
549 * wget $'-\203' "Test: test" http://kernel.org/
550 * (supposed to act as --header, but doesn't) */
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200551#if ENABLE_LONG_OPTS || ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000552 while ((c = getopt_long(argc, argv, applet_opts,
Denis Vlasenko5bfcb4d2007-07-23 17:40:35 +0000553 long_options, NULL)) != -1) {
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000554#else
Denis Vlasenkoc8400a22006-10-25 00:33:44 +0000555 while ((c = getopt(argc, argv, applet_opts)) != -1) {
Denis Vlasenko24af7202007-03-15 13:28:46 +0000556#endif
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000557 /* getopt prints "option requires an argument -- X"
558 * and returns '?' if an option has no arg, but one is reqd */
Denis Vlasenko97728162008-01-28 22:57:10 +0000559 c &= 0xff; /* fight libc's sign extension */
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000560 for (on_off = complementary; on_off->opt_char != c; on_off++) {
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000561 /* c can be NUL if long opt has non-NULL ->flag,
562 * but we construct long opts so that flag
563 * is always NULL (see above) */
564 if (on_off->opt_char == '\0' /* && c != '\0' */) {
565 /* c is probably '?' - "bad option" */
Denis Vlasenko28e67962009-04-26 23:22:40 +0000566 goto error;
Denis Vlasenko1c45a502008-08-20 00:12:22 +0000567 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000568 }
Denis Vlasenko09196572007-07-21 13:27:44 +0000569 if (flags & on_off->incongruously)
Denis Vlasenko28e67962009-04-26 23:22:40 +0000570 goto error;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000571 trigger = on_off->switch_on & on_off->switch_off;
572 flags &= ~(on_off->switch_off ^ trigger);
573 flags |= on_off->switch_on ^ trigger;
574 flags ^= trigger;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000575 if (on_off->counter)
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000576 (*(on_off->counter))++;
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100577 if (optarg) {
578 if (on_off->param_type == PARAM_LIST) {
Denis Vlasenko1d426652008-03-17 09:09:09 +0000579 llist_add_to_end((llist_t **)(on_off->optarg), optarg);
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100580 } else if (on_off->param_type == PARAM_INT) {
Denys Vlasenko77832482010-08-12 14:14:45 +0200581//TODO: xatoi_positive indirectly pulls in printf machinery
582 *(unsigned*)(on_off->optarg) = xatoi_positive(optarg);
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100583 } else if (on_off->optarg) {
Denis Vlasenko1d426652008-03-17 09:09:09 +0000584 *(char **)(on_off->optarg) = optarg;
Alexey Fomenkoea6116e2011-03-01 19:25:49 +0100585 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000586 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000587 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000588
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000589 /* check depending requires for given options */
Denis Vlasenko04e11c92008-02-10 19:44:20 +0000590 for (on_off = complementary; on_off->opt_char; on_off++) {
Denis Vlasenko28e67962009-04-26 23:22:40 +0000591 if (on_off->requires
592 && (flags & on_off->switch_on)
593 && (flags & on_off->requires) == 0
594 ) {
595 goto error;
596 }
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000597 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000598 if (requires && (flags & requires) == 0)
Denis Vlasenko28e67962009-04-26 23:22:40 +0000599 goto error;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000600 argc -= optind;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000601 if (argc < min_arg || (max_arg >= 0 && argc > max_arg))
Denis Vlasenko28e67962009-04-26 23:22:40 +0000602 goto error;
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000603
604 option_mask32 = flags;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000605 return flags;
Denis Vlasenko28e67962009-04-26 23:22:40 +0000606
607 error:
608 if (first_char != '!')
609 bb_show_usage();
610 return (int32_t)-1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000611}