"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) |
| 4 | * Copyright (c) 1997, 1998, 1999, 2000 Frodo Looijaard <frodol@dds.nl> |
| 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 | */ |
| 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 Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 25 | * Added NLS support (partly written by Arkadiusz Mickiewicz |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 26 | * <misiek@misiek.eu.org>) |
| 27 | * Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org> |
Denys Vlasenko | 488dd70 | 2011-05-29 04:24:13 +0200 | [diff] [blame] | 28 | * Removed --version/-V and --help/-h |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 29 | * Removed parse_error(), using bb_error_msg() from Busybox instead |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 30 | * Replaced our_malloc with xmalloc and our_realloc with xrealloc |
| 31 | * |
| 32 | */ |
| 33 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 34 | //usage:#define getopt_trivial_usage |
| 35 | //usage: "[OPTIONS]" |
| 36 | //usage:#define getopt_full_usage "\n\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 37 | //usage: IF_LONG_OPTS( |
Denys Vlasenko | 6642676 | 2011-06-05 03:58:28 +0200 | [diff] [blame] | 38 | //usage: " -a,--alternative Allow long options starting with single -" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 39 | //usage: "\n -l,--longoptions=longopts Long options to be recognized" |
| 40 | //usage: "\n -n,--name=progname The name under which errors are reported" |
| 41 | //usage: "\n -o,--options=optstring Short options to be recognized" |
| 42 | //usage: "\n -q,--quiet Disable error reporting by getopt(3)" |
| 43 | //usage: "\n -Q,--quiet-output No normal output" |
| 44 | //usage: "\n -s,--shell=shell Set shell quoting conventions" |
| 45 | //usage: "\n -T,--test Test for getopt(1) version" |
| 46 | //usage: "\n -u,--unquoted Don't quote the output" |
| 47 | //usage: ) |
| 48 | //usage: IF_NOT_LONG_OPTS( |
Denys Vlasenko | 6642676 | 2011-06-05 03:58:28 +0200 | [diff] [blame] | 49 | //usage: " -a Allow long options starting with single -" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 50 | //usage: "\n -l longopts Long options to be recognized" |
| 51 | //usage: "\n -n progname The name under which errors are reported" |
| 52 | //usage: "\n -o optstring Short options to be recognized" |
| 53 | //usage: "\n -q Disable error reporting by getopt(3)" |
| 54 | //usage: "\n -Q No normal output" |
| 55 | //usage: "\n -s shell Set shell quoting conventions" |
| 56 | //usage: "\n -T Test for getopt(1) version" |
| 57 | //usage: "\n -u Don't quote the output" |
| 58 | //usage: ) |
| 59 | //usage: |
| 60 | //usage:#define getopt_example_usage |
| 61 | //usage: "$ cat getopt.test\n" |
| 62 | //usage: "#!/bin/sh\n" |
| 63 | //usage: "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n" |
| 64 | //usage: " -n 'example.busybox' -- \"$@\"`\n" |
| 65 | //usage: "if [ $? != 0 ]; then exit 1; fi\n" |
| 66 | //usage: "eval set -- \"$GETOPT\"\n" |
| 67 | //usage: "while true; do\n" |
| 68 | //usage: " case $1 in\n" |
| 69 | //usage: " -a|--a-long) echo \"Option a\"; shift;;\n" |
| 70 | //usage: " -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n" |
| 71 | //usage: " -c|--c-long)\n" |
| 72 | //usage: " case \"$2\" in\n" |
| 73 | //usage: " \"\") echo \"Option c, no argument\"; shift 2;;\n" |
| 74 | //usage: " *) echo \"Option c, argument '$2'\"; shift 2;;\n" |
| 75 | //usage: " esac;;\n" |
| 76 | //usage: " --) shift; break;;\n" |
| 77 | //usage: " *) echo \"Internal error!\"; exit 1;;\n" |
| 78 | //usage: " esac\n" |
| 79 | //usage: "done\n" |
| 80 | |
Denys Vlasenko | 488dd70 | 2011-05-29 04:24:13 +0200 | [diff] [blame] | 81 | #if ENABLE_FEATURE_GETOPT_LONG |
| 82 | # include <getopt.h> |
| 83 | #endif |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 84 | #include "libbb.h" |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 85 | |
| 86 | /* NON_OPT is the code that is returned when a non-option is found in '+' |
| 87 | mode */ |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 88 | enum { |
| 89 | NON_OPT = 1, |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 90 | #if ENABLE_FEATURE_GETOPT_LONG |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 91 | /* 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] | 92 | LONG_OPT = 2 |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 93 | #endif |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 94 | }; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 95 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 96 | /* For finding activated option flags. Must match getopt32 call! */ |
| 97 | enum { |
| 98 | OPT_o = 0x1, // -o |
| 99 | OPT_n = 0x2, // -n |
| 100 | OPT_q = 0x4, // -q |
| 101 | OPT_Q = 0x8, // -Q |
| 102 | OPT_s = 0x10, // -s |
| 103 | OPT_T = 0x20, // -T |
| 104 | OPT_u = 0x40, // -u |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 105 | #if ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 106 | OPT_a = 0x80, // -a |
| 107 | OPT_l = 0x100, // -l |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 108 | #endif |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 109 | SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */ |
| 110 | }; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 111 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 112 | /* 0 is getopt_long, 1 is getopt_long_only */ |
| 113 | #define alternative (option_mask32 & OPT_a) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 114 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 115 | #define quiet_errors (option_mask32 & OPT_q) |
| 116 | #define quiet_output (option_mask32 & OPT_Q) |
| 117 | #define quote (!(option_mask32 & OPT_u)) |
| 118 | #define shell_TCSH (option_mask32 & SHELL_IS_TCSH) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 119 | |
| 120 | /* |
| 121 | * This function 'normalizes' a single argument: it puts single quotes around |
| 122 | * it and escapes other special characters. If quote is false, it just |
| 123 | * returns its argument. |
| 124 | * Bash only needs special treatment for single quotes; tcsh also recognizes |
| 125 | * exclamation marks within single quotes, and nukes whitespace. |
| 126 | * This function returns a pointer to a buffer that is overwritten by |
| 127 | * each call. |
| 128 | */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 129 | static const char *normalize(const char *arg) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 130 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 131 | char *bufptr; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 132 | #if ENABLE_FEATURE_CLEAN_UP |
| 133 | static char *BUFFER = NULL; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 134 | free(BUFFER); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 135 | #else |
| 136 | char *BUFFER; |
| 137 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 138 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 139 | if (!quote) { /* Just copy arg */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 140 | BUFFER = xstrdup(arg); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 141 | return BUFFER; |
| 142 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 143 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 144 | /* Each character in arg may take up to four characters in the result: |
| 145 | For a quote we need a closing quote, a backslash, a quote and an |
| 146 | opening quote! We need also the global opening and closing quote, |
| 147 | and one extra character for '\0'. */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 148 | BUFFER = xmalloc(strlen(arg)*4 + 3); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 149 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 150 | bufptr = BUFFER; |
| 151 | *bufptr ++= '\''; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 152 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 153 | while (*arg) { |
| 154 | if (*arg == '\'') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 155 | /* Quote: replace it with: '\'' */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 156 | *bufptr ++= '\''; |
| 157 | *bufptr ++= '\\'; |
| 158 | *bufptr ++= '\''; |
| 159 | *bufptr ++= '\''; |
| 160 | } else if (shell_TCSH && *arg == '!') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 161 | /* Exclamation mark: replace it with: \! */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 162 | *bufptr ++= '\''; |
| 163 | *bufptr ++= '\\'; |
| 164 | *bufptr ++= '!'; |
| 165 | *bufptr ++= '\''; |
| 166 | } else if (shell_TCSH && *arg == '\n') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 167 | /* Newline: replace it with: \n */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 168 | *bufptr ++= '\\'; |
| 169 | *bufptr ++= 'n'; |
| 170 | } else if (shell_TCSH && isspace(*arg)) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 171 | /* Non-newline whitespace: replace it with \<ws> */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 172 | *bufptr ++= '\''; |
| 173 | *bufptr ++= '\\'; |
| 174 | *bufptr ++= *arg; |
| 175 | *bufptr ++= '\''; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 176 | } else |
| 177 | /* Just copy */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 178 | *bufptr ++= *arg; |
| 179 | arg++; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 180 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 181 | *bufptr ++= '\''; |
| 182 | *bufptr ++= '\0'; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 183 | return BUFFER; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /* |
| 187 | * Generate the output. argv[0] is the program name (used for reporting errors). |
| 188 | * argv[1..] contains the options to be parsed. argc must be the number of |
| 189 | * elements in argv (ie. 1 if there are no options, only the program name), |
| 190 | * optstr must contain the short options, and longopts the long options. |
| 191 | * Other settings are found in global variables. |
| 192 | */ |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 193 | #if !ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | d1660cb | 2008-10-20 07:52:33 +0000 | [diff] [blame] | 194 | #define generate_output(argv,argc,optstr,longopts) \ |
| 195 | generate_output(argv,argc,optstr) |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 196 | #endif |
| 197 | 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] | 198 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 199 | int exit_code = 0; /* We assume everything will be OK */ |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 200 | int opt; |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 201 | #if ENABLE_FEATURE_GETOPT_LONG |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 202 | int longindex; |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 203 | #endif |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 204 | const char *charptr; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 205 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 206 | if (quiet_errors) /* No error reporting from getopt(3) */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 207 | opterr = 0; |
Denis Vlasenko | 9772816 | 2008-01-28 22:57:10 +0000 | [diff] [blame] | 208 | |
Denis Vlasenko | 7effd7a | 2008-10-21 12:36:43 +0000 | [diff] [blame] | 209 | /* We used it already in main() in getopt32(), |
| 210 | * we *must* reset getopt(3): */ |
| 211 | #ifdef __GLIBC__ |
| 212 | optind = 0; |
| 213 | #else /* BSD style */ |
| 214 | optind = 1; |
| 215 | /* optreset = 1; */ |
| 216 | #endif |
| 217 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 218 | while (1) { |
| 219 | opt = |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 220 | #if ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 221 | alternative ? |
| 222 | getopt_long_only(argc, argv, optstr, longopts, &longindex) : |
| 223 | getopt_long(argc, argv, optstr, longopts, &longindex); |
| 224 | #else |
| 225 | getopt(argc, argv, optstr); |
| 226 | #endif |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 227 | if (opt == -1) |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 228 | break; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 229 | if (opt == '?' || opt == ':' ) |
| 230 | exit_code = 1; |
| 231 | else if (!quiet_output) { |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 232 | #if ENABLE_FEATURE_GETOPT_LONG |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 233 | if (opt == LONG_OPT) { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 234 | printf(" --%s", longopts[longindex].name); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 235 | if (longopts[longindex].has_arg) |
| 236 | printf(" %s", |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 237 | normalize(optarg ? optarg : "")); |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 238 | } else |
| 239 | #endif |
| 240 | if (opt == NON_OPT) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 241 | printf(" %s", normalize(optarg)); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 242 | else { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 243 | printf(" -%c", opt); |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 244 | charptr = strchr(optstr, opt); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 245 | if (charptr != NULL && *++charptr == ':') |
| 246 | printf(" %s", |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 247 | normalize(optarg ? optarg : "")); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 248 | } |
| 249 | } |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 250 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 251 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 252 | if (!quiet_output) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 253 | printf(" --"); |
| 254 | while (optind < argc) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 255 | printf(" %s", normalize(argv[optind++])); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 256 | bb_putchar('\n'); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 257 | } |
| 258 | return exit_code; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 261 | #if ENABLE_FEATURE_GETOPT_LONG |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 262 | /* |
| 263 | * Register several long options. options is a string of long options, |
| 264 | * separated by commas or whitespace. |
| 265 | * This nukes options! |
| 266 | */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 267 | static struct option *add_long_options(struct option *long_options, char *options) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 268 | { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 269 | int long_nr = 0; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 270 | int arg_opt, tlen; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 271 | char *tokptr = strtok(options, ", \t\n"); |
| 272 | |
| 273 | if (long_options) |
| 274 | while (long_options[long_nr].name) |
| 275 | long_nr++; |
| 276 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 277 | while (tokptr) { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 278 | arg_opt = no_argument; |
| 279 | tlen = strlen(tokptr); |
| 280 | if (tlen) { |
| 281 | tlen--; |
| 282 | if (tokptr[tlen] == ':') { |
| 283 | arg_opt = required_argument; |
| 284 | if (tlen && tokptr[tlen-1] == ':') { |
| 285 | tlen--; |
| 286 | arg_opt = optional_argument; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 287 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 288 | tokptr[tlen] = '\0'; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 289 | if (tlen == 0) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 290 | bb_error_msg_and_die("empty long option specified"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 291 | } |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 292 | long_options = xrealloc_vector(long_options, 4, long_nr); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 293 | long_options[long_nr].has_arg = arg_opt; |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 294 | /*long_options[long_nr].flag = NULL; - xrealloc_vector did it */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 295 | long_options[long_nr].val = LONG_OPT; |
| 296 | long_options[long_nr].name = xstrdup(tokptr); |
| 297 | long_nr++; |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 298 | /*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] | 299 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 300 | tokptr = strtok(NULL, ", \t\n"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 301 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 302 | return long_options; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 303 | } |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 304 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 305 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 306 | static void set_shell(const char *new_shell) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 307 | { |
Denis Vlasenko | f5d8c90 | 2008-06-26 14:32:57 +0000 | [diff] [blame] | 308 | if (!strcmp(new_shell, "bash") || !strcmp(new_shell, "sh")) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 309 | return; |
Denis Vlasenko | f5d8c90 | 2008-06-26 14:32:57 +0000 | [diff] [blame] | 310 | if (!strcmp(new_shell, "tcsh") || !strcmp(new_shell, "csh")) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 311 | option_mask32 |= SHELL_IS_TCSH; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 312 | else |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 313 | bb_error_msg("unknown shell '%s', assuming bash", new_shell); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | |
| 317 | /* Exit codes: |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 318 | * 0) No errors, successful operation. |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 319 | * 1) getopt(3) returned an error. |
| 320 | * 2) A problem with parameter parsing for getopt(1). |
| 321 | * 3) Internal error, out of memory |
| 322 | * 4) Returned for -T |
| 323 | */ |
| 324 | |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 325 | #if ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 326 | static const char getopt_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 327 | "options\0" Required_argument "o" |
| 328 | "longoptions\0" Required_argument "l" |
| 329 | "quiet\0" No_argument "q" |
| 330 | "quiet-output\0" No_argument "Q" |
| 331 | "shell\0" Required_argument "s" |
| 332 | "test\0" No_argument "T" |
| 333 | "unquoted\0" No_argument "u" |
| 334 | "alternative\0" No_argument "a" |
| 335 | "name\0" Required_argument "n" |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 336 | ; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 337 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 338 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 339 | int getopt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 340 | int getopt_main(int argc, char **argv) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 341 | { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 342 | char *optstr = NULL; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 343 | char *name = NULL; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 344 | unsigned opt; |
| 345 | const char *compatible; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 346 | char *s_arg; |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 347 | #if ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 348 | struct option *long_options = NULL; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 349 | llist_t *l_arg = NULL; |
| 350 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 351 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 352 | compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */ |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 353 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 354 | if (argc == 1) { |
| 355 | if (compatible) { |
| 356 | /* For some reason, the original getopt gave no error |
| 357 | when there were no arguments. */ |
| 358 | printf(" --\n"); |
Denis Vlasenko | f47ff10 | 2006-09-22 08:42:06 +0000 | [diff] [blame] | 359 | return 0; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 360 | } |
| 361 | bb_error_msg_and_die("missing optstring argument"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 362 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 363 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 364 | if (argv[1][0] != '-' || compatible) { |
Rob Landley | dbaf97e | 2005-09-05 06:16:53 +0000 | [diff] [blame] | 365 | char *s; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 366 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 367 | option_mask32 |= OPT_u; /* quoting off */ |
| 368 | s = xstrdup(argv[1] + strspn(argv[1], "-+")); |
| 369 | argv[1] = argv[0]; |
| 370 | return generate_output(argv+1, argc-1, s, long_options); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 371 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 372 | |
Denys Vlasenko | f3b92d3 | 2009-06-19 12:10:38 +0200 | [diff] [blame] | 373 | #if !ENABLE_FEATURE_GETOPT_LONG |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 374 | opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 375 | #else |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 376 | applet_long_options = getopt_longopts; |
Denis Vlasenko | 0919657 | 2007-07-21 13:27:44 +0000 | [diff] [blame] | 377 | opt_complementary = "l::"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 378 | opt = getopt32(argv, "+o:n:qQs:Tual:", |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 379 | &optstr, &name, &s_arg, &l_arg); |
| 380 | /* Effectuate the read options for the applet itself */ |
| 381 | while (l_arg) { |
Denis Vlasenko | d50dda8 | 2008-06-15 05:40:56 +0000 | [diff] [blame] | 382 | long_options = add_long_options(long_options, llist_pop(&l_arg)); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 383 | } |
| 384 | #endif |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 385 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 386 | if (opt & OPT_s) { |
| 387 | set_shell(s_arg); |
| 388 | } |
| 389 | |
| 390 | if (opt & OPT_T) { |
| 391 | return 4; |
| 392 | } |
| 393 | |
| 394 | /* All options controlling the applet have now been parsed */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 395 | if (!optstr) { |
| 396 | if (optind >= argc) |
| 397 | bb_error_msg_and_die("missing optstring argument"); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 398 | optstr = argv[optind++]; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 399 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 400 | |
| 401 | argv[optind-1] = name ? name : argv[0]; |
| 402 | return generate_output(argv+optind-1, argc-optind+1, optstr, long_options); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 403 | } |