blob: fefa0220662a0e106fd2be2e1ec3d119630e0517 [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
54#if ENABLE_GETOPT_LONG
55 OPT_a = 0x80, // -a
56 OPT_l = 0x100, // -l
57#endif
58 SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */
59};
Eric Andersena1f16bb2000-08-21 22:02:34 +000060
Denis Vlasenko9c146a92007-04-07 10:25:04 +000061/* 0 is getopt_long, 1 is getopt_long_only */
62#define alternative (option_mask32 & OPT_a)
Eric Andersena1f16bb2000-08-21 22:02:34 +000063
Denis Vlasenko9c146a92007-04-07 10:25:04 +000064#define quiet_errors (option_mask32 & OPT_q)
65#define quiet_output (option_mask32 & OPT_Q)
66#define quote (!(option_mask32 & OPT_u))
67#define shell_TCSH (option_mask32 & SHELL_IS_TCSH)
Eric Andersena1f16bb2000-08-21 22:02:34 +000068
69/*
70 * This function 'normalizes' a single argument: it puts single quotes around
71 * it and escapes other special characters. If quote is false, it just
72 * returns its argument.
73 * Bash only needs special treatment for single quotes; tcsh also recognizes
74 * exclamation marks within single quotes, and nukes whitespace.
75 * This function returns a pointer to a buffer that is overwritten by
76 * each call.
77 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000078static const char *normalize(const char *arg)
Eric Andersena1f16bb2000-08-21 22:02:34 +000079{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000080 char *bufptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +000081#if ENABLE_FEATURE_CLEAN_UP
82 static char *BUFFER = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000083 free(BUFFER);
Denis Vlasenko9c146a92007-04-07 10:25:04 +000084#else
85 char *BUFFER;
86#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +000087
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000088 if (!quote) { /* Just copy arg */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000089 BUFFER = xstrdup(arg);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000090 return BUFFER;
91 }
Eric Andersena1f16bb2000-08-21 22:02:34 +000092
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000093 /* Each character in arg may take up to four characters in the result:
94 For a quote we need a closing quote, a backslash, a quote and an
95 opening quote! We need also the global opening and closing quote,
96 and one extra character for '\0'. */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000097 BUFFER = xmalloc(strlen(arg)*4 + 3);
Eric Andersena1f16bb2000-08-21 22:02:34 +000098
Denis Vlasenko9c146a92007-04-07 10:25:04 +000099 bufptr = BUFFER;
100 *bufptr ++= '\'';
Eric Andersena1f16bb2000-08-21 22:02:34 +0000101
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000102 while (*arg) {
103 if (*arg == '\'') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000104 /* Quote: replace it with: '\'' */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000105 *bufptr ++= '\'';
106 *bufptr ++= '\\';
107 *bufptr ++= '\'';
108 *bufptr ++= '\'';
109 } else if (shell_TCSH && *arg == '!') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000110 /* Exclamation mark: replace it with: \! */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000111 *bufptr ++= '\'';
112 *bufptr ++= '\\';
113 *bufptr ++= '!';
114 *bufptr ++= '\'';
115 } else if (shell_TCSH && *arg == '\n') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000116 /* Newline: replace it with: \n */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000117 *bufptr ++= '\\';
118 *bufptr ++= 'n';
119 } else if (shell_TCSH && isspace(*arg)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000120 /* Non-newline whitespace: replace it with \<ws> */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000121 *bufptr ++= '\'';
122 *bufptr ++= '\\';
123 *bufptr ++= *arg;
124 *bufptr ++= '\'';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000125 } else
126 /* Just copy */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000127 *bufptr ++= *arg;
128 arg++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000129 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000130 *bufptr ++= '\'';
131 *bufptr ++= '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000132 return BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000133}
134
135/*
136 * Generate the output. argv[0] is the program name (used for reporting errors).
137 * argv[1..] contains the options to be parsed. argc must be the number of
138 * elements in argv (ie. 1 if there are no options, only the program name),
139 * optstr must contain the short options, and longopts the long options.
140 * Other settings are found in global variables.
141 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000142static int generate_output(char * argv[],int argc,const char *optstr,
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000143 const struct option *longopts)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000144{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000145 int exit_code = 0; /* We assume everything will be OK */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000146 unsigned opt;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000147 int longindex;
148 const char *charptr;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000149
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000150 if (quiet_errors) /* No error reporting from getopt(3) */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000151 opterr = 0;
152 optind = 0; /* Reset getopt(3) */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000153
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000154 while ((opt = (alternative ?
155 getopt_long_only(argc,argv,optstr,longopts,&longindex) :
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000156 getopt_long(argc,argv,optstr,longopts,&longindex)))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000157 != EOF)
158 if (opt == '?' || opt == ':' )
159 exit_code = 1;
160 else if (!quiet_output) {
161 if (opt == LONG_OPT) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000162 printf(" --%s", longopts[longindex].name);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000163 if (longopts[longindex].has_arg)
164 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000165 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000166 } else if (opt == NON_OPT)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000167 printf(" %s", normalize(optarg));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000168 else {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000169 printf(" -%c", opt);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000170 charptr = strchr(optstr,opt);
171 if (charptr != NULL && *++charptr == ':')
172 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000173 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000174 }
175 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000176
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000177 if (!quiet_output) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000178 printf(" --");
179 while (optind < argc)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000180 printf(" %s", normalize(argv[optind++]));
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000181 puts("");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000182 }
183 return exit_code;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000184}
185
Eric Andersena1f16bb2000-08-21 22:02:34 +0000186/*
187 * Register several long options. options is a string of long options,
188 * separated by commas or whitespace.
189 * This nukes options!
190 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000191static struct option *add_long_options(struct option *long_options, char *options)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000192{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000193 int long_nr = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000194 int arg_opt, tlen;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000195 char *tokptr = strtok(options, ", \t\n");
196
197 if (long_options)
198 while (long_options[long_nr].name)
199 long_nr++;
200
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000201 while (tokptr) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000202 arg_opt = no_argument;
203 tlen = strlen(tokptr);
204 if (tlen) {
205 tlen--;
206 if (tokptr[tlen] == ':') {
207 arg_opt = required_argument;
208 if (tlen && tokptr[tlen-1] == ':') {
209 tlen--;
210 arg_opt = optional_argument;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000211 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000212 tokptr[tlen] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000213 if (tlen == 0)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000214 bb_error_msg_and_die("empty long option specified");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000215 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000216 long_options = xrealloc(long_options,
217 sizeof(long_options[0]) * (long_nr+2));
218 long_options[long_nr].has_arg = arg_opt;
219 long_options[long_nr].flag = NULL;
220 long_options[long_nr].val = LONG_OPT;
221 long_options[long_nr].name = xstrdup(tokptr);
222 long_nr++;
223 memset(&long_options[long_nr], 0, sizeof(long_options[0]));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000224 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000225 tokptr = strtok(NULL, ", \t\n");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000226 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000227 return long_options;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000228}
229
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000230static void set_shell(const char *new_shell)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000231{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000232 if (!strcmp(new_shell,"bash") || !strcmp(new_shell,"sh"))
233 return;
234 if (!strcmp(new_shell,"tcsh") || !strcmp(new_shell,"csh"))
235 option_mask32 |= SHELL_IS_TCSH;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000236 else
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000237 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000238}
239
240
241/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000242 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000243 * 1) getopt(3) returned an error.
244 * 2) A problem with parameter parsing for getopt(1).
245 * 3) Internal error, out of memory
246 * 4) Returned for -T
247 */
248
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000249#if ENABLE_GETOPT_LONG
250static const struct option longopts[] = {
251 { "options", required_argument, NULL, 'o' },
252 { "longoptions", required_argument, NULL, 'l' },
253 { "quiet", no_argument, NULL, 'q' },
254 { "quiet-output", no_argument, NULL, 'Q' },
255 { "shell", required_argument, NULL, 's' },
256 { "test", no_argument, NULL, 'T' },
257 { "unquoted", no_argument, NULL, 'u' },
258 { "alternative", no_argument, NULL, 'a' },
259 { "name", required_argument, NULL, 'n' },
260 { NULL, 0, NULL, 0 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000261};
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000262#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000263
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000264int getopt_main(int argc, char *argv[]);
265int getopt_main(int argc, char *argv[])
Eric Andersena1f16bb2000-08-21 22:02:34 +0000266{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000267 struct option *long_options = NULL;
268 char *optstr = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000269 char *name = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000270 unsigned opt;
271 const char *compatible;
272 char *s_arg;
273#if ENABLE_GETOPT_LONG
274 llist_t *l_arg = NULL;
275#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000276
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000277 compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000278
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000279 if (argc == 1) {
280 if (compatible) {
281 /* For some reason, the original getopt gave no error
282 when there were no arguments. */
283 printf(" --\n");
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000284 return 0;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000285 }
286 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000287 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000288
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000289 if (argv[1][0] != '-' || compatible) {
Rob Landleydbaf97e2005-09-05 06:16:53 +0000290 char *s;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000291
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000292 option_mask32 |= OPT_u; /* quoting off */
293 s = xstrdup(argv[1] + strspn(argv[1], "-+"));
294 argv[1] = argv[0];
295 return generate_output(argv+1, argc-1, s, long_options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000296 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000297
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000298#if !ENABLE_GETOPT_LONG
299 opt = getopt32(argc, argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
300#else
301 applet_long_options = longopts;
302 opt_complementary = "?:l::";
303 opt = getopt32(argc, argv, "+o:n:qQs:Tual:",
304 &optstr, &name, &s_arg, &l_arg);
305 /* Effectuate the read options for the applet itself */
306 while (l_arg) {
307 long_options = add_long_options(long_options, l_arg->data);
308 l_arg = l_arg->link;
309 }
310#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000311
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000312 if (opt & OPT_s) {
313 set_shell(s_arg);
314 }
315
316 if (opt & OPT_T) {
317 return 4;
318 }
319
320 /* All options controlling the applet have now been parsed */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000321 if (!optstr) {
322 if (optind >= argc)
323 bb_error_msg_and_die("missing optstring argument");
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000324 optstr = argv[optind++];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000325 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000326
327 argv[optind-1] = name ? name : argv[0];
328 return generate_output(argv+optind-1, argc-optind+1, optstr, long_options);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000329}