Home | History | Annotate | Line # | Download | only in gen
glob.c revision 1.27
      1  1.27  christos /*	$NetBSD: glob.c,v 1.27 2010/09/06 14:40:25 christos Exp $	*/
      2   1.5       cgd 
      3   1.1       cgd /*
      4  1.12  christos  * Copyright (c) 1989, 1993
      5  1.12  christos  *	The Regents of the University of California.  All rights reserved.
      6  1.12  christos  *
      7  1.12  christos  * This code is derived from software contributed to Berkeley by
      8  1.12  christos  * Guido van Rossum.
      9  1.12  christos  *
     10  1.12  christos  * Redistribution and use in source and binary forms, with or without
     11  1.12  christos  * modification, are permitted provided that the following conditions
     12  1.12  christos  * are met:
     13  1.12  christos  * 1. Redistributions of source code must retain the above copyright
     14  1.12  christos  *    notice, this list of conditions and the following disclaimer.
     15  1.12  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.12  christos  *    notice, this list of conditions and the following disclaimer in the
     17  1.12  christos  *    documentation and/or other materials provided with the distribution.
     18  1.12  christos  * 3. Neither the name of the University nor the names of its contributors
     19  1.12  christos  *    may be used to endorse or promote products derived from this software
     20  1.12  christos  *    without specific prior written permission.
     21  1.12  christos  *
     22  1.12  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  1.12  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  1.12  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  1.12  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  1.12  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  1.12  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  1.12  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  1.12  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  1.12  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  1.12  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  1.12  christos  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.12  christos #include <sys/cdefs.h>
     36  1.12  christos #if defined(LIBC_SCCS) && !defined(lint)
     37  1.12  christos #if 0
     38  1.12  christos static char sccsid[] = "@(#)glob.c	8.3 (Berkeley) 10/13/93";
     39  1.12  christos #else
     40  1.27  christos __RCSID("$NetBSD: glob.c,v 1.27 2010/09/06 14:40:25 christos Exp $");
     41  1.12  christos #endif
     42  1.12  christos #endif /* LIBC_SCCS and not lint */
     43   1.1       cgd 
     44  1.12  christos /*
     45  1.12  christos  * glob(3) -- a superset of the one defined in POSIX 1003.2.
     46  1.12  christos  *
     47  1.12  christos  * The [!...] convention to negate a range is supported (SysV, Posix, ksh).
     48  1.12  christos  *
     49  1.12  christos  * Optional extra services, controlled by flags not defined by POSIX:
     50  1.12  christos  *
     51  1.12  christos  * GLOB_MAGCHAR:
     52  1.12  christos  *	Set in gl_flags if pattern contained a globbing character.
     53  1.12  christos  * GLOB_NOMAGIC:
     54  1.12  christos  *	Same as GLOB_NOCHECK, but it will only append pattern if it did
     55  1.12  christos  *	not contain any magic characters.  [Used in csh style globbing]
     56  1.12  christos  * GLOB_ALTDIRFUNC:
     57  1.12  christos  *	Use alternately specified directory access functions.
     58  1.12  christos  * GLOB_TILDE:
     59  1.12  christos  *	expand ~user/foo to the /home/dir/of/user/foo
     60  1.12  christos  * GLOB_BRACE:
     61  1.12  christos  *	expand {1,2}{a,b} to 1a 1b 2a 2b
     62  1.19  christos  * GLOB_PERIOD:
     63  1.19  christos  *	allow metacharacters to match leading dots in filenames.
     64  1.22  christos  * GLOB_NO_DOTDIRS:
     65  1.22  christos  *	. and .. are hidden from wildcards, even if GLOB_PERIOD is set.
     66  1.12  christos  * gl_matchc:
     67  1.12  christos  *	Number of matches in the current invocation of glob.
     68  1.12  christos  */
     69  1.12  christos 
     70  1.12  christos #include "namespace.h"
     71  1.12  christos #include <sys/param.h>
     72  1.12  christos #include <sys/stat.h>
     73  1.12  christos 
     74  1.12  christos #include <assert.h>
     75  1.12  christos #include <ctype.h>
     76  1.12  christos #include <dirent.h>
     77  1.12  christos #include <errno.h>
     78  1.12  christos #include <glob.h>
     79  1.12  christos #include <pwd.h>
     80  1.12  christos #include <stdio.h>
     81  1.21  christos #include <stddef.h>
     82  1.12  christos #include <stdlib.h>
     83  1.12  christos #include <string.h>
     84  1.12  christos #include <unistd.h>
     85  1.12  christos 
     86  1.12  christos #ifdef HAVE_NBTOOL_CONFIG_H
     87  1.12  christos #define NO_GETPW_R
     88  1.12  christos #endif
     89  1.12  christos 
     90  1.26  christos #define	GLOB_LIMIT_MALLOC	65536
     91  1.26  christos #define	GLOB_LIMIT_STAT		128
     92  1.26  christos #define	GLOB_LIMIT_READDIR	16384
     93  1.26  christos 
     94  1.26  christos #define	GLOB_INDEX_MALLOC	0
     95  1.26  christos #define	GLOB_INDEX_STAT		1
     96  1.26  christos #define	GLOB_INDEX_READDIR	2
     97  1.23        ad 
     98  1.12  christos /*
     99  1.12  christos  * XXX: For NetBSD 1.4.x compatibility. (kill me l8r)
    100  1.12  christos  */
    101  1.12  christos #ifndef _DIAGASSERT
    102  1.12  christos #define _DIAGASSERT(a)
    103  1.12  christos #endif
    104  1.12  christos 
    105  1.12  christos #define	DOLLAR		'$'
    106  1.12  christos #define	DOT		'.'
    107  1.12  christos #define	EOS		'\0'
    108  1.12  christos #define	LBRACKET	'['
    109  1.12  christos #define	NOT		'!'
    110  1.12  christos #define	QUESTION	'?'
    111  1.12  christos #define	QUOTE		'\\'
    112  1.12  christos #define	RANGE		'-'
    113  1.12  christos #define	RBRACKET	']'
    114  1.12  christos #define	SEP		'/'
    115  1.12  christos #define	STAR		'*'
    116  1.12  christos #define	TILDE		'~'
    117  1.12  christos #define	UNDERSCORE	'_'
    118  1.12  christos #define	LBRACE		'{'
    119  1.12  christos #define	RBRACE		'}'
    120  1.12  christos #define	SLASH		'/'
    121  1.12  christos #define	COMMA		','
    122  1.12  christos 
    123  1.15  christos #ifndef USE_8BIT_CHARS
    124  1.12  christos 
    125  1.12  christos #define	M_QUOTE		0x8000
    126  1.12  christos #define	M_PROTECT	0x4000
    127  1.12  christos #define	M_MASK		0xffff
    128  1.12  christos #define	M_ASCII		0x00ff
    129  1.12  christos 
    130  1.12  christos typedef u_short Char;
    131  1.12  christos 
    132  1.12  christos #else
    133  1.12  christos 
    134  1.15  christos #define	M_QUOTE		(Char)0x80
    135  1.15  christos #define	M_PROTECT	(Char)0x40
    136  1.15  christos #define	M_MASK		(Char)0xff
    137  1.15  christos #define	M_ASCII		(Char)0x7f
    138  1.12  christos 
    139  1.12  christos typedef char Char;
    140  1.12  christos 
    141  1.12  christos #endif
    142  1.12  christos 
    143  1.12  christos 
    144  1.12  christos #define	CHAR(c)		((Char)((c)&M_ASCII))
    145  1.12  christos #define	META(c)		((Char)((c)|M_QUOTE))
    146  1.12  christos #define	M_ALL		META('*')
    147  1.12  christos #define	M_END		META(']')
    148  1.12  christos #define	M_NOT		META('!')
    149  1.12  christos #define	M_ONE		META('?')
    150  1.12  christos #define	M_RNG		META('-')
    151  1.12  christos #define	M_SET		META('[')
    152  1.12  christos #define	ismeta(c)	(((c)&M_QUOTE) != 0)
    153  1.12  christos 
    154  1.12  christos 
    155  1.18  christos static int	 compare(const void *, const void *);
    156  1.18  christos static int	 g_Ctoc(const Char *, char *, size_t);
    157  1.18  christos static int	 g_lstat(Char *, __gl_stat_t  *, glob_t *);
    158  1.18  christos static DIR	*g_opendir(Char *, glob_t *);
    159  1.18  christos static Char	*g_strchr(const Char *, int);
    160  1.18  christos static int	 g_stat(Char *, __gl_stat_t *, glob_t *);
    161  1.25  christos static int	 glob0(const Char *, glob_t *, size_t *);
    162  1.18  christos static int	 glob1(Char *, glob_t *, size_t *);
    163  1.27  christos static int	 glob2(Char *, Char *, Char *, const Char *, glob_t *,
    164  1.18  christos     size_t *);
    165  1.27  christos static int	 glob3(Char *, Char *, Char *, const Char *, const Char *,
    166  1.27  christos     const Char *, glob_t *, size_t *);
    167  1.18  christos static int	 globextend(const Char *, glob_t *, size_t *);
    168  1.18  christos static const Char *globtilde(const Char *, Char *, size_t, glob_t *);
    169  1.25  christos static int	 globexp1(const Char *, glob_t *, size_t *);
    170  1.25  christos static int	 globexp2(const Char *, const Char *, glob_t *, int *,
    171  1.25  christos     size_t *);
    172  1.27  christos static int	 match(const Char *, const Char *, const Char *);
    173  1.12  christos #ifdef DEBUG
    174  1.18  christos static void	 qprintf(const char *, Char *);
    175  1.12  christos #endif
    176  1.12  christos 
    177  1.12  christos int
    178  1.18  christos glob(const char *pattern, int flags, int (*errfunc)(const char *, int),
    179  1.18  christos     glob_t *pglob)
    180  1.12  christos {
    181  1.12  christos 	const u_char *patnext;
    182  1.12  christos 	int c;
    183  1.12  christos 	Char *bufnext, *bufend, patbuf[MAXPATHLEN+1];
    184  1.26  christos 	/* 0 = malloc(), 1 = stat(), 2 = readdir() */
    185  1.26  christos 	size_t limit[] = { 0, 0, 0 };
    186  1.12  christos 
    187  1.12  christos 	_DIAGASSERT(pattern != NULL);
    188  1.12  christos 
    189  1.12  christos 	patnext = (const u_char *) pattern;
    190  1.12  christos 	if (!(flags & GLOB_APPEND)) {
    191  1.12  christos 		pglob->gl_pathc = 0;
    192  1.12  christos 		pglob->gl_pathv = NULL;
    193  1.12  christos 		if (!(flags & GLOB_DOOFFS))
    194  1.12  christos 			pglob->gl_offs = 0;
    195  1.12  christos 	}
    196  1.12  christos 	pglob->gl_flags = flags & ~GLOB_MAGCHAR;
    197  1.12  christos 	pglob->gl_errfunc = errfunc;
    198  1.12  christos 	pglob->gl_matchc = 0;
    199  1.12  christos 
    200  1.12  christos 	bufnext = patbuf;
    201  1.12  christos 	bufend = bufnext + MAXPATHLEN;
    202  1.12  christos 	if (flags & GLOB_NOESCAPE) {
    203  1.12  christos 		while (bufnext < bufend && (c = *patnext++) != EOS)
    204  1.12  christos 			*bufnext++ = c;
    205  1.12  christos 	} else {
    206  1.12  christos 		/* Protect the quoted characters. */
    207  1.12  christos 		while (bufnext < bufend && (c = *patnext++) != EOS)
    208  1.12  christos 			if (c == QUOTE) {
    209  1.12  christos 				if ((c = *patnext++) == EOS) {
    210  1.12  christos 					c = QUOTE;
    211  1.12  christos 					--patnext;
    212  1.12  christos 				}
    213  1.12  christos 				*bufnext++ = c | M_PROTECT;
    214  1.12  christos 			}
    215  1.12  christos 			else
    216  1.12  christos 				*bufnext++ = c;
    217  1.12  christos 	}
    218  1.12  christos 	*bufnext = EOS;
    219  1.12  christos 
    220  1.12  christos 	if (flags & GLOB_BRACE)
    221  1.26  christos 	    return globexp1(patbuf, pglob, limit);
    222  1.12  christos 	else
    223  1.26  christos 	    return glob0(patbuf, pglob, limit);
    224  1.12  christos }
    225  1.12  christos 
    226  1.12  christos /*
    227  1.12  christos  * Expand recursively a glob {} pattern. When there is no more expansion
    228  1.12  christos  * invoke the standard globbing routine to glob the rest of the magic
    229  1.12  christos  * characters
    230  1.12  christos  */
    231  1.12  christos static int
    232  1.25  christos globexp1(const Char *pattern, glob_t *pglob, size_t *limit)
    233  1.12  christos {
    234  1.12  christos 	const Char* ptr = pattern;
    235  1.12  christos 	int rv;
    236  1.12  christos 
    237  1.12  christos 	_DIAGASSERT(pattern != NULL);
    238  1.12  christos 	_DIAGASSERT(pglob != NULL);
    239  1.12  christos 
    240  1.12  christos 	/* Protect a single {}, for find(1), like csh */
    241  1.12  christos 	if (pattern[0] == LBRACE && pattern[1] == RBRACE && pattern[2] == EOS)
    242  1.25  christos 		return glob0(pattern, pglob, limit);
    243  1.12  christos 
    244  1.12  christos 	while ((ptr = (const Char *) g_strchr(ptr, LBRACE)) != NULL)
    245  1.25  christos 		if (!globexp2(ptr, pattern, pglob, &rv, limit))
    246  1.12  christos 			return rv;
    247  1.12  christos 
    248  1.25  christos 	return glob0(pattern, pglob, limit);
    249  1.12  christos }
    250  1.12  christos 
    251  1.12  christos 
    252  1.12  christos /*
    253  1.12  christos  * Recursive brace globbing helper. Tries to expand a single brace.
    254  1.12  christos  * If it succeeds then it invokes globexp1 with the new pattern.
    255  1.12  christos  * If it fails then it tries to glob the rest of the pattern and returns.
    256  1.12  christos  */
    257  1.12  christos static int
    258  1.25  christos globexp2(const Char *ptr, const Char *pattern, glob_t *pglob, int *rv,
    259  1.25  christos     size_t *limit)
    260  1.12  christos {
    261  1.12  christos 	int     i;
    262  1.12  christos 	Char   *lm, *ls;
    263  1.12  christos 	const Char *pe, *pm, *pl;
    264  1.12  christos 	Char    patbuf[MAXPATHLEN + 1];
    265  1.12  christos 
    266  1.12  christos 	_DIAGASSERT(ptr != NULL);
    267  1.12  christos 	_DIAGASSERT(pattern != NULL);
    268  1.12  christos 	_DIAGASSERT(pglob != NULL);
    269  1.12  christos 	_DIAGASSERT(rv != NULL);
    270  1.12  christos 
    271  1.12  christos 	/* copy part up to the brace */
    272  1.12  christos 	for (lm = patbuf, pm = pattern; pm != ptr; *lm++ = *pm++)
    273  1.12  christos 		continue;
    274  1.12  christos 	ls = lm;
    275  1.12  christos 
    276  1.12  christos 	/* Find the balanced brace */
    277  1.12  christos 	for (i = 0, pe = ++ptr; *pe; pe++)
    278  1.12  christos 		if (*pe == LBRACKET) {
    279  1.12  christos 			/* Ignore everything between [] */
    280  1.12  christos 			for (pm = pe++; *pe != RBRACKET && *pe != EOS; pe++)
    281  1.12  christos 				continue;
    282  1.12  christos 			if (*pe == EOS) {
    283  1.12  christos 				/*
    284  1.12  christos 				 * We could not find a matching RBRACKET.
    285  1.12  christos 				 * Ignore and just look for RBRACE
    286  1.12  christos 				 */
    287  1.12  christos 				pe = pm;
    288  1.12  christos 			}
    289  1.12  christos 		}
    290  1.12  christos 		else if (*pe == LBRACE)
    291  1.12  christos 			i++;
    292  1.12  christos 		else if (*pe == RBRACE) {
    293  1.12  christos 			if (i == 0)
    294  1.12  christos 				break;
    295  1.12  christos 			i--;
    296  1.12  christos 		}
    297  1.12  christos 
    298  1.12  christos 	/* Non matching braces; just glob the pattern */
    299  1.12  christos 	if (i != 0 || *pe == EOS) {
    300  1.12  christos 		/*
    301  1.12  christos 		 * we use `pattern', not `patbuf' here so that that
    302  1.12  christos 		 * unbalanced braces are passed to the match
    303  1.12  christos 		 */
    304  1.25  christos 		*rv = glob0(pattern, pglob, limit);
    305  1.12  christos 		return 0;
    306  1.12  christos 	}
    307  1.12  christos 
    308  1.12  christos 	for (i = 0, pl = pm = ptr; pm <= pe; pm++) {
    309  1.12  christos 		switch (*pm) {
    310  1.12  christos 		case LBRACKET:
    311  1.12  christos 			/* Ignore everything between [] */
    312  1.12  christos 			for (pl = pm++; *pm != RBRACKET && *pm != EOS; pm++)
    313  1.12  christos 				continue;
    314  1.12  christos 			if (*pm == EOS) {
    315  1.12  christos 				/*
    316  1.12  christos 				 * We could not find a matching RBRACKET.
    317  1.12  christos 				 * Ignore and just look for RBRACE
    318  1.12  christos 				 */
    319  1.12  christos 				pm = pl;
    320  1.12  christos 			}
    321  1.12  christos 			break;
    322  1.12  christos 
    323  1.12  christos 		case LBRACE:
    324  1.12  christos 			i++;
    325  1.12  christos 			break;
    326  1.12  christos 
    327  1.12  christos 		case RBRACE:
    328  1.12  christos 			if (i) {
    329  1.12  christos 				i--;
    330  1.12  christos 				break;
    331  1.12  christos 			}
    332  1.12  christos 			/* FALLTHROUGH */
    333  1.12  christos 		case COMMA:
    334  1.12  christos 			if (i && *pm == COMMA)
    335  1.12  christos 				break;
    336  1.12  christos 			else {
    337  1.12  christos 				/* Append the current string */
    338  1.12  christos 				for (lm = ls; (pl < pm); *lm++ = *pl++)
    339  1.12  christos 					continue;
    340  1.12  christos 				/*
    341  1.12  christos 				 * Append the rest of the pattern after the
    342  1.12  christos 				 * closing brace
    343  1.12  christos 				 */
    344  1.12  christos 				for (pl = pe + 1; (*lm++ = *pl++) != EOS;)
    345  1.12  christos 					continue;
    346  1.12  christos 
    347  1.12  christos 				/* Expand the current pattern */
    348  1.12  christos #ifdef DEBUG
    349  1.27  christos 				qprintf("globexp2", patbuf);
    350  1.12  christos #endif
    351  1.25  christos 				*rv = globexp1(patbuf, pglob, limit);
    352  1.12  christos 
    353  1.12  christos 				/* move after the comma, to the next string */
    354  1.12  christos 				pl = pm + 1;
    355  1.12  christos 			}
    356  1.12  christos 			break;
    357  1.12  christos 
    358  1.12  christos 		default:
    359  1.12  christos 			break;
    360  1.12  christos 		}
    361  1.12  christos 	}
    362  1.12  christos 	*rv = 0;
    363  1.12  christos 	return 0;
    364  1.12  christos }
    365  1.12  christos 
    366  1.12  christos 
    367  1.12  christos 
    368  1.12  christos /*
    369  1.12  christos  * expand tilde from the passwd file.
    370  1.12  christos  */
    371  1.12  christos static const Char *
    372  1.18  christos globtilde(const Char *pattern, Char *patbuf, size_t patsize, glob_t *pglob)
    373  1.12  christos {
    374  1.12  christos 	struct passwd *pwd;
    375  1.12  christos 	const char *h;
    376  1.12  christos 	const Char *p;
    377  1.12  christos 	Char *b;
    378  1.12  christos 	char *d;
    379  1.12  christos 	Char *pend = &patbuf[patsize / sizeof(Char)];
    380  1.12  christos #ifndef NO_GETPW_R
    381  1.12  christos 	struct passwd pwres;
    382  1.12  christos 	char pwbuf[1024];
    383  1.12  christos #endif
    384  1.12  christos 
    385  1.12  christos 	pend--;
    386  1.12  christos 
    387  1.12  christos 	_DIAGASSERT(pattern != NULL);
    388  1.12  christos 	_DIAGASSERT(patbuf != NULL);
    389  1.12  christos 	_DIAGASSERT(pglob != NULL);
    390  1.12  christos 
    391  1.12  christos 	if (*pattern != TILDE || !(pglob->gl_flags & GLOB_TILDE))
    392  1.12  christos 		return pattern;
    393  1.12  christos 
    394  1.12  christos 	/* Copy up to the end of the string or / */
    395  1.12  christos 	for (p = pattern + 1, d = (char *)(void *)patbuf;
    396  1.12  christos 	     d < (char *)(void *)pend && *p && *p != SLASH;
    397  1.12  christos 	     *d++ = *p++)
    398  1.12  christos 		continue;
    399  1.12  christos 
    400  1.12  christos 	if (d == (char *)(void *)pend)
    401  1.12  christos 		return NULL;
    402  1.12  christos 
    403  1.12  christos 	*d = EOS;
    404  1.12  christos 	d = (char *)(void *)patbuf;
    405  1.12  christos 
    406  1.12  christos 	if (*d == EOS) {
    407  1.12  christos 		/*
    408  1.12  christos 		 * handle a plain ~ or ~/ by expanding $HOME
    409  1.12  christos 		 * first and then trying the password file
    410  1.12  christos 		 */
    411  1.12  christos 		if ((h = getenv("HOME")) == NULL) {
    412  1.12  christos #ifdef NO_GETPW_R
    413  1.12  christos 			if ((pwd = getpwuid(getuid())) == NULL)
    414  1.12  christos #else
    415  1.12  christos 			if (getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf),
    416  1.12  christos 			    &pwd) != 0 || pwd == NULL)
    417  1.12  christos #endif
    418  1.12  christos 				return pattern;
    419  1.12  christos 			else
    420  1.12  christos 				h = pwd->pw_dir;
    421  1.12  christos 		}
    422  1.12  christos 	}
    423  1.12  christos 	else {
    424  1.12  christos 		/*
    425  1.12  christos 		 * Expand a ~user
    426  1.12  christos 		 */
    427  1.12  christos #ifdef NO_GETPW_R
    428  1.12  christos 		if ((pwd = getpwnam(d)) == NULL)
    429  1.12  christos #else
    430  1.12  christos 		if (getpwnam_r(d, &pwres, pwbuf, sizeof(pwbuf), &pwd) != 0 ||
    431  1.12  christos 		    pwd == NULL)
    432  1.12  christos #endif
    433  1.12  christos 			return pattern;
    434  1.12  christos 		else
    435  1.12  christos 			h = pwd->pw_dir;
    436  1.12  christos 	}
    437  1.12  christos 
    438  1.12  christos 	/* Copy the home directory */
    439  1.12  christos 	for (b = patbuf; b < pend && *h; *b++ = *h++)
    440  1.12  christos 		continue;
    441  1.12  christos 
    442  1.12  christos 	if (b == pend)
    443  1.12  christos 		return NULL;
    444  1.12  christos 
    445  1.12  christos 	/* Append the rest of the pattern */
    446  1.12  christos 	while (b < pend && (*b++ = *p++) != EOS)
    447  1.12  christos 		continue;
    448  1.12  christos 
    449  1.12  christos 	if (b == pend)
    450  1.12  christos 		return NULL;
    451  1.12  christos 
    452  1.12  christos 	return patbuf;
    453  1.12  christos }
    454  1.12  christos 
    455  1.12  christos 
    456  1.12  christos /*
    457  1.12  christos  * The main glob() routine: compiles the pattern (optionally processing
    458  1.12  christos  * quotes), calls glob1() to do the real pattern matching, and finally
    459  1.12  christos  * sorts the list (unless unsorted operation is requested).  Returns 0
    460  1.12  christos  * if things went well, nonzero if errors occurred.  It is not an error
    461  1.12  christos  * to find no matches.
    462  1.12  christos  */
    463  1.12  christos static int
    464  1.25  christos glob0(const Char *pattern, glob_t *pglob, size_t *limit)
    465  1.12  christos {
    466  1.12  christos 	const Char *qpatnext;
    467  1.16  christos 	int c, error;
    468  1.16  christos 	__gl_size_t oldpathc;
    469  1.12  christos 	Char *bufnext, patbuf[MAXPATHLEN+1];
    470  1.12  christos 
    471  1.12  christos 	_DIAGASSERT(pattern != NULL);
    472  1.12  christos 	_DIAGASSERT(pglob != NULL);
    473  1.12  christos 
    474  1.12  christos 	if ((qpatnext = globtilde(pattern, patbuf, sizeof(patbuf),
    475  1.12  christos 	    pglob)) == NULL)
    476  1.12  christos 		return GLOB_ABEND;
    477  1.12  christos 	oldpathc = pglob->gl_pathc;
    478  1.12  christos 	bufnext = patbuf;
    479  1.12  christos 
    480  1.12  christos 	/* We don't need to check for buffer overflow any more. */
    481  1.12  christos 	while ((c = *qpatnext++) != EOS) {
    482  1.12  christos 		switch (c) {
    483  1.12  christos 		case LBRACKET:
    484  1.12  christos 			c = *qpatnext;
    485  1.12  christos 			if (c == NOT)
    486  1.12  christos 				++qpatnext;
    487  1.12  christos 			if (*qpatnext == EOS ||
    488  1.12  christos 			    g_strchr(qpatnext+1, RBRACKET) == NULL) {
    489  1.12  christos 				*bufnext++ = LBRACKET;
    490  1.12  christos 				if (c == NOT)
    491  1.12  christos 					--qpatnext;
    492  1.12  christos 				break;
    493  1.12  christos 			}
    494  1.12  christos 			*bufnext++ = M_SET;
    495  1.12  christos 			if (c == NOT)
    496  1.12  christos 				*bufnext++ = M_NOT;
    497  1.12  christos 			c = *qpatnext++;
    498  1.12  christos 			do {
    499  1.12  christos 				*bufnext++ = CHAR(c);
    500  1.12  christos 				if (*qpatnext == RANGE &&
    501  1.12  christos 				    (c = qpatnext[1]) != RBRACKET) {
    502  1.12  christos 					*bufnext++ = M_RNG;
    503  1.12  christos 					*bufnext++ = CHAR(c);
    504  1.12  christos 					qpatnext += 2;
    505  1.12  christos 				}
    506  1.12  christos 			} while ((c = *qpatnext++) != RBRACKET);
    507  1.12  christos 			pglob->gl_flags |= GLOB_MAGCHAR;
    508  1.12  christos 			*bufnext++ = M_END;
    509  1.12  christos 			break;
    510  1.12  christos 		case QUESTION:
    511  1.12  christos 			pglob->gl_flags |= GLOB_MAGCHAR;
    512  1.12  christos 			*bufnext++ = M_ONE;
    513  1.12  christos 			break;
    514  1.12  christos 		case STAR:
    515  1.12  christos 			pglob->gl_flags |= GLOB_MAGCHAR;
    516  1.27  christos 			/* collapse adjacent stars to one [or three if globstar]
    517  1.12  christos 			 * to avoid exponential behavior
    518  1.12  christos 			 */
    519  1.27  christos 			if (bufnext == patbuf || bufnext[-1] != M_ALL ||
    520  1.27  christos 			    ((pglob->gl_flags & GLOB_STAR) != 0 &&
    521  1.27  christos 			    (bufnext - 1 == patbuf || bufnext[-2] != M_ALL ||
    522  1.27  christos 			    bufnext - 2 == patbuf || bufnext[-3] != M_ALL)))
    523  1.12  christos 				*bufnext++ = M_ALL;
    524  1.12  christos 			break;
    525  1.12  christos 		default:
    526  1.12  christos 			*bufnext++ = CHAR(c);
    527  1.12  christos 			break;
    528  1.12  christos 		}
    529  1.12  christos 	}
    530  1.12  christos 	*bufnext = EOS;
    531  1.12  christos #ifdef DEBUG
    532  1.27  christos 	qprintf("glob0", patbuf);
    533  1.12  christos #endif
    534  1.12  christos 
    535  1.25  christos 	if ((error = glob1(patbuf, pglob, limit)) != 0)
    536  1.18  christos 		return error;
    537  1.12  christos 
    538  1.12  christos 	if (pglob->gl_pathc == oldpathc) {
    539  1.12  christos 		/*
    540  1.12  christos 		 * If there was no match we are going to append the pattern
    541  1.12  christos 		 * if GLOB_NOCHECK was specified or if GLOB_NOMAGIC was
    542  1.12  christos 		 * specified and the pattern did not contain any magic
    543  1.12  christos 		 * characters GLOB_NOMAGIC is there just for compatibility
    544  1.12  christos 		 * with csh.
    545  1.12  christos 		 */
    546  1.12  christos 		if ((pglob->gl_flags & GLOB_NOCHECK) ||
    547  1.12  christos 		    ((pglob->gl_flags & (GLOB_NOMAGIC|GLOB_MAGCHAR))
    548  1.12  christos 		     == GLOB_NOMAGIC)) {
    549  1.25  christos 			return globextend(pattern, pglob, limit);
    550  1.12  christos 		} else {
    551  1.18  christos 			return GLOB_NOMATCH;
    552  1.12  christos 		}
    553  1.12  christos 	} else if (!(pglob->gl_flags & GLOB_NOSORT)) {
    554  1.12  christos 		qsort(pglob->gl_pathv + pglob->gl_offs + oldpathc,
    555  1.12  christos 		    (size_t)pglob->gl_pathc - oldpathc, sizeof(char *),
    556  1.12  christos 		    compare);
    557  1.12  christos 	}
    558  1.12  christos 
    559  1.18  christos 	return 0;
    560  1.12  christos }
    561  1.12  christos 
    562  1.12  christos static int
    563  1.18  christos compare(const void *p, const void *q)
    564  1.12  christos {
    565  1.12  christos 
    566  1.12  christos 	_DIAGASSERT(p != NULL);
    567  1.12  christos 	_DIAGASSERT(q != NULL);
    568  1.12  christos 
    569  1.18  christos 	return strcoll(*(const char * const *)p, *(const char * const *)q);
    570  1.12  christos }
    571  1.12  christos 
    572  1.12  christos static int
    573  1.18  christos glob1(Char *pattern, glob_t *pglob, size_t *limit)
    574  1.12  christos {
    575  1.12  christos 	Char pathbuf[MAXPATHLEN+1];
    576  1.12  christos 
    577  1.12  christos 	_DIAGASSERT(pattern != NULL);
    578  1.12  christos 	_DIAGASSERT(pglob != NULL);
    579  1.12  christos 
    580  1.12  christos 	/* A null pathname is invalid -- POSIX 1003.1 sect. 2.4. */
    581  1.12  christos 	if (*pattern == EOS)
    582  1.18  christos 		return 0;
    583  1.12  christos 	/*
    584  1.12  christos 	 * we save one character so that we can use ptr >= limit,
    585  1.12  christos 	 * in the general case when we are appending non nul chars only.
    586  1.12  christos 	 */
    587  1.18  christos 	return glob2(pathbuf, pathbuf,
    588  1.18  christos 	    pathbuf + (sizeof(pathbuf) / sizeof(*pathbuf)) - 1, pattern,
    589  1.18  christos 	    pglob, limit);
    590  1.12  christos }
    591  1.12  christos 
    592  1.12  christos /*
    593  1.12  christos  * The functions glob2 and glob3 are mutually recursive; there is one level
    594  1.12  christos  * of recursion for each segment in the pattern that contains one or more
    595  1.12  christos  * meta characters.
    596  1.12  christos  */
    597  1.12  christos static int
    598  1.27  christos glob2(Char *pathbuf, Char *pathend, Char *pathlim, const Char *pattern,
    599  1.27  christos     glob_t *pglob, size_t *limit)
    600  1.12  christos {
    601  1.12  christos 	__gl_stat_t sb;
    602  1.27  christos 	const Char *p;
    603  1.27  christos 	Char *q;
    604  1.12  christos 	int anymeta;
    605  1.21  christos 	Char *pend;
    606  1.21  christos 	ptrdiff_t diff;
    607  1.12  christos 
    608  1.12  christos 	_DIAGASSERT(pathbuf != NULL);
    609  1.12  christos 	_DIAGASSERT(pathend != NULL);
    610  1.12  christos 	_DIAGASSERT(pattern != NULL);
    611  1.12  christos 	_DIAGASSERT(pglob != NULL);
    612  1.12  christos 
    613  1.27  christos #ifdef DEBUG
    614  1.27  christos 	qprintf("glob2", pathbuf);
    615  1.27  christos #endif
    616  1.12  christos 	/*
    617  1.12  christos 	 * Loop over pattern segments until end of pattern or until
    618  1.12  christos 	 * segment with meta character found.
    619  1.12  christos 	 */
    620  1.12  christos 	for (anymeta = 0;;) {
    621  1.12  christos 		if (*pattern == EOS) {		/* End of pattern? */
    622  1.12  christos 			*pathend = EOS;
    623  1.12  christos 			if (g_lstat(pathbuf, &sb, pglob))
    624  1.18  christos 				return 0;
    625  1.12  christos 
    626  1.26  christos 			if ((pglob->gl_flags & GLOB_LIMIT) &&
    627  1.26  christos 			    limit[GLOB_INDEX_STAT]++ >= GLOB_LIMIT_STAT) {
    628  1.26  christos 				errno = 0;
    629  1.26  christos 				*pathend++ = SEP;
    630  1.26  christos 				*pathend = EOS;
    631  1.26  christos 				return GLOB_NOSPACE;
    632  1.26  christos 			}
    633  1.12  christos 			if (((pglob->gl_flags & GLOB_MARK) &&
    634  1.12  christos 			    pathend[-1] != SEP) && (S_ISDIR(sb.st_mode) ||
    635  1.12  christos 			    (S_ISLNK(sb.st_mode) &&
    636  1.12  christos 			    (g_stat(pathbuf, &sb, pglob) == 0) &&
    637  1.12  christos 			    S_ISDIR(sb.st_mode)))) {
    638  1.12  christos 				if (pathend >= pathlim)
    639  1.18  christos 					return GLOB_ABORTED;
    640  1.12  christos 				*pathend++ = SEP;
    641  1.12  christos 				*pathend = EOS;
    642  1.12  christos 			}
    643  1.12  christos 			++pglob->gl_matchc;
    644  1.18  christos 			return globextend(pathbuf, pglob, limit);
    645  1.12  christos 		}
    646  1.12  christos 
    647  1.12  christos 		/* Find end of next segment, copy tentatively to pathend. */
    648  1.12  christos 		q = pathend;
    649  1.12  christos 		p = pattern;
    650  1.12  christos 		while (*p != EOS && *p != SEP) {
    651  1.12  christos 			if (ismeta(*p))
    652  1.12  christos 				anymeta = 1;
    653  1.12  christos 			if (q >= pathlim)
    654  1.12  christos 				return GLOB_ABORTED;
    655  1.12  christos 			*q++ = *p++;
    656  1.12  christos 		}
    657  1.12  christos 
    658  1.20  christos                 /*
    659  1.21  christos 		 * No expansion, or path ends in slash-dot shash-dot-dot,
    660  1.20  christos 		 * do next segment.
    661  1.20  christos 		 */
    662  1.21  christos 		if (pglob->gl_flags & GLOB_PERIOD) {
    663  1.21  christos 			for (pend = pathend; pend > pathbuf && pend[-1] == '/';
    664  1.21  christos 			    pend--)
    665  1.21  christos 				continue;
    666  1.21  christos 			diff = pend - pathbuf;
    667  1.21  christos 		} else {
    668  1.21  christos 			/* XXX: GCC */
    669  1.21  christos 			diff = 0;
    670  1.21  christos 			pend = pathend;
    671  1.21  christos 		}
    672  1.21  christos 
    673  1.21  christos                 if ((!anymeta) ||
    674  1.21  christos 		    ((pglob->gl_flags & GLOB_PERIOD) &&
    675  1.21  christos 		     (diff >= 1 && pend[-1] == DOT) &&
    676  1.21  christos 		     (diff >= 2 && (pend[-2] == SLASH || pend[-2] == DOT)) &&
    677  1.21  christos 		     (diff < 3 || pend[-3] == SLASH))) {
    678  1.12  christos 			pathend = q;
    679  1.12  christos 			pattern = p;
    680  1.12  christos 			while (*pattern == SEP) {
    681  1.12  christos 				if (pathend >= pathlim)
    682  1.12  christos 					return GLOB_ABORTED;
    683  1.12  christos 				*pathend++ = *pattern++;
    684  1.12  christos 			}
    685  1.12  christos 		} else			/* Need expansion, recurse. */
    686  1.18  christos 			return glob3(pathbuf, pathend, pathlim, pattern, p,
    687  1.27  christos 			    pattern, pglob, limit);
    688  1.12  christos 	}
    689  1.12  christos 	/* NOTREACHED */
    690  1.12  christos }
    691  1.12  christos 
    692  1.12  christos static int
    693  1.27  christos glob3(Char *pathbuf, Char *pathend, Char *pathlim, const Char *pattern,
    694  1.27  christos     const Char *restpattern, const Char *pglobstar, glob_t *pglob,
    695  1.27  christos     size_t *limit)
    696  1.12  christos {
    697  1.12  christos 	struct dirent *dp;
    698  1.12  christos 	DIR *dirp;
    699  1.27  christos 	__gl_stat_t sbuf;
    700  1.12  christos 	int error;
    701  1.12  christos 	char buf[MAXPATHLEN];
    702  1.27  christos 	int globstar = 0;
    703  1.27  christos 	int chase_symlinks = 0;
    704  1.27  christos 	const Char *termstar = NULL;
    705  1.12  christos 
    706  1.12  christos 	/*
    707  1.12  christos 	 * The readdirfunc declaration can't be prototyped, because it is
    708  1.12  christos 	 * assigned, below, to two functions which are prototyped in glob.h
    709  1.12  christos 	 * and dirent.h as taking pointers to differently typed opaque
    710  1.12  christos 	 * structures.
    711  1.12  christos 	 */
    712  1.18  christos 	struct dirent *(*readdirfunc)(void *);
    713  1.12  christos 
    714  1.12  christos 	_DIAGASSERT(pathbuf != NULL);
    715  1.12  christos 	_DIAGASSERT(pathend != NULL);
    716  1.12  christos 	_DIAGASSERT(pattern != NULL);
    717  1.12  christos 	_DIAGASSERT(restpattern != NULL);
    718  1.12  christos 	_DIAGASSERT(pglob != NULL);
    719  1.12  christos 
    720  1.12  christos 	*pathend = EOS;
    721  1.12  christos 	errno = 0;
    722  1.12  christos 
    723  1.27  christos 	while (pglobstar < restpattern) {
    724  1.27  christos 		if ((pglobstar[0] & M_MASK) == M_ALL &&
    725  1.27  christos 		    (pglobstar[1] & M_MASK) == M_ALL) {
    726  1.27  christos 			globstar = 1;
    727  1.27  christos 			chase_symlinks = (pglobstar[2] & M_MASK) == M_ALL;
    728  1.27  christos 			termstar = pglobstar + (2 + chase_symlinks);
    729  1.27  christos 			break;
    730  1.27  christos 		}
    731  1.27  christos 		pglobstar++;
    732  1.27  christos 	}
    733  1.27  christos 
    734  1.27  christos 	if (globstar) {
    735  1.27  christos 		error = pglobstar == pattern && termstar == restpattern ?
    736  1.27  christos 		    *restpattern == EOS ?
    737  1.27  christos 		    glob2(pathbuf, pathend, pathlim, restpattern - 1, pglob,
    738  1.27  christos 		    limit) :
    739  1.27  christos 		    glob2(pathbuf, pathend, pathlim, restpattern + 1, pglob,
    740  1.27  christos 		    limit) :
    741  1.27  christos 		    glob3(pathbuf, pathend, pathlim, pattern, restpattern,
    742  1.27  christos 		    termstar, pglob, limit);
    743  1.27  christos 		if (error)
    744  1.27  christos 			return error;
    745  1.27  christos 		*pathend = EOS;
    746  1.27  christos 	}
    747  1.27  christos 
    748  1.27  christos 	if (*pathbuf && (g_lstat(pathbuf, &sbuf, pglob) ||
    749  1.27  christos 	    !S_ISDIR(sbuf.st_mode)
    750  1.27  christos #ifdef S_IFLINK
    751  1.27  christos 	     && ((globstar && !chase_symlinks) || !S_ISLNK(sbuf.st_mode))
    752  1.27  christos #endif
    753  1.27  christos 	    ))
    754  1.27  christos 		return 0;
    755  1.27  christos 
    756  1.12  christos 	if ((dirp = g_opendir(pathbuf, pglob)) == NULL) {
    757  1.12  christos 		if (pglob->gl_errfunc) {
    758  1.12  christos 			if (g_Ctoc(pathbuf, buf, sizeof(buf)))
    759  1.18  christos 				return GLOB_ABORTED;
    760  1.12  christos 			if (pglob->gl_errfunc(buf, errno) ||
    761  1.12  christos 			    pglob->gl_flags & GLOB_ERR)
    762  1.18  christos 				return GLOB_ABORTED;
    763  1.12  christos 		}
    764  1.12  christos 		/*
    765  1.12  christos 		 * Posix/XOpen: glob should return when it encounters a
    766  1.12  christos 		 * directory that it cannot open or read
    767  1.12  christos 		 * XXX: Should we ignore ENOTDIR and ENOENT though?
    768  1.12  christos 		 * I think that Posix had in mind EPERM...
    769  1.12  christos 		 */
    770  1.12  christos 		if (pglob->gl_flags & GLOB_ERR)
    771  1.18  christos 			return GLOB_ABORTED;
    772  1.12  christos 
    773  1.18  christos 		return 0;
    774  1.12  christos 	}
    775  1.12  christos 
    776  1.12  christos 	error = 0;
    777  1.12  christos 
    778  1.12  christos 	/* Search directory for matching names. */
    779  1.12  christos 	if (pglob->gl_flags & GLOB_ALTDIRFUNC)
    780  1.12  christos 		readdirfunc = pglob->gl_readdir;
    781  1.12  christos 	else
    782  1.12  christos 		readdirfunc = (struct dirent *(*)__P((void *))) readdir;
    783  1.12  christos 	while ((dp = (*readdirfunc)(dirp)) != NULL) {
    784  1.12  christos 		u_char *sc;
    785  1.12  christos 		Char *dc;
    786  1.12  christos 
    787  1.26  christos 		if ((pglob->gl_flags & GLOB_LIMIT) &&
    788  1.26  christos 		    limit[GLOB_INDEX_READDIR]++ >= GLOB_LIMIT_READDIR) {
    789  1.26  christos 			errno = 0;
    790  1.26  christos 			*pathend++ = SEP;
    791  1.26  christos 			*pathend = EOS;
    792  1.26  christos 			return GLOB_NOSPACE;
    793  1.26  christos 		}
    794  1.26  christos 
    795  1.19  christos 		/*
    796  1.19  christos 		 * Initial DOT must be matched literally, unless we have
    797  1.19  christos 		 * GLOB_PERIOD set.
    798  1.19  christos 		 */
    799  1.19  christos 		if ((pglob->gl_flags & GLOB_PERIOD) == 0)
    800  1.19  christos 			if (dp->d_name[0] == DOT && *pattern != DOT)
    801  1.19  christos 				continue;
    802  1.12  christos 		/*
    803  1.22  christos 		 * If GLOB_NO_DOTDIRS is set, . and .. vanish.
    804  1.22  christos 		 */
    805  1.22  christos 		if ((pglob->gl_flags & GLOB_NO_DOTDIRS) &&
    806  1.22  christos 		    (dp->d_name[0] == DOT) &&
    807  1.22  christos 		    ((dp->d_name[1] == EOS) ||
    808  1.22  christos 		     ((dp->d_name[1] == DOT) && (dp->d_name[2] == EOS))))
    809  1.22  christos 			continue;
    810  1.22  christos 		/*
    811  1.12  christos 		 * The resulting string contains EOS, so we can
    812  1.12  christos 		 * use the pathlim character, if it is the nul
    813  1.12  christos 		 */
    814  1.12  christos 		for (sc = (u_char *) dp->d_name, dc = pathend;
    815  1.12  christos 		     dc <= pathlim && (*dc++ = *sc++) != EOS;)
    816  1.12  christos 			continue;
    817  1.12  christos 
    818  1.12  christos 		/*
    819  1.12  christos 		 * Have we filled the buffer without seeing EOS?
    820  1.12  christos 		 */
    821  1.12  christos 		if (dc > pathlim && *pathlim != EOS) {
    822  1.12  christos 			/*
    823  1.12  christos 			 * Abort when requested by caller, otherwise
    824  1.12  christos 			 * reset pathend back to last SEP and continue
    825  1.12  christos 			 * with next dir entry.
    826  1.12  christos 			 */
    827  1.12  christos 			if (pglob->gl_flags & GLOB_ERR) {
    828  1.12  christos 				error = GLOB_ABORTED;
    829  1.12  christos 				break;
    830  1.12  christos 			}
    831  1.12  christos 			else {
    832  1.12  christos 				*pathend = EOS;
    833  1.12  christos 				continue;
    834  1.12  christos 			}
    835  1.12  christos 		}
    836  1.12  christos 
    837  1.27  christos 		if (globstar) {
    838  1.27  christos #ifdef S_IFLNK
    839  1.27  christos 			if (!chase_symlinks &&
    840  1.27  christos 			    (g_lstat(pathbuf, &sbuf, pglob) ||
    841  1.27  christos 			    S_ISLNK(sbuf.st_mode)))
    842  1.27  christos 				continue;
    843  1.27  christos #endif
    844  1.27  christos 
    845  1.27  christos 			if (!match(pathend, pattern, termstar))
    846  1.27  christos 				continue;
    847  1.27  christos 
    848  1.27  christos 			if (--dc < pathlim - 2)
    849  1.27  christos 				*dc++ = SEP;
    850  1.27  christos 			*dc = EOS;
    851  1.27  christos 			error = glob2(pathbuf, dc, pathlim, pglobstar,
    852  1.27  christos 			    pglob, limit);
    853  1.27  christos 			if (error)
    854  1.27  christos 				break;
    855  1.12  christos 			*pathend = EOS;
    856  1.27  christos 		} else {
    857  1.27  christos 			if (!match(pathend, pattern, restpattern)) {
    858  1.27  christos 				*pathend = EOS;
    859  1.27  christos 				continue;
    860  1.27  christos 			}
    861  1.27  christos 			error = glob2(pathbuf, --dc, pathlim, restpattern,
    862  1.27  christos 			    pglob, limit);
    863  1.27  christos 			if (error)
    864  1.27  christos 				break;
    865  1.12  christos 		}
    866  1.12  christos 	}
    867  1.12  christos 	if (pglob->gl_flags & GLOB_ALTDIRFUNC)
    868  1.12  christos 		(*pglob->gl_closedir)(dirp);
    869  1.12  christos 	else
    870  1.12  christos 		closedir(dirp);
    871  1.12  christos 
    872  1.12  christos 	/*
    873  1.12  christos 	 * Again Posix X/Open issue with regards to error handling.
    874  1.12  christos 	 */
    875  1.12  christos 	if ((error || errno) && (pglob->gl_flags & GLOB_ERR))
    876  1.18  christos 		return GLOB_ABORTED;
    877  1.12  christos 
    878  1.18  christos 	return error;
    879  1.12  christos }
    880  1.12  christos 
    881  1.12  christos 
    882  1.12  christos /*
    883  1.17  christos  * Extend the gl_pathv member of a glob_t structure to accommodate a new item,
    884  1.12  christos  * add the new item, and update gl_pathc.
    885  1.12  christos  *
    886  1.12  christos  * This assumes the BSD realloc, which only copies the block when its size
    887  1.12  christos  * crosses a power-of-two boundary; for v7 realloc, this would cause quadratic
    888  1.12  christos  * behavior.
    889  1.12  christos  *
    890  1.12  christos  * Return 0 if new item added, error code if memory couldn't be allocated.
    891  1.12  christos  *
    892  1.12  christos  * Invariant of the glob_t structure:
    893  1.12  christos  *	Either gl_pathc is zero and gl_pathv is NULL; or gl_pathc > 0 and
    894  1.12  christos  *	gl_pathv points to (gl_offs + gl_pathc + 1) items.
    895  1.12  christos  */
    896  1.12  christos static int
    897  1.18  christos globextend(const Char *path, glob_t *pglob, size_t *limit)
    898  1.12  christos {
    899  1.12  christos 	char **pathv;
    900  1.16  christos 	size_t i, newsize, len;
    901  1.12  christos 	char *copy;
    902  1.12  christos 	const Char *p;
    903  1.12  christos 
    904  1.12  christos 	_DIAGASSERT(path != NULL);
    905  1.12  christos 	_DIAGASSERT(pglob != NULL);
    906  1.12  christos 
    907  1.12  christos 	newsize = sizeof(*pathv) * (2 + pglob->gl_pathc + pglob->gl_offs);
    908  1.12  christos 	pathv = pglob->gl_pathv ? realloc(pglob->gl_pathv, newsize) :
    909  1.12  christos 	    malloc(newsize);
    910  1.12  christos 	if (pathv == NULL)
    911  1.18  christos 		return GLOB_NOSPACE;
    912  1.12  christos 
    913  1.12  christos 	if (pglob->gl_pathv == NULL && pglob->gl_offs > 0) {
    914  1.12  christos 		/* first time around -- clear initial gl_offs items */
    915  1.12  christos 		pathv += pglob->gl_offs;
    916  1.16  christos 		for (i = pglob->gl_offs + 1; --i > 0; )
    917  1.12  christos 			*--pathv = NULL;
    918  1.12  christos 	}
    919  1.12  christos 	pglob->gl_pathv = pathv;
    920  1.12  christos 
    921  1.12  christos 	for (p = path; *p++;)
    922  1.12  christos 		continue;
    923  1.12  christos 	len = (size_t)(p - path);
    924  1.26  christos 	limit[GLOB_INDEX_MALLOC] += len;
    925  1.12  christos 	if ((copy = malloc(len)) != NULL) {
    926  1.12  christos 		if (g_Ctoc(path, copy, len)) {
    927  1.12  christos 			free(copy);
    928  1.18  christos 			return GLOB_ABORTED;
    929  1.12  christos 		}
    930  1.12  christos 		pathv[pglob->gl_offs + pglob->gl_pathc++] = copy;
    931  1.12  christos 	}
    932  1.12  christos 	pathv[pglob->gl_offs + pglob->gl_pathc] = NULL;
    933  1.12  christos 
    934  1.26  christos 	if ((pglob->gl_flags & GLOB_LIMIT) &&
    935  1.26  christos 	    (newsize + limit[GLOB_INDEX_MALLOC]) >= GLOB_LIMIT_MALLOC) {
    936  1.12  christos 		errno = 0;
    937  1.18  christos 		return GLOB_NOSPACE;
    938  1.12  christos 	}
    939  1.12  christos 
    940  1.18  christos 	return copy == NULL ? GLOB_NOSPACE : 0;
    941  1.12  christos }
    942  1.12  christos 
    943  1.12  christos 
    944  1.12  christos /*
    945  1.12  christos  * pattern matching function for filenames.  Each occurrence of the *
    946  1.12  christos  * pattern causes a recursion level.
    947  1.12  christos  */
    948  1.12  christos static int
    949  1.27  christos match(const Char *name, const Char *pat, const Char *patend)
    950  1.12  christos {
    951  1.12  christos 	int ok, negate_range;
    952  1.12  christos 	Char c, k;
    953  1.12  christos 
    954  1.12  christos 	_DIAGASSERT(name != NULL);
    955  1.12  christos 	_DIAGASSERT(pat != NULL);
    956  1.12  christos 	_DIAGASSERT(patend != NULL);
    957  1.12  christos 
    958  1.12  christos 	while (pat < patend) {
    959  1.12  christos 		c = *pat++;
    960  1.12  christos 		switch (c & M_MASK) {
    961  1.12  christos 		case M_ALL:
    962  1.27  christos 			while (pat < patend && (*pat & M_MASK) == M_ALL)
    963  1.27  christos 				pat++;	/* eat consecutive '*' */
    964  1.12  christos 			if (pat == patend)
    965  1.18  christos 				return 1;
    966  1.27  christos 			for (; !match(name, pat, patend); name++)
    967  1.27  christos 				if (*name == EOS)
    968  1.27  christos 					return 0;
    969  1.27  christos 			return 1;
    970  1.12  christos 		case M_ONE:
    971  1.12  christos 			if (*name++ == EOS)
    972  1.18  christos 				return 0;
    973  1.12  christos 			break;
    974  1.12  christos 		case M_SET:
    975  1.12  christos 			ok = 0;
    976  1.12  christos 			if ((k = *name++) == EOS)
    977  1.18  christos 				return 0;
    978  1.12  christos 			if ((negate_range = ((*pat & M_MASK) == M_NOT)) != EOS)
    979  1.12  christos 				++pat;
    980  1.12  christos 			while (((c = *pat++) & M_MASK) != M_END)
    981  1.12  christos 				if ((*pat & M_MASK) == M_RNG) {
    982  1.12  christos 					if (c <= k && k <= pat[1])
    983  1.12  christos 						ok = 1;
    984  1.12  christos 					pat += 2;
    985  1.12  christos 				} else if (c == k)
    986  1.12  christos 					ok = 1;
    987  1.12  christos 			if (ok == negate_range)
    988  1.18  christos 				return 0;
    989  1.12  christos 			break;
    990  1.12  christos 		default:
    991  1.12  christos 			if (*name++ != c)
    992  1.18  christos 				return 0;
    993  1.12  christos 			break;
    994  1.12  christos 		}
    995  1.12  christos 	}
    996  1.18  christos 	return *name == EOS;
    997  1.12  christos }
    998  1.12  christos 
    999  1.12  christos /* Free allocated data belonging to a glob_t structure. */
   1000  1.12  christos void
   1001  1.18  christos globfree(glob_t *pglob)
   1002  1.12  christos {
   1003  1.16  christos 	size_t i;
   1004  1.12  christos 	char **pp;
   1005  1.12  christos 
   1006  1.12  christos 	_DIAGASSERT(pglob != NULL);
   1007  1.12  christos 
   1008  1.12  christos 	if (pglob->gl_pathv != NULL) {
   1009  1.12  christos 		pp = pglob->gl_pathv + pglob->gl_offs;
   1010  1.12  christos 		for (i = pglob->gl_pathc; i--; ++pp)
   1011  1.12  christos 			if (*pp)
   1012  1.12  christos 				free(*pp);
   1013  1.12  christos 		free(pglob->gl_pathv);
   1014  1.12  christos 		pglob->gl_pathv = NULL;
   1015  1.12  christos 		pglob->gl_pathc = 0;
   1016  1.12  christos 	}
   1017  1.12  christos }
   1018  1.12  christos 
   1019  1.24  christos #ifndef __LIBC12_SOURCE__
   1020  1.24  christos int
   1021  1.24  christos glob_pattern_p(const char *pattern, int quote)
   1022  1.24  christos {
   1023  1.24  christos 	int range = 0;
   1024  1.24  christos 
   1025  1.24  christos 	for (; *pattern; pattern++)
   1026  1.24  christos 		switch (*pattern) {
   1027  1.24  christos 		case QUESTION:
   1028  1.24  christos 		case STAR:
   1029  1.24  christos 			return 1;
   1030  1.24  christos 
   1031  1.24  christos 		case QUOTE:
   1032  1.27  christos 			if (quote && pattern[1] != EOS)
   1033  1.24  christos 			      ++pattern;
   1034  1.24  christos 			break;
   1035  1.24  christos 
   1036  1.24  christos 		case LBRACKET:
   1037  1.24  christos 			range = 1;
   1038  1.24  christos 			break;
   1039  1.24  christos 
   1040  1.24  christos 		case RBRACKET:
   1041  1.24  christos 			if (range)
   1042  1.24  christos 			      return 1;
   1043  1.24  christos 			break;
   1044  1.24  christos 		default:
   1045  1.24  christos 			break;
   1046  1.24  christos 		}
   1047  1.24  christos 
   1048  1.24  christos 	  return 0;
   1049  1.24  christos }
   1050  1.24  christos #endif
   1051  1.24  christos 
   1052  1.12  christos static DIR *
   1053  1.18  christos g_opendir(Char *str, glob_t *pglob)
   1054  1.12  christos {
   1055  1.12  christos 	char buf[MAXPATHLEN];
   1056  1.12  christos 
   1057  1.12  christos 	_DIAGASSERT(str != NULL);
   1058  1.12  christos 	_DIAGASSERT(pglob != NULL);
   1059  1.12  christos 
   1060  1.12  christos 	if (!*str)
   1061  1.12  christos 		(void)strlcpy(buf, ".", sizeof(buf));
   1062  1.12  christos 	else {
   1063  1.12  christos 		if (g_Ctoc(str, buf, sizeof(buf)))
   1064  1.12  christos 			return NULL;
   1065  1.12  christos 	}
   1066  1.12  christos 
   1067  1.12  christos 	if (pglob->gl_flags & GLOB_ALTDIRFUNC)
   1068  1.18  christos 		return (*pglob->gl_opendir)(buf);
   1069  1.12  christos 
   1070  1.18  christos 	return opendir(buf);
   1071  1.12  christos }
   1072  1.12  christos 
   1073  1.12  christos static int
   1074  1.18  christos g_lstat(Char *fn, __gl_stat_t *sb, glob_t *pglob)
   1075  1.12  christos {
   1076  1.12  christos 	char buf[MAXPATHLEN];
   1077  1.12  christos 
   1078  1.12  christos 	_DIAGASSERT(fn != NULL);
   1079  1.12  christos 	_DIAGASSERT(sb != NULL);
   1080  1.12  christos 	_DIAGASSERT(pglob != NULL);
   1081  1.12  christos 
   1082  1.12  christos 	if (g_Ctoc(fn, buf, sizeof(buf)))
   1083  1.12  christos 		return -1;
   1084  1.12  christos 	if (pglob->gl_flags & GLOB_ALTDIRFUNC)
   1085  1.18  christos 		return (*pglob->gl_lstat)(buf, sb);
   1086  1.18  christos 	return lstat(buf, sb);
   1087  1.12  christos }
   1088  1.12  christos 
   1089  1.12  christos static int
   1090  1.18  christos g_stat(Char *fn, __gl_stat_t *sb, glob_t *pglob)
   1091  1.12  christos {
   1092  1.12  christos 	char buf[MAXPATHLEN];
   1093  1.12  christos 
   1094  1.12  christos 	_DIAGASSERT(fn != NULL);
   1095  1.12  christos 	_DIAGASSERT(sb != NULL);
   1096  1.12  christos 	_DIAGASSERT(pglob != NULL);
   1097  1.12  christos 
   1098  1.12  christos 	if (g_Ctoc(fn, buf, sizeof(buf)))
   1099  1.12  christos 		return -1;
   1100  1.12  christos 	if (pglob->gl_flags & GLOB_ALTDIRFUNC)
   1101  1.18  christos 		return (*pglob->gl_stat)(buf, sb);
   1102  1.18  christos 	return stat(buf, sb);
   1103  1.12  christos }
   1104  1.12  christos 
   1105  1.12  christos static Char *
   1106  1.18  christos g_strchr(const Char *str, int ch)
   1107  1.12  christos {
   1108  1.12  christos 
   1109  1.12  christos 	_DIAGASSERT(str != NULL);
   1110  1.12  christos 
   1111  1.12  christos 	do {
   1112  1.12  christos 		if (*str == ch)
   1113  1.14  christos 			return __UNCONST(str);
   1114  1.12  christos 	} while (*str++);
   1115  1.12  christos 	return NULL;
   1116  1.12  christos }
   1117  1.12  christos 
   1118  1.12  christos static int
   1119  1.18  christos g_Ctoc(const Char *str, char *buf, size_t len)
   1120  1.12  christos {
   1121  1.12  christos 	char *dc;
   1122  1.12  christos 
   1123  1.12  christos 	_DIAGASSERT(str != NULL);
   1124  1.12  christos 	_DIAGASSERT(buf != NULL);
   1125  1.12  christos 
   1126  1.12  christos 	if (len == 0)
   1127  1.12  christos 		return 1;
   1128  1.12  christos 
   1129  1.12  christos 	for (dc = buf; len && (*dc++ = *str++) != EOS; len--)
   1130  1.12  christos 		continue;
   1131  1.12  christos 
   1132  1.12  christos 	return len == 0;
   1133  1.12  christos }
   1134  1.12  christos 
   1135  1.12  christos #ifdef DEBUG
   1136  1.12  christos static void
   1137  1.18  christos qprintf(const char *str, Char *s)
   1138  1.12  christos {
   1139  1.12  christos 	Char *p;
   1140  1.12  christos 
   1141  1.12  christos 	_DIAGASSERT(str != NULL);
   1142  1.12  christos 	_DIAGASSERT(s != NULL);
   1143  1.12  christos 
   1144  1.12  christos 	(void)printf("%s:\n", str);
   1145  1.12  christos 	for (p = s; *p; p++)
   1146  1.12  christos 		(void)printf("%c", CHAR(*p));
   1147  1.12  christos 	(void)printf("\n");
   1148  1.12  christos 	for (p = s; *p; p++)
   1149  1.12  christos 		(void)printf("%c", *p & M_PROTECT ? '"' : ' ');
   1150  1.12  christos 	(void)printf("\n");
   1151  1.12  christos 	for (p = s; *p; p++)
   1152  1.12  christos 		(void)printf("%c", ismeta(*p) ? '_' : ' ');
   1153  1.12  christos 	(void)printf("\n");
   1154  1.12  christos }
   1155  1.12  christos #endif
   1156