2021-01-04 10:26:59 +01:00
|
|
|
/* Copyright (C) 1991-2021 Free Software Foundation, Inc.
|
1997-08-22 00:57:35 +02:00
|
|
|
|
2000-12-29 20:37:03 +01:00
|
|
|
NOTE: This source is derived from an old version taken from the GNU C
|
|
|
|
Library (glibc).
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-10 17:33:18 +02:00
|
|
|
Foundation, 51 Franklin Street - Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#if defined (CONFIG_BROKETS)
|
|
|
|
/* We use <config.h> instead of "config.h" so that a compilation
|
|
|
|
using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
|
|
|
|
(which it would do because it found this file in $srcdir). */
|
|
|
|
#include <config.h>
|
|
|
|
#else
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This code to undef const added in libiberty. */
|
|
|
|
#ifndef __STDC__
|
|
|
|
/* This is a separate conditional since some stdc systems
|
|
|
|
reject `defined (const)'. */
|
|
|
|
#ifndef const
|
|
|
|
#define const
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fnmatch.h>
|
safe-ctype.h: New file.
include:
* safe-ctype.h: New file.
libiberty:
* safe-ctype.c: New file.
* Makefile.in (CFILES): Add safe-ctype.c.
(REQUIRED_OFILES): Add safe-ctype.o.
* argv.c: Define ISBLANK and use it, not isspace.
* basename.c, cplus-dem.c, fnmatch.c, pexecute.c, strtod.c,
strtol.c, strtoul.c: Include safe-ctype.h, not ctype.h. Use
uppercase ctype macros. Don't test ISUPPER(c)/ISLOWER(c)
before calling TOLOWER(c)/TOUPPER(c).
gcc:
* Makefile.in (HOST_RTL): Add safe-ctype.o.
(safe-ctype.o): New rule.
* system.h: Include safe-ctype.h, not ctype.h. No need to
wrap ctype macros.
* cpphash.h: Zap IStable and related macros. Define is_* in
terms of safe-ctype.h macros.
* cppinit.c: Delete the IStable and all related code.
* tradcpp.c: Delete is_idchar, is_idstart, is_hor_space, and
is_space arrays. Delete initialize_char_syntax. Change all
references to the above arrays to use macros instead.
* tradcpp.h: Define is_idchar, is_idstart, is_space, and
is_nvspace in terms of safe_ctype.h's macros.
* tradcif.y: is_idchar, is_idstart are macros not arrays.
* config/i370/i370.c, config/winnt/dirent.c,
config/winnt/fixinc-nt.c, config/winnt/ld.c:
Use uppercase ctype macros. If we included ctype.h,
include safe-ctype.h instead.
* fixinc/fixfixes.c: Use uppercase ctype macros. Don't test
ISLOWER(c) before calling TOUPPER(c).
* fixinc/fixincl.c (extract_quoted_files): Simplify out some gunk.
* fixinc/gnu-regex.c: Include safe-ctype.h, not ctype.h. No need to
wrap ctype macros. Don't test ISUPPER(x) before calling TOLOWER(x).
gcc/ch:
* lex.c: Don't bother checking whether ISUPPER(c) before
calling TOLOWER(c). Don't bother checking whether isascii(c)
before testing ISSPACE(c); ISSPACE(c) includes '\n'.
gcc/f:
* Make-lang.in: Link f/fini with safe-ctype.o.
* bad.c: Don't test ISUPPER(c) || ISLOWER(c) before calling TOUPPER(c).
* com.c: Use TOUPPER, not ffesrc_toupper.
* fini.c: Don't test ISALPHA(c) before calling TOUPPER(c)/TOLOWER(c).
* intrin.c: Don't test IN_CTYPE_DOMAIN(c).
* src.c: Delete ffesrc_toupper_ and ffesrc_tolower_ and their
initializing code; use TOUPPER and TOLOWER instead of
ffesrc_toupper and ffesrc_tolower.
* src.h: Don't declare ffesrc_toupper_ or ffesrc_tolower_.
Don't define ffesrc_toupper or ffesrc_tolower.
gcc/java:
* jvgenmain.c: Use ISPRINT not isascii.
From-SVN: r38124
2000-12-08 04:00:26 +01:00
|
|
|
#include <safe-ctype.h>
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
/* Comment out all this code if we are using the GNU C Library, and are not
|
|
|
|
actually compiling the library itself. This code is part of the GNU C
|
|
|
|
Library, but also included in many other GNU distributions. Compiling
|
|
|
|
and linking in this code is a waste when using the GNU C library
|
|
|
|
(especially if it is a shared library). Rather than having every GNU
|
|
|
|
program understand `configure --with-gnu-libc' and omit the object files,
|
|
|
|
it is simpler to just do this in the source for each such file. */
|
|
|
|
|
|
|
|
#if defined (_LIBC) || !defined (__GNU_LIBRARY__)
|
|
|
|
|
|
|
|
|
|
|
|
#if !defined(__GNU_LIBRARY__) && !defined(STDC_HEADERS)
|
|
|
|
extern int errno;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Match STRING against the filename pattern PATTERN, returning zero if
|
|
|
|
it matches, nonzero if not. */
|
|
|
|
int
|
md5.h: Remove definition and uses of __P.
include/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
* md5.h: Remove definition and uses of __P.
* dyn-string.h: Remove uses of PARAMS.
* fibheap.h: Likewise.
* floatformat.h: Likewise.
* hashtab.h: Likewise.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 4/n.
* hashtab.c (higher_prime_index, hash_pointer, eq_pointer,
htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2,
htab_create_alloc, htab_set_functions_ex, htab_create,
htab_try_create, htab_delete, htab_empty,
find_empty_slot_for_expand, htab_expand, htab_find_with_hash,
htab_find, htab_find_slot_with_hash, htab_find_slot,
htab_remove_elt, htab_remove_elt_with_hash, htab_clear_slot,
htab_traverse_noresize, htab_traverse, htab_collisions,
htab_hash_string, iterative_hash): Use ISO C prototype.
* hex.c (hex_init): Likewise.
* index.c (index): Likewise.
* insque.c (insque, remque): Likewise.
* lbasename.c (lbasename): Likewise.
* lrealpath.c (lrealpath): Likewise.
* make-relative-prefix.c (save_string, split_directories,
free_split_directories, make_relative_prefix): Likewise.
* make-temp-file.c (try, choose_tmpdir, make_temp_file): Likewise.
* md5.c (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
md5_buffer, md5_process_bytes, md5_process_block): Likewise.
* memchr.c (memchr): Likewise.
* memcpy.c (memcpy): Likewise.
* memmove.c (memmove): Likewise.
* gettimeofday.c (gettimeofday): Likewise.
* getruntime.c (get_run_time): Likewise.
* getpwd.c (getpwd, getpwd): Likewise.
* getpagesize.c (getpagesize): Likewise.
* getopt1.c (getopt_long, getopt_long_only, main): Likewise.
* getopt.c (my_index, exchange, _getopt_initialize,
_getopt_internal, getopt, main): Likewise.
* getcwd.c (getcwd): Likewise.
* fnmatch.c (fnmatch): Likewise.
* floatformat.c (floatformat_always_valid,
floatformat_i387_ext_is_valid, get_field, floatformat_to_double,
put_field, floatformat_from_double, floatformat_is_valid,
ieee_test, main): Likewise.
* fibheap.c (fibheap_new, fibnode_new, fibheap_compare,
fibheap_comp_data, fibheap_insert, fibheap_min, fibheap_min_key,
fibheap_union, fibheap_extract_min, fibheap_replace_key_data,
fibheap_replace_key, fibheap_replace_data, fibheap_delete_node,
fibheap_delete, fibheap_empty, fibheap_extr_min_node,
fibheap_ins_root, fibheap_rem_root, fibheap_consolidate,
fibheap_link, fibheap_cut, fibheap_cascading_cut,
fibnode_insert_after, fibnode_remove): Likewise.
* ffs.c (ffs): Likewise.
* fdmatch.c (fdmatch): Likewise.
* dyn-string.c (dyn_string_init, dyn_string_new,
dyn_string_delete, dyn_string_release, dyn_string_resize,
dyn_string_clear, dyn_string_copy, dyn_string_copy_cstr,
dyn_string_prepend, dyn_string_prepend_cstr, dyn_string_insert,
dyn_string_insert_cstr, dyn_string_insert_char,
dyn_string_append, dyn_string_append_cstr,
dyn_string_append_char, dyn_string_substring, dyn_string_eq):
Likewise.
From-SVN: r97113
2005-03-27 17:31:13 +02:00
|
|
|
fnmatch (const char *pattern, const char *string, int flags)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
register const char *p = pattern, *n = string;
|
1998-12-22 07:57:17 +01:00
|
|
|
register unsigned char c;
|
1997-08-22 00:57:35 +02:00
|
|
|
|
safe-ctype.h: New file.
include:
* safe-ctype.h: New file.
libiberty:
* safe-ctype.c: New file.
* Makefile.in (CFILES): Add safe-ctype.c.
(REQUIRED_OFILES): Add safe-ctype.o.
* argv.c: Define ISBLANK and use it, not isspace.
* basename.c, cplus-dem.c, fnmatch.c, pexecute.c, strtod.c,
strtol.c, strtoul.c: Include safe-ctype.h, not ctype.h. Use
uppercase ctype macros. Don't test ISUPPER(c)/ISLOWER(c)
before calling TOLOWER(c)/TOUPPER(c).
gcc:
* Makefile.in (HOST_RTL): Add safe-ctype.o.
(safe-ctype.o): New rule.
* system.h: Include safe-ctype.h, not ctype.h. No need to
wrap ctype macros.
* cpphash.h: Zap IStable and related macros. Define is_* in
terms of safe-ctype.h macros.
* cppinit.c: Delete the IStable and all related code.
* tradcpp.c: Delete is_idchar, is_idstart, is_hor_space, and
is_space arrays. Delete initialize_char_syntax. Change all
references to the above arrays to use macros instead.
* tradcpp.h: Define is_idchar, is_idstart, is_space, and
is_nvspace in terms of safe_ctype.h's macros.
* tradcif.y: is_idchar, is_idstart are macros not arrays.
* config/i370/i370.c, config/winnt/dirent.c,
config/winnt/fixinc-nt.c, config/winnt/ld.c:
Use uppercase ctype macros. If we included ctype.h,
include safe-ctype.h instead.
* fixinc/fixfixes.c: Use uppercase ctype macros. Don't test
ISLOWER(c) before calling TOUPPER(c).
* fixinc/fixincl.c (extract_quoted_files): Simplify out some gunk.
* fixinc/gnu-regex.c: Include safe-ctype.h, not ctype.h. No need to
wrap ctype macros. Don't test ISUPPER(x) before calling TOLOWER(x).
gcc/ch:
* lex.c: Don't bother checking whether ISUPPER(c) before
calling TOLOWER(c). Don't bother checking whether isascii(c)
before testing ISSPACE(c); ISSPACE(c) includes '\n'.
gcc/f:
* Make-lang.in: Link f/fini with safe-ctype.o.
* bad.c: Don't test ISUPPER(c) || ISLOWER(c) before calling TOUPPER(c).
* com.c: Use TOUPPER, not ffesrc_toupper.
* fini.c: Don't test ISALPHA(c) before calling TOUPPER(c)/TOLOWER(c).
* intrin.c: Don't test IN_CTYPE_DOMAIN(c).
* src.c: Delete ffesrc_toupper_ and ffesrc_tolower_ and their
initializing code; use TOUPPER and TOLOWER instead of
ffesrc_toupper and ffesrc_tolower.
* src.h: Don't declare ffesrc_toupper_ or ffesrc_tolower_.
Don't define ffesrc_toupper or ffesrc_tolower.
gcc/java:
* jvgenmain.c: Use ISPRINT not isascii.
From-SVN: r38124
2000-12-08 04:00:26 +01:00
|
|
|
#define FOLD(c) ((flags & FNM_CASEFOLD) ? TOLOWER (c) : (c))
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
while ((c = *p++) != '\0')
|
|
|
|
{
|
|
|
|
c = FOLD (c);
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '?':
|
|
|
|
if (*n == '\0')
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
else if ((flags & FNM_FILE_NAME) && *n == '/')
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
else if ((flags & FNM_PERIOD) && *n == '.' &&
|
|
|
|
(n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\\':
|
|
|
|
if (!(flags & FNM_NOESCAPE))
|
|
|
|
{
|
|
|
|
c = *p++;
|
|
|
|
c = FOLD (c);
|
|
|
|
}
|
1998-12-22 07:57:17 +01:00
|
|
|
if (FOLD ((unsigned char)*n) != c)
|
1997-08-22 00:57:35 +02:00
|
|
|
return FNM_NOMATCH;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '*':
|
|
|
|
if ((flags & FNM_PERIOD) && *n == '.' &&
|
|
|
|
(n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
|
|
|
for (c = *p++; c == '?' || c == '*'; c = *p++, ++n)
|
|
|
|
if (((flags & FNM_FILE_NAME) && *n == '/') ||
|
|
|
|
(c == '?' && *n == '\0'))
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
|
|
|
if (c == '\0')
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
{
|
1998-12-22 07:57:17 +01:00
|
|
|
unsigned char c1 = (!(flags & FNM_NOESCAPE) && c == '\\') ? *p : c;
|
1997-08-22 00:57:35 +02:00
|
|
|
c1 = FOLD (c1);
|
|
|
|
for (--p; *n != '\0'; ++n)
|
1998-12-22 07:57:17 +01:00
|
|
|
if ((c == '[' || FOLD ((unsigned char)*n) == c1) &&
|
1997-08-22 00:57:35 +02:00
|
|
|
fnmatch (p, n, flags & ~FNM_PERIOD) == 0)
|
|
|
|
return 0;
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
case '[':
|
|
|
|
{
|
|
|
|
/* Nonzero if the sense of the character class is inverted. */
|
2005-05-24 22:48:25 +02:00
|
|
|
register int negate;
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
if (*n == '\0')
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
|
|
|
if ((flags & FNM_PERIOD) && *n == '.' &&
|
|
|
|
(n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
2005-05-24 22:48:25 +02:00
|
|
|
negate = (*p == '!' || *p == '^');
|
|
|
|
if (negate)
|
1997-08-22 00:57:35 +02:00
|
|
|
++p;
|
|
|
|
|
|
|
|
c = *p++;
|
|
|
|
for (;;)
|
|
|
|
{
|
1998-12-22 07:57:17 +01:00
|
|
|
register unsigned char cstart = c, cend = c;
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
if (!(flags & FNM_NOESCAPE) && c == '\\')
|
|
|
|
cstart = cend = *p++;
|
|
|
|
|
|
|
|
cstart = cend = FOLD (cstart);
|
|
|
|
|
|
|
|
if (c == '\0')
|
|
|
|
/* [ (unterminated) loses. */
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
|
|
|
c = *p++;
|
|
|
|
c = FOLD (c);
|
|
|
|
|
|
|
|
if ((flags & FNM_FILE_NAME) && c == '/')
|
|
|
|
/* [/] can never match. */
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
|
|
|
if (c == '-' && *p != ']')
|
|
|
|
{
|
|
|
|
cend = *p++;
|
|
|
|
if (!(flags & FNM_NOESCAPE) && cend == '\\')
|
|
|
|
cend = *p++;
|
|
|
|
if (cend == '\0')
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
cend = FOLD (cend);
|
|
|
|
|
|
|
|
c = *p++;
|
|
|
|
}
|
|
|
|
|
1998-12-22 07:57:17 +01:00
|
|
|
if (FOLD ((unsigned char)*n) >= cstart
|
|
|
|
&& FOLD ((unsigned char)*n) <= cend)
|
1997-08-22 00:57:35 +02:00
|
|
|
goto matched;
|
|
|
|
|
|
|
|
if (c == ']')
|
|
|
|
break;
|
|
|
|
}
|
2005-05-24 22:48:25 +02:00
|
|
|
if (!negate)
|
1997-08-22 00:57:35 +02:00
|
|
|
return FNM_NOMATCH;
|
|
|
|
break;
|
|
|
|
|
|
|
|
matched:;
|
|
|
|
/* Skip the rest of the [...] that already matched. */
|
|
|
|
while (c != ']')
|
|
|
|
{
|
|
|
|
if (c == '\0')
|
|
|
|
/* [... (unterminated) loses. */
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
|
|
|
|
c = *p++;
|
|
|
|
if (!(flags & FNM_NOESCAPE) && c == '\\')
|
|
|
|
/* XXX 1003.2d11 is unclear if this is right. */
|
|
|
|
++p;
|
|
|
|
}
|
2005-05-24 22:48:25 +02:00
|
|
|
if (negate)
|
1997-08-22 00:57:35 +02:00
|
|
|
return FNM_NOMATCH;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1998-12-22 07:57:17 +01:00
|
|
|
if (c != FOLD ((unsigned char)*n))
|
1997-08-22 00:57:35 +02:00
|
|
|
return FNM_NOMATCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
++n;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*n == '\0')
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((flags & FNM_LEADING_DIR) && *n == '/')
|
|
|
|
/* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz". */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return FNM_NOMATCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _LIBC or not __GNU_LIBRARY__. */
|