blob: 6ec5cb0cd62d40ec3db5ffb1c743b25a9b2234ed [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
Denis Vlasenkob44c7902008-03-17 09:29:43 +000025 * Added NLS support (partly written by Arkadiusz Mickiewicz
Eric Andersena1f16bb2000-08-21 22:02:34 +000026 * <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
Rob Landleyd921b2e2006-08-03 15:41:12 +000034#include <getopt.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000035#include "libbb.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,
Denis Vlasenko80d14be2007-04-10 23:03:30 +000041#if ENABLE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +000042/* LONG_OPT is the code that is returned when a long option is found. */
Rob Landleybc68cd12006-03-10 19:22:06 +000043 LONG_OPT = 2
Denis Vlasenko80d14be2007-04-10 23:03:30 +000044#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000045};
Eric Andersena1f16bb2000-08-21 22:02:34 +000046
Denis Vlasenko9c146a92007-04-07 10:25:04 +000047/* For finding activated option flags. Must match getopt32 call! */
48enum {
49 OPT_o = 0x1, // -o
50 OPT_n = 0x2, // -n
51 OPT_q = 0x4, // -q
52 OPT_Q = 0x8, // -Q
53 OPT_s = 0x10, // -s
54 OPT_T = 0x20, // -T
55 OPT_u = 0x40, // -u
Denis Vlasenko80d14be2007-04-10 23:03:30 +000056#if ENABLE_GETOPT_LONG
Denis Vlasenko9c146a92007-04-07 10:25:04 +000057 OPT_a = 0x80, // -a
58 OPT_l = 0x100, // -l
Denis Vlasenko80d14be2007-04-10 23:03:30 +000059#endif
Denis Vlasenko9c146a92007-04-07 10:25:04 +000060 SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */
61};
Eric Andersena1f16bb2000-08-21 22:02:34 +000062
Denis Vlasenko9c146a92007-04-07 10:25:04 +000063/* 0 is getopt_long, 1 is getopt_long_only */
64#define alternative (option_mask32 & OPT_a)
Eric Andersena1f16bb2000-08-21 22:02:34 +000065
Denis Vlasenko9c146a92007-04-07 10:25:04 +000066#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)
Eric Andersena1f16bb2000-08-21 22:02:34 +000070
71/*
72 * This function 'normalizes' a single argument: it puts single quotes around
73 * it and escapes other special characters. If quote is false, it just
74 * returns its argument.
75 * Bash only needs special treatment for single quotes; tcsh also recognizes
76 * exclamation marks within single quotes, and nukes whitespace.
77 * This function returns a pointer to a buffer that is overwritten by
78 * each call.
79 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000080static const char *normalize(const char *arg)
Eric Andersena1f16bb2000-08-21 22:02:34 +000081{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000082 char *bufptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +000083#if ENABLE_FEATURE_CLEAN_UP
84 static char *BUFFER = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000085 free(BUFFER);
Denis Vlasenko9c146a92007-04-07 10:25:04 +000086#else
87 char *BUFFER;
88#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +000089
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000090 if (!quote) { /* Just copy arg */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000091 BUFFER = xstrdup(arg);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000092 return BUFFER;
93 }
Eric Andersena1f16bb2000-08-21 22:02:34 +000094
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000095 /* Each character in arg may take up to four characters in the result:
96 For a quote we need a closing quote, a backslash, a quote and an
97 opening quote! We need also the global opening and closing quote,
98 and one extra character for '\0'. */
Denis Vlasenko9c146a92007-04-07 10:25:04 +000099 BUFFER = xmalloc(strlen(arg)*4 + 3);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000100
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000101 bufptr = BUFFER;
102 *bufptr ++= '\'';
Eric Andersena1f16bb2000-08-21 22:02:34 +0000103
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000104 while (*arg) {
105 if (*arg == '\'') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000106 /* Quote: replace it with: '\'' */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000107 *bufptr ++= '\'';
108 *bufptr ++= '\\';
109 *bufptr ++= '\'';
110 *bufptr ++= '\'';
111 } else if (shell_TCSH && *arg == '!') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000112 /* Exclamation mark: replace it with: \! */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000113 *bufptr ++= '\'';
114 *bufptr ++= '\\';
115 *bufptr ++= '!';
116 *bufptr ++= '\'';
117 } else if (shell_TCSH && *arg == '\n') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000118 /* Newline: replace it with: \n */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000119 *bufptr ++= '\\';
120 *bufptr ++= 'n';
121 } else if (shell_TCSH && isspace(*arg)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000122 /* Non-newline whitespace: replace it with \<ws> */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000123 *bufptr ++= '\'';
124 *bufptr ++= '\\';
125 *bufptr ++= *arg;
126 *bufptr ++= '\'';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000127 } else
128 /* Just copy */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000129 *bufptr ++= *arg;
130 arg++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000131 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000132 *bufptr ++= '\'';
133 *bufptr ++= '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000134 return BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000135}
136
137/*
138 * Generate the output. argv[0] is the program name (used for reporting errors).
139 * argv[1..] contains the options to be parsed. argc must be the number of
140 * elements in argv (ie. 1 if there are no options, only the program name),
141 * optstr must contain the short options, and longopts the long options.
142 * Other settings are found in global variables.
143 */
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000144#if !ENABLE_GETOPT_LONG
145#define generate_output(argv,argc,optstr,longopts) generate_output(argv,argc,optstr)
146#endif
147static int generate_output(char **argv, int argc, const char *optstr, const struct option *longopts)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000148{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000149 int exit_code = 0; /* We assume everything will be OK */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000150 unsigned opt;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000151#if ENABLE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000152 int longindex;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000153#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000154 const char *charptr;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000155
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000156 if (quiet_errors) /* No error reporting from getopt(3) */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000157 opterr = 0;
Denis Vlasenko97728162008-01-28 22:57:10 +0000158
159 /* Reset getopt(3) (see libbb/getopt32.c for long rant) */
160#ifdef __GLIBC__
161 optind = 0;
162#else /* BSD style */
163 optind = 1;
164 /* optreset = 1; */
165#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000166
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000167 while (1) {
168 opt =
169#if ENABLE_GETOPT_LONG
170 alternative ?
171 getopt_long_only(argc, argv, optstr, longopts, &longindex) :
172 getopt_long(argc, argv, optstr, longopts, &longindex);
173#else
174 getopt(argc, argv, optstr);
175#endif
176 if (opt == EOF)
177 break;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000178 if (opt == '?' || opt == ':' )
179 exit_code = 1;
180 else if (!quiet_output) {
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000181#if ENABLE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000182 if (opt == LONG_OPT) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000183 printf(" --%s", longopts[longindex].name);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000184 if (longopts[longindex].has_arg)
185 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000186 normalize(optarg ? optarg : ""));
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000187 } else
188#endif
189 if (opt == NON_OPT)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000190 printf(" %s", normalize(optarg));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000191 else {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000192 printf(" -%c", opt);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000193 charptr = strchr(optstr,opt);
194 if (charptr != NULL && *++charptr == ':')
195 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000196 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000197 }
198 }
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000199 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000200
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000201 if (!quiet_output) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000202 printf(" --");
203 while (optind < argc)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000204 printf(" %s", normalize(argv[optind++]));
Denis Vlasenko4daad902007-09-27 10:20:47 +0000205 bb_putchar('\n');
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000206 }
207 return exit_code;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000208}
209
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000210#if ENABLE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000211/*
212 * Register several long options. options is a string of long options,
213 * separated by commas or whitespace.
214 * This nukes options!
215 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000216static struct option *add_long_options(struct option *long_options, char *options)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000217{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000218 int long_nr = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000219 int arg_opt, tlen;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000220 char *tokptr = strtok(options, ", \t\n");
221
222 if (long_options)
223 while (long_options[long_nr].name)
224 long_nr++;
225
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000226 while (tokptr) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000227 arg_opt = no_argument;
228 tlen = strlen(tokptr);
229 if (tlen) {
230 tlen--;
231 if (tokptr[tlen] == ':') {
232 arg_opt = required_argument;
233 if (tlen && tokptr[tlen-1] == ':') {
234 tlen--;
235 arg_opt = optional_argument;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000236 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000237 tokptr[tlen] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000238 if (tlen == 0)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000239 bb_error_msg_and_die("empty long option specified");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000240 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000241 long_options = xrealloc(long_options,
242 sizeof(long_options[0]) * (long_nr+2));
243 long_options[long_nr].has_arg = arg_opt;
244 long_options[long_nr].flag = NULL;
245 long_options[long_nr].val = LONG_OPT;
246 long_options[long_nr].name = xstrdup(tokptr);
247 long_nr++;
248 memset(&long_options[long_nr], 0, sizeof(long_options[0]));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000249 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000250 tokptr = strtok(NULL, ", \t\n");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000251 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000252 return long_options;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000253}
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000254#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000255
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000256static void set_shell(const char *new_shell)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000257{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000258 if (!strcmp(new_shell,"bash") || !strcmp(new_shell,"sh"))
259 return;
260 if (!strcmp(new_shell,"tcsh") || !strcmp(new_shell,"csh"))
261 option_mask32 |= SHELL_IS_TCSH;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000262 else
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000263 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000264}
265
266
267/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000268 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000269 * 1) getopt(3) returned an error.
270 * 2) A problem with parameter parsing for getopt(1).
271 * 3) Internal error, out of memory
272 * 4) Returned for -T
273 */
274
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000275#if ENABLE_GETOPT_LONG
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000276static const char getopt_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000277 "options\0" Required_argument "o"
278 "longoptions\0" Required_argument "l"
279 "quiet\0" No_argument "q"
280 "quiet-output\0" No_argument "Q"
281 "shell\0" Required_argument "s"
282 "test\0" No_argument "T"
283 "unquoted\0" No_argument "u"
284 "alternative\0" No_argument "a"
285 "name\0" Required_argument "n"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000286 ;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000287#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000288
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000289int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
290int getopt_main(int argc, char **argv)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000291{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000292 char *optstr = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000293 char *name = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000294 unsigned opt;
295 const char *compatible;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000296 char *s_arg;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000297#if ENABLE_GETOPT_LONG
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000298 struct option *long_options = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000299 llist_t *l_arg = NULL;
300#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000301
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000302 compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000303
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000304 if (argc == 1) {
305 if (compatible) {
306 /* For some reason, the original getopt gave no error
307 when there were no arguments. */
308 printf(" --\n");
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000309 return 0;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000310 }
311 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000312 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000313
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000314 if (argv[1][0] != '-' || compatible) {
Rob Landleydbaf97e2005-09-05 06:16:53 +0000315 char *s;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000316
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000317 option_mask32 |= OPT_u; /* quoting off */
318 s = xstrdup(argv[1] + strspn(argv[1], "-+"));
319 argv[1] = argv[0];
320 return generate_output(argv+1, argc-1, s, long_options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000321 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000322
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000323#if !ENABLE_GETOPT_LONG
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000324 opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000325#else
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000326 applet_long_options = getopt_longopts;
Denis Vlasenko09196572007-07-21 13:27:44 +0000327 opt_complementary = "l::";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000328 opt = getopt32(argv, "+o:n:qQs:Tual:",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000329 &optstr, &name, &s_arg, &l_arg);
330 /* Effectuate the read options for the applet itself */
331 while (l_arg) {
332 long_options = add_long_options(long_options, l_arg->data);
333 l_arg = l_arg->link;
334 }
335#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000336
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000337 if (opt & OPT_s) {
338 set_shell(s_arg);
339 }
340
341 if (opt & OPT_T) {
342 return 4;
343 }
344
345 /* All options controlling the applet have now been parsed */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000346 if (!optstr) {
347 if (optind >= argc)
348 bb_error_msg_and_die("missing optstring argument");
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000349 optstr = argv[optind++];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000350 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000351
352 argv[optind-1] = name ? name : argv[0];
353 return generate_output(argv+optind-1, argc-optind+1, optstr, long_options);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000354}