2011-05-24 23:24:33 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <dirent.h>
|
2015-03-11 22:21:52 +00:00
|
|
|
#include <errno.h>
|
2014-01-30 12:37:35 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
2011-05-24 23:24:33 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-06-04 13:30:54 +00:00
|
|
|
#include <sys/stat.h>
|
2014-01-30 12:37:35 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2013-03-05 20:46:48 +00:00
|
|
|
|
2011-05-24 23:24:33 +00:00
|
|
|
#include "../util.h"
|
|
|
|
|
2015-03-11 22:21:52 +00:00
|
|
|
int recurse_follow = 'P';
|
|
|
|
int recurse_samedev = 0;
|
2015-03-02 20:43:56 +00:00
|
|
|
|
2011-05-24 23:24:33 +00:00
|
|
|
void
|
2015-03-11 22:21:52 +00:00
|
|
|
recurse(const char *path, void (*fn)(const char *, int, void *), int depth, void *data)
|
2011-05-24 23:24:33 +00:00
|
|
|
{
|
|
|
|
struct dirent *d;
|
2015-03-11 22:21:52 +00:00
|
|
|
struct stat lst, st, dst;
|
2011-05-24 23:24:33 +00:00
|
|
|
DIR *dp;
|
2015-03-02 23:11:41 +00:00
|
|
|
size_t len;
|
|
|
|
char *buf;
|
2011-05-24 23:24:33 +00:00
|
|
|
|
2015-03-11 22:21:52 +00: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 20:43:56 +00: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 13:30:54 +00:00
|
|
|
return;
|
2014-06-30 14:58:00 +00:00
|
|
|
|
|
|
|
if (!(dp = opendir(path)))
|
2011-06-04 13:30:54 +00:00
|
|
|
eprintf("opendir %s:", path);
|
|
|
|
|
2015-03-02 23:11:41 +00:00
|
|
|
len = strlen(path);
|
2014-06-30 14:58:00 +00:00
|
|
|
while ((d = readdir(dp))) {
|
2015-03-02 20:43:56 +00:00
|
|
|
if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
|
2014-01-30 12:37:35 +00:00
|
|
|
continue;
|
2015-03-11 22:21:52 +00:00
|
|
|
buf = emalloc(len + (path[len - 1] != '/') + strlen(d->d_name) + 1);
|
|
|
|
sprintf(buf, "%s%s%s", path, (path[len - 1] == '/') ? "" : "/", d->d_name);
|
|
|
|
if (recurse_samedev && lstat(buf, &dst) < 0) {
|
|
|
|
if (errno != ENOENT)
|
|
|
|
weprintf("stat %s:", buf);
|
|
|
|
} else if (!(recurse_samedev && dst.st_dev != lst.st_dev))
|
|
|
|
fn(buf, depth + 1, data);
|
2015-03-02 23:11:41 +00:00
|
|
|
free(buf);
|
2013-03-05 20:46:48 +00:00
|
|
|
}
|
2011-05-24 23:24:33 +00:00
|
|
|
|
|
|
|
closedir(dp);
|
|
|
|
}
|