2011-05-24 19:24:33 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <dirent.h>
|
2015-03-11 18:21:52 -04:00
|
|
|
#include <errno.h>
|
2014-01-30 07:37:35 -05:00
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
2011-05-24 19:24:33 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-06-04 09:30:54 -04:00
|
|
|
#include <sys/stat.h>
|
2014-01-30 07:37:35 -05:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2011-05-24 19:24:33 -04:00
|
|
|
#include "../util.h"
|
|
|
|
|
2015-03-11 18:21:52 -04:00
|
|
|
int recurse_follow = 'P';
|
|
|
|
int recurse_samedev = 0;
|
2015-03-02 15:43:56 -05:00
|
|
|
|
2011-05-24 19:24:33 -04:00
|
|
|
void
|
2015-03-11 18:21:52 -04:00
|
|
|
recurse(const char *path, void (*fn)(const char *, int, void *), int depth, void *data)
|
2011-05-24 19:24:33 -04:00
|
|
|
{
|
|
|
|
struct dirent *d;
|
2015-03-11 18:21:52 -04:00
|
|
|
struct stat lst, st, dst;
|
2011-05-24 19:24:33 -04:00
|
|
|
DIR *dp;
|
2015-03-12 08:22:37 -04:00
|
|
|
char subpath[PATH_MAX];
|
2011-05-24 19:24:33 -04:00
|
|
|
|
2015-03-11 18:21:52 -04:00
|
|
|
if (lstat(path, &lst) < 0) {
|
|
|
|
if (errno != ENOENT)
|
|
|
|
weprintf("lstat %s:", path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (stat(path, &st) < 0) {
|
|
|
|
if (errno != ENOENT)
|
|
|
|
weprintf("stat %s:", path);
|
|
|
|
return;
|
|
|
|
}
|
2015-03-02 15:43:56 -05:00
|
|
|
if (!S_ISDIR(lst.st_mode) && !(S_ISLNK(lst.st_mode) && S_ISDIR(st.st_mode) &&
|
|
|
|
!(recurse_follow == 'P' || (recurse_follow == 'H' && depth > 0))))
|
2011-06-04 09:30:54 -04:00
|
|
|
return;
|
2014-06-30 10:58:00 -04:00
|
|
|
|
|
|
|
if (!(dp = opendir(path)))
|
2011-06-04 09:30:54 -04:00
|
|
|
eprintf("opendir %s:", path);
|
|
|
|
|
2014-06-30 10:58:00 -04:00
|
|
|
while ((d = readdir(dp))) {
|
2015-03-02 15:43:56 -05:00
|
|
|
if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
|
2014-01-30 07:37:35 -05:00
|
|
|
continue;
|
2015-03-12 08:22:37 -04:00
|
|
|
if (strlcpy(subpath, path, PATH_MAX) >= PATH_MAX)
|
|
|
|
eprintf("strlcpy: path too long\n");
|
|
|
|
if (path[strlen(path) - 1] != '/' && strlcat(subpath, "/", PATH_MAX) >= PATH_MAX)
|
|
|
|
eprintf("strlcat: path too long\n");
|
|
|
|
if (strlcat(subpath, d->d_name, PATH_MAX) >= PATH_MAX)
|
|
|
|
eprintf("strlcat: path too long\n");
|
|
|
|
if (recurse_samedev && lstat(subpath, &dst) < 0) {
|
2015-03-11 18:21:52 -04:00
|
|
|
if (errno != ENOENT)
|
2015-03-12 08:22:37 -04:00
|
|
|
weprintf("stat %s:", subpath);
|
2015-03-11 18:21:52 -04:00
|
|
|
} else if (!(recurse_samedev && dst.st_dev != lst.st_dev))
|
2015-03-12 08:22:37 -04:00
|
|
|
fn(subpath, depth + 1, data);
|
2013-03-05 15:46:48 -05:00
|
|
|
}
|
2011-05-24 19:24:33 -04:00
|
|
|
|
|
|
|
closedir(dp);
|
|
|
|
}
|