Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 3 | * universal getopt32 implementation for busybox |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 4 | * |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 5 | * Copyright (C) 2003-2005 Vladimir Oleynik <dzo@simtreas.ru> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 6 | * |
"Robert P. J. Day" | 5d8843e | 2006-07-10 11:41:19 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 10 | #include <getopt.h> |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 11 | #include "libbb.h" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 12 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 13 | /* Documentation |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 15 | uint32_t |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 16 | getopt32(char **argv, const char *applet_opts, ...) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 17 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 18 | The command line options must be declared in const char |
| 19 | *applet_opts as a string of chars, for example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 20 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 21 | flags = getopt32(argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 22 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 23 | If one of the given options is found, a flag value is added to |
| 24 | the return value (an unsigned long). |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 25 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 26 | The flag value is determined by the position of the char in |
| 27 | applet_opts string. For example, in the above case: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 28 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 29 | flags = getopt32(argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 30 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 31 | "r" will add 1 (bit 0) |
| 32 | "n" will add 2 (bit 1) |
Denis Vlasenko | ab8c937 | 2007-09-28 22:13:55 +0000 | [diff] [blame] | 33 | "u" will add 4 (bit 2) |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 34 | "g" will add 8 (bit 3) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 35 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 36 | and so on. You can also look at the return value as a bit |
| 37 | field and each option sets one bit. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 38 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 39 | On exit, global variable optind is set so that if you |
| 40 | will do argc -= optind; argv += optind; then |
| 41 | argc will be equal to number of remaining non-option |
| 42 | arguments, first one would be in argv[0], next in argv[1] and so on |
| 43 | (options and their parameters will be moved into argv[] |
| 44 | positions prior to argv[optind]). |
Denis Vlasenko | 65dbd87 | 2006-09-03 12:27:25 +0000 | [diff] [blame] | 45 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 46 | ":" If one of the options requires an argument, then add a ":" |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 47 | after the char in applet_opts and provide a pointer to store |
| 48 | the argument. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 49 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 50 | char *pointer_to_arg_for_a; |
| 51 | char *pointer_to_arg_for_b; |
| 52 | char *pointer_to_arg_for_c; |
| 53 | char *pointer_to_arg_for_d; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 54 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 55 | flags = getopt32(argv, "a:b:c:d:", |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 56 | &pointer_to_arg_for_a, &pointer_to_arg_for_b, |
| 57 | &pointer_to_arg_for_c, &pointer_to_arg_for_d); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 59 | The type of the pointer (char* or llist_t*) may be controlled |
| 60 | by the "::" special separator that is set in the external string |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 61 | opt_complementary (see below for more info). |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 62 | |
| 63 | "::" If option can have an *optional* argument, then add a "::" |
| 64 | after its char in applet_opts and provide a pointer to store |
| 65 | the argument. Note that optional arguments _must_ |
| 66 | immediately follow the option: -oparam, not -o param. |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 67 | |
Mike Frysinger | 992a58c | 2006-02-22 22:56:30 +0000 | [diff] [blame] | 68 | "+" If the first character in the applet_opts string is a plus, |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 69 | then option processing will stop as soon as a non-option is |
| 70 | encountered in the argv array. Useful for applets like env |
| 71 | which should not process arguments to subprograms: |
| 72 | env -i ls -d / |
| 73 | Here we want env to process just the '-i', not the '-d'. |
Mike Frysinger | 992a58c | 2006-02-22 22:56:30 +0000 | [diff] [blame] | 74 | |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 75 | const char *applet_long_options |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 76 | |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 77 | This struct allows you to define long options: |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 78 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 79 | static const char applet_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 80 | //"name\0" has_arg val |
| 81 | "verbose\0" No_argument "v" |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 82 | ; |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 83 | applet_long_options = applet_longopts; |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 84 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 85 | The last member of struct option (val) typically is set to |
| 86 | matching short option from applet_opts. If there is no matching |
| 87 | char in applet_opts, then: |
| 88 | - return bit have next position after short options |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 89 | - if has_arg is not "No_argument", use ptr for arg also |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 90 | - opt_complementary affects it too |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 91 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 92 | Note: a good applet will make long options configurable via the |
| 93 | config process and not a required feature. The current standard |
| 94 | is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS. |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 95 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 96 | const char *opt_complementary |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 97 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 98 | ":" The colon (":") is used to separate groups of two or more chars |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 99 | and/or groups of chars and special characters (stating some |
| 100 | conditions to be checked). |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 101 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 102 | "abc" If groups of two or more chars are specified, the first char |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 103 | is the main option and the other chars are secondary options. |
| 104 | Their flags will be turned on if the main option is found even |
| 105 | if they are not specifed on the command line. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 106 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 107 | opt_complementary = "abc"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 108 | flags = getopt32(argv, "abcd") |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 109 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 110 | If getopt() finds "-a" on the command line, then |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 111 | getopt32's return value will be as if "-a -b -c" were |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 112 | found. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 113 | |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 114 | "ww" Adjacent double options have a counter associated which indicates |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 115 | the number of occurences of the option. |
| 116 | For example the ps applet needs: |
| 117 | if w is given once, GNU ps sets the width to 132, |
| 118 | if w is given more than once, it is "unlimited" |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 119 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 120 | int w_counter = 0; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 121 | opt_complementary = "ww"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 122 | getopt32(argv, "w", &w_counter); |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 123 | if (w_counter) |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 124 | width = (w_counter == 1) ? 132 : INT_MAX; |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 125 | else |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 126 | get_terminal_width(...&width...); |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 127 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 128 | w_counter is a pointer to an integer. It has to be passed to |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 129 | getopt32() after all other option argument sinks. |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 130 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 131 | For example: accept multiple -v to indicate the level of verbosity |
| 132 | and for each -b optarg, add optarg to my_b. Finally, if b is given, |
| 133 | turn off c and vice versa: |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 134 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 135 | llist_t *my_b = NULL; |
| 136 | int verbose_level = 0; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 137 | opt_complementary = "vv:b::b-c:c-b"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 138 | f = getopt32(argv, "vb:c", &my_b, &verbose_level); |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 139 | if (f & 2) // -c after -b unsets -b flag |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 140 | while (my_b) { dosomething_with(my_b->data); my_b = my_b->link; } |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 141 | if (my_b) // but llist is stored if -b is specified |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 142 | free_llist(my_b); |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 143 | if (verbose_level) printf("verbose level is %d\n", verbose_level); |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 144 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 145 | Special characters: |
| 146 | |
Denis Vlasenko | d031ffa | 2006-11-24 21:54:44 +0000 | [diff] [blame] | 147 | "-" A dash as the first char in a opt_complementary group forces |
| 148 | all arguments to be treated as options, even if they have |
| 149 | no leading dashes. Next char in this case can't be a digit (0-9), |
| 150 | use ':' or end of line. For example: |
| 151 | |
| 152 | opt_complementary = "-:w-x:x-w"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 153 | getopt32(argv, "wx"); |
Denis Vlasenko | d031ffa | 2006-11-24 21:54:44 +0000 | [diff] [blame] | 154 | |
| 155 | Allows any arguments to be given without a dash (./program w x) |
| 156 | as well as with a dash (./program -x). |
| 157 | |
| 158 | "--" A double dash at the beginning of opt_complementary means the |
| 159 | argv[1] string should always be treated as options, even if it isn't |
| 160 | prefixed with a "-". This is useful for special syntax in applets |
| 161 | such as "ar" and "tar": |
| 162 | tar xvf foo.tar |
| 163 | |
| 164 | "-N" A dash as the first char in a opt_complementary group followed |
| 165 | by a single digit (0-9) means that at least N non-option |
| 166 | arguments must be present on the command line |
| 167 | |
| 168 | "=N" An equal sign as the first char in a opt_complementary group followed |
| 169 | by a single digit (0-9) means that exactly N non-option |
| 170 | arguments must be present on the command line |
| 171 | |
| 172 | "?N" A "?" as the first char in a opt_complementary group followed |
| 173 | by a single digit (0-9) means that at most N arguments must be present |
| 174 | on the command line. |
| 175 | |
| 176 | "V-" An option with dash before colon or end-of-line results in |
| 177 | bb_show_usage being called if this option is encountered. |
| 178 | This is typically used to implement "print verbose usage message |
| 179 | and exit" option. |
| 180 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 181 | "a-b" A dash between two options causes the second of the two |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 182 | to be unset (and ignored) if it is given on the command line. |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 183 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 184 | [FIXME: what if they are the same? like "x-x"? Is it ever useful?] |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 185 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 186 | For example: |
| 187 | The du applet has the options "-s" and "-d depth". If |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 188 | getopt32 finds -s, then -d is unset or if it finds -d |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 189 | then -s is unset. (Note: busybox implements the GNU |
| 190 | "--max-depth" option as "-d".) To obtain this behavior, you |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 191 | set opt_complementary = "s-d:d-s". Only one flag value is |
| 192 | added to getopt32's return value depending on the |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 193 | position of the options on the command line. If one of the |
| 194 | two options requires an argument pointer (":" in applet_opts |
| 195 | as in "d:") optarg is set accordingly. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 196 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 197 | char *smax_print_depth; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 198 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 199 | opt_complementary = "s-d:d-s:x-x"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 200 | opt = getopt32(argv, "sd:x", &smax_print_depth); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 201 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 202 | if (opt & 2) |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 203 | max_print_depth = atoi(smax_print_depth); |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 204 | if (opt & 4) |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 205 | printf("Detected odd -x usage\n"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 206 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 207 | "a--b" A double dash between two options, or between an option and a group |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 208 | of options, means that they are mutually exclusive. Unlike |
| 209 | the "-" case above, an error will be forced if the options |
| 210 | are used together. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 211 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 212 | For example: |
| 213 | The cut applet must have only one type of list specified, so |
Denis Vlasenko | a0319ba | 2007-08-16 10:37:49 +0000 | [diff] [blame] | 214 | -b, -c and -f are mutually exclusive and should raise an error |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 215 | if specified together. In this case you must set |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 216 | opt_complementary = "b--cf:c--bf:f--bc". If two of the |
Denis Vlasenko | 0919657 | 2007-07-21 13:27:44 +0000 | [diff] [blame] | 217 | mutually exclusive options are found, getopt32 will call |
| 218 | bb_show_usage() and die. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 219 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 220 | "x--x" Variation of the above, it means that -x option should occur |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 221 | at most once. |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 222 | |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 223 | "a+:" A plus after a char in opt_complementary means that the parameter |
| 224 | for this option is a nonnegative integer. It will be processed |
| 225 | with xatoi_u() - allowed range is 0..INT_MAX. |
| 226 | |
| 227 | int param; // "unsigned param;" will also work |
| 228 | opt_complementary = "p+"; |
| 229 | getopt32(argv, "p:", ¶m); |
| 230 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 231 | "a::" A double colon after a char in opt_complementary means that the |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 232 | option can occur multiple times. Each occurrence will be saved as |
| 233 | a llist_t element instead of char*. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 234 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 235 | For example: |
| 236 | The grep applet can have one or more "-e pattern" arguments. |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 237 | In this case you should use getopt32() as follows: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 238 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 239 | llist_t *patterns = NULL; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 240 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 241 | (this pointer must be initializated to NULL if the list is empty |
Denis Vlasenko | 8d9f495 | 2007-04-08 15:08:42 +0000 | [diff] [blame] | 242 | as required by llist_add_to_end(llist_t **old_head, char *new_item).) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 243 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 244 | opt_complementary = "e::"; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 245 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 246 | getopt32(argv, "e:", &patterns); |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 247 | $ grep -e user -e root /etc/passwd |
| 248 | root:x:0:0:root:/root:/bin/bash |
| 249 | user:x:500:500::/home/user:/bin/bash |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 250 | |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 251 | "a?b" A "?" between an option and a group of options means that |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 252 | at least one of them is required to occur if the first option |
| 253 | occurs in preceding command line arguments. |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 254 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 255 | For example from "id" applet: |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 256 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 257 | // Don't allow -n -r -rn -ug -rug -nug -rnug |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 258 | opt_complementary = "r?ug:n?ug:?u--g:g--u"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 259 | flags = getopt32(argv, "rnug"); |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 260 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 261 | This example allowed only: |
| 262 | $ id; id -u; id -g; id -ru; id -nu; id -rg; id -ng; id -rnu; id -rng |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 263 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 264 | "X" A opt_complementary group with just a single letter means |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 265 | that this option is required. If more than one such group exists, |
| 266 | at least one option is required to occur (not all of them). |
| 267 | For example from "start-stop-daemon" applet: |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 268 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 269 | // Don't allow -KS -SK, but -S or -K is required |
Denis Vlasenko | 6666ac4 | 2007-08-24 21:46:24 +0000 | [diff] [blame] | 270 | opt_complementary = "K:S:K--S:S--K"; |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 271 | flags = getopt32(argv, "KS...); |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 272 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 273 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame] | 274 | Don't forget to use ':'. For example, "?322-22-23X-x-a" |
| 275 | is interpreted as "?3:22:-2:2-2:2-3Xa:2--x" - |
| 276 | max 3 args; count uses of '-2'; min 2 args; if there is |
| 277 | a '-2' option then unset '-3', '-X' and '-a'; if there is |
| 278 | a '-2' and after it a '-x' then error out. |
Denis Vlasenko | 737d131 | 2007-08-25 18:25:24 +0000 | [diff] [blame] | 279 | But it's far too obfuscated. Use ':' to separate groups. |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 280 | */ |
| 281 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 282 | /* Code here assumes that 'unsigned' is at least 32 bits wide */ |
| 283 | |
| 284 | const char *opt_complementary; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 285 | |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 286 | enum { |
| 287 | PARAM_STRING, |
| 288 | PARAM_LIST, |
| 289 | PARAM_INT, |
| 290 | }; |
| 291 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 292 | typedef struct { |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 293 | unsigned char opt_char; |
| 294 | smallint param_type; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 295 | unsigned switch_on; |
| 296 | unsigned switch_off; |
| 297 | unsigned incongruously; |
| 298 | unsigned requires; |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 299 | void **optarg; /* char**, llist_t** or int *. */ |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 300 | int *counter; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 301 | } t_complementary; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 302 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 303 | /* You can set applet_long_options for parse called long options */ |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 304 | #if ENABLE_GETOPT_LONG |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 305 | static const struct option bb_null_long_options[1] = { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 306 | { 0, 0, 0, 0 } |
| 307 | }; |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 308 | const char *applet_long_options; |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 309 | #endif |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 310 | |
Denis Vlasenko | c12f530 | 2006-10-06 09:49:47 +0000 | [diff] [blame] | 311 | uint32_t option_mask32; |
| 312 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 313 | uint32_t |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 314 | getopt32(char **argv, const char *applet_opts, ...) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 315 | { |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 316 | int argc; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 317 | unsigned flags = 0; |
| 318 | unsigned requires = 0; |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 319 | t_complementary complementary[33]; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 320 | int c; |
| 321 | const unsigned char *s; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 322 | t_complementary *on_off; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 323 | va_list p; |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 324 | #if ENABLE_GETOPT_LONG |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 325 | const struct option *l_o; |
Denis Vlasenko | 5bfcb4d | 2007-07-23 17:40:35 +0000 | [diff] [blame] | 326 | struct option *long_options = (struct option *) &bb_null_long_options; |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 327 | #endif |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 328 | unsigned trigger; |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 329 | char **pargv = NULL; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 330 | int min_arg = 0; |
| 331 | int max_arg = -1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 332 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 333 | #define SHOW_USAGE_IF_ERROR 1 |
| 334 | #define ALL_ARGV_IS_OPTS 2 |
| 335 | #define FIRST_ARGV_IS_OPT 4 |
| 336 | #define FREE_FIRST_ARGV_IS_OPT 8 |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 337 | int spec_flgs = 0; |
| 338 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 339 | argc = 0; |
| 340 | while (argv[argc]) |
| 341 | argc++; |
| 342 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 343 | va_start(p, applet_opts); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 344 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 345 | c = 0; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 346 | on_off = complementary; |
| 347 | memset(on_off, 0, sizeof(complementary)); |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 348 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 349 | /* skip GNU extension */ |
"Vladimir N. Oleynik" | bf968f7 | 2005-12-02 10:10:28 +0000 | [diff] [blame] | 350 | s = (const unsigned char *)applet_opts; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 351 | if (*s == '+' || *s == '-') |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 352 | s++; |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 353 | while (*s) { |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 354 | if (c >= 32) |
| 355 | break; |
| 356 | on_off->opt_char = *s; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 357 | on_off->switch_on = (1 << c); |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 358 | if (*++s == ':') { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 359 | on_off->optarg = va_arg(p, void **); |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 360 | while (*++s == ':') |
| 361 | continue; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 362 | } |
| 363 | on_off++; |
| 364 | c++; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 365 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 366 | |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 367 | #if ENABLE_GETOPT_LONG |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 368 | if (applet_long_options) { |
| 369 | const char *optstr; |
| 370 | unsigned i, count; |
| 371 | |
| 372 | count = 1; |
| 373 | optstr = applet_long_options; |
| 374 | while (optstr[0]) { |
Denis Vlasenko | 5bfcb4d | 2007-07-23 17:40:35 +0000 | [diff] [blame] | 375 | optstr += strlen(optstr) + 3; /* skip NUL, has_arg, val */ |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 376 | count++; |
| 377 | } |
| 378 | /* count == no. of longopts + 1 */ |
Denis Vlasenko | 5bfcb4d | 2007-07-23 17:40:35 +0000 | [diff] [blame] | 379 | long_options = alloca(count * sizeof(*long_options)); |
Denis Vlasenko | f4cee7a | 2007-07-25 17:18:06 +0000 | [diff] [blame] | 380 | memset(long_options, 0, count * sizeof(*long_options)); |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 381 | i = 0; |
| 382 | optstr = applet_long_options; |
| 383 | while (--count) { |
| 384 | long_options[i].name = optstr; |
| 385 | optstr += strlen(optstr) + 1; |
| 386 | long_options[i].has_arg = (unsigned char)(*optstr++); |
| 387 | /* long_options[i].flag = NULL; */ |
| 388 | long_options[i].val = (unsigned char)(*optstr++); |
| 389 | i++; |
| 390 | } |
| 391 | for (l_o = long_options; l_o->name; l_o++) { |
| 392 | if (l_o->flag) |
| 393 | continue; |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 394 | for (on_off = complementary; on_off->opt_char; on_off++) |
| 395 | if (on_off->opt_char == l_o->val) |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 396 | goto next_long; |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 397 | if (c >= 32) |
| 398 | break; |
| 399 | on_off->opt_char = l_o->val; |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 400 | on_off->switch_on = (1 << c); |
| 401 | if (l_o->has_arg != no_argument) |
| 402 | on_off->optarg = va_arg(p, void **); |
| 403 | c++; |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 404 | next_long: ; |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 405 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 406 | } |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 407 | #endif /* ENABLE_GETOPT_LONG */ |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 408 | for (s = (const unsigned char *)opt_complementary; s && *s; s++) { |
| 409 | t_complementary *pair; |
| 410 | unsigned *pair_switch; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 411 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 412 | if (*s == ':') |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 413 | continue; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 414 | c = s[1]; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 415 | if (*s == '?') { |
| 416 | if (c < '0' || c > '9') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 417 | spec_flgs |= SHOW_USAGE_IF_ERROR; |
| 418 | } else { |
| 419 | max_arg = c - '0'; |
| 420 | s++; |
| 421 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 422 | continue; |
| 423 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 424 | if (*s == '-') { |
| 425 | if (c < '0' || c > '9') { |
| 426 | if (c == '-') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 427 | spec_flgs |= FIRST_ARGV_IS_OPT; |
| 428 | s++; |
| 429 | } else |
| 430 | spec_flgs |= ALL_ARGV_IS_OPTS; |
| 431 | } else { |
| 432 | min_arg = c - '0'; |
| 433 | s++; |
| 434 | } |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 435 | continue; |
| 436 | } |
Denis Vlasenko | 456fa6c | 2006-10-20 18:36:55 +0000 | [diff] [blame] | 437 | if (*s == '=') { |
| 438 | min_arg = max_arg = c - '0'; |
| 439 | s++; |
| 440 | continue; |
| 441 | } |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 442 | for (on_off = complementary; on_off->opt_char; on_off++) |
| 443 | if (on_off->opt_char == *s) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 444 | break; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 445 | if (c == ':' && s[2] == ':') { |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 446 | on_off->param_type = PARAM_LIST; |
| 447 | continue; |
| 448 | } |
| 449 | if (c == '+' && (s[2] == ':' || s[2] == '\0')) { |
| 450 | on_off->param_type = PARAM_INT; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 451 | continue; |
| 452 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 453 | if (c == ':' || c == '\0') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 454 | requires |= on_off->switch_on; |
| 455 | continue; |
| 456 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 457 | if (c == '-' && (s[2] == ':' || s[2] == '\0')) { |
"Vladimir N. Oleynik" | 4fc9220 | 2006-02-02 14:48:54 +0000 | [diff] [blame] | 458 | flags |= on_off->switch_on; |
| 459 | on_off->incongruously |= on_off->switch_on; |
| 460 | s++; |
| 461 | continue; |
| 462 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 463 | if (c == *s) { |
| 464 | on_off->counter = va_arg(p, int *); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 465 | s++; |
| 466 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 467 | pair = on_off; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 468 | pair_switch = &(pair->switch_on); |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 469 | for (s++; *s && *s != ':'; s++) { |
| 470 | if (*s == '?') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 471 | pair_switch = &(pair->requires); |
| 472 | } else if (*s == '-') { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 473 | if (pair_switch == &(pair->switch_off)) |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 474 | pair_switch = &(pair->incongruously); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 475 | else |
| 476 | pair_switch = &(pair->switch_off); |
| 477 | } else { |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 478 | for (on_off = complementary; on_off->opt_char; on_off++) |
| 479 | if (on_off->opt_char == *s) { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 480 | *pair_switch |= on_off->switch_on; |
| 481 | break; |
| 482 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 483 | } |
| 484 | } |
| 485 | s--; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 486 | } |
Denis Vlasenko | ff131b9 | 2007-04-10 15:42:06 +0000 | [diff] [blame] | 487 | va_end(p); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 488 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 489 | if (spec_flgs & FIRST_ARGV_IS_OPT) { |
| 490 | if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 491 | argv[1] = xasprintf("-%s", argv[1]); |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 492 | if (ENABLE_FEATURE_CLEAN_UP) |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 493 | spec_flgs |= FREE_FIRST_ARGV_IS_OPT; |
| 494 | } |
| 495 | } |
Denis Vlasenko | 24af720 | 2007-03-15 13:28:46 +0000 | [diff] [blame] | 496 | |
Denis Vlasenko | 9772816 | 2008-01-28 22:57:10 +0000 | [diff] [blame] | 497 | /* In case getopt32 was already called: |
| 498 | * reset the libc getopt() function, which keeps internal state. |
| 499 | * |
| 500 | * BSD-derived getopt() functions require that optind be set to 1 in |
| 501 | * order to reset getopt() state. This used to be generally accepted |
| 502 | * way of resetting getopt(). However, glibc's getopt() |
| 503 | * has additional getopt() state beyond optind, and requires that |
| 504 | * optind be set to zero to reset its state. So the unfortunate state of |
| 505 | * affairs is that BSD-derived versions of getopt() misbehave if |
| 506 | * optind is set to 0 in order to reset getopt(), and glibc's getopt() |
| 507 | * will core dump if optind is set 1 in order to reset getopt(). |
| 508 | * |
| 509 | * More modern versions of BSD require that optreset be set to 1 in |
| 510 | * order to reset getopt(). Sigh. Standards, anyone? |
| 511 | */ |
| 512 | #ifdef __GLIBC__ |
| 513 | optind = 0; |
| 514 | #else /* BSD style */ |
Denis Vlasenko | 24af720 | 2007-03-15 13:28:46 +0000 | [diff] [blame] | 515 | optind = 1; |
Denis Vlasenko | 9772816 | 2008-01-28 22:57:10 +0000 | [diff] [blame] | 516 | /* optreset = 1; */ |
| 517 | #endif |
| 518 | /* optarg = NULL; opterr = 0; optopt = 0; - do we need this?? */ |
Denis Vlasenko | 24af720 | 2007-03-15 13:28:46 +0000 | [diff] [blame] | 519 | |
Denis Vlasenko | 9772816 | 2008-01-28 22:57:10 +0000 | [diff] [blame] | 520 | /* Note: just "getopt() <= 0" will not work well for |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 521 | * "fake" short options, like this one: |
| 522 | * wget $'-\203' "Test: test" http://kernel.org/ |
| 523 | * (supposed to act as --header, but doesn't) */ |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 524 | #if ENABLE_GETOPT_LONG |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 525 | while ((c = getopt_long(argc, argv, applet_opts, |
Denis Vlasenko | 5bfcb4d | 2007-07-23 17:40:35 +0000 | [diff] [blame] | 526 | long_options, NULL)) != -1) { |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 527 | #else |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 528 | while ((c = getopt(argc, argv, applet_opts)) != -1) { |
Denis Vlasenko | 24af720 | 2007-03-15 13:28:46 +0000 | [diff] [blame] | 529 | #endif |
Denis Vlasenko | 9772816 | 2008-01-28 22:57:10 +0000 | [diff] [blame] | 530 | c &= 0xff; /* fight libc's sign extension */ |
Denis Vlasenko | 24af720 | 2007-03-15 13:28:46 +0000 | [diff] [blame] | 531 | loop_arg_is_opt: |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 532 | for (on_off = complementary; on_off->opt_char != c; on_off++) { |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 533 | /* c==0 if long opt have non NULL flag */ |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 534 | if (on_off->opt_char == '\0' && c != '\0') |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 535 | bb_show_usage(); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 536 | } |
Denis Vlasenko | 0919657 | 2007-07-21 13:27:44 +0000 | [diff] [blame] | 537 | if (flags & on_off->incongruously) |
| 538 | bb_show_usage(); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 539 | trigger = on_off->switch_on & on_off->switch_off; |
| 540 | flags &= ~(on_off->switch_off ^ trigger); |
| 541 | flags |= on_off->switch_on ^ trigger; |
| 542 | flags ^= trigger; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 543 | if (on_off->counter) |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 544 | (*(on_off->counter))++; |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 545 | if (on_off->param_type == PARAM_LIST) { |
Denis Vlasenko | 8d9f495 | 2007-04-08 15:08:42 +0000 | [diff] [blame] | 546 | llist_add_to_end((llist_t **)(on_off->optarg), optarg); |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 547 | } else if (on_off->param_type == PARAM_INT) { |
| 548 | *(unsigned*)(on_off->optarg) = xatoi_u(optarg); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 549 | } else if (on_off->optarg) { |
| 550 | *(char **)(on_off->optarg) = optarg; |
| 551 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 552 | if (pargv != NULL) |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 553 | break; |
| 554 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 555 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 556 | if (spec_flgs & ALL_ARGV_IS_OPTS) { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 557 | /* process argv is option, for example "ps" applet */ |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 558 | if (pargv == NULL) |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 559 | pargv = argv + optind; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 560 | while (*pargv) { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 561 | c = **pargv; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 562 | if (c == '\0') { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 563 | pargv++; |
| 564 | } else { |
| 565 | (*pargv)++; |
| 566 | goto loop_arg_is_opt; |
| 567 | } |
| 568 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 569 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 570 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 571 | #if (ENABLE_AR || ENABLE_TAR) && ENABLE_FEATURE_CLEAN_UP |
| 572 | if (spec_flgs & FREE_FIRST_ARGV_IS_OPT) |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 573 | free(argv[1]); |
| 574 | #endif |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 575 | /* check depending requires for given options */ |
Denis Vlasenko | 04e11c9 | 2008-02-10 19:44:20 +0000 | [diff] [blame^] | 576 | for (on_off = complementary; on_off->opt_char; on_off++) { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 577 | if (on_off->requires && (flags & on_off->switch_on) && |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 578 | (flags & on_off->requires) == 0) |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 579 | bb_show_usage(); |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 580 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 581 | if (requires && (flags & requires) == 0) |
| 582 | bb_show_usage(); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 583 | argc -= optind; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 584 | if (argc < min_arg || (max_arg >= 0 && argc > max_arg)) |
| 585 | bb_show_usage(); |
Denis Vlasenko | c12f530 | 2006-10-06 09:49:47 +0000 | [diff] [blame] | 586 | |
| 587 | option_mask32 = flags; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 588 | return flags; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 589 | } |