-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathrm-rf.c
237 lines (181 loc) · 7.62 KB
/
rm-rf.c
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <fcntl.h>
#include <linux/fs.h>
#include <linux/magic.h>
#include <stdbool.h>
#include <stddef.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/statfs.h>
#include <sys/types.h>
#include <unistd.h>
#include "chattr.h"
#include "rm-rf.h"
#include "util.h"
static int unlinkat_immutable(int dir_fd, const char *name, int flags, RemoveFlags rflags) {
_cleanup_(safe_closep) int fd = -1;
int r;
if (unlinkat(dir_fd, name, flags) >= 0)
return 0;
if (errno != EPERM)
return -errno;
if ((rflags & REMOVE_UNDO_IMMUTABLE) == 0)
return -EPERM;
fd = openat(dir_fd, name, O_CLOEXEC|O_RDONLY|O_NOFOLLOW|O_NOCTTY|(flags & AT_REMOVEDIR ? O_DIRECTORY : 0));
if (fd < 0) {
/* If we can't open the thing because it's a symlink, propagate the original EPERM error. (Except if we are supposed to remove a directory) */
if (errno == ELOOP)
return (flags & AT_REMOVEDIR) == 0 ? -EPERM : -ENOTDIR;
return -errno;
}
if ((flags & AT_REMOVEDIR) == 0) {
struct stat st;
if (fstat(fd, &st) < 0)
return -errno;
if (S_ISDIR(st.st_mode))
/* This is a directory, but AT_REMOVEDIR wasn't set? then report it with the right error */
return -EISDIR;
if (!S_ISREG(st.st_mode))
return -EPERM; /* chattr(1) flags not supported for anything not regular files or directories, propagate the original error */
}
r = mask_attr_fd(fd, 0, FS_IMMUTABLE_FL);
if (r < 0)
return r;
if (r == 0) /* immutable flag isn't set, propagate original error */
return -EPERM;
if (unlinkat(dir_fd, name, flags) < 0)
return -errno;
return 0;
}
int rm_rf_children(int fd, RemoveFlags flags, struct stat *root_dev) {
struct statfs sfs;
struct stat _root_dev;
int ret = 0, r;
DIR *d = NULL;
assert(fd >= 0);
/* This returns the first error we run into, but nevertheless tries to go on. This closes the passed fd, even
* on error */
if (!(flags & REMOVE_PHYSICAL)) {
r = fstatfs(fd, &sfs);
if (r < 0) {
safe_close(fd);
return -errno;
}
if (!is_temporary_fs(&sfs)) {
/* We refuse to clean physical file systems with this call, unless explicitly requested. This
* is extra paranoia just to be sure we never ever remove non-state data */
safe_close(fd);
return -EPERM;
}
}
if (!(flags & REMOVE_SPAN_DEVICES) && !root_dev) {
if (fstat(fd, &_root_dev) < 0) {
safe_close(fd);
return -errno;
}
root_dev = &_root_dev;
}
d = fdopendir(fd);
if (!d) {
safe_close(fd);
return errno == ENOENT ? 0 : -errno;
}
for (;;) {
struct dirent *de;
struct stat st;
bool is_dir;
errno = 0;
de = readdir(d);
if (!de) {
if (errno != 0) {
ret = -errno;
break;
}
break;
}
if (dot_or_dot_dot(de->d_name))
continue;
if (de->d_type == DT_UNKNOWN || (de->d_type == DT_DIR && root_dev)) {
if (fstatat(fd, de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) {
if (ret == 0 && errno != ENOENT)
ret = -errno;
continue;
}
is_dir = S_ISDIR(st.st_mode);
} else
is_dir = de->d_type == DT_DIR;
if (is_dir) {
int subdir_fd;
/* if root_dev is set, remove subdirectories only if device is same */
if (root_dev && st.st_dev != root_dev->st_dev)
continue;
subdir_fd = openat(fd, de->d_name, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
if (subdir_fd < 0) {
if (ret == 0 && errno != ENOENT)
ret = -errno;
continue;
}
/* We pass REMOVE_PHYSICAL here, to avoid doing the fstatfs() to check the file system type
* again for each directory */
r = rm_rf_children(subdir_fd, flags | REMOVE_PHYSICAL, root_dev);
if (r < 0 && ret == 0)
ret = r;
r = unlinkat_immutable(fd, de->d_name, AT_REMOVEDIR, flags);
if (r < 0) {
if (ret == 0 && r != -ENOENT)
ret = r;
}
} else if (!(flags & REMOVE_ONLY_DIRECTORIES)) {
r = unlinkat_immutable(fd, de->d_name, 0, flags);
if (r < 0) {
if (ret == 0 && r != -ENOENT)
ret = r;
}
}
}
closedir(d);
return ret;
}
int rm_rf_at(int dir_fd, const char *path, RemoveFlags flags) {
struct statfs s;
int fd, r, k;
assert(dir_fd == AT_FDCWD || dir_fd >= 0);
assert(path);
/* We refuse to clean the root file system with this call. This is extra paranoia to never cause a really
* seriously broken system. */
if (streq(path, "/"))
return -EPERM;
fd = openat(dir_fd, path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
if (fd < 0) {
if (!IN_SET(errno, ENOTDIR, ELOOP))
return -errno;
/* At this point we know it's not a directory. */
if (!(flags & REMOVE_PHYSICAL)) {
fd = openat(dir_fd, path, O_PATH|O_CLOEXEC|O_NOFOLLOW);
if (fd < 0)
return -errno;
r = fstatfs(fd, &s);
safe_close(fd);
if (r < 0)
return -errno;
if (!is_temporary_fs(&s))
return -EPERM;
}
if ((flags & REMOVE_ROOT) && !(flags & REMOVE_ONLY_DIRECTORIES)) {
r = unlinkat_immutable(dir_fd, path, 0, flags);
if (r < 0 && r != -ENOENT)
return r;
}
return 0;
}
r = rm_rf_children(fd, flags, NULL);
if (flags & REMOVE_ROOT) {
k = unlinkat_immutable(dir_fd, path, AT_REMOVEDIR, flags);
if (k < 0 && k != -ENOENT && r >= 0)
r = k;
}
return r;
}
int rm_rf(const char *path, RemoveFlags flags) {
return rm_rf_at(AT_FDCWD, path, flags);
}