93fd817536
It has become a common idiom in sbase to check strlcat() and strlcpy() using if (strl{cat, cpy}(dst, src, siz) >= siz) eprintf("path too long\n"); However, this was not carried out consistently and to this very day, some tools employed unchecked calls to these functions, effectively allowing silent truncations to happen, which in turn may lead to security issues. To finally put an end to this, the e*-functions detect truncation automatically and the caller can lean back and enjoy coding without trouble. :)
87 lines
1.8 KiB
C
87 lines
1.8 KiB
C
/* See LICENSE file for copyright and license details. */
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "../fs.h"
|
|
#include "../util.h"
|
|
|
|
int recurse_status = 0;
|
|
|
|
void
|
|
recurse(const char *path, void *data, struct recursor *r)
|
|
{
|
|
struct dirent *d;
|
|
struct history *new, *h;
|
|
struct stat st, dst;
|
|
DIR *dp;
|
|
int (*statf)(const char *, struct stat *);
|
|
char subpath[PATH_MAX], *statf_name;
|
|
|
|
if (r->follow == 'P' || (r->follow == 'H' && r->depth)) {
|
|
statf_name = "lstat";
|
|
statf = lstat;
|
|
} else {
|
|
statf_name = "stat";
|
|
statf = stat;
|
|
}
|
|
|
|
if (statf(path, &st) < 0) {
|
|
if (errno != ENOENT) {
|
|
weprintf("%s %s:", statf_name, path);
|
|
recurse_status = 1;
|
|
}
|
|
return;
|
|
}
|
|
if (!S_ISDIR(st.st_mode))
|
|
return;
|
|
|
|
new = emalloc(sizeof(struct history));
|
|
|
|
new->prev = r->hist;
|
|
r->hist = new;
|
|
new->dev = st.st_dev;
|
|
new->ino = st.st_ino;
|
|
|
|
for (h = new->prev; h; h = h->prev)
|
|
if (h->dev == st.st_dev && h->ino == st.st_ino)
|
|
return;
|
|
|
|
if (!(dp = opendir(path))) {
|
|
weprintf("opendir %s:", path);
|
|
recurse_status = 1;
|
|
return;
|
|
}
|
|
|
|
while ((d = readdir(dp))) {
|
|
if (r->follow == 'H') {
|
|
statf_name = "lstat";
|
|
statf = lstat;
|
|
}
|
|
if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
|
|
continue;
|
|
estrlcpy(subpath, path, sizeof(subpath));
|
|
if (path[strlen(path) - 1] != '/')
|
|
estrlcat(subpath, "/", sizeof(subpath));
|
|
estrlcat(subpath, d->d_name, sizeof(subpath));
|
|
if ((r->flags & SAMEDEV) && statf(subpath, &dst) < 0) {
|
|
if (errno != ENOENT) {
|
|
weprintf("%s %s:", statf_name, subpath);
|
|
recurse_status = 1;
|
|
}
|
|
} else if (!((r->flags & SAMEDEV) && dst.st_dev != st.st_dev)) {
|
|
r->depth++;
|
|
(r->fn)(subpath, data, r);
|
|
r->depth--;
|
|
}
|
|
}
|
|
|
|
closedir(dp);
|
|
}
|