[hackers] [sbase] Properly handle recursion in recurse() || FRIGN
commit e14d9412f8397f5d27914386210f50a320e86fac
Author: FRIGN <dev_AT_frign.de>
Date: Sat Apr 18 21:24:17 2015 +0200
Properly handle recursion in recurse()
The restructuring of recurse() in the last few weeks actually broke
the recursion-flags in different tools.
As a long-term goal, the recursor should have a field "maxdepth"
which should be "1" for the non-Rflag-case. "0" stands for unlimited.
diff --git a/chgrp.c b/chgrp.c
index 8cd4c60..28962e5 100644
--- a/chgrp.c
+++ b/chgrp.c
_AT_@ -9,7 +9,6 @@
#include "util.h"
static int hflag = 0;
-static int Rflag = 0;
static gid_t gid = -1;
static int ret = 0;
_AT_@ -30,7 +29,7 @@ chgrp(const char *path, struct stat *st, void *data, struct recursor *r)
if (st && chownf(path, st->st_uid, gid) < 0) {
weprintf("%s %s:", chownf_name, path);
ret = 1;
- } else if (Rflag && st && S_ISDIR(st->st_mode)) {
+ } else if (!(r->flags & NODIRS) && st && S_ISDIR(st->st_mode)) {
recurse(path, NULL, r);
}
}
_AT_@ -45,14 +44,14 @@ int
main(int argc, char *argv[])
{
struct group *gr;
- struct recursor r = { .fn = chgrp, .hist = NULL, .depth = 0, .follow = 'P', .flags = 0 };
+ struct recursor r = { .fn = chgrp, .hist = NULL, .depth = 0, .follow = 'P', .flags = NODIRS };
ARGBEGIN {
case 'h':
hflag = 1;
break;
case 'R':
- Rflag = 1;
+ r.flags &= ~NODIRS;
break;
case 'H':
case 'L':
diff --git a/chmod.c b/chmod.c
index 991a0b3..1a6da5e 100644
--- a/chmod.c
+++ b/chmod.c
_AT_@ -4,7 +4,6 @@
#include "fs.h"
#include "util.h"
-static int Rflag = 0;
static char *modestr = "";
static mode_t mask = 0;
static int ret = 0;
_AT_@ -18,7 +17,7 @@ chmodr(const char *path, struct stat *st, void *data, struct recursor *r)
if (chmod(path, m) < 0) {
weprintf("chmod %s:", path);
ret = 1;
- } else if (Rflag && st && S_ISDIR(st->st_mode)) {
+ } else if (!(r->flags & NODIRS) && st && S_ISDIR(st->st_mode)) {
recurse(path, NULL, r);
}
}
_AT_@ -32,7 +31,7 @@ usage(void)
int
main(int argc, char *argv[])
{
- struct recursor r = { .fn = chmodr, .hist = NULL, .depth = 0, .follow = 'P', .flags = 0};
+ struct recursor r = { .fn = chmodr, .hist = NULL, .depth = 0, .follow = 'P', .flags = NODIRS};
size_t i;
argv0 = argv[0], argc--, argv++;
_AT_@ -43,7 +42,7 @@ main(int argc, char *argv[])
for (i = 1; (*argv)[i]; i++) {
switch ((*argv)[i]) {
case 'R':
- Rflag = 1;
+ r.flags &= ~NODIRS;
break;
case 'H':
case 'L':
diff --git a/chown.c b/chown.c
index 5bc1e99..2f7b536 100644
--- a/chown.c
+++ b/chown.c
_AT_@ -11,7 +11,6 @@
#include "util.h"
static int hflag = 0;
-static int Rflag = 0;
static uid_t uid = -1;
static gid_t gid = -1;
static int ret = 0;
_AT_@ -33,7 +32,7 @@ chownpwgr(const char *path, struct stat *st, void *data, struct recursor *r)
if (chownf(path, uid, gid) < 0) {
weprintf("%s %s:", chownf_name, path);
ret = 1;
- } else if (Rflag && st && S_ISDIR(st->st_mode)) {
+ } else if (!(r->flags & NODIRS) && st && S_ISDIR(st->st_mode)) {
recurse(path, NULL, r);
}
}
_AT_@ -49,7 +48,7 @@ main(int argc, char *argv[])
{
struct group *gr;
struct passwd *pw;
- struct recursor r = { .fn = chownpwgr, .hist = NULL, .depth = 0, .follow = 'P', .flags = 0};
+ struct recursor r = { .fn = chownpwgr, .hist = NULL, .depth = 0, .follow = 'P', .flags = NODIRS};
char *owner, *group;
ARGBEGIN {
_AT_@ -58,7 +57,7 @@ main(int argc, char *argv[])
break;
case 'r':
case 'R':
- Rflag = 1;
+ r.flags &= ~NODIRS;
break;
case 'H':
case 'L':
diff --git a/fs.h b/fs.h
index 27ceb52..b6840ed 100644
--- a/fs.h
+++ b/fs.h
_AT_@ -19,6 +19,7 @@ struct recursor {
enum {
SAMEDEV = 1 << 0,
DIRFIRST = 1 << 1,
+ NODIRS = 1 << 2,
};
extern int cp_aflag;
diff --git a/libutil/recurse.c b/libutil/recurse.c
index 8a37c2f..c68d4b6 100644
--- a/libutil/recurse.c
+++ b/libutil/recurse.c
_AT_@ -37,7 +37,7 @@ recurse(const char *path, void *data, struct recursor *r)
recurse_status = 1;
return;
}
- if (!S_ISDIR(st.st_mode)) {
+ if (!S_ISDIR(st.st_mode) || (S_ISDIR(st.st_mode) && (r->flags & NODIRS))) {
(r->fn)(path, &st, data, r);
return;
}
diff --git a/libutil/rm.c b/libutil/rm.c
index 09bf3b9..4cdcb11 100644
--- a/libutil/rm.c
+++ b/libutil/rm.c
_AT_@ -3,22 +3,29 @@
#include <errno.h>
#include <stdio.h>
+#include <unistd.h>
#include "../fs.h"
#include "../util.h"
int rm_fflag = 0;
-int rm_rflag = 0;
int rm_status = 0;
void
rm(const char *path, struct stat *st, void *data, struct recursor *r)
{
- if (rm_rflag && st && S_ISDIR(st->st_mode))
+ if (!(r->flags & NODIRS) && st && S_ISDIR(st->st_mode)) {
recurse(path, NULL, r);
- if (remove(path) < 0) {
+
+ if (rmdir(path) < 0) {
+ if (!rm_fflag)
+ weprintf("rmdir %s:", path);
+ if (!(rm_fflag && errno == ENOENT))
+ rm_status = 1;
+ }
+ } else if (unlink(path) < 0) {
if (!rm_fflag)
- weprintf("remove %s:", path);
+ weprintf("unlink %s:", path);
if (!(rm_fflag && errno == ENOENT))
rm_status = 1;
}
diff --git a/mv.c b/mv.c
index 9d5b77a..6d5d2df 100644
--- a/mv.c
+++ b/mv.c
_AT_@ -19,7 +19,6 @@ mv(const char *s1, const char *s2, int depth)
if (errno == EXDEV) {
cp_aflag = cp_rflag = cp_pflag = 1;
cp_follow = 'P';
- rm_rflag = 1;
cp(s1, s2, depth);
rm(s1, NULL, NULL, &r);
return (mv_status = cp_status || rm_status);
diff --git a/rm.c b/rm.c
index e72abe8..0b418c5 100644
--- a/rm.c
+++ b/rm.c
_AT_@ -11,7 +11,7 @@ usage(void)
int
main(int argc, char *argv[])
{
- struct recursor r = { .fn = rm, .hist = NULL, .depth = 0, .follow = 'P', .flags = 0};
+ struct recursor r = { .fn = rm, .hist = NULL, .depth = 0, .follow = 'P', .flags = NODIRS };
ARGBEGIN {
case 'f':
_AT_@ -19,7 +19,7 @@ main(int argc, char *argv[])
break;
case 'R':
case 'r':
- rm_rflag = 1;
+ r.flags &= ~NODIRS;
break;
default:
usage();
Received on Mon Apr 20 2015 - 12:12:45 CEST
This archive was generated by hypermail 2.3.0
: Mon Apr 20 2015 - 12:24:09 CEST