blob: 4148586d327c0faedc37d418f1eec0fd792a35df [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)
Denys Vlasenkoebe6d9d2017-10-05 14:40:24 +02004 * Copyright (c) 1997, 1998, 1999, 2000 Frodo Looijaard <frodol@dds.nl>
Eric Andersena1f16bb2000-08-21 22:02:34 +00005 *
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 */
Eric Andersena1f16bb2000-08-21 22:02:34 +00008/*
9 * Version 1.0-b4: Tue Sep 23 1997. First public release.
10 * Version 1.0: Wed Nov 19 1997.
11 * Bumped up the version number to 1.0
12 * Fixed minor typo (CSH instead of TCSH)
13 * Version 1.0.1: Tue Jun 3 1998
14 * Fixed sizeof instead of strlen bug
15 * Bumped up the version number to 1.0.1
16 * Version 1.0.2: Thu Jun 11 1998 (not present)
17 * Fixed gcc-2.8.1 warnings
18 * Fixed --version/-V option (not present)
19 * Version 1.0.5: Tue Jun 22 1999
20 * Make -u option work (not present)
21 * Version 1.0.6: Tue Jun 27 2000
22 * No important changes
23 * Version 1.1.0: Tue Jun 30 2000
Denis Vlasenkob44c7902008-03-17 09:29:43 +000024 * Added NLS support (partly written by Arkadiusz Mickiewicz
Eric Andersena1f16bb2000-08-21 22:02:34 +000025 * <misiek@misiek.eu.org>)
26 * Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org>
Denys Vlasenko488dd702011-05-29 04:24:13 +020027 * Removed --version/-V and --help/-h
Eric Andersenaff114c2004-04-14 17:51:38 +000028 * Removed parse_error(), using bb_error_msg() from Busybox instead
Eric Andersena1f16bb2000-08-21 22:02:34 +000029 * Replaced our_malloc with xmalloc and our_realloc with xrealloc
Eric Andersena1f16bb2000-08-21 22:02:34 +000030 */
Denys Vlasenkodd898c92016-11-23 11:46:32 +010031//config:config GETOPT
Denys Vlasenkob097a842018-12-28 03:20:17 +010032//config: bool "getopt (5.8 kb)"
Denys Vlasenkodd898c92016-11-23 11:46:32 +010033//config: default y
34//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020035//config: The getopt utility is used to break up (parse) options in command
36//config: lines to make it easy to write complex shell scripts that also check
37//config: for legal (and illegal) options. If you want to write horribly
38//config: complex shell scripts, or use some horribly complex shell script
39//config: written by others, this utility may be for you. Most people will
40//config: wisely leave this disabled.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010041//config:
42//config:config FEATURE_GETOPT_LONG
Denys Vlasenko5b3cbe32017-07-27 14:45:25 +020043//config: bool "Support -l LONGOPTs"
Denys Vlasenko036585a2017-08-08 16:38:18 +020044//config: default y
45//config: depends on GETOPT && LONG_OPTS
Denys Vlasenkodd898c92016-11-23 11:46:32 +010046//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020047//config: Enable support for long options (option -l).
Denys Vlasenkodd898c92016-11-23 11:46:32 +010048
Denys Vlasenko72d725d2017-08-03 19:30:21 +020049//applet:IF_GETOPT(APPLET_NOEXEC(getopt, getopt, BB_DIR_BIN, BB_SUID_DROP, getopt))
Denys Vlasenkodd898c92016-11-23 11:46:32 +010050
51//kbuild:lib-$(CONFIG_GETOPT) += getopt.o
Eric Andersena1f16bb2000-08-21 22:02:34 +000052
Pere Orga5bc8c002011-04-11 03:29:49 +020053//usage:#define getopt_trivial_usage
Denys Vlasenko594db1e2012-02-09 18:17:29 +010054//usage: "[OPTIONS] [--] OPTSTRING PARAMS"
Pere Orga5bc8c002011-04-11 03:29:49 +020055//usage:#define getopt_full_usage "\n\n"
Denys Vlasenkoee3bc702013-01-24 11:36:00 +010056//usage: IF_FEATURE_GETOPT_LONG(
57//usage: " -a Allow long options starting with single -\n"
58//usage: " -l LOPT[,...] Long options to recognize\n"
59//usage: )
60//usage: " -n PROGNAME The name under which errors are reported"
61//usage: "\n -o OPTSTRING Short options to recognize"
62//usage: "\n -q No error messages on unrecognized options"
Pere Orga5bc8c002011-04-11 03:29:49 +020063//usage: "\n -Q No normal output"
Denys Vlasenko594db1e2012-02-09 18:17:29 +010064//usage: "\n -s SHELL Set shell quoting conventions"
Denys Vlasenkoee3bc702013-01-24 11:36:00 +010065//usage: "\n -T Version test (exits with 4)"
66//usage: "\n -u Don't quote output"
Denys Vlasenkoee3bc702013-01-24 11:36:00 +010067//usage: IF_FEATURE_GETOPT_LONG( /* example uses -l, needs FEATURE_GETOPT_LONG */
Denys Vlasenko594db1e2012-02-09 18:17:29 +010068//usage: "\n"
69//usage: "\nExample:"
70//usage: "\n"
Denys Vlasenko817c2302012-02-09 18:39:16 +010071//usage: "\nO=`getopt -l bb: -- ab:c:: \"$@\"` || exit 1"
Denys Vlasenko594db1e2012-02-09 18:17:29 +010072//usage: "\neval set -- \"$O\""
73//usage: "\nwhile true; do"
74//usage: "\n case \"$1\" in"
75//usage: "\n -a) echo A; shift;;"
76//usage: "\n -b|--bb) echo \"B:'$2'\"; shift 2;;"
77//usage: "\n -c) case \"$2\" in"
78//usage: "\n \"\") echo C; shift 2;;"
79//usage: "\n *) echo \"C:'$2'\"; shift 2;;"
80//usage: "\n esac;;"
81//usage: "\n --) shift; break;;"
82//usage: "\n *) echo Error; exit 1;;"
83//usage: "\n esac"
84//usage: "\ndone"
Denys Vlasenkoee3bc702013-01-24 11:36:00 +010085//usage: )
Pere Orga5bc8c002011-04-11 03:29:49 +020086//usage:
87//usage:#define getopt_example_usage
88//usage: "$ cat getopt.test\n"
89//usage: "#!/bin/sh\n"
90//usage: "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n"
91//usage: " -n 'example.busybox' -- \"$@\"`\n"
92//usage: "if [ $? != 0 ]; then exit 1; fi\n"
93//usage: "eval set -- \"$GETOPT\"\n"
94//usage: "while true; do\n"
95//usage: " case $1 in\n"
96//usage: " -a|--a-long) echo \"Option a\"; shift;;\n"
97//usage: " -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n"
98//usage: " -c|--c-long)\n"
99//usage: " case \"$2\" in\n"
100//usage: " \"\") echo \"Option c, no argument\"; shift 2;;\n"
101//usage: " *) echo \"Option c, argument '$2'\"; shift 2;;\n"
102//usage: " esac;;\n"
103//usage: " --) shift; break;;\n"
104//usage: " *) echo \"Internal error!\"; exit 1;;\n"
105//usage: " esac\n"
106//usage: "done\n"
107
Denys Vlasenko488dd702011-05-29 04:24:13 +0200108#if ENABLE_FEATURE_GETOPT_LONG
109# include <getopt.h>
110#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000111#include "libbb.h"
Eric Andersena1f16bb2000-08-21 22:02:34 +0000112
113/* NON_OPT is the code that is returned when a non-option is found in '+'
114 mode */
Rob Landleybc68cd12006-03-10 19:22:06 +0000115enum {
116 NON_OPT = 1,
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200117#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000118/* LONG_OPT is the code that is returned when a long option is found. */
Rob Landleybc68cd12006-03-10 19:22:06 +0000119 LONG_OPT = 2
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000120#endif
Rob Landleybc68cd12006-03-10 19:22:06 +0000121};
Eric Andersena1f16bb2000-08-21 22:02:34 +0000122
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000123/* For finding activated option flags. Must match getopt32 call! */
124enum {
125 OPT_o = 0x1, // -o
126 OPT_n = 0x2, // -n
127 OPT_q = 0x4, // -q
128 OPT_Q = 0x8, // -Q
129 OPT_s = 0x10, // -s
130 OPT_T = 0x20, // -T
131 OPT_u = 0x40, // -u
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200132#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000133 OPT_a = 0x80, // -a
134 OPT_l = 0x100, // -l
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000135#endif
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000136 SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */
137};
Eric Andersena1f16bb2000-08-21 22:02:34 +0000138
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000139/* 0 is getopt_long, 1 is getopt_long_only */
140#define alternative (option_mask32 & OPT_a)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000141
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000142#define quiet_errors (option_mask32 & OPT_q)
143#define quiet_output (option_mask32 & OPT_Q)
144#define quote (!(option_mask32 & OPT_u))
145#define shell_TCSH (option_mask32 & SHELL_IS_TCSH)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000146
147/*
148 * This function 'normalizes' a single argument: it puts single quotes around
149 * it and escapes other special characters. If quote is false, it just
150 * returns its argument.
151 * Bash only needs special treatment for single quotes; tcsh also recognizes
152 * exclamation marks within single quotes, and nukes whitespace.
153 * This function returns a pointer to a buffer that is overwritten by
154 * each call.
155 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000156static const char *normalize(const char *arg)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000157{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000158 char *bufptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000159 char *BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000160
Ron Yorston83e20cb2021-09-12 12:26:03 +0100161 if (!quote) { /* Just return arg */
162 return arg;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000163 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000164
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000165 /* Each character in arg may take up to four characters in the result:
166 For a quote we need a closing quote, a backslash, a quote and an
167 opening quote! We need also the global opening and closing quote,
168 and one extra character for '\0'. */
Ron Yorston83e20cb2021-09-12 12:26:03 +0100169 BUFFER = auto_string(xmalloc(strlen(arg)*4 + 3));
Eric Andersena1f16bb2000-08-21 22:02:34 +0000170
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000171 bufptr = BUFFER;
172 *bufptr ++= '\'';
Eric Andersena1f16bb2000-08-21 22:02:34 +0000173
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000174 while (*arg) {
Ron Yorston83e20cb2021-09-12 12:26:03 +0100175 if (shell_TCSH && *arg == '\n') {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000176 /* Newline: replace it with: \n */
Ron Yorston83e20cb2021-09-12 12:26:03 +0100177 *bufptr++ = '\\';
178 *bufptr++ = 'n';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000179 } else
Ron Yorston83e20cb2021-09-12 12:26:03 +0100180 if ((shell_TCSH && (*arg == '!' || isspace(*arg)))
181 || *arg == '\''
182 ) {
183 /* Quote exclamation marks, non-NL whitespace and quotes */
184 *bufptr++ = '\'';
185 *bufptr++ = '\\';
186 *bufptr++ = *arg;
187 *bufptr++ = '\'';
188 } else {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000189 /* Just copy */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000190 *bufptr ++= *arg;
Ron Yorston83e20cb2021-09-12 12:26:03 +0100191 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000192 arg++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000193 }
Ron Yorston83e20cb2021-09-12 12:26:03 +0100194 *bufptr++ = '\'';
195 *bufptr++ = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000196 return BUFFER;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000197}
198
199/*
200 * Generate the output. argv[0] is the program name (used for reporting errors).
201 * argv[1..] contains the options to be parsed. argc must be the number of
202 * elements in argv (ie. 1 if there are no options, only the program name),
203 * optstr must contain the short options, and longopts the long options.
204 * Other settings are found in global variables.
205 */
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200206#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000207#define generate_output(argv,argc,optstr,longopts) \
208 generate_output(argv,argc,optstr)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000209#endif
210static int generate_output(char **argv, int argc, const char *optstr, const struct option *longopts)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000211{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000212 int exit_code = 0; /* We assume everything will be OK */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000213
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000214 if (quiet_errors) /* No error reporting from getopt(3) */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000215 opterr = 0;
Denis Vlasenko97728162008-01-28 22:57:10 +0000216
Denis Vlasenko7effd7a2008-10-21 12:36:43 +0000217 /* We used it already in main() in getopt32(),
218 * we *must* reset getopt(3): */
Kaarle Ritvanen835ad3a2017-04-12 00:58:46 +0300219 GETOPT_RESET();
Denis Vlasenko7effd7a2008-10-21 12:36:43 +0000220
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000221 while (1) {
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200222#if ENABLE_FEATURE_GETOPT_LONG
Denys Vlasenkoee3bc702013-01-24 11:36:00 +0100223 int longindex;
224 int opt = alternative
225 ? getopt_long_only(argc, argv, optstr, longopts, &longindex)
226 : getopt_long(argc, argv, optstr, longopts, &longindex)
227 ;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000228#else
Denys Vlasenkoee3bc702013-01-24 11:36:00 +0100229 int opt = getopt(argc, argv, optstr);
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000230#endif
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000231 if (opt == -1)
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000232 break;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000233 if (opt == '?' || opt == ':' )
234 exit_code = 1;
235 else if (!quiet_output) {
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200236#if ENABLE_FEATURE_GETOPT_LONG
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000237 if (opt == LONG_OPT) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000238 printf(" --%s", longopts[longindex].name);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000239 if (longopts[longindex].has_arg)
240 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000241 normalize(optarg ? optarg : ""));
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000242 } else
243#endif
244 if (opt == NON_OPT)
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000245 printf(" %s", normalize(optarg));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000246 else {
Denys Vlasenkoee3bc702013-01-24 11:36:00 +0100247 const char *charptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000248 printf(" -%c", opt);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000249 charptr = strchr(optstr, opt);
Denys Vlasenkoee3bc702013-01-24 11:36:00 +0100250 if (charptr && *++charptr == ':')
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000251 printf(" %s",
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000252 normalize(optarg ? optarg : ""));
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000253 }
254 }
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000255 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000256
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000257 if (!quiet_output) {
Denys Vlasenkoee3bc702013-01-24 11:36:00 +0100258 unsigned idx;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000259 printf(" --");
Denys Vlasenkoee3bc702013-01-24 11:36:00 +0100260 idx = optind;
261 while (argv[idx])
262 printf(" %s", normalize(argv[idx++]));
Denis Vlasenko4daad902007-09-27 10:20:47 +0000263 bb_putchar('\n');
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000264 }
265 return exit_code;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000266}
267
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200268#if ENABLE_FEATURE_GETOPT_LONG
Eric Andersena1f16bb2000-08-21 22:02:34 +0000269/*
270 * Register several long options. options is a string of long options,
271 * separated by commas or whitespace.
272 * This nukes options!
273 */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000274static struct option *add_long_options(struct option *long_options, char *options)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000275{
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000276 int long_nr = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000277 int arg_opt, tlen;
Denys Vlasenko24966162020-10-06 02:36:47 +0200278 char *tokptr;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000279
280 if (long_options)
281 while (long_options[long_nr].name)
282 long_nr++;
283
Denys Vlasenko24966162020-10-06 02:36:47 +0200284 tokptr = strtok_r(options, ", \t\n", &options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000285 while (tokptr) {
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000286 arg_opt = no_argument;
287 tlen = strlen(tokptr);
288 if (tlen) {
289 tlen--;
290 if (tokptr[tlen] == ':') {
291 arg_opt = required_argument;
292 if (tlen && tokptr[tlen-1] == ':') {
293 tlen--;
294 arg_opt = optional_argument;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000295 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000296 tokptr[tlen] = '\0';
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000297 if (tlen == 0)
James Byrne69374872019-07-02 11:35:03 +0200298 bb_simple_error_msg_and_die("empty long option specified");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000299 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000300 long_options = xrealloc_vector(long_options, 4, long_nr);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000301 long_options[long_nr].has_arg = arg_opt;
Denis Vlasenko27842282008-08-04 13:20:36 +0000302 /*long_options[long_nr].flag = NULL; - xrealloc_vector did it */
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000303 long_options[long_nr].val = LONG_OPT;
304 long_options[long_nr].name = xstrdup(tokptr);
305 long_nr++;
Denis Vlasenko27842282008-08-04 13:20:36 +0000306 /*memset(&long_options[long_nr], 0, sizeof(long_options[0])); - xrealloc_vector did it */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000307 }
Denys Vlasenko24966162020-10-06 02:36:47 +0200308 tokptr = strtok_r(NULL, ", \t\n", &options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000309 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000310 return long_options;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000311}
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000312#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000313
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000314static void set_shell(const char *new_shell)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000315{
Ron Yorston83e20cb2021-09-12 12:26:03 +0100316 switch (index_in_strings("bash\0sh\0tcsh\0csh\0", new_shell)) {
317 case 0:
318 case 1:
319 break;
320 case 2:
321 case 3:
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000322 option_mask32 |= SHELL_IS_TCSH;
Ron Yorston83e20cb2021-09-12 12:26:03 +0100323 break;
324 default:
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000325 bb_error_msg("unknown shell '%s', assuming bash", new_shell);
Ron Yorston83e20cb2021-09-12 12:26:03 +0100326 break;
327 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000328}
329
330
331/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000332 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000333 * 1) getopt(3) returned an error.
334 * 2) A problem with parameter parsing for getopt(1).
335 * 3) Internal error, out of memory
336 * 4) Returned for -T
337 */
338
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200339#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000340static const char getopt_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000341 "options\0" Required_argument "o"
342 "longoptions\0" Required_argument "l"
343 "quiet\0" No_argument "q"
344 "quiet-output\0" No_argument "Q"
345 "shell\0" Required_argument "s"
346 "test\0" No_argument "T"
347 "unquoted\0" No_argument "u"
348 "alternative\0" No_argument "a"
349 "name\0" Required_argument "n"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000350 ;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000351#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000352
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000353int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
354int getopt_main(int argc, char **argv)
Eric Andersena1f16bb2000-08-21 22:02:34 +0000355{
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100356 int n;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000357 char *optstr = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000358 char *name = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000359 unsigned opt;
360 const char *compatible;
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000361 char *s_arg;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200362#if ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000363 struct option *long_options = NULL;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000364 llist_t *l_arg = NULL;
365#endif
Eric Andersena1f16bb2000-08-21 22:02:34 +0000366
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000367 compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */
Eric Andersena1f16bb2000-08-21 22:02:34 +0000368
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100369 if (!argv[1]) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000370 if (compatible) {
371 /* For some reason, the original getopt gave no error
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100372 * when there were no arguments. */
Denys Vlasenkod60752f2015-10-07 22:42:45 +0200373 puts(" --");
Denis Vlasenkof47ff102006-09-22 08:42:06 +0000374 return 0;
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000375 }
James Byrne69374872019-07-02 11:35:03 +0200376 bb_simple_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000377 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000378
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000379 if (argv[1][0] != '-' || compatible) {
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100380 char *s = argv[1];
Eric Andersena1f16bb2000-08-21 22:02:34 +0000381
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000382 option_mask32 |= OPT_u; /* quoting off */
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100383 s = xstrdup(s + strspn(s, "-+"));
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000384 argv[1] = argv[0];
385 return generate_output(argv+1, argc-1, s, long_options);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000386 }
Eric Andersena1f16bb2000-08-21 22:02:34 +0000387
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200388#if !ENABLE_FEATURE_GETOPT_LONG
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000389 opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000390#else
Denys Vlasenko036585a2017-08-08 16:38:18 +0200391 opt = getopt32long(argv, "+o:n:qQs:Tual:*", getopt_longopts,
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000392 &optstr, &name, &s_arg, &l_arg);
393 /* Effectuate the read options for the applet itself */
394 while (l_arg) {
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000395 long_options = add_long_options(long_options, llist_pop(&l_arg));
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000396 }
397#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000398
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000399 if (opt & OPT_s) {
400 set_shell(s_arg);
401 }
402
403 if (opt & OPT_T) {
404 return 4;
405 }
406
407 /* All options controlling the applet have now been parsed */
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100408 n = optind - 1;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000409 if (!optstr) {
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100410 optstr = argv[++n];
411 if (!optstr)
James Byrne69374872019-07-02 11:35:03 +0200412 bb_simple_error_msg_and_die("missing optstring argument");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000413 }
Denis Vlasenko9c146a92007-04-07 10:25:04 +0000414
Denys Vlasenko594db1e2012-02-09 18:17:29 +0100415 argv[n] = name ? name : argv[0];
416 return generate_output(argv + n, argc - n, optstr, long_options);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000417}