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