Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 3 | * universal getopt_ulflags 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 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include <getopt.h> |
| 24 | #include <string.h> |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 25 | #include <assert.h> |
| 26 | #include <stdlib.h> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 27 | #include "libbb.h" |
| 28 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 29 | /* Documentation ! |
| 30 | |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 31 | unsigned long |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 32 | bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...) |
| 33 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 34 | The command line options must be declared in const char |
| 35 | *applet_opts as a string of chars, for example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 36 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 37 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 38 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 39 | If one of the given options is found, a flag value is added to |
| 40 | the return value (an unsigned long). |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 41 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 42 | The flag value is determined by the position of the char in |
| 43 | applet_opts string. For example, in the above case: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 44 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 45 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 46 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 47 | "r" will add 1 (bit 1 : 0x01) |
| 48 | "n" will add 2 (bit 2 : 0x02) |
| 49 | "u will add 4 (bit 3 : 0x03) |
| 50 | "g" will add 8 (bit 4 : 0x04) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 51 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 52 | and so on. You can also look at the return value as a bit |
| 53 | field and each option sets one of bits. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 54 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 55 | ":" If one of the options requires an argument, then add a ":" |
| 56 | after the char in applet_opts and provide a pointer to store |
| 57 | the argument. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 58 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 59 | char *pointer_to_arg_for_a; |
| 60 | char *pointer_to_arg_for_b; |
| 61 | char *pointer_to_arg_for_c; |
| 62 | char *pointer_to_arg_for_d; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 63 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 64 | flags = bb_getopt_ulflags(argc, argv, "a:b:c:d:", |
| 65 | &pointer_to_arg_for_a, &pointer_to_arg_for_b, |
| 66 | &pointer_to_arg_for_c, &pointer_to_arg_for_d); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 67 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 68 | The type of the pointer (char* or llist_t *) may be controlled |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 69 | by the "::" special separator that is set in the external string |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 70 | bb_opt_complementally (see below for more info). |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 71 | |
Mike Frysinger | 992a58c | 2006-02-22 22:56:30 +0000 | [diff] [blame] | 72 | "+" If the first character in the applet_opts string is a plus, |
| 73 | then option processing will stop as soon as a non-option is |
| 74 | encountered in the argv array. Useful for applets like env |
| 75 | which should not process arguments to subprograms: |
| 76 | env -i ls -d / |
| 77 | Here we want env to process just the '-i', not the '-d'. |
| 78 | |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 79 | static const struct option bb_default_long_options[] |
| 80 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 81 | This struct allows you to define long options. The syntax for |
| 82 | declaring the array is just like that of getopt's longopts. |
| 83 | (see getopt(3)) |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 84 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 85 | static const struct option applet_long_options[] = { |
| 86 | { "verbose", 0, 0, v }, |
| 87 | { 0, 0, 0, 0 } |
| 88 | }; |
| 89 | bb_applet_long_options = applet_long_options; |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 90 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 91 | The last argument (val) can undefined from applet_opts. |
| 92 | If you use this, then: |
| 93 | - return bit have next position after short options |
| 94 | - if has_arg is not "no_argument", use ptr for arg also |
| 95 | - bb_opt_complementally have effects for this too |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 96 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 97 | Note: a good applet will make long options configurable via the |
| 98 | config process and not a required feature. The current standard |
| 99 | is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS. |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 100 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 101 | const char *bb_opt_complementally |
Mike Frysinger | 57f4cb2 | 2006-02-21 00:50:37 +0000 | [diff] [blame] | 102 | this should be bb_opt_complementary, but we'll just keep it as |
| 103 | bb_opt_complementally due to the Russian origins |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 104 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 105 | ":" The colon (":") is used to separate groups of two or more chars |
| 106 | and/or groups of chars and special characters (stating some |
| 107 | conditions to be checked). |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 108 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 109 | "abc" If groups of two or more chars are specified, the first char |
| 110 | is the main option and the other chars are secondary options. |
| 111 | Their flags will be turned on if the main option is found even |
| 112 | if they are not specifed on the command line. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 113 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 114 | bb_opt_complementally = "abc"; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 115 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 116 | flags = bb_getopt_ulflags(argc, argv, "abcd") |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 117 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 118 | If getopt() finds "-a" on the command line, then |
| 119 | bb_getopt_ulflags's return value will be as if "-a -b -c" were |
| 120 | found. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 121 | |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 122 | "ww" Adjacent double options have a counter associated which indicates |
"Vladimir N. Oleynik" | d1b6078 | 2005-10-05 12:44:52 +0000 | [diff] [blame] | 123 | the number of occurances of the option. |
| 124 | For example the ps applet needs: |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 125 | if w is given once, GNU ps sets the width to 132, |
| 126 | if w is given more than once, it is "unlimited" |
| 127 | |
| 128 | int w_counter = 0; |
| 129 | bb_opt_complementally = "ww"; |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 130 | bb_getopt_ulflags(argc, argv, "w", &w_counter); |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 131 | |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 132 | if(w_counter) |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 133 | width = (w_counter == 1) ? 132 : INT_MAX; |
| 134 | else |
| 135 | get_terminal_width(...&width...); |
| 136 | |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 137 | w_counter is a pointer to an integer. It has to be passed to |
| 138 | bb_getopt_ulflags() after all other option argument sinks. |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 139 | For example: accept multiple -v to indicate the level of verbosity |
| 140 | and for each -b optarg, add optarg to my_b. Finally, if b is given, |
| 141 | turn off c and vice versa: |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 142 | |
| 143 | llist_t *my_b = NULL; |
| 144 | int verbose_level = 0; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 145 | bb_opt_complementally = "vv:b::b-c:c-b"; |
"Vladimir N. Oleynik" | 4a5ce08 | 2005-10-05 13:58:40 +0000 | [diff] [blame] | 146 | f = bb_getopt_ulflags(argc, argv, "vb:c", &my_b, &verbose_level); |
| 147 | if((f & 2)) // -c after -b unset this -b flag |
| 148 | while (my_b) { dosomething_with(my_b->data) ; my_b = my_b->link; } |
| 149 | if(my_b) // but llist stored always if -b found |
| 150 | free_llist(my_b); |
| 151 | if (verbose_level) bb_printf("verbose level is %d\n", verbose_level); |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 152 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 153 | Special characters: |
| 154 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 155 | "-" A dash between two options causes the second of the two |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 156 | to be unset (and ignored or triggered) if it is given on |
| 157 | the command line. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 158 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 159 | For example: |
| 160 | The du applet has the options "-s" and "-d depth". If |
| 161 | bb_getopt_ulflags finds -s, then -d is unset or if it finds -d |
| 162 | then -s is unset. (Note: busybox implements the GNU |
| 163 | "--max-depth" option as "-d".) To obtain this behavior, you |
| 164 | set bb_opt_complementally = "s-d:d-s". Only one flag value is |
| 165 | added to bb_getopt_ulflags's return value depending on the |
| 166 | position of the options on the command line. If one of the |
| 167 | two options requires an argument pointer (":" in applet_opts |
| 168 | as in "d:") optarg is set accordingly. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 169 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 170 | char *smax_print_depth; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 171 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 172 | bb_opt_complementally = "s-d:d-s:x-x"; |
| 173 | opt = bb_getopt_ulflags(argc, argv, "sd:x", &smax_print_depth); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 174 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 175 | if (opt & 2) { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 176 | max_print_depth = atoi(smax_print_depth); |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 177 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 178 | if(opt & 4) |
| 179 | printf("Detected odd -x usaging\n"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 180 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 181 | "-" A dash as the first char in a bb_opt_complementally group means to |
Mike Frysinger | 57f4cb2 | 2006-02-21 00:50:37 +0000 | [diff] [blame] | 182 | convert the arguments as option. Next char for this case can't set |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 183 | [0-9], recomended use ':' or end of line. For example: |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 184 | |
"Vladimir N. Oleynik" | d1b6078 | 2005-10-05 12:44:52 +0000 | [diff] [blame] | 185 | bb_opt_complementally = "-:w-x:x-w"; |
| 186 | bb_getopt_ulflags(argc, argv, "wx"); |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 187 | |
"Vladimir N. Oleynik" | 4a5ce08 | 2005-10-05 13:58:40 +0000 | [diff] [blame] | 188 | Allows any arguments to be given without a dash (./program w x) |
| 189 | as well as with a dash (./program -x). Why unset -w see above. |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 190 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 191 | "-N" A dash as the first char in a bb_opt_complementally group with |
| 192 | number 0-9 as one char is means check minimal arguments required. |
| 193 | |
"Vladimir N. Oleynik" | 4fc9220 | 2006-02-02 14:48:54 +0000 | [diff] [blame] | 194 | "V-" A option with dash before colon or end line indicate: call |
| 195 | bb_show_usage if this option give, for example verbose |
| 196 | usage option. |
| 197 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 198 | "--" A double dash between two options, or between an option and a group |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 199 | of options, means that they are mutually exclusive. Unlike |
| 200 | the "-" case above, an error will be forced if the options |
| 201 | are used together. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 202 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 203 | For example: |
| 204 | The cut applet must have only one type of list specified, so |
| 205 | -b, -c and -f are mutally exclusive and should raise an error |
| 206 | if specified together. In this case you must set |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 207 | bb_opt_complementally = "b--cf:c--bf:f--bc". If two of the |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 208 | mutually exclusive options are found, bb_getopt_ulflags's |
| 209 | return value will have the error flag set (BB_GETOPT_ERROR) so |
| 210 | that we can check for it: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 211 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 212 | if (flags & BB_GETOPT_ERROR) |
| 213 | bb_show_usage(); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 214 | |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 215 | "?" A "ask" as the first char in a bb_opt_complementally group give: |
Mike Frysinger | 57f4cb2 | 2006-02-21 00:50:37 +0000 | [diff] [blame] | 216 | if previous point set BB_GETOPT_ERROR, don't return and |
| 217 | call previous example internally. Next char for this case can't |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 218 | set to [0-9], recomended use ':' or end of line. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 219 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 220 | "?N" A "ask" as the first char in a bb_opt_complementally group with |
| 221 | number 0-9 as one char is means check maximal arguments possible. |
| 222 | |
| 223 | "::" A double colon after a char in bb_opt_complementally means that the |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 224 | option can occur multiple times: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 225 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 226 | For example: |
| 227 | The grep applet can have one or more "-e pattern" arguments. |
| 228 | In this case you should use bb_getopt_ulflags() as follows: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 229 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 230 | llist_t *patterns = NULL; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 231 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 232 | (this pointer must be initializated to NULL if the list is empty |
| 233 | as required by *llist_add_to(llist_t *old_head, char *new_item).) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 234 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 235 | bb_opt_complementally = "e::"; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 236 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 237 | bb_getopt_ulflags(argc, argv, "e:", &patterns); |
| 238 | $ grep -e user -e root /etc/passwd |
| 239 | root:x:0:0:root:/root:/bin/bash |
| 240 | user:x:500:500::/home/user:/bin/bash |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 241 | |
Mike Frysinger | e17c80e | 2006-02-21 00:37:42 +0000 | [diff] [blame] | 242 | "--" A double dash at the beginning of bb_opt_complementally means the |
| 243 | argv[1] string should always be treated as options, even if it isn't |
| 244 | prefixed with a "-". This is to support the special syntax in applets |
| 245 | such as "ar" and "tar": |
| 246 | tar xvf foo.tar |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 247 | |
Mike Frysinger | e17c80e | 2006-02-21 00:37:42 +0000 | [diff] [blame] | 248 | "?" An "ask" between main and group options causes the second of the two |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 249 | to be depending required as or if first is given on the command line. |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 250 | For example from "id" applet: |
| 251 | |
| 252 | // Don't allow -n -r -rn -ug -rug -nug -rnug |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 253 | bb_opt_complementally = "r?ug:n?ug:?u--g:g--u"; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 254 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
| 255 | |
| 256 | This example allowed only: |
| 257 | $ id; id -u; id -g; id -ru; id -nu; id -rg; id -ng; id -rnu; id -rng |
| 258 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 259 | "X" A one options in bb_opt_complementally group means |
| 260 | requires this option always with "or" logic if more one specified, |
| 261 | checked after switch off from complementally logic. |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 262 | For example from "start-stop-daemon" applet: |
| 263 | |
| 264 | // Don't allow -KS -SK, but -S or -K required |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 265 | bb_opt_complementally = "K:S:?K--S:S--K"; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 266 | flags = bb_getopt_ulflags(argc, argv, "KS...); |
| 267 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 268 | |
| 269 | "x--x" give error if double or more used -x option |
| 270 | |
Mike Frysinger | 57f4cb2 | 2006-02-21 00:50:37 +0000 | [diff] [blame] | 271 | Don't forget ':' store. For example "?322-22-23X-x-a" interpretet as |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 272 | "?3:22:-2:2-2:2-3Xa:2--x": max args is 3, count -2 usaged, min args is 2, |
| 273 | -2 option triggered, unset -3 and -X and -a if -2 any usaged, give error if |
| 274 | after -2 the -x option usaged. |
| 275 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 276 | */ |
| 277 | |
Mike Frysinger | e17c80e | 2006-02-21 00:37:42 +0000 | [diff] [blame] | 278 | /* this should be bb_opt_complementary, but we'll just keep it as |
| 279 | bb_opt_complementally due to the Russian origins */ |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 280 | const char *bb_opt_complementally; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 281 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 282 | typedef struct { |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 283 | int opt; |
| 284 | int list_flg; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 285 | unsigned long switch_on; |
| 286 | unsigned long switch_off; |
| 287 | unsigned long incongruously; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 288 | unsigned long requires; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 289 | void **optarg; /* char **optarg or llist_t **optarg */ |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 290 | int *counter; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 291 | } t_complementally; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 292 | |
| 293 | /* You can set bb_applet_long_options for parse called long options */ |
| 294 | |
| 295 | static const struct option bb_default_long_options[] = { |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 296 | /* { "help", 0, NULL, '?' }, */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 297 | { 0, 0, 0, 0 } |
| 298 | }; |
| 299 | |
| 300 | const struct option *bb_applet_long_options = bb_default_long_options; |
| 301 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 302 | unsigned long |
| 303 | bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 304 | { |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 305 | unsigned long flags = 0; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 306 | unsigned long requires = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 307 | t_complementally complementally[sizeof(flags) * 8 + 1]; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 308 | int c; |
| 309 | const unsigned char *s; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 310 | t_complementally *on_off; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 311 | va_list p; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 312 | const struct option *l_o; |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 313 | unsigned long trigger; |
"Vladimir N. Oleynik" | f01e178 | 2006-01-09 13:28:31 +0000 | [diff] [blame] | 314 | #ifdef CONFIG_PS |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 315 | char **pargv = NULL; |
"Vladimir N. Oleynik" | f01e178 | 2006-01-09 13:28:31 +0000 | [diff] [blame] | 316 | #endif |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 317 | int min_arg = 0; |
| 318 | int max_arg = -1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 319 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 320 | #define SHOW_USAGE_IF_ERROR 1 |
| 321 | #define ALL_ARGV_IS_OPTS 2 |
| 322 | #define FIRST_ARGV_IS_OPT 4 |
| 323 | #define FREE_FIRST_ARGV_IS_OPT 8 |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 324 | int spec_flgs = 0; |
| 325 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 326 | va_start (p, applet_opts); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 327 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 328 | c = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 329 | on_off = complementally; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 330 | memset(on_off, 0, sizeof(complementally)); |
| 331 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 332 | /* skip GNU extension */ |
"Vladimir N. Oleynik" | bf968f7 | 2005-12-02 10:10:28 +0000 | [diff] [blame] | 333 | s = (const unsigned char *)applet_opts; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 334 | if(*s == '+' || *s == '-') |
| 335 | s++; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 336 | for (; *s; s++) { |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 337 | if(c >= (int)(sizeof(flags)*8)) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 338 | break; |
| 339 | on_off->opt = *s; |
| 340 | on_off->switch_on = (1 << c); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 341 | if (s[1] == ':') { |
| 342 | on_off->optarg = va_arg (p, void **); |
| 343 | do |
| 344 | s++; |
| 345 | while (s[1] == ':'); |
| 346 | } |
| 347 | on_off++; |
| 348 | c++; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 349 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 350 | |
| 351 | for(l_o = bb_applet_long_options; l_o->name; l_o++) { |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 352 | if(l_o->flag) |
| 353 | continue; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 354 | for(on_off = complementally; on_off->opt != 0; on_off++) |
| 355 | if(on_off->opt == l_o->val) |
| 356 | break; |
| 357 | if(on_off->opt == 0) { |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 358 | if(c >= (int)(sizeof(flags)*8)) |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 359 | break; |
| 360 | on_off->opt = l_o->val; |
| 361 | on_off->switch_on = (1 << c); |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 362 | if(l_o->has_arg != no_argument) |
| 363 | on_off->optarg = va_arg (p, void **); |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 364 | c++; |
| 365 | } |
| 366 | } |
"Vladimir N. Oleynik" | bf968f7 | 2005-12-02 10:10:28 +0000 | [diff] [blame] | 367 | for (s = (const unsigned char *)bb_opt_complementally; s && *s; s++) { |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 368 | t_complementally *pair; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 369 | unsigned long *pair_switch; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 370 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 371 | if (*s == ':') |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 372 | continue; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 373 | c = s[1]; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 374 | if(*s == '?') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 375 | if(c < '0' || c > '9') { |
| 376 | spec_flgs |= SHOW_USAGE_IF_ERROR; |
| 377 | } else { |
| 378 | max_arg = c - '0'; |
| 379 | s++; |
| 380 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 381 | continue; |
| 382 | } |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 383 | if(*s == '-') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 384 | if(c < '0' || c > '9') { |
| 385 | if(c == '-') { |
| 386 | spec_flgs |= FIRST_ARGV_IS_OPT; |
| 387 | s++; |
| 388 | } else |
| 389 | spec_flgs |= ALL_ARGV_IS_OPTS; |
| 390 | } else { |
| 391 | min_arg = c - '0'; |
| 392 | s++; |
| 393 | } |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 394 | continue; |
| 395 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 396 | for (on_off = complementally; on_off->opt; on_off++) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 397 | if (on_off->opt == *s) |
| 398 | break; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 399 | if(c == ':' && s[2] == ':') { |
| 400 | on_off->list_flg++; |
| 401 | continue; |
| 402 | } |
| 403 | if(c == ':' || c == '\0') { |
| 404 | requires |= on_off->switch_on; |
| 405 | continue; |
| 406 | } |
"Vladimir N. Oleynik" | 4fc9220 | 2006-02-02 14:48:54 +0000 | [diff] [blame] | 407 | if(c == '-' && (s[2] == ':' || s[2] == '\0')) { |
| 408 | flags |= on_off->switch_on; |
| 409 | on_off->incongruously |= on_off->switch_on; |
| 410 | s++; |
| 411 | continue; |
| 412 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 413 | if(c == *s) { |
| 414 | on_off->counter = va_arg (p, int *); |
| 415 | s++; |
| 416 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 417 | pair = on_off; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 418 | pair_switch = &(pair->switch_on); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 419 | for(s++; *s && *s != ':'; s++) { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 420 | if(*s == '?') { |
| 421 | pair_switch = &(pair->requires); |
| 422 | } else if (*s == '-') { |
| 423 | if(pair_switch == &(pair->switch_off)) |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 424 | pair_switch = &(pair->incongruously); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 425 | else |
| 426 | pair_switch = &(pair->switch_off); |
| 427 | } else { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 428 | for (on_off = complementally; on_off->opt; on_off++) |
| 429 | if (on_off->opt == *s) { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 430 | *pair_switch |= on_off->switch_on; |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 431 | break; |
| 432 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 433 | } |
| 434 | } |
| 435 | s--; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 436 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 437 | va_end (p); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 438 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 439 | #if defined(CONFIG_AR) || defined(CONFIG_TAR) |
| 440 | if((spec_flgs & FIRST_ARGV_IS_OPT)) { |
| 441 | if(argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') { |
| 442 | argv[1] = bb_xasprintf("-%s", argv[1]); |
| 443 | if(ENABLE_FEATURE_CLEAN_UP) |
| 444 | spec_flgs |= FREE_FIRST_ARGV_IS_OPT; |
| 445 | } |
| 446 | } |
| 447 | #endif |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 448 | while ((c = getopt_long (argc, argv, applet_opts, |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 449 | bb_applet_long_options, NULL)) >= 0) { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 450 | #ifdef CONFIG_PS |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 451 | loop_arg_is_opt: |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 452 | #endif |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 453 | for (on_off = complementally; on_off->opt != c; on_off++) { |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 454 | /* c==0 if long opt have non NULL flag */ |
| 455 | if(on_off->opt == 0 && c != 0) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 456 | bb_show_usage (); |
| 457 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 458 | if(flags & on_off->incongruously) { |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 459 | if((spec_flgs & SHOW_USAGE_IF_ERROR)) |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 460 | bb_show_usage (); |
Mike Frysinger | 348e84c | 2005-05-11 00:39:03 +0000 | [diff] [blame] | 461 | flags |= BB_GETOPT_ERROR; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 462 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 463 | trigger = on_off->switch_on & on_off->switch_off; |
| 464 | flags &= ~(on_off->switch_off ^ trigger); |
| 465 | flags |= on_off->switch_on ^ trigger; |
| 466 | flags ^= trigger; |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 467 | if(on_off->counter) |
| 468 | (*(on_off->counter))++; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 469 | if(on_off->list_flg) { |
| 470 | *(llist_t **)(on_off->optarg) = |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 471 | llist_add_to(*(llist_t **)(on_off->optarg), optarg); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 472 | } else if (on_off->optarg) { |
| 473 | *(char **)(on_off->optarg) = optarg; |
| 474 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 475 | #ifdef CONFIG_PS |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 476 | if(pargv != NULL) |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 477 | break; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 478 | #endif |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 479 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 480 | |
| 481 | #ifdef CONFIG_PS |
| 482 | if((spec_flgs & ALL_ARGV_IS_OPTS)) { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 483 | /* process argv is option, for example "ps" applet */ |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 484 | if(pargv == NULL) |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 485 | pargv = argv + optind; |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 486 | while(*pargv) { |
| 487 | c = **pargv; |
| 488 | if(c == '\0') { |
| 489 | pargv++; |
| 490 | } else { |
| 491 | (*pargv)++; |
| 492 | goto loop_arg_is_opt; |
| 493 | } |
| 494 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 495 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 496 | #endif |
| 497 | |
| 498 | #if (defined(CONFIG_AR) || defined(CONFIG_TAR)) && \ |
| 499 | defined(CONFIG_FEATURE_CLEAN_UP) |
| 500 | if((spec_flgs & FREE_FIRST_ARGV_IS_OPT)) |
| 501 | free(argv[1]); |
| 502 | #endif |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 503 | /* check depending requires for given options */ |
| 504 | for (on_off = complementally; on_off->opt; on_off++) { |
| 505 | if(on_off->requires && (flags & on_off->switch_on) && |
| 506 | (flags & on_off->requires) == 0) |
| 507 | bb_show_usage (); |
| 508 | } |
| 509 | if(requires && (flags & requires) == 0) |
| 510 | bb_show_usage (); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 511 | argc -= optind; |
| 512 | if(argc < min_arg || (max_arg >= 0 && argc > max_arg)) |
| 513 | bb_show_usage (); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 514 | return flags; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 515 | } |