1 .\" Copyright (c) 1989, 1991, 1993, 1994
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\" must display the following acknowledgement:
16 .\" This product includes software developed by the University of
17 .\" California, Berkeley and its contributors.
18 .\" 4. Neither the name of the University nor the names of its contributors
19 .\" may be used to endorse or promote products derived from this software
20 .\" without specific prior written permission.
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" @(#)glob.3 8.3 (Berkeley) 4/16/94
35 .\" $FreeBSD: src/lib/libc/gen/glob.3,v 1.30 2004/09/01 23:28:27 tjr Exp $
43 .Nd generate pathnames matching a pattern
49 .Fn glob "const char *pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t *pglob"
51 .Fn globfree "glob_t *pglob"
56 is a pathname generator that implements the rules for file name pattern
57 matching used by the shell.
61 defines the structure type
63 which contains at least the following fields:
66 int gl_pathc; /* count of total paths so far */
67 int gl_matchc; /* count of paths matching pattern */
68 int gl_offs; /* reserved at beginning of gl_pathv */
69 int gl_flags; /* returned flags */
70 char **gl_pathv; /* list of paths matching pattern */
76 is a pointer to a pathname pattern to be expanded.
80 matches all accessible pathnames against the pattern and creates
81 a list of the pathnames that match.
82 In order to have access to a pathname,
84 requires search permission on every component of a path except the last
85 and read permission on each directory of any filename component of
87 that contains any of the special characters
96 stores the number of matched pathnames into the
98 field, and a pointer to a list of pointers to pathnames into the
101 The first pointer after the last pathname is
103 If the pattern does not match any pathnames, the returned number of
104 matched paths is set to zero.
106 It is the caller's responsibility to create the structure pointed to by
110 function allocates other space as needed, including the memory pointed
116 is used to modify the behavior of
120 is the bitwise inclusive
122 of any of the following
125 .Bl -tag -width GLOB_ALTDIRFUNC
127 Append pathnames generated to the ones from a previous call (or calls)
132 will be the total matches found by this call and the previous call(s).
133 The pathnames are appended to, not merged with the pathnames returned by
134 the previous call(s).
135 Between calls, the caller must not change the setting of the
137 flag, nor change the value of
141 is set, nor (obviously) call
151 is used to specify how many
153 pointers to prepend to the beginning
165 pathname pointers, followed by a
171 to return when it encounters a directory that it cannot open or read.
174 continues to find matches.
176 Each pathname that is a directory that matches
183 does not match any pathname, then
188 with the number of total pathnames set to 1, and the number of matched
190 The effect of backslash escaping is present in the pattern returned.
192 By default, a backslash
194 character is used to escape the following character in the pattern,
195 avoiding any special interpretation of the character.
198 is set, backslash escaping is disabled.
200 By default, the pathnames are sorted in ascending
203 this flag prevents that sorting (speeding up
207 The following values may also be included in
209 however, they are non-standard extensions to
211 .Bl -tag -width GLOB_ALTDIRFUNC
212 .It Dv GLOB_ALTDIRFUNC
213 The following additional fields in the pglob structure have been
214 initialized with alternate functions for glob to use to open, read,
215 and close directories and to get stat information on names found
216 in those directories.
218 void *(*gl_opendir)(const char * name);
219 struct dirent *(*gl_readdir)(void *);
220 void (*gl_closedir)(void *);
221 int (*gl_lstat)(const char *name, struct stat *st);
222 int (*gl_stat)(const char *name, struct stat *st);
225 This extension is provided to allow programs such as
227 to provide globbing from directories stored on tape.
229 Pre-process the pattern string to expand
235 is left unexpanded for historical reasons (and
237 does the same thing to
245 function if the pattern included globbing characters.
246 See the description of the usage of the
248 structure member for more details.
252 but it only appends the
254 if it does not contain any of the special characters ``*'', ``?'' or ``[''.
256 is provided to simplify implementing the historic
258 globbing behavior and should probably not be used anywhere else.
260 Expand patterns that start with
262 to user name home directories.
264 Limit the total number of returned pathnames to the value provided in
268 This option should be set for programs
269 that can be coerced into a denial of service attack
270 via patterns that expand to a very large number of matches,
271 such as a long string of
275 If, during the search, a directory is encountered that cannot be opened
282 .Fa \*(lp*errfunc\*(rp Ns ( Fa path , errno ) .
283 This may be unintuitive: a pattern like
290 is not a directory, resulting in a
293 The error routine can suppress this action by testing for
299 flag will still cause an immediate
300 return when this happens.
306 stops the scan and returns
312 to reflect any paths already matched.
313 This also happens if an error is encountered and
317 regardless of the return value of
322 is not set and either
328 returns zero, the error is ignored.
332 function frees any space associated with
334 from a previous call(s) to
337 On successful completion,
340 In addition the fields of
342 contain the values described below:
343 .Bl -tag -width GLOB_NOCHECK
345 contains the total number of matched pathnames so far.
346 This includes other matches from previous invocations of
352 contains the number of matched pathnames in the current invocation of
355 contains a copy of the
357 argument with the bit
361 contained any of the special characters ``*'', ``?'' or ``['', cleared
364 contains a pointer to a
365 .Dv NULL Ns -terminated
366 list of matched pathnames.
369 is zero, the contents of
376 terminates due to an error, it sets errno and returns one of the
377 following non-zero constants, which are defined in the include
380 .Bl -tag -width GLOB_NOCHECK
382 An attempt to allocate memory failed, or if
386 was specified in the flags and
387 .Fa pglob\->gl_matchc
388 or more patterns were matched.
390 The scan was stopped because an error was encountered and either
393 .Fa \*(lp*errfunc\*(rp\*(lp\*(rp
396 The pattern did not match a pathname and
405 are still set as specified above.
407 A rough equivalent of
409 can be obtained with the
411 .Bd -literal -offset indent
415 glob("*.c", GLOB_DOOFFS, NULL, &g);
416 glob("*.h", GLOB_DOOFFS | GLOB_APPEND, NULL, &g);
417 g.gl_pathv[0] = "ls";
418 g.gl_pathv[1] = "-l";
419 execvp("ls", g.gl_pathv);
426 The current implementation of the
432 Collating symbol expressions, equivalence class expressions and
433 character class expressions are not supported.
436 .Dv GLOB_ALTDIRFUNC ,
447 are extensions to the
450 should not be used by applications striving for strict
457 functions first appeared in
462 may cause unchecked errors.
467 may fail and set errno for any of the errors specified for the