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