1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2011 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 #include <sys/types.h>
25 #include <sys/statvfs.h>
29 #include <attr/xattr.h>
32 #include "journal-def.h"
33 #include "journal-file.h"
34 #include "journal-vacuum.h"
49 static int vacuum_compare(const void *_a, const void *_b) {
50 const struct vacuum_info *a, *b;
55 if (a->have_seqnum && b->have_seqnum &&
56 sd_id128_equal(a->seqnum_id, b->seqnum_id)) {
57 if (a->seqnum < b->seqnum)
59 else if (a->seqnum > b->seqnum)
65 if (a->realtime < b->realtime)
67 else if (a->realtime > b->realtime)
69 else if (a->have_seqnum && b->have_seqnum)
70 return memcmp(&a->seqnum_id, &b->seqnum_id, 16);
72 return strcmp(a->filename, b->filename);
75 static void patch_realtime(
78 const struct stat *st,
79 unsigned long long *realtime) {
85 _cleanup_free_ const char *path = NULL;
88 /* The timestamp was determined by the file name, but let's
89 * see if the file might actually be older than the file name
97 x = timespec_load(&st->st_ctim);
98 if (x > 0 && x != (usec_t) -1 && x < *realtime)
101 x = timespec_load(&st->st_atim);
102 if (x > 0 && x != (usec_t) -1 && x < *realtime)
105 x = timespec_load(&st->st_mtim);
106 if (x > 0 && x != (usec_t) -1 && x < *realtime)
110 /* Let's read the original creation time, if possible. Ideally
111 * we'd just query the creation time the FS might provide, but
112 * unfortunately there's currently no sane API to query
113 * it. Hence let's implement this manually... */
115 /* Unfortunately there is is not fgetxattrat(), so we need to
116 * go via path here. :-( */
118 path = strjoin(dir, "/", fn, NULL);
122 if (getxattr(path, "user.crtime_usec", &crtime, sizeof(crtime)) == sizeof(crtime)) {
123 crtime = le64toh(crtime);
125 if (crtime > 0 && crtime != (uint64_t) -1 && crtime < *realtime)
131 static int journal_file_empty(int dir_fd, const char *name) {
134 _cleanup_close_ int fd;
136 fd = openat(dir_fd, name, O_RDONLY|O_CLOEXEC|O_NOFOLLOW|O_NONBLOCK);
140 if (lseek(fd, offsetof(Header, n_entries), SEEK_SET) < 0)
143 r = read(fd, &n_entries, sizeof(n_entries));
144 if (r != sizeof(n_entries))
145 return r == 0 ? -EINVAL : -errno;
147 return le64toh(n_entries) == 0;
150 int journal_directory_vacuum(
151 const char *directory,
154 usec_t max_retention_usec,
155 usec_t *oldest_usec) {
157 _cleanup_closedir_ DIR *d = NULL;
159 struct vacuum_info *list = NULL;
160 unsigned n_list = 0, i;
161 size_t n_allocated = 0;
162 uint64_t sum = 0, freed = 0;
163 usec_t retention_limit = 0;
167 if (max_use <= 0 && min_free <= 0 && max_retention_usec <= 0)
170 if (max_retention_usec > 0) {
171 retention_limit = now(CLOCK_REALTIME);
172 if (retention_limit > max_retention_usec)
173 retention_limit -= max_retention_usec;
175 max_retention_usec = retention_limit = 0;
178 d = opendir(directory);
185 union dirent_storage buf;
189 unsigned long long seqnum = 0, realtime;
190 sd_id128_t seqnum_id;
193 k = readdir_r(d, &buf.de, &de);
202 if (fstatat(dirfd(d), de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0)
205 if (!S_ISREG(st.st_mode))
208 q = strlen(de->d_name);
210 if (endswith(de->d_name, ".journal")) {
212 /* Vacuum archived files */
214 if (q < 1 + 32 + 1 + 16 + 1 + 16 + 8)
217 if (de->d_name[q-8-16-1] != '-' ||
218 de->d_name[q-8-16-1-16-1] != '-' ||
219 de->d_name[q-8-16-1-16-1-32-1] != '@')
222 p = strdup(de->d_name);
228 de->d_name[q-8-16-1-16-1] = 0;
229 if (sd_id128_from_string(de->d_name + q-8-16-1-16-1-32, &seqnum_id) < 0) {
234 if (sscanf(de->d_name + q-8-16-1-16, "%16llx-%16llx.journal", &seqnum, &realtime) != 2) {
241 } else if (endswith(de->d_name, ".journal~")) {
242 unsigned long long tmp;
244 /* Vacuum corrupted files */
246 if (q < 1 + 16 + 1 + 16 + 8 + 1)
249 if (de->d_name[q-1-8-16-1] != '-' ||
250 de->d_name[q-1-8-16-1-16-1] != '@')
253 p = strdup(de->d_name);
259 if (sscanf(de->d_name + q-1-8-16-1-16, "%16llx-%16llx.journal~", &realtime, &tmp) != 2) {
266 /* We do not vacuum active files or unknown files! */
269 if (journal_file_empty(dirfd(d), p)) {
270 /* Always vacuum empty non-online files. */
272 uint64_t size = 512UL * (uint64_t) st.st_blocks;
274 if (unlinkat(dirfd(d), p, 0) >= 0) {
275 log_info("Deleted empty journal %s/%s (%"PRIu64" bytes).",
278 } else if (errno != ENOENT)
279 log_warning("Failed to delete %s/%s: %m", directory, p);
286 patch_realtime(directory, p, &st, &realtime);
288 GREEDY_REALLOC(list, n_allocated, n_list + 1);
290 list[n_list].filename = p;
291 list[n_list].usage = 512UL * (uint64_t) st.st_blocks;
292 list[n_list].seqnum = seqnum;
293 list[n_list].realtime = realtime;
294 list[n_list].seqnum_id = seqnum_id;
295 list[n_list].have_seqnum = have_seqnum;
297 sum += list[n_list].usage;
302 qsort_safe(list, n_list, sizeof(struct vacuum_info), vacuum_compare);
304 for (i = 0; i < n_list; i++) {
307 if (fstatvfs(dirfd(d), &ss) < 0) {
312 if ((max_retention_usec <= 0 || list[i].realtime >= retention_limit) &&
313 (max_use <= 0 || sum <= max_use) &&
314 (min_free <= 0 || (uint64_t) ss.f_bavail * (uint64_t) ss.f_bsize >= min_free))
317 if (unlinkat(dirfd(d), list[i].filename, 0) >= 0) {
318 log_debug("Deleted archived journal %s/%s (%"PRIu64" bytes).",
319 directory, list[i].filename, list[i].usage);
320 freed += list[i].usage;
322 if (list[i].usage < sum)
323 sum -= list[i].usage;
327 } else if (errno != ENOENT)
328 log_warning("Failed to delete %s/%s: %m", directory, list[i].filename);
331 if (oldest_usec && i < n_list && (*oldest_usec == 0 || list[i].realtime < *oldest_usec))
332 *oldest_usec = list[i].realtime;
335 for (i = 0; i < n_list; i++)
336 free(list[i].filename);
339 log_info("Vacuuming done, freed %"PRIu64" bytes", freed);