xref: /freebsd/lib/libc/stdlib/getopt_long.c (revision 884853990228f21399dab271192fa6f2724278a2)
1829a229dSAndrey A. Chernov /*	$OpenBSD: getopt_long.c,v 1.16 2004/02/04 18:17:25 millert Exp $	*/
2a35a7e76SEric Melville /*	$NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $	*/
3a35a7e76SEric Melville 
4829a229dSAndrey A. Chernov /*
5829a229dSAndrey A. Chernov  * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>
6829a229dSAndrey A. Chernov  *
7829a229dSAndrey A. Chernov  * Permission to use, copy, modify, and distribute this software for any
8829a229dSAndrey A. Chernov  * purpose with or without fee is hereby granted, provided that the above
9829a229dSAndrey A. Chernov  * copyright notice and this permission notice appear in all copies.
10829a229dSAndrey A. Chernov  *
11829a229dSAndrey A. Chernov  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12829a229dSAndrey A. Chernov  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13829a229dSAndrey A. Chernov  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14829a229dSAndrey A. Chernov  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15829a229dSAndrey A. Chernov  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16829a229dSAndrey A. Chernov  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17829a229dSAndrey A. Chernov  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18829a229dSAndrey A. Chernov  *
19829a229dSAndrey A. Chernov  * Sponsored in part by the Defense Advanced Research Projects
20829a229dSAndrey A. Chernov  * Agency (DARPA) and Air Force Research Laboratory, Air Force
21829a229dSAndrey A. Chernov  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
22829a229dSAndrey A. Chernov  */
23a35a7e76SEric Melville /*-
24a35a7e76SEric Melville  * Copyright (c) 2000 The NetBSD Foundation, Inc.
25a35a7e76SEric Melville  * All rights reserved.
26a35a7e76SEric Melville  *
27a35a7e76SEric Melville  * This code is derived from software contributed to The NetBSD Foundation
28a35a7e76SEric Melville  * by Dieter Baron and Thomas Klausner.
29a35a7e76SEric Melville  *
30a35a7e76SEric Melville  * Redistribution and use in source and binary forms, with or without
31a35a7e76SEric Melville  * modification, are permitted provided that the following conditions
32a35a7e76SEric Melville  * are met:
33a35a7e76SEric Melville  * 1. Redistributions of source code must retain the above copyright
34a35a7e76SEric Melville  *    notice, this list of conditions and the following disclaimer.
35a35a7e76SEric Melville  * 2. Redistributions in binary form must reproduce the above copyright
36a35a7e76SEric Melville  *    notice, this list of conditions and the following disclaimer in the
37a35a7e76SEric Melville  *    documentation and/or other materials provided with the distribution.
38a35a7e76SEric Melville  * 3. All advertising materials mentioning features or use of this software
39a35a7e76SEric Melville  *    must display the following acknowledgement:
40a35a7e76SEric Melville  *        This product includes software developed by the NetBSD
41a35a7e76SEric Melville  *        Foundation, Inc. and its contributors.
42a35a7e76SEric Melville  * 4. Neither the name of The NetBSD Foundation nor the names of its
43a35a7e76SEric Melville  *    contributors may be used to endorse or promote products derived
44a35a7e76SEric Melville  *    from this software without specific prior written permission.
45a35a7e76SEric Melville  *
46a35a7e76SEric Melville  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
47a35a7e76SEric Melville  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
48a35a7e76SEric Melville  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
49a35a7e76SEric Melville  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
50a35a7e76SEric Melville  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
51a35a7e76SEric Melville  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
52a35a7e76SEric Melville  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
53a35a7e76SEric Melville  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
54a35a7e76SEric Melville  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
55a35a7e76SEric Melville  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
56a35a7e76SEric Melville  * POSSIBILITY OF SUCH DAMAGE.
57a35a7e76SEric Melville  */
58a35a7e76SEric Melville 
59829a229dSAndrey A. Chernov #if 0
60a35a7e76SEric Melville #if defined(LIBC_SCCS) && !defined(lint)
61829a229dSAndrey A. Chernov static char *rcsid = "$OpenBSD: getopt_long.c,v 1.16 2004/02/04 18:17:25 millert Exp $";
62a35a7e76SEric Melville #endif /* LIBC_SCCS and not lint */
63829a229dSAndrey A. Chernov #endif
64829a229dSAndrey A. Chernov #include <sys/cdefs.h>
65829a229dSAndrey A. Chernov __FBSDID("$FreeBSD$");
66a35a7e76SEric Melville 
67a35a7e76SEric Melville #include <err.h>
68a35a7e76SEric Melville #include <errno.h>
69a35a7e76SEric Melville #include <getopt.h>
70a35a7e76SEric Melville #include <stdlib.h>
71a35a7e76SEric Melville #include <string.h>
72a35a7e76SEric Melville 
73f2fd86b7SAndrey A. Chernov #define GNU_COMPATIBLE		/* Be more compatible, configure's use us! */
74f2fd86b7SAndrey A. Chernov 
75f2fd86b7SAndrey A. Chernov #ifndef GNU_COMPATIBLE
76829a229dSAndrey A. Chernov #define	REPLACE_GETOPT		/* use this getopt as the system getopt(3) */
77a35a7e76SEric Melville #endif
78a35a7e76SEric Melville 
79a35a7e76SEric Melville #ifdef REPLACE_GETOPT
80a35a7e76SEric Melville int	opterr = 1;		/* if error message should be printed */
81a35a7e76SEric Melville int	optind = 1;		/* index into parent argv vector */
82a35a7e76SEric Melville int	optopt = '?';		/* character checked for validity */
83a35a7e76SEric Melville int	optreset;		/* reset getopt */
84a35a7e76SEric Melville char    *optarg;		/* argument associated with option */
85a35a7e76SEric Melville #endif
86a35a7e76SEric Melville 
87829a229dSAndrey A. Chernov #define PRINT_ERROR	((opterr) && (*options != ':'))
88a35a7e76SEric Melville 
89829a229dSAndrey A. Chernov #define FLAG_PERMUTE	0x01	/* permute non-options to the end of argv */
90829a229dSAndrey A. Chernov #define FLAG_ALLARGS	0x02	/* treat non-options as args to option "-1" */
91829a229dSAndrey A. Chernov #define FLAG_LONGONLY	0x04	/* operate as getopt_long_only */
92a35a7e76SEric Melville 
93a35a7e76SEric Melville /* return values */
94a35a7e76SEric Melville #define	BADCH		(int)'?'
95829a229dSAndrey A. Chernov #define	BADARG		((*options == ':') ? (int)':' : (int)'?')
96a35a7e76SEric Melville #define	INORDER 	(int)1
97a35a7e76SEric Melville 
98a35a7e76SEric Melville #define	EMSG		""
99a35a7e76SEric Melville 
1009f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
1019f06a99eSAndrey A. Chernov #define NO_PREFIX	(-1)
1029f06a99eSAndrey A. Chernov #define D_PREFIX	0
1039f06a99eSAndrey A. Chernov #define DD_PREFIX	1
1049f06a99eSAndrey A. Chernov #define W_PREFIX	2
1059f06a99eSAndrey A. Chernov #endif
1069f06a99eSAndrey A. Chernov 
107829a229dSAndrey A. Chernov static int getopt_internal(int, char * const *, const char *,
108829a229dSAndrey A. Chernov 			   const struct option *, int *, int);
109829a229dSAndrey A. Chernov static int parse_long_options(char * const *, const char *,
110829a229dSAndrey A. Chernov 			      const struct option *, int *, int);
111e6fc380cSAlfred Perlstein static int gcd(int, int);
112e6fc380cSAlfred Perlstein static void permute_args(int, int, int, char * const *);
113a35a7e76SEric Melville 
114a35a7e76SEric Melville static char *place = EMSG; /* option letter processing */
115a35a7e76SEric Melville 
116a35a7e76SEric Melville /* XXX: set optreset to 1 rather than these two */
117a35a7e76SEric Melville static int nonopt_start = -1; /* first non option argument (for permute) */
118a35a7e76SEric Melville static int nonopt_end = -1;   /* first option after non options (for permute) */
119a35a7e76SEric Melville 
120a35a7e76SEric Melville /* Error messages */
121a35a7e76SEric Melville static const char recargchar[] = "option requires an argument -- %c";
1229f06a99eSAndrey A. Chernov static const char illoptchar[] = "illegal option -- %c"; /* From P1003.2 */
123f2fd86b7SAndrey A. Chernov #ifdef GNU_COMPATIBLE
1249f06a99eSAndrey A. Chernov static int dash_prefix = NO_PREFIX;
125f2fd86b7SAndrey A. Chernov static const char gnuoptchar[] = "invalid option -- %c";
126f2fd86b7SAndrey A. Chernov 
1279f06a99eSAndrey A. Chernov static const char recargstring[] = "option `%s%s' requires an argument";
1289f06a99eSAndrey A. Chernov static const char ambig[] = "option `%s%.*s' is ambiguous";
1299f06a99eSAndrey A. Chernov static const char noarg[] = "option `%s%.*s' doesn't allow an argument";
1309f06a99eSAndrey A. Chernov static const char illoptstring[] = "unrecognized option `%s%s'";
131f2fd86b7SAndrey A. Chernov #else
132a35a7e76SEric Melville static const char recargstring[] = "option requires an argument -- %s";
133a35a7e76SEric Melville static const char ambig[] = "ambiguous option -- %.*s";
134a35a7e76SEric Melville static const char noarg[] = "option doesn't take an argument -- %.*s";
135a35a7e76SEric Melville static const char illoptstring[] = "unknown option -- %s";
136f2fd86b7SAndrey A. Chernov #endif
137a35a7e76SEric Melville 
138a35a7e76SEric Melville /*
139a35a7e76SEric Melville  * Compute the greatest common divisor of a and b.
140a35a7e76SEric Melville  */
141a35a7e76SEric Melville static int
142829a229dSAndrey A. Chernov gcd(int a, int b)
143a35a7e76SEric Melville {
144a35a7e76SEric Melville 	int c;
145a35a7e76SEric Melville 
146a35a7e76SEric Melville 	c = a % b;
147a35a7e76SEric Melville 	while (c != 0) {
148a35a7e76SEric Melville 		a = b;
149a35a7e76SEric Melville 		b = c;
150a35a7e76SEric Melville 		c = a % b;
151a35a7e76SEric Melville 	}
152a35a7e76SEric Melville 
153829a229dSAndrey A. Chernov 	return (b);
154a35a7e76SEric Melville }
155a35a7e76SEric Melville 
156a35a7e76SEric Melville /*
157a35a7e76SEric Melville  * Exchange the block from nonopt_start to nonopt_end with the block
158a35a7e76SEric Melville  * from nonopt_end to opt_end (keeping the same order of arguments
159a35a7e76SEric Melville  * in each block).
160a35a7e76SEric Melville  */
161a35a7e76SEric Melville static void
162829a229dSAndrey A. Chernov permute_args(int panonopt_start, int panonopt_end, int opt_end,
163829a229dSAndrey A. Chernov 	char * const *nargv)
164a35a7e76SEric Melville {
165a35a7e76SEric Melville 	int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos;
166a35a7e76SEric Melville 	char *swap;
167a35a7e76SEric Melville 
168a35a7e76SEric Melville 	/*
169a35a7e76SEric Melville 	 * compute lengths of blocks and number and size of cycles
170a35a7e76SEric Melville 	 */
171a35a7e76SEric Melville 	nnonopts = panonopt_end - panonopt_start;
172a35a7e76SEric Melville 	nopts = opt_end - panonopt_end;
173a35a7e76SEric Melville 	ncycle = gcd(nnonopts, nopts);
174a35a7e76SEric Melville 	cyclelen = (opt_end - panonopt_start) / ncycle;
175a35a7e76SEric Melville 
176a35a7e76SEric Melville 	for (i = 0; i < ncycle; i++) {
177a35a7e76SEric Melville 		cstart = panonopt_end+i;
178a35a7e76SEric Melville 		pos = cstart;
179a35a7e76SEric Melville 		for (j = 0; j < cyclelen; j++) {
180a35a7e76SEric Melville 			if (pos >= panonopt_end)
181a35a7e76SEric Melville 				pos -= nnonopts;
182a35a7e76SEric Melville 			else
183a35a7e76SEric Melville 				pos += nopts;
184a35a7e76SEric Melville 			swap = nargv[pos];
185a35a7e76SEric Melville 			/* LINTED const cast */
186a35a7e76SEric Melville 			((char **) nargv)[pos] = nargv[cstart];
187a35a7e76SEric Melville 			/* LINTED const cast */
188a35a7e76SEric Melville 			((char **)nargv)[cstart] = swap;
189a35a7e76SEric Melville 		}
190a35a7e76SEric Melville 	}
191a35a7e76SEric Melville }
192a35a7e76SEric Melville 
193a35a7e76SEric Melville /*
194829a229dSAndrey A. Chernov  * parse_long_options --
195829a229dSAndrey A. Chernov  *	Parse long options in argc/argv argument vector.
196829a229dSAndrey A. Chernov  * Returns -1 if short_too is set and the option does not match long_options.
197a35a7e76SEric Melville  */
198a35a7e76SEric Melville static int
199829a229dSAndrey A. Chernov parse_long_options(char * const *nargv, const char *options,
200829a229dSAndrey A. Chernov 	const struct option *long_options, int *idx, int short_too)
201a35a7e76SEric Melville {
202829a229dSAndrey A. Chernov 	char *current_argv, *has_equal;
2039f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
2049f06a99eSAndrey A. Chernov 	char *current_dash;
2059f06a99eSAndrey A. Chernov #endif
206829a229dSAndrey A. Chernov 	size_t current_argv_len;
207829a229dSAndrey A. Chernov 	int i, match;
208a35a7e76SEric Melville 
209829a229dSAndrey A. Chernov 	current_argv = place;
2109f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
2119f06a99eSAndrey A. Chernov 	switch (dash_prefix) {
2129f06a99eSAndrey A. Chernov 		case D_PREFIX:
2139f06a99eSAndrey A. Chernov 			current_dash = "-";
2149f06a99eSAndrey A. Chernov 			break;
2159f06a99eSAndrey A. Chernov 		case DD_PREFIX:
2169f06a99eSAndrey A. Chernov 			current_dash = "--";
2179f06a99eSAndrey A. Chernov 			break;
2189f06a99eSAndrey A. Chernov 		case W_PREFIX:
2199f06a99eSAndrey A. Chernov 			current_dash = "-W ";
2209f06a99eSAndrey A. Chernov 			break;
2219f06a99eSAndrey A. Chernov 		default:
2229f06a99eSAndrey A. Chernov 			current_dash = "";
2239f06a99eSAndrey A. Chernov 			break;
2249f06a99eSAndrey A. Chernov 	}
2259f06a99eSAndrey A. Chernov #endif
226829a229dSAndrey A. Chernov 	match = -1;
227a35a7e76SEric Melville 
228829a229dSAndrey A. Chernov 	optind++;
229829a229dSAndrey A. Chernov 
230829a229dSAndrey A. Chernov 	if ((has_equal = strchr(current_argv, '=')) != NULL) {
231829a229dSAndrey A. Chernov 		/* argument found (--option=arg) */
232829a229dSAndrey A. Chernov 		current_argv_len = has_equal - current_argv;
233829a229dSAndrey A. Chernov 		has_equal++;
234829a229dSAndrey A. Chernov 	} else
235829a229dSAndrey A. Chernov 		current_argv_len = strlen(current_argv);
236829a229dSAndrey A. Chernov 
237829a229dSAndrey A. Chernov 	for (i = 0; long_options[i].name; i++) {
238829a229dSAndrey A. Chernov 		/* find matching long option */
239829a229dSAndrey A. Chernov 		if (strncmp(current_argv, long_options[i].name,
240829a229dSAndrey A. Chernov 		    current_argv_len))
241829a229dSAndrey A. Chernov 			continue;
242829a229dSAndrey A. Chernov 
243829a229dSAndrey A. Chernov 		if (strlen(long_options[i].name) == current_argv_len) {
244829a229dSAndrey A. Chernov 			/* exact match */
245829a229dSAndrey A. Chernov 			match = i;
246829a229dSAndrey A. Chernov 			break;
247829a229dSAndrey A. Chernov 		}
248829a229dSAndrey A. Chernov 		/*
249829a229dSAndrey A. Chernov 		 * If this is a known short option, don't allow
250829a229dSAndrey A. Chernov 		 * a partial match of a single character.
251829a229dSAndrey A. Chernov 		 */
252829a229dSAndrey A. Chernov 		if (short_too && current_argv_len == 1)
253829a229dSAndrey A. Chernov 			continue;
254829a229dSAndrey A. Chernov 
255829a229dSAndrey A. Chernov 		if (match == -1)	/* partial match */
256829a229dSAndrey A. Chernov 			match = i;
257829a229dSAndrey A. Chernov 		else {
258829a229dSAndrey A. Chernov 			/* ambiguous abbreviation */
259829a229dSAndrey A. Chernov 			if (PRINT_ERROR)
2609f06a99eSAndrey A. Chernov 				warnx(ambig,
2619f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
2629f06a99eSAndrey A. Chernov 				     current_dash,
2639f06a99eSAndrey A. Chernov #endif
2649f06a99eSAndrey A. Chernov 				     (int)current_argv_len,
265829a229dSAndrey A. Chernov 				     current_argv);
266829a229dSAndrey A. Chernov 			optopt = 0;
267829a229dSAndrey A. Chernov 			return (BADCH);
268829a229dSAndrey A. Chernov 		}
269829a229dSAndrey A. Chernov 	}
270829a229dSAndrey A. Chernov 	if (match != -1) {		/* option found */
271829a229dSAndrey A. Chernov 		if (long_options[match].has_arg == no_argument
272829a229dSAndrey A. Chernov 		    && has_equal) {
273829a229dSAndrey A. Chernov 			if (PRINT_ERROR)
2749f06a99eSAndrey A. Chernov 				warnx(noarg,
2759f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
2769f06a99eSAndrey A. Chernov 				     current_dash,
2779f06a99eSAndrey A. Chernov #endif
2789f06a99eSAndrey A. Chernov 				     (int)current_argv_len,
279829a229dSAndrey A. Chernov 				     current_argv);
280829a229dSAndrey A. Chernov 			/*
281829a229dSAndrey A. Chernov 			 * XXX: GNU sets optopt to val regardless of flag
282829a229dSAndrey A. Chernov 			 */
283829a229dSAndrey A. Chernov 			if (long_options[match].flag == NULL)
284829a229dSAndrey A. Chernov 				optopt = long_options[match].val;
285829a229dSAndrey A. Chernov 			else
286829a229dSAndrey A. Chernov 				optopt = 0;
28788485399SAndrey A. Chernov #ifdef GNU_COMPATIBLE
28888485399SAndrey A. Chernov 			return (BADCH);
28988485399SAndrey A. Chernov #else
290829a229dSAndrey A. Chernov 			return (BADARG);
29188485399SAndrey A. Chernov #endif
292829a229dSAndrey A. Chernov 		}
293829a229dSAndrey A. Chernov 		if (long_options[match].has_arg == required_argument ||
294829a229dSAndrey A. Chernov 		    long_options[match].has_arg == optional_argument) {
295829a229dSAndrey A. Chernov 			if (has_equal)
296829a229dSAndrey A. Chernov 				optarg = has_equal;
297829a229dSAndrey A. Chernov 			else if (long_options[match].has_arg ==
298829a229dSAndrey A. Chernov 			    required_argument) {
299829a229dSAndrey A. Chernov 				/*
300829a229dSAndrey A. Chernov 				 * optional argument doesn't use next nargv
301829a229dSAndrey A. Chernov 				 */
302829a229dSAndrey A. Chernov 				optarg = nargv[optind++];
303829a229dSAndrey A. Chernov 			}
304829a229dSAndrey A. Chernov 		}
305829a229dSAndrey A. Chernov 		if ((long_options[match].has_arg == required_argument)
306829a229dSAndrey A. Chernov 		    && (optarg == NULL)) {
307829a229dSAndrey A. Chernov 			/*
308829a229dSAndrey A. Chernov 			 * Missing argument; leading ':' indicates no error
309829a229dSAndrey A. Chernov 			 * should be generated.
310829a229dSAndrey A. Chernov 			 */
311829a229dSAndrey A. Chernov 			if (PRINT_ERROR)
312829a229dSAndrey A. Chernov 				warnx(recargstring,
3139f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
3149f06a99eSAndrey A. Chernov 				    current_dash,
3159f06a99eSAndrey A. Chernov #endif
316829a229dSAndrey A. Chernov 				    current_argv);
317829a229dSAndrey A. Chernov 			/*
318829a229dSAndrey A. Chernov 			 * XXX: GNU sets optopt to val regardless of flag
319829a229dSAndrey A. Chernov 			 */
320829a229dSAndrey A. Chernov 			if (long_options[match].flag == NULL)
321829a229dSAndrey A. Chernov 				optopt = long_options[match].val;
322829a229dSAndrey A. Chernov 			else
323829a229dSAndrey A. Chernov 				optopt = 0;
324829a229dSAndrey A. Chernov 			--optind;
325829a229dSAndrey A. Chernov 			return (BADARG);
326829a229dSAndrey A. Chernov 		}
327829a229dSAndrey A. Chernov 	} else {			/* unknown option */
328829a229dSAndrey A. Chernov 		if (short_too) {
329829a229dSAndrey A. Chernov 			--optind;
330829a229dSAndrey A. Chernov 			return (-1);
331829a229dSAndrey A. Chernov 		}
332829a229dSAndrey A. Chernov 		if (PRINT_ERROR)
3339f06a99eSAndrey A. Chernov 			warnx(illoptstring,
3349f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
3359f06a99eSAndrey A. Chernov 			      current_dash,
3369f06a99eSAndrey A. Chernov #endif
3379f06a99eSAndrey A. Chernov 			      current_argv);
338829a229dSAndrey A. Chernov 		optopt = 0;
339829a229dSAndrey A. Chernov 		return (BADCH);
340829a229dSAndrey A. Chernov 	}
341829a229dSAndrey A. Chernov 	if (idx)
342829a229dSAndrey A. Chernov 		*idx = match;
343829a229dSAndrey A. Chernov 	if (long_options[match].flag) {
344829a229dSAndrey A. Chernov 		*long_options[match].flag = long_options[match].val;
345829a229dSAndrey A. Chernov 		return (0);
346829a229dSAndrey A. Chernov 	} else
347829a229dSAndrey A. Chernov 		return (long_options[match].val);
348829a229dSAndrey A. Chernov }
349a35a7e76SEric Melville 
350a35a7e76SEric Melville /*
351829a229dSAndrey A. Chernov  * getopt_internal --
352829a229dSAndrey A. Chernov  *	Parse argc/argv argument vector.  Called by user level routines.
353829a229dSAndrey A. Chernov  */
354829a229dSAndrey A. Chernov static int
355829a229dSAndrey A. Chernov getopt_internal(int nargc, char * const *nargv, const char *options,
356829a229dSAndrey A. Chernov 	const struct option *long_options, int *idx, int flags)
357829a229dSAndrey A. Chernov {
358829a229dSAndrey A. Chernov 	char *oli;				/* option letter list index */
359829a229dSAndrey A. Chernov 	int optchar, short_too;
360f2fd86b7SAndrey A. Chernov 	int posixly_correct;
361829a229dSAndrey A. Chernov 
362829a229dSAndrey A. Chernov 	if (options == NULL)
363829a229dSAndrey A. Chernov 		return (-1);
364829a229dSAndrey A. Chernov 
365829a229dSAndrey A. Chernov 	/*
366829a229dSAndrey A. Chernov 	 * Disable GNU extensions if POSIXLY_CORRECT is set or options
367829a229dSAndrey A. Chernov 	 * string begins with a '+'.
368829a229dSAndrey A. Chernov 	 */
369829a229dSAndrey A. Chernov 	posixly_correct = (getenv("POSIXLY_CORRECT") != NULL);
370f2fd86b7SAndrey A. Chernov #ifdef GNU_COMPATIBLE
371ee43cb7aSAndrey A. Chernov 	if (*options == '-')
372829a229dSAndrey A. Chernov 		flags |= FLAG_ALLARGS;
373f2fd86b7SAndrey A. Chernov 	else if (posixly_correct || *options == '+')
374f2fd86b7SAndrey A. Chernov 		flags &= ~FLAG_PERMUTE;
375f2fd86b7SAndrey A. Chernov #else
376f2fd86b7SAndrey A. Chernov 	if (posixly_correct || *options == '+')
377f2fd86b7SAndrey A. Chernov 		flags &= ~FLAG_PERMUTE;
378f2fd86b7SAndrey A. Chernov 	else if (*options == '-')
379f2fd86b7SAndrey A. Chernov 		flags |= FLAG_ALLARGS;
380f2fd86b7SAndrey A. Chernov #endif
381829a229dSAndrey A. Chernov 	if (*options == '+' || *options == '-')
382829a229dSAndrey A. Chernov 		options++;
383829a229dSAndrey A. Chernov 
384829a229dSAndrey A. Chernov 	/*
385829a229dSAndrey A. Chernov 	 * XXX Some GNU programs (like cvs) set optind to 0 instead of
386829a229dSAndrey A. Chernov 	 * XXX using optreset.  Work around this braindamage.
387a35a7e76SEric Melville 	 */
388a35a7e76SEric Melville 	if (optind == 0)
389829a229dSAndrey A. Chernov 		optind = optreset = 1;
390a35a7e76SEric Melville 
391829a229dSAndrey A. Chernov 	optarg = NULL;
392a35a7e76SEric Melville 	if (optreset)
393a35a7e76SEric Melville 		nonopt_start = nonopt_end = -1;
394a35a7e76SEric Melville start:
395a35a7e76SEric Melville 	if (optreset || !*place) {		/* update scanning pointer */
396a35a7e76SEric Melville 		optreset = 0;
397a35a7e76SEric Melville 		if (optind >= nargc) {          /* end of argument vector */
398a35a7e76SEric Melville 			place = EMSG;
399a35a7e76SEric Melville 			if (nonopt_end != -1) {
400a35a7e76SEric Melville 				/* do permutation, if we have to */
401a35a7e76SEric Melville 				permute_args(nonopt_start, nonopt_end,
402a35a7e76SEric Melville 				    optind, nargv);
403a35a7e76SEric Melville 				optind -= nonopt_end - nonopt_start;
404a35a7e76SEric Melville 			}
405a35a7e76SEric Melville 			else if (nonopt_start != -1) {
406a35a7e76SEric Melville 				/*
407a35a7e76SEric Melville 				 * If we skipped non-options, set optind
408a35a7e76SEric Melville 				 * to the first of them.
409a35a7e76SEric Melville 				 */
410a35a7e76SEric Melville 				optind = nonopt_start;
411a35a7e76SEric Melville 			}
412a35a7e76SEric Melville 			nonopt_start = nonopt_end = -1;
413829a229dSAndrey A. Chernov 			return (-1);
414a35a7e76SEric Melville 		}
415829a229dSAndrey A. Chernov 		if (*(place = nargv[optind]) != '-' ||
416829a229dSAndrey A. Chernov 		    (place[1] == '\0' && strchr(options, '-') == NULL)) {
417829a229dSAndrey A. Chernov 			place = EMSG;		/* found non-option */
418829a229dSAndrey A. Chernov 			if (flags & FLAG_ALLARGS) {
419a35a7e76SEric Melville 				/*
420a35a7e76SEric Melville 				 * GNU extension:
421a35a7e76SEric Melville 				 * return non-option as argument to option 1
422a35a7e76SEric Melville 				 */
423a35a7e76SEric Melville 				optarg = nargv[optind++];
424829a229dSAndrey A. Chernov 				return (INORDER);
425a35a7e76SEric Melville 			}
426829a229dSAndrey A. Chernov 			if (!(flags & FLAG_PERMUTE)) {
427a35a7e76SEric Melville 				/*
428829a229dSAndrey A. Chernov 				 * If no permutation wanted, stop parsing
429829a229dSAndrey A. Chernov 				 * at first non-option.
430a35a7e76SEric Melville 				 */
431829a229dSAndrey A. Chernov 				return (-1);
432a35a7e76SEric Melville 			}
433a35a7e76SEric Melville 			/* do permutation */
434a35a7e76SEric Melville 			if (nonopt_start == -1)
435a35a7e76SEric Melville 				nonopt_start = optind;
436a35a7e76SEric Melville 			else if (nonopt_end != -1) {
437a35a7e76SEric Melville 				permute_args(nonopt_start, nonopt_end,
438a35a7e76SEric Melville 				    optind, nargv);
439a35a7e76SEric Melville 				nonopt_start = optind -
440a35a7e76SEric Melville 				    (nonopt_end - nonopt_start);
441a35a7e76SEric Melville 				nonopt_end = -1;
442a35a7e76SEric Melville 			}
443a35a7e76SEric Melville 			optind++;
444a35a7e76SEric Melville 			/* process next argument */
445a35a7e76SEric Melville 			goto start;
446a35a7e76SEric Melville 		}
447a35a7e76SEric Melville 		if (nonopt_start != -1 && nonopt_end == -1)
448a35a7e76SEric Melville 			nonopt_end = optind;
449829a229dSAndrey A. Chernov 
450829a229dSAndrey A. Chernov 		/*
451829a229dSAndrey A. Chernov 		 * If we have "-" do nothing, if "--" we are done.
452829a229dSAndrey A. Chernov 		 */
453829a229dSAndrey A. Chernov 		if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
454829a229dSAndrey A. Chernov 			optind++;
455829a229dSAndrey A. Chernov 			place = EMSG;
456829a229dSAndrey A. Chernov 			/*
457829a229dSAndrey A. Chernov 			 * We found an option (--), so if we skipped
458829a229dSAndrey A. Chernov 			 * non-options, we have to permute.
459829a229dSAndrey A. Chernov 			 */
460829a229dSAndrey A. Chernov 			if (nonopt_end != -1) {
461829a229dSAndrey A. Chernov 				permute_args(nonopt_start, nonopt_end,
462829a229dSAndrey A. Chernov 				    optind, nargv);
463829a229dSAndrey A. Chernov 				optind -= nonopt_end - nonopt_start;
464829a229dSAndrey A. Chernov 			}
465829a229dSAndrey A. Chernov 			nonopt_start = nonopt_end = -1;
466829a229dSAndrey A. Chernov 			return (-1);
467a35a7e76SEric Melville 		}
468a35a7e76SEric Melville 	}
469829a229dSAndrey A. Chernov 
470829a229dSAndrey A. Chernov 	/*
471829a229dSAndrey A. Chernov 	 * Check long options if:
472829a229dSAndrey A. Chernov 	 *  1) we were passed some
473829a229dSAndrey A. Chernov 	 *  2) the arg is not just "-"
474829a229dSAndrey A. Chernov 	 *  3) either the arg starts with -- we are getopt_long_only()
475829a229dSAndrey A. Chernov 	 */
476829a229dSAndrey A. Chernov 	if (long_options != NULL && place != nargv[optind] &&
477829a229dSAndrey A. Chernov 	    (*place == '-' || (flags & FLAG_LONGONLY))) {
478829a229dSAndrey A. Chernov 		short_too = 0;
4799f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
4809f06a99eSAndrey A. Chernov 		dash_prefix = D_PREFIX;
4819f06a99eSAndrey A. Chernov #endif
4829f06a99eSAndrey A. Chernov 		if (*place == '-') {
483829a229dSAndrey A. Chernov 			place++;		/* --foo long option */
4849f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
4859f06a99eSAndrey A. Chernov 			dash_prefix = DD_PREFIX;
4869f06a99eSAndrey A. Chernov #endif
4879f06a99eSAndrey A. Chernov 		} else if (*place != ':' && strchr(options, *place) != NULL)
488829a229dSAndrey A. Chernov 			short_too = 1;		/* could be short option too */
489829a229dSAndrey A. Chernov 
490829a229dSAndrey A. Chernov 		optchar = parse_long_options(nargv, options, long_options,
491829a229dSAndrey A. Chernov 		    idx, short_too);
492829a229dSAndrey A. Chernov 		if (optchar != -1) {
493829a229dSAndrey A. Chernov 			place = EMSG;
494829a229dSAndrey A. Chernov 			return (optchar);
495829a229dSAndrey A. Chernov 		}
496829a229dSAndrey A. Chernov 	}
497829a229dSAndrey A. Chernov 
498a35a7e76SEric Melville 	if ((optchar = (int)*place++) == (int)':' ||
499829a229dSAndrey A. Chernov 	    (optchar == (int)'-' && *place != '\0') ||
500829a229dSAndrey A. Chernov 	    (oli = strchr(options, optchar)) == NULL) {
501829a229dSAndrey A. Chernov 		/*
502829a229dSAndrey A. Chernov 		 * If the user specified "-" and  '-' isn't listed in
503829a229dSAndrey A. Chernov 		 * options, return -1 (non-option) as per POSIX.
504829a229dSAndrey A. Chernov 		 * Otherwise, it is an unknown option character (or ':').
505829a229dSAndrey A. Chernov 		 */
506829a229dSAndrey A. Chernov 		if (optchar == (int)'-' && *place == '\0')
507829a229dSAndrey A. Chernov 			return (-1);
508a35a7e76SEric Melville 		if (!*place)
509a35a7e76SEric Melville 			++optind;
510f2fd86b7SAndrey A. Chernov #ifdef GNU_COMPATIBLE
511f2fd86b7SAndrey A. Chernov 		if (PRINT_ERROR)
512f2fd86b7SAndrey A. Chernov 			warnx(posixly_correct ? illoptchar : gnuoptchar,
513f2fd86b7SAndrey A. Chernov 			      optchar);
514f2fd86b7SAndrey A. Chernov #else
515a35a7e76SEric Melville 		if (PRINT_ERROR)
516a35a7e76SEric Melville 			warnx(illoptchar, optchar);
517f2fd86b7SAndrey A. Chernov #endif
518a35a7e76SEric Melville 		optopt = optchar;
519829a229dSAndrey A. Chernov 		return (BADCH);
520a35a7e76SEric Melville 	}
521829a229dSAndrey A. Chernov 	if (long_options != NULL && optchar == 'W' && oli[1] == ';') {
522829a229dSAndrey A. Chernov 		/* -W long-option */
523829a229dSAndrey A. Chernov 		if (*place)			/* no space */
524829a229dSAndrey A. Chernov 			/* NOTHING */;
525829a229dSAndrey A. Chernov 		else if (++optind >= nargc) {	/* no arg */
526a35a7e76SEric Melville 			place = EMSG;
527a35a7e76SEric Melville 			if (PRINT_ERROR)
528a35a7e76SEric Melville 				warnx(recargchar, optchar);
529a35a7e76SEric Melville 			optopt = optchar;
530829a229dSAndrey A. Chernov 			return (BADARG);
531a35a7e76SEric Melville 		} else				/* white space */
532a35a7e76SEric Melville 			place = nargv[optind];
5339f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
5349f06a99eSAndrey A. Chernov 		dash_prefix = W_PREFIX;
5359f06a99eSAndrey A. Chernov #endif
536829a229dSAndrey A. Chernov 		optchar = parse_long_options(nargv, options, long_options,
537829a229dSAndrey A. Chernov 		    idx, 0);
538829a229dSAndrey A. Chernov 		place = EMSG;
539829a229dSAndrey A. Chernov 		return (optchar);
540a35a7e76SEric Melville 	}
541a35a7e76SEric Melville 	if (*++oli != ':') {			/* doesn't take argument */
542a35a7e76SEric Melville 		if (!*place)
543a35a7e76SEric Melville 			++optind;
544a35a7e76SEric Melville 	} else {				/* takes (optional) argument */
545a35a7e76SEric Melville 		optarg = NULL;
546a35a7e76SEric Melville 		if (*place)			/* no white space */
547a35a7e76SEric Melville 			optarg = place;
548a35a7e76SEric Melville 		/* XXX: disable test for :: if PC? (GNU doesn't) */
549a35a7e76SEric Melville 		else if (oli[1] != ':') {	/* arg not optional */
550a35a7e76SEric Melville 			if (++optind >= nargc) {	/* no arg */
551a35a7e76SEric Melville 				place = EMSG;
552a35a7e76SEric Melville 				if (PRINT_ERROR)
553a35a7e76SEric Melville 					warnx(recargchar, optchar);
554a35a7e76SEric Melville 				optopt = optchar;
555829a229dSAndrey A. Chernov 				return (BADARG);
556a35a7e76SEric Melville 			} else
557a35a7e76SEric Melville 				optarg = nargv[optind];
558829a229dSAndrey A. Chernov 		} else if (!(flags & FLAG_PERMUTE)) {
559829a229dSAndrey A. Chernov 			/*
560829a229dSAndrey A. Chernov 			 * If permutation is disabled, we can accept an
561829a229dSAndrey A. Chernov 			 * optional arg separated by whitespace.
562829a229dSAndrey A. Chernov 			 */
563829a229dSAndrey A. Chernov 			if (optind + 1 < nargc)
564829a229dSAndrey A. Chernov 				optarg = nargv[++optind];
565a35a7e76SEric Melville 		}
566a35a7e76SEric Melville 		place = EMSG;
567a35a7e76SEric Melville 		++optind;
568a35a7e76SEric Melville 	}
569a35a7e76SEric Melville 	/* dump back option letter */
570829a229dSAndrey A. Chernov 	return (optchar);
571a35a7e76SEric Melville }
572a35a7e76SEric Melville 
573a35a7e76SEric Melville #ifdef REPLACE_GETOPT
574a35a7e76SEric Melville /*
575a35a7e76SEric Melville  * getopt --
576a35a7e76SEric Melville  *	Parse argc/argv argument vector.
577a35a7e76SEric Melville  *
578829a229dSAndrey A. Chernov  * [eventually this will replace the BSD getopt]
579a35a7e76SEric Melville  */
580a35a7e76SEric Melville int
581829a229dSAndrey A. Chernov getopt(int nargc, char * const *nargv, const char *options)
582a35a7e76SEric Melville {
583a35a7e76SEric Melville 
584a35a7e76SEric Melville 	/*
585829a229dSAndrey A. Chernov 	 * We don't pass FLAG_PERMUTE to getopt_internal() since
586829a229dSAndrey A. Chernov 	 * the BSD getopt(3) (unlike GNU) has never done this.
587829a229dSAndrey A. Chernov 	 *
588829a229dSAndrey A. Chernov 	 * Furthermore, since many privileged programs call getopt()
589829a229dSAndrey A. Chernov 	 * before dropping privileges it makes sense to keep things
590829a229dSAndrey A. Chernov 	 * as simple (and bug-free) as possible.
591a35a7e76SEric Melville 	 */
592829a229dSAndrey A. Chernov 	return (getopt_internal(nargc, nargv, options, NULL, NULL, 0));
593a35a7e76SEric Melville }
594829a229dSAndrey A. Chernov #endif /* REPLACE_GETOPT */
595a35a7e76SEric Melville 
596a35a7e76SEric Melville /*
597a35a7e76SEric Melville  * getopt_long --
598a35a7e76SEric Melville  *	Parse argc/argv argument vector.
599a35a7e76SEric Melville  */
600a35a7e76SEric Melville int
601a35a7e76SEric Melville getopt_long(nargc, nargv, options, long_options, idx)
602a35a7e76SEric Melville 	int nargc;
603a35a7e76SEric Melville 	char * const *nargv;
604a35a7e76SEric Melville 	const char *options;
605a35a7e76SEric Melville 	const struct option *long_options;
606a35a7e76SEric Melville 	int *idx;
607a35a7e76SEric Melville {
608a35a7e76SEric Melville 
609829a229dSAndrey A. Chernov 	return (getopt_internal(nargc, nargv, options, long_options, idx,
610829a229dSAndrey A. Chernov 	    FLAG_PERMUTE));
611829a229dSAndrey A. Chernov }
612a35a7e76SEric Melville 
613a35a7e76SEric Melville /*
614829a229dSAndrey A. Chernov  * getopt_long_only --
615829a229dSAndrey A. Chernov  *	Parse argc/argv argument vector.
616a35a7e76SEric Melville  */
617829a229dSAndrey A. Chernov int
618829a229dSAndrey A. Chernov getopt_long_only(nargc, nargv, options, long_options, idx)
619829a229dSAndrey A. Chernov 	int nargc;
620829a229dSAndrey A. Chernov 	char * const *nargv;
621829a229dSAndrey A. Chernov 	const char *options;
622829a229dSAndrey A. Chernov 	const struct option *long_options;
623829a229dSAndrey A. Chernov 	int *idx;
624829a229dSAndrey A. Chernov {
625a35a7e76SEric Melville 
626829a229dSAndrey A. Chernov 	return (getopt_internal(nargc, nargv, options, long_options, idx,
627829a229dSAndrey A. Chernov 	    FLAG_PERMUTE|FLAG_LONGONLY));
628a35a7e76SEric Melville }
629