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