refs: add REF_FORCE_CREATE_REFLOG flag
[alt-git.git] / refs.c
blob97a75f3c3125d6a73e020ee2da73fcb6cce3d13c
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 struct object_id old_oid;
17 * How to handle various characters in refnames:
18 * 0: An acceptable character for refs
19 * 1: End-of-component
20 * 2: ., look for a preceding . to reject .. in refs
21 * 3: {, look for a preceding @ to reject @{ in refs
22 * 4: A bad character: ASCII control characters, "~", "^", ":" or SP
24 static unsigned char refname_disposition[256] = {
25 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
26 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
27 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 1,
28 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
29 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
30 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
31 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
32 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
36 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken
37 * refs (i.e., because the reference is about to be deleted anyway).
39 #define REF_DELETING 0x02
42 * Used as a flag in ref_update::flags when a loose ref is being
43 * pruned.
45 #define REF_ISPRUNING 0x04
48 * Used as a flag in ref_update::flags when the reference should be
49 * updated to new_sha1.
51 #define REF_HAVE_NEW 0x08
54 * Used as a flag in ref_update::flags when old_sha1 should be
55 * checked.
57 #define REF_HAVE_OLD 0x10
60 * Used as a flag in ref_update::flags when the lockfile needs to be
61 * committed.
63 #define REF_NEEDS_COMMIT 0x20
66 * 0x40 is REF_FORCE_CREATE_REFLOG, so skip it if you're adding a
67 * value to ref_update::flags
71 * Try to read one refname component from the front of refname.
72 * Return the length of the component found, or -1 if the component is
73 * not legal. It is legal if it is something reasonable to have under
74 * ".git/refs/"; We do not like it if:
76 * - any path component of it begins with ".", or
77 * - it has double dots "..", or
78 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
79 * - it ends with a "/".
80 * - it ends with ".lock"
81 * - it contains a "\" (backslash)
83 static int check_refname_component(const char *refname, int flags)
85 const char *cp;
86 char last = '\0';
88 for (cp = refname; ; cp++) {
89 int ch = *cp & 255;
90 unsigned char disp = refname_disposition[ch];
91 switch (disp) {
92 case 1:
93 goto out;
94 case 2:
95 if (last == '.')
96 return -1; /* Refname contains "..". */
97 break;
98 case 3:
99 if (last == '@')
100 return -1; /* Refname contains "@{". */
101 break;
102 case 4:
103 return -1;
105 last = ch;
107 out:
108 if (cp == refname)
109 return 0; /* Component has zero length. */
110 if (refname[0] == '.')
111 return -1; /* Component starts with '.'. */
112 if (cp - refname >= LOCK_SUFFIX_LEN &&
113 !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
114 return -1; /* Refname ends with ".lock". */
115 return cp - refname;
118 int check_refname_format(const char *refname, int flags)
120 int component_len, component_count = 0;
122 if (!strcmp(refname, "@"))
123 /* Refname is a single character '@'. */
124 return -1;
126 while (1) {
127 /* We are at the start of a path component. */
128 component_len = check_refname_component(refname, flags);
129 if (component_len <= 0) {
130 if ((flags & REFNAME_REFSPEC_PATTERN) &&
131 refname[0] == '*' &&
132 (refname[1] == '\0' || refname[1] == '/')) {
133 /* Accept one wildcard as a full refname component. */
134 flags &= ~REFNAME_REFSPEC_PATTERN;
135 component_len = 1;
136 } else {
137 return -1;
140 component_count++;
141 if (refname[component_len] == '\0')
142 break;
143 /* Skip to next component. */
144 refname += component_len + 1;
147 if (refname[component_len - 1] == '.')
148 return -1; /* Refname ends with '.'. */
149 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
150 return -1; /* Refname has only one component. */
151 return 0;
154 struct ref_entry;
157 * Information used (along with the information in ref_entry) to
158 * describe a single cached reference. This data structure only
159 * occurs embedded in a union in struct ref_entry, and only when
160 * (ref_entry->flag & REF_DIR) is zero.
162 struct ref_value {
164 * The name of the object to which this reference resolves
165 * (which may be a tag object). If REF_ISBROKEN, this is
166 * null. If REF_ISSYMREF, then this is the name of the object
167 * referred to by the last reference in the symlink chain.
169 struct object_id oid;
172 * If REF_KNOWS_PEELED, then this field holds the peeled value
173 * of this reference, or null if the reference is known not to
174 * be peelable. See the documentation for peel_ref() for an
175 * exact definition of "peelable".
177 struct object_id peeled;
180 struct ref_cache;
183 * Information used (along with the information in ref_entry) to
184 * describe a level in the hierarchy of references. This data
185 * structure only occurs embedded in a union in struct ref_entry, and
186 * only when (ref_entry.flag & REF_DIR) is set. In that case,
187 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references
188 * in the directory have already been read:
190 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose
191 * or packed references, already read.
193 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose
194 * references that hasn't been read yet (nor has any of its
195 * subdirectories).
197 * Entries within a directory are stored within a growable array of
198 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i <
199 * sorted are sorted by their component name in strcmp() order and the
200 * remaining entries are unsorted.
202 * Loose references are read lazily, one directory at a time. When a
203 * directory of loose references is read, then all of the references
204 * in that directory are stored, and REF_INCOMPLETE stubs are created
205 * for any subdirectories, but the subdirectories themselves are not
206 * read. The reading is triggered by get_ref_dir().
208 struct ref_dir {
209 int nr, alloc;
212 * Entries with index 0 <= i < sorted are sorted by name. New
213 * entries are appended to the list unsorted, and are sorted
214 * only when required; thus we avoid the need to sort the list
215 * after the addition of every reference.
217 int sorted;
219 /* A pointer to the ref_cache that contains this ref_dir. */
220 struct ref_cache *ref_cache;
222 struct ref_entry **entries;
226 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01,
227 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are
228 * public values; see refs.h.
232 * The field ref_entry->u.value.peeled of this value entry contains
233 * the correct peeled value for the reference, which might be
234 * null_sha1 if the reference is not a tag or if it is broken.
236 #define REF_KNOWS_PEELED 0x10
238 /* ref_entry represents a directory of references */
239 #define REF_DIR 0x20
242 * Entry has not yet been read from disk (used only for REF_DIR
243 * entries representing loose references)
245 #define REF_INCOMPLETE 0x40
248 * A ref_entry represents either a reference or a "subdirectory" of
249 * references.
251 * Each directory in the reference namespace is represented by a
252 * ref_entry with (flags & REF_DIR) set and containing a subdir member
253 * that holds the entries in that directory that have been read so
254 * far. If (flags & REF_INCOMPLETE) is set, then the directory and
255 * its subdirectories haven't been read yet. REF_INCOMPLETE is only
256 * used for loose reference directories.
258 * References are represented by a ref_entry with (flags & REF_DIR)
259 * unset and a value member that describes the reference's value. The
260 * flag member is at the ref_entry level, but it is also needed to
261 * interpret the contents of the value field (in other words, a
262 * ref_value object is not very much use without the enclosing
263 * ref_entry).
265 * Reference names cannot end with slash and directories' names are
266 * always stored with a trailing slash (except for the top-level
267 * directory, which is always denoted by ""). This has two nice
268 * consequences: (1) when the entries in each subdir are sorted
269 * lexicographically by name (as they usually are), the references in
270 * a whole tree can be generated in lexicographic order by traversing
271 * the tree in left-to-right, depth-first order; (2) the names of
272 * references and subdirectories cannot conflict, and therefore the
273 * presence of an empty subdirectory does not block the creation of a
274 * similarly-named reference. (The fact that reference names with the
275 * same leading components can conflict *with each other* is a
276 * separate issue that is regulated by verify_refname_available().)
278 * Please note that the name field contains the fully-qualified
279 * reference (or subdirectory) name. Space could be saved by only
280 * storing the relative names. But that would require the full names
281 * to be generated on the fly when iterating in do_for_each_ref(), and
282 * would break callback functions, who have always been able to assume
283 * that the name strings that they are passed will not be freed during
284 * the iteration.
286 struct ref_entry {
287 unsigned char flag; /* ISSYMREF? ISPACKED? */
288 union {
289 struct ref_value value; /* if not (flags&REF_DIR) */
290 struct ref_dir subdir; /* if (flags&REF_DIR) */
291 } u;
293 * The full name of the reference (e.g., "refs/heads/master")
294 * or the full name of the directory with a trailing slash
295 * (e.g., "refs/heads/"):
297 char name[FLEX_ARRAY];
300 static void read_loose_refs(const char *dirname, struct ref_dir *dir);
302 static struct ref_dir *get_ref_dir(struct ref_entry *entry)
304 struct ref_dir *dir;
305 assert(entry->flag & REF_DIR);
306 dir = &entry->u.subdir;
307 if (entry->flag & REF_INCOMPLETE) {
308 read_loose_refs(entry->name, dir);
309 entry->flag &= ~REF_INCOMPLETE;
311 return dir;
315 * Check if a refname is safe.
316 * For refs that start with "refs/" we consider it safe as long they do
317 * not try to resolve to outside of refs/.
319 * For all other refs we only consider them safe iff they only contain
320 * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like
321 * "config").
323 static int refname_is_safe(const char *refname)
325 if (starts_with(refname, "refs/")) {
326 char *buf;
327 int result;
329 buf = xmalloc(strlen(refname) + 1);
331 * Does the refname try to escape refs/?
332 * For example: refs/foo/../bar is safe but refs/foo/../../bar
333 * is not.
335 result = !normalize_path_copy(buf, refname + strlen("refs/"));
336 free(buf);
337 return result;
339 while (*refname) {
340 if (!isupper(*refname) && *refname != '_')
341 return 0;
342 refname++;
344 return 1;
347 static struct ref_entry *create_ref_entry(const char *refname,
348 const unsigned char *sha1, int flag,
349 int check_name)
351 int len;
352 struct ref_entry *ref;
354 if (check_name &&
355 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
356 die("Reference has invalid format: '%s'", refname);
357 len = strlen(refname) + 1;
358 ref = xmalloc(sizeof(struct ref_entry) + len);
359 hashcpy(ref->u.value.oid.hash, sha1);
360 oidclr(&ref->u.value.peeled);
361 memcpy(ref->name, refname, len);
362 ref->flag = flag;
363 return ref;
366 static void clear_ref_dir(struct ref_dir *dir);
368 static void free_ref_entry(struct ref_entry *entry)
370 if (entry->flag & REF_DIR) {
372 * Do not use get_ref_dir() here, as that might
373 * trigger the reading of loose refs.
375 clear_ref_dir(&entry->u.subdir);
377 free(entry);
381 * Add a ref_entry to the end of dir (unsorted). Entry is always
382 * stored directly in dir; no recursion into subdirectories is
383 * done.
385 static void add_entry_to_dir(struct ref_dir *dir, struct ref_entry *entry)
387 ALLOC_GROW(dir->entries, dir->nr + 1, dir->alloc);
388 dir->entries[dir->nr++] = entry;
389 /* optimize for the case that entries are added in order */
390 if (dir->nr == 1 ||
391 (dir->nr == dir->sorted + 1 &&
392 strcmp(dir->entries[dir->nr - 2]->name,
393 dir->entries[dir->nr - 1]->name) < 0))
394 dir->sorted = dir->nr;
398 * Clear and free all entries in dir, recursively.
400 static void clear_ref_dir(struct ref_dir *dir)
402 int i;
403 for (i = 0; i < dir->nr; i++)
404 free_ref_entry(dir->entries[i]);
405 free(dir->entries);
406 dir->sorted = dir->nr = dir->alloc = 0;
407 dir->entries = NULL;
411 * Create a struct ref_entry object for the specified dirname.
412 * dirname is the name of the directory with a trailing slash (e.g.,
413 * "refs/heads/") or "" for the top-level directory.
415 static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache,
416 const char *dirname, size_t len,
417 int incomplete)
419 struct ref_entry *direntry;
420 direntry = xcalloc(1, sizeof(struct ref_entry) + len + 1);
421 memcpy(direntry->name, dirname, len);
422 direntry->name[len] = '\0';
423 direntry->u.subdir.ref_cache = ref_cache;
424 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE : 0);
425 return direntry;
428 static int ref_entry_cmp(const void *a, const void *b)
430 struct ref_entry *one = *(struct ref_entry **)a;
431 struct ref_entry *two = *(struct ref_entry **)b;
432 return strcmp(one->name, two->name);
435 static void sort_ref_dir(struct ref_dir *dir);
437 struct string_slice {
438 size_t len;
439 const char *str;
442 static int ref_entry_cmp_sslice(const void *key_, const void *ent_)
444 const struct string_slice *key = key_;
445 const struct ref_entry *ent = *(const struct ref_entry * const *)ent_;
446 int cmp = strncmp(key->str, ent->name, key->len);
447 if (cmp)
448 return cmp;
449 return '\0' - (unsigned char)ent->name[key->len];
453 * Return the index of the entry with the given refname from the
454 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if
455 * no such entry is found. dir must already be complete.
457 static int search_ref_dir(struct ref_dir *dir, const char *refname, size_t len)
459 struct ref_entry **r;
460 struct string_slice key;
462 if (refname == NULL || !dir->nr)
463 return -1;
465 sort_ref_dir(dir);
466 key.len = len;
467 key.str = refname;
468 r = bsearch(&key, dir->entries, dir->nr, sizeof(*dir->entries),
469 ref_entry_cmp_sslice);
471 if (r == NULL)
472 return -1;
474 return r - dir->entries;
478 * Search for a directory entry directly within dir (without
479 * recursing). Sort dir if necessary. subdirname must be a directory
480 * name (i.e., end in '/'). If mkdir is set, then create the
481 * directory if it is missing; otherwise, return NULL if the desired
482 * directory cannot be found. dir must already be complete.
484 static struct ref_dir *search_for_subdir(struct ref_dir *dir,
485 const char *subdirname, size_t len,
486 int mkdir)
488 int entry_index = search_ref_dir(dir, subdirname, len);
489 struct ref_entry *entry;
490 if (entry_index == -1) {
491 if (!mkdir)
492 return NULL;
494 * Since dir is complete, the absence of a subdir
495 * means that the subdir really doesn't exist;
496 * therefore, create an empty record for it but mark
497 * the record complete.
499 entry = create_dir_entry(dir->ref_cache, subdirname, len, 0);
500 add_entry_to_dir(dir, entry);
501 } else {
502 entry = dir->entries[entry_index];
504 return get_ref_dir(entry);
508 * If refname is a reference name, find the ref_dir within the dir
509 * tree that should hold refname. If refname is a directory name
510 * (i.e., ends in '/'), then return that ref_dir itself. dir must
511 * represent the top-level directory and must already be complete.
512 * Sort ref_dirs and recurse into subdirectories as necessary. If
513 * mkdir is set, then create any missing directories; otherwise,
514 * return NULL if the desired directory cannot be found.
516 static struct ref_dir *find_containing_dir(struct ref_dir *dir,
517 const char *refname, int mkdir)
519 const char *slash;
520 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
521 size_t dirnamelen = slash - refname + 1;
522 struct ref_dir *subdir;
523 subdir = search_for_subdir(dir, refname, dirnamelen, mkdir);
524 if (!subdir) {
525 dir = NULL;
526 break;
528 dir = subdir;
531 return dir;
535 * Find the value entry with the given name in dir, sorting ref_dirs
536 * and recursing into subdirectories as necessary. If the name is not
537 * found or it corresponds to a directory entry, return NULL.
539 static struct ref_entry *find_ref(struct ref_dir *dir, const char *refname)
541 int entry_index;
542 struct ref_entry *entry;
543 dir = find_containing_dir(dir, refname, 0);
544 if (!dir)
545 return NULL;
546 entry_index = search_ref_dir(dir, refname, strlen(refname));
547 if (entry_index == -1)
548 return NULL;
549 entry = dir->entries[entry_index];
550 return (entry->flag & REF_DIR) ? NULL : entry;
554 * Remove the entry with the given name from dir, recursing into
555 * subdirectories as necessary. If refname is the name of a directory
556 * (i.e., ends with '/'), then remove the directory and its contents.
557 * If the removal was successful, return the number of entries
558 * remaining in the directory entry that contained the deleted entry.
559 * If the name was not found, return -1. Please note that this
560 * function only deletes the entry from the cache; it does not delete
561 * it from the filesystem or ensure that other cache entries (which
562 * might be symbolic references to the removed entry) are updated.
563 * Nor does it remove any containing dir entries that might be made
564 * empty by the removal. dir must represent the top-level directory
565 * and must already be complete.
567 static int remove_entry(struct ref_dir *dir, const char *refname)
569 int refname_len = strlen(refname);
570 int entry_index;
571 struct ref_entry *entry;
572 int is_dir = refname[refname_len - 1] == '/';
573 if (is_dir) {
575 * refname represents a reference directory. Remove
576 * the trailing slash; otherwise we will get the
577 * directory *representing* refname rather than the
578 * one *containing* it.
580 char *dirname = xmemdupz(refname, refname_len - 1);
581 dir = find_containing_dir(dir, dirname, 0);
582 free(dirname);
583 } else {
584 dir = find_containing_dir(dir, refname, 0);
586 if (!dir)
587 return -1;
588 entry_index = search_ref_dir(dir, refname, refname_len);
589 if (entry_index == -1)
590 return -1;
591 entry = dir->entries[entry_index];
593 memmove(&dir->entries[entry_index],
594 &dir->entries[entry_index + 1],
595 (dir->nr - entry_index - 1) * sizeof(*dir->entries)
597 dir->nr--;
598 if (dir->sorted > entry_index)
599 dir->sorted--;
600 free_ref_entry(entry);
601 return dir->nr;
605 * Add a ref_entry to the ref_dir (unsorted), recursing into
606 * subdirectories as necessary. dir must represent the top-level
607 * directory. Return 0 on success.
609 static int add_ref(struct ref_dir *dir, struct ref_entry *ref)
611 dir = find_containing_dir(dir, ref->name, 1);
612 if (!dir)
613 return -1;
614 add_entry_to_dir(dir, ref);
615 return 0;
619 * Emit a warning and return true iff ref1 and ref2 have the same name
620 * and the same sha1. Die if they have the same name but different
621 * sha1s.
623 static int is_dup_ref(const struct ref_entry *ref1, const struct ref_entry *ref2)
625 if (strcmp(ref1->name, ref2->name))
626 return 0;
628 /* Duplicate name; make sure that they don't conflict: */
630 if ((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR))
631 /* This is impossible by construction */
632 die("Reference directory conflict: %s", ref1->name);
634 if (oidcmp(&ref1->u.value.oid, &ref2->u.value.oid))
635 die("Duplicated ref, and SHA1s don't match: %s", ref1->name);
637 warning("Duplicated ref: %s", ref1->name);
638 return 1;
642 * Sort the entries in dir non-recursively (if they are not already
643 * sorted) and remove any duplicate entries.
645 static void sort_ref_dir(struct ref_dir *dir)
647 int i, j;
648 struct ref_entry *last = NULL;
651 * This check also prevents passing a zero-length array to qsort(),
652 * which is a problem on some platforms.
654 if (dir->sorted == dir->nr)
655 return;
657 qsort(dir->entries, dir->nr, sizeof(*dir->entries), ref_entry_cmp);
659 /* Remove any duplicates: */
660 for (i = 0, j = 0; j < dir->nr; j++) {
661 struct ref_entry *entry = dir->entries[j];
662 if (last && is_dup_ref(last, entry))
663 free_ref_entry(entry);
664 else
665 last = dir->entries[i++] = entry;
667 dir->sorted = dir->nr = i;
670 /* Include broken references in a do_for_each_ref*() iteration: */
671 #define DO_FOR_EACH_INCLUDE_BROKEN 0x01
674 * Return true iff the reference described by entry can be resolved to
675 * an object in the database. Emit a warning if the referred-to
676 * object does not exist.
678 static int ref_resolves_to_object(struct ref_entry *entry)
680 if (entry->flag & REF_ISBROKEN)
681 return 0;
682 if (!has_sha1_file(entry->u.value.oid.hash)) {
683 error("%s does not point to a valid object!", entry->name);
684 return 0;
686 return 1;
690 * current_ref is a performance hack: when iterating over references
691 * using the for_each_ref*() functions, current_ref is set to the
692 * current reference's entry before calling the callback function. If
693 * the callback function calls peel_ref(), then peel_ref() first
694 * checks whether the reference to be peeled is the current reference
695 * (it usually is) and if so, returns that reference's peeled version
696 * if it is available. This avoids a refname lookup in a common case.
698 static struct ref_entry *current_ref;
700 typedef int each_ref_entry_fn(struct ref_entry *entry, void *cb_data);
702 struct ref_entry_cb {
703 const char *base;
704 int trim;
705 int flags;
706 each_ref_fn *fn;
707 void *cb_data;
711 * Handle one reference in a do_for_each_ref*()-style iteration,
712 * calling an each_ref_fn for each entry.
714 static int do_one_ref(struct ref_entry *entry, void *cb_data)
716 struct ref_entry_cb *data = cb_data;
717 struct ref_entry *old_current_ref;
718 int retval;
720 if (!starts_with(entry->name, data->base))
721 return 0;
723 if (!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&
724 !ref_resolves_to_object(entry))
725 return 0;
727 /* Store the old value, in case this is a recursive call: */
728 old_current_ref = current_ref;
729 current_ref = entry;
730 retval = data->fn(entry->name + data->trim, &entry->u.value.oid,
731 entry->flag, data->cb_data);
732 current_ref = old_current_ref;
733 return retval;
737 * Call fn for each reference in dir that has index in the range
738 * offset <= index < dir->nr. Recurse into subdirectories that are in
739 * that index range, sorting them before iterating. This function
740 * does not sort dir itself; it should be sorted beforehand. fn is
741 * called for all references, including broken ones.
743 static int do_for_each_entry_in_dir(struct ref_dir *dir, int offset,
744 each_ref_entry_fn fn, void *cb_data)
746 int i;
747 assert(dir->sorted == dir->nr);
748 for (i = offset; i < dir->nr; i++) {
749 struct ref_entry *entry = dir->entries[i];
750 int retval;
751 if (entry->flag & REF_DIR) {
752 struct ref_dir *subdir = get_ref_dir(entry);
753 sort_ref_dir(subdir);
754 retval = do_for_each_entry_in_dir(subdir, 0, fn, cb_data);
755 } else {
756 retval = fn(entry, cb_data);
758 if (retval)
759 return retval;
761 return 0;
765 * Call fn for each reference in the union of dir1 and dir2, in order
766 * by refname. Recurse into subdirectories. If a value entry appears
767 * in both dir1 and dir2, then only process the version that is in
768 * dir2. The input dirs must already be sorted, but subdirs will be
769 * sorted as needed. fn is called for all references, including
770 * broken ones.
772 static int do_for_each_entry_in_dirs(struct ref_dir *dir1,
773 struct ref_dir *dir2,
774 each_ref_entry_fn fn, void *cb_data)
776 int retval;
777 int i1 = 0, i2 = 0;
779 assert(dir1->sorted == dir1->nr);
780 assert(dir2->sorted == dir2->nr);
781 while (1) {
782 struct ref_entry *e1, *e2;
783 int cmp;
784 if (i1 == dir1->nr) {
785 return do_for_each_entry_in_dir(dir2, i2, fn, cb_data);
787 if (i2 == dir2->nr) {
788 return do_for_each_entry_in_dir(dir1, i1, fn, cb_data);
790 e1 = dir1->entries[i1];
791 e2 = dir2->entries[i2];
792 cmp = strcmp(e1->name, e2->name);
793 if (cmp == 0) {
794 if ((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) {
795 /* Both are directories; descend them in parallel. */
796 struct ref_dir *subdir1 = get_ref_dir(e1);
797 struct ref_dir *subdir2 = get_ref_dir(e2);
798 sort_ref_dir(subdir1);
799 sort_ref_dir(subdir2);
800 retval = do_for_each_entry_in_dirs(
801 subdir1, subdir2, fn, cb_data);
802 i1++;
803 i2++;
804 } else if (!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) {
805 /* Both are references; ignore the one from dir1. */
806 retval = fn(e2, cb_data);
807 i1++;
808 i2++;
809 } else {
810 die("conflict between reference and directory: %s",
811 e1->name);
813 } else {
814 struct ref_entry *e;
815 if (cmp < 0) {
816 e = e1;
817 i1++;
818 } else {
819 e = e2;
820 i2++;
822 if (e->flag & REF_DIR) {
823 struct ref_dir *subdir = get_ref_dir(e);
824 sort_ref_dir(subdir);
825 retval = do_for_each_entry_in_dir(
826 subdir, 0, fn, cb_data);
827 } else {
828 retval = fn(e, cb_data);
831 if (retval)
832 return retval;
837 * Load all of the refs from the dir into our in-memory cache. The hard work
838 * of loading loose refs is done by get_ref_dir(), so we just need to recurse
839 * through all of the sub-directories. We do not even need to care about
840 * sorting, as traversal order does not matter to us.
842 static void prime_ref_dir(struct ref_dir *dir)
844 int i;
845 for (i = 0; i < dir->nr; i++) {
846 struct ref_entry *entry = dir->entries[i];
847 if (entry->flag & REF_DIR)
848 prime_ref_dir(get_ref_dir(entry));
852 struct nonmatching_ref_data {
853 const struct string_list *skip;
854 const char *conflicting_refname;
857 static int nonmatching_ref_fn(struct ref_entry *entry, void *vdata)
859 struct nonmatching_ref_data *data = vdata;
861 if (data->skip && string_list_has_string(data->skip, entry->name))
862 return 0;
864 data->conflicting_refname = entry->name;
865 return 1;
869 * Return 0 if a reference named refname could be created without
870 * conflicting with the name of an existing reference in dir.
871 * Otherwise, return a negative value and write an explanation to err.
872 * If extras is non-NULL, it is a list of additional refnames with
873 * which refname is not allowed to conflict. If skip is non-NULL,
874 * ignore potential conflicts with refs in skip (e.g., because they
875 * are scheduled for deletion in the same operation). Behavior is
876 * undefined if the same name is listed in both extras and skip.
878 * Two reference names conflict if one of them exactly matches the
879 * leading components of the other; e.g., "refs/foo/bar" conflicts
880 * with both "refs/foo" and with "refs/foo/bar/baz" but not with
881 * "refs/foo/bar" or "refs/foo/barbados".
883 * extras and skip must be sorted.
885 static int verify_refname_available(const char *refname,
886 const struct string_list *extras,
887 const struct string_list *skip,
888 struct ref_dir *dir,
889 struct strbuf *err)
891 const char *slash;
892 int pos;
893 struct strbuf dirname = STRBUF_INIT;
894 int ret = -1;
897 * For the sake of comments in this function, suppose that
898 * refname is "refs/foo/bar".
901 assert(err);
903 strbuf_grow(&dirname, strlen(refname) + 1);
904 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
905 /* Expand dirname to the new prefix, not including the trailing slash: */
906 strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
909 * We are still at a leading dir of the refname (e.g.,
910 * "refs/foo"; if there is a reference with that name,
911 * it is a conflict, *unless* it is in skip.
913 if (dir) {
914 pos = search_ref_dir(dir, dirname.buf, dirname.len);
915 if (pos >= 0 &&
916 (!skip || !string_list_has_string(skip, dirname.buf))) {
918 * We found a reference whose name is
919 * a proper prefix of refname; e.g.,
920 * "refs/foo", and is not in skip.
922 strbuf_addf(err, "'%s' exists; cannot create '%s'",
923 dirname.buf, refname);
924 goto cleanup;
928 if (extras && string_list_has_string(extras, dirname.buf) &&
929 (!skip || !string_list_has_string(skip, dirname.buf))) {
930 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
931 refname, dirname.buf);
932 goto cleanup;
936 * Otherwise, we can try to continue our search with
937 * the next component. So try to look up the
938 * directory, e.g., "refs/foo/". If we come up empty,
939 * we know there is nothing under this whole prefix,
940 * but even in that case we still have to continue the
941 * search for conflicts with extras.
943 strbuf_addch(&dirname, '/');
944 if (dir) {
945 pos = search_ref_dir(dir, dirname.buf, dirname.len);
946 if (pos < 0) {
948 * There was no directory "refs/foo/",
949 * so there is nothing under this
950 * whole prefix. So there is no need
951 * to continue looking for conflicting
952 * references. But we need to continue
953 * looking for conflicting extras.
955 dir = NULL;
956 } else {
957 dir = get_ref_dir(dir->entries[pos]);
963 * We are at the leaf of our refname (e.g., "refs/foo/bar").
964 * There is no point in searching for a reference with that
965 * name, because a refname isn't considered to conflict with
966 * itself. But we still need to check for references whose
967 * names are in the "refs/foo/bar/" namespace, because they
968 * *do* conflict.
970 strbuf_addstr(&dirname, refname + dirname.len);
971 strbuf_addch(&dirname, '/');
973 if (dir) {
974 pos = search_ref_dir(dir, dirname.buf, dirname.len);
976 if (pos >= 0) {
978 * We found a directory named "$refname/"
979 * (e.g., "refs/foo/bar/"). It is a problem
980 * iff it contains any ref that is not in
981 * "skip".
983 struct nonmatching_ref_data data;
985 data.skip = skip;
986 data.conflicting_refname = NULL;
987 dir = get_ref_dir(dir->entries[pos]);
988 sort_ref_dir(dir);
989 if (do_for_each_entry_in_dir(dir, 0, nonmatching_ref_fn, &data)) {
990 strbuf_addf(err, "'%s' exists; cannot create '%s'",
991 data.conflicting_refname, refname);
992 goto cleanup;
997 if (extras) {
999 * Check for entries in extras that start with
1000 * "$refname/". We do that by looking for the place
1001 * where "$refname/" would be inserted in extras. If
1002 * there is an entry at that position that starts with
1003 * "$refname/" and is not in skip, then we have a
1004 * conflict.
1006 for (pos = string_list_find_insert_index(extras, dirname.buf, 0);
1007 pos < extras->nr; pos++) {
1008 const char *extra_refname = extras->items[pos].string;
1010 if (!starts_with(extra_refname, dirname.buf))
1011 break;
1013 if (!skip || !string_list_has_string(skip, extra_refname)) {
1014 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1015 refname, extra_refname);
1016 goto cleanup;
1021 /* No conflicts were found */
1022 ret = 0;
1024 cleanup:
1025 strbuf_release(&dirname);
1026 return ret;
1029 struct packed_ref_cache {
1030 struct ref_entry *root;
1033 * Count of references to the data structure in this instance,
1034 * including the pointer from ref_cache::packed if any. The
1035 * data will not be freed as long as the reference count is
1036 * nonzero.
1038 unsigned int referrers;
1041 * Iff the packed-refs file associated with this instance is
1042 * currently locked for writing, this points at the associated
1043 * lock (which is owned by somebody else). The referrer count
1044 * is also incremented when the file is locked and decremented
1045 * when it is unlocked.
1047 struct lock_file *lock;
1049 /* The metadata from when this packed-refs cache was read */
1050 struct stat_validity validity;
1054 * Future: need to be in "struct repository"
1055 * when doing a full libification.
1057 static struct ref_cache {
1058 struct ref_cache *next;
1059 struct ref_entry *loose;
1060 struct packed_ref_cache *packed;
1062 * The submodule name, or "" for the main repo. We allocate
1063 * length 1 rather than FLEX_ARRAY so that the main ref_cache
1064 * is initialized correctly.
1066 char name[1];
1067 } ref_cache, *submodule_ref_caches;
1069 /* Lock used for the main packed-refs file: */
1070 static struct lock_file packlock;
1073 * Increment the reference count of *packed_refs.
1075 static void acquire_packed_ref_cache(struct packed_ref_cache *packed_refs)
1077 packed_refs->referrers++;
1081 * Decrease the reference count of *packed_refs. If it goes to zero,
1082 * free *packed_refs and return true; otherwise return false.
1084 static int release_packed_ref_cache(struct packed_ref_cache *packed_refs)
1086 if (!--packed_refs->referrers) {
1087 free_ref_entry(packed_refs->root);
1088 stat_validity_clear(&packed_refs->validity);
1089 free(packed_refs);
1090 return 1;
1091 } else {
1092 return 0;
1096 static void clear_packed_ref_cache(struct ref_cache *refs)
1098 if (refs->packed) {
1099 struct packed_ref_cache *packed_refs = refs->packed;
1101 if (packed_refs->lock)
1102 die("internal error: packed-ref cache cleared while locked");
1103 refs->packed = NULL;
1104 release_packed_ref_cache(packed_refs);
1108 static void clear_loose_ref_cache(struct ref_cache *refs)
1110 if (refs->loose) {
1111 free_ref_entry(refs->loose);
1112 refs->loose = NULL;
1116 static struct ref_cache *create_ref_cache(const char *submodule)
1118 int len;
1119 struct ref_cache *refs;
1120 if (!submodule)
1121 submodule = "";
1122 len = strlen(submodule) + 1;
1123 refs = xcalloc(1, sizeof(struct ref_cache) + len);
1124 memcpy(refs->name, submodule, len);
1125 return refs;
1129 * Return a pointer to a ref_cache for the specified submodule. For
1130 * the main repository, use submodule==NULL. The returned structure
1131 * will be allocated and initialized but not necessarily populated; it
1132 * should not be freed.
1134 static struct ref_cache *get_ref_cache(const char *submodule)
1136 struct ref_cache *refs;
1138 if (!submodule || !*submodule)
1139 return &ref_cache;
1141 for (refs = submodule_ref_caches; refs; refs = refs->next)
1142 if (!strcmp(submodule, refs->name))
1143 return refs;
1145 refs = create_ref_cache(submodule);
1146 refs->next = submodule_ref_caches;
1147 submodule_ref_caches = refs;
1148 return refs;
1151 /* The length of a peeled reference line in packed-refs, including EOL: */
1152 #define PEELED_LINE_LENGTH 42
1155 * The packed-refs header line that we write out. Perhaps other
1156 * traits will be added later. The trailing space is required.
1158 static const char PACKED_REFS_HEADER[] =
1159 "# pack-refs with: peeled fully-peeled \n";
1162 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
1163 * Return a pointer to the refname within the line (null-terminated),
1164 * or NULL if there was a problem.
1166 static const char *parse_ref_line(struct strbuf *line, unsigned char *sha1)
1168 const char *ref;
1171 * 42: the answer to everything.
1173 * In this case, it happens to be the answer to
1174 * 40 (length of sha1 hex representation)
1175 * +1 (space in between hex and name)
1176 * +1 (newline at the end of the line)
1178 if (line->len <= 42)
1179 return NULL;
1181 if (get_sha1_hex(line->buf, sha1) < 0)
1182 return NULL;
1183 if (!isspace(line->buf[40]))
1184 return NULL;
1186 ref = line->buf + 41;
1187 if (isspace(*ref))
1188 return NULL;
1190 if (line->buf[line->len - 1] != '\n')
1191 return NULL;
1192 line->buf[--line->len] = 0;
1194 return ref;
1198 * Read f, which is a packed-refs file, into dir.
1200 * A comment line of the form "# pack-refs with: " may contain zero or
1201 * more traits. We interpret the traits as follows:
1203 * No traits:
1205 * Probably no references are peeled. But if the file contains a
1206 * peeled value for a reference, we will use it.
1208 * peeled:
1210 * References under "refs/tags/", if they *can* be peeled, *are*
1211 * peeled in this file. References outside of "refs/tags/" are
1212 * probably not peeled even if they could have been, but if we find
1213 * a peeled value for such a reference we will use it.
1215 * fully-peeled:
1217 * All references in the file that can be peeled are peeled.
1218 * Inversely (and this is more important), any references in the
1219 * file for which no peeled value is recorded is not peelable. This
1220 * trait should typically be written alongside "peeled" for
1221 * compatibility with older clients, but we do not require it
1222 * (i.e., "peeled" is a no-op if "fully-peeled" is set).
1224 static void read_packed_refs(FILE *f, struct ref_dir *dir)
1226 struct ref_entry *last = NULL;
1227 struct strbuf line = STRBUF_INIT;
1228 enum { PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;
1230 while (strbuf_getwholeline(&line, f, '\n') != EOF) {
1231 unsigned char sha1[20];
1232 const char *refname;
1233 const char *traits;
1235 if (skip_prefix(line.buf, "# pack-refs with:", &traits)) {
1236 if (strstr(traits, " fully-peeled "))
1237 peeled = PEELED_FULLY;
1238 else if (strstr(traits, " peeled "))
1239 peeled = PEELED_TAGS;
1240 /* perhaps other traits later as well */
1241 continue;
1244 refname = parse_ref_line(&line, sha1);
1245 if (refname) {
1246 int flag = REF_ISPACKED;
1248 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1249 if (!refname_is_safe(refname))
1250 die("packed refname is dangerous: %s", refname);
1251 hashclr(sha1);
1252 flag |= REF_BAD_NAME | REF_ISBROKEN;
1254 last = create_ref_entry(refname, sha1, flag, 0);
1255 if (peeled == PEELED_FULLY ||
1256 (peeled == PEELED_TAGS && starts_with(refname, "refs/tags/")))
1257 last->flag |= REF_KNOWS_PEELED;
1258 add_ref(dir, last);
1259 continue;
1261 if (last &&
1262 line.buf[0] == '^' &&
1263 line.len == PEELED_LINE_LENGTH &&
1264 line.buf[PEELED_LINE_LENGTH - 1] == '\n' &&
1265 !get_sha1_hex(line.buf + 1, sha1)) {
1266 hashcpy(last->u.value.peeled.hash, sha1);
1268 * Regardless of what the file header said,
1269 * we definitely know the value of *this*
1270 * reference:
1272 last->flag |= REF_KNOWS_PEELED;
1276 strbuf_release(&line);
1280 * Get the packed_ref_cache for the specified ref_cache, creating it
1281 * if necessary.
1283 static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)
1285 const char *packed_refs_file;
1287 if (*refs->name)
1288 packed_refs_file = git_path_submodule(refs->name, "packed-refs");
1289 else
1290 packed_refs_file = git_path("packed-refs");
1292 if (refs->packed &&
1293 !stat_validity_check(&refs->packed->validity, packed_refs_file))
1294 clear_packed_ref_cache(refs);
1296 if (!refs->packed) {
1297 FILE *f;
1299 refs->packed = xcalloc(1, sizeof(*refs->packed));
1300 acquire_packed_ref_cache(refs->packed);
1301 refs->packed->root = create_dir_entry(refs, "", 0, 0);
1302 f = fopen(packed_refs_file, "r");
1303 if (f) {
1304 stat_validity_update(&refs->packed->validity, fileno(f));
1305 read_packed_refs(f, get_ref_dir(refs->packed->root));
1306 fclose(f);
1309 return refs->packed;
1312 static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)
1314 return get_ref_dir(packed_ref_cache->root);
1317 static struct ref_dir *get_packed_refs(struct ref_cache *refs)
1319 return get_packed_ref_dir(get_packed_ref_cache(refs));
1322 void add_packed_ref(const char *refname, const unsigned char *sha1)
1324 struct packed_ref_cache *packed_ref_cache =
1325 get_packed_ref_cache(&ref_cache);
1327 if (!packed_ref_cache->lock)
1328 die("internal error: packed refs not locked");
1329 add_ref(get_packed_ref_dir(packed_ref_cache),
1330 create_ref_entry(refname, sha1, REF_ISPACKED, 1));
1334 * Read the loose references from the namespace dirname into dir
1335 * (without recursing). dirname must end with '/'. dir must be the
1336 * directory entry corresponding to dirname.
1338 static void read_loose_refs(const char *dirname, struct ref_dir *dir)
1340 struct ref_cache *refs = dir->ref_cache;
1341 DIR *d;
1342 const char *path;
1343 struct dirent *de;
1344 int dirnamelen = strlen(dirname);
1345 struct strbuf refname;
1347 if (*refs->name)
1348 path = git_path_submodule(refs->name, "%s", dirname);
1349 else
1350 path = git_path("%s", dirname);
1352 d = opendir(path);
1353 if (!d)
1354 return;
1356 strbuf_init(&refname, dirnamelen + 257);
1357 strbuf_add(&refname, dirname, dirnamelen);
1359 while ((de = readdir(d)) != NULL) {
1360 unsigned char sha1[20];
1361 struct stat st;
1362 int flag;
1363 const char *refdir;
1365 if (de->d_name[0] == '.')
1366 continue;
1367 if (ends_with(de->d_name, ".lock"))
1368 continue;
1369 strbuf_addstr(&refname, de->d_name);
1370 refdir = *refs->name
1371 ? git_path_submodule(refs->name, "%s", refname.buf)
1372 : git_path("%s", refname.buf);
1373 if (stat(refdir, &st) < 0) {
1374 ; /* silently ignore */
1375 } else if (S_ISDIR(st.st_mode)) {
1376 strbuf_addch(&refname, '/');
1377 add_entry_to_dir(dir,
1378 create_dir_entry(refs, refname.buf,
1379 refname.len, 1));
1380 } else {
1381 int read_ok;
1383 if (*refs->name) {
1384 hashclr(sha1);
1385 flag = 0;
1386 read_ok = !resolve_gitlink_ref(refs->name,
1387 refname.buf, sha1);
1388 } else {
1389 read_ok = !read_ref_full(refname.buf,
1390 RESOLVE_REF_READING,
1391 sha1, &flag);
1394 if (!read_ok) {
1395 hashclr(sha1);
1396 flag |= REF_ISBROKEN;
1397 } else if (is_null_sha1(sha1)) {
1399 * It is so astronomically unlikely
1400 * that NULL_SHA1 is the SHA-1 of an
1401 * actual object that we consider its
1402 * appearance in a loose reference
1403 * file to be repo corruption
1404 * (probably due to a software bug).
1406 flag |= REF_ISBROKEN;
1409 if (check_refname_format(refname.buf,
1410 REFNAME_ALLOW_ONELEVEL)) {
1411 if (!refname_is_safe(refname.buf))
1412 die("loose refname is dangerous: %s", refname.buf);
1413 hashclr(sha1);
1414 flag |= REF_BAD_NAME | REF_ISBROKEN;
1416 add_entry_to_dir(dir,
1417 create_ref_entry(refname.buf, sha1, flag, 0));
1419 strbuf_setlen(&refname, dirnamelen);
1421 strbuf_release(&refname);
1422 closedir(d);
1425 static struct ref_dir *get_loose_refs(struct ref_cache *refs)
1427 if (!refs->loose) {
1429 * Mark the top-level directory complete because we
1430 * are about to read the only subdirectory that can
1431 * hold references:
1433 refs->loose = create_dir_entry(refs, "", 0, 0);
1435 * Create an incomplete entry for "refs/":
1437 add_entry_to_dir(get_ref_dir(refs->loose),
1438 create_dir_entry(refs, "refs/", 5, 1));
1440 return get_ref_dir(refs->loose);
1443 /* We allow "recursive" symbolic refs. Only within reason, though */
1444 #define MAXDEPTH 5
1445 #define MAXREFLEN (1024)
1448 * Called by resolve_gitlink_ref_recursive() after it failed to read
1449 * from the loose refs in ref_cache refs. Find <refname> in the
1450 * packed-refs file for the submodule.
1452 static int resolve_gitlink_packed_ref(struct ref_cache *refs,
1453 const char *refname, unsigned char *sha1)
1455 struct ref_entry *ref;
1456 struct ref_dir *dir = get_packed_refs(refs);
1458 ref = find_ref(dir, refname);
1459 if (ref == NULL)
1460 return -1;
1462 hashcpy(sha1, ref->u.value.oid.hash);
1463 return 0;
1466 static int resolve_gitlink_ref_recursive(struct ref_cache *refs,
1467 const char *refname, unsigned char *sha1,
1468 int recursion)
1470 int fd, len;
1471 char buffer[128], *p;
1472 const char *path;
1474 if (recursion > MAXDEPTH || strlen(refname) > MAXREFLEN)
1475 return -1;
1476 path = *refs->name
1477 ? git_path_submodule(refs->name, "%s", refname)
1478 : git_path("%s", refname);
1479 fd = open(path, O_RDONLY);
1480 if (fd < 0)
1481 return resolve_gitlink_packed_ref(refs, refname, sha1);
1483 len = read(fd, buffer, sizeof(buffer)-1);
1484 close(fd);
1485 if (len < 0)
1486 return -1;
1487 while (len && isspace(buffer[len-1]))
1488 len--;
1489 buffer[len] = 0;
1491 /* Was it a detached head or an old-fashioned symlink? */
1492 if (!get_sha1_hex(buffer, sha1))
1493 return 0;
1495 /* Symref? */
1496 if (strncmp(buffer, "ref:", 4))
1497 return -1;
1498 p = buffer + 4;
1499 while (isspace(*p))
1500 p++;
1502 return resolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);
1505 int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *sha1)
1507 int len = strlen(path), retval;
1508 char *submodule;
1509 struct ref_cache *refs;
1511 while (len && path[len-1] == '/')
1512 len--;
1513 if (!len)
1514 return -1;
1515 submodule = xstrndup(path, len);
1516 refs = get_ref_cache(submodule);
1517 free(submodule);
1519 retval = resolve_gitlink_ref_recursive(refs, refname, sha1, 0);
1520 return retval;
1524 * Return the ref_entry for the given refname from the packed
1525 * references. If it does not exist, return NULL.
1527 static struct ref_entry *get_packed_ref(const char *refname)
1529 return find_ref(get_packed_refs(&ref_cache), refname);
1533 * A loose ref file doesn't exist; check for a packed ref. The
1534 * options are forwarded from resolve_safe_unsafe().
1536 static int resolve_missing_loose_ref(const char *refname,
1537 int resolve_flags,
1538 unsigned char *sha1,
1539 int *flags)
1541 struct ref_entry *entry;
1544 * The loose reference file does not exist; check for a packed
1545 * reference.
1547 entry = get_packed_ref(refname);
1548 if (entry) {
1549 hashcpy(sha1, entry->u.value.oid.hash);
1550 if (flags)
1551 *flags |= REF_ISPACKED;
1552 return 0;
1554 /* The reference is not a packed reference, either. */
1555 if (resolve_flags & RESOLVE_REF_READING) {
1556 errno = ENOENT;
1557 return -1;
1558 } else {
1559 hashclr(sha1);
1560 return 0;
1564 /* This function needs to return a meaningful errno on failure */
1565 static const char *resolve_ref_unsafe_1(const char *refname,
1566 int resolve_flags,
1567 unsigned char *sha1,
1568 int *flags,
1569 struct strbuf *sb_path)
1571 int depth = MAXDEPTH;
1572 ssize_t len;
1573 char buffer[256];
1574 static char refname_buffer[256];
1575 int bad_name = 0;
1577 if (flags)
1578 *flags = 0;
1580 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1581 if (flags)
1582 *flags |= REF_BAD_NAME;
1584 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1585 !refname_is_safe(refname)) {
1586 errno = EINVAL;
1587 return NULL;
1590 * dwim_ref() uses REF_ISBROKEN to distinguish between
1591 * missing refs and refs that were present but invalid,
1592 * to complain about the latter to stderr.
1594 * We don't know whether the ref exists, so don't set
1595 * REF_ISBROKEN yet.
1597 bad_name = 1;
1599 for (;;) {
1600 const char *path;
1601 struct stat st;
1602 char *buf;
1603 int fd;
1605 if (--depth < 0) {
1606 errno = ELOOP;
1607 return NULL;
1610 strbuf_reset(sb_path);
1611 strbuf_git_path(sb_path, "%s", refname);
1612 path = sb_path->buf;
1615 * We might have to loop back here to avoid a race
1616 * condition: first we lstat() the file, then we try
1617 * to read it as a link or as a file. But if somebody
1618 * changes the type of the file (file <-> directory
1619 * <-> symlink) between the lstat() and reading, then
1620 * we don't want to report that as an error but rather
1621 * try again starting with the lstat().
1623 stat_ref:
1624 if (lstat(path, &st) < 0) {
1625 if (errno != ENOENT)
1626 return NULL;
1627 if (resolve_missing_loose_ref(refname, resolve_flags,
1628 sha1, flags))
1629 return NULL;
1630 if (bad_name) {
1631 hashclr(sha1);
1632 if (flags)
1633 *flags |= REF_ISBROKEN;
1635 return refname;
1638 /* Follow "normalized" - ie "refs/.." symlinks by hand */
1639 if (S_ISLNK(st.st_mode)) {
1640 len = readlink(path, buffer, sizeof(buffer)-1);
1641 if (len < 0) {
1642 if (errno == ENOENT || errno == EINVAL)
1643 /* inconsistent with lstat; retry */
1644 goto stat_ref;
1645 else
1646 return NULL;
1648 buffer[len] = 0;
1649 if (starts_with(buffer, "refs/") &&
1650 !check_refname_format(buffer, 0)) {
1651 strcpy(refname_buffer, buffer);
1652 refname = refname_buffer;
1653 if (flags)
1654 *flags |= REF_ISSYMREF;
1655 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1656 hashclr(sha1);
1657 return refname;
1659 continue;
1663 /* Is it a directory? */
1664 if (S_ISDIR(st.st_mode)) {
1665 errno = EISDIR;
1666 return NULL;
1670 * Anything else, just open it and try to use it as
1671 * a ref
1673 fd = open(path, O_RDONLY);
1674 if (fd < 0) {
1675 if (errno == ENOENT)
1676 /* inconsistent with lstat; retry */
1677 goto stat_ref;
1678 else
1679 return NULL;
1681 len = read_in_full(fd, buffer, sizeof(buffer)-1);
1682 if (len < 0) {
1683 int save_errno = errno;
1684 close(fd);
1685 errno = save_errno;
1686 return NULL;
1688 close(fd);
1689 while (len && isspace(buffer[len-1]))
1690 len--;
1691 buffer[len] = '\0';
1694 * Is it a symbolic ref?
1696 if (!starts_with(buffer, "ref:")) {
1698 * Please note that FETCH_HEAD has a second
1699 * line containing other data.
1701 if (get_sha1_hex(buffer, sha1) ||
1702 (buffer[40] != '\0' && !isspace(buffer[40]))) {
1703 if (flags)
1704 *flags |= REF_ISBROKEN;
1705 errno = EINVAL;
1706 return NULL;
1708 if (bad_name) {
1709 hashclr(sha1);
1710 if (flags)
1711 *flags |= REF_ISBROKEN;
1713 return refname;
1715 if (flags)
1716 *flags |= REF_ISSYMREF;
1717 buf = buffer + 4;
1718 while (isspace(*buf))
1719 buf++;
1720 refname = strcpy(refname_buffer, buf);
1721 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1722 hashclr(sha1);
1723 return refname;
1725 if (check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {
1726 if (flags)
1727 *flags |= REF_ISBROKEN;
1729 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1730 !refname_is_safe(buf)) {
1731 errno = EINVAL;
1732 return NULL;
1734 bad_name = 1;
1739 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1740 unsigned char *sha1, int *flags)
1742 struct strbuf sb_path = STRBUF_INIT;
1743 const char *ret = resolve_ref_unsafe_1(refname, resolve_flags,
1744 sha1, flags, &sb_path);
1745 strbuf_release(&sb_path);
1746 return ret;
1749 char *resolve_refdup(const char *ref, int resolve_flags, unsigned char *sha1, int *flags)
1751 return xstrdup_or_null(resolve_ref_unsafe(ref, resolve_flags, sha1, flags));
1754 /* The argument to filter_refs */
1755 struct ref_filter {
1756 const char *pattern;
1757 each_ref_fn *fn;
1758 void *cb_data;
1761 int read_ref_full(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
1763 if (resolve_ref_unsafe(refname, resolve_flags, sha1, flags))
1764 return 0;
1765 return -1;
1768 int read_ref(const char *refname, unsigned char *sha1)
1770 return read_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);
1773 int ref_exists(const char *refname)
1775 unsigned char sha1[20];
1776 return !!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);
1779 static int filter_refs(const char *refname, const struct object_id *oid,
1780 int flags, void *data)
1782 struct ref_filter *filter = (struct ref_filter *)data;
1784 if (wildmatch(filter->pattern, refname, 0, NULL))
1785 return 0;
1786 return filter->fn(refname, oid, flags, filter->cb_data);
1789 enum peel_status {
1790 /* object was peeled successfully: */
1791 PEEL_PEELED = 0,
1794 * object cannot be peeled because the named object (or an
1795 * object referred to by a tag in the peel chain), does not
1796 * exist.
1798 PEEL_INVALID = -1,
1800 /* object cannot be peeled because it is not a tag: */
1801 PEEL_NON_TAG = -2,
1803 /* ref_entry contains no peeled value because it is a symref: */
1804 PEEL_IS_SYMREF = -3,
1807 * ref_entry cannot be peeled because it is broken (i.e., the
1808 * symbolic reference cannot even be resolved to an object
1809 * name):
1811 PEEL_BROKEN = -4
1815 * Peel the named object; i.e., if the object is a tag, resolve the
1816 * tag recursively until a non-tag is found. If successful, store the
1817 * result to sha1 and return PEEL_PEELED. If the object is not a tag
1818 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,
1819 * and leave sha1 unchanged.
1821 static enum peel_status peel_object(const unsigned char *name, unsigned char *sha1)
1823 struct object *o = lookup_unknown_object(name);
1825 if (o->type == OBJ_NONE) {
1826 int type = sha1_object_info(name, NULL);
1827 if (type < 0 || !object_as_type(o, type, 0))
1828 return PEEL_INVALID;
1831 if (o->type != OBJ_TAG)
1832 return PEEL_NON_TAG;
1834 o = deref_tag_noverify(o);
1835 if (!o)
1836 return PEEL_INVALID;
1838 hashcpy(sha1, o->sha1);
1839 return PEEL_PEELED;
1843 * Peel the entry (if possible) and return its new peel_status. If
1844 * repeel is true, re-peel the entry even if there is an old peeled
1845 * value that is already stored in it.
1847 * It is OK to call this function with a packed reference entry that
1848 * might be stale and might even refer to an object that has since
1849 * been garbage-collected. In such a case, if the entry has
1850 * REF_KNOWS_PEELED then leave the status unchanged and return
1851 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.
1853 static enum peel_status peel_entry(struct ref_entry *entry, int repeel)
1855 enum peel_status status;
1857 if (entry->flag & REF_KNOWS_PEELED) {
1858 if (repeel) {
1859 entry->flag &= ~REF_KNOWS_PEELED;
1860 oidclr(&entry->u.value.peeled);
1861 } else {
1862 return is_null_oid(&entry->u.value.peeled) ?
1863 PEEL_NON_TAG : PEEL_PEELED;
1866 if (entry->flag & REF_ISBROKEN)
1867 return PEEL_BROKEN;
1868 if (entry->flag & REF_ISSYMREF)
1869 return PEEL_IS_SYMREF;
1871 status = peel_object(entry->u.value.oid.hash, entry->u.value.peeled.hash);
1872 if (status == PEEL_PEELED || status == PEEL_NON_TAG)
1873 entry->flag |= REF_KNOWS_PEELED;
1874 return status;
1877 int peel_ref(const char *refname, unsigned char *sha1)
1879 int flag;
1880 unsigned char base[20];
1882 if (current_ref && (current_ref->name == refname
1883 || !strcmp(current_ref->name, refname))) {
1884 if (peel_entry(current_ref, 0))
1885 return -1;
1886 hashcpy(sha1, current_ref->u.value.peeled.hash);
1887 return 0;
1890 if (read_ref_full(refname, RESOLVE_REF_READING, base, &flag))
1891 return -1;
1894 * If the reference is packed, read its ref_entry from the
1895 * cache in the hope that we already know its peeled value.
1896 * We only try this optimization on packed references because
1897 * (a) forcing the filling of the loose reference cache could
1898 * be expensive and (b) loose references anyway usually do not
1899 * have REF_KNOWS_PEELED.
1901 if (flag & REF_ISPACKED) {
1902 struct ref_entry *r = get_packed_ref(refname);
1903 if (r) {
1904 if (peel_entry(r, 0))
1905 return -1;
1906 hashcpy(sha1, r->u.value.peeled.hash);
1907 return 0;
1911 return peel_object(base, sha1);
1914 struct warn_if_dangling_data {
1915 FILE *fp;
1916 const char *refname;
1917 const struct string_list *refnames;
1918 const char *msg_fmt;
1921 static int warn_if_dangling_symref(const char *refname, const struct object_id *oid,
1922 int flags, void *cb_data)
1924 struct warn_if_dangling_data *d = cb_data;
1925 const char *resolves_to;
1926 struct object_id junk;
1928 if (!(flags & REF_ISSYMREF))
1929 return 0;
1931 resolves_to = resolve_ref_unsafe(refname, 0, junk.hash, NULL);
1932 if (!resolves_to
1933 || (d->refname
1934 ? strcmp(resolves_to, d->refname)
1935 : !string_list_has_string(d->refnames, resolves_to))) {
1936 return 0;
1939 fprintf(d->fp, d->msg_fmt, refname);
1940 fputc('\n', d->fp);
1941 return 0;
1944 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
1946 struct warn_if_dangling_data data;
1948 data.fp = fp;
1949 data.refname = refname;
1950 data.refnames = NULL;
1951 data.msg_fmt = msg_fmt;
1952 for_each_rawref(warn_if_dangling_symref, &data);
1955 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
1957 struct warn_if_dangling_data data;
1959 data.fp = fp;
1960 data.refname = NULL;
1961 data.refnames = refnames;
1962 data.msg_fmt = msg_fmt;
1963 for_each_rawref(warn_if_dangling_symref, &data);
1967 * Call fn for each reference in the specified ref_cache, omitting
1968 * references not in the containing_dir of base. fn is called for all
1969 * references, including broken ones. If fn ever returns a non-zero
1970 * value, stop the iteration and return that value; otherwise, return
1971 * 0.
1973 static int do_for_each_entry(struct ref_cache *refs, const char *base,
1974 each_ref_entry_fn fn, void *cb_data)
1976 struct packed_ref_cache *packed_ref_cache;
1977 struct ref_dir *loose_dir;
1978 struct ref_dir *packed_dir;
1979 int retval = 0;
1982 * We must make sure that all loose refs are read before accessing the
1983 * packed-refs file; this avoids a race condition in which loose refs
1984 * are migrated to the packed-refs file by a simultaneous process, but
1985 * our in-memory view is from before the migration. get_packed_ref_cache()
1986 * takes care of making sure our view is up to date with what is on
1987 * disk.
1989 loose_dir = get_loose_refs(refs);
1990 if (base && *base) {
1991 loose_dir = find_containing_dir(loose_dir, base, 0);
1993 if (loose_dir)
1994 prime_ref_dir(loose_dir);
1996 packed_ref_cache = get_packed_ref_cache(refs);
1997 acquire_packed_ref_cache(packed_ref_cache);
1998 packed_dir = get_packed_ref_dir(packed_ref_cache);
1999 if (base && *base) {
2000 packed_dir = find_containing_dir(packed_dir, base, 0);
2003 if (packed_dir && loose_dir) {
2004 sort_ref_dir(packed_dir);
2005 sort_ref_dir(loose_dir);
2006 retval = do_for_each_entry_in_dirs(
2007 packed_dir, loose_dir, fn, cb_data);
2008 } else if (packed_dir) {
2009 sort_ref_dir(packed_dir);
2010 retval = do_for_each_entry_in_dir(
2011 packed_dir, 0, fn, cb_data);
2012 } else if (loose_dir) {
2013 sort_ref_dir(loose_dir);
2014 retval = do_for_each_entry_in_dir(
2015 loose_dir, 0, fn, cb_data);
2018 release_packed_ref_cache(packed_ref_cache);
2019 return retval;
2023 * Call fn for each reference in the specified ref_cache for which the
2024 * refname begins with base. If trim is non-zero, then trim that many
2025 * characters off the beginning of each refname before passing the
2026 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include
2027 * broken references in the iteration. If fn ever returns a non-zero
2028 * value, stop the iteration and return that value; otherwise, return
2029 * 0.
2031 static int do_for_each_ref(struct ref_cache *refs, const char *base,
2032 each_ref_fn fn, int trim, int flags, void *cb_data)
2034 struct ref_entry_cb data;
2035 data.base = base;
2036 data.trim = trim;
2037 data.flags = flags;
2038 data.fn = fn;
2039 data.cb_data = cb_data;
2041 if (ref_paranoia < 0)
2042 ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 0);
2043 if (ref_paranoia)
2044 data.flags |= DO_FOR_EACH_INCLUDE_BROKEN;
2046 return do_for_each_entry(refs, base, do_one_ref, &data);
2049 static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
2051 struct object_id oid;
2052 int flag;
2054 if (submodule) {
2055 if (resolve_gitlink_ref(submodule, "HEAD", oid.hash) == 0)
2056 return fn("HEAD", &oid, 0, cb_data);
2058 return 0;
2061 if (!read_ref_full("HEAD", RESOLVE_REF_READING, oid.hash, &flag))
2062 return fn("HEAD", &oid, flag, cb_data);
2064 return 0;
2067 int head_ref(each_ref_fn fn, void *cb_data)
2069 return do_head_ref(NULL, fn, cb_data);
2072 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2074 return do_head_ref(submodule, fn, cb_data);
2077 int for_each_ref(each_ref_fn fn, void *cb_data)
2079 return do_for_each_ref(&ref_cache, "", fn, 0, 0, cb_data);
2082 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2084 return do_for_each_ref(get_ref_cache(submodule), "", fn, 0, 0, cb_data);
2087 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
2089 return do_for_each_ref(&ref_cache, prefix, fn, strlen(prefix), 0, cb_data);
2092 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
2093 each_ref_fn fn, void *cb_data)
2095 return do_for_each_ref(get_ref_cache(submodule), prefix, fn, strlen(prefix), 0, cb_data);
2098 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
2100 return for_each_ref_in("refs/tags/", fn, cb_data);
2103 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2105 return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
2108 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
2110 return for_each_ref_in("refs/heads/", fn, cb_data);
2113 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2115 return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
2118 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
2120 return for_each_ref_in("refs/remotes/", fn, cb_data);
2123 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
2125 return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
2128 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
2130 return do_for_each_ref(&ref_cache, "refs/replace/", fn, 13, 0, cb_data);
2133 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
2135 struct strbuf buf = STRBUF_INIT;
2136 int ret = 0;
2137 struct object_id oid;
2138 int flag;
2140 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
2141 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, oid.hash, &flag))
2142 ret = fn(buf.buf, &oid, flag, cb_data);
2143 strbuf_release(&buf);
2145 return ret;
2148 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
2150 struct strbuf buf = STRBUF_INIT;
2151 int ret;
2152 strbuf_addf(&buf, "%srefs/", get_git_namespace());
2153 ret = do_for_each_ref(&ref_cache, buf.buf, fn, 0, 0, cb_data);
2154 strbuf_release(&buf);
2155 return ret;
2158 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
2159 const char *prefix, void *cb_data)
2161 struct strbuf real_pattern = STRBUF_INIT;
2162 struct ref_filter filter;
2163 int ret;
2165 if (!prefix && !starts_with(pattern, "refs/"))
2166 strbuf_addstr(&real_pattern, "refs/");
2167 else if (prefix)
2168 strbuf_addstr(&real_pattern, prefix);
2169 strbuf_addstr(&real_pattern, pattern);
2171 if (!has_glob_specials(pattern)) {
2172 /* Append implied '/' '*' if not present. */
2173 if (real_pattern.buf[real_pattern.len - 1] != '/')
2174 strbuf_addch(&real_pattern, '/');
2175 /* No need to check for '*', there is none. */
2176 strbuf_addch(&real_pattern, '*');
2179 filter.pattern = real_pattern.buf;
2180 filter.fn = fn;
2181 filter.cb_data = cb_data;
2182 ret = for_each_ref(filter_refs, &filter);
2184 strbuf_release(&real_pattern);
2185 return ret;
2188 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
2190 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
2193 int for_each_rawref(each_ref_fn fn, void *cb_data)
2195 return do_for_each_ref(&ref_cache, "", fn, 0,
2196 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
2199 const char *prettify_refname(const char *name)
2201 return name + (
2202 starts_with(name, "refs/heads/") ? 11 :
2203 starts_with(name, "refs/tags/") ? 10 :
2204 starts_with(name, "refs/remotes/") ? 13 :
2208 static const char *ref_rev_parse_rules[] = {
2209 "%.*s",
2210 "refs/%.*s",
2211 "refs/tags/%.*s",
2212 "refs/heads/%.*s",
2213 "refs/remotes/%.*s",
2214 "refs/remotes/%.*s/HEAD",
2215 NULL
2218 int refname_match(const char *abbrev_name, const char *full_name)
2220 const char **p;
2221 const int abbrev_name_len = strlen(abbrev_name);
2223 for (p = ref_rev_parse_rules; *p; p++) {
2224 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
2225 return 1;
2229 return 0;
2232 static void unlock_ref(struct ref_lock *lock)
2234 /* Do not free lock->lk -- atexit() still looks at them */
2235 if (lock->lk)
2236 rollback_lock_file(lock->lk);
2237 free(lock->ref_name);
2238 free(lock->orig_ref_name);
2239 free(lock);
2243 * Verify that the reference locked by lock has the value old_sha1.
2244 * Fail if the reference doesn't exist and mustexist is set. Return 0
2245 * on success. On error, write an error message to err, set errno, and
2246 * return a negative value.
2248 static int verify_lock(struct ref_lock *lock,
2249 const unsigned char *old_sha1, int mustexist,
2250 struct strbuf *err)
2252 assert(err);
2254 if (read_ref_full(lock->ref_name,
2255 mustexist ? RESOLVE_REF_READING : 0,
2256 lock->old_oid.hash, NULL)) {
2257 int save_errno = errno;
2258 strbuf_addf(err, "can't verify ref %s", lock->ref_name);
2259 errno = save_errno;
2260 return -1;
2262 if (hashcmp(lock->old_oid.hash, old_sha1)) {
2263 strbuf_addf(err, "ref %s is at %s but expected %s",
2264 lock->ref_name,
2265 sha1_to_hex(lock->old_oid.hash),
2266 sha1_to_hex(old_sha1));
2267 errno = EBUSY;
2268 return -1;
2270 return 0;
2273 static int remove_empty_directories(const char *file)
2275 /* we want to create a file but there is a directory there;
2276 * if that is an empty directory (or a directory that contains
2277 * only empty directories), remove them.
2279 struct strbuf path;
2280 int result, save_errno;
2282 strbuf_init(&path, 20);
2283 strbuf_addstr(&path, file);
2285 result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
2286 save_errno = errno;
2288 strbuf_release(&path);
2289 errno = save_errno;
2291 return result;
2295 * *string and *len will only be substituted, and *string returned (for
2296 * later free()ing) if the string passed in is a magic short-hand form
2297 * to name a branch.
2299 static char *substitute_branch_name(const char **string, int *len)
2301 struct strbuf buf = STRBUF_INIT;
2302 int ret = interpret_branch_name(*string, *len, &buf);
2304 if (ret == *len) {
2305 size_t size;
2306 *string = strbuf_detach(&buf, &size);
2307 *len = size;
2308 return (char *)*string;
2311 return NULL;
2314 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
2316 char *last_branch = substitute_branch_name(&str, &len);
2317 const char **p, *r;
2318 int refs_found = 0;
2320 *ref = NULL;
2321 for (p = ref_rev_parse_rules; *p; p++) {
2322 char fullref[PATH_MAX];
2323 unsigned char sha1_from_ref[20];
2324 unsigned char *this_result;
2325 int flag;
2327 this_result = refs_found ? sha1_from_ref : sha1;
2328 mksnpath(fullref, sizeof(fullref), *p, len, str);
2329 r = resolve_ref_unsafe(fullref, RESOLVE_REF_READING,
2330 this_result, &flag);
2331 if (r) {
2332 if (!refs_found++)
2333 *ref = xstrdup(r);
2334 if (!warn_ambiguous_refs)
2335 break;
2336 } else if ((flag & REF_ISSYMREF) && strcmp(fullref, "HEAD")) {
2337 warning("ignoring dangling symref %s.", fullref);
2338 } else if ((flag & REF_ISBROKEN) && strchr(fullref, '/')) {
2339 warning("ignoring broken ref %s.", fullref);
2342 free(last_branch);
2343 return refs_found;
2346 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
2348 char *last_branch = substitute_branch_name(&str, &len);
2349 const char **p;
2350 int logs_found = 0;
2352 *log = NULL;
2353 for (p = ref_rev_parse_rules; *p; p++) {
2354 unsigned char hash[20];
2355 char path[PATH_MAX];
2356 const char *ref, *it;
2358 mksnpath(path, sizeof(path), *p, len, str);
2359 ref = resolve_ref_unsafe(path, RESOLVE_REF_READING,
2360 hash, NULL);
2361 if (!ref)
2362 continue;
2363 if (reflog_exists(path))
2364 it = path;
2365 else if (strcmp(ref, path) && reflog_exists(ref))
2366 it = ref;
2367 else
2368 continue;
2369 if (!logs_found++) {
2370 *log = xstrdup(it);
2371 hashcpy(sha1, hash);
2373 if (!warn_ambiguous_refs)
2374 break;
2376 free(last_branch);
2377 return logs_found;
2381 * Locks a ref returning the lock on success and NULL on failure.
2382 * On failure errno is set to something meaningful.
2384 static struct ref_lock *lock_ref_sha1_basic(const char *refname,
2385 const unsigned char *old_sha1,
2386 const struct string_list *extras,
2387 const struct string_list *skip,
2388 unsigned int flags, int *type_p,
2389 struct strbuf *err)
2391 const char *ref_file;
2392 const char *orig_refname = refname;
2393 struct ref_lock *lock;
2394 int last_errno = 0;
2395 int type, lflags;
2396 int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
2397 int resolve_flags = 0;
2398 int attempts_remaining = 3;
2400 assert(err);
2402 lock = xcalloc(1, sizeof(struct ref_lock));
2404 if (mustexist)
2405 resolve_flags |= RESOLVE_REF_READING;
2406 if (flags & REF_DELETING) {
2407 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;
2408 if (flags & REF_NODEREF)
2409 resolve_flags |= RESOLVE_REF_NO_RECURSE;
2412 refname = resolve_ref_unsafe(refname, resolve_flags,
2413 lock->old_oid.hash, &type);
2414 if (!refname && errno == EISDIR) {
2415 /* we are trying to lock foo but we used to
2416 * have foo/bar which now does not exist;
2417 * it is normal for the empty directory 'foo'
2418 * to remain.
2420 ref_file = git_path("%s", orig_refname);
2421 if (remove_empty_directories(ref_file)) {
2422 last_errno = errno;
2424 if (!verify_refname_available(orig_refname, extras, skip,
2425 get_loose_refs(&ref_cache), err))
2426 strbuf_addf(err, "there are still refs under '%s'",
2427 orig_refname);
2429 goto error_return;
2431 refname = resolve_ref_unsafe(orig_refname, resolve_flags,
2432 lock->old_oid.hash, &type);
2434 if (type_p)
2435 *type_p = type;
2436 if (!refname) {
2437 last_errno = errno;
2438 if (last_errno != ENOTDIR ||
2439 !verify_refname_available(orig_refname, extras, skip,
2440 get_loose_refs(&ref_cache), err))
2441 strbuf_addf(err, "unable to resolve reference %s: %s",
2442 orig_refname, strerror(last_errno));
2444 goto error_return;
2447 * If the ref did not exist and we are creating it, make sure
2448 * there is no existing packed ref whose name begins with our
2449 * refname, nor a packed ref whose name is a proper prefix of
2450 * our refname.
2452 if (is_null_oid(&lock->old_oid) &&
2453 verify_refname_available(refname, extras, skip,
2454 get_packed_refs(&ref_cache), err)) {
2455 last_errno = ENOTDIR;
2456 goto error_return;
2459 lock->lk = xcalloc(1, sizeof(struct lock_file));
2461 lflags = 0;
2462 if (flags & REF_NODEREF) {
2463 refname = orig_refname;
2464 lflags |= LOCK_NO_DEREF;
2466 lock->ref_name = xstrdup(refname);
2467 lock->orig_ref_name = xstrdup(orig_refname);
2468 ref_file = git_path("%s", refname);
2470 retry:
2471 switch (safe_create_leading_directories_const(ref_file)) {
2472 case SCLD_OK:
2473 break; /* success */
2474 case SCLD_VANISHED:
2475 if (--attempts_remaining > 0)
2476 goto retry;
2477 /* fall through */
2478 default:
2479 last_errno = errno;
2480 strbuf_addf(err, "unable to create directory for %s", ref_file);
2481 goto error_return;
2484 if (hold_lock_file_for_update(lock->lk, ref_file, lflags) < 0) {
2485 last_errno = errno;
2486 if (errno == ENOENT && --attempts_remaining > 0)
2488 * Maybe somebody just deleted one of the
2489 * directories leading to ref_file. Try
2490 * again:
2492 goto retry;
2493 else {
2494 unable_to_lock_message(ref_file, errno, err);
2495 goto error_return;
2498 if (old_sha1 && verify_lock(lock, old_sha1, mustexist, err)) {
2499 last_errno = errno;
2500 goto error_return;
2502 return lock;
2504 error_return:
2505 unlock_ref(lock);
2506 errno = last_errno;
2507 return NULL;
2511 * Write an entry to the packed-refs file for the specified refname.
2512 * If peeled is non-NULL, write it as the entry's peeled value.
2514 static void write_packed_entry(FILE *fh, char *refname, unsigned char *sha1,
2515 unsigned char *peeled)
2517 fprintf_or_die(fh, "%s %s\n", sha1_to_hex(sha1), refname);
2518 if (peeled)
2519 fprintf_or_die(fh, "^%s\n", sha1_to_hex(peeled));
2523 * An each_ref_entry_fn that writes the entry to a packed-refs file.
2525 static int write_packed_entry_fn(struct ref_entry *entry, void *cb_data)
2527 enum peel_status peel_status = peel_entry(entry, 0);
2529 if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2530 error("internal error: %s is not a valid packed reference!",
2531 entry->name);
2532 write_packed_entry(cb_data, entry->name, entry->u.value.oid.hash,
2533 peel_status == PEEL_PEELED ?
2534 entry->u.value.peeled.hash : NULL);
2535 return 0;
2538 /* This should return a meaningful errno on failure */
2539 int lock_packed_refs(int flags)
2541 static int timeout_configured = 0;
2542 static int timeout_value = 1000;
2544 struct packed_ref_cache *packed_ref_cache;
2546 if (!timeout_configured) {
2547 git_config_get_int("core.packedrefstimeout", &timeout_value);
2548 timeout_configured = 1;
2551 if (hold_lock_file_for_update_timeout(
2552 &packlock, git_path("packed-refs"),
2553 flags, timeout_value) < 0)
2554 return -1;
2556 * Get the current packed-refs while holding the lock. If the
2557 * packed-refs file has been modified since we last read it,
2558 * this will automatically invalidate the cache and re-read
2559 * the packed-refs file.
2561 packed_ref_cache = get_packed_ref_cache(&ref_cache);
2562 packed_ref_cache->lock = &packlock;
2563 /* Increment the reference count to prevent it from being freed: */
2564 acquire_packed_ref_cache(packed_ref_cache);
2565 return 0;
2569 * Commit the packed refs changes.
2570 * On error we must make sure that errno contains a meaningful value.
2572 int commit_packed_refs(void)
2574 struct packed_ref_cache *packed_ref_cache =
2575 get_packed_ref_cache(&ref_cache);
2576 int error = 0;
2577 int save_errno = 0;
2578 FILE *out;
2580 if (!packed_ref_cache->lock)
2581 die("internal error: packed-refs not locked");
2583 out = fdopen_lock_file(packed_ref_cache->lock, "w");
2584 if (!out)
2585 die_errno("unable to fdopen packed-refs descriptor");
2587 fprintf_or_die(out, "%s", PACKED_REFS_HEADER);
2588 do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),
2589 0, write_packed_entry_fn, out);
2591 if (commit_lock_file(packed_ref_cache->lock)) {
2592 save_errno = errno;
2593 error = -1;
2595 packed_ref_cache->lock = NULL;
2596 release_packed_ref_cache(packed_ref_cache);
2597 errno = save_errno;
2598 return error;
2601 void rollback_packed_refs(void)
2603 struct packed_ref_cache *packed_ref_cache =
2604 get_packed_ref_cache(&ref_cache);
2606 if (!packed_ref_cache->lock)
2607 die("internal error: packed-refs not locked");
2608 rollback_lock_file(packed_ref_cache->lock);
2609 packed_ref_cache->lock = NULL;
2610 release_packed_ref_cache(packed_ref_cache);
2611 clear_packed_ref_cache(&ref_cache);
2614 struct ref_to_prune {
2615 struct ref_to_prune *next;
2616 unsigned char sha1[20];
2617 char name[FLEX_ARRAY];
2620 struct pack_refs_cb_data {
2621 unsigned int flags;
2622 struct ref_dir *packed_refs;
2623 struct ref_to_prune *ref_to_prune;
2627 * An each_ref_entry_fn that is run over loose references only. If
2628 * the loose reference can be packed, add an entry in the packed ref
2629 * cache. If the reference should be pruned, also add it to
2630 * ref_to_prune in the pack_refs_cb_data.
2632 static int pack_if_possible_fn(struct ref_entry *entry, void *cb_data)
2634 struct pack_refs_cb_data *cb = cb_data;
2635 enum peel_status peel_status;
2636 struct ref_entry *packed_entry;
2637 int is_tag_ref = starts_with(entry->name, "refs/tags/");
2639 /* ALWAYS pack tags */
2640 if (!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)
2641 return 0;
2643 /* Do not pack symbolic or broken refs: */
2644 if ((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))
2645 return 0;
2647 /* Add a packed ref cache entry equivalent to the loose entry. */
2648 peel_status = peel_entry(entry, 1);
2649 if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2650 die("internal error peeling reference %s (%s)",
2651 entry->name, oid_to_hex(&entry->u.value.oid));
2652 packed_entry = find_ref(cb->packed_refs, entry->name);
2653 if (packed_entry) {
2654 /* Overwrite existing packed entry with info from loose entry */
2655 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;
2656 oidcpy(&packed_entry->u.value.oid, &entry->u.value.oid);
2657 } else {
2658 packed_entry = create_ref_entry(entry->name, entry->u.value.oid.hash,
2659 REF_ISPACKED | REF_KNOWS_PEELED, 0);
2660 add_ref(cb->packed_refs, packed_entry);
2662 oidcpy(&packed_entry->u.value.peeled, &entry->u.value.peeled);
2664 /* Schedule the loose reference for pruning if requested. */
2665 if ((cb->flags & PACK_REFS_PRUNE)) {
2666 int namelen = strlen(entry->name) + 1;
2667 struct ref_to_prune *n = xcalloc(1, sizeof(*n) + namelen);
2668 hashcpy(n->sha1, entry->u.value.oid.hash);
2669 strcpy(n->name, entry->name);
2670 n->next = cb->ref_to_prune;
2671 cb->ref_to_prune = n;
2673 return 0;
2677 * Remove empty parents, but spare refs/ and immediate subdirs.
2678 * Note: munges *name.
2680 static void try_remove_empty_parents(char *name)
2682 char *p, *q;
2683 int i;
2684 p = name;
2685 for (i = 0; i < 2; i++) { /* refs/{heads,tags,...}/ */
2686 while (*p && *p != '/')
2687 p++;
2688 /* tolerate duplicate slashes; see check_refname_format() */
2689 while (*p == '/')
2690 p++;
2692 for (q = p; *q; q++)
2694 while (1) {
2695 while (q > p && *q != '/')
2696 q--;
2697 while (q > p && *(q-1) == '/')
2698 q--;
2699 if (q == p)
2700 break;
2701 *q = '\0';
2702 if (rmdir(git_path("%s", name)))
2703 break;
2707 /* make sure nobody touched the ref, and unlink */
2708 static void prune_ref(struct ref_to_prune *r)
2710 struct ref_transaction *transaction;
2711 struct strbuf err = STRBUF_INIT;
2713 if (check_refname_format(r->name, 0))
2714 return;
2716 transaction = ref_transaction_begin(&err);
2717 if (!transaction ||
2718 ref_transaction_delete(transaction, r->name, r->sha1,
2719 REF_ISPRUNING, NULL, &err) ||
2720 ref_transaction_commit(transaction, &err)) {
2721 ref_transaction_free(transaction);
2722 error("%s", err.buf);
2723 strbuf_release(&err);
2724 return;
2726 ref_transaction_free(transaction);
2727 strbuf_release(&err);
2728 try_remove_empty_parents(r->name);
2731 static void prune_refs(struct ref_to_prune *r)
2733 while (r) {
2734 prune_ref(r);
2735 r = r->next;
2739 int pack_refs(unsigned int flags)
2741 struct pack_refs_cb_data cbdata;
2743 memset(&cbdata, 0, sizeof(cbdata));
2744 cbdata.flags = flags;
2746 lock_packed_refs(LOCK_DIE_ON_ERROR);
2747 cbdata.packed_refs = get_packed_refs(&ref_cache);
2749 do_for_each_entry_in_dir(get_loose_refs(&ref_cache), 0,
2750 pack_if_possible_fn, &cbdata);
2752 if (commit_packed_refs())
2753 die_errno("unable to overwrite old ref-pack file");
2755 prune_refs(cbdata.ref_to_prune);
2756 return 0;
2759 int repack_without_refs(struct string_list *refnames, struct strbuf *err)
2761 struct ref_dir *packed;
2762 struct string_list_item *refname;
2763 int ret, needs_repacking = 0, removed = 0;
2765 assert(err);
2767 /* Look for a packed ref */
2768 for_each_string_list_item(refname, refnames) {
2769 if (get_packed_ref(refname->string)) {
2770 needs_repacking = 1;
2771 break;
2775 /* Avoid locking if we have nothing to do */
2776 if (!needs_repacking)
2777 return 0; /* no refname exists in packed refs */
2779 if (lock_packed_refs(0)) {
2780 unable_to_lock_message(git_path("packed-refs"), errno, err);
2781 return -1;
2783 packed = get_packed_refs(&ref_cache);
2785 /* Remove refnames from the cache */
2786 for_each_string_list_item(refname, refnames)
2787 if (remove_entry(packed, refname->string) != -1)
2788 removed = 1;
2789 if (!removed) {
2791 * All packed entries disappeared while we were
2792 * acquiring the lock.
2794 rollback_packed_refs();
2795 return 0;
2798 /* Write what remains */
2799 ret = commit_packed_refs();
2800 if (ret)
2801 strbuf_addf(err, "unable to overwrite old ref-pack file: %s",
2802 strerror(errno));
2803 return ret;
2806 static int delete_ref_loose(struct ref_lock *lock, int flag, struct strbuf *err)
2808 assert(err);
2810 if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
2812 * loose. The loose file name is the same as the
2813 * lockfile name, minus ".lock":
2815 char *loose_filename = get_locked_file_path(lock->lk);
2816 int res = unlink_or_msg(loose_filename, err);
2817 free(loose_filename);
2818 if (res)
2819 return 1;
2821 return 0;
2824 int delete_ref(const char *refname, const unsigned char *sha1, unsigned int flags)
2826 struct ref_transaction *transaction;
2827 struct strbuf err = STRBUF_INIT;
2829 transaction = ref_transaction_begin(&err);
2830 if (!transaction ||
2831 ref_transaction_delete(transaction, refname,
2832 (sha1 && !is_null_sha1(sha1)) ? sha1 : NULL,
2833 flags, NULL, &err) ||
2834 ref_transaction_commit(transaction, &err)) {
2835 error("%s", err.buf);
2836 ref_transaction_free(transaction);
2837 strbuf_release(&err);
2838 return 1;
2840 ref_transaction_free(transaction);
2841 strbuf_release(&err);
2842 return 0;
2846 * People using contrib's git-new-workdir have .git/logs/refs ->
2847 * /some/other/path/.git/logs/refs, and that may live on another device.
2849 * IOW, to avoid cross device rename errors, the temporary renamed log must
2850 * live into logs/refs.
2852 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
2854 static int rename_tmp_log(const char *newrefname)
2856 int attempts_remaining = 4;
2858 retry:
2859 switch (safe_create_leading_directories_const(git_path("logs/%s", newrefname))) {
2860 case SCLD_OK:
2861 break; /* success */
2862 case SCLD_VANISHED:
2863 if (--attempts_remaining > 0)
2864 goto retry;
2865 /* fall through */
2866 default:
2867 error("unable to create directory for %s", newrefname);
2868 return -1;
2871 if (rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newrefname))) {
2872 if ((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining > 0) {
2874 * rename(a, b) when b is an existing
2875 * directory ought to result in ISDIR, but
2876 * Solaris 5.8 gives ENOTDIR. Sheesh.
2878 if (remove_empty_directories(git_path("logs/%s", newrefname))) {
2879 error("Directory not empty: logs/%s", newrefname);
2880 return -1;
2882 goto retry;
2883 } else if (errno == ENOENT && --attempts_remaining > 0) {
2885 * Maybe another process just deleted one of
2886 * the directories in the path to newrefname.
2887 * Try again from the beginning.
2889 goto retry;
2890 } else {
2891 error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
2892 newrefname, strerror(errno));
2893 return -1;
2896 return 0;
2899 static int rename_ref_available(const char *oldname, const char *newname)
2901 struct string_list skip = STRING_LIST_INIT_NODUP;
2902 struct strbuf err = STRBUF_INIT;
2903 int ret;
2905 string_list_insert(&skip, oldname);
2906 ret = !verify_refname_available(newname, NULL, &skip,
2907 get_packed_refs(&ref_cache), &err)
2908 && !verify_refname_available(newname, NULL, &skip,
2909 get_loose_refs(&ref_cache), &err);
2910 if (!ret)
2911 error("%s", err.buf);
2913 string_list_clear(&skip, 0);
2914 strbuf_release(&err);
2915 return ret;
2918 static int write_ref_to_lockfile(struct ref_lock *lock,
2919 const unsigned char *sha1, struct strbuf *err);
2920 static int commit_ref_update(struct ref_lock *lock,
2921 const unsigned char *sha1, const char *logmsg,
2922 int flags, struct strbuf *err);
2924 int rename_ref(const char *oldrefname, const char *newrefname, const char *logmsg)
2926 unsigned char sha1[20], orig_sha1[20];
2927 int flag = 0, logmoved = 0;
2928 struct ref_lock *lock;
2929 struct stat loginfo;
2930 int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);
2931 const char *symref = NULL;
2932 struct strbuf err = STRBUF_INIT;
2934 if (log && S_ISLNK(loginfo.st_mode))
2935 return error("reflog for %s is a symlink", oldrefname);
2937 symref = resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,
2938 orig_sha1, &flag);
2939 if (flag & REF_ISSYMREF)
2940 return error("refname %s is a symbolic ref, renaming it is not supported",
2941 oldrefname);
2942 if (!symref)
2943 return error("refname %s not found", oldrefname);
2945 if (!rename_ref_available(oldrefname, newrefname))
2946 return 1;
2948 if (log && rename(git_path("logs/%s", oldrefname), git_path(TMP_RENAMED_LOG)))
2949 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
2950 oldrefname, strerror(errno));
2952 if (delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {
2953 error("unable to delete old %s", oldrefname);
2954 goto rollback;
2957 if (!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&
2958 delete_ref(newrefname, sha1, REF_NODEREF)) {
2959 if (errno==EISDIR) {
2960 if (remove_empty_directories(git_path("%s", newrefname))) {
2961 error("Directory not empty: %s", newrefname);
2962 goto rollback;
2964 } else {
2965 error("unable to delete existing %s", newrefname);
2966 goto rollback;
2970 if (log && rename_tmp_log(newrefname))
2971 goto rollback;
2973 logmoved = log;
2975 lock = lock_ref_sha1_basic(newrefname, NULL, NULL, NULL, 0, NULL, &err);
2976 if (!lock) {
2977 error("unable to rename '%s' to '%s': %s", oldrefname, newrefname, err.buf);
2978 strbuf_release(&err);
2979 goto rollback;
2981 hashcpy(lock->old_oid.hash, orig_sha1);
2983 if (write_ref_to_lockfile(lock, orig_sha1, &err) ||
2984 commit_ref_update(lock, orig_sha1, logmsg, 0, &err)) {
2985 error("unable to write current sha1 into %s: %s", newrefname, err.buf);
2986 strbuf_release(&err);
2987 goto rollback;
2990 return 0;
2992 rollback:
2993 lock = lock_ref_sha1_basic(oldrefname, NULL, NULL, NULL, 0, NULL, &err);
2994 if (!lock) {
2995 error("unable to lock %s for rollback: %s", oldrefname, err.buf);
2996 strbuf_release(&err);
2997 goto rollbacklog;
3000 flag = log_all_ref_updates;
3001 log_all_ref_updates = 0;
3002 if (write_ref_to_lockfile(lock, orig_sha1, &err) ||
3003 commit_ref_update(lock, orig_sha1, NULL, 0, &err)) {
3004 error("unable to write current sha1 into %s: %s", oldrefname, err.buf);
3005 strbuf_release(&err);
3007 log_all_ref_updates = flag;
3009 rollbacklog:
3010 if (logmoved && rename(git_path("logs/%s", newrefname), git_path("logs/%s", oldrefname)))
3011 error("unable to restore logfile %s from %s: %s",
3012 oldrefname, newrefname, strerror(errno));
3013 if (!logmoved && log &&
3014 rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldrefname)))
3015 error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
3016 oldrefname, strerror(errno));
3018 return 1;
3021 static int close_ref(struct ref_lock *lock)
3023 if (close_lock_file(lock->lk))
3024 return -1;
3025 return 0;
3028 static int commit_ref(struct ref_lock *lock)
3030 if (commit_lock_file(lock->lk))
3031 return -1;
3032 return 0;
3036 * copy the reflog message msg to buf, which has been allocated sufficiently
3037 * large, while cleaning up the whitespaces. Especially, convert LF to space,
3038 * because reflog file is one line per entry.
3040 static int copy_msg(char *buf, const char *msg)
3042 char *cp = buf;
3043 char c;
3044 int wasspace = 1;
3046 *cp++ = '\t';
3047 while ((c = *msg++)) {
3048 if (wasspace && isspace(c))
3049 continue;
3050 wasspace = isspace(c);
3051 if (wasspace)
3052 c = ' ';
3053 *cp++ = c;
3055 while (buf < cp && isspace(cp[-1]))
3056 cp--;
3057 *cp++ = '\n';
3058 return cp - buf;
3061 static int should_autocreate_reflog(const char *refname)
3063 if (!log_all_ref_updates)
3064 return 0;
3065 return starts_with(refname, "refs/heads/") ||
3066 starts_with(refname, "refs/remotes/") ||
3067 starts_with(refname, "refs/notes/") ||
3068 !strcmp(refname, "HEAD");
3072 * Create a reflog for a ref. If force_create = 0, the reflog will
3073 * only be created for certain refs (those for which
3074 * should_autocreate_reflog returns non-zero. Otherwise, create it
3075 * regardless of the ref name. Fill in *err and return -1 on failure.
3077 static int log_ref_setup(const char *refname, struct strbuf *sb_logfile, struct strbuf *err, int force_create)
3079 int logfd, oflags = O_APPEND | O_WRONLY;
3080 char *logfile;
3082 strbuf_git_path(sb_logfile, "logs/%s", refname);
3083 logfile = sb_logfile->buf;
3084 /* make sure the rest of the function can't change "logfile" */
3085 sb_logfile = NULL;
3086 if (force_create || should_autocreate_reflog(refname)) {
3087 if (safe_create_leading_directories(logfile) < 0) {
3088 strbuf_addf(err, "unable to create directory for %s: "
3089 "%s", logfile, strerror(errno));
3090 return -1;
3092 oflags |= O_CREAT;
3095 logfd = open(logfile, oflags, 0666);
3096 if (logfd < 0) {
3097 if (!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))
3098 return 0;
3100 if (errno == EISDIR) {
3101 if (remove_empty_directories(logfile)) {
3102 strbuf_addf(err, "There are still logs under "
3103 "'%s'", logfile);
3104 return -1;
3106 logfd = open(logfile, oflags, 0666);
3109 if (logfd < 0) {
3110 strbuf_addf(err, "unable to append to %s: %s",
3111 logfile, strerror(errno));
3112 return -1;
3116 adjust_shared_perm(logfile);
3117 close(logfd);
3118 return 0;
3122 int safe_create_reflog(const char *refname, int force_create, struct strbuf *err)
3124 int ret;
3125 struct strbuf sb = STRBUF_INIT;
3127 ret = log_ref_setup(refname, &sb, err, force_create);
3128 strbuf_release(&sb);
3129 return ret;
3132 static int log_ref_write_fd(int fd, const unsigned char *old_sha1,
3133 const unsigned char *new_sha1,
3134 const char *committer, const char *msg)
3136 int msglen, written;
3137 unsigned maxlen, len;
3138 char *logrec;
3140 msglen = msg ? strlen(msg) : 0;
3141 maxlen = strlen(committer) + msglen + 100;
3142 logrec = xmalloc(maxlen);
3143 len = sprintf(logrec, "%s %s %s\n",
3144 sha1_to_hex(old_sha1),
3145 sha1_to_hex(new_sha1),
3146 committer);
3147 if (msglen)
3148 len += copy_msg(logrec + len - 1, msg) - 1;
3150 written = len <= maxlen ? write_in_full(fd, logrec, len) : -1;
3151 free(logrec);
3152 if (written != len)
3153 return -1;
3155 return 0;
3158 static int log_ref_write_1(const char *refname, const unsigned char *old_sha1,
3159 const unsigned char *new_sha1, const char *msg,
3160 struct strbuf *sb_log_file, int flags,
3161 struct strbuf *err)
3163 int logfd, result, oflags = O_APPEND | O_WRONLY;
3164 char *log_file;
3166 if (log_all_ref_updates < 0)
3167 log_all_ref_updates = !is_bare_repository();
3169 result = log_ref_setup(refname, sb_log_file, err, flags & REF_FORCE_CREATE_REFLOG);
3171 if (result)
3172 return result;
3173 log_file = sb_log_file->buf;
3174 /* make sure the rest of the function can't change "log_file" */
3175 sb_log_file = NULL;
3177 logfd = open(log_file, oflags);
3178 if (logfd < 0)
3179 return 0;
3180 result = log_ref_write_fd(logfd, old_sha1, new_sha1,
3181 git_committer_info(0), msg);
3182 if (result) {
3183 strbuf_addf(err, "unable to append to %s: %s", log_file,
3184 strerror(errno));
3185 close(logfd);
3186 return -1;
3188 if (close(logfd)) {
3189 strbuf_addf(err, "unable to append to %s: %s", log_file,
3190 strerror(errno));
3191 return -1;
3193 return 0;
3196 static int log_ref_write(const char *refname, const unsigned char *old_sha1,
3197 const unsigned char *new_sha1, const char *msg,
3198 int flags, struct strbuf *err)
3200 struct strbuf sb = STRBUF_INIT;
3201 int ret = log_ref_write_1(refname, old_sha1, new_sha1, msg, &sb, flags,
3202 err);
3203 strbuf_release(&sb);
3204 return ret;
3207 int is_branch(const char *refname)
3209 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
3213 * Write sha1 into the open lockfile, then close the lockfile. On
3214 * errors, rollback the lockfile, fill in *err and
3215 * return -1.
3217 static int write_ref_to_lockfile(struct ref_lock *lock,
3218 const unsigned char *sha1, struct strbuf *err)
3220 static char term = '\n';
3221 struct object *o;
3223 o = parse_object(sha1);
3224 if (!o) {
3225 strbuf_addf(err,
3226 "Trying to write ref %s with nonexistent object %s",
3227 lock->ref_name, sha1_to_hex(sha1));
3228 unlock_ref(lock);
3229 return -1;
3231 if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
3232 strbuf_addf(err,
3233 "Trying to write non-commit object %s to branch %s",
3234 sha1_to_hex(sha1), lock->ref_name);
3235 unlock_ref(lock);
3236 return -1;
3238 if (write_in_full(lock->lk->fd, sha1_to_hex(sha1), 40) != 40 ||
3239 write_in_full(lock->lk->fd, &term, 1) != 1 ||
3240 close_ref(lock) < 0) {
3241 strbuf_addf(err,
3242 "Couldn't write %s", lock->lk->filename.buf);
3243 unlock_ref(lock);
3244 return -1;
3246 return 0;
3250 * Commit a change to a loose reference that has already been written
3251 * to the loose reference lockfile. Also update the reflogs if
3252 * necessary, using the specified lockmsg (which can be NULL).
3254 static int commit_ref_update(struct ref_lock *lock,
3255 const unsigned char *sha1, const char *logmsg,
3256 int flags, struct strbuf *err)
3258 clear_loose_ref_cache(&ref_cache);
3259 if (log_ref_write(lock->ref_name, lock->old_oid.hash, sha1, logmsg, flags, err) < 0 ||
3260 (strcmp(lock->ref_name, lock->orig_ref_name) &&
3261 log_ref_write(lock->orig_ref_name, lock->old_oid.hash, sha1, logmsg, flags, err) < 0)) {
3262 char *old_msg = strbuf_detach(err, NULL);
3263 strbuf_addf(err, "Cannot update the ref '%s': %s",
3264 lock->ref_name, old_msg);
3265 free(old_msg);
3266 unlock_ref(lock);
3267 return -1;
3269 if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
3271 * Special hack: If a branch is updated directly and HEAD
3272 * points to it (may happen on the remote side of a push
3273 * for example) then logically the HEAD reflog should be
3274 * updated too.
3275 * A generic solution implies reverse symref information,
3276 * but finding all symrefs pointing to the given branch
3277 * would be rather costly for this rare event (the direct
3278 * update of a branch) to be worth it. So let's cheat and
3279 * check with HEAD only which should cover 99% of all usage
3280 * scenarios (even 100% of the default ones).
3282 unsigned char head_sha1[20];
3283 int head_flag;
3284 const char *head_ref;
3285 head_ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
3286 head_sha1, &head_flag);
3287 if (head_ref && (head_flag & REF_ISSYMREF) &&
3288 !strcmp(head_ref, lock->ref_name)) {
3289 struct strbuf log_err = STRBUF_INIT;
3290 if (log_ref_write("HEAD", lock->old_oid.hash, sha1,
3291 logmsg, 0, &log_err)) {
3292 error("%s", log_err.buf);
3293 strbuf_release(&log_err);
3297 if (commit_ref(lock)) {
3298 error("Couldn't set %s", lock->ref_name);
3299 unlock_ref(lock);
3300 return -1;
3303 unlock_ref(lock);
3304 return 0;
3307 int create_symref(const char *ref_target, const char *refs_heads_master,
3308 const char *logmsg)
3310 const char *lockpath;
3311 char ref[1000];
3312 int fd, len, written;
3313 char *git_HEAD = git_pathdup("%s", ref_target);
3314 unsigned char old_sha1[20], new_sha1[20];
3315 struct strbuf err = STRBUF_INIT;
3317 if (logmsg && read_ref(ref_target, old_sha1))
3318 hashclr(old_sha1);
3320 if (safe_create_leading_directories(git_HEAD) < 0)
3321 return error("unable to create directory for %s", git_HEAD);
3323 #ifndef NO_SYMLINK_HEAD
3324 if (prefer_symlink_refs) {
3325 unlink(git_HEAD);
3326 if (!symlink(refs_heads_master, git_HEAD))
3327 goto done;
3328 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
3330 #endif
3332 len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
3333 if (sizeof(ref) <= len) {
3334 error("refname too long: %s", refs_heads_master);
3335 goto error_free_return;
3337 lockpath = mkpath("%s.lock", git_HEAD);
3338 fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
3339 if (fd < 0) {
3340 error("Unable to open %s for writing", lockpath);
3341 goto error_free_return;
3343 written = write_in_full(fd, ref, len);
3344 if (close(fd) != 0 || written != len) {
3345 error("Unable to write to %s", lockpath);
3346 goto error_unlink_return;
3348 if (rename(lockpath, git_HEAD) < 0) {
3349 error("Unable to create %s", git_HEAD);
3350 goto error_unlink_return;
3352 if (adjust_shared_perm(git_HEAD)) {
3353 error("Unable to fix permissions on %s", lockpath);
3354 error_unlink_return:
3355 unlink_or_warn(lockpath);
3356 error_free_return:
3357 free(git_HEAD);
3358 return -1;
3361 #ifndef NO_SYMLINK_HEAD
3362 done:
3363 #endif
3364 if (logmsg && !read_ref(refs_heads_master, new_sha1) &&
3365 log_ref_write(ref_target, old_sha1, new_sha1, logmsg, 0, &err)) {
3366 error("%s", err.buf);
3367 strbuf_release(&err);
3370 free(git_HEAD);
3371 return 0;
3374 struct read_ref_at_cb {
3375 const char *refname;
3376 unsigned long at_time;
3377 int cnt;
3378 int reccnt;
3379 unsigned char *sha1;
3380 int found_it;
3382 unsigned char osha1[20];
3383 unsigned char nsha1[20];
3384 int tz;
3385 unsigned long date;
3386 char **msg;
3387 unsigned long *cutoff_time;
3388 int *cutoff_tz;
3389 int *cutoff_cnt;
3392 static int read_ref_at_ent(unsigned char *osha1, unsigned char *nsha1,
3393 const char *email, unsigned long timestamp, int tz,
3394 const char *message, void *cb_data)
3396 struct read_ref_at_cb *cb = cb_data;
3398 cb->reccnt++;
3399 cb->tz = tz;
3400 cb->date = timestamp;
3402 if (timestamp <= cb->at_time || cb->cnt == 0) {
3403 if (cb->msg)
3404 *cb->msg = xstrdup(message);
3405 if (cb->cutoff_time)
3406 *cb->cutoff_time = timestamp;
3407 if (cb->cutoff_tz)
3408 *cb->cutoff_tz = tz;
3409 if (cb->cutoff_cnt)
3410 *cb->cutoff_cnt = cb->reccnt - 1;
3412 * we have not yet updated cb->[n|o]sha1 so they still
3413 * hold the values for the previous record.
3415 if (!is_null_sha1(cb->osha1)) {
3416 hashcpy(cb->sha1, nsha1);
3417 if (hashcmp(cb->osha1, nsha1))
3418 warning("Log for ref %s has gap after %s.",
3419 cb->refname, show_date(cb->date, cb->tz, DATE_RFC2822));
3421 else if (cb->date == cb->at_time)
3422 hashcpy(cb->sha1, nsha1);
3423 else if (hashcmp(nsha1, cb->sha1))
3424 warning("Log for ref %s unexpectedly ended on %s.",
3425 cb->refname, show_date(cb->date, cb->tz,
3426 DATE_RFC2822));
3427 hashcpy(cb->osha1, osha1);
3428 hashcpy(cb->nsha1, nsha1);
3429 cb->found_it = 1;
3430 return 1;
3432 hashcpy(cb->osha1, osha1);
3433 hashcpy(cb->nsha1, nsha1);
3434 if (cb->cnt > 0)
3435 cb->cnt--;
3436 return 0;
3439 static int read_ref_at_ent_oldest(unsigned char *osha1, unsigned char *nsha1,
3440 const char *email, unsigned long timestamp,
3441 int tz, const char *message, void *cb_data)
3443 struct read_ref_at_cb *cb = cb_data;
3445 if (cb->msg)
3446 *cb->msg = xstrdup(message);
3447 if (cb->cutoff_time)
3448 *cb->cutoff_time = timestamp;
3449 if (cb->cutoff_tz)
3450 *cb->cutoff_tz = tz;
3451 if (cb->cutoff_cnt)
3452 *cb->cutoff_cnt = cb->reccnt;
3453 hashcpy(cb->sha1, osha1);
3454 if (is_null_sha1(cb->sha1))
3455 hashcpy(cb->sha1, nsha1);
3456 /* We just want the first entry */
3457 return 1;
3460 int read_ref_at(const char *refname, unsigned int flags, unsigned long at_time, int cnt,
3461 unsigned char *sha1, char **msg,
3462 unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
3464 struct read_ref_at_cb cb;
3466 memset(&cb, 0, sizeof(cb));
3467 cb.refname = refname;
3468 cb.at_time = at_time;
3469 cb.cnt = cnt;
3470 cb.msg = msg;
3471 cb.cutoff_time = cutoff_time;
3472 cb.cutoff_tz = cutoff_tz;
3473 cb.cutoff_cnt = cutoff_cnt;
3474 cb.sha1 = sha1;
3476 for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
3478 if (!cb.reccnt) {
3479 if (flags & GET_SHA1_QUIETLY)
3480 exit(128);
3481 else
3482 die("Log for %s is empty.", refname);
3484 if (cb.found_it)
3485 return 0;
3487 for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
3489 return 1;
3492 int reflog_exists(const char *refname)
3494 struct stat st;
3496 return !lstat(git_path("logs/%s", refname), &st) &&
3497 S_ISREG(st.st_mode);
3500 int delete_reflog(const char *refname)
3502 return remove_path(git_path("logs/%s", refname));
3505 static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data)
3507 unsigned char osha1[20], nsha1[20];
3508 char *email_end, *message;
3509 unsigned long timestamp;
3510 int tz;
3512 /* old SP new SP name <email> SP time TAB msg LF */
3513 if (sb->len < 83 || sb->buf[sb->len - 1] != '\n' ||
3514 get_sha1_hex(sb->buf, osha1) || sb->buf[40] != ' ' ||
3515 get_sha1_hex(sb->buf + 41, nsha1) || sb->buf[81] != ' ' ||
3516 !(email_end = strchr(sb->buf + 82, '>')) ||
3517 email_end[1] != ' ' ||
3518 !(timestamp = strtoul(email_end + 2, &message, 10)) ||
3519 !message || message[0] != ' ' ||
3520 (message[1] != '+' && message[1] != '-') ||
3521 !isdigit(message[2]) || !isdigit(message[3]) ||
3522 !isdigit(message[4]) || !isdigit(message[5]))
3523 return 0; /* corrupt? */
3524 email_end[1] = '\0';
3525 tz = strtol(message + 1, NULL, 10);
3526 if (message[6] != '\t')
3527 message += 6;
3528 else
3529 message += 7;
3530 return fn(osha1, nsha1, sb->buf + 82, timestamp, tz, message, cb_data);
3533 static char *find_beginning_of_line(char *bob, char *scan)
3535 while (bob < scan && *(--scan) != '\n')
3536 ; /* keep scanning backwards */
3538 * Return either beginning of the buffer, or LF at the end of
3539 * the previous line.
3541 return scan;
3544 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn, void *cb_data)
3546 struct strbuf sb = STRBUF_INIT;
3547 FILE *logfp;
3548 long pos;
3549 int ret = 0, at_tail = 1;
3551 logfp = fopen(git_path("logs/%s", refname), "r");
3552 if (!logfp)
3553 return -1;
3555 /* Jump to the end */
3556 if (fseek(logfp, 0, SEEK_END) < 0)
3557 return error("cannot seek back reflog for %s: %s",
3558 refname, strerror(errno));
3559 pos = ftell(logfp);
3560 while (!ret && 0 < pos) {
3561 int cnt;
3562 size_t nread;
3563 char buf[BUFSIZ];
3564 char *endp, *scanp;
3566 /* Fill next block from the end */
3567 cnt = (sizeof(buf) < pos) ? sizeof(buf) : pos;
3568 if (fseek(logfp, pos - cnt, SEEK_SET))
3569 return error("cannot seek back reflog for %s: %s",
3570 refname, strerror(errno));
3571 nread = fread(buf, cnt, 1, logfp);
3572 if (nread != 1)
3573 return error("cannot read %d bytes from reflog for %s: %s",
3574 cnt, refname, strerror(errno));
3575 pos -= cnt;
3577 scanp = endp = buf + cnt;
3578 if (at_tail && scanp[-1] == '\n')
3579 /* Looking at the final LF at the end of the file */
3580 scanp--;
3581 at_tail = 0;
3583 while (buf < scanp) {
3585 * terminating LF of the previous line, or the beginning
3586 * of the buffer.
3588 char *bp;
3590 bp = find_beginning_of_line(buf, scanp);
3592 if (*bp == '\n') {
3594 * The newline is the end of the previous line,
3595 * so we know we have complete line starting
3596 * at (bp + 1). Prefix it onto any prior data
3597 * we collected for the line and process it.
3599 strbuf_splice(&sb, 0, 0, bp + 1, endp - (bp + 1));
3600 scanp = bp;
3601 endp = bp + 1;
3602 ret = show_one_reflog_ent(&sb, fn, cb_data);
3603 strbuf_reset(&sb);
3604 if (ret)
3605 break;
3606 } else if (!pos) {
3608 * We are at the start of the buffer, and the
3609 * start of the file; there is no previous
3610 * line, and we have everything for this one.
3611 * Process it, and we can end the loop.
3613 strbuf_splice(&sb, 0, 0, buf, endp - buf);
3614 ret = show_one_reflog_ent(&sb, fn, cb_data);
3615 strbuf_reset(&sb);
3616 break;
3619 if (bp == buf) {
3621 * We are at the start of the buffer, and there
3622 * is more file to read backwards. Which means
3623 * we are in the middle of a line. Note that we
3624 * may get here even if *bp was a newline; that
3625 * just means we are at the exact end of the
3626 * previous line, rather than some spot in the
3627 * middle.
3629 * Save away what we have to be combined with
3630 * the data from the next read.
3632 strbuf_splice(&sb, 0, 0, buf, endp - buf);
3633 break;
3638 if (!ret && sb.len)
3639 die("BUG: reverse reflog parser had leftover data");
3641 fclose(logfp);
3642 strbuf_release(&sb);
3643 return ret;
3646 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data)
3648 FILE *logfp;
3649 struct strbuf sb = STRBUF_INIT;
3650 int ret = 0;
3652 logfp = fopen(git_path("logs/%s", refname), "r");
3653 if (!logfp)
3654 return -1;
3656 while (!ret && !strbuf_getwholeline(&sb, logfp, '\n'))
3657 ret = show_one_reflog_ent(&sb, fn, cb_data);
3658 fclose(logfp);
3659 strbuf_release(&sb);
3660 return ret;
3663 * Call fn for each reflog in the namespace indicated by name. name
3664 * must be empty or end with '/'. Name will be used as a scratch
3665 * space, but its contents will be restored before return.
3667 static int do_for_each_reflog(struct strbuf *name, each_ref_fn fn, void *cb_data)
3669 DIR *d = opendir(git_path("logs/%s", name->buf));
3670 int retval = 0;
3671 struct dirent *de;
3672 int oldlen = name->len;
3674 if (!d)
3675 return name->len ? errno : 0;
3677 while ((de = readdir(d)) != NULL) {
3678 struct stat st;
3680 if (de->d_name[0] == '.')
3681 continue;
3682 if (ends_with(de->d_name, ".lock"))
3683 continue;
3684 strbuf_addstr(name, de->d_name);
3685 if (stat(git_path("logs/%s", name->buf), &st) < 0) {
3686 ; /* silently ignore */
3687 } else {
3688 if (S_ISDIR(st.st_mode)) {
3689 strbuf_addch(name, '/');
3690 retval = do_for_each_reflog(name, fn, cb_data);
3691 } else {
3692 struct object_id oid;
3694 if (read_ref_full(name->buf, 0, oid.hash, NULL))
3695 retval = error("bad ref for %s", name->buf);
3696 else
3697 retval = fn(name->buf, &oid, 0, cb_data);
3699 if (retval)
3700 break;
3702 strbuf_setlen(name, oldlen);
3704 closedir(d);
3705 return retval;
3708 int for_each_reflog(each_ref_fn fn, void *cb_data)
3710 int retval;
3711 struct strbuf name;
3712 strbuf_init(&name, PATH_MAX);
3713 retval = do_for_each_reflog(&name, fn, cb_data);
3714 strbuf_release(&name);
3715 return retval;
3719 * Information needed for a single ref update. Set new_sha1 to the new
3720 * value or to null_sha1 to delete the ref. To check the old value
3721 * while the ref is locked, set (flags & REF_HAVE_OLD) and set
3722 * old_sha1 to the old value, or to null_sha1 to ensure the ref does
3723 * not exist before update.
3725 struct ref_update {
3727 * If (flags & REF_HAVE_NEW), set the reference to this value:
3729 unsigned char new_sha1[20];
3731 * If (flags & REF_HAVE_OLD), check that the reference
3732 * previously had this value:
3734 unsigned char old_sha1[20];
3736 * One or more of REF_HAVE_NEW, REF_HAVE_OLD, REF_NODEREF,
3737 * REF_DELETING, and REF_ISPRUNING:
3739 unsigned int flags;
3740 struct ref_lock *lock;
3741 int type;
3742 char *msg;
3743 const char refname[FLEX_ARRAY];
3747 * Transaction states.
3748 * OPEN: The transaction is in a valid state and can accept new updates.
3749 * An OPEN transaction can be committed.
3750 * CLOSED: A closed transaction is no longer active and no other operations
3751 * than free can be used on it in this state.
3752 * A transaction can either become closed by successfully committing
3753 * an active transaction or if there is a failure while building
3754 * the transaction thus rendering it failed/inactive.
3756 enum ref_transaction_state {
3757 REF_TRANSACTION_OPEN = 0,
3758 REF_TRANSACTION_CLOSED = 1
3762 * Data structure for holding a reference transaction, which can
3763 * consist of checks and updates to multiple references, carried out
3764 * as atomically as possible. This structure is opaque to callers.
3766 struct ref_transaction {
3767 struct ref_update **updates;
3768 size_t alloc;
3769 size_t nr;
3770 enum ref_transaction_state state;
3773 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
3775 assert(err);
3777 return xcalloc(1, sizeof(struct ref_transaction));
3780 void ref_transaction_free(struct ref_transaction *transaction)
3782 int i;
3784 if (!transaction)
3785 return;
3787 for (i = 0; i < transaction->nr; i++) {
3788 free(transaction->updates[i]->msg);
3789 free(transaction->updates[i]);
3791 free(transaction->updates);
3792 free(transaction);
3795 static struct ref_update *add_update(struct ref_transaction *transaction,
3796 const char *refname)
3798 size_t len = strlen(refname);
3799 struct ref_update *update = xcalloc(1, sizeof(*update) + len + 1);
3801 strcpy((char *)update->refname, refname);
3802 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
3803 transaction->updates[transaction->nr++] = update;
3804 return update;
3807 int ref_transaction_update(struct ref_transaction *transaction,
3808 const char *refname,
3809 const unsigned char *new_sha1,
3810 const unsigned char *old_sha1,
3811 unsigned int flags, const char *msg,
3812 struct strbuf *err)
3814 struct ref_update *update;
3816 assert(err);
3818 if (transaction->state != REF_TRANSACTION_OPEN)
3819 die("BUG: update called for transaction that is not open");
3821 if (new_sha1 && !is_null_sha1(new_sha1) &&
3822 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
3823 strbuf_addf(err, "refusing to update ref with bad name %s",
3824 refname);
3825 return -1;
3828 update = add_update(transaction, refname);
3829 if (new_sha1) {
3830 hashcpy(update->new_sha1, new_sha1);
3831 flags |= REF_HAVE_NEW;
3833 if (old_sha1) {
3834 hashcpy(update->old_sha1, old_sha1);
3835 flags |= REF_HAVE_OLD;
3837 update->flags = flags;
3838 if (msg)
3839 update->msg = xstrdup(msg);
3840 return 0;
3843 int ref_transaction_create(struct ref_transaction *transaction,
3844 const char *refname,
3845 const unsigned char *new_sha1,
3846 unsigned int flags, const char *msg,
3847 struct strbuf *err)
3849 if (!new_sha1 || is_null_sha1(new_sha1))
3850 die("BUG: create called without valid new_sha1");
3851 return ref_transaction_update(transaction, refname, new_sha1,
3852 null_sha1, flags, msg, err);
3855 int ref_transaction_delete(struct ref_transaction *transaction,
3856 const char *refname,
3857 const unsigned char *old_sha1,
3858 unsigned int flags, const char *msg,
3859 struct strbuf *err)
3861 if (old_sha1 && is_null_sha1(old_sha1))
3862 die("BUG: delete called with old_sha1 set to zeros");
3863 return ref_transaction_update(transaction, refname,
3864 null_sha1, old_sha1,
3865 flags, msg, err);
3868 int ref_transaction_verify(struct ref_transaction *transaction,
3869 const char *refname,
3870 const unsigned char *old_sha1,
3871 unsigned int flags,
3872 struct strbuf *err)
3874 if (!old_sha1)
3875 die("BUG: verify called with old_sha1 set to NULL");
3876 return ref_transaction_update(transaction, refname,
3877 NULL, old_sha1,
3878 flags, NULL, err);
3881 int update_ref(const char *msg, const char *refname,
3882 const unsigned char *new_sha1, const unsigned char *old_sha1,
3883 unsigned int flags, enum action_on_err onerr)
3885 struct ref_transaction *t;
3886 struct strbuf err = STRBUF_INIT;
3888 t = ref_transaction_begin(&err);
3889 if (!t ||
3890 ref_transaction_update(t, refname, new_sha1, old_sha1,
3891 flags, msg, &err) ||
3892 ref_transaction_commit(t, &err)) {
3893 const char *str = "update_ref failed for ref '%s': %s";
3895 ref_transaction_free(t);
3896 switch (onerr) {
3897 case UPDATE_REFS_MSG_ON_ERR:
3898 error(str, refname, err.buf);
3899 break;
3900 case UPDATE_REFS_DIE_ON_ERR:
3901 die(str, refname, err.buf);
3902 break;
3903 case UPDATE_REFS_QUIET_ON_ERR:
3904 break;
3906 strbuf_release(&err);
3907 return 1;
3909 strbuf_release(&err);
3910 ref_transaction_free(t);
3911 return 0;
3914 static int ref_update_reject_duplicates(struct string_list *refnames,
3915 struct strbuf *err)
3917 int i, n = refnames->nr;
3919 assert(err);
3921 for (i = 1; i < n; i++)
3922 if (!strcmp(refnames->items[i - 1].string, refnames->items[i].string)) {
3923 strbuf_addf(err,
3924 "Multiple updates for ref '%s' not allowed.",
3925 refnames->items[i].string);
3926 return 1;
3928 return 0;
3931 int ref_transaction_commit(struct ref_transaction *transaction,
3932 struct strbuf *err)
3934 int ret = 0, i;
3935 int n = transaction->nr;
3936 struct ref_update **updates = transaction->updates;
3937 struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;
3938 struct string_list_item *ref_to_delete;
3939 struct string_list affected_refnames = STRING_LIST_INIT_NODUP;
3941 assert(err);
3943 if (transaction->state != REF_TRANSACTION_OPEN)
3944 die("BUG: commit called for transaction that is not open");
3946 if (!n) {
3947 transaction->state = REF_TRANSACTION_CLOSED;
3948 return 0;
3951 /* Fail if a refname appears more than once in the transaction: */
3952 for (i = 0; i < n; i++)
3953 string_list_append(&affected_refnames, updates[i]->refname);
3954 string_list_sort(&affected_refnames);
3955 if (ref_update_reject_duplicates(&affected_refnames, err)) {
3956 ret = TRANSACTION_GENERIC_ERROR;
3957 goto cleanup;
3961 * Acquire all locks, verify old values if provided, check
3962 * that new values are valid, and write new values to the
3963 * lockfiles, ready to be activated. Only keep one lockfile
3964 * open at a time to avoid running out of file descriptors.
3966 for (i = 0; i < n; i++) {
3967 struct ref_update *update = updates[i];
3969 if ((update->flags & REF_HAVE_NEW) &&
3970 is_null_sha1(update->new_sha1))
3971 update->flags |= REF_DELETING;
3972 update->lock = lock_ref_sha1_basic(
3973 update->refname,
3974 ((update->flags & REF_HAVE_OLD) ?
3975 update->old_sha1 : NULL),
3976 &affected_refnames, NULL,
3977 update->flags,
3978 &update->type,
3979 err);
3980 if (!update->lock) {
3981 char *reason;
3983 ret = (errno == ENOTDIR)
3984 ? TRANSACTION_NAME_CONFLICT
3985 : TRANSACTION_GENERIC_ERROR;
3986 reason = strbuf_detach(err, NULL);
3987 strbuf_addf(err, "cannot lock ref '%s': %s",
3988 update->refname, reason);
3989 free(reason);
3990 goto cleanup;
3992 if ((update->flags & REF_HAVE_NEW) &&
3993 !(update->flags & REF_DELETING)) {
3994 int overwriting_symref = ((update->type & REF_ISSYMREF) &&
3995 (update->flags & REF_NODEREF));
3997 if (!overwriting_symref &&
3998 !hashcmp(update->lock->old_oid.hash, update->new_sha1)) {
4000 * The reference already has the desired
4001 * value, so we don't need to write it.
4003 } else if (write_ref_to_lockfile(update->lock,
4004 update->new_sha1,
4005 err)) {
4006 char *write_err = strbuf_detach(err, NULL);
4009 * The lock was freed upon failure of
4010 * write_ref_to_lockfile():
4012 update->lock = NULL;
4013 strbuf_addf(err,
4014 "cannot update the ref '%s': %s",
4015 update->refname, write_err);
4016 free(write_err);
4017 ret = TRANSACTION_GENERIC_ERROR;
4018 goto cleanup;
4019 } else {
4020 update->flags |= REF_NEEDS_COMMIT;
4023 if (!(update->flags & REF_NEEDS_COMMIT)) {
4025 * We didn't have to write anything to the lockfile.
4026 * Close it to free up the file descriptor:
4028 if (close_ref(update->lock)) {
4029 strbuf_addf(err, "Couldn't close %s.lock",
4030 update->refname);
4031 goto cleanup;
4036 /* Perform updates first so live commits remain referenced */
4037 for (i = 0; i < n; i++) {
4038 struct ref_update *update = updates[i];
4040 if (update->flags & REF_NEEDS_COMMIT) {
4041 if (commit_ref_update(update->lock,
4042 update->new_sha1, update->msg,
4043 update->flags, err)) {
4044 /* freed by commit_ref_update(): */
4045 update->lock = NULL;
4046 ret = TRANSACTION_GENERIC_ERROR;
4047 goto cleanup;
4048 } else {
4049 /* freed by commit_ref_update(): */
4050 update->lock = NULL;
4055 /* Perform deletes now that updates are safely completed */
4056 for (i = 0; i < n; i++) {
4057 struct ref_update *update = updates[i];
4059 if (update->flags & REF_DELETING) {
4060 if (delete_ref_loose(update->lock, update->type, err)) {
4061 ret = TRANSACTION_GENERIC_ERROR;
4062 goto cleanup;
4065 if (!(update->flags & REF_ISPRUNING))
4066 string_list_append(&refs_to_delete,
4067 update->lock->ref_name);
4071 if (repack_without_refs(&refs_to_delete, err)) {
4072 ret = TRANSACTION_GENERIC_ERROR;
4073 goto cleanup;
4075 for_each_string_list_item(ref_to_delete, &refs_to_delete)
4076 unlink_or_warn(git_path("logs/%s", ref_to_delete->string));
4077 clear_loose_ref_cache(&ref_cache);
4079 cleanup:
4080 transaction->state = REF_TRANSACTION_CLOSED;
4082 for (i = 0; i < n; i++)
4083 if (updates[i]->lock)
4084 unlock_ref(updates[i]->lock);
4085 string_list_clear(&refs_to_delete, 0);
4086 string_list_clear(&affected_refnames, 0);
4087 return ret;
4090 char *shorten_unambiguous_ref(const char *refname, int strict)
4092 int i;
4093 static char **scanf_fmts;
4094 static int nr_rules;
4095 char *short_name;
4097 if (!nr_rules) {
4099 * Pre-generate scanf formats from ref_rev_parse_rules[].
4100 * Generate a format suitable for scanf from a
4101 * ref_rev_parse_rules rule by interpolating "%s" at the
4102 * location of the "%.*s".
4104 size_t total_len = 0;
4105 size_t offset = 0;
4107 /* the rule list is NULL terminated, count them first */
4108 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
4109 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
4110 total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
4112 scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
4114 offset = 0;
4115 for (i = 0; i < nr_rules; i++) {
4116 assert(offset < total_len);
4117 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
4118 offset += snprintf(scanf_fmts[i], total_len - offset,
4119 ref_rev_parse_rules[i], 2, "%s") + 1;
4123 /* bail out if there are no rules */
4124 if (!nr_rules)
4125 return xstrdup(refname);
4127 /* buffer for scanf result, at most refname must fit */
4128 short_name = xstrdup(refname);
4130 /* skip first rule, it will always match */
4131 for (i = nr_rules - 1; i > 0 ; --i) {
4132 int j;
4133 int rules_to_fail = i;
4134 int short_name_len;
4136 if (1 != sscanf(refname, scanf_fmts[i], short_name))
4137 continue;
4139 short_name_len = strlen(short_name);
4142 * in strict mode, all (except the matched one) rules
4143 * must fail to resolve to a valid non-ambiguous ref
4145 if (strict)
4146 rules_to_fail = nr_rules;
4149 * check if the short name resolves to a valid ref,
4150 * but use only rules prior to the matched one
4152 for (j = 0; j < rules_to_fail; j++) {
4153 const char *rule = ref_rev_parse_rules[j];
4154 char refname[PATH_MAX];
4156 /* skip matched rule */
4157 if (i == j)
4158 continue;
4161 * the short name is ambiguous, if it resolves
4162 * (with this previous rule) to a valid ref
4163 * read_ref() returns 0 on success
4165 mksnpath(refname, sizeof(refname),
4166 rule, short_name_len, short_name);
4167 if (ref_exists(refname))
4168 break;
4172 * short name is non-ambiguous if all previous rules
4173 * haven't resolved to a valid ref
4175 if (j == rules_to_fail)
4176 return short_name;
4179 free(short_name);
4180 return xstrdup(refname);
4183 static struct string_list *hide_refs;
4185 int parse_hide_refs_config(const char *var, const char *value, const char *section)
4187 if (!strcmp("transfer.hiderefs", var) ||
4188 /* NEEDSWORK: use parse_config_key() once both are merged */
4189 (starts_with(var, section) && var[strlen(section)] == '.' &&
4190 !strcmp(var + strlen(section), ".hiderefs"))) {
4191 char *ref;
4192 int len;
4194 if (!value)
4195 return config_error_nonbool(var);
4196 ref = xstrdup(value);
4197 len = strlen(ref);
4198 while (len && ref[len - 1] == '/')
4199 ref[--len] = '\0';
4200 if (!hide_refs) {
4201 hide_refs = xcalloc(1, sizeof(*hide_refs));
4202 hide_refs->strdup_strings = 1;
4204 string_list_append(hide_refs, ref);
4206 return 0;
4209 int ref_is_hidden(const char *refname)
4211 struct string_list_item *item;
4213 if (!hide_refs)
4214 return 0;
4215 for_each_string_list_item(item, hide_refs) {
4216 int len;
4217 if (!starts_with(refname, item->string))
4218 continue;
4219 len = strlen(item->string);
4220 if (!refname[len] || refname[len] == '/')
4221 return 1;
4223 return 0;
4226 struct expire_reflog_cb {
4227 unsigned int flags;
4228 reflog_expiry_should_prune_fn *should_prune_fn;
4229 void *policy_cb;
4230 FILE *newlog;
4231 unsigned char last_kept_sha1[20];
4234 static int expire_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
4235 const char *email, unsigned long timestamp, int tz,
4236 const char *message, void *cb_data)
4238 struct expire_reflog_cb *cb = cb_data;
4239 struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;
4241 if (cb->flags & EXPIRE_REFLOGS_REWRITE)
4242 osha1 = cb->last_kept_sha1;
4244 if ((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,
4245 message, policy_cb)) {
4246 if (!cb->newlog)
4247 printf("would prune %s", message);
4248 else if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
4249 printf("prune %s", message);
4250 } else {
4251 if (cb->newlog) {
4252 fprintf(cb->newlog, "%s %s %s %lu %+05d\t%s",
4253 sha1_to_hex(osha1), sha1_to_hex(nsha1),
4254 email, timestamp, tz, message);
4255 hashcpy(cb->last_kept_sha1, nsha1);
4257 if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
4258 printf("keep %s", message);
4260 return 0;
4263 int reflog_expire(const char *refname, const unsigned char *sha1,
4264 unsigned int flags,
4265 reflog_expiry_prepare_fn prepare_fn,
4266 reflog_expiry_should_prune_fn should_prune_fn,
4267 reflog_expiry_cleanup_fn cleanup_fn,
4268 void *policy_cb_data)
4270 static struct lock_file reflog_lock;
4271 struct expire_reflog_cb cb;
4272 struct ref_lock *lock;
4273 char *log_file;
4274 int status = 0;
4275 int type;
4276 struct strbuf err = STRBUF_INIT;
4278 memset(&cb, 0, sizeof(cb));
4279 cb.flags = flags;
4280 cb.policy_cb = policy_cb_data;
4281 cb.should_prune_fn = should_prune_fn;
4284 * The reflog file is locked by holding the lock on the
4285 * reference itself, plus we might need to update the
4286 * reference if --updateref was specified:
4288 lock = lock_ref_sha1_basic(refname, sha1, NULL, NULL, 0, &type, &err);
4289 if (!lock) {
4290 error("cannot lock ref '%s': %s", refname, err.buf);
4291 strbuf_release(&err);
4292 return -1;
4294 if (!reflog_exists(refname)) {
4295 unlock_ref(lock);
4296 return 0;
4299 log_file = git_pathdup("logs/%s", refname);
4300 if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
4302 * Even though holding $GIT_DIR/logs/$reflog.lock has
4303 * no locking implications, we use the lock_file
4304 * machinery here anyway because it does a lot of the
4305 * work we need, including cleaning up if the program
4306 * exits unexpectedly.
4308 if (hold_lock_file_for_update(&reflog_lock, log_file, 0) < 0) {
4309 struct strbuf err = STRBUF_INIT;
4310 unable_to_lock_message(log_file, errno, &err);
4311 error("%s", err.buf);
4312 strbuf_release(&err);
4313 goto failure;
4315 cb.newlog = fdopen_lock_file(&reflog_lock, "w");
4316 if (!cb.newlog) {
4317 error("cannot fdopen %s (%s)",
4318 reflog_lock.filename.buf, strerror(errno));
4319 goto failure;
4323 (*prepare_fn)(refname, sha1, cb.policy_cb);
4324 for_each_reflog_ent(refname, expire_reflog_ent, &cb);
4325 (*cleanup_fn)(cb.policy_cb);
4327 if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
4329 * It doesn't make sense to adjust a reference pointed
4330 * to by a symbolic ref based on expiring entries in
4331 * the symbolic reference's reflog. Nor can we update
4332 * a reference if there are no remaining reflog
4333 * entries.
4335 int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&
4336 !(type & REF_ISSYMREF) &&
4337 !is_null_sha1(cb.last_kept_sha1);
4339 if (close_lock_file(&reflog_lock)) {
4340 status |= error("couldn't write %s: %s", log_file,
4341 strerror(errno));
4342 } else if (update &&
4343 (write_in_full(lock->lk->fd,
4344 sha1_to_hex(cb.last_kept_sha1), 40) != 40 ||
4345 write_str_in_full(lock->lk->fd, "\n") != 1 ||
4346 close_ref(lock) < 0)) {
4347 status |= error("couldn't write %s",
4348 lock->lk->filename.buf);
4349 rollback_lock_file(&reflog_lock);
4350 } else if (commit_lock_file(&reflog_lock)) {
4351 status |= error("unable to commit reflog '%s' (%s)",
4352 log_file, strerror(errno));
4353 } else if (update && commit_ref(lock)) {
4354 status |= error("couldn't set %s", lock->ref_name);
4357 free(log_file);
4358 unlock_ref(lock);
4359 return status;
4361 failure:
4362 rollback_lock_file(&reflog_lock);
4363 free(log_file);
4364 unlock_ref(lock);
4365 return -1;