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