blob: 86cf453250e8a6325cd23a0fac3ba09f83e3c692 [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 *
Eric Andersen8876fb22003-06-20 09:01:58 +00005 * Copyright (C) 2003 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
34 The command line options must be declared in const char
35 *applet_opts as a string of chars, for example:
36
37 flags = bb_getopt_ulflags(argc, argv, "rnug");
38
Mike Frysingere5d0bde2005-05-10 23:48:35 +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
Mike Frysingere5d0bde2005-05-10 23:48:35 +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
45 flags = bb_getopt_ulflags(argc, argv, "rnug");
46
Mike Frysingere5d0bde2005-05-10 23:48:35 +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
Mike Frysingere5d0bde2005-05-10 23:48:35 +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
Mike Frysingere5d0bde2005-05-10 23:48:35 +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
59 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;
63
64 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);
67
Mike Frysingere5d0bde2005-05-10 23:48:35 +000068 The type of the pointer (char* or llist_t *) may be controlled
69 by the "*" special character that is set in the external string
70 bb_opt_complementaly (see below for more info).
71
72static const struct option bb_default_long_options[]
73
74 This struct allows you to define long options. The syntax for
75 declaring the array is just like that of getopt's longopts.
76
77 static const struct option applet_long_options[] = {
78 { "verbose", 0, 0, "v" },
79 { 0, 0, 0, 0 }
80 };
81 bb_applet_long_options = applet_long_options;
82
83 The first parameter is the long option that you would pass to
84 the applet (--verbose) in place of the short option (-v). The
85 second field determines whether the option has an argument.
86 You can set this to 0, 1, or 2, or you can use the long named
87 defines of no_argument, required_argument, and optional_argument.
88 Just set the third argument to '0' or 'NULL'. The last argument
89 is simply the short option without the dash of course.
90
91 Note: a good applet will make long options configurable via the
92 config process and not a required feature. The current standard
93 is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS.
Mike Frysinger2bf88a82005-04-18 22:42:58 +000094
95const char *bb_opt_complementaly
96
Mike Frysingere5d0bde2005-05-10 23:48:35 +000097 ":" The colon (":") is used to separate groups of two or more chars
98 and/or groups of chars and special characters (stating some
99 conditions to be checked).
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000100
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000101 "abc" If groups of two or more chars are specified, the first char
102 is the main option and the other chars are secondary options.
103 Their flags will be turned on if the main option is found even
104 if they are not specifed on the command line. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000105
106 bb_opt_complementaly = "abc";
107
108 flags = bb_getopt_ulflags(argc, argv, "abcd")
109
110 If getopt() finds "-a" on the command line, then
111 bb_getopt_ulflags's return value will be as if "-a -b -c" were
112 found.
113
114Special characters:
115
116 "-" A dash between two options causes the second of the two
117 to be unset (and ignored) if it is given on the command line.
118
119 For example:
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000120 The du applet has the options "-s" and "-d depth". If
121 bb_getopt_ulflags finds -s, then -d is unset or if it finds -d
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000122 then -s is unset. (Note: busybox implements the GNU
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000123 "--max-depth" option as "-d".) To obtain this behavior, you
124 set bb_opt_complementaly = "s-d:d-s". Only one flag value is
125 added to bb_getopt_ulflags's return value depending on the
126 position of the options on the command line. If one of the
127 two options requires an argument pointer (":" in applet_opts
128 as in "d:") optarg is set accordingly.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000129
130 char *smax_print_depth;
131
132 bb_opt_complementaly = "s-d:d-s";
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000133 opt = bb_getopt_ulflags(argc, argv, "sd:", &smax_print_depth);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000134
135 if (opt & 2) {
136 max_print_depth = bb_xgetularg10_bnd(smax_print_depth,
137 0, INT_MAX);
138 }
139
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000140 "~" A tilde between two options, or between an option and a group
141 of options, means that they are mutually exclusive. Unlike
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000142 the "-" case above, an error will be forced if the options
143 are used together.
144
145 For example:
146 The cut applet must have only one type of list specified, so
147 -b, -c and -f are mutally exclusive and should raise an error
148 if specified together. In this case you must set
149 bb_opt_complementaly = "b~cf:c~bf:f~bc". If two of the
150 mutually exclusive options are found, bb_getopt_ulflags's
151 return value will have the error flag set (0x80000000UL) so
152 that we can check for it:
153
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000154 if (flags & 0x80000000UL)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000155 bb_show_usage();
156
157 "*" A star after a char in bb_opt_complementaly means that the
158 option can occur multiple times:
159
160 For example:
161 The grep applet can have one or more "-e pattern" arguments.
162 In this case you should use bb_getopt_ulflags() as follows:
163
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000164 llist_t *patterns = NULL;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000165
166 (this pointer must be initializated to NULL if the list is empty
167 as required by *llist_add_to(llist_t *old_head, char *new_item).)
168
169 bb_opt_complementaly = "e*";
170
Mike Frysingere5d0bde2005-05-10 23:48:35 +0000171 bb_getopt_ulflags(argc, argv, "e:", &patterns);
172 $ grep -e user -e root /etc/passwd
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000173 root:x:0:0:root:/root:/bin/bash
174 user:x:500:500::/home/user:/bin/bash
175
Eric Andersen8876fb22003-06-20 09:01:58 +0000176*/
177
178const char *bb_opt_complementaly;
179
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000180typedef struct {
Glenn L McGrath850b05f2003-12-19 10:13:10 +0000181 unsigned char opt;
Eric Andersen8876fb22003-06-20 09:01:58 +0000182 char list_flg;
183 unsigned long switch_on;
184 unsigned long switch_off;
185 unsigned long incongruously;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000186 void **optarg; /* char **optarg or llist_t **optarg */
Eric Andersen8876fb22003-06-20 09:01:58 +0000187} t_complementaly;
188
189/* You can set bb_applet_long_options for parse called long options */
190
191static const struct option bb_default_long_options[] = {
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000192/* { "help", 0, NULL, '?' }, */
Eric Andersen8876fb22003-06-20 09:01:58 +0000193 { 0, 0, 0, 0 }
194};
195
196const struct option *bb_applet_long_options = bb_default_long_options;
197
Eric Andersen8876fb22003-06-20 09:01:58 +0000198unsigned long
199bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200{
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000201 unsigned long flags = 0;
202 t_complementaly complementaly[sizeof(flags) * 8 + 1];
203 int c;
204 const unsigned char *s;
205 t_complementaly *on_off;
206 va_list p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000207
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000208 va_start (p, applet_opts);
Eric Andersen8876fb22003-06-20 09:01:58 +0000209
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000210 /* skip GNU extension */
211 s = applet_opts;
212 if(*s == '+' || *s == '-')
Eric Andersen8876fb22003-06-20 09:01:58 +0000213 s++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000214
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000215 c = 0;
216 on_off = complementaly;
217 for (; *s; s++) {
218 if(c >= (sizeof(flags)*8))
219 break;
220 on_off->opt = *s;
221 on_off->switch_on = (1 << c);
222 on_off->list_flg = 0;
223 on_off->switch_off = 0;
224 on_off->incongruously = 0;
225 on_off->optarg = NULL;
226 if (s[1] == ':') {
227 on_off->optarg = va_arg (p, void **);
228 do
229 s++;
230 while (s[1] == ':');
231 }
232 on_off++;
233 c++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000234 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000235 on_off->opt = 0;
236 c = 0;
237 for (s = bb_opt_complementaly; s && *s; s++) {
238 t_complementaly *pair;
239
240 if (*s == ':') {
241 c = 0;
242 continue;
243 }
244 if (c)
245 continue;
246 for (on_off = complementaly; on_off->opt; on_off++)
247 if (on_off->opt == *s)
248 break;
249 pair = on_off;
250 for(s++; *s && *s != ':'; s++) {
251 if (*s == '-' || *s == '~') {
252 c = *s;
253 } else if(*s == '*') {
254 pair->list_flg++;
255 } else {
256 unsigned long *pair_switch = &(pair->switch_on);
257 if(c)
258 pair_switch = c == '-' ? &(pair->switch_off) : &(pair->incongruously);
259 for (on_off = complementaly; on_off->opt; on_off++)
260 if (on_off->opt == *s) {
261 *pair_switch |= on_off->switch_on;
262 break;
263 }
264 }
265 }
266 s--;
Eric Andersen8876fb22003-06-20 09:01:58 +0000267 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000268
269 while ((c = getopt_long (argc, argv, applet_opts,
270 bb_applet_long_options, NULL)) > 0) {
271 for (on_off = complementaly; on_off->opt != c; on_off++) {
272 if(!on_off->opt)
273 bb_show_usage ();
274 }
275 if(flags & on_off->incongruously)
276 flags |= 0x80000000UL;
277 flags &= ~on_off->switch_off;
278 flags |= on_off->switch_on;
279 if(on_off->list_flg) {
280 *(llist_t **)(on_off->optarg) =
281 llist_add_to(*(llist_t **)(on_off->optarg), optarg);
282 } else if (on_off->optarg) {
283 *(char **)(on_off->optarg) = optarg;
284 }
285 }
286
287 return flags;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000288}