Update.
[platform/upstream/glibc.git] / posix / fnmatch.c
1 /* Copyright (C) 1991, 92, 93, 96, 97, 98, 99 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    This library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13
14    You should have received a copy of the GNU Library General Public
15    License along with this library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
18
19 #if HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 /* Enable GNU extensions in fnmatch.h.  */
24 #ifndef _GNU_SOURCE
25 # define _GNU_SOURCE    1
26 #endif
27
28 #include <errno.h>
29 #include <fnmatch.h>
30 #include <ctype.h>
31
32 #if HAVE_STRING_H || defined _LIBC
33 # include <string.h>
34 #else
35 # include <strings.h>
36 #endif
37
38 #if defined STDC_HEADERS || defined _LIBC
39 # include <stdlib.h>
40 #endif
41
42 /* For platform which support the ISO C amendement 1 functionality we
43    support user defined character classes.  */
44 #if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
45 /* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>.  */
46 # include <wchar.h>
47 # include <wctype.h>
48 #endif
49
50 /* Comment out all this code if we are using the GNU C Library, and are not
51    actually compiling the library itself.  This code is part of the GNU C
52    Library, but also included in many other GNU distributions.  Compiling
53    and linking in this code is a waste when using the GNU C library
54    (especially if it is a shared library).  Rather than having every GNU
55    program understand `configure --with-gnu-libc' and omit the object files,
56    it is simpler to just do this in the source for each such file.  */
57
58 #if defined _LIBC || !defined __GNU_LIBRARY__
59
60
61 # if defined STDC_HEADERS || !defined isascii
62 #  define ISASCII(c) 1
63 # else
64 #  define ISASCII(c) isascii(c)
65 # endif
66
67 #ifdef isblank
68 # define ISBLANK(c) (ISASCII (c) && isblank (c))
69 #else
70 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
71 #endif
72 #ifdef isgraph
73 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
74 #else
75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
76 #endif
77
78 #define ISPRINT(c) (ISASCII (c) && isprint (c))
79 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
80 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
81 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
82 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
83 #define ISLOWER(c) (ISASCII (c) && islower (c))
84 #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
85 #define ISSPACE(c) (ISASCII (c) && isspace (c))
86 #define ISUPPER(c) (ISASCII (c) && isupper (c))
87 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
88
89 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
90
91 # if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
92 /* The GNU C library provides support for user-defined character classes
93    and the functions from ISO C amendement 1.  */
94 #  ifdef CHARCLASS_NAME_MAX
95 #   define CHAR_CLASS_MAX_LENGTH CHARCLASS_NAME_MAX
96 #  else
97 /* This shouldn't happen but some implementation might still have this
98    problem.  Use a reasonable default value.  */
99 #   define CHAR_CLASS_MAX_LENGTH 256
100 #  endif
101
102 #  ifdef _LIBC
103 #   define IS_CHAR_CLASS(string) __wctype (string)
104 #  else
105 #   define IS_CHAR_CLASS(string) wctype (string)
106 #  endif
107 # else
108 #  define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
109
110 #  define IS_CHAR_CLASS(string)                                               \
111    (STREQ (string, "alpha") || STREQ (string, "upper")                        \
112     || STREQ (string, "lower") || STREQ (string, "digit")                     \
113     || STREQ (string, "alnum") || STREQ (string, "xdigit")                    \
114     || STREQ (string, "space") || STREQ (string, "print")                     \
115     || STREQ (string, "punct") || STREQ (string, "graph")                     \
116     || STREQ (string, "cntrl") || STREQ (string, "blank"))
117 # endif
118
119 /* Avoid depending on library functions or files
120    whose names are inconsistent.  */
121
122 # if !defined _LIBC && !defined getenv
123 extern char *getenv ();
124 # endif
125
126 # ifndef errno
127 extern int errno;
128 # endif
129
130 /* Match STRING against the filename pattern PATTERN, returning zero if
131    it matches, nonzero if not.  */
132 int
133 fnmatch (pattern, string, flags)
134      const char *pattern;
135      const char *string;
136      int flags;
137 {
138   register const char *p = pattern, *n = string;
139   register unsigned char c;
140
141 /* Note that this evaluates C many times.  */
142 # ifdef _LIBC
143 #  define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
144 # else
145 #  define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
146 # endif
147
148   while ((c = *p++) != '\0')
149     {
150       c = FOLD (c);
151
152       switch (c)
153         {
154         case '?':
155           if (*n == '\0')
156             return FNM_NOMATCH;
157           else if (*n == '/' && (flags & FNM_FILE_NAME))
158             return FNM_NOMATCH;
159           else if (*n == '.' && (flags & FNM_PERIOD) &&
160                    (n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
161             return FNM_NOMATCH;
162           break;
163
164         case '\\':
165           if (!(flags & FNM_NOESCAPE))
166             {
167               c = *p++;
168               if (c == '\0')
169                 /* Trailing \ loses.  */
170                 return FNM_NOMATCH;
171               c = FOLD (c);
172             }
173           if (FOLD ((unsigned char) *n) != c)
174             return FNM_NOMATCH;
175           break;
176
177         case '*':
178           if (*n == '.' && (flags & FNM_PERIOD) &&
179               (n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
180             return FNM_NOMATCH;
181
182           for (c = *p++; c == '?' || c == '*'; c = *p++)
183             {
184               if (*n == '/' && (flags & FNM_FILE_NAME))
185                 /* A slash does not match a wildcard under FNM_FILE_NAME.  */
186                 return FNM_NOMATCH;
187               else if (c == '?')
188                 {
189                   /* A ? needs to match one character.  */
190                   if (*n == '\0')
191                     /* There isn't another character; no match.  */
192                     return FNM_NOMATCH;
193                   else
194                     /* One character of the string is consumed in matching
195                        this ? wildcard, so *??? won't match if there are
196                        less than three characters.  */
197                     ++n;
198                 }
199             }
200
201           if (c == '\0')
202             /* The wildcard(s) is/are the last element of the pattern.
203                If the name is a file name and contains another slash
204                this does mean it cannot match.  */
205             return ((flags & FNM_FILE_NAME) && strchr (n, '/') != NULL
206                     ? FNM_NOMATCH : 0);
207           else
208             {
209               const char *endp;
210
211               if (!(flags & FNM_FILE_NAME) || (endp = strchr (n, '/')) == NULL)
212                 endp = strchr (n, '\0');
213
214               if (c == '[')
215                 {
216                   for (--p; n < endp; ++n)
217                     if (fnmatch (p, n, flags & ~FNM_PERIOD) == 0)
218                       return 0;
219                 }
220               else
221                 {
222                   if (c == '\\' && !(flags & FNM_NOESCAPE))
223                     c = *p;
224                   c = FOLD (c);
225                   for (--p; n < endp; ++n)
226                     if (FOLD ((unsigned char) *n) == c
227                         && fnmatch (p, n, flags & ~FNM_PERIOD) == 0)
228                       return 0;
229                 }
230             }
231
232           /* If we come here no match is possible with the wildcard.  */
233           return FNM_NOMATCH;
234
235         case '[':
236           {
237             /* Nonzero if the sense of the character class is inverted.  */
238             static int posixly_correct;
239             register int not;
240             char cold;
241
242             if (posixly_correct == 0)
243               posixly_correct = getenv ("POSIXLY_CORRECT") != NULL ? 1 : -1;
244
245             if (*n == '\0')
246               return FNM_NOMATCH;
247
248             if (*n == '.' && (flags & FNM_PERIOD) &&
249                 (n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
250               return FNM_NOMATCH;
251
252             if (*n == '/' && (flags & FNM_FILE_NAME))
253               /* `/' cannot be matched.  */
254               return FNM_NOMATCH;
255
256             not = (*p == '!' || (posixly_correct < 0 && *p == '^'));
257             if (not)
258               ++p;
259
260             c = *p++;
261             for (;;)
262               {
263                 unsigned char fn = FOLD ((unsigned char) *n);
264
265                 if (!(flags & FNM_NOESCAPE) && c == '\\')
266                   {
267                     if (*p == '\0')
268                       return FNM_NOMATCH;
269                     c = FOLD ((unsigned char) *p);
270                     ++p;
271
272                     if (c == fn)
273                       goto matched;
274                   }
275                 else if (c == '[' && *p == ':')
276                   {
277                     /* Leave room for the null.  */
278                     char str[CHAR_CLASS_MAX_LENGTH + 1];
279                     size_t c1 = 0;
280 # if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
281                     wctype_t wt;
282 # endif
283
284                     for (;;)
285                       {
286                         if (c1 == CHAR_CLASS_MAX_LENGTH)
287                           /* The name is too long and therefore the pattern
288                              is ill-formed.  */
289                           return FNM_NOMATCH;
290
291                         c = *++p;
292                         if (c == ':' && p[1] == ']')
293                           {
294                             p += 2;
295                             break;
296                           }
297                         str[c1++] = 'c';
298                       }
299                     str[c1] = '\0';
300
301 # if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
302                     wt = IS_CHAR_CLASS (str);
303                     if (wt == 0)
304                       /* Invalid character class name.  */
305                       return FNM_NOMATCH;
306
307                     if (__iswctype (__btowc ((unsigned char) *n), wt))
308                       goto matched;
309 # else
310                     if ((STREQ (str, "alnum") && ISALNUM ((unsigned char) *n))
311                         || (STREQ (str, "alpha") && ISALPHA ((unsigned char) *n))
312                         || (STREQ (str, "blank") && ISBLANK ((unsigned char) *n))
313                         || (STREQ (str, "cntrl") && ISCNTRL ((unsigned char) *n))
314                         || (STREQ (str, "digit") && ISDIGIT ((unsigned char) *n))
315                         || (STREQ (str, "graph") && ISGRAPH ((unsigned char) *n))
316                         || (STREQ (str, "lower") && ISLOWER ((unsigned char) *n))
317                         || (STREQ (str, "print") && ISPRINT ((unsigned char) *n))
318                         || (STREQ (str, "punct") && ISPUNCT ((unsigned char) *n))
319                         || (STREQ (str, "space") && ISSPACE ((unsigned char) *n))
320                         || (STREQ (str, "upper") && ISUPPER ((unsigned char) *n))
321                         || (STREQ (str, "xdigit") && ISXDIGIT ((unsigned char) *n)))
322                       goto matched;
323 # endif
324                   }
325                 else if (c == '\0')
326                   /* [ (unterminated) loses.  */
327                   return FNM_NOMATCH;
328                 else if (FOLD (c) == fn)
329                   goto matched;
330
331                 cold = c;
332                 c = *p++;
333
334                 if (c == '-' && *p != ']')
335                   {
336                     /* It is a range.  */
337                     unsigned char cend = *p++;
338                     if (!(flags & FNM_NOESCAPE) && cend == '\\')
339                       cend = *p++;
340                     if (cend == '\0')
341                       return FNM_NOMATCH;
342
343                     if (cold <= fn && fn <= FOLD (cend))
344                       goto matched;
345
346                     c = *p++;
347                   }
348                 if (c == ']')
349                   break;
350               }
351
352             if (!not)
353               return FNM_NOMATCH;
354             break;
355
356           matched:
357             /* Skip the rest of the [...] that already matched.  */
358             while (c != ']')
359               {
360                 if (c == '\0')
361                   /* [... (unterminated) loses.  */
362                   return FNM_NOMATCH;
363
364                 c = *p++;
365                 if (!(flags & FNM_NOESCAPE) && c == '\\')
366                   {
367                     if (*p == '\0')
368                       return FNM_NOMATCH;
369                     /* XXX 1003.2d11 is unclear if this is right.  */
370                     ++p;
371                   }
372                 else if (c == '[' && *p == ':')
373                   {
374                     do
375                       if (*++p == '\0')
376                         return FNM_NOMATCH;
377                     while (*p != ':' || p[1] == ']');
378                     p += 2;
379                     c = *p;
380                   }
381               }
382             if (not)
383               return FNM_NOMATCH;
384           }
385           break;
386
387         default:
388           if (c != FOLD ((unsigned char) *n))
389             return FNM_NOMATCH;
390         }
391
392       ++n;
393     }
394
395   if (*n == '\0')
396     return 0;
397
398   if ((flags & FNM_LEADING_DIR) && *n == '/')
399     /* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz".  */
400     return 0;
401
402   return FNM_NOMATCH;
403
404 # undef FOLD
405 }
406
407 #endif  /* _LIBC or not __GNU_LIBRARY__.  */