Home | History | Annotate | Line # | Download | only in stdlib
getopt_long.c revision 1.11.2.3
      1  1.11.2.3   nathanw /*	$NetBSD: getopt_long.c,v 1.11.2.3 2002/03/08 21:35:46 nathanw 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.11.2.3   nathanw __RCSID("$NetBSD: getopt_long.c,v 1.11.2.3 2002/03/08 21:35:46 nathanw 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.4  christos #include <err.h>
     48  1.11.2.3   nathanw #include <errno.h>
     49  1.11.2.3   nathanw #include <getopt.h>
     50       1.1       mcr #include <stdlib.h>
     51       1.1       mcr #include <string.h>
     52  1.11.2.3   nathanw 
     53  1.11.2.3   nathanw #if HAVE_CONFIG_H && !HAVE_GETOPT_LONG && !HAVE_DECL_OPTIND
     54  1.11.2.3   nathanw #define REPLACE_GETOPT
     55  1.11.2.3   nathanw #endif
     56       1.4  christos 
     57       1.4  christos #ifdef REPLACE_GETOPT
     58       1.4  christos #ifdef __weak_alias
     59       1.4  christos __weak_alias(getopt,_getopt)
     60       1.4  christos #endif
     61       1.4  christos int	opterr = 1;		/* if error message should be printed */
     62       1.4  christos int	optind = 1;		/* index into parent argv vector */
     63       1.4  christos int	optopt = '?';		/* character checked for validity */
     64       1.4  christos int	optreset;		/* reset getopt */
     65       1.4  christos char    *optarg;		/* argument associated with option */
     66  1.11.2.3   nathanw #elif HAVE_CONFIG_H && !HAVE_DECL_OPTRESET
     67  1.11.2.3   nathanw static int optreset;
     68       1.4  christos #endif
     69       1.1       mcr 
     70       1.4  christos #ifdef __weak_alias
     71       1.4  christos __weak_alias(getopt_long,_getopt_long)
     72       1.4  christos #endif
     73       1.2     lukem 
     74  1.11.2.3   nathanw #if !HAVE_GETOPT_LONG
     75       1.4  christos #define IGNORE_FIRST	(*options == '-' || *options == '+')
     76       1.4  christos #define PRINT_ERROR	((opterr) && ((*options != ':') \
     77       1.4  christos 				      || (IGNORE_FIRST && options[1] != ':')))
     78       1.4  christos #define IS_POSIXLY_CORRECT (getenv("POSIXLY_CORRECT") != NULL)
     79       1.4  christos #define PERMUTE         (!IS_POSIXLY_CORRECT && !IGNORE_FIRST)
     80       1.4  christos /* XXX: GNU ignores PC if *options == '-' */
     81       1.4  christos #define IN_ORDER        (!IS_POSIXLY_CORRECT && *options == '-')
     82       1.1       mcr 
     83       1.4  christos /* return values */
     84       1.1       mcr #define	BADCH	(int)'?'
     85       1.9       wiz #define	BADARG		((IGNORE_FIRST && options[1] == ':') \
     86       1.9       wiz 			 || (*options == ':') ? (int)':' : (int)'?')
     87       1.4  christos #define INORDER (int)1
     88       1.4  christos 
     89       1.1       mcr #define	EMSG	""
     90       1.1       mcr 
     91       1.4  christos static int getopt_internal __P((int, char * const *, const char *));
     92       1.4  christos static int gcd __P((int, int));
     93       1.4  christos static void permute_args __P((int, int, int, char * const *));
     94       1.4  christos 
     95       1.4  christos static char *place = EMSG; /* option letter processing */
     96       1.4  christos 
     97       1.4  christos /* XXX: set optreset to 1 rather than these two */
     98       1.4  christos static int nonopt_start = -1; /* first non option argument (for permute) */
     99       1.4  christos static int nonopt_end = -1;   /* first option after non options (for permute) */
    100       1.4  christos 
    101       1.4  christos /* Error messages */
    102       1.6   nathanw static const char recargchar[] = "option requires an argument -- %c";
    103       1.6   nathanw static const char recargstring[] = "option requires an argument -- %s";
    104       1.4  christos static const char ambig[] = "ambiguous option -- %.*s";
    105       1.4  christos static const char noarg[] = "option doesn't take an argument -- %.*s";
    106  1.11.2.1   nathanw static const char illoptchar[] = "unknown option -- %c";
    107  1.11.2.1   nathanw static const char illoptstring[] = "unknown option -- %s";
    108       1.4  christos 
    109       1.4  christos 
    110       1.1       mcr /*
    111       1.4  christos  * Compute the greatest common divisor of a and b.
    112       1.4  christos  */
    113       1.4  christos static int
    114       1.4  christos gcd(a, b)
    115       1.4  christos 	int a;
    116       1.4  christos 	int b;
    117       1.4  christos {
    118       1.4  christos 	int c;
    119       1.4  christos 
    120       1.4  christos 	c = a % b;
    121       1.4  christos 	while (c != 0) {
    122       1.4  christos 		a = b;
    123       1.4  christos 		b = c;
    124       1.4  christos 		c = a % b;
    125       1.4  christos 	}
    126       1.4  christos 
    127       1.4  christos 	return b;
    128       1.4  christos }
    129       1.4  christos 
    130       1.4  christos /*
    131       1.4  christos  * Exchange the block from nonopt_start to nonopt_end with the block
    132       1.4  christos  * from nonopt_end to opt_end (keeping the same order of arguments
    133       1.4  christos  * in each block).
    134       1.4  christos  */
    135       1.4  christos static void
    136  1.11.2.2   nathanw permute_args(panonopt_start, panonopt_end, opt_end, nargv)
    137  1.11.2.2   nathanw 	int panonopt_start;
    138  1.11.2.2   nathanw 	int panonopt_end;
    139       1.4  christos 	int opt_end;
    140       1.4  christos 	char * const *nargv;
    141       1.4  christos {
    142       1.4  christos 	int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos;
    143       1.4  christos 	char *swap;
    144       1.4  christos 
    145      1.10     lukem 	_DIAGASSERT(nargv != NULL);
    146      1.10     lukem 
    147       1.4  christos 	/*
    148       1.4  christos 	 * compute lengths of blocks and number and size of cycles
    149       1.4  christos 	 */
    150  1.11.2.2   nathanw 	nnonopts = panonopt_end - panonopt_start;
    151  1.11.2.2   nathanw 	nopts = opt_end - panonopt_end;
    152       1.4  christos 	ncycle = gcd(nnonopts, nopts);
    153  1.11.2.2   nathanw 	cyclelen = (opt_end - panonopt_start) / ncycle;
    154       1.4  christos 
    155       1.4  christos 	for (i = 0; i < ncycle; i++) {
    156  1.11.2.2   nathanw 		cstart = panonopt_end+i;
    157       1.4  christos 		pos = cstart;
    158       1.4  christos 		for (j = 0; j < cyclelen; j++) {
    159  1.11.2.2   nathanw 			if (pos >= panonopt_end)
    160       1.4  christos 				pos -= nnonopts;
    161       1.4  christos 			else
    162       1.4  christos 				pos += nopts;
    163       1.4  christos 			swap = nargv[pos];
    164       1.4  christos 			/* LINTED const cast */
    165       1.4  christos 			((char **) nargv)[pos] = nargv[cstart];
    166       1.4  christos 			/* LINTED const cast */
    167       1.4  christos 			((char **)nargv)[cstart] = swap;
    168       1.4  christos 		}
    169       1.4  christos 	}
    170       1.4  christos }
    171       1.4  christos 
    172       1.4  christos /*
    173       1.4  christos  * getopt_internal --
    174       1.4  christos  *	Parse argc/argv argument vector.  Called by user level routines.
    175       1.4  christos  *  Returns -2 if -- is found (can be long option or end of options marker).
    176       1.1       mcr  */
    177       1.4  christos static int
    178       1.4  christos getopt_internal(nargc, nargv, options)
    179       1.1       mcr 	int nargc;
    180       1.1       mcr 	char * const *nargv;
    181       1.4  christos 	const char *options;
    182       1.1       mcr {
    183       1.1       mcr 	char *oli;				/* option letter list index */
    184       1.4  christos 	int optchar;
    185       1.1       mcr 
    186       1.2     lukem 	_DIAGASSERT(nargv != NULL);
    187       1.4  christos 	_DIAGASSERT(options != NULL);
    188       1.4  christos 
    189       1.4  christos 	optarg = NULL;
    190       1.8   thorpej 
    191       1.8   thorpej 	/*
    192       1.8   thorpej 	 * XXX Some programs (like rsyncd) expect to be able to
    193       1.8   thorpej 	 * XXX re-initialize optind to 0 and have getopt_long(3)
    194       1.8   thorpej 	 * XXX properly function again.  Work around this braindamage.
    195       1.8   thorpej 	 */
    196       1.8   thorpej 	if (optind == 0)
    197       1.8   thorpej 		optind = 1;
    198       1.2     lukem 
    199       1.4  christos 	if (optreset)
    200       1.4  christos 		nonopt_start = nonopt_end = -1;
    201       1.4  christos start:
    202       1.1       mcr 	if (optreset || !*place) {		/* update scanning pointer */
    203       1.1       mcr 		optreset = 0;
    204       1.4  christos 		if (optind >= nargc) {          /* end of argument vector */
    205       1.4  christos 			place = EMSG;
    206       1.4  christos 			if (nonopt_end != -1) {
    207       1.4  christos 				/* do permutation, if we have to */
    208       1.4  christos 				permute_args(nonopt_start, nonopt_end,
    209       1.4  christos 				    optind, nargv);
    210       1.4  christos 				optind -= nonopt_end - nonopt_start;
    211       1.4  christos 			}
    212       1.4  christos 			else if (nonopt_start != -1) {
    213       1.4  christos 				/*
    214       1.4  christos 				 * If we skipped non-options, set optind
    215       1.4  christos 				 * to the first of them.
    216       1.4  christos 				 */
    217       1.4  christos 				optind = nonopt_start;
    218       1.4  christos 			}
    219       1.4  christos 			nonopt_start = nonopt_end = -1;
    220       1.4  christos 			return -1;
    221       1.4  christos 		}
    222       1.9       wiz 		if ((*(place = nargv[optind]) != '-')
    223       1.9       wiz 		    || (place[1] == '\0')) {    /* found non-option */
    224       1.1       mcr 			place = EMSG;
    225       1.4  christos 			if (IN_ORDER) {
    226       1.4  christos 				/*
    227       1.4  christos 				 * GNU extension:
    228       1.4  christos 				 * return non-option as argument to option 1
    229       1.4  christos 				 */
    230       1.4  christos 				optarg = nargv[optind++];
    231       1.4  christos 				return INORDER;
    232       1.4  christos 			}
    233       1.4  christos 			if (!PERMUTE) {
    234       1.4  christos 				/*
    235       1.4  christos 				 * if no permutation wanted, stop parsing
    236       1.4  christos 				 * at first non-option
    237       1.4  christos 				 */
    238       1.4  christos 				return -1;
    239       1.4  christos 			}
    240       1.4  christos 			/* do permutation */
    241       1.4  christos 			if (nonopt_start == -1)
    242       1.4  christos 				nonopt_start = optind;
    243       1.4  christos 			else if (nonopt_end != -1) {
    244       1.4  christos 				permute_args(nonopt_start, nonopt_end,
    245       1.4  christos 				    optind, nargv);
    246       1.4  christos 				nonopt_start = optind -
    247       1.4  christos 				    (nonopt_end - nonopt_start);
    248       1.4  christos 				nonopt_end = -1;
    249       1.4  christos 			}
    250       1.4  christos 			optind++;
    251       1.4  christos 			/* process next argument */
    252       1.4  christos 			goto start;
    253       1.1       mcr 		}
    254       1.4  christos 		if (nonopt_start != -1 && nonopt_end == -1)
    255       1.4  christos 			nonopt_end = optind;
    256       1.1       mcr 		if (place[1] && *++place == '-') {	/* found "--" */
    257       1.4  christos 			place++;
    258       1.4  christos 			return -2;
    259       1.4  christos 		}
    260       1.4  christos 	}
    261       1.4  christos 	if ((optchar = (int)*place++) == (int)':' ||
    262       1.4  christos 	    (oli = strchr(options + (IGNORE_FIRST ? 1 : 0), optchar)) == NULL) {
    263       1.4  christos 		/* option letter unknown or ':' */
    264       1.4  christos 		if (!*place)
    265       1.4  christos 			++optind;
    266       1.4  christos 		if (PRINT_ERROR)
    267       1.6   nathanw 			warnx(illoptchar, optchar);
    268       1.4  christos 		optopt = optchar;
    269       1.4  christos 		return BADCH;
    270       1.4  christos 	}
    271       1.4  christos 	if (optchar == 'W' && oli[1] == ';') {		/* -W long-option */
    272       1.4  christos 		/* XXX: what if no long options provided (called by getopt)? */
    273       1.4  christos 		if (*place)
    274       1.4  christos 			return -2;
    275       1.4  christos 
    276       1.4  christos 		if (++optind >= nargc) {	/* no arg */
    277       1.1       mcr 			place = EMSG;
    278       1.4  christos 			if (PRINT_ERROR)
    279       1.6   nathanw 				warnx(recargchar, optchar);
    280       1.4  christos 			optopt = optchar;
    281       1.4  christos 			return BADARG;
    282       1.4  christos 		} else				/* white space */
    283       1.4  christos 			place = nargv[optind];
    284       1.1       mcr 		/*
    285       1.4  christos 		 * Handle -W arg the same as --arg (which causes getopt to
    286       1.4  christos 		 * stop parsing).
    287       1.1       mcr 		 */
    288       1.4  christos 		return -2;
    289       1.4  christos 	}
    290       1.4  christos 	if (*++oli != ':') {			/* doesn't take argument */
    291       1.1       mcr 		if (!*place)
    292       1.1       mcr 			++optind;
    293       1.4  christos 	} else {				/* takes (optional) argument */
    294       1.1       mcr 		optarg = NULL;
    295       1.1       mcr 		if (*place)			/* no white space */
    296       1.1       mcr 			optarg = place;
    297       1.4  christos 		/* XXX: disable test for :: if PC? (GNU doesn't) */
    298       1.4  christos 		else if (oli[1] != ':') {	/* arg not optional */
    299       1.4  christos 			if (++optind >= nargc) {	/* no arg */
    300       1.4  christos 				place = EMSG;
    301       1.4  christos 				if (PRINT_ERROR)
    302       1.6   nathanw 					warnx(recargchar, optchar);
    303       1.4  christos 				optopt = optchar;
    304       1.4  christos 				return BADARG;
    305       1.4  christos 			} else
    306       1.4  christos 				optarg = nargv[optind];
    307       1.4  christos 		}
    308       1.1       mcr 		place = EMSG;
    309       1.1       mcr 		++optind;
    310       1.1       mcr 	}
    311       1.4  christos 	/* dump back option letter */
    312       1.4  christos 	return optchar;
    313       1.1       mcr }
    314       1.1       mcr 
    315       1.4  christos #ifdef REPLACE_GETOPT
    316       1.1       mcr /*
    317       1.1       mcr  * getopt --
    318       1.1       mcr  *	Parse argc/argv argument vector.
    319       1.4  christos  *
    320       1.4  christos  * [eventually this will replace the real getopt]
    321       1.1       mcr  */
    322       1.1       mcr int
    323       1.4  christos getopt(nargc, nargv, options)
    324       1.1       mcr 	int nargc;
    325       1.1       mcr 	char * const *nargv;
    326       1.4  christos 	const char *options;
    327       1.1       mcr {
    328       1.1       mcr 	int retval;
    329      1.10     lukem 
    330      1.10     lukem 	_DIAGASSERT(nargv != NULL);
    331      1.10     lukem 	_DIAGASSERT(options != NULL);
    332       1.1       mcr 
    333       1.4  christos 	if ((retval = getopt_internal(nargc, nargv, options)) == -2) {
    334       1.4  christos 		++optind;
    335       1.4  christos 		/*
    336       1.4  christos 		 * We found an option (--), so if we skipped non-options,
    337       1.4  christos 		 * we have to permute.
    338       1.4  christos 		 */
    339       1.4  christos 		if (nonopt_end != -1) {
    340       1.4  christos 			permute_args(nonopt_start, nonopt_end, optind,
    341       1.4  christos 				       nargv);
    342       1.4  christos 			optind -= nonopt_end - nonopt_start;
    343       1.4  christos 		}
    344       1.4  christos 		nonopt_start = nonopt_end = -1;
    345       1.1       mcr 		retval = -1;
    346       1.1       mcr 	}
    347       1.4  christos 	return retval;
    348       1.1       mcr }
    349       1.1       mcr #endif
    350       1.1       mcr 
    351       1.1       mcr /*
    352       1.1       mcr  * getopt_long --
    353       1.1       mcr  *	Parse argc/argv argument vector.
    354       1.1       mcr  */
    355       1.1       mcr int
    356       1.4  christos getopt_long(nargc, nargv, options, long_options, idx)
    357       1.2     lukem 	int nargc;
    358       1.4  christos 	char * const *nargv;
    359       1.4  christos 	const char *options;
    360       1.4  christos 	const struct option *long_options;
    361       1.4  christos 	int *idx;
    362       1.1       mcr {
    363       1.1       mcr 	int retval;
    364       1.1       mcr 
    365       1.2     lukem 	_DIAGASSERT(nargv != NULL);
    366       1.4  christos 	_DIAGASSERT(options != NULL);
    367       1.2     lukem 	_DIAGASSERT(long_options != NULL);
    368       1.4  christos 	/* idx may be NULL */
    369       1.2     lukem 
    370       1.1       mcr 	if ((retval = getopt_internal(nargc, nargv, options)) == -2) {
    371       1.4  christos 		char *current_argv, *has_equal;
    372       1.4  christos 		size_t current_argv_len;
    373       1.4  christos 		int i, match;
    374       1.1       mcr 
    375       1.4  christos 		current_argv = place;
    376       1.4  christos 		match = -1;
    377       1.4  christos 
    378       1.4  christos 		optind++;
    379       1.4  christos 		place = EMSG;
    380       1.4  christos 
    381       1.4  christos 		if (*current_argv == '\0') {		/* found "--" */
    382       1.4  christos 			/*
    383       1.4  christos 			 * We found an option (--), so if we skipped
    384       1.4  christos 			 * non-options, we have to permute.
    385       1.4  christos 			 */
    386       1.4  christos 			if (nonopt_end != -1) {
    387       1.4  christos 				permute_args(nonopt_start, nonopt_end,
    388       1.4  christos 				    optind, nargv);
    389       1.4  christos 				optind -= nonopt_end - nonopt_start;
    390       1.4  christos 			}
    391       1.4  christos 			nonopt_start = nonopt_end = -1;
    392       1.4  christos 			return -1;
    393       1.1       mcr 		}
    394       1.1       mcr 		if ((has_equal = strchr(current_argv, '=')) != NULL) {
    395       1.4  christos 			/* argument found (--option=arg) */
    396       1.1       mcr 			current_argv_len = has_equal - current_argv;
    397       1.1       mcr 			has_equal++;
    398       1.1       mcr 		} else
    399       1.1       mcr 			current_argv_len = strlen(current_argv);
    400       1.4  christos 
    401       1.4  christos 		for (i = 0; long_options[i].name; i++) {
    402       1.4  christos 			/* find matching long option */
    403       1.4  christos 			if (strncmp(current_argv, long_options[i].name,
    404       1.4  christos 			    current_argv_len))
    405       1.1       mcr 				continue;
    406       1.1       mcr 
    407       1.4  christos 			if (strlen(long_options[i].name) ==
    408       1.4  christos 			    (unsigned)current_argv_len) {
    409       1.4  christos 				/* exact match */
    410       1.1       mcr 				match = i;
    411       1.1       mcr 				break;
    412       1.1       mcr 			}
    413       1.4  christos 			if (match == -1)		/* partial match */
    414       1.1       mcr 				match = i;
    415       1.4  christos 			else {
    416       1.4  christos 				/* ambiguous abbreviation */
    417       1.4  christos 				if (PRINT_ERROR)
    418       1.7  sommerfe 					warnx(ambig, (int)current_argv_len,
    419       1.4  christos 					     current_argv);
    420       1.4  christos 				optopt = 0;
    421       1.4  christos 				return BADCH;
    422       1.4  christos 			}
    423       1.1       mcr 		}
    424       1.4  christos 		if (match != -1) {			/* option found */
    425       1.4  christos 		        if (long_options[match].has_arg == no_argument
    426       1.4  christos 			    && has_equal) {
    427       1.4  christos 				if (PRINT_ERROR)
    428       1.7  sommerfe 					warnx(noarg, (int)current_argv_len,
    429       1.4  christos 					     current_argv);
    430       1.4  christos 				/*
    431       1.4  christos 				 * XXX: GNU sets optopt to val regardless of
    432       1.4  christos 				 * flag
    433       1.4  christos 				 */
    434       1.4  christos 				if (long_options[match].flag == NULL)
    435       1.4  christos 					optopt = long_options[match].val;
    436       1.4  christos 				else
    437       1.4  christos 					optopt = 0;
    438       1.4  christos 				return BADARG;
    439       1.4  christos 			}
    440       1.1       mcr 			if (long_options[match].has_arg == required_argument ||
    441       1.1       mcr 			    long_options[match].has_arg == optional_argument) {
    442       1.1       mcr 				if (has_equal)
    443       1.1       mcr 					optarg = has_equal;
    444       1.4  christos 				else if (long_options[match].has_arg ==
    445       1.4  christos 				    required_argument) {
    446       1.4  christos 					/*
    447       1.4  christos 					 * optional argument doesn't use
    448       1.4  christos 					 * next nargv
    449       1.4  christos 					 */
    450       1.1       mcr 					optarg = nargv[optind++];
    451       1.4  christos 				}
    452       1.1       mcr 			}
    453       1.1       mcr 			if ((long_options[match].has_arg == required_argument)
    454       1.1       mcr 			    && (optarg == NULL)) {
    455       1.1       mcr 				/*
    456       1.4  christos 				 * Missing argument; leading ':'
    457       1.1       mcr 				 * indicates no error should be generated
    458       1.1       mcr 				 */
    459       1.4  christos 				if (PRINT_ERROR)
    460       1.6   nathanw 					warnx(recargstring, current_argv);
    461       1.4  christos 				/*
    462       1.4  christos 				 * XXX: GNU sets optopt to val regardless
    463       1.4  christos 				 * of flag
    464       1.4  christos 				 */
    465       1.4  christos 				if (long_options[match].flag == NULL)
    466       1.4  christos 					optopt = long_options[match].val;
    467       1.4  christos 				else
    468       1.4  christos 					optopt = 0;
    469       1.4  christos 				--optind;
    470       1.4  christos 				return BADARG;
    471       1.4  christos 			}
    472       1.4  christos 		} else {			/* unknown option */
    473       1.4  christos 			if (PRINT_ERROR)
    474       1.6   nathanw 				warnx(illoptstring, current_argv);
    475       1.4  christos 			optopt = 0;
    476       1.4  christos 			return BADCH;
    477       1.1       mcr 		}
    478       1.1       mcr 		if (long_options[match].flag) {
    479       1.1       mcr 			*long_options[match].flag = long_options[match].val;
    480       1.1       mcr 			retval = 0;
    481       1.1       mcr 		} else
    482       1.1       mcr 			retval = long_options[match].val;
    483       1.4  christos 		if (idx)
    484       1.4  christos 			*idx = match;
    485       1.1       mcr 	}
    486       1.4  christos 	return retval;
    487       1.1       mcr }
    488  1.11.2.3   nathanw #endif /* !GETOPT_LONG */
    489