blob: a537a806c16e0352e4347a6bd9473457c78377bf [file] [log] [blame]
Junio C Hamano74986462006-04-23 16:52:20 -07001#include "cache.h"
Michael Haggerty697cc8e2014-10-01 12:28:42 +02002#include "lockfile.h"
Junio C Hamano74986462006-04-23 16:52:20 -07003#include "tree.h"
Junio C Hamanob9d37a52009-04-20 03:58:18 -07004#include "tree-walk.h"
Junio C Hamano74986462006-04-23 16:52:20 -07005#include "cache-tree.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -07006#include "object-store.h"
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +02007#include "replace-object.h"
Christian Couderb14ed5a2019-06-25 15:40:31 +02008#include "promisor-remote.h"
Junio C Hamano74986462006-04-23 16:52:20 -07009
Jeff Hostetlere9b9cc52019-06-19 14:05:58 -070010#ifndef DEBUG_CACHE_TREE
11#define DEBUG_CACHE_TREE 0
Junio C Hamano49031612006-10-30 15:29:53 -080012#endif
Junio C Hamano74986462006-04-23 16:52:20 -070013
14struct cache_tree *cache_tree(void)
15{
16 struct cache_tree *it = xcalloc(1, sizeof(struct cache_tree));
17 it->entry_count = -1;
18 return it;
19}
20
Junio C Hamanobad68ec2006-04-24 21:18:58 -070021void cache_tree_free(struct cache_tree **it_p)
Junio C Hamano74986462006-04-23 16:52:20 -070022{
23 int i;
Junio C Hamanobad68ec2006-04-24 21:18:58 -070024 struct cache_tree *it = *it_p;
Junio C Hamano74986462006-04-23 16:52:20 -070025
26 if (!it)
27 return;
28 for (i = 0; i < it->subtree_nr; i++)
Elijah Newrene92fa512010-09-06 15:40:16 -060029 if (it->down[i]) {
Junio C Hamano61fa3092006-04-25 17:40:02 -070030 cache_tree_free(&it->down[i]->cache_tree);
Elijah Newrene92fa512010-09-06 15:40:16 -060031 free(it->down[i]);
32 }
Junio C Hamano74986462006-04-23 16:52:20 -070033 free(it->down);
34 free(it);
Junio C Hamanobad68ec2006-04-24 21:18:58 -070035 *it_p = NULL;
Junio C Hamano74986462006-04-23 16:52:20 -070036}
37
Junio C Hamano61fa3092006-04-25 17:40:02 -070038static int subtree_name_cmp(const char *one, int onelen,
39 const char *two, int twolen)
40{
41 if (onelen < twolen)
42 return -1;
43 if (twolen < onelen)
44 return 1;
45 return memcmp(one, two, onelen);
46}
47
48static int subtree_pos(struct cache_tree *it, const char *path, int pathlen)
49{
50 struct cache_tree_sub **down = it->down;
51 int lo, hi;
52 lo = 0;
53 hi = it->subtree_nr;
54 while (lo < hi) {
Derrick Stolee19716b22017-10-08 14:29:37 -040055 int mi = lo + (hi - lo) / 2;
Junio C Hamano61fa3092006-04-25 17:40:02 -070056 struct cache_tree_sub *mdl = down[mi];
57 int cmp = subtree_name_cmp(path, pathlen,
58 mdl->name, mdl->namelen);
59 if (!cmp)
60 return mi;
61 if (cmp < 0)
62 hi = mi;
63 else
64 lo = mi + 1;
65 }
66 return -lo-1;
67}
68
Junio C Hamano74986462006-04-23 16:52:20 -070069static struct cache_tree_sub *find_subtree(struct cache_tree *it,
70 const char *path,
71 int pathlen,
72 int create)
73{
Junio C Hamano74986462006-04-23 16:52:20 -070074 struct cache_tree_sub *down;
Junio C Hamano61fa3092006-04-25 17:40:02 -070075 int pos = subtree_pos(it, path, pathlen);
76 if (0 <= pos)
77 return it->down[pos];
Junio C Hamano74986462006-04-23 16:52:20 -070078 if (!create)
79 return NULL;
Junio C Hamano61fa3092006-04-25 17:40:02 -070080
81 pos = -pos-1;
Dmitry S. Dolzhenkobcc7a032014-03-04 02:31:51 +040082 ALLOC_GROW(it->down, it->subtree_nr + 1, it->subtree_alloc);
Junio C Hamano61fa3092006-04-25 17:40:02 -070083 it->subtree_nr++;
84
Jeff King96ffc062016-02-22 17:44:32 -050085 FLEX_ALLOC_MEM(down, name, path, pathlen);
Junio C Hamano61fa3092006-04-25 17:40:02 -070086 down->cache_tree = NULL;
Junio C Hamano74986462006-04-23 16:52:20 -070087 down->namelen = pathlen;
Junio C Hamano61fa3092006-04-25 17:40:02 -070088
89 if (pos < it->subtree_nr)
SZEDER Gáborf919ffe2018-01-22 18:50:09 +010090 MOVE_ARRAY(it->down + pos + 1, it->down + pos,
91 it->subtree_nr - pos - 1);
Junio C Hamano61fa3092006-04-25 17:40:02 -070092 it->down[pos] = down;
Junio C Hamano74986462006-04-23 16:52:20 -070093 return down;
94}
95
Junio C Hamano7927a552006-04-27 01:33:07 -070096struct cache_tree_sub *cache_tree_sub(struct cache_tree *it, const char *path)
97{
98 int pathlen = strlen(path);
99 return find_subtree(it, path, pathlen, 1);
100}
101
Nguyễn Thái Ngọc Duya5400ef2014-06-13 19:19:31 +0700102static int do_invalidate_path(struct cache_tree *it, const char *path)
Junio C Hamano74986462006-04-23 16:52:20 -0700103{
104 /* a/b/c
105 * ==> invalidate self
106 * ==> find "a", have it invalidate "b/c"
107 * a
108 * ==> invalidate self
109 * ==> if "a" exists as a subtree, remove it.
110 */
111 const char *slash;
112 int namelen;
113 struct cache_tree_sub *down;
114
Jeff Hostetlere9b9cc52019-06-19 14:05:58 -0700115#if DEBUG_CACHE_TREE
Junio C Hamano00703e62006-05-03 16:10:45 -0700116 fprintf(stderr, "cache-tree invalidate <%s>\n", path);
117#endif
118
Junio C Hamano74986462006-04-23 16:52:20 -0700119 if (!it)
Nguyễn Thái Ngọc Duya5400ef2014-06-13 19:19:31 +0700120 return 0;
Rohit Mani2c5495f2014-03-07 22:48:31 -0800121 slash = strchrnul(path, '/');
122 namelen = slash - path;
Junio C Hamano74986462006-04-23 16:52:20 -0700123 it->entry_count = -1;
Rohit Mani2c5495f2014-03-07 22:48:31 -0800124 if (!*slash) {
Junio C Hamano61fa3092006-04-25 17:40:02 -0700125 int pos;
Junio C Hamano61fa3092006-04-25 17:40:02 -0700126 pos = subtree_pos(it, path, namelen);
127 if (0 <= pos) {
128 cache_tree_free(&it->down[pos]->cache_tree);
129 free(it->down[pos]);
Junio C Hamano74986462006-04-23 16:52:20 -0700130 /* 0 1 2 3 4 5
131 * ^ ^subtree_nr = 6
Junio C Hamano61fa3092006-04-25 17:40:02 -0700132 * pos
Junio C Hamano74986462006-04-23 16:52:20 -0700133 * move 4 and 5 up one place (2 entries)
Junio C Hamano61fa3092006-04-25 17:40:02 -0700134 * 2 = 6 - 3 - 1 = subtree_nr - pos - 1
Junio C Hamano74986462006-04-23 16:52:20 -0700135 */
René Scharfef331ab92017-07-15 22:00:45 +0200136 MOVE_ARRAY(it->down + pos, it->down + pos + 1,
137 it->subtree_nr - pos - 1);
Junio C Hamano74986462006-04-23 16:52:20 -0700138 it->subtree_nr--;
139 }
Nguyễn Thái Ngọc Duya5400ef2014-06-13 19:19:31 +0700140 return 1;
Junio C Hamano74986462006-04-23 16:52:20 -0700141 }
Junio C Hamano74986462006-04-23 16:52:20 -0700142 down = find_subtree(it, path, namelen, 0);
143 if (down)
Nguyễn Thái Ngọc Duya5400ef2014-06-13 19:19:31 +0700144 do_invalidate_path(down->cache_tree, slash + 1);
145 return 1;
146}
147
148void cache_tree_invalidate_path(struct index_state *istate, const char *path)
149{
150 if (do_invalidate_path(istate->cache_tree, path))
151 istate->cache_changed |= CACHE_TREE_CHANGED;
Junio C Hamano74986462006-04-23 16:52:20 -0700152}
153
Nguyễn Thái Ngọc Duyd0cfc3e2014-06-13 19:19:32 +0700154static int verify_cache(struct cache_entry **cache,
Nguyễn Thái Ngọc Duye859c692012-01-16 09:36:46 +0700155 int entries, int flags)
Junio C Hamano74986462006-04-23 16:52:20 -0700156{
157 int i, funny;
Nguyễn Thái Ngọc Duye859c692012-01-16 09:36:46 +0700158 int silent = flags & WRITE_TREE_SILENT;
Junio C Hamano74986462006-04-23 16:52:20 -0700159
160 /* Verify that the tree is merged */
161 funny = 0;
162 for (i = 0; i < entries; i++) {
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700163 const struct cache_entry *ce = cache[i];
Junio C Hamano3f6d56d2012-02-07 11:55:48 -0800164 if (ce_stage(ce)) {
Thomas Rast996277c2011-12-06 18:43:37 +0100165 if (silent)
166 return -1;
Junio C Hamano74986462006-04-23 16:52:20 -0700167 if (10 < ++funny) {
168 fprintf(stderr, "...\n");
169 break;
170 }
Nguyễn Thái Ngọc Duydbc39042012-12-16 11:15:25 +0700171 fprintf(stderr, "%s: unmerged (%s)\n",
brian m. carlson99d1a982016-09-05 20:07:52 +0000172 ce->name, oid_to_hex(&ce->oid));
Junio C Hamano74986462006-04-23 16:52:20 -0700173 }
174 }
175 if (funny)
176 return -1;
177
178 /* Also verify that the cache does not have path and path/file
179 * at the same time. At this point we know the cache has only
180 * stage 0 entries.
181 */
182 funny = 0;
183 for (i = 0; i < entries - 1; i++) {
184 /* path/file always comes after path because of the way
185 * the cache is sorted. Also path can appear only once,
186 * which means conflicting one would immediately follow.
187 */
188 const char *this_name = cache[i]->name;
189 const char *next_name = cache[i+1]->name;
190 int this_len = strlen(this_name);
191 if (this_len < strlen(next_name) &&
192 strncmp(this_name, next_name, this_len) == 0 &&
193 next_name[this_len] == '/') {
194 if (10 < ++funny) {
195 fprintf(stderr, "...\n");
196 break;
197 }
198 fprintf(stderr, "You have both %s and %s\n",
199 this_name, next_name);
200 }
201 }
202 if (funny)
203 return -1;
204 return 0;
205}
206
207static void discard_unused_subtrees(struct cache_tree *it)
208{
209 struct cache_tree_sub **down = it->down;
210 int nr = it->subtree_nr;
211 int dst, src;
212 for (dst = src = 0; src < nr; src++) {
213 struct cache_tree_sub *s = down[src];
214 if (s->used)
215 down[dst++] = s;
216 else {
Junio C Hamanobad68ec2006-04-24 21:18:58 -0700217 cache_tree_free(&s->cache_tree);
Junio C Hamano74986462006-04-23 16:52:20 -0700218 free(s);
219 it->subtree_nr--;
220 }
221 }
222}
223
Junio C Hamanobad68ec2006-04-24 21:18:58 -0700224int cache_tree_fully_valid(struct cache_tree *it)
225{
226 int i;
227 if (!it)
228 return 0;
Jeff King98374a02019-01-07 03:37:54 -0500229 if (it->entry_count < 0 || !has_object_file(&it->oid))
Junio C Hamanobad68ec2006-04-24 21:18:58 -0700230 return 0;
231 for (i = 0; i < it->subtree_nr; i++) {
232 if (!cache_tree_fully_valid(it->down[i]->cache_tree))
233 return 0;
234 }
235 return 1;
236}
237
Junio C Hamano74986462006-04-23 16:52:20 -0700238static int update_one(struct cache_tree *it,
Nguyễn Thái Ngọc Duyd0cfc3e2014-06-13 19:19:32 +0700239 struct cache_entry **cache,
Junio C Hamano74986462006-04-23 16:52:20 -0700240 int entries,
241 const char *base,
242 int baselen,
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700243 int *skip_count,
Nguyễn Thái Ngọc Duye859c692012-01-16 09:36:46 +0700244 int flags)
Junio C Hamano74986462006-04-23 16:52:20 -0700245{
Pierre Habouzit5242bcb2007-09-06 13:20:11 +0200246 struct strbuf buffer;
Nguyễn Thái Ngọc Duye859c692012-01-16 09:36:46 +0700247 int missing_ok = flags & WRITE_TREE_MISSING_OK;
248 int dryrun = flags & WRITE_TREE_DRY_RUN;
David Turneraecf5672014-07-05 21:06:56 -0700249 int repair = flags & WRITE_TREE_REPAIR;
Nguyễn Thái Ngọc Duyeec3e7e2012-12-16 11:15:28 +0700250 int to_invalidate = 0;
Junio C Hamano74986462006-04-23 16:52:20 -0700251 int i;
252
David Turneraecf5672014-07-05 21:06:56 -0700253 assert(!(dryrun && repair));
254
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700255 *skip_count = 0;
256
Jeff King98374a02019-01-07 03:37:54 -0500257 if (0 <= it->entry_count && has_object_file(&it->oid))
Junio C Hamano74986462006-04-23 16:52:20 -0700258 return it->entry_count;
259
260 /*
261 * We first scan for subtrees and update them; we start by
262 * marking existing subtrees -- the ones that are unmarked
263 * should not be in the result.
264 */
265 for (i = 0; i < it->subtree_nr; i++)
266 it->down[i]->used = 0;
267
268 /*
269 * Find the subtrees and update them.
270 */
Nguyễn Thái Ngọc Duy386cc8b2012-12-16 11:15:26 +0700271 i = 0;
272 while (i < entries) {
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700273 const struct cache_entry *ce = cache[i];
Junio C Hamano74986462006-04-23 16:52:20 -0700274 struct cache_tree_sub *sub;
275 const char *path, *slash;
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700276 int pathlen, sublen, subcnt, subskip;
Junio C Hamano74986462006-04-23 16:52:20 -0700277
278 path = ce->name;
279 pathlen = ce_namelen(ce);
280 if (pathlen <= baselen || memcmp(base, path, baselen))
281 break; /* at the end of this level */
282
283 slash = strchr(path + baselen, '/');
Nguyễn Thái Ngọc Duy386cc8b2012-12-16 11:15:26 +0700284 if (!slash) {
285 i++;
Junio C Hamano74986462006-04-23 16:52:20 -0700286 continue;
Nguyễn Thái Ngọc Duy386cc8b2012-12-16 11:15:26 +0700287 }
Junio C Hamano74986462006-04-23 16:52:20 -0700288 /*
289 * a/bbb/c (base = a/, slash = /c)
290 * ==>
291 * path+baselen = bbb/c, sublen = 3
292 */
293 sublen = slash - (path + baselen);
294 sub = find_subtree(it, path + baselen, sublen, 1);
295 if (!sub->cache_tree)
296 sub->cache_tree = cache_tree();
297 subcnt = update_one(sub->cache_tree,
298 cache + i, entries - i,
299 path,
300 baselen + sublen + 1,
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700301 &subskip,
Nguyễn Thái Ngọc Duye859c692012-01-16 09:36:46 +0700302 flags);
Johannes Sixt3d12d0c2006-11-13 13:50:00 +0000303 if (subcnt < 0)
304 return subcnt;
Jeff King729dbbd2014-10-29 13:11:58 -0400305 if (!subcnt)
306 die("index cache-tree records empty sub-tree");
Nguyễn Thái Ngọc Duy386cc8b2012-12-16 11:15:26 +0700307 i += subcnt;
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700308 sub->count = subcnt; /* to be used in the next loop */
309 *skip_count += subskip;
Junio C Hamano74986462006-04-23 16:52:20 -0700310 sub->used = 1;
311 }
312
313 discard_unused_subtrees(it);
314
315 /*
316 * Then write out the tree object for this level.
317 */
Pierre Habouzitf1696ee2007-09-10 12:35:04 +0200318 strbuf_init(&buffer, 8192);
Junio C Hamano74986462006-04-23 16:52:20 -0700319
Nguyễn Thái Ngọc Duy386cc8b2012-12-16 11:15:26 +0700320 i = 0;
321 while (i < entries) {
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700322 const struct cache_entry *ce = cache[i];
Nguyễn Thái Ngọc Duyc041d542016-07-16 07:06:26 +0200323 struct cache_tree_sub *sub = NULL;
Junio C Hamano74986462006-04-23 16:52:20 -0700324 const char *path, *slash;
325 int pathlen, entlen;
brian m. carlson6dcb4622018-03-12 02:27:24 +0000326 const struct object_id *oid;
Junio C Hamano74986462006-04-23 16:52:20 -0700327 unsigned mode;
Junio C Hamano4ed115e2014-09-02 14:16:20 -0700328 int expected_missing = 0;
Nguyễn Thái Ngọc Duy6d6a7822016-07-16 07:06:27 +0200329 int contains_ita = 0;
Jonathan Tan2f215ff2018-10-09 11:40:37 -0700330 int ce_missing_ok;
Junio C Hamano74986462006-04-23 16:52:20 -0700331
332 path = ce->name;
333 pathlen = ce_namelen(ce);
334 if (pathlen <= baselen || memcmp(base, path, baselen))
335 break; /* at the end of this level */
336
337 slash = strchr(path + baselen, '/');
338 if (slash) {
339 entlen = slash - (path + baselen);
340 sub = find_subtree(it, path + baselen, entlen, 0);
341 if (!sub)
342 die("cache-tree.c: '%.*s' in '%s' not found",
343 entlen, path + baselen, path);
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700344 i += sub->count;
brian m. carlson6dcb4622018-03-12 02:27:24 +0000345 oid = &sub->cache_tree->oid;
Junio C Hamano74986462006-04-23 16:52:20 -0700346 mode = S_IFDIR;
Nguyễn Thái Ngọc Duy6d6a7822016-07-16 07:06:27 +0200347 contains_ita = sub->cache_tree->entry_count < 0;
348 if (contains_ita) {
Nguyễn Thái Ngọc Duyeec3e7e2012-12-16 11:15:28 +0700349 to_invalidate = 1;
Junio C Hamano4ed115e2014-09-02 14:16:20 -0700350 expected_missing = 1;
351 }
Junio C Hamano74986462006-04-23 16:52:20 -0700352 }
353 else {
brian m. carlson6dcb4622018-03-12 02:27:24 +0000354 oid = &ce->oid;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800355 mode = ce->ce_mode;
Junio C Hamano74986462006-04-23 16:52:20 -0700356 entlen = pathlen - baselen;
Nguyễn Thái Ngọc Duy386cc8b2012-12-16 11:15:26 +0700357 i++;
Junio C Hamano74986462006-04-23 16:52:20 -0700358 }
Jeff Kinga96d3cc2017-04-21 14:46:17 -0400359
Jonathan Tan2f215ff2018-10-09 11:40:37 -0700360 ce_missing_ok = mode == S_IFGITLINK || missing_ok ||
Christian Couderb14ed5a2019-06-25 15:40:31 +0200361 (has_promisor_remote() &&
Jonathan Tan2f215ff2018-10-09 11:40:37 -0700362 ce_skip_worktree(ce));
brian m. carlson6dcb4622018-03-12 02:27:24 +0000363 if (is_null_oid(oid) ||
Jonathan Tan2f215ff2018-10-09 11:40:37 -0700364 (!ce_missing_ok && !has_object_file(oid))) {
Jonathan Niederb6b56ac2010-08-09 22:32:11 -0500365 strbuf_release(&buffer);
Junio C Hamano4ed115e2014-09-02 14:16:20 -0700366 if (expected_missing)
367 return -1;
Linus Torvaldsa3883732009-07-14 11:25:17 -0700368 return error("invalid object %06o %s for '%.*s'",
brian m. carlson6dcb4622018-03-12 02:27:24 +0000369 mode, oid_to_hex(oid), entlen+baselen, path);
Jonathan Niederb6b56ac2010-08-09 22:32:11 -0500370 }
Junio C Hamano74986462006-04-23 16:52:20 -0700371
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700372 /*
373 * CE_REMOVE entries are removed before the index is
374 * written to disk. Skip them to remain consistent
375 * with the future on-disk index.
376 */
377 if (ce->ce_flags & CE_REMOVE) {
378 *skip_count = *skip_count + 1;
379 continue;
380 }
381
Nguyễn Thái Ngọc Duyeec3e7e2012-12-16 11:15:28 +0700382 /*
383 * CE_INTENT_TO_ADD entries exist on on-disk index but
384 * they are not part of generated trees. Invalidate up
385 * to root to force cache-tree users to read elsewhere.
386 */
Nguyễn Thái Ngọc Duyc041d542016-07-16 07:06:26 +0200387 if (!sub && ce_intent_to_add(ce)) {
Nguyễn Thái Ngọc Duyeec3e7e2012-12-16 11:15:28 +0700388 to_invalidate = 1;
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700389 continue;
Nguyễn Thái Ngọc Duyeec3e7e2012-12-16 11:15:28 +0700390 }
Junio C Hamano74986462006-04-23 16:52:20 -0700391
Nguyễn Thái Ngọc Duy6d6a7822016-07-16 07:06:27 +0200392 /*
393 * "sub" can be an empty tree if all subentries are i-t-a.
394 */
brian m. carlsona0554932018-05-02 00:26:04 +0000395 if (contains_ita && is_empty_tree_oid(oid))
Nguyễn Thái Ngọc Duy6d6a7822016-07-16 07:06:27 +0200396 continue;
397
Pierre Habouzit5242bcb2007-09-06 13:20:11 +0200398 strbuf_grow(&buffer, entlen + 100);
399 strbuf_addf(&buffer, "%o %.*s%c", mode, entlen, path + baselen, '\0');
brian m. carlson6dcb4622018-03-12 02:27:24 +0000400 strbuf_add(&buffer, oid->hash, the_hash_algo->rawsz);
Junio C Hamano74986462006-04-23 16:52:20 -0700401
Jeff Hostetlere9b9cc52019-06-19 14:05:58 -0700402#if DEBUG_CACHE_TREE
Junio C Hamano00703e62006-05-03 16:10:45 -0700403 fprintf(stderr, "cache-tree update-one %o %.*s\n",
Junio C Hamano74986462006-04-23 16:52:20 -0700404 mode, entlen, path + baselen);
405#endif
406 }
407
David Turneraecf5672014-07-05 21:06:56 -0700408 if (repair) {
Patryk Obaraf070fac2018-01-28 01:13:13 +0100409 struct object_id oid;
Matheus Tavares2dcde202020-01-30 17:32:22 -0300410 hash_object_file(the_hash_algo, buffer.buf, buffer.len,
411 tree_type, &oid);
Jonathan Tanf981ec12019-09-03 12:42:47 -0700412 if (has_object_file_with_flags(&oid, OBJECT_INFO_SKIP_FETCH_OBJECT))
Patryk Obaraf070fac2018-01-28 01:13:13 +0100413 oidcpy(&it->oid, &oid);
David Turneraecf5672014-07-05 21:06:56 -0700414 else
415 to_invalidate = 1;
Patryk Obaraa09c9852018-01-28 01:13:19 +0100416 } else if (dryrun) {
Matheus Tavares2dcde202020-01-30 17:32:22 -0300417 hash_object_file(the_hash_algo, buffer.buf, buffer.len,
418 tree_type, &it->oid);
Patryk Obaraa09c9852018-01-28 01:13:19 +0100419 } else if (write_object_file(buffer.buf, buffer.len, tree_type,
420 &it->oid)) {
Junio C Hamanoedae5f02008-04-23 09:47:17 -0700421 strbuf_release(&buffer);
422 return -1;
423 }
424
Pierre Habouzit5242bcb2007-09-06 13:20:11 +0200425 strbuf_release(&buffer);
Nguyễn Thái Ngọc Duyeec3e7e2012-12-16 11:15:28 +0700426 it->entry_count = to_invalidate ? -1 : i - *skip_count;
Jeff Hostetlere9b9cc52019-06-19 14:05:58 -0700427#if DEBUG_CACHE_TREE
Junio C Hamano00703e62006-05-03 16:10:45 -0700428 fprintf(stderr, "cache-tree update-one (%d ent, %d subtree) %s\n",
Junio C Hamano74986462006-04-23 16:52:20 -0700429 it->entry_count, it->subtree_nr,
brian m. carlsone0a92802017-05-01 02:28:56 +0000430 oid_to_hex(&it->oid));
Junio C Hamano74986462006-04-23 16:52:20 -0700431#endif
432 return i;
433}
434
Nguyễn Thái Ngọc Duyd0cfc3e2014-06-13 19:19:32 +0700435int cache_tree_update(struct index_state *istate, int flags)
Junio C Hamano74986462006-04-23 16:52:20 -0700436{
Nguyễn Thái Ngọc Duyd0cfc3e2014-06-13 19:19:32 +0700437 struct cache_tree *it = istate->cache_tree;
438 struct cache_entry **cache = istate->cache;
439 int entries = istate->cache_nr;
440 int skip, i = verify_cache(cache, entries, flags);
441
Junio C Hamano74986462006-04-23 16:52:20 -0700442 if (i)
443 return i;
Nguyễn Thái Ngọc Duy0d1ed592018-08-18 16:41:23 +0200444 trace_performance_enter();
Nguyễn Thái Ngọc Duy3cf773e2012-12-16 11:15:27 +0700445 i = update_one(it, cache, entries, "", 0, &skip, flags);
Nguyễn Thái Ngọc Duy0d1ed592018-08-18 16:41:23 +0200446 trace_performance_leave("cache_tree_update");
Junio C Hamano74986462006-04-23 16:52:20 -0700447 if (i < 0)
448 return i;
Nguyễn Thái Ngọc Duyd0cfc3e2014-06-13 19:19:32 +0700449 istate->cache_changed |= CACHE_TREE_CHANGED;
Junio C Hamano74986462006-04-23 16:52:20 -0700450 return 0;
451}
452
Pierre Habouzit1dffb8f2007-09-25 10:22:44 +0200453static void write_one(struct strbuf *buffer, struct cache_tree *it,
Nguyễn Thái Ngọc Duyec36c422018-12-06 16:42:06 +0100454 const char *path, int pathlen)
Junio C Hamano74986462006-04-23 16:52:20 -0700455{
456 int i;
457
458 /* One "cache-tree" entry consists of the following:
459 * path (NUL terminated)
460 * entry_count, subtree_nr ("%d %d\n")
461 * tree-sha1 (missing if invalid)
462 * subtree_nr "cache-tree" entries for subtrees.
463 */
Pierre Habouzit5242bcb2007-09-06 13:20:11 +0200464 strbuf_grow(buffer, pathlen + 100);
465 strbuf_add(buffer, path, pathlen);
466 strbuf_addf(buffer, "%c%d %d\n", 0, it->entry_count, it->subtree_nr);
Junio C Hamano74986462006-04-23 16:52:20 -0700467
Jeff Hostetlere9b9cc52019-06-19 14:05:58 -0700468#if DEBUG_CACHE_TREE
Junio C Hamano74986462006-04-23 16:52:20 -0700469 if (0 <= it->entry_count)
470 fprintf(stderr, "cache-tree <%.*s> (%d ent, %d subtree) %s\n",
471 pathlen, path, it->entry_count, it->subtree_nr,
brian m. carlsone0a92802017-05-01 02:28:56 +0000472 oid_to_hex(&it->oid));
Junio C Hamano74986462006-04-23 16:52:20 -0700473 else
474 fprintf(stderr, "cache-tree <%.*s> (%d subtree) invalid\n",
475 pathlen, path, it->subtree_nr);
476#endif
477
478 if (0 <= it->entry_count) {
brian m. carlson6dcb4622018-03-12 02:27:24 +0000479 strbuf_add(buffer, it->oid.hash, the_hash_algo->rawsz);
Junio C Hamano74986462006-04-23 16:52:20 -0700480 }
481 for (i = 0; i < it->subtree_nr; i++) {
482 struct cache_tree_sub *down = it->down[i];
Junio C Hamano61fa3092006-04-25 17:40:02 -0700483 if (i) {
484 struct cache_tree_sub *prev = it->down[i-1];
485 if (subtree_name_cmp(down->name, down->namelen,
486 prev->name, prev->namelen) <= 0)
487 die("fatal - unsorted cache subtree");
488 }
Pierre Habouzit1dffb8f2007-09-25 10:22:44 +0200489 write_one(buffer, down->cache_tree, down->name, down->namelen);
Junio C Hamano74986462006-04-23 16:52:20 -0700490 }
Junio C Hamano74986462006-04-23 16:52:20 -0700491}
492
Pierre Habouzit1dffb8f2007-09-25 10:22:44 +0200493void cache_tree_write(struct strbuf *sb, struct cache_tree *root)
Junio C Hamano74986462006-04-23 16:52:20 -0700494{
Pierre Habouzit1dffb8f2007-09-25 10:22:44 +0200495 write_one(sb, root, "", 0);
Junio C Hamano74986462006-04-23 16:52:20 -0700496}
497
498static struct cache_tree *read_one(const char **buffer, unsigned long *size_p)
499{
500 const char *buf = *buffer;
501 unsigned long size = *size_p;
Johannes Schindelin0111ea32006-05-02 03:31:02 +0200502 const char *cp;
503 char *ep;
Junio C Hamano74986462006-04-23 16:52:20 -0700504 struct cache_tree *it;
505 int i, subtree_nr;
brian m. carlson6dcb4622018-03-12 02:27:24 +0000506 const unsigned rawsz = the_hash_algo->rawsz;
Junio C Hamano74986462006-04-23 16:52:20 -0700507
508 it = NULL;
509 /* skip name, but make sure name exists */
510 while (size && *buf) {
511 size--;
512 buf++;
513 }
514 if (!size)
515 goto free_return;
516 buf++; size--;
517 it = cache_tree();
Johannes Schindelin0111ea32006-05-02 03:31:02 +0200518
519 cp = buf;
520 it->entry_count = strtol(cp, &ep, 10);
521 if (cp == ep)
522 goto free_return;
523 cp = ep;
524 subtree_nr = strtol(cp, &ep, 10);
525 if (cp == ep)
Junio C Hamano74986462006-04-23 16:52:20 -0700526 goto free_return;
527 while (size && *buf && *buf != '\n') {
528 size--;
529 buf++;
530 }
531 if (!size)
532 goto free_return;
533 buf++; size--;
534 if (0 <= it->entry_count) {
brian m. carlson6dcb4622018-03-12 02:27:24 +0000535 if (size < rawsz)
Junio C Hamano74986462006-04-23 16:52:20 -0700536 goto free_return;
brian m. carlson69d12422018-05-02 00:25:29 +0000537 oidread(&it->oid, (const unsigned char *)buf);
brian m. carlson6dcb4622018-03-12 02:27:24 +0000538 buf += rawsz;
539 size -= rawsz;
Junio C Hamano74986462006-04-23 16:52:20 -0700540 }
541
Jeff Hostetlere9b9cc52019-06-19 14:05:58 -0700542#if DEBUG_CACHE_TREE
Junio C Hamano74986462006-04-23 16:52:20 -0700543 if (0 <= it->entry_count)
544 fprintf(stderr, "cache-tree <%s> (%d ent, %d subtree) %s\n",
545 *buffer, it->entry_count, subtree_nr,
brian m. carlsone0a92802017-05-01 02:28:56 +0000546 oid_to_hex(&it->oid));
Junio C Hamano74986462006-04-23 16:52:20 -0700547 else
548 fprintf(stderr, "cache-tree <%s> (%d subtrees) invalid\n",
549 *buffer, subtree_nr);
550#endif
551
552 /*
553 * Just a heuristic -- we do not add directories that often but
554 * we do not want to have to extend it immediately when we do,
555 * hence +2.
556 */
557 it->subtree_alloc = subtree_nr + 2;
558 it->down = xcalloc(it->subtree_alloc, sizeof(struct cache_tree_sub *));
559 for (i = 0; i < subtree_nr; i++) {
560 /* read each subtree */
561 struct cache_tree *sub;
Junio C Hamano61fa3092006-04-25 17:40:02 -0700562 struct cache_tree_sub *subtree;
Junio C Hamano74986462006-04-23 16:52:20 -0700563 const char *name = buf;
Junio C Hamano7927a552006-04-27 01:33:07 -0700564
Junio C Hamano74986462006-04-23 16:52:20 -0700565 sub = read_one(&buf, &size);
566 if (!sub)
567 goto free_return;
Junio C Hamano7927a552006-04-27 01:33:07 -0700568 subtree = cache_tree_sub(it, name);
Junio C Hamano61fa3092006-04-25 17:40:02 -0700569 subtree->cache_tree = sub;
Junio C Hamano74986462006-04-23 16:52:20 -0700570 }
571 if (subtree_nr != it->subtree_nr)
572 die("cache-tree: internal error");
573 *buffer = buf;
574 *size_p = size;
575 return it;
576
577 free_return:
Junio C Hamanobad68ec2006-04-24 21:18:58 -0700578 cache_tree_free(&it);
Junio C Hamano74986462006-04-23 16:52:20 -0700579 return NULL;
580}
581
Junio C Hamanobad68ec2006-04-24 21:18:58 -0700582struct cache_tree *cache_tree_read(const char *buffer, unsigned long size)
Junio C Hamano74986462006-04-23 16:52:20 -0700583{
Junio C Hamanobad68ec2006-04-24 21:18:58 -0700584 if (buffer[0])
Junio C Hamano74986462006-04-23 16:52:20 -0700585 return NULL; /* not the whole tree */
Junio C Hamano74986462006-04-23 16:52:20 -0700586 return read_one(&buffer, &size);
587}
Junio C Hamano6bd20352006-04-26 01:20:50 -0700588
Nanako Shiraishi7ba04d92008-07-16 19:42:10 +0900589static struct cache_tree *cache_tree_find(struct cache_tree *it, const char *path)
Junio C Hamano6bd20352006-04-26 01:20:50 -0700590{
Junio C Hamanob87fc962009-05-20 15:53:57 -0700591 if (!it)
592 return NULL;
Junio C Hamano6bd20352006-04-26 01:20:50 -0700593 while (*path) {
594 const char *slash;
595 struct cache_tree_sub *sub;
596
Michael Haggerty17e22dd2014-03-05 18:26:26 +0100597 slash = strchrnul(path, '/');
Michael Haggerty79192b82014-03-05 18:26:27 +0100598 /*
599 * Between path and slash is the name of the subtree
600 * to look for.
Junio C Hamano6bd20352006-04-26 01:20:50 -0700601 */
602 sub = find_subtree(it, path, slash - path, 0);
603 if (!sub)
604 return NULL;
605 it = sub->cache_tree;
Michael Haggerty34910472014-03-05 18:26:30 +0100606
Junio C Hamano6bd20352006-04-26 01:20:50 -0700607 path = slash;
Michael Haggerty34910472014-03-05 18:26:30 +0100608 while (*path == '/')
609 path++;
Junio C Hamano6bd20352006-04-26 01:20:50 -0700610 }
611 return it;
612}
Junio C Hamano45525bd2008-01-10 22:49:35 -0800613
Elijah Newren724dd762019-08-17 11:41:32 -0700614static int write_index_as_tree_internal(struct object_id *oid,
615 struct index_state *index_state,
616 int cache_tree_valid,
617 int flags,
618 const char *prefix)
619{
620 if (flags & WRITE_TREE_IGNORE_CACHE_TREE) {
621 cache_tree_free(&index_state->cache_tree);
622 cache_tree_valid = 0;
623 }
624
625 if (!index_state->cache_tree)
626 index_state->cache_tree = cache_tree();
627
628 if (!cache_tree_valid && cache_tree_update(index_state, flags) < 0)
629 return WRITE_TREE_UNMERGED_INDEX;
630
631 if (prefix) {
632 struct cache_tree *subtree;
633 subtree = cache_tree_find(index_state->cache_tree, prefix);
634 if (!subtree)
635 return WRITE_TREE_PREFIX_ERROR;
636 oidcpy(oid, &subtree->oid);
637 }
638 else
639 oidcpy(oid, &index_state->cache_tree->oid);
640
641 return 0;
642}
643
644struct tree* write_in_core_index_as_tree(struct repository *repo) {
645 struct object_id o;
646 int was_valid, ret;
647
648 struct index_state *index_state = repo->index;
649 was_valid = index_state->cache_tree &&
650 cache_tree_fully_valid(index_state->cache_tree);
651
652 ret = write_index_as_tree_internal(&o, index_state, was_valid, 0, NULL);
653 if (ret == WRITE_TREE_UNMERGED_INDEX) {
654 int i;
655 fprintf(stderr, "BUG: There are unmerged index entries:\n");
656 for (i = 0; i < index_state->cache_nr; i++) {
657 const struct cache_entry *ce = index_state->cache[i];
658 if (ce_stage(ce))
659 fprintf(stderr, "BUG: %d %.*s\n", ce_stage(ce),
660 (int)ce_namelen(ce), ce->name);
661 }
662 BUG("unmerged index entries when writing inmemory index");
663 }
664
665 return lookup_tree(repo, &index_state->cache_tree->oid);
666}
667
668
brian m. carlsonfc5cb992018-03-12 02:27:23 +0000669int write_index_as_tree(struct object_id *oid, struct index_state *index_state, const char *index_path, int flags, const char *prefix)
Junio C Hamano45525bd2008-01-10 22:49:35 -0800670{
Martin Ågren2954e5e2017-10-05 22:32:08 +0200671 int entries, was_valid;
Jeff Kingbfffb482017-09-05 08:15:21 -0400672 struct lock_file lock_file = LOCK_INIT;
Elijah Newren724dd762019-08-17 11:41:32 -0700673 int ret;
Junio C Hamano45525bd2008-01-10 22:49:35 -0800674
Martin Ågren2954e5e2017-10-05 22:32:08 +0200675 hold_lock_file_for_update(&lock_file, index_path, LOCK_DIE_ON_ERROR);
Junio C Hamano45525bd2008-01-10 22:49:35 -0800676
Thomas Gummerera125a222018-01-07 22:30:13 +0000677 entries = read_index_from(index_state, index_path, get_git_dir());
Jeff Kingc82c75b2017-09-05 08:14:07 -0400678 if (entries < 0) {
679 ret = WRITE_TREE_UNREADABLE_INDEX;
680 goto out;
681 }
Junio C Hamano45525bd2008-01-10 22:49:35 -0800682
Elijah Newren724dd762019-08-17 11:41:32 -0700683 was_valid = !(flags & WRITE_TREE_IGNORE_CACHE_TREE) &&
684 index_state->cache_tree &&
685 cache_tree_fully_valid(index_state->cache_tree);
Junio C Hamano45525bd2008-01-10 22:49:35 -0800686
Elijah Newren724dd762019-08-17 11:41:32 -0700687 ret = write_index_as_tree_internal(oid, index_state, was_valid, flags,
688 prefix);
689 if (!ret && !was_valid) {
Martin Ågren2954e5e2017-10-05 22:32:08 +0200690 write_locked_index(index_state, &lock_file, COMMIT_LOCK);
Junio C Hamano45525bd2008-01-10 22:49:35 -0800691 /* Not being able to write is fine -- we are only interested
692 * in updating the cache-tree part, and if the next caller
693 * ends up using the old index with unupdated cache-tree part
694 * it misses the work we did here, but that is just a
695 * performance penalty and not a big deal.
696 */
697 }
698
Jeff Kingc82c75b2017-09-05 08:14:07 -0400699out:
Martin Ågren2954e5e2017-10-05 22:32:08 +0200700 rollback_lock_file(&lock_file);
Jeff Kingc82c75b2017-09-05 08:14:07 -0400701 return ret;
Junio C Hamano45525bd2008-01-10 22:49:35 -0800702}
Junio C Hamanob9d37a52009-04-20 03:58:18 -0700703
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100704static void prime_cache_tree_rec(struct repository *r,
705 struct cache_tree *it,
706 struct tree *tree)
Junio C Hamanob9d37a52009-04-20 03:58:18 -0700707{
708 struct tree_desc desc;
709 struct name_entry entry;
710 int cnt;
711
brian m. carlsone0a92802017-05-01 02:28:56 +0000712 oidcpy(&it->oid, &tree->object.oid);
Junio C Hamanob9d37a52009-04-20 03:58:18 -0700713 init_tree_desc(&desc, tree->buffer, tree->size);
714 cnt = 0;
715 while (tree_entry(&desc, &entry)) {
716 if (!S_ISDIR(entry.mode))
717 cnt++;
718 else {
719 struct cache_tree_sub *sub;
brian m. carlsonea82b2a2019-01-15 00:39:44 +0000720 struct tree *subtree = lookup_tree(r, &entry.oid);
Junio C Hamanob9d37a52009-04-20 03:58:18 -0700721 if (!subtree->object.parsed)
722 parse_tree(subtree);
723 sub = cache_tree_sub(it, entry.path);
724 sub->cache_tree = cache_tree();
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100725 prime_cache_tree_rec(r, sub->cache_tree, subtree);
Junio C Hamanob9d37a52009-04-20 03:58:18 -0700726 cnt += sub->cache_tree->entry_count;
727 }
728 }
729 it->entry_count = cnt;
730}
731
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100732void prime_cache_tree(struct repository *r,
733 struct index_state *istate,
734 struct tree *tree)
Junio C Hamanob9d37a52009-04-20 03:58:18 -0700735{
Nguyễn Thái Ngọc Duye6c286e2014-06-13 19:19:33 +0700736 cache_tree_free(&istate->cache_tree);
737 istate->cache_tree = cache_tree();
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100738 prime_cache_tree_rec(r, istate->cache_tree, tree);
Nguyễn Thái Ngọc Duye6c286e2014-06-13 19:19:33 +0700739 istate->cache_changed |= CACHE_TREE_CHANGED;
Junio C Hamanob9d37a52009-04-20 03:58:18 -0700740}
Junio C Hamanob65982b2009-05-20 15:57:22 -0700741
742/*
743 * find the cache_tree that corresponds to the current level without
744 * exploding the full path into textual form. The root of the
745 * cache tree is given as "root", and our current level is "info".
746 * (1) When at root level, info->prev is NULL, so it is "root" itself.
747 * (2) Otherwise, find the cache_tree that corresponds to one level
748 * above us, and find ourselves in there.
749 */
750static struct cache_tree *find_cache_tree_from_traversal(struct cache_tree *root,
751 struct traverse_info *info)
752{
753 struct cache_tree *our_parent;
754
755 if (!info->prev)
756 return root;
757 our_parent = find_cache_tree_from_traversal(root, info->prev);
Jeff King90553842019-07-31 00:38:15 -0400758 return cache_tree_find(our_parent, info->name);
Junio C Hamanob65982b2009-05-20 15:57:22 -0700759}
760
761int cache_tree_matches_traversal(struct cache_tree *root,
762 struct name_entry *ent,
763 struct traverse_info *info)
764{
765 struct cache_tree *it;
766
767 it = find_cache_tree_from_traversal(root, info);
768 it = cache_tree_find(it, ent->path);
brian m. carlsonea82b2a2019-01-15 00:39:44 +0000769 if (it && it->entry_count > 0 && oideq(&ent->oid, &it->oid))
Junio C Hamanob65982b2009-05-20 15:57:22 -0700770 return it->entry_count;
771 return 0;
772}
Thomas Rast996277c2011-12-06 18:43:37 +0100773
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100774static void verify_one(struct repository *r,
775 struct index_state *istate,
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +0200776 struct cache_tree *it,
777 struct strbuf *path)
778{
779 int i, pos, len = path->len;
780 struct strbuf tree_buf = STRBUF_INIT;
781 struct object_id new_oid;
782
783 for (i = 0; i < it->subtree_nr; i++) {
784 strbuf_addf(path, "%s/", it->down[i]->name);
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100785 verify_one(r, istate, it->down[i]->cache_tree, path);
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +0200786 strbuf_setlen(path, len);
787 }
788
789 if (it->entry_count < 0 ||
790 /* no verification on tests (t7003) that replace trees */
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100791 lookup_replace_object(r, &it->oid) != &it->oid)
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +0200792 return;
793
794 if (path->len) {
795 pos = index_name_pos(istate, path->buf, path->len);
796 pos = -pos - 1;
797 } else {
798 pos = 0;
799 }
800
801 i = 0;
802 while (i < it->entry_count) {
803 struct cache_entry *ce = istate->cache[pos + i];
804 const char *slash;
805 struct cache_tree_sub *sub = NULL;
806 const struct object_id *oid;
807 const char *name;
808 unsigned mode;
809 int entlen;
810
811 if (ce->ce_flags & (CE_STAGEMASK | CE_INTENT_TO_ADD | CE_REMOVE))
812 BUG("%s with flags 0x%x should not be in cache-tree",
813 ce->name, ce->ce_flags);
814 name = ce->name + path->len;
815 slash = strchr(name, '/');
816 if (slash) {
817 entlen = slash - name;
818 sub = find_subtree(it, ce->name + path->len, entlen, 0);
819 if (!sub || sub->cache_tree->entry_count < 0)
820 BUG("bad subtree '%.*s'", entlen, name);
821 oid = &sub->cache_tree->oid;
822 mode = S_IFDIR;
823 i += sub->cache_tree->entry_count;
824 } else {
825 oid = &ce->oid;
826 mode = ce->ce_mode;
827 entlen = ce_namelen(ce) - path->len;
828 i++;
829 }
830 strbuf_addf(&tree_buf, "%o %.*s%c", mode, entlen, name, '\0');
Matheus Tavaresa6519462020-01-30 17:32:18 -0300831 strbuf_add(&tree_buf, oid->hash, r->hash_algo->rawsz);
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +0200832 }
Matheus Tavares2dcde202020-01-30 17:32:22 -0300833 hash_object_file(r->hash_algo, tree_buf.buf, tree_buf.len, tree_type,
834 &new_oid);
Jeff Kinge43d2dc2018-10-02 17:19:21 -0400835 if (!oideq(&new_oid, &it->oid))
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +0200836 BUG("cache-tree for path %.*s does not match. "
837 "Expected %s got %s", len, path->buf,
838 oid_to_hex(&new_oid), oid_to_hex(&it->oid));
839 strbuf_setlen(path, len);
840 strbuf_release(&tree_buf);
841}
842
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100843void cache_tree_verify(struct repository *r, struct index_state *istate)
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +0200844{
845 struct strbuf path = STRBUF_INIT;
846
847 if (!istate->cache_tree)
848 return;
Nguyễn Thái Ngọc Duyc207e9e2018-11-10 06:49:02 +0100849 verify_one(r, istate, istate->cache_tree, &path);
Nguyễn Thái Ngọc Duy4592e602018-08-18 16:41:28 +0200850 strbuf_release(&path);
851}