blob: d662c813ae4c27f57e4c6295424b3515241e0506 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
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>
Denys Vlasenko488dd702011-05-29 04:24:13 +020028 * Removed --version/-V and --help/-h
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
Pere Orga5bc8c002011-04-11 03:29:49 +020034//usage:#define getopt_trivial_usage
Denys Vlasenko594db1e2012-02-09 18:17:29 +010035//usage: "[OPTIONS] [--] OPTSTRING PARAMS"
Pere Orga5bc8c002011-04-11 03:29:49 +020036//usage:#define getopt_full_usage "\n\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020037//usage: IF_LONG_OPTS(
Denys Vlasenko66426762011-06-05 03:58:28 +020038//usage: " -a,--alternative Allow long options starting with single -"
Denys Vlasenko594db1e2012-02-09 18:17:29 +010039//usage: "\n -l,--longoptions=LOPT[,...] Long options to be recognized"
40//usage: "\n -n,--name=PROGNAME The name under which errors are reported"
41//usage: "\n -o,--options=OPTSTRING Short options to be recognized"
Pere Orga5bc8c002011-04-11 03:29:49 +020042//usage: "\n -q,--quiet Disable error reporting by getopt(3)"
43//usage: "\n -Q,--quiet-output No normal output"
Denys Vlasenko594db1e2012-02-09 18:17:29 +010044//usage: "\n -s,--shell=SHELL Set shell quoting conventions"
Pere Orga5bc8c002011-04-11 03:29:49 +020045//usage: "\n -T,--test Test for getopt(1) version"
46//usage: "\n -u,--unquoted Don't quote the output"
47//usage: )
48//usage: IF_NOT_LONG_OPTS(
Denys Vlasenko66426762011-06-05 03:58:28 +020049//usage: " -a Allow long options starting with single -"
Denys Vlasenko594db1e2012-02-09 18:17:29 +010050//usage: "\n -l LOPT[,...] Long options to be recognized"
51//usage: "\n -n PROGNAME The name under which errors are reported"
52//usage: "\n -o OPTSTRING Short options to be recognized"
Pere Orga5bc8c002011-04-11 03:29:49 +020053//usage: "\n -q Disable error reporting by getopt(3)"
54//usage: "\n -Q No normal output"
Denys Vlasenko594db1e2012-02-09 18:17:29 +010055//usage: "\n -s SHELL Set shell quoting conventions"
Pere Orga5bc8c002011-04-11 03:29:49 +020056//usage: "\n -T Test for getopt(1) version"
57//usage: "\n -u Don't quote the output"
58//usage: )
Denys Vlasenko594db1e2012-02-09 18:17:29 +010059//usage: "\n"
60//usage: "\nExample:"
61//usage: "\n"
Denys Vlasenko817c2302012-02-09 18:39:16 +010062//usage: "\nO=`getopt -l bb: -- ab:c:: \"$@\"` || exit 1"
Denys Vlasenko594db1e2012-02-09 18:17:29 +010063//usage: "\neval set -- \"$O\""
64//usage: "\nwhile true; do"
65//usage: "\n case \"$1\" in"
66//usage: "\n -a) echo A; shift;;"
67//usage: "\n -b|--bb) echo \"B:'$2'\"; shift 2;;"
68//usage: "\n -c) case \"$2\" in"
69//usage: "\n \"\") echo C; shift 2;;"
70//usage: "\n *) echo \"C:'$2'\"; shift 2;;"
71//usage: "\n esac;;"
72//usage: "\n --) shift; break;;"
73//usage: "\n *) echo Error; exit 1;;"
74//usage: "\n esac"
75//usage: "\ndone"
Pere Orga5bc8c002011-04-11 03:29:49 +020076//usage:
77//usage:#define getopt_example_usage
78//usage: "$ cat getopt.test\n"
79//usage: "#!/bin/sh\n"
80//usage: "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n"
81//usage: " -n 'example.busybox' -- \"$@\"`\n"
82//usage: "if [ $? != 0 ]; then exit 1; fi\n"
83//usage: "eval set -- \"$GETOPT\"\n"
84//usage: "while true; do\n"
85//usage: " case $1 in\n"
86//usage: " -a|--a-long) echo \"Option a\"; shift;;\n"
87//usage: " -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n"
88//usage: " -c|--c-long)\n"
89//usage: " case \"$2\" in\n"
90//usage: " \"\") echo \"Option c, no argument\"; shift 2;;\n"
91//usage: " *) echo \"Option c, argument '$2'\"; shift 2;;\n"
92//usage: " esac;;\n"
93//usage: " --) shift; break;;\n"
94//usage: " *) echo \"Internal error!\"; exit 1;;\n"
95//usage: " esac\n"
96//usage: "done\n"
97
Denys Vlasenko488dd702011-05-29 04:24:13 +020098#if ENABLE_FEATURE_GETOPT_LONG
99# include <getopt.h>
100#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000101#include "libbb.h"
Eric Andersena1f16bb2000-08-21 22:02:34 +0000102
103/* NON_OPT is the code that is returned when a non-option is found in '+'
104 mode */
Rob Landleybc68cd12006-03-10 19:22:06 +0000105enum {
106 NON_OPT = 1,
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200107#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000108/* LONG_OPT is the code that is returned when a long option is found. */
Rob Landleybc68cd12006-03-10 19:22:06 +0000109 LONG_OPT = 2
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000110#endif
Rob Landleybc68cd12006-03-10 19:22:06 +0000111};
Eric Andersena1f16bb2000-08-21 22:02:34 +0000112
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000113/* For finding activated option flags. Must match getopt32 call! */
114enum {
115 OPT_o = 0x1, // -o
116 OPT_n = 0x2, // -n
117 OPT_q = 0x4, // -q
118 OPT_Q = 0x8, // -Q
119 OPT_s = 0x10, // -s
120 OPT_T = 0x20, // -T
121 OPT_u = 0x40, // -u
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200122#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000123 OPT_a = 0x80, // -a
124 OPT_l = 0x100, // -l
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000125#endif
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000126 SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */
127};
Eric Andersena1f16bb2000-08-21 22:02:34 +0000128
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000129/* 0 is getopt_long, 1 is getopt_long_only */
130#define alternative (option_mask32 & OPT_a)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000131
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000132#define quiet_errors (option_mask32 & OPT_q)
133#define quiet_output (option_mask32 & OPT_Q)
134#define quote (!(option_mask32 & OPT_u))
135#define shell_TCSH (option_mask32 & SHELL_IS_TCSH)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000136
137/*
138 * This function 'normalizes' a single argument: it puts single quotes around
139 * it and escapes other special characters. If quote is false, it just
140 * returns its argument.
141 * Bash only needs special treatment for single quotes; tcsh also recognizes
142 * exclamation marks within single quotes, and nukes whitespace.
143 * This function returns a pointer to a buffer that is overwritten by
144 * each call.
145 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000146static const char *normalize(const char *arg)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000147{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000148 char *bufptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000149#if ENABLE_FEATURE_CLEAN_UP
150 static char *BUFFER = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000151 free(BUFFER);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000152#else
153 char *BUFFER;
154#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000155
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000156 if (!quote) { /* Just copy arg */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000157 BUFFER = xstrdup(arg);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000158 return BUFFER;
159 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000160
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000161 /* Each character in arg may take up to four characters in the result:
162 For a quote we need a closing quote, a backslash, a quote and an
163 opening quote! We need also the global opening and closing quote,
164 and one extra character for '\0'. */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000165 BUFFER = xmalloc(strlen(arg)*4 + 3);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000166
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000167 bufptr = BUFFER;
168 *bufptr ++= '\'';
Eric Andersena1f16bb2000-08-21 22:02:34 +0000169
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000170 while (*arg) {
171 if (*arg == '\'') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000172 /* Quote: replace it with: '\'' */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000173 *bufptr ++= '\'';
174 *bufptr ++= '\\';
175 *bufptr ++= '\'';
176 *bufptr ++= '\'';
177 } else if (shell_TCSH && *arg == '!') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000178 /* Exclamation mark: replace it with: \! */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000179 *bufptr ++= '\'';
180 *bufptr ++= '\\';
181 *bufptr ++= '!';
182 *bufptr ++= '\'';
183 } else if (shell_TCSH && *arg == '\n') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000184 /* Newline: replace it with: \n */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000185 *bufptr ++= '\\';
186 *bufptr ++= 'n';
187 } else if (shell_TCSH && isspace(*arg)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000188 /* Non-newline whitespace: replace it with \<ws> */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000189 *bufptr ++= '\'';
190 *bufptr ++= '\\';
191 *bufptr ++= *arg;
192 *bufptr ++= '\'';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000193 } else
194 /* Just copy */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000195 *bufptr ++= *arg;
196 arg++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000197 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000198 *bufptr ++= '\'';
199 *bufptr ++= '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000200 return BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000201}
202
203/*
204 * Generate the output. argv[0] is the program name (used for reporting errors).
205 * argv[1..] contains the options to be parsed. argc must be the number of
206 * elements in argv (ie. 1 if there are no options, only the program name),
207 * optstr must contain the short options, and longopts the long options.
208 * Other settings are found in global variables.
209 */
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200210#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000211#define generate_output(argv,argc,optstr,longopts) \
212 generate_output(argv,argc,optstr)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000213#endif
214static int generate_output(char **argv, int argc, const char *optstr, const struct option *longopts)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000215{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000216 int exit_code = 0; /* We assume everything will be OK */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000217 int opt;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200218#if ENABLE_FEATURE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000219 int longindex;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000220#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000221 const char *charptr;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000222
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000223 if (quiet_errors) /* No error reporting from getopt(3) */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000224 opterr = 0;
Denis Vlasenko97728162008-01-28 22:57:10 +0000225
Denis Vlasenko7effd7a2008-10-21 12:36:43 +0000226 /* We used it already in main() in getopt32(),
227 * we *must* reset getopt(3): */
228#ifdef __GLIBC__
229 optind = 0;
230#else /* BSD style */
231 optind = 1;
232 /* optreset = 1; */
233#endif
234
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000235 while (1) {
236 opt =
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200237#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000238 alternative ?
239 getopt_long_only(argc, argv, optstr, longopts, &longindex) :
240 getopt_long(argc, argv, optstr, longopts, &longindex);
241#else
242 getopt(argc, argv, optstr);
243#endif
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000244 if (opt == -1)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000245 break;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000246 if (opt == '?' || opt == ':' )
247 exit_code = 1;
248 else if (!quiet_output) {
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200249#if ENABLE_FEATURE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000250 if (opt == LONG_OPT) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000251 printf(" --%s", longopts[longindex].name);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000252 if (longopts[longindex].has_arg)
253 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000254 normalize(optarg ? optarg : ""));
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000255 } else
256#endif
257 if (opt == NON_OPT)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000258 printf(" %s", normalize(optarg));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000259 else {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000260 printf(" -%c", opt);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000261 charptr = strchr(optstr, opt);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000262 if (charptr != NULL && *++charptr == ':')
263 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000264 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000265 }
266 }
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000267 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000268
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000269 if (!quiet_output) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000270 printf(" --");
271 while (optind < argc)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000272 printf(" %s", normalize(argv[optind++]));
Denis Vlasenko4daad902007-09-27 10:20:47 +0000273 bb_putchar('\n');
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000274 }
275 return exit_code;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000276}
277
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200278#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000279/*
280 * Register several long options. options is a string of long options,
281 * separated by commas or whitespace.
282 * This nukes options!
283 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000284static struct option *add_long_options(struct option *long_options, char *options)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000285{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000286 int long_nr = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000287 int arg_opt, tlen;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000288 char *tokptr = strtok(options, ", \t\n");
289
290 if (long_options)
291 while (long_options[long_nr].name)
292 long_nr++;
293
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000294 while (tokptr) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000295 arg_opt = no_argument;
296 tlen = strlen(tokptr);
297 if (tlen) {
298 tlen--;
299 if (tokptr[tlen] == ':') {
300 arg_opt = required_argument;
301 if (tlen && tokptr[tlen-1] == ':') {
302 tlen--;
303 arg_opt = optional_argument;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000304 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000305 tokptr[tlen] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000306 if (tlen == 0)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000307 bb_error_msg_and_die("empty long option specified");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000308 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000309 long_options = xrealloc_vector(long_options, 4, long_nr);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000310 long_options[long_nr].has_arg = arg_opt;
Denis Vlasenko27842282008-08-04 13:20:36 +0000311 /*long_options[long_nr].flag = NULL; - xrealloc_vector did it */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000312 long_options[long_nr].val = LONG_OPT;
313 long_options[long_nr].name = xstrdup(tokptr);
314 long_nr++;
Denis Vlasenko27842282008-08-04 13:20:36 +0000315 /*memset(&long_options[long_nr], 0, sizeof(long_options[0])); - xrealloc_vector did it */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000316 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000317 tokptr = strtok(NULL, ", \t\n");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000318 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000319 return long_options;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000320}
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000321#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000322
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000323static void set_shell(const char *new_shell)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000324{
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000325 if (!strcmp(new_shell, "bash") || !strcmp(new_shell, "sh"))
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000326 return;
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000327 if (!strcmp(new_shell, "tcsh") || !strcmp(new_shell, "csh"))
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000328 option_mask32 |= SHELL_IS_TCSH;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000329 else
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000330 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000331}
332
333
334/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000335 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000336 * 1) getopt(3) returned an error.
337 * 2) A problem with parameter parsing for getopt(1).
338 * 3) Internal error, out of memory
339 * 4) Returned for -T
340 */
341
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200342#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000343static const char getopt_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000344 "options\0" Required_argument "o"
345 "longoptions\0" Required_argument "l"
346 "quiet\0" No_argument "q"
347 "quiet-output\0" No_argument "Q"
348 "shell\0" Required_argument "s"
349 "test\0" No_argument "T"
350 "unquoted\0" No_argument "u"
351 "alternative\0" No_argument "a"
352 "name\0" Required_argument "n"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000353 ;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000354#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000355
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000356int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
357int getopt_main(int argc, char **argv)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000358{
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100359 int n;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000360 char *optstr = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000361 char *name = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000362 unsigned opt;
363 const char *compatible;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000364 char *s_arg;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200365#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000366 struct option *long_options = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000367 llist_t *l_arg = NULL;
368#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000369
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000370 compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000371
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100372 if (!argv[1]) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000373 if (compatible) {
374 /* For some reason, the original getopt gave no error
375 when there were no arguments. */
376 printf(" --\n");
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000377 return 0;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000378 }
379 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000380 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000381
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000382 if (argv[1][0] != '-' || compatible) {
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100383 char *s = argv[1];
Eric Andersena1f16bb2000-08-21 22:02:34 +0000384
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000385 option_mask32 |= OPT_u; /* quoting off */
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100386 s = xstrdup(s + strspn(s, "-+"));
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000387 argv[1] = argv[0];
388 return generate_output(argv+1, argc-1, s, long_options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000389 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000390
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200391#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000392 opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000393#else
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000394 applet_long_options = getopt_longopts;
Denis Vlasenko09196572007-07-21 13:27:44 +0000395 opt_complementary = "l::";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000396 opt = getopt32(argv, "+o:n:qQs:Tual:",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000397 &optstr, &name, &s_arg, &l_arg);
398 /* Effectuate the read options for the applet itself */
399 while (l_arg) {
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000400 long_options = add_long_options(long_options, llist_pop(&l_arg));
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000401 }
402#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000403
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000404 if (opt & OPT_s) {
405 set_shell(s_arg);
406 }
407
408 if (opt & OPT_T) {
409 return 4;
410 }
411
412 /* All options controlling the applet have now been parsed */
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100413 n = optind - 1;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000414 if (!optstr) {
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100415 optstr = argv[++n];
416 if (!optstr)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000417 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000418 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000419
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100420 argv[n] = name ? name : argv[0];
421 return generate_output(argv + n, argc - n, optstr, long_options);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000422}