Update translations.
[glibc.git] / posix / fnmatch_loop.c
blob9445ed9c585daafe2ae930d27a6ce17ccff700cd
1 /* Copyright (C) 1991-2022 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
18 #ifdef _LIBC
19 # include <stdint.h>
20 #endif
22 struct STRUCT
24 const CHAR *pattern;
25 const CHAR *string;
26 bool no_leading_period;
29 /* Match STRING against the file name pattern PATTERN, returning zero if
30 it matches, nonzero if not. */
31 static int FCT (const CHAR *pattern, const CHAR *string,
32 const CHAR *string_end, bool no_leading_period, int flags,
33 struct STRUCT *ends);
34 static int EXT (INT opt, const CHAR *pattern, const CHAR *string,
35 const CHAR *string_end, bool no_leading_period, int flags);
36 static const CHAR *END (const CHAR *patternp);
38 static int
39 FCT (const CHAR *pattern, const CHAR *string, const CHAR *string_end,
40 bool no_leading_period, int flags, struct STRUCT *ends)
42 const CHAR *p = pattern, *n = string;
43 UCHAR c;
44 #ifdef _LIBC
45 # if WIDE_CHAR_VERSION
46 const char *collseq = (const char *)
47 _NL_CURRENT(LC_COLLATE, _NL_COLLATE_COLLSEQWC);
48 # else
49 const UCHAR *collseq = (const UCHAR *)
50 _NL_CURRENT(LC_COLLATE, _NL_COLLATE_COLLSEQMB);
51 # endif
52 #endif
54 while ((c = *p++) != L_('\0'))
56 bool new_no_leading_period = false;
57 c = FOLD (c);
59 switch (c)
61 case L_('?'):
62 if (__glibc_unlikely (flags & FNM_EXTMATCH) && *p == '(')
64 int res = EXT (c, p, n, string_end, no_leading_period, flags);
65 if (res != -1)
66 return res;
69 if (n == string_end)
70 return FNM_NOMATCH;
71 else if (*n == L_('/') && (flags & FNM_FILE_NAME))
72 return FNM_NOMATCH;
73 else if (*n == L_('.') && no_leading_period)
74 return FNM_NOMATCH;
75 break;
77 case L_('\\'):
78 if (!(flags & FNM_NOESCAPE))
80 c = *p++;
81 if (c == L_('\0'))
82 /* Trailing \ loses. */
83 return FNM_NOMATCH;
84 c = FOLD (c);
86 if (n == string_end || FOLD ((UCHAR) *n) != c)
87 return FNM_NOMATCH;
88 break;
90 case L_('*'):
91 if (__glibc_unlikely (flags & FNM_EXTMATCH) && *p == '(')
93 int res = EXT (c, p, n, string_end, no_leading_period, flags);
94 if (res != -1)
95 return res;
97 else if (ends != NULL)
99 ends->pattern = p - 1;
100 ends->string = n;
101 ends->no_leading_period = no_leading_period;
102 return 0;
105 if (n != string_end && *n == L_('.') && no_leading_period)
106 return FNM_NOMATCH;
108 for (c = *p++; c == L_('?') || c == L_('*'); c = *p++)
110 if (*p == L_('(') && (flags & FNM_EXTMATCH) != 0)
112 const CHAR *endp = END (p);
113 if (endp != p)
115 /* This is a pattern. Skip over it. */
116 p = endp;
117 continue;
121 if (c == L_('?'))
123 /* A ? needs to match one character. */
124 if (n == string_end)
125 /* There isn't another character; no match. */
126 return FNM_NOMATCH;
127 else if (*n == L_('/')
128 && __glibc_unlikely (flags & FNM_FILE_NAME))
129 /* A slash does not match a wildcard under
130 FNM_FILE_NAME. */
131 return FNM_NOMATCH;
132 else
133 /* One character of the string is consumed in matching
134 this ? wildcard, so *??? won't match if there are
135 less than three characters. */
136 ++n;
140 if (c == L_('\0'))
141 /* The wildcard(s) is/are the last element of the pattern.
142 If the name is a file name and contains another slash
143 this means it cannot match, unless the FNM_LEADING_DIR
144 flag is set. */
146 int result = (flags & FNM_FILE_NAME) == 0 ? 0 : FNM_NOMATCH;
148 if (flags & FNM_FILE_NAME)
150 if (flags & FNM_LEADING_DIR)
151 result = 0;
152 else
154 if (MEMCHR (n, L_('/'), string_end - n) == NULL)
155 result = 0;
159 return result;
161 else
163 const CHAR *endp;
164 struct STRUCT end;
166 end.pattern = NULL;
167 endp = MEMCHR (n, (flags & FNM_FILE_NAME) ? L_('/') : L_('\0'),
168 string_end - n);
169 if (endp == NULL)
170 endp = string_end;
172 if (c == L_('[')
173 || (__glibc_unlikely (flags & FNM_EXTMATCH)
174 && (c == L_('@') || c == L_('+') || c == L_('!'))
175 && *p == L_('(')))
177 int flags2 = ((flags & FNM_FILE_NAME)
178 ? flags : (flags & ~FNM_PERIOD));
180 for (--p; n < endp; ++n, no_leading_period = false)
181 if (FCT (p, n, string_end, no_leading_period, flags2,
182 &end) == 0)
183 goto found;
185 else if (c == L_('/') && (flags & FNM_FILE_NAME))
187 while (n < string_end && *n != L_('/'))
188 ++n;
189 if (n < string_end && *n == L_('/')
190 && (FCT (p, n + 1, string_end, flags & FNM_PERIOD, flags,
191 NULL) == 0))
192 return 0;
194 else
196 int flags2 = ((flags & FNM_FILE_NAME)
197 ? flags : (flags & ~FNM_PERIOD));
199 if (c == L_('\\') && !(flags & FNM_NOESCAPE))
200 c = *p;
201 c = FOLD (c);
202 for (--p; n < endp; ++n, no_leading_period = false)
203 if (FOLD ((UCHAR) *n) == c
204 && (FCT (p, n, string_end, no_leading_period, flags2,
205 &end) == 0))
207 found:
208 if (end.pattern == NULL)
209 return 0;
210 break;
212 if (end.pattern != NULL)
214 p = end.pattern;
215 n = end.string;
216 no_leading_period = end.no_leading_period;
217 continue;
222 /* If we come here no match is possible with the wildcard. */
223 return FNM_NOMATCH;
225 case L_('['):
227 /* Nonzero if the sense of the character class is inverted. */
228 const CHAR *p_init = p;
229 const CHAR *n_init = n;
230 bool not;
231 CHAR cold;
232 UCHAR fn;
234 if (posixly_correct == 0)
235 posixly_correct = getenv ("POSIXLY_CORRECT") != NULL ? 1 : -1;
237 if (n == string_end)
238 return FNM_NOMATCH;
240 if (*n == L_('.') && no_leading_period)
241 return FNM_NOMATCH;
243 if (*n == L_('/') && (flags & FNM_FILE_NAME))
244 /* '/' cannot be matched. */
245 return FNM_NOMATCH;
247 not = (*p == L_('!') || (posixly_correct < 0 && *p == L_('^')));
248 if (not)
249 ++p;
251 fn = FOLD ((UCHAR) *n);
253 c = *p++;
254 for (;;)
256 if (!(flags & FNM_NOESCAPE) && c == L_('\\'))
258 if (*p == L_('\0'))
259 return FNM_NOMATCH;
260 c = FOLD ((UCHAR) *p);
261 ++p;
263 goto normal_bracket;
265 else if (c == L_('[') && *p == L_(':'))
267 /* Leave room for the null. */
268 CHAR str[CHAR_CLASS_MAX_LENGTH + 1];
269 size_t c1 = 0;
270 wctype_t wt;
271 const CHAR *startp = p;
273 for (;;)
275 if (c1 == CHAR_CLASS_MAX_LENGTH)
276 /* The name is too long and therefore the pattern
277 is ill-formed. */
278 return FNM_NOMATCH;
280 c = *++p;
281 if (c == L_(':') && p[1] == L_(']'))
283 p += 2;
284 break;
286 if (c < L_('a') || c >= L_('z'))
288 /* This cannot possibly be a character class name.
289 Match it as a normal range. */
290 p = startp;
291 c = L_('[');
292 goto normal_bracket;
294 str[c1++] = c;
296 str[c1] = L_('\0');
298 wt = IS_CHAR_CLASS (str);
299 if (wt == 0)
300 /* Invalid character class name. */
301 return FNM_NOMATCH;
303 #if defined _LIBC && ! WIDE_CHAR_VERSION
304 /* The following code is glibc specific but does
305 there a good job in speeding up the code since
306 we can avoid the btowc() call. */
307 if (_ISCTYPE ((UCHAR) *n, wt))
308 goto matched;
309 #else
310 if (iswctype (BTOWC ((UCHAR) *n), wt))
311 goto matched;
312 #endif
313 c = *p++;
315 #ifdef _LIBC
316 else if (c == L_('[') && *p == L_('='))
318 /* It's important that STR be a scalar variable rather
319 than a one-element array, because GCC (at least 4.9.2
320 -O2 on x86-64) can be confused by the array and
321 diagnose a "used initialized" in a dead branch in the
322 findidx function. */
323 UCHAR str;
324 uint32_t nrules =
325 _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
326 const CHAR *startp = p;
328 c = *++p;
329 if (c == L_('\0'))
331 p = startp;
332 c = L_('[');
333 goto normal_bracket;
335 str = c;
337 c = *++p;
338 if (c != L_('=') || p[1] != L_(']'))
340 p = startp;
341 c = L_('[');
342 goto normal_bracket;
344 p += 2;
346 if (nrules == 0)
348 if ((UCHAR) *n == str)
349 goto matched;
351 else
353 const int32_t *table;
354 # if WIDE_CHAR_VERSION
355 const int32_t *weights;
356 const wint_t *extra;
357 # else
358 const unsigned char *weights;
359 const unsigned char *extra;
360 # endif
361 const int32_t *indirect;
362 int32_t idx;
363 const UCHAR *cp = (const UCHAR *) &str;
365 # if WIDE_CHAR_VERSION
366 table = (const int32_t *)
367 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEWC);
368 weights = (const int32_t *)
369 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTWC);
370 extra = (const wint_t *)
371 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAWC);
372 indirect = (const int32_t *)
373 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTWC);
374 # else
375 table = (const int32_t *)
376 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
377 weights = (const unsigned char *)
378 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTMB);
379 extra = (const unsigned char *)
380 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
381 indirect = (const int32_t *)
382 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTMB);
383 # endif
385 idx = FINDIDX (table, indirect, extra, &cp, 1);
386 if (idx != 0)
388 /* We found a table entry. Now see whether the
389 character we are currently at has the same
390 equivalence class value. */
391 int len = weights[idx & 0xffffff];
392 int32_t idx2;
393 const UCHAR *np = (const UCHAR *) n;
395 idx2 = FINDIDX (table, indirect, extra,
396 &np, string_end - n);
397 if (idx2 != 0
398 && (idx >> 24) == (idx2 >> 24)
399 && len == weights[idx2 & 0xffffff])
401 int cnt = 0;
403 idx &= 0xffffff;
404 idx2 &= 0xffffff;
406 while (cnt < len
407 && (weights[idx + 1 + cnt]
408 == weights[idx2 + 1 + cnt]))
409 ++cnt;
411 if (cnt == len)
412 goto matched;
417 c = *p++;
419 #endif
420 else if (c == L_('\0'))
422 /* [ unterminated, treat as normal character. */
423 p = p_init;
424 n = n_init;
425 c = L_('[');
426 goto normal_match;
428 else
430 bool is_range = false;
432 #ifdef _LIBC
433 bool is_seqval = false;
435 if (c == L_('[') && *p == L_('.'))
437 uint32_t nrules =
438 _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
439 const CHAR *startp = p;
440 size_t c1 = 0;
442 while (1)
444 c = *++p;
445 if (c == L_('.') && p[1] == L_(']'))
447 p += 2;
448 break;
450 if (c == '\0')
451 return FNM_NOMATCH;
452 ++c1;
455 /* We have to handling the symbols differently in
456 ranges since then the collation sequence is
457 important. */
458 is_range = *p == L_('-') && p[1] != L_('\0');
460 if (nrules == 0)
462 /* There are no names defined in the collation
463 data. Therefore we only accept the trivial
464 names consisting of the character itself. */
465 if (c1 != 1)
466 return FNM_NOMATCH;
468 if (!is_range && *n == startp[1])
469 goto matched;
471 cold = startp[1];
472 c = *p++;
474 else
476 int32_t table_size;
477 const int32_t *symb_table;
478 const unsigned char *extra;
479 int32_t idx;
480 int32_t elem;
481 # if WIDE_CHAR_VERSION
482 CHAR *wextra;
483 # endif
485 table_size =
486 _NL_CURRENT_WORD (LC_COLLATE,
487 _NL_COLLATE_SYMB_HASH_SIZEMB);
488 symb_table = (const int32_t *)
489 _NL_CURRENT (LC_COLLATE,
490 _NL_COLLATE_SYMB_TABLEMB);
491 extra = (const unsigned char *)
492 _NL_CURRENT (LC_COLLATE,
493 _NL_COLLATE_SYMB_EXTRAMB);
495 for (elem = 0; elem < table_size; elem++)
496 if (symb_table[2 * elem] != 0)
498 idx = symb_table[2 * elem + 1];
499 /* Skip the name of collating element. */
500 idx += 1 + extra[idx];
501 # if WIDE_CHAR_VERSION
502 /* Skip the byte sequence of the
503 collating element. */
504 idx += 1 + extra[idx];
505 /* Adjust for the alignment. */
506 idx = (idx + 3) & ~3;
508 wextra = (CHAR *) &extra[idx + 4];
510 if (/* Compare the length of the sequence. */
511 c1 == wextra[0]
512 /* Compare the wide char sequence. */
513 && (__wmemcmp (startp + 1, &wextra[1],
515 == 0))
516 /* Yep, this is the entry. */
517 break;
518 # else
519 if (/* Compare the length of the sequence. */
520 c1 == extra[idx]
521 /* Compare the byte sequence. */
522 && memcmp (startp + 1,
523 &extra[idx + 1], c1) == 0)
524 /* Yep, this is the entry. */
525 break;
526 # endif
529 if (elem < table_size)
531 /* Compare the byte sequence but only if
532 this is not part of a range. */
533 if (! is_range
535 # if WIDE_CHAR_VERSION
536 && __wmemcmp (n, &wextra[1], c1) == 0
537 # else
538 && memcmp (n, &extra[idx + 1], c1) == 0
539 # endif
542 n += c1 - 1;
543 goto matched;
546 /* Get the collation sequence value. */
547 is_seqval = true;
548 # if WIDE_CHAR_VERSION
549 cold = wextra[1 + wextra[0]];
550 # else
551 idx += 1 + extra[idx];
552 /* Adjust for the alignment. */
553 idx = (idx + 3) & ~3;
554 cold = *((int32_t *) &extra[idx]);
555 # endif
557 c = *p++;
559 else if (c1 == 1)
561 /* No valid character. Match it as a
562 single byte. */
563 if (!is_range && *n == startp[1])
564 goto matched;
566 cold = startp[1];
567 c = *p++;
569 else
570 return FNM_NOMATCH;
573 else
574 #endif
576 c = FOLD (c);
577 normal_bracket:
579 /* We have to handling the symbols differently in
580 ranges since then the collation sequence is
581 important. */
582 is_range = (*p == L_('-') && p[1] != L_('\0')
583 && p[1] != L_(']'));
585 if (!is_range && c == fn)
586 goto matched;
588 #if _LIBC
589 /* This is needed if we goto normal_bracket; from
590 outside of is_seqval's scope. */
591 is_seqval = false;
592 #endif
593 cold = c;
594 c = *p++;
597 if (c == L_('-') && *p != L_(']'))
599 #if _LIBC
600 /* We have to find the collation sequence
601 value for C. Collation sequence is nothing
602 we can regularly access. The sequence
603 value is defined by the order in which the
604 definitions of the collation values for the
605 various characters appear in the source
606 file. A strange concept, nowhere
607 documented. */
608 uint32_t fcollseq;
609 uint32_t lcollseq;
610 UCHAR cend = *p++;
612 # if WIDE_CHAR_VERSION
613 /* Search in the 'names' array for the characters. */
614 fcollseq = __collseq_table_lookup (collseq, fn);
615 if (fcollseq == ~((uint32_t) 0))
616 /* XXX We don't know anything about the character
617 we are supposed to match. This means we are
618 failing. */
619 goto range_not_matched;
621 if (is_seqval)
622 lcollseq = cold;
623 else
624 lcollseq = __collseq_table_lookup (collseq, cold);
625 # else
626 fcollseq = collseq[fn];
627 lcollseq = is_seqval ? cold : collseq[(UCHAR) cold];
628 # endif
630 is_seqval = false;
631 if (cend == L_('[') && *p == L_('.'))
633 uint32_t nrules =
634 _NL_CURRENT_WORD (LC_COLLATE,
635 _NL_COLLATE_NRULES);
636 const CHAR *startp = p;
637 size_t c1 = 0;
639 while (1)
641 c = *++p;
642 if (c == L_('.') && p[1] == L_(']'))
644 p += 2;
645 break;
647 if (c == '\0')
648 return FNM_NOMATCH;
649 ++c1;
652 if (nrules == 0)
654 /* There are no names defined in the
655 collation data. Therefore we only
656 accept the trivial names consisting
657 of the character itself. */
658 if (c1 != 1)
659 return FNM_NOMATCH;
661 cend = startp[1];
663 else
665 int32_t table_size;
666 const int32_t *symb_table;
667 const unsigned char *extra;
668 int32_t idx;
669 int32_t elem;
670 # if WIDE_CHAR_VERSION
671 CHAR *wextra;
672 # endif
674 table_size =
675 _NL_CURRENT_WORD (LC_COLLATE,
676 _NL_COLLATE_SYMB_HASH_SIZEMB);
677 symb_table = (const int32_t *)
678 _NL_CURRENT (LC_COLLATE,
679 _NL_COLLATE_SYMB_TABLEMB);
680 extra = (const unsigned char *)
681 _NL_CURRENT (LC_COLLATE,
682 _NL_COLLATE_SYMB_EXTRAMB);
684 for (elem = 0; elem < table_size; elem++)
685 if (symb_table[2 * elem] != 0)
687 idx = symb_table[2 * elem + 1];
688 /* Skip the name of collating
689 element. */
690 idx += 1 + extra[idx];
691 # if WIDE_CHAR_VERSION
692 /* Skip the byte sequence of the
693 collating element. */
694 idx += 1 + extra[idx];
695 /* Adjust for the alignment. */
696 idx = (idx + 3) & ~3;
698 wextra = (CHAR *) &extra[idx + 4];
700 if (/* Compare the length of the
701 sequence. */
702 c1 == wextra[0]
703 /* Compare the wide char sequence. */
704 && (__wmemcmp (startp + 1,
705 &wextra[1], c1)
706 == 0))
707 /* Yep, this is the entry. */
708 break;
709 # else
710 if (/* Compare the length of the
711 sequence. */
712 c1 == extra[idx]
713 /* Compare the byte sequence. */
714 && memcmp (startp + 1,
715 &extra[idx + 1], c1) == 0)
716 /* Yep, this is the entry. */
717 break;
718 # endif
721 if (elem < table_size)
723 /* Get the collation sequence value. */
724 is_seqval = true;
725 # if WIDE_CHAR_VERSION
726 cend = wextra[1 + wextra[0]];
727 # else
728 idx += 1 + extra[idx];
729 /* Adjust for the alignment. */
730 idx = (idx + 3) & ~3;
731 cend = *((int32_t *) &extra[idx]);
732 # endif
734 else if (c1 == 1)
736 cend = startp[1];
737 c = *p++;
739 else
740 return FNM_NOMATCH;
743 else
745 if (!(flags & FNM_NOESCAPE) && cend == L_('\\'))
746 cend = *p++;
747 if (cend == L_('\0'))
748 return FNM_NOMATCH;
749 cend = FOLD (cend);
752 /* XXX It is not entirely clear to me how to handle
753 characters which are not mentioned in the
754 collation specification. */
755 if (
756 # if WIDE_CHAR_VERSION
757 lcollseq == 0xffffffff ||
758 # endif
759 lcollseq <= fcollseq)
761 /* We have to look at the upper bound. */
762 uint32_t hcollseq;
764 if (is_seqval)
765 hcollseq = cend;
766 else
768 # if WIDE_CHAR_VERSION
769 hcollseq =
770 __collseq_table_lookup (collseq, cend);
771 if (hcollseq == ~((uint32_t) 0))
773 /* Hum, no information about the upper
774 bound. The matching succeeds if the
775 lower bound is matched exactly. */
776 if (lcollseq != fcollseq)
777 goto range_not_matched;
779 goto matched;
781 # else
782 hcollseq = collseq[cend];
783 # endif
786 if (lcollseq <= hcollseq && fcollseq <= hcollseq)
787 goto matched;
789 # if WIDE_CHAR_VERSION
790 range_not_matched:
791 # endif
792 #else
793 /* We use a boring value comparison of the character
794 values. This is better than comparing using
795 'strcoll' since the latter would have surprising
796 and sometimes fatal consequences. */
797 UCHAR cend = *p++;
799 if (!(flags & FNM_NOESCAPE) && cend == L_('\\'))
800 cend = *p++;
801 if (cend == L_('\0'))
802 return FNM_NOMATCH;
804 /* It is a range. */
805 if ((UCHAR) cold <= fn && fn <= cend)
806 goto matched;
807 #endif
809 c = *p++;
813 if (c == L_(']'))
814 break;
817 if (!not)
818 return FNM_NOMATCH;
819 break;
821 matched:
822 /* Skip the rest of the [...] that already matched. */
823 while ((c = *p++) != L_(']'))
825 if (c == L_('\0'))
827 /* [ unterminated, treat as normal character. */
828 p = p_init;
829 n = n_init;
830 c = L_('[');
831 goto normal_match;
834 if (!(flags & FNM_NOESCAPE) && c == L_('\\'))
836 if (*p == L_('\0'))
837 return FNM_NOMATCH;
838 /* XXX 1003.2d11 is unclear if this is right. */
839 ++p;
841 else if (c == L_('[') && *p == L_(':'))
843 int c1 = 0;
844 const CHAR *startp = p;
846 while (1)
848 c = *++p;
849 if (++c1 == CHAR_CLASS_MAX_LENGTH)
850 return FNM_NOMATCH;
852 if (*p == L_(':') && p[1] == L_(']'))
853 break;
855 if (c < L_('a') || c >= L_('z'))
857 p = startp - 2;
858 break;
861 p += 2;
863 else if (c == L_('[') && *p == L_('='))
865 c = *++p;
866 if (c == L_('\0'))
867 return FNM_NOMATCH;
868 c = *++p;
869 if (c != L_('=') || p[1] != L_(']'))
870 return FNM_NOMATCH;
871 p += 2;
873 else if (c == L_('[') && *p == L_('.'))
875 while (1)
877 c = *++p;
878 if (c == L_('\0'))
879 return FNM_NOMATCH;
881 if (c == L_('.') && p[1] == L_(']'))
882 break;
884 p += 2;
887 if (not)
888 return FNM_NOMATCH;
890 break;
892 case L_('+'):
893 case L_('@'):
894 case L_('!'):
895 if (__glibc_unlikely (flags & FNM_EXTMATCH) && *p == '(')
897 int res = EXT (c, p, n, string_end, no_leading_period, flags);
898 if (res != -1)
899 return res;
901 goto normal_match;
903 case L_('/'):
904 if (NO_LEADING_PERIOD (flags))
906 if (n == string_end || c != (UCHAR) *n)
907 return FNM_NOMATCH;
909 new_no_leading_period = true;
910 break;
912 FALLTHROUGH;
913 default:
914 normal_match:
915 if (n == string_end || c != FOLD ((UCHAR) *n))
916 return FNM_NOMATCH;
919 no_leading_period = new_no_leading_period;
920 ++n;
923 if (n == string_end)
924 return 0;
926 if ((flags & FNM_LEADING_DIR) && n != string_end && *n == L_('/'))
927 /* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz". */
928 return 0;
930 return FNM_NOMATCH;
934 static const CHAR *
935 END (const CHAR *pattern)
937 const CHAR *p = pattern;
939 while (1)
940 if (*++p == L_('\0'))
941 /* This is an invalid pattern. */
942 return pattern;
943 else if (*p == L_('['))
945 /* Handle brackets special. */
946 if (posixly_correct == 0)
947 posixly_correct = getenv ("POSIXLY_CORRECT") != NULL ? 1 : -1;
949 /* Skip the not sign. We have to recognize it because of a possibly
950 following ']'. */
951 if (*++p == L_('!') || (posixly_correct < 0 && *p == L_('^')))
952 ++p;
953 /* A leading ']' is recognized as such. */
954 if (*p == L_(']'))
955 ++p;
956 /* Skip over all characters of the list. */
957 while (*p != L_(']'))
958 if (*p++ == L_('\0'))
959 /* This is no valid pattern. */
960 return pattern;
962 else if ((*p == L_('?') || *p == L_('*') || *p == L_('+') || *p == L_('@')
963 || *p == L_('!')) && p[1] == L_('('))
965 p = END (p + 1);
966 if (*p == L_('\0'))
967 /* This is an invalid pattern. */
968 return pattern;
970 else if (*p == L_(')'))
971 break;
973 return p + 1;
976 #if WIDE_CHAR_VERSION
977 # define PATTERN_PREFIX pattern_list
978 #else
979 # define PATTERN_PREFIX wpattern_list
980 #endif
982 #define PASTE(a,b) PASTE1(a,b)
983 #define PASTE1(a,b) a##b
985 #define DYNARRAY_STRUCT PATTERN_PREFIX
986 #define DYNARRAY_ELEMENT_FREE(ptr) free (*ptr)
987 #define DYNARRAY_ELEMENT CHAR *
988 #define DYNARRAY_PREFIX PASTE(PATTERN_PREFIX,_)
989 #define DYNARRAY_INITIAL_SIZE 8
990 #include <malloc/dynarray-skeleton.c>
992 static int
993 EXT (INT opt, const CHAR *pattern, const CHAR *string, const CHAR *string_end,
994 bool no_leading_period, int flags)
996 const CHAR *startp;
997 ptrdiff_t level;
998 struct PATTERN_PREFIX list;
999 size_t pattern_len = STRLEN (pattern);
1000 size_t pattern_i = 0;
1001 const CHAR *p;
1002 const CHAR *rs;
1003 int retval = 0;
1005 PASTE (PATTERN_PREFIX, _init) (&list);
1007 /* Parse the pattern. Store the individual parts in the list. */
1008 level = 0;
1009 for (startp = p = pattern + 1; level >= 0; ++p)
1010 if (*p == L_('\0'))
1012 /* This is an invalid pattern. */
1013 retval = -1;
1014 goto out;
1016 else if (*p == L_('['))
1018 /* Handle brackets special. */
1019 if (posixly_correct == 0)
1020 posixly_correct = getenv ("POSIXLY_CORRECT") != NULL ? 1 : -1;
1022 /* Skip the not sign. We have to recognize it because of a possibly
1023 following ']'. */
1024 if (*++p == L_('!') || (posixly_correct < 0 && *p == L_('^')))
1025 ++p;
1026 /* A leading ']' is recognized as such. */
1027 if (*p == L_(']'))
1028 ++p;
1029 /* Skip over all characters of the list. */
1030 while (*p != L_(']'))
1031 if (*p++ == L_('\0'))
1033 /* This is no valid pattern. */
1034 retval = -1;
1035 goto out;
1038 else if ((*p == L_('?') || *p == L_('*') || *p == L_('+') || *p == L_('@')
1039 || *p == L_('!')) && p[1] == L_('('))
1040 /* Remember the nesting level. */
1041 ++level;
1042 else if (*p == L_(')') || *p == L_('|'))
1044 if (level == 0)
1046 size_t slen = opt == L_('?') || opt == L_('@')
1047 ? pattern_len : p - startp + 1;
1048 CHAR *newp = malloc (slen * sizeof (CHAR));
1049 if (newp != NULL)
1051 *((CHAR *) MEMPCPY (newp, startp, p - startp)) = L_('\0');
1052 PASTE (PATTERN_PREFIX,_add) (&list, newp);
1054 if (newp == NULL || PASTE (PATTERN_PREFIX, _has_failed) (&list))
1056 retval = -2;
1057 goto out;
1060 if (*p == L_('|'))
1061 startp = p + 1;
1063 if (*p == L_(')'))
1064 level--;
1066 assert (p[-1] == L_(')'));
1068 switch (opt)
1070 case L_('*'):
1071 if (FCT (p, string, string_end, no_leading_period, flags, NULL) == 0)
1072 goto success;
1073 FALLTHROUGH;
1074 case L_('+'):
1075 for (; pattern_i < PASTE (PATTERN_PREFIX, _size)(&list); pattern_i++)
1077 for (rs = string; rs <= string_end; ++rs)
1078 /* First match the prefix with the current pattern with the
1079 current pattern. */
1080 if (FCT (*PASTE (PATTERN_PREFIX, _at) (&list, pattern_i), string,
1081 rs, no_leading_period,
1082 flags & FNM_FILE_NAME ? flags : flags & ~FNM_PERIOD,
1083 NULL) == 0
1084 /* This was successful. Now match the rest with the rest
1085 of the pattern. */
1086 && (FCT (p, rs, string_end,
1087 rs == string
1088 ? no_leading_period
1089 : rs[-1] == '/' && NO_LEADING_PERIOD (flags),
1090 flags & FNM_FILE_NAME
1091 ? flags : flags & ~FNM_PERIOD, NULL) == 0
1092 /* This didn't work. Try the whole pattern. */
1093 || (rs != string
1094 && FCT (pattern - 1, rs, string_end,
1095 rs == string
1096 ? no_leading_period
1097 : rs[-1] == '/' && NO_LEADING_PERIOD (flags),
1098 flags & FNM_FILE_NAME
1099 ? flags : flags & ~FNM_PERIOD, NULL) == 0)))
1100 /* It worked. Signal success. */
1101 goto success;
1104 /* None of the patterns lead to a match. */
1105 retval = FNM_NOMATCH;
1106 break;
1108 case L_('?'):
1109 if (FCT (p, string, string_end, no_leading_period, flags, NULL) == 0)
1110 goto success;
1111 FALLTHROUGH;
1112 case L_('@'):
1113 for (; pattern_i < PASTE (PATTERN_PREFIX, _size) (&list); pattern_i++)
1115 /* I cannot believe it but `strcat' is actually acceptable
1116 here. Match the entire string with the prefix from the
1117 pattern list and the rest of the pattern following the
1118 pattern list. */
1119 if (FCT (STRCAT (*PASTE (PATTERN_PREFIX, _at) (&list, pattern_i), p),
1120 string, string_end, no_leading_period,
1121 flags & FNM_FILE_NAME ? flags : flags & ~FNM_PERIOD,
1122 NULL) == 0)
1123 /* It worked. Signal success. */
1124 goto success;
1127 /* None of the patterns lead to a match. */
1128 retval = FNM_NOMATCH;
1129 break;
1131 case L_('!'):
1132 for (rs = string; rs <= string_end; ++rs)
1134 size_t runp_i;
1136 for (runp_i = pattern_i;
1137 runp_i != PASTE (PATTERN_PREFIX, _size) (&list);
1138 runp_i++)
1140 if (FCT (*PASTE (PATTERN_PREFIX, _at) (&list, runp_i), string, rs,
1141 no_leading_period,
1142 flags & FNM_FILE_NAME ? flags : flags & ~FNM_PERIOD,
1143 NULL) == 0)
1144 break;
1147 /* If none of the patterns matched see whether the rest does. */
1148 if (runp_i == PASTE (PATTERN_PREFIX, _size) (&list)
1149 && (FCT (p, rs, string_end,
1150 rs == string
1151 ? no_leading_period
1152 : rs[-1] == '/' && NO_LEADING_PERIOD (flags),
1153 flags & FNM_FILE_NAME ? flags : flags & ~FNM_PERIOD,
1154 NULL) == 0))
1155 /* This is successful. */
1156 goto success;
1159 /* None of the patterns together with the rest of the pattern
1160 lead to a match. */
1161 retval = FNM_NOMATCH;
1162 break;
1164 default:
1165 assert (! "Invalid extended matching operator");
1166 retval = -1;
1167 break;
1170 success:
1171 out:
1172 PASTE (PATTERN_PREFIX, _free) (&list);
1174 return retval;
1177 #undef PATTERN_PREFIX
1178 #undef PASTE
1179 #undef PASTE1
1181 #undef FOLD
1182 #undef CHAR
1183 #undef UCHAR
1184 #undef INT
1185 #undef FCT
1186 #undef EXT
1187 #undef END
1188 #undef STRUCT
1189 #undef MEMPCPY
1190 #undef MEMCHR
1191 #undef STRLEN
1192 #undef STRCAT
1193 #undef L_
1194 #undef BTOWC
1195 #undef WIDE_CHAR_VERSION
1196 #undef FINDIDX