blob: 85a1d441090f6819158a6d73b7386509990f8e3f [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersena1f16bb2000-08-21 22:02:34 +00002/*
3 * getopt.c - Enhanced implementation of BSD getopt(1)
4 * Copyright (c) 1997, 1998, 1999, 2000 Frodo Looijaard <frodol@dds.nl>
5 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00006 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersena1f16bb2000-08-21 22:02:34 +00007 */
8
9/*
10 * Version 1.0-b4: Tue Sep 23 1997. First public release.
11 * Version 1.0: Wed Nov 19 1997.
12 * Bumped up the version number to 1.0
13 * Fixed minor typo (CSH instead of TCSH)
14 * Version 1.0.1: Tue Jun 3 1998
15 * Fixed sizeof instead of strlen bug
16 * Bumped up the version number to 1.0.1
17 * Version 1.0.2: Thu Jun 11 1998 (not present)
18 * Fixed gcc-2.8.1 warnings
19 * Fixed --version/-V option (not present)
20 * Version 1.0.5: Tue Jun 22 1999
21 * Make -u option work (not present)
22 * Version 1.0.6: Tue Jun 27 2000
23 * No important changes
24 * Version 1.1.0: Tue Jun 30 2000
25 * Added NLS support (partly written by Arkadiusz Mi<B6>kiewicz
26 * <misiek@misiek.eu.org>)
27 * Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org>
28 * Removed --version/-V and --help/-h in
Eric Andersenaff114c2004-04-14 17:51:38 +000029 * Removed parse_error(), using bb_error_msg() from Busybox instead
Eric Andersena1f16bb2000-08-21 22:02:34 +000030 * Replaced our_malloc with xmalloc and our_realloc with xrealloc
31 *
32 */
33
Eric Andersen3570a342000-09-25 21:45:58 +000034#include "busybox.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000035#include <getopt.h>
Eric Andersena1f16bb2000-08-21 22:02:34 +000036
37/* NON_OPT is the code that is returned when a non-option is found in '+'
38 mode */
Rob Landleybc68cd12006-03-10 19:22:06 +000039enum {
40 NON_OPT = 1,
Eric Andersena1f16bb2000-08-21 22:02:34 +000041/* LONG_OPT is the code that is returned when a long option is found. */
Rob Landleybc68cd12006-03-10 19:22:06 +000042 LONG_OPT = 2
43};
Eric Andersena1f16bb2000-08-21 22:02:34 +000044
Denis Vlasenko9c146a92007-04-07 10:25:04 +000045/* For finding activated option flags. Must match getopt32 call! */
46enum {
47 OPT_o = 0x1, // -o
48 OPT_n = 0x2, // -n
49 OPT_q = 0x4, // -q
50 OPT_Q = 0x8, // -Q
51 OPT_s = 0x10, // -s
52 OPT_T = 0x20, // -T
53 OPT_u = 0x40, // -u
Denis Vlasenko9c146a92007-04-07 10:25:04 +000054 OPT_a = 0x80, // -a
55 OPT_l = 0x100, // -l
Denis Vlasenko9c146a92007-04-07 10:25:04 +000056 SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */
57};
Eric Andersena1f16bb2000-08-21 22:02:34 +000058
Denis Vlasenko9c146a92007-04-07 10:25:04 +000059/* 0 is getopt_long, 1 is getopt_long_only */
60#define alternative (option_mask32 & OPT_a)
Eric Andersena1f16bb2000-08-21 22:02:34 +000061
Denis Vlasenko9c146a92007-04-07 10:25:04 +000062#define quiet_errors (option_mask32 & OPT_q)
63#define quiet_output (option_mask32 & OPT_Q)
64#define quote (!(option_mask32 & OPT_u))
65#define shell_TCSH (option_mask32 & SHELL_IS_TCSH)
Eric Andersena1f16bb2000-08-21 22:02:34 +000066
67/*
68 * This function 'normalizes' a single argument: it puts single quotes around
69 * it and escapes other special characters. If quote is false, it just
70 * returns its argument.
71 * Bash only needs special treatment for single quotes; tcsh also recognizes
72 * exclamation marks within single quotes, and nukes whitespace.
73 * This function returns a pointer to a buffer that is overwritten by
74 * each call.
75 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000076static const char *normalize(const char *arg)
Eric Andersena1f16bb2000-08-21 22:02:34 +000077{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000078 char *bufptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +000079#if ENABLE_FEATURE_CLEAN_UP
80 static char *BUFFER = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000081 free(BUFFER);
Denis Vlasenko9c146a92007-04-07 10:25:04 +000082#else
83 char *BUFFER;
84#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +000085
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000086 if (!quote) { /* Just copy arg */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000087 BUFFER = xstrdup(arg);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000088 return BUFFER;
89 }
Eric Andersena1f16bb2000-08-21 22:02:34 +000090
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000091 /* Each character in arg may take up to four characters in the result:
92 For a quote we need a closing quote, a backslash, a quote and an
93 opening quote! We need also the global opening and closing quote,
94 and one extra character for '\0'. */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000095 BUFFER = xmalloc(strlen(arg)*4 + 3);
Eric Andersena1f16bb2000-08-21 22:02:34 +000096
Denis Vlasenko9c146a92007-04-07 10:25:04 +000097 bufptr = BUFFER;
98 *bufptr ++= '\'';
Eric Andersena1f16bb2000-08-21 22:02:34 +000099
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000100 while (*arg) {
101 if (*arg == '\'') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000102 /* Quote: replace it with: '\'' */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000103 *bufptr ++= '\'';
104 *bufptr ++= '\\';
105 *bufptr ++= '\'';
106 *bufptr ++= '\'';
107 } else if (shell_TCSH && *arg == '!') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000108 /* Exclamation mark: replace it with: \! */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000109 *bufptr ++= '\'';
110 *bufptr ++= '\\';
111 *bufptr ++= '!';
112 *bufptr ++= '\'';
113 } else if (shell_TCSH && *arg == '\n') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000114 /* Newline: replace it with: \n */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000115 *bufptr ++= '\\';
116 *bufptr ++= 'n';
117 } else if (shell_TCSH && isspace(*arg)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000118 /* Non-newline whitespace: replace it with \<ws> */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000119 *bufptr ++= '\'';
120 *bufptr ++= '\\';
121 *bufptr ++= *arg;
122 *bufptr ++= '\'';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000123 } else
124 /* Just copy */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000125 *bufptr ++= *arg;
126 arg++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000127 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000128 *bufptr ++= '\'';
129 *bufptr ++= '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000130 return BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000131}
132
133/*
134 * Generate the output. argv[0] is the program name (used for reporting errors).
135 * argv[1..] contains the options to be parsed. argc must be the number of
136 * elements in argv (ie. 1 if there are no options, only the program name),
137 * optstr must contain the short options, and longopts the long options.
138 * Other settings are found in global variables.
139 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000140static int generate_output(char * argv[],int argc,const char *optstr,
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000141 const struct option *longopts)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000142{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000143 int exit_code = 0; /* We assume everything will be OK */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000144 unsigned opt;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000145 int longindex;
146 const char *charptr;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000147
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000148 if (quiet_errors) /* No error reporting from getopt(3) */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000149 opterr = 0;
150 optind = 0; /* Reset getopt(3) */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000151
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000152 while ((opt = (alternative ?
153 getopt_long_only(argc,argv,optstr,longopts,&longindex) :
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000154 getopt_long(argc,argv,optstr,longopts,&longindex)))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000155 != EOF)
156 if (opt == '?' || opt == ':' )
157 exit_code = 1;
158 else if (!quiet_output) {
159 if (opt == LONG_OPT) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000160 printf(" --%s", longopts[longindex].name);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000161 if (longopts[longindex].has_arg)
162 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000163 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000164 } else if (opt == NON_OPT)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000165 printf(" %s", normalize(optarg));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000166 else {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000167 printf(" -%c", opt);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000168 charptr = strchr(optstr,opt);
169 if (charptr != NULL && *++charptr == ':')
170 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000171 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000172 }
173 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000174
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000175 if (!quiet_output) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000176 printf(" --");
177 while (optind < argc)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000178 printf(" %s", normalize(argv[optind++]));
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000179 puts("");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000180 }
181 return exit_code;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000182}
183
Eric Andersena1f16bb2000-08-21 22:02:34 +0000184/*
185 * Register several long options. options is a string of long options,
186 * separated by commas or whitespace.
187 * This nukes options!
188 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000189static struct option *add_long_options(struct option *long_options, char *options)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000190{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000191 int long_nr = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000192 int arg_opt, tlen;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000193 char *tokptr = strtok(options, ", \t\n");
194
195 if (long_options)
196 while (long_options[long_nr].name)
197 long_nr++;
198
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000199 while (tokptr) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000200 arg_opt = no_argument;
201 tlen = strlen(tokptr);
202 if (tlen) {
203 tlen--;
204 if (tokptr[tlen] == ':') {
205 arg_opt = required_argument;
206 if (tlen && tokptr[tlen-1] == ':') {
207 tlen--;
208 arg_opt = optional_argument;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000209 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000210 tokptr[tlen] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000211 if (tlen == 0)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000212 bb_error_msg_and_die("empty long option specified");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000213 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000214 long_options = xrealloc(long_options,
215 sizeof(long_options[0]) * (long_nr+2));
216 long_options[long_nr].has_arg = arg_opt;
217 long_options[long_nr].flag = NULL;
218 long_options[long_nr].val = LONG_OPT;
219 long_options[long_nr].name = xstrdup(tokptr);
220 long_nr++;
221 memset(&long_options[long_nr], 0, sizeof(long_options[0]));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000222 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000223 tokptr = strtok(NULL, ", \t\n");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000224 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000225 return long_options;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000226}
227
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000228static void set_shell(const char *new_shell)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000229{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000230 if (!strcmp(new_shell,"bash") || !strcmp(new_shell,"sh"))
231 return;
232 if (!strcmp(new_shell,"tcsh") || !strcmp(new_shell,"csh"))
233 option_mask32 |= SHELL_IS_TCSH;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000234 else
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000235 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000236}
237
238
239/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000240 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000241 * 1) getopt(3) returned an error.
242 * 2) A problem with parameter parsing for getopt(1).
243 * 3) Internal error, out of memory
244 * 4) Returned for -T
245 */
246
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000247#if ENABLE_GETOPT_LONG
248static const struct option longopts[] = {
249 { "options", required_argument, NULL, 'o' },
250 { "longoptions", required_argument, NULL, 'l' },
251 { "quiet", no_argument, NULL, 'q' },
252 { "quiet-output", no_argument, NULL, 'Q' },
253 { "shell", required_argument, NULL, 's' },
254 { "test", no_argument, NULL, 'T' },
255 { "unquoted", no_argument, NULL, 'u' },
256 { "alternative", no_argument, NULL, 'a' },
257 { "name", required_argument, NULL, 'n' },
258 { NULL, 0, NULL, 0 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000259};
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000260#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000261
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000262int getopt_main(int argc, char *argv[]);
263int getopt_main(int argc, char *argv[])
Eric Andersena1f16bb2000-08-21 22:02:34 +0000264{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000265 struct option *long_options = NULL;
266 char *optstr = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000267 char *name = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000268 unsigned opt;
269 const char *compatible;
270 char *s_arg;
271#if ENABLE_GETOPT_LONG
272 llist_t *l_arg = NULL;
273#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000274
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000275 compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000276
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000277 if (argc == 1) {
278 if (compatible) {
279 /* For some reason, the original getopt gave no error
280 when there were no arguments. */
281 printf(" --\n");
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000282 return 0;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000283 }
284 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000285 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000286
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000287 if (argv[1][0] != '-' || compatible) {
Rob Landleydbaf97e2005-09-05 06:16:53 +0000288 char *s;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000289
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000290 option_mask32 |= OPT_u; /* quoting off */
291 s = xstrdup(argv[1] + strspn(argv[1], "-+"));
292 argv[1] = argv[0];
293 return generate_output(argv+1, argc-1, s, long_options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000294 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000295
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000296#if !ENABLE_GETOPT_LONG
297 opt = getopt32(argc, argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
298#else
299 applet_long_options = longopts;
300 opt_complementary = "?:l::";
301 opt = getopt32(argc, argv, "+o:n:qQs:Tual:",
302 &optstr, &name, &s_arg, &l_arg);
303 /* Effectuate the read options for the applet itself */
304 while (l_arg) {
305 long_options = add_long_options(long_options, l_arg->data);
306 l_arg = l_arg->link;
307 }
308#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000309
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000310 if (opt & OPT_s) {
311 set_shell(s_arg);
312 }
313
314 if (opt & OPT_T) {
315 return 4;
316 }
317
318 /* All options controlling the applet have now been parsed */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000319 if (!optstr) {
320 if (optind >= argc)
321 bb_error_msg_and_die("missing optstring argument");
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000322 optstr = argv[optind++];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000323 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000324
325 argv[optind-1] = name ? name : argv[0];
326 return generate_output(argv+optind-1, argc-optind+1, optstr, long_options);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000327}