1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* Copyright (c) 2008-2018 by Andreas Schneider <asn@samba.org>
*
* Adopted from the csync source code
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "replace.h"
#include "system/filesys.h"
#include "system/dir.h"
#include "lib/util/debug.h"
#include "tftw.h"
int tftw(TALLOC_CTX *mem_ctx, const char *fpath, tftw_walker_fn fn, size_t depth, void *userdata)
{
char *filename = NULL;
char *d_name = NULL;
DIR *dh = NULL;
struct dirent *dirent = NULL;
struct stat sb = {0};
int rc = 0;
if (fpath[0] == '\0') {
errno = ENOENT;
goto error;
}
if ((dh = opendir(fpath)) == NULL) {
/* permission denied */
if (errno == EACCES) {
return 0;
} else {
DBG_ERR("opendir failed for: [%s]\n", strerror(errno));
goto error;
}
}
while ((dirent = readdir(dh))) {
int flag;
d_name = dirent->d_name;
if (d_name == NULL) {
goto error;
}
/* skip "." and ".." */
if (d_name[0] == '.' && (d_name[1] == '\0'
|| (d_name[1] == '.' && d_name[2] == '\0'))) {
dirent = NULL;
continue;
}
filename = talloc_asprintf(mem_ctx, "%s/%s", fpath, d_name);
if (filename == NULL) {
goto error;
}
rc = lstat(filename, &sb);
if (rc < 0) {
dirent = NULL;
goto error;
}
switch (sb.st_mode & S_IFMT) {
case S_IFLNK:
flag = TFTW_FLAG_SLINK;
break;
case S_IFDIR:
flag = TFTW_FLAG_DIR;
break;
case S_IFBLK:
case S_IFCHR:
case S_IFSOCK:
case S_IFIFO:
flag = TFTW_FLAG_SPEC;
break;
default:
flag = TFTW_FLAG_FILE;
break;
}
DBG_INFO("walk: [%s]\n", filename);
/* Call walker function for each file */
rc = fn(mem_ctx, filename, &sb, flag, userdata);
if (rc < 0) {
DBG_ERR("provided callback fn() failed: [%s]\n",
strerror(errno));
closedir(dh);
goto done;
}
if (flag == TFTW_FLAG_DIR && depth) {
rc = tftw(mem_ctx, filename, fn, depth - 1, userdata);
if (rc < 0) {
closedir(dh);
goto done;
}
}
TALLOC_FREE(filename);
dirent = NULL;
}
closedir(dh);
done:
TALLOC_FREE(filename);
return rc;
error:
if (dh != NULL) {
closedir(dh);
}
TALLOC_FREE(filename);
return -1;
}
|