blob: 7ad26551a47c69069f71f690883c8cf3174f961b [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersen8876fb22003-06-20 09:01:58 +00003 * universal getopt_ulflags 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 *
"Robert P. J. Day"5d8843e2006-07-10 11:41:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Manuel Novoa III cad53642003-03-19 09:13:01 +00008 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000011#include <getopt.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000012
Rob Landleyf76cd962006-05-03 21:23:15 +000013/* Documentation
Mike Frysinger2bf88a82005-04-18 22:42:58 +000014
Mike Frysingere5d0bde2005-05-10 23:48:35 +000015unsigned long
Denis Vlasenkob02ef822006-09-29 08:23:42 +000016bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000017
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000018 The command line options must be declared in const char
19 *applet_opts as a string of chars, for example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000020
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000021 flags = bb_getopt_ulflags(argc, argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000022
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000023 If one of the given options is found, a flag value is added to
24 the return value (an unsigned long).
Mike Frysinger2bf88a82005-04-18 22:42:58 +000025
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000026 The flag value is determined by the position of the char in
27 applet_opts string. For example, in the above case:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000028
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000029 flags = bb_getopt_ulflags(argc, argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000030
Rob Landleyf76cd962006-05-03 21:23:15 +000031 "r" will add 1 (bit 0)
32 "n" will add 2 (bit 1)
33 "u will add 4 (bit 2)
34 "g" will add 8 (bit 3)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000035
Rob Landleyf76cd962006-05-03 21:23:15 +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 Vlasenko65dbd872006-09-03 12:27:25 +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]).
45
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000046 ":" If one of the options requires an argument, then add a ":"
47 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
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +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
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000055 flags = bb_getopt_ulflags(argc, argv, "a:b:c:d:",
Rob Landleyf76cd962006-05-03 21:23:15 +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
Rob Landleyf76cd962006-05-03 21:23:15 +000059 The type of the pointer (char* or llist_t*) may be controlled
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +000060 by the "::" special separator that is set in the external string
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000061 bb_opt_complementally (see below for more info).
Mike Frysingere5d0bde2005-05-10 23:48:35 +000062
Mike Frysinger992a58c2006-02-22 22:56:30 +000063 "+" If the first character in the applet_opts string is a plus,
64 then option processing will stop as soon as a non-option is
65 encountered in the argv array. Useful for applets like env
66 which should not process arguments to subprograms:
67 env -i ls -d /
68 Here we want env to process just the '-i', not the '-d'.
69
Rob Landleyf76cd962006-05-03 21:23:15 +000070const struct option *bb_applet_long_options
Mike Frysingere5d0bde2005-05-10 23:48:35 +000071
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000072 This struct allows you to define long options. The syntax for
73 declaring the array is just like that of getopt's longopts.
74 (see getopt(3))
Mike Frysingere5d0bde2005-05-10 23:48:35 +000075
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000076 static const struct option applet_long_options[] = {
Denis Vlasenkob02ef822006-09-29 08:23:42 +000077 //name,has_arg,flag,val
Rob Landleyf76cd962006-05-03 21:23:15 +000078 { "verbose", 0, 0, 'v' },
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000079 { 0, 0, 0, 0 }
80 };
81 bb_applet_long_options = applet_long_options;
Mike Frysingere5d0bde2005-05-10 23:48:35 +000082
Rob Landleyf76cd962006-05-03 21:23:15 +000083 The last member of struct option (val) typically is set to
84 matching short option from applet_opts. If there is no matching
85 char in applet_opts, then:
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000086 - return bit have next position after short options
87 - if has_arg is not "no_argument", use ptr for arg also
Rob Landleyf76cd962006-05-03 21:23:15 +000088 - bb_opt_complementally affects it too
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000089
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000090 Note: a good applet will make long options configurable via the
91 config process and not a required feature. The current standard
92 is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS.
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000093
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000094const char *bb_opt_complementally
Denis Vlasenko6248a732006-09-29 08:20:30 +000095
Mike Frysinger57f4cb22006-02-21 00:50:37 +000096 this should be bb_opt_complementary, but we'll just keep it as
97 bb_opt_complementally due to the Russian origins
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000098
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000099 ":" The colon (":") is used to separate groups of two or more chars
100 and/or groups of chars and special characters (stating some
101 conditions to be checked).
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000102
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000103 "abc" If groups of two or more chars are specified, the first char
104 is the main option and the other chars are secondary options.
105 Their flags will be turned on if the main option is found even
106 if they are not specifed on the command line. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000107
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000108 bb_opt_complementally = "abc";
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000109 flags = bb_getopt_ulflags(argc, argv, "abcd")
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000110
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000111 If getopt() finds "-a" on the command line, then
112 bb_getopt_ulflags's return value will be as if "-a -b -c" were
113 found.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000114
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000115 "ww" Adjacent double options have a counter associated which indicates
Rob Landleyf76cd962006-05-03 21:23:15 +0000116 the number of occurences of the option.
"Vladimir N. Oleynik"d1b60782005-10-05 12:44:52 +0000117 For example the ps applet needs:
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000118 if w is given once, GNU ps sets the width to 132,
119 if w is given more than once, it is "unlimited"
120
121 int w_counter = 0;
122 bb_opt_complementally = "ww";
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000123 bb_getopt_ulflags(argc, argv, "w", &w_counter);
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000124 if (w_counter)
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000125 width = (w_counter == 1) ? 132 : INT_MAX;
126 else
127 get_terminal_width(...&width...);
128
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000129 w_counter is a pointer to an integer. It has to be passed to
130 bb_getopt_ulflags() after all other option argument sinks.
Denis Vlasenko6429aab2006-09-23 12:22:11 +0000131
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000132 For example: accept multiple -v to indicate the level of verbosity
133 and for each -b optarg, add optarg to my_b. Finally, if b is given,
134 turn off c and vice versa:
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000135
136 llist_t *my_b = NULL;
137 int verbose_level = 0;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000138 bb_opt_complementally = "vv:b::b-c:c-b";
"Vladimir N. Oleynik"4a5ce082005-10-05 13:58:40 +0000139 f = bb_getopt_ulflags(argc, argv, "vb:c", &my_b, &verbose_level);
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000140 if (f & 2) // -c after -b unsets -b flag
141 while (my_b) { dosomething_with(my_b->data); my_b = my_b->link; }
142 if (my_b) // but llist is stored if -b is specified
"Vladimir N. Oleynik"4a5ce082005-10-05 13:58:40 +0000143 free_llist(my_b);
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000144 if (verbose_level) bb_printf("verbose level is %d\n", verbose_level);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000145
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000146Special characters:
147
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000148 "-" A dash between two options causes the second of the two
Rob Landleyf76cd962006-05-03 21:23:15 +0000149 to be unset (and ignored) if it is given on the command line.
150
151 [FIXME: what if they are the same? like "x-x"? Is it ever useful?]
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000152
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000153 For example:
154 The du applet has the options "-s" and "-d depth". If
155 bb_getopt_ulflags finds -s, then -d is unset or if it finds -d
156 then -s is unset. (Note: busybox implements the GNU
157 "--max-depth" option as "-d".) To obtain this behavior, you
158 set bb_opt_complementally = "s-d:d-s". Only one flag value is
159 added to bb_getopt_ulflags's return value depending on the
160 position of the options on the command line. If one of the
161 two options requires an argument pointer (":" in applet_opts
162 as in "d:") optarg is set accordingly.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000163
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000164 char *smax_print_depth;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000165
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000166 bb_opt_complementally = "s-d:d-s:x-x";
167 opt = bb_getopt_ulflags(argc, argv, "sd:x", &smax_print_depth);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000168
Rob Landleyf76cd962006-05-03 21:23:15 +0000169 if (opt & 2)
170 max_print_depth = atoi(smax_print_depth);
171 if (opt & 4)
172 printf("Detected odd -x usage\n");
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000173
Rob Landleyf76cd962006-05-03 21:23:15 +0000174 "-" A dash as the first char in a bb_opt_complementally group forces
175 all arguments to be treated as options, even if they have
176 no leading dashes. Next char in this case can't be a digit (0-9),
177 use ':' or end of line. For example:
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000178
"Vladimir N. Oleynik"d1b60782005-10-05 12:44:52 +0000179 bb_opt_complementally = "-:w-x:x-w";
180 bb_getopt_ulflags(argc, argv, "wx");
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000181
"Vladimir N. Oleynik"4a5ce082005-10-05 13:58:40 +0000182 Allows any arguments to be given without a dash (./program w x)
Rob Landleyf76cd962006-05-03 21:23:15 +0000183 as well as with a dash (./program -x).
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000184
Rob Landleyf76cd962006-05-03 21:23:15 +0000185 "-N" A dash as the first char in a bb_opt_complementally group followed
186 by a single digit (0-9) means that at least N non-option
187 arguments must be present on the command line
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000188
Rob Landleyf76cd962006-05-03 21:23:15 +0000189 "V-" An option with dash before colon or end-of-line results in
190 bb_show_usage being called if this option is encountered.
191 This is typically used to implement "print verbose usage message
192 and exit" option.
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000193
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000194 "--" A double dash between two options, or between an option and a group
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000195 of options, means that they are mutually exclusive. Unlike
196 the "-" case above, an error will be forced if the options
197 are used together.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000198
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000199 For example:
200 The cut applet must have only one type of list specified, so
201 -b, -c and -f are mutally exclusive and should raise an error
202 if specified together. In this case you must set
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000203 bb_opt_complementally = "b--cf:c--bf:f--bc". If two of the
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000204 mutually exclusive options are found, bb_getopt_ulflags's
205 return value will have the error flag set (BB_GETOPT_ERROR) so
206 that we can check for it:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000207
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000208 if (flags & BB_GETOPT_ERROR)
209 bb_show_usage();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000210
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000211 "x--x" Variation of the above, it means that -x option should occur
212 at most once.
213
Rob Landleyf76cd962006-05-03 21:23:15 +0000214 "?" A "?" as the first char in a bb_opt_complementally group means:
215 if BB_GETOPT_ERROR is detected, don't return, call bb_show_usage
216 and exit instead. Next char after '?' can't be a digit.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000217
Rob Landleyf76cd962006-05-03 21:23:15 +0000218 "?N" A "?" as the first char in a bb_opt_complementally group followed
219 by a single digit (0-9) means that at most N arguments must be present
220 on the command line.
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000221
222 "::" A double colon after a char in bb_opt_complementally means that the
Rob Landleyf76cd962006-05-03 21:23:15 +0000223 option can occur multiple times. Each occurrence will be saved as
224 a llist_t element instead of char*.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000225
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000226 For example:
227 The grep applet can have one or more "-e pattern" arguments.
228 In this case you should use bb_getopt_ulflags() as follows:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000229
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000230 llist_t *patterns = NULL;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000231
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000232 (this pointer must be initializated to NULL if the list is empty
233 as required by *llist_add_to(llist_t *old_head, char *new_item).)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000234
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000235 bb_opt_complementally = "e::";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000236
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000237 bb_getopt_ulflags(argc, argv, "e:", &patterns);
238 $ grep -e user -e root /etc/passwd
239 root:x:0:0:root:/root:/bin/bash
240 user:x:500:500::/home/user:/bin/bash
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000241
Mike Frysingere17c80e2006-02-21 00:37:42 +0000242 "--" A double dash at the beginning of bb_opt_complementally means the
243 argv[1] string should always be treated as options, even if it isn't
Denis Vlasenko6429aab2006-09-23 12:22:11 +0000244 prefixed with a "-". This is useful for special syntax in applets
Mike Frysingere17c80e2006-02-21 00:37:42 +0000245 such as "ar" and "tar":
246 tar xvf foo.tar
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000247
Rob Landleyf76cd962006-05-03 21:23:15 +0000248 "?" An "?" between an option and a group of options means that
249 at least one of them is required to occur if the first option
250 occurs in preceding command line arguments.
251
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000252 For example from "id" applet:
253
254 // Don't allow -n -r -rn -ug -rug -nug -rnug
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000255 bb_opt_complementally = "r?ug:n?ug:?u--g:g--u";
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000256 flags = bb_getopt_ulflags(argc, argv, "rnug");
257
258 This example allowed only:
259 $ id; id -u; id -g; id -ru; id -nu; id -rg; id -ng; id -rnu; id -rng
260
Rob Landleyf76cd962006-05-03 21:23:15 +0000261 "X" A bb_opt_complementally group with just a single letter means
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000262 that this option is required. If more than one such group exists,
Rob Landleyf76cd962006-05-03 21:23:15 +0000263 at least one option is required to occur (not all of them).
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000264 For example from "start-stop-daemon" applet:
265
Rob Landleyf76cd962006-05-03 21:23:15 +0000266 // Don't allow -KS -SK, but -S or -K is required
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000267 bb_opt_complementally = "K:S:?K--S:S--K";
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000268 flags = bb_getopt_ulflags(argc, argv, "KS...);
269
Rob Landleyf76cd962006-05-03 21:23:15 +0000270 Don't forget to use ':'. For example "?322-22-23X-x-a" is interpreted as
271 "?3:22:-2:2-2:2-3Xa:2--x": max 3 args; count uses of '-2'; min 2 args;
272 if there is a '-2' option then unset '-3', '-X' and '-a'; if there is
273 a '-2' and after it a '-x' then error out.
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000274
Eric Andersen8876fb22003-06-20 09:01:58 +0000275*/
276
Mike Frysingere17c80e2006-02-21 00:37:42 +0000277/* this should be bb_opt_complementary, but we'll just keep it as
278 bb_opt_complementally due to the Russian origins */
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000279const char *bb_opt_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000280
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000281typedef struct {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000282 int opt;
283 int list_flg;
Eric Andersen8876fb22003-06-20 09:01:58 +0000284 unsigned long switch_on;
285 unsigned long switch_off;
286 unsigned long incongruously;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000287 unsigned long requires;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000288 void **optarg; /* char **optarg or llist_t **optarg */
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000289 int *counter;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000290} t_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000291
292/* You can set bb_applet_long_options for parse called long options */
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000293#if ENABLE_GETOPT_LONG
Eric Andersen8876fb22003-06-20 09:01:58 +0000294static const struct option bb_default_long_options[] = {
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000295/* { "help", 0, NULL, '?' }, */
Eric Andersen8876fb22003-06-20 09:01:58 +0000296 { 0, 0, 0, 0 }
297};
298
299const struct option *bb_applet_long_options = bb_default_long_options;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000300#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000301
Eric Andersen8876fb22003-06-20 09:01:58 +0000302unsigned long
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000303bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000304{
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000305 unsigned long flags = 0;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000306 unsigned long requires = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000307 t_complementally complementally[sizeof(flags) * 8 + 1];
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000308 int c;
309 const unsigned char *s;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000310 t_complementally *on_off;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000311 va_list p;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000312#if ENABLE_GETOPT_LONG
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000313 const struct option *l_o;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000314#endif
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000315 unsigned long trigger;
"Vladimir N. Oleynik"f01e1782006-01-09 13:28:31 +0000316#ifdef CONFIG_PS
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000317 char **pargv = NULL;
"Vladimir N. Oleynik"f01e1782006-01-09 13:28:31 +0000318#endif
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000319 int min_arg = 0;
320 int max_arg = -1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000321
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000322#define SHOW_USAGE_IF_ERROR 1
323#define ALL_ARGV_IS_OPTS 2
324#define FIRST_ARGV_IS_OPT 4
325#define FREE_FIRST_ARGV_IS_OPT 8
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000326 int spec_flgs = 0;
327
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000328 va_start(p, applet_opts);
Eric Andersen8876fb22003-06-20 09:01:58 +0000329
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000330 c = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000331 on_off = complementally;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000332 memset(on_off, 0, sizeof(complementally));
333
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000334 /* skip GNU extension */
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000335 s = (const unsigned char *)applet_opts;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000336 if (*s == '+' || *s == '-')
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000337 s++;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000338 for (; *s; s++) {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000339 if (c >= (int)(sizeof(flags)*8))
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000340 break;
341 on_off->opt = *s;
342 on_off->switch_on = (1 << c);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000343 if (s[1] == ':') {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000344 on_off->optarg = va_arg(p, void **);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000345 do
346 s++;
347 while (s[1] == ':');
348 }
349 on_off++;
350 c++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000351 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000352
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000353#if ENABLE_GETOPT_LONG
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000354 for (l_o = bb_applet_long_options; l_o->name; l_o++) {
355 if (l_o->flag)
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000356 continue;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000357 for (on_off = complementally; on_off->opt != 0; on_off++)
358 if (on_off->opt == l_o->val)
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000359 break;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000360 if (on_off->opt == 0) {
361 if (c >= (int)(sizeof(flags)*8))
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000362 break;
363 on_off->opt = l_o->val;
364 on_off->switch_on = (1 << c);
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000365 if (l_o->has_arg != no_argument)
366 on_off->optarg = va_arg(p, void **);
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000367 c++;
368 }
369 }
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000370#endif /* ENABLE_GETOPT_LONG */
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000371 for (s = (const unsigned char *)bb_opt_complementally; s && *s; s++) {
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000372 t_complementally *pair;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000373 unsigned long *pair_switch;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000374
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000375 if (*s == ':')
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000376 continue;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000377 c = s[1];
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000378 if (*s == '?') {
379 if (c < '0' || c > '9') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000380 spec_flgs |= SHOW_USAGE_IF_ERROR;
381 } else {
382 max_arg = c - '0';
383 s++;
384 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000385 continue;
386 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000387 if (*s == '-') {
388 if (c < '0' || c > '9') {
389 if (c == '-') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000390 spec_flgs |= FIRST_ARGV_IS_OPT;
391 s++;
392 } else
393 spec_flgs |= ALL_ARGV_IS_OPTS;
394 } else {
395 min_arg = c - '0';
396 s++;
397 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000398 continue;
399 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000400 for (on_off = complementally; on_off->opt; on_off++)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000401 if (on_off->opt == *s)
402 break;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000403 if (c == ':' && s[2] == ':') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000404 on_off->list_flg++;
405 continue;
406 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000407 if (c == ':' || c == '\0') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000408 requires |= on_off->switch_on;
409 continue;
410 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000411 if (c == '-' && (s[2] == ':' || s[2] == '\0')) {
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000412 flags |= on_off->switch_on;
413 on_off->incongruously |= on_off->switch_on;
414 s++;
415 continue;
416 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000417 if (c == *s) {
418 on_off->counter = va_arg(p, int *);
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000419 s++;
420 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000421 pair = on_off;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000422 pair_switch = &(pair->switch_on);
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000423 for (s++; *s && *s != ':'; s++) {
424 if (*s == '?') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000425 pair_switch = &(pair->requires);
426 } else if (*s == '-') {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000427 if (pair_switch == &(pair->switch_off))
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000428 pair_switch = &(pair->incongruously);
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000429 else
430 pair_switch = &(pair->switch_off);
431 } else {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000432 for (on_off = complementally; on_off->opt; on_off++)
433 if (on_off->opt == *s) {
434 *pair_switch |= on_off->switch_on;
435 break;
436 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000437 }
438 }
439 s--;
Eric Andersen8876fb22003-06-20 09:01:58 +0000440 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000441 va_end (p);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000442
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000443#if ENABLE_AR || ENABLE_TAR
444 if (spec_flgs & FIRST_ARGV_IS_OPT) {
445 if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000446 argv[1] = xasprintf("-%s", argv[1]);
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000447 if (ENABLE_FEATURE_CLEAN_UP)
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000448 spec_flgs |= FREE_FIRST_ARGV_IS_OPT;
449 }
450 }
451#endif
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000452#if ENABLE_GETOPT_LONG
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000453 while ((c = getopt_long(argc, argv, applet_opts,
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000454 bb_applet_long_options, NULL)) >= 0) {
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000455#else
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000456 while ((c = getopt(argc, argv, applet_opts)) >= 0) {
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000457#endif /* ENABLE_GETOPT_LONG */
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000458#if ENABLE_PS
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000459loop_arg_is_opt:
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000460#endif
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000461 for (on_off = complementally; on_off->opt != c; on_off++) {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000462 /* c==0 if long opt have non NULL flag */
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000463 if (on_off->opt == 0 && c != 0)
464 bb_show_usage();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000465 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000466 if (flags & on_off->incongruously) {
467 if ((spec_flgs & SHOW_USAGE_IF_ERROR))
468 bb_show_usage();
Mike Frysinger348e84c2005-05-11 00:39:03 +0000469 flags |= BB_GETOPT_ERROR;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000470 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000471 trigger = on_off->switch_on & on_off->switch_off;
472 flags &= ~(on_off->switch_off ^ trigger);
473 flags |= on_off->switch_on ^ trigger;
474 flags ^= trigger;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000475 if (on_off->counter)
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000476 (*(on_off->counter))++;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000477 if (on_off->list_flg) {
Rob Landley8bb50782006-05-26 23:44:51 +0000478 llist_add_to((llist_t **)(on_off->optarg), optarg);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000479 } else if (on_off->optarg) {
480 *(char **)(on_off->optarg) = optarg;
481 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000482#if ENABLE_PS
483 if (pargv != NULL)
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000484 break;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000485#endif
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000486 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000487
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000488#if ENABLE_PS
489 if (spec_flgs & ALL_ARGV_IS_OPTS) {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000490 /* process argv is option, for example "ps" applet */
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000491 if (pargv == NULL)
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000492 pargv = argv + optind;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000493 while (*pargv) {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000494 c = **pargv;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000495 if (c == '\0') {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000496 pargv++;
497 } else {
498 (*pargv)++;
499 goto loop_arg_is_opt;
500 }
501 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000502 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000503#endif
504
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000505#if (ENABLE_AR || ENABLE_TAR) && ENABLE_FEATURE_CLEAN_UP
506 if (spec_flgs & FREE_FIRST_ARGV_IS_OPT)
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000507 free(argv[1]);
508#endif
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000509 /* check depending requires for given options */
510 for (on_off = complementally; on_off->opt; on_off++) {
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000511 if (on_off->requires && (flags & on_off->switch_on) &&
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000512 (flags & on_off->requires) == 0)
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000513 bb_show_usage();
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000514 }
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000515 if (requires && (flags & requires) == 0)
516 bb_show_usage();
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000517 argc -= optind;
Denis Vlasenkob02ef822006-09-29 08:23:42 +0000518 if (argc < min_arg || (max_arg >= 0 && argc > max_arg))
519 bb_show_usage();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000520 return flags;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000521}