blob: 58df1c823c0217e45136dfe15a187712c280ccc6 [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
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020035//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(
maxwen27116ba2015-08-14 21:41:28 +020038//usage: IF_FEATURE_GETOPT_LONG(
39//usage: " -a,--alternative Allow long options starting with single -\n"
40//usage: " -l,--longoptions=LOPT[,...] Long options to recognize\n"
41//usage: )
42//usage: " -n,--name=PROGNAME The name under which errors are reported"
43//usage: "\n -o,--options=OPTSTRING Short options to recognize"
44//usage: "\n -q,--quiet No error messages on unrecognized options"
Pere Orga5bc8c002011-04-11 03:29:49 +020045//usage: "\n -Q,--quiet-output No normal output"
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020046//usage: "\n -s,--shell=SHELL Set shell quoting conventions"
maxwen27116ba2015-08-14 21:41:28 +020047//usage: "\n -T,--test Version test (exits with 4)"
48//usage: "\n -u,--unquoted Don't quote output"
Pere Orga5bc8c002011-04-11 03:29:49 +020049//usage: )
50//usage: IF_NOT_LONG_OPTS(
maxwen27116ba2015-08-14 21:41:28 +020051//usage: IF_FEATURE_GETOPT_LONG(
52//usage: " -a Allow long options starting with single -\n"
53//usage: " -l LOPT[,...] Long options to recognize\n"
54//usage: )
55//usage: " -n PROGNAME The name under which errors are reported"
56//usage: "\n -o OPTSTRING Short options to recognize"
57//usage: "\n -q No error messages on unrecognized options"
Pere Orga5bc8c002011-04-11 03:29:49 +020058//usage: "\n -Q No normal output"
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020059//usage: "\n -s SHELL Set shell quoting conventions"
maxwen27116ba2015-08-14 21:41:28 +020060//usage: "\n -T Version test (exits with 4)"
61//usage: "\n -u Don't quote output"
Pere Orga5bc8c002011-04-11 03:29:49 +020062//usage: )
maxwen27116ba2015-08-14 21:41:28 +020063//usage: IF_FEATURE_GETOPT_LONG( /* example uses -l, needs FEATURE_GETOPT_LONG */
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020064//usage: "\n"
65//usage: "\nExample:"
66//usage: "\n"
67//usage: "\nO=`getopt -l bb: -- ab:c:: \"$@\"` || exit 1"
68//usage: "\neval set -- \"$O\""
69//usage: "\nwhile true; do"
70//usage: "\n case \"$1\" in"
71//usage: "\n -a) echo A; shift;;"
72//usage: "\n -b|--bb) echo \"B:'$2'\"; shift 2;;"
73//usage: "\n -c) case \"$2\" in"
74//usage: "\n \"\") echo C; shift 2;;"
75//usage: "\n *) echo \"C:'$2'\"; shift 2;;"
76//usage: "\n esac;;"
77//usage: "\n --) shift; break;;"
78//usage: "\n *) echo Error; exit 1;;"
79//usage: "\n esac"
80//usage: "\ndone"
maxwen27116ba2015-08-14 21:41:28 +020081//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020082//usage:
83//usage:#define getopt_example_usage
84//usage: "$ cat getopt.test\n"
85//usage: "#!/bin/sh\n"
86//usage: "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n"
87//usage: " -n 'example.busybox' -- \"$@\"`\n"
88//usage: "if [ $? != 0 ]; then exit 1; fi\n"
89//usage: "eval set -- \"$GETOPT\"\n"
90//usage: "while true; do\n"
91//usage: " case $1 in\n"
92//usage: " -a|--a-long) echo \"Option a\"; shift;;\n"
93//usage: " -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n"
94//usage: " -c|--c-long)\n"
95//usage: " case \"$2\" in\n"
96//usage: " \"\") echo \"Option c, no argument\"; shift 2;;\n"
97//usage: " *) echo \"Option c, argument '$2'\"; shift 2;;\n"
98//usage: " esac;;\n"
99//usage: " --) shift; break;;\n"
100//usage: " *) echo \"Internal error!\"; exit 1;;\n"
101//usage: " esac\n"
102//usage: "done\n"
103
Denys Vlasenko488dd702011-05-29 04:24:13 +0200104#if ENABLE_FEATURE_GETOPT_LONG
105# include <getopt.h>
106#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000107#include "libbb.h"
Eric Andersena1f16bb2000-08-21 22:02:34 +0000108
109/* NON_OPT is the code that is returned when a non-option is found in '+'
110 mode */
Rob Landleybc68cd12006-03-10 19:22:06 +0000111enum {
112 NON_OPT = 1,
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200113#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000114/* LONG_OPT is the code that is returned when a long option is found. */
Rob Landleybc68cd12006-03-10 19:22:06 +0000115 LONG_OPT = 2
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000116#endif
Rob Landleybc68cd12006-03-10 19:22:06 +0000117};
Eric Andersena1f16bb2000-08-21 22:02:34 +0000118
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000119/* For finding activated option flags. Must match getopt32 call! */
120enum {
121 OPT_o = 0x1, // -o
122 OPT_n = 0x2, // -n
123 OPT_q = 0x4, // -q
124 OPT_Q = 0x8, // -Q
125 OPT_s = 0x10, // -s
126 OPT_T = 0x20, // -T
127 OPT_u = 0x40, // -u
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200128#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000129 OPT_a = 0x80, // -a
130 OPT_l = 0x100, // -l
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000131#endif
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000132 SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */
133};
Eric Andersena1f16bb2000-08-21 22:02:34 +0000134
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000135/* 0 is getopt_long, 1 is getopt_long_only */
136#define alternative (option_mask32 & OPT_a)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000137
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000138#define quiet_errors (option_mask32 & OPT_q)
139#define quiet_output (option_mask32 & OPT_Q)
140#define quote (!(option_mask32 & OPT_u))
141#define shell_TCSH (option_mask32 & SHELL_IS_TCSH)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000142
143/*
144 * This function 'normalizes' a single argument: it puts single quotes around
145 * it and escapes other special characters. If quote is false, it just
146 * returns its argument.
147 * Bash only needs special treatment for single quotes; tcsh also recognizes
148 * exclamation marks within single quotes, and nukes whitespace.
149 * This function returns a pointer to a buffer that is overwritten by
150 * each call.
151 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000152static const char *normalize(const char *arg)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000153{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000154 char *bufptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000155#if ENABLE_FEATURE_CLEAN_UP
156 static char *BUFFER = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000157 free(BUFFER);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000158#else
159 char *BUFFER;
160#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000161
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000162 if (!quote) { /* Just copy arg */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000163 BUFFER = xstrdup(arg);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000164 return BUFFER;
165 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000166
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000167 /* Each character in arg may take up to four characters in the result:
168 For a quote we need a closing quote, a backslash, a quote and an
169 opening quote! We need also the global opening and closing quote,
170 and one extra character for '\0'. */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000171 BUFFER = xmalloc(strlen(arg)*4 + 3);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000172
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000173 bufptr = BUFFER;
174 *bufptr ++= '\'';
Eric Andersena1f16bb2000-08-21 22:02:34 +0000175
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000176 while (*arg) {
177 if (*arg == '\'') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000178 /* Quote: replace it with: '\'' */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000179 *bufptr ++= '\'';
180 *bufptr ++= '\\';
181 *bufptr ++= '\'';
182 *bufptr ++= '\'';
183 } else if (shell_TCSH && *arg == '!') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000184 /* Exclamation mark: replace it with: \! */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000185 *bufptr ++= '\'';
186 *bufptr ++= '\\';
187 *bufptr ++= '!';
188 *bufptr ++= '\'';
189 } else if (shell_TCSH && *arg == '\n') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000190 /* Newline: replace it with: \n */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000191 *bufptr ++= '\\';
192 *bufptr ++= 'n';
193 } else if (shell_TCSH && isspace(*arg)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000194 /* Non-newline whitespace: replace it with \<ws> */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000195 *bufptr ++= '\'';
196 *bufptr ++= '\\';
197 *bufptr ++= *arg;
198 *bufptr ++= '\'';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000199 } else
200 /* Just copy */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000201 *bufptr ++= *arg;
202 arg++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000203 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000204 *bufptr ++= '\'';
205 *bufptr ++= '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000206 return BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000207}
208
209/*
210 * Generate the output. argv[0] is the program name (used for reporting errors).
211 * argv[1..] contains the options to be parsed. argc must be the number of
212 * elements in argv (ie. 1 if there are no options, only the program name),
213 * optstr must contain the short options, and longopts the long options.
214 * Other settings are found in global variables.
215 */
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200216#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000217#define generate_output(argv,argc,optstr,longopts) \
218 generate_output(argv,argc,optstr)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000219#endif
220static int generate_output(char **argv, int argc, const char *optstr, const struct option *longopts)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000221{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000222 int exit_code = 0; /* We assume everything will be OK */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000223
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000224 if (quiet_errors) /* No error reporting from getopt(3) */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000225 opterr = 0;
Denis Vlasenko97728162008-01-28 22:57:10 +0000226
Denis Vlasenko7effd7a2008-10-21 12:36:43 +0000227 /* We used it already in main() in getopt32(),
228 * we *must* reset getopt(3): */
229#ifdef __GLIBC__
230 optind = 0;
231#else /* BSD style */
232 optind = 1;
233 /* optreset = 1; */
234#endif
235
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000236 while (1) {
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200237#if ENABLE_FEATURE_GETOPT_LONG
maxwen27116ba2015-08-14 21:41:28 +0200238 int longindex;
239 int opt = alternative
240 ? getopt_long_only(argc, argv, optstr, longopts, &longindex)
241 : getopt_long(argc, argv, optstr, longopts, &longindex)
242 ;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000243#else
maxwen27116ba2015-08-14 21:41:28 +0200244 int opt = getopt(argc, argv, optstr);
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000245#endif
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000246 if (opt == -1)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000247 break;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000248 if (opt == '?' || opt == ':' )
249 exit_code = 1;
250 else if (!quiet_output) {
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200251#if ENABLE_FEATURE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000252 if (opt == LONG_OPT) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000253 printf(" --%s", longopts[longindex].name);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000254 if (longopts[longindex].has_arg)
255 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000256 normalize(optarg ? optarg : ""));
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000257 } else
258#endif
259 if (opt == NON_OPT)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000260 printf(" %s", normalize(optarg));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000261 else {
maxwen27116ba2015-08-14 21:41:28 +0200262 const char *charptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000263 printf(" -%c", opt);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000264 charptr = strchr(optstr, opt);
maxwen27116ba2015-08-14 21:41:28 +0200265 if (charptr && *++charptr == ':')
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000266 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000267 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000268 }
269 }
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000270 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000271
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000272 if (!quiet_output) {
maxwen27116ba2015-08-14 21:41:28 +0200273 unsigned idx;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000274 printf(" --");
maxwen27116ba2015-08-14 21:41:28 +0200275 idx = optind;
276 while (argv[idx])
277 printf(" %s", normalize(argv[idx++]));
Denis Vlasenko4daad902007-09-27 10:20:47 +0000278 bb_putchar('\n');
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000279 }
280 return exit_code;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000281}
282
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200283#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000284/*
285 * Register several long options. options is a string of long options,
286 * separated by commas or whitespace.
287 * This nukes options!
288 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000289static struct option *add_long_options(struct option *long_options, char *options)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000290{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000291 int long_nr = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000292 int arg_opt, tlen;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000293 char *tokptr = strtok(options, ", \t\n");
294
295 if (long_options)
296 while (long_options[long_nr].name)
297 long_nr++;
298
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000299 while (tokptr) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000300 arg_opt = no_argument;
301 tlen = strlen(tokptr);
302 if (tlen) {
303 tlen--;
304 if (tokptr[tlen] == ':') {
305 arg_opt = required_argument;
306 if (tlen && tokptr[tlen-1] == ':') {
307 tlen--;
308 arg_opt = optional_argument;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000309 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000310 tokptr[tlen] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000311 if (tlen == 0)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000312 bb_error_msg_and_die("empty long option specified");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000313 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000314 long_options = xrealloc_vector(long_options, 4, long_nr);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000315 long_options[long_nr].has_arg = arg_opt;
Denis Vlasenko27842282008-08-04 13:20:36 +0000316 /*long_options[long_nr].flag = NULL; - xrealloc_vector did it */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000317 long_options[long_nr].val = LONG_OPT;
318 long_options[long_nr].name = xstrdup(tokptr);
319 long_nr++;
Denis Vlasenko27842282008-08-04 13:20:36 +0000320 /*memset(&long_options[long_nr], 0, sizeof(long_options[0])); - xrealloc_vector did it */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000321 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000322 tokptr = strtok(NULL, ", \t\n");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000323 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000324 return long_options;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000325}
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000326#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000327
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000328static void set_shell(const char *new_shell)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000329{
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000330 if (!strcmp(new_shell, "bash") || !strcmp(new_shell, "sh"))
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000331 return;
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000332 if (!strcmp(new_shell, "tcsh") || !strcmp(new_shell, "csh"))
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000333 option_mask32 |= SHELL_IS_TCSH;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000334 else
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000335 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000336}
337
338
339/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000340 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000341 * 1) getopt(3) returned an error.
342 * 2) A problem with parameter parsing for getopt(1).
343 * 3) Internal error, out of memory
344 * 4) Returned for -T
345 */
346
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200347#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000348static const char getopt_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000349 "options\0" Required_argument "o"
350 "longoptions\0" Required_argument "l"
351 "quiet\0" No_argument "q"
352 "quiet-output\0" No_argument "Q"
353 "shell\0" Required_argument "s"
354 "test\0" No_argument "T"
355 "unquoted\0" No_argument "u"
356 "alternative\0" No_argument "a"
357 "name\0" Required_argument "n"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000358 ;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000359#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000360
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000361int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
362int getopt_main(int argc, char **argv)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000363{
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200364 int n;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000365 char *optstr = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000366 char *name = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000367 unsigned opt;
368 const char *compatible;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000369 char *s_arg;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200370#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000371 struct option *long_options = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000372 llist_t *l_arg = NULL;
373#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000374
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000375 compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000376
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200377 if (!argv[1]) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000378 if (compatible) {
379 /* For some reason, the original getopt gave no error
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100380 * when there were no arguments. */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000381 printf(" --\n");
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000382 return 0;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000383 }
384 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000385 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000386
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000387 if (argv[1][0] != '-' || compatible) {
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200388 char *s = argv[1];
Eric Andersena1f16bb2000-08-21 22:02:34 +0000389
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000390 option_mask32 |= OPT_u; /* quoting off */
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200391 s = xstrdup(s + strspn(s, "-+"));
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000392 argv[1] = argv[0];
393 return generate_output(argv+1, argc-1, s, long_options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000394 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000395
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200396#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000397 opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000398#else
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000399 applet_long_options = getopt_longopts;
Denis Vlasenko09196572007-07-21 13:27:44 +0000400 opt_complementary = "l::";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000401 opt = getopt32(argv, "+o:n:qQs:Tual:",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000402 &optstr, &name, &s_arg, &l_arg);
403 /* Effectuate the read options for the applet itself */
404 while (l_arg) {
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000405 long_options = add_long_options(long_options, llist_pop(&l_arg));
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000406 }
407#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000408
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000409 if (opt & OPT_s) {
410 set_shell(s_arg);
411 }
412
413 if (opt & OPT_T) {
414 return 4;
415 }
416
417 /* All options controlling the applet have now been parsed */
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200418 n = optind - 1;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000419 if (!optstr) {
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200420 optstr = argv[++n];
421 if (!optstr)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000422 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000423 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000424
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200425 argv[n] = name ? name : argv[0];
426 return generate_output(argv + n, argc - n, optstr, long_options);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000427}