1 /* Copyright (C) 1991-1992, 1995-1998, 2000-2001, 2004-2007, 2009-2017 Free
2 Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 # include <sys/cdefs.h>
25 /* GCC 2.95 and later have "__restrict"; C99 compilers have
26 "restrict", and "configure" may have defined "restrict".
27 Other compilers use __restrict, __restrict__, and _Restrict, and
28 'configure' might #define 'restrict' to those words, so pick a
31 # if 199901L <= __STDC_VERSION__
32 # define _Restrict_ restrict
33 # elif 2 < __GNUC__ || (2 == __GNUC__ && 95 <= __GNUC_MINOR__)
34 # define _Restrict_ __restrict
42 /* We need 'size_t' for the following definitions. */
44 # if defined __GNUC__ && __GNUC__ >= 2
45 typedef __SIZE_TYPE__ __size_t
;
47 typedef __SIZE_TYPE__
size_t;
52 # define __size_t size_t
56 /* The GNU CC stddef.h version defines __size_t as empty. We need a real
59 # define __size_t size_t
62 /* Bits set in the FLAGS argument to 'glob'. */
63 #define GLOB_ERR (1 << 0)/* Return on read errors. */
64 #define GLOB_MARK (1 << 1)/* Append a slash to each name. */
65 #define GLOB_NOSORT (1 << 2)/* Don't sort the names. */
66 #define GLOB_DOOFFS (1 << 3)/* Insert PGLOB->gl_offs NULLs. */
67 #define GLOB_NOCHECK (1 << 4)/* If nothing matches, return the pattern. */
68 #define GLOB_APPEND (1 << 5)/* Append to results of a previous call. */
69 #define GLOB_NOESCAPE (1 << 6)/* Backslashes don't quote metacharacters. */
70 #define GLOB_PERIOD (1 << 7)/* Leading '.' can be matched by metachars. */
72 #if !defined __USE_POSIX2 || defined __USE_BSD || defined __USE_GNU
73 # define GLOB_MAGCHAR (1 << 8)/* Set in gl_flags if any metachars seen. */
74 # define GLOB_ALTDIRFUNC (1 << 9)/* Use gl_opendir et al functions. */
75 # define GLOB_BRACE (1 << 10)/* Expand "{a,b}" to "a" "b". */
76 # define GLOB_NOMAGIC (1 << 11)/* If no magic chars, return the pattern. */
77 # define GLOB_TILDE (1 << 12)/* Expand ~user and ~ to home directories. */
78 # define GLOB_ONLYDIR (1 << 13)/* Match only directories. */
79 # define GLOB_TILDE_CHECK (1 << 14)/* Like GLOB_TILDE but return an error
80 if the user name is not available. */
81 # define __GLOB_FLAGS (GLOB_ERR|GLOB_MARK|GLOB_NOSORT|GLOB_DOOFFS| \
82 GLOB_NOESCAPE|GLOB_NOCHECK|GLOB_APPEND| \
83 GLOB_PERIOD|GLOB_ALTDIRFUNC|GLOB_BRACE| \
84 GLOB_NOMAGIC|GLOB_TILDE|GLOB_ONLYDIR|GLOB_TILDE_CHECK)
86 # define __GLOB_FLAGS (GLOB_ERR|GLOB_MARK|GLOB_NOSORT|GLOB_DOOFFS| \
87 GLOB_NOESCAPE|GLOB_NOCHECK|GLOB_APPEND| \
91 /* Error returns from 'glob'. */
92 #define GLOB_NOSPACE 1 /* Ran out of memory. */
93 #define GLOB_ABORTED 2 /* Read error. */
94 #define GLOB_NOMATCH 3 /* No matches found. */
95 #define GLOB_NOSYS 4 /* Not implemented. */
97 /* Previous versions of this file defined GLOB_ABEND instead of
98 GLOB_ABORTED. Provide a compatibility definition here. */
99 # define GLOB_ABEND GLOB_ABORTED
102 /* Structure describing a globbing run. */
108 __size_t gl_pathc
; /* Count of paths matched by the pattern. */
109 char **gl_pathv
; /* List of matched pathnames. */
110 __size_t gl_offs
; /* Slots to reserve in 'gl_pathv'. */
111 int gl_flags
; /* Set to FLAGS, maybe | GLOB_MAGCHAR. */
113 /* If the GLOB_ALTDIRFUNC flag is set, the following functions
114 are used instead of the normal file access functions. */
115 void (*gl_closedir
) (void *);
117 struct dirent
*(*gl_readdir
) (void *);
119 void *(*gl_readdir
) (void *);
121 void *(*gl_opendir
) (const char *);
123 int (*gl_lstat
) (const char *_Restrict_
, struct stat
*_Restrict_
);
124 int (*gl_stat
) (const char *_Restrict_
, struct stat
*_Restrict_
);
126 int (*gl_lstat
) (const char *_Restrict_
, void *_Restrict_
);
127 int (*gl_stat
) (const char *_Restrict_
, void *_Restrict_
);
131 #if defined __USE_LARGEFILE64 && !defined __GLOB_GNULIB
142 /* If the GLOB_ALTDIRFUNC flag is set, the following functions
143 are used instead of the normal file access functions. */
144 void (*gl_closedir
) (void *);
146 struct dirent64
*(*gl_readdir
) (void *);
148 void *(*gl_readdir
) (void *);
150 void *(*gl_opendir
) (const char *);
152 int (*gl_lstat
) (const char *_Restrict_
, struct stat64
*_Restrict_
);
153 int (*gl_stat
) (const char *_Restrict_
, struct stat64
*_Restrict_
);
155 int (*gl_lstat
) (const char *_Restrict_
, void *_Restrict_
);
156 int (*gl_stat
) (const char *_Restrict_
, void *_Restrict_
);
161 #if defined __USE_FILE_OFFSET64 && __GNUC__ < 2 && !defined __GLOB_GNULIB
163 # define globfree globfree64
166 /* Do glob searching for PATTERN, placing results in PGLOB.
167 The bits defined above may be set in FLAGS.
168 If a directory cannot be opened or read and ERRFUNC is not nil,
169 it is called with the pathname that caused the error, and the
170 'errno' value from the failing call; if it returns non-zero
171 'glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
172 If memory cannot be allocated for PGLOB, GLOB_NOSPACE is returned.
173 Otherwise, 'glob' returns zero. */
174 #if !defined __USE_FILE_OFFSET64 || __GNUC__ < 2 || defined __GLOB_GNULIB
175 extern int glob (const char *_Restrict_ __pattern
, int __flags
,
176 int (*__errfunc
) (const char *, int),
177 glob_t
*_Restrict_ __pglob
) __THROW
_GL_ARG_NONNULL ((1, 4));
179 /* Free storage allocated in PGLOB by a previous 'glob' call. */
180 extern void globfree (glob_t
*__pglob
) __THROW
_GL_ARG_NONNULL ((1));
182 extern int __REDIRECT_NTH (glob
, (const char *_Restrict_ __pattern
,
184 int (*__errfunc
) (const char *, int),
185 glob_t
*_Restrict_ __pglob
), glob64
);
187 extern void __REDIRECT_NTH (globfree
, (glob_t
*__pglob
), globfree64
);
190 #if defined __USE_LARGEFILE64 && !defined __GLOB_GNULIB
191 extern int glob64 (const char *_Restrict_ __pattern
, int __flags
,
192 int (*__errfunc
) (const char *, int),
193 glob64_t
*_Restrict_ __pglob
)
194 __THROW
_GL_ARG_NONNULL ((1, 4));
196 extern void globfree64 (glob64_t
*__pglob
) __THROW
_GL_ARG_NONNULL ((1));
201 /* Return nonzero if PATTERN contains any metacharacters.
202 Metacharacters can be quoted with backslashes if QUOTE is nonzero.
204 This function is not part of the interface specified by POSIX.2
205 but several programs want to use it. */
206 extern int glob_pattern_p (const char *__pattern
, int __quote
)
207 __THROW
_GL_ARG_NONNULL ((1));