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