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