Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 6 | * |
Bernhard Reutner-Fischer | cb44816 | 2006-04-12 07:35:12 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 10 | #include "libbb.h" |
| 11 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 12 | #undef DEBUG_RECURS_ACTION |
| 13 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 14 | /* |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 15 | * Walk down all the directories under the specified |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 16 | * location, and do something (something specified |
| 17 | * by the fileAction and dirAction function pointers). |
| 18 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 19 | * Unfortunately, while nftw(3) could replace this and reduce |
| 20 | * code size a bit, nftw() wasn't supported before GNU libc 2.1, |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 21 | * and so isn't sufficiently portable to take over since glibc2.1 |
| 22 | * is so stinking huge. |
| 23 | */ |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 24 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 25 | static int FAST_FUNC true_action(const char *fileName UNUSED_PARAM, |
| 26 | struct stat *statbuf UNUSED_PARAM, |
| 27 | void* userData UNUSED_PARAM, |
| 28 | int depth UNUSED_PARAM) |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 29 | { |
| 30 | return TRUE; |
| 31 | } |
| 32 | |
Denis Vlasenko | 5d499e1 | 2006-10-29 19:07:01 +0000 | [diff] [blame] | 33 | /* fileAction return value of 0 on any file in directory will make |
| 34 | * recursive_action() return 0, but it doesn't stop directory traversal |
| 35 | * (fileAction/dirAction will be called on each file). |
| 36 | * |
Denis Vlasenko | 2649f21 | 2008-06-26 03:26:57 +0000 | [diff] [blame] | 37 | * If !ACTION_RECURSE, dirAction is called on the directory and its |
| 38 | * return value is returned from recursive_action(). No recursion. |
| 39 | * |
| 40 | * If ACTION_RECURSE, recursive_action() is called on each directory. |
| 41 | * If any one of these calls returns 0, current recursive_action() returns 0. |
| 42 | * |
| 43 | * If ACTION_DEPTHFIRST, dirAction is called after recurse. |
| 44 | * If it returns 0, the warning is printed and recursive_action() returns 0. |
| 45 | * |
| 46 | * If !ACTION_DEPTHFIRST, dirAction is called before we recurse. |
| 47 | * Return value of 0 (FALSE) or 2 (SKIP) prevents recursion |
| 48 | * into that directory, instead recursive_action() returns 0 (if FALSE) |
| 49 | * or 1 (if SKIP) |
Denis Vlasenko | 5d499e1 | 2006-10-29 19:07:01 +0000 | [diff] [blame] | 50 | * |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 51 | * followLinks=0/1 differs mainly in handling of links to dirs. |
| 52 | * 0: lstat(statbuf). Calls fileAction on link name even if points to dir. |
| 53 | * 1: stat(statbuf). Calls dirAction and optionally recurse on link to dir. |
| 54 | */ |
| 55 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 56 | int FAST_FUNC recursive_action(const char *fileName, |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 57 | unsigned flags, |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 58 | int FAST_FUNC (*fileAction)(const char *fileName, struct stat *statbuf, void* userData, int depth), |
| 59 | int FAST_FUNC (*dirAction)(const char *fileName, struct stat *statbuf, void* userData, int depth), |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 60 | void* userData, |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 61 | unsigned depth) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 62 | { |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 63 | struct stat statbuf; |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 64 | int status; |
| 65 | DIR *dir; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 66 | struct dirent *next; |
| 67 | |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 68 | if (!fileAction) fileAction = true_action; |
| 69 | if (!dirAction) dirAction = true_action; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 70 | |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 71 | status = ACTION_FOLLOWLINKS; /* hijack a variable for bitmask... */ |
Denis Vlasenko | 2649f21 | 2008-06-26 03:26:57 +0000 | [diff] [blame] | 72 | if (!depth) |
| 73 | status = ACTION_FOLLOWLINKS | ACTION_FOLLOWLINKS_L0; |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 74 | status = ((flags & status) ? stat : lstat)(fileName, &statbuf); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 75 | if (status < 0) { |
| 76 | #ifdef DEBUG_RECURS_ACTION |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 77 | bb_error_msg("status=%d flags=%x", status, flags); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 78 | #endif |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 79 | goto done_nak_warn; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 82 | /* If S_ISLNK(m), then we know that !S_ISDIR(m). |
| 83 | * Then we can skip checking first part: if it is true, then |
| 84 | * (!dir) is also true! */ |
Denis Vlasenko | bbd695d | 2007-04-08 10:52:28 +0000 | [diff] [blame] | 85 | if ( /* (!(flags & ACTION_FOLLOWLINKS) && S_ISLNK(statbuf.st_mode)) || */ |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 86 | !S_ISDIR(statbuf.st_mode) |
| 87 | ) { |
| 88 | return fileAction(fileName, &statbuf, userData, depth); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 91 | /* It's a directory (or a link to one, and followLinks is set) */ |
| 92 | |
Denis Vlasenko | bbd695d | 2007-04-08 10:52:28 +0000 | [diff] [blame] | 93 | if (!(flags & ACTION_RECURSE)) { |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 94 | return dirAction(fileName, &statbuf, userData, depth); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Denis Vlasenko | bbd695d | 2007-04-08 10:52:28 +0000 | [diff] [blame] | 97 | if (!(flags & ACTION_DEPTHFIRST)) { |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 98 | status = dirAction(fileName, &statbuf, userData, depth); |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 99 | if (!status) |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 100 | goto done_nak_warn; |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 101 | if (status == SKIP) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 102 | return TRUE; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 103 | } |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 104 | |
| 105 | dir = opendir(fileName); |
| 106 | if (!dir) { |
Denis Vlasenko | 5e2db5e | 2006-12-12 23:46:31 +0000 | [diff] [blame] | 107 | /* findutils-4.1.20 reports this */ |
| 108 | /* (i.e. it doesn't silently return with exit code 1) */ |
| 109 | /* To trigger: "find -exec rm -rf {} \;" */ |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 110 | goto done_nak_warn; |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 111 | } |
| 112 | status = TRUE; |
| 113 | while ((next = readdir(dir)) != NULL) { |
| 114 | char *nextFile; |
| 115 | |
| 116 | nextFile = concat_subpath_file(fileName, next->d_name); |
| 117 | if (nextFile == NULL) |
| 118 | continue; |
Denis Vlasenko | 2649f21 | 2008-06-26 03:26:57 +0000 | [diff] [blame] | 119 | /* process every file (NB: ACTION_RECURSE is set in flags) */ |
Denis Vlasenko | a8a3b49 | 2008-07-04 10:29:30 +0000 | [diff] [blame] | 120 | if (!recursive_action(nextFile, flags, fileAction, dirAction, |
| 121 | userData, depth + 1)) |
| 122 | status = FALSE; |
| 123 | // s = recursive_action(nextFile, flags, fileAction, dirAction, |
| 124 | // userData, depth + 1); |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 125 | free(nextFile); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 126 | //#define RECURSE_RESULT_ABORT 3 |
| 127 | // if (s == RECURSE_RESULT_ABORT) { |
| 128 | // closedir(dir); |
| 129 | // return s; |
| 130 | // } |
| 131 | // if (s == FALSE) |
| 132 | // status = FALSE; |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 133 | } |
| 134 | closedir(dir); |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 135 | |
| 136 | if (flags & ACTION_DEPTHFIRST) { |
| 137 | if (!dirAction(fileName, &statbuf, userData, depth)) |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 138 | goto done_nak_warn; |
Denis Vlasenko | 3b8fc1c | 2006-10-27 17:59:14 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Denis Vlasenko | 2649f21 | 2008-06-26 03:26:57 +0000 | [diff] [blame] | 141 | return status; |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 142 | |
| 143 | done_nak_warn: |
Denis Vlasenko | 6e69e42 | 2008-07-27 12:10:07 +0000 | [diff] [blame] | 144 | if (!(flags & ACTION_QUIET)) |
| 145 | bb_simple_perror_msg(fileName); |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 146 | return FALSE; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 147 | } |