-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathgc.c
193 lines (146 loc) · 5.58 KB
/
gc.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
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <linux/fcntl.h>
#include "caindex.h"
#include "gc.h"
#include "set.h"
struct CaChunkCollection {
size_t n_used;
Set *used_chunks;
};
static void chunk_hash_func(const void *p, struct siphash *state) {
const CaChunkID *id = p;
siphash24_compress(id, sizeof(CaChunkID), state);
}
static int chunk_compare_func(const void *a, const void *b) {
return memcmp(a, b, sizeof(CaChunkID));
}
const struct hash_ops chunk_hash_ops = {
.hash = chunk_hash_func,
.compare = chunk_compare_func,
};
CaChunkCollection* ca_chunk_collection_new(void) {
CaChunkCollection *c;
c = new0(CaChunkCollection, 1);
if (!c)
return NULL;
c->used_chunks = set_new(&chunk_hash_ops);
return c;
}
CaChunkCollection* ca_chunk_collection_unref(CaChunkCollection *c) {
if (!c)
return NULL;
set_free_free(c->used_chunks);
return mfree(c);
}
int ca_chunk_collection_usage(CaChunkCollection *c, size_t *ret) {
if (!c)
return -EINVAL;
if (!ret)
return -EINVAL;
*ret = c->n_used;
return 0;
}
int ca_chunk_collection_size(CaChunkCollection *c, size_t *ret) {
if (!c)
return -EINVAL;
if (!ret)
return -EINVAL;
*ret = set_size(c->used_chunks);
return 0;
}
static int gc_add_chunk_id(CaChunkCollection *coll, CaChunkID *id) {
CaChunkID *copy;
int r;
coll->n_used++;
copy = memdup(id, sizeof(CaChunkID));
if (!copy)
return log_oom();
r = set_consume(coll->used_chunks, copy);
if (r == -EEXIST)
return 0;
return r;
}
int ca_chunk_collection_add_index(CaChunkCollection *coll, const char *path) {
_cleanup_(ca_index_unrefp) CaIndex* index = NULL;
int r;
index = ca_index_new_read();
if (index == 0)
return log_oom();
r = ca_index_set_path(index, path);
if (r < 0)
return log_error_errno(r, "Failed to set index path to \"%s\": %m", path);
r = ca_index_open(index);
if (r < 0)
return log_error_errno(r, "Failed to open index \"%s\": %m", path);
for (;;) {
CaChunkID id;
char ids[CA_CHUNK_ID_FORMAT_MAX];
r = ca_index_read_chunk(index, &id, NULL, NULL);
if (r < 0)
assert_se(r >= 0);
if (r < 0)
return log_error_errno(r, "Failed to open index \"%s\": %m", path);
if (r == 0)
break;
r = gc_add_chunk_id(coll, &id);
if (r < 0)
return log_error_errno(r, "Failed to add chunk ID %s: %m",
ca_chunk_id_format(&id, ids));
}
return 0;
}
int ca_gc_cleanup_unused(CaStore *store, CaChunkCollection *coll, unsigned flags) {
_cleanup_free_ char *ids = NULL;
size_t ids_size = 0;
size_t removed_chunks = 0, all_chunks = 0, removed_dirs = 0;
int r;
if (!store || !coll)
return -EINVAL;
_cleanup_(ca_store_iterator_unrefp) CaStoreIterator* iter = ca_store_iterator_new(store);
if (!iter)
return log_oom();
while (true) {
int rootdir_fd, subdir_fd;
const char *subdir, *chunk, *dot;
CaChunkID id;
r = ca_store_iterator_next(iter, &rootdir_fd, &subdir, &subdir_fd, &chunk);
if (r < 0)
return log_error_errno(r, "Failed to iterate over store: %m");
if (r == 0)
break;
all_chunks++;
assert_se(dot = strchr(chunk, '.')); /* we requested .chunk extension before */
if (!GREEDY_REALLOC(ids, ids_size, dot - chunk + 1))
return log_oom();
strncpy(ids, chunk, dot - chunk);
ids[dot - chunk] = '\0';
if (!ca_chunk_id_parse(ids, &id)) {
log_error("Failed to parse chunk ID \"%s\", ignoring.", ids);
continue;
}
if (set_contains(coll->used_chunks, &id))
continue;
if (flags & CA_GC_VERBOSE)
printf("%s chunk %s.\n",
flags & CA_GC_DRY_RUN ? "Would remove" : "Removing",
chunk);
if (!(flags & CA_GC_DRY_RUN)) {
if (unlinkat(subdir_fd, chunk, 0) < 0) {
log_error_errno(errno,
"Failed to unlink chunk file \"%s\", ignoring: %m", chunk);
continue;
}
r = unlinkat(rootdir_fd, subdir, AT_REMOVEDIR);
if (r >= 0)
removed_dirs++;
}
removed_chunks++;
}
if (flags & CA_GC_DRY_RUN)
printf("Would remove %zu chunks, %zu chunks remaining.\n",
removed_chunks, all_chunks - removed_chunks);
else if (flags & CA_GC_VERBOSE)
printf("Removed %zu chunks, %zu directories, %zu chunks remaining.\n",
removed_chunks, removed_dirs, all_chunks - removed_chunks);
return 0;
}