Merge branch 'mg/branch-d-m-f'
[git] / refs.c
1 #include "cache.h"
2 #include "lockfile.h"
3 #include "refs.h"
4 #include "object.h"
5 #include "tag.h"
6 #include "dir.h"
7 #include "string-list.h"
8
9 /*
10  * How to handle various characters in refnames:
11  * 0: An acceptable character for refs
12  * 1: End-of-component
13  * 2: ., look for a preceding . to reject .. in refs
14  * 3: {, look for a preceding @ to reject @{ in refs
15  * 4: A bad character: ASCII control characters, "~", "^", ":" or SP
16  */
17 static unsigned char refname_disposition[256] = {
18         1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
19         4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
20         4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 1,
21         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
22         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
23         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
24         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
25         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
26 };
27
28 /*
29  * Used as a flag to ref_transaction_delete when a loose ref is being
30  * pruned.
31  */
32 #define REF_ISPRUNING   0x0100
33 /*
34  * Try to read one refname component from the front of refname.
35  * Return the length of the component found, or -1 if the component is
36  * not legal.  It is legal if it is something reasonable to have under
37  * ".git/refs/"; We do not like it if:
38  *
39  * - any path component of it begins with ".", or
40  * - it has double dots "..", or
41  * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
42  * - it ends with a "/".
43  * - it ends with ".lock"
44  * - it contains a "\" (backslash)
45  */
46 static int check_refname_component(const char *refname, int flags)
47 {
48         const char *cp;
49         char last = '\0';
50
51         for (cp = refname; ; cp++) {
52                 int ch = *cp & 255;
53                 unsigned char disp = refname_disposition[ch];
54                 switch (disp) {
55                 case 1:
56                         goto out;
57                 case 2:
58                         if (last == '.')
59                                 return -1; /* Refname contains "..". */
60                         break;
61                 case 3:
62                         if (last == '@')
63                                 return -1; /* Refname contains "@{". */
64                         break;
65                 case 4:
66                         return -1;
67                 }
68                 last = ch;
69         }
70 out:
71         if (cp == refname)
72                 return 0; /* Component has zero length. */
73         if (refname[0] == '.')
74                 return -1; /* Component starts with '.'. */
75         if (cp - refname >= LOCK_SUFFIX_LEN &&
76             !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
77                 return -1; /* Refname ends with ".lock". */
78         return cp - refname;
79 }
80
81 int check_refname_format(const char *refname, int flags)
82 {
83         int component_len, component_count = 0;
84
85         if (!strcmp(refname, "@"))
86                 /* Refname is a single character '@'. */
87                 return -1;
88
89         while (1) {
90                 /* We are at the start of a path component. */
91                 component_len = check_refname_component(refname, flags);
92                 if (component_len <= 0) {
93                         if ((flags & REFNAME_REFSPEC_PATTERN) &&
94                                         refname[0] == '*' &&
95                                         (refname[1] == '\0' || refname[1] == '/')) {
96                                 /* Accept one wildcard as a full refname component. */
97                                 flags &= ~REFNAME_REFSPEC_PATTERN;
98                                 component_len = 1;
99                         } else {
100                                 return -1;
101                         }
102                 }
103                 component_count++;
104                 if (refname[component_len] == '\0')
105                         break;
106                 /* Skip to next component. */
107                 refname += component_len + 1;
108         }
109
110         if (refname[component_len - 1] == '.')
111                 return -1; /* Refname ends with '.'. */
112         if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
113                 return -1; /* Refname has only one component. */
114         return 0;
115 }
116
117 struct ref_entry;
118
119 /*
120  * Information used (along with the information in ref_entry) to
121  * describe a single cached reference.  This data structure only
122  * occurs embedded in a union in struct ref_entry, and only when
123  * (ref_entry->flag & REF_DIR) is zero.
124  */
125 struct ref_value {
126         /*
127          * The name of the object to which this reference resolves
128          * (which may be a tag object).  If REF_ISBROKEN, this is
129          * null.  If REF_ISSYMREF, then this is the name of the object
130          * referred to by the last reference in the symlink chain.
131          */
132         unsigned char sha1[20];
133
134         /*
135          * If REF_KNOWS_PEELED, then this field holds the peeled value
136          * of this reference, or null if the reference is known not to
137          * be peelable.  See the documentation for peel_ref() for an
138          * exact definition of "peelable".
139          */
140         unsigned char peeled[20];
141 };
142
143 struct ref_cache;
144
145 /*
146  * Information used (along with the information in ref_entry) to
147  * describe a level in the hierarchy of references.  This data
148  * structure only occurs embedded in a union in struct ref_entry, and
149  * only when (ref_entry.flag & REF_DIR) is set.  In that case,
150  * (ref_entry.flag & REF_INCOMPLETE) determines whether the references
151  * in the directory have already been read:
152  *
153  *     (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose
154  *         or packed references, already read.
155  *
156  *     (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose
157  *         references that hasn't been read yet (nor has any of its
158  *         subdirectories).
159  *
160  * Entries within a directory are stored within a growable array of
161  * pointers to ref_entries (entries, nr, alloc).  Entries 0 <= i <
162  * sorted are sorted by their component name in strcmp() order and the
163  * remaining entries are unsorted.
164  *
165  * Loose references are read lazily, one directory at a time.  When a
166  * directory of loose references is read, then all of the references
167  * in that directory are stored, and REF_INCOMPLETE stubs are created
168  * for any subdirectories, but the subdirectories themselves are not
169  * read.  The reading is triggered by get_ref_dir().
170  */
171 struct ref_dir {
172         int nr, alloc;
173
174         /*
175          * Entries with index 0 <= i < sorted are sorted by name.  New
176          * entries are appended to the list unsorted, and are sorted
177          * only when required; thus we avoid the need to sort the list
178          * after the addition of every reference.
179          */
180         int sorted;
181
182         /* A pointer to the ref_cache that contains this ref_dir. */
183         struct ref_cache *ref_cache;
184
185         struct ref_entry **entries;
186 };
187
188 /*
189  * Bit values for ref_entry::flag.  REF_ISSYMREF=0x01,
190  * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are
191  * public values; see refs.h.
192  */
193
194 /*
195  * The field ref_entry->u.value.peeled of this value entry contains
196  * the correct peeled value for the reference, which might be
197  * null_sha1 if the reference is not a tag or if it is broken.
198  */
199 #define REF_KNOWS_PEELED 0x10
200
201 /* ref_entry represents a directory of references */
202 #define REF_DIR 0x20
203
204 /*
205  * Entry has not yet been read from disk (used only for REF_DIR
206  * entries representing loose references)
207  */
208 #define REF_INCOMPLETE 0x40
209
210 /*
211  * A ref_entry represents either a reference or a "subdirectory" of
212  * references.
213  *
214  * Each directory in the reference namespace is represented by a
215  * ref_entry with (flags & REF_DIR) set and containing a subdir member
216  * that holds the entries in that directory that have been read so
217  * far.  If (flags & REF_INCOMPLETE) is set, then the directory and
218  * its subdirectories haven't been read yet.  REF_INCOMPLETE is only
219  * used for loose reference directories.
220  *
221  * References are represented by a ref_entry with (flags & REF_DIR)
222  * unset and a value member that describes the reference's value.  The
223  * flag member is at the ref_entry level, but it is also needed to
224  * interpret the contents of the value field (in other words, a
225  * ref_value object is not very much use without the enclosing
226  * ref_entry).
227  *
228  * Reference names cannot end with slash and directories' names are
229  * always stored with a trailing slash (except for the top-level
230  * directory, which is always denoted by "").  This has two nice
231  * consequences: (1) when the entries in each subdir are sorted
232  * lexicographically by name (as they usually are), the references in
233  * a whole tree can be generated in lexicographic order by traversing
234  * the tree in left-to-right, depth-first order; (2) the names of
235  * references and subdirectories cannot conflict, and therefore the
236  * presence of an empty subdirectory does not block the creation of a
237  * similarly-named reference.  (The fact that reference names with the
238  * same leading components can conflict *with each other* is a
239  * separate issue that is regulated by is_refname_available().)
240  *
241  * Please note that the name field contains the fully-qualified
242  * reference (or subdirectory) name.  Space could be saved by only
243  * storing the relative names.  But that would require the full names
244  * to be generated on the fly when iterating in do_for_each_ref(), and
245  * would break callback functions, who have always been able to assume
246  * that the name strings that they are passed will not be freed during
247  * the iteration.
248  */
249 struct ref_entry {
250         unsigned char flag; /* ISSYMREF? ISPACKED? */
251         union {
252                 struct ref_value value; /* if not (flags&REF_DIR) */
253                 struct ref_dir subdir; /* if (flags&REF_DIR) */
254         } u;
255         /*
256          * The full name of the reference (e.g., "refs/heads/master")
257          * or the full name of the directory with a trailing slash
258          * (e.g., "refs/heads/"):
259          */
260         char name[FLEX_ARRAY];
261 };
262
263 static void read_loose_refs(const char *dirname, struct ref_dir *dir);
264
265 static struct ref_dir *get_ref_dir(struct ref_entry *entry)
266 {
267         struct ref_dir *dir;
268         assert(entry->flag & REF_DIR);
269         dir = &entry->u.subdir;
270         if (entry->flag & REF_INCOMPLETE) {
271                 read_loose_refs(entry->name, dir);
272                 entry->flag &= ~REF_INCOMPLETE;
273         }
274         return dir;
275 }
276
277 /*
278  * Check if a refname is safe.
279  * For refs that start with "refs/" we consider it safe as long they do
280  * not try to resolve to outside of refs/.
281  *
282  * For all other refs we only consider them safe iff they only contain
283  * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like
284  * "config").
285  */
286 static int refname_is_safe(const char *refname)
287 {
288         if (starts_with(refname, "refs/")) {
289                 char *buf;
290                 int result;
291
292                 buf = xmalloc(strlen(refname) + 1);
293                 /*
294                  * Does the refname try to escape refs/?
295                  * For example: refs/foo/../bar is safe but refs/foo/../../bar
296                  * is not.
297                  */
298                 result = !normalize_path_copy(buf, refname + strlen("refs/"));
299                 free(buf);
300                 return result;
301         }
302         while (*refname) {
303                 if (!isupper(*refname) && *refname != '_')
304                         return 0;
305                 refname++;
306         }
307         return 1;
308 }
309
310 static struct ref_entry *create_ref_entry(const char *refname,
311                                           const unsigned char *sha1, int flag,
312                                           int check_name)
313 {
314         int len;
315         struct ref_entry *ref;
316
317         if (check_name &&
318             check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
319                 die("Reference has invalid format: '%s'", refname);
320         if (!check_name && !refname_is_safe(refname))
321                 die("Reference has invalid name: '%s'", refname);
322         len = strlen(refname) + 1;
323         ref = xmalloc(sizeof(struct ref_entry) + len);
324         hashcpy(ref->u.value.sha1, sha1);
325         hashclr(ref->u.value.peeled);
326         memcpy(ref->name, refname, len);
327         ref->flag = flag;
328         return ref;
329 }
330
331 static void clear_ref_dir(struct ref_dir *dir);
332
333 static void free_ref_entry(struct ref_entry *entry)
334 {
335         if (entry->flag & REF_DIR) {
336                 /*
337                  * Do not use get_ref_dir() here, as that might
338                  * trigger the reading of loose refs.
339                  */
340                 clear_ref_dir(&entry->u.subdir);
341         }
342         free(entry);
343 }
344
345 /*
346  * Add a ref_entry to the end of dir (unsorted).  Entry is always
347  * stored directly in dir; no recursion into subdirectories is
348  * done.
349  */
350 static void add_entry_to_dir(struct ref_dir *dir, struct ref_entry *entry)
351 {
352         ALLOC_GROW(dir->entries, dir->nr + 1, dir->alloc);
353         dir->entries[dir->nr++] = entry;
354         /* optimize for the case that entries are added in order */
355         if (dir->nr == 1 ||
356             (dir->nr == dir->sorted + 1 &&
357              strcmp(dir->entries[dir->nr - 2]->name,
358                     dir->entries[dir->nr - 1]->name) < 0))
359                 dir->sorted = dir->nr;
360 }
361
362 /*
363  * Clear and free all entries in dir, recursively.
364  */
365 static void clear_ref_dir(struct ref_dir *dir)
366 {
367         int i;
368         for (i = 0; i < dir->nr; i++)
369                 free_ref_entry(dir->entries[i]);
370         free(dir->entries);
371         dir->sorted = dir->nr = dir->alloc = 0;
372         dir->entries = NULL;
373 }
374
375 /*
376  * Create a struct ref_entry object for the specified dirname.
377  * dirname is the name of the directory with a trailing slash (e.g.,
378  * "refs/heads/") or "" for the top-level directory.
379  */
380 static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache,
381                                           const char *dirname, size_t len,
382                                           int incomplete)
383 {
384         struct ref_entry *direntry;
385         direntry = xcalloc(1, sizeof(struct ref_entry) + len + 1);
386         memcpy(direntry->name, dirname, len);
387         direntry->name[len] = '\0';
388         direntry->u.subdir.ref_cache = ref_cache;
389         direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE : 0);
390         return direntry;
391 }
392
393 static int ref_entry_cmp(const void *a, const void *b)
394 {
395         struct ref_entry *one = *(struct ref_entry **)a;
396         struct ref_entry *two = *(struct ref_entry **)b;
397         return strcmp(one->name, two->name);
398 }
399
400 static void sort_ref_dir(struct ref_dir *dir);
401
402 struct string_slice {
403         size_t len;
404         const char *str;
405 };
406
407 static int ref_entry_cmp_sslice(const void *key_, const void *ent_)
408 {
409         const struct string_slice *key = key_;
410         const struct ref_entry *ent = *(const struct ref_entry * const *)ent_;
411         int cmp = strncmp(key->str, ent->name, key->len);
412         if (cmp)
413                 return cmp;
414         return '\0' - (unsigned char)ent->name[key->len];
415 }
416
417 /*
418  * Return the index of the entry with the given refname from the
419  * ref_dir (non-recursively), sorting dir if necessary.  Return -1 if
420  * no such entry is found.  dir must already be complete.
421  */
422 static int search_ref_dir(struct ref_dir *dir, const char *refname, size_t len)
423 {
424         struct ref_entry **r;
425         struct string_slice key;
426
427         if (refname == NULL || !dir->nr)
428                 return -1;
429
430         sort_ref_dir(dir);
431         key.len = len;
432         key.str = refname;
433         r = bsearch(&key, dir->entries, dir->nr, sizeof(*dir->entries),
434                     ref_entry_cmp_sslice);
435
436         if (r == NULL)
437                 return -1;
438
439         return r - dir->entries;
440 }
441
442 /*
443  * Search for a directory entry directly within dir (without
444  * recursing).  Sort dir if necessary.  subdirname must be a directory
445  * name (i.e., end in '/').  If mkdir is set, then create the
446  * directory if it is missing; otherwise, return NULL if the desired
447  * directory cannot be found.  dir must already be complete.
448  */
449 static struct ref_dir *search_for_subdir(struct ref_dir *dir,
450                                          const char *subdirname, size_t len,
451                                          int mkdir)
452 {
453         int entry_index = search_ref_dir(dir, subdirname, len);
454         struct ref_entry *entry;
455         if (entry_index == -1) {
456                 if (!mkdir)
457                         return NULL;
458                 /*
459                  * Since dir is complete, the absence of a subdir
460                  * means that the subdir really doesn't exist;
461                  * therefore, create an empty record for it but mark
462                  * the record complete.
463                  */
464                 entry = create_dir_entry(dir->ref_cache, subdirname, len, 0);
465                 add_entry_to_dir(dir, entry);
466         } else {
467                 entry = dir->entries[entry_index];
468         }
469         return get_ref_dir(entry);
470 }
471
472 /*
473  * If refname is a reference name, find the ref_dir within the dir
474  * tree that should hold refname.  If refname is a directory name
475  * (i.e., ends in '/'), then return that ref_dir itself.  dir must
476  * represent the top-level directory and must already be complete.
477  * Sort ref_dirs and recurse into subdirectories as necessary.  If
478  * mkdir is set, then create any missing directories; otherwise,
479  * return NULL if the desired directory cannot be found.
480  */
481 static struct ref_dir *find_containing_dir(struct ref_dir *dir,
482                                            const char *refname, int mkdir)
483 {
484         const char *slash;
485         for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
486                 size_t dirnamelen = slash - refname + 1;
487                 struct ref_dir *subdir;
488                 subdir = search_for_subdir(dir, refname, dirnamelen, mkdir);
489                 if (!subdir) {
490                         dir = NULL;
491                         break;
492                 }
493                 dir = subdir;
494         }
495
496         return dir;
497 }
498
499 /*
500  * Find the value entry with the given name in dir, sorting ref_dirs
501  * and recursing into subdirectories as necessary.  If the name is not
502  * found or it corresponds to a directory entry, return NULL.
503  */
504 static struct ref_entry *find_ref(struct ref_dir *dir, const char *refname)
505 {
506         int entry_index;
507         struct ref_entry *entry;
508         dir = find_containing_dir(dir, refname, 0);
509         if (!dir)
510                 return NULL;
511         entry_index = search_ref_dir(dir, refname, strlen(refname));
512         if (entry_index == -1)
513                 return NULL;
514         entry = dir->entries[entry_index];
515         return (entry->flag & REF_DIR) ? NULL : entry;
516 }
517
518 /*
519  * Remove the entry with the given name from dir, recursing into
520  * subdirectories as necessary.  If refname is the name of a directory
521  * (i.e., ends with '/'), then remove the directory and its contents.
522  * If the removal was successful, return the number of entries
523  * remaining in the directory entry that contained the deleted entry.
524  * If the name was not found, return -1.  Please note that this
525  * function only deletes the entry from the cache; it does not delete
526  * it from the filesystem or ensure that other cache entries (which
527  * might be symbolic references to the removed entry) are updated.
528  * Nor does it remove any containing dir entries that might be made
529  * empty by the removal.  dir must represent the top-level directory
530  * and must already be complete.
531  */
532 static int remove_entry(struct ref_dir *dir, const char *refname)
533 {
534         int refname_len = strlen(refname);
535         int entry_index;
536         struct ref_entry *entry;
537         int is_dir = refname[refname_len - 1] == '/';
538         if (is_dir) {
539                 /*
540                  * refname represents a reference directory.  Remove
541                  * the trailing slash; otherwise we will get the
542                  * directory *representing* refname rather than the
543                  * one *containing* it.
544                  */
545                 char *dirname = xmemdupz(refname, refname_len - 1);
546                 dir = find_containing_dir(dir, dirname, 0);
547                 free(dirname);
548         } else {
549                 dir = find_containing_dir(dir, refname, 0);
550         }
551         if (!dir)
552                 return -1;
553         entry_index = search_ref_dir(dir, refname, refname_len);
554         if (entry_index == -1)
555                 return -1;
556         entry = dir->entries[entry_index];
557
558         memmove(&dir->entries[entry_index],
559                 &dir->entries[entry_index + 1],
560                 (dir->nr - entry_index - 1) * sizeof(*dir->entries)
561                 );
562         dir->nr--;
563         if (dir->sorted > entry_index)
564                 dir->sorted--;
565         free_ref_entry(entry);
566         return dir->nr;
567 }
568
569 /*
570  * Add a ref_entry to the ref_dir (unsorted), recursing into
571  * subdirectories as necessary.  dir must represent the top-level
572  * directory.  Return 0 on success.
573  */
574 static int add_ref(struct ref_dir *dir, struct ref_entry *ref)
575 {
576         dir = find_containing_dir(dir, ref->name, 1);
577         if (!dir)
578                 return -1;
579         add_entry_to_dir(dir, ref);
580         return 0;
581 }
582
583 /*
584  * Emit a warning and return true iff ref1 and ref2 have the same name
585  * and the same sha1.  Die if they have the same name but different
586  * sha1s.
587  */
588 static int is_dup_ref(const struct ref_entry *ref1, const struct ref_entry *ref2)
589 {
590         if (strcmp(ref1->name, ref2->name))
591                 return 0;
592
593         /* Duplicate name; make sure that they don't conflict: */
594
595         if ((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR))
596                 /* This is impossible by construction */
597                 die("Reference directory conflict: %s", ref1->name);
598
599         if (hashcmp(ref1->u.value.sha1, ref2->u.value.sha1))
600                 die("Duplicated ref, and SHA1s don't match: %s", ref1->name);
601
602         warning("Duplicated ref: %s", ref1->name);
603         return 1;
604 }
605
606 /*
607  * Sort the entries in dir non-recursively (if they are not already
608  * sorted) and remove any duplicate entries.
609  */
610 static void sort_ref_dir(struct ref_dir *dir)
611 {
612         int i, j;
613         struct ref_entry *last = NULL;
614
615         /*
616          * This check also prevents passing a zero-length array to qsort(),
617          * which is a problem on some platforms.
618          */
619         if (dir->sorted == dir->nr)
620                 return;
621
622         qsort(dir->entries, dir->nr, sizeof(*dir->entries), ref_entry_cmp);
623
624         /* Remove any duplicates: */
625         for (i = 0, j = 0; j < dir->nr; j++) {
626                 struct ref_entry *entry = dir->entries[j];
627                 if (last && is_dup_ref(last, entry))
628                         free_ref_entry(entry);
629                 else
630                         last = dir->entries[i++] = entry;
631         }
632         dir->sorted = dir->nr = i;
633 }
634
635 /* Include broken references in a do_for_each_ref*() iteration: */
636 #define DO_FOR_EACH_INCLUDE_BROKEN 0x01
637
638 /*
639  * Return true iff the reference described by entry can be resolved to
640  * an object in the database.  Emit a warning if the referred-to
641  * object does not exist.
642  */
643 static int ref_resolves_to_object(struct ref_entry *entry)
644 {
645         if (entry->flag & REF_ISBROKEN)
646                 return 0;
647         if (!has_sha1_file(entry->u.value.sha1)) {
648                 error("%s does not point to a valid object!", entry->name);
649                 return 0;
650         }
651         return 1;
652 }
653
654 /*
655  * current_ref is a performance hack: when iterating over references
656  * using the for_each_ref*() functions, current_ref is set to the
657  * current reference's entry before calling the callback function.  If
658  * the callback function calls peel_ref(), then peel_ref() first
659  * checks whether the reference to be peeled is the current reference
660  * (it usually is) and if so, returns that reference's peeled version
661  * if it is available.  This avoids a refname lookup in a common case.
662  */
663 static struct ref_entry *current_ref;
664
665 typedef int each_ref_entry_fn(struct ref_entry *entry, void *cb_data);
666
667 struct ref_entry_cb {
668         const char *base;
669         int trim;
670         int flags;
671         each_ref_fn *fn;
672         void *cb_data;
673 };
674
675 /*
676  * Handle one reference in a do_for_each_ref*()-style iteration,
677  * calling an each_ref_fn for each entry.
678  */
679 static int do_one_ref(struct ref_entry *entry, void *cb_data)
680 {
681         struct ref_entry_cb *data = cb_data;
682         struct ref_entry *old_current_ref;
683         int retval;
684
685         if (!starts_with(entry->name, data->base))
686                 return 0;
687
688         if (!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&
689               !ref_resolves_to_object(entry))
690                 return 0;
691
692         /* Store the old value, in case this is a recursive call: */
693         old_current_ref = current_ref;
694         current_ref = entry;
695         retval = data->fn(entry->name + data->trim, entry->u.value.sha1,
696                           entry->flag, data->cb_data);
697         current_ref = old_current_ref;
698         return retval;
699 }
700
701 /*
702  * Call fn for each reference in dir that has index in the range
703  * offset <= index < dir->nr.  Recurse into subdirectories that are in
704  * that index range, sorting them before iterating.  This function
705  * does not sort dir itself; it should be sorted beforehand.  fn is
706  * called for all references, including broken ones.
707  */
708 static int do_for_each_entry_in_dir(struct ref_dir *dir, int offset,
709                                     each_ref_entry_fn fn, void *cb_data)
710 {
711         int i;
712         assert(dir->sorted == dir->nr);
713         for (i = offset; i < dir->nr; i++) {
714                 struct ref_entry *entry = dir->entries[i];
715                 int retval;
716                 if (entry->flag & REF_DIR) {
717                         struct ref_dir *subdir = get_ref_dir(entry);
718                         sort_ref_dir(subdir);
719                         retval = do_for_each_entry_in_dir(subdir, 0, fn, cb_data);
720                 } else {
721                         retval = fn(entry, cb_data);
722                 }
723                 if (retval)
724                         return retval;
725         }
726         return 0;
727 }
728
729 /*
730  * Call fn for each reference in the union of dir1 and dir2, in order
731  * by refname.  Recurse into subdirectories.  If a value entry appears
732  * in both dir1 and dir2, then only process the version that is in
733  * dir2.  The input dirs must already be sorted, but subdirs will be
734  * sorted as needed.  fn is called for all references, including
735  * broken ones.
736  */
737 static int do_for_each_entry_in_dirs(struct ref_dir *dir1,
738                                      struct ref_dir *dir2,
739                                      each_ref_entry_fn fn, void *cb_data)
740 {
741         int retval;
742         int i1 = 0, i2 = 0;
743
744         assert(dir1->sorted == dir1->nr);
745         assert(dir2->sorted == dir2->nr);
746         while (1) {
747                 struct ref_entry *e1, *e2;
748                 int cmp;
749                 if (i1 == dir1->nr) {
750                         return do_for_each_entry_in_dir(dir2, i2, fn, cb_data);
751                 }
752                 if (i2 == dir2->nr) {
753                         return do_for_each_entry_in_dir(dir1, i1, fn, cb_data);
754                 }
755                 e1 = dir1->entries[i1];
756                 e2 = dir2->entries[i2];
757                 cmp = strcmp(e1->name, e2->name);
758                 if (cmp == 0) {
759                         if ((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) {
760                                 /* Both are directories; descend them in parallel. */
761                                 struct ref_dir *subdir1 = get_ref_dir(e1);
762                                 struct ref_dir *subdir2 = get_ref_dir(e2);
763                                 sort_ref_dir(subdir1);
764                                 sort_ref_dir(subdir2);
765                                 retval = do_for_each_entry_in_dirs(
766                                                 subdir1, subdir2, fn, cb_data);
767                                 i1++;
768                                 i2++;
769                         } else if (!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) {
770                                 /* Both are references; ignore the one from dir1. */
771                                 retval = fn(e2, cb_data);
772                                 i1++;
773                                 i2++;
774                         } else {
775                                 die("conflict between reference and directory: %s",
776                                     e1->name);
777                         }
778                 } else {
779                         struct ref_entry *e;
780                         if (cmp < 0) {
781                                 e = e1;
782                                 i1++;
783                         } else {
784                                 e = e2;
785                                 i2++;
786                         }
787                         if (e->flag & REF_DIR) {
788                                 struct ref_dir *subdir = get_ref_dir(e);
789                                 sort_ref_dir(subdir);
790                                 retval = do_for_each_entry_in_dir(
791                                                 subdir, 0, fn, cb_data);
792                         } else {
793                                 retval = fn(e, cb_data);
794                         }
795                 }
796                 if (retval)
797                         return retval;
798         }
799 }
800
801 /*
802  * Load all of the refs from the dir into our in-memory cache. The hard work
803  * of loading loose refs is done by get_ref_dir(), so we just need to recurse
804  * through all of the sub-directories. We do not even need to care about
805  * sorting, as traversal order does not matter to us.
806  */
807 static void prime_ref_dir(struct ref_dir *dir)
808 {
809         int i;
810         for (i = 0; i < dir->nr; i++) {
811                 struct ref_entry *entry = dir->entries[i];
812                 if (entry->flag & REF_DIR)
813                         prime_ref_dir(get_ref_dir(entry));
814         }
815 }
816
817 static int entry_matches(struct ref_entry *entry, const struct string_list *list)
818 {
819         return list && string_list_has_string(list, entry->name);
820 }
821
822 struct nonmatching_ref_data {
823         const struct string_list *skip;
824         struct ref_entry *found;
825 };
826
827 static int nonmatching_ref_fn(struct ref_entry *entry, void *vdata)
828 {
829         struct nonmatching_ref_data *data = vdata;
830
831         if (entry_matches(entry, data->skip))
832                 return 0;
833
834         data->found = entry;
835         return 1;
836 }
837
838 static void report_refname_conflict(struct ref_entry *entry,
839                                     const char *refname)
840 {
841         error("'%s' exists; cannot create '%s'", entry->name, refname);
842 }
843
844 /*
845  * Return true iff a reference named refname could be created without
846  * conflicting with the name of an existing reference in dir.  If
847  * skip is non-NULL, ignore potential conflicts with refs in skip
848  * (e.g., because they are scheduled for deletion in the same
849  * operation).
850  *
851  * Two reference names conflict if one of them exactly matches the
852  * leading components of the other; e.g., "foo/bar" conflicts with
853  * both "foo" and with "foo/bar/baz" but not with "foo/bar" or
854  * "foo/barbados".
855  *
856  * skip must be sorted.
857  */
858 static int is_refname_available(const char *refname,
859                                 const struct string_list *skip,
860                                 struct ref_dir *dir)
861 {
862         const char *slash;
863         size_t len;
864         int pos;
865         char *dirname;
866
867         for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
868                 /*
869                  * We are still at a leading dir of the refname; we are
870                  * looking for a conflict with a leaf entry.
871                  *
872                  * If we find one, we still must make sure it is
873                  * not in "skip".
874                  */
875                 pos = search_ref_dir(dir, refname, slash - refname);
876                 if (pos >= 0) {
877                         struct ref_entry *entry = dir->entries[pos];
878                         if (entry_matches(entry, skip))
879                                 return 1;
880                         report_refname_conflict(entry, refname);
881                         return 0;
882                 }
883
884
885                 /*
886                  * Otherwise, we can try to continue our search with
887                  * the next component; if we come up empty, we know
888                  * there is nothing under this whole prefix.
889                  */
890                 pos = search_ref_dir(dir, refname, slash + 1 - refname);
891                 if (pos < 0)
892                         return 1;
893
894                 dir = get_ref_dir(dir->entries[pos]);
895         }
896
897         /*
898          * We are at the leaf of our refname; we want to
899          * make sure there are no directories which match it.
900          */
901         len = strlen(refname);
902         dirname = xmallocz(len + 1);
903         sprintf(dirname, "%s/", refname);
904         pos = search_ref_dir(dir, dirname, len + 1);
905         free(dirname);
906
907         if (pos >= 0) {
908                 /*
909                  * We found a directory named "refname". It is a
910                  * problem iff it contains any ref that is not
911                  * in "skip".
912                  */
913                 struct ref_entry *entry = dir->entries[pos];
914                 struct ref_dir *dir = get_ref_dir(entry);
915                 struct nonmatching_ref_data data;
916
917                 data.skip = skip;
918                 sort_ref_dir(dir);
919                 if (!do_for_each_entry_in_dir(dir, 0, nonmatching_ref_fn, &data))
920                         return 1;
921
922                 report_refname_conflict(data.found, refname);
923                 return 0;
924         }
925
926         /*
927          * There is no point in searching for another leaf
928          * node which matches it; such an entry would be the
929          * ref we are looking for, not a conflict.
930          */
931         return 1;
932 }
933
934 struct packed_ref_cache {
935         struct ref_entry *root;
936
937         /*
938          * Count of references to the data structure in this instance,
939          * including the pointer from ref_cache::packed if any.  The
940          * data will not be freed as long as the reference count is
941          * nonzero.
942          */
943         unsigned int referrers;
944
945         /*
946          * Iff the packed-refs file associated with this instance is
947          * currently locked for writing, this points at the associated
948          * lock (which is owned by somebody else).  The referrer count
949          * is also incremented when the file is locked and decremented
950          * when it is unlocked.
951          */
952         struct lock_file *lock;
953
954         /* The metadata from when this packed-refs cache was read */
955         struct stat_validity validity;
956 };
957
958 /*
959  * Future: need to be in "struct repository"
960  * when doing a full libification.
961  */
962 static struct ref_cache {
963         struct ref_cache *next;
964         struct ref_entry *loose;
965         struct packed_ref_cache *packed;
966         /*
967          * The submodule name, or "" for the main repo.  We allocate
968          * length 1 rather than FLEX_ARRAY so that the main ref_cache
969          * is initialized correctly.
970          */
971         char name[1];
972 } ref_cache, *submodule_ref_caches;
973
974 /* Lock used for the main packed-refs file: */
975 static struct lock_file packlock;
976
977 /*
978  * Increment the reference count of *packed_refs.
979  */
980 static void acquire_packed_ref_cache(struct packed_ref_cache *packed_refs)
981 {
982         packed_refs->referrers++;
983 }
984
985 /*
986  * Decrease the reference count of *packed_refs.  If it goes to zero,
987  * free *packed_refs and return true; otherwise return false.
988  */
989 static int release_packed_ref_cache(struct packed_ref_cache *packed_refs)
990 {
991         if (!--packed_refs->referrers) {
992                 free_ref_entry(packed_refs->root);
993                 stat_validity_clear(&packed_refs->validity);
994                 free(packed_refs);
995                 return 1;
996         } else {
997                 return 0;
998         }
999 }
1000
1001 static void clear_packed_ref_cache(struct ref_cache *refs)
1002 {
1003         if (refs->packed) {
1004                 struct packed_ref_cache *packed_refs = refs->packed;
1005
1006                 if (packed_refs->lock)
1007                         die("internal error: packed-ref cache cleared while locked");
1008                 refs->packed = NULL;
1009                 release_packed_ref_cache(packed_refs);
1010         }
1011 }
1012
1013 static void clear_loose_ref_cache(struct ref_cache *refs)
1014 {
1015         if (refs->loose) {
1016                 free_ref_entry(refs->loose);
1017                 refs->loose = NULL;
1018         }
1019 }
1020
1021 static struct ref_cache *create_ref_cache(const char *submodule)
1022 {
1023         int len;
1024         struct ref_cache *refs;
1025         if (!submodule)
1026                 submodule = "";
1027         len = strlen(submodule) + 1;
1028         refs = xcalloc(1, sizeof(struct ref_cache) + len);
1029         memcpy(refs->name, submodule, len);
1030         return refs;
1031 }
1032
1033 /*
1034  * Return a pointer to a ref_cache for the specified submodule. For
1035  * the main repository, use submodule==NULL. The returned structure
1036  * will be allocated and initialized but not necessarily populated; it
1037  * should not be freed.
1038  */
1039 static struct ref_cache *get_ref_cache(const char *submodule)
1040 {
1041         struct ref_cache *refs;
1042
1043         if (!submodule || !*submodule)
1044                 return &ref_cache;
1045
1046         for (refs = submodule_ref_caches; refs; refs = refs->next)
1047                 if (!strcmp(submodule, refs->name))
1048                         return refs;
1049
1050         refs = create_ref_cache(submodule);
1051         refs->next = submodule_ref_caches;
1052         submodule_ref_caches = refs;
1053         return refs;
1054 }
1055
1056 /* The length of a peeled reference line in packed-refs, including EOL: */
1057 #define PEELED_LINE_LENGTH 42
1058
1059 /*
1060  * The packed-refs header line that we write out.  Perhaps other
1061  * traits will be added later.  The trailing space is required.
1062  */
1063 static const char PACKED_REFS_HEADER[] =
1064         "# pack-refs with: peeled fully-peeled \n";
1065
1066 /*
1067  * Parse one line from a packed-refs file.  Write the SHA1 to sha1.
1068  * Return a pointer to the refname within the line (null-terminated),
1069  * or NULL if there was a problem.
1070  */
1071 static const char *parse_ref_line(char *line, unsigned char *sha1)
1072 {
1073         /*
1074          * 42: the answer to everything.
1075          *
1076          * In this case, it happens to be the answer to
1077          *  40 (length of sha1 hex representation)
1078          *  +1 (space in between hex and name)
1079          *  +1 (newline at the end of the line)
1080          */
1081         int len = strlen(line) - 42;
1082
1083         if (len <= 0)
1084                 return NULL;
1085         if (get_sha1_hex(line, sha1) < 0)
1086                 return NULL;
1087         if (!isspace(line[40]))
1088                 return NULL;
1089         line += 41;
1090         if (isspace(*line))
1091                 return NULL;
1092         if (line[len] != '\n')
1093                 return NULL;
1094         line[len] = 0;
1095
1096         return line;
1097 }
1098
1099 /*
1100  * Read f, which is a packed-refs file, into dir.
1101  *
1102  * A comment line of the form "# pack-refs with: " may contain zero or
1103  * more traits. We interpret the traits as follows:
1104  *
1105  *   No traits:
1106  *
1107  *      Probably no references are peeled. But if the file contains a
1108  *      peeled value for a reference, we will use it.
1109  *
1110  *   peeled:
1111  *
1112  *      References under "refs/tags/", if they *can* be peeled, *are*
1113  *      peeled in this file. References outside of "refs/tags/" are
1114  *      probably not peeled even if they could have been, but if we find
1115  *      a peeled value for such a reference we will use it.
1116  *
1117  *   fully-peeled:
1118  *
1119  *      All references in the file that can be peeled are peeled.
1120  *      Inversely (and this is more important), any references in the
1121  *      file for which no peeled value is recorded is not peelable. This
1122  *      trait should typically be written alongside "peeled" for
1123  *      compatibility with older clients, but we do not require it
1124  *      (i.e., "peeled" is a no-op if "fully-peeled" is set).
1125  */
1126 static void read_packed_refs(FILE *f, struct ref_dir *dir)
1127 {
1128         struct ref_entry *last = NULL;
1129         char refline[PATH_MAX];
1130         enum { PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;
1131
1132         while (fgets(refline, sizeof(refline), f)) {
1133                 unsigned char sha1[20];
1134                 const char *refname;
1135                 static const char header[] = "# pack-refs with:";
1136
1137                 if (!strncmp(refline, header, sizeof(header)-1)) {
1138                         const char *traits = refline + sizeof(header) - 1;
1139                         if (strstr(traits, " fully-peeled "))
1140                                 peeled = PEELED_FULLY;
1141                         else if (strstr(traits, " peeled "))
1142                                 peeled = PEELED_TAGS;
1143                         /* perhaps other traits later as well */
1144                         continue;
1145                 }
1146
1147                 refname = parse_ref_line(refline, sha1);
1148                 if (refname) {
1149                         int flag = REF_ISPACKED;
1150
1151                         if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1152                                 hashclr(sha1);
1153                                 flag |= REF_BAD_NAME | REF_ISBROKEN;
1154                         }
1155                         last = create_ref_entry(refname, sha1, flag, 0);
1156                         if (peeled == PEELED_FULLY ||
1157                             (peeled == PEELED_TAGS && starts_with(refname, "refs/tags/")))
1158                                 last->flag |= REF_KNOWS_PEELED;
1159                         add_ref(dir, last);
1160                         continue;
1161                 }
1162                 if (last &&
1163                     refline[0] == '^' &&
1164                     strlen(refline) == PEELED_LINE_LENGTH &&
1165                     refline[PEELED_LINE_LENGTH - 1] == '\n' &&
1166                     !get_sha1_hex(refline + 1, sha1)) {
1167                         hashcpy(last->u.value.peeled, sha1);
1168                         /*
1169                          * Regardless of what the file header said,
1170                          * we definitely know the value of *this*
1171                          * reference:
1172                          */
1173                         last->flag |= REF_KNOWS_PEELED;
1174                 }
1175         }
1176 }
1177
1178 /*
1179  * Get the packed_ref_cache for the specified ref_cache, creating it
1180  * if necessary.
1181  */
1182 static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)
1183 {
1184         const char *packed_refs_file;
1185
1186         if (*refs->name)
1187                 packed_refs_file = git_path_submodule(refs->name, "packed-refs");
1188         else
1189                 packed_refs_file = git_path("packed-refs");
1190
1191         if (refs->packed &&
1192             !stat_validity_check(&refs->packed->validity, packed_refs_file))
1193                 clear_packed_ref_cache(refs);
1194
1195         if (!refs->packed) {
1196                 FILE *f;
1197
1198                 refs->packed = xcalloc(1, sizeof(*refs->packed));
1199                 acquire_packed_ref_cache(refs->packed);
1200                 refs->packed->root = create_dir_entry(refs, "", 0, 0);
1201                 f = fopen(packed_refs_file, "r");
1202                 if (f) {
1203                         stat_validity_update(&refs->packed->validity, fileno(f));
1204                         read_packed_refs(f, get_ref_dir(refs->packed->root));
1205                         fclose(f);
1206                 }
1207         }
1208         return refs->packed;
1209 }
1210
1211 static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)
1212 {
1213         return get_ref_dir(packed_ref_cache->root);
1214 }
1215
1216 static struct ref_dir *get_packed_refs(struct ref_cache *refs)
1217 {
1218         return get_packed_ref_dir(get_packed_ref_cache(refs));
1219 }
1220
1221 void add_packed_ref(const char *refname, const unsigned char *sha1)
1222 {
1223         struct packed_ref_cache *packed_ref_cache =
1224                 get_packed_ref_cache(&ref_cache);
1225
1226         if (!packed_ref_cache->lock)
1227                 die("internal error: packed refs not locked");
1228         add_ref(get_packed_ref_dir(packed_ref_cache),
1229                 create_ref_entry(refname, sha1, REF_ISPACKED, 1));
1230 }
1231
1232 /*
1233  * Read the loose references from the namespace dirname into dir
1234  * (without recursing).  dirname must end with '/'.  dir must be the
1235  * directory entry corresponding to dirname.
1236  */
1237 static void read_loose_refs(const char *dirname, struct ref_dir *dir)
1238 {
1239         struct ref_cache *refs = dir->ref_cache;
1240         DIR *d;
1241         const char *path;
1242         struct dirent *de;
1243         int dirnamelen = strlen(dirname);
1244         struct strbuf refname;
1245
1246         if (*refs->name)
1247                 path = git_path_submodule(refs->name, "%s", dirname);
1248         else
1249                 path = git_path("%s", dirname);
1250
1251         d = opendir(path);
1252         if (!d)
1253                 return;
1254
1255         strbuf_init(&refname, dirnamelen + 257);
1256         strbuf_add(&refname, dirname, dirnamelen);
1257
1258         while ((de = readdir(d)) != NULL) {
1259                 unsigned char sha1[20];
1260                 struct stat st;
1261                 int flag;
1262                 const char *refdir;
1263
1264                 if (de->d_name[0] == '.')
1265                         continue;
1266                 if (ends_with(de->d_name, ".lock"))
1267                         continue;
1268                 strbuf_addstr(&refname, de->d_name);
1269                 refdir = *refs->name
1270                         ? git_path_submodule(refs->name, "%s", refname.buf)
1271                         : git_path("%s", refname.buf);
1272                 if (stat(refdir, &st) < 0) {
1273                         ; /* silently ignore */
1274                 } else if (S_ISDIR(st.st_mode)) {
1275                         strbuf_addch(&refname, '/');
1276                         add_entry_to_dir(dir,
1277                                          create_dir_entry(refs, refname.buf,
1278                                                           refname.len, 1));
1279                 } else {
1280                         if (*refs->name) {
1281                                 hashclr(sha1);
1282                                 flag = 0;
1283                                 if (resolve_gitlink_ref(refs->name, refname.buf, sha1) < 0) {
1284                                         hashclr(sha1);
1285                                         flag |= REF_ISBROKEN;
1286                                 }
1287                         } else if (read_ref_full(refname.buf,
1288                                                  RESOLVE_REF_READING,
1289                                                  sha1, &flag)) {
1290                                 hashclr(sha1);
1291                                 flag |= REF_ISBROKEN;
1292                         }
1293                         if (check_refname_format(refname.buf,
1294                                                  REFNAME_ALLOW_ONELEVEL)) {
1295                                 hashclr(sha1);
1296                                 flag |= REF_BAD_NAME | REF_ISBROKEN;
1297                         }
1298                         add_entry_to_dir(dir,
1299                                          create_ref_entry(refname.buf, sha1, flag, 0));
1300                 }
1301                 strbuf_setlen(&refname, dirnamelen);
1302         }
1303         strbuf_release(&refname);
1304         closedir(d);
1305 }
1306
1307 static struct ref_dir *get_loose_refs(struct ref_cache *refs)
1308 {
1309         if (!refs->loose) {
1310                 /*
1311                  * Mark the top-level directory complete because we
1312                  * are about to read the only subdirectory that can
1313                  * hold references:
1314                  */
1315                 refs->loose = create_dir_entry(refs, "", 0, 0);
1316                 /*
1317                  * Create an incomplete entry for "refs/":
1318                  */
1319                 add_entry_to_dir(get_ref_dir(refs->loose),
1320                                  create_dir_entry(refs, "refs/", 5, 1));
1321         }
1322         return get_ref_dir(refs->loose);
1323 }
1324
1325 /* We allow "recursive" symbolic refs. Only within reason, though */
1326 #define MAXDEPTH 5
1327 #define MAXREFLEN (1024)
1328
1329 /*
1330  * Called by resolve_gitlink_ref_recursive() after it failed to read
1331  * from the loose refs in ref_cache refs. Find <refname> in the
1332  * packed-refs file for the submodule.
1333  */
1334 static int resolve_gitlink_packed_ref(struct ref_cache *refs,
1335                                       const char *refname, unsigned char *sha1)
1336 {
1337         struct ref_entry *ref;
1338         struct ref_dir *dir = get_packed_refs(refs);
1339
1340         ref = find_ref(dir, refname);
1341         if (ref == NULL)
1342                 return -1;
1343
1344         hashcpy(sha1, ref->u.value.sha1);
1345         return 0;
1346 }
1347
1348 static int resolve_gitlink_ref_recursive(struct ref_cache *refs,
1349                                          const char *refname, unsigned char *sha1,
1350                                          int recursion)
1351 {
1352         int fd, len;
1353         char buffer[128], *p;
1354         char *path;
1355
1356         if (recursion > MAXDEPTH || strlen(refname) > MAXREFLEN)
1357                 return -1;
1358         path = *refs->name
1359                 ? git_path_submodule(refs->name, "%s", refname)
1360                 : git_path("%s", refname);
1361         fd = open(path, O_RDONLY);
1362         if (fd < 0)
1363                 return resolve_gitlink_packed_ref(refs, refname, sha1);
1364
1365         len = read(fd, buffer, sizeof(buffer)-1);
1366         close(fd);
1367         if (len < 0)
1368                 return -1;
1369         while (len && isspace(buffer[len-1]))
1370                 len--;
1371         buffer[len] = 0;
1372
1373         /* Was it a detached head or an old-fashioned symlink? */
1374         if (!get_sha1_hex(buffer, sha1))
1375                 return 0;
1376
1377         /* Symref? */
1378         if (strncmp(buffer, "ref:", 4))
1379                 return -1;
1380         p = buffer + 4;
1381         while (isspace(*p))
1382                 p++;
1383
1384         return resolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);
1385 }
1386
1387 int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *sha1)
1388 {
1389         int len = strlen(path), retval;
1390         char *submodule;
1391         struct ref_cache *refs;
1392
1393         while (len && path[len-1] == '/')
1394                 len--;
1395         if (!len)
1396                 return -1;
1397         submodule = xstrndup(path, len);
1398         refs = get_ref_cache(submodule);
1399         free(submodule);
1400
1401         retval = resolve_gitlink_ref_recursive(refs, refname, sha1, 0);
1402         return retval;
1403 }
1404
1405 /*
1406  * Return the ref_entry for the given refname from the packed
1407  * references.  If it does not exist, return NULL.
1408  */
1409 static struct ref_entry *get_packed_ref(const char *refname)
1410 {
1411         return find_ref(get_packed_refs(&ref_cache), refname);
1412 }
1413
1414 /*
1415  * A loose ref file doesn't exist; check for a packed ref.  The
1416  * options are forwarded from resolve_safe_unsafe().
1417  */
1418 static int resolve_missing_loose_ref(const char *refname,
1419                                      int resolve_flags,
1420                                      unsigned char *sha1,
1421                                      int *flags)
1422 {
1423         struct ref_entry *entry;
1424
1425         /*
1426          * The loose reference file does not exist; check for a packed
1427          * reference.
1428          */
1429         entry = get_packed_ref(refname);
1430         if (entry) {
1431                 hashcpy(sha1, entry->u.value.sha1);
1432                 if (flags)
1433                         *flags |= REF_ISPACKED;
1434                 return 0;
1435         }
1436         /* The reference is not a packed reference, either. */
1437         if (resolve_flags & RESOLVE_REF_READING) {
1438                 errno = ENOENT;
1439                 return -1;
1440         } else {
1441                 hashclr(sha1);
1442                 return 0;
1443         }
1444 }
1445
1446 /* This function needs to return a meaningful errno on failure */
1447 const char *resolve_ref_unsafe(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
1448 {
1449         int depth = MAXDEPTH;
1450         ssize_t len;
1451         char buffer[256];
1452         static char refname_buffer[256];
1453         int bad_name = 0;
1454
1455         if (flags)
1456                 *flags = 0;
1457
1458         if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1459                 if (flags)
1460                         *flags |= REF_BAD_NAME;
1461
1462                 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1463                     !refname_is_safe(refname)) {
1464                         errno = EINVAL;
1465                         return NULL;
1466                 }
1467                 /*
1468                  * dwim_ref() uses REF_ISBROKEN to distinguish between
1469                  * missing refs and refs that were present but invalid,
1470                  * to complain about the latter to stderr.
1471                  *
1472                  * We don't know whether the ref exists, so don't set
1473                  * REF_ISBROKEN yet.
1474                  */
1475                 bad_name = 1;
1476         }
1477         for (;;) {
1478                 char path[PATH_MAX];
1479                 struct stat st;
1480                 char *buf;
1481                 int fd;
1482
1483                 if (--depth < 0) {
1484                         errno = ELOOP;
1485                         return NULL;
1486                 }
1487
1488                 git_snpath(path, sizeof(path), "%s", refname);
1489
1490                 /*
1491                  * We might have to loop back here to avoid a race
1492                  * condition: first we lstat() the file, then we try
1493                  * to read it as a link or as a file.  But if somebody
1494                  * changes the type of the file (file <-> directory
1495                  * <-> symlink) between the lstat() and reading, then
1496                  * we don't want to report that as an error but rather
1497                  * try again starting with the lstat().
1498                  */
1499         stat_ref:
1500                 if (lstat(path, &st) < 0) {
1501                         if (errno != ENOENT)
1502                                 return NULL;
1503                         if (resolve_missing_loose_ref(refname, resolve_flags,
1504                                                       sha1, flags))
1505                                 return NULL;
1506                         if (bad_name) {
1507                                 hashclr(sha1);
1508                                 if (flags)
1509                                         *flags |= REF_ISBROKEN;
1510                         }
1511                         return refname;
1512                 }
1513
1514                 /* Follow "normalized" - ie "refs/.." symlinks by hand */
1515                 if (S_ISLNK(st.st_mode)) {
1516                         len = readlink(path, buffer, sizeof(buffer)-1);
1517                         if (len < 0) {
1518                                 if (errno == ENOENT || errno == EINVAL)
1519                                         /* inconsistent with lstat; retry */
1520                                         goto stat_ref;
1521                                 else
1522                                         return NULL;
1523                         }
1524                         buffer[len] = 0;
1525                         if (starts_with(buffer, "refs/") &&
1526                                         !check_refname_format(buffer, 0)) {
1527                                 strcpy(refname_buffer, buffer);
1528                                 refname = refname_buffer;
1529                                 if (flags)
1530                                         *flags |= REF_ISSYMREF;
1531                                 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1532                                         hashclr(sha1);
1533                                         return refname;
1534                                 }
1535                                 continue;
1536                         }
1537                 }
1538
1539                 /* Is it a directory? */
1540                 if (S_ISDIR(st.st_mode)) {
1541                         errno = EISDIR;
1542                         return NULL;
1543                 }
1544
1545                 /*
1546                  * Anything else, just open it and try to use it as
1547                  * a ref
1548                  */
1549                 fd = open(path, O_RDONLY);
1550                 if (fd < 0) {
1551                         if (errno == ENOENT)
1552                                 /* inconsistent with lstat; retry */
1553                                 goto stat_ref;
1554                         else
1555                                 return NULL;
1556                 }
1557                 len = read_in_full(fd, buffer, sizeof(buffer)-1);
1558                 if (len < 0) {
1559                         int save_errno = errno;
1560                         close(fd);
1561                         errno = save_errno;
1562                         return NULL;
1563                 }
1564                 close(fd);
1565                 while (len && isspace(buffer[len-1]))
1566                         len--;
1567                 buffer[len] = '\0';
1568
1569                 /*
1570                  * Is it a symbolic ref?
1571                  */
1572                 if (!starts_with(buffer, "ref:")) {
1573                         /*
1574                          * Please note that FETCH_HEAD has a second
1575                          * line containing other data.
1576                          */
1577                         if (get_sha1_hex(buffer, sha1) ||
1578                             (buffer[40] != '\0' && !isspace(buffer[40]))) {
1579                                 if (flags)
1580                                         *flags |= REF_ISBROKEN;
1581                                 errno = EINVAL;
1582                                 return NULL;
1583                         }
1584                         if (bad_name) {
1585                                 hashclr(sha1);
1586                                 if (flags)
1587                                         *flags |= REF_ISBROKEN;
1588                         }
1589                         return refname;
1590                 }
1591                 if (flags)
1592                         *flags |= REF_ISSYMREF;
1593                 buf = buffer + 4;
1594                 while (isspace(*buf))
1595                         buf++;
1596                 refname = strcpy(refname_buffer, buf);
1597                 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1598                         hashclr(sha1);
1599                         return refname;
1600                 }
1601                 if (check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {
1602                         if (flags)
1603                                 *flags |= REF_ISBROKEN;
1604
1605                         if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1606                             !refname_is_safe(buf)) {
1607                                 errno = EINVAL;
1608                                 return NULL;
1609                         }
1610                         bad_name = 1;
1611                 }
1612         }
1613 }
1614
1615 char *resolve_refdup(const char *ref, int resolve_flags, unsigned char *sha1, int *flags)
1616 {
1617         const char *ret = resolve_ref_unsafe(ref, resolve_flags, sha1, flags);
1618         return ret ? xstrdup(ret) : NULL;
1619 }
1620
1621 /* The argument to filter_refs */
1622 struct ref_filter {
1623         const char *pattern;
1624         each_ref_fn *fn;
1625         void *cb_data;
1626 };
1627
1628 int read_ref_full(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
1629 {
1630         if (resolve_ref_unsafe(refname, resolve_flags, sha1, flags))
1631                 return 0;
1632         return -1;
1633 }
1634
1635 int read_ref(const char *refname, unsigned char *sha1)
1636 {
1637         return read_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);
1638 }
1639
1640 int ref_exists(const char *refname)
1641 {
1642         unsigned char sha1[20];
1643         return !!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);
1644 }
1645
1646 static int filter_refs(const char *refname, const unsigned char *sha1, int flags,
1647                        void *data)
1648 {
1649         struct ref_filter *filter = (struct ref_filter *)data;
1650         if (wildmatch(filter->pattern, refname, 0, NULL))
1651                 return 0;
1652         return filter->fn(refname, sha1, flags, filter->cb_data);
1653 }
1654
1655 enum peel_status {
1656         /* object was peeled successfully: */
1657         PEEL_PEELED = 0,
1658
1659         /*
1660          * object cannot be peeled because the named object (or an
1661          * object referred to by a tag in the peel chain), does not
1662          * exist.
1663          */
1664         PEEL_INVALID = -1,
1665
1666         /* object cannot be peeled because it is not a tag: */
1667         PEEL_NON_TAG = -2,
1668
1669         /* ref_entry contains no peeled value because it is a symref: */
1670         PEEL_IS_SYMREF = -3,
1671
1672         /*
1673          * ref_entry cannot be peeled because it is broken (i.e., the
1674          * symbolic reference cannot even be resolved to an object
1675          * name):
1676          */
1677         PEEL_BROKEN = -4
1678 };
1679
1680 /*
1681  * Peel the named object; i.e., if the object is a tag, resolve the
1682  * tag recursively until a non-tag is found.  If successful, store the
1683  * result to sha1 and return PEEL_PEELED.  If the object is not a tag
1684  * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,
1685  * and leave sha1 unchanged.
1686  */
1687 static enum peel_status peel_object(const unsigned char *name, unsigned char *sha1)
1688 {
1689         struct object *o = lookup_unknown_object(name);
1690
1691         if (o->type == OBJ_NONE) {
1692                 int type = sha1_object_info(name, NULL);
1693                 if (type < 0 || !object_as_type(o, type, 0))
1694                         return PEEL_INVALID;
1695         }
1696
1697         if (o->type != OBJ_TAG)
1698                 return PEEL_NON_TAG;
1699
1700         o = deref_tag_noverify(o);
1701         if (!o)
1702                 return PEEL_INVALID;
1703
1704         hashcpy(sha1, o->sha1);
1705         return PEEL_PEELED;
1706 }
1707
1708 /*
1709  * Peel the entry (if possible) and return its new peel_status.  If
1710  * repeel is true, re-peel the entry even if there is an old peeled
1711  * value that is already stored in it.
1712  *
1713  * It is OK to call this function with a packed reference entry that
1714  * might be stale and might even refer to an object that has since
1715  * been garbage-collected.  In such a case, if the entry has
1716  * REF_KNOWS_PEELED then leave the status unchanged and return
1717  * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.
1718  */
1719 static enum peel_status peel_entry(struct ref_entry *entry, int repeel)
1720 {
1721         enum peel_status status;
1722
1723         if (entry->flag & REF_KNOWS_PEELED) {
1724                 if (repeel) {
1725                         entry->flag &= ~REF_KNOWS_PEELED;
1726                         hashclr(entry->u.value.peeled);
1727                 } else {
1728                         return is_null_sha1(entry->u.value.peeled) ?
1729                                 PEEL_NON_TAG : PEEL_PEELED;
1730                 }
1731         }
1732         if (entry->flag & REF_ISBROKEN)
1733                 return PEEL_BROKEN;
1734         if (entry->flag & REF_ISSYMREF)
1735                 return PEEL_IS_SYMREF;
1736
1737         status = peel_object(entry->u.value.sha1, entry->u.value.peeled);
1738         if (status == PEEL_PEELED || status == PEEL_NON_TAG)
1739                 entry->flag |= REF_KNOWS_PEELED;
1740         return status;
1741 }
1742
1743 int peel_ref(const char *refname, unsigned char *sha1)
1744 {
1745         int flag;
1746         unsigned char base[20];
1747
1748         if (current_ref && (current_ref->name == refname
1749                             || !strcmp(current_ref->name, refname))) {
1750                 if (peel_entry(current_ref, 0))
1751                         return -1;
1752                 hashcpy(sha1, current_ref->u.value.peeled);
1753                 return 0;
1754         }
1755
1756         if (read_ref_full(refname, RESOLVE_REF_READING, base, &flag))
1757                 return -1;
1758
1759         /*
1760          * If the reference is packed, read its ref_entry from the
1761          * cache in the hope that we already know its peeled value.
1762          * We only try this optimization on packed references because
1763          * (a) forcing the filling of the loose reference cache could
1764          * be expensive and (b) loose references anyway usually do not
1765          * have REF_KNOWS_PEELED.
1766          */
1767         if (flag & REF_ISPACKED) {
1768                 struct ref_entry *r = get_packed_ref(refname);
1769                 if (r) {
1770                         if (peel_entry(r, 0))
1771                                 return -1;
1772                         hashcpy(sha1, r->u.value.peeled);
1773                         return 0;
1774                 }
1775         }
1776
1777         return peel_object(base, sha1);
1778 }
1779
1780 struct warn_if_dangling_data {
1781         FILE *fp;
1782         const char *refname;
1783         const struct string_list *refnames;
1784         const char *msg_fmt;
1785 };
1786
1787 static int warn_if_dangling_symref(const char *refname, const unsigned char *sha1,
1788                                    int flags, void *cb_data)
1789 {
1790         struct warn_if_dangling_data *d = cb_data;
1791         const char *resolves_to;
1792         unsigned char junk[20];
1793
1794         if (!(flags & REF_ISSYMREF))
1795                 return 0;
1796
1797         resolves_to = resolve_ref_unsafe(refname, 0, junk, NULL);
1798         if (!resolves_to
1799             || (d->refname
1800                 ? strcmp(resolves_to, d->refname)
1801                 : !string_list_has_string(d->refnames, resolves_to))) {
1802                 return 0;
1803         }
1804
1805         fprintf(d->fp, d->msg_fmt, refname);
1806         fputc('\n', d->fp);
1807         return 0;
1808 }
1809
1810 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
1811 {
1812         struct warn_if_dangling_data data;
1813
1814         data.fp = fp;
1815         data.refname = refname;
1816         data.refnames = NULL;
1817         data.msg_fmt = msg_fmt;
1818         for_each_rawref(warn_if_dangling_symref, &data);
1819 }
1820
1821 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
1822 {
1823         struct warn_if_dangling_data data;
1824
1825         data.fp = fp;
1826         data.refname = NULL;
1827         data.refnames = refnames;
1828         data.msg_fmt = msg_fmt;
1829         for_each_rawref(warn_if_dangling_symref, &data);
1830 }
1831
1832 /*
1833  * Call fn for each reference in the specified ref_cache, omitting
1834  * references not in the containing_dir of base.  fn is called for all
1835  * references, including broken ones.  If fn ever returns a non-zero
1836  * value, stop the iteration and return that value; otherwise, return
1837  * 0.
1838  */
1839 static int do_for_each_entry(struct ref_cache *refs, const char *base,
1840                              each_ref_entry_fn fn, void *cb_data)
1841 {
1842         struct packed_ref_cache *packed_ref_cache;
1843         struct ref_dir *loose_dir;
1844         struct ref_dir *packed_dir;
1845         int retval = 0;
1846
1847         /*
1848          * We must make sure that all loose refs are read before accessing the
1849          * packed-refs file; this avoids a race condition in which loose refs
1850          * are migrated to the packed-refs file by a simultaneous process, but
1851          * our in-memory view is from before the migration. get_packed_ref_cache()
1852          * takes care of making sure our view is up to date with what is on
1853          * disk.
1854          */
1855         loose_dir = get_loose_refs(refs);
1856         if (base && *base) {
1857                 loose_dir = find_containing_dir(loose_dir, base, 0);
1858         }
1859         if (loose_dir)
1860                 prime_ref_dir(loose_dir);
1861
1862         packed_ref_cache = get_packed_ref_cache(refs);
1863         acquire_packed_ref_cache(packed_ref_cache);
1864         packed_dir = get_packed_ref_dir(packed_ref_cache);
1865         if (base && *base) {
1866                 packed_dir = find_containing_dir(packed_dir, base, 0);
1867         }
1868
1869         if (packed_dir && loose_dir) {
1870                 sort_ref_dir(packed_dir);
1871                 sort_ref_dir(loose_dir);
1872                 retval = do_for_each_entry_in_dirs(
1873                                 packed_dir, loose_dir, fn, cb_data);
1874         } else if (packed_dir) {
1875                 sort_ref_dir(packed_dir);
1876                 retval = do_for_each_entry_in_dir(
1877                                 packed_dir, 0, fn, cb_data);
1878         } else if (loose_dir) {
1879                 sort_ref_dir(loose_dir);
1880                 retval = do_for_each_entry_in_dir(
1881                                 loose_dir, 0, fn, cb_data);
1882         }
1883
1884         release_packed_ref_cache(packed_ref_cache);
1885         return retval;
1886 }
1887
1888 /*
1889  * Call fn for each reference in the specified ref_cache for which the
1890  * refname begins with base.  If trim is non-zero, then trim that many
1891  * characters off the beginning of each refname before passing the
1892  * refname to fn.  flags can be DO_FOR_EACH_INCLUDE_BROKEN to include
1893  * broken references in the iteration.  If fn ever returns a non-zero
1894  * value, stop the iteration and return that value; otherwise, return
1895  * 0.
1896  */
1897 static int do_for_each_ref(struct ref_cache *refs, const char *base,
1898                            each_ref_fn fn, int trim, int flags, void *cb_data)
1899 {
1900         struct ref_entry_cb data;
1901         data.base = base;
1902         data.trim = trim;
1903         data.flags = flags;
1904         data.fn = fn;
1905         data.cb_data = cb_data;
1906
1907         return do_for_each_entry(refs, base, do_one_ref, &data);
1908 }
1909
1910 static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1911 {
1912         unsigned char sha1[20];
1913         int flag;
1914
1915         if (submodule) {
1916                 if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
1917                         return fn("HEAD", sha1, 0, cb_data);
1918
1919                 return 0;
1920         }
1921
1922         if (!read_ref_full("HEAD", RESOLVE_REF_READING, sha1, &flag))
1923                 return fn("HEAD", sha1, flag, cb_data);
1924
1925         return 0;
1926 }
1927
1928 int head_ref(each_ref_fn fn, void *cb_data)
1929 {
1930         return do_head_ref(NULL, fn, cb_data);
1931 }
1932
1933 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1934 {
1935         return do_head_ref(submodule, fn, cb_data);
1936 }
1937
1938 int for_each_ref(each_ref_fn fn, void *cb_data)
1939 {
1940         return do_for_each_ref(&ref_cache, "", fn, 0, 0, cb_data);
1941 }
1942
1943 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1944 {
1945         return do_for_each_ref(get_ref_cache(submodule), "", fn, 0, 0, cb_data);
1946 }
1947
1948 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1949 {
1950         return do_for_each_ref(&ref_cache, prefix, fn, strlen(prefix), 0, cb_data);
1951 }
1952
1953 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
1954                 each_ref_fn fn, void *cb_data)
1955 {
1956         return do_for_each_ref(get_ref_cache(submodule), prefix, fn, strlen(prefix), 0, cb_data);
1957 }
1958
1959 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
1960 {
1961         return for_each_ref_in("refs/tags/", fn, cb_data);
1962 }
1963
1964 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1965 {
1966         return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
1967 }
1968
1969 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
1970 {
1971         return for_each_ref_in("refs/heads/", fn, cb_data);
1972 }
1973
1974 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1975 {
1976         return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
1977 }
1978
1979 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
1980 {
1981         return for_each_ref_in("refs/remotes/", fn, cb_data);
1982 }
1983
1984 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1985 {
1986         return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
1987 }
1988
1989 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1990 {
1991         return do_for_each_ref(&ref_cache, "refs/replace/", fn, 13, 0, cb_data);
1992 }
1993
1994 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
1995 {
1996         struct strbuf buf = STRBUF_INIT;
1997         int ret = 0;
1998         unsigned char sha1[20];
1999         int flag;
2000
2001         strbuf_addf(&buf, "%sHEAD", get_git_namespace());
2002         if (!read_ref_full(buf.buf, RESOLVE_REF_READING, sha1, &flag))
2003                 ret = fn(buf.buf, sha1, flag, cb_data);
2004         strbuf_release(&buf);
2005
2006         return ret;
2007 }
2008
2009 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
2010 {
2011         struct strbuf buf = STRBUF_INIT;
2012         int ret;
2013         strbuf_addf(&buf, "%srefs/", get_git_namespace());
2014         ret = do_for_each_ref(&ref_cache, buf.buf, fn, 0, 0, cb_data);
2015         strbuf_release(&buf);
2016         return ret;
2017 }
2018
2019 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
2020         const char *prefix, void *cb_data)
2021 {
2022         struct strbuf real_pattern = STRBUF_INIT;
2023         struct ref_filter filter;
2024         int ret;
2025
2026         if (!prefix && !starts_with(pattern, "refs/"))
2027                 strbuf_addstr(&real_pattern, "refs/");
2028         else if (prefix)
2029                 strbuf_addstr(&real_pattern, prefix);
2030         strbuf_addstr(&real_pattern, pattern);
2031
2032         if (!has_glob_specials(pattern)) {
2033                 /* Append implied '/' '*' if not present. */
2034                 if (real_pattern.buf[real_pattern.len - 1] != '/')
2035                         strbuf_addch(&real_pattern, '/');
2036                 /* No need to check for '*', there is none. */
2037                 strbuf_addch(&real_pattern, '*');
2038         }
2039
2040         filter.pattern = real_pattern.buf;
2041         filter.fn = fn;
2042         filter.cb_data = cb_data;
2043         ret = for_each_ref(filter_refs, &filter);
2044
2045         strbuf_release(&real_pattern);
2046         return ret;
2047 }
2048
2049 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
2050 {
2051         return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
2052 }
2053
2054 int for_each_rawref(each_ref_fn fn, void *cb_data)
2055 {
2056         return do_for_each_ref(&ref_cache, "", fn, 0,
2057                                DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
2058 }
2059
2060 const char *prettify_refname(const char *name)
2061 {
2062         return name + (
2063                 starts_with(name, "refs/heads/") ? 11 :
2064                 starts_with(name, "refs/tags/") ? 10 :
2065                 starts_with(name, "refs/remotes/") ? 13 :
2066                 0);
2067 }
2068
2069 static const char *ref_rev_parse_rules[] = {
2070         "%.*s",
2071         "refs/%.*s",
2072         "refs/tags/%.*s",
2073         "refs/heads/%.*s",
2074         "refs/remotes/%.*s",
2075         "refs/remotes/%.*s/HEAD",
2076         NULL
2077 };
2078
2079 int refname_match(const char *abbrev_name, const char *full_name)
2080 {
2081         const char **p;
2082         const int abbrev_name_len = strlen(abbrev_name);
2083
2084         for (p = ref_rev_parse_rules; *p; p++) {
2085                 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
2086                         return 1;
2087                 }
2088         }
2089
2090         return 0;
2091 }
2092
2093 /* This function should make sure errno is meaningful on error */
2094 static struct ref_lock *verify_lock(struct ref_lock *lock,
2095         const unsigned char *old_sha1, int mustexist)
2096 {
2097         if (read_ref_full(lock->ref_name,
2098                           mustexist ? RESOLVE_REF_READING : 0,
2099                           lock->old_sha1, NULL)) {
2100                 int save_errno = errno;
2101                 error("Can't verify ref %s", lock->ref_name);
2102                 unlock_ref(lock);
2103                 errno = save_errno;
2104                 return NULL;
2105         }
2106         if (hashcmp(lock->old_sha1, old_sha1)) {
2107                 error("Ref %s is at %s but expected %s", lock->ref_name,
2108                         sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
2109                 unlock_ref(lock);
2110                 errno = EBUSY;
2111                 return NULL;
2112         }
2113         return lock;
2114 }
2115
2116 static int remove_empty_directories(const char *file)
2117 {
2118         /* we want to create a file but there is a directory there;
2119          * if that is an empty directory (or a directory that contains
2120          * only empty directories), remove them.
2121          */
2122         struct strbuf path;
2123         int result, save_errno;
2124
2125         strbuf_init(&path, 20);
2126         strbuf_addstr(&path, file);
2127
2128         result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
2129         save_errno = errno;
2130
2131         strbuf_release(&path);
2132         errno = save_errno;
2133
2134         return result;
2135 }
2136
2137 /*
2138  * *string and *len will only be substituted, and *string returned (for
2139  * later free()ing) if the string passed in is a magic short-hand form
2140  * to name a branch.
2141  */
2142 static char *substitute_branch_name(const char **string, int *len)
2143 {
2144         struct strbuf buf = STRBUF_INIT;
2145         int ret = interpret_branch_name(*string, *len, &buf);
2146
2147         if (ret == *len) {
2148                 size_t size;
2149                 *string = strbuf_detach(&buf, &size);
2150                 *len = size;
2151                 return (char *)*string;
2152         }
2153
2154         return NULL;
2155 }
2156
2157 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
2158 {
2159         char *last_branch = substitute_branch_name(&str, &len);
2160         const char **p, *r;
2161         int refs_found = 0;
2162
2163         *ref = NULL;
2164         for (p = ref_rev_parse_rules; *p; p++) {
2165                 char fullref[PATH_MAX];
2166                 unsigned char sha1_from_ref[20];
2167                 unsigned char *this_result;
2168                 int flag;
2169
2170                 this_result = refs_found ? sha1_from_ref : sha1;
2171                 mksnpath(fullref, sizeof(fullref), *p, len, str);
2172                 r = resolve_ref_unsafe(fullref, RESOLVE_REF_READING,
2173                                        this_result, &flag);
2174                 if (r) {
2175                         if (!refs_found++)
2176                                 *ref = xstrdup(r);
2177                         if (!warn_ambiguous_refs)
2178                                 break;
2179                 } else if ((flag & REF_ISSYMREF) && strcmp(fullref, "HEAD")) {
2180                         warning("ignoring dangling symref %s.", fullref);
2181                 } else if ((flag & REF_ISBROKEN) && strchr(fullref, '/')) {
2182                         warning("ignoring broken ref %s.", fullref);
2183                 }
2184         }
2185         free(last_branch);
2186         return refs_found;
2187 }
2188
2189 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
2190 {
2191         char *last_branch = substitute_branch_name(&str, &len);
2192         const char **p;
2193         int logs_found = 0;
2194
2195         *log = NULL;
2196         for (p = ref_rev_parse_rules; *p; p++) {
2197                 unsigned char hash[20];
2198                 char path[PATH_MAX];
2199                 const char *ref, *it;
2200
2201                 mksnpath(path, sizeof(path), *p, len, str);
2202                 ref = resolve_ref_unsafe(path, RESOLVE_REF_READING,
2203                                          hash, NULL);
2204                 if (!ref)
2205                         continue;
2206                 if (reflog_exists(path))
2207                         it = path;
2208                 else if (strcmp(ref, path) && reflog_exists(ref))
2209                         it = ref;
2210                 else
2211                         continue;
2212                 if (!logs_found++) {
2213                         *log = xstrdup(it);
2214                         hashcpy(sha1, hash);
2215                 }
2216                 if (!warn_ambiguous_refs)
2217                         break;
2218         }
2219         free(last_branch);
2220         return logs_found;
2221 }
2222
2223 /*
2224  * Locks a ref returning the lock on success and NULL on failure.
2225  * On failure errno is set to something meaningful.
2226  */
2227 static struct ref_lock *lock_ref_sha1_basic(const char *refname,
2228                                             const unsigned char *old_sha1,
2229                                             const struct string_list *skip,
2230                                             int flags, int *type_p)
2231 {
2232         char *ref_file;
2233         const char *orig_refname = refname;
2234         struct ref_lock *lock;
2235         int last_errno = 0;
2236         int type, lflags;
2237         int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
2238         int resolve_flags = 0;
2239         int missing = 0;
2240         int attempts_remaining = 3;
2241
2242         lock = xcalloc(1, sizeof(struct ref_lock));
2243         lock->lock_fd = -1;
2244
2245         if (mustexist)
2246                 resolve_flags |= RESOLVE_REF_READING;
2247         if (flags & REF_DELETING) {
2248                 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;
2249                 if (flags & REF_NODEREF)
2250                         resolve_flags |= RESOLVE_REF_NO_RECURSE;
2251         }
2252
2253         refname = resolve_ref_unsafe(refname, resolve_flags,
2254                                      lock->old_sha1, &type);
2255         if (!refname && errno == EISDIR) {
2256                 /* we are trying to lock foo but we used to
2257                  * have foo/bar which now does not exist;
2258                  * it is normal for the empty directory 'foo'
2259                  * to remain.
2260                  */
2261                 ref_file = git_path("%s", orig_refname);
2262                 if (remove_empty_directories(ref_file)) {
2263                         last_errno = errno;
2264                         error("there are still refs under '%s'", orig_refname);
2265                         goto error_return;
2266                 }
2267                 refname = resolve_ref_unsafe(orig_refname, resolve_flags,
2268                                              lock->old_sha1, &type);
2269         }
2270         if (type_p)
2271             *type_p = type;
2272         if (!refname) {
2273                 last_errno = errno;
2274                 error("unable to resolve reference %s: %s",
2275                         orig_refname, strerror(errno));
2276                 goto error_return;
2277         }
2278         missing = is_null_sha1(lock->old_sha1);
2279         /* When the ref did not exist and we are creating it,
2280          * make sure there is no existing ref that is packed
2281          * whose name begins with our refname, nor a ref whose
2282          * name is a proper prefix of our refname.
2283          */
2284         if (missing &&
2285              !is_refname_available(refname, skip, get_packed_refs(&ref_cache))) {
2286                 last_errno = ENOTDIR;
2287                 goto error_return;
2288         }
2289
2290         lock->lk = xcalloc(1, sizeof(struct lock_file));
2291
2292         lflags = 0;
2293         if (flags & REF_NODEREF) {
2294                 refname = orig_refname;
2295                 lflags |= LOCK_NO_DEREF;
2296         }
2297         lock->ref_name = xstrdup(refname);
2298         lock->orig_ref_name = xstrdup(orig_refname);
2299         ref_file = git_path("%s", refname);
2300         if (missing)
2301                 lock->force_write = 1;
2302         if ((flags & REF_NODEREF) && (type & REF_ISSYMREF))
2303                 lock->force_write = 1;
2304
2305  retry:
2306         switch (safe_create_leading_directories(ref_file)) {
2307         case SCLD_OK:
2308                 break; /* success */
2309         case SCLD_VANISHED:
2310                 if (--attempts_remaining > 0)
2311                         goto retry;
2312                 /* fall through */
2313         default:
2314                 last_errno = errno;
2315                 error("unable to create directory for %s", ref_file);
2316                 goto error_return;
2317         }
2318
2319         lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, lflags);
2320         if (lock->lock_fd < 0) {
2321                 last_errno = errno;
2322                 if (errno == ENOENT && --attempts_remaining > 0)
2323                         /*
2324                          * Maybe somebody just deleted one of the
2325                          * directories leading to ref_file.  Try
2326                          * again:
2327                          */
2328                         goto retry;
2329                 else {
2330                         struct strbuf err = STRBUF_INIT;
2331                         unable_to_lock_message(ref_file, errno, &err);
2332                         error("%s", err.buf);
2333                         strbuf_reset(&err);
2334                         goto error_return;
2335                 }
2336         }
2337         return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
2338
2339  error_return:
2340         unlock_ref(lock);
2341         errno = last_errno;
2342         return NULL;
2343 }
2344
2345 struct ref_lock *lock_any_ref_for_update(const char *refname,
2346                                          const unsigned char *old_sha1,
2347                                          int flags, int *type_p)
2348 {
2349         return lock_ref_sha1_basic(refname, old_sha1, NULL, flags, type_p);
2350 }
2351
2352 /*
2353  * Write an entry to the packed-refs file for the specified refname.
2354  * If peeled is non-NULL, write it as the entry's peeled value.
2355  */
2356 static void write_packed_entry(FILE *fh, char *refname, unsigned char *sha1,
2357                                unsigned char *peeled)
2358 {
2359         fprintf_or_die(fh, "%s %s\n", sha1_to_hex(sha1), refname);
2360         if (peeled)
2361                 fprintf_or_die(fh, "^%s\n", sha1_to_hex(peeled));
2362 }
2363
2364 /*
2365  * An each_ref_entry_fn that writes the entry to a packed-refs file.
2366  */
2367 static int write_packed_entry_fn(struct ref_entry *entry, void *cb_data)
2368 {
2369         enum peel_status peel_status = peel_entry(entry, 0);
2370
2371         if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2372                 error("internal error: %s is not a valid packed reference!",
2373                       entry->name);
2374         write_packed_entry(cb_data, entry->name, entry->u.value.sha1,
2375                            peel_status == PEEL_PEELED ?
2376                            entry->u.value.peeled : NULL);
2377         return 0;
2378 }
2379
2380 /* This should return a meaningful errno on failure */
2381 int lock_packed_refs(int flags)
2382 {
2383         struct packed_ref_cache *packed_ref_cache;
2384
2385         if (hold_lock_file_for_update(&packlock, git_path("packed-refs"), flags) < 0)
2386                 return -1;
2387         /*
2388          * Get the current packed-refs while holding the lock.  If the
2389          * packed-refs file has been modified since we last read it,
2390          * this will automatically invalidate the cache and re-read
2391          * the packed-refs file.
2392          */
2393         packed_ref_cache = get_packed_ref_cache(&ref_cache);
2394         packed_ref_cache->lock = &packlock;
2395         /* Increment the reference count to prevent it from being freed: */
2396         acquire_packed_ref_cache(packed_ref_cache);
2397         return 0;
2398 }
2399
2400 /*
2401  * Commit the packed refs changes.
2402  * On error we must make sure that errno contains a meaningful value.
2403  */
2404 int commit_packed_refs(void)
2405 {
2406         struct packed_ref_cache *packed_ref_cache =
2407                 get_packed_ref_cache(&ref_cache);
2408         int error = 0;
2409         int save_errno = 0;
2410         FILE *out;
2411
2412         if (!packed_ref_cache->lock)
2413                 die("internal error: packed-refs not locked");
2414
2415         out = fdopen_lock_file(packed_ref_cache->lock, "w");
2416         if (!out)
2417                 die_errno("unable to fdopen packed-refs descriptor");
2418
2419         fprintf_or_die(out, "%s", PACKED_REFS_HEADER);
2420         do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),
2421                                  0, write_packed_entry_fn, out);
2422
2423         if (commit_lock_file(packed_ref_cache->lock)) {
2424                 save_errno = errno;
2425                 error = -1;
2426         }
2427         packed_ref_cache->lock = NULL;
2428         release_packed_ref_cache(packed_ref_cache);
2429         errno = save_errno;
2430         return error;
2431 }
2432
2433 void rollback_packed_refs(void)
2434 {
2435         struct packed_ref_cache *packed_ref_cache =
2436                 get_packed_ref_cache(&ref_cache);
2437
2438         if (!packed_ref_cache->lock)
2439                 die("internal error: packed-refs not locked");
2440         rollback_lock_file(packed_ref_cache->lock);
2441         packed_ref_cache->lock = NULL;
2442         release_packed_ref_cache(packed_ref_cache);
2443         clear_packed_ref_cache(&ref_cache);
2444 }
2445
2446 struct ref_to_prune {
2447         struct ref_to_prune *next;
2448         unsigned char sha1[20];
2449         char name[FLEX_ARRAY];
2450 };
2451
2452 struct pack_refs_cb_data {
2453         unsigned int flags;
2454         struct ref_dir *packed_refs;
2455         struct ref_to_prune *ref_to_prune;
2456 };
2457
2458 /*
2459  * An each_ref_entry_fn that is run over loose references only.  If
2460  * the loose reference can be packed, add an entry in the packed ref
2461  * cache.  If the reference should be pruned, also add it to
2462  * ref_to_prune in the pack_refs_cb_data.
2463  */
2464 static int pack_if_possible_fn(struct ref_entry *entry, void *cb_data)
2465 {
2466         struct pack_refs_cb_data *cb = cb_data;
2467         enum peel_status peel_status;
2468         struct ref_entry *packed_entry;
2469         int is_tag_ref = starts_with(entry->name, "refs/tags/");
2470
2471         /* ALWAYS pack tags */
2472         if (!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)
2473                 return 0;
2474
2475         /* Do not pack symbolic or broken refs: */
2476         if ((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))
2477                 return 0;
2478
2479         /* Add a packed ref cache entry equivalent to the loose entry. */
2480         peel_status = peel_entry(entry, 1);
2481         if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2482                 die("internal error peeling reference %s (%s)",
2483                     entry->name, sha1_to_hex(entry->u.value.sha1));
2484         packed_entry = find_ref(cb->packed_refs, entry->name);
2485         if (packed_entry) {
2486                 /* Overwrite existing packed entry with info from loose entry */
2487                 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;
2488                 hashcpy(packed_entry->u.value.sha1, entry->u.value.sha1);
2489         } else {
2490                 packed_entry = create_ref_entry(entry->name, entry->u.value.sha1,
2491                                                 REF_ISPACKED | REF_KNOWS_PEELED, 0);
2492                 add_ref(cb->packed_refs, packed_entry);
2493         }
2494         hashcpy(packed_entry->u.value.peeled, entry->u.value.peeled);
2495
2496         /* Schedule the loose reference for pruning if requested. */
2497         if ((cb->flags & PACK_REFS_PRUNE)) {
2498                 int namelen = strlen(entry->name) + 1;
2499                 struct ref_to_prune *n = xcalloc(1, sizeof(*n) + namelen);
2500                 hashcpy(n->sha1, entry->u.value.sha1);
2501                 strcpy(n->name, entry->name);
2502                 n->next = cb->ref_to_prune;
2503                 cb->ref_to_prune = n;
2504         }
2505         return 0;
2506 }
2507
2508 /*
2509  * Remove empty parents, but spare refs/ and immediate subdirs.
2510  * Note: munges *name.
2511  */
2512 static void try_remove_empty_parents(char *name)
2513 {
2514         char *p, *q;
2515         int i;
2516         p = name;
2517         for (i = 0; i < 2; i++) { /* refs/{heads,tags,...}/ */
2518                 while (*p && *p != '/')
2519                         p++;
2520                 /* tolerate duplicate slashes; see check_refname_format() */
2521                 while (*p == '/')
2522                         p++;
2523         }
2524         for (q = p; *q; q++)
2525                 ;
2526         while (1) {
2527                 while (q > p && *q != '/')
2528                         q--;
2529                 while (q > p && *(q-1) == '/')
2530                         q--;
2531                 if (q == p)
2532                         break;
2533                 *q = '\0';
2534                 if (rmdir(git_path("%s", name)))
2535                         break;
2536         }
2537 }
2538
2539 /* make sure nobody touched the ref, and unlink */
2540 static void prune_ref(struct ref_to_prune *r)
2541 {
2542         struct ref_transaction *transaction;
2543         struct strbuf err = STRBUF_INIT;
2544
2545         if (check_refname_format(r->name, 0))
2546                 return;
2547
2548         transaction = ref_transaction_begin(&err);
2549         if (!transaction ||
2550             ref_transaction_delete(transaction, r->name, r->sha1,
2551                                    REF_ISPRUNING, 1, NULL, &err) ||
2552             ref_transaction_commit(transaction, &err)) {
2553                 ref_transaction_free(transaction);
2554                 error("%s", err.buf);
2555                 strbuf_release(&err);
2556                 return;
2557         }
2558         ref_transaction_free(transaction);
2559         strbuf_release(&err);
2560         try_remove_empty_parents(r->name);
2561 }
2562
2563 static void prune_refs(struct ref_to_prune *r)
2564 {
2565         while (r) {
2566                 prune_ref(r);
2567                 r = r->next;
2568         }
2569 }
2570
2571 int pack_refs(unsigned int flags)
2572 {
2573         struct pack_refs_cb_data cbdata;
2574
2575         memset(&cbdata, 0, sizeof(cbdata));
2576         cbdata.flags = flags;
2577
2578         lock_packed_refs(LOCK_DIE_ON_ERROR);
2579         cbdata.packed_refs = get_packed_refs(&ref_cache);
2580
2581         do_for_each_entry_in_dir(get_loose_refs(&ref_cache), 0,
2582                                  pack_if_possible_fn, &cbdata);
2583
2584         if (commit_packed_refs())
2585                 die_errno("unable to overwrite old ref-pack file");
2586
2587         prune_refs(cbdata.ref_to_prune);
2588         return 0;
2589 }
2590
2591 /*
2592  * If entry is no longer needed in packed-refs, add it to the string
2593  * list pointed to by cb_data.  Reasons for deleting entries:
2594  *
2595  * - Entry is broken.
2596  * - Entry is overridden by a loose ref.
2597  * - Entry does not point at a valid object.
2598  *
2599  * In the first and third cases, also emit an error message because these
2600  * are indications of repository corruption.
2601  */
2602 static int curate_packed_ref_fn(struct ref_entry *entry, void *cb_data)
2603 {
2604         struct string_list *refs_to_delete = cb_data;
2605
2606         if (entry->flag & REF_ISBROKEN) {
2607                 /* This shouldn't happen to packed refs. */
2608                 error("%s is broken!", entry->name);
2609                 string_list_append(refs_to_delete, entry->name);
2610                 return 0;
2611         }
2612         if (!has_sha1_file(entry->u.value.sha1)) {
2613                 unsigned char sha1[20];
2614                 int flags;
2615
2616                 if (read_ref_full(entry->name, 0, sha1, &flags))
2617                         /* We should at least have found the packed ref. */
2618                         die("Internal error");
2619                 if ((flags & REF_ISSYMREF) || !(flags & REF_ISPACKED)) {
2620                         /*
2621                          * This packed reference is overridden by a
2622                          * loose reference, so it is OK that its value
2623                          * is no longer valid; for example, it might
2624                          * refer to an object that has been garbage
2625                          * collected.  For this purpose we don't even
2626                          * care whether the loose reference itself is
2627                          * invalid, broken, symbolic, etc.  Silently
2628                          * remove the packed reference.
2629                          */
2630                         string_list_append(refs_to_delete, entry->name);
2631                         return 0;
2632                 }
2633                 /*
2634                  * There is no overriding loose reference, so the fact
2635                  * that this reference doesn't refer to a valid object
2636                  * indicates some kind of repository corruption.
2637                  * Report the problem, then omit the reference from
2638                  * the output.
2639                  */
2640                 error("%s does not point to a valid object!", entry->name);
2641                 string_list_append(refs_to_delete, entry->name);
2642                 return 0;
2643         }
2644
2645         return 0;
2646 }
2647
2648 int repack_without_refs(struct string_list *refnames, struct strbuf *err)
2649 {
2650         struct ref_dir *packed;
2651         struct string_list refs_to_delete = STRING_LIST_INIT_DUP;
2652         struct string_list_item *refname, *ref_to_delete;
2653         int ret, needs_repacking = 0, removed = 0;
2654
2655         assert(err);
2656
2657         /* Look for a packed ref */
2658         for_each_string_list_item(refname, refnames) {
2659                 if (get_packed_ref(refname->string)) {
2660                         needs_repacking = 1;
2661                         break;
2662                 }
2663         }
2664
2665         /* Avoid locking if we have nothing to do */
2666         if (!needs_repacking)
2667                 return 0; /* no refname exists in packed refs */
2668
2669         if (lock_packed_refs(0)) {
2670                 unable_to_lock_message(git_path("packed-refs"), errno, err);
2671                 return -1;
2672         }
2673         packed = get_packed_refs(&ref_cache);
2674
2675         /* Remove refnames from the cache */
2676         for_each_string_list_item(refname, refnames)
2677                 if (remove_entry(packed, refname->string) != -1)
2678                         removed = 1;
2679         if (!removed) {
2680                 /*
2681                  * All packed entries disappeared while we were
2682                  * acquiring the lock.
2683                  */
2684                 rollback_packed_refs();
2685                 return 0;
2686         }
2687
2688         /* Remove any other accumulated cruft */
2689         do_for_each_entry_in_dir(packed, 0, curate_packed_ref_fn, &refs_to_delete);
2690         for_each_string_list_item(ref_to_delete, &refs_to_delete) {
2691                 if (remove_entry(packed, ref_to_delete->string) == -1)
2692                         die("internal error");
2693         }
2694
2695         /* Write what remains */
2696         ret = commit_packed_refs();
2697         if (ret)
2698                 strbuf_addf(err, "unable to overwrite old ref-pack file: %s",
2699                             strerror(errno));
2700         return ret;
2701 }
2702
2703 static int delete_ref_loose(struct ref_lock *lock, int flag, struct strbuf *err)
2704 {
2705         assert(err);
2706
2707         if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
2708                 /*
2709                  * loose.  The loose file name is the same as the
2710                  * lockfile name, minus ".lock":
2711                  */
2712                 char *loose_filename = get_locked_file_path(lock->lk);
2713                 int res = unlink_or_msg(loose_filename, err);
2714                 free(loose_filename);
2715                 if (res)
2716                         return 1;
2717         }
2718         return 0;
2719 }
2720
2721 int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
2722 {
2723         struct ref_transaction *transaction;
2724         struct strbuf err = STRBUF_INIT;
2725
2726         transaction = ref_transaction_begin(&err);
2727         if (!transaction ||
2728             ref_transaction_delete(transaction, refname, sha1, delopt,
2729                                    sha1 && !is_null_sha1(sha1), NULL, &err) ||
2730             ref_transaction_commit(transaction, &err)) {
2731                 error("%s", err.buf);
2732                 ref_transaction_free(transaction);
2733                 strbuf_release(&err);
2734                 return 1;
2735         }
2736         ref_transaction_free(transaction);
2737         strbuf_release(&err);
2738         return 0;
2739 }
2740
2741 /*
2742  * People using contrib's git-new-workdir have .git/logs/refs ->
2743  * /some/other/path/.git/logs/refs, and that may live on another device.
2744  *
2745  * IOW, to avoid cross device rename errors, the temporary renamed log must
2746  * live into logs/refs.
2747  */
2748 #define TMP_RENAMED_LOG  "logs/refs/.tmp-renamed-log"
2749
2750 static int rename_tmp_log(const char *newrefname)
2751 {
2752         int attempts_remaining = 4;
2753
2754  retry:
2755         switch (safe_create_leading_directories(git_path("logs/%s", newrefname))) {
2756         case SCLD_OK:
2757                 break; /* success */
2758         case SCLD_VANISHED:
2759                 if (--attempts_remaining > 0)
2760                         goto retry;
2761                 /* fall through */
2762         default:
2763                 error("unable to create directory for %s", newrefname);
2764                 return -1;
2765         }
2766
2767         if (rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newrefname))) {
2768                 if ((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining > 0) {
2769                         /*
2770                          * rename(a, b) when b is an existing
2771                          * directory ought to result in ISDIR, but
2772                          * Solaris 5.8 gives ENOTDIR.  Sheesh.
2773                          */
2774                         if (remove_empty_directories(git_path("logs/%s", newrefname))) {
2775                                 error("Directory not empty: logs/%s", newrefname);
2776                                 return -1;
2777                         }
2778                         goto retry;
2779                 } else if (errno == ENOENT && --attempts_remaining > 0) {
2780                         /*
2781                          * Maybe another process just deleted one of
2782                          * the directories in the path to newrefname.
2783                          * Try again from the beginning.
2784                          */
2785                         goto retry;
2786                 } else {
2787                         error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
2788                                 newrefname, strerror(errno));
2789                         return -1;
2790                 }
2791         }
2792         return 0;
2793 }
2794
2795 static int rename_ref_available(const char *oldname, const char *newname)
2796 {
2797         struct string_list skip = STRING_LIST_INIT_NODUP;
2798         int ret;
2799
2800         string_list_insert(&skip, oldname);
2801         ret = is_refname_available(newname, &skip, get_packed_refs(&ref_cache))
2802             && is_refname_available(newname, &skip, get_loose_refs(&ref_cache));
2803         string_list_clear(&skip, 0);
2804         return ret;
2805 }
2806
2807 static int write_ref_sha1(struct ref_lock *lock, const unsigned char *sha1,
2808                           const char *logmsg);
2809
2810 int rename_ref(const char *oldrefname, const char *newrefname, const char *logmsg)
2811 {
2812         unsigned char sha1[20], orig_sha1[20];
2813         int flag = 0, logmoved = 0;
2814         struct ref_lock *lock;
2815         struct stat loginfo;
2816         int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);
2817         const char *symref = NULL;
2818
2819         if (log && S_ISLNK(loginfo.st_mode))
2820                 return error("reflog for %s is a symlink", oldrefname);
2821
2822         symref = resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,
2823                                     orig_sha1, &flag);
2824         if (flag & REF_ISSYMREF)
2825                 return error("refname %s is a symbolic ref, renaming it is not supported",
2826                         oldrefname);
2827         if (!symref)
2828                 return error("refname %s not found", oldrefname);
2829
2830         if (!rename_ref_available(oldrefname, newrefname))
2831                 return 1;
2832
2833         if (log && rename(git_path("logs/%s", oldrefname), git_path(TMP_RENAMED_LOG)))
2834                 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
2835                         oldrefname, strerror(errno));
2836
2837         if (delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {
2838                 error("unable to delete old %s", oldrefname);
2839                 goto rollback;
2840         }
2841
2842         if (!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&
2843             delete_ref(newrefname, sha1, REF_NODEREF)) {
2844                 if (errno==EISDIR) {
2845                         if (remove_empty_directories(git_path("%s", newrefname))) {
2846                                 error("Directory not empty: %s", newrefname);
2847                                 goto rollback;
2848                         }
2849                 } else {
2850                         error("unable to delete existing %s", newrefname);
2851                         goto rollback;
2852                 }
2853         }
2854
2855         if (log && rename_tmp_log(newrefname))
2856                 goto rollback;
2857
2858         logmoved = log;
2859
2860         lock = lock_ref_sha1_basic(newrefname, NULL, NULL, 0, NULL);
2861         if (!lock) {
2862                 error("unable to lock %s for update", newrefname);
2863                 goto rollback;
2864         }
2865         lock->force_write = 1;
2866         hashcpy(lock->old_sha1, orig_sha1);
2867         if (write_ref_sha1(lock, orig_sha1, logmsg)) {
2868                 error("unable to write current sha1 into %s", newrefname);
2869                 goto rollback;
2870         }
2871
2872         return 0;
2873
2874  rollback:
2875         lock = lock_ref_sha1_basic(oldrefname, NULL, NULL, 0, NULL);
2876         if (!lock) {
2877                 error("unable to lock %s for rollback", oldrefname);
2878                 goto rollbacklog;
2879         }
2880
2881         lock->force_write = 1;
2882         flag = log_all_ref_updates;
2883         log_all_ref_updates = 0;
2884         if (write_ref_sha1(lock, orig_sha1, NULL))
2885                 error("unable to write current sha1 into %s", oldrefname);
2886         log_all_ref_updates = flag;
2887
2888  rollbacklog:
2889         if (logmoved && rename(git_path("logs/%s", newrefname), git_path("logs/%s", oldrefname)))
2890                 error("unable to restore logfile %s from %s: %s",
2891                         oldrefname, newrefname, strerror(errno));
2892         if (!logmoved && log &&
2893             rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldrefname)))
2894                 error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
2895                         oldrefname, strerror(errno));
2896
2897         return 1;
2898 }
2899
2900 int close_ref(struct ref_lock *lock)
2901 {
2902         if (close_lock_file(lock->lk))
2903                 return -1;
2904         lock->lock_fd = -1;
2905         return 0;
2906 }
2907
2908 int commit_ref(struct ref_lock *lock)
2909 {
2910         if (commit_lock_file(lock->lk))
2911                 return -1;
2912         lock->lock_fd = -1;
2913         return 0;
2914 }
2915
2916 void unlock_ref(struct ref_lock *lock)
2917 {
2918         /* Do not free lock->lk -- atexit() still looks at them */
2919         if (lock->lk)
2920                 rollback_lock_file(lock->lk);
2921         free(lock->ref_name);
2922         free(lock->orig_ref_name);
2923         free(lock);
2924 }
2925
2926 /*
2927  * copy the reflog message msg to buf, which has been allocated sufficiently
2928  * large, while cleaning up the whitespaces.  Especially, convert LF to space,
2929  * because reflog file is one line per entry.
2930  */
2931 static int copy_msg(char *buf, const char *msg)
2932 {
2933         char *cp = buf;
2934         char c;
2935         int wasspace = 1;
2936
2937         *cp++ = '\t';
2938         while ((c = *msg++)) {
2939                 if (wasspace && isspace(c))
2940                         continue;
2941                 wasspace = isspace(c);
2942                 if (wasspace)
2943                         c = ' ';
2944                 *cp++ = c;
2945         }
2946         while (buf < cp && isspace(cp[-1]))
2947                 cp--;
2948         *cp++ = '\n';
2949         return cp - buf;
2950 }
2951
2952 /* This function must set a meaningful errno on failure */
2953 int log_ref_setup(const char *refname, char *logfile, int bufsize)
2954 {
2955         int logfd, oflags = O_APPEND | O_WRONLY;
2956
2957         git_snpath(logfile, bufsize, "logs/%s", refname);
2958         if (log_all_ref_updates &&
2959             (starts_with(refname, "refs/heads/") ||
2960              starts_with(refname, "refs/remotes/") ||
2961              starts_with(refname, "refs/notes/") ||
2962              !strcmp(refname, "HEAD"))) {
2963                 if (safe_create_leading_directories(logfile) < 0) {
2964                         int save_errno = errno;
2965                         error("unable to create directory for %s", logfile);
2966                         errno = save_errno;
2967                         return -1;
2968                 }
2969                 oflags |= O_CREAT;
2970         }
2971
2972         logfd = open(logfile, oflags, 0666);
2973         if (logfd < 0) {
2974                 if (!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))
2975                         return 0;
2976
2977                 if (errno == EISDIR) {
2978                         if (remove_empty_directories(logfile)) {
2979                                 int save_errno = errno;
2980                                 error("There are still logs under '%s'",
2981                                       logfile);
2982                                 errno = save_errno;
2983                                 return -1;
2984                         }
2985                         logfd = open(logfile, oflags, 0666);
2986                 }
2987
2988                 if (logfd < 0) {
2989                         int save_errno = errno;
2990                         error("Unable to append to %s: %s", logfile,
2991                               strerror(errno));
2992                         errno = save_errno;
2993                         return -1;
2994                 }
2995         }
2996
2997         adjust_shared_perm(logfile);
2998         close(logfd);
2999         return 0;
3000 }
3001
3002 static int log_ref_write(const char *refname, const unsigned char *old_sha1,
3003                          const unsigned char *new_sha1, const char *msg)
3004 {
3005         int logfd, result, written, oflags = O_APPEND | O_WRONLY;
3006         unsigned maxlen, len;
3007         int msglen;
3008         char log_file[PATH_MAX];
3009         char *logrec;
3010         const char *committer;
3011
3012         if (log_all_ref_updates < 0)
3013                 log_all_ref_updates = !is_bare_repository();
3014
3015         result = log_ref_setup(refname, log_file, sizeof(log_file));
3016         if (result)
3017                 return result;
3018
3019         logfd = open(log_file, oflags);
3020         if (logfd < 0)
3021                 return 0;
3022         msglen = msg ? strlen(msg) : 0;
3023         committer = git_committer_info(0);
3024         maxlen = strlen(committer) + msglen + 100;
3025         logrec = xmalloc(maxlen);
3026         len = sprintf(logrec, "%s %s %s\n",
3027                       sha1_to_hex(old_sha1),
3028                       sha1_to_hex(new_sha1),
3029                       committer);
3030         if (msglen)
3031                 len += copy_msg(logrec + len - 1, msg) - 1;
3032         written = len <= maxlen ? write_in_full(logfd, logrec, len) : -1;
3033         free(logrec);
3034         if (written != len) {
3035                 int save_errno = errno;
3036                 close(logfd);
3037                 error("Unable to append to %s", log_file);
3038                 errno = save_errno;
3039                 return -1;
3040         }
3041         if (close(logfd)) {
3042                 int save_errno = errno;
3043                 error("Unable to append to %s", log_file);
3044                 errno = save_errno;
3045                 return -1;
3046         }
3047         return 0;
3048 }
3049
3050 int is_branch(const char *refname)
3051 {
3052         return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
3053 }
3054
3055 /*
3056  * Write sha1 into the ref specified by the lock. Make sure that errno
3057  * is sane on error.
3058  */
3059 static int write_ref_sha1(struct ref_lock *lock,
3060         const unsigned char *sha1, const char *logmsg)
3061 {
3062         static char term = '\n';
3063         struct object *o;
3064
3065         if (!lock) {
3066                 errno = EINVAL;
3067                 return -1;
3068         }
3069         if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
3070                 unlock_ref(lock);
3071                 return 0;
3072         }
3073         o = parse_object(sha1);
3074         if (!o) {
3075                 error("Trying to write ref %s with nonexistent object %s",
3076                         lock->ref_name, sha1_to_hex(sha1));
3077                 unlock_ref(lock);
3078                 errno = EINVAL;
3079                 return -1;
3080         }
3081         if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
3082                 error("Trying to write non-commit object %s to branch %s",
3083                         sha1_to_hex(sha1), lock->ref_name);
3084                 unlock_ref(lock);
3085                 errno = EINVAL;
3086                 return -1;
3087         }
3088         if (write_in_full(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
3089             write_in_full(lock->lock_fd, &term, 1) != 1 ||
3090             close_ref(lock) < 0) {
3091                 int save_errno = errno;
3092                 error("Couldn't write %s", lock->lk->filename.buf);
3093                 unlock_ref(lock);
3094                 errno = save_errno;
3095                 return -1;
3096         }
3097         clear_loose_ref_cache(&ref_cache);
3098         if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
3099             (strcmp(lock->ref_name, lock->orig_ref_name) &&
3100              log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
3101                 unlock_ref(lock);
3102                 return -1;
3103         }
3104         if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
3105                 /*
3106                  * Special hack: If a branch is updated directly and HEAD
3107                  * points to it (may happen on the remote side of a push
3108                  * for example) then logically the HEAD reflog should be
3109                  * updated too.
3110                  * A generic solution implies reverse symref information,
3111                  * but finding all symrefs pointing to the given branch
3112                  * would be rather costly for this rare event (the direct
3113                  * update of a branch) to be worth it.  So let's cheat and
3114                  * check with HEAD only which should cover 99% of all usage
3115                  * scenarios (even 100% of the default ones).
3116                  */
3117                 unsigned char head_sha1[20];
3118                 int head_flag;
3119                 const char *head_ref;
3120                 head_ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
3121                                               head_sha1, &head_flag);
3122                 if (head_ref && (head_flag & REF_ISSYMREF) &&
3123                     !strcmp(head_ref, lock->ref_name))
3124                         log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);
3125         }
3126         if (commit_ref(lock)) {
3127                 error("Couldn't set %s", lock->ref_name);
3128                 unlock_ref(lock);
3129                 return -1;
3130         }
3131         unlock_ref(lock);
3132         return 0;
3133 }
3134
3135 int create_symref(const char *ref_target, const char *refs_heads_master,
3136                   const char *logmsg)
3137 {
3138         const char *lockpath;
3139         char ref[1000];
3140         int fd, len, written;
3141         char *git_HEAD = git_pathdup("%s", ref_target);
3142         unsigned char old_sha1[20], new_sha1[20];
3143
3144         if (logmsg && read_ref(ref_target, old_sha1))
3145                 hashclr(old_sha1);
3146
3147         if (safe_create_leading_directories(git_HEAD) < 0)
3148                 return error("unable to create directory for %s", git_HEAD);
3149
3150 #ifndef NO_SYMLINK_HEAD
3151         if (prefer_symlink_refs) {
3152                 unlink(git_HEAD);
3153                 if (!symlink(refs_heads_master, git_HEAD))
3154                         goto done;
3155                 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
3156         }
3157 #endif
3158
3159         len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
3160         if (sizeof(ref) <= len) {
3161                 error("refname too long: %s", refs_heads_master);
3162                 goto error_free_return;
3163         }
3164         lockpath = mkpath("%s.lock", git_HEAD);
3165         fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
3166         if (fd < 0) {
3167                 error("Unable to open %s for writing", lockpath);
3168                 goto error_free_return;
3169         }
3170         written = write_in_full(fd, ref, len);
3171         if (close(fd) != 0 || written != len) {
3172                 error("Unable to write to %s", lockpath);
3173                 goto error_unlink_return;
3174         }
3175         if (rename(lockpath, git_HEAD) < 0) {
3176                 error("Unable to create %s", git_HEAD);
3177                 goto error_unlink_return;
3178         }
3179         if (adjust_shared_perm(git_HEAD)) {
3180                 error("Unable to fix permissions on %s", lockpath);
3181         error_unlink_return:
3182                 unlink_or_warn(lockpath);
3183         error_free_return:
3184                 free(git_HEAD);
3185                 return -1;
3186         }
3187
3188 #ifndef NO_SYMLINK_HEAD
3189         done:
3190 #endif
3191         if (logmsg && !read_ref(refs_heads_master, new_sha1))
3192                 log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
3193
3194         free(git_HEAD);
3195         return 0;
3196 }
3197
3198 struct read_ref_at_cb {
3199         const char *refname;
3200         unsigned long at_time;
3201         int cnt;
3202         int reccnt;
3203         unsigned char *sha1;
3204         int found_it;
3205
3206         unsigned char osha1[20];
3207         unsigned char nsha1[20];
3208         int tz;
3209         unsigned long date;
3210         char **msg;
3211         unsigned long *cutoff_time;
3212         int *cutoff_tz;
3213         int *cutoff_cnt;
3214 };
3215
3216 static int read_ref_at_ent(unsigned char *osha1, unsigned char *nsha1,
3217                 const char *email, unsigned long timestamp, int tz,
3218                 const char *message, void *cb_data)
3219 {
3220         struct read_ref_at_cb *cb = cb_data;
3221
3222         cb->reccnt++;
3223         cb->tz = tz;
3224         cb->date = timestamp;
3225
3226         if (timestamp <= cb->at_time || cb->cnt == 0) {
3227                 if (cb->msg)
3228                         *cb->msg = xstrdup(message);
3229                 if (cb->cutoff_time)
3230                         *cb->cutoff_time = timestamp;
3231                 if (cb->cutoff_tz)
3232                         *cb->cutoff_tz = tz;
3233                 if (cb->cutoff_cnt)
3234                         *cb->cutoff_cnt = cb->reccnt - 1;
3235                 /*
3236                  * we have not yet updated cb->[n|o]sha1 so they still
3237                  * hold the values for the previous record.
3238                  */
3239                 if (!is_null_sha1(cb->osha1)) {
3240                         hashcpy(cb->sha1, nsha1);
3241                         if (hashcmp(cb->osha1, nsha1))
3242                                 warning("Log for ref %s has gap after %s.",
3243                                         cb->refname, show_date(cb->date, cb->tz, DATE_RFC2822));
3244                 }
3245                 else if (cb->date == cb->at_time)
3246                         hashcpy(cb->sha1, nsha1);
3247                 else if (hashcmp(nsha1, cb->sha1))
3248                         warning("Log for ref %s unexpectedly ended on %s.",
3249                                 cb->refname, show_date(cb->date, cb->tz,
3250                                                    DATE_RFC2822));
3251                 hashcpy(cb->osha1, osha1);
3252                 hashcpy(cb->nsha1, nsha1);
3253                 cb->found_it = 1;
3254                 return 1;
3255         }
3256         hashcpy(cb->osha1, osha1);
3257         hashcpy(cb->nsha1, nsha1);
3258         if (cb->cnt > 0)
3259                 cb->cnt--;
3260         return 0;
3261 }
3262
3263 static int read_ref_at_ent_oldest(unsigned char *osha1, unsigned char *nsha1,
3264                                   const char *email, unsigned long timestamp,
3265                                   int tz, const char *message, void *cb_data)
3266 {
3267         struct read_ref_at_cb *cb = cb_data;
3268
3269         if (cb->msg)
3270                 *cb->msg = xstrdup(message);
3271         if (cb->cutoff_time)
3272                 *cb->cutoff_time = timestamp;
3273         if (cb->cutoff_tz)
3274                 *cb->cutoff_tz = tz;
3275         if (cb->cutoff_cnt)
3276                 *cb->cutoff_cnt = cb->reccnt;
3277         hashcpy(cb->sha1, osha1);
3278         if (is_null_sha1(cb->sha1))
3279                 hashcpy(cb->sha1, nsha1);
3280         /* We just want the first entry */
3281         return 1;
3282 }
3283
3284 int read_ref_at(const char *refname, unsigned int flags, unsigned long at_time, int cnt,
3285                 unsigned char *sha1, char **msg,
3286                 unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
3287 {
3288         struct read_ref_at_cb cb;
3289
3290         memset(&cb, 0, sizeof(cb));
3291         cb.refname = refname;
3292         cb.at_time = at_time;
3293         cb.cnt = cnt;
3294         cb.msg = msg;
3295         cb.cutoff_time = cutoff_time;
3296         cb.cutoff_tz = cutoff_tz;
3297         cb.cutoff_cnt = cutoff_cnt;
3298         cb.sha1 = sha1;
3299
3300         for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
3301
3302         if (!cb.reccnt) {
3303                 if (flags & GET_SHA1_QUIETLY)
3304                         exit(128);
3305                 else
3306                         die("Log for %s is empty.", refname);
3307         }
3308         if (cb.found_it)
3309                 return 0;
3310
3311         for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
3312
3313         return 1;
3314 }
3315
3316 int reflog_exists(const char *refname)
3317 {
3318         struct stat st;
3319
3320         return !lstat(git_path("logs/%s", refname), &st) &&
3321                 S_ISREG(st.st_mode);
3322 }
3323
3324 int delete_reflog(const char *refname)
3325 {
3326         return remove_path(git_path("logs/%s", refname));
3327 }
3328
3329 static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data)
3330 {
3331         unsigned char osha1[20], nsha1[20];
3332         char *email_end, *message;
3333         unsigned long timestamp;
3334         int tz;
3335
3336         /* old SP new SP name <email> SP time TAB msg LF */
3337         if (sb->len < 83 || sb->buf[sb->len - 1] != '\n' ||
3338             get_sha1_hex(sb->buf, osha1) || sb->buf[40] != ' ' ||
3339             get_sha1_hex(sb->buf + 41, nsha1) || sb->buf[81] != ' ' ||
3340             !(email_end = strchr(sb->buf + 82, '>')) ||
3341             email_end[1] != ' ' ||
3342             !(timestamp = strtoul(email_end + 2, &message, 10)) ||
3343             !message || message[0] != ' ' ||
3344             (message[1] != '+' && message[1] != '-') ||
3345             !isdigit(message[2]) || !isdigit(message[3]) ||
3346             !isdigit(message[4]) || !isdigit(message[5]))
3347                 return 0; /* corrupt? */
3348         email_end[1] = '\0';
3349         tz = strtol(message + 1, NULL, 10);
3350         if (message[6] != '\t')
3351                 message += 6;
3352         else
3353                 message += 7;
3354         return fn(osha1, nsha1, sb->buf + 82, timestamp, tz, message, cb_data);
3355 }
3356
3357 static char *find_beginning_of_line(char *bob, char *scan)
3358 {
3359         while (bob < scan && *(--scan) != '\n')
3360                 ; /* keep scanning backwards */
3361         /*
3362          * Return either beginning of the buffer, or LF at the end of
3363          * the previous line.
3364          */
3365         return scan;
3366 }
3367
3368 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn, void *cb_data)
3369 {
3370         struct strbuf sb = STRBUF_INIT;
3371         FILE *logfp;
3372         long pos;
3373         int ret = 0, at_tail = 1;
3374
3375         logfp = fopen(git_path("logs/%s", refname), "r");
3376         if (!logfp)
3377                 return -1;
3378
3379         /* Jump to the end */
3380         if (fseek(logfp, 0, SEEK_END) < 0)
3381                 return error("cannot seek back reflog for %s: %s",
3382                              refname, strerror(errno));
3383         pos = ftell(logfp);
3384         while (!ret && 0 < pos) {
3385                 int cnt;
3386                 size_t nread;
3387                 char buf[BUFSIZ];
3388                 char *endp, *scanp;
3389
3390                 /* Fill next block from the end */
3391                 cnt = (sizeof(buf) < pos) ? sizeof(buf) : pos;
3392                 if (fseek(logfp, pos - cnt, SEEK_SET))
3393                         return error("cannot seek back reflog for %s: %s",
3394                                      refname, strerror(errno));
3395                 nread = fread(buf, cnt, 1, logfp);
3396                 if (nread != 1)
3397                         return error("cannot read %d bytes from reflog for %s: %s",
3398                                      cnt, refname, strerror(errno));
3399                 pos -= cnt;
3400
3401                 scanp = endp = buf + cnt;
3402                 if (at_tail && scanp[-1] == '\n')
3403                         /* Looking at the final LF at the end of the file */
3404                         scanp--;
3405                 at_tail = 0;
3406
3407                 while (buf < scanp) {
3408                         /*
3409                          * terminating LF of the previous line, or the beginning
3410                          * of the buffer.
3411                          */
3412                         char *bp;
3413
3414                         bp = find_beginning_of_line(buf, scanp);
3415
3416                         if (*bp == '\n') {
3417                                 /*
3418                                  * The newline is the end of the previous line,
3419                                  * so we know we have complete line starting
3420                                  * at (bp + 1). Prefix it onto any prior data
3421                                  * we collected for the line and process it.
3422                                  */
3423                                 strbuf_splice(&sb, 0, 0, bp + 1, endp - (bp + 1));
3424                                 scanp = bp;
3425                                 endp = bp + 1;
3426                                 ret = show_one_reflog_ent(&sb, fn, cb_data);
3427                                 strbuf_reset(&sb);
3428                                 if (ret)
3429                                         break;
3430                         } else if (!pos) {
3431                                 /*
3432                                  * We are at the start of the buffer, and the
3433                                  * start of the file; there is no previous
3434                                  * line, and we have everything for this one.
3435                                  * Process it, and we can end the loop.
3436                                  */
3437                                 strbuf_splice(&sb, 0, 0, buf, endp - buf);
3438                                 ret = show_one_reflog_ent(&sb, fn, cb_data);
3439                                 strbuf_reset(&sb);
3440                                 break;
3441                         }
3442
3443                         if (bp == buf) {
3444                                 /*
3445                                  * We are at the start of the buffer, and there
3446                                  * is more file to read backwards. Which means
3447                                  * we are in the middle of a line. Note that we
3448                                  * may get here even if *bp was a newline; that
3449                                  * just means we are at the exact end of the
3450                                  * previous line, rather than some spot in the
3451                                  * middle.
3452                                  *
3453                                  * Save away what we have to be combined with
3454                                  * the data from the next read.
3455                                  */
3456                                 strbuf_splice(&sb, 0, 0, buf, endp - buf);
3457                                 break;
3458                         }
3459                 }
3460
3461         }
3462         if (!ret && sb.len)
3463                 die("BUG: reverse reflog parser had leftover data");
3464
3465         fclose(logfp);
3466         strbuf_release(&sb);
3467         return ret;
3468 }
3469
3470 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data)
3471 {
3472         FILE *logfp;
3473         struct strbuf sb = STRBUF_INIT;
3474         int ret = 0;
3475
3476         logfp = fopen(git_path("logs/%s", refname), "r");
3477         if (!logfp)
3478                 return -1;
3479
3480         while (!ret && !strbuf_getwholeline(&sb, logfp, '\n'))
3481                 ret = show_one_reflog_ent(&sb, fn, cb_data);
3482         fclose(logfp);
3483         strbuf_release(&sb);
3484         return ret;
3485 }
3486 /*
3487  * Call fn for each reflog in the namespace indicated by name.  name
3488  * must be empty or end with '/'.  Name will be used as a scratch
3489  * space, but its contents will be restored before return.
3490  */
3491 static int do_for_each_reflog(struct strbuf *name, each_ref_fn fn, void *cb_data)
3492 {
3493         DIR *d = opendir(git_path("logs/%s", name->buf));
3494         int retval = 0;
3495         struct dirent *de;
3496         int oldlen = name->len;
3497
3498         if (!d)
3499                 return name->len ? errno : 0;
3500
3501         while ((de = readdir(d)) != NULL) {
3502                 struct stat st;
3503
3504                 if (de->d_name[0] == '.')
3505                         continue;
3506                 if (ends_with(de->d_name, ".lock"))
3507                         continue;
3508                 strbuf_addstr(name, de->d_name);
3509                 if (stat(git_path("logs/%s", name->buf), &st) < 0) {
3510                         ; /* silently ignore */
3511                 } else {
3512                         if (S_ISDIR(st.st_mode)) {
3513                                 strbuf_addch(name, '/');
3514                                 retval = do_for_each_reflog(name, fn, cb_data);
3515                         } else {
3516                                 unsigned char sha1[20];
3517                                 if (read_ref_full(name->buf, 0, sha1, NULL))
3518                                         retval = error("bad ref for %s", name->buf);
3519                                 else
3520                                         retval = fn(name->buf, sha1, 0, cb_data);
3521                         }
3522                         if (retval)
3523                                 break;
3524                 }
3525                 strbuf_setlen(name, oldlen);
3526         }
3527         closedir(d);
3528         return retval;
3529 }
3530
3531 int for_each_reflog(each_ref_fn fn, void *cb_data)
3532 {
3533         int retval;
3534         struct strbuf name;
3535         strbuf_init(&name, PATH_MAX);
3536         retval = do_for_each_reflog(&name, fn, cb_data);
3537         strbuf_release(&name);
3538         return retval;
3539 }
3540
3541 /**
3542  * Information needed for a single ref update.  Set new_sha1 to the
3543  * new value or to zero to delete the ref.  To check the old value
3544  * while locking the ref, set have_old to 1 and set old_sha1 to the
3545  * value or to zero to ensure the ref does not exist before update.
3546  */
3547 struct ref_update {
3548         unsigned char new_sha1[20];
3549         unsigned char old_sha1[20];
3550         int flags; /* REF_NODEREF? */
3551         int have_old; /* 1 if old_sha1 is valid, 0 otherwise */
3552         struct ref_lock *lock;
3553         int type;
3554         char *msg;
3555         const char refname[FLEX_ARRAY];
3556 };
3557
3558 /*
3559  * Transaction states.
3560  * OPEN:   The transaction is in a valid state and can accept new updates.
3561  *         An OPEN transaction can be committed.
3562  * CLOSED: A closed transaction is no longer active and no other operations
3563  *         than free can be used on it in this state.
3564  *         A transaction can either become closed by successfully committing
3565  *         an active transaction or if there is a failure while building
3566  *         the transaction thus rendering it failed/inactive.
3567  */
3568 enum ref_transaction_state {
3569         REF_TRANSACTION_OPEN   = 0,
3570         REF_TRANSACTION_CLOSED = 1
3571 };
3572
3573 /*
3574  * Data structure for holding a reference transaction, which can
3575  * consist of checks and updates to multiple references, carried out
3576  * as atomically as possible.  This structure is opaque to callers.
3577  */
3578 struct ref_transaction {
3579         struct ref_update **updates;
3580         size_t alloc;
3581         size_t nr;
3582         enum ref_transaction_state state;
3583 };
3584
3585 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
3586 {
3587         assert(err);
3588
3589         return xcalloc(1, sizeof(struct ref_transaction));
3590 }
3591
3592 void ref_transaction_free(struct ref_transaction *transaction)
3593 {
3594         int i;
3595
3596         if (!transaction)
3597                 return;
3598
3599         for (i = 0; i < transaction->nr; i++) {
3600                 free(transaction->updates[i]->msg);
3601                 free(transaction->updates[i]);
3602         }
3603         free(transaction->updates);
3604         free(transaction);
3605 }
3606
3607 static struct ref_update *add_update(struct ref_transaction *transaction,
3608                                      const char *refname)
3609 {
3610         size_t len = strlen(refname);
3611         struct ref_update *update = xcalloc(1, sizeof(*update) + len + 1);
3612
3613         strcpy((char *)update->refname, refname);
3614         ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
3615         transaction->updates[transaction->nr++] = update;
3616         return update;
3617 }
3618
3619 int ref_transaction_update(struct ref_transaction *transaction,
3620                            const char *refname,
3621                            const unsigned char *new_sha1,
3622                            const unsigned char *old_sha1,
3623                            int flags, int have_old, const char *msg,
3624                            struct strbuf *err)
3625 {
3626         struct ref_update *update;
3627
3628         assert(err);
3629
3630         if (transaction->state != REF_TRANSACTION_OPEN)
3631                 die("BUG: update called for transaction that is not open");
3632
3633         if (have_old && !old_sha1)
3634                 die("BUG: have_old is true but old_sha1 is NULL");
3635
3636         if (!is_null_sha1(new_sha1) &&
3637             check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
3638                 strbuf_addf(err, "refusing to update ref with bad name %s",
3639                             refname);
3640                 return -1;
3641         }
3642
3643         update = add_update(transaction, refname);
3644         hashcpy(update->new_sha1, new_sha1);
3645         update->flags = flags;
3646         update->have_old = have_old;
3647         if (have_old)
3648                 hashcpy(update->old_sha1, old_sha1);
3649         if (msg)
3650                 update->msg = xstrdup(msg);
3651         return 0;
3652 }
3653
3654 int ref_transaction_create(struct ref_transaction *transaction,
3655                            const char *refname,
3656                            const unsigned char *new_sha1,
3657                            int flags, const char *msg,
3658                            struct strbuf *err)
3659 {
3660         struct ref_update *update;
3661
3662         assert(err);
3663
3664         if (transaction->state != REF_TRANSACTION_OPEN)
3665                 die("BUG: create called for transaction that is not open");
3666
3667         if (!new_sha1 || is_null_sha1(new_sha1))
3668                 die("BUG: create ref with null new_sha1");
3669
3670         if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
3671                 strbuf_addf(err, "refusing to create ref with bad name %s",
3672                             refname);
3673                 return -1;
3674         }
3675
3676         update = add_update(transaction, refname);
3677
3678         hashcpy(update->new_sha1, new_sha1);
3679         hashclr(update->old_sha1);
3680         update->flags = flags;
3681         update->have_old = 1;
3682         if (msg)
3683                 update->msg = xstrdup(msg);
3684         return 0;
3685 }
3686
3687 int ref_transaction_delete(struct ref_transaction *transaction,
3688                            const char *refname,
3689                            const unsigned char *old_sha1,
3690                            int flags, int have_old, const char *msg,
3691                            struct strbuf *err)
3692 {
3693         struct ref_update *update;
3694
3695         assert(err);
3696
3697         if (transaction->state != REF_TRANSACTION_OPEN)
3698                 die("BUG: delete called for transaction that is not open");
3699
3700         if (have_old && !old_sha1)
3701                 die("BUG: have_old is true but old_sha1 is NULL");
3702
3703         update = add_update(transaction, refname);
3704         update->flags = flags;
3705         update->have_old = have_old;
3706         if (have_old) {
3707                 assert(!is_null_sha1(old_sha1));
3708                 hashcpy(update->old_sha1, old_sha1);
3709         }
3710         if (msg)
3711                 update->msg = xstrdup(msg);
3712         return 0;
3713 }
3714
3715 int update_ref(const char *action, const char *refname,
3716                const unsigned char *sha1, const unsigned char *oldval,
3717                int flags, enum action_on_err onerr)
3718 {
3719         struct ref_transaction *t;
3720         struct strbuf err = STRBUF_INIT;
3721
3722         t = ref_transaction_begin(&err);
3723         if (!t ||
3724             ref_transaction_update(t, refname, sha1, oldval, flags,
3725                                    !!oldval, action, &err) ||
3726             ref_transaction_commit(t, &err)) {
3727                 const char *str = "update_ref failed for ref '%s': %s";
3728
3729                 ref_transaction_free(t);
3730                 switch (onerr) {
3731                 case UPDATE_REFS_MSG_ON_ERR:
3732                         error(str, refname, err.buf);
3733                         break;
3734                 case UPDATE_REFS_DIE_ON_ERR:
3735                         die(str, refname, err.buf);
3736                         break;
3737                 case UPDATE_REFS_QUIET_ON_ERR:
3738                         break;
3739                 }
3740                 strbuf_release(&err);
3741                 return 1;
3742         }
3743         strbuf_release(&err);
3744         ref_transaction_free(t);
3745         return 0;
3746 }
3747
3748 static int ref_update_compare(const void *r1, const void *r2)
3749 {
3750         const struct ref_update * const *u1 = r1;
3751         const struct ref_update * const *u2 = r2;
3752         return strcmp((*u1)->refname, (*u2)->refname);
3753 }
3754
3755 static int ref_update_reject_duplicates(struct ref_update **updates, int n,
3756                                         struct strbuf *err)
3757 {
3758         int i;
3759
3760         assert(err);
3761
3762         for (i = 1; i < n; i++)
3763                 if (!strcmp(updates[i - 1]->refname, updates[i]->refname)) {
3764                         strbuf_addf(err,
3765                                     "Multiple updates for ref '%s' not allowed.",
3766                                     updates[i]->refname);
3767                         return 1;
3768                 }
3769         return 0;
3770 }
3771
3772 int ref_transaction_commit(struct ref_transaction *transaction,
3773                            struct strbuf *err)
3774 {
3775         int ret = 0, i;
3776         int n = transaction->nr;
3777         struct ref_update **updates = transaction->updates;
3778         struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;
3779         struct string_list_item *ref_to_delete;
3780
3781         assert(err);
3782
3783         if (transaction->state != REF_TRANSACTION_OPEN)
3784                 die("BUG: commit called for transaction that is not open");
3785
3786         if (!n) {
3787                 transaction->state = REF_TRANSACTION_CLOSED;
3788                 return 0;
3789         }
3790
3791         /* Copy, sort, and reject duplicate refs */
3792         qsort(updates, n, sizeof(*updates), ref_update_compare);
3793         if (ref_update_reject_duplicates(updates, n, err)) {
3794                 ret = TRANSACTION_GENERIC_ERROR;
3795                 goto cleanup;
3796         }
3797
3798         /* Acquire all locks while verifying old values */
3799         for (i = 0; i < n; i++) {
3800                 struct ref_update *update = updates[i];
3801                 int flags = update->flags;
3802
3803                 if (is_null_sha1(update->new_sha1))
3804                         flags |= REF_DELETING;
3805                 update->lock = lock_ref_sha1_basic(update->refname,
3806                                                    (update->have_old ?
3807                                                     update->old_sha1 :
3808                                                     NULL),
3809                                                    NULL,
3810                                                    flags,
3811                                                    &update->type);
3812                 if (!update->lock) {
3813                         ret = (errno == ENOTDIR)
3814                                 ? TRANSACTION_NAME_CONFLICT
3815                                 : TRANSACTION_GENERIC_ERROR;
3816                         strbuf_addf(err, "Cannot lock the ref '%s'.",
3817                                     update->refname);
3818                         goto cleanup;
3819                 }
3820         }
3821
3822         /* Perform updates first so live commits remain referenced */
3823         for (i = 0; i < n; i++) {
3824                 struct ref_update *update = updates[i];
3825
3826                 if (!is_null_sha1(update->new_sha1)) {
3827                         if (write_ref_sha1(update->lock, update->new_sha1,
3828                                            update->msg)) {
3829                                 update->lock = NULL; /* freed by write_ref_sha1 */
3830                                 strbuf_addf(err, "Cannot update the ref '%s'.",
3831                                             update->refname);
3832                                 ret = TRANSACTION_GENERIC_ERROR;
3833                                 goto cleanup;
3834                         }
3835                         update->lock = NULL; /* freed by write_ref_sha1 */
3836                 }
3837         }
3838
3839         /* Perform deletes now that updates are safely completed */
3840         for (i = 0; i < n; i++) {
3841                 struct ref_update *update = updates[i];
3842
3843                 if (update->lock) {
3844                         if (delete_ref_loose(update->lock, update->type, err)) {
3845                                 ret = TRANSACTION_GENERIC_ERROR;
3846                                 goto cleanup;
3847                         }
3848
3849                         if (!(update->flags & REF_ISPRUNING))
3850                                 string_list_append(&refs_to_delete,
3851                                                    update->lock->ref_name);
3852                 }
3853         }
3854
3855         if (repack_without_refs(&refs_to_delete, err)) {
3856                 ret = TRANSACTION_GENERIC_ERROR;
3857                 goto cleanup;
3858         }
3859         for_each_string_list_item(ref_to_delete, &refs_to_delete)
3860                 unlink_or_warn(git_path("logs/%s", ref_to_delete->string));
3861         clear_loose_ref_cache(&ref_cache);
3862
3863 cleanup:
3864         transaction->state = REF_TRANSACTION_CLOSED;
3865
3866         for (i = 0; i < n; i++)
3867                 if (updates[i]->lock)
3868                         unlock_ref(updates[i]->lock);
3869         string_list_clear(&refs_to_delete, 0);
3870         return ret;
3871 }
3872
3873 char *shorten_unambiguous_ref(const char *refname, int strict)
3874 {
3875         int i;
3876         static char **scanf_fmts;
3877         static int nr_rules;
3878         char *short_name;
3879
3880         if (!nr_rules) {
3881                 /*
3882                  * Pre-generate scanf formats from ref_rev_parse_rules[].
3883                  * Generate a format suitable for scanf from a
3884                  * ref_rev_parse_rules rule by interpolating "%s" at the
3885                  * location of the "%.*s".
3886                  */
3887                 size_t total_len = 0;
3888                 size_t offset = 0;
3889
3890                 /* the rule list is NULL terminated, count them first */
3891                 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
3892                         /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
3893                         total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
3894
3895                 scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
3896
3897                 offset = 0;
3898                 for (i = 0; i < nr_rules; i++) {
3899                         assert(offset < total_len);
3900                         scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
3901                         offset += snprintf(scanf_fmts[i], total_len - offset,
3902                                            ref_rev_parse_rules[i], 2, "%s") + 1;
3903                 }
3904         }
3905
3906         /* bail out if there are no rules */
3907         if (!nr_rules)
3908                 return xstrdup(refname);
3909
3910         /* buffer for scanf result, at most refname must fit */
3911         short_name = xstrdup(refname);
3912
3913         /* skip first rule, it will always match */
3914         for (i = nr_rules - 1; i > 0 ; --i) {
3915                 int j;
3916                 int rules_to_fail = i;
3917                 int short_name_len;
3918
3919                 if (1 != sscanf(refname, scanf_fmts[i], short_name))
3920                         continue;
3921
3922                 short_name_len = strlen(short_name);
3923
3924                 /*
3925                  * in strict mode, all (except the matched one) rules
3926                  * must fail to resolve to a valid non-ambiguous ref
3927                  */
3928                 if (strict)
3929                         rules_to_fail = nr_rules;
3930
3931                 /*
3932                  * check if the short name resolves to a valid ref,
3933                  * but use only rules prior to the matched one
3934                  */
3935                 for (j = 0; j < rules_to_fail; j++) {
3936                         const char *rule = ref_rev_parse_rules[j];
3937                         char refname[PATH_MAX];
3938
3939                         /* skip matched rule */
3940                         if (i == j)
3941                                 continue;
3942
3943                         /*
3944                          * the short name is ambiguous, if it resolves
3945                          * (with this previous rule) to a valid ref
3946                          * read_ref() returns 0 on success
3947                          */
3948                         mksnpath(refname, sizeof(refname),
3949                                  rule, short_name_len, short_name);
3950                         if (ref_exists(refname))
3951                                 break;
3952                 }
3953
3954                 /*
3955                  * short name is non-ambiguous if all previous rules
3956                  * haven't resolved to a valid ref
3957                  */
3958                 if (j == rules_to_fail)
3959                         return short_name;
3960         }
3961
3962         free(short_name);
3963         return xstrdup(refname);
3964 }
3965
3966 static struct string_list *hide_refs;
3967
3968 int parse_hide_refs_config(const char *var, const char *value, const char *section)
3969 {
3970         if (!strcmp("transfer.hiderefs", var) ||
3971             /* NEEDSWORK: use parse_config_key() once both are merged */
3972             (starts_with(var, section) && var[strlen(section)] == '.' &&
3973              !strcmp(var + strlen(section), ".hiderefs"))) {
3974                 char *ref;
3975                 int len;
3976
3977                 if (!value)
3978                         return config_error_nonbool(var);
3979                 ref = xstrdup(value);
3980                 len = strlen(ref);
3981                 while (len && ref[len - 1] == '/')
3982                         ref[--len] = '\0';
3983                 if (!hide_refs) {
3984                         hide_refs = xcalloc(1, sizeof(*hide_refs));
3985                         hide_refs->strdup_strings = 1;
3986                 }
3987                 string_list_append(hide_refs, ref);
3988         }
3989         return 0;
3990 }
3991
3992 int ref_is_hidden(const char *refname)
3993 {
3994         struct string_list_item *item;
3995
3996         if (!hide_refs)
3997                 return 0;
3998         for_each_string_list_item(item, hide_refs) {
3999                 int len;
4000                 if (!starts_with(refname, item->string))
4001                         continue;
4002                 len = strlen(item->string);
4003                 if (!refname[len] || refname[len] == '/')
4004                         return 1;
4005         }
4006         return 0;
4007 }