]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/rm-rf.c
Merge pull request #12441 from ssahani/bridge-fdb
[thirdparty/systemd.git] / src / basic / rm-rf.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c6878637 2
11c3a366
TA
3#include <errno.h>
4#include <fcntl.h>
5#include <stdbool.h>
6#include <stddef.h>
7#include <sys/stat.h>
8#include <sys/statfs.h>
9#include <unistd.h>
10
265e9be7 11#include "alloc-util.h"
d9e2daaf 12#include "btrfs-util.h"
f0bef277 13#include "cgroup-util.h"
8fb3f009 14#include "dirent-util.h"
3ffd4af2 15#include "fd-util.h"
93cc7779
TA
16#include "log.h"
17#include "macro.h"
049af8ad 18#include "mountpoint-util.h"
07630cea 19#include "path-util.h"
3ffd4af2 20#include "rm-rf.h"
8fcde012 21#include "stat-util.h"
07630cea 22#include "string-util.h"
c6878637 23
f0bef277
EV
24static bool is_physical_fs(const struct statfs *sfs) {
25 return !is_temporary_fs(sfs) && !is_cgroup_fs(sfs);
26}
27
c6878637
LP
28int rm_rf_children(int fd, RemoveFlags flags, struct stat *root_dev) {
29 _cleanup_closedir_ DIR *d = NULL;
8fb3f009 30 struct dirent *de;
c6878637 31 int ret = 0, r;
f0bef277 32 struct statfs sfs;
c6878637
LP
33
34 assert(fd >= 0);
35
c0ba6b92
LP
36 /* This returns the first error we run into, but nevertheless tries to go on. This closes the passed
37 * fd, in all cases, including on failure.. */
c6878637
LP
38
39 if (!(flags & REMOVE_PHYSICAL)) {
40
f0bef277 41 r = fstatfs(fd, &sfs);
c6878637
LP
42 if (r < 0) {
43 safe_close(fd);
f0bef277 44 return -errno;
c6878637
LP
45 }
46
f0bef277 47 if (is_physical_fs(&sfs)) {
265e9be7
ZJS
48 /* We refuse to clean physical file systems with this call,
49 * unless explicitly requested. This is extra paranoia just
50 * to be sure we never ever remove non-state data. */
51 _cleanup_free_ char *path = NULL;
52
53 (void) fd_get_path(fd, &path);
54 log_error("Attempted to remove disk file system under \"%s\", and we can't allow that.",
55 strna(path));
c6878637 56
c6878637
LP
57 safe_close(fd);
58 return -EPERM;
59 }
60 }
61
62 d = fdopendir(fd);
63 if (!d) {
64 safe_close(fd);
65 return errno == ENOENT ? 0 : -errno;
66 }
67
8fb3f009 68 FOREACH_DIRENT_ALL(de, d, return -errno) {
c6878637
LP
69 bool is_dir;
70 struct stat st;
71
49bfc877 72 if (dot_or_dot_dot(de->d_name))
c6878637
LP
73 continue;
74
9e9b663a
LP
75 if (de->d_type == DT_UNKNOWN ||
76 (de->d_type == DT_DIR && (root_dev || (flags & REMOVE_SUBVOLUME)))) {
c6878637
LP
77 if (fstatat(fd, de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) {
78 if (ret == 0 && errno != ENOENT)
79 ret = -errno;
80 continue;
81 }
82
83 is_dir = S_ISDIR(st.st_mode);
84 } else
85 is_dir = de->d_type == DT_DIR;
86
87 if (is_dir) {
50b6eec1 88 _cleanup_close_ int subdir_fd = -1;
c6878637 89
f25afeb6 90 /* if root_dev is set, remove subdirectories only if device is same */
c6878637
LP
91 if (root_dev && st.st_dev != root_dev->st_dev)
92 continue;
93
94 subdir_fd = openat(fd, de->d_name, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
95 if (subdir_fd < 0) {
96 if (ret == 0 && errno != ENOENT)
97 ret = -errno;
98 continue;
99 }
100
f25afeb6 101 /* Stop at mount points */
5d409034 102 r = fd_is_mount_point(fd, de->d_name, 0);
f25afeb6
LP
103 if (r < 0) {
104 if (ret == 0 && r != -ENOENT)
105 ret = r;
106
f25afeb6
LP
107 continue;
108 }
50b6eec1 109 if (r > 0)
f25afeb6 110 continue;
f25afeb6 111
9e9b663a 112 if ((flags & REMOVE_SUBVOLUME) && st.st_ino == 256) {
9e9b663a
LP
113
114 /* This could be a subvolume, try to remove it */
115
5bcd08db 116 r = btrfs_subvol_remove_fd(fd, de->d_name, BTRFS_REMOVE_RECURSIVE|BTRFS_REMOVE_QUOTA);
d9e2daaf 117 if (r < 0) {
4c701096 118 if (!IN_SET(r, -ENOTTY, -EINVAL)) {
9e9b663a 119 if (ret == 0)
d9e2daaf 120 ret = r;
9e9b663a 121
9e9b663a
LP
122 continue;
123 }
124
50b6eec1
LP
125 /* ENOTTY, then it wasn't a btrfs subvolume, continue below. */
126 } else
9e9b663a 127 /* It was a subvolume, continue. */
9e9b663a 128 continue;
9e9b663a
LP
129 }
130
50b6eec1 131 /* We pass REMOVE_PHYSICAL here, to avoid doing the fstatfs() to check the file
c6878637 132 * system type again for each directory */
50b6eec1 133 r = rm_rf_children(TAKE_FD(subdir_fd), flags | REMOVE_PHYSICAL, root_dev);
c6878637
LP
134 if (r < 0 && ret == 0)
135 ret = r;
136
137 if (unlinkat(fd, de->d_name, AT_REMOVEDIR) < 0) {
138 if (ret == 0 && errno != ENOENT)
139 ret = -errno;
140 }
141
142 } else if (!(flags & REMOVE_ONLY_DIRECTORIES)) {
143
144 if (unlinkat(fd, de->d_name, 0) < 0) {
145 if (ret == 0 && errno != ENOENT)
146 ret = -errno;
147 }
148 }
149 }
8fb3f009 150 return ret;
c6878637
LP
151}
152
153int rm_rf(const char *path, RemoveFlags flags) {
154 int fd, r;
155 struct statfs s;
156
157 assert(path);
158
c2f64c07
LP
159 /* For now, don't support dropping subvols when also only dropping directories, since we can't do
160 * this race-freely. */
161 if (FLAGS_SET(flags, REMOVE_ONLY_DIRECTORIES|REMOVE_SUBVOLUME))
162 return -EINVAL;
163
c6878637
LP
164 /* We refuse to clean the root file system with this
165 * call. This is extra paranoia to never cause a really
166 * seriously broken system. */
baaa35ad
ZJS
167 if (path_equal_or_files_same(path, "/", AT_SYMLINK_NOFOLLOW))
168 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
169 "Attempted to remove entire root file system (\"%s\"), and we can't allow that.",
170 path);
c6878637 171
d94a24ca 172 if (FLAGS_SET(flags, REMOVE_SUBVOLUME | REMOVE_ROOT | REMOVE_PHYSICAL)) {
d9e2daaf 173 /* Try to remove as subvolume first */
5bcd08db 174 r = btrfs_subvol_remove(path, BTRFS_REMOVE_RECURSIVE|BTRFS_REMOVE_QUOTA);
d9e2daaf
LP
175 if (r >= 0)
176 return r;
177
4c701096 178 if (!IN_SET(r, -ENOTTY, -EINVAL, -ENOTDIR))
d9e2daaf
LP
179 return r;
180
181 /* Not btrfs or not a subvolume */
182 }
183
c6878637
LP
184 fd = open(path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
185 if (fd < 0) {
ec2ce0c5 186 if (!IN_SET(errno, ENOTDIR, ELOOP))
c6878637
LP
187 return -errno;
188
189 if (!(flags & REMOVE_PHYSICAL)) {
190 if (statfs(path, &s) < 0)
191 return -errno;
192
baaa35ad
ZJS
193 if (is_physical_fs(&s))
194 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
195 "Attempted to remove files from a disk file system under \"%s\", refusing.",
196 path);
c6878637
LP
197 }
198
199 if ((flags & REMOVE_ROOT) && !(flags & REMOVE_ONLY_DIRECTORIES))
200 if (unlink(path) < 0 && errno != ENOENT)
201 return -errno;
202
203 return 0;
204 }
205
206 r = rm_rf_children(fd, flags, NULL);
207
208 if (flags & REMOVE_ROOT) {
d9e2daaf
LP
209 if (rmdir(path) < 0) {
210 if (r == 0 && errno != ENOENT)
c6878637
LP
211 r = -errno;
212 }
213 }
214
215 return r;
216}