Commit | Line | Data |
---|---|---|
7bd9bcf3 | 1 | #include "../cache.h" |
b2141fc1 | 2 | #include "../config.h" |
7bd9bcf3 MH |
3 | #include "../refs.h" |
4 | #include "refs-internal.h" | |
958f9646 | 5 | #include "ref-cache.h" |
67be7c5a | 6 | #include "packed-backend.h" |
3bc581b9 | 7 | #include "../iterator.h" |
2880d16f | 8 | #include "../dir-iterator.h" |
7bd9bcf3 MH |
9 | #include "../lockfile.h" |
10 | #include "../object.h" | |
11 | #include "../dir.h" | |
12 | ||
13 | struct ref_lock { | |
14 | char *ref_name; | |
7bd9bcf3 MH |
15 | struct lock_file *lk; |
16 | struct object_id old_oid; | |
17 | }; | |
18 | ||
7bd9bcf3 MH |
19 | /* |
20 | * Future: need to be in "struct repository" | |
21 | * when doing a full libification. | |
22 | */ | |
00eebe35 MH |
23 | struct files_ref_store { |
24 | struct ref_store base; | |
9e7ec634 | 25 | unsigned int store_flags; |
32c597e7 | 26 | |
f57f37e2 NTND |
27 | char *gitdir; |
28 | char *gitcommondir; | |
33dfb9f3 | 29 | |
7c22bc8a | 30 | struct ref_cache *loose; |
55c6bc37 | 31 | |
e0cc8ac8 | 32 | struct ref_store *packed_ref_store; |
00eebe35 | 33 | }; |
7bd9bcf3 | 34 | |
65a0a8e5 | 35 | static void clear_loose_ref_cache(struct files_ref_store *refs) |
7bd9bcf3 MH |
36 | { |
37 | if (refs->loose) { | |
7c22bc8a | 38 | free_ref_cache(refs->loose); |
7bd9bcf3 MH |
39 | refs->loose = NULL; |
40 | } | |
41 | } | |
42 | ||
a2d5156c JK |
43 | /* |
44 | * Create a new submodule ref cache and add it to the internal | |
45 | * set of caches. | |
46 | */ | |
9e7ec634 NTND |
47 | static struct ref_store *files_ref_store_create(const char *gitdir, |
48 | unsigned int flags) | |
7bd9bcf3 | 49 | { |
00eebe35 MH |
50 | struct files_ref_store *refs = xcalloc(1, sizeof(*refs)); |
51 | struct ref_store *ref_store = (struct ref_store *)refs; | |
f57f37e2 | 52 | struct strbuf sb = STRBUF_INIT; |
7bd9bcf3 | 53 | |
fbfd0a29 | 54 | base_ref_store_init(ref_store, &refs_be_files); |
9e7ec634 | 55 | refs->store_flags = flags; |
7bd9bcf3 | 56 | |
f57f37e2 NTND |
57 | refs->gitdir = xstrdup(gitdir); |
58 | get_common_dir_noenv(&sb, gitdir); | |
59 | refs->gitcommondir = strbuf_detach(&sb, NULL); | |
60 | strbuf_addf(&sb, "%s/packed-refs", refs->gitcommondir); | |
e0d48397 MH |
61 | refs->packed_ref_store = packed_ref_store_create(sb.buf, flags); |
62 | strbuf_release(&sb); | |
7bd9bcf3 | 63 | |
00eebe35 | 64 | return ref_store; |
a2d5156c | 65 | } |
7bd9bcf3 | 66 | |
32c597e7 | 67 | /* |
9e7ec634 NTND |
68 | * Die if refs is not the main ref store. caller is used in any |
69 | * necessary error messages. | |
32c597e7 MH |
70 | */ |
71 | static void files_assert_main_repository(struct files_ref_store *refs, | |
72 | const char *caller) | |
73 | { | |
9e7ec634 NTND |
74 | if (refs->store_flags & REF_STORE_MAIN) |
75 | return; | |
76 | ||
77 | die("BUG: operation %s only allowed for main ref store", caller); | |
32c597e7 MH |
78 | } |
79 | ||
a2d5156c | 80 | /* |
00eebe35 | 81 | * Downcast ref_store to files_ref_store. Die if ref_store is not a |
9e7ec634 NTND |
82 | * files_ref_store. required_flags is compared with ref_store's |
83 | * store_flags to ensure the ref_store has all required capabilities. | |
84 | * "caller" is used in any necessary error messages. | |
a2d5156c | 85 | */ |
9e7ec634 NTND |
86 | static struct files_ref_store *files_downcast(struct ref_store *ref_store, |
87 | unsigned int required_flags, | |
88 | const char *caller) | |
a2d5156c | 89 | { |
32c597e7 MH |
90 | struct files_ref_store *refs; |
91 | ||
00eebe35 MH |
92 | if (ref_store->be != &refs_be_files) |
93 | die("BUG: ref_store is type \"%s\" not \"files\" in %s", | |
94 | ref_store->be->name, caller); | |
2eed2780 | 95 | |
32c597e7 MH |
96 | refs = (struct files_ref_store *)ref_store; |
97 | ||
9e7ec634 NTND |
98 | if ((refs->store_flags & required_flags) != required_flags) |
99 | die("BUG: operation %s requires abilities 0x%x, but only have 0x%x", | |
100 | caller, required_flags, refs->store_flags); | |
2eed2780 | 101 | |
32c597e7 | 102 | return refs; |
7bd9bcf3 MH |
103 | } |
104 | ||
802de3da NTND |
105 | static void files_reflog_path(struct files_ref_store *refs, |
106 | struct strbuf *sb, | |
107 | const char *refname) | |
108 | { | |
109 | if (!refname) { | |
f57f37e2 NTND |
110 | /* |
111 | * FIXME: of course this is wrong in multi worktree | |
112 | * setting. To be fixed real soon. | |
113 | */ | |
114 | strbuf_addf(sb, "%s/logs", refs->gitcommondir); | |
802de3da NTND |
115 | return; |
116 | } | |
117 | ||
f57f37e2 NTND |
118 | switch (ref_type(refname)) { |
119 | case REF_TYPE_PER_WORKTREE: | |
120 | case REF_TYPE_PSEUDOREF: | |
121 | strbuf_addf(sb, "%s/logs/%s", refs->gitdir, refname); | |
122 | break; | |
123 | case REF_TYPE_NORMAL: | |
124 | strbuf_addf(sb, "%s/logs/%s", refs->gitcommondir, refname); | |
125 | break; | |
126 | default: | |
127 | die("BUG: unknown ref type %d of ref %s", | |
128 | ref_type(refname), refname); | |
129 | } | |
802de3da NTND |
130 | } |
131 | ||
19e02f4f NTND |
132 | static void files_ref_path(struct files_ref_store *refs, |
133 | struct strbuf *sb, | |
134 | const char *refname) | |
135 | { | |
f57f37e2 NTND |
136 | switch (ref_type(refname)) { |
137 | case REF_TYPE_PER_WORKTREE: | |
138 | case REF_TYPE_PSEUDOREF: | |
139 | strbuf_addf(sb, "%s/%s", refs->gitdir, refname); | |
140 | break; | |
141 | case REF_TYPE_NORMAL: | |
142 | strbuf_addf(sb, "%s/%s", refs->gitcommondir, refname); | |
143 | break; | |
144 | default: | |
145 | die("BUG: unknown ref type %d of ref %s", | |
146 | ref_type(refname), refname); | |
147 | } | |
19e02f4f NTND |
148 | } |
149 | ||
7bd9bcf3 MH |
150 | /* |
151 | * Read the loose references from the namespace dirname into dir | |
152 | * (without recursing). dirname must end with '/'. dir must be the | |
153 | * directory entry corresponding to dirname. | |
154 | */ | |
df308759 MH |
155 | static void loose_fill_ref_dir(struct ref_store *ref_store, |
156 | struct ref_dir *dir, const char *dirname) | |
7bd9bcf3 | 157 | { |
df308759 MH |
158 | struct files_ref_store *refs = |
159 | files_downcast(ref_store, REF_STORE_READ, "fill_ref_dir"); | |
7bd9bcf3 MH |
160 | DIR *d; |
161 | struct dirent *de; | |
162 | int dirnamelen = strlen(dirname); | |
163 | struct strbuf refname; | |
164 | struct strbuf path = STRBUF_INIT; | |
165 | size_t path_baselen; | |
166 | ||
19e02f4f | 167 | files_ref_path(refs, &path, dirname); |
7bd9bcf3 MH |
168 | path_baselen = path.len; |
169 | ||
170 | d = opendir(path.buf); | |
171 | if (!d) { | |
172 | strbuf_release(&path); | |
173 | return; | |
174 | } | |
175 | ||
176 | strbuf_init(&refname, dirnamelen + 257); | |
177 | strbuf_add(&refname, dirname, dirnamelen); | |
178 | ||
179 | while ((de = readdir(d)) != NULL) { | |
4417df8c | 180 | struct object_id oid; |
7bd9bcf3 MH |
181 | struct stat st; |
182 | int flag; | |
183 | ||
184 | if (de->d_name[0] == '.') | |
185 | continue; | |
186 | if (ends_with(de->d_name, ".lock")) | |
187 | continue; | |
188 | strbuf_addstr(&refname, de->d_name); | |
189 | strbuf_addstr(&path, de->d_name); | |
190 | if (stat(path.buf, &st) < 0) { | |
191 | ; /* silently ignore */ | |
192 | } else if (S_ISDIR(st.st_mode)) { | |
193 | strbuf_addch(&refname, '/'); | |
194 | add_entry_to_dir(dir, | |
e00d1a4f | 195 | create_dir_entry(dir->cache, refname.buf, |
7bd9bcf3 MH |
196 | refname.len, 1)); |
197 | } else { | |
7d2df051 | 198 | if (!refs_resolve_ref_unsafe(&refs->base, |
3c0cb0cb MH |
199 | refname.buf, |
200 | RESOLVE_REF_READING, | |
4417df8c | 201 | oid.hash, &flag)) { |
202 | oidclr(&oid); | |
7bd9bcf3 | 203 | flag |= REF_ISBROKEN; |
4417df8c | 204 | } else if (is_null_oid(&oid)) { |
7bd9bcf3 MH |
205 | /* |
206 | * It is so astronomically unlikely | |
207 | * that NULL_SHA1 is the SHA-1 of an | |
208 | * actual object that we consider its | |
209 | * appearance in a loose reference | |
210 | * file to be repo corruption | |
211 | * (probably due to a software bug). | |
212 | */ | |
213 | flag |= REF_ISBROKEN; | |
214 | } | |
215 | ||
216 | if (check_refname_format(refname.buf, | |
217 | REFNAME_ALLOW_ONELEVEL)) { | |
218 | if (!refname_is_safe(refname.buf)) | |
219 | die("loose refname is dangerous: %s", refname.buf); | |
4417df8c | 220 | oidclr(&oid); |
7bd9bcf3 MH |
221 | flag |= REF_BAD_NAME | REF_ISBROKEN; |
222 | } | |
223 | add_entry_to_dir(dir, | |
c1da06c6 | 224 | create_ref_entry(refname.buf, &oid, flag)); |
7bd9bcf3 MH |
225 | } |
226 | strbuf_setlen(&refname, dirnamelen); | |
227 | strbuf_setlen(&path, path_baselen); | |
228 | } | |
229 | strbuf_release(&refname); | |
230 | strbuf_release(&path); | |
231 | closedir(d); | |
e3bf2989 MH |
232 | |
233 | /* | |
234 | * Manually add refs/bisect, which, being per-worktree, might | |
235 | * not appear in the directory listing for refs/ in the main | |
236 | * repo. | |
237 | */ | |
238 | if (!strcmp(dirname, "refs/")) { | |
239 | int pos = search_ref_dir(dir, "refs/bisect/", 12); | |
240 | ||
241 | if (pos < 0) { | |
242 | struct ref_entry *child_entry = create_dir_entry( | |
243 | dir->cache, "refs/bisect/", 12, 1); | |
244 | add_entry_to_dir(dir, child_entry); | |
245 | } | |
246 | } | |
7bd9bcf3 MH |
247 | } |
248 | ||
a714b19c | 249 | static struct ref_cache *get_loose_ref_cache(struct files_ref_store *refs) |
7bd9bcf3 MH |
250 | { |
251 | if (!refs->loose) { | |
252 | /* | |
253 | * Mark the top-level directory complete because we | |
254 | * are about to read the only subdirectory that can | |
255 | * hold references: | |
256 | */ | |
df308759 | 257 | refs->loose = create_ref_cache(&refs->base, loose_fill_ref_dir); |
7c22bc8a MH |
258 | |
259 | /* We're going to fill the top level ourselves: */ | |
260 | refs->loose->root->flag &= ~REF_INCOMPLETE; | |
261 | ||
7bd9bcf3 | 262 | /* |
7c22bc8a MH |
263 | * Add an incomplete entry for "refs/" (to be filled |
264 | * lazily): | |
7bd9bcf3 | 265 | */ |
7c22bc8a | 266 | add_entry_to_dir(get_ref_dir(refs->loose->root), |
e00d1a4f | 267 | create_dir_entry(refs->loose, "refs/", 5, 1)); |
7bd9bcf3 | 268 | } |
a714b19c | 269 | return refs->loose; |
7bd9bcf3 MH |
270 | } |
271 | ||
e1e33b72 MH |
272 | static int files_read_raw_ref(struct ref_store *ref_store, |
273 | const char *refname, unsigned char *sha1, | |
274 | struct strbuf *referent, unsigned int *type) | |
7bd9bcf3 | 275 | { |
4308651c | 276 | struct files_ref_store *refs = |
9e7ec634 | 277 | files_downcast(ref_store, REF_STORE_READ, "read_raw_ref"); |
42a38cf7 MH |
278 | struct strbuf sb_contents = STRBUF_INIT; |
279 | struct strbuf sb_path = STRBUF_INIT; | |
7048653a DT |
280 | const char *path; |
281 | const char *buf; | |
282 | struct stat st; | |
283 | int fd; | |
42a38cf7 MH |
284 | int ret = -1; |
285 | int save_errno; | |
e8c42cb9 | 286 | int remaining_retries = 3; |
7bd9bcf3 | 287 | |
fa96ea1b | 288 | *type = 0; |
42a38cf7 | 289 | strbuf_reset(&sb_path); |
34c7ad8f | 290 | |
19e02f4f | 291 | files_ref_path(refs, &sb_path, refname); |
34c7ad8f | 292 | |
42a38cf7 | 293 | path = sb_path.buf; |
7bd9bcf3 | 294 | |
7048653a DT |
295 | stat_ref: |
296 | /* | |
297 | * We might have to loop back here to avoid a race | |
298 | * condition: first we lstat() the file, then we try | |
299 | * to read it as a link or as a file. But if somebody | |
300 | * changes the type of the file (file <-> directory | |
301 | * <-> symlink) between the lstat() and reading, then | |
302 | * we don't want to report that as an error but rather | |
303 | * try again starting with the lstat(). | |
e8c42cb9 JK |
304 | * |
305 | * We'll keep a count of the retries, though, just to avoid | |
306 | * any confusing situation sending us into an infinite loop. | |
7048653a | 307 | */ |
7bd9bcf3 | 308 | |
e8c42cb9 JK |
309 | if (remaining_retries-- <= 0) |
310 | goto out; | |
311 | ||
7048653a DT |
312 | if (lstat(path, &st) < 0) { |
313 | if (errno != ENOENT) | |
42a38cf7 | 314 | goto out; |
e0cc8ac8 MH |
315 | if (refs_read_raw_ref(refs->packed_ref_store, refname, |
316 | sha1, referent, type)) { | |
7048653a | 317 | errno = ENOENT; |
42a38cf7 | 318 | goto out; |
7bd9bcf3 | 319 | } |
42a38cf7 MH |
320 | ret = 0; |
321 | goto out; | |
7bd9bcf3 | 322 | } |
7bd9bcf3 | 323 | |
7048653a DT |
324 | /* Follow "normalized" - ie "refs/.." symlinks by hand */ |
325 | if (S_ISLNK(st.st_mode)) { | |
42a38cf7 MH |
326 | strbuf_reset(&sb_contents); |
327 | if (strbuf_readlink(&sb_contents, path, 0) < 0) { | |
7048653a | 328 | if (errno == ENOENT || errno == EINVAL) |
7bd9bcf3 MH |
329 | /* inconsistent with lstat; retry */ |
330 | goto stat_ref; | |
331 | else | |
42a38cf7 | 332 | goto out; |
7bd9bcf3 | 333 | } |
42a38cf7 MH |
334 | if (starts_with(sb_contents.buf, "refs/") && |
335 | !check_refname_format(sb_contents.buf, 0)) { | |
92b38093 | 336 | strbuf_swap(&sb_contents, referent); |
3a0b6b9a | 337 | *type |= REF_ISSYMREF; |
42a38cf7 MH |
338 | ret = 0; |
339 | goto out; | |
7bd9bcf3 | 340 | } |
3f7bd767 JK |
341 | /* |
342 | * It doesn't look like a refname; fall through to just | |
343 | * treating it like a non-symlink, and reading whatever it | |
344 | * points to. | |
345 | */ | |
7048653a | 346 | } |
7bd9bcf3 | 347 | |
7048653a DT |
348 | /* Is it a directory? */ |
349 | if (S_ISDIR(st.st_mode)) { | |
e167a567 MH |
350 | /* |
351 | * Even though there is a directory where the loose | |
352 | * ref is supposed to be, there could still be a | |
353 | * packed ref: | |
354 | */ | |
e0cc8ac8 MH |
355 | if (refs_read_raw_ref(refs->packed_ref_store, refname, |
356 | sha1, referent, type)) { | |
e167a567 MH |
357 | errno = EISDIR; |
358 | goto out; | |
359 | } | |
360 | ret = 0; | |
42a38cf7 | 361 | goto out; |
7048653a DT |
362 | } |
363 | ||
364 | /* | |
365 | * Anything else, just open it and try to use it as | |
366 | * a ref | |
367 | */ | |
368 | fd = open(path, O_RDONLY); | |
369 | if (fd < 0) { | |
3f7bd767 | 370 | if (errno == ENOENT && !S_ISLNK(st.st_mode)) |
7048653a DT |
371 | /* inconsistent with lstat; retry */ |
372 | goto stat_ref; | |
373 | else | |
42a38cf7 | 374 | goto out; |
7048653a | 375 | } |
42a38cf7 MH |
376 | strbuf_reset(&sb_contents); |
377 | if (strbuf_read(&sb_contents, fd, 256) < 0) { | |
7048653a DT |
378 | int save_errno = errno; |
379 | close(fd); | |
380 | errno = save_errno; | |
42a38cf7 | 381 | goto out; |
7048653a DT |
382 | } |
383 | close(fd); | |
42a38cf7 MH |
384 | strbuf_rtrim(&sb_contents); |
385 | buf = sb_contents.buf; | |
7048653a DT |
386 | if (starts_with(buf, "ref:")) { |
387 | buf += 4; | |
7bd9bcf3 MH |
388 | while (isspace(*buf)) |
389 | buf++; | |
7048653a | 390 | |
92b38093 MH |
391 | strbuf_reset(referent); |
392 | strbuf_addstr(referent, buf); | |
3a0b6b9a | 393 | *type |= REF_ISSYMREF; |
42a38cf7 MH |
394 | ret = 0; |
395 | goto out; | |
7bd9bcf3 | 396 | } |
7bd9bcf3 | 397 | |
7048653a DT |
398 | /* |
399 | * Please note that FETCH_HEAD has additional | |
400 | * data after the sha. | |
401 | */ | |
402 | if (get_sha1_hex(buf, sha1) || | |
403 | (buf[40] != '\0' && !isspace(buf[40]))) { | |
3a0b6b9a | 404 | *type |= REF_ISBROKEN; |
7048653a | 405 | errno = EINVAL; |
42a38cf7 | 406 | goto out; |
7048653a DT |
407 | } |
408 | ||
42a38cf7 | 409 | ret = 0; |
7bd9bcf3 | 410 | |
42a38cf7 MH |
411 | out: |
412 | save_errno = errno; | |
7bd9bcf3 MH |
413 | strbuf_release(&sb_path); |
414 | strbuf_release(&sb_contents); | |
42a38cf7 | 415 | errno = save_errno; |
7bd9bcf3 MH |
416 | return ret; |
417 | } | |
418 | ||
8415d247 MH |
419 | static void unlock_ref(struct ref_lock *lock) |
420 | { | |
421 | /* Do not free lock->lk -- atexit() still looks at them */ | |
422 | if (lock->lk) | |
423 | rollback_lock_file(lock->lk); | |
424 | free(lock->ref_name); | |
8415d247 MH |
425 | free(lock); |
426 | } | |
427 | ||
92b1551b MH |
428 | /* |
429 | * Lock refname, without following symrefs, and set *lock_p to point | |
430 | * at a newly-allocated lock object. Fill in lock->old_oid, referent, | |
431 | * and type similarly to read_raw_ref(). | |
432 | * | |
433 | * The caller must verify that refname is a "safe" reference name (in | |
434 | * the sense of refname_is_safe()) before calling this function. | |
435 | * | |
436 | * If the reference doesn't already exist, verify that refname doesn't | |
437 | * have a D/F conflict with any existing references. extras and skip | |
524a9fdb | 438 | * are passed to refs_verify_refname_available() for this check. |
92b1551b MH |
439 | * |
440 | * If mustexist is not set and the reference is not found or is | |
441 | * broken, lock the reference anyway but clear sha1. | |
442 | * | |
443 | * Return 0 on success. On failure, write an error message to err and | |
444 | * return TRANSACTION_NAME_CONFLICT or TRANSACTION_GENERIC_ERROR. | |
445 | * | |
446 | * Implementation note: This function is basically | |
447 | * | |
448 | * lock reference | |
449 | * read_raw_ref() | |
450 | * | |
451 | * but it includes a lot more code to | |
452 | * - Deal with possible races with other processes | |
524a9fdb | 453 | * - Avoid calling refs_verify_refname_available() when it can be |
92b1551b MH |
454 | * avoided, namely if we were successfully able to read the ref |
455 | * - Generate informative error messages in the case of failure | |
456 | */ | |
f7b0a987 MH |
457 | static int lock_raw_ref(struct files_ref_store *refs, |
458 | const char *refname, int mustexist, | |
92b1551b MH |
459 | const struct string_list *extras, |
460 | const struct string_list *skip, | |
461 | struct ref_lock **lock_p, | |
462 | struct strbuf *referent, | |
463 | unsigned int *type, | |
464 | struct strbuf *err) | |
465 | { | |
466 | struct ref_lock *lock; | |
467 | struct strbuf ref_file = STRBUF_INIT; | |
468 | int attempts_remaining = 3; | |
469 | int ret = TRANSACTION_GENERIC_ERROR; | |
470 | ||
471 | assert(err); | |
32c597e7 | 472 | files_assert_main_repository(refs, "lock_raw_ref"); |
f7b0a987 | 473 | |
92b1551b MH |
474 | *type = 0; |
475 | ||
476 | /* First lock the file so it can't change out from under us. */ | |
477 | ||
478 | *lock_p = lock = xcalloc(1, sizeof(*lock)); | |
479 | ||
480 | lock->ref_name = xstrdup(refname); | |
19e02f4f | 481 | files_ref_path(refs, &ref_file, refname); |
92b1551b MH |
482 | |
483 | retry: | |
484 | switch (safe_create_leading_directories(ref_file.buf)) { | |
485 | case SCLD_OK: | |
486 | break; /* success */ | |
487 | case SCLD_EXISTS: | |
488 | /* | |
489 | * Suppose refname is "refs/foo/bar". We just failed | |
490 | * to create the containing directory, "refs/foo", | |
491 | * because there was a non-directory in the way. This | |
492 | * indicates a D/F conflict, probably because of | |
493 | * another reference such as "refs/foo". There is no | |
494 | * reason to expect this error to be transitory. | |
495 | */ | |
7d2df051 NTND |
496 | if (refs_verify_refname_available(&refs->base, refname, |
497 | extras, skip, err)) { | |
92b1551b MH |
498 | if (mustexist) { |
499 | /* | |
500 | * To the user the relevant error is | |
501 | * that the "mustexist" reference is | |
502 | * missing: | |
503 | */ | |
504 | strbuf_reset(err); | |
505 | strbuf_addf(err, "unable to resolve reference '%s'", | |
506 | refname); | |
507 | } else { | |
508 | /* | |
509 | * The error message set by | |
524a9fdb MH |
510 | * refs_verify_refname_available() is |
511 | * OK. | |
92b1551b MH |
512 | */ |
513 | ret = TRANSACTION_NAME_CONFLICT; | |
514 | } | |
515 | } else { | |
516 | /* | |
517 | * The file that is in the way isn't a loose | |
518 | * reference. Report it as a low-level | |
519 | * failure. | |
520 | */ | |
521 | strbuf_addf(err, "unable to create lock file %s.lock; " | |
522 | "non-directory in the way", | |
523 | ref_file.buf); | |
524 | } | |
525 | goto error_return; | |
526 | case SCLD_VANISHED: | |
527 | /* Maybe another process was tidying up. Try again. */ | |
528 | if (--attempts_remaining > 0) | |
529 | goto retry; | |
530 | /* fall through */ | |
531 | default: | |
532 | strbuf_addf(err, "unable to create directory for %s", | |
533 | ref_file.buf); | |
534 | goto error_return; | |
535 | } | |
536 | ||
537 | if (!lock->lk) | |
538 | lock->lk = xcalloc(1, sizeof(struct lock_file)); | |
539 | ||
540 | if (hold_lock_file_for_update(lock->lk, ref_file.buf, LOCK_NO_DEREF) < 0) { | |
541 | if (errno == ENOENT && --attempts_remaining > 0) { | |
542 | /* | |
543 | * Maybe somebody just deleted one of the | |
544 | * directories leading to ref_file. Try | |
545 | * again: | |
546 | */ | |
547 | goto retry; | |
548 | } else { | |
549 | unable_to_lock_message(ref_file.buf, errno, err); | |
550 | goto error_return; | |
551 | } | |
552 | } | |
553 | ||
554 | /* | |
555 | * Now we hold the lock and can read the reference without | |
556 | * fear that its value will change. | |
557 | */ | |
558 | ||
f7b0a987 | 559 | if (files_read_raw_ref(&refs->base, refname, |
e1e33b72 | 560 | lock->old_oid.hash, referent, type)) { |
92b1551b MH |
561 | if (errno == ENOENT) { |
562 | if (mustexist) { | |
563 | /* Garden variety missing reference. */ | |
564 | strbuf_addf(err, "unable to resolve reference '%s'", | |
565 | refname); | |
566 | goto error_return; | |
567 | } else { | |
568 | /* | |
569 | * Reference is missing, but that's OK. We | |
570 | * know that there is not a conflict with | |
571 | * another loose reference because | |
572 | * (supposing that we are trying to lock | |
573 | * reference "refs/foo/bar"): | |
574 | * | |
575 | * - We were successfully able to create | |
576 | * the lockfile refs/foo/bar.lock, so we | |
577 | * know there cannot be a loose reference | |
578 | * named "refs/foo". | |
579 | * | |
580 | * - We got ENOENT and not EISDIR, so we | |
581 | * know that there cannot be a loose | |
582 | * reference named "refs/foo/bar/baz". | |
583 | */ | |
584 | } | |
585 | } else if (errno == EISDIR) { | |
586 | /* | |
587 | * There is a directory in the way. It might have | |
588 | * contained references that have been deleted. If | |
589 | * we don't require that the reference already | |
590 | * exists, try to remove the directory so that it | |
591 | * doesn't cause trouble when we want to rename the | |
592 | * lockfile into place later. | |
593 | */ | |
594 | if (mustexist) { | |
595 | /* Garden variety missing reference. */ | |
596 | strbuf_addf(err, "unable to resolve reference '%s'", | |
597 | refname); | |
598 | goto error_return; | |
599 | } else if (remove_dir_recursively(&ref_file, | |
600 | REMOVE_DIR_EMPTY_ONLY)) { | |
b05855b5 MH |
601 | if (refs_verify_refname_available( |
602 | &refs->base, refname, | |
603 | extras, skip, err)) { | |
92b1551b MH |
604 | /* |
605 | * The error message set by | |
606 | * verify_refname_available() is OK. | |
607 | */ | |
608 | ret = TRANSACTION_NAME_CONFLICT; | |
609 | goto error_return; | |
610 | } else { | |
611 | /* | |
612 | * We can't delete the directory, | |
613 | * but we also don't know of any | |
614 | * references that it should | |
615 | * contain. | |
616 | */ | |
617 | strbuf_addf(err, "there is a non-empty directory '%s' " | |
618 | "blocking reference '%s'", | |
619 | ref_file.buf, refname); | |
620 | goto error_return; | |
621 | } | |
622 | } | |
623 | } else if (errno == EINVAL && (*type & REF_ISBROKEN)) { | |
624 | strbuf_addf(err, "unable to resolve reference '%s': " | |
625 | "reference broken", refname); | |
626 | goto error_return; | |
627 | } else { | |
628 | strbuf_addf(err, "unable to resolve reference '%s': %s", | |
629 | refname, strerror(errno)); | |
630 | goto error_return; | |
631 | } | |
632 | ||
633 | /* | |
634 | * If the ref did not exist and we are creating it, | |
8ec617c8 MH |
635 | * make sure there is no existing packed ref that |
636 | * conflicts with refname: | |
92b1551b | 637 | */ |
524a9fdb | 638 | if (refs_verify_refname_available( |
8ec617c8 | 639 | refs->packed_ref_store, refname, |
524a9fdb | 640 | extras, skip, err)) |
92b1551b | 641 | goto error_return; |
92b1551b MH |
642 | } |
643 | ||
644 | ret = 0; | |
645 | goto out; | |
646 | ||
647 | error_return: | |
648 | unlock_ref(lock); | |
649 | *lock_p = NULL; | |
650 | ||
651 | out: | |
652 | strbuf_release(&ref_file); | |
653 | return ret; | |
654 | } | |
655 | ||
bd427cf2 MH |
656 | static int files_peel_ref(struct ref_store *ref_store, |
657 | const char *refname, unsigned char *sha1) | |
7bd9bcf3 | 658 | { |
9e7ec634 NTND |
659 | struct files_ref_store *refs = |
660 | files_downcast(ref_store, REF_STORE_READ | REF_STORE_ODB, | |
661 | "peel_ref"); | |
7bd9bcf3 MH |
662 | int flag; |
663 | unsigned char base[20]; | |
664 | ||
4c4de895 MH |
665 | if (current_ref_iter && current_ref_iter->refname == refname) { |
666 | struct object_id peeled; | |
667 | ||
668 | if (ref_iterator_peel(current_ref_iter, &peeled)) | |
7bd9bcf3 | 669 | return -1; |
4c4de895 | 670 | hashcpy(sha1, peeled.hash); |
7bd9bcf3 MH |
671 | return 0; |
672 | } | |
673 | ||
2f40e954 NTND |
674 | if (refs_read_ref_full(ref_store, refname, |
675 | RESOLVE_REF_READING, base, &flag)) | |
7bd9bcf3 MH |
676 | return -1; |
677 | ||
678 | /* | |
679 | * If the reference is packed, read its ref_entry from the | |
680 | * cache in the hope that we already know its peeled value. | |
681 | * We only try this optimization on packed references because | |
682 | * (a) forcing the filling of the loose reference cache could | |
683 | * be expensive and (b) loose references anyway usually do not | |
684 | * have REF_KNOWS_PEELED. | |
685 | */ | |
6dc6ba70 | 686 | if (flag & REF_ISPACKED && |
e0cc8ac8 | 687 | !refs_peel_ref(refs->packed_ref_store, refname, sha1)) |
6dc6ba70 | 688 | return 0; |
7bd9bcf3 MH |
689 | |
690 | return peel_object(base, sha1); | |
691 | } | |
692 | ||
3bc581b9 MH |
693 | struct files_ref_iterator { |
694 | struct ref_iterator base; | |
695 | ||
3bc581b9 MH |
696 | struct ref_iterator *iter0; |
697 | unsigned int flags; | |
698 | }; | |
7bd9bcf3 | 699 | |
3bc581b9 MH |
700 | static int files_ref_iterator_advance(struct ref_iterator *ref_iterator) |
701 | { | |
702 | struct files_ref_iterator *iter = | |
703 | (struct files_ref_iterator *)ref_iterator; | |
704 | int ok; | |
7bd9bcf3 | 705 | |
3bc581b9 | 706 | while ((ok = ref_iterator_advance(iter->iter0)) == ITER_OK) { |
0c09ec07 DT |
707 | if (iter->flags & DO_FOR_EACH_PER_WORKTREE_ONLY && |
708 | ref_type(iter->iter0->refname) != REF_TYPE_PER_WORKTREE) | |
709 | continue; | |
710 | ||
3bc581b9 MH |
711 | if (!(iter->flags & DO_FOR_EACH_INCLUDE_BROKEN) && |
712 | !ref_resolves_to_object(iter->iter0->refname, | |
713 | iter->iter0->oid, | |
714 | iter->iter0->flags)) | |
715 | continue; | |
716 | ||
717 | iter->base.refname = iter->iter0->refname; | |
718 | iter->base.oid = iter->iter0->oid; | |
719 | iter->base.flags = iter->iter0->flags; | |
720 | return ITER_OK; | |
7bd9bcf3 MH |
721 | } |
722 | ||
3bc581b9 MH |
723 | iter->iter0 = NULL; |
724 | if (ref_iterator_abort(ref_iterator) != ITER_DONE) | |
725 | ok = ITER_ERROR; | |
726 | ||
727 | return ok; | |
7bd9bcf3 MH |
728 | } |
729 | ||
3bc581b9 MH |
730 | static int files_ref_iterator_peel(struct ref_iterator *ref_iterator, |
731 | struct object_id *peeled) | |
7bd9bcf3 | 732 | { |
3bc581b9 MH |
733 | struct files_ref_iterator *iter = |
734 | (struct files_ref_iterator *)ref_iterator; | |
93770590 | 735 | |
3bc581b9 MH |
736 | return ref_iterator_peel(iter->iter0, peeled); |
737 | } | |
738 | ||
739 | static int files_ref_iterator_abort(struct ref_iterator *ref_iterator) | |
740 | { | |
741 | struct files_ref_iterator *iter = | |
742 | (struct files_ref_iterator *)ref_iterator; | |
743 | int ok = ITER_DONE; | |
744 | ||
745 | if (iter->iter0) | |
746 | ok = ref_iterator_abort(iter->iter0); | |
747 | ||
3bc581b9 MH |
748 | base_ref_iterator_free(ref_iterator); |
749 | return ok; | |
750 | } | |
751 | ||
752 | static struct ref_iterator_vtable files_ref_iterator_vtable = { | |
753 | files_ref_iterator_advance, | |
754 | files_ref_iterator_peel, | |
755 | files_ref_iterator_abort | |
756 | }; | |
757 | ||
1a769003 | 758 | static struct ref_iterator *files_ref_iterator_begin( |
37b6f6d5 | 759 | struct ref_store *ref_store, |
3bc581b9 MH |
760 | const char *prefix, unsigned int flags) |
761 | { | |
9e7ec634 | 762 | struct files_ref_store *refs; |
3bc581b9 MH |
763 | struct ref_iterator *loose_iter, *packed_iter; |
764 | struct files_ref_iterator *iter; | |
765 | struct ref_iterator *ref_iterator; | |
0a0865b8 | 766 | unsigned int required_flags = REF_STORE_READ; |
3bc581b9 | 767 | |
0a0865b8 MH |
768 | if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) |
769 | required_flags |= REF_STORE_ODB; | |
3bc581b9 | 770 | |
0a0865b8 | 771 | refs = files_downcast(ref_store, required_flags, "ref_iterator_begin"); |
9e7ec634 | 772 | |
3bc581b9 MH |
773 | iter = xcalloc(1, sizeof(*iter)); |
774 | ref_iterator = &iter->base; | |
775 | base_ref_iterator_init(ref_iterator, &files_ref_iterator_vtable); | |
776 | ||
777 | /* | |
778 | * We must make sure that all loose refs are read before | |
779 | * accessing the packed-refs file; this avoids a race | |
780 | * condition if loose refs are migrated to the packed-refs | |
781 | * file by a simultaneous process, but our in-memory view is | |
782 | * from before the migration. We ensure this as follows: | |
059ae35a MH |
783 | * First, we call start the loose refs iteration with its |
784 | * `prime_ref` argument set to true. This causes the loose | |
785 | * references in the subtree to be pre-read into the cache. | |
786 | * (If they've already been read, that's OK; we only need to | |
787 | * guarantee that they're read before the packed refs, not | |
788 | * *how much* before.) After that, we call | |
38b86e81 MH |
789 | * packed_ref_iterator_begin(), which internally checks |
790 | * whether the packed-ref cache is up to date with what is on | |
791 | * disk, and re-reads it if not. | |
3bc581b9 MH |
792 | */ |
793 | ||
059ae35a MH |
794 | loose_iter = cache_ref_iterator_begin(get_loose_ref_cache(refs), |
795 | prefix, 1); | |
3bc581b9 | 796 | |
38b86e81 MH |
797 | /* |
798 | * The packed-refs file might contain broken references, for | |
799 | * example an old version of a reference that points at an | |
800 | * object that has since been garbage-collected. This is OK as | |
801 | * long as there is a corresponding loose reference that | |
802 | * overrides it, and we don't want to emit an error message in | |
803 | * this case. So ask the packed_ref_store for all of its | |
804 | * references, and (if needed) do our own check for broken | |
805 | * ones in files_ref_iterator_advance(), after we have merged | |
806 | * the packed and loose references. | |
807 | */ | |
e0cc8ac8 MH |
808 | packed_iter = refs_ref_iterator_begin( |
809 | refs->packed_ref_store, prefix, 0, | |
38b86e81 | 810 | DO_FOR_EACH_INCLUDE_BROKEN); |
3bc581b9 MH |
811 | |
812 | iter->iter0 = overlay_ref_iterator_begin(loose_iter, packed_iter); | |
813 | iter->flags = flags; | |
814 | ||
815 | return ref_iterator; | |
7bd9bcf3 MH |
816 | } |
817 | ||
7bd9bcf3 MH |
818 | /* |
819 | * Verify that the reference locked by lock has the value old_sha1. | |
820 | * Fail if the reference doesn't exist and mustexist is set. Return 0 | |
821 | * on success. On error, write an error message to err, set errno, and | |
822 | * return a negative value. | |
823 | */ | |
2f40e954 | 824 | static int verify_lock(struct ref_store *ref_store, struct ref_lock *lock, |
7bd9bcf3 MH |
825 | const unsigned char *old_sha1, int mustexist, |
826 | struct strbuf *err) | |
827 | { | |
828 | assert(err); | |
829 | ||
2f40e954 NTND |
830 | if (refs_read_ref_full(ref_store, lock->ref_name, |
831 | mustexist ? RESOLVE_REF_READING : 0, | |
832 | lock->old_oid.hash, NULL)) { | |
6294dcb4 JK |
833 | if (old_sha1) { |
834 | int save_errno = errno; | |
0568c8e9 | 835 | strbuf_addf(err, "can't verify ref '%s'", lock->ref_name); |
6294dcb4 JK |
836 | errno = save_errno; |
837 | return -1; | |
838 | } else { | |
c368dde9 | 839 | oidclr(&lock->old_oid); |
6294dcb4 JK |
840 | return 0; |
841 | } | |
7bd9bcf3 | 842 | } |
6294dcb4 | 843 | if (old_sha1 && hashcmp(lock->old_oid.hash, old_sha1)) { |
0568c8e9 | 844 | strbuf_addf(err, "ref '%s' is at %s but expected %s", |
7bd9bcf3 | 845 | lock->ref_name, |
c368dde9 | 846 | oid_to_hex(&lock->old_oid), |
7bd9bcf3 MH |
847 | sha1_to_hex(old_sha1)); |
848 | errno = EBUSY; | |
849 | return -1; | |
850 | } | |
851 | return 0; | |
852 | } | |
853 | ||
854 | static int remove_empty_directories(struct strbuf *path) | |
855 | { | |
856 | /* | |
857 | * we want to create a file but there is a directory there; | |
858 | * if that is an empty directory (or a directory that contains | |
859 | * only empty directories), remove them. | |
860 | */ | |
861 | return remove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY); | |
862 | } | |
863 | ||
3b5d3c98 MH |
864 | static int create_reflock(const char *path, void *cb) |
865 | { | |
866 | struct lock_file *lk = cb; | |
867 | ||
868 | return hold_lock_file_for_update(lk, path, LOCK_NO_DEREF) < 0 ? -1 : 0; | |
869 | } | |
870 | ||
7bd9bcf3 MH |
871 | /* |
872 | * Locks a ref returning the lock on success and NULL on failure. | |
873 | * On failure errno is set to something meaningful. | |
874 | */ | |
7eb27cdf MH |
875 | static struct ref_lock *lock_ref_sha1_basic(struct files_ref_store *refs, |
876 | const char *refname, | |
7bd9bcf3 MH |
877 | const unsigned char *old_sha1, |
878 | const struct string_list *extras, | |
879 | const struct string_list *skip, | |
bcb497d0 | 880 | unsigned int flags, int *type, |
7bd9bcf3 MH |
881 | struct strbuf *err) |
882 | { | |
883 | struct strbuf ref_file = STRBUF_INIT; | |
7bd9bcf3 MH |
884 | struct ref_lock *lock; |
885 | int last_errno = 0; | |
7bd9bcf3 | 886 | int mustexist = (old_sha1 && !is_null_sha1(old_sha1)); |
7a418f3a | 887 | int resolve_flags = RESOLVE_REF_NO_RECURSE; |
7a418f3a | 888 | int resolved; |
7bd9bcf3 | 889 | |
32c597e7 | 890 | files_assert_main_repository(refs, "lock_ref_sha1_basic"); |
7bd9bcf3 MH |
891 | assert(err); |
892 | ||
893 | lock = xcalloc(1, sizeof(struct ref_lock)); | |
894 | ||
895 | if (mustexist) | |
896 | resolve_flags |= RESOLVE_REF_READING; | |
2859dcd4 | 897 | if (flags & REF_DELETING) |
7bd9bcf3 | 898 | resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME; |
7bd9bcf3 | 899 | |
19e02f4f | 900 | files_ref_path(refs, &ref_file, refname); |
2f40e954 NTND |
901 | resolved = !!refs_resolve_ref_unsafe(&refs->base, |
902 | refname, resolve_flags, | |
903 | lock->old_oid.hash, type); | |
7a418f3a | 904 | if (!resolved && errno == EISDIR) { |
7bd9bcf3 MH |
905 | /* |
906 | * we are trying to lock foo but we used to | |
907 | * have foo/bar which now does not exist; | |
908 | * it is normal for the empty directory 'foo' | |
909 | * to remain. | |
910 | */ | |
7a418f3a | 911 | if (remove_empty_directories(&ref_file)) { |
7bd9bcf3 | 912 | last_errno = errno; |
b05855b5 MH |
913 | if (!refs_verify_refname_available( |
914 | &refs->base, | |
915 | refname, extras, skip, err)) | |
7bd9bcf3 | 916 | strbuf_addf(err, "there are still refs under '%s'", |
7a418f3a | 917 | refname); |
7bd9bcf3 MH |
918 | goto error_return; |
919 | } | |
2f40e954 NTND |
920 | resolved = !!refs_resolve_ref_unsafe(&refs->base, |
921 | refname, resolve_flags, | |
922 | lock->old_oid.hash, type); | |
7bd9bcf3 | 923 | } |
7a418f3a | 924 | if (!resolved) { |
7bd9bcf3 MH |
925 | last_errno = errno; |
926 | if (last_errno != ENOTDIR || | |
b05855b5 MH |
927 | !refs_verify_refname_available(&refs->base, refname, |
928 | extras, skip, err)) | |
0568c8e9 | 929 | strbuf_addf(err, "unable to resolve reference '%s': %s", |
7a418f3a | 930 | refname, strerror(last_errno)); |
7bd9bcf3 MH |
931 | |
932 | goto error_return; | |
933 | } | |
2859dcd4 | 934 | |
7bd9bcf3 MH |
935 | /* |
936 | * If the ref did not exist and we are creating it, make sure | |
937 | * there is no existing packed ref whose name begins with our | |
938 | * refname, nor a packed ref whose name is a proper prefix of | |
939 | * our refname. | |
940 | */ | |
941 | if (is_null_oid(&lock->old_oid) && | |
8ec617c8 | 942 | refs_verify_refname_available(refs->packed_ref_store, refname, |
524a9fdb | 943 | extras, skip, err)) { |
7bd9bcf3 MH |
944 | last_errno = ENOTDIR; |
945 | goto error_return; | |
946 | } | |
947 | ||
948 | lock->lk = xcalloc(1, sizeof(struct lock_file)); | |
949 | ||
7bd9bcf3 | 950 | lock->ref_name = xstrdup(refname); |
7bd9bcf3 | 951 | |
3b5d3c98 | 952 | if (raceproof_create_file(ref_file.buf, create_reflock, lock->lk)) { |
7bd9bcf3 | 953 | last_errno = errno; |
3b5d3c98 | 954 | unable_to_lock_message(ref_file.buf, errno, err); |
7bd9bcf3 MH |
955 | goto error_return; |
956 | } | |
957 | ||
2f40e954 | 958 | if (verify_lock(&refs->base, lock, old_sha1, mustexist, err)) { |
7bd9bcf3 MH |
959 | last_errno = errno; |
960 | goto error_return; | |
961 | } | |
962 | goto out; | |
963 | ||
964 | error_return: | |
965 | unlock_ref(lock); | |
966 | lock = NULL; | |
967 | ||
968 | out: | |
969 | strbuf_release(&ref_file); | |
7bd9bcf3 MH |
970 | errno = last_errno; |
971 | return lock; | |
972 | } | |
973 | ||
7bd9bcf3 MH |
974 | struct ref_to_prune { |
975 | struct ref_to_prune *next; | |
976 | unsigned char sha1[20]; | |
977 | char name[FLEX_ARRAY]; | |
978 | }; | |
979 | ||
a8f0db2d MH |
980 | enum { |
981 | REMOVE_EMPTY_PARENTS_REF = 0x01, | |
982 | REMOVE_EMPTY_PARENTS_REFLOG = 0x02 | |
983 | }; | |
984 | ||
7bd9bcf3 | 985 | /* |
a8f0db2d MH |
986 | * Remove empty parent directories associated with the specified |
987 | * reference and/or its reflog, but spare [logs/]refs/ and immediate | |
988 | * subdirs. flags is a combination of REMOVE_EMPTY_PARENTS_REF and/or | |
989 | * REMOVE_EMPTY_PARENTS_REFLOG. | |
7bd9bcf3 | 990 | */ |
802de3da NTND |
991 | static void try_remove_empty_parents(struct files_ref_store *refs, |
992 | const char *refname, | |
993 | unsigned int flags) | |
7bd9bcf3 | 994 | { |
8bdaecb4 | 995 | struct strbuf buf = STRBUF_INIT; |
e9dcc305 | 996 | struct strbuf sb = STRBUF_INIT; |
7bd9bcf3 MH |
997 | char *p, *q; |
998 | int i; | |
8bdaecb4 MH |
999 | |
1000 | strbuf_addstr(&buf, refname); | |
1001 | p = buf.buf; | |
7bd9bcf3 MH |
1002 | for (i = 0; i < 2; i++) { /* refs/{heads,tags,...}/ */ |
1003 | while (*p && *p != '/') | |
1004 | p++; | |
1005 | /* tolerate duplicate slashes; see check_refname_format() */ | |
1006 | while (*p == '/') | |
1007 | p++; | |
1008 | } | |
8bdaecb4 | 1009 | q = buf.buf + buf.len; |
a8f0db2d | 1010 | while (flags & (REMOVE_EMPTY_PARENTS_REF | REMOVE_EMPTY_PARENTS_REFLOG)) { |
7bd9bcf3 MH |
1011 | while (q > p && *q != '/') |
1012 | q--; | |
1013 | while (q > p && *(q-1) == '/') | |
1014 | q--; | |
1015 | if (q == p) | |
1016 | break; | |
8bdaecb4 | 1017 | strbuf_setlen(&buf, q - buf.buf); |
e9dcc305 NTND |
1018 | |
1019 | strbuf_reset(&sb); | |
19e02f4f | 1020 | files_ref_path(refs, &sb, buf.buf); |
e9dcc305 | 1021 | if ((flags & REMOVE_EMPTY_PARENTS_REF) && rmdir(sb.buf)) |
a8f0db2d | 1022 | flags &= ~REMOVE_EMPTY_PARENTS_REF; |
e9dcc305 NTND |
1023 | |
1024 | strbuf_reset(&sb); | |
802de3da | 1025 | files_reflog_path(refs, &sb, buf.buf); |
e9dcc305 | 1026 | if ((flags & REMOVE_EMPTY_PARENTS_REFLOG) && rmdir(sb.buf)) |
a8f0db2d | 1027 | flags &= ~REMOVE_EMPTY_PARENTS_REFLOG; |
7bd9bcf3 | 1028 | } |
8bdaecb4 | 1029 | strbuf_release(&buf); |
e9dcc305 | 1030 | strbuf_release(&sb); |
7bd9bcf3 MH |
1031 | } |
1032 | ||
1033 | /* make sure nobody touched the ref, and unlink */ | |
2f40e954 | 1034 | static void prune_ref(struct files_ref_store *refs, struct ref_to_prune *r) |
7bd9bcf3 MH |
1035 | { |
1036 | struct ref_transaction *transaction; | |
1037 | struct strbuf err = STRBUF_INIT; | |
1038 | ||
1039 | if (check_refname_format(r->name, 0)) | |
1040 | return; | |
1041 | ||
2f40e954 | 1042 | transaction = ref_store_transaction_begin(&refs->base, &err); |
7bd9bcf3 MH |
1043 | if (!transaction || |
1044 | ref_transaction_delete(transaction, r->name, r->sha1, | |
c52ce248 | 1045 | REF_ISPRUNING | REF_NODEREF, NULL, &err) || |
7bd9bcf3 MH |
1046 | ref_transaction_commit(transaction, &err)) { |
1047 | ref_transaction_free(transaction); | |
1048 | error("%s", err.buf); | |
1049 | strbuf_release(&err); | |
1050 | return; | |
1051 | } | |
1052 | ref_transaction_free(transaction); | |
1053 | strbuf_release(&err); | |
7bd9bcf3 MH |
1054 | } |
1055 | ||
2f40e954 | 1056 | static void prune_refs(struct files_ref_store *refs, struct ref_to_prune *r) |
7bd9bcf3 MH |
1057 | { |
1058 | while (r) { | |
2f40e954 | 1059 | prune_ref(refs, r); |
7bd9bcf3 MH |
1060 | r = r->next; |
1061 | } | |
1062 | } | |
1063 | ||
531cc4a5 MH |
1064 | /* |
1065 | * Return true if the specified reference should be packed. | |
1066 | */ | |
1067 | static int should_pack_ref(const char *refname, | |
1068 | const struct object_id *oid, unsigned int ref_flags, | |
1069 | unsigned int pack_flags) | |
1070 | { | |
1071 | /* Do not pack per-worktree refs: */ | |
1072 | if (ref_type(refname) != REF_TYPE_NORMAL) | |
1073 | return 0; | |
1074 | ||
1075 | /* Do not pack non-tags unless PACK_REFS_ALL is set: */ | |
1076 | if (!(pack_flags & PACK_REFS_ALL) && !starts_with(refname, "refs/tags/")) | |
1077 | return 0; | |
1078 | ||
1079 | /* Do not pack symbolic refs: */ | |
1080 | if (ref_flags & REF_ISSYMREF) | |
1081 | return 0; | |
1082 | ||
1083 | /* Do not pack broken refs: */ | |
1084 | if (!ref_resolves_to_object(refname, oid, ref_flags)) | |
1085 | return 0; | |
1086 | ||
1087 | return 1; | |
1088 | } | |
1089 | ||
8231527e | 1090 | static int files_pack_refs(struct ref_store *ref_store, unsigned int flags) |
7bd9bcf3 | 1091 | { |
00eebe35 | 1092 | struct files_ref_store *refs = |
9e7ec634 NTND |
1093 | files_downcast(ref_store, REF_STORE_WRITE | REF_STORE_ODB, |
1094 | "pack_refs"); | |
50c2d855 | 1095 | struct ref_iterator *iter; |
50c2d855 MH |
1096 | int ok; |
1097 | struct ref_to_prune *refs_to_prune = NULL; | |
3478983b | 1098 | struct strbuf err = STRBUF_INIT; |
7bd9bcf3 | 1099 | |
c8bed835 | 1100 | packed_refs_lock(refs->packed_ref_store, LOCK_DIE_ON_ERROR, &err); |
50c2d855 MH |
1101 | |
1102 | iter = cache_ref_iterator_begin(get_loose_ref_cache(refs), NULL, 0); | |
1103 | while ((ok = ref_iterator_advance(iter)) == ITER_OK) { | |
1104 | /* | |
1105 | * If the loose reference can be packed, add an entry | |
1106 | * in the packed ref cache. If the reference should be | |
1107 | * pruned, also add it to refs_to_prune. | |
1108 | */ | |
531cc4a5 MH |
1109 | if (!should_pack_ref(iter->refname, iter->oid, iter->flags, |
1110 | flags)) | |
50c2d855 MH |
1111 | continue; |
1112 | ||
1113 | /* | |
1114 | * Create an entry in the packed-refs cache equivalent | |
1115 | * to the one from the loose ref cache, except that | |
1116 | * we don't copy the peeled status, because we want it | |
1117 | * to be re-peeled. | |
1118 | */ | |
e70b7029 | 1119 | add_packed_ref(refs->packed_ref_store, iter->refname, iter->oid); |
50c2d855 MH |
1120 | |
1121 | /* Schedule the loose reference for pruning if requested. */ | |
1122 | if ((flags & PACK_REFS_PRUNE)) { | |
1123 | struct ref_to_prune *n; | |
1124 | FLEX_ALLOC_STR(n, name, iter->refname); | |
1125 | hashcpy(n->sha1, iter->oid->hash); | |
1126 | n->next = refs_to_prune; | |
1127 | refs_to_prune = n; | |
1128 | } | |
1129 | } | |
1130 | if (ok != ITER_DONE) | |
1131 | die("error while iterating over references"); | |
7bd9bcf3 | 1132 | |
3478983b MH |
1133 | if (commit_packed_refs(refs->packed_ref_store, &err)) |
1134 | die("unable to overwrite old ref-pack file: %s", err.buf); | |
42c7f7ff | 1135 | packed_refs_unlock(refs->packed_ref_store); |
7bd9bcf3 | 1136 | |
50c2d855 | 1137 | prune_refs(refs, refs_to_prune); |
3478983b | 1138 | strbuf_release(&err); |
7bd9bcf3 MH |
1139 | return 0; |
1140 | } | |
1141 | ||
64da4199 | 1142 | static int files_delete_refs(struct ref_store *ref_store, const char *msg, |
a27dcf89 | 1143 | struct string_list *refnames, unsigned int flags) |
7bd9bcf3 | 1144 | { |
0a95ac5f | 1145 | struct files_ref_store *refs = |
9e7ec634 | 1146 | files_downcast(ref_store, REF_STORE_WRITE, "delete_refs"); |
7bd9bcf3 MH |
1147 | struct strbuf err = STRBUF_INIT; |
1148 | int i, result = 0; | |
1149 | ||
1150 | if (!refnames->nr) | |
1151 | return 0; | |
1152 | ||
e5cc7d7d MH |
1153 | if (packed_refs_lock(refs->packed_ref_store, 0, &err)) |
1154 | goto error; | |
7bd9bcf3 | 1155 | |
e5cc7d7d MH |
1156 | if (repack_without_refs(refs->packed_ref_store, refnames, &err)) { |
1157 | packed_refs_unlock(refs->packed_ref_store); | |
1158 | goto error; | |
7bd9bcf3 MH |
1159 | } |
1160 | ||
e5cc7d7d MH |
1161 | packed_refs_unlock(refs->packed_ref_store); |
1162 | ||
7bd9bcf3 MH |
1163 | for (i = 0; i < refnames->nr; i++) { |
1164 | const char *refname = refnames->items[i].string; | |
1165 | ||
64da4199 | 1166 | if (refs_delete_ref(&refs->base, msg, refname, NULL, flags)) |
7bd9bcf3 MH |
1167 | result |= error(_("could not remove reference %s"), refname); |
1168 | } | |
1169 | ||
7bd9bcf3 MH |
1170 | strbuf_release(&err); |
1171 | return result; | |
e5cc7d7d MH |
1172 | |
1173 | error: | |
1174 | /* | |
1175 | * If we failed to rewrite the packed-refs file, then it is | |
1176 | * unsafe to try to remove loose refs, because doing so might | |
1177 | * expose an obsolete packed value for a reference that might | |
1178 | * even point at an object that has been garbage collected. | |
1179 | */ | |
1180 | if (refnames->nr == 1) | |
1181 | error(_("could not delete reference %s: %s"), | |
1182 | refnames->items[0].string, err.buf); | |
1183 | else | |
1184 | error(_("could not delete references: %s"), err.buf); | |
1185 | ||
1186 | strbuf_release(&err); | |
1187 | return -1; | |
7bd9bcf3 MH |
1188 | } |
1189 | ||
1190 | /* | |
1191 | * People using contrib's git-new-workdir have .git/logs/refs -> | |
1192 | * /some/other/path/.git/logs/refs, and that may live on another device. | |
1193 | * | |
1194 | * IOW, to avoid cross device rename errors, the temporary renamed log must | |
1195 | * live into logs/refs. | |
1196 | */ | |
a5c1efd6 | 1197 | #define TMP_RENAMED_LOG "refs/.tmp-renamed-log" |
7bd9bcf3 | 1198 | |
e9dcc305 NTND |
1199 | struct rename_cb { |
1200 | const char *tmp_renamed_log; | |
1201 | int true_errno; | |
1202 | }; | |
1203 | ||
1204 | static int rename_tmp_log_callback(const char *path, void *cb_data) | |
7bd9bcf3 | 1205 | { |
e9dcc305 | 1206 | struct rename_cb *cb = cb_data; |
7bd9bcf3 | 1207 | |
e9dcc305 | 1208 | if (rename(cb->tmp_renamed_log, path)) { |
6a7f3631 MH |
1209 | /* |
1210 | * rename(a, b) when b is an existing directory ought | |
1211 | * to result in ISDIR, but Solaris 5.8 gives ENOTDIR. | |
1212 | * Sheesh. Record the true errno for error reporting, | |
1213 | * but report EISDIR to raceproof_create_file() so | |
1214 | * that it knows to retry. | |
1215 | */ | |
e9dcc305 | 1216 | cb->true_errno = errno; |
6a7f3631 MH |
1217 | if (errno == ENOTDIR) |
1218 | errno = EISDIR; | |
1219 | return -1; | |
1220 | } else { | |
1221 | return 0; | |
7bd9bcf3 | 1222 | } |
6a7f3631 | 1223 | } |
7bd9bcf3 | 1224 | |
802de3da | 1225 | static int rename_tmp_log(struct files_ref_store *refs, const char *newrefname) |
6a7f3631 | 1226 | { |
e9dcc305 NTND |
1227 | struct strbuf path = STRBUF_INIT; |
1228 | struct strbuf tmp = STRBUF_INIT; | |
1229 | struct rename_cb cb; | |
1230 | int ret; | |
6a7f3631 | 1231 | |
802de3da NTND |
1232 | files_reflog_path(refs, &path, newrefname); |
1233 | files_reflog_path(refs, &tmp, TMP_RENAMED_LOG); | |
e9dcc305 NTND |
1234 | cb.tmp_renamed_log = tmp.buf; |
1235 | ret = raceproof_create_file(path.buf, rename_tmp_log_callback, &cb); | |
6a7f3631 MH |
1236 | if (ret) { |
1237 | if (errno == EISDIR) | |
e9dcc305 | 1238 | error("directory not empty: %s", path.buf); |
6a7f3631 | 1239 | else |
990c98d2 | 1240 | error("unable to move logfile %s to %s: %s", |
e9dcc305 NTND |
1241 | tmp.buf, path.buf, |
1242 | strerror(cb.true_errno)); | |
7bd9bcf3 | 1243 | } |
6a7f3631 | 1244 | |
e9dcc305 NTND |
1245 | strbuf_release(&path); |
1246 | strbuf_release(&tmp); | |
7bd9bcf3 MH |
1247 | return ret; |
1248 | } | |
1249 | ||
7bd9bcf3 | 1250 | static int write_ref_to_lockfile(struct ref_lock *lock, |
4417df8c | 1251 | const struct object_id *oid, struct strbuf *err); |
f18a7892 MH |
1252 | static int commit_ref_update(struct files_ref_store *refs, |
1253 | struct ref_lock *lock, | |
4417df8c | 1254 | const struct object_id *oid, const char *logmsg, |
5d9b2de4 | 1255 | struct strbuf *err); |
7bd9bcf3 | 1256 | |
9b6b40d9 DT |
1257 | static int files_rename_ref(struct ref_store *ref_store, |
1258 | const char *oldrefname, const char *newrefname, | |
1259 | const char *logmsg) | |
7bd9bcf3 | 1260 | { |
9b6b40d9 | 1261 | struct files_ref_store *refs = |
9e7ec634 | 1262 | files_downcast(ref_store, REF_STORE_WRITE, "rename_ref"); |
4417df8c | 1263 | struct object_id oid, orig_oid; |
7bd9bcf3 MH |
1264 | int flag = 0, logmoved = 0; |
1265 | struct ref_lock *lock; | |
1266 | struct stat loginfo; | |
e9dcc305 NTND |
1267 | struct strbuf sb_oldref = STRBUF_INIT; |
1268 | struct strbuf sb_newref = STRBUF_INIT; | |
1269 | struct strbuf tmp_renamed_log = STRBUF_INIT; | |
1270 | int log, ret; | |
7bd9bcf3 MH |
1271 | struct strbuf err = STRBUF_INIT; |
1272 | ||
802de3da NTND |
1273 | files_reflog_path(refs, &sb_oldref, oldrefname); |
1274 | files_reflog_path(refs, &sb_newref, newrefname); | |
1275 | files_reflog_path(refs, &tmp_renamed_log, TMP_RENAMED_LOG); | |
e9dcc305 NTND |
1276 | |
1277 | log = !lstat(sb_oldref.buf, &loginfo); | |
0a3f07d6 NTND |
1278 | if (log && S_ISLNK(loginfo.st_mode)) { |
1279 | ret = error("reflog for %s is a symlink", oldrefname); | |
1280 | goto out; | |
1281 | } | |
7bd9bcf3 | 1282 | |
2f40e954 NTND |
1283 | if (!refs_resolve_ref_unsafe(&refs->base, oldrefname, |
1284 | RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE, | |
4417df8c | 1285 | orig_oid.hash, &flag)) { |
0a3f07d6 NTND |
1286 | ret = error("refname %s not found", oldrefname); |
1287 | goto out; | |
1288 | } | |
e711b1af | 1289 | |
0a3f07d6 NTND |
1290 | if (flag & REF_ISSYMREF) { |
1291 | ret = error("refname %s is a symbolic ref, renaming it is not supported", | |
1292 | oldrefname); | |
1293 | goto out; | |
1294 | } | |
7d2df051 | 1295 | if (!refs_rename_ref_available(&refs->base, oldrefname, newrefname)) { |
0a3f07d6 NTND |
1296 | ret = 1; |
1297 | goto out; | |
1298 | } | |
7bd9bcf3 | 1299 | |
e9dcc305 | 1300 | if (log && rename(sb_oldref.buf, tmp_renamed_log.buf)) { |
a5c1efd6 | 1301 | ret = error("unable to move logfile logs/%s to logs/"TMP_RENAMED_LOG": %s", |
0a3f07d6 NTND |
1302 | oldrefname, strerror(errno)); |
1303 | goto out; | |
1304 | } | |
7bd9bcf3 | 1305 | |
2f40e954 | 1306 | if (refs_delete_ref(&refs->base, logmsg, oldrefname, |
4417df8c | 1307 | orig_oid.hash, REF_NODEREF)) { |
7bd9bcf3 MH |
1308 | error("unable to delete old %s", oldrefname); |
1309 | goto rollback; | |
1310 | } | |
1311 | ||
12fd3496 | 1312 | /* |
4417df8c | 1313 | * Since we are doing a shallow lookup, oid is not the |
1314 | * correct value to pass to delete_ref as old_oid. But that | |
1315 | * doesn't matter, because an old_oid check wouldn't add to | |
12fd3496 DT |
1316 | * the safety anyway; we want to delete the reference whatever |
1317 | * its current value. | |
1318 | */ | |
2f40e954 NTND |
1319 | if (!refs_read_ref_full(&refs->base, newrefname, |
1320 | RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE, | |
4417df8c | 1321 | oid.hash, NULL) && |
2f40e954 NTND |
1322 | refs_delete_ref(&refs->base, NULL, newrefname, |
1323 | NULL, REF_NODEREF)) { | |
58364324 | 1324 | if (errno == EISDIR) { |
7bd9bcf3 MH |
1325 | struct strbuf path = STRBUF_INIT; |
1326 | int result; | |
1327 | ||
19e02f4f | 1328 | files_ref_path(refs, &path, newrefname); |
7bd9bcf3 MH |
1329 | result = remove_empty_directories(&path); |
1330 | strbuf_release(&path); | |
1331 | ||
1332 | if (result) { | |
1333 | error("Directory not empty: %s", newrefname); | |
1334 | goto rollback; | |
1335 | } | |
1336 | } else { | |
1337 | error("unable to delete existing %s", newrefname); | |
1338 | goto rollback; | |
1339 | } | |
1340 | } | |
1341 | ||
802de3da | 1342 | if (log && rename_tmp_log(refs, newrefname)) |
7bd9bcf3 MH |
1343 | goto rollback; |
1344 | ||
1345 | logmoved = log; | |
1346 | ||
7eb27cdf MH |
1347 | lock = lock_ref_sha1_basic(refs, newrefname, NULL, NULL, NULL, |
1348 | REF_NODEREF, NULL, &err); | |
7bd9bcf3 MH |
1349 | if (!lock) { |
1350 | error("unable to rename '%s' to '%s': %s", oldrefname, newrefname, err.buf); | |
1351 | strbuf_release(&err); | |
1352 | goto rollback; | |
1353 | } | |
4417df8c | 1354 | oidcpy(&lock->old_oid, &orig_oid); |
7bd9bcf3 | 1355 | |
4417df8c | 1356 | if (write_ref_to_lockfile(lock, &orig_oid, &err) || |
1357 | commit_ref_update(refs, lock, &orig_oid, logmsg, &err)) { | |
7bd9bcf3 MH |
1358 | error("unable to write current sha1 into %s: %s", newrefname, err.buf); |
1359 | strbuf_release(&err); | |
1360 | goto rollback; | |
1361 | } | |
1362 | ||
0a3f07d6 NTND |
1363 | ret = 0; |
1364 | goto out; | |
7bd9bcf3 MH |
1365 | |
1366 | rollback: | |
7eb27cdf MH |
1367 | lock = lock_ref_sha1_basic(refs, oldrefname, NULL, NULL, NULL, |
1368 | REF_NODEREF, NULL, &err); | |
7bd9bcf3 MH |
1369 | if (!lock) { |
1370 | error("unable to lock %s for rollback: %s", oldrefname, err.buf); | |
1371 | strbuf_release(&err); | |
1372 | goto rollbacklog; | |
1373 | } | |
1374 | ||
1375 | flag = log_all_ref_updates; | |
341fb286 | 1376 | log_all_ref_updates = LOG_REFS_NONE; |
4417df8c | 1377 | if (write_ref_to_lockfile(lock, &orig_oid, &err) || |
1378 | commit_ref_update(refs, lock, &orig_oid, NULL, &err)) { | |
7bd9bcf3 MH |
1379 | error("unable to write current sha1 into %s: %s", oldrefname, err.buf); |
1380 | strbuf_release(&err); | |
1381 | } | |
1382 | log_all_ref_updates = flag; | |
1383 | ||
1384 | rollbacklog: | |
e9dcc305 | 1385 | if (logmoved && rename(sb_newref.buf, sb_oldref.buf)) |
7bd9bcf3 MH |
1386 | error("unable to restore logfile %s from %s: %s", |
1387 | oldrefname, newrefname, strerror(errno)); | |
1388 | if (!logmoved && log && | |
e9dcc305 | 1389 | rename(tmp_renamed_log.buf, sb_oldref.buf)) |
a5c1efd6 | 1390 | error("unable to restore logfile %s from logs/"TMP_RENAMED_LOG": %s", |
7bd9bcf3 | 1391 | oldrefname, strerror(errno)); |
0a3f07d6 NTND |
1392 | ret = 1; |
1393 | out: | |
e9dcc305 NTND |
1394 | strbuf_release(&sb_newref); |
1395 | strbuf_release(&sb_oldref); | |
1396 | strbuf_release(&tmp_renamed_log); | |
1397 | ||
0a3f07d6 | 1398 | return ret; |
7bd9bcf3 MH |
1399 | } |
1400 | ||
1401 | static int close_ref(struct ref_lock *lock) | |
1402 | { | |
1403 | if (close_lock_file(lock->lk)) | |
1404 | return -1; | |
1405 | return 0; | |
1406 | } | |
1407 | ||
1408 | static int commit_ref(struct ref_lock *lock) | |
1409 | { | |
5387c0d8 MH |
1410 | char *path = get_locked_file_path(lock->lk); |
1411 | struct stat st; | |
1412 | ||
1413 | if (!lstat(path, &st) && S_ISDIR(st.st_mode)) { | |
1414 | /* | |
1415 | * There is a directory at the path we want to rename | |
1416 | * the lockfile to. Hopefully it is empty; try to | |
1417 | * delete it. | |
1418 | */ | |
1419 | size_t len = strlen(path); | |
1420 | struct strbuf sb_path = STRBUF_INIT; | |
1421 | ||
1422 | strbuf_attach(&sb_path, path, len, len); | |
1423 | ||
1424 | /* | |
1425 | * If this fails, commit_lock_file() will also fail | |
1426 | * and will report the problem. | |
1427 | */ | |
1428 | remove_empty_directories(&sb_path); | |
1429 | strbuf_release(&sb_path); | |
1430 | } else { | |
1431 | free(path); | |
1432 | } | |
1433 | ||
7bd9bcf3 MH |
1434 | if (commit_lock_file(lock->lk)) |
1435 | return -1; | |
1436 | return 0; | |
1437 | } | |
1438 | ||
1fb0c809 MH |
1439 | static int open_or_create_logfile(const char *path, void *cb) |
1440 | { | |
1441 | int *fd = cb; | |
1442 | ||
1443 | *fd = open(path, O_APPEND | O_WRONLY | O_CREAT, 0666); | |
1444 | return (*fd < 0) ? -1 : 0; | |
1445 | } | |
1446 | ||
7bd9bcf3 | 1447 | /* |
4533e534 MH |
1448 | * Create a reflog for a ref. If force_create = 0, only create the |
1449 | * reflog for certain refs (those for which should_autocreate_reflog | |
1450 | * returns non-zero). Otherwise, create it regardless of the reference | |
1451 | * name. If the logfile already existed or was created, return 0 and | |
1452 | * set *logfd to the file descriptor opened for appending to the file. | |
1453 | * If no logfile exists and we decided not to create one, return 0 and | |
1454 | * set *logfd to -1. On failure, fill in *err, set *logfd to -1, and | |
1455 | * return -1. | |
7bd9bcf3 | 1456 | */ |
802de3da NTND |
1457 | static int log_ref_setup(struct files_ref_store *refs, |
1458 | const char *refname, int force_create, | |
4533e534 | 1459 | int *logfd, struct strbuf *err) |
7bd9bcf3 | 1460 | { |
802de3da NTND |
1461 | struct strbuf logfile_sb = STRBUF_INIT; |
1462 | char *logfile; | |
1463 | ||
1464 | files_reflog_path(refs, &logfile_sb, refname); | |
1465 | logfile = strbuf_detach(&logfile_sb, NULL); | |
7bd9bcf3 | 1466 | |
7bd9bcf3 | 1467 | if (force_create || should_autocreate_reflog(refname)) { |
4533e534 | 1468 | if (raceproof_create_file(logfile, open_or_create_logfile, logfd)) { |
1fb0c809 MH |
1469 | if (errno == ENOENT) |
1470 | strbuf_addf(err, "unable to create directory for '%s': " | |
4533e534 | 1471 | "%s", logfile, strerror(errno)); |
1fb0c809 MH |
1472 | else if (errno == EISDIR) |
1473 | strbuf_addf(err, "there are still logs under '%s'", | |
4533e534 | 1474 | logfile); |
1fb0c809 | 1475 | else |
854bda6b | 1476 | strbuf_addf(err, "unable to append to '%s': %s", |
4533e534 | 1477 | logfile, strerror(errno)); |
7bd9bcf3 | 1478 | |
4533e534 | 1479 | goto error; |
7bd9bcf3 | 1480 | } |
854bda6b | 1481 | } else { |
4533e534 | 1482 | *logfd = open(logfile, O_APPEND | O_WRONLY, 0666); |
e404f459 | 1483 | if (*logfd < 0) { |
854bda6b MH |
1484 | if (errno == ENOENT || errno == EISDIR) { |
1485 | /* | |
1486 | * The logfile doesn't already exist, | |
1487 | * but that is not an error; it only | |
1488 | * means that we won't write log | |
1489 | * entries to it. | |
1490 | */ | |
1491 | ; | |
1492 | } else { | |
1493 | strbuf_addf(err, "unable to append to '%s': %s", | |
4533e534 MH |
1494 | logfile, strerror(errno)); |
1495 | goto error; | |
854bda6b | 1496 | } |
7bd9bcf3 MH |
1497 | } |
1498 | } | |
1499 | ||
e404f459 | 1500 | if (*logfd >= 0) |
4533e534 | 1501 | adjust_shared_perm(logfile); |
854bda6b | 1502 | |
4533e534 | 1503 | free(logfile); |
7bd9bcf3 | 1504 | return 0; |
7bd9bcf3 | 1505 | |
4533e534 MH |
1506 | error: |
1507 | free(logfile); | |
1508 | return -1; | |
7bd9bcf3 | 1509 | } |
7bd9bcf3 | 1510 | |
e3688bd6 DT |
1511 | static int files_create_reflog(struct ref_store *ref_store, |
1512 | const char *refname, int force_create, | |
1513 | struct strbuf *err) | |
7bd9bcf3 | 1514 | { |
802de3da | 1515 | struct files_ref_store *refs = |
9e7ec634 | 1516 | files_downcast(ref_store, REF_STORE_WRITE, "create_reflog"); |
e404f459 | 1517 | int fd; |
7bd9bcf3 | 1518 | |
802de3da | 1519 | if (log_ref_setup(refs, refname, force_create, &fd, err)) |
4533e534 MH |
1520 | return -1; |
1521 | ||
e404f459 MH |
1522 | if (fd >= 0) |
1523 | close(fd); | |
4533e534 MH |
1524 | |
1525 | return 0; | |
7bd9bcf3 MH |
1526 | } |
1527 | ||
4417df8c | 1528 | static int log_ref_write_fd(int fd, const struct object_id *old_oid, |
1529 | const struct object_id *new_oid, | |
7bd9bcf3 MH |
1530 | const char *committer, const char *msg) |
1531 | { | |
1532 | int msglen, written; | |
1533 | unsigned maxlen, len; | |
1534 | char *logrec; | |
1535 | ||
1536 | msglen = msg ? strlen(msg) : 0; | |
1537 | maxlen = strlen(committer) + msglen + 100; | |
1538 | logrec = xmalloc(maxlen); | |
1539 | len = xsnprintf(logrec, maxlen, "%s %s %s\n", | |
4417df8c | 1540 | oid_to_hex(old_oid), |
1541 | oid_to_hex(new_oid), | |
7bd9bcf3 MH |
1542 | committer); |
1543 | if (msglen) | |
1544 | len += copy_reflog_msg(logrec + len - 1, msg) - 1; | |
1545 | ||
1546 | written = len <= maxlen ? write_in_full(fd, logrec, len) : -1; | |
1547 | free(logrec); | |
1548 | if (written != len) | |
1549 | return -1; | |
1550 | ||
1551 | return 0; | |
1552 | } | |
1553 | ||
802de3da | 1554 | static int files_log_ref_write(struct files_ref_store *refs, |
4417df8c | 1555 | const char *refname, const struct object_id *old_oid, |
1556 | const struct object_id *new_oid, const char *msg, | |
11f8457f | 1557 | int flags, struct strbuf *err) |
7bd9bcf3 | 1558 | { |
e404f459 | 1559 | int logfd, result; |
7bd9bcf3 | 1560 | |
341fb286 CW |
1561 | if (log_all_ref_updates == LOG_REFS_UNSET) |
1562 | log_all_ref_updates = is_bare_repository() ? LOG_REFS_NONE : LOG_REFS_NORMAL; | |
7bd9bcf3 | 1563 | |
802de3da NTND |
1564 | result = log_ref_setup(refs, refname, |
1565 | flags & REF_FORCE_CREATE_REFLOG, | |
4533e534 | 1566 | &logfd, err); |
7bd9bcf3 MH |
1567 | |
1568 | if (result) | |
1569 | return result; | |
1570 | ||
7bd9bcf3 MH |
1571 | if (logfd < 0) |
1572 | return 0; | |
4417df8c | 1573 | result = log_ref_write_fd(logfd, old_oid, new_oid, |
7bd9bcf3 MH |
1574 | git_committer_info(0), msg); |
1575 | if (result) { | |
e9dcc305 | 1576 | struct strbuf sb = STRBUF_INIT; |
87b21e05 MH |
1577 | int save_errno = errno; |
1578 | ||
802de3da | 1579 | files_reflog_path(refs, &sb, refname); |
87b21e05 | 1580 | strbuf_addf(err, "unable to append to '%s': %s", |
e9dcc305 NTND |
1581 | sb.buf, strerror(save_errno)); |
1582 | strbuf_release(&sb); | |
7bd9bcf3 MH |
1583 | close(logfd); |
1584 | return -1; | |
1585 | } | |
1586 | if (close(logfd)) { | |
e9dcc305 | 1587 | struct strbuf sb = STRBUF_INIT; |
87b21e05 MH |
1588 | int save_errno = errno; |
1589 | ||
802de3da | 1590 | files_reflog_path(refs, &sb, refname); |
87b21e05 | 1591 | strbuf_addf(err, "unable to append to '%s': %s", |
e9dcc305 NTND |
1592 | sb.buf, strerror(save_errno)); |
1593 | strbuf_release(&sb); | |
7bd9bcf3 MH |
1594 | return -1; |
1595 | } | |
1596 | return 0; | |
1597 | } | |
1598 | ||
7bd9bcf3 MH |
1599 | /* |
1600 | * Write sha1 into the open lockfile, then close the lockfile. On | |
1601 | * errors, rollback the lockfile, fill in *err and | |
1602 | * return -1. | |
1603 | */ | |
1604 | static int write_ref_to_lockfile(struct ref_lock *lock, | |
4417df8c | 1605 | const struct object_id *oid, struct strbuf *err) |
7bd9bcf3 MH |
1606 | { |
1607 | static char term = '\n'; | |
1608 | struct object *o; | |
1609 | int fd; | |
1610 | ||
c251c83d | 1611 | o = parse_object(oid); |
7bd9bcf3 MH |
1612 | if (!o) { |
1613 | strbuf_addf(err, | |
0568c8e9 | 1614 | "trying to write ref '%s' with nonexistent object %s", |
4417df8c | 1615 | lock->ref_name, oid_to_hex(oid)); |
7bd9bcf3 MH |
1616 | unlock_ref(lock); |
1617 | return -1; | |
1618 | } | |
1619 | if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) { | |
1620 | strbuf_addf(err, | |
0568c8e9 | 1621 | "trying to write non-commit object %s to branch '%s'", |
4417df8c | 1622 | oid_to_hex(oid), lock->ref_name); |
7bd9bcf3 MH |
1623 | unlock_ref(lock); |
1624 | return -1; | |
1625 | } | |
1626 | fd = get_lock_file_fd(lock->lk); | |
4417df8c | 1627 | if (write_in_full(fd, oid_to_hex(oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ || |
7bd9bcf3 MH |
1628 | write_in_full(fd, &term, 1) != 1 || |
1629 | close_ref(lock) < 0) { | |
1630 | strbuf_addf(err, | |
0568c8e9 | 1631 | "couldn't write '%s'", get_lock_file_path(lock->lk)); |
7bd9bcf3 MH |
1632 | unlock_ref(lock); |
1633 | return -1; | |
1634 | } | |
1635 | return 0; | |
1636 | } | |
1637 | ||
1638 | /* | |
1639 | * Commit a change to a loose reference that has already been written | |
1640 | * to the loose reference lockfile. Also update the reflogs if | |
1641 | * necessary, using the specified lockmsg (which can be NULL). | |
1642 | */ | |
f18a7892 MH |
1643 | static int commit_ref_update(struct files_ref_store *refs, |
1644 | struct ref_lock *lock, | |
4417df8c | 1645 | const struct object_id *oid, const char *logmsg, |
5d9b2de4 | 1646 | struct strbuf *err) |
7bd9bcf3 | 1647 | { |
32c597e7 | 1648 | files_assert_main_repository(refs, "commit_ref_update"); |
00eebe35 MH |
1649 | |
1650 | clear_loose_ref_cache(refs); | |
802de3da | 1651 | if (files_log_ref_write(refs, lock->ref_name, |
4417df8c | 1652 | &lock->old_oid, oid, |
81b1b6d4 | 1653 | logmsg, 0, err)) { |
7bd9bcf3 | 1654 | char *old_msg = strbuf_detach(err, NULL); |
0568c8e9 | 1655 | strbuf_addf(err, "cannot update the ref '%s': %s", |
7bd9bcf3 MH |
1656 | lock->ref_name, old_msg); |
1657 | free(old_msg); | |
1658 | unlock_ref(lock); | |
1659 | return -1; | |
1660 | } | |
7a418f3a MH |
1661 | |
1662 | if (strcmp(lock->ref_name, "HEAD") != 0) { | |
7bd9bcf3 MH |
1663 | /* |
1664 | * Special hack: If a branch is updated directly and HEAD | |
1665 | * points to it (may happen on the remote side of a push | |
1666 | * for example) then logically the HEAD reflog should be | |
1667 | * updated too. | |
1668 | * A generic solution implies reverse symref information, | |
1669 | * but finding all symrefs pointing to the given branch | |
1670 | * would be rather costly for this rare event (the direct | |
1671 | * update of a branch) to be worth it. So let's cheat and | |
1672 | * check with HEAD only which should cover 99% of all usage | |
1673 | * scenarios (even 100% of the default ones). | |
1674 | */ | |
4417df8c | 1675 | struct object_id head_oid; |
7bd9bcf3 MH |
1676 | int head_flag; |
1677 | const char *head_ref; | |
7a418f3a | 1678 | |
2f40e954 NTND |
1679 | head_ref = refs_resolve_ref_unsafe(&refs->base, "HEAD", |
1680 | RESOLVE_REF_READING, | |
4417df8c | 1681 | head_oid.hash, &head_flag); |
7bd9bcf3 MH |
1682 | if (head_ref && (head_flag & REF_ISSYMREF) && |
1683 | !strcmp(head_ref, lock->ref_name)) { | |
1684 | struct strbuf log_err = STRBUF_INIT; | |
802de3da | 1685 | if (files_log_ref_write(refs, "HEAD", |
4417df8c | 1686 | &lock->old_oid, oid, |
802de3da | 1687 | logmsg, 0, &log_err)) { |
7bd9bcf3 MH |
1688 | error("%s", log_err.buf); |
1689 | strbuf_release(&log_err); | |
1690 | } | |
1691 | } | |
1692 | } | |
7a418f3a | 1693 | |
7bd9bcf3 | 1694 | if (commit_ref(lock)) { |
0568c8e9 | 1695 | strbuf_addf(err, "couldn't set '%s'", lock->ref_name); |
7bd9bcf3 MH |
1696 | unlock_ref(lock); |
1697 | return -1; | |
1698 | } | |
1699 | ||
1700 | unlock_ref(lock); | |
1701 | return 0; | |
1702 | } | |
1703 | ||
370e5ad6 | 1704 | static int create_ref_symlink(struct ref_lock *lock, const char *target) |
7bd9bcf3 | 1705 | { |
370e5ad6 | 1706 | int ret = -1; |
7bd9bcf3 | 1707 | #ifndef NO_SYMLINK_HEAD |
370e5ad6 JK |
1708 | char *ref_path = get_locked_file_path(lock->lk); |
1709 | unlink(ref_path); | |
1710 | ret = symlink(target, ref_path); | |
1711 | free(ref_path); | |
1712 | ||
1713 | if (ret) | |
7bd9bcf3 | 1714 | fprintf(stderr, "no symlink - falling back to symbolic ref\n"); |
7bd9bcf3 | 1715 | #endif |
370e5ad6 JK |
1716 | return ret; |
1717 | } | |
7bd9bcf3 | 1718 | |
802de3da NTND |
1719 | static void update_symref_reflog(struct files_ref_store *refs, |
1720 | struct ref_lock *lock, const char *refname, | |
370e5ad6 JK |
1721 | const char *target, const char *logmsg) |
1722 | { | |
1723 | struct strbuf err = STRBUF_INIT; | |
4417df8c | 1724 | struct object_id new_oid; |
2f40e954 NTND |
1725 | if (logmsg && |
1726 | !refs_read_ref_full(&refs->base, target, | |
4417df8c | 1727 | RESOLVE_REF_READING, new_oid.hash, NULL) && |
1728 | files_log_ref_write(refs, refname, &lock->old_oid, | |
1729 | &new_oid, logmsg, 0, &err)) { | |
7bd9bcf3 MH |
1730 | error("%s", err.buf); |
1731 | strbuf_release(&err); | |
1732 | } | |
370e5ad6 | 1733 | } |
7bd9bcf3 | 1734 | |
802de3da NTND |
1735 | static int create_symref_locked(struct files_ref_store *refs, |
1736 | struct ref_lock *lock, const char *refname, | |
370e5ad6 JK |
1737 | const char *target, const char *logmsg) |
1738 | { | |
1739 | if (prefer_symlink_refs && !create_ref_symlink(lock, target)) { | |
802de3da | 1740 | update_symref_reflog(refs, lock, refname, target, logmsg); |
370e5ad6 JK |
1741 | return 0; |
1742 | } | |
1743 | ||
1744 | if (!fdopen_lock_file(lock->lk, "w")) | |
1745 | return error("unable to fdopen %s: %s", | |
1746 | lock->lk->tempfile.filename.buf, strerror(errno)); | |
1747 | ||
802de3da | 1748 | update_symref_reflog(refs, lock, refname, target, logmsg); |
396da8f7 | 1749 | |
370e5ad6 JK |
1750 | /* no error check; commit_ref will check ferror */ |
1751 | fprintf(lock->lk->tempfile.fp, "ref: %s\n", target); | |
1752 | if (commit_ref(lock) < 0) | |
1753 | return error("unable to write symref for %s: %s", refname, | |
1754 | strerror(errno)); | |
7bd9bcf3 MH |
1755 | return 0; |
1756 | } | |
1757 | ||
284689ba MH |
1758 | static int files_create_symref(struct ref_store *ref_store, |
1759 | const char *refname, const char *target, | |
1760 | const char *logmsg) | |
370e5ad6 | 1761 | { |
7eb27cdf | 1762 | struct files_ref_store *refs = |
9e7ec634 | 1763 | files_downcast(ref_store, REF_STORE_WRITE, "create_symref"); |
370e5ad6 JK |
1764 | struct strbuf err = STRBUF_INIT; |
1765 | struct ref_lock *lock; | |
1766 | int ret; | |
1767 | ||
7eb27cdf MH |
1768 | lock = lock_ref_sha1_basic(refs, refname, NULL, |
1769 | NULL, NULL, REF_NODEREF, NULL, | |
370e5ad6 JK |
1770 | &err); |
1771 | if (!lock) { | |
1772 | error("%s", err.buf); | |
1773 | strbuf_release(&err); | |
1774 | return -1; | |
1775 | } | |
1776 | ||
802de3da | 1777 | ret = create_symref_locked(refs, lock, refname, target, logmsg); |
370e5ad6 JK |
1778 | unlock_ref(lock); |
1779 | return ret; | |
1780 | } | |
1781 | ||
e3688bd6 DT |
1782 | static int files_reflog_exists(struct ref_store *ref_store, |
1783 | const char *refname) | |
7bd9bcf3 | 1784 | { |
802de3da | 1785 | struct files_ref_store *refs = |
9e7ec634 | 1786 | files_downcast(ref_store, REF_STORE_READ, "reflog_exists"); |
e9dcc305 | 1787 | struct strbuf sb = STRBUF_INIT; |
7bd9bcf3 | 1788 | struct stat st; |
e9dcc305 | 1789 | int ret; |
7bd9bcf3 | 1790 | |
802de3da | 1791 | files_reflog_path(refs, &sb, refname); |
e9dcc305 NTND |
1792 | ret = !lstat(sb.buf, &st) && S_ISREG(st.st_mode); |
1793 | strbuf_release(&sb); | |
1794 | return ret; | |
7bd9bcf3 MH |
1795 | } |
1796 | ||
e3688bd6 DT |
1797 | static int files_delete_reflog(struct ref_store *ref_store, |
1798 | const char *refname) | |
7bd9bcf3 | 1799 | { |
802de3da | 1800 | struct files_ref_store *refs = |
9e7ec634 | 1801 | files_downcast(ref_store, REF_STORE_WRITE, "delete_reflog"); |
e9dcc305 NTND |
1802 | struct strbuf sb = STRBUF_INIT; |
1803 | int ret; | |
1804 | ||
802de3da | 1805 | files_reflog_path(refs, &sb, refname); |
e9dcc305 NTND |
1806 | ret = remove_path(sb.buf); |
1807 | strbuf_release(&sb); | |
1808 | return ret; | |
7bd9bcf3 MH |
1809 | } |
1810 | ||
1811 | static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data) | |
1812 | { | |
9461d272 | 1813 | struct object_id ooid, noid; |
7bd9bcf3 | 1814 | char *email_end, *message; |
dddbad72 | 1815 | timestamp_t timestamp; |
7bd9bcf3 | 1816 | int tz; |
43bc3b6c | 1817 | const char *p = sb->buf; |
7bd9bcf3 MH |
1818 | |
1819 | /* old SP new SP name <email> SP time TAB msg LF */ | |
43bc3b6c | 1820 | if (!sb->len || sb->buf[sb->len - 1] != '\n' || |
1821 | parse_oid_hex(p, &ooid, &p) || *p++ != ' ' || | |
1822 | parse_oid_hex(p, &noid, &p) || *p++ != ' ' || | |
1823 | !(email_end = strchr(p, '>')) || | |
7bd9bcf3 | 1824 | email_end[1] != ' ' || |
1aeb7e75 | 1825 | !(timestamp = parse_timestamp(email_end + 2, &message, 10)) || |
7bd9bcf3 MH |
1826 | !message || message[0] != ' ' || |
1827 | (message[1] != '+' && message[1] != '-') || | |
1828 | !isdigit(message[2]) || !isdigit(message[3]) || | |
1829 | !isdigit(message[4]) || !isdigit(message[5])) | |
1830 | return 0; /* corrupt? */ | |
1831 | email_end[1] = '\0'; | |
1832 | tz = strtol(message + 1, NULL, 10); | |
1833 | if (message[6] != '\t') | |
1834 | message += 6; | |
1835 | else | |
1836 | message += 7; | |
43bc3b6c | 1837 | return fn(&ooid, &noid, p, timestamp, tz, message, cb_data); |
7bd9bcf3 MH |
1838 | } |
1839 | ||
1840 | static char *find_beginning_of_line(char *bob, char *scan) | |
1841 | { | |
1842 | while (bob < scan && *(--scan) != '\n') | |
1843 | ; /* keep scanning backwards */ | |
1844 | /* | |
1845 | * Return either beginning of the buffer, or LF at the end of | |
1846 | * the previous line. | |
1847 | */ | |
1848 | return scan; | |
1849 | } | |
1850 | ||
e3688bd6 DT |
1851 | static int files_for_each_reflog_ent_reverse(struct ref_store *ref_store, |
1852 | const char *refname, | |
1853 | each_reflog_ent_fn fn, | |
1854 | void *cb_data) | |
7bd9bcf3 | 1855 | { |
802de3da | 1856 | struct files_ref_store *refs = |
9e7ec634 NTND |
1857 | files_downcast(ref_store, REF_STORE_READ, |
1858 | "for_each_reflog_ent_reverse"); | |
7bd9bcf3 MH |
1859 | struct strbuf sb = STRBUF_INIT; |
1860 | FILE *logfp; | |
1861 | long pos; | |
1862 | int ret = 0, at_tail = 1; | |
1863 | ||
802de3da | 1864 | files_reflog_path(refs, &sb, refname); |
e9dcc305 NTND |
1865 | logfp = fopen(sb.buf, "r"); |
1866 | strbuf_release(&sb); | |
7bd9bcf3 MH |
1867 | if (!logfp) |
1868 | return -1; | |
1869 | ||
1870 | /* Jump to the end */ | |
1871 | if (fseek(logfp, 0, SEEK_END) < 0) | |
be686f03 RS |
1872 | ret = error("cannot seek back reflog for %s: %s", |
1873 | refname, strerror(errno)); | |
7bd9bcf3 MH |
1874 | pos = ftell(logfp); |
1875 | while (!ret && 0 < pos) { | |
1876 | int cnt; | |
1877 | size_t nread; | |
1878 | char buf[BUFSIZ]; | |
1879 | char *endp, *scanp; | |
1880 | ||
1881 | /* Fill next block from the end */ | |
1882 | cnt = (sizeof(buf) < pos) ? sizeof(buf) : pos; | |
be686f03 RS |
1883 | if (fseek(logfp, pos - cnt, SEEK_SET)) { |
1884 | ret = error("cannot seek back reflog for %s: %s", | |
1885 | refname, strerror(errno)); | |
1886 | break; | |
1887 | } | |
7bd9bcf3 | 1888 | nread = fread(buf, cnt, 1, logfp); |
be686f03 RS |
1889 | if (nread != 1) { |
1890 | ret = error("cannot read %d bytes from reflog for %s: %s", | |
1891 | cnt, refname, strerror(errno)); | |
1892 | break; | |
1893 | } | |
7bd9bcf3 MH |
1894 | pos -= cnt; |
1895 | ||
1896 | scanp = endp = buf + cnt; | |
1897 | if (at_tail && scanp[-1] == '\n') | |
1898 | /* Looking at the final LF at the end of the file */ | |
1899 | scanp--; | |
1900 | at_tail = 0; | |
1901 | ||
1902 | while (buf < scanp) { | |
1903 | /* | |
1904 | * terminating LF of the previous line, or the beginning | |
1905 | * of the buffer. | |
1906 | */ | |
1907 | char *bp; | |
1908 | ||
1909 | bp = find_beginning_of_line(buf, scanp); | |
1910 | ||
1911 | if (*bp == '\n') { | |
1912 | /* | |
1913 | * The newline is the end of the previous line, | |
1914 | * so we know we have complete line starting | |
1915 | * at (bp + 1). Prefix it onto any prior data | |
1916 | * we collected for the line and process it. | |
1917 | */ | |
1918 | strbuf_splice(&sb, 0, 0, bp + 1, endp - (bp + 1)); | |
1919 | scanp = bp; | |
1920 | endp = bp + 1; | |
1921 | ret = show_one_reflog_ent(&sb, fn, cb_data); | |
1922 | strbuf_reset(&sb); | |
1923 | if (ret) | |
1924 | break; | |
1925 | } else if (!pos) { | |
1926 | /* | |
1927 | * We are at the start of the buffer, and the | |
1928 | * start of the file; there is no previous | |
1929 | * line, and we have everything for this one. | |
1930 | * Process it, and we can end the loop. | |
1931 | */ | |
1932 | strbuf_splice(&sb, 0, 0, buf, endp - buf); | |
1933 | ret = show_one_reflog_ent(&sb, fn, cb_data); | |
1934 | strbuf_reset(&sb); | |
1935 | break; | |
1936 | } | |
1937 | ||
1938 | if (bp == buf) { | |
1939 | /* | |
1940 | * We are at the start of the buffer, and there | |
1941 | * is more file to read backwards. Which means | |
1942 | * we are in the middle of a line. Note that we | |
1943 | * may get here even if *bp was a newline; that | |
1944 | * just means we are at the exact end of the | |
1945 | * previous line, rather than some spot in the | |
1946 | * middle. | |
1947 | * | |
1948 | * Save away what we have to be combined with | |
1949 | * the data from the next read. | |
1950 | */ | |
1951 | strbuf_splice(&sb, 0, 0, buf, endp - buf); | |
1952 | break; | |
1953 | } | |
1954 | } | |
1955 | ||
1956 | } | |
1957 | if (!ret && sb.len) | |
1958 | die("BUG: reverse reflog parser had leftover data"); | |
1959 | ||
1960 | fclose(logfp); | |
1961 | strbuf_release(&sb); | |
1962 | return ret; | |
1963 | } | |
1964 | ||
e3688bd6 DT |
1965 | static int files_for_each_reflog_ent(struct ref_store *ref_store, |
1966 | const char *refname, | |
1967 | each_reflog_ent_fn fn, void *cb_data) | |
7bd9bcf3 | 1968 | { |
802de3da | 1969 | struct files_ref_store *refs = |
9e7ec634 NTND |
1970 | files_downcast(ref_store, REF_STORE_READ, |
1971 | "for_each_reflog_ent"); | |
7bd9bcf3 MH |
1972 | FILE *logfp; |
1973 | struct strbuf sb = STRBUF_INIT; | |
1974 | int ret = 0; | |
1975 | ||
802de3da | 1976 | files_reflog_path(refs, &sb, refname); |
e9dcc305 NTND |
1977 | logfp = fopen(sb.buf, "r"); |
1978 | strbuf_release(&sb); | |
7bd9bcf3 MH |
1979 | if (!logfp) |
1980 | return -1; | |
1981 | ||
1982 | while (!ret && !strbuf_getwholeline(&sb, logfp, '\n')) | |
1983 | ret = show_one_reflog_ent(&sb, fn, cb_data); | |
1984 | fclose(logfp); | |
1985 | strbuf_release(&sb); | |
1986 | return ret; | |
1987 | } | |
7bd9bcf3 | 1988 | |
2880d16f MH |
1989 | struct files_reflog_iterator { |
1990 | struct ref_iterator base; | |
7bd9bcf3 | 1991 | |
2f40e954 | 1992 | struct ref_store *ref_store; |
2880d16f MH |
1993 | struct dir_iterator *dir_iterator; |
1994 | struct object_id oid; | |
1995 | }; | |
7bd9bcf3 | 1996 | |
2880d16f MH |
1997 | static int files_reflog_iterator_advance(struct ref_iterator *ref_iterator) |
1998 | { | |
1999 | struct files_reflog_iterator *iter = | |
2000 | (struct files_reflog_iterator *)ref_iterator; | |
2001 | struct dir_iterator *diter = iter->dir_iterator; | |
2002 | int ok; | |
2003 | ||
2004 | while ((ok = dir_iterator_advance(diter)) == ITER_OK) { | |
2005 | int flags; | |
2006 | ||
2007 | if (!S_ISREG(diter->st.st_mode)) | |
7bd9bcf3 | 2008 | continue; |
2880d16f MH |
2009 | if (diter->basename[0] == '.') |
2010 | continue; | |
2011 | if (ends_with(diter->basename, ".lock")) | |
7bd9bcf3 | 2012 | continue; |
7bd9bcf3 | 2013 | |
2f40e954 NTND |
2014 | if (refs_read_ref_full(iter->ref_store, |
2015 | diter->relative_path, 0, | |
2016 | iter->oid.hash, &flags)) { | |
2880d16f MH |
2017 | error("bad ref for %s", diter->path.buf); |
2018 | continue; | |
7bd9bcf3 | 2019 | } |
2880d16f MH |
2020 | |
2021 | iter->base.refname = diter->relative_path; | |
2022 | iter->base.oid = &iter->oid; | |
2023 | iter->base.flags = flags; | |
2024 | return ITER_OK; | |
7bd9bcf3 | 2025 | } |
2880d16f MH |
2026 | |
2027 | iter->dir_iterator = NULL; | |
2028 | if (ref_iterator_abort(ref_iterator) == ITER_ERROR) | |
2029 | ok = ITER_ERROR; | |
2030 | return ok; | |
2031 | } | |
2032 | ||
2033 | static int files_reflog_iterator_peel(struct ref_iterator *ref_iterator, | |
2034 | struct object_id *peeled) | |
2035 | { | |
2036 | die("BUG: ref_iterator_peel() called for reflog_iterator"); | |
2037 | } | |
2038 | ||
2039 | static int files_reflog_iterator_abort(struct ref_iterator *ref_iterator) | |
2040 | { | |
2041 | struct files_reflog_iterator *iter = | |
2042 | (struct files_reflog_iterator *)ref_iterator; | |
2043 | int ok = ITER_DONE; | |
2044 | ||
2045 | if (iter->dir_iterator) | |
2046 | ok = dir_iterator_abort(iter->dir_iterator); | |
2047 | ||
2048 | base_ref_iterator_free(ref_iterator); | |
2049 | return ok; | |
2050 | } | |
2051 | ||
2052 | static struct ref_iterator_vtable files_reflog_iterator_vtable = { | |
2053 | files_reflog_iterator_advance, | |
2054 | files_reflog_iterator_peel, | |
2055 | files_reflog_iterator_abort | |
2056 | }; | |
2057 | ||
e3688bd6 | 2058 | static struct ref_iterator *files_reflog_iterator_begin(struct ref_store *ref_store) |
2880d16f | 2059 | { |
802de3da | 2060 | struct files_ref_store *refs = |
9e7ec634 NTND |
2061 | files_downcast(ref_store, REF_STORE_READ, |
2062 | "reflog_iterator_begin"); | |
2880d16f MH |
2063 | struct files_reflog_iterator *iter = xcalloc(1, sizeof(*iter)); |
2064 | struct ref_iterator *ref_iterator = &iter->base; | |
e9dcc305 | 2065 | struct strbuf sb = STRBUF_INIT; |
2880d16f MH |
2066 | |
2067 | base_ref_iterator_init(ref_iterator, &files_reflog_iterator_vtable); | |
802de3da | 2068 | files_reflog_path(refs, &sb, NULL); |
e9dcc305 | 2069 | iter->dir_iterator = dir_iterator_begin(sb.buf); |
2f40e954 | 2070 | iter->ref_store = ref_store; |
e9dcc305 | 2071 | strbuf_release(&sb); |
2880d16f | 2072 | return ref_iterator; |
7bd9bcf3 MH |
2073 | } |
2074 | ||
165056b2 | 2075 | /* |
92b1551b MH |
2076 | * If update is a direct update of head_ref (the reference pointed to |
2077 | * by HEAD), then add an extra REF_LOG_ONLY update for HEAD. | |
2078 | */ | |
2079 | static int split_head_update(struct ref_update *update, | |
2080 | struct ref_transaction *transaction, | |
2081 | const char *head_ref, | |
2082 | struct string_list *affected_refnames, | |
2083 | struct strbuf *err) | |
2084 | { | |
2085 | struct string_list_item *item; | |
2086 | struct ref_update *new_update; | |
2087 | ||
2088 | if ((update->flags & REF_LOG_ONLY) || | |
2089 | (update->flags & REF_ISPRUNING) || | |
2090 | (update->flags & REF_UPDATE_VIA_HEAD)) | |
2091 | return 0; | |
2092 | ||
2093 | if (strcmp(update->refname, head_ref)) | |
2094 | return 0; | |
2095 | ||
2096 | /* | |
2097 | * First make sure that HEAD is not already in the | |
2098 | * transaction. This insertion is O(N) in the transaction | |
2099 | * size, but it happens at most once per transaction. | |
2100 | */ | |
2101 | item = string_list_insert(affected_refnames, "HEAD"); | |
2102 | if (item->util) { | |
2103 | /* An entry already existed */ | |
2104 | strbuf_addf(err, | |
2105 | "multiple updates for 'HEAD' (including one " | |
2106 | "via its referent '%s') are not allowed", | |
2107 | update->refname); | |
2108 | return TRANSACTION_NAME_CONFLICT; | |
2109 | } | |
2110 | ||
2111 | new_update = ref_transaction_add_update( | |
2112 | transaction, "HEAD", | |
2113 | update->flags | REF_LOG_ONLY | REF_NODEREF, | |
98491298 | 2114 | update->new_oid.hash, update->old_oid.hash, |
92b1551b MH |
2115 | update->msg); |
2116 | ||
2117 | item->util = new_update; | |
2118 | ||
2119 | return 0; | |
2120 | } | |
2121 | ||
2122 | /* | |
2123 | * update is for a symref that points at referent and doesn't have | |
2124 | * REF_NODEREF set. Split it into two updates: | |
2125 | * - The original update, but with REF_LOG_ONLY and REF_NODEREF set | |
2126 | * - A new, separate update for the referent reference | |
2127 | * Note that the new update will itself be subject to splitting when | |
2128 | * the iteration gets to it. | |
2129 | */ | |
fcc42ea0 MH |
2130 | static int split_symref_update(struct files_ref_store *refs, |
2131 | struct ref_update *update, | |
92b1551b MH |
2132 | const char *referent, |
2133 | struct ref_transaction *transaction, | |
2134 | struct string_list *affected_refnames, | |
2135 | struct strbuf *err) | |
2136 | { | |
2137 | struct string_list_item *item; | |
2138 | struct ref_update *new_update; | |
2139 | unsigned int new_flags; | |
2140 | ||
2141 | /* | |
2142 | * First make sure that referent is not already in the | |
2143 | * transaction. This insertion is O(N) in the transaction | |
2144 | * size, but it happens at most once per symref in a | |
2145 | * transaction. | |
2146 | */ | |
2147 | item = string_list_insert(affected_refnames, referent); | |
2148 | if (item->util) { | |
2149 | /* An entry already existed */ | |
2150 | strbuf_addf(err, | |
2151 | "multiple updates for '%s' (including one " | |
2152 | "via symref '%s') are not allowed", | |
2153 | referent, update->refname); | |
2154 | return TRANSACTION_NAME_CONFLICT; | |
2155 | } | |
2156 | ||
2157 | new_flags = update->flags; | |
2158 | if (!strcmp(update->refname, "HEAD")) { | |
2159 | /* | |
2160 | * Record that the new update came via HEAD, so that | |
2161 | * when we process it, split_head_update() doesn't try | |
2162 | * to add another reflog update for HEAD. Note that | |
2163 | * this bit will be propagated if the new_update | |
2164 | * itself needs to be split. | |
2165 | */ | |
2166 | new_flags |= REF_UPDATE_VIA_HEAD; | |
2167 | } | |
2168 | ||
2169 | new_update = ref_transaction_add_update( | |
2170 | transaction, referent, new_flags, | |
98491298 | 2171 | update->new_oid.hash, update->old_oid.hash, |
92b1551b MH |
2172 | update->msg); |
2173 | ||
6e30b2f6 MH |
2174 | new_update->parent_update = update; |
2175 | ||
2176 | /* | |
2177 | * Change the symbolic ref update to log only. Also, it | |
2178 | * doesn't need to check its old SHA-1 value, as that will be | |
2179 | * done when new_update is processed. | |
2180 | */ | |
92b1551b | 2181 | update->flags |= REF_LOG_ONLY | REF_NODEREF; |
6e30b2f6 | 2182 | update->flags &= ~REF_HAVE_OLD; |
92b1551b MH |
2183 | |
2184 | item->util = new_update; | |
2185 | ||
2186 | return 0; | |
2187 | } | |
2188 | ||
6e30b2f6 MH |
2189 | /* |
2190 | * Return the refname under which update was originally requested. | |
2191 | */ | |
2192 | static const char *original_update_refname(struct ref_update *update) | |
2193 | { | |
2194 | while (update->parent_update) | |
2195 | update = update->parent_update; | |
2196 | ||
2197 | return update->refname; | |
2198 | } | |
2199 | ||
e3f51039 MH |
2200 | /* |
2201 | * Check whether the REF_HAVE_OLD and old_oid values stored in update | |
2202 | * are consistent with oid, which is the reference's current value. If | |
2203 | * everything is OK, return 0; otherwise, write an error message to | |
2204 | * err and return -1. | |
2205 | */ | |
2206 | static int check_old_oid(struct ref_update *update, struct object_id *oid, | |
2207 | struct strbuf *err) | |
2208 | { | |
2209 | if (!(update->flags & REF_HAVE_OLD) || | |
98491298 | 2210 | !oidcmp(oid, &update->old_oid)) |
e3f51039 MH |
2211 | return 0; |
2212 | ||
98491298 | 2213 | if (is_null_oid(&update->old_oid)) |
e3f51039 MH |
2214 | strbuf_addf(err, "cannot lock ref '%s': " |
2215 | "reference already exists", | |
2216 | original_update_refname(update)); | |
2217 | else if (is_null_oid(oid)) | |
2218 | strbuf_addf(err, "cannot lock ref '%s': " | |
2219 | "reference is missing but expected %s", | |
2220 | original_update_refname(update), | |
98491298 | 2221 | oid_to_hex(&update->old_oid)); |
e3f51039 MH |
2222 | else |
2223 | strbuf_addf(err, "cannot lock ref '%s': " | |
2224 | "is at %s but expected %s", | |
2225 | original_update_refname(update), | |
2226 | oid_to_hex(oid), | |
98491298 | 2227 | oid_to_hex(&update->old_oid)); |
e3f51039 MH |
2228 | |
2229 | return -1; | |
2230 | } | |
2231 | ||
92b1551b MH |
2232 | /* |
2233 | * Prepare for carrying out update: | |
2234 | * - Lock the reference referred to by update. | |
2235 | * - Read the reference under lock. | |
2236 | * - Check that its old SHA-1 value (if specified) is correct, and in | |
2237 | * any case record it in update->lock->old_oid for later use when | |
2238 | * writing the reflog. | |
2239 | * - If it is a symref update without REF_NODEREF, split it up into a | |
2240 | * REF_LOG_ONLY update of the symref and add a separate update for | |
2241 | * the referent to transaction. | |
2242 | * - If it is an update of head_ref, add a corresponding REF_LOG_ONLY | |
2243 | * update of HEAD. | |
165056b2 | 2244 | */ |
b3bbbc5c MH |
2245 | static int lock_ref_for_update(struct files_ref_store *refs, |
2246 | struct ref_update *update, | |
165056b2 | 2247 | struct ref_transaction *transaction, |
92b1551b | 2248 | const char *head_ref, |
165056b2 MH |
2249 | struct string_list *affected_refnames, |
2250 | struct strbuf *err) | |
2251 | { | |
92b1551b MH |
2252 | struct strbuf referent = STRBUF_INIT; |
2253 | int mustexist = (update->flags & REF_HAVE_OLD) && | |
98491298 | 2254 | !is_null_oid(&update->old_oid); |
165056b2 | 2255 | int ret; |
92b1551b | 2256 | struct ref_lock *lock; |
165056b2 | 2257 | |
32c597e7 | 2258 | files_assert_main_repository(refs, "lock_ref_for_update"); |
b3bbbc5c | 2259 | |
98491298 | 2260 | if ((update->flags & REF_HAVE_NEW) && is_null_oid(&update->new_oid)) |
165056b2 | 2261 | update->flags |= REF_DELETING; |
92b1551b MH |
2262 | |
2263 | if (head_ref) { | |
2264 | ret = split_head_update(update, transaction, head_ref, | |
2265 | affected_refnames, err); | |
2266 | if (ret) | |
2267 | return ret; | |
2268 | } | |
2269 | ||
f7b0a987 | 2270 | ret = lock_raw_ref(refs, update->refname, mustexist, |
92b1551b | 2271 | affected_refnames, NULL, |
7d618264 | 2272 | &lock, &referent, |
92b1551b | 2273 | &update->type, err); |
92b1551b | 2274 | if (ret) { |
165056b2 MH |
2275 | char *reason; |
2276 | ||
165056b2 MH |
2277 | reason = strbuf_detach(err, NULL); |
2278 | strbuf_addf(err, "cannot lock ref '%s': %s", | |
e3f51039 | 2279 | original_update_refname(update), reason); |
165056b2 MH |
2280 | free(reason); |
2281 | return ret; | |
2282 | } | |
92b1551b | 2283 | |
7d618264 | 2284 | update->backend_data = lock; |
92b1551b | 2285 | |
8169d0d0 | 2286 | if (update->type & REF_ISSYMREF) { |
6e30b2f6 MH |
2287 | if (update->flags & REF_NODEREF) { |
2288 | /* | |
2289 | * We won't be reading the referent as part of | |
2290 | * the transaction, so we have to read it here | |
2291 | * to record and possibly check old_sha1: | |
2292 | */ | |
2f40e954 NTND |
2293 | if (refs_read_ref_full(&refs->base, |
2294 | referent.buf, 0, | |
2295 | lock->old_oid.hash, NULL)) { | |
6e30b2f6 MH |
2296 | if (update->flags & REF_HAVE_OLD) { |
2297 | strbuf_addf(err, "cannot lock ref '%s': " | |
e3f51039 MH |
2298 | "error reading reference", |
2299 | original_update_refname(update)); | |
2300 | return -1; | |
6e30b2f6 | 2301 | } |
e3f51039 | 2302 | } else if (check_old_oid(update, &lock->old_oid, err)) { |
8169d0d0 | 2303 | return TRANSACTION_GENERIC_ERROR; |
8169d0d0 | 2304 | } |
6e30b2f6 MH |
2305 | } else { |
2306 | /* | |
2307 | * Create a new update for the reference this | |
2308 | * symref is pointing at. Also, we will record | |
2309 | * and verify old_sha1 for this update as part | |
2310 | * of processing the split-off update, so we | |
2311 | * don't have to do it here. | |
2312 | */ | |
fcc42ea0 MH |
2313 | ret = split_symref_update(refs, update, |
2314 | referent.buf, transaction, | |
92b1551b MH |
2315 | affected_refnames, err); |
2316 | if (ret) | |
2317 | return ret; | |
2318 | } | |
6e30b2f6 MH |
2319 | } else { |
2320 | struct ref_update *parent_update; | |
8169d0d0 | 2321 | |
e3f51039 MH |
2322 | if (check_old_oid(update, &lock->old_oid, err)) |
2323 | return TRANSACTION_GENERIC_ERROR; | |
2324 | ||
6e30b2f6 MH |
2325 | /* |
2326 | * If this update is happening indirectly because of a | |
2327 | * symref update, record the old SHA-1 in the parent | |
2328 | * update: | |
2329 | */ | |
2330 | for (parent_update = update->parent_update; | |
2331 | parent_update; | |
2332 | parent_update = parent_update->parent_update) { | |
7d618264 DT |
2333 | struct ref_lock *parent_lock = parent_update->backend_data; |
2334 | oidcpy(&parent_lock->old_oid, &lock->old_oid); | |
6e30b2f6 | 2335 | } |
92b1551b MH |
2336 | } |
2337 | ||
165056b2 MH |
2338 | if ((update->flags & REF_HAVE_NEW) && |
2339 | !(update->flags & REF_DELETING) && | |
2340 | !(update->flags & REF_LOG_ONLY)) { | |
92b1551b | 2341 | if (!(update->type & REF_ISSYMREF) && |
98491298 | 2342 | !oidcmp(&lock->old_oid, &update->new_oid)) { |
165056b2 MH |
2343 | /* |
2344 | * The reference already has the desired | |
2345 | * value, so we don't need to write it. | |
2346 | */ | |
4417df8c | 2347 | } else if (write_ref_to_lockfile(lock, &update->new_oid, |
165056b2 MH |
2348 | err)) { |
2349 | char *write_err = strbuf_detach(err, NULL); | |
2350 | ||
2351 | /* | |
2352 | * The lock was freed upon failure of | |
2353 | * write_ref_to_lockfile(): | |
2354 | */ | |
7d618264 | 2355 | update->backend_data = NULL; |
165056b2 | 2356 | strbuf_addf(err, |
e3f51039 | 2357 | "cannot update ref '%s': %s", |
165056b2 MH |
2358 | update->refname, write_err); |
2359 | free(write_err); | |
2360 | return TRANSACTION_GENERIC_ERROR; | |
2361 | } else { | |
2362 | update->flags |= REF_NEEDS_COMMIT; | |
2363 | } | |
2364 | } | |
2365 | if (!(update->flags & REF_NEEDS_COMMIT)) { | |
2366 | /* | |
2367 | * We didn't call write_ref_to_lockfile(), so | |
2368 | * the lockfile is still open. Close it to | |
2369 | * free up the file descriptor: | |
2370 | */ | |
92b1551b | 2371 | if (close_ref(lock)) { |
165056b2 MH |
2372 | strbuf_addf(err, "couldn't close '%s.lock'", |
2373 | update->refname); | |
2374 | return TRANSACTION_GENERIC_ERROR; | |
2375 | } | |
2376 | } | |
2377 | return 0; | |
2378 | } | |
2379 | ||
c0ca9357 MH |
2380 | /* |
2381 | * Unlock any references in `transaction` that are still locked, and | |
2382 | * mark the transaction closed. | |
2383 | */ | |
2384 | static void files_transaction_cleanup(struct ref_transaction *transaction) | |
2385 | { | |
2386 | size_t i; | |
2387 | ||
2388 | for (i = 0; i < transaction->nr; i++) { | |
2389 | struct ref_update *update = transaction->updates[i]; | |
2390 | struct ref_lock *lock = update->backend_data; | |
2391 | ||
2392 | if (lock) { | |
2393 | unlock_ref(lock); | |
2394 | update->backend_data = NULL; | |
2395 | } | |
2396 | } | |
2397 | ||
2398 | transaction->state = REF_TRANSACTION_CLOSED; | |
2399 | } | |
2400 | ||
30173b88 MH |
2401 | static int files_transaction_prepare(struct ref_store *ref_store, |
2402 | struct ref_transaction *transaction, | |
2403 | struct strbuf *err) | |
7bd9bcf3 | 2404 | { |
00eebe35 | 2405 | struct files_ref_store *refs = |
9e7ec634 | 2406 | files_downcast(ref_store, REF_STORE_WRITE, |
30173b88 | 2407 | "ref_transaction_prepare"); |
43a2dfde MH |
2408 | size_t i; |
2409 | int ret = 0; | |
7bd9bcf3 | 2410 | struct string_list affected_refnames = STRING_LIST_INIT_NODUP; |
92b1551b MH |
2411 | char *head_ref = NULL; |
2412 | int head_type; | |
2413 | struct object_id head_oid; | |
7bd9bcf3 MH |
2414 | |
2415 | assert(err); | |
2416 | ||
c0ca9357 MH |
2417 | if (!transaction->nr) |
2418 | goto cleanup; | |
7bd9bcf3 | 2419 | |
92b1551b MH |
2420 | /* |
2421 | * Fail if a refname appears more than once in the | |
2422 | * transaction. (If we end up splitting up any updates using | |
2423 | * split_symref_update() or split_head_update(), those | |
2424 | * functions will check that the new updates don't have the | |
2425 | * same refname as any existing ones.) | |
2426 | */ | |
2427 | for (i = 0; i < transaction->nr; i++) { | |
2428 | struct ref_update *update = transaction->updates[i]; | |
2429 | struct string_list_item *item = | |
2430 | string_list_append(&affected_refnames, update->refname); | |
2431 | ||
2432 | /* | |
2433 | * We store a pointer to update in item->util, but at | |
2434 | * the moment we never use the value of this field | |
2435 | * except to check whether it is non-NULL. | |
2436 | */ | |
2437 | item->util = update; | |
2438 | } | |
7bd9bcf3 MH |
2439 | string_list_sort(&affected_refnames); |
2440 | if (ref_update_reject_duplicates(&affected_refnames, err)) { | |
2441 | ret = TRANSACTION_GENERIC_ERROR; | |
2442 | goto cleanup; | |
2443 | } | |
2444 | ||
92b1551b MH |
2445 | /* |
2446 | * Special hack: If a branch is updated directly and HEAD | |
2447 | * points to it (may happen on the remote side of a push | |
2448 | * for example) then logically the HEAD reflog should be | |
2449 | * updated too. | |
2450 | * | |
2451 | * A generic solution would require reverse symref lookups, | |
2452 | * but finding all symrefs pointing to a given branch would be | |
2453 | * rather costly for this rare event (the direct update of a | |
2454 | * branch) to be worth it. So let's cheat and check with HEAD | |
2455 | * only, which should cover 99% of all usage scenarios (even | |
2456 | * 100% of the default ones). | |
2457 | * | |
2458 | * So if HEAD is a symbolic reference, then record the name of | |
2459 | * the reference that it points to. If we see an update of | |
2460 | * head_ref within the transaction, then split_head_update() | |
2461 | * arranges for the reflog of HEAD to be updated, too. | |
2462 | */ | |
2f40e954 NTND |
2463 | head_ref = refs_resolve_refdup(ref_store, "HEAD", |
2464 | RESOLVE_REF_NO_RECURSE, | |
2465 | head_oid.hash, &head_type); | |
92b1551b MH |
2466 | |
2467 | if (head_ref && !(head_type & REF_ISSYMREF)) { | |
6a83d902 | 2468 | FREE_AND_NULL(head_ref); |
92b1551b MH |
2469 | } |
2470 | ||
7bd9bcf3 MH |
2471 | /* |
2472 | * Acquire all locks, verify old values if provided, check | |
2473 | * that new values are valid, and write new values to the | |
2474 | * lockfiles, ready to be activated. Only keep one lockfile | |
2475 | * open at a time to avoid running out of file descriptors. | |
30173b88 MH |
2476 | * Note that lock_ref_for_update() might append more updates |
2477 | * to the transaction. | |
7bd9bcf3 | 2478 | */ |
efe47281 MH |
2479 | for (i = 0; i < transaction->nr; i++) { |
2480 | struct ref_update *update = transaction->updates[i]; | |
7bd9bcf3 | 2481 | |
b3bbbc5c MH |
2482 | ret = lock_ref_for_update(refs, update, transaction, |
2483 | head_ref, &affected_refnames, err); | |
165056b2 | 2484 | if (ret) |
30173b88 MH |
2485 | break; |
2486 | } | |
2487 | ||
2488 | cleanup: | |
2489 | free(head_ref); | |
2490 | string_list_clear(&affected_refnames, 0); | |
2491 | ||
2492 | if (ret) | |
2493 | files_transaction_cleanup(transaction); | |
2494 | else | |
2495 | transaction->state = REF_TRANSACTION_PREPARED; | |
2496 | ||
2497 | return ret; | |
2498 | } | |
2499 | ||
2500 | static int files_transaction_finish(struct ref_store *ref_store, | |
2501 | struct ref_transaction *transaction, | |
2502 | struct strbuf *err) | |
2503 | { | |
2504 | struct files_ref_store *refs = | |
2505 | files_downcast(ref_store, 0, "ref_transaction_finish"); | |
2506 | size_t i; | |
2507 | int ret = 0; | |
2508 | struct string_list refs_to_delete = STRING_LIST_INIT_NODUP; | |
2509 | struct string_list_item *ref_to_delete; | |
2510 | struct strbuf sb = STRBUF_INIT; | |
2511 | ||
2512 | assert(err); | |
2513 | ||
2514 | if (!transaction->nr) { | |
2515 | transaction->state = REF_TRANSACTION_CLOSED; | |
2516 | return 0; | |
7bd9bcf3 | 2517 | } |
7bd9bcf3 | 2518 | |
7bd9bcf3 | 2519 | /* Perform updates first so live commits remain referenced */ |
efe47281 MH |
2520 | for (i = 0; i < transaction->nr; i++) { |
2521 | struct ref_update *update = transaction->updates[i]; | |
7d618264 | 2522 | struct ref_lock *lock = update->backend_data; |
7bd9bcf3 | 2523 | |
d99aa884 DT |
2524 | if (update->flags & REF_NEEDS_COMMIT || |
2525 | update->flags & REF_LOG_ONLY) { | |
802de3da NTND |
2526 | if (files_log_ref_write(refs, |
2527 | lock->ref_name, | |
4417df8c | 2528 | &lock->old_oid, |
2529 | &update->new_oid, | |
81b1b6d4 MH |
2530 | update->msg, update->flags, |
2531 | err)) { | |
92b1551b MH |
2532 | char *old_msg = strbuf_detach(err, NULL); |
2533 | ||
2534 | strbuf_addf(err, "cannot update the ref '%s': %s", | |
2535 | lock->ref_name, old_msg); | |
2536 | free(old_msg); | |
2537 | unlock_ref(lock); | |
7d618264 | 2538 | update->backend_data = NULL; |
7bd9bcf3 MH |
2539 | ret = TRANSACTION_GENERIC_ERROR; |
2540 | goto cleanup; | |
7bd9bcf3 MH |
2541 | } |
2542 | } | |
7bd9bcf3 | 2543 | if (update->flags & REF_NEEDS_COMMIT) { |
00eebe35 | 2544 | clear_loose_ref_cache(refs); |
92b1551b MH |
2545 | if (commit_ref(lock)) { |
2546 | strbuf_addf(err, "couldn't set '%s'", lock->ref_name); | |
2547 | unlock_ref(lock); | |
7d618264 | 2548 | update->backend_data = NULL; |
7bd9bcf3 MH |
2549 | ret = TRANSACTION_GENERIC_ERROR; |
2550 | goto cleanup; | |
7bd9bcf3 MH |
2551 | } |
2552 | } | |
2553 | } | |
7bd9bcf3 | 2554 | /* Perform deletes now that updates are safely completed */ |
efe47281 MH |
2555 | for (i = 0; i < transaction->nr; i++) { |
2556 | struct ref_update *update = transaction->updates[i]; | |
7d618264 | 2557 | struct ref_lock *lock = update->backend_data; |
7bd9bcf3 | 2558 | |
d99aa884 DT |
2559 | if (update->flags & REF_DELETING && |
2560 | !(update->flags & REF_LOG_ONLY)) { | |
ce0af24d MH |
2561 | if (!(update->type & REF_ISPACKED) || |
2562 | update->type & REF_ISSYMREF) { | |
2563 | /* It is a loose reference. */ | |
e9dcc305 | 2564 | strbuf_reset(&sb); |
19e02f4f | 2565 | files_ref_path(refs, &sb, lock->ref_name); |
e9dcc305 | 2566 | if (unlink_or_msg(sb.buf, err)) { |
ce0af24d MH |
2567 | ret = TRANSACTION_GENERIC_ERROR; |
2568 | goto cleanup; | |
2569 | } | |
44639777 | 2570 | update->flags |= REF_DELETED_LOOSE; |
7bd9bcf3 MH |
2571 | } |
2572 | ||
2573 | if (!(update->flags & REF_ISPRUNING)) | |
2574 | string_list_append(&refs_to_delete, | |
7d618264 | 2575 | lock->ref_name); |
7bd9bcf3 MH |
2576 | } |
2577 | } | |
2578 | ||
e5cc7d7d | 2579 | if (packed_refs_lock(refs->packed_ref_store, 0, err)) { |
7bd9bcf3 MH |
2580 | ret = TRANSACTION_GENERIC_ERROR; |
2581 | goto cleanup; | |
2582 | } | |
44639777 | 2583 | |
0f199b1e | 2584 | if (repack_without_refs(refs->packed_ref_store, &refs_to_delete, err)) { |
7bd9bcf3 | 2585 | ret = TRANSACTION_GENERIC_ERROR; |
e5cc7d7d | 2586 | packed_refs_unlock(refs->packed_ref_store); |
7bd9bcf3 MH |
2587 | goto cleanup; |
2588 | } | |
44639777 | 2589 | |
e5cc7d7d MH |
2590 | packed_refs_unlock(refs->packed_ref_store); |
2591 | ||
44639777 MH |
2592 | /* Delete the reflogs of any references that were deleted: */ |
2593 | for_each_string_list_item(ref_to_delete, &refs_to_delete) { | |
e9dcc305 | 2594 | strbuf_reset(&sb); |
802de3da | 2595 | files_reflog_path(refs, &sb, ref_to_delete->string); |
e9dcc305 | 2596 | if (!unlink_or_warn(sb.buf)) |
802de3da | 2597 | try_remove_empty_parents(refs, ref_to_delete->string, |
44639777 MH |
2598 | REMOVE_EMPTY_PARENTS_REFLOG); |
2599 | } | |
2600 | ||
00eebe35 | 2601 | clear_loose_ref_cache(refs); |
7bd9bcf3 MH |
2602 | |
2603 | cleanup: | |
c0ca9357 | 2604 | files_transaction_cleanup(transaction); |
7bd9bcf3 | 2605 | |
44639777 MH |
2606 | for (i = 0; i < transaction->nr; i++) { |
2607 | struct ref_update *update = transaction->updates[i]; | |
44639777 MH |
2608 | |
2609 | if (update->flags & REF_DELETED_LOOSE) { | |
2610 | /* | |
2611 | * The loose reference was deleted. Delete any | |
2612 | * empty parent directories. (Note that this | |
2613 | * can only work because we have already | |
2614 | * removed the lockfile.) | |
2615 | */ | |
802de3da | 2616 | try_remove_empty_parents(refs, update->refname, |
44639777 MH |
2617 | REMOVE_EMPTY_PARENTS_REF); |
2618 | } | |
2619 | } | |
2620 | ||
30173b88 | 2621 | strbuf_release(&sb); |
7bd9bcf3 | 2622 | string_list_clear(&refs_to_delete, 0); |
7bd9bcf3 MH |
2623 | return ret; |
2624 | } | |
2625 | ||
30173b88 MH |
2626 | static int files_transaction_abort(struct ref_store *ref_store, |
2627 | struct ref_transaction *transaction, | |
2628 | struct strbuf *err) | |
2629 | { | |
2630 | files_transaction_cleanup(transaction); | |
2631 | return 0; | |
2632 | } | |
2633 | ||
7bd9bcf3 MH |
2634 | static int ref_present(const char *refname, |
2635 | const struct object_id *oid, int flags, void *cb_data) | |
2636 | { | |
2637 | struct string_list *affected_refnames = cb_data; | |
2638 | ||
2639 | return string_list_has_string(affected_refnames, refname); | |
2640 | } | |
2641 | ||
fc681463 DT |
2642 | static int files_initial_transaction_commit(struct ref_store *ref_store, |
2643 | struct ref_transaction *transaction, | |
2644 | struct strbuf *err) | |
7bd9bcf3 | 2645 | { |
d99825ab | 2646 | struct files_ref_store *refs = |
9e7ec634 NTND |
2647 | files_downcast(ref_store, REF_STORE_WRITE, |
2648 | "initial_ref_transaction_commit"); | |
43a2dfde MH |
2649 | size_t i; |
2650 | int ret = 0; | |
7bd9bcf3 MH |
2651 | struct string_list affected_refnames = STRING_LIST_INIT_NODUP; |
2652 | ||
2653 | assert(err); | |
2654 | ||
2655 | if (transaction->state != REF_TRANSACTION_OPEN) | |
2656 | die("BUG: commit called for transaction that is not open"); | |
2657 | ||
2658 | /* Fail if a refname appears more than once in the transaction: */ | |
efe47281 MH |
2659 | for (i = 0; i < transaction->nr; i++) |
2660 | string_list_append(&affected_refnames, | |
2661 | transaction->updates[i]->refname); | |
7bd9bcf3 MH |
2662 | string_list_sort(&affected_refnames); |
2663 | if (ref_update_reject_duplicates(&affected_refnames, err)) { | |
2664 | ret = TRANSACTION_GENERIC_ERROR; | |
2665 | goto cleanup; | |
2666 | } | |
2667 | ||
2668 | /* | |
2669 | * It's really undefined to call this function in an active | |
2670 | * repository or when there are existing references: we are | |
2671 | * only locking and changing packed-refs, so (1) any | |
2672 | * simultaneous processes might try to change a reference at | |
2673 | * the same time we do, and (2) any existing loose versions of | |
2674 | * the references that we are setting would have precedence | |
2675 | * over our values. But some remote helpers create the remote | |
2676 | * "HEAD" and "master" branches before calling this function, | |
2677 | * so here we really only check that none of the references | |
2678 | * that we are creating already exists. | |
2679 | */ | |
2f40e954 NTND |
2680 | if (refs_for_each_rawref(&refs->base, ref_present, |
2681 | &affected_refnames)) | |
7bd9bcf3 MH |
2682 | die("BUG: initial ref transaction called with existing refs"); |
2683 | ||
efe47281 MH |
2684 | for (i = 0; i < transaction->nr; i++) { |
2685 | struct ref_update *update = transaction->updates[i]; | |
7bd9bcf3 MH |
2686 | |
2687 | if ((update->flags & REF_HAVE_OLD) && | |
98491298 | 2688 | !is_null_oid(&update->old_oid)) |
7bd9bcf3 | 2689 | die("BUG: initial ref transaction with old_sha1 set"); |
7d2df051 NTND |
2690 | if (refs_verify_refname_available(&refs->base, update->refname, |
2691 | &affected_refnames, NULL, | |
2692 | err)) { | |
7bd9bcf3 MH |
2693 | ret = TRANSACTION_NAME_CONFLICT; |
2694 | goto cleanup; | |
2695 | } | |
2696 | } | |
2697 | ||
c8bed835 | 2698 | if (packed_refs_lock(refs->packed_ref_store, 0, err)) { |
7bd9bcf3 MH |
2699 | ret = TRANSACTION_GENERIC_ERROR; |
2700 | goto cleanup; | |
2701 | } | |
2702 | ||
efe47281 MH |
2703 | for (i = 0; i < transaction->nr; i++) { |
2704 | struct ref_update *update = transaction->updates[i]; | |
7bd9bcf3 MH |
2705 | |
2706 | if ((update->flags & REF_HAVE_NEW) && | |
98491298 | 2707 | !is_null_oid(&update->new_oid)) |
e70b7029 | 2708 | add_packed_ref(refs->packed_ref_store, update->refname, |
4417df8c | 2709 | &update->new_oid); |
7bd9bcf3 MH |
2710 | } |
2711 | ||
3478983b | 2712 | if (commit_packed_refs(refs->packed_ref_store, err)) { |
7bd9bcf3 MH |
2713 | ret = TRANSACTION_GENERIC_ERROR; |
2714 | goto cleanup; | |
2715 | } | |
2716 | ||
2717 | cleanup: | |
42c7f7ff | 2718 | packed_refs_unlock(refs->packed_ref_store); |
7bd9bcf3 MH |
2719 | transaction->state = REF_TRANSACTION_CLOSED; |
2720 | string_list_clear(&affected_refnames, 0); | |
2721 | return ret; | |
2722 | } | |
2723 | ||
2724 | struct expire_reflog_cb { | |
2725 | unsigned int flags; | |
2726 | reflog_expiry_should_prune_fn *should_prune_fn; | |
2727 | void *policy_cb; | |
2728 | FILE *newlog; | |
9461d272 | 2729 | struct object_id last_kept_oid; |
7bd9bcf3 MH |
2730 | }; |
2731 | ||
9461d272 | 2732 | static int expire_reflog_ent(struct object_id *ooid, struct object_id *noid, |
dddbad72 | 2733 | const char *email, timestamp_t timestamp, int tz, |
7bd9bcf3 MH |
2734 | const char *message, void *cb_data) |
2735 | { | |
2736 | struct expire_reflog_cb *cb = cb_data; | |
2737 | struct expire_reflog_policy_cb *policy_cb = cb->policy_cb; | |
2738 | ||
2739 | if (cb->flags & EXPIRE_REFLOGS_REWRITE) | |
9461d272 | 2740 | ooid = &cb->last_kept_oid; |
7bd9bcf3 | 2741 | |
4322478a | 2742 | if ((*cb->should_prune_fn)(ooid, noid, email, timestamp, tz, |
7bd9bcf3 MH |
2743 | message, policy_cb)) { |
2744 | if (!cb->newlog) | |
2745 | printf("would prune %s", message); | |
2746 | else if (cb->flags & EXPIRE_REFLOGS_VERBOSE) | |
2747 | printf("prune %s", message); | |
2748 | } else { | |
2749 | if (cb->newlog) { | |
cb71f8bd | 2750 | fprintf(cb->newlog, "%s %s %s %"PRItime" %+05d\t%s", |
9461d272 | 2751 | oid_to_hex(ooid), oid_to_hex(noid), |
7bd9bcf3 | 2752 | email, timestamp, tz, message); |
9461d272 | 2753 | oidcpy(&cb->last_kept_oid, noid); |
7bd9bcf3 MH |
2754 | } |
2755 | if (cb->flags & EXPIRE_REFLOGS_VERBOSE) | |
2756 | printf("keep %s", message); | |
2757 | } | |
2758 | return 0; | |
2759 | } | |
2760 | ||
e3688bd6 DT |
2761 | static int files_reflog_expire(struct ref_store *ref_store, |
2762 | const char *refname, const unsigned char *sha1, | |
2763 | unsigned int flags, | |
2764 | reflog_expiry_prepare_fn prepare_fn, | |
2765 | reflog_expiry_should_prune_fn should_prune_fn, | |
2766 | reflog_expiry_cleanup_fn cleanup_fn, | |
2767 | void *policy_cb_data) | |
7bd9bcf3 | 2768 | { |
7eb27cdf | 2769 | struct files_ref_store *refs = |
9e7ec634 | 2770 | files_downcast(ref_store, REF_STORE_WRITE, "reflog_expire"); |
7bd9bcf3 MH |
2771 | static struct lock_file reflog_lock; |
2772 | struct expire_reflog_cb cb; | |
2773 | struct ref_lock *lock; | |
802de3da | 2774 | struct strbuf log_file_sb = STRBUF_INIT; |
7bd9bcf3 MH |
2775 | char *log_file; |
2776 | int status = 0; | |
2777 | int type; | |
2778 | struct strbuf err = STRBUF_INIT; | |
4322478a | 2779 | struct object_id oid; |
7bd9bcf3 MH |
2780 | |
2781 | memset(&cb, 0, sizeof(cb)); | |
2782 | cb.flags = flags; | |
2783 | cb.policy_cb = policy_cb_data; | |
2784 | cb.should_prune_fn = should_prune_fn; | |
2785 | ||
2786 | /* | |
2787 | * The reflog file is locked by holding the lock on the | |
2788 | * reference itself, plus we might need to update the | |
2789 | * reference if --updateref was specified: | |
2790 | */ | |
7eb27cdf MH |
2791 | lock = lock_ref_sha1_basic(refs, refname, sha1, |
2792 | NULL, NULL, REF_NODEREF, | |
41d796ed | 2793 | &type, &err); |
7bd9bcf3 MH |
2794 | if (!lock) { |
2795 | error("cannot lock ref '%s': %s", refname, err.buf); | |
2796 | strbuf_release(&err); | |
2797 | return -1; | |
2798 | } | |
2f40e954 | 2799 | if (!refs_reflog_exists(ref_store, refname)) { |
7bd9bcf3 MH |
2800 | unlock_ref(lock); |
2801 | return 0; | |
2802 | } | |
2803 | ||
802de3da NTND |
2804 | files_reflog_path(refs, &log_file_sb, refname); |
2805 | log_file = strbuf_detach(&log_file_sb, NULL); | |
7bd9bcf3 MH |
2806 | if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) { |
2807 | /* | |
2808 | * Even though holding $GIT_DIR/logs/$reflog.lock has | |
2809 | * no locking implications, we use the lock_file | |
2810 | * machinery here anyway because it does a lot of the | |
2811 | * work we need, including cleaning up if the program | |
2812 | * exits unexpectedly. | |
2813 | */ | |
2814 | if (hold_lock_file_for_update(&reflog_lock, log_file, 0) < 0) { | |
2815 | struct strbuf err = STRBUF_INIT; | |
2816 | unable_to_lock_message(log_file, errno, &err); | |
2817 | error("%s", err.buf); | |
2818 | strbuf_release(&err); | |
2819 | goto failure; | |
2820 | } | |
2821 | cb.newlog = fdopen_lock_file(&reflog_lock, "w"); | |
2822 | if (!cb.newlog) { | |
2823 | error("cannot fdopen %s (%s)", | |
2824 | get_lock_file_path(&reflog_lock), strerror(errno)); | |
2825 | goto failure; | |
2826 | } | |
2827 | } | |
2828 | ||
4322478a | 2829 | hashcpy(oid.hash, sha1); |
2830 | ||
2831 | (*prepare_fn)(refname, &oid, cb.policy_cb); | |
2f40e954 | 2832 | refs_for_each_reflog_ent(ref_store, refname, expire_reflog_ent, &cb); |
7bd9bcf3 MH |
2833 | (*cleanup_fn)(cb.policy_cb); |
2834 | ||
2835 | if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) { | |
2836 | /* | |
2837 | * It doesn't make sense to adjust a reference pointed | |
2838 | * to by a symbolic ref based on expiring entries in | |
2839 | * the symbolic reference's reflog. Nor can we update | |
2840 | * a reference if there are no remaining reflog | |
2841 | * entries. | |
2842 | */ | |
2843 | int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) && | |
2844 | !(type & REF_ISSYMREF) && | |
9461d272 | 2845 | !is_null_oid(&cb.last_kept_oid); |
7bd9bcf3 MH |
2846 | |
2847 | if (close_lock_file(&reflog_lock)) { | |
2848 | status |= error("couldn't write %s: %s", log_file, | |
2849 | strerror(errno)); | |
2850 | } else if (update && | |
2851 | (write_in_full(get_lock_file_fd(lock->lk), | |
9461d272 | 2852 | oid_to_hex(&cb.last_kept_oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ || |
7bd9bcf3 MH |
2853 | write_str_in_full(get_lock_file_fd(lock->lk), "\n") != 1 || |
2854 | close_ref(lock) < 0)) { | |
2855 | status |= error("couldn't write %s", | |
2856 | get_lock_file_path(lock->lk)); | |
2857 | rollback_lock_file(&reflog_lock); | |
2858 | } else if (commit_lock_file(&reflog_lock)) { | |
e0048d3e | 2859 | status |= error("unable to write reflog '%s' (%s)", |
7bd9bcf3 MH |
2860 | log_file, strerror(errno)); |
2861 | } else if (update && commit_ref(lock)) { | |
2862 | status |= error("couldn't set %s", lock->ref_name); | |
2863 | } | |
2864 | } | |
2865 | free(log_file); | |
2866 | unlock_ref(lock); | |
2867 | return status; | |
2868 | ||
2869 | failure: | |
2870 | rollback_lock_file(&reflog_lock); | |
2871 | free(log_file); | |
2872 | unlock_ref(lock); | |
2873 | return -1; | |
2874 | } | |
3dce444f | 2875 | |
6fb5acfd DT |
2876 | static int files_init_db(struct ref_store *ref_store, struct strbuf *err) |
2877 | { | |
19e02f4f | 2878 | struct files_ref_store *refs = |
9e7ec634 | 2879 | files_downcast(ref_store, REF_STORE_WRITE, "init_db"); |
e9dcc305 NTND |
2880 | struct strbuf sb = STRBUF_INIT; |
2881 | ||
6fb5acfd DT |
2882 | /* |
2883 | * Create .git/refs/{heads,tags} | |
2884 | */ | |
19e02f4f | 2885 | files_ref_path(refs, &sb, "refs/heads"); |
e9dcc305 NTND |
2886 | safe_create_dir(sb.buf, 1); |
2887 | ||
2888 | strbuf_reset(&sb); | |
19e02f4f | 2889 | files_ref_path(refs, &sb, "refs/tags"); |
e9dcc305 NTND |
2890 | safe_create_dir(sb.buf, 1); |
2891 | ||
2892 | strbuf_release(&sb); | |
6fb5acfd DT |
2893 | return 0; |
2894 | } | |
2895 | ||
3dce444f RS |
2896 | struct ref_storage_be refs_be_files = { |
2897 | NULL, | |
00eebe35 | 2898 | "files", |
127b42a1 | 2899 | files_ref_store_create, |
6fb5acfd | 2900 | files_init_db, |
30173b88 MH |
2901 | files_transaction_prepare, |
2902 | files_transaction_finish, | |
2903 | files_transaction_abort, | |
fc681463 | 2904 | files_initial_transaction_commit, |
e1e33b72 | 2905 | |
8231527e | 2906 | files_pack_refs, |
bd427cf2 | 2907 | files_peel_ref, |
284689ba | 2908 | files_create_symref, |
a27dcf89 | 2909 | files_delete_refs, |
9b6b40d9 | 2910 | files_rename_ref, |
8231527e | 2911 | |
1a769003 | 2912 | files_ref_iterator_begin, |
62665823 | 2913 | files_read_raw_ref, |
e3688bd6 DT |
2914 | |
2915 | files_reflog_iterator_begin, | |
2916 | files_for_each_reflog_ent, | |
2917 | files_for_each_reflog_ent_reverse, | |
2918 | files_reflog_exists, | |
2919 | files_create_reflog, | |
2920 | files_delete_reflog, | |
2921 | files_reflog_expire | |
3dce444f | 2922 | }; |