3 /* From OpenBSD: nftw.c,v 1.2 2003/07/21 21:15:32 millert Exp */
6 * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 * Sponsored in part by the Defense Advanced Research Projects
21 * Agency (DARPA) and Air Force Research Laboratory, Air Force
22 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
25 #include <sys/cdefs.h>
28 __RCSID("$NetBSD: nftw.c,v 1.1 2005/12/30 23:07:32 agc Exp $");
31 #include <sys/types.h>
39 nftw(const char *path
, int (*fn
)(const char *, const struct stat
*, int,
40 struct FTW
*), int nfds
, int ftwflags
)
43 char * const paths
[2] = { __UNCONST(path
), NULL
};
47 int ftsflags
, fnflag
, error
, postorder
, sverrno
;
49 /* XXX - nfds is currently unused */
50 if (nfds
< 1 || nfds
> OPEN_MAX
) {
55 ftsflags
= FTS_COMFOLLOW
;
56 if (!(ftwflags
& FTW_CHDIR
))
57 ftsflags
|= FTS_NOCHDIR
;
58 if (ftwflags
& FTW_MOUNT
)
60 if (ftwflags
& FTW_PHYS
)
61 ftsflags
|= FTS_PHYSICAL
;
62 postorder
= (ftwflags
& FTW_DEPTH
) != 0;
63 ftsp
= fts_open(paths
, ftsflags
, NULL
);
67 while ((cur
= fts_read(ftsp
)) != NULL
) {
68 switch (cur
->fts_info
) {
103 f
.base
= cur
->fts_pathlen
- cur
->fts_namelen
;
104 f
.level
= cur
->fts_level
;
105 error
= fn(cur
->fts_path
, cur
->fts_statp
, fnflag
, &f
);
111 (void) fts_close(ftsp
);