xref: /freebsd-14.2/lib/libc/stdlib/getopt_long.c (revision 4025b5b5)
1298207c3SAndrey A. Chernov /*	$OpenBSD: getopt_long.c,v 1.26 2013/06/08 22:47:56 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 <[email protected]>
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  *
39a35a7e76SEric Melville  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
40a35a7e76SEric Melville  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41a35a7e76SEric Melville  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42a35a7e76SEric Melville  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
43a35a7e76SEric Melville  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
44a35a7e76SEric Melville  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
45a35a7e76SEric Melville  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
46a35a7e76SEric Melville  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47a35a7e76SEric Melville  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48a35a7e76SEric Melville  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49a35a7e76SEric Melville  * POSSIBILITY OF SUCH DAMAGE.
50a35a7e76SEric Melville  */
51a35a7e76SEric Melville 
52829a229dSAndrey A. Chernov #if 0
53a35a7e76SEric Melville #if defined(LIBC_SCCS) && !defined(lint)
54829a229dSAndrey A. Chernov static char *rcsid = "$OpenBSD: getopt_long.c,v 1.16 2004/02/04 18:17:25 millert Exp $";
55a35a7e76SEric Melville #endif /* LIBC_SCCS and not lint */
56829a229dSAndrey A. Chernov #endif
57a35a7e76SEric Melville #include <err.h>
58a35a7e76SEric Melville #include <errno.h>
59a35a7e76SEric Melville #include <getopt.h>
60a35a7e76SEric Melville #include <stdlib.h>
61a35a7e76SEric Melville #include <string.h>
62a35a7e76SEric Melville 
63f2fd86b7SAndrey A. Chernov #define GNU_COMPATIBLE		/* Be more compatible, configure's use us! */
64f2fd86b7SAndrey A. Chernov 
65d3ff3b5fSAndrey A. Chernov #if 0				/* we prefer to keep our getopt(3) */
66829a229dSAndrey A. Chernov #define	REPLACE_GETOPT		/* use this getopt as the system getopt(3) */
67a35a7e76SEric Melville #endif
68a35a7e76SEric Melville 
69a35a7e76SEric Melville #ifdef REPLACE_GETOPT
70a35a7e76SEric Melville int	opterr = 1;		/* if error message should be printed */
71a35a7e76SEric Melville int	optind = 1;		/* index into parent argv vector */
72a35a7e76SEric Melville int	optopt = '?';		/* character checked for validity */
73a35a7e76SEric Melville int	optreset;		/* reset getopt */
74a35a7e76SEric Melville char    *optarg;		/* argument associated with option */
75a35a7e76SEric Melville #endif
76a35a7e76SEric Melville 
77829a229dSAndrey A. Chernov #define PRINT_ERROR	((opterr) && (*options != ':'))
78a35a7e76SEric Melville 
79829a229dSAndrey A. Chernov #define FLAG_PERMUTE	0x01	/* permute non-options to the end of argv */
80829a229dSAndrey A. Chernov #define FLAG_ALLARGS	0x02	/* treat non-options as args to option "-1" */
81829a229dSAndrey A. Chernov #define FLAG_LONGONLY	0x04	/* operate as getopt_long_only */
82a35a7e76SEric Melville 
83a35a7e76SEric Melville /* return values */
84a35a7e76SEric Melville #define	BADCH		(int)'?'
85829a229dSAndrey A. Chernov #define	BADARG		((*options == ':') ? (int)':' : (int)'?')
86a35a7e76SEric Melville #define	INORDER 	(int)1
87a35a7e76SEric Melville 
88*0348c8fcSAlex Richardson static char EMSG[] = "";
89a35a7e76SEric Melville 
909f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
919f06a99eSAndrey A. Chernov #define NO_PREFIX	(-1)
929f06a99eSAndrey A. Chernov #define D_PREFIX	0
939f06a99eSAndrey A. Chernov #define DD_PREFIX	1
949f06a99eSAndrey A. Chernov #define W_PREFIX	2
959f06a99eSAndrey A. Chernov #endif
969f06a99eSAndrey A. Chernov 
97829a229dSAndrey A. Chernov static int getopt_internal(int, char * const *, const char *,
98829a229dSAndrey A. Chernov 			   const struct option *, int *, int);
99829a229dSAndrey A. Chernov static int parse_long_options(char * const *, const char *,
100ed4fbbd5SAndrey A. Chernov 			      const struct option *, int *, int, int);
101e6fc380cSAlfred Perlstein static int gcd(int, int);
102e6fc380cSAlfred Perlstein static void permute_args(int, int, int, char * const *);
103a35a7e76SEric Melville 
104a35a7e76SEric Melville static char *place = EMSG; /* option letter processing */
105a35a7e76SEric Melville 
106a35a7e76SEric Melville /* XXX: set optreset to 1 rather than these two */
107a35a7e76SEric Melville static int nonopt_start = -1; /* first non option argument (for permute) */
108a35a7e76SEric Melville static int nonopt_end = -1;   /* first option after non options (for permute) */
109a35a7e76SEric Melville 
110a35a7e76SEric Melville /* Error messages */
111a35a7e76SEric Melville static const char recargchar[] = "option requires an argument -- %c";
1129f06a99eSAndrey A. Chernov static const char illoptchar[] = "illegal option -- %c"; /* From P1003.2 */
113f2fd86b7SAndrey A. Chernov #ifdef GNU_COMPATIBLE
1149f06a99eSAndrey A. Chernov static int dash_prefix = NO_PREFIX;
115f2fd86b7SAndrey A. Chernov static const char gnuoptchar[] = "invalid option -- %c";
116f2fd86b7SAndrey A. Chernov 
1179f06a99eSAndrey A. Chernov static const char recargstring[] = "option `%s%s' requires an argument";
1189f06a99eSAndrey A. Chernov static const char ambig[] = "option `%s%.*s' is ambiguous";
1199f06a99eSAndrey A. Chernov static const char noarg[] = "option `%s%.*s' doesn't allow an argument";
1209f06a99eSAndrey A. Chernov static const char illoptstring[] = "unrecognized option `%s%s'";
121f2fd86b7SAndrey A. Chernov #else
122a35a7e76SEric Melville static const char recargstring[] = "option requires an argument -- %s";
123a35a7e76SEric Melville static const char ambig[] = "ambiguous option -- %.*s";
124a35a7e76SEric Melville static const char noarg[] = "option doesn't take an argument -- %.*s";
125a35a7e76SEric Melville static const char illoptstring[] = "unknown option -- %s";
126f2fd86b7SAndrey A. Chernov #endif
127a35a7e76SEric Melville 
128a35a7e76SEric Melville /*
129a35a7e76SEric Melville  * Compute the greatest common divisor of a and b.
130a35a7e76SEric Melville  */
131a35a7e76SEric Melville static int
gcd(int a,int b)132829a229dSAndrey A. Chernov gcd(int a, int b)
133a35a7e76SEric Melville {
134a35a7e76SEric Melville 	int c;
135a35a7e76SEric Melville 
136a35a7e76SEric Melville 	c = a % b;
137a35a7e76SEric Melville 	while (c != 0) {
138a35a7e76SEric Melville 		a = b;
139a35a7e76SEric Melville 		b = c;
140a35a7e76SEric Melville 		c = a % b;
141a35a7e76SEric Melville 	}
142a35a7e76SEric Melville 
143829a229dSAndrey A. Chernov 	return (b);
144a35a7e76SEric Melville }
145a35a7e76SEric Melville 
146a35a7e76SEric Melville /*
147a35a7e76SEric Melville  * Exchange the block from nonopt_start to nonopt_end with the block
148a35a7e76SEric Melville  * from nonopt_end to opt_end (keeping the same order of arguments
149a35a7e76SEric Melville  * in each block).
150a35a7e76SEric Melville  */
151a35a7e76SEric Melville static void
permute_args(int panonopt_start,int panonopt_end,int opt_end,char * const * nargv)152829a229dSAndrey A. Chernov permute_args(int panonopt_start, int panonopt_end, int opt_end,
153829a229dSAndrey A. Chernov 	char * const *nargv)
154a35a7e76SEric Melville {
155a35a7e76SEric Melville 	int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos;
156a35a7e76SEric Melville 	char *swap;
157a35a7e76SEric Melville 
158a35a7e76SEric Melville 	/*
159a35a7e76SEric Melville 	 * compute lengths of blocks and number and size of cycles
160a35a7e76SEric Melville 	 */
161a35a7e76SEric Melville 	nnonopts = panonopt_end - panonopt_start;
162a35a7e76SEric Melville 	nopts = opt_end - panonopt_end;
163a35a7e76SEric Melville 	ncycle = gcd(nnonopts, nopts);
164a35a7e76SEric Melville 	cyclelen = (opt_end - panonopt_start) / ncycle;
165a35a7e76SEric Melville 
166a35a7e76SEric Melville 	for (i = 0; i < ncycle; i++) {
167a35a7e76SEric Melville 		cstart = panonopt_end+i;
168a35a7e76SEric Melville 		pos = cstart;
169a35a7e76SEric Melville 		for (j = 0; j < cyclelen; j++) {
170a35a7e76SEric Melville 			if (pos >= panonopt_end)
171a35a7e76SEric Melville 				pos -= nnonopts;
172a35a7e76SEric Melville 			else
173a35a7e76SEric Melville 				pos += nopts;
174a35a7e76SEric Melville 			swap = nargv[pos];
175a35a7e76SEric Melville 			/* LINTED const cast */
176a35a7e76SEric Melville 			((char **) nargv)[pos] = nargv[cstart];
177a35a7e76SEric Melville 			/* LINTED const cast */
178a35a7e76SEric Melville 			((char **)nargv)[cstart] = swap;
179a35a7e76SEric Melville 		}
180a35a7e76SEric Melville 	}
181a35a7e76SEric Melville }
182a35a7e76SEric Melville 
183a35a7e76SEric Melville /*
184829a229dSAndrey A. Chernov  * parse_long_options --
185829a229dSAndrey A. Chernov  *	Parse long options in argc/argv argument vector.
186829a229dSAndrey A. Chernov  * Returns -1 if short_too is set and the option does not match long_options.
187a35a7e76SEric Melville  */
188a35a7e76SEric Melville static int
parse_long_options(char * const * nargv,const char * options,const struct option * long_options,int * idx,int short_too,int flags)189829a229dSAndrey A. Chernov parse_long_options(char * const *nargv, const char *options,
190ed4fbbd5SAndrey A. Chernov 	const struct option *long_options, int *idx, int short_too, int flags)
191a35a7e76SEric Melville {
192829a229dSAndrey A. Chernov 	char *current_argv, *has_equal;
1939f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
194*0348c8fcSAlex Richardson 	const char *current_dash;
1959f06a99eSAndrey A. Chernov #endif
196829a229dSAndrey A. Chernov 	size_t current_argv_len;
197ed4fbbd5SAndrey A. Chernov 	int i, match, exact_match, second_partial_match;
198a35a7e76SEric Melville 
199829a229dSAndrey A. Chernov 	current_argv = place;
2009f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
2019f06a99eSAndrey A. Chernov 	switch (dash_prefix) {
2029f06a99eSAndrey A. Chernov 		case D_PREFIX:
2039f06a99eSAndrey A. Chernov 			current_dash = "-";
2049f06a99eSAndrey A. Chernov 			break;
2059f06a99eSAndrey A. Chernov 		case DD_PREFIX:
2069f06a99eSAndrey A. Chernov 			current_dash = "--";
2079f06a99eSAndrey A. Chernov 			break;
2089f06a99eSAndrey A. Chernov 		case W_PREFIX:
2099f06a99eSAndrey A. Chernov 			current_dash = "-W ";
2109f06a99eSAndrey A. Chernov 			break;
2119f06a99eSAndrey A. Chernov 		default:
2129f06a99eSAndrey A. Chernov 			current_dash = "";
2139f06a99eSAndrey A. Chernov 			break;
2149f06a99eSAndrey A. Chernov 	}
2159f06a99eSAndrey A. Chernov #endif
216829a229dSAndrey A. Chernov 	match = -1;
217ed4fbbd5SAndrey A. Chernov 	exact_match = 0;
218ed4fbbd5SAndrey A. Chernov 	second_partial_match = 0;
219a35a7e76SEric Melville 
220829a229dSAndrey A. Chernov 	optind++;
221829a229dSAndrey A. Chernov 
222829a229dSAndrey A. Chernov 	if ((has_equal = strchr(current_argv, '=')) != NULL) {
223829a229dSAndrey A. Chernov 		/* argument found (--option=arg) */
224829a229dSAndrey A. Chernov 		current_argv_len = has_equal - current_argv;
225829a229dSAndrey A. Chernov 		has_equal++;
226829a229dSAndrey A. Chernov 	} else
227829a229dSAndrey A. Chernov 		current_argv_len = strlen(current_argv);
228829a229dSAndrey A. Chernov 
229829a229dSAndrey A. Chernov 	for (i = 0; long_options[i].name; i++) {
230829a229dSAndrey A. Chernov 		/* find matching long option */
231829a229dSAndrey A. Chernov 		if (strncmp(current_argv, long_options[i].name,
232829a229dSAndrey A. Chernov 		    current_argv_len))
233829a229dSAndrey A. Chernov 			continue;
234829a229dSAndrey A. Chernov 
235829a229dSAndrey A. Chernov 		if (strlen(long_options[i].name) == current_argv_len) {
236829a229dSAndrey A. Chernov 			/* exact match */
237829a229dSAndrey A. Chernov 			match = i;
238ed4fbbd5SAndrey A. Chernov 			exact_match = 1;
239829a229dSAndrey A. Chernov 			break;
240829a229dSAndrey A. Chernov 		}
241829a229dSAndrey A. Chernov 		/*
242829a229dSAndrey A. Chernov 		 * If this is a known short option, don't allow
243829a229dSAndrey A. Chernov 		 * a partial match of a single character.
244829a229dSAndrey A. Chernov 		 */
245f853699aSAndrey A. Chernov 		if (short_too && current_argv_len == 1)
246829a229dSAndrey A. Chernov 			continue;
247829a229dSAndrey A. Chernov 
248ed4fbbd5SAndrey A. Chernov 		if (match == -1)	/* first partial match */
249829a229dSAndrey A. Chernov 			match = i;
250ed4fbbd5SAndrey A. Chernov 		else if ((flags & FLAG_LONGONLY) ||
251ed4fbbd5SAndrey A. Chernov 			 long_options[i].has_arg !=
252ed4fbbd5SAndrey A. Chernov 			     long_options[match].has_arg ||
253ed4fbbd5SAndrey A. Chernov 			 long_options[i].flag != long_options[match].flag ||
254ed4fbbd5SAndrey A. Chernov 			 long_options[i].val != long_options[match].val)
255ed4fbbd5SAndrey A. Chernov 			second_partial_match = 1;
256ed4fbbd5SAndrey A. Chernov 	}
257ed4fbbd5SAndrey A. Chernov 	if (!exact_match && second_partial_match) {
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 	if (match != -1) {		/* option found */
270829a229dSAndrey A. Chernov 		if (long_options[match].has_arg == no_argument
271829a229dSAndrey A. Chernov 		    && has_equal) {
272829a229dSAndrey A. Chernov 			if (PRINT_ERROR)
2739f06a99eSAndrey A. Chernov 				warnx(noarg,
2749f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
2759f06a99eSAndrey A. Chernov 				     current_dash,
2769f06a99eSAndrey A. Chernov #endif
2779f06a99eSAndrey A. Chernov 				     (int)current_argv_len,
278829a229dSAndrey A. Chernov 				     current_argv);
279829a229dSAndrey A. Chernov 			/*
280829a229dSAndrey A. Chernov 			 * XXX: GNU sets optopt to val regardless of flag
281829a229dSAndrey A. Chernov 			 */
282829a229dSAndrey A. Chernov 			if (long_options[match].flag == NULL)
283829a229dSAndrey A. Chernov 				optopt = long_options[match].val;
284829a229dSAndrey A. Chernov 			else
285829a229dSAndrey A. Chernov 				optopt = 0;
28688485399SAndrey A. Chernov #ifdef GNU_COMPATIBLE
28788485399SAndrey A. Chernov 			return (BADCH);
28888485399SAndrey A. Chernov #else
289829a229dSAndrey A. Chernov 			return (BADARG);
29088485399SAndrey A. Chernov #endif
291829a229dSAndrey A. Chernov 		}
292829a229dSAndrey A. Chernov 		if (long_options[match].has_arg == required_argument ||
293829a229dSAndrey A. Chernov 		    long_options[match].has_arg == optional_argument) {
294829a229dSAndrey A. Chernov 			if (has_equal)
295829a229dSAndrey A. Chernov 				optarg = has_equal;
296829a229dSAndrey A. Chernov 			else if (long_options[match].has_arg ==
297829a229dSAndrey A. Chernov 			    required_argument) {
298829a229dSAndrey A. Chernov 				/*
299829a229dSAndrey A. Chernov 				 * optional argument doesn't use next nargv
300829a229dSAndrey A. Chernov 				 */
301829a229dSAndrey A. Chernov 				optarg = nargv[optind++];
302829a229dSAndrey A. Chernov 			}
303829a229dSAndrey A. Chernov 		}
304829a229dSAndrey A. Chernov 		if ((long_options[match].has_arg == required_argument)
305829a229dSAndrey A. Chernov 		    && (optarg == NULL)) {
306829a229dSAndrey A. Chernov 			/*
307829a229dSAndrey A. Chernov 			 * Missing argument; leading ':' indicates no error
308829a229dSAndrey A. Chernov 			 * should be generated.
309829a229dSAndrey A. Chernov 			 */
310829a229dSAndrey A. Chernov 			if (PRINT_ERROR)
311829a229dSAndrey A. Chernov 				warnx(recargstring,
3129f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
3139f06a99eSAndrey A. Chernov 				    current_dash,
3149f06a99eSAndrey A. Chernov #endif
315829a229dSAndrey A. Chernov 				    current_argv);
316829a229dSAndrey A. Chernov 			/*
317829a229dSAndrey A. Chernov 			 * XXX: GNU sets optopt to val regardless of flag
318829a229dSAndrey A. Chernov 			 */
319829a229dSAndrey A. Chernov 			if (long_options[match].flag == NULL)
320829a229dSAndrey A. Chernov 				optopt = long_options[match].val;
321829a229dSAndrey A. Chernov 			else
322829a229dSAndrey A. Chernov 				optopt = 0;
323829a229dSAndrey A. Chernov 			--optind;
324829a229dSAndrey A. Chernov 			return (BADARG);
325829a229dSAndrey A. Chernov 		}
326829a229dSAndrey A. Chernov 	} else {			/* unknown option */
327829a229dSAndrey A. Chernov 		if (short_too) {
328829a229dSAndrey A. Chernov 			--optind;
329829a229dSAndrey A. Chernov 			return (-1);
330829a229dSAndrey A. Chernov 		}
331829a229dSAndrey A. Chernov 		if (PRINT_ERROR)
3329f06a99eSAndrey A. Chernov 			warnx(illoptstring,
3339f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
3349f06a99eSAndrey A. Chernov 			      current_dash,
3359f06a99eSAndrey A. Chernov #endif
3369f06a99eSAndrey A. Chernov 			      current_argv);
337829a229dSAndrey A. Chernov 		optopt = 0;
338829a229dSAndrey A. Chernov 		return (BADCH);
339829a229dSAndrey A. Chernov 	}
340829a229dSAndrey A. Chernov 	if (idx)
341829a229dSAndrey A. Chernov 		*idx = match;
342829a229dSAndrey A. Chernov 	if (long_options[match].flag) {
343829a229dSAndrey A. Chernov 		*long_options[match].flag = long_options[match].val;
344829a229dSAndrey A. Chernov 		return (0);
345829a229dSAndrey A. Chernov 	} else
346829a229dSAndrey A. Chernov 		return (long_options[match].val);
347829a229dSAndrey A. Chernov }
348a35a7e76SEric Melville 
349a35a7e76SEric Melville /*
350829a229dSAndrey A. Chernov  * getopt_internal --
351829a229dSAndrey A. Chernov  *	Parse argc/argv argument vector.  Called by user level routines.
352829a229dSAndrey A. Chernov  */
353829a229dSAndrey A. Chernov static int
getopt_internal(int nargc,char * const * nargv,const char * options,const struct option * long_options,int * idx,int flags)354829a229dSAndrey A. Chernov getopt_internal(int nargc, char * const *nargv, const char *options,
355829a229dSAndrey A. Chernov 	const struct option *long_options, int *idx, int flags)
356829a229dSAndrey A. Chernov {
357829a229dSAndrey A. Chernov 	char *oli;				/* option letter list index */
358829a229dSAndrey A. Chernov 	int optchar, short_too;
359298207c3SAndrey A. Chernov 	static int posixly_correct = -1;
360829a229dSAndrey A. Chernov 
361829a229dSAndrey A. Chernov 	if (options == NULL)
362829a229dSAndrey A. Chernov 		return (-1);
363829a229dSAndrey A. Chernov 
364829a229dSAndrey A. Chernov 	/*
365829a229dSAndrey A. Chernov 	 * XXX Some GNU programs (like cvs) set optind to 0 instead of
366829a229dSAndrey A. Chernov 	 * XXX using optreset.  Work around this braindamage.
367a35a7e76SEric Melville 	 */
368a35a7e76SEric Melville 	if (optind == 0)
369829a229dSAndrey A. Chernov 		optind = optreset = 1;
370a35a7e76SEric Melville 
371298207c3SAndrey A. Chernov 	/*
372298207c3SAndrey A. Chernov 	 * Disable GNU extensions if POSIXLY_CORRECT is set or options
373298207c3SAndrey A. Chernov 	 * string begins with a '+'.
374298207c3SAndrey A. Chernov 	 */
375298207c3SAndrey A. Chernov 	if (posixly_correct == -1 || optreset)
376298207c3SAndrey A. Chernov 		posixly_correct = (getenv("POSIXLY_CORRECT") != NULL);
377298207c3SAndrey A. Chernov 	if (*options == '-')
378298207c3SAndrey A. Chernov 		flags |= FLAG_ALLARGS;
379298207c3SAndrey A. Chernov 	else if (posixly_correct || *options == '+')
380298207c3SAndrey A. Chernov 		flags &= ~FLAG_PERMUTE;
381298207c3SAndrey A. Chernov 	if (*options == '+' || *options == '-')
382298207c3SAndrey A. Chernov 		options++;
383298207c3SAndrey A. Chernov 
384829a229dSAndrey A. Chernov 	optarg = NULL;
385a35a7e76SEric Melville 	if (optreset)
386a35a7e76SEric Melville 		nonopt_start = nonopt_end = -1;
387a35a7e76SEric Melville start:
388a35a7e76SEric Melville 	if (optreset || !*place) {		/* update scanning pointer */
389a35a7e76SEric Melville 		optreset = 0;
390a35a7e76SEric Melville 		if (optind >= nargc) {          /* end of argument vector */
391a35a7e76SEric Melville 			place = EMSG;
392a35a7e76SEric Melville 			if (nonopt_end != -1) {
393a35a7e76SEric Melville 				/* do permutation, if we have to */
394a35a7e76SEric Melville 				permute_args(nonopt_start, nonopt_end,
395a35a7e76SEric Melville 				    optind, nargv);
396a35a7e76SEric Melville 				optind -= nonopt_end - nonopt_start;
397a35a7e76SEric Melville 			}
398a35a7e76SEric Melville 			else if (nonopt_start != -1) {
399a35a7e76SEric Melville 				/*
400a35a7e76SEric Melville 				 * If we skipped non-options, set optind
401a35a7e76SEric Melville 				 * to the first of them.
402a35a7e76SEric Melville 				 */
403a35a7e76SEric Melville 				optind = nonopt_start;
404a35a7e76SEric Melville 			}
405a35a7e76SEric Melville 			nonopt_start = nonopt_end = -1;
406829a229dSAndrey A. Chernov 			return (-1);
407a35a7e76SEric Melville 		}
408829a229dSAndrey A. Chernov 		if (*(place = nargv[optind]) != '-' ||
4093700175bSAndrey A. Chernov #ifdef GNU_COMPATIBLE
4103700175bSAndrey A. Chernov 		    place[1] == '\0') {
4113700175bSAndrey A. Chernov #else
412829a229dSAndrey A. Chernov 		    (place[1] == '\0' && strchr(options, '-') == NULL)) {
4133700175bSAndrey A. Chernov #endif
414829a229dSAndrey A. Chernov 			place = EMSG;		/* found non-option */
415829a229dSAndrey A. Chernov 			if (flags & FLAG_ALLARGS) {
416a35a7e76SEric Melville 				/*
417a35a7e76SEric Melville 				 * GNU extension:
418a35a7e76SEric Melville 				 * return non-option as argument to option 1
419a35a7e76SEric Melville 				 */
420a35a7e76SEric Melville 				optarg = nargv[optind++];
421829a229dSAndrey A. Chernov 				return (INORDER);
422a35a7e76SEric Melville 			}
423829a229dSAndrey A. Chernov 			if (!(flags & FLAG_PERMUTE)) {
424a35a7e76SEric Melville 				/*
425829a229dSAndrey A. Chernov 				 * If no permutation wanted, stop parsing
426829a229dSAndrey A. Chernov 				 * at first non-option.
427a35a7e76SEric Melville 				 */
428829a229dSAndrey A. Chernov 				return (-1);
429a35a7e76SEric Melville 			}
430a35a7e76SEric Melville 			/* do permutation */
431a35a7e76SEric Melville 			if (nonopt_start == -1)
432a35a7e76SEric Melville 				nonopt_start = optind;
433a35a7e76SEric Melville 			else if (nonopt_end != -1) {
434a35a7e76SEric Melville 				permute_args(nonopt_start, nonopt_end,
435a35a7e76SEric Melville 				    optind, nargv);
436a35a7e76SEric Melville 				nonopt_start = optind -
437a35a7e76SEric Melville 				    (nonopt_end - nonopt_start);
438a35a7e76SEric Melville 				nonopt_end = -1;
439a35a7e76SEric Melville 			}
440a35a7e76SEric Melville 			optind++;
441a35a7e76SEric Melville 			/* process next argument */
442a35a7e76SEric Melville 			goto start;
443a35a7e76SEric Melville 		}
444a35a7e76SEric Melville 		if (nonopt_start != -1 && nonopt_end == -1)
445a35a7e76SEric Melville 			nonopt_end = optind;
446829a229dSAndrey A. Chernov 
447829a229dSAndrey A. Chernov 		/*
448829a229dSAndrey A. Chernov 		 * If we have "-" do nothing, if "--" we are done.
449829a229dSAndrey A. Chernov 		 */
450829a229dSAndrey A. Chernov 		if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
451829a229dSAndrey A. Chernov 			optind++;
452829a229dSAndrey A. Chernov 			place = EMSG;
453829a229dSAndrey A. Chernov 			/*
454829a229dSAndrey A. Chernov 			 * We found an option (--), so if we skipped
455829a229dSAndrey A. Chernov 			 * non-options, we have to permute.
456829a229dSAndrey A. Chernov 			 */
457829a229dSAndrey A. Chernov 			if (nonopt_end != -1) {
458829a229dSAndrey A. Chernov 				permute_args(nonopt_start, nonopt_end,
459829a229dSAndrey A. Chernov 				    optind, nargv);
460829a229dSAndrey A. Chernov 				optind -= nonopt_end - nonopt_start;
461829a229dSAndrey A. Chernov 			}
462829a229dSAndrey A. Chernov 			nonopt_start = nonopt_end = -1;
463829a229dSAndrey A. Chernov 			return (-1);
464a35a7e76SEric Melville 		}
465a35a7e76SEric Melville 	}
466829a229dSAndrey A. Chernov 
467829a229dSAndrey A. Chernov 	/*
468829a229dSAndrey A. Chernov 	 * Check long options if:
469829a229dSAndrey A. Chernov 	 *  1) we were passed some
470829a229dSAndrey A. Chernov 	 *  2) the arg is not just "-"
471829a229dSAndrey A. Chernov 	 *  3) either the arg starts with -- we are getopt_long_only()
472829a229dSAndrey A. Chernov 	 */
473829a229dSAndrey A. Chernov 	if (long_options != NULL && place != nargv[optind] &&
474829a229dSAndrey A. Chernov 	    (*place == '-' || (flags & FLAG_LONGONLY))) {
475829a229dSAndrey A. Chernov 		short_too = 0;
4769f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
4779f06a99eSAndrey A. Chernov 		dash_prefix = D_PREFIX;
4789f06a99eSAndrey A. Chernov #endif
4799f06a99eSAndrey A. Chernov 		if (*place == '-') {
480829a229dSAndrey A. Chernov 			place++;		/* --foo long option */
481253b638eSKyle Evans 			if (*place == '\0')
482253b638eSKyle Evans 				return (BADARG);	/* malformed option */
4839f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
4849f06a99eSAndrey A. Chernov 			dash_prefix = DD_PREFIX;
4859f06a99eSAndrey A. Chernov #endif
4869f06a99eSAndrey A. Chernov 		} else if (*place != ':' && strchr(options, *place) != NULL)
487829a229dSAndrey A. Chernov 			short_too = 1;		/* could be short option too */
488829a229dSAndrey A. Chernov 
489829a229dSAndrey A. Chernov 		optchar = parse_long_options(nargv, options, long_options,
490ed4fbbd5SAndrey A. Chernov 		    idx, short_too, flags);
491829a229dSAndrey A. Chernov 		if (optchar != -1) {
492829a229dSAndrey A. Chernov 			place = EMSG;
493829a229dSAndrey A. Chernov 			return (optchar);
494829a229dSAndrey A. Chernov 		}
495829a229dSAndrey A. Chernov 	}
496829a229dSAndrey A. Chernov 
497a35a7e76SEric Melville 	if ((optchar = (int)*place++) == (int)':' ||
498829a229dSAndrey A. Chernov 	    (optchar == (int)'-' && *place != '\0') ||
499829a229dSAndrey A. Chernov 	    (oli = strchr(options, optchar)) == NULL) {
500829a229dSAndrey A. Chernov 		/*
501829a229dSAndrey A. Chernov 		 * If the user specified "-" and  '-' isn't listed in
502829a229dSAndrey A. Chernov 		 * options, return -1 (non-option) as per POSIX.
503829a229dSAndrey A. Chernov 		 * Otherwise, it is an unknown option character (or ':').
504829a229dSAndrey A. Chernov 		 */
505829a229dSAndrey A. Chernov 		if (optchar == (int)'-' && *place == '\0')
506829a229dSAndrey A. Chernov 			return (-1);
507a35a7e76SEric Melville 		if (!*place)
508a35a7e76SEric Melville 			++optind;
509f2fd86b7SAndrey A. Chernov #ifdef GNU_COMPATIBLE
510f2fd86b7SAndrey A. Chernov 		if (PRINT_ERROR)
511f2fd86b7SAndrey A. Chernov 			warnx(posixly_correct ? illoptchar : gnuoptchar,
512f2fd86b7SAndrey A. Chernov 			      optchar);
513f2fd86b7SAndrey A. Chernov #else
514a35a7e76SEric Melville 		if (PRINT_ERROR)
515a35a7e76SEric Melville 			warnx(illoptchar, optchar);
516f2fd86b7SAndrey A. Chernov #endif
517a35a7e76SEric Melville 		optopt = optchar;
518829a229dSAndrey A. Chernov 		return (BADCH);
519a35a7e76SEric Melville 	}
520829a229dSAndrey A. Chernov 	if (long_options != NULL && optchar == 'W' && oli[1] == ';') {
521829a229dSAndrey A. Chernov 		/* -W long-option */
522829a229dSAndrey A. Chernov 		if (*place)			/* no space */
523829a229dSAndrey A. Chernov 			/* NOTHING */;
524829a229dSAndrey A. Chernov 		else if (++optind >= nargc) {	/* no arg */
525a35a7e76SEric Melville 			place = EMSG;
526a35a7e76SEric Melville 			if (PRINT_ERROR)
527a35a7e76SEric Melville 				warnx(recargchar, optchar);
528a35a7e76SEric Melville 			optopt = optchar;
529829a229dSAndrey A. Chernov 			return (BADARG);
530a35a7e76SEric Melville 		} else				/* white space */
531a35a7e76SEric Melville 			place = nargv[optind];
5329f06a99eSAndrey A. Chernov #ifdef GNU_COMPATIBLE
5339f06a99eSAndrey A. Chernov 		dash_prefix = W_PREFIX;
5349f06a99eSAndrey A. Chernov #endif
535829a229dSAndrey A. Chernov 		optchar = parse_long_options(nargv, options, long_options,
536ed4fbbd5SAndrey A. Chernov 		    idx, 0, flags);
537829a229dSAndrey A. Chernov 		place = EMSG;
538829a229dSAndrey A. Chernov 		return (optchar);
539a35a7e76SEric Melville 	}
540a35a7e76SEric Melville 	if (*++oli != ':') {			/* doesn't take argument */
541a35a7e76SEric Melville 		if (!*place)
542a35a7e76SEric Melville 			++optind;
543a35a7e76SEric Melville 	} else {				/* takes (optional) argument */
544a35a7e76SEric Melville 		optarg = NULL;
545a35a7e76SEric Melville 		if (*place)			/* no white space */
546a35a7e76SEric Melville 			optarg = place;
547a35a7e76SEric Melville 		else if (oli[1] != ':') {	/* arg not optional */
548a35a7e76SEric Melville 			if (++optind >= nargc) {	/* no arg */
549a35a7e76SEric Melville 				place = EMSG;
550a35a7e76SEric Melville 				if (PRINT_ERROR)
551a35a7e76SEric Melville 					warnx(recargchar, optchar);
552a35a7e76SEric Melville 				optopt = optchar;
553829a229dSAndrey A. Chernov 				return (BADARG);
554a35a7e76SEric Melville 			} else
555a35a7e76SEric Melville 				optarg = nargv[optind];
556f27c7b47SAndrey A. Chernov 		}
557a35a7e76SEric Melville 		place = EMSG;
558a35a7e76SEric Melville 		++optind;
559a35a7e76SEric Melville 	}
560a35a7e76SEric Melville 	/* dump back option letter */
561829a229dSAndrey A. Chernov 	return (optchar);
562a35a7e76SEric Melville }
563a35a7e76SEric Melville 
564a35a7e76SEric Melville #ifdef REPLACE_GETOPT
565a35a7e76SEric Melville /*
566a35a7e76SEric Melville  * getopt --
567a35a7e76SEric Melville  *	Parse argc/argv argument vector.
568a35a7e76SEric Melville  *
569829a229dSAndrey A. Chernov  * [eventually this will replace the BSD getopt]
570a35a7e76SEric Melville  */
571a35a7e76SEric Melville int
572829a229dSAndrey A. Chernov getopt(int nargc, char * const *nargv, const char *options)
573a35a7e76SEric Melville {
574a35a7e76SEric Melville 
575a35a7e76SEric Melville 	/*
576829a229dSAndrey A. Chernov 	 * We don't pass FLAG_PERMUTE to getopt_internal() since
577829a229dSAndrey A. Chernov 	 * the BSD getopt(3) (unlike GNU) has never done this.
578829a229dSAndrey A. Chernov 	 *
579829a229dSAndrey A. Chernov 	 * Furthermore, since many privileged programs call getopt()
580829a229dSAndrey A. Chernov 	 * before dropping privileges it makes sense to keep things
581829a229dSAndrey A. Chernov 	 * as simple (and bug-free) as possible.
582a35a7e76SEric Melville 	 */
583829a229dSAndrey A. Chernov 	return (getopt_internal(nargc, nargv, options, NULL, NULL, 0));
584a35a7e76SEric Melville }
585829a229dSAndrey A. Chernov #endif /* REPLACE_GETOPT */
586a35a7e76SEric Melville 
587a35a7e76SEric Melville /*
588a35a7e76SEric Melville  * getopt_long --
589a35a7e76SEric Melville  *	Parse argc/argv argument vector.
590a35a7e76SEric Melville  */
591a35a7e76SEric Melville int
592d3ff3b5fSAndrey A. Chernov getopt_long(int nargc, char * const *nargv, const char *options,
593d3ff3b5fSAndrey A. Chernov 	const struct option *long_options, int *idx)
594a35a7e76SEric Melville {
595a35a7e76SEric Melville 
596829a229dSAndrey A. Chernov 	return (getopt_internal(nargc, nargv, options, long_options, idx,
597829a229dSAndrey A. Chernov 	    FLAG_PERMUTE));
598829a229dSAndrey A. Chernov }
599a35a7e76SEric Melville 
600a35a7e76SEric Melville /*
601829a229dSAndrey A. Chernov  * getopt_long_only --
602829a229dSAndrey A. Chernov  *	Parse argc/argv argument vector.
603a35a7e76SEric Melville  */
604829a229dSAndrey A. Chernov int
605d3ff3b5fSAndrey A. Chernov getopt_long_only(int nargc, char * const *nargv, const char *options,
606d3ff3b5fSAndrey A. Chernov 	const struct option *long_options, int *idx)
607829a229dSAndrey A. Chernov {
608a35a7e76SEric Melville 
609829a229dSAndrey A. Chernov 	return (getopt_internal(nargc, nargv, options, long_options, idx,
610829a229dSAndrey A. Chernov 	    FLAG_PERMUTE|FLAG_LONGONLY));
611a35a7e76SEric Melville }
612