lock_packed_refs(): allow retries when acquiring the packed-refs lock
[git.git] / refs.c
blob8a4a9dd99c558355f50017021c9f514b9099a436
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"
9 struct ref_lock {
10 char *ref_name;
11 char *orig_ref_name;
12 struct lock_file *lk;
13 unsigned char old_sha1[20];
14 int lock_fd;
18 * How to handle various characters in refnames:
19 * 0: An acceptable character for refs
20 * 1: End-of-component
21 * 2: ., look for a preceding . to reject .. in refs
22 * 3: {, look for a preceding @ to reject @{ in refs
23 * 4: A bad character: ASCII control characters, "~", "^", ":" or SP
25 static unsigned char refname_disposition[256] = {
26 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
27 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
28 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 1,
29 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
30 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
31 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
32 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
33 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
37 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken
38 * refs (i.e., because the reference is about to be deleted anyway).
40 #define REF_DELETING 0x02
43 * Used as a flag in ref_update::flags when a loose ref is being
44 * pruned.
46 #define REF_ISPRUNING 0x04
49 * Used as a flag in ref_update::flags when the reference should be
50 * updated to new_sha1.
52 #define REF_HAVE_NEW 0x08
55 * Used as a flag in ref_update::flags when old_sha1 should be
56 * checked.
58 #define REF_HAVE_OLD 0x10
61 * Try to read one refname component from the front of refname.
62 * Return the length of the component found, or -1 if the component is
63 * not legal. It is legal if it is something reasonable to have under
64 * ".git/refs/"; We do not like it if:
66 * - any path component of it begins with ".", or
67 * - it has double dots "..", or
68 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
69 * - it ends with a "/".
70 * - it ends with ".lock"
71 * - it contains a "\" (backslash)
73 static int check_refname_component(const char *refname, int flags)
75 const char *cp;
76 char last = '\0';
78 for (cp = refname; ; cp++) {
79 int ch = *cp & 255;
80 unsigned char disp = refname_disposition[ch];
81 switch (disp) {
82 case 1:
83 goto out;
84 case 2:
85 if (last == '.')
86 return -1; /* Refname contains "..". */
87 break;
88 case 3:
89 if (last == '@')
90 return -1; /* Refname contains "@{". */
91 break;
92 case 4:
93 return -1;
95 last = ch;
97 out:
98 if (cp == refname)
99 return 0; /* Component has zero length. */
100 if (refname[0] == '.')
101 return -1; /* Component starts with '.'. */
102 if (cp - refname >= LOCK_SUFFIX_LEN &&
103 !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
104 return -1; /* Refname ends with ".lock". */
105 return cp - refname;
108 int check_refname_format(const char *refname, int flags)
110 int component_len, component_count = 0;
112 if (!strcmp(refname, "@"))
113 /* Refname is a single character '@'. */
114 return -1;
116 while (1) {
117 /* We are at the start of a path component. */
118 component_len = check_refname_component(refname, flags);
119 if (component_len <= 0) {
120 if ((flags & REFNAME_REFSPEC_PATTERN) &&
121 refname[0] == '*' &&
122 (refname[1] == '\0' || refname[1] == '/')) {
123 /* Accept one wildcard as a full refname component. */
124 flags &= ~REFNAME_REFSPEC_PATTERN;
125 component_len = 1;
126 } else {
127 return -1;
130 component_count++;
131 if (refname[component_len] == '\0')
132 break;
133 /* Skip to next component. */
134 refname += component_len + 1;
137 if (refname[component_len - 1] == '.')
138 return -1; /* Refname ends with '.'. */
139 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
140 return -1; /* Refname has only one component. */
141 return 0;
144 struct ref_entry;
147 * Information used (along with the information in ref_entry) to
148 * describe a single cached reference. This data structure only
149 * occurs embedded in a union in struct ref_entry, and only when
150 * (ref_entry->flag & REF_DIR) is zero.
152 struct ref_value {
154 * The name of the object to which this reference resolves
155 * (which may be a tag object). If REF_ISBROKEN, this is
156 * null. If REF_ISSYMREF, then this is the name of the object
157 * referred to by the last reference in the symlink chain.
159 unsigned char sha1[20];
162 * If REF_KNOWS_PEELED, then this field holds the peeled value
163 * of this reference, or null if the reference is known not to
164 * be peelable. See the documentation for peel_ref() for an
165 * exact definition of "peelable".
167 unsigned char peeled[20];
170 struct ref_cache;
173 * Information used (along with the information in ref_entry) to
174 * describe a level in the hierarchy of references. This data
175 * structure only occurs embedded in a union in struct ref_entry, and
176 * only when (ref_entry.flag & REF_DIR) is set. In that case,
177 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references
178 * in the directory have already been read:
180 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose
181 * or packed references, already read.
183 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose
184 * references that hasn't been read yet (nor has any of its
185 * subdirectories).
187 * Entries within a directory are stored within a growable array of
188 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i <
189 * sorted are sorted by their component name in strcmp() order and the
190 * remaining entries are unsorted.
192 * Loose references are read lazily, one directory at a time. When a
193 * directory of loose references is read, then all of the references
194 * in that directory are stored, and REF_INCOMPLETE stubs are created
195 * for any subdirectories, but the subdirectories themselves are not
196 * read. The reading is triggered by get_ref_dir().
198 struct ref_dir {
199 int nr, alloc;
202 * Entries with index 0 <= i < sorted are sorted by name. New
203 * entries are appended to the list unsorted, and are sorted
204 * only when required; thus we avoid the need to sort the list
205 * after the addition of every reference.
207 int sorted;
209 /* A pointer to the ref_cache that contains this ref_dir. */
210 struct ref_cache *ref_cache;
212 struct ref_entry **entries;
216 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01,
217 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are
218 * public values; see refs.h.
222 * The field ref_entry->u.value.peeled of this value entry contains
223 * the correct peeled value for the reference, which might be
224 * null_sha1 if the reference is not a tag or if it is broken.
226 #define REF_KNOWS_PEELED 0x10
228 /* ref_entry represents a directory of references */
229 #define REF_DIR 0x20
232 * Entry has not yet been read from disk (used only for REF_DIR
233 * entries representing loose references)
235 #define REF_INCOMPLETE 0x40
238 * A ref_entry represents either a reference or a "subdirectory" of
239 * references.
241 * Each directory in the reference namespace is represented by a
242 * ref_entry with (flags & REF_DIR) set and containing a subdir member
243 * that holds the entries in that directory that have been read so
244 * far. If (flags & REF_INCOMPLETE) is set, then the directory and
245 * its subdirectories haven't been read yet. REF_INCOMPLETE is only
246 * used for loose reference directories.
248 * References are represented by a ref_entry with (flags & REF_DIR)
249 * unset and a value member that describes the reference's value. The
250 * flag member is at the ref_entry level, but it is also needed to
251 * interpret the contents of the value field (in other words, a
252 * ref_value object is not very much use without the enclosing
253 * ref_entry).
255 * Reference names cannot end with slash and directories' names are
256 * always stored with a trailing slash (except for the top-level
257 * directory, which is always denoted by ""). This has two nice
258 * consequences: (1) when the entries in each subdir are sorted
259 * lexicographically by name (as they usually are), the references in
260 * a whole tree can be generated in lexicographic order by traversing
261 * the tree in left-to-right, depth-first order; (2) the names of
262 * references and subdirectories cannot conflict, and therefore the
263 * presence of an empty subdirectory does not block the creation of a
264 * similarly-named reference. (The fact that reference names with the
265 * same leading components can conflict *with each other* is a
266 * separate issue that is regulated by is_refname_available().)
268 * Please note that the name field contains the fully-qualified
269 * reference (or subdirectory) name. Space could be saved by only
270 * storing the relative names. But that would require the full names
271 * to be generated on the fly when iterating in do_for_each_ref(), and
272 * would break callback functions, who have always been able to assume
273 * that the name strings that they are passed will not be freed during
274 * the iteration.
276 struct ref_entry {
277 unsigned char flag; /* ISSYMREF? ISPACKED? */
278 union {
279 struct ref_value value; /* if not (flags&REF_DIR) */
280 struct ref_dir subdir; /* if (flags&REF_DIR) */
281 } u;
283 * The full name of the reference (e.g., "refs/heads/master")
284 * or the full name of the directory with a trailing slash
285 * (e.g., "refs/heads/"):
287 char name[FLEX_ARRAY];
290 static void read_loose_refs(const char *dirname, struct ref_dir *dir);
292 static struct ref_dir *get_ref_dir(struct ref_entry *entry)
294 struct ref_dir *dir;
295 assert(entry->flag & REF_DIR);
296 dir = &entry->u.subdir;
297 if (entry->flag & REF_INCOMPLETE) {
298 read_loose_refs(entry->name, dir);
299 entry->flag &= ~REF_INCOMPLETE;
301 return dir;
305 * Check if a refname is safe.
306 * For refs that start with "refs/" we consider it safe as long they do
307 * not try to resolve to outside of refs/.
309 * For all other refs we only consider them safe iff they only contain
310 * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like
311 * "config").
313 static int refname_is_safe(const char *refname)
315 if (starts_with(refname, "refs/")) {
316 char *buf;
317 int result;
319 buf = xmalloc(strlen(refname) + 1);
321 * Does the refname try to escape refs/?
322 * For example: refs/foo/../bar is safe but refs/foo/../../bar
323 * is not.
325 result = !normalize_path_copy(buf, refname + strlen("refs/"));
326 free(buf);
327 return result;
329 while (*refname) {
330 if (!isupper(*refname) && *refname != '_')
331 return 0;
332 refname++;
334 return 1;
337 static struct ref_entry *create_ref_entry(const char *refname,
338 const unsigned char *sha1, int flag,
339 int check_name)
341 int len;
342 struct ref_entry *ref;
344 if (check_name &&
345 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
346 die("Reference has invalid format: '%s'", refname);
347 len = strlen(refname) + 1;
348 ref = xmalloc(sizeof(struct ref_entry) + len);
349 hashcpy(ref->u.value.sha1, sha1);
350 hashclr(ref->u.value.peeled);
351 memcpy(ref->name, refname, len);
352 ref->flag = flag;
353 return ref;
356 static void clear_ref_dir(struct ref_dir *dir);
358 static void free_ref_entry(struct ref_entry *entry)
360 if (entry->flag & REF_DIR) {
362 * Do not use get_ref_dir() here, as that might
363 * trigger the reading of loose refs.
365 clear_ref_dir(&entry->u.subdir);
367 free(entry);
371 * Add a ref_entry to the end of dir (unsorted). Entry is always
372 * stored directly in dir; no recursion into subdirectories is
373 * done.
375 static void add_entry_to_dir(struct ref_dir *dir, struct ref_entry *entry)
377 ALLOC_GROW(dir->entries, dir->nr + 1, dir->alloc);
378 dir->entries[dir->nr++] = entry;
379 /* optimize for the case that entries are added in order */
380 if (dir->nr == 1 ||
381 (dir->nr == dir->sorted + 1 &&
382 strcmp(dir->entries[dir->nr - 2]->name,
383 dir->entries[dir->nr - 1]->name) < 0))
384 dir->sorted = dir->nr;
388 * Clear and free all entries in dir, recursively.
390 static void clear_ref_dir(struct ref_dir *dir)
392 int i;
393 for (i = 0; i < dir->nr; i++)
394 free_ref_entry(dir->entries[i]);
395 free(dir->entries);
396 dir->sorted = dir->nr = dir->alloc = 0;
397 dir->entries = NULL;
401 * Create a struct ref_entry object for the specified dirname.
402 * dirname is the name of the directory with a trailing slash (e.g.,
403 * "refs/heads/") or "" for the top-level directory.
405 static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache,
406 const char *dirname, size_t len,
407 int incomplete)
409 struct ref_entry *direntry;
410 direntry = xcalloc(1, sizeof(struct ref_entry) + len + 1);
411 memcpy(direntry->name, dirname, len);
412 direntry->name[len] = '\0';
413 direntry->u.subdir.ref_cache = ref_cache;
414 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE : 0);
415 return direntry;
418 static int ref_entry_cmp(const void *a, const void *b)
420 struct ref_entry *one = *(struct ref_entry **)a;
421 struct ref_entry *two = *(struct ref_entry **)b;
422 return strcmp(one->name, two->name);
425 static void sort_ref_dir(struct ref_dir *dir);
427 struct string_slice {
428 size_t len;
429 const char *str;
432 static int ref_entry_cmp_sslice(const void *key_, const void *ent_)
434 const struct string_slice *key = key_;
435 const struct ref_entry *ent = *(const struct ref_entry * const *)ent_;
436 int cmp = strncmp(key->str, ent->name, key->len);
437 if (cmp)
438 return cmp;
439 return '\0' - (unsigned char)ent->name[key->len];
443 * Return the index of the entry with the given refname from the
444 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if
445 * no such entry is found. dir must already be complete.
447 static int search_ref_dir(struct ref_dir *dir, const char *refname, size_t len)
449 struct ref_entry **r;
450 struct string_slice key;
452 if (refname == NULL || !dir->nr)
453 return -1;
455 sort_ref_dir(dir);
456 key.len = len;
457 key.str = refname;
458 r = bsearch(&key, dir->entries, dir->nr, sizeof(*dir->entries),
459 ref_entry_cmp_sslice);
461 if (r == NULL)
462 return -1;
464 return r - dir->entries;
468 * Search for a directory entry directly within dir (without
469 * recursing). Sort dir if necessary. subdirname must be a directory
470 * name (i.e., end in '/'). If mkdir is set, then create the
471 * directory if it is missing; otherwise, return NULL if the desired
472 * directory cannot be found. dir must already be complete.
474 static struct ref_dir *search_for_subdir(struct ref_dir *dir,
475 const char *subdirname, size_t len,
476 int mkdir)
478 int entry_index = search_ref_dir(dir, subdirname, len);
479 struct ref_entry *entry;
480 if (entry_index == -1) {
481 if (!mkdir)
482 return NULL;
484 * Since dir is complete, the absence of a subdir
485 * means that the subdir really doesn't exist;
486 * therefore, create an empty record for it but mark
487 * the record complete.
489 entry = create_dir_entry(dir->ref_cache, subdirname, len, 0);
490 add_entry_to_dir(dir, entry);
491 } else {
492 entry = dir->entries[entry_index];
494 return get_ref_dir(entry);
498 * If refname is a reference name, find the ref_dir within the dir
499 * tree that should hold refname. If refname is a directory name
500 * (i.e., ends in '/'), then return that ref_dir itself. dir must
501 * represent the top-level directory and must already be complete.
502 * Sort ref_dirs and recurse into subdirectories as necessary. If
503 * mkdir is set, then create any missing directories; otherwise,
504 * return NULL if the desired directory cannot be found.
506 static struct ref_dir *find_containing_dir(struct ref_dir *dir,
507 const char *refname, int mkdir)
509 const char *slash;
510 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
511 size_t dirnamelen = slash - refname + 1;
512 struct ref_dir *subdir;
513 subdir = search_for_subdir(dir, refname, dirnamelen, mkdir);
514 if (!subdir) {
515 dir = NULL;
516 break;
518 dir = subdir;
521 return dir;
525 * Find the value entry with the given name in dir, sorting ref_dirs
526 * and recursing into subdirectories as necessary. If the name is not
527 * found or it corresponds to a directory entry, return NULL.
529 static struct ref_entry *find_ref(struct ref_dir *dir, const char *refname)
531 int entry_index;
532 struct ref_entry *entry;
533 dir = find_containing_dir(dir, refname, 0);
534 if (!dir)
535 return NULL;
536 entry_index = search_ref_dir(dir, refname, strlen(refname));
537 if (entry_index == -1)
538 return NULL;
539 entry = dir->entries[entry_index];
540 return (entry->flag & REF_DIR) ? NULL : entry;
544 * Remove the entry with the given name from dir, recursing into
545 * subdirectories as necessary. If refname is the name of a directory
546 * (i.e., ends with '/'), then remove the directory and its contents.
547 * If the removal was successful, return the number of entries
548 * remaining in the directory entry that contained the deleted entry.
549 * If the name was not found, return -1. Please note that this
550 * function only deletes the entry from the cache; it does not delete
551 * it from the filesystem or ensure that other cache entries (which
552 * might be symbolic references to the removed entry) are updated.
553 * Nor does it remove any containing dir entries that might be made
554 * empty by the removal. dir must represent the top-level directory
555 * and must already be complete.
557 static int remove_entry(struct ref_dir *dir, const char *refname)
559 int refname_len = strlen(refname);
560 int entry_index;
561 struct ref_entry *entry;
562 int is_dir = refname[refname_len - 1] == '/';
563 if (is_dir) {
565 * refname represents a reference directory. Remove
566 * the trailing slash; otherwise we will get the
567 * directory *representing* refname rather than the
568 * one *containing* it.
570 char *dirname = xmemdupz(refname, refname_len - 1);
571 dir = find_containing_dir(dir, dirname, 0);
572 free(dirname);
573 } else {
574 dir = find_containing_dir(dir, refname, 0);
576 if (!dir)
577 return -1;
578 entry_index = search_ref_dir(dir, refname, refname_len);
579 if (entry_index == -1)
580 return -1;
581 entry = dir->entries[entry_index];
583 memmove(&dir->entries[entry_index],
584 &dir->entries[entry_index + 1],
585 (dir->nr - entry_index - 1) * sizeof(*dir->entries)
587 dir->nr--;
588 if (dir->sorted > entry_index)
589 dir->sorted--;
590 free_ref_entry(entry);
591 return dir->nr;
595 * Add a ref_entry to the ref_dir (unsorted), recursing into
596 * subdirectories as necessary. dir must represent the top-level
597 * directory. Return 0 on success.
599 static int add_ref(struct ref_dir *dir, struct ref_entry *ref)
601 dir = find_containing_dir(dir, ref->name, 1);
602 if (!dir)
603 return -1;
604 add_entry_to_dir(dir, ref);
605 return 0;
609 * Emit a warning and return true iff ref1 and ref2 have the same name
610 * and the same sha1. Die if they have the same name but different
611 * sha1s.
613 static int is_dup_ref(const struct ref_entry *ref1, const struct ref_entry *ref2)
615 if (strcmp(ref1->name, ref2->name))
616 return 0;
618 /* Duplicate name; make sure that they don't conflict: */
620 if ((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR))
621 /* This is impossible by construction */
622 die("Reference directory conflict: %s", ref1->name);
624 if (hashcmp(ref1->u.value.sha1, ref2->u.value.sha1))
625 die("Duplicated ref, and SHA1s don't match: %s", ref1->name);
627 warning("Duplicated ref: %s", ref1->name);
628 return 1;
632 * Sort the entries in dir non-recursively (if they are not already
633 * sorted) and remove any duplicate entries.
635 static void sort_ref_dir(struct ref_dir *dir)
637 int i, j;
638 struct ref_entry *last = NULL;
641 * This check also prevents passing a zero-length array to qsort(),
642 * which is a problem on some platforms.
644 if (dir->sorted == dir->nr)
645 return;
647 qsort(dir->entries, dir->nr, sizeof(*dir->entries), ref_entry_cmp);
649 /* Remove any duplicates: */
650 for (i = 0, j = 0; j < dir->nr; j++) {
651 struct ref_entry *entry = dir->entries[j];
652 if (last && is_dup_ref(last, entry))
653 free_ref_entry(entry);
654 else
655 last = dir->entries[i++] = entry;
657 dir->sorted = dir->nr = i;
660 /* Include broken references in a do_for_each_ref*() iteration: */
661 #define DO_FOR_EACH_INCLUDE_BROKEN 0x01
664 * Return true iff the reference described by entry can be resolved to
665 * an object in the database. Emit a warning if the referred-to
666 * object does not exist.
668 static int ref_resolves_to_object(struct ref_entry *entry)
670 if (entry->flag & REF_ISBROKEN)
671 return 0;
672 if (!has_sha1_file(entry->u.value.sha1)) {
673 error("%s does not point to a valid object!", entry->name);
674 return 0;
676 return 1;
680 * current_ref is a performance hack: when iterating over references
681 * using the for_each_ref*() functions, current_ref is set to the
682 * current reference's entry before calling the callback function. If
683 * the callback function calls peel_ref(), then peel_ref() first
684 * checks whether the reference to be peeled is the current reference
685 * (it usually is) and if so, returns that reference's peeled version
686 * if it is available. This avoids a refname lookup in a common case.
688 static struct ref_entry *current_ref;
690 typedef int each_ref_entry_fn(struct ref_entry *entry, void *cb_data);
692 struct ref_entry_cb {
693 const char *base;
694 int trim;
695 int flags;
696 each_ref_fn *fn;
697 void *cb_data;
701 * Handle one reference in a do_for_each_ref*()-style iteration,
702 * calling an each_ref_fn for each entry.
704 static int do_one_ref(struct ref_entry *entry, void *cb_data)
706 struct ref_entry_cb *data = cb_data;
707 struct ref_entry *old_current_ref;
708 int retval;
710 if (!starts_with(entry->name, data->base))
711 return 0;
713 if (!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&
714 !ref_resolves_to_object(entry))
715 return 0;
717 /* Store the old value, in case this is a recursive call: */
718 old_current_ref = current_ref;
719 current_ref = entry;
720 retval = data->fn(entry->name + data->trim, entry->u.value.sha1,
721 entry->flag, data->cb_data);
722 current_ref = old_current_ref;
723 return retval;
727 * Call fn for each reference in dir that has index in the range
728 * offset <= index < dir->nr. Recurse into subdirectories that are in
729 * that index range, sorting them before iterating. This function
730 * does not sort dir itself; it should be sorted beforehand. fn is
731 * called for all references, including broken ones.
733 static int do_for_each_entry_in_dir(struct ref_dir *dir, int offset,
734 each_ref_entry_fn fn, void *cb_data)
736 int i;
737 assert(dir->sorted == dir->nr);
738 for (i = offset; i < dir->nr; i++) {
739 struct ref_entry *entry = dir->entries[i];
740 int retval;
741 if (entry->flag & REF_DIR) {
742 struct ref_dir *subdir = get_ref_dir(entry);
743 sort_ref_dir(subdir);
744 retval = do_for_each_entry_in_dir(subdir, 0, fn, cb_data);
745 } else {
746 retval = fn(entry, cb_data);
748 if (retval)
749 return retval;
751 return 0;
755 * Call fn for each reference in the union of dir1 and dir2, in order
756 * by refname. Recurse into subdirectories. If a value entry appears
757 * in both dir1 and dir2, then only process the version that is in
758 * dir2. The input dirs must already be sorted, but subdirs will be
759 * sorted as needed. fn is called for all references, including
760 * broken ones.
762 static int do_for_each_entry_in_dirs(struct ref_dir *dir1,
763 struct ref_dir *dir2,
764 each_ref_entry_fn fn, void *cb_data)
766 int retval;
767 int i1 = 0, i2 = 0;
769 assert(dir1->sorted == dir1->nr);
770 assert(dir2->sorted == dir2->nr);
771 while (1) {
772 struct ref_entry *e1, *e2;
773 int cmp;
774 if (i1 == dir1->nr) {
775 return do_for_each_entry_in_dir(dir2, i2, fn, cb_data);
777 if (i2 == dir2->nr) {
778 return do_for_each_entry_in_dir(dir1, i1, fn, cb_data);
780 e1 = dir1->entries[i1];
781 e2 = dir2->entries[i2];
782 cmp = strcmp(e1->name, e2->name);
783 if (cmp == 0) {
784 if ((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) {
785 /* Both are directories; descend them in parallel. */
786 struct ref_dir *subdir1 = get_ref_dir(e1);
787 struct ref_dir *subdir2 = get_ref_dir(e2);
788 sort_ref_dir(subdir1);
789 sort_ref_dir(subdir2);
790 retval = do_for_each_entry_in_dirs(
791 subdir1, subdir2, fn, cb_data);
792 i1++;
793 i2++;
794 } else if (!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) {
795 /* Both are references; ignore the one from dir1. */
796 retval = fn(e2, cb_data);
797 i1++;
798 i2++;
799 } else {
800 die("conflict between reference and directory: %s",
801 e1->name);
803 } else {
804 struct ref_entry *e;
805 if (cmp < 0) {
806 e = e1;
807 i1++;
808 } else {
809 e = e2;
810 i2++;
812 if (e->flag & REF_DIR) {
813 struct ref_dir *subdir = get_ref_dir(e);
814 sort_ref_dir(subdir);
815 retval = do_for_each_entry_in_dir(
816 subdir, 0, fn, cb_data);
817 } else {
818 retval = fn(e, cb_data);
821 if (retval)
822 return retval;
827 * Load all of the refs from the dir into our in-memory cache. The hard work
828 * of loading loose refs is done by get_ref_dir(), so we just need to recurse
829 * through all of the sub-directories. We do not even need to care about
830 * sorting, as traversal order does not matter to us.
832 static void prime_ref_dir(struct ref_dir *dir)
834 int i;
835 for (i = 0; i < dir->nr; i++) {
836 struct ref_entry *entry = dir->entries[i];
837 if (entry->flag & REF_DIR)
838 prime_ref_dir(get_ref_dir(entry));
842 static int entry_matches(struct ref_entry *entry, const struct string_list *list)
844 return list && string_list_has_string(list, entry->name);
847 struct nonmatching_ref_data {
848 const struct string_list *skip;
849 struct ref_entry *found;
852 static int nonmatching_ref_fn(struct ref_entry *entry, void *vdata)
854 struct nonmatching_ref_data *data = vdata;
856 if (entry_matches(entry, data->skip))
857 return 0;
859 data->found = entry;
860 return 1;
863 static void report_refname_conflict(struct ref_entry *entry,
864 const char *refname)
866 error("'%s' exists; cannot create '%s'", entry->name, refname);
870 * Return true iff a reference named refname could be created without
871 * conflicting with the name of an existing reference in dir. If
872 * skip is non-NULL, ignore potential conflicts with refs in skip
873 * (e.g., because they are scheduled for deletion in the same
874 * operation).
876 * Two reference names conflict if one of them exactly matches the
877 * leading components of the other; e.g., "foo/bar" conflicts with
878 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or
879 * "foo/barbados".
881 * skip must be sorted.
883 static int is_refname_available(const char *refname,
884 const struct string_list *skip,
885 struct ref_dir *dir)
887 const char *slash;
888 size_t len;
889 int pos;
890 char *dirname;
892 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
894 * We are still at a leading dir of the refname; we are
895 * looking for a conflict with a leaf entry.
897 * If we find one, we still must make sure it is
898 * not in "skip".
900 pos = search_ref_dir(dir, refname, slash - refname);
901 if (pos >= 0) {
902 struct ref_entry *entry = dir->entries[pos];
903 if (entry_matches(entry, skip))
904 return 1;
905 report_refname_conflict(entry, refname);
906 return 0;
911 * Otherwise, we can try to continue our search with
912 * the next component; if we come up empty, we know
913 * there is nothing under this whole prefix.
915 pos = search_ref_dir(dir, refname, slash + 1 - refname);
916 if (pos < 0)
917 return 1;
919 dir = get_ref_dir(dir->entries[pos]);
923 * We are at the leaf of our refname; we want to
924 * make sure there are no directories which match it.
926 len = strlen(refname);
927 dirname = xmallocz(len + 1);
928 sprintf(dirname, "%s/", refname);
929 pos = search_ref_dir(dir, dirname, len + 1);
930 free(dirname);
932 if (pos >= 0) {
934 * We found a directory named "refname". It is a
935 * problem iff it contains any ref that is not
936 * in "skip".
938 struct ref_entry *entry = dir->entries[pos];
939 struct ref_dir *dir = get_ref_dir(entry);
940 struct nonmatching_ref_data data;
942 data.skip = skip;
943 sort_ref_dir(dir);
944 if (!do_for_each_entry_in_dir(dir, 0, nonmatching_ref_fn, &data))
945 return 1;
947 report_refname_conflict(data.found, refname);
948 return 0;
952 * There is no point in searching for another leaf
953 * node which matches it; such an entry would be the
954 * ref we are looking for, not a conflict.
956 return 1;
959 struct packed_ref_cache {
960 struct ref_entry *root;
963 * Count of references to the data structure in this instance,
964 * including the pointer from ref_cache::packed if any. The
965 * data will not be freed as long as the reference count is
966 * nonzero.
968 unsigned int referrers;
971 * Iff the packed-refs file associated with this instance is
972 * currently locked for writing, this points at the associated
973 * lock (which is owned by somebody else). The referrer count
974 * is also incremented when the file is locked and decremented
975 * when it is unlocked.
977 struct lock_file *lock;
979 /* The metadata from when this packed-refs cache was read */
980 struct stat_validity validity;
984 * Future: need to be in "struct repository"
985 * when doing a full libification.
987 static struct ref_cache {
988 struct ref_cache *next;
989 struct ref_entry *loose;
990 struct packed_ref_cache *packed;
992 * The submodule name, or "" for the main repo. We allocate
993 * length 1 rather than FLEX_ARRAY so that the main ref_cache
994 * is initialized correctly.
996 char name[1];
997 } ref_cache, *submodule_ref_caches;
999 /* Lock used for the main packed-refs file: */
1000 static struct lock_file packlock;
1003 * Increment the reference count of *packed_refs.
1005 static void acquire_packed_ref_cache(struct packed_ref_cache *packed_refs)
1007 packed_refs->referrers++;
1011 * Decrease the reference count of *packed_refs. If it goes to zero,
1012 * free *packed_refs and return true; otherwise return false.
1014 static int release_packed_ref_cache(struct packed_ref_cache *packed_refs)
1016 if (!--packed_refs->referrers) {
1017 free_ref_entry(packed_refs->root);
1018 stat_validity_clear(&packed_refs->validity);
1019 free(packed_refs);
1020 return 1;
1021 } else {
1022 return 0;
1026 static void clear_packed_ref_cache(struct ref_cache *refs)
1028 if (refs->packed) {
1029 struct packed_ref_cache *packed_refs = refs->packed;
1031 if (packed_refs->lock)
1032 die("internal error: packed-ref cache cleared while locked");
1033 refs->packed = NULL;
1034 release_packed_ref_cache(packed_refs);
1038 static void clear_loose_ref_cache(struct ref_cache *refs)
1040 if (refs->loose) {
1041 free_ref_entry(refs->loose);
1042 refs->loose = NULL;
1046 static struct ref_cache *create_ref_cache(const char *submodule)
1048 int len;
1049 struct ref_cache *refs;
1050 if (!submodule)
1051 submodule = "";
1052 len = strlen(submodule) + 1;
1053 refs = xcalloc(1, sizeof(struct ref_cache) + len);
1054 memcpy(refs->name, submodule, len);
1055 return refs;
1059 * Return a pointer to a ref_cache for the specified submodule. For
1060 * the main repository, use submodule==NULL. The returned structure
1061 * will be allocated and initialized but not necessarily populated; it
1062 * should not be freed.
1064 static struct ref_cache *get_ref_cache(const char *submodule)
1066 struct ref_cache *refs;
1068 if (!submodule || !*submodule)
1069 return &ref_cache;
1071 for (refs = submodule_ref_caches; refs; refs = refs->next)
1072 if (!strcmp(submodule, refs->name))
1073 return refs;
1075 refs = create_ref_cache(submodule);
1076 refs->next = submodule_ref_caches;
1077 submodule_ref_caches = refs;
1078 return refs;
1081 /* The length of a peeled reference line in packed-refs, including EOL: */
1082 #define PEELED_LINE_LENGTH 42
1085 * The packed-refs header line that we write out. Perhaps other
1086 * traits will be added later. The trailing space is required.
1088 static const char PACKED_REFS_HEADER[] =
1089 "# pack-refs with: peeled fully-peeled \n";
1092 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
1093 * Return a pointer to the refname within the line (null-terminated),
1094 * or NULL if there was a problem.
1096 static const char *parse_ref_line(struct strbuf *line, unsigned char *sha1)
1098 const char *ref;
1101 * 42: the answer to everything.
1103 * In this case, it happens to be the answer to
1104 * 40 (length of sha1 hex representation)
1105 * +1 (space in between hex and name)
1106 * +1 (newline at the end of the line)
1108 if (line->len <= 42)
1109 return NULL;
1111 if (get_sha1_hex(line->buf, sha1) < 0)
1112 return NULL;
1113 if (!isspace(line->buf[40]))
1114 return NULL;
1116 ref = line->buf + 41;
1117 if (isspace(*ref))
1118 return NULL;
1120 if (line->buf[line->len - 1] != '\n')
1121 return NULL;
1122 line->buf[--line->len] = 0;
1124 return ref;
1128 * Read f, which is a packed-refs file, into dir.
1130 * A comment line of the form "# pack-refs with: " may contain zero or
1131 * more traits. We interpret the traits as follows:
1133 * No traits:
1135 * Probably no references are peeled. But if the file contains a
1136 * peeled value for a reference, we will use it.
1138 * peeled:
1140 * References under "refs/tags/", if they *can* be peeled, *are*
1141 * peeled in this file. References outside of "refs/tags/" are
1142 * probably not peeled even if they could have been, but if we find
1143 * a peeled value for such a reference we will use it.
1145 * fully-peeled:
1147 * All references in the file that can be peeled are peeled.
1148 * Inversely (and this is more important), any references in the
1149 * file for which no peeled value is recorded is not peelable. This
1150 * trait should typically be written alongside "peeled" for
1151 * compatibility with older clients, but we do not require it
1152 * (i.e., "peeled" is a no-op if "fully-peeled" is set).
1154 static void read_packed_refs(FILE *f, struct ref_dir *dir)
1156 struct ref_entry *last = NULL;
1157 struct strbuf line = STRBUF_INIT;
1158 enum { PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;
1160 while (strbuf_getwholeline(&line, f, '\n') != EOF) {
1161 unsigned char sha1[20];
1162 const char *refname;
1163 const char *traits;
1165 if (skip_prefix(line.buf, "# pack-refs with:", &traits)) {
1166 if (strstr(traits, " fully-peeled "))
1167 peeled = PEELED_FULLY;
1168 else if (strstr(traits, " peeled "))
1169 peeled = PEELED_TAGS;
1170 /* perhaps other traits later as well */
1171 continue;
1174 refname = parse_ref_line(&line, sha1);
1175 if (refname) {
1176 int flag = REF_ISPACKED;
1178 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1179 if (!refname_is_safe(refname))
1180 die("packed refname is dangerous: %s", refname);
1181 hashclr(sha1);
1182 flag |= REF_BAD_NAME | REF_ISBROKEN;
1184 last = create_ref_entry(refname, sha1, flag, 0);
1185 if (peeled == PEELED_FULLY ||
1186 (peeled == PEELED_TAGS && starts_with(refname, "refs/tags/")))
1187 last->flag |= REF_KNOWS_PEELED;
1188 add_ref(dir, last);
1189 continue;
1191 if (last &&
1192 line.buf[0] == '^' &&
1193 line.len == PEELED_LINE_LENGTH &&
1194 line.buf[PEELED_LINE_LENGTH - 1] == '\n' &&
1195 !get_sha1_hex(line.buf + 1, sha1)) {
1196 hashcpy(last->u.value.peeled, sha1);
1198 * Regardless of what the file header said,
1199 * we definitely know the value of *this*
1200 * reference:
1202 last->flag |= REF_KNOWS_PEELED;
1206 strbuf_release(&line);
1210 * Get the packed_ref_cache for the specified ref_cache, creating it
1211 * if necessary.
1213 static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)
1215 const char *packed_refs_file;
1217 if (*refs->name)
1218 packed_refs_file = git_path_submodule(refs->name, "packed-refs");
1219 else
1220 packed_refs_file = git_path("packed-refs");
1222 if (refs->packed &&
1223 !stat_validity_check(&refs->packed->validity, packed_refs_file))
1224 clear_packed_ref_cache(refs);
1226 if (!refs->packed) {
1227 FILE *f;
1229 refs->packed = xcalloc(1, sizeof(*refs->packed));
1230 acquire_packed_ref_cache(refs->packed);
1231 refs->packed->root = create_dir_entry(refs, "", 0, 0);
1232 f = fopen(packed_refs_file, "r");
1233 if (f) {
1234 stat_validity_update(&refs->packed->validity, fileno(f));
1235 read_packed_refs(f, get_ref_dir(refs->packed->root));
1236 fclose(f);
1239 return refs->packed;
1242 static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)
1244 return get_ref_dir(packed_ref_cache->root);
1247 static struct ref_dir *get_packed_refs(struct ref_cache *refs)
1249 return get_packed_ref_dir(get_packed_ref_cache(refs));
1252 void add_packed_ref(const char *refname, const unsigned char *sha1)
1254 struct packed_ref_cache *packed_ref_cache =
1255 get_packed_ref_cache(&ref_cache);
1257 if (!packed_ref_cache->lock)
1258 die("internal error: packed refs not locked");
1259 add_ref(get_packed_ref_dir(packed_ref_cache),
1260 create_ref_entry(refname, sha1, REF_ISPACKED, 1));
1264 * Read the loose references from the namespace dirname into dir
1265 * (without recursing). dirname must end with '/'. dir must be the
1266 * directory entry corresponding to dirname.
1268 static void read_loose_refs(const char *dirname, struct ref_dir *dir)
1270 struct ref_cache *refs = dir->ref_cache;
1271 DIR *d;
1272 const char *path;
1273 struct dirent *de;
1274 int dirnamelen = strlen(dirname);
1275 struct strbuf refname;
1277 if (*refs->name)
1278 path = git_path_submodule(refs->name, "%s", dirname);
1279 else
1280 path = git_path("%s", dirname);
1282 d = opendir(path);
1283 if (!d)
1284 return;
1286 strbuf_init(&refname, dirnamelen + 257);
1287 strbuf_add(&refname, dirname, dirnamelen);
1289 while ((de = readdir(d)) != NULL) {
1290 unsigned char sha1[20];
1291 struct stat st;
1292 int flag;
1293 const char *refdir;
1295 if (de->d_name[0] == '.')
1296 continue;
1297 if (ends_with(de->d_name, ".lock"))
1298 continue;
1299 strbuf_addstr(&refname, de->d_name);
1300 refdir = *refs->name
1301 ? git_path_submodule(refs->name, "%s", refname.buf)
1302 : git_path("%s", refname.buf);
1303 if (stat(refdir, &st) < 0) {
1304 ; /* silently ignore */
1305 } else if (S_ISDIR(st.st_mode)) {
1306 strbuf_addch(&refname, '/');
1307 add_entry_to_dir(dir,
1308 create_dir_entry(refs, refname.buf,
1309 refname.len, 1));
1310 } else {
1311 if (*refs->name) {
1312 hashclr(sha1);
1313 flag = 0;
1314 if (resolve_gitlink_ref(refs->name, refname.buf, sha1) < 0) {
1315 hashclr(sha1);
1316 flag |= REF_ISBROKEN;
1318 } else if (read_ref_full(refname.buf,
1319 RESOLVE_REF_READING,
1320 sha1, &flag)) {
1321 hashclr(sha1);
1322 flag |= REF_ISBROKEN;
1324 if (check_refname_format(refname.buf,
1325 REFNAME_ALLOW_ONELEVEL)) {
1326 if (!refname_is_safe(refname.buf))
1327 die("loose refname is dangerous: %s", refname.buf);
1328 hashclr(sha1);
1329 flag |= REF_BAD_NAME | REF_ISBROKEN;
1331 add_entry_to_dir(dir,
1332 create_ref_entry(refname.buf, sha1, flag, 0));
1334 strbuf_setlen(&refname, dirnamelen);
1336 strbuf_release(&refname);
1337 closedir(d);
1340 static struct ref_dir *get_loose_refs(struct ref_cache *refs)
1342 if (!refs->loose) {
1344 * Mark the top-level directory complete because we
1345 * are about to read the only subdirectory that can
1346 * hold references:
1348 refs->loose = create_dir_entry(refs, "", 0, 0);
1350 * Create an incomplete entry for "refs/":
1352 add_entry_to_dir(get_ref_dir(refs->loose),
1353 create_dir_entry(refs, "refs/", 5, 1));
1355 return get_ref_dir(refs->loose);
1358 /* We allow "recursive" symbolic refs. Only within reason, though */
1359 #define MAXDEPTH 5
1360 #define MAXREFLEN (1024)
1363 * Called by resolve_gitlink_ref_recursive() after it failed to read
1364 * from the loose refs in ref_cache refs. Find <refname> in the
1365 * packed-refs file for the submodule.
1367 static int resolve_gitlink_packed_ref(struct ref_cache *refs,
1368 const char *refname, unsigned char *sha1)
1370 struct ref_entry *ref;
1371 struct ref_dir *dir = get_packed_refs(refs);
1373 ref = find_ref(dir, refname);
1374 if (ref == NULL)
1375 return -1;
1377 hashcpy(sha1, ref->u.value.sha1);
1378 return 0;
1381 static int resolve_gitlink_ref_recursive(struct ref_cache *refs,
1382 const char *refname, unsigned char *sha1,
1383 int recursion)
1385 int fd, len;
1386 char buffer[128], *p;
1387 const char *path;
1389 if (recursion > MAXDEPTH || strlen(refname) > MAXREFLEN)
1390 return -1;
1391 path = *refs->name
1392 ? git_path_submodule(refs->name, "%s", refname)
1393 : git_path("%s", refname);
1394 fd = open(path, O_RDONLY);
1395 if (fd < 0)
1396 return resolve_gitlink_packed_ref(refs, refname, sha1);
1398 len = read(fd, buffer, sizeof(buffer)-1);
1399 close(fd);
1400 if (len < 0)
1401 return -1;
1402 while (len && isspace(buffer[len-1]))
1403 len--;
1404 buffer[len] = 0;
1406 /* Was it a detached head or an old-fashioned symlink? */
1407 if (!get_sha1_hex(buffer, sha1))
1408 return 0;
1410 /* Symref? */
1411 if (strncmp(buffer, "ref:", 4))
1412 return -1;
1413 p = buffer + 4;
1414 while (isspace(*p))
1415 p++;
1417 return resolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);
1420 int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *sha1)
1422 int len = strlen(path), retval;
1423 char *submodule;
1424 struct ref_cache *refs;
1426 while (len && path[len-1] == '/')
1427 len--;
1428 if (!len)
1429 return -1;
1430 submodule = xstrndup(path, len);
1431 refs = get_ref_cache(submodule);
1432 free(submodule);
1434 retval = resolve_gitlink_ref_recursive(refs, refname, sha1, 0);
1435 return retval;
1439 * Return the ref_entry for the given refname from the packed
1440 * references. If it does not exist, return NULL.
1442 static struct ref_entry *get_packed_ref(const char *refname)
1444 return find_ref(get_packed_refs(&ref_cache), refname);
1448 * A loose ref file doesn't exist; check for a packed ref. The
1449 * options are forwarded from resolve_safe_unsafe().
1451 static int resolve_missing_loose_ref(const char *refname,
1452 int resolve_flags,
1453 unsigned char *sha1,
1454 int *flags)
1456 struct ref_entry *entry;
1459 * The loose reference file does not exist; check for a packed
1460 * reference.
1462 entry = get_packed_ref(refname);
1463 if (entry) {
1464 hashcpy(sha1, entry->u.value.sha1);
1465 if (flags)
1466 *flags |= REF_ISPACKED;
1467 return 0;
1469 /* The reference is not a packed reference, either. */
1470 if (resolve_flags & RESOLVE_REF_READING) {
1471 errno = ENOENT;
1472 return -1;
1473 } else {
1474 hashclr(sha1);
1475 return 0;
1479 /* This function needs to return a meaningful errno on failure */
1480 static const char *resolve_ref_unsafe_1(const char *refname,
1481 int resolve_flags,
1482 unsigned char *sha1,
1483 int *flags,
1484 struct strbuf *sb_path)
1486 int depth = MAXDEPTH;
1487 ssize_t len;
1488 char buffer[256];
1489 static char refname_buffer[256];
1490 int bad_name = 0;
1492 if (flags)
1493 *flags = 0;
1495 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1496 if (flags)
1497 *flags |= REF_BAD_NAME;
1499 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1500 !refname_is_safe(refname)) {
1501 errno = EINVAL;
1502 return NULL;
1505 * dwim_ref() uses REF_ISBROKEN to distinguish between
1506 * missing refs and refs that were present but invalid,
1507 * to complain about the latter to stderr.
1509 * We don't know whether the ref exists, so don't set
1510 * REF_ISBROKEN yet.
1512 bad_name = 1;
1514 for (;;) {
1515 const char *path;
1516 struct stat st;
1517 char *buf;
1518 int fd;
1520 if (--depth < 0) {
1521 errno = ELOOP;
1522 return NULL;
1525 strbuf_reset(sb_path);
1526 strbuf_git_path(sb_path, "%s", refname);
1527 path = sb_path->buf;
1530 * We might have to loop back here to avoid a race
1531 * condition: first we lstat() the file, then we try
1532 * to read it as a link or as a file. But if somebody
1533 * changes the type of the file (file <-> directory
1534 * <-> symlink) between the lstat() and reading, then
1535 * we don't want to report that as an error but rather
1536 * try again starting with the lstat().
1538 stat_ref:
1539 if (lstat(path, &st) < 0) {
1540 if (errno != ENOENT)
1541 return NULL;
1542 if (resolve_missing_loose_ref(refname, resolve_flags,
1543 sha1, flags))
1544 return NULL;
1545 if (bad_name) {
1546 hashclr(sha1);
1547 if (flags)
1548 *flags |= REF_ISBROKEN;
1550 return refname;
1553 /* Follow "normalized" - ie "refs/.." symlinks by hand */
1554 if (S_ISLNK(st.st_mode)) {
1555 len = readlink(path, buffer, sizeof(buffer)-1);
1556 if (len < 0) {
1557 if (errno == ENOENT || errno == EINVAL)
1558 /* inconsistent with lstat; retry */
1559 goto stat_ref;
1560 else
1561 return NULL;
1563 buffer[len] = 0;
1564 if (starts_with(buffer, "refs/") &&
1565 !check_refname_format(buffer, 0)) {
1566 strcpy(refname_buffer, buffer);
1567 refname = refname_buffer;
1568 if (flags)
1569 *flags |= REF_ISSYMREF;
1570 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1571 hashclr(sha1);
1572 return refname;
1574 continue;
1578 /* Is it a directory? */
1579 if (S_ISDIR(st.st_mode)) {
1580 errno = EISDIR;
1581 return NULL;
1585 * Anything else, just open it and try to use it as
1586 * a ref
1588 fd = open(path, O_RDONLY);
1589 if (fd < 0) {
1590 if (errno == ENOENT)
1591 /* inconsistent with lstat; retry */
1592 goto stat_ref;
1593 else
1594 return NULL;
1596 len = read_in_full(fd, buffer, sizeof(buffer)-1);
1597 if (len < 0) {
1598 int save_errno = errno;
1599 close(fd);
1600 errno = save_errno;
1601 return NULL;
1603 close(fd);
1604 while (len && isspace(buffer[len-1]))
1605 len--;
1606 buffer[len] = '\0';
1609 * Is it a symbolic ref?
1611 if (!starts_with(buffer, "ref:")) {
1613 * Please note that FETCH_HEAD has a second
1614 * line containing other data.
1616 if (get_sha1_hex(buffer, sha1) ||
1617 (buffer[40] != '\0' && !isspace(buffer[40]))) {
1618 if (flags)
1619 *flags |= REF_ISBROKEN;
1620 errno = EINVAL;
1621 return NULL;
1623 if (bad_name) {
1624 hashclr(sha1);
1625 if (flags)
1626 *flags |= REF_ISBROKEN;
1628 return refname;
1630 if (flags)
1631 *flags |= REF_ISSYMREF;
1632 buf = buffer + 4;
1633 while (isspace(*buf))
1634 buf++;
1635 refname = strcpy(refname_buffer, buf);
1636 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1637 hashclr(sha1);
1638 return refname;
1640 if (check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {
1641 if (flags)
1642 *flags |= REF_ISBROKEN;
1644 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1645 !refname_is_safe(buf)) {
1646 errno = EINVAL;
1647 return NULL;
1649 bad_name = 1;
1654 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1655 unsigned char *sha1, int *flags)
1657 struct strbuf sb_path = STRBUF_INIT;
1658 const char *ret = resolve_ref_unsafe_1(refname, resolve_flags,
1659 sha1, flags, &sb_path);
1660 strbuf_release(&sb_path);
1661 return ret;
1664 char *resolve_refdup(const char *ref, int resolve_flags, unsigned char *sha1, int *flags)
1666 return xstrdup_or_null(resolve_ref_unsafe(ref, resolve_flags, sha1, flags));
1669 /* The argument to filter_refs */
1670 struct ref_filter {
1671 const char *pattern;
1672 each_ref_fn *fn;
1673 void *cb_data;
1676 int read_ref_full(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
1678 if (resolve_ref_unsafe(refname, resolve_flags, sha1, flags))
1679 return 0;
1680 return -1;
1683 int read_ref(const char *refname, unsigned char *sha1)
1685 return read_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);
1688 int ref_exists(const char *refname)
1690 unsigned char sha1[20];
1691 return !!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);
1694 static int filter_refs(const char *refname, const unsigned char *sha1, int flags,
1695 void *data)
1697 struct ref_filter *filter = (struct ref_filter *)data;
1698 if (wildmatch(filter->pattern, refname, 0, NULL))
1699 return 0;
1700 return filter->fn(refname, sha1, flags, filter->cb_data);
1703 enum peel_status {
1704 /* object was peeled successfully: */
1705 PEEL_PEELED = 0,
1708 * object cannot be peeled because the named object (or an
1709 * object referred to by a tag in the peel chain), does not
1710 * exist.
1712 PEEL_INVALID = -1,
1714 /* object cannot be peeled because it is not a tag: */
1715 PEEL_NON_TAG = -2,
1717 /* ref_entry contains no peeled value because it is a symref: */
1718 PEEL_IS_SYMREF = -3,
1721 * ref_entry cannot be peeled because it is broken (i.e., the
1722 * symbolic reference cannot even be resolved to an object
1723 * name):
1725 PEEL_BROKEN = -4
1729 * Peel the named object; i.e., if the object is a tag, resolve the
1730 * tag recursively until a non-tag is found. If successful, store the
1731 * result to sha1 and return PEEL_PEELED. If the object is not a tag
1732 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,
1733 * and leave sha1 unchanged.
1735 static enum peel_status peel_object(const unsigned char *name, unsigned char *sha1)
1737 struct object *o = lookup_unknown_object(name);
1739 if (o->type == OBJ_NONE) {
1740 int type = sha1_object_info(name, NULL);
1741 if (type < 0 || !object_as_type(o, type, 0))
1742 return PEEL_INVALID;
1745 if (o->type != OBJ_TAG)
1746 return PEEL_NON_TAG;
1748 o = deref_tag_noverify(o);
1749 if (!o)
1750 return PEEL_INVALID;
1752 hashcpy(sha1, o->sha1);
1753 return PEEL_PEELED;
1757 * Peel the entry (if possible) and return its new peel_status. If
1758 * repeel is true, re-peel the entry even if there is an old peeled
1759 * value that is already stored in it.
1761 * It is OK to call this function with a packed reference entry that
1762 * might be stale and might even refer to an object that has since
1763 * been garbage-collected. In such a case, if the entry has
1764 * REF_KNOWS_PEELED then leave the status unchanged and return
1765 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.
1767 static enum peel_status peel_entry(struct ref_entry *entry, int repeel)
1769 enum peel_status status;
1771 if (entry->flag & REF_KNOWS_PEELED) {
1772 if (repeel) {
1773 entry->flag &= ~REF_KNOWS_PEELED;
1774 hashclr(entry->u.value.peeled);
1775 } else {
1776 return is_null_sha1(entry->u.value.peeled) ?
1777 PEEL_NON_TAG : PEEL_PEELED;
1780 if (entry->flag & REF_ISBROKEN)
1781 return PEEL_BROKEN;
1782 if (entry->flag & REF_ISSYMREF)
1783 return PEEL_IS_SYMREF;
1785 status = peel_object(entry->u.value.sha1, entry->u.value.peeled);
1786 if (status == PEEL_PEELED || status == PEEL_NON_TAG)
1787 entry->flag |= REF_KNOWS_PEELED;
1788 return status;
1791 int peel_ref(const char *refname, unsigned char *sha1)
1793 int flag;
1794 unsigned char base[20];
1796 if (current_ref && (current_ref->name == refname
1797 || !strcmp(current_ref->name, refname))) {
1798 if (peel_entry(current_ref, 0))
1799 return -1;
1800 hashcpy(sha1, current_ref->u.value.peeled);
1801 return 0;
1804 if (read_ref_full(refname, RESOLVE_REF_READING, base, &flag))
1805 return -1;
1808 * If the reference is packed, read its ref_entry from the
1809 * cache in the hope that we already know its peeled value.
1810 * We only try this optimization on packed references because
1811 * (a) forcing the filling of the loose reference cache could
1812 * be expensive and (b) loose references anyway usually do not
1813 * have REF_KNOWS_PEELED.
1815 if (flag & REF_ISPACKED) {
1816 struct ref_entry *r = get_packed_ref(refname);
1817 if (r) {
1818 if (peel_entry(r, 0))
1819 return -1;
1820 hashcpy(sha1, r->u.value.peeled);
1821 return 0;
1825 return peel_object(base, sha1);
1828 struct warn_if_dangling_data {
1829 FILE *fp;
1830 const char *refname;
1831 const struct string_list *refnames;
1832 const char *msg_fmt;
1835 static int warn_if_dangling_symref(const char *refname, const unsigned char *sha1,
1836 int flags, void *cb_data)
1838 struct warn_if_dangling_data *d = cb_data;
1839 const char *resolves_to;
1840 unsigned char junk[20];
1842 if (!(flags & REF_ISSYMREF))
1843 return 0;
1845 resolves_to = resolve_ref_unsafe(refname, 0, junk, NULL);
1846 if (!resolves_to
1847 || (d->refname
1848 ? strcmp(resolves_to, d->refname)
1849 : !string_list_has_string(d->refnames, resolves_to))) {
1850 return 0;
1853 fprintf(d->fp, d->msg_fmt, refname);
1854 fputc('\n', d->fp);
1855 return 0;
1858 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
1860 struct warn_if_dangling_data data;
1862 data.fp = fp;
1863 data.refname = refname;
1864 data.refnames = NULL;
1865 data.msg_fmt = msg_fmt;
1866 for_each_rawref(warn_if_dangling_symref, &data);
1869 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
1871 struct warn_if_dangling_data data;
1873 data.fp = fp;
1874 data.refname = NULL;
1875 data.refnames = refnames;
1876 data.msg_fmt = msg_fmt;
1877 for_each_rawref(warn_if_dangling_symref, &data);
1881 * Call fn for each reference in the specified ref_cache, omitting
1882 * references not in the containing_dir of base. fn is called for all
1883 * references, including broken ones. If fn ever returns a non-zero
1884 * value, stop the iteration and return that value; otherwise, return
1885 * 0.
1887 static int do_for_each_entry(struct ref_cache *refs, const char *base,
1888 each_ref_entry_fn fn, void *cb_data)
1890 struct packed_ref_cache *packed_ref_cache;
1891 struct ref_dir *loose_dir;
1892 struct ref_dir *packed_dir;
1893 int retval = 0;
1896 * We must make sure that all loose refs are read before accessing the
1897 * packed-refs file; this avoids a race condition in which loose refs
1898 * are migrated to the packed-refs file by a simultaneous process, but
1899 * our in-memory view is from before the migration. get_packed_ref_cache()
1900 * takes care of making sure our view is up to date with what is on
1901 * disk.
1903 loose_dir = get_loose_refs(refs);
1904 if (base && *base) {
1905 loose_dir = find_containing_dir(loose_dir, base, 0);
1907 if (loose_dir)
1908 prime_ref_dir(loose_dir);
1910 packed_ref_cache = get_packed_ref_cache(refs);
1911 acquire_packed_ref_cache(packed_ref_cache);
1912 packed_dir = get_packed_ref_dir(packed_ref_cache);
1913 if (base && *base) {
1914 packed_dir = find_containing_dir(packed_dir, base, 0);
1917 if (packed_dir && loose_dir) {
1918 sort_ref_dir(packed_dir);
1919 sort_ref_dir(loose_dir);
1920 retval = do_for_each_entry_in_dirs(
1921 packed_dir, loose_dir, fn, cb_data);
1922 } else if (packed_dir) {
1923 sort_ref_dir(packed_dir);
1924 retval = do_for_each_entry_in_dir(
1925 packed_dir, 0, fn, cb_data);
1926 } else if (loose_dir) {
1927 sort_ref_dir(loose_dir);
1928 retval = do_for_each_entry_in_dir(
1929 loose_dir, 0, fn, cb_data);
1932 release_packed_ref_cache(packed_ref_cache);
1933 return retval;
1937 * Call fn for each reference in the specified ref_cache for which the
1938 * refname begins with base. If trim is non-zero, then trim that many
1939 * characters off the beginning of each refname before passing the
1940 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include
1941 * broken references in the iteration. If fn ever returns a non-zero
1942 * value, stop the iteration and return that value; otherwise, return
1943 * 0.
1945 static int do_for_each_ref(struct ref_cache *refs, const char *base,
1946 each_ref_fn fn, int trim, int flags, void *cb_data)
1948 struct ref_entry_cb data;
1949 data.base = base;
1950 data.trim = trim;
1951 data.flags = flags;
1952 data.fn = fn;
1953 data.cb_data = cb_data;
1955 if (ref_paranoia < 0)
1956 ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 0);
1957 if (ref_paranoia)
1958 data.flags |= DO_FOR_EACH_INCLUDE_BROKEN;
1960 return do_for_each_entry(refs, base, do_one_ref, &data);
1963 static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1965 unsigned char sha1[20];
1966 int flag;
1968 if (submodule) {
1969 if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
1970 return fn("HEAD", sha1, 0, cb_data);
1972 return 0;
1975 if (!read_ref_full("HEAD", RESOLVE_REF_READING, sha1, &flag))
1976 return fn("HEAD", sha1, flag, cb_data);
1978 return 0;
1981 int head_ref(each_ref_fn fn, void *cb_data)
1983 return do_head_ref(NULL, fn, cb_data);
1986 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1988 return do_head_ref(submodule, fn, cb_data);
1991 int for_each_ref(each_ref_fn fn, void *cb_data)
1993 return do_for_each_ref(&ref_cache, "", fn, 0, 0, cb_data);
1996 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1998 return do_for_each_ref(get_ref_cache(submodule), "", fn, 0, 0, cb_data);
2001 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
2003 return do_for_each_ref(&ref_cache, prefix, fn, strlen(prefix), 0, cb_data);
2006 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
2007 each_ref_fn fn, void *cb_data)
2009 return do_for_each_ref(get_ref_cache(submodule), prefix, fn, strlen(prefix), 0, cb_data);
2012 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
2014 return for_each_ref_in("refs/tags/", fn, cb_data);
2017 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2019 return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
2022 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
2024 return for_each_ref_in("refs/heads/", fn, cb_data);
2027 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2029 return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
2032 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
2034 return for_each_ref_in("refs/remotes/", fn, cb_data);
2037 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2039 return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
2042 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
2044 return do_for_each_ref(&ref_cache, "refs/replace/", fn, 13, 0, cb_data);
2047 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
2049 struct strbuf buf = STRBUF_INIT;
2050 int ret = 0;
2051 unsigned char sha1[20];
2052 int flag;
2054 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
2055 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, sha1, &flag))
2056 ret = fn(buf.buf, sha1, flag, cb_data);
2057 strbuf_release(&buf);
2059 return ret;
2062 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
2064 struct strbuf buf = STRBUF_INIT;
2065 int ret;
2066 strbuf_addf(&buf, "%srefs/", get_git_namespace());
2067 ret = do_for_each_ref(&ref_cache, buf.buf, fn, 0, 0, cb_data);
2068 strbuf_release(&buf);
2069 return ret;
2072 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
2073 const char *prefix, void *cb_data)
2075 struct strbuf real_pattern = STRBUF_INIT;
2076 struct ref_filter filter;
2077 int ret;
2079 if (!prefix && !starts_with(pattern, "refs/"))
2080 strbuf_addstr(&real_pattern, "refs/");
2081 else if (prefix)
2082 strbuf_addstr(&real_pattern, prefix);
2083 strbuf_addstr(&real_pattern, pattern);
2085 if (!has_glob_specials(pattern)) {
2086 /* Append implied '/' '*' if not present. */
2087 if (real_pattern.buf[real_pattern.len - 1] != '/')
2088 strbuf_addch(&real_pattern, '/');
2089 /* No need to check for '*', there is none. */
2090 strbuf_addch(&real_pattern, '*');
2093 filter.pattern = real_pattern.buf;
2094 filter.fn = fn;
2095 filter.cb_data = cb_data;
2096 ret = for_each_ref(filter_refs, &filter);
2098 strbuf_release(&real_pattern);
2099 return ret;
2102 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
2104 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
2107 int for_each_rawref(each_ref_fn fn, void *cb_data)
2109 return do_for_each_ref(&ref_cache, "", fn, 0,
2110 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
2113 const char *prettify_refname(const char *name)
2115 return name + (
2116 starts_with(name, "refs/heads/") ? 11 :
2117 starts_with(name, "refs/tags/") ? 10 :
2118 starts_with(name, "refs/remotes/") ? 13 :
2122 static const char *ref_rev_parse_rules[] = {
2123 "%.*s",
2124 "refs/%.*s",
2125 "refs/tags/%.*s",
2126 "refs/heads/%.*s",
2127 "refs/remotes/%.*s",
2128 "refs/remotes/%.*s/HEAD",
2129 NULL
2132 int refname_match(const char *abbrev_name, const char *full_name)
2134 const char **p;
2135 const int abbrev_name_len = strlen(abbrev_name);
2137 for (p = ref_rev_parse_rules; *p; p++) {
2138 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
2139 return 1;
2143 return 0;
2146 static void unlock_ref(struct ref_lock *lock)
2148 /* Do not free lock->lk -- atexit() still looks at them */
2149 if (lock->lk)
2150 rollback_lock_file(lock->lk);
2151 free(lock->ref_name);
2152 free(lock->orig_ref_name);
2153 free(lock);
2156 /* This function should make sure errno is meaningful on error */
2157 static struct ref_lock *verify_lock(struct ref_lock *lock,
2158 const unsigned char *old_sha1, int mustexist)
2160 if (read_ref_full(lock->ref_name,
2161 mustexist ? RESOLVE_REF_READING : 0,
2162 lock->old_sha1, NULL)) {
2163 int save_errno = errno;
2164 error("Can't verify ref %s", lock->ref_name);
2165 unlock_ref(lock);
2166 errno = save_errno;
2167 return NULL;
2169 if (hashcmp(lock->old_sha1, old_sha1)) {
2170 error("Ref %s is at %s but expected %s", lock->ref_name,
2171 sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
2172 unlock_ref(lock);
2173 errno = EBUSY;
2174 return NULL;
2176 return lock;
2179 static int remove_empty_directories(const char *file)
2181 /* we want to create a file but there is a directory there;
2182 * if that is an empty directory (or a directory that contains
2183 * only empty directories), remove them.
2185 struct strbuf path;
2186 int result, save_errno;
2188 strbuf_init(&path, 20);
2189 strbuf_addstr(&path, file);
2191 result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
2192 save_errno = errno;
2194 strbuf_release(&path);
2195 errno = save_errno;
2197 return result;
2201 * *string and *len will only be substituted, and *string returned (for
2202 * later free()ing) if the string passed in is a magic short-hand form
2203 * to name a branch.
2205 static char *substitute_branch_name(const char **string, int *len)
2207 struct strbuf buf = STRBUF_INIT;
2208 int ret = interpret_branch_name(*string, *len, &buf);
2210 if (ret == *len) {
2211 size_t size;
2212 *string = strbuf_detach(&buf, &size);
2213 *len = size;
2214 return (char *)*string;
2217 return NULL;
2220 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
2222 char *last_branch = substitute_branch_name(&str, &len);
2223 const char **p, *r;
2224 int refs_found = 0;
2226 *ref = NULL;
2227 for (p = ref_rev_parse_rules; *p; p++) {
2228 char fullref[PATH_MAX];
2229 unsigned char sha1_from_ref[20];
2230 unsigned char *this_result;
2231 int flag;
2233 this_result = refs_found ? sha1_from_ref : sha1;
2234 mksnpath(fullref, sizeof(fullref), *p, len, str);
2235 r = resolve_ref_unsafe(fullref, RESOLVE_REF_READING,
2236 this_result, &flag);
2237 if (r) {
2238 if (!refs_found++)
2239 *ref = xstrdup(r);
2240 if (!warn_ambiguous_refs)
2241 break;
2242 } else if ((flag & REF_ISSYMREF) && strcmp(fullref, "HEAD")) {
2243 warning("ignoring dangling symref %s.", fullref);
2244 } else if ((flag & REF_ISBROKEN) && strchr(fullref, '/')) {
2245 warning("ignoring broken ref %s.", fullref);
2248 free(last_branch);
2249 return refs_found;
2252 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
2254 char *last_branch = substitute_branch_name(&str, &len);
2255 const char **p;
2256 int logs_found = 0;
2258 *log = NULL;
2259 for (p = ref_rev_parse_rules; *p; p++) {
2260 unsigned char hash[20];
2261 char path[PATH_MAX];
2262 const char *ref, *it;
2264 mksnpath(path, sizeof(path), *p, len, str);
2265 ref = resolve_ref_unsafe(path, RESOLVE_REF_READING,
2266 hash, NULL);
2267 if (!ref)
2268 continue;
2269 if (reflog_exists(path))
2270 it = path;
2271 else if (strcmp(ref, path) && reflog_exists(ref))
2272 it = ref;
2273 else
2274 continue;
2275 if (!logs_found++) {
2276 *log = xstrdup(it);
2277 hashcpy(sha1, hash);
2279 if (!warn_ambiguous_refs)
2280 break;
2282 free(last_branch);
2283 return logs_found;
2287 * Locks a ref returning the lock on success and NULL on failure.
2288 * On failure errno is set to something meaningful.
2290 static struct ref_lock *lock_ref_sha1_basic(const char *refname,
2291 const unsigned char *old_sha1,
2292 const struct string_list *skip,
2293 unsigned int flags, int *type_p)
2295 const char *ref_file;
2296 const char *orig_refname = refname;
2297 struct ref_lock *lock;
2298 int last_errno = 0;
2299 int type, lflags;
2300 int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
2301 int resolve_flags = 0;
2302 int attempts_remaining = 3;
2304 lock = xcalloc(1, sizeof(struct ref_lock));
2305 lock->lock_fd = -1;
2307 if (mustexist)
2308 resolve_flags |= RESOLVE_REF_READING;
2309 if (flags & REF_DELETING) {
2310 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;
2311 if (flags & REF_NODEREF)
2312 resolve_flags |= RESOLVE_REF_NO_RECURSE;
2315 refname = resolve_ref_unsafe(refname, resolve_flags,
2316 lock->old_sha1, &type);
2317 if (!refname && errno == EISDIR) {
2318 /* we are trying to lock foo but we used to
2319 * have foo/bar which now does not exist;
2320 * it is normal for the empty directory 'foo'
2321 * to remain.
2323 ref_file = git_path("%s", orig_refname);
2324 if (remove_empty_directories(ref_file)) {
2325 last_errno = errno;
2326 error("there are still refs under '%s'", orig_refname);
2327 goto error_return;
2329 refname = resolve_ref_unsafe(orig_refname, resolve_flags,
2330 lock->old_sha1, &type);
2332 if (type_p)
2333 *type_p = type;
2334 if (!refname) {
2335 last_errno = errno;
2336 error("unable to resolve reference %s: %s",
2337 orig_refname, strerror(errno));
2338 goto error_return;
2341 * If the ref did not exist and we are creating it, make sure
2342 * there is no existing packed ref whose name begins with our
2343 * refname, nor a packed ref whose name is a proper prefix of
2344 * our refname.
2346 if (is_null_sha1(lock->old_sha1) &&
2347 !is_refname_available(refname, skip, get_packed_refs(&ref_cache))) {
2348 last_errno = ENOTDIR;
2349 goto error_return;
2352 lock->lk = xcalloc(1, sizeof(struct lock_file));
2354 lflags = 0;
2355 if (flags & REF_NODEREF) {
2356 refname = orig_refname;
2357 lflags |= LOCK_NO_DEREF;
2359 lock->ref_name = xstrdup(refname);
2360 lock->orig_ref_name = xstrdup(orig_refname);
2361 ref_file = git_path("%s", refname);
2363 retry:
2364 switch (safe_create_leading_directories_const(ref_file)) {
2365 case SCLD_OK:
2366 break; /* success */
2367 case SCLD_VANISHED:
2368 if (--attempts_remaining > 0)
2369 goto retry;
2370 /* fall through */
2371 default:
2372 last_errno = errno;
2373 error("unable to create directory for %s", ref_file);
2374 goto error_return;
2377 lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, lflags);
2378 if (lock->lock_fd < 0) {
2379 last_errno = errno;
2380 if (errno == ENOENT && --attempts_remaining > 0)
2382 * Maybe somebody just deleted one of the
2383 * directories leading to ref_file. Try
2384 * again:
2386 goto retry;
2387 else {
2388 struct strbuf err = STRBUF_INIT;
2389 unable_to_lock_message(ref_file, errno, &err);
2390 error("%s", err.buf);
2391 strbuf_release(&err);
2392 goto error_return;
2395 return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
2397 error_return:
2398 unlock_ref(lock);
2399 errno = last_errno;
2400 return NULL;
2404 * Write an entry to the packed-refs file for the specified refname.
2405 * If peeled is non-NULL, write it as the entry's peeled value.
2407 static void write_packed_entry(FILE *fh, char *refname, unsigned char *sha1,
2408 unsigned char *peeled)
2410 fprintf_or_die(fh, "%s %s\n", sha1_to_hex(sha1), refname);
2411 if (peeled)
2412 fprintf_or_die(fh, "^%s\n", sha1_to_hex(peeled));
2416 * An each_ref_entry_fn that writes the entry to a packed-refs file.
2418 static int write_packed_entry_fn(struct ref_entry *entry, void *cb_data)
2420 enum peel_status peel_status = peel_entry(entry, 0);
2422 if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2423 error("internal error: %s is not a valid packed reference!",
2424 entry->name);
2425 write_packed_entry(cb_data, entry->name, entry->u.value.sha1,
2426 peel_status == PEEL_PEELED ?
2427 entry->u.value.peeled : NULL);
2428 return 0;
2431 /* This should return a meaningful errno on failure */
2432 int lock_packed_refs(int flags)
2434 static int timeout_configured = 0;
2435 static int timeout_value = 1000;
2437 struct packed_ref_cache *packed_ref_cache;
2439 if (!timeout_configured) {
2440 git_config_get_int("core.packedrefstimeout", &timeout_value);
2441 timeout_configured = 1;
2444 if (hold_lock_file_for_update_timeout(
2445 &packlock, git_path("packed-refs"),
2446 flags, timeout_value) < 0)
2447 return -1;
2449 * Get the current packed-refs while holding the lock. If the
2450 * packed-refs file has been modified since we last read it,
2451 * this will automatically invalidate the cache and re-read
2452 * the packed-refs file.
2454 packed_ref_cache = get_packed_ref_cache(&ref_cache);
2455 packed_ref_cache->lock = &packlock;
2456 /* Increment the reference count to prevent it from being freed: */
2457 acquire_packed_ref_cache(packed_ref_cache);
2458 return 0;
2462 * Commit the packed refs changes.
2463 * On error we must make sure that errno contains a meaningful value.
2465 int commit_packed_refs(void)
2467 struct packed_ref_cache *packed_ref_cache =
2468 get_packed_ref_cache(&ref_cache);
2469 int error = 0;
2470 int save_errno = 0;
2471 FILE *out;
2473 if (!packed_ref_cache->lock)
2474 die("internal error: packed-refs not locked");
2476 out = fdopen_lock_file(packed_ref_cache->lock, "w");
2477 if (!out)
2478 die_errno("unable to fdopen packed-refs descriptor");
2480 fprintf_or_die(out, "%s", PACKED_REFS_HEADER);
2481 do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),
2482 0, write_packed_entry_fn, out);
2484 if (commit_lock_file(packed_ref_cache->lock)) {
2485 save_errno = errno;
2486 error = -1;
2488 packed_ref_cache->lock = NULL;
2489 release_packed_ref_cache(packed_ref_cache);
2490 errno = save_errno;
2491 return error;
2494 void rollback_packed_refs(void)
2496 struct packed_ref_cache *packed_ref_cache =
2497 get_packed_ref_cache(&ref_cache);
2499 if (!packed_ref_cache->lock)
2500 die("internal error: packed-refs not locked");
2501 rollback_lock_file(packed_ref_cache->lock);
2502 packed_ref_cache->lock = NULL;
2503 release_packed_ref_cache(packed_ref_cache);
2504 clear_packed_ref_cache(&ref_cache);
2507 struct ref_to_prune {
2508 struct ref_to_prune *next;
2509 unsigned char sha1[20];
2510 char name[FLEX_ARRAY];
2513 struct pack_refs_cb_data {
2514 unsigned int flags;
2515 struct ref_dir *packed_refs;
2516 struct ref_to_prune *ref_to_prune;
2520 * An each_ref_entry_fn that is run over loose references only. If
2521 * the loose reference can be packed, add an entry in the packed ref
2522 * cache. If the reference should be pruned, also add it to
2523 * ref_to_prune in the pack_refs_cb_data.
2525 static int pack_if_possible_fn(struct ref_entry *entry, void *cb_data)
2527 struct pack_refs_cb_data *cb = cb_data;
2528 enum peel_status peel_status;
2529 struct ref_entry *packed_entry;
2530 int is_tag_ref = starts_with(entry->name, "refs/tags/");
2532 /* ALWAYS pack tags */
2533 if (!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)
2534 return 0;
2536 /* Do not pack symbolic or broken refs: */
2537 if ((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))
2538 return 0;
2540 /* Add a packed ref cache entry equivalent to the loose entry. */
2541 peel_status = peel_entry(entry, 1);
2542 if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2543 die("internal error peeling reference %s (%s)",
2544 entry->name, sha1_to_hex(entry->u.value.sha1));
2545 packed_entry = find_ref(cb->packed_refs, entry->name);
2546 if (packed_entry) {
2547 /* Overwrite existing packed entry with info from loose entry */
2548 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;
2549 hashcpy(packed_entry->u.value.sha1, entry->u.value.sha1);
2550 } else {
2551 packed_entry = create_ref_entry(entry->name, entry->u.value.sha1,
2552 REF_ISPACKED | REF_KNOWS_PEELED, 0);
2553 add_ref(cb->packed_refs, packed_entry);
2555 hashcpy(packed_entry->u.value.peeled, entry->u.value.peeled);
2557 /* Schedule the loose reference for pruning if requested. */
2558 if ((cb->flags & PACK_REFS_PRUNE)) {
2559 int namelen = strlen(entry->name) + 1;
2560 struct ref_to_prune *n = xcalloc(1, sizeof(*n) + namelen);
2561 hashcpy(n->sha1, entry->u.value.sha1);
2562 strcpy(n->name, entry->name);
2563 n->next = cb->ref_to_prune;
2564 cb->ref_to_prune = n;
2566 return 0;
2570 * Remove empty parents, but spare refs/ and immediate subdirs.
2571 * Note: munges *name.
2573 static void try_remove_empty_parents(char *name)
2575 char *p, *q;
2576 int i;
2577 p = name;
2578 for (i = 0; i < 2; i++) { /* refs/{heads,tags,...}/ */
2579 while (*p && *p != '/')
2580 p++;
2581 /* tolerate duplicate slashes; see check_refname_format() */
2582 while (*p == '/')
2583 p++;
2585 for (q = p; *q; q++)
2587 while (1) {
2588 while (q > p && *q != '/')
2589 q--;
2590 while (q > p && *(q-1) == '/')
2591 q--;
2592 if (q == p)
2593 break;
2594 *q = '\0';
2595 if (rmdir(git_path("%s", name)))
2596 break;
2600 /* make sure nobody touched the ref, and unlink */
2601 static void prune_ref(struct ref_to_prune *r)
2603 struct ref_transaction *transaction;
2604 struct strbuf err = STRBUF_INIT;
2606 if (check_refname_format(r->name, 0))
2607 return;
2609 transaction = ref_transaction_begin(&err);
2610 if (!transaction ||
2611 ref_transaction_delete(transaction, r->name, r->sha1,
2612 REF_ISPRUNING, NULL, &err) ||
2613 ref_transaction_commit(transaction, &err)) {
2614 ref_transaction_free(transaction);
2615 error("%s", err.buf);
2616 strbuf_release(&err);
2617 return;
2619 ref_transaction_free(transaction);
2620 strbuf_release(&err);
2621 try_remove_empty_parents(r->name);
2624 static void prune_refs(struct ref_to_prune *r)
2626 while (r) {
2627 prune_ref(r);
2628 r = r->next;
2632 int pack_refs(unsigned int flags)
2634 struct pack_refs_cb_data cbdata;
2636 memset(&cbdata, 0, sizeof(cbdata));
2637 cbdata.flags = flags;
2639 lock_packed_refs(LOCK_DIE_ON_ERROR);
2640 cbdata.packed_refs = get_packed_refs(&ref_cache);
2642 do_for_each_entry_in_dir(get_loose_refs(&ref_cache), 0,
2643 pack_if_possible_fn, &cbdata);
2645 if (commit_packed_refs())
2646 die_errno("unable to overwrite old ref-pack file");
2648 prune_refs(cbdata.ref_to_prune);
2649 return 0;
2652 int repack_without_refs(struct string_list *refnames, struct strbuf *err)
2654 struct ref_dir *packed;
2655 struct string_list_item *refname;
2656 int ret, needs_repacking = 0, removed = 0;
2658 assert(err);
2660 /* Look for a packed ref */
2661 for_each_string_list_item(refname, refnames) {
2662 if (get_packed_ref(refname->string)) {
2663 needs_repacking = 1;
2664 break;
2668 /* Avoid locking if we have nothing to do */
2669 if (!needs_repacking)
2670 return 0; /* no refname exists in packed refs */
2672 if (lock_packed_refs(0)) {
2673 unable_to_lock_message(git_path("packed-refs"), errno, err);
2674 return -1;
2676 packed = get_packed_refs(&ref_cache);
2678 /* Remove refnames from the cache */
2679 for_each_string_list_item(refname, refnames)
2680 if (remove_entry(packed, refname->string) != -1)
2681 removed = 1;
2682 if (!removed) {
2684 * All packed entries disappeared while we were
2685 * acquiring the lock.
2687 rollback_packed_refs();
2688 return 0;
2691 /* Write what remains */
2692 ret = commit_packed_refs();
2693 if (ret)
2694 strbuf_addf(err, "unable to overwrite old ref-pack file: %s",
2695 strerror(errno));
2696 return ret;
2699 static int delete_ref_loose(struct ref_lock *lock, int flag, struct strbuf *err)
2701 assert(err);
2703 if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
2705 * loose. The loose file name is the same as the
2706 * lockfile name, minus ".lock":
2708 char *loose_filename = get_locked_file_path(lock->lk);
2709 int res = unlink_or_msg(loose_filename, err);
2710 free(loose_filename);
2711 if (res)
2712 return 1;
2714 return 0;
2717 int delete_ref(const char *refname, const unsigned char *sha1, unsigned int flags)
2719 struct ref_transaction *transaction;
2720 struct strbuf err = STRBUF_INIT;
2722 transaction = ref_transaction_begin(&err);
2723 if (!transaction ||
2724 ref_transaction_delete(transaction, refname,
2725 (sha1 && !is_null_sha1(sha1)) ? sha1 : NULL,
2726 flags, NULL, &err) ||
2727 ref_transaction_commit(transaction, &err)) {
2728 error("%s", err.buf);
2729 ref_transaction_free(transaction);
2730 strbuf_release(&err);
2731 return 1;
2733 ref_transaction_free(transaction);
2734 strbuf_release(&err);
2735 return 0;
2739 * People using contrib's git-new-workdir have .git/logs/refs ->
2740 * /some/other/path/.git/logs/refs, and that may live on another device.
2742 * IOW, to avoid cross device rename errors, the temporary renamed log must
2743 * live into logs/refs.
2745 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
2747 static int rename_tmp_log(const char *newrefname)
2749 int attempts_remaining = 4;
2751 retry:
2752 switch (safe_create_leading_directories_const(git_path("logs/%s", newrefname))) {
2753 case SCLD_OK:
2754 break; /* success */
2755 case SCLD_VANISHED:
2756 if (--attempts_remaining > 0)
2757 goto retry;
2758 /* fall through */
2759 default:
2760 error("unable to create directory for %s", newrefname);
2761 return -1;
2764 if (rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newrefname))) {
2765 if ((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining > 0) {
2767 * rename(a, b) when b is an existing
2768 * directory ought to result in ISDIR, but
2769 * Solaris 5.8 gives ENOTDIR. Sheesh.
2771 if (remove_empty_directories(git_path("logs/%s", newrefname))) {
2772 error("Directory not empty: logs/%s", newrefname);
2773 return -1;
2775 goto retry;
2776 } else if (errno == ENOENT && --attempts_remaining > 0) {
2778 * Maybe another process just deleted one of
2779 * the directories in the path to newrefname.
2780 * Try again from the beginning.
2782 goto retry;
2783 } else {
2784 error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
2785 newrefname, strerror(errno));
2786 return -1;
2789 return 0;
2792 static int rename_ref_available(const char *oldname, const char *newname)
2794 struct string_list skip = STRING_LIST_INIT_NODUP;
2795 int ret;
2797 string_list_insert(&skip, oldname);
2798 ret = is_refname_available(newname, &skip, get_packed_refs(&ref_cache))
2799 && is_refname_available(newname, &skip, get_loose_refs(&ref_cache));
2800 string_list_clear(&skip, 0);
2801 return ret;
2804 static int write_ref_sha1(struct ref_lock *lock, const unsigned char *sha1,
2805 const char *logmsg);
2807 int rename_ref(const char *oldrefname, const char *newrefname, const char *logmsg)
2809 unsigned char sha1[20], orig_sha1[20];
2810 int flag = 0, logmoved = 0;
2811 struct ref_lock *lock;
2812 struct stat loginfo;
2813 int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);
2814 const char *symref = NULL;
2816 if (log && S_ISLNK(loginfo.st_mode))
2817 return error("reflog for %s is a symlink", oldrefname);
2819 symref = resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,
2820 orig_sha1, &flag);
2821 if (flag & REF_ISSYMREF)
2822 return error("refname %s is a symbolic ref, renaming it is not supported",
2823 oldrefname);
2824 if (!symref)
2825 return error("refname %s not found", oldrefname);
2827 if (!rename_ref_available(oldrefname, newrefname))
2828 return 1;
2830 if (log && rename(git_path("logs/%s", oldrefname), git_path(TMP_RENAMED_LOG)))
2831 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
2832 oldrefname, strerror(errno));
2834 if (delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {
2835 error("unable to delete old %s", oldrefname);
2836 goto rollback;
2839 if (!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&
2840 delete_ref(newrefname, sha1, REF_NODEREF)) {
2841 if (errno==EISDIR) {
2842 if (remove_empty_directories(git_path("%s", newrefname))) {
2843 error("Directory not empty: %s", newrefname);
2844 goto rollback;
2846 } else {
2847 error("unable to delete existing %s", newrefname);
2848 goto rollback;
2852 if (log && rename_tmp_log(newrefname))
2853 goto rollback;
2855 logmoved = log;
2857 lock = lock_ref_sha1_basic(newrefname, NULL, NULL, 0, NULL);
2858 if (!lock) {
2859 error("unable to lock %s for update", newrefname);
2860 goto rollback;
2862 hashcpy(lock->old_sha1, orig_sha1);
2863 if (write_ref_sha1(lock, orig_sha1, logmsg)) {
2864 error("unable to write current sha1 into %s", newrefname);
2865 goto rollback;
2868 return 0;
2870 rollback:
2871 lock = lock_ref_sha1_basic(oldrefname, NULL, NULL, 0, NULL);
2872 if (!lock) {
2873 error("unable to lock %s for rollback", oldrefname);
2874 goto rollbacklog;
2877 flag = log_all_ref_updates;
2878 log_all_ref_updates = 0;
2879 if (write_ref_sha1(lock, orig_sha1, NULL))
2880 error("unable to write current sha1 into %s", oldrefname);
2881 log_all_ref_updates = flag;
2883 rollbacklog:
2884 if (logmoved && rename(git_path("logs/%s", newrefname), git_path("logs/%s", oldrefname)))
2885 error("unable to restore logfile %s from %s: %s",
2886 oldrefname, newrefname, strerror(errno));
2887 if (!logmoved && log &&
2888 rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldrefname)))
2889 error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
2890 oldrefname, strerror(errno));
2892 return 1;
2895 static int close_ref(struct ref_lock *lock)
2897 if (close_lock_file(lock->lk))
2898 return -1;
2899 lock->lock_fd = -1;
2900 return 0;
2903 static int commit_ref(struct ref_lock *lock)
2905 if (commit_lock_file(lock->lk))
2906 return -1;
2907 lock->lock_fd = -1;
2908 return 0;
2912 * copy the reflog message msg to buf, which has been allocated sufficiently
2913 * large, while cleaning up the whitespaces. Especially, convert LF to space,
2914 * because reflog file is one line per entry.
2916 static int copy_msg(char *buf, const char *msg)
2918 char *cp = buf;
2919 char c;
2920 int wasspace = 1;
2922 *cp++ = '\t';
2923 while ((c = *msg++)) {
2924 if (wasspace && isspace(c))
2925 continue;
2926 wasspace = isspace(c);
2927 if (wasspace)
2928 c = ' ';
2929 *cp++ = c;
2931 while (buf < cp && isspace(cp[-1]))
2932 cp--;
2933 *cp++ = '\n';
2934 return cp - buf;
2937 /* This function must set a meaningful errno on failure */
2938 int log_ref_setup(const char *refname, struct strbuf *sb_logfile)
2940 int logfd, oflags = O_APPEND | O_WRONLY;
2941 char *logfile;
2943 strbuf_git_path(sb_logfile, "logs/%s", refname);
2944 logfile = sb_logfile->buf;
2945 /* make sure the rest of the function can't change "logfile" */
2946 sb_logfile = NULL;
2947 if (log_all_ref_updates &&
2948 (starts_with(refname, "refs/heads/") ||
2949 starts_with(refname, "refs/remotes/") ||
2950 starts_with(refname, "refs/notes/") ||
2951 !strcmp(refname, "HEAD"))) {
2952 if (safe_create_leading_directories(logfile) < 0) {
2953 int save_errno = errno;
2954 error("unable to create directory for %s", logfile);
2955 errno = save_errno;
2956 return -1;
2958 oflags |= O_CREAT;
2961 logfd = open(logfile, oflags, 0666);
2962 if (logfd < 0) {
2963 if (!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))
2964 return 0;
2966 if (errno == EISDIR) {
2967 if (remove_empty_directories(logfile)) {
2968 int save_errno = errno;
2969 error("There are still logs under '%s'",
2970 logfile);
2971 errno = save_errno;
2972 return -1;
2974 logfd = open(logfile, oflags, 0666);
2977 if (logfd < 0) {
2978 int save_errno = errno;
2979 error("Unable to append to %s: %s", logfile,
2980 strerror(errno));
2981 errno = save_errno;
2982 return -1;
2986 adjust_shared_perm(logfile);
2987 close(logfd);
2988 return 0;
2991 static int log_ref_write_fd(int fd, const unsigned char *old_sha1,
2992 const unsigned char *new_sha1,
2993 const char *committer, const char *msg)
2995 int msglen, written;
2996 unsigned maxlen, len;
2997 char *logrec;
2999 msglen = msg ? strlen(msg) : 0;
3000 maxlen = strlen(committer) + msglen + 100;
3001 logrec = xmalloc(maxlen);
3002 len = sprintf(logrec, "%s %s %s\n",
3003 sha1_to_hex(old_sha1),
3004 sha1_to_hex(new_sha1),
3005 committer);
3006 if (msglen)
3007 len += copy_msg(logrec + len - 1, msg) - 1;
3009 written = len <= maxlen ? write_in_full(fd, logrec, len) : -1;
3010 free(logrec);
3011 if (written != len)
3012 return -1;
3014 return 0;
3017 static int log_ref_write_1(const char *refname, const unsigned char *old_sha1,
3018 const unsigned char *new_sha1, const char *msg,
3019 struct strbuf *sb_log_file)
3021 int logfd, result, oflags = O_APPEND | O_WRONLY;
3022 char *log_file;
3024 if (log_all_ref_updates < 0)
3025 log_all_ref_updates = !is_bare_repository();
3027 result = log_ref_setup(refname, sb_log_file);
3028 if (result)
3029 return result;
3030 log_file = sb_log_file->buf;
3031 /* make sure the rest of the function can't change "log_file" */
3032 sb_log_file = NULL;
3034 logfd = open(log_file, oflags);
3035 if (logfd < 0)
3036 return 0;
3037 result = log_ref_write_fd(logfd, old_sha1, new_sha1,
3038 git_committer_info(0), msg);
3039 if (result) {
3040 int save_errno = errno;
3041 close(logfd);
3042 error("Unable to append to %s", log_file);
3043 errno = save_errno;
3044 return -1;
3046 if (close(logfd)) {
3047 int save_errno = errno;
3048 error("Unable to append to %s", log_file);
3049 errno = save_errno;
3050 return -1;
3052 return 0;
3055 static int log_ref_write(const char *refname, const unsigned char *old_sha1,
3056 const unsigned char *new_sha1, const char *msg)
3058 struct strbuf sb = STRBUF_INIT;
3059 int ret = log_ref_write_1(refname, old_sha1, new_sha1, msg, &sb);
3060 strbuf_release(&sb);
3061 return ret;
3064 int is_branch(const char *refname)
3066 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
3070 * Write sha1 into the ref specified by the lock. Make sure that errno
3071 * is sane on error.
3073 static int write_ref_sha1(struct ref_lock *lock,
3074 const unsigned char *sha1, const char *logmsg)
3076 static char term = '\n';
3077 struct object *o;
3079 o = parse_object(sha1);
3080 if (!o) {
3081 error("Trying to write ref %s with nonexistent object %s",
3082 lock->ref_name, sha1_to_hex(sha1));
3083 unlock_ref(lock);
3084 errno = EINVAL;
3085 return -1;
3087 if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
3088 error("Trying to write non-commit object %s to branch %s",
3089 sha1_to_hex(sha1), lock->ref_name);
3090 unlock_ref(lock);
3091 errno = EINVAL;
3092 return -1;
3094 if (write_in_full(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
3095 write_in_full(lock->lock_fd, &term, 1) != 1 ||
3096 close_ref(lock) < 0) {
3097 int save_errno = errno;
3098 error("Couldn't write %s", lock->lk->filename.buf);
3099 unlock_ref(lock);
3100 errno = save_errno;
3101 return -1;
3103 clear_loose_ref_cache(&ref_cache);
3104 if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
3105 (strcmp(lock->ref_name, lock->orig_ref_name) &&
3106 log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
3107 unlock_ref(lock);
3108 return -1;
3110 if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
3112 * Special hack: If a branch is updated directly and HEAD
3113 * points to it (may happen on the remote side of a push
3114 * for example) then logically the HEAD reflog should be
3115 * updated too.
3116 * A generic solution implies reverse symref information,
3117 * but finding all symrefs pointing to the given branch
3118 * would be rather costly for this rare event (the direct
3119 * update of a branch) to be worth it. So let's cheat and
3120 * check with HEAD only which should cover 99% of all usage
3121 * scenarios (even 100% of the default ones).
3123 unsigned char head_sha1[20];
3124 int head_flag;
3125 const char *head_ref;
3126 head_ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
3127 head_sha1, &head_flag);
3128 if (head_ref && (head_flag & REF_ISSYMREF) &&
3129 !strcmp(head_ref, lock->ref_name))
3130 log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);
3132 if (commit_ref(lock)) {
3133 error("Couldn't set %s", lock->ref_name);
3134 unlock_ref(lock);
3135 return -1;
3137 unlock_ref(lock);
3138 return 0;
3141 int create_symref(const char *ref_target, const char *refs_heads_master,
3142 const char *logmsg)
3144 const char *lockpath;
3145 char ref[1000];
3146 int fd, len, written;
3147 char *git_HEAD = git_pathdup("%s", ref_target);
3148 unsigned char old_sha1[20], new_sha1[20];
3150 if (logmsg && read_ref(ref_target, old_sha1))
3151 hashclr(old_sha1);
3153 if (safe_create_leading_directories(git_HEAD) < 0)
3154 return error("unable to create directory for %s", git_HEAD);
3156 #ifndef NO_SYMLINK_HEAD
3157 if (prefer_symlink_refs) {
3158 unlink(git_HEAD);
3159 if (!symlink(refs_heads_master, git_HEAD))
3160 goto done;
3161 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
3163 #endif
3165 len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
3166 if (sizeof(ref) <= len) {
3167 error("refname too long: %s", refs_heads_master);
3168 goto error_free_return;
3170 lockpath = mkpath("%s.lock", git_HEAD);
3171 fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
3172 if (fd < 0) {
3173 error("Unable to open %s for writing", lockpath);
3174 goto error_free_return;
3176 written = write_in_full(fd, ref, len);
3177 if (close(fd) != 0 || written != len) {
3178 error("Unable to write to %s", lockpath);
3179 goto error_unlink_return;
3181 if (rename(lockpath, git_HEAD) < 0) {
3182 error("Unable to create %s", git_HEAD);
3183 goto error_unlink_return;
3185 if (adjust_shared_perm(git_HEAD)) {
3186 error("Unable to fix permissions on %s", lockpath);
3187 error_unlink_return:
3188 unlink_or_warn(lockpath);
3189 error_free_return:
3190 free(git_HEAD);
3191 return -1;
3194 #ifndef NO_SYMLINK_HEAD
3195 done:
3196 #endif
3197 if (logmsg && !read_ref(refs_heads_master, new_sha1))
3198 log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
3200 free(git_HEAD);
3201 return 0;
3204 struct read_ref_at_cb {
3205 const char *refname;
3206 unsigned long at_time;
3207 int cnt;
3208 int reccnt;
3209 unsigned char *sha1;
3210 int found_it;
3212 unsigned char osha1[20];
3213 unsigned char nsha1[20];
3214 int tz;
3215 unsigned long date;
3216 char **msg;
3217 unsigned long *cutoff_time;
3218 int *cutoff_tz;
3219 int *cutoff_cnt;
3222 static int read_ref_at_ent(unsigned char *osha1, unsigned char *nsha1,
3223 const char *email, unsigned long timestamp, int tz,
3224 const char *message, void *cb_data)
3226 struct read_ref_at_cb *cb = cb_data;
3228 cb->reccnt++;
3229 cb->tz = tz;
3230 cb->date = timestamp;
3232 if (timestamp <= cb->at_time || cb->cnt == 0) {
3233 if (cb->msg)
3234 *cb->msg = xstrdup(message);
3235 if (cb->cutoff_time)
3236 *cb->cutoff_time = timestamp;
3237 if (cb->cutoff_tz)
3238 *cb->cutoff_tz = tz;
3239 if (cb->cutoff_cnt)
3240 *cb->cutoff_cnt = cb->reccnt - 1;
3242 * we have not yet updated cb->[n|o]sha1 so they still
3243 * hold the values for the previous record.
3245 if (!is_null_sha1(cb->osha1)) {
3246 hashcpy(cb->sha1, nsha1);
3247 if (hashcmp(cb->osha1, nsha1))
3248 warning("Log for ref %s has gap after %s.",
3249 cb->refname, show_date(cb->date, cb->tz, DATE_RFC2822));
3251 else if (cb->date == cb->at_time)
3252 hashcpy(cb->sha1, nsha1);
3253 else if (hashcmp(nsha1, cb->sha1))
3254 warning("Log for ref %s unexpectedly ended on %s.",
3255 cb->refname, show_date(cb->date, cb->tz,
3256 DATE_RFC2822));
3257 hashcpy(cb->osha1, osha1);
3258 hashcpy(cb->nsha1, nsha1);
3259 cb->found_it = 1;
3260 return 1;
3262 hashcpy(cb->osha1, osha1);
3263 hashcpy(cb->nsha1, nsha1);
3264 if (cb->cnt > 0)
3265 cb->cnt--;
3266 return 0;
3269 static int read_ref_at_ent_oldest(unsigned char *osha1, unsigned char *nsha1,
3270 const char *email, unsigned long timestamp,
3271 int tz, const char *message, void *cb_data)
3273 struct read_ref_at_cb *cb = cb_data;
3275 if (cb->msg)
3276 *cb->msg = xstrdup(message);
3277 if (cb->cutoff_time)
3278 *cb->cutoff_time = timestamp;
3279 if (cb->cutoff_tz)
3280 *cb->cutoff_tz = tz;
3281 if (cb->cutoff_cnt)
3282 *cb->cutoff_cnt = cb->reccnt;
3283 hashcpy(cb->sha1, osha1);
3284 if (is_null_sha1(cb->sha1))
3285 hashcpy(cb->sha1, nsha1);
3286 /* We just want the first entry */
3287 return 1;
3290 int read_ref_at(const char *refname, unsigned int flags, unsigned long at_time, int cnt,
3291 unsigned char *sha1, char **msg,
3292 unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
3294 struct read_ref_at_cb cb;
3296 memset(&cb, 0, sizeof(cb));
3297 cb.refname = refname;
3298 cb.at_time = at_time;
3299 cb.cnt = cnt;
3300 cb.msg = msg;
3301 cb.cutoff_time = cutoff_time;
3302 cb.cutoff_tz = cutoff_tz;
3303 cb.cutoff_cnt = cutoff_cnt;
3304 cb.sha1 = sha1;
3306 for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
3308 if (!cb.reccnt) {
3309 if (flags & GET_SHA1_QUIETLY)
3310 exit(128);
3311 else
3312 die("Log for %s is empty.", refname);
3314 if (cb.found_it)
3315 return 0;
3317 for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
3319 return 1;
3322 int reflog_exists(const char *refname)
3324 struct stat st;
3326 return !lstat(git_path("logs/%s", refname), &st) &&
3327 S_ISREG(st.st_mode);
3330 int delete_reflog(const char *refname)
3332 return remove_path(git_path("logs/%s", refname));
3335 static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data)
3337 unsigned char osha1[20], nsha1[20];
3338 char *email_end, *message;
3339 unsigned long timestamp;
3340 int tz;
3342 /* old SP new SP name <email> SP time TAB msg LF */
3343 if (sb->len < 83 || sb->buf[sb->len - 1] != '\n' ||
3344 get_sha1_hex(sb->buf, osha1) || sb->buf[40] != ' ' ||
3345 get_sha1_hex(sb->buf + 41, nsha1) || sb->buf[81] != ' ' ||
3346 !(email_end = strchr(sb->buf + 82, '>')) ||
3347 email_end[1] != ' ' ||
3348 !(timestamp = strtoul(email_end + 2, &message, 10)) ||
3349 !message || message[0] != ' ' ||
3350 (message[1] != '+' && message[1] != '-') ||
3351 !isdigit(message[2]) || !isdigit(message[3]) ||
3352 !isdigit(message[4]) || !isdigit(message[5]))
3353 return 0; /* corrupt? */
3354 email_end[1] = '\0';
3355 tz = strtol(message + 1, NULL, 10);
3356 if (message[6] != '\t')
3357 message += 6;
3358 else
3359 message += 7;
3360 return fn(osha1, nsha1, sb->buf + 82, timestamp, tz, message, cb_data);
3363 static char *find_beginning_of_line(char *bob, char *scan)
3365 while (bob < scan && *(--scan) != '\n')
3366 ; /* keep scanning backwards */
3368 * Return either beginning of the buffer, or LF at the end of
3369 * the previous line.
3371 return scan;
3374 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn, void *cb_data)
3376 struct strbuf sb = STRBUF_INIT;
3377 FILE *logfp;
3378 long pos;
3379 int ret = 0, at_tail = 1;
3381 logfp = fopen(git_path("logs/%s", refname), "r");
3382 if (!logfp)
3383 return -1;
3385 /* Jump to the end */
3386 if (fseek(logfp, 0, SEEK_END) < 0)
3387 return error("cannot seek back reflog for %s: %s",
3388 refname, strerror(errno));
3389 pos = ftell(logfp);
3390 while (!ret && 0 < pos) {
3391 int cnt;
3392 size_t nread;
3393 char buf[BUFSIZ];
3394 char *endp, *scanp;
3396 /* Fill next block from the end */
3397 cnt = (sizeof(buf) < pos) ? sizeof(buf) : pos;
3398 if (fseek(logfp, pos - cnt, SEEK_SET))
3399 return error("cannot seek back reflog for %s: %s",
3400 refname, strerror(errno));
3401 nread = fread(buf, cnt, 1, logfp);
3402 if (nread != 1)
3403 return error("cannot read %d bytes from reflog for %s: %s",
3404 cnt, refname, strerror(errno));
3405 pos -= cnt;
3407 scanp = endp = buf + cnt;
3408 if (at_tail && scanp[-1] == '\n')
3409 /* Looking at the final LF at the end of the file */
3410 scanp--;
3411 at_tail = 0;
3413 while (buf < scanp) {
3415 * terminating LF of the previous line, or the beginning
3416 * of the buffer.
3418 char *bp;
3420 bp = find_beginning_of_line(buf, scanp);
3422 if (*bp == '\n') {
3424 * The newline is the end of the previous line,
3425 * so we know we have complete line starting
3426 * at (bp + 1). Prefix it onto any prior data
3427 * we collected for the line and process it.
3429 strbuf_splice(&sb, 0, 0, bp + 1, endp - (bp + 1));
3430 scanp = bp;
3431 endp = bp + 1;
3432 ret = show_one_reflog_ent(&sb, fn, cb_data);
3433 strbuf_reset(&sb);
3434 if (ret)
3435 break;
3436 } else if (!pos) {
3438 * We are at the start of the buffer, and the
3439 * start of the file; there is no previous
3440 * line, and we have everything for this one.
3441 * Process it, and we can end the loop.
3443 strbuf_splice(&sb, 0, 0, buf, endp - buf);
3444 ret = show_one_reflog_ent(&sb, fn, cb_data);
3445 strbuf_reset(&sb);
3446 break;
3449 if (bp == buf) {
3451 * We are at the start of the buffer, and there
3452 * is more file to read backwards. Which means
3453 * we are in the middle of a line. Note that we
3454 * may get here even if *bp was a newline; that
3455 * just means we are at the exact end of the
3456 * previous line, rather than some spot in the
3457 * middle.
3459 * Save away what we have to be combined with
3460 * the data from the next read.
3462 strbuf_splice(&sb, 0, 0, buf, endp - buf);
3463 break;
3468 if (!ret && sb.len)
3469 die("BUG: reverse reflog parser had leftover data");
3471 fclose(logfp);
3472 strbuf_release(&sb);
3473 return ret;
3476 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data)
3478 FILE *logfp;
3479 struct strbuf sb = STRBUF_INIT;
3480 int ret = 0;
3482 logfp = fopen(git_path("logs/%s", refname), "r");
3483 if (!logfp)
3484 return -1;
3486 while (!ret && !strbuf_getwholeline(&sb, logfp, '\n'))
3487 ret = show_one_reflog_ent(&sb, fn, cb_data);
3488 fclose(logfp);
3489 strbuf_release(&sb);
3490 return ret;
3493 * Call fn for each reflog in the namespace indicated by name. name
3494 * must be empty or end with '/'. Name will be used as a scratch
3495 * space, but its contents will be restored before return.
3497 static int do_for_each_reflog(struct strbuf *name, each_ref_fn fn, void *cb_data)
3499 DIR *d = opendir(git_path("logs/%s", name->buf));
3500 int retval = 0;
3501 struct dirent *de;
3502 int oldlen = name->len;
3504 if (!d)
3505 return name->len ? errno : 0;
3507 while ((de = readdir(d)) != NULL) {
3508 struct stat st;
3510 if (de->d_name[0] == '.')
3511 continue;
3512 if (ends_with(de->d_name, ".lock"))
3513 continue;
3514 strbuf_addstr(name, de->d_name);
3515 if (stat(git_path("logs/%s", name->buf), &st) < 0) {
3516 ; /* silently ignore */
3517 } else {
3518 if (S_ISDIR(st.st_mode)) {
3519 strbuf_addch(name, '/');
3520 retval = do_for_each_reflog(name, fn, cb_data);
3521 } else {
3522 unsigned char sha1[20];
3523 if (read_ref_full(name->buf, 0, sha1, NULL))
3524 retval = error("bad ref for %s", name->buf);
3525 else
3526 retval = fn(name->buf, sha1, 0, cb_data);
3528 if (retval)
3529 break;
3531 strbuf_setlen(name, oldlen);
3533 closedir(d);
3534 return retval;
3537 int for_each_reflog(each_ref_fn fn, void *cb_data)
3539 int retval;
3540 struct strbuf name;
3541 strbuf_init(&name, PATH_MAX);
3542 retval = do_for_each_reflog(&name, fn, cb_data);
3543 strbuf_release(&name);
3544 return retval;
3548 * Information needed for a single ref update. Set new_sha1 to the new
3549 * value or to null_sha1 to delete the ref. To check the old value
3550 * while the ref is locked, set (flags & REF_HAVE_OLD) and set
3551 * old_sha1 to the old value, or to null_sha1 to ensure the ref does
3552 * not exist before update.
3554 struct ref_update {
3556 * If (flags & REF_HAVE_NEW), set the reference to this value:
3558 unsigned char new_sha1[20];
3560 * If (flags & REF_HAVE_OLD), check that the reference
3561 * previously had this value:
3563 unsigned char old_sha1[20];
3565 * One or more of REF_HAVE_NEW, REF_HAVE_OLD, REF_NODEREF,
3566 * REF_DELETING, and REF_ISPRUNING:
3568 unsigned int flags;
3569 struct ref_lock *lock;
3570 int type;
3571 char *msg;
3572 const char refname[FLEX_ARRAY];
3576 * Transaction states.
3577 * OPEN: The transaction is in a valid state and can accept new updates.
3578 * An OPEN transaction can be committed.
3579 * CLOSED: A closed transaction is no longer active and no other operations
3580 * than free can be used on it in this state.
3581 * A transaction can either become closed by successfully committing
3582 * an active transaction or if there is a failure while building
3583 * the transaction thus rendering it failed/inactive.
3585 enum ref_transaction_state {
3586 REF_TRANSACTION_OPEN = 0,
3587 REF_TRANSACTION_CLOSED = 1
3591 * Data structure for holding a reference transaction, which can
3592 * consist of checks and updates to multiple references, carried out
3593 * as atomically as possible. This structure is opaque to callers.
3595 struct ref_transaction {
3596 struct ref_update **updates;
3597 size_t alloc;
3598 size_t nr;
3599 enum ref_transaction_state state;
3602 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
3604 assert(err);
3606 return xcalloc(1, sizeof(struct ref_transaction));
3609 void ref_transaction_free(struct ref_transaction *transaction)
3611 int i;
3613 if (!transaction)
3614 return;
3616 for (i = 0; i < transaction->nr; i++) {
3617 free(transaction->updates[i]->msg);
3618 free(transaction->updates[i]);
3620 free(transaction->updates);
3621 free(transaction);
3624 static struct ref_update *add_update(struct ref_transaction *transaction,
3625 const char *refname)
3627 size_t len = strlen(refname);
3628 struct ref_update *update = xcalloc(1, sizeof(*update) + len + 1);
3630 strcpy((char *)update->refname, refname);
3631 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
3632 transaction->updates[transaction->nr++] = update;
3633 return update;
3636 int ref_transaction_update(struct ref_transaction *transaction,
3637 const char *refname,
3638 const unsigned char *new_sha1,
3639 const unsigned char *old_sha1,
3640 unsigned int flags, const char *msg,
3641 struct strbuf *err)
3643 struct ref_update *update;
3645 assert(err);
3647 if (transaction->state != REF_TRANSACTION_OPEN)
3648 die("BUG: update called for transaction that is not open");
3650 if (new_sha1 && !is_null_sha1(new_sha1) &&
3651 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
3652 strbuf_addf(err, "refusing to update ref with bad name %s",
3653 refname);
3654 return -1;
3657 update = add_update(transaction, refname);
3658 if (new_sha1) {
3659 hashcpy(update->new_sha1, new_sha1);
3660 flags |= REF_HAVE_NEW;
3662 if (old_sha1) {
3663 hashcpy(update->old_sha1, old_sha1);
3664 flags |= REF_HAVE_OLD;
3666 update->flags = flags;
3667 if (msg)
3668 update->msg = xstrdup(msg);
3669 return 0;
3672 int ref_transaction_create(struct ref_transaction *transaction,
3673 const char *refname,
3674 const unsigned char *new_sha1,
3675 unsigned int flags, const char *msg,
3676 struct strbuf *err)
3678 if (!new_sha1 || is_null_sha1(new_sha1))
3679 die("BUG: create called without valid new_sha1");
3680 return ref_transaction_update(transaction, refname, new_sha1,
3681 null_sha1, flags, msg, err);
3684 int ref_transaction_delete(struct ref_transaction *transaction,
3685 const char *refname,
3686 const unsigned char *old_sha1,
3687 unsigned int flags, const char *msg,
3688 struct strbuf *err)
3690 if (old_sha1 && is_null_sha1(old_sha1))
3691 die("BUG: delete called with old_sha1 set to zeros");
3692 return ref_transaction_update(transaction, refname,
3693 null_sha1, old_sha1,
3694 flags, msg, err);
3697 int ref_transaction_verify(struct ref_transaction *transaction,
3698 const char *refname,
3699 const unsigned char *old_sha1,
3700 unsigned int flags,
3701 struct strbuf *err)
3703 if (!old_sha1)
3704 die("BUG: verify called with old_sha1 set to NULL");
3705 return ref_transaction_update(transaction, refname,
3706 NULL, old_sha1,
3707 flags, NULL, err);
3710 int update_ref(const char *msg, const char *refname,
3711 const unsigned char *new_sha1, const unsigned char *old_sha1,
3712 unsigned int flags, enum action_on_err onerr)
3714 struct ref_transaction *t;
3715 struct strbuf err = STRBUF_INIT;
3717 t = ref_transaction_begin(&err);
3718 if (!t ||
3719 ref_transaction_update(t, refname, new_sha1, old_sha1,
3720 flags, msg, &err) ||
3721 ref_transaction_commit(t, &err)) {
3722 const char *str = "update_ref failed for ref '%s': %s";
3724 ref_transaction_free(t);
3725 switch (onerr) {
3726 case UPDATE_REFS_MSG_ON_ERR:
3727 error(str, refname, err.buf);
3728 break;
3729 case UPDATE_REFS_DIE_ON_ERR:
3730 die(str, refname, err.buf);
3731 break;
3732 case UPDATE_REFS_QUIET_ON_ERR:
3733 break;
3735 strbuf_release(&err);
3736 return 1;
3738 strbuf_release(&err);
3739 ref_transaction_free(t);
3740 return 0;
3743 static int ref_update_compare(const void *r1, const void *r2)
3745 const struct ref_update * const *u1 = r1;
3746 const struct ref_update * const *u2 = r2;
3747 return strcmp((*u1)->refname, (*u2)->refname);
3750 static int ref_update_reject_duplicates(struct ref_update **updates, int n,
3751 struct strbuf *err)
3753 int i;
3755 assert(err);
3757 for (i = 1; i < n; i++)
3758 if (!strcmp(updates[i - 1]->refname, updates[i]->refname)) {
3759 strbuf_addf(err,
3760 "Multiple updates for ref '%s' not allowed.",
3761 updates[i]->refname);
3762 return 1;
3764 return 0;
3767 int ref_transaction_commit(struct ref_transaction *transaction,
3768 struct strbuf *err)
3770 int ret = 0, i;
3771 int n = transaction->nr;
3772 struct ref_update **updates = transaction->updates;
3773 struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;
3774 struct string_list_item *ref_to_delete;
3776 assert(err);
3778 if (transaction->state != REF_TRANSACTION_OPEN)
3779 die("BUG: commit called for transaction that is not open");
3781 if (!n) {
3782 transaction->state = REF_TRANSACTION_CLOSED;
3783 return 0;
3786 /* Copy, sort, and reject duplicate refs */
3787 qsort(updates, n, sizeof(*updates), ref_update_compare);
3788 if (ref_update_reject_duplicates(updates, n, err)) {
3789 ret = TRANSACTION_GENERIC_ERROR;
3790 goto cleanup;
3793 /* Acquire all locks while verifying old values */
3794 for (i = 0; i < n; i++) {
3795 struct ref_update *update = updates[i];
3796 unsigned int flags = update->flags;
3798 if ((flags & REF_HAVE_NEW) && is_null_sha1(update->new_sha1))
3799 flags |= REF_DELETING;
3800 update->lock = lock_ref_sha1_basic(
3801 update->refname,
3802 ((update->flags & REF_HAVE_OLD) ?
3803 update->old_sha1 : NULL),
3804 NULL,
3805 flags,
3806 &update->type);
3807 if (!update->lock) {
3808 ret = (errno == ENOTDIR)
3809 ? TRANSACTION_NAME_CONFLICT
3810 : TRANSACTION_GENERIC_ERROR;
3811 strbuf_addf(err, "Cannot lock the ref '%s'.",
3812 update->refname);
3813 goto cleanup;
3817 /* Perform updates first so live commits remain referenced */
3818 for (i = 0; i < n; i++) {
3819 struct ref_update *update = updates[i];
3820 int flags = update->flags;
3822 if ((flags & REF_HAVE_NEW) && !is_null_sha1(update->new_sha1)) {
3823 int overwriting_symref = ((update->type & REF_ISSYMREF) &&
3824 (update->flags & REF_NODEREF));
3826 if (!overwriting_symref
3827 && !hashcmp(update->lock->old_sha1, update->new_sha1)) {
3829 * The reference already has the desired
3830 * value, so we don't need to write it.
3832 unlock_ref(update->lock);
3833 update->lock = NULL;
3834 } else if (write_ref_sha1(update->lock, update->new_sha1,
3835 update->msg)) {
3836 update->lock = NULL; /* freed by write_ref_sha1 */
3837 strbuf_addf(err, "Cannot update the ref '%s'.",
3838 update->refname);
3839 ret = TRANSACTION_GENERIC_ERROR;
3840 goto cleanup;
3841 } else {
3842 /* freed by write_ref_sha1(): */
3843 update->lock = NULL;
3848 /* Perform deletes now that updates are safely completed */
3849 for (i = 0; i < n; i++) {
3850 struct ref_update *update = updates[i];
3851 int flags = update->flags;
3853 if ((flags & REF_HAVE_NEW) && is_null_sha1(update->new_sha1)) {
3854 if (delete_ref_loose(update->lock, update->type, err)) {
3855 ret = TRANSACTION_GENERIC_ERROR;
3856 goto cleanup;
3859 if (!(flags & REF_ISPRUNING))
3860 string_list_append(&refs_to_delete,
3861 update->lock->ref_name);
3865 if (repack_without_refs(&refs_to_delete, err)) {
3866 ret = TRANSACTION_GENERIC_ERROR;
3867 goto cleanup;
3869 for_each_string_list_item(ref_to_delete, &refs_to_delete)
3870 unlink_or_warn(git_path("logs/%s", ref_to_delete->string));
3871 clear_loose_ref_cache(&ref_cache);
3873 cleanup:
3874 transaction->state = REF_TRANSACTION_CLOSED;
3876 for (i = 0; i < n; i++)
3877 if (updates[i]->lock)
3878 unlock_ref(updates[i]->lock);
3879 string_list_clear(&refs_to_delete, 0);
3880 return ret;
3883 char *shorten_unambiguous_ref(const char *refname, int strict)
3885 int i;
3886 static char **scanf_fmts;
3887 static int nr_rules;
3888 char *short_name;
3890 if (!nr_rules) {
3892 * Pre-generate scanf formats from ref_rev_parse_rules[].
3893 * Generate a format suitable for scanf from a
3894 * ref_rev_parse_rules rule by interpolating "%s" at the
3895 * location of the "%.*s".
3897 size_t total_len = 0;
3898 size_t offset = 0;
3900 /* the rule list is NULL terminated, count them first */
3901 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
3902 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
3903 total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
3905 scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
3907 offset = 0;
3908 for (i = 0; i < nr_rules; i++) {
3909 assert(offset < total_len);
3910 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
3911 offset += snprintf(scanf_fmts[i], total_len - offset,
3912 ref_rev_parse_rules[i], 2, "%s") + 1;
3916 /* bail out if there are no rules */
3917 if (!nr_rules)
3918 return xstrdup(refname);
3920 /* buffer for scanf result, at most refname must fit */
3921 short_name = xstrdup(refname);
3923 /* skip first rule, it will always match */
3924 for (i = nr_rules - 1; i > 0 ; --i) {
3925 int j;
3926 int rules_to_fail = i;
3927 int short_name_len;
3929 if (1 != sscanf(refname, scanf_fmts[i], short_name))
3930 continue;
3932 short_name_len = strlen(short_name);
3935 * in strict mode, all (except the matched one) rules
3936 * must fail to resolve to a valid non-ambiguous ref
3938 if (strict)
3939 rules_to_fail = nr_rules;
3942 * check if the short name resolves to a valid ref,
3943 * but use only rules prior to the matched one
3945 for (j = 0; j < rules_to_fail; j++) {
3946 const char *rule = ref_rev_parse_rules[j];
3947 char refname[PATH_MAX];
3949 /* skip matched rule */
3950 if (i == j)
3951 continue;
3954 * the short name is ambiguous, if it resolves
3955 * (with this previous rule) to a valid ref
3956 * read_ref() returns 0 on success
3958 mksnpath(refname, sizeof(refname),
3959 rule, short_name_len, short_name);
3960 if (ref_exists(refname))
3961 break;
3965 * short name is non-ambiguous if all previous rules
3966 * haven't resolved to a valid ref
3968 if (j == rules_to_fail)
3969 return short_name;
3972 free(short_name);
3973 return xstrdup(refname);
3976 static struct string_list *hide_refs;
3978 int parse_hide_refs_config(const char *var, const char *value, const char *section)
3980 if (!strcmp("transfer.hiderefs", var) ||
3981 /* NEEDSWORK: use parse_config_key() once both are merged */
3982 (starts_with(var, section) && var[strlen(section)] == '.' &&
3983 !strcmp(var + strlen(section), ".hiderefs"))) {
3984 char *ref;
3985 int len;
3987 if (!value)
3988 return config_error_nonbool(var);
3989 ref = xstrdup(value);
3990 len = strlen(ref);
3991 while (len && ref[len - 1] == '/')
3992 ref[--len] = '\0';
3993 if (!hide_refs) {
3994 hide_refs = xcalloc(1, sizeof(*hide_refs));
3995 hide_refs->strdup_strings = 1;
3997 string_list_append(hide_refs, ref);
3999 return 0;
4002 int ref_is_hidden(const char *refname)
4004 struct string_list_item *item;
4006 if (!hide_refs)
4007 return 0;
4008 for_each_string_list_item(item, hide_refs) {
4009 int len;
4010 if (!starts_with(refname, item->string))
4011 continue;
4012 len = strlen(item->string);
4013 if (!refname[len] || refname[len] == '/')
4014 return 1;
4016 return 0;
4019 struct expire_reflog_cb {
4020 unsigned int flags;
4021 reflog_expiry_should_prune_fn *should_prune_fn;
4022 void *policy_cb;
4023 FILE *newlog;
4024 unsigned char last_kept_sha1[20];
4027 static int expire_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
4028 const char *email, unsigned long timestamp, int tz,
4029 const char *message, void *cb_data)
4031 struct expire_reflog_cb *cb = cb_data;
4032 struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;
4034 if (cb->flags & EXPIRE_REFLOGS_REWRITE)
4035 osha1 = cb->last_kept_sha1;
4037 if ((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,
4038 message, policy_cb)) {
4039 if (!cb->newlog)
4040 printf("would prune %s", message);
4041 else if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
4042 printf("prune %s", message);
4043 } else {
4044 if (cb->newlog) {
4045 fprintf(cb->newlog, "%s %s %s %lu %+05d\t%s",
4046 sha1_to_hex(osha1), sha1_to_hex(nsha1),
4047 email, timestamp, tz, message);
4048 hashcpy(cb->last_kept_sha1, nsha1);
4050 if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
4051 printf("keep %s", message);
4053 return 0;
4056 int reflog_expire(const char *refname, const unsigned char *sha1,
4057 unsigned int flags,
4058 reflog_expiry_prepare_fn prepare_fn,
4059 reflog_expiry_should_prune_fn should_prune_fn,
4060 reflog_expiry_cleanup_fn cleanup_fn,
4061 void *policy_cb_data)
4063 static struct lock_file reflog_lock;
4064 struct expire_reflog_cb cb;
4065 struct ref_lock *lock;
4066 char *log_file;
4067 int status = 0;
4068 int type;
4070 memset(&cb, 0, sizeof(cb));
4071 cb.flags = flags;
4072 cb.policy_cb = policy_cb_data;
4073 cb.should_prune_fn = should_prune_fn;
4076 * The reflog file is locked by holding the lock on the
4077 * reference itself, plus we might need to update the
4078 * reference if --updateref was specified:
4080 lock = lock_ref_sha1_basic(refname, sha1, NULL, 0, &type);
4081 if (!lock)
4082 return error("cannot lock ref '%s'", refname);
4083 if (!reflog_exists(refname)) {
4084 unlock_ref(lock);
4085 return 0;
4088 log_file = git_pathdup("logs/%s", refname);
4089 if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
4091 * Even though holding $GIT_DIR/logs/$reflog.lock has
4092 * no locking implications, we use the lock_file
4093 * machinery here anyway because it does a lot of the
4094 * work we need, including cleaning up if the program
4095 * exits unexpectedly.
4097 if (hold_lock_file_for_update(&reflog_lock, log_file, 0) < 0) {
4098 struct strbuf err = STRBUF_INIT;
4099 unable_to_lock_message(log_file, errno, &err);
4100 error("%s", err.buf);
4101 strbuf_release(&err);
4102 goto failure;
4104 cb.newlog = fdopen_lock_file(&reflog_lock, "w");
4105 if (!cb.newlog) {
4106 error("cannot fdopen %s (%s)",
4107 reflog_lock.filename.buf, strerror(errno));
4108 goto failure;
4112 (*prepare_fn)(refname, sha1, cb.policy_cb);
4113 for_each_reflog_ent(refname, expire_reflog_ent, &cb);
4114 (*cleanup_fn)(cb.policy_cb);
4116 if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
4118 * It doesn't make sense to adjust a reference pointed
4119 * to by a symbolic ref based on expiring entries in
4120 * the symbolic reference's reflog. Nor can we update
4121 * a reference if there are no remaining reflog
4122 * entries.
4124 int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&
4125 !(type & REF_ISSYMREF) &&
4126 !is_null_sha1(cb.last_kept_sha1);
4128 if (close_lock_file(&reflog_lock)) {
4129 status |= error("couldn't write %s: %s", log_file,
4130 strerror(errno));
4131 } else if (update &&
4132 (write_in_full(lock->lock_fd,
4133 sha1_to_hex(cb.last_kept_sha1), 40) != 40 ||
4134 write_str_in_full(lock->lock_fd, "\n") != 1 ||
4135 close_ref(lock) < 0)) {
4136 status |= error("couldn't write %s",
4137 lock->lk->filename.buf);
4138 rollback_lock_file(&reflog_lock);
4139 } else if (commit_lock_file(&reflog_lock)) {
4140 status |= error("unable to commit reflog '%s' (%s)",
4141 log_file, strerror(errno));
4142 } else if (update && commit_ref(lock)) {
4143 status |= error("couldn't set %s", lock->ref_name);
4146 free(log_file);
4147 unlock_ref(lock);
4148 return status;
4150 failure:
4151 rollback_lock_file(&reflog_lock);
4152 free(log_file);
4153 unlock_ref(lock);
4154 return -1;