blob: bfd7aae7fcfdf7078ab781ba8a5127fdf880bf14 [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 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include <getopt.h>
24#include <string.h>
Eric Andersen8876fb22003-06-20 09:01:58 +000025#include <assert.h>
26#include <stdlib.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000027#include "libbb.h"
28
Mike Frysinger2bf88a82005-04-18 22:42:58 +000029/* Documentation !
30
Mike Frysingere5d0bde2005-05-10 23:48:35 +000031unsigned long
Mike Frysinger2bf88a82005-04-18 22:42:58 +000032bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
33
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000034 The command line options must be declared in const char
35 *applet_opts as a string of chars, for example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000036
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000037 flags = bb_getopt_ulflags(argc, argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000038
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000039 If one of the given options is found, a flag value is added to
40 the return value (an unsigned long).
Mike Frysinger2bf88a82005-04-18 22:42:58 +000041
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000042 The flag value is determined by the position of the char in
43 applet_opts string. For example, in the above case:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000044
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000045 flags = bb_getopt_ulflags(argc, argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000046
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000047 "r" will add 1 (bit 1 : 0x01)
48 "n" will add 2 (bit 2 : 0x02)
49 "u will add 4 (bit 3 : 0x03)
50 "g" will add 8 (bit 4 : 0x04)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000051
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000052 and so on. You can also look at the return value as a bit
53 field and each option sets one of bits.
Mike Frysinger2bf88a82005-04-18 22:42:58 +000054
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000055 ":" If one of the options requires an argument, then add a ":"
56 after the char in applet_opts and provide a pointer to store
57 the argument. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000058
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000059 char *pointer_to_arg_for_a;
60 char *pointer_to_arg_for_b;
61 char *pointer_to_arg_for_c;
62 char *pointer_to_arg_for_d;
Mike Frysinger2bf88a82005-04-18 22:42:58 +000063
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000064 flags = bb_getopt_ulflags(argc, argv, "a:b:c:d:",
65 &pointer_to_arg_for_a, &pointer_to_arg_for_b,
66 &pointer_to_arg_for_c, &pointer_to_arg_for_d);
Mike Frysinger2bf88a82005-04-18 22:42:58 +000067
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000068 The type of the pointer (char* or llist_t *) may be controlled
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +000069 by the "::" special separator that is set in the external string
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000070 bb_opt_complementally (see below for more info).
Mike Frysingere5d0bde2005-05-10 23:48:35 +000071
72static const struct option bb_default_long_options[]
73
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000074 This struct allows you to define long options. The syntax for
75 declaring the array is just like that of getopt's longopts.
76 (see getopt(3))
Mike Frysingere5d0bde2005-05-10 23:48:35 +000077
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000078 static const struct option applet_long_options[] = {
79 { "verbose", 0, 0, v },
80 { 0, 0, 0, 0 }
81 };
82 bb_applet_long_options = applet_long_options;
Mike Frysingere5d0bde2005-05-10 23:48:35 +000083
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000084 The last argument (val) can undefined from applet_opts.
85 If you use this, then:
86 - return bit have next position after short options
87 - if has_arg is not "no_argument", use ptr for arg also
88 - bb_opt_complementally have effects for this 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
Mike Frysinger57f4cb22006-02-21 00:50:37 +000095 this should be bb_opt_complementary, but we'll just keep it as
96 bb_opt_complementally due to the Russian origins
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000097
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000098 ":" The colon (":") is used to separate groups of two or more chars
99 and/or groups of chars and special characters (stating some
100 conditions to be checked).
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000101
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000102 "abc" If groups of two or more chars are specified, the first char
103 is the main option and the other chars are secondary options.
104 Their flags will be turned on if the main option is found even
105 if they are not specifed on the command line. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000106
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000107 bb_opt_complementally = "abc";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000108
"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
"Vladimir N. Oleynik"d1b60782005-10-05 12:44:52 +0000116 the number of occurances of the option.
117 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);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000124
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000125 if(w_counter)
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000126 width = (w_counter == 1) ? 132 : INT_MAX;
127 else
128 get_terminal_width(...&width...);
129
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000130 w_counter is a pointer to an integer. It has to be passed to
131 bb_getopt_ulflags() after all other option argument sinks.
"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);
140 if((f & 2)) // -c after -b unset this -b flag
141 while (my_b) { dosomething_with(my_b->data) ; my_b = my_b->link; }
142 if(my_b) // but llist stored always if -b found
143 free_llist(my_b);
144 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
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000149 to be unset (and ignored or triggered) if it is given on
150 the command line.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000151
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000152 For example:
153 The du applet has the options "-s" and "-d depth". If
154 bb_getopt_ulflags finds -s, then -d is unset or if it finds -d
155 then -s is unset. (Note: busybox implements the GNU
156 "--max-depth" option as "-d".) To obtain this behavior, you
157 set bb_opt_complementally = "s-d:d-s". Only one flag value is
158 added to bb_getopt_ulflags's return value depending on the
159 position of the options on the command line. If one of the
160 two options requires an argument pointer (":" in applet_opts
161 as in "d:") optarg is set accordingly.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000162
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000163 char *smax_print_depth;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000164
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000165 bb_opt_complementally = "s-d:d-s:x-x";
166 opt = bb_getopt_ulflags(argc, argv, "sd:x", &smax_print_depth);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000167
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000168 if (opt & 2) {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000169 max_print_depth = atoi(smax_print_depth);
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000170 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000171 if(opt & 4)
172 printf("Detected odd -x usaging\n");
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000173
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000174 "-" A dash as the first char in a bb_opt_complementally group means to
Mike Frysinger57f4cb22006-02-21 00:50:37 +0000175 convert the arguments as option. Next char for this case can't set
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000176 [0-9], recomended use ':' or end of line. For example:
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000177
"Vladimir N. Oleynik"d1b60782005-10-05 12:44:52 +0000178 bb_opt_complementally = "-:w-x:x-w";
179 bb_getopt_ulflags(argc, argv, "wx");
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000180
"Vladimir N. Oleynik"4a5ce082005-10-05 13:58:40 +0000181 Allows any arguments to be given without a dash (./program w x)
182 as well as with a dash (./program -x). Why unset -w see above.
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000183
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000184 "-N" A dash as the first char in a bb_opt_complementally group with
185 number 0-9 as one char is means check minimal arguments required.
186
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000187 "V-" A option with dash before colon or end line indicate: call
188 bb_show_usage if this option give, for example verbose
189 usage option.
190
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000191 "--" A double dash between two options, or between an option and a group
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000192 of options, means that they are mutually exclusive. Unlike
193 the "-" case above, an error will be forced if the options
194 are used together.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000195
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000196 For example:
197 The cut applet must have only one type of list specified, so
198 -b, -c and -f are mutally exclusive and should raise an error
199 if specified together. In this case you must set
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000200 bb_opt_complementally = "b--cf:c--bf:f--bc". If two of the
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000201 mutually exclusive options are found, bb_getopt_ulflags's
202 return value will have the error flag set (BB_GETOPT_ERROR) so
203 that we can check for it:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000204
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000205 if (flags & BB_GETOPT_ERROR)
206 bb_show_usage();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000207
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000208 "?" A "ask" as the first char in a bb_opt_complementally group give:
Mike Frysinger57f4cb22006-02-21 00:50:37 +0000209 if previous point set BB_GETOPT_ERROR, don't return and
210 call previous example internally. Next char for this case can't
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000211 set to [0-9], recomended use ':' or end of line.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000212
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000213 "?N" A "ask" as the first char in a bb_opt_complementally group with
214 number 0-9 as one char is means check maximal arguments possible.
215
216 "::" A double colon after a char in bb_opt_complementally means that the
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000217 option can occur multiple times:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000218
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000219 For example:
220 The grep applet can have one or more "-e pattern" arguments.
221 In this case you should use bb_getopt_ulflags() as follows:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000222
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000223 llist_t *patterns = NULL;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000224
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000225 (this pointer must be initializated to NULL if the list is empty
226 as required by *llist_add_to(llist_t *old_head, char *new_item).)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000227
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000228 bb_opt_complementally = "e::";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000229
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000230 bb_getopt_ulflags(argc, argv, "e:", &patterns);
231 $ grep -e user -e root /etc/passwd
232 root:x:0:0:root:/root:/bin/bash
233 user:x:500:500::/home/user:/bin/bash
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000234
Mike Frysingere17c80e2006-02-21 00:37:42 +0000235 "--" A double dash at the beginning of bb_opt_complementally means the
236 argv[1] string should always be treated as options, even if it isn't
237 prefixed with a "-". This is to support the special syntax in applets
238 such as "ar" and "tar":
239 tar xvf foo.tar
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000240
Mike Frysingere17c80e2006-02-21 00:37:42 +0000241 "?" An "ask" between main and group options causes the second of the two
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000242 to be depending required as or if first is given on the command line.
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000243 For example from "id" applet:
244
245 // Don't allow -n -r -rn -ug -rug -nug -rnug
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000246 bb_opt_complementally = "r?ug:n?ug:?u--g:g--u";
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000247 flags = bb_getopt_ulflags(argc, argv, "rnug");
248
249 This example allowed only:
250 $ id; id -u; id -g; id -ru; id -nu; id -rg; id -ng; id -rnu; id -rng
251
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000252 "X" A one options in bb_opt_complementally group means
253 requires this option always with "or" logic if more one specified,
254 checked after switch off from complementally logic.
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000255 For example from "start-stop-daemon" applet:
256
257 // Don't allow -KS -SK, but -S or -K required
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000258 bb_opt_complementally = "K:S:?K--S:S--K";
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000259 flags = bb_getopt_ulflags(argc, argv, "KS...);
260
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000261
262 "x--x" give error if double or more used -x option
263
Mike Frysinger57f4cb22006-02-21 00:50:37 +0000264 Don't forget ':' store. For example "?322-22-23X-x-a" interpretet as
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000265 "?3:22:-2:2-2:2-3Xa:2--x": max args is 3, count -2 usaged, min args is 2,
266 -2 option triggered, unset -3 and -X and -a if -2 any usaged, give error if
267 after -2 the -x option usaged.
268
Eric Andersen8876fb22003-06-20 09:01:58 +0000269*/
270
Mike Frysingere17c80e2006-02-21 00:37:42 +0000271/* this should be bb_opt_complementary, but we'll just keep it as
272 bb_opt_complementally due to the Russian origins */
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000273const char *bb_opt_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000274
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000275typedef struct {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000276 int opt;
277 int list_flg;
Eric Andersen8876fb22003-06-20 09:01:58 +0000278 unsigned long switch_on;
279 unsigned long switch_off;
280 unsigned long incongruously;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000281 unsigned long requires;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000282 void **optarg; /* char **optarg or llist_t **optarg */
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000283 int *counter;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000284} t_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000285
286/* You can set bb_applet_long_options for parse called long options */
287
288static const struct option bb_default_long_options[] = {
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000289/* { "help", 0, NULL, '?' }, */
Eric Andersen8876fb22003-06-20 09:01:58 +0000290 { 0, 0, 0, 0 }
291};
292
293const struct option *bb_applet_long_options = bb_default_long_options;
294
Eric Andersen8876fb22003-06-20 09:01:58 +0000295unsigned long
296bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000297{
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000298 unsigned long flags = 0;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000299 unsigned long requires = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000300 t_complementally complementally[sizeof(flags) * 8 + 1];
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000301 int c;
302 const unsigned char *s;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000303 t_complementally *on_off;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000304 va_list p;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000305 const struct option *l_o;
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000306 unsigned long trigger;
"Vladimir N. Oleynik"f01e1782006-01-09 13:28:31 +0000307#ifdef CONFIG_PS
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000308 char **pargv = NULL;
"Vladimir N. Oleynik"f01e1782006-01-09 13:28:31 +0000309#endif
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000310 int min_arg = 0;
311 int max_arg = -1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000313#define SHOW_USAGE_IF_ERROR 1
314#define ALL_ARGV_IS_OPTS 2
315#define FIRST_ARGV_IS_OPT 4
316#define FREE_FIRST_ARGV_IS_OPT 8
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000317 int spec_flgs = 0;
318
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000319 va_start (p, applet_opts);
Eric Andersen8876fb22003-06-20 09:01:58 +0000320
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000321 c = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000322 on_off = complementally;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000323 memset(on_off, 0, sizeof(complementally));
324
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000325 /* skip GNU extension */
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000326 s = (const unsigned char *)applet_opts;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000327 if(*s == '+' || *s == '-')
328 s++;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000329 for (; *s; s++) {
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000330 if(c >= (int)(sizeof(flags)*8))
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000331 break;
332 on_off->opt = *s;
333 on_off->switch_on = (1 << c);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000334 if (s[1] == ':') {
335 on_off->optarg = va_arg (p, void **);
336 do
337 s++;
338 while (s[1] == ':');
339 }
340 on_off++;
341 c++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000342 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000343
344 for(l_o = bb_applet_long_options; l_o->name; l_o++) {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000345 if(l_o->flag)
346 continue;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000347 for(on_off = complementally; on_off->opt != 0; on_off++)
348 if(on_off->opt == l_o->val)
349 break;
350 if(on_off->opt == 0) {
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000351 if(c >= (int)(sizeof(flags)*8))
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000352 break;
353 on_off->opt = l_o->val;
354 on_off->switch_on = (1 << c);
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000355 if(l_o->has_arg != no_argument)
356 on_off->optarg = va_arg (p, void **);
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000357 c++;
358 }
359 }
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000360 for (s = (const unsigned char *)bb_opt_complementally; s && *s; s++) {
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000361 t_complementally *pair;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000362 unsigned long *pair_switch;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000363
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000364 if (*s == ':')
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000365 continue;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000366 c = s[1];
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000367 if(*s == '?') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000368 if(c < '0' || c > '9') {
369 spec_flgs |= SHOW_USAGE_IF_ERROR;
370 } else {
371 max_arg = c - '0';
372 s++;
373 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000374 continue;
375 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000376 if(*s == '-') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000377 if(c < '0' || c > '9') {
378 if(c == '-') {
379 spec_flgs |= FIRST_ARGV_IS_OPT;
380 s++;
381 } else
382 spec_flgs |= ALL_ARGV_IS_OPTS;
383 } else {
384 min_arg = c - '0';
385 s++;
386 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000387 continue;
388 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000389 for (on_off = complementally; on_off->opt; on_off++)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000390 if (on_off->opt == *s)
391 break;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000392 if(c == ':' && s[2] == ':') {
393 on_off->list_flg++;
394 continue;
395 }
396 if(c == ':' || c == '\0') {
397 requires |= on_off->switch_on;
398 continue;
399 }
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000400 if(c == '-' && (s[2] == ':' || s[2] == '\0')) {
401 flags |= on_off->switch_on;
402 on_off->incongruously |= on_off->switch_on;
403 s++;
404 continue;
405 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000406 if(c == *s) {
407 on_off->counter = va_arg (p, int *);
408 s++;
409 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000410 pair = on_off;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000411 pair_switch = &(pair->switch_on);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000412 for(s++; *s && *s != ':'; s++) {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000413 if(*s == '?') {
414 pair_switch = &(pair->requires);
415 } else if (*s == '-') {
416 if(pair_switch == &(pair->switch_off))
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000417 pair_switch = &(pair->incongruously);
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000418 else
419 pair_switch = &(pair->switch_off);
420 } else {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000421 for (on_off = complementally; on_off->opt; on_off++)
422 if (on_off->opt == *s) {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000423 *pair_switch |= on_off->switch_on;
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000424 break;
425 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000426 }
427 }
428 s--;
Eric Andersen8876fb22003-06-20 09:01:58 +0000429 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000430 va_end (p);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000431
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000432#if defined(CONFIG_AR) || defined(CONFIG_TAR)
433 if((spec_flgs & FIRST_ARGV_IS_OPT)) {
434 if(argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') {
435 argv[1] = bb_xasprintf("-%s", argv[1]);
436 if(ENABLE_FEATURE_CLEAN_UP)
437 spec_flgs |= FREE_FIRST_ARGV_IS_OPT;
438 }
439 }
440#endif
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000441 while ((c = getopt_long (argc, argv, applet_opts,
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000442 bb_applet_long_options, NULL)) >= 0) {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000443#ifdef CONFIG_PS
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000444loop_arg_is_opt:
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000445#endif
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000446 for (on_off = complementally; on_off->opt != c; on_off++) {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000447 /* c==0 if long opt have non NULL flag */
448 if(on_off->opt == 0 && c != 0)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000449 bb_show_usage ();
450 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000451 if(flags & on_off->incongruously) {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000452 if((spec_flgs & SHOW_USAGE_IF_ERROR))
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000453 bb_show_usage ();
Mike Frysinger348e84c2005-05-11 00:39:03 +0000454 flags |= BB_GETOPT_ERROR;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000455 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000456 trigger = on_off->switch_on & on_off->switch_off;
457 flags &= ~(on_off->switch_off ^ trigger);
458 flags |= on_off->switch_on ^ trigger;
459 flags ^= trigger;
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000460 if(on_off->counter)
461 (*(on_off->counter))++;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000462 if(on_off->list_flg) {
463 *(llist_t **)(on_off->optarg) =
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000464 llist_add_to(*(llist_t **)(on_off->optarg), optarg);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000465 } else if (on_off->optarg) {
466 *(char **)(on_off->optarg) = optarg;
467 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000468#ifdef CONFIG_PS
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000469 if(pargv != NULL)
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000470 break;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000471#endif
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000472 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000473
474#ifdef CONFIG_PS
475 if((spec_flgs & ALL_ARGV_IS_OPTS)) {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000476 /* process argv is option, for example "ps" applet */
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000477 if(pargv == NULL)
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000478 pargv = argv + optind;
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000479 while(*pargv) {
480 c = **pargv;
481 if(c == '\0') {
482 pargv++;
483 } else {
484 (*pargv)++;
485 goto loop_arg_is_opt;
486 }
487 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000488 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000489#endif
490
491#if (defined(CONFIG_AR) || defined(CONFIG_TAR)) && \
492 defined(CONFIG_FEATURE_CLEAN_UP)
493 if((spec_flgs & FREE_FIRST_ARGV_IS_OPT))
494 free(argv[1]);
495#endif
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000496 /* check depending requires for given options */
497 for (on_off = complementally; on_off->opt; on_off++) {
498 if(on_off->requires && (flags & on_off->switch_on) &&
499 (flags & on_off->requires) == 0)
500 bb_show_usage ();
501 }
502 if(requires && (flags & requires) == 0)
503 bb_show_usage ();
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000504 argc -= optind;
505 if(argc < min_arg || (max_arg >= 0 && argc > max_arg))
506 bb_show_usage ();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000507 return flags;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000508}