"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 2 | /* |
| 3 | * getopt.c - Enhanced implementation of BSD getopt(1) |
Denys Vlasenko | ebe6d9d | 2017-10-05 14:40:24 +0200 | [diff] [blame] | 4 | * Copyright (c) 1997, 1998, 1999, 2000 Frodo Looijaard <frodol@dds.nl> |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 5 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 7 | */ |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 8 | /* |
| 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 Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 24 | * Added NLS support (partly written by Arkadiusz Mickiewicz |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 25 | * <misiek@misiek.eu.org>) |
| 26 | * Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org> |
Denys Vlasenko | 488dd70 | 2011-05-29 04:24:13 +0200 | [diff] [blame] | 27 | * Removed --version/-V and --help/-h |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 28 | * Removed parse_error(), using bb_error_msg() from Busybox instead |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 29 | * Replaced our_malloc with xmalloc and our_realloc with xrealloc |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 30 | */ |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 31 | //config:config GETOPT |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 32 | //config: bool "getopt (5.8 kb)" |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 33 | //config: default y |
| 34 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 35 | //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 Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 41 | //config: |
| 42 | //config:config FEATURE_GETOPT_LONG |
Denys Vlasenko | 5b3cbe3 | 2017-07-27 14:45:25 +0200 | [diff] [blame] | 43 | //config: bool "Support -l LONGOPTs" |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 44 | //config: default y |
| 45 | //config: depends on GETOPT && LONG_OPTS |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 46 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 47 | //config: Enable support for long options (option -l). |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 48 | |
Denys Vlasenko | 72d725d | 2017-08-03 19:30:21 +0200 | [diff] [blame] | 49 | //applet:IF_GETOPT(APPLET_NOEXEC(getopt, getopt, BB_DIR_BIN, BB_SUID_DROP, getopt)) |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 50 | |
| 51 | //kbuild:lib-$(CONFIG_GETOPT) += getopt.o |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 52 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 53 | //usage:#define getopt_trivial_usage |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 54 | //usage: "[OPTIONS] [--] OPTSTRING PARAMS" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 55 | //usage:#define getopt_full_usage "\n\n" |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 56 | //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 Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 63 | //usage: "\n -Q No normal output" |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 64 | //usage: "\n -s SHELL Set shell quoting conventions" |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 65 | //usage: "\n -T Version test (exits with 4)" |
| 66 | //usage: "\n -u Don't quote output" |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 67 | //usage: IF_FEATURE_GETOPT_LONG( /* example uses -l, needs FEATURE_GETOPT_LONG */ |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 68 | //usage: "\n" |
| 69 | //usage: "\nExample:" |
| 70 | //usage: "\n" |
Denys Vlasenko | 817c230 | 2012-02-09 18:39:16 +0100 | [diff] [blame] | 71 | //usage: "\nO=`getopt -l bb: -- ab:c:: \"$@\"` || exit 1" |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 72 | //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 Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 85 | //usage: ) |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 86 | //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 Vlasenko | 488dd70 | 2011-05-29 04:24:13 +0200 | [diff] [blame] | 108 | #if ENABLE_FEATURE_GETOPT_LONG |
| 109 | # include <getopt.h> |
| 110 | #endif |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 111 | #include "libbb.h" |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 112 | |
| 113 | /* NON_OPT is the code that is returned when a non-option is found in '+' |
| 114 | mode */ |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 115 | enum { |
| 116 | NON_OPT = 1, |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 117 | #if ENABLE_FEATURE_GETOPT_LONG |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 118 | /* LONG_OPT is the code that is returned when a long option is found. */ |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 119 | LONG_OPT = 2 |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 120 | #endif |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 121 | }; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 122 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 123 | /* For finding activated option flags. Must match getopt32 call! */ |
| 124 | enum { |
| 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 Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 132 | #if ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 133 | OPT_a = 0x80, // -a |
| 134 | OPT_l = 0x100, // -l |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 135 | #endif |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 136 | SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */ |
| 137 | }; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 138 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 139 | /* 0 is getopt_long, 1 is getopt_long_only */ |
| 140 | #define alternative (option_mask32 & OPT_a) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 141 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 142 | #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 Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 146 | |
| 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 Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 156 | static const char *normalize(const char *arg) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 157 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 158 | char *bufptr; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 159 | #if ENABLE_FEATURE_CLEAN_UP |
| 160 | static char *BUFFER = NULL; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 161 | free(BUFFER); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 162 | #else |
| 163 | char *BUFFER; |
| 164 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 165 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 166 | if (!quote) { /* Just copy arg */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 167 | BUFFER = xstrdup(arg); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 168 | return BUFFER; |
| 169 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 170 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 171 | /* Each character in arg may take up to four characters in the result: |
| 172 | For a quote we need a closing quote, a backslash, a quote and an |
| 173 | opening quote! We need also the global opening and closing quote, |
| 174 | and one extra character for '\0'. */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 175 | BUFFER = xmalloc(strlen(arg)*4 + 3); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 176 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 177 | bufptr = BUFFER; |
| 178 | *bufptr ++= '\''; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 179 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 180 | while (*arg) { |
| 181 | if (*arg == '\'') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 182 | /* Quote: replace it with: '\'' */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 183 | *bufptr ++= '\''; |
| 184 | *bufptr ++= '\\'; |
| 185 | *bufptr ++= '\''; |
| 186 | *bufptr ++= '\''; |
| 187 | } else if (shell_TCSH && *arg == '!') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 188 | /* Exclamation mark: replace it with: \! */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 189 | *bufptr ++= '\''; |
| 190 | *bufptr ++= '\\'; |
| 191 | *bufptr ++= '!'; |
| 192 | *bufptr ++= '\''; |
| 193 | } else if (shell_TCSH && *arg == '\n') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 194 | /* Newline: replace it with: \n */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 195 | *bufptr ++= '\\'; |
| 196 | *bufptr ++= 'n'; |
| 197 | } else if (shell_TCSH && isspace(*arg)) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 198 | /* Non-newline whitespace: replace it with \<ws> */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 199 | *bufptr ++= '\''; |
| 200 | *bufptr ++= '\\'; |
| 201 | *bufptr ++= *arg; |
| 202 | *bufptr ++= '\''; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 203 | } else |
| 204 | /* Just copy */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 205 | *bufptr ++= *arg; |
| 206 | arg++; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 207 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 208 | *bufptr ++= '\''; |
| 209 | *bufptr ++= '\0'; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 210 | return BUFFER; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Generate the output. argv[0] is the program name (used for reporting errors). |
| 215 | * argv[1..] contains the options to be parsed. argc must be the number of |
| 216 | * elements in argv (ie. 1 if there are no options, only the program name), |
| 217 | * optstr must contain the short options, and longopts the long options. |
| 218 | * Other settings are found in global variables. |
| 219 | */ |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 220 | #if !ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | d1660cb | 2008-10-20 07:52:33 +0000 | [diff] [blame] | 221 | #define generate_output(argv,argc,optstr,longopts) \ |
| 222 | generate_output(argv,argc,optstr) |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 223 | #endif |
| 224 | static int generate_output(char **argv, int argc, const char *optstr, const struct option *longopts) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 225 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 226 | int exit_code = 0; /* We assume everything will be OK */ |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 227 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 228 | if (quiet_errors) /* No error reporting from getopt(3) */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 229 | opterr = 0; |
Denis Vlasenko | 9772816 | 2008-01-28 22:57:10 +0000 | [diff] [blame] | 230 | |
Denis Vlasenko | 7effd7a | 2008-10-21 12:36:43 +0000 | [diff] [blame] | 231 | /* We used it already in main() in getopt32(), |
| 232 | * we *must* reset getopt(3): */ |
Kaarle Ritvanen | 835ad3a | 2017-04-12 00:58:46 +0300 | [diff] [blame] | 233 | GETOPT_RESET(); |
Denis Vlasenko | 7effd7a | 2008-10-21 12:36:43 +0000 | [diff] [blame] | 234 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 235 | while (1) { |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 236 | #if ENABLE_FEATURE_GETOPT_LONG |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 237 | int longindex; |
| 238 | int opt = alternative |
| 239 | ? getopt_long_only(argc, argv, optstr, longopts, &longindex) |
| 240 | : getopt_long(argc, argv, optstr, longopts, &longindex) |
| 241 | ; |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 242 | #else |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 243 | int opt = getopt(argc, argv, optstr); |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 244 | #endif |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 245 | if (opt == -1) |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 246 | break; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 247 | if (opt == '?' || opt == ':' ) |
| 248 | exit_code = 1; |
| 249 | else if (!quiet_output) { |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 250 | #if ENABLE_FEATURE_GETOPT_LONG |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 251 | if (opt == LONG_OPT) { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 252 | printf(" --%s", longopts[longindex].name); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 253 | if (longopts[longindex].has_arg) |
| 254 | printf(" %s", |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 255 | normalize(optarg ? optarg : "")); |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 256 | } else |
| 257 | #endif |
| 258 | if (opt == NON_OPT) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 259 | printf(" %s", normalize(optarg)); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 260 | else { |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 261 | const char *charptr; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 262 | printf(" -%c", opt); |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 263 | charptr = strchr(optstr, opt); |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 264 | if (charptr && *++charptr == ':') |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 265 | printf(" %s", |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 266 | normalize(optarg ? optarg : "")); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 267 | } |
| 268 | } |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 269 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 270 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 271 | if (!quiet_output) { |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 272 | unsigned idx; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 273 | printf(" --"); |
Denys Vlasenko | ee3bc70 | 2013-01-24 11:36:00 +0100 | [diff] [blame] | 274 | idx = optind; |
| 275 | while (argv[idx]) |
| 276 | printf(" %s", normalize(argv[idx++])); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 277 | bb_putchar('\n'); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 278 | } |
| 279 | return exit_code; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 282 | #if ENABLE_FEATURE_GETOPT_LONG |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 283 | /* |
| 284 | * Register several long options. options is a string of long options, |
| 285 | * separated by commas or whitespace. |
| 286 | * This nukes options! |
| 287 | */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 288 | static struct option *add_long_options(struct option *long_options, char *options) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 289 | { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 290 | int long_nr = 0; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 291 | int arg_opt, tlen; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 292 | char *tokptr = strtok(options, ", \t\n"); |
| 293 | |
| 294 | if (long_options) |
| 295 | while (long_options[long_nr].name) |
| 296 | long_nr++; |
| 297 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 298 | while (tokptr) { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 299 | arg_opt = no_argument; |
| 300 | tlen = strlen(tokptr); |
| 301 | if (tlen) { |
| 302 | tlen--; |
| 303 | if (tokptr[tlen] == ':') { |
| 304 | arg_opt = required_argument; |
| 305 | if (tlen && tokptr[tlen-1] == ':') { |
| 306 | tlen--; |
| 307 | arg_opt = optional_argument; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 308 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 309 | tokptr[tlen] = '\0'; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 310 | if (tlen == 0) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 311 | bb_simple_error_msg_and_die("empty long option specified"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 312 | } |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 313 | long_options = xrealloc_vector(long_options, 4, long_nr); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 314 | long_options[long_nr].has_arg = arg_opt; |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 315 | /*long_options[long_nr].flag = NULL; - xrealloc_vector did it */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 316 | long_options[long_nr].val = LONG_OPT; |
| 317 | long_options[long_nr].name = xstrdup(tokptr); |
| 318 | long_nr++; |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 319 | /*memset(&long_options[long_nr], 0, sizeof(long_options[0])); - xrealloc_vector did it */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 320 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 321 | tokptr = strtok(NULL, ", \t\n"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 322 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 323 | return long_options; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 324 | } |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 325 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 326 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 327 | static void set_shell(const char *new_shell) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 328 | { |
Denys Vlasenko | 1d3a04a | 2016-11-28 01:22:57 +0100 | [diff] [blame] | 329 | if (strcmp(new_shell, "bash") == 0 || strcmp(new_shell, "sh") == 0) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 330 | return; |
Denys Vlasenko | 1d3a04a | 2016-11-28 01:22:57 +0100 | [diff] [blame] | 331 | if (strcmp(new_shell, "tcsh") == 0 || strcmp(new_shell, "csh") == 0) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 332 | option_mask32 |= SHELL_IS_TCSH; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 333 | else |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 334 | bb_error_msg("unknown shell '%s', assuming bash", new_shell); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | |
| 338 | /* Exit codes: |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 339 | * 0) No errors, successful operation. |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 340 | * 1) getopt(3) returned an error. |
| 341 | * 2) A problem with parameter parsing for getopt(1). |
| 342 | * 3) Internal error, out of memory |
| 343 | * 4) Returned for -T |
| 344 | */ |
| 345 | |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 346 | #if ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 347 | static const char getopt_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 348 | "options\0" Required_argument "o" |
| 349 | "longoptions\0" Required_argument "l" |
| 350 | "quiet\0" No_argument "q" |
| 351 | "quiet-output\0" No_argument "Q" |
| 352 | "shell\0" Required_argument "s" |
| 353 | "test\0" No_argument "T" |
| 354 | "unquoted\0" No_argument "u" |
| 355 | "alternative\0" No_argument "a" |
| 356 | "name\0" Required_argument "n" |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 357 | ; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 358 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 359 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 360 | int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 361 | int getopt_main(int argc, char **argv) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 362 | { |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 363 | int n; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 364 | char *optstr = NULL; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 365 | char *name = NULL; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 366 | unsigned opt; |
| 367 | const char *compatible; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 368 | char *s_arg; |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 369 | #if ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 370 | struct option *long_options = NULL; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 371 | llist_t *l_arg = NULL; |
| 372 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 373 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 374 | compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */ |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 375 | |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 376 | if (!argv[1]) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 377 | if (compatible) { |
| 378 | /* For some reason, the original getopt gave no error |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 379 | * when there were no arguments. */ |
Denys Vlasenko | d60752f | 2015-10-07 22:42:45 +0200 | [diff] [blame] | 380 | puts(" --"); |
Denis Vlasenko | f47ff10 | 2006-09-22 08:42:06 +0000 | [diff] [blame] | 381 | return 0; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 382 | } |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 383 | bb_simple_error_msg_and_die("missing optstring argument"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 384 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 385 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 386 | if (argv[1][0] != '-' || compatible) { |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 387 | char *s = argv[1]; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 388 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 389 | option_mask32 |= OPT_u; /* quoting off */ |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 390 | s = xstrdup(s + strspn(s, "-+")); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 391 | argv[1] = argv[0]; |
| 392 | return generate_output(argv+1, argc-1, s, long_options); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 393 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 394 | |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 395 | #if !ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 396 | opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 397 | #else |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 398 | opt = getopt32long(argv, "+o:n:qQs:Tual:*", getopt_longopts, |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 399 | &optstr, &name, &s_arg, &l_arg); |
| 400 | /* Effectuate the read options for the applet itself */ |
| 401 | while (l_arg) { |
Denis Vlasenko | d50dda8 | 2008-06-15 05:40:56 +0000 | [diff] [blame] | 402 | long_options = add_long_options(long_options, llist_pop(&l_arg)); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 403 | } |
| 404 | #endif |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 405 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 406 | if (opt & OPT_s) { |
| 407 | set_shell(s_arg); |
| 408 | } |
| 409 | |
| 410 | if (opt & OPT_T) { |
| 411 | return 4; |
| 412 | } |
| 413 | |
| 414 | /* All options controlling the applet have now been parsed */ |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 415 | n = optind - 1; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 416 | if (!optstr) { |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 417 | optstr = argv[++n]; |
| 418 | if (!optstr) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 419 | bb_simple_error_msg_and_die("missing optstring argument"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 420 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 421 | |
Denys Vlasenko | 594db1e | 2012-02-09 18:17:29 +0100 | [diff] [blame] | 422 | argv[n] = name ? name : argv[0]; |
| 423 | return generate_output(argv + n, argc - n, optstr, long_options); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 424 | } |