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