2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * Function fnmatch() as specified in POSIX 1003.2-1992, section B.6.
40 * Compares a filename or pathname to a pattern.
48 //#include "collate.h"
53 #define RANGE_NOMATCH 0
54 #define RANGE_ERROR (-1)
56 static int rangematch(const char *, char, int, char **);
59 fnmatch(pattern
, string
, flags
)
60 const char *pattern
, *string
;
63 const char *stringstart
;
67 for (stringstart
= string
;;)
68 switch (c
= *pattern
++) {
70 if ((flags
& FNM_LEADING_DIR
) && *string
== '/')
72 return (*string
== EOS
? 0 : FNM_NOMATCH
);
76 if (*string
== '/' && (flags
& FNM_PATHNAME
))
78 if (*string
== '.' && (flags
& FNM_PERIOD
) &&
79 (string
== stringstart
||
80 ((flags
& FNM_PATHNAME
) && *(string
- 1) == '/')))
86 /* Collapse multiple stars. */
90 if (*string
== '.' && (flags
& FNM_PERIOD
) &&
91 (string
== stringstart
||
92 ((flags
& FNM_PATHNAME
) && *(string
- 1) == '/')))
95 /* Optimize for pattern with * at end or before /. */
97 if (flags
& FNM_PATHNAME
)
98 return ((flags
& FNM_LEADING_DIR
) ||
99 strchr(string
, '/') == NULL
?
103 else if (c
== '/' && flags
& FNM_PATHNAME
) {
104 if ((string
= strchr(string
, '/')) == NULL
)
105 return (FNM_NOMATCH
);
109 /* General case, use recursion. */
110 while ((test
= *string
) != EOS
) {
111 if (!fnmatch(pattern
, string
, flags
& ~FNM_PERIOD
))
113 if (test
== '/' && flags
& FNM_PATHNAME
)
117 return (FNM_NOMATCH
);
120 return (FNM_NOMATCH
);
121 if (*string
== '/' && (flags
& FNM_PATHNAME
))
122 return (FNM_NOMATCH
);
123 if (*string
== '.' && (flags
& FNM_PERIOD
) &&
124 (string
== stringstart
||
125 ((flags
& FNM_PATHNAME
) && *(string
- 1) == '/')))
126 return (FNM_NOMATCH
);
128 switch (rangematch(pattern
, *string
, flags
, &newp
)) {
135 return (FNM_NOMATCH
);
140 if (!(flags
& FNM_NOESCAPE
)) {
141 if ((c
= *pattern
++) == EOS
) {
151 else if ((flags
& FNM_CASEFOLD
) &&
152 (tolower((unsigned char)c
) ==
153 tolower((unsigned char)*string
)))
156 return (FNM_NOMATCH
);
164 rangematch(pattern
, test
, flags
, newp
)
174 * A bracket expression starting with an unquoted circumflex
175 * character produces unspecified results (IEEE 1003.2-1992,
176 * 3.13.2). This implementation treats it like '!', for
177 * consistency with the regular expression syntax.
178 * J.T. Conklin (conklin@ngai.kaleida.com)
180 if ( (negate
= (*pattern
== '!' || *pattern
== '^')) )
183 if (flags
& FNM_CASEFOLD
)
184 test
= tolower((unsigned char)test
);
187 * A right bracket shall lose its special meaning and represent
188 * itself in a bracket expression if it occurs first in the list.
194 if (c
== '\\' && !(flags
& FNM_NOESCAPE
))
197 return (RANGE_ERROR
);
199 if (c
== '/' && (flags
& FNM_PATHNAME
))
200 return (RANGE_NOMATCH
);
202 if (flags
& FNM_CASEFOLD
)
203 c
= tolower((unsigned char)c
);
206 && (c2
= *(pattern
+1)) != EOS
&& c2
!= ']') {
208 if (c2
== '\\' && !(flags
& FNM_NOESCAPE
))
211 return (RANGE_ERROR
);
213 if (flags
& FNM_CASEFOLD
)
214 c2
= tolower((unsigned char)c2
);
217 // ToDo: collate stuff disabled
218 // __collate_load_error ?
219 c
<= test
&& test
<= c2
220 // : __collate_range_cmp(c, test) <= 0
221 // && __collate_range_cmp(test, c2) <= 0
224 } else if (c
== test
)
226 } while ((c
= *pattern
++) != ']');
228 *newp
= (char *)pattern
;
229 return (ok
== negate
? RANGE_NOMATCH
: RANGE_MATCH
);