Home | History | Annotate | Line # | Download | only in gen
fnmatch.c revision 1.18.2.1
      1  1.18.2.1   nathanw /*	$NetBSD: fnmatch.c,v 1.18.2.1 2002/10/18 02:15:49 nathanw Exp $	*/
      2      1.11       cgd 
      3       1.1       cgd /*
      4      1.11       cgd  * Copyright (c) 1989, 1993, 1994
      5       1.6       cgd  *	The Regents of the University of California.  All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * This code is derived from software contributed to Berkeley by
      8       1.1       cgd  * Guido van Rossum.
      9       1.1       cgd  *
     10       1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11       1.1       cgd  * modification, are permitted provided that the following conditions
     12       1.1       cgd  * are met:
     13       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     19       1.1       cgd  *    must display the following acknowledgement:
     20       1.1       cgd  *	This product includes software developed by the University of
     21       1.1       cgd  *	California, Berkeley and its contributors.
     22       1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     23       1.1       cgd  *    may be used to endorse or promote products derived from this software
     24       1.1       cgd  *    without specific prior written permission.
     25       1.1       cgd  *
     26       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36       1.1       cgd  * SUCH DAMAGE.
     37       1.1       cgd  */
     38       1.1       cgd 
     39      1.12  christos #include <sys/cdefs.h>
     40       1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     41      1.11       cgd #if 0
     42      1.11       cgd static char sccsid[] = "@(#)fnmatch.c	8.2 (Berkeley) 4/16/94";
     43      1.11       cgd #else
     44  1.18.2.1   nathanw __RCSID("$NetBSD: fnmatch.c,v 1.18.2.1 2002/10/18 02:15:49 nathanw Exp $");
     45      1.11       cgd #endif
     46       1.1       cgd #endif /* LIBC_SCCS and not lint */
     47       1.1       cgd 
     48       1.1       cgd /*
     49       1.7       jtc  * Function fnmatch() as specified in POSIX 1003.2-1992, section B.6.
     50       1.1       cgd  * Compares a filename or pathname to a pattern.
     51       1.1       cgd  */
     52       1.1       cgd 
     53      1.13       jtc #include "namespace.h"
     54      1.15     lukem 
     55      1.15     lukem #include <assert.h>
     56      1.18   thorpej #include <ctype.h>
     57       1.3       jtc #include <fnmatch.h>
     58       1.1       cgd #include <string.h>
     59      1.13       jtc 
     60      1.13       jtc #ifdef __weak_alias
     61      1.17   mycroft __weak_alias(fnmatch,_fnmatch)
     62      1.13       jtc #endif
     63       1.1       cgd 
     64       1.1       cgd #define	EOS	'\0'
     65       1.1       cgd 
     66       1.7       jtc static const char *rangematch __P((const char *, int, int));
     67       1.1       cgd 
     68      1.18   thorpej static __inline int
     69      1.18   thorpej foldcase(int ch, int flags)
     70      1.18   thorpej {
     71      1.18   thorpej 
     72      1.18   thorpej 	if ((flags & FNM_CASEFOLD) != 0 && isupper(ch))
     73      1.18   thorpej 		return (tolower(ch));
     74      1.18   thorpej 	return (ch);
     75      1.18   thorpej }
     76      1.18   thorpej 
     77      1.18   thorpej #define	FOLDCASE(ch, flags)	foldcase((unsigned char)(ch), (flags))
     78      1.18   thorpej 
     79       1.9       jtc int
     80       1.1       cgd fnmatch(pattern, string, flags)
     81      1.11       cgd 	const char *pattern, *string;
     82       1.1       cgd 	int flags;
     83       1.1       cgd {
     84      1.11       cgd 	const char *stringstart;
     85      1.11       cgd 	char c, test;
     86       1.1       cgd 
     87      1.15     lukem 	_DIAGASSERT(pattern != NULL);
     88      1.15     lukem 	_DIAGASSERT(string != NULL);
     89      1.15     lukem 
     90      1.11       cgd 	for (stringstart = string;;)
     91      1.18   thorpej 		switch (c = FOLDCASE(*pattern++, flags)) {
     92       1.1       cgd 		case EOS:
     93  1.18.2.1   nathanw 			if ((flags & FNM_LEADING_DIR) && *string == '/')
     94  1.18.2.1   nathanw 				return (0);
     95       1.3       jtc 			return (*string == EOS ? 0 : FNM_NOMATCH);
     96       1.1       cgd 		case '?':
     97       1.8       jtc 			if (*string == EOS)
     98       1.3       jtc 				return (FNM_NOMATCH);
     99       1.8       jtc 			if (*string == '/' && (flags & FNM_PATHNAME))
    100       1.8       jtc 				return (FNM_NOMATCH);
    101       1.8       jtc 			if (*string == '.' && (flags & FNM_PERIOD) &&
    102      1.11       cgd 			    (string == stringstart ||
    103      1.11       cgd 			    ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
    104       1.8       jtc 				return (FNM_NOMATCH);
    105       1.8       jtc 			++string;
    106       1.1       cgd 			break;
    107       1.1       cgd 		case '*':
    108      1.18   thorpej 			c = FOLDCASE(*pattern, flags);
    109       1.3       jtc 			/* Collapse multiple stars. */
    110       1.1       cgd 			while (c == '*')
    111      1.18   thorpej 				c = FOLDCASE(*++pattern, flags);
    112       1.1       cgd 
    113       1.8       jtc 			if (*string == '.' && (flags & FNM_PERIOD) &&
    114      1.11       cgd 			    (string == stringstart ||
    115      1.11       cgd 			    ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
    116       1.8       jtc 				return (FNM_NOMATCH);
    117       1.8       jtc 
    118       1.3       jtc 			/* Optimize for pattern with * at end or before /. */
    119      1.14  christos 			if (c == EOS) {
    120       1.1       cgd 				if (flags & FNM_PATHNAME)
    121  1.18.2.1   nathanw 					return ((flags & FNM_LEADING_DIR) ||
    122  1.18.2.1   nathanw 					    strchr(string, '/') == NULL ?
    123       1.3       jtc 					    0 : FNM_NOMATCH);
    124       1.1       cgd 				else
    125       1.3       jtc 					return (0);
    126      1.14  christos 			} else if (c == '/' && flags & FNM_PATHNAME) {
    127      1.10       jtc 				if ((string = strchr(string, '/')) == NULL)
    128       1.3       jtc 					return (FNM_NOMATCH);
    129       1.1       cgd 				break;
    130       1.1       cgd 			}
    131       1.1       cgd 
    132       1.3       jtc 			/* General case, use recursion. */
    133      1.18   thorpej 			while ((test = FOLDCASE(*string, flags)) != EOS) {
    134      1.18   thorpej 				if (!fnmatch(pattern, string,
    135      1.18   thorpej 					     flags & ~FNM_PERIOD))
    136       1.3       jtc 					return (0);
    137       1.1       cgd 				if (test == '/' && flags & FNM_PATHNAME)
    138       1.1       cgd 					break;
    139       1.1       cgd 				++string;
    140       1.1       cgd 			}
    141       1.3       jtc 			return (FNM_NOMATCH);
    142       1.1       cgd 		case '[':
    143       1.8       jtc 			if (*string == EOS)
    144       1.8       jtc 				return (FNM_NOMATCH);
    145       1.8       jtc 			if (*string == '/' && flags & FNM_PATHNAME)
    146       1.3       jtc 				return (FNM_NOMATCH);
    147      1.11       cgd 			if ((pattern =
    148      1.18   thorpej 			    rangematch(pattern, FOLDCASE(*string, flags),
    149      1.18   thorpej 				       flags)) == NULL)
    150       1.3       jtc 				return (FNM_NOMATCH);
    151       1.8       jtc 			++string;
    152       1.1       cgd 			break;
    153       1.1       cgd 		case '\\':
    154       1.3       jtc 			if (!(flags & FNM_NOESCAPE)) {
    155      1.18   thorpej 				if ((c = FOLDCASE(*pattern++, flags)) == EOS) {
    156       1.1       cgd 					c = '\\';
    157       1.1       cgd 					--pattern;
    158       1.1       cgd 				}
    159       1.1       cgd 			}
    160       1.1       cgd 			/* FALLTHROUGH */
    161       1.1       cgd 		default:
    162      1.18   thorpej 			if (c != FOLDCASE(*string++, flags))
    163       1.3       jtc 				return (FNM_NOMATCH);
    164       1.1       cgd 			break;
    165       1.1       cgd 		}
    166       1.3       jtc 	/* NOTREACHED */
    167       1.3       jtc }
    168       1.3       jtc 
    169       1.3       jtc static const char *
    170       1.7       jtc rangematch(pattern, test, flags)
    171      1.11       cgd 	const char *pattern;
    172      1.11       cgd 	int test, flags;
    173       1.3       jtc {
    174       1.3       jtc 	int negate, ok;
    175      1.11       cgd 	char c, c2;
    176      1.15     lukem 
    177      1.15     lukem 	_DIAGASSERT(pattern != NULL);
    178       1.3       jtc 
    179      1.11       cgd 	/*
    180      1.11       cgd 	 * A bracket expression starting with an unquoted circumflex
    181       1.7       jtc 	 * character produces unspecified results (IEEE 1003.2-1992,
    182      1.11       cgd 	 * 3.13.2).  This implementation treats it like '!', for
    183      1.11       cgd 	 * consistency with the regular expression syntax.
    184      1.11       cgd 	 * J.T. Conklin (conklin (at) ngai.kaleida.com)
    185       1.3       jtc 	 */
    186      1.12  christos 	if ((negate = (*pattern == '!' || *pattern == '^')) != 0)
    187      1.11       cgd 		++pattern;
    188       1.7       jtc 
    189      1.18   thorpej 	for (ok = 0; (c = FOLDCASE(*pattern++, flags)) != ']';) {
    190      1.11       cgd 		if (c == '\\' && !(flags & FNM_NOESCAPE))
    191      1.18   thorpej 			c = FOLDCASE(*pattern++, flags);
    192      1.11       cgd 		if (c == EOS)
    193       1.7       jtc 			return (NULL);
    194       1.7       jtc 		if (*pattern == '-'
    195      1.18   thorpej 		    && (c2 = FOLDCASE(*(pattern+1), flags)) != EOS &&
    196      1.18   thorpej 		        c2 != ']') {
    197       1.7       jtc 			pattern += 2;
    198      1.11       cgd 			if (c2 == '\\' && !(flags & FNM_NOESCAPE))
    199      1.18   thorpej 				c2 = FOLDCASE(*pattern++, flags);
    200      1.11       cgd 			if (c2 == EOS)
    201       1.7       jtc 				return (NULL);
    202      1.11       cgd 			if (c <= test && test <= c2)
    203       1.3       jtc 				ok = 1;
    204      1.11       cgd 		} else if (c == test)
    205       1.7       jtc 			ok = 1;
    206       1.3       jtc 	}
    207       1.3       jtc 	return (ok == negate ? NULL : pattern);
    208       1.1       cgd }
    209