1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104#if ENABLE_FEATURE_GETOPT_LONG
105# include <getopt.h>
106#endif
107#include "libbb.h"
108
109
110
111enum {
112 NON_OPT = 1,
113#if ENABLE_FEATURE_GETOPT_LONG
114
115 LONG_OPT = 2
116#endif
117};
118
119
120enum {
121 OPT_o = 0x1,
122 OPT_n = 0x2,
123 OPT_q = 0x4,
124 OPT_Q = 0x8,
125 OPT_s = 0x10,
126 OPT_T = 0x20,
127 OPT_u = 0x40,
128#if ENABLE_FEATURE_GETOPT_LONG
129 OPT_a = 0x80,
130 OPT_l = 0x100,
131#endif
132 SHELL_IS_TCSH = 0x8000,
133};
134
135
136#define alternative (option_mask32 & OPT_a)
137
138#define quiet_errors (option_mask32 & OPT_q)
139#define quiet_output (option_mask32 & OPT_Q)
140#define quote (!(option_mask32 & OPT_u))
141#define shell_TCSH (option_mask32 & SHELL_IS_TCSH)
142
143
144
145
146
147
148
149
150
151
152static const char *normalize(const char *arg)
153{
154 char *bufptr;
155#if ENABLE_FEATURE_CLEAN_UP
156 static char *BUFFER = NULL;
157 free(BUFFER);
158#else
159 char *BUFFER;
160#endif
161
162 if (!quote) {
163 BUFFER = xstrdup(arg);
164 return BUFFER;
165 }
166
167
168
169
170
171 BUFFER = xmalloc(strlen(arg)*4 + 3);
172
173 bufptr = BUFFER;
174 *bufptr ++= '\'';
175
176 while (*arg) {
177 if (*arg == '\'') {
178
179 *bufptr ++= '\'';
180 *bufptr ++= '\\';
181 *bufptr ++= '\'';
182 *bufptr ++= '\'';
183 } else if (shell_TCSH && *arg == '!') {
184
185 *bufptr ++= '\'';
186 *bufptr ++= '\\';
187 *bufptr ++= '!';
188 *bufptr ++= '\'';
189 } else if (shell_TCSH && *arg == '\n') {
190
191 *bufptr ++= '\\';
192 *bufptr ++= 'n';
193 } else if (shell_TCSH && isspace(*arg)) {
194
195 *bufptr ++= '\'';
196 *bufptr ++= '\\';
197 *bufptr ++= *arg;
198 *bufptr ++= '\'';
199 } else
200
201 *bufptr ++= *arg;
202 arg++;
203 }
204 *bufptr ++= '\'';
205 *bufptr ++= '\0';
206 return BUFFER;
207}
208
209
210
211
212
213
214
215
216#if !ENABLE_FEATURE_GETOPT_LONG
217#define generate_output(argv,argc,optstr,longopts) \
218 generate_output(argv,argc,optstr)
219#endif
220static int generate_output(char **argv, int argc, const char *optstr, const struct option *longopts)
221{
222 int exit_code = 0;
223
224 if (quiet_errors)
225 opterr = 0;
226
227
228
229#ifdef __GLIBC__
230 optind = 0;
231#else
232 optind = 1;
233
234#endif
235
236 while (1) {
237#if ENABLE_FEATURE_GETOPT_LONG
238 int longindex;
239 int opt = alternative
240 ? getopt_long_only(argc, argv, optstr, longopts, &longindex)
241 : getopt_long(argc, argv, optstr, longopts, &longindex)
242 ;
243#else
244 int opt = getopt(argc, argv, optstr);
245#endif
246 if (opt == -1)
247 break;
248 if (opt == '?' || opt == ':' )
249 exit_code = 1;
250 else if (!quiet_output) {
251#if ENABLE_FEATURE_GETOPT_LONG
252 if (opt == LONG_OPT) {
253 printf(" --%s", longopts[longindex].name);
254 if (longopts[longindex].has_arg)
255 printf(" %s",
256 normalize(optarg ? optarg : ""));
257 } else
258#endif
259 if (opt == NON_OPT)
260 printf(" %s", normalize(optarg));
261 else {
262 const char *charptr;
263 printf(" -%c", opt);
264 charptr = strchr(optstr, opt);
265 if (charptr && *++charptr == ':')
266 printf(" %s",
267 normalize(optarg ? optarg : ""));
268 }
269 }
270 }
271
272 if (!quiet_output) {
273 unsigned idx;
274 printf(" --");
275 idx = optind;
276 while (argv[idx])
277 printf(" %s", normalize(argv[idx++]));
278 bb_putchar('\n');
279 }
280 return exit_code;
281}
282
283#if ENABLE_FEATURE_GETOPT_LONG
284
285
286
287
288
289static struct option *add_long_options(struct option *long_options, char *options)
290{
291 int long_nr = 0;
292 int arg_opt, tlen;
293 char *tokptr = strtok(options, ", \t\n");
294
295 if (long_options)
296 while (long_options[long_nr].name)
297 long_nr++;
298
299 while (tokptr) {
300 arg_opt = no_argument;
301 tlen = strlen(tokptr);
302 if (tlen) {
303 tlen--;
304 if (tokptr[tlen] == ':') {
305 arg_opt = required_argument;
306 if (tlen && tokptr[tlen-1] == ':') {
307 tlen--;
308 arg_opt = optional_argument;
309 }
310 tokptr[tlen] = '\0';
311 if (tlen == 0)
312 bb_error_msg_and_die("empty long option specified");
313 }
314 long_options = xrealloc_vector(long_options, 4, long_nr);
315 long_options[long_nr].has_arg = arg_opt;
316
317 long_options[long_nr].val = LONG_OPT;
318 long_options[long_nr].name = xstrdup(tokptr);
319 long_nr++;
320
321 }
322 tokptr = strtok(NULL, ", \t\n");
323 }
324 return long_options;
325}
326#endif
327
328static void set_shell(const char *new_shell)
329{
330 if (!strcmp(new_shell, "bash") || !strcmp(new_shell, "sh"))
331 return;
332 if (!strcmp(new_shell, "tcsh") || !strcmp(new_shell, "csh"))
333 option_mask32 |= SHELL_IS_TCSH;
334 else
335 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
336}
337
338
339
340
341
342
343
344
345
346
347#if ENABLE_FEATURE_GETOPT_LONG
348static const char getopt_longopts[] ALIGN1 =
349 "options\0" Required_argument "o"
350 "longoptions\0" Required_argument "l"
351 "quiet\0" No_argument "q"
352 "quiet-output\0" No_argument "Q"
353 "shell\0" Required_argument "s"
354 "test\0" No_argument "T"
355 "unquoted\0" No_argument "u"
356 "alternative\0" No_argument "a"
357 "name\0" Required_argument "n"
358 ;
359#endif
360
361int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
362int getopt_main(int argc, char **argv)
363{
364 int n;
365 char *optstr = NULL;
366 char *name = NULL;
367 unsigned opt;
368 const char *compatible;
369 char *s_arg;
370#if ENABLE_FEATURE_GETOPT_LONG
371 struct option *long_options = NULL;
372 llist_t *l_arg = NULL;
373#endif
374
375 compatible = getenv("GETOPT_COMPATIBLE");
376
377 if (!argv[1]) {
378 if (compatible) {
379
380
381 printf(" --\n");
382 return 0;
383 }
384 bb_error_msg_and_die("missing optstring argument");
385 }
386
387 if (argv[1][0] != '-' || compatible) {
388 char *s = argv[1];
389
390 option_mask32 |= OPT_u;
391 s = xstrdup(s + strspn(s, "-+"));
392 argv[1] = argv[0];
393 return generate_output(argv+1, argc-1, s, long_options);
394 }
395
396#if !ENABLE_FEATURE_GETOPT_LONG
397 opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
398#else
399 applet_long_options = getopt_longopts;
400 opt_complementary = "l::";
401 opt = getopt32(argv, "+o:n:qQs:Tual:",
402 &optstr, &name, &s_arg, &l_arg);
403
404 while (l_arg) {
405 long_options = add_long_options(long_options, llist_pop(&l_arg));
406 }
407#endif
408
409 if (opt & OPT_s) {
410 set_shell(s_arg);
411 }
412
413 if (opt & OPT_T) {
414 return 4;
415 }
416
417
418 n = optind - 1;
419 if (!optstr) {
420 optstr = argv[++n];
421 if (!optstr)
422 bb_error_msg_and_die("missing optstring argument");
423 }
424
425 argv[n] = name ? name : argv[0];
426 return generate_output(argv + n, argc - n, optstr, long_options);
427}
428