]> git.saurik.com Git - apple/libc.git/blame_incremental - gen/FreeBSD/glob.3
Libc-1272.250.1.tar.gz
[apple/libc.git] / gen / FreeBSD / glob.3
... / ...
CommitLineData
1.\" Copyright (c) 1989, 1991, 1993, 1994
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Guido van Rossum.
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
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. Neither the name of the University nor the names of its contributors
15.\" may be used to endorse or promote products derived from this software
16.\" without specific prior written permission.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE.
29.\"
30.\" @(#)glob.3 8.3 (Berkeley) 4/16/94
31.\" $FreeBSD$
32.\"
33.Dd June 11, 2017
34.Dt GLOB 3
35.Os
36.Sh NAME
37.Nm glob ,
38.Nm glob_b ,
39.Nm globfree
40.Nd generate pathnames matching a pattern
41.Sh SYNOPSIS
42.In glob.h
43.Ft int
44.Fn glob "const char * restrict pattern" "int flags" "int (*errfunc)(const char *epath, int errno)" "glob_t * restrict pglob"
45.Ft int
46.Fn glob "const char * restrict pattern" "int flags" "int (^errblk)(const char *epath, int errno)" "glob_t * restrict pglob"
47.Ft void
48.Fn globfree "glob_t *pglob"
49.Sh DESCRIPTION
50The
51.Fn glob
52function
53is a pathname generator that implements the rules for file name pattern
54matching used by the shell.
55.Pp
56The include file
57.In glob.h
58defines the structure type
59.Fa glob_t ,
60which contains at least the following fields:
61.Bd -literal
62typedef struct {
63 size_t gl_pathc; /* count of total paths so far */
64 int gl_matchc; /* count of paths matching pattern */
65 size_t gl_offs; /* reserved at beginning of gl_pathv */
66 int gl_flags; /* returned flags */
67 char **gl_pathv; /* list of paths matching pattern */
68} glob_t;
69.Ed
70.Pp
71The argument
72.Fa pattern
73is a pointer to a pathname pattern to be expanded.
74The
75.Fn glob
76argument
77matches all accessible pathnames against the pattern and creates
78a list of the pathnames that match.
79In order to have access to a pathname,
80.Fn glob
81requires search permission on every component of a path except the last
82and read permission on each directory of any filename component of
83.Fa pattern
84that contains any of the special characters
85.Ql * ,
86.Ql ?\&
87or
88.Ql \&[ .
89.Pp
90The
91.Fn glob
92argument
93stores the number of matched pathnames into the
94.Fa gl_pathc
95field, and a pointer to a list of pointers to pathnames into the
96.Fa gl_pathv
97field.
98The first pointer after the last pathname is
99.Dv NULL .
100If the pattern does not match any pathnames, the returned number of
101matched paths is set to zero.
102.Pp
103It is the caller's responsibility to create the structure pointed to by
104.Fa pglob .
105The
106.Fn glob
107function allocates other space as needed, including the memory pointed
108to by
109.Fa gl_pathv .
110.Pp
111The argument
112.Fa flags
113is used to modify the behavior of
114.Fn glob .
115The value of
116.Fa flags
117is the bitwise inclusive
118.Tn OR
119of any of the following
120values defined in
121.In glob.h :
122.Bl -tag -width GLOB_ALTDIRFUNC
123.It Dv GLOB_APPEND
124Append pathnames generated to the ones from a previous call (or calls)
125to
126.Fn glob .
127The value of
128.Fa gl_pathc
129will be the total matches found by this call and the previous call(s).
130The pathnames are appended to, not merged with the pathnames returned by
131the previous call(s).
132Between calls, the caller must not change the setting of the
133.Dv GLOB_DOOFFS
134flag, nor change the value of
135.Fa gl_offs
136when
137.Dv GLOB_DOOFFS
138is set, nor (obviously) call
139.Fn globfree
140for
141.Fa pglob .
142.It Dv GLOB_DOOFFS
143Make use of the
144.Fa gl_offs
145field.
146If this flag is set,
147.Fa gl_offs
148is used to specify how many
149.Dv NULL
150pointers to prepend to the beginning
151of the
152.Fa gl_pathv
153field.
154In other words,
155.Fa gl_pathv
156will point to
157.Fa gl_offs
158.Dv NULL
159pointers,
160followed by
161.Fa gl_pathc
162pathname pointers, followed by a
163.Dv NULL
164pointer.
165.It Dv GLOB_ERR
166Causes
167.Fn glob
168to return when it encounters a directory that it cannot open or read.
169Ordinarily,
170.Fn glob
171continues to find matches.
172.It Dv GLOB_MARK
173Each pathname that is a directory that matches
174.Fa pattern
175has a slash
176appended.
177.It Dv GLOB_NOCHECK
178If
179.Fa pattern
180does not match any pathname, then
181.Fn glob
182returns a list
183consisting of only
184.Fa pattern ,
185with the number of total pathnames set to 1, and the number of matched
186pathnames set to 0.
187The effect of backslash escaping is present in the pattern returned.
188.It Dv GLOB_NOESCAPE
189By default, a backslash
190.Pq Ql \e
191character is used to escape the following character in the pattern,
192avoiding any special interpretation of the character.
193If
194.Dv GLOB_NOESCAPE
195is set, backslash escaping is disabled.
196.It Dv GLOB_NOSORT
197By default, the pathnames are sorted in ascending
198collation
199order;
200this flag prevents that sorting (speeding up
201.Fn glob ) .
202.El
203.Pp
204The following values may also be included in
205.Fa flags ,
206however, they are non-standard extensions to
207.St -p1003.2 .
208.Bl -tag -width GLOB_ALTDIRFUNC
209.It Dv GLOB_ALTDIRFUNC
210The following additional fields in the pglob structure have been
211initialized with alternate functions for glob to use to open, read,
212and close directories and to get stat information on names found
213in those directories.
214.Bd -literal
215void *(*gl_opendir)(const char * name);
216struct dirent *(*gl_readdir)(void *);
217void (*gl_closedir)(void *);
218int (*gl_lstat)(const char *name, struct stat *st);
219int (*gl_stat)(const char *name, struct stat *st);
220.Ed
221.Pp
222This extension is provided to allow programs such as
223.Xr restore 8
224to provide globbing from directories stored on tape.
225.It Dv GLOB_BRACE
226Pre-process the pattern string to expand
227.Ql {pat,pat,...}
228strings like
229.Xr csh 1 .
230The pattern
231.Ql {}
232is left unexpanded for historical reasons (and
233.Xr csh 1
234does the same thing to
235ease typing
236of
237.Xr find 1
238patterns).
239.It Dv GLOB_MAGCHAR
240Set by the
241.Fn glob
242function if the pattern included globbing characters.
243See the description of the usage of the
244.Fa gl_matchc
245structure member for more details.
246.It Dv GLOB_NOMAGIC
247Is the same as
248.Dv GLOB_NOCHECK
249but it only appends the
250.Fa pattern
251if it does not contain any of the special characters ``*'', ``?'' or ``[''.
252.Dv GLOB_NOMAGIC
253is provided to simplify implementing the historic
254.Xr csh 1
255globbing behavior and should probably not be used anywhere else.
256.It Dv GLOB_TILDE
257Expand patterns that start with
258.Ql ~
259to user name home directories.
260.It Dv GLOB_LIMIT
261Limit the total number of returned pathnames to the value provided in
262.Fa gl_matchc
263(default
264.Dv ARG_MAX ) .
265This option should be set for programs
266that can be coerced into a denial of service attack
267via patterns that expand to a very large number of matches,
268such as a long string of
269.Ql */../*/.. .
270.El
271.Pp
272If, during the search, a directory is encountered that cannot be opened
273or read and
274.Fa errfunc
275is
276.Pf non- Dv NULL ,
277.Fn glob
278calls
279.Fa \*(lp*errfunc\*(rp Ns ( Fa path , errno ) .
280This may be unintuitive: a pattern like
281.Ql */Makefile
282will try to
283.Xr stat 2
284.Ql foo/Makefile
285even if
286.Ql foo
287is not a directory, resulting in a
288call to
289.Fa errfunc .
290The error routine can suppress this action by testing for
291.Er ENOENT
292and
293.Er ENOTDIR ;
294however, the
295.Dv GLOB_ERR
296flag will still cause an immediate
297return when this happens.
298.Pp
299If
300.Fa errfunc
301returns non-zero,
302.Fn glob
303stops the scan and returns
304.Dv GLOB_ABORTED
305after setting
306.Fa gl_pathc
307and
308.Fa gl_pathv
309to reflect any paths already matched.
310This also happens if an error is encountered and
311.Dv GLOB_ERR
312is set in
313.Fa flags ,
314regardless of the return value of
315.Fa errfunc ,
316if called.
317If
318.Dv GLOB_ERR
319is not set and either
320.Fa errfunc
321is
322.Dv NULL
323or
324.Fa errfunc
325returns zero, the error is ignored.
326.Pp
327The
328.Fn glob_b
329function is like
330.Fn glob
331except that the error callback is a block pointer instead of a function
332pointer.
333.Pp
334The
335.Fn globfree
336function frees any space associated with
337.Fa pglob
338from a previous call(s) to
339.Fn glob
340or
341.Fn glob_b .
342.Sh RETURN VALUES
343On successful completion,
344.Fn glob
345and
346.Fn glob_b
347return zero.
348In addition, the fields of
349.Fa pglob
350contain the values described below:
351.Bl -tag -width GLOB_NOCHECK
352.It Fa gl_pathc
353contains the total number of matched pathnames so far.
354This includes other matches from previous invocations of
355.Fn glob
356or
357.Fn glob_b
358if
359.Dv GLOB_APPEND
360was specified.
361.It Fa gl_matchc
362contains the number of matched pathnames in the current invocation of
363.Fn glob
364or
365.Fn glob_b .
366.It Fa gl_flags
367contains a copy of the
368.Fa flags
369argument with the bit
370.Dv GLOB_MAGCHAR
371set if
372.Fa pattern
373contained any of the special characters ``*'', ``?'' or ``['', cleared
374if not.
375.It Fa gl_pathv
376contains a pointer to a
377.Dv NULL Ns -terminated
378list of matched pathnames.
379However, if
380.Fa gl_pathc
381is zero, the contents of
382.Fa gl_pathv
383are undefined.
384.El
385.Pp
386If
387.Fn glob
388or
389.Fn glob_b
390terminates due to an error, it sets errno and returns one of the
391following non-zero constants, which are defined in the include
392file
393.In glob.h :
394.Bl -tag -width GLOB_NOCHECK
395.It Dv GLOB_NOSPACE
396An attempt to allocate memory failed, or if
397.Fa errno
398was E2BIG,
399.Dv GLOB_LIMIT
400was specified in the flags and
401.Fa pglob\->gl_matchc
402or more patterns were matched.
403.It Dv GLOB_ABORTED
404The scan was stopped because an error was encountered and either
405.Dv GLOB_ERR
406was set or
407.Fa \*(lp*errfunc\*(rp\*(lp\*(rp
408returned non-zero.
409.It Dv GLOB_NOMATCH
410The pattern did not match a pathname and
411.Dv GLOB_NOCHECK
412was not set.
413.El
414.Pp
415The arguments
416.Fa pglob\->gl_pathc
417and
418.Fa pglob\->gl_pathv
419are still set as specified above.
420.Sh EXAMPLES
421A rough equivalent of
422.Ql "ls -l *.c *.h"
423can be obtained with the
424following code:
425.Bd -literal -offset indent
426glob_t g;
427
428g.gl_offs = 2;
429glob("*.c", GLOB_DOOFFS, NULL, &g);
430glob("*.h", GLOB_DOOFFS | GLOB_APPEND, NULL, &g);
431g.gl_pathv[0] = "ls";
432g.gl_pathv[1] = "-l";
433execvp("ls", g.gl_pathv);
434.Ed
435.Sh CAVEATS
436The
437.Fn glob
438and
439.Fn glob_b
440functions
441will not match filenames that begin with a period
442unless this is specifically requested (e.g., by ".*").
443.Sh SEE ALSO
444.Xr sh 1 ,
445.Xr fnmatch 3 ,
446.Xr regexp 3
447.Sh STANDARDS
448The current implementation of the
449.Fn glob
450function
451.Em does not
452conform to
453.St -p1003.2 .
454Collating symbol expressions, equivalence class expressions and
455character class expressions are not supported.
456.Pp
457The flags
458.Dv GLOB_ALTDIRFUNC ,
459.Dv GLOB_BRACE ,
460.Dv GLOB_LIMIT ,
461.Dv GLOB_MAGCHAR ,
462.Dv GLOB_NOMAGIC ,
463and
464.Dv GLOB_TILDE ,
465and the fields
466.Fa gl_matchc
467and
468.Fa gl_flags
469are extensions to the
470.Tn POSIX
471standard and
472should not be used by applications striving for strict
473conformance.
474.Sh HISTORY
475The
476.Fn glob
477and
478.Fn globfree
479functions first appeared in
480.Bx 4.4 .
481The
482.Fn glob_b
483function first appeared in Mac OS X 10.6.
484.Sh BUGS
485Patterns longer than
486.Dv MAXPATHLEN
487may cause unchecked errors.
488.Pp
489The
490.Fn glob
491and
492.Fn glob_b
493functions
494may fail and set errno for any of the errors specified for the
495library routines
496.Xr stat 2 ,
497.Xr closedir 3 ,
498.Xr opendir 3 ,
499.Xr readdir 3 ,
500.Xr malloc 3 ,
501and
502.Xr free 3 .