blob: 85ff76189372dceeb47fe674160a7d4298935e11 [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
35//usage: "[OPTIONS]"
36//usage:#define getopt_full_usage "\n\n"
37//usage: "Options:"
38//usage: IF_LONG_OPTS(
39//usage: "\n -a,--alternative Allow long options starting with single -"
40//usage: "\n -l,--longoptions=longopts Long options to be recognized"
41//usage: "\n -n,--name=progname The name under which errors are reported"
42//usage: "\n -o,--options=optstring Short options to be recognized"
43//usage: "\n -q,--quiet Disable error reporting by getopt(3)"
44//usage: "\n -Q,--quiet-output No normal output"
45//usage: "\n -s,--shell=shell Set shell quoting conventions"
46//usage: "\n -T,--test Test for getopt(1) version"
47//usage: "\n -u,--unquoted Don't quote the output"
48//usage: )
49//usage: IF_NOT_LONG_OPTS(
50//usage: "\n -a Allow long options starting with single -"
51//usage: "\n -l longopts Long options to be recognized"
52//usage: "\n -n progname The name under which errors are reported"
53//usage: "\n -o optstring Short options to be recognized"
54//usage: "\n -q Disable error reporting by getopt(3)"
55//usage: "\n -Q No normal output"
56//usage: "\n -s shell Set shell quoting conventions"
57//usage: "\n -T Test for getopt(1) version"
58//usage: "\n -u Don't quote the output"
59//usage: )
60//usage:
61//usage:#define getopt_example_usage
62//usage: "$ cat getopt.test\n"
63//usage: "#!/bin/sh\n"
64//usage: "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n"
65//usage: " -n 'example.busybox' -- \"$@\"`\n"
66//usage: "if [ $? != 0 ]; then exit 1; fi\n"
67//usage: "eval set -- \"$GETOPT\"\n"
68//usage: "while true; do\n"
69//usage: " case $1 in\n"
70//usage: " -a|--a-long) echo \"Option a\"; shift;;\n"
71//usage: " -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n"
72//usage: " -c|--c-long)\n"
73//usage: " case \"$2\" in\n"
74//usage: " \"\") echo \"Option c, no argument\"; shift 2;;\n"
75//usage: " *) echo \"Option c, argument '$2'\"; shift 2;;\n"
76//usage: " esac;;\n"
77//usage: " --) shift; break;;\n"
78//usage: " *) echo \"Internal error!\"; exit 1;;\n"
79//usage: " esac\n"
80//usage: "done\n"
81
Denys Vlasenko488dd702011-05-29 04:24:13 +020082#if ENABLE_FEATURE_GETOPT_LONG
83# include <getopt.h>
84#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000085#include "libbb.h"
Eric Andersena1f16bb2000-08-21 22:02:34 +000086
87/* NON_OPT is the code that is returned when a non-option is found in '+'
88 mode */
Rob Landleybc68cd12006-03-10 19:22:06 +000089enum {
90 NON_OPT = 1,
Denys Vlasenkof3b92d32009-06-19 12:10:38 +020091#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +000092/* LONG_OPT is the code that is returned when a long option is found. */
Rob Landleybc68cd12006-03-10 19:22:06 +000093 LONG_OPT = 2
Denis Vlasenko80d14be2007-04-10 23:03:30 +000094#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000095};
Eric Andersena1f16bb2000-08-21 22:02:34 +000096
Denis Vlasenko9c146a92007-04-07 10:25:04 +000097/* For finding activated option flags. Must match getopt32 call! */
98enum {
99 OPT_o = 0x1, // -o
100 OPT_n = 0x2, // -n
101 OPT_q = 0x4, // -q
102 OPT_Q = 0x8, // -Q
103 OPT_s = 0x10, // -s
104 OPT_T = 0x20, // -T
105 OPT_u = 0x40, // -u
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200106#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000107 OPT_a = 0x80, // -a
108 OPT_l = 0x100, // -l
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000109#endif
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000110 SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */
111};
Eric Andersena1f16bb2000-08-21 22:02:34 +0000112
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000113/* 0 is getopt_long, 1 is getopt_long_only */
114#define alternative (option_mask32 & OPT_a)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000115
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000116#define quiet_errors (option_mask32 & OPT_q)
117#define quiet_output (option_mask32 & OPT_Q)
118#define quote (!(option_mask32 & OPT_u))
119#define shell_TCSH (option_mask32 & SHELL_IS_TCSH)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000120
121/*
122 * This function 'normalizes' a single argument: it puts single quotes around
123 * it and escapes other special characters. If quote is false, it just
124 * returns its argument.
125 * Bash only needs special treatment for single quotes; tcsh also recognizes
126 * exclamation marks within single quotes, and nukes whitespace.
127 * This function returns a pointer to a buffer that is overwritten by
128 * each call.
129 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000130static const char *normalize(const char *arg)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000131{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000132 char *bufptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000133#if ENABLE_FEATURE_CLEAN_UP
134 static char *BUFFER = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000135 free(BUFFER);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000136#else
137 char *BUFFER;
138#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000139
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000140 if (!quote) { /* Just copy arg */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000141 BUFFER = xstrdup(arg);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000142 return BUFFER;
143 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000144
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000145 /* Each character in arg may take up to four characters in the result:
146 For a quote we need a closing quote, a backslash, a quote and an
147 opening quote! We need also the global opening and closing quote,
148 and one extra character for '\0'. */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000149 BUFFER = xmalloc(strlen(arg)*4 + 3);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000150
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000151 bufptr = BUFFER;
152 *bufptr ++= '\'';
Eric Andersena1f16bb2000-08-21 22:02:34 +0000153
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000154 while (*arg) {
155 if (*arg == '\'') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000156 /* Quote: replace it with: '\'' */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000157 *bufptr ++= '\'';
158 *bufptr ++= '\\';
159 *bufptr ++= '\'';
160 *bufptr ++= '\'';
161 } else if (shell_TCSH && *arg == '!') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000162 /* Exclamation mark: replace it with: \! */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000163 *bufptr ++= '\'';
164 *bufptr ++= '\\';
165 *bufptr ++= '!';
166 *bufptr ++= '\'';
167 } else if (shell_TCSH && *arg == '\n') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000168 /* Newline: replace it with: \n */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000169 *bufptr ++= '\\';
170 *bufptr ++= 'n';
171 } else if (shell_TCSH && isspace(*arg)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000172 /* Non-newline whitespace: replace it with \<ws> */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000173 *bufptr ++= '\'';
174 *bufptr ++= '\\';
175 *bufptr ++= *arg;
176 *bufptr ++= '\'';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000177 } else
178 /* Just copy */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000179 *bufptr ++= *arg;
180 arg++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000181 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000182 *bufptr ++= '\'';
183 *bufptr ++= '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000184 return BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000185}
186
187/*
188 * Generate the output. argv[0] is the program name (used for reporting errors).
189 * argv[1..] contains the options to be parsed. argc must be the number of
190 * elements in argv (ie. 1 if there are no options, only the program name),
191 * optstr must contain the short options, and longopts the long options.
192 * Other settings are found in global variables.
193 */
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200194#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000195#define generate_output(argv,argc,optstr,longopts) \
196 generate_output(argv,argc,optstr)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000197#endif
198static int generate_output(char **argv, int argc, const char *optstr, const struct option *longopts)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000199{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000200 int exit_code = 0; /* We assume everything will be OK */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000201 int opt;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200202#if ENABLE_FEATURE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000203 int longindex;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000204#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000205 const char *charptr;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000206
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000207 if (quiet_errors) /* No error reporting from getopt(3) */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000208 opterr = 0;
Denis Vlasenko97728162008-01-28 22:57:10 +0000209
Denis Vlasenko7effd7a2008-10-21 12:36:43 +0000210 /* We used it already in main() in getopt32(),
211 * we *must* reset getopt(3): */
212#ifdef __GLIBC__
213 optind = 0;
214#else /* BSD style */
215 optind = 1;
216 /* optreset = 1; */
217#endif
218
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000219 while (1) {
220 opt =
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200221#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000222 alternative ?
223 getopt_long_only(argc, argv, optstr, longopts, &longindex) :
224 getopt_long(argc, argv, optstr, longopts, &longindex);
225#else
226 getopt(argc, argv, optstr);
227#endif
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000228 if (opt == -1)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000229 break;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000230 if (opt == '?' || opt == ':' )
231 exit_code = 1;
232 else if (!quiet_output) {
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200233#if ENABLE_FEATURE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000234 if (opt == LONG_OPT) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000235 printf(" --%s", longopts[longindex].name);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000236 if (longopts[longindex].has_arg)
237 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000238 normalize(optarg ? optarg : ""));
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000239 } else
240#endif
241 if (opt == NON_OPT)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000242 printf(" %s", normalize(optarg));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000243 else {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000244 printf(" -%c", opt);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000245 charptr = strchr(optstr, opt);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000246 if (charptr != NULL && *++charptr == ':')
247 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000248 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000249 }
250 }
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000251 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000252
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000253 if (!quiet_output) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000254 printf(" --");
255 while (optind < argc)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000256 printf(" %s", normalize(argv[optind++]));
Denis Vlasenko4daad902007-09-27 10:20:47 +0000257 bb_putchar('\n');
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000258 }
259 return exit_code;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000260}
261
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200262#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000263/*
264 * Register several long options. options is a string of long options,
265 * separated by commas or whitespace.
266 * This nukes options!
267 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000268static struct option *add_long_options(struct option *long_options, char *options)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000269{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000270 int long_nr = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000271 int arg_opt, tlen;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000272 char *tokptr = strtok(options, ", \t\n");
273
274 if (long_options)
275 while (long_options[long_nr].name)
276 long_nr++;
277
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000278 while (tokptr) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000279 arg_opt = no_argument;
280 tlen = strlen(tokptr);
281 if (tlen) {
282 tlen--;
283 if (tokptr[tlen] == ':') {
284 arg_opt = required_argument;
285 if (tlen && tokptr[tlen-1] == ':') {
286 tlen--;
287 arg_opt = optional_argument;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000288 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000289 tokptr[tlen] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000290 if (tlen == 0)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000291 bb_error_msg_and_die("empty long option specified");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000292 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000293 long_options = xrealloc_vector(long_options, 4, long_nr);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000294 long_options[long_nr].has_arg = arg_opt;
Denis Vlasenko27842282008-08-04 13:20:36 +0000295 /*long_options[long_nr].flag = NULL; - xrealloc_vector did it */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000296 long_options[long_nr].val = LONG_OPT;
297 long_options[long_nr].name = xstrdup(tokptr);
298 long_nr++;
Denis Vlasenko27842282008-08-04 13:20:36 +0000299 /*memset(&long_options[long_nr], 0, sizeof(long_options[0])); - xrealloc_vector did it */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000300 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000301 tokptr = strtok(NULL, ", \t\n");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000302 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000303 return long_options;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000304}
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000305#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000306
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000307static void set_shell(const char *new_shell)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000308{
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000309 if (!strcmp(new_shell, "bash") || !strcmp(new_shell, "sh"))
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000310 return;
Denis Vlasenkof5d8c902008-06-26 14:32:57 +0000311 if (!strcmp(new_shell, "tcsh") || !strcmp(new_shell, "csh"))
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000312 option_mask32 |= SHELL_IS_TCSH;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000313 else
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000314 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000315}
316
317
318/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000319 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000320 * 1) getopt(3) returned an error.
321 * 2) A problem with parameter parsing for getopt(1).
322 * 3) Internal error, out of memory
323 * 4) Returned for -T
324 */
325
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200326#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000327static const char getopt_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000328 "options\0" Required_argument "o"
329 "longoptions\0" Required_argument "l"
330 "quiet\0" No_argument "q"
331 "quiet-output\0" No_argument "Q"
332 "shell\0" Required_argument "s"
333 "test\0" No_argument "T"
334 "unquoted\0" No_argument "u"
335 "alternative\0" No_argument "a"
336 "name\0" Required_argument "n"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000337 ;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000338#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000339
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000340int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
341int getopt_main(int argc, char **argv)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000342{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000343 char *optstr = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000344 char *name = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000345 unsigned opt;
346 const char *compatible;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000347 char *s_arg;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200348#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000349 struct option *long_options = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000350 llist_t *l_arg = NULL;
351#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000352
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000353 compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000354
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000355 if (argc == 1) {
356 if (compatible) {
357 /* For some reason, the original getopt gave no error
358 when there were no arguments. */
359 printf(" --\n");
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000360 return 0;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000361 }
362 bb_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000363 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000364
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000365 if (argv[1][0] != '-' || compatible) {
Rob Landleydbaf97e2005-09-05 06:16:53 +0000366 char *s;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000367
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000368 option_mask32 |= OPT_u; /* quoting off */
369 s = xstrdup(argv[1] + strspn(argv[1], "-+"));
370 argv[1] = argv[0];
371 return generate_output(argv+1, argc-1, s, long_options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000372 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000373
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200374#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000375 opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000376#else
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000377 applet_long_options = getopt_longopts;
Denis Vlasenko09196572007-07-21 13:27:44 +0000378 opt_complementary = "l::";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000379 opt = getopt32(argv, "+o:n:qQs:Tual:",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000380 &optstr, &name, &s_arg, &l_arg);
381 /* Effectuate the read options for the applet itself */
382 while (l_arg) {
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000383 long_options = add_long_options(long_options, llist_pop(&l_arg));
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000384 }
385#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000386
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000387 if (opt & OPT_s) {
388 set_shell(s_arg);
389 }
390
391 if (opt & OPT_T) {
392 return 4;
393 }
394
395 /* All options controlling the applet have now been parsed */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000396 if (!optstr) {
397 if (optind >= argc)
398 bb_error_msg_and_die("missing optstring argument");
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000399 optstr = argv[optind++];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000400 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000401
402 argv[optind-1] = name ? name : argv[0];
403 return generate_output(argv+optind-1, argc-optind+1, optstr, long_options);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000404}