]>
git.saurik.com Git - apple/libc.git/blob - gen/nftw.c
1 /* $OpenBSD: nftw.c,v 1.2 2003/07/21 21:15:32 millert Exp $ */
4 * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 * Sponsored in part by the Defense Advanced Research Projects
19 * Agency (DARPA) and Air Force Research Laboratory, Air Force
20 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
23 #if defined(LIBC_SCCS) && !defined(lint)
24 static const char rcsid
[] = "$OpenBSD: nftw.c,v 1.2 2003/07/21 21:15:32 millert Exp $";
25 #endif /* LIBC_SCCS and not lint */
28 #include <sys/cdefs.h>
29 #include <sys/types.h>
40 both_ftw(const char *path
,
41 int (*ofn
)(const char *, const struct stat
*, int),
42 int (*nfn
)(const char *, const struct stat
*, int, struct FTW
*),
43 int nfds
, int ftwflags
)
49 int ftsflags
, fnflag
, error
, postorder
, sverrno
;
50 int cwd_fd
= -1; /* cwd_fd != -1 means call chdir a lot */
53 /* Macro to skip the mount point itself in UNiX03 mode, in legcy
54 mode the mount point is returned, but we don't decend into it */
55 #define SKIP_MOUNT if ((ftwflags & FTW_MOUNT) \
56 && cur->fts_statp->st_dev != path_stat.st_dev) { \
63 /* XXX - nfds is currently unused */
64 if (nfds
< 1 || nfds
> OPEN_MAX
) {
69 ftsflags
= FTS_COMFOLLOW
;
70 if (!(ftwflags
& FTW_CHDIR
))
71 ftsflags
|= FTS_NOCHDIR
;
72 if (ftwflags
& FTW_MOUNT
)
74 if (ftwflags
& FTW_PHYS
) {
75 ftsflags
|= FTS_PHYSICAL
;
77 ftsflags
|= FTS_LOGICAL
;
79 postorder
= (ftwflags
& FTW_DEPTH
) != 0;
81 /* We have been requested to change directories, and fts doesn't
82 always do it (never for FTS_LOGICAL, and sometimes not for
84 if (ftwflags
& FTW_CHDIR
) {
85 cwd_fd
= open(".", O_RDONLY
, 0);
89 /* Prevent problems if fts ever starts using chdir when passed
91 ftsflags
|= FTS_NOCHDIR
;
95 struct stat path_stat
;
97 /* UNIX03 requires us to return -1/errno=ELOOP if path
98 is a looping symlink; fts_open is succesful and fts_read
99 gives us FTS_NS which isn't very useful, in fact we get
100 pretty much the same behaviour for ENAMETOOLONG, ENOENT,
101 ENOTDIR, and EACCES */
103 int rc
= stat(path
, &path_stat
);
106 && (errno
== ELOOP
|| errno
== ENAMETOOLONG
|| errno
== ENOENT
107 || errno
== ENOTDIR
|| errno
== EACCES
)) {
110 if (rc
>= 0 && nfn
) {
111 if (!S_ISDIR(path_stat
.st_mode
)) {
120 ftsp
= fts_open((char * const *)paths
, ftsflags
, NULL
);
125 while ((cur
= fts_read(ftsp
)) != NULL
) {
126 switch (cur
->fts_info
) {
131 /* we will get FTS_DNR next (this is not an issue for
132 FTS_DP, only FTS_D) */
133 if (access(cur
->fts_path
, R_OK
) != 0)
158 fnflag
= nfn
? FTW_SLN
: FTW_SL
;
161 /* The legacy behaviour did not signal an error
162 on symlink loops unless they ended up causing
163 a directory cycle, but the Unix2003 standard
164 requires ELOOP to end ftw and nftw walks with
167 int rc
= stat(cur
->fts_path
, &sb
);
168 if (rc
< 0 && errno
== ELOOP
) {
177 /* Unix03 says nftw should break cycles and not return
178 errors in physical mode (which is definitly what it
179 says ftw can't do) */
180 if (nfn
&& !(ftwflags
& FTW_PHYS
)) {
193 char *dir
, *free_me
= NULL
;
194 if (fnflag
== FTW_D
) {
197 /* we could alloc just enough for the directory,
198 and use memmove -- but that is a little more
199 error prone, and not noticable in with all the
201 dir
= free_me
= strdup(cur
->fts_path
);
202 dir
[cur
->fts_pathlen
- cur
->fts_namelen
] = '\0';
214 ftw
.base
= cur
->fts_pathlen
- cur
->fts_namelen
;
215 ftw
.level
= cur
->fts_level
;
216 error
= nfn(cur
->fts_path
, cur
->fts_statp
, fnflag
, &ftw
);
218 error
= ofn(cur
->fts_path
, cur
->fts_statp
, fnflag
);
221 if (fchdir(cwd_fd
) < 0) {
232 (void) fts_close(ftsp
);
238 ftw(const char *path
, int (*fn
)(const char *, const struct stat
*, int),
241 /* The legacy implmentation didn't follow symlinks, but Unix03
242 does - this was likely a bug in the legacy implemtation; JKH
243 thinks we ought change the legacy behaviour, and I agree; anyone
244 who doesn't should replace FTW_PHYS with
245 __DARWIN_UNIX03 ? 0 : FTW_PHYS */
246 return both_ftw(path
, fn
, NULL
, nfds
, FTW_PHYS
);
250 nftw(const char *path
, int (*fn
)(const char *, const struct stat
*, int,
251 struct FTW
*), int nfds
, int ftwflags
)
253 return both_ftw(path
, NULL
, fn
, nfds
, ftwflags
);