blob: d569d707954c6a25edbd908f3a8c9aec3da78160 [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
Rob Landleyf76cd962006-05-03 21:23:15 +000029/* Documentation
Mike Frysinger2bf88a82005-04-18 22:42:58 +000030
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
Rob Landleyf76cd962006-05-03 21:23:15 +000047 "r" will add 1 (bit 0)
48 "n" will add 2 (bit 1)
49 "u will add 4 (bit 2)
50 "g" will add 8 (bit 3)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000051
Rob Landleyf76cd962006-05-03 21:23:15 +000052 and so on. You can also look at the return value as a bit
53 field and each option sets one bit.
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:",
Rob Landleyf76cd962006-05-03 21:23:15 +000065 &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
Rob Landleyf76cd962006-05-03 21:23:15 +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
Mike Frysinger992a58c2006-02-22 22:56:30 +000072 "+" If the first character in the applet_opts string is a plus,
73 then option processing will stop as soon as a non-option is
74 encountered in the argv array. Useful for applets like env
75 which should not process arguments to subprograms:
76 env -i ls -d /
77 Here we want env to process just the '-i', not the '-d'.
78
Rob Landleyf76cd962006-05-03 21:23:15 +000079const struct option *bb_applet_long_options
Mike Frysingere5d0bde2005-05-10 23:48:35 +000080
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000081 This struct allows you to define long options. The syntax for
82 declaring the array is just like that of getopt's longopts.
83 (see getopt(3))
Mike Frysingere5d0bde2005-05-10 23:48:35 +000084
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000085 static const struct option applet_long_options[] = {
Rob Landleyf76cd962006-05-03 21:23:15 +000086 { "verbose", 0, 0, 'v' },
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000087 { 0, 0, 0, 0 }
88 };
89 bb_applet_long_options = applet_long_options;
Mike Frysingere5d0bde2005-05-10 23:48:35 +000090
Rob Landleyf76cd962006-05-03 21:23:15 +000091 The last member of struct option (val) typically is set to
92 matching short option from applet_opts. If there is no matching
93 char in applet_opts, then:
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000094 - return bit have next position after short options
95 - if has_arg is not "no_argument", use ptr for arg also
Rob Landleyf76cd962006-05-03 21:23:15 +000096 - bb_opt_complementally affects it too
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000097
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000098 Note: a good applet will make long options configurable via the
99 config process and not a required feature. The current standard
100 is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS.
Mike Frysingerfb6d22c2005-05-11 00:02:39 +0000101
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000102const char *bb_opt_complementally
Mike Frysinger57f4cb22006-02-21 00:50:37 +0000103 this should be bb_opt_complementary, but we'll just keep it as
104 bb_opt_complementally due to the Russian origins
Mike Frysingerfb6d22c2005-05-11 00:02:39 +0000105
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000106 ":" The colon (":") is used to separate groups of two or more chars
107 and/or groups of chars and special characters (stating some
108 conditions to be checked).
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000109
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000110 "abc" If groups of two or more chars are specified, the first char
111 is the main option and the other chars are secondary options.
112 Their flags will be turned on if the main option is found even
113 if they are not specifed on the command line. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000114
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000115 bb_opt_complementally = "abc";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000116
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000117 flags = bb_getopt_ulflags(argc, argv, "abcd")
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000118
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000119 If getopt() finds "-a" on the command line, then
120 bb_getopt_ulflags's return value will be as if "-a -b -c" were
121 found.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000122
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000123 "ww" Adjacent double options have a counter associated which indicates
Rob Landleyf76cd962006-05-03 21:23:15 +0000124 the number of occurences of the option.
"Vladimir N. Oleynik"d1b60782005-10-05 12:44:52 +0000125 For example the ps applet needs:
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000126 if w is given once, GNU ps sets the width to 132,
127 if w is given more than once, it is "unlimited"
128
129 int w_counter = 0;
130 bb_opt_complementally = "ww";
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000131 bb_getopt_ulflags(argc, argv, "w", &w_counter);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000132
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000133 if(w_counter)
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000134 width = (w_counter == 1) ? 132 : INT_MAX;
135 else
136 get_terminal_width(...&width...);
137
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000138 w_counter is a pointer to an integer. It has to be passed to
139 bb_getopt_ulflags() after all other option argument sinks.
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000140 For example: accept multiple -v to indicate the level of verbosity
141 and for each -b optarg, add optarg to my_b. Finally, if b is given,
142 turn off c and vice versa:
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000143
144 llist_t *my_b = NULL;
145 int verbose_level = 0;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000146 bb_opt_complementally = "vv:b::b-c:c-b";
"Vladimir N. Oleynik"4a5ce082005-10-05 13:58:40 +0000147 f = bb_getopt_ulflags(argc, argv, "vb:c", &my_b, &verbose_level);
Rob Landleyf76cd962006-05-03 21:23:15 +0000148 if((f & 2)) // -c after -b unsets -b flag
149 while(my_b) { dosomething_with(my_b->data) ; my_b = my_b->link; }
150 if(my_b) // but llist is stored if -b is specified
"Vladimir N. Oleynik"4a5ce082005-10-05 13:58:40 +0000151 free_llist(my_b);
Rob Landleyf76cd962006-05-03 21:23:15 +0000152 if(verbose_level) bb_printf("verbose level is %d\n", verbose_level);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000153
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000154Special characters:
155
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000156 "-" A dash between two options causes the second of the two
Rob Landleyf76cd962006-05-03 21:23:15 +0000157 to be unset (and ignored) if it is given on the command line.
158
159 [FIXME: what if they are the same? like "x-x"? Is it ever useful?]
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000160
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000161 For example:
162 The du applet has the options "-s" and "-d depth". If
163 bb_getopt_ulflags finds -s, then -d is unset or if it finds -d
164 then -s is unset. (Note: busybox implements the GNU
165 "--max-depth" option as "-d".) To obtain this behavior, you
166 set bb_opt_complementally = "s-d:d-s". Only one flag value is
167 added to bb_getopt_ulflags's return value depending on the
168 position of the options on the command line. If one of the
169 two options requires an argument pointer (":" in applet_opts
170 as in "d:") optarg is set accordingly.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000171
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000172 char *smax_print_depth;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000173
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000174 bb_opt_complementally = "s-d:d-s:x-x";
175 opt = bb_getopt_ulflags(argc, argv, "sd:x", &smax_print_depth);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000176
Rob Landleyf76cd962006-05-03 21:23:15 +0000177 if (opt & 2)
178 max_print_depth = atoi(smax_print_depth);
179 if (opt & 4)
180 printf("Detected odd -x usage\n");
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000181
Rob Landleyf76cd962006-05-03 21:23:15 +0000182 "-" A dash as the first char in a bb_opt_complementally group forces
183 all arguments to be treated as options, even if they have
184 no leading dashes. Next char in this case can't be a digit (0-9),
185 use ':' or end of line. For example:
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000186
"Vladimir N. Oleynik"d1b60782005-10-05 12:44:52 +0000187 bb_opt_complementally = "-:w-x:x-w";
188 bb_getopt_ulflags(argc, argv, "wx");
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000189
"Vladimir N. Oleynik"4a5ce082005-10-05 13:58:40 +0000190 Allows any arguments to be given without a dash (./program w x)
Rob Landleyf76cd962006-05-03 21:23:15 +0000191 as well as with a dash (./program -x).
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000192
Rob Landleyf76cd962006-05-03 21:23:15 +0000193 "-N" A dash as the first char in a bb_opt_complementally group followed
194 by a single digit (0-9) means that at least N non-option
195 arguments must be present on the command line
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000196
Rob Landleyf76cd962006-05-03 21:23:15 +0000197 "V-" An option with dash before colon or end-of-line results in
198 bb_show_usage being called if this option is encountered.
199 This is typically used to implement "print verbose usage message
200 and exit" option.
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000201
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000202 "--" A double dash between two options, or between an option and a group
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000203 of options, means that they are mutually exclusive. Unlike
204 the "-" case above, an error will be forced if the options
205 are used together.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000206
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000207 For example:
208 The cut applet must have only one type of list specified, so
209 -b, -c and -f are mutally exclusive and should raise an error
210 if specified together. In this case you must set
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000211 bb_opt_complementally = "b--cf:c--bf:f--bc". If two of the
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000212 mutually exclusive options are found, bb_getopt_ulflags's
213 return value will have the error flag set (BB_GETOPT_ERROR) so
214 that we can check for it:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000215
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000216 if (flags & BB_GETOPT_ERROR)
217 bb_show_usage();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000218
Rob Landleyf76cd962006-05-03 21:23:15 +0000219 "?" A "?" as the first char in a bb_opt_complementally group means:
220 if BB_GETOPT_ERROR is detected, don't return, call bb_show_usage
221 and exit instead. Next char after '?' can't be a digit.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000222
Rob Landleyf76cd962006-05-03 21:23:15 +0000223 "?N" A "?" as the first char in a bb_opt_complementally group followed
224 by a single digit (0-9) means that at most N arguments must be present
225 on the command line.
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000226
227 "::" A double colon after a char in bb_opt_complementally means that the
Rob Landleyf76cd962006-05-03 21:23:15 +0000228 option can occur multiple times. Each occurrence will be saved as
229 a llist_t element instead of char*.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000230
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000231 For example:
232 The grep applet can have one or more "-e pattern" arguments.
233 In this case you should use bb_getopt_ulflags() as follows:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000234
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000235 llist_t *patterns = NULL;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000236
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000237 (this pointer must be initializated to NULL if the list is empty
238 as required by *llist_add_to(llist_t *old_head, char *new_item).)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000239
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000240 bb_opt_complementally = "e::";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000241
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000242 bb_getopt_ulflags(argc, argv, "e:", &patterns);
243 $ grep -e user -e root /etc/passwd
244 root:x:0:0:root:/root:/bin/bash
245 user:x:500:500::/home/user:/bin/bash
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000246
Mike Frysingere17c80e2006-02-21 00:37:42 +0000247 "--" A double dash at the beginning of bb_opt_complementally means the
248 argv[1] string should always be treated as options, even if it isn't
249 prefixed with a "-". This is to support the special syntax in applets
250 such as "ar" and "tar":
251 tar xvf foo.tar
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000252
Rob Landleyf76cd962006-05-03 21:23:15 +0000253 "?" An "?" between an option and a group of options means that
254 at least one of them is required to occur if the first option
255 occurs in preceding command line arguments.
256
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000257 For example from "id" applet:
258
259 // Don't allow -n -r -rn -ug -rug -nug -rnug
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000260 bb_opt_complementally = "r?ug:n?ug:?u--g:g--u";
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000261 flags = bb_getopt_ulflags(argc, argv, "rnug");
262
263 This example allowed only:
264 $ id; id -u; id -g; id -ru; id -nu; id -rg; id -ng; id -rnu; id -rng
265
Rob Landleyf76cd962006-05-03 21:23:15 +0000266 "X" A bb_opt_complementally group with just a single letter means
267 that this this option is required. If more than one such group exists,
268 at least one option is required to occur (not all of them).
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000269 For example from "start-stop-daemon" applet:
270
Rob Landleyf76cd962006-05-03 21:23:15 +0000271 // Don't allow -KS -SK, but -S or -K is required
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000272 bb_opt_complementally = "K:S:?K--S:S--K";
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000273 flags = bb_getopt_ulflags(argc, argv, "KS...);
274
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000275
276 "x--x" give error if double or more used -x option
277
Rob Landleyf76cd962006-05-03 21:23:15 +0000278 Don't forget to use ':'. For example "?322-22-23X-x-a" is interpreted as
279 "?3:22:-2:2-2:2-3Xa:2--x": max 3 args; count uses of '-2'; min 2 args;
280 if there is a '-2' option then unset '-3', '-X' and '-a'; if there is
281 a '-2' and after it a '-x' then error out.
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000282
Eric Andersen8876fb22003-06-20 09:01:58 +0000283*/
284
Mike Frysingere17c80e2006-02-21 00:37:42 +0000285/* this should be bb_opt_complementary, but we'll just keep it as
286 bb_opt_complementally due to the Russian origins */
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000287const char *bb_opt_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000288
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000289typedef struct {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000290 int opt;
291 int list_flg;
Eric Andersen8876fb22003-06-20 09:01:58 +0000292 unsigned long switch_on;
293 unsigned long switch_off;
294 unsigned long incongruously;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000295 unsigned long requires;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000296 void **optarg; /* char **optarg or llist_t **optarg */
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000297 int *counter;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000298} t_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000299
300/* You can set bb_applet_long_options for parse called long options */
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000301#if ENABLE_GETOPT_LONG
Eric Andersen8876fb22003-06-20 09:01:58 +0000302static const struct option bb_default_long_options[] = {
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000303/* { "help", 0, NULL, '?' }, */
Eric Andersen8876fb22003-06-20 09:01:58 +0000304 { 0, 0, 0, 0 }
305};
306
307const struct option *bb_applet_long_options = bb_default_long_options;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000308#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000309
Eric Andersen8876fb22003-06-20 09:01:58 +0000310unsigned long
311bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312{
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000313 unsigned long flags = 0;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000314 unsigned long requires = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000315 t_complementally complementally[sizeof(flags) * 8 + 1];
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000316 int c;
317 const unsigned char *s;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000318 t_complementally *on_off;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000319 va_list p;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000320#if ENABLE_GETOPT_LONG
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000321 const struct option *l_o;
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000322#endif
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000323 unsigned long trigger;
"Vladimir N. Oleynik"f01e1782006-01-09 13:28:31 +0000324#ifdef CONFIG_PS
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000325 char **pargv = NULL;
"Vladimir N. Oleynik"f01e1782006-01-09 13:28:31 +0000326#endif
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000327 int min_arg = 0;
328 int max_arg = -1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000329
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000330#define SHOW_USAGE_IF_ERROR 1
331#define ALL_ARGV_IS_OPTS 2
332#define FIRST_ARGV_IS_OPT 4
333#define FREE_FIRST_ARGV_IS_OPT 8
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000334 int spec_flgs = 0;
335
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000336 va_start (p, applet_opts);
Eric Andersen8876fb22003-06-20 09:01:58 +0000337
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000338 c = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000339 on_off = complementally;
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000340 memset(on_off, 0, sizeof(complementally));
341
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000342 /* skip GNU extension */
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000343 s = (const unsigned char *)applet_opts;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000344 if(*s == '+' || *s == '-')
345 s++;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000346 for (; *s; s++) {
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000347 if(c >= (int)(sizeof(flags)*8))
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000348 break;
349 on_off->opt = *s;
350 on_off->switch_on = (1 << c);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000351 if (s[1] == ':') {
352 on_off->optarg = va_arg (p, void **);
353 do
354 s++;
355 while (s[1] == ':');
356 }
357 on_off++;
358 c++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000359 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000360
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000361#if ENABLE_GETOPT_LONG
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000362 for(l_o = bb_applet_long_options; l_o->name; l_o++) {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000363 if(l_o->flag)
364 continue;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000365 for(on_off = complementally; on_off->opt != 0; on_off++)
366 if(on_off->opt == l_o->val)
367 break;
368 if(on_off->opt == 0) {
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000369 if(c >= (int)(sizeof(flags)*8))
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000370 break;
371 on_off->opt = l_o->val;
372 on_off->switch_on = (1 << c);
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000373 if(l_o->has_arg != no_argument)
374 on_off->optarg = va_arg (p, void **);
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000375 c++;
376 }
377 }
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000378#endif /* ENABLE_GETOPT_LONG */
"Vladimir N. Oleynik"bf968f72005-12-02 10:10:28 +0000379 for (s = (const unsigned char *)bb_opt_complementally; s && *s; s++) {
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000380 t_complementally *pair;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000381 unsigned long *pair_switch;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000382
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000383 if (*s == ':')
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000384 continue;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000385 c = s[1];
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000386 if(*s == '?') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000387 if(c < '0' || c > '9') {
388 spec_flgs |= SHOW_USAGE_IF_ERROR;
389 } else {
390 max_arg = c - '0';
391 s++;
392 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000393 continue;
394 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000395 if(*s == '-') {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000396 if(c < '0' || c > '9') {
397 if(c == '-') {
398 spec_flgs |= FIRST_ARGV_IS_OPT;
399 s++;
400 } else
401 spec_flgs |= ALL_ARGV_IS_OPTS;
402 } else {
403 min_arg = c - '0';
404 s++;
405 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000406 continue;
407 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000408 for (on_off = complementally; on_off->opt; on_off++)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000409 if (on_off->opt == *s)
410 break;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000411 if(c == ':' && s[2] == ':') {
412 on_off->list_flg++;
413 continue;
414 }
415 if(c == ':' || c == '\0') {
416 requires |= on_off->switch_on;
417 continue;
418 }
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000419 if(c == '-' && (s[2] == ':' || s[2] == '\0')) {
420 flags |= on_off->switch_on;
421 on_off->incongruously |= on_off->switch_on;
422 s++;
423 continue;
424 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000425 if(c == *s) {
426 on_off->counter = va_arg (p, int *);
427 s++;
428 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000429 pair = on_off;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000430 pair_switch = &(pair->switch_on);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000431 for(s++; *s && *s != ':'; s++) {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000432 if(*s == '?') {
433 pair_switch = &(pair->requires);
434 } else if (*s == '-') {
435 if(pair_switch == &(pair->switch_off))
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000436 pair_switch = &(pair->incongruously);
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000437 else
438 pair_switch = &(pair->switch_off);
439 } else {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000440 for (on_off = complementally; on_off->opt; on_off++)
441 if (on_off->opt == *s) {
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000442 *pair_switch |= on_off->switch_on;
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000443 break;
444 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000445 }
446 }
447 s--;
Eric Andersen8876fb22003-06-20 09:01:58 +0000448 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000449 va_end (p);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000450
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000451#if defined(CONFIG_AR) || defined(CONFIG_TAR)
452 if((spec_flgs & FIRST_ARGV_IS_OPT)) {
453 if(argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') {
454 argv[1] = bb_xasprintf("-%s", argv[1]);
455 if(ENABLE_FEATURE_CLEAN_UP)
456 spec_flgs |= FREE_FIRST_ARGV_IS_OPT;
457 }
458 }
459#endif
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000460#if ENABLE_GETOPT_LONG
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000461 while ((c = getopt_long (argc, argv, applet_opts,
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000462 bb_applet_long_options, NULL)) >= 0) {
Bernhard Reutner-Fischerf9437aa2006-05-31 14:12:51 +0000463#else
464 while ((c = getopt (argc, argv, applet_opts)) >= 0) {
465#endif /* ENABLE_GETOPT_LONG */
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000466#ifdef CONFIG_PS
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000467loop_arg_is_opt:
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000468#endif
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000469 for (on_off = complementally; on_off->opt != c; on_off++) {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000470 /* c==0 if long opt have non NULL flag */
471 if(on_off->opt == 0 && c != 0)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000472 bb_show_usage ();
473 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000474 if(flags & on_off->incongruously) {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000475 if((spec_flgs & SHOW_USAGE_IF_ERROR))
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000476 bb_show_usage ();
Mike Frysinger348e84c2005-05-11 00:39:03 +0000477 flags |= BB_GETOPT_ERROR;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000478 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000479 trigger = on_off->switch_on & on_off->switch_off;
480 flags &= ~(on_off->switch_off ^ trigger);
481 flags |= on_off->switch_on ^ trigger;
482 flags ^= trigger;
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000483 if(on_off->counter)
484 (*(on_off->counter))++;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000485 if(on_off->list_flg) {
Rob Landley8bb50782006-05-26 23:44:51 +0000486 llist_add_to((llist_t **)(on_off->optarg), optarg);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000487 } else if (on_off->optarg) {
488 *(char **)(on_off->optarg) = optarg;
489 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000490#ifdef CONFIG_PS
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000491 if(pargv != NULL)
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000492 break;
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000493#endif
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000494 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000495
496#ifdef CONFIG_PS
497 if((spec_flgs & ALL_ARGV_IS_OPTS)) {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000498 /* process argv is option, for example "ps" applet */
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000499 if(pargv == NULL)
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000500 pargv = argv + optind;
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000501 while(*pargv) {
502 c = **pargv;
503 if(c == '\0') {
504 pargv++;
505 } else {
506 (*pargv)++;
507 goto loop_arg_is_opt;
508 }
509 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000510 }
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000511#endif
512
513#if (defined(CONFIG_AR) || defined(CONFIG_TAR)) && \
514 defined(CONFIG_FEATURE_CLEAN_UP)
515 if((spec_flgs & FREE_FIRST_ARGV_IS_OPT))
516 free(argv[1]);
517#endif
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000518 /* check depending requires for given options */
519 for (on_off = complementally; on_off->opt; on_off++) {
520 if(on_off->requires && (flags & on_off->switch_on) &&
521 (flags & on_off->requires) == 0)
522 bb_show_usage ();
523 }
524 if(requires && (flags & requires) == 0)
525 bb_show_usage ();
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000526 argc -= optind;
527 if(argc < min_arg || (max_arg >= 0 && argc > max_arg))
528 bb_show_usage ();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000529 return flags;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000530}