2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2006-04-12 13:05:12 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
#undef DEBUG_RECURS_ACTION
|
|
|
|
|
|
|
|
/*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Walk down all the directories under the specified
|
2001-03-17 04:17:14 +05:30
|
|
|
* location, and do something (something specified
|
|
|
|
* by the fileAction and dirAction function pointers).
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Unfortunately, while nftw(3) could replace this and reduce
|
|
|
|
* code size a bit, nftw() wasn't supported before GNU libc 2.1,
|
2001-03-17 04:17:14 +05:30
|
|
|
* and so isn't sufficiently portable to take over since glibc2.1
|
|
|
|
* is so stinking huge.
|
|
|
|
*/
|
2006-10-27 23:29:14 +05:30
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static int FAST_FUNC true_action(const char *fileName UNUSED_PARAM,
|
|
|
|
struct stat *statbuf UNUSED_PARAM,
|
|
|
|
void* userData UNUSED_PARAM,
|
|
|
|
int depth UNUSED_PARAM)
|
2006-10-27 23:29:14 +05:30
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-10-30 00:37:01 +05:30
|
|
|
/* fileAction return value of 0 on any file in directory will make
|
|
|
|
* recursive_action() return 0, but it doesn't stop directory traversal
|
|
|
|
* (fileAction/dirAction will be called on each file).
|
|
|
|
*
|
2008-06-26 08:56:57 +05:30
|
|
|
* If !ACTION_RECURSE, dirAction is called on the directory and its
|
|
|
|
* return value is returned from recursive_action(). No recursion.
|
|
|
|
*
|
|
|
|
* If ACTION_RECURSE, recursive_action() is called on each directory.
|
|
|
|
* If any one of these calls returns 0, current recursive_action() returns 0.
|
|
|
|
*
|
|
|
|
* If ACTION_DEPTHFIRST, dirAction is called after recurse.
|
|
|
|
* If it returns 0, the warning is printed and recursive_action() returns 0.
|
|
|
|
*
|
|
|
|
* If !ACTION_DEPTHFIRST, dirAction is called before we recurse.
|
|
|
|
* Return value of 0 (FALSE) or 2 (SKIP) prevents recursion
|
|
|
|
* into that directory, instead recursive_action() returns 0 (if FALSE)
|
|
|
|
* or 1 (if SKIP)
|
2006-10-30 00:37:01 +05:30
|
|
|
*
|
2006-10-28 05:12:25 +05:30
|
|
|
* followLinks=0/1 differs mainly in handling of links to dirs.
|
|
|
|
* 0: lstat(statbuf). Calls fileAction on link name even if points to dir.
|
|
|
|
* 1: stat(statbuf). Calls dirAction and optionally recurse on link to dir.
|
|
|
|
*/
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC recursive_action(const char *fileName,
|
2007-03-29 16:00:50 +05:30
|
|
|
unsigned flags,
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC (*fileAction)(const char *fileName, struct stat *statbuf, void* userData, int depth),
|
|
|
|
int FAST_FUNC (*dirAction)(const char *fileName, struct stat *statbuf, void* userData, int depth),
|
2006-10-28 05:12:25 +05:30
|
|
|
void* userData,
|
2007-07-05 05:42:55 +05:30
|
|
|
unsigned depth)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
|
|
|
struct stat statbuf;
|
2006-10-27 23:29:14 +05:30
|
|
|
int status;
|
|
|
|
DIR *dir;
|
2001-03-17 04:17:14 +05:30
|
|
|
struct dirent *next;
|
|
|
|
|
2006-10-27 23:29:14 +05:30
|
|
|
if (!fileAction) fileAction = true_action;
|
|
|
|
if (!dirAction) dirAction = true_action;
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2007-07-05 05:42:55 +05:30
|
|
|
status = ACTION_FOLLOWLINKS; /* hijack a variable for bitmask... */
|
2008-06-26 08:56:57 +05:30
|
|
|
if (!depth)
|
|
|
|
status = ACTION_FOLLOWLINKS | ACTION_FOLLOWLINKS_L0;
|
2007-07-05 05:42:55 +05:30
|
|
|
status = ((flags & status) ? stat : lstat)(fileName, &statbuf);
|
2001-03-17 04:17:14 +05:30
|
|
|
if (status < 0) {
|
|
|
|
#ifdef DEBUG_RECURS_ACTION
|
2007-07-05 05:42:55 +05:30
|
|
|
bb_error_msg("status=%d flags=%x", status, flags);
|
2001-03-17 04:17:14 +05:30
|
|
|
#endif
|
2007-03-29 16:00:50 +05:30
|
|
|
goto done_nak_warn;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
|
2006-10-28 05:12:25 +05:30
|
|
|
/* If S_ISLNK(m), then we know that !S_ISDIR(m).
|
|
|
|
* Then we can skip checking first part: if it is true, then
|
|
|
|
* (!dir) is also true! */
|
2007-04-08 16:22:28 +05:30
|
|
|
if ( /* (!(flags & ACTION_FOLLOWLINKS) && S_ISLNK(statbuf.st_mode)) || */
|
2006-10-28 05:12:25 +05:30
|
|
|
!S_ISDIR(statbuf.st_mode)
|
|
|
|
) {
|
|
|
|
return fileAction(fileName, &statbuf, userData, depth);
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
|
2006-10-28 05:12:25 +05:30
|
|
|
/* It's a directory (or a link to one, and followLinks is set) */
|
|
|
|
|
2007-04-08 16:22:28 +05:30
|
|
|
if (!(flags & ACTION_RECURSE)) {
|
2006-10-28 05:12:25 +05:30
|
|
|
return dirAction(fileName, &statbuf, userData, depth);
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
|
2007-04-08 16:22:28 +05:30
|
|
|
if (!(flags & ACTION_DEPTHFIRST)) {
|
2006-10-28 05:12:25 +05:30
|
|
|
status = dirAction(fileName, &statbuf, userData, depth);
|
2007-07-05 05:42:55 +05:30
|
|
|
if (!status)
|
2007-03-29 16:00:50 +05:30
|
|
|
goto done_nak_warn;
|
2006-10-27 23:29:14 +05:30
|
|
|
if (status == SKIP)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
dir = opendir(fileName);
|
|
|
|
if (!dir) {
|
2006-12-13 05:16:31 +05:30
|
|
|
/* findutils-4.1.20 reports this */
|
|
|
|
/* (i.e. it doesn't silently return with exit code 1) */
|
|
|
|
/* To trigger: "find -exec rm -rf {} \;" */
|
2007-03-29 16:00:50 +05:30
|
|
|
goto done_nak_warn;
|
2006-10-27 23:29:14 +05:30
|
|
|
}
|
|
|
|
status = TRUE;
|
|
|
|
while ((next = readdir(dir)) != NULL) {
|
|
|
|
char *nextFile;
|
|
|
|
|
|
|
|
nextFile = concat_subpath_file(fileName, next->d_name);
|
|
|
|
if (nextFile == NULL)
|
|
|
|
continue;
|
2008-06-26 08:56:57 +05:30
|
|
|
/* process every file (NB: ACTION_RECURSE is set in flags) */
|
2008-07-04 15:59:30 +05:30
|
|
|
if (!recursive_action(nextFile, flags, fileAction, dirAction,
|
|
|
|
userData, depth + 1))
|
|
|
|
status = FALSE;
|
|
|
|
// s = recursive_action(nextFile, flags, fileAction, dirAction,
|
|
|
|
// userData, depth + 1);
|
2006-10-27 23:29:14 +05:30
|
|
|
free(nextFile);
|
2008-07-04 15:55:44 +05:30
|
|
|
//#define RECURSE_RESULT_ABORT 3
|
|
|
|
// if (s == RECURSE_RESULT_ABORT) {
|
|
|
|
// closedir(dir);
|
|
|
|
// return s;
|
|
|
|
// }
|
|
|
|
// if (s == FALSE)
|
|
|
|
// status = FALSE;
|
2006-10-27 23:29:14 +05:30
|
|
|
}
|
|
|
|
closedir(dir);
|
2007-07-05 05:42:55 +05:30
|
|
|
|
|
|
|
if (flags & ACTION_DEPTHFIRST) {
|
|
|
|
if (!dirAction(fileName, &statbuf, userData, depth))
|
2007-03-29 16:00:50 +05:30
|
|
|
goto done_nak_warn;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
2006-10-27 23:29:14 +05:30
|
|
|
|
2008-06-26 08:56:57 +05:30
|
|
|
return status;
|
2007-07-05 05:42:55 +05:30
|
|
|
|
|
|
|
done_nak_warn:
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg(fileName);
|
2007-03-29 16:00:50 +05:30
|
|
|
return FALSE;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|