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