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