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