getopt_long.c revision 1.22 1 1.22 christos /* $NetBSD: getopt_long.c,v 1.22 2007/11/06 19:13:16 christos Exp $ */
2 1.4 christos
3 1.4 christos /*-
4 1.4 christos * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 1.4 christos * All rights reserved.
6 1.4 christos *
7 1.4 christos * This code is derived from software contributed to The NetBSD Foundation
8 1.4 christos * by Dieter Baron and Thomas Klausner.
9 1.1 mcr *
10 1.1 mcr * Redistribution and use in source and binary forms, with or without
11 1.1 mcr * modification, are permitted provided that the following conditions
12 1.1 mcr * are met:
13 1.1 mcr * 1. Redistributions of source code must retain the above copyright
14 1.1 mcr * notice, this list of conditions and the following disclaimer.
15 1.1 mcr * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 mcr * notice, this list of conditions and the following disclaimer in the
17 1.1 mcr * documentation and/or other materials provided with the distribution.
18 1.1 mcr *
19 1.4 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.4 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.4 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.4 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.4 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.4 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.4 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.4 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.4 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.4 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.4 christos * POSSIBILITY OF SUCH DAMAGE.
30 1.1 mcr */
31 1.1 mcr
32 1.17 jmc #if HAVE_NBTOOL_CONFIG_H
33 1.17 jmc #include "nbtool_config.h"
34 1.17 jmc #endif
35 1.17 jmc
36 1.22 christos #if HAVE_NBTOOL_CONFIG_H && !HAVE_GETOPT_LONG && !HAVE_DECL_OPTIND
37 1.22 christos #define REPLACE_GETOPT
38 1.22 christos #endif
39 1.22 christos
40 1.22 christos #ifdef REPLACE_GETOPT
41 1.2 lukem #include <sys/cdefs.h>
42 1.4 christos #if defined(LIBC_SCCS) && !defined(lint)
43 1.22 christos __RCSID("$NetBSD: getopt_long.c,v 1.22 2007/11/06 19:13:16 christos Exp $");
44 1.4 christos #endif /* LIBC_SCCS and not lint */
45 1.2 lukem
46 1.5 christos #include "namespace.h"
47 1.5 christos
48 1.2 lukem #include <assert.h>
49 1.15 tv #include <err.h>
50 1.2 lukem #include <errno.h>
51 1.17 jmc #if HAVE_NBTOOL_CONFIG_H
52 1.17 jmc #include "compat_getopt.h"
53 1.17 jmc #else
54 1.15 tv #include <getopt.h>
55 1.17 jmc #endif
56 1.1 mcr #include <stdlib.h>
57 1.1 mcr #include <string.h>
58 1.4 christos
59 1.4 christos #ifdef __weak_alias
60 1.4 christos __weak_alias(getopt,_getopt)
61 1.4 christos #endif
62 1.4 christos int opterr = 1; /* if error message should be printed */
63 1.4 christos int optind = 1; /* index into parent argv vector */
64 1.4 christos int optopt = '?'; /* character checked for validity */
65 1.4 christos int optreset; /* reset getopt */
66 1.4 christos char *optarg; /* argument associated with option */
67 1.16 lukem #elif HAVE_NBTOOL_CONFIG_H && !HAVE_DECL_OPTRESET
68 1.14 tv static int optreset;
69 1.4 christos #endif
70 1.1 mcr
71 1.4 christos #ifdef __weak_alias
72 1.4 christos __weak_alias(getopt_long,_getopt_long)
73 1.4 christos #endif
74 1.2 lukem
75 1.15 tv #if !HAVE_GETOPT_LONG
76 1.4 christos #define IGNORE_FIRST (*options == '-' || *options == '+')
77 1.4 christos #define PRINT_ERROR ((opterr) && ((*options != ':') \
78 1.4 christos || (IGNORE_FIRST && options[1] != ':')))
79 1.4 christos #define IS_POSIXLY_CORRECT (getenv("POSIXLY_CORRECT") != NULL)
80 1.4 christos #define PERMUTE (!IS_POSIXLY_CORRECT && !IGNORE_FIRST)
81 1.4 christos /* XXX: GNU ignores PC if *options == '-' */
82 1.4 christos #define IN_ORDER (!IS_POSIXLY_CORRECT && *options == '-')
83 1.1 mcr
84 1.4 christos /* return values */
85 1.1 mcr #define BADCH (int)'?'
86 1.9 wiz #define BADARG ((IGNORE_FIRST && options[1] == ':') \
87 1.9 wiz || (*options == ':') ? (int)':' : (int)'?')
88 1.4 christos #define INORDER (int)1
89 1.4 christos
90 1.1 mcr #define EMSG ""
91 1.1 mcr
92 1.19 yamt static int getopt_internal __P((int, char **, const char *));
93 1.4 christos static int gcd __P((int, int));
94 1.19 yamt static void permute_args __P((int, int, int, char **));
95 1.4 christos
96 1.18 christos static const char *place = EMSG; /* option letter processing */
97 1.4 christos
98 1.4 christos /* XXX: set optreset to 1 rather than these two */
99 1.4 christos static int nonopt_start = -1; /* first non option argument (for permute) */
100 1.4 christos static int nonopt_end = -1; /* first option after non options (for permute) */
101 1.4 christos
102 1.4 christos /* Error messages */
103 1.6 nathanw static const char recargchar[] = "option requires an argument -- %c";
104 1.6 nathanw static const char recargstring[] = "option requires an argument -- %s";
105 1.4 christos static const char ambig[] = "ambiguous option -- %.*s";
106 1.4 christos static const char noarg[] = "option doesn't take an argument -- %.*s";
107 1.12 joda static const char illoptchar[] = "unknown option -- %c";
108 1.12 joda static const char illoptstring[] = "unknown option -- %s";
109 1.4 christos
110 1.4 christos
111 1.1 mcr /*
112 1.4 christos * Compute the greatest common divisor of a and b.
113 1.4 christos */
114 1.4 christos static int
115 1.4 christos gcd(a, b)
116 1.4 christos int a;
117 1.4 christos int b;
118 1.4 christos {
119 1.4 christos int c;
120 1.4 christos
121 1.4 christos c = a % b;
122 1.4 christos while (c != 0) {
123 1.4 christos a = b;
124 1.4 christos b = c;
125 1.4 christos c = a % b;
126 1.4 christos }
127 1.4 christos
128 1.4 christos return b;
129 1.4 christos }
130 1.4 christos
131 1.4 christos /*
132 1.4 christos * Exchange the block from nonopt_start to nonopt_end with the block
133 1.4 christos * from nonopt_end to opt_end (keeping the same order of arguments
134 1.4 christos * in each block).
135 1.4 christos */
136 1.4 christos static void
137 1.13 lukem permute_args(panonopt_start, panonopt_end, opt_end, nargv)
138 1.13 lukem int panonopt_start;
139 1.13 lukem int panonopt_end;
140 1.4 christos int opt_end;
141 1.19 yamt char **nargv;
142 1.4 christos {
143 1.4 christos int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos;
144 1.4 christos char *swap;
145 1.4 christos
146 1.10 lukem _DIAGASSERT(nargv != NULL);
147 1.10 lukem
148 1.4 christos /*
149 1.4 christos * compute lengths of blocks and number and size of cycles
150 1.4 christos */
151 1.13 lukem nnonopts = panonopt_end - panonopt_start;
152 1.13 lukem nopts = opt_end - panonopt_end;
153 1.4 christos ncycle = gcd(nnonopts, nopts);
154 1.13 lukem cyclelen = (opt_end - panonopt_start) / ncycle;
155 1.4 christos
156 1.4 christos for (i = 0; i < ncycle; i++) {
157 1.13 lukem cstart = panonopt_end+i;
158 1.4 christos pos = cstart;
159 1.4 christos for (j = 0; j < cyclelen; j++) {
160 1.13 lukem if (pos >= panonopt_end)
161 1.4 christos pos -= nnonopts;
162 1.4 christos else
163 1.4 christos pos += nopts;
164 1.4 christos swap = nargv[pos];
165 1.19 yamt nargv[pos] = nargv[cstart];
166 1.19 yamt nargv[cstart] = swap;
167 1.4 christos }
168 1.4 christos }
169 1.4 christos }
170 1.4 christos
171 1.4 christos /*
172 1.4 christos * getopt_internal --
173 1.4 christos * Parse argc/argv argument vector. Called by user level routines.
174 1.4 christos * Returns -2 if -- is found (can be long option or end of options marker).
175 1.1 mcr */
176 1.4 christos static int
177 1.4 christos getopt_internal(nargc, nargv, options)
178 1.1 mcr int nargc;
179 1.19 yamt char **nargv;
180 1.4 christos const char *options;
181 1.1 mcr {
182 1.1 mcr char *oli; /* option letter list index */
183 1.4 christos int optchar;
184 1.1 mcr
185 1.2 lukem _DIAGASSERT(nargv != NULL);
186 1.4 christos _DIAGASSERT(options != NULL);
187 1.4 christos
188 1.4 christos optarg = NULL;
189 1.8 thorpej
190 1.8 thorpej /*
191 1.8 thorpej * XXX Some programs (like rsyncd) expect to be able to
192 1.8 thorpej * XXX re-initialize optind to 0 and have getopt_long(3)
193 1.8 thorpej * XXX properly function again. Work around this braindamage.
194 1.8 thorpej */
195 1.8 thorpej if (optind == 0)
196 1.8 thorpej optind = 1;
197 1.2 lukem
198 1.4 christos if (optreset)
199 1.4 christos nonopt_start = nonopt_end = -1;
200 1.4 christos start:
201 1.1 mcr if (optreset || !*place) { /* update scanning pointer */
202 1.1 mcr optreset = 0;
203 1.4 christos if (optind >= nargc) { /* end of argument vector */
204 1.4 christos place = EMSG;
205 1.4 christos if (nonopt_end != -1) {
206 1.4 christos /* do permutation, if we have to */
207 1.4 christos permute_args(nonopt_start, nonopt_end,
208 1.4 christos optind, nargv);
209 1.4 christos optind -= nonopt_end - nonopt_start;
210 1.4 christos }
211 1.4 christos else if (nonopt_start != -1) {
212 1.4 christos /*
213 1.4 christos * If we skipped non-options, set optind
214 1.4 christos * to the first of them.
215 1.4 christos */
216 1.4 christos optind = nonopt_start;
217 1.4 christos }
218 1.4 christos nonopt_start = nonopt_end = -1;
219 1.4 christos return -1;
220 1.4 christos }
221 1.9 wiz if ((*(place = nargv[optind]) != '-')
222 1.9 wiz || (place[1] == '\0')) { /* found non-option */
223 1.1 mcr place = EMSG;
224 1.4 christos if (IN_ORDER) {
225 1.4 christos /*
226 1.4 christos * GNU extension:
227 1.4 christos * return non-option as argument to option 1
228 1.4 christos */
229 1.4 christos optarg = nargv[optind++];
230 1.4 christos return INORDER;
231 1.4 christos }
232 1.4 christos if (!PERMUTE) {
233 1.4 christos /*
234 1.4 christos * if no permutation wanted, stop parsing
235 1.4 christos * at first non-option
236 1.4 christos */
237 1.4 christos return -1;
238 1.4 christos }
239 1.4 christos /* do permutation */
240 1.4 christos if (nonopt_start == -1)
241 1.4 christos nonopt_start = optind;
242 1.4 christos else if (nonopt_end != -1) {
243 1.4 christos permute_args(nonopt_start, nonopt_end,
244 1.4 christos optind, nargv);
245 1.4 christos nonopt_start = optind -
246 1.4 christos (nonopt_end - nonopt_start);
247 1.4 christos nonopt_end = -1;
248 1.4 christos }
249 1.4 christos optind++;
250 1.4 christos /* process next argument */
251 1.4 christos goto start;
252 1.1 mcr }
253 1.4 christos if (nonopt_start != -1 && nonopt_end == -1)
254 1.4 christos nonopt_end = optind;
255 1.1 mcr if (place[1] && *++place == '-') { /* found "--" */
256 1.4 christos place++;
257 1.4 christos return -2;
258 1.4 christos }
259 1.4 christos }
260 1.4 christos if ((optchar = (int)*place++) == (int)':' ||
261 1.4 christos (oli = strchr(options + (IGNORE_FIRST ? 1 : 0), optchar)) == NULL) {
262 1.4 christos /* option letter unknown or ':' */
263 1.4 christos if (!*place)
264 1.4 christos ++optind;
265 1.4 christos if (PRINT_ERROR)
266 1.6 nathanw warnx(illoptchar, optchar);
267 1.4 christos optopt = optchar;
268 1.4 christos return BADCH;
269 1.4 christos }
270 1.4 christos if (optchar == 'W' && oli[1] == ';') { /* -W long-option */
271 1.4 christos /* XXX: what if no long options provided (called by getopt)? */
272 1.4 christos if (*place)
273 1.4 christos return -2;
274 1.4 christos
275 1.4 christos if (++optind >= nargc) { /* no arg */
276 1.1 mcr place = EMSG;
277 1.4 christos if (PRINT_ERROR)
278 1.6 nathanw warnx(recargchar, optchar);
279 1.4 christos optopt = optchar;
280 1.4 christos return BADARG;
281 1.4 christos } else /* white space */
282 1.4 christos place = nargv[optind];
283 1.1 mcr /*
284 1.4 christos * Handle -W arg the same as --arg (which causes getopt to
285 1.4 christos * stop parsing).
286 1.1 mcr */
287 1.4 christos return -2;
288 1.4 christos }
289 1.4 christos if (*++oli != ':') { /* doesn't take argument */
290 1.1 mcr if (!*place)
291 1.1 mcr ++optind;
292 1.4 christos } else { /* takes (optional) argument */
293 1.1 mcr optarg = NULL;
294 1.1 mcr if (*place) /* no white space */
295 1.18 christos optarg = __UNCONST(place);
296 1.4 christos /* XXX: disable test for :: if PC? (GNU doesn't) */
297 1.4 christos else if (oli[1] != ':') { /* arg not optional */
298 1.4 christos if (++optind >= nargc) { /* no arg */
299 1.4 christos place = EMSG;
300 1.4 christos if (PRINT_ERROR)
301 1.6 nathanw warnx(recargchar, optchar);
302 1.4 christos optopt = optchar;
303 1.4 christos return BADARG;
304 1.4 christos } else
305 1.4 christos optarg = nargv[optind];
306 1.4 christos }
307 1.1 mcr place = EMSG;
308 1.1 mcr ++optind;
309 1.1 mcr }
310 1.4 christos /* dump back option letter */
311 1.4 christos return optchar;
312 1.1 mcr }
313 1.1 mcr
314 1.4 christos #ifdef REPLACE_GETOPT
315 1.1 mcr /*
316 1.1 mcr * getopt --
317 1.1 mcr * Parse argc/argv argument vector.
318 1.4 christos *
319 1.4 christos * [eventually this will replace the real getopt]
320 1.1 mcr */
321 1.1 mcr int
322 1.4 christos getopt(nargc, nargv, options)
323 1.1 mcr int nargc;
324 1.1 mcr char * const *nargv;
325 1.4 christos const char *options;
326 1.1 mcr {
327 1.1 mcr int retval;
328 1.10 lukem
329 1.10 lukem _DIAGASSERT(nargv != NULL);
330 1.10 lukem _DIAGASSERT(options != NULL);
331 1.1 mcr
332 1.19 yamt retval = getopt_internal(nargc, __UNCONST(nargv), options);
333 1.19 yamt if (retval == -2) {
334 1.4 christos ++optind;
335 1.4 christos /*
336 1.4 christos * We found an option (--), so if we skipped non-options,
337 1.4 christos * we have to permute.
338 1.4 christos */
339 1.4 christos if (nonopt_end != -1) {
340 1.4 christos permute_args(nonopt_start, nonopt_end, optind,
341 1.4 christos nargv);
342 1.4 christos optind -= nonopt_end - nonopt_start;
343 1.4 christos }
344 1.4 christos nonopt_start = nonopt_end = -1;
345 1.1 mcr retval = -1;
346 1.1 mcr }
347 1.4 christos return retval;
348 1.1 mcr }
349 1.1 mcr #endif
350 1.1 mcr
351 1.1 mcr /*
352 1.1 mcr * getopt_long --
353 1.1 mcr * Parse argc/argv argument vector.
354 1.1 mcr */
355 1.1 mcr int
356 1.4 christos getopt_long(nargc, nargv, options, long_options, idx)
357 1.2 lukem int nargc;
358 1.4 christos char * const *nargv;
359 1.4 christos const char *options;
360 1.4 christos const struct option *long_options;
361 1.4 christos int *idx;
362 1.1 mcr {
363 1.1 mcr int retval;
364 1.1 mcr
365 1.21 ginsbach #define IDENTICAL_INTERPRETATION(_x, _y) \
366 1.21 ginsbach (long_options[(_x)].has_arg == long_options[(_y)].has_arg && \
367 1.21 ginsbach long_options[(_x)].flag == long_options[(_y)].flag && \
368 1.21 ginsbach long_options[(_x)].val == long_options[(_y)].val)
369 1.21 ginsbach
370 1.2 lukem _DIAGASSERT(nargv != NULL);
371 1.4 christos _DIAGASSERT(options != NULL);
372 1.2 lukem _DIAGASSERT(long_options != NULL);
373 1.4 christos /* idx may be NULL */
374 1.2 lukem
375 1.19 yamt retval = getopt_internal(nargc, __UNCONST(nargv), options);
376 1.19 yamt if (retval == -2) {
377 1.4 christos char *current_argv, *has_equal;
378 1.4 christos size_t current_argv_len;
379 1.21 ginsbach int i, ambiguous, match;
380 1.1 mcr
381 1.18 christos current_argv = __UNCONST(place);
382 1.4 christos match = -1;
383 1.21 ginsbach ambiguous = 0;
384 1.4 christos
385 1.4 christos optind++;
386 1.4 christos place = EMSG;
387 1.4 christos
388 1.4 christos if (*current_argv == '\0') { /* found "--" */
389 1.4 christos /*
390 1.4 christos * We found an option (--), so if we skipped
391 1.4 christos * non-options, we have to permute.
392 1.4 christos */
393 1.4 christos if (nonopt_end != -1) {
394 1.4 christos permute_args(nonopt_start, nonopt_end,
395 1.19 yamt optind, __UNCONST(nargv));
396 1.4 christos optind -= nonopt_end - nonopt_start;
397 1.4 christos }
398 1.4 christos nonopt_start = nonopt_end = -1;
399 1.4 christos return -1;
400 1.1 mcr }
401 1.1 mcr if ((has_equal = strchr(current_argv, '=')) != NULL) {
402 1.4 christos /* argument found (--option=arg) */
403 1.1 mcr current_argv_len = has_equal - current_argv;
404 1.1 mcr has_equal++;
405 1.1 mcr } else
406 1.1 mcr current_argv_len = strlen(current_argv);
407 1.4 christos
408 1.4 christos for (i = 0; long_options[i].name; i++) {
409 1.4 christos /* find matching long option */
410 1.4 christos if (strncmp(current_argv, long_options[i].name,
411 1.4 christos current_argv_len))
412 1.1 mcr continue;
413 1.1 mcr
414 1.4 christos if (strlen(long_options[i].name) ==
415 1.4 christos (unsigned)current_argv_len) {
416 1.4 christos /* exact match */
417 1.1 mcr match = i;
418 1.21 ginsbach ambiguous = 0;
419 1.1 mcr break;
420 1.1 mcr }
421 1.4 christos if (match == -1) /* partial match */
422 1.1 mcr match = i;
423 1.21 ginsbach else if (!IDENTICAL_INTERPRETATION(i, match))
424 1.21 ginsbach ambiguous = 1;
425 1.21 ginsbach }
426 1.21 ginsbach if (ambiguous) {
427 1.21 ginsbach /* ambiguous abbreviation */
428 1.21 ginsbach if (PRINT_ERROR)
429 1.21 ginsbach warnx(ambig, (int)current_argv_len,
430 1.21 ginsbach current_argv);
431 1.21 ginsbach optopt = 0;
432 1.21 ginsbach return BADCH;
433 1.1 mcr }
434 1.4 christos if (match != -1) { /* option found */
435 1.4 christos if (long_options[match].has_arg == no_argument
436 1.4 christos && has_equal) {
437 1.4 christos if (PRINT_ERROR)
438 1.7 sommerfe warnx(noarg, (int)current_argv_len,
439 1.4 christos current_argv);
440 1.4 christos /*
441 1.4 christos * XXX: GNU sets optopt to val regardless of
442 1.4 christos * flag
443 1.4 christos */
444 1.4 christos if (long_options[match].flag == NULL)
445 1.4 christos optopt = long_options[match].val;
446 1.4 christos else
447 1.4 christos optopt = 0;
448 1.4 christos return BADARG;
449 1.4 christos }
450 1.1 mcr if (long_options[match].has_arg == required_argument ||
451 1.1 mcr long_options[match].has_arg == optional_argument) {
452 1.1 mcr if (has_equal)
453 1.1 mcr optarg = has_equal;
454 1.4 christos else if (long_options[match].has_arg ==
455 1.4 christos required_argument) {
456 1.4 christos /*
457 1.4 christos * optional argument doesn't use
458 1.4 christos * next nargv
459 1.4 christos */
460 1.1 mcr optarg = nargv[optind++];
461 1.4 christos }
462 1.1 mcr }
463 1.1 mcr if ((long_options[match].has_arg == required_argument)
464 1.1 mcr && (optarg == NULL)) {
465 1.1 mcr /*
466 1.4 christos * Missing argument; leading ':'
467 1.1 mcr * indicates no error should be generated
468 1.1 mcr */
469 1.4 christos if (PRINT_ERROR)
470 1.6 nathanw warnx(recargstring, current_argv);
471 1.4 christos /*
472 1.4 christos * XXX: GNU sets optopt to val regardless
473 1.4 christos * of flag
474 1.4 christos */
475 1.4 christos if (long_options[match].flag == NULL)
476 1.4 christos optopt = long_options[match].val;
477 1.4 christos else
478 1.4 christos optopt = 0;
479 1.4 christos --optind;
480 1.4 christos return BADARG;
481 1.4 christos }
482 1.4 christos } else { /* unknown option */
483 1.4 christos if (PRINT_ERROR)
484 1.6 nathanw warnx(illoptstring, current_argv);
485 1.4 christos optopt = 0;
486 1.4 christos return BADCH;
487 1.1 mcr }
488 1.1 mcr if (long_options[match].flag) {
489 1.1 mcr *long_options[match].flag = long_options[match].val;
490 1.1 mcr retval = 0;
491 1.1 mcr } else
492 1.1 mcr retval = long_options[match].val;
493 1.4 christos if (idx)
494 1.4 christos *idx = match;
495 1.1 mcr }
496 1.4 christos return retval;
497 1.21 ginsbach #undef IDENTICAL_INTERPRETATION
498 1.1 mcr }
499 1.15 tv #endif /* !GETOPT_LONG */
500