"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 | * |
Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 6 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
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 |
| 25 | * Added NLS support (partly written by Arkadiusz Mi<B6>kiewicz |
| 26 | * <misiek@misiek.eu.org>) |
| 27 | * Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org> |
| 28 | * Removed --version/-V and --help/-h in |
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 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 34 | #include <getopt.h> |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 35 | #include "libbb.h" |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 36 | |
| 37 | /* NON_OPT is the code that is returned when a non-option is found in '+' |
| 38 | mode */ |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 39 | enum { |
| 40 | NON_OPT = 1, |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 41 | #if ENABLE_GETOPT_LONG |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 42 | /* 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] | 43 | LONG_OPT = 2 |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 44 | #endif |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 45 | }; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 46 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 47 | /* For finding activated option flags. Must match getopt32 call! */ |
| 48 | enum { |
| 49 | OPT_o = 0x1, // -o |
| 50 | OPT_n = 0x2, // -n |
| 51 | OPT_q = 0x4, // -q |
| 52 | OPT_Q = 0x8, // -Q |
| 53 | OPT_s = 0x10, // -s |
| 54 | OPT_T = 0x20, // -T |
| 55 | OPT_u = 0x40, // -u |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 56 | #if ENABLE_GETOPT_LONG |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 57 | OPT_a = 0x80, // -a |
| 58 | OPT_l = 0x100, // -l |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 59 | #endif |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 60 | SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */ |
| 61 | }; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 62 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 63 | /* 0 is getopt_long, 1 is getopt_long_only */ |
| 64 | #define alternative (option_mask32 & OPT_a) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 65 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 66 | #define quiet_errors (option_mask32 & OPT_q) |
| 67 | #define quiet_output (option_mask32 & OPT_Q) |
| 68 | #define quote (!(option_mask32 & OPT_u)) |
| 69 | #define shell_TCSH (option_mask32 & SHELL_IS_TCSH) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 70 | |
| 71 | /* |
| 72 | * This function 'normalizes' a single argument: it puts single quotes around |
| 73 | * it and escapes other special characters. If quote is false, it just |
| 74 | * returns its argument. |
| 75 | * Bash only needs special treatment for single quotes; tcsh also recognizes |
| 76 | * exclamation marks within single quotes, and nukes whitespace. |
| 77 | * This function returns a pointer to a buffer that is overwritten by |
| 78 | * each call. |
| 79 | */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 80 | static const char *normalize(const char *arg) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 81 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 82 | char *bufptr; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 83 | #if ENABLE_FEATURE_CLEAN_UP |
| 84 | static char *BUFFER = NULL; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 85 | free(BUFFER); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 86 | #else |
| 87 | char *BUFFER; |
| 88 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 89 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 90 | if (!quote) { /* Just copy arg */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 91 | BUFFER = xstrdup(arg); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 92 | return BUFFER; |
| 93 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 94 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 95 | /* Each character in arg may take up to four characters in the result: |
| 96 | For a quote we need a closing quote, a backslash, a quote and an |
| 97 | opening quote! We need also the global opening and closing quote, |
| 98 | and one extra character for '\0'. */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 99 | BUFFER = xmalloc(strlen(arg)*4 + 3); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 100 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 101 | bufptr = BUFFER; |
| 102 | *bufptr ++= '\''; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 103 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 104 | while (*arg) { |
| 105 | if (*arg == '\'') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 106 | /* Quote: replace it with: '\'' */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 107 | *bufptr ++= '\''; |
| 108 | *bufptr ++= '\\'; |
| 109 | *bufptr ++= '\''; |
| 110 | *bufptr ++= '\''; |
| 111 | } else if (shell_TCSH && *arg == '!') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 112 | /* Exclamation mark: replace it with: \! */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 113 | *bufptr ++= '\''; |
| 114 | *bufptr ++= '\\'; |
| 115 | *bufptr ++= '!'; |
| 116 | *bufptr ++= '\''; |
| 117 | } else if (shell_TCSH && *arg == '\n') { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 118 | /* Newline: replace it with: \n */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 119 | *bufptr ++= '\\'; |
| 120 | *bufptr ++= 'n'; |
| 121 | } else if (shell_TCSH && isspace(*arg)) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 122 | /* Non-newline whitespace: replace it with \<ws> */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 123 | *bufptr ++= '\''; |
| 124 | *bufptr ++= '\\'; |
| 125 | *bufptr ++= *arg; |
| 126 | *bufptr ++= '\''; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 127 | } else |
| 128 | /* Just copy */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 129 | *bufptr ++= *arg; |
| 130 | arg++; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 131 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 132 | *bufptr ++= '\''; |
| 133 | *bufptr ++= '\0'; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 134 | return BUFFER; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | /* |
| 138 | * Generate the output. argv[0] is the program name (used for reporting errors). |
| 139 | * argv[1..] contains the options to be parsed. argc must be the number of |
| 140 | * elements in argv (ie. 1 if there are no options, only the program name), |
| 141 | * optstr must contain the short options, and longopts the long options. |
| 142 | * Other settings are found in global variables. |
| 143 | */ |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 144 | #if !ENABLE_GETOPT_LONG |
| 145 | #define generate_output(argv,argc,optstr,longopts) generate_output(argv,argc,optstr) |
| 146 | #endif |
| 147 | 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] | 148 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 149 | int exit_code = 0; /* We assume everything will be OK */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 150 | unsigned opt; |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 151 | #if ENABLE_GETOPT_LONG |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 152 | int longindex; |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 153 | #endif |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 154 | const char *charptr; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 155 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 156 | if (quiet_errors) /* No error reporting from getopt(3) */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 157 | opterr = 0; |
| 158 | optind = 0; /* Reset getopt(3) */ |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 159 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 160 | while (1) { |
| 161 | opt = |
| 162 | #if ENABLE_GETOPT_LONG |
| 163 | alternative ? |
| 164 | getopt_long_only(argc, argv, optstr, longopts, &longindex) : |
| 165 | getopt_long(argc, argv, optstr, longopts, &longindex); |
| 166 | #else |
| 167 | getopt(argc, argv, optstr); |
| 168 | #endif |
| 169 | if (opt == EOF) |
| 170 | break; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 171 | if (opt == '?' || opt == ':' ) |
| 172 | exit_code = 1; |
| 173 | else if (!quiet_output) { |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 174 | #if ENABLE_GETOPT_LONG |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 175 | if (opt == LONG_OPT) { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 176 | printf(" --%s", longopts[longindex].name); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 177 | if (longopts[longindex].has_arg) |
| 178 | printf(" %s", |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 179 | normalize(optarg ? optarg : "")); |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 180 | } else |
| 181 | #endif |
| 182 | if (opt == NON_OPT) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 183 | printf(" %s", normalize(optarg)); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 184 | else { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 185 | printf(" -%c", opt); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 186 | charptr = strchr(optstr,opt); |
| 187 | if (charptr != NULL && *++charptr == ':') |
| 188 | printf(" %s", |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 189 | normalize(optarg ? optarg : "")); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 190 | } |
| 191 | } |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 192 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 193 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 194 | if (!quiet_output) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 195 | printf(" --"); |
| 196 | while (optind < argc) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 197 | printf(" %s", normalize(argv[optind++])); |
Denis Vlasenko | c6f188d | 2006-10-26 00:37:00 +0000 | [diff] [blame] | 198 | puts(""); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 199 | } |
| 200 | return exit_code; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 201 | } |
| 202 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 203 | #if ENABLE_GETOPT_LONG |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 204 | /* |
| 205 | * Register several long options. options is a string of long options, |
| 206 | * separated by commas or whitespace. |
| 207 | * This nukes options! |
| 208 | */ |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 209 | static struct option *add_long_options(struct option *long_options, char *options) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 210 | { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 211 | int long_nr = 0; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 212 | int arg_opt, tlen; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 213 | char *tokptr = strtok(options, ", \t\n"); |
| 214 | |
| 215 | if (long_options) |
| 216 | while (long_options[long_nr].name) |
| 217 | long_nr++; |
| 218 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 219 | while (tokptr) { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 220 | arg_opt = no_argument; |
| 221 | tlen = strlen(tokptr); |
| 222 | if (tlen) { |
| 223 | tlen--; |
| 224 | if (tokptr[tlen] == ':') { |
| 225 | arg_opt = required_argument; |
| 226 | if (tlen && tokptr[tlen-1] == ':') { |
| 227 | tlen--; |
| 228 | arg_opt = optional_argument; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 229 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 230 | tokptr[tlen] = '\0'; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 231 | if (tlen == 0) |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 232 | bb_error_msg_and_die("empty long option specified"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 233 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 234 | long_options = xrealloc(long_options, |
| 235 | sizeof(long_options[0]) * (long_nr+2)); |
| 236 | long_options[long_nr].has_arg = arg_opt; |
| 237 | long_options[long_nr].flag = NULL; |
| 238 | long_options[long_nr].val = LONG_OPT; |
| 239 | long_options[long_nr].name = xstrdup(tokptr); |
| 240 | long_nr++; |
| 241 | memset(&long_options[long_nr], 0, sizeof(long_options[0])); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 242 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 243 | tokptr = strtok(NULL, ", \t\n"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 244 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 245 | return long_options; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 246 | } |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 247 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 248 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 249 | static void set_shell(const char *new_shell) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 250 | { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 251 | if (!strcmp(new_shell,"bash") || !strcmp(new_shell,"sh")) |
| 252 | return; |
| 253 | if (!strcmp(new_shell,"tcsh") || !strcmp(new_shell,"csh")) |
| 254 | option_mask32 |= SHELL_IS_TCSH; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 255 | else |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 256 | bb_error_msg("unknown shell '%s', assuming bash", new_shell); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | |
| 260 | /* Exit codes: |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 261 | * 0) No errors, successful operation. |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 262 | * 1) getopt(3) returned an error. |
| 263 | * 2) A problem with parameter parsing for getopt(1). |
| 264 | * 3) Internal error, out of memory |
| 265 | * 4) Returned for -T |
| 266 | */ |
| 267 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 268 | #if ENABLE_GETOPT_LONG |
| 269 | static const struct option longopts[] = { |
| 270 | { "options", required_argument, NULL, 'o' }, |
| 271 | { "longoptions", required_argument, NULL, 'l' }, |
| 272 | { "quiet", no_argument, NULL, 'q' }, |
| 273 | { "quiet-output", no_argument, NULL, 'Q' }, |
| 274 | { "shell", required_argument, NULL, 's' }, |
| 275 | { "test", no_argument, NULL, 'T' }, |
| 276 | { "unquoted", no_argument, NULL, 'u' }, |
| 277 | { "alternative", no_argument, NULL, 'a' }, |
| 278 | { "name", required_argument, NULL, 'n' }, |
| 279 | { NULL, 0, NULL, 0 } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 280 | }; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 281 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 282 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 283 | int getopt_main(int argc, char *argv[]); |
| 284 | int getopt_main(int argc, char *argv[]) |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 285 | { |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 286 | char *optstr = NULL; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 287 | char *name = NULL; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 288 | unsigned opt; |
| 289 | const char *compatible; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 290 | char *s_arg; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 291 | #if ENABLE_GETOPT_LONG |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 292 | struct option *long_options = NULL; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 293 | llist_t *l_arg = NULL; |
| 294 | #endif |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 295 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 296 | compatible = getenv("GETOPT_COMPATIBLE"); /* used as yes/no flag */ |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 297 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 298 | if (argc == 1) { |
| 299 | if (compatible) { |
| 300 | /* For some reason, the original getopt gave no error |
| 301 | when there were no arguments. */ |
| 302 | printf(" --\n"); |
Denis Vlasenko | f47ff10 | 2006-09-22 08:42:06 +0000 | [diff] [blame] | 303 | return 0; |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 304 | } |
| 305 | bb_error_msg_and_die("missing optstring argument"); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 306 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 307 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 308 | if (argv[1][0] != '-' || compatible) { |
Rob Landley | dbaf97e | 2005-09-05 06:16:53 +0000 | [diff] [blame] | 309 | char *s; |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 310 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 311 | option_mask32 |= OPT_u; /* quoting off */ |
| 312 | s = xstrdup(argv[1] + strspn(argv[1], "-+")); |
| 313 | argv[1] = argv[0]; |
| 314 | return generate_output(argv+1, argc-1, s, long_options); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 315 | } |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 316 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 317 | #if !ENABLE_GETOPT_LONG |
| 318 | opt = getopt32(argc, argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg); |
| 319 | #else |
| 320 | applet_long_options = longopts; |
| 321 | opt_complementary = "?:l::"; |
| 322 | opt = getopt32(argc, argv, "+o:n:qQs:Tual:", |
| 323 | &optstr, &name, &s_arg, &l_arg); |
| 324 | /* Effectuate the read options for the applet itself */ |
| 325 | while (l_arg) { |
| 326 | long_options = add_long_options(long_options, l_arg->data); |
| 327 | l_arg = l_arg->link; |
| 328 | } |
| 329 | #endif |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 330 | |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 331 | if (opt & OPT_s) { |
| 332 | set_shell(s_arg); |
| 333 | } |
| 334 | |
| 335 | if (opt & OPT_T) { |
| 336 | return 4; |
| 337 | } |
| 338 | |
| 339 | /* All options controlling the applet have now been parsed */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 340 | if (!optstr) { |
| 341 | if (optind >= argc) |
| 342 | bb_error_msg_and_die("missing optstring argument"); |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 343 | optstr = argv[optind++]; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 344 | } |
Denis Vlasenko | 9c146a9 | 2007-04-07 10:25:04 +0000 | [diff] [blame] | 345 | |
| 346 | argv[optind-1] = name ? name : argv[0]; |
| 347 | return generate_output(argv+optind-1, argc-optind+1, optstr, long_options); |
Eric Andersen | a1f16bb | 2000-08-21 22:02:34 +0000 | [diff] [blame] | 348 | } |