1 /* $OpenBSD: getopt_long.c,v 1.23 2007/10/31 12:34:57 chl Exp $ */
2 /* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */
5 * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>
6 * Copyright (c) 2008 coresystems GmbH
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 * Sponsored in part by the Defense Advanced Research Projects
21 * Agency (DARPA) and Air Force Research Laboratory, Air Force
22 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
25 * Copyright (c) 2000 The NetBSD Foundation, Inc.
26 * All rights reserved.
28 * This code is derived from software contributed to The NetBSD Foundation
29 * by Dieter Baron and Thomas Klausner.
31 * Redistribution and use in source and binary forms, with or without
32 * modification, are permitted provided that the following conditions
34 * 1. Redistributions of source code must retain the above copyright
35 * notice, this list of conditions and the following disclaimer.
36 * 2. Redistributions in binary form must reproduce the above copyright
37 * notice, this list of conditions and the following disclaimer in the
38 * documentation and/or other materials provided with the distribution.
40 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
41 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
42 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
44 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
45 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
46 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
47 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
48 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
50 * POSSIBILITY OF SUCH DAMAGE.
57 #include <commonlib/bsd/gcd.h>
58 #include <libpayload.h>
60 #define warnx(x...) printf(x)
63 #define REPLACE_GETOPT /* use this getopt as the system getopt(3) */
66 int opterr
= 1; /* if error message should be printed */
67 int optind
= 1; /* index into parent argv vector */
68 int optopt
= '?'; /* character checked for validity */
69 int optreset
; /* reset getopt */
70 char *optarg
; /* argument associated with option */
72 int posixly_correct
= 0;
75 #define PRINT_ERROR ((opterr) && (*options != ':'))
77 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
78 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
79 #define FLAG_LONGONLY 0x04 /* operate as getopt_long_only */
82 #define BADCH (int)'?'
83 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
84 #define INORDER (int)1
86 #define EMSG (char*)""
88 static int getopt_internal(int, char * const *, const char *,
89 const struct option
*, int *, int);
90 static int parse_long_options(char * const *, const char *,
91 const struct option
*, int *, int);
92 static void permute_args(int, int, int, char * const *);
94 static char *place
= EMSG
; /* option letter processing */
96 /* XXX: set optreset to 1 rather than these two */
97 static int nonopt_start
= -1; /* first non option argument (for permute) */
98 static int nonopt_end
= -1; /* first option after non options (for permute) */
101 static const char recargchar
[] = "option requires an argument -- %c";
102 static const char recargstring
[] = "option requires an argument -- %s";
103 static const char ambig
[] = "ambiguous option -- %.*s";
104 static const char noarg
[] = "option doesn't take an argument -- %.*s";
105 static const char illoptchar
[] = "unknown option -- %c";
106 static const char illoptstring
[] = "unknown option -- %s";
109 * Exchange the block from nonopt_start to nonopt_end with the block
110 * from nonopt_end to opt_end (keeping the same order of arguments
114 permute_args(int panonopt_start
, int panonopt_end
, int opt_end
,
117 int cstart
, cyclelen
, i
, j
, ncycle
, nnonopts
, nopts
, pos
;
121 * compute lengths of blocks and number and size of cycles
123 nnonopts
= panonopt_end
- panonopt_start
;
124 nopts
= opt_end
- panonopt_end
;
125 ncycle
= gcd(nnonopts
, nopts
);
126 cyclelen
= (opt_end
- panonopt_start
) / ncycle
;
128 for (i
= 0; i
< ncycle
; i
++) {
129 cstart
= panonopt_end
+i
;
131 for (j
= 0; j
< cyclelen
; j
++) {
132 if (pos
>= panonopt_end
)
137 /* LINTED const cast */
138 ((char **) nargv
)[pos
] = nargv
[cstart
];
139 /* LINTED const cast */
140 ((char **)nargv
)[cstart
] = swap
;
146 * parse_long_options --
147 * Parse long options in argc/argv argument vector.
148 * Returns -1 if short_too is set and the option does not match long_options.
151 parse_long_options(char * const *nargv
, const char *options
,
152 const struct option
*long_options
, int *idx
, int short_too
)
154 char *current_argv
, *has_equal
;
155 size_t current_argv_len
;
158 current_argv
= place
;
163 if ((has_equal
= strchr(current_argv
, '=')) != NULL
) {
164 /* argument found (--option=arg) */
165 current_argv_len
= has_equal
- current_argv
;
168 current_argv_len
= strlen(current_argv
);
170 for (i
= 0; long_options
[i
].name
; i
++) {
171 /* find matching long option */
172 if (strncmp(current_argv
, long_options
[i
].name
,
176 if (strlen(long_options
[i
].name
) == current_argv_len
) {
182 * If this is a known short option, don't allow
183 * a partial match of a single character.
185 if (short_too
&& current_argv_len
== 1)
188 if (match
== -1) /* partial match */
191 /* ambiguous abbreviation */
193 warnx(ambig
, (int)current_argv_len
,
199 if (match
!= -1) { /* option found */
200 if (long_options
[match
].has_arg
== no_argument
203 warnx(noarg
, (int)current_argv_len
,
206 * XXX: GNU sets optopt to val regardless of flag
208 if (long_options
[match
].flag
== NULL
)
209 optopt
= long_options
[match
].val
;
214 if (long_options
[match
].has_arg
== required_argument
||
215 long_options
[match
].has_arg
== optional_argument
) {
218 else if (long_options
[match
].has_arg
==
221 * optional argument doesn't use next nargv
223 optarg
= nargv
[optind
++];
226 if ((long_options
[match
].has_arg
== required_argument
)
227 && (optarg
== NULL
)) {
229 * Missing argument; leading ':' indicates no error
230 * should be generated.
236 * XXX: GNU sets optopt to val regardless of flag
238 if (long_options
[match
].flag
== NULL
)
239 optopt
= long_options
[match
].val
;
245 } else { /* unknown option */
251 warnx(illoptstring
, current_argv
);
257 if (long_options
[match
].flag
) {
258 *long_options
[match
].flag
= long_options
[match
].val
;
261 return (long_options
[match
].val
);
266 * Parse argc/argv argument vector. Called by user level routines.
269 getopt_internal(int nargc
, char * const *nargv
, const char *options
,
270 const struct option
*long_options
, int *idx
, int flags
)
272 char *oli
; /* option letter list index */
273 int optchar
, short_too
;
279 * Disable GNU extensions if posixly_correct is set or options
280 * string begins with a '+'.
282 if (posixly_correct
|| *options
== '+')
283 flags
&= ~FLAG_PERMUTE
;
284 else if (*options
== '-')
285 flags
|= FLAG_ALLARGS
;
286 if (*options
== '+' || *options
== '-')
290 * XXX Some GNU programs (like cvs) set optind to 0 instead of
291 * XXX using optreset. Work around this braindamage.
294 optind
= optreset
= 1;
298 nonopt_start
= nonopt_end
= -1;
300 if (optreset
|| !*place
) { /* update scanning pointer */
302 if (optind
>= nargc
) { /* end of argument vector */
304 if (nonopt_end
!= -1) {
305 /* do permutation, if we have to */
306 permute_args(nonopt_start
, nonopt_end
,
308 optind
-= nonopt_end
- nonopt_start
;
310 else if (nonopt_start
!= -1) {
312 * If we skipped non-options, set optind
313 * to the first of them.
315 optind
= nonopt_start
;
317 nonopt_start
= nonopt_end
= -1;
320 if (*(place
= nargv
[optind
]) != '-' ||
321 (place
[1] == '\0' && strchr(options
, '-') == NULL
)) {
322 place
= EMSG
; /* found non-option */
323 if (flags
& FLAG_ALLARGS
) {
326 * return non-option as argument to option 1
328 optarg
= nargv
[optind
++];
331 if (!(flags
& FLAG_PERMUTE
)) {
333 * If no permutation wanted, stop parsing
334 * at first non-option.
339 if (nonopt_start
== -1)
340 nonopt_start
= optind
;
341 else if (nonopt_end
!= -1) {
342 permute_args(nonopt_start
, nonopt_end
,
344 nonopt_start
= optind
-
345 (nonopt_end
- nonopt_start
);
349 /* process next argument */
352 if (nonopt_start
!= -1 && nonopt_end
== -1)
356 * If we have "-" do nothing, if "--" we are done.
358 if (place
[1] != '\0' && *++place
== '-' && place
[1] == '\0') {
362 * We found an option (--), so if we skipped
363 * non-options, we have to permute.
365 if (nonopt_end
!= -1) {
366 permute_args(nonopt_start
, nonopt_end
,
368 optind
-= nonopt_end
- nonopt_start
;
370 nonopt_start
= nonopt_end
= -1;
376 * Check long options if:
377 * 1) we were passed some
378 * 2) the arg is not just "-"
379 * 3) either the arg starts with -- we are getopt_long_only()
381 if (long_options
!= NULL
&& place
!= nargv
[optind
] &&
382 (*place
== '-' || (flags
& FLAG_LONGONLY
))) {
385 place
++; /* --foo long option */
386 else if (*place
!= ':' && strchr(options
, *place
) != NULL
)
387 short_too
= 1; /* could be short option too */
389 optchar
= parse_long_options(nargv
, options
, long_options
,
397 if ((optchar
= (int)*place
++) == (int)':' ||
398 (optchar
== (int)'-' && *place
!= '\0') ||
399 (oli
= strchr(options
, optchar
)) == NULL
) {
401 * If the user specified "-" and '-' isn't listed in
402 * options, return -1 (non-option) as per POSIX.
403 * Otherwise, it is an unknown option character (or ':').
405 if (optchar
== (int)'-' && *place
== '\0')
410 warnx(illoptchar
, optchar
);
414 if (long_options
!= NULL
&& optchar
== 'W' && oli
[1] == ';') {
416 if (*place
) /* no space */
418 else if (++optind
>= nargc
) { /* no arg */
421 warnx(recargchar
, optchar
);
424 } else /* white space */
425 place
= nargv
[optind
];
426 optchar
= parse_long_options(nargv
, options
, long_options
,
431 if (*++oli
!= ':') { /* doesn't take argument */
434 } else { /* takes (optional) argument */
436 if (*place
) /* no white space */
438 else if (oli
[1] != ':') { /* arg not optional */
439 if (++optind
>= nargc
) { /* no arg */
442 warnx(recargchar
, optchar
);
446 optarg
= nargv
[optind
];
451 /* dump back option letter */
455 #ifdef REPLACE_GETOPT
458 * Parse argc/argv argument vector.
460 * [eventually this will replace the BSD getopt]
463 getopt(int nargc
, char * const *nargv
, const char *options
)
467 * We don't pass FLAG_PERMUTE to getopt_internal() since
468 * the BSD getopt(3) (unlike GNU) has never done this.
470 * Furthermore, since many privileged programs call getopt()
471 * before dropping privileges it makes sense to keep things
472 * as simple (and bug-free) as possible.
474 return (getopt_internal(nargc
, nargv
, options
, NULL
, NULL
, 0));
476 #endif /* REPLACE_GETOPT */
480 * Parse argc/argv argument vector.
483 getopt_long(int nargc
, char * const *nargv
, const char *options
,
484 const struct option
*long_options
, int *idx
)
487 return (getopt_internal(nargc
, nargv
, options
, long_options
, idx
,
492 * getopt_long_only --
493 * Parse argc/argv argument vector.
496 getopt_long_only(int nargc
, char * const *nargv
, const char *options
,
497 const struct option
*long_options
, int *idx
)
500 return (getopt_internal(nargc
, nargv
, options
, long_options
, idx
,
501 FLAG_PERMUTE
|FLAG_LONGONLY
));