7 #include "string-list.h"
13 struct object_id old_oid
;
17 * How to handle various characters in refnames:
18 * 0: An acceptable character for refs
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, and
23 * ":", "?", "[", "\", "^", "~", SP, or TAB
24 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
26 static unsigned char refname_disposition
[256] = {
27 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
28 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
29 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
30 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
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, 4, 4, 0, 4, 0,
33 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
34 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
38 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken
39 * refs (i.e., because the reference is about to be deleted anyway).
41 #define REF_DELETING 0x02
44 * Used as a flag in ref_update::flags when a loose ref is being
47 #define REF_ISPRUNING 0x04
50 * Used as a flag in ref_update::flags when the reference should be
51 * updated to new_sha1.
53 #define REF_HAVE_NEW 0x08
56 * Used as a flag in ref_update::flags when old_sha1 should be
59 #define REF_HAVE_OLD 0x10
62 * Used as a flag in ref_update::flags when the lockfile needs to be
65 #define REF_NEEDS_COMMIT 0x20
68 * 0x40 is REF_FORCE_CREATE_REFLOG, so skip it if you're adding a
69 * value to ref_update::flags
73 * Try to read one refname component from the front of refname.
74 * Return the length of the component found, or -1 if the component is
75 * not legal. It is legal if it is something reasonable to have under
76 * ".git/refs/"; We do not like it if:
78 * - any path component of it begins with ".", or
79 * - it has double dots "..", or
80 * - it has ASCII control characters, or
81 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
82 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
83 * - it ends with a "/", or
84 * - it ends with ".lock", or
85 * - it contains a "@{" portion
87 static int check_refname_component(const char *refname
, int *flags
)
92 for (cp
= refname
; ; cp
++) {
94 unsigned char disp
= refname_disposition
[ch
];
100 return -1; /* Refname contains "..". */
104 return -1; /* Refname contains "@{". */
109 if (!(*flags
& REFNAME_REFSPEC_PATTERN
))
110 return -1; /* refspec can't be a pattern */
113 * Unset the pattern flag so that we only accept
114 * a single asterisk for one side of refspec.
116 *flags
&= ~ REFNAME_REFSPEC_PATTERN
;
123 return 0; /* Component has zero length. */
124 if (refname
[0] == '.')
125 return -1; /* Component starts with '.'. */
126 if (cp
- refname
>= LOCK_SUFFIX_LEN
&&
127 !memcmp(cp
- LOCK_SUFFIX_LEN
, LOCK_SUFFIX
, LOCK_SUFFIX_LEN
))
128 return -1; /* Refname ends with ".lock". */
132 int check_refname_format(const char *refname
, int flags
)
134 int component_len
, component_count
= 0;
136 if (!strcmp(refname
, "@"))
137 /* Refname is a single character '@'. */
141 /* We are at the start of a path component. */
142 component_len
= check_refname_component(refname
, &flags
);
143 if (component_len
<= 0)
147 if (refname
[component_len
] == '\0')
149 /* Skip to next component. */
150 refname
+= component_len
+ 1;
153 if (refname
[component_len
- 1] == '.')
154 return -1; /* Refname ends with '.'. */
155 if (!(flags
& REFNAME_ALLOW_ONELEVEL
) && component_count
< 2)
156 return -1; /* Refname has only one component. */
163 * Information used (along with the information in ref_entry) to
164 * describe a single cached reference. This data structure only
165 * occurs embedded in a union in struct ref_entry, and only when
166 * (ref_entry->flag & REF_DIR) is zero.
170 * The name of the object to which this reference resolves
171 * (which may be a tag object). If REF_ISBROKEN, this is
172 * null. If REF_ISSYMREF, then this is the name of the object
173 * referred to by the last reference in the symlink chain.
175 struct object_id oid
;
178 * If REF_KNOWS_PEELED, then this field holds the peeled value
179 * of this reference, or null if the reference is known not to
180 * be peelable. See the documentation for peel_ref() for an
181 * exact definition of "peelable".
183 struct object_id peeled
;
189 * Information used (along with the information in ref_entry) to
190 * describe a level in the hierarchy of references. This data
191 * structure only occurs embedded in a union in struct ref_entry, and
192 * only when (ref_entry.flag & REF_DIR) is set. In that case,
193 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references
194 * in the directory have already been read:
196 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose
197 * or packed references, already read.
199 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose
200 * references that hasn't been read yet (nor has any of its
203 * Entries within a directory are stored within a growable array of
204 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i <
205 * sorted are sorted by their component name in strcmp() order and the
206 * remaining entries are unsorted.
208 * Loose references are read lazily, one directory at a time. When a
209 * directory of loose references is read, then all of the references
210 * in that directory are stored, and REF_INCOMPLETE stubs are created
211 * for any subdirectories, but the subdirectories themselves are not
212 * read. The reading is triggered by get_ref_dir().
218 * Entries with index 0 <= i < sorted are sorted by name. New
219 * entries are appended to the list unsorted, and are sorted
220 * only when required; thus we avoid the need to sort the list
221 * after the addition of every reference.
225 /* A pointer to the ref_cache that contains this ref_dir. */
226 struct ref_cache
*ref_cache
;
228 struct ref_entry
**entries
;
232 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01,
233 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are
234 * public values; see refs.h.
238 * The field ref_entry->u.value.peeled of this value entry contains
239 * the correct peeled value for the reference, which might be
240 * null_sha1 if the reference is not a tag or if it is broken.
242 #define REF_KNOWS_PEELED 0x10
244 /* ref_entry represents a directory of references */
248 * Entry has not yet been read from disk (used only for REF_DIR
249 * entries representing loose references)
251 #define REF_INCOMPLETE 0x40
254 * A ref_entry represents either a reference or a "subdirectory" of
257 * Each directory in the reference namespace is represented by a
258 * ref_entry with (flags & REF_DIR) set and containing a subdir member
259 * that holds the entries in that directory that have been read so
260 * far. If (flags & REF_INCOMPLETE) is set, then the directory and
261 * its subdirectories haven't been read yet. REF_INCOMPLETE is only
262 * used for loose reference directories.
264 * References are represented by a ref_entry with (flags & REF_DIR)
265 * unset and a value member that describes the reference's value. The
266 * flag member is at the ref_entry level, but it is also needed to
267 * interpret the contents of the value field (in other words, a
268 * ref_value object is not very much use without the enclosing
271 * Reference names cannot end with slash and directories' names are
272 * always stored with a trailing slash (except for the top-level
273 * directory, which is always denoted by ""). This has two nice
274 * consequences: (1) when the entries in each subdir are sorted
275 * lexicographically by name (as they usually are), the references in
276 * a whole tree can be generated in lexicographic order by traversing
277 * the tree in left-to-right, depth-first order; (2) the names of
278 * references and subdirectories cannot conflict, and therefore the
279 * presence of an empty subdirectory does not block the creation of a
280 * similarly-named reference. (The fact that reference names with the
281 * same leading components can conflict *with each other* is a
282 * separate issue that is regulated by verify_refname_available().)
284 * Please note that the name field contains the fully-qualified
285 * reference (or subdirectory) name. Space could be saved by only
286 * storing the relative names. But that would require the full names
287 * to be generated on the fly when iterating in do_for_each_ref(), and
288 * would break callback functions, who have always been able to assume
289 * that the name strings that they are passed will not be freed during
293 unsigned char flag
; /* ISSYMREF? ISPACKED? */
295 struct ref_value value
; /* if not (flags&REF_DIR) */
296 struct ref_dir subdir
; /* if (flags&REF_DIR) */
299 * The full name of the reference (e.g., "refs/heads/master")
300 * or the full name of the directory with a trailing slash
301 * (e.g., "refs/heads/"):
303 char name
[FLEX_ARRAY
];
306 static void read_loose_refs(const char *dirname
, struct ref_dir
*dir
);
308 static struct ref_dir
*get_ref_dir(struct ref_entry
*entry
)
311 assert(entry
->flag
& REF_DIR
);
312 dir
= &entry
->u
.subdir
;
313 if (entry
->flag
& REF_INCOMPLETE
) {
314 read_loose_refs(entry
->name
, dir
);
315 entry
->flag
&= ~REF_INCOMPLETE
;
321 * Check if a refname is safe.
322 * For refs that start with "refs/" we consider it safe as long they do
323 * not try to resolve to outside of refs/.
325 * For all other refs we only consider them safe iff they only contain
326 * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like
329 static int refname_is_safe(const char *refname
)
331 if (starts_with(refname
, "refs/")) {
335 buf
= xmalloc(strlen(refname
) + 1);
337 * Does the refname try to escape refs/?
338 * For example: refs/foo/../bar is safe but refs/foo/../../bar
341 result
= !normalize_path_copy(buf
, refname
+ strlen("refs/"));
346 if (!isupper(*refname
) && *refname
!= '_')
353 static struct ref_entry
*create_ref_entry(const char *refname
,
354 const unsigned char *sha1
, int flag
,
358 struct ref_entry
*ref
;
361 check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
))
362 die("Reference has invalid format: '%s'", refname
);
363 len
= strlen(refname
) + 1;
364 ref
= xmalloc(sizeof(struct ref_entry
) + len
);
365 hashcpy(ref
->u
.value
.oid
.hash
, sha1
);
366 oidclr(&ref
->u
.value
.peeled
);
367 memcpy(ref
->name
, refname
, len
);
372 static void clear_ref_dir(struct ref_dir
*dir
);
374 static void free_ref_entry(struct ref_entry
*entry
)
376 if (entry
->flag
& REF_DIR
) {
378 * Do not use get_ref_dir() here, as that might
379 * trigger the reading of loose refs.
381 clear_ref_dir(&entry
->u
.subdir
);
387 * Add a ref_entry to the end of dir (unsorted). Entry is always
388 * stored directly in dir; no recursion into subdirectories is
391 static void add_entry_to_dir(struct ref_dir
*dir
, struct ref_entry
*entry
)
393 ALLOC_GROW(dir
->entries
, dir
->nr
+ 1, dir
->alloc
);
394 dir
->entries
[dir
->nr
++] = entry
;
395 /* optimize for the case that entries are added in order */
397 (dir
->nr
== dir
->sorted
+ 1 &&
398 strcmp(dir
->entries
[dir
->nr
- 2]->name
,
399 dir
->entries
[dir
->nr
- 1]->name
) < 0))
400 dir
->sorted
= dir
->nr
;
404 * Clear and free all entries in dir, recursively.
406 static void clear_ref_dir(struct ref_dir
*dir
)
409 for (i
= 0; i
< dir
->nr
; i
++)
410 free_ref_entry(dir
->entries
[i
]);
412 dir
->sorted
= dir
->nr
= dir
->alloc
= 0;
417 * Create a struct ref_entry object for the specified dirname.
418 * dirname is the name of the directory with a trailing slash (e.g.,
419 * "refs/heads/") or "" for the top-level directory.
421 static struct ref_entry
*create_dir_entry(struct ref_cache
*ref_cache
,
422 const char *dirname
, size_t len
,
425 struct ref_entry
*direntry
;
426 direntry
= xcalloc(1, sizeof(struct ref_entry
) + len
+ 1);
427 memcpy(direntry
->name
, dirname
, len
);
428 direntry
->name
[len
] = '\0';
429 direntry
->u
.subdir
.ref_cache
= ref_cache
;
430 direntry
->flag
= REF_DIR
| (incomplete
? REF_INCOMPLETE
: 0);
434 static int ref_entry_cmp(const void *a
, const void *b
)
436 struct ref_entry
*one
= *(struct ref_entry
**)a
;
437 struct ref_entry
*two
= *(struct ref_entry
**)b
;
438 return strcmp(one
->name
, two
->name
);
441 static void sort_ref_dir(struct ref_dir
*dir
);
443 struct string_slice
{
448 static int ref_entry_cmp_sslice(const void *key_
, const void *ent_
)
450 const struct string_slice
*key
= key_
;
451 const struct ref_entry
*ent
= *(const struct ref_entry
* const *)ent_
;
452 int cmp
= strncmp(key
->str
, ent
->name
, key
->len
);
455 return '\0' - (unsigned char)ent
->name
[key
->len
];
459 * Return the index of the entry with the given refname from the
460 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if
461 * no such entry is found. dir must already be complete.
463 static int search_ref_dir(struct ref_dir
*dir
, const char *refname
, size_t len
)
465 struct ref_entry
**r
;
466 struct string_slice key
;
468 if (refname
== NULL
|| !dir
->nr
)
474 r
= bsearch(&key
, dir
->entries
, dir
->nr
, sizeof(*dir
->entries
),
475 ref_entry_cmp_sslice
);
480 return r
- dir
->entries
;
484 * Search for a directory entry directly within dir (without
485 * recursing). Sort dir if necessary. subdirname must be a directory
486 * name (i.e., end in '/'). If mkdir is set, then create the
487 * directory if it is missing; otherwise, return NULL if the desired
488 * directory cannot be found. dir must already be complete.
490 static struct ref_dir
*search_for_subdir(struct ref_dir
*dir
,
491 const char *subdirname
, size_t len
,
494 int entry_index
= search_ref_dir(dir
, subdirname
, len
);
495 struct ref_entry
*entry
;
496 if (entry_index
== -1) {
500 * Since dir is complete, the absence of a subdir
501 * means that the subdir really doesn't exist;
502 * therefore, create an empty record for it but mark
503 * the record complete.
505 entry
= create_dir_entry(dir
->ref_cache
, subdirname
, len
, 0);
506 add_entry_to_dir(dir
, entry
);
508 entry
= dir
->entries
[entry_index
];
510 return get_ref_dir(entry
);
514 * If refname is a reference name, find the ref_dir within the dir
515 * tree that should hold refname. If refname is a directory name
516 * (i.e., ends in '/'), then return that ref_dir itself. dir must
517 * represent the top-level directory and must already be complete.
518 * Sort ref_dirs and recurse into subdirectories as necessary. If
519 * mkdir is set, then create any missing directories; otherwise,
520 * return NULL if the desired directory cannot be found.
522 static struct ref_dir
*find_containing_dir(struct ref_dir
*dir
,
523 const char *refname
, int mkdir
)
526 for (slash
= strchr(refname
, '/'); slash
; slash
= strchr(slash
+ 1, '/')) {
527 size_t dirnamelen
= slash
- refname
+ 1;
528 struct ref_dir
*subdir
;
529 subdir
= search_for_subdir(dir
, refname
, dirnamelen
, mkdir
);
541 * Find the value entry with the given name in dir, sorting ref_dirs
542 * and recursing into subdirectories as necessary. If the name is not
543 * found or it corresponds to a directory entry, return NULL.
545 static struct ref_entry
*find_ref(struct ref_dir
*dir
, const char *refname
)
548 struct ref_entry
*entry
;
549 dir
= find_containing_dir(dir
, refname
, 0);
552 entry_index
= search_ref_dir(dir
, refname
, strlen(refname
));
553 if (entry_index
== -1)
555 entry
= dir
->entries
[entry_index
];
556 return (entry
->flag
& REF_DIR
) ? NULL
: entry
;
560 * Remove the entry with the given name from dir, recursing into
561 * subdirectories as necessary. If refname is the name of a directory
562 * (i.e., ends with '/'), then remove the directory and its contents.
563 * If the removal was successful, return the number of entries
564 * remaining in the directory entry that contained the deleted entry.
565 * If the name was not found, return -1. Please note that this
566 * function only deletes the entry from the cache; it does not delete
567 * it from the filesystem or ensure that other cache entries (which
568 * might be symbolic references to the removed entry) are updated.
569 * Nor does it remove any containing dir entries that might be made
570 * empty by the removal. dir must represent the top-level directory
571 * and must already be complete.
573 static int remove_entry(struct ref_dir
*dir
, const char *refname
)
575 int refname_len
= strlen(refname
);
577 struct ref_entry
*entry
;
578 int is_dir
= refname
[refname_len
- 1] == '/';
581 * refname represents a reference directory. Remove
582 * the trailing slash; otherwise we will get the
583 * directory *representing* refname rather than the
584 * one *containing* it.
586 char *dirname
= xmemdupz(refname
, refname_len
- 1);
587 dir
= find_containing_dir(dir
, dirname
, 0);
590 dir
= find_containing_dir(dir
, refname
, 0);
594 entry_index
= search_ref_dir(dir
, refname
, refname_len
);
595 if (entry_index
== -1)
597 entry
= dir
->entries
[entry_index
];
599 memmove(&dir
->entries
[entry_index
],
600 &dir
->entries
[entry_index
+ 1],
601 (dir
->nr
- entry_index
- 1) * sizeof(*dir
->entries
)
604 if (dir
->sorted
> entry_index
)
606 free_ref_entry(entry
);
611 * Add a ref_entry to the ref_dir (unsorted), recursing into
612 * subdirectories as necessary. dir must represent the top-level
613 * directory. Return 0 on success.
615 static int add_ref(struct ref_dir
*dir
, struct ref_entry
*ref
)
617 dir
= find_containing_dir(dir
, ref
->name
, 1);
620 add_entry_to_dir(dir
, ref
);
625 * Emit a warning and return true iff ref1 and ref2 have the same name
626 * and the same sha1. Die if they have the same name but different
629 static int is_dup_ref(const struct ref_entry
*ref1
, const struct ref_entry
*ref2
)
631 if (strcmp(ref1
->name
, ref2
->name
))
634 /* Duplicate name; make sure that they don't conflict: */
636 if ((ref1
->flag
& REF_DIR
) || (ref2
->flag
& REF_DIR
))
637 /* This is impossible by construction */
638 die("Reference directory conflict: %s", ref1
->name
);
640 if (oidcmp(&ref1
->u
.value
.oid
, &ref2
->u
.value
.oid
))
641 die("Duplicated ref, and SHA1s don't match: %s", ref1
->name
);
643 warning("Duplicated ref: %s", ref1
->name
);
648 * Sort the entries in dir non-recursively (if they are not already
649 * sorted) and remove any duplicate entries.
651 static void sort_ref_dir(struct ref_dir
*dir
)
654 struct ref_entry
*last
= NULL
;
657 * This check also prevents passing a zero-length array to qsort(),
658 * which is a problem on some platforms.
660 if (dir
->sorted
== dir
->nr
)
663 qsort(dir
->entries
, dir
->nr
, sizeof(*dir
->entries
), ref_entry_cmp
);
665 /* Remove any duplicates: */
666 for (i
= 0, j
= 0; j
< dir
->nr
; j
++) {
667 struct ref_entry
*entry
= dir
->entries
[j
];
668 if (last
&& is_dup_ref(last
, entry
))
669 free_ref_entry(entry
);
671 last
= dir
->entries
[i
++] = entry
;
673 dir
->sorted
= dir
->nr
= i
;
676 /* Include broken references in a do_for_each_ref*() iteration: */
677 #define DO_FOR_EACH_INCLUDE_BROKEN 0x01
680 * Return true iff the reference described by entry can be resolved to
681 * an object in the database. Emit a warning if the referred-to
682 * object does not exist.
684 static int ref_resolves_to_object(struct ref_entry
*entry
)
686 if (entry
->flag
& REF_ISBROKEN
)
688 if (!has_sha1_file(entry
->u
.value
.oid
.hash
)) {
689 error("%s does not point to a valid object!", entry
->name
);
696 * current_ref is a performance hack: when iterating over references
697 * using the for_each_ref*() functions, current_ref is set to the
698 * current reference's entry before calling the callback function. If
699 * the callback function calls peel_ref(), then peel_ref() first
700 * checks whether the reference to be peeled is the current reference
701 * (it usually is) and if so, returns that reference's peeled version
702 * if it is available. This avoids a refname lookup in a common case.
704 static struct ref_entry
*current_ref
;
706 typedef int each_ref_entry_fn(struct ref_entry
*entry
, void *cb_data
);
708 struct ref_entry_cb
{
717 * Handle one reference in a do_for_each_ref*()-style iteration,
718 * calling an each_ref_fn for each entry.
720 static int do_one_ref(struct ref_entry
*entry
, void *cb_data
)
722 struct ref_entry_cb
*data
= cb_data
;
723 struct ref_entry
*old_current_ref
;
726 if (!starts_with(entry
->name
, data
->base
))
729 if (!(data
->flags
& DO_FOR_EACH_INCLUDE_BROKEN
) &&
730 !ref_resolves_to_object(entry
))
733 /* Store the old value, in case this is a recursive call: */
734 old_current_ref
= current_ref
;
736 retval
= data
->fn(entry
->name
+ data
->trim
, &entry
->u
.value
.oid
,
737 entry
->flag
, data
->cb_data
);
738 current_ref
= old_current_ref
;
743 * Call fn for each reference in dir that has index in the range
744 * offset <= index < dir->nr. Recurse into subdirectories that are in
745 * that index range, sorting them before iterating. This function
746 * does not sort dir itself; it should be sorted beforehand. fn is
747 * called for all references, including broken ones.
749 static int do_for_each_entry_in_dir(struct ref_dir
*dir
, int offset
,
750 each_ref_entry_fn fn
, void *cb_data
)
753 assert(dir
->sorted
== dir
->nr
);
754 for (i
= offset
; i
< dir
->nr
; i
++) {
755 struct ref_entry
*entry
= dir
->entries
[i
];
757 if (entry
->flag
& REF_DIR
) {
758 struct ref_dir
*subdir
= get_ref_dir(entry
);
759 sort_ref_dir(subdir
);
760 retval
= do_for_each_entry_in_dir(subdir
, 0, fn
, cb_data
);
762 retval
= fn(entry
, cb_data
);
771 * Call fn for each reference in the union of dir1 and dir2, in order
772 * by refname. Recurse into subdirectories. If a value entry appears
773 * in both dir1 and dir2, then only process the version that is in
774 * dir2. The input dirs must already be sorted, but subdirs will be
775 * sorted as needed. fn is called for all references, including
778 static int do_for_each_entry_in_dirs(struct ref_dir
*dir1
,
779 struct ref_dir
*dir2
,
780 each_ref_entry_fn fn
, void *cb_data
)
785 assert(dir1
->sorted
== dir1
->nr
);
786 assert(dir2
->sorted
== dir2
->nr
);
788 struct ref_entry
*e1
, *e2
;
790 if (i1
== dir1
->nr
) {
791 return do_for_each_entry_in_dir(dir2
, i2
, fn
, cb_data
);
793 if (i2
== dir2
->nr
) {
794 return do_for_each_entry_in_dir(dir1
, i1
, fn
, cb_data
);
796 e1
= dir1
->entries
[i1
];
797 e2
= dir2
->entries
[i2
];
798 cmp
= strcmp(e1
->name
, e2
->name
);
800 if ((e1
->flag
& REF_DIR
) && (e2
->flag
& REF_DIR
)) {
801 /* Both are directories; descend them in parallel. */
802 struct ref_dir
*subdir1
= get_ref_dir(e1
);
803 struct ref_dir
*subdir2
= get_ref_dir(e2
);
804 sort_ref_dir(subdir1
);
805 sort_ref_dir(subdir2
);
806 retval
= do_for_each_entry_in_dirs(
807 subdir1
, subdir2
, fn
, cb_data
);
810 } else if (!(e1
->flag
& REF_DIR
) && !(e2
->flag
& REF_DIR
)) {
811 /* Both are references; ignore the one from dir1. */
812 retval
= fn(e2
, cb_data
);
816 die("conflict between reference and directory: %s",
828 if (e
->flag
& REF_DIR
) {
829 struct ref_dir
*subdir
= get_ref_dir(e
);
830 sort_ref_dir(subdir
);
831 retval
= do_for_each_entry_in_dir(
832 subdir
, 0, fn
, cb_data
);
834 retval
= fn(e
, cb_data
);
843 * Load all of the refs from the dir into our in-memory cache. The hard work
844 * of loading loose refs is done by get_ref_dir(), so we just need to recurse
845 * through all of the sub-directories. We do not even need to care about
846 * sorting, as traversal order does not matter to us.
848 static void prime_ref_dir(struct ref_dir
*dir
)
851 for (i
= 0; i
< dir
->nr
; i
++) {
852 struct ref_entry
*entry
= dir
->entries
[i
];
853 if (entry
->flag
& REF_DIR
)
854 prime_ref_dir(get_ref_dir(entry
));
858 struct nonmatching_ref_data
{
859 const struct string_list
*skip
;
860 const char *conflicting_refname
;
863 static int nonmatching_ref_fn(struct ref_entry
*entry
, void *vdata
)
865 struct nonmatching_ref_data
*data
= vdata
;
867 if (data
->skip
&& string_list_has_string(data
->skip
, entry
->name
))
870 data
->conflicting_refname
= entry
->name
;
875 * Return 0 if a reference named refname could be created without
876 * conflicting with the name of an existing reference in dir.
877 * Otherwise, return a negative value and write an explanation to err.
878 * If extras is non-NULL, it is a list of additional refnames with
879 * which refname is not allowed to conflict. If skip is non-NULL,
880 * ignore potential conflicts with refs in skip (e.g., because they
881 * are scheduled for deletion in the same operation). Behavior is
882 * undefined if the same name is listed in both extras and skip.
884 * Two reference names conflict if one of them exactly matches the
885 * leading components of the other; e.g., "refs/foo/bar" conflicts
886 * with both "refs/foo" and with "refs/foo/bar/baz" but not with
887 * "refs/foo/bar" or "refs/foo/barbados".
889 * extras and skip must be sorted.
891 static int verify_refname_available(const char *refname
,
892 const struct string_list
*extras
,
893 const struct string_list
*skip
,
899 struct strbuf dirname
= STRBUF_INIT
;
903 * For the sake of comments in this function, suppose that
904 * refname is "refs/foo/bar".
909 strbuf_grow(&dirname
, strlen(refname
) + 1);
910 for (slash
= strchr(refname
, '/'); slash
; slash
= strchr(slash
+ 1, '/')) {
911 /* Expand dirname to the new prefix, not including the trailing slash: */
912 strbuf_add(&dirname
, refname
+ dirname
.len
, slash
- refname
- dirname
.len
);
915 * We are still at a leading dir of the refname (e.g.,
916 * "refs/foo"; if there is a reference with that name,
917 * it is a conflict, *unless* it is in skip.
920 pos
= search_ref_dir(dir
, dirname
.buf
, dirname
.len
);
922 (!skip
|| !string_list_has_string(skip
, dirname
.buf
))) {
924 * We found a reference whose name is
925 * a proper prefix of refname; e.g.,
926 * "refs/foo", and is not in skip.
928 strbuf_addf(err
, "'%s' exists; cannot create '%s'",
929 dirname
.buf
, refname
);
934 if (extras
&& string_list_has_string(extras
, dirname
.buf
) &&
935 (!skip
|| !string_list_has_string(skip
, dirname
.buf
))) {
936 strbuf_addf(err
, "cannot process '%s' and '%s' at the same time",
937 refname
, dirname
.buf
);
942 * Otherwise, we can try to continue our search with
943 * the next component. So try to look up the
944 * directory, e.g., "refs/foo/". If we come up empty,
945 * we know there is nothing under this whole prefix,
946 * but even in that case we still have to continue the
947 * search for conflicts with extras.
949 strbuf_addch(&dirname
, '/');
951 pos
= search_ref_dir(dir
, dirname
.buf
, dirname
.len
);
954 * There was no directory "refs/foo/",
955 * so there is nothing under this
956 * whole prefix. So there is no need
957 * to continue looking for conflicting
958 * references. But we need to continue
959 * looking for conflicting extras.
963 dir
= get_ref_dir(dir
->entries
[pos
]);
969 * We are at the leaf of our refname (e.g., "refs/foo/bar").
970 * There is no point in searching for a reference with that
971 * name, because a refname isn't considered to conflict with
972 * itself. But we still need to check for references whose
973 * names are in the "refs/foo/bar/" namespace, because they
976 strbuf_addstr(&dirname
, refname
+ dirname
.len
);
977 strbuf_addch(&dirname
, '/');
980 pos
= search_ref_dir(dir
, dirname
.buf
, dirname
.len
);
984 * We found a directory named "$refname/"
985 * (e.g., "refs/foo/bar/"). It is a problem
986 * iff it contains any ref that is not in
989 struct nonmatching_ref_data data
;
992 data
.conflicting_refname
= NULL
;
993 dir
= get_ref_dir(dir
->entries
[pos
]);
995 if (do_for_each_entry_in_dir(dir
, 0, nonmatching_ref_fn
, &data
)) {
996 strbuf_addf(err
, "'%s' exists; cannot create '%s'",
997 data
.conflicting_refname
, refname
);
1005 * Check for entries in extras that start with
1006 * "$refname/". We do that by looking for the place
1007 * where "$refname/" would be inserted in extras. If
1008 * there is an entry at that position that starts with
1009 * "$refname/" and is not in skip, then we have a
1012 for (pos
= string_list_find_insert_index(extras
, dirname
.buf
, 0);
1013 pos
< extras
->nr
; pos
++) {
1014 const char *extra_refname
= extras
->items
[pos
].string
;
1016 if (!starts_with(extra_refname
, dirname
.buf
))
1019 if (!skip
|| !string_list_has_string(skip
, extra_refname
)) {
1020 strbuf_addf(err
, "cannot process '%s' and '%s' at the same time",
1021 refname
, extra_refname
);
1027 /* No conflicts were found */
1031 strbuf_release(&dirname
);
1035 struct packed_ref_cache
{
1036 struct ref_entry
*root
;
1039 * Count of references to the data structure in this instance,
1040 * including the pointer from ref_cache::packed if any. The
1041 * data will not be freed as long as the reference count is
1044 unsigned int referrers
;
1047 * Iff the packed-refs file associated with this instance is
1048 * currently locked for writing, this points at the associated
1049 * lock (which is owned by somebody else). The referrer count
1050 * is also incremented when the file is locked and decremented
1051 * when it is unlocked.
1053 struct lock_file
*lock
;
1055 /* The metadata from when this packed-refs cache was read */
1056 struct stat_validity validity
;
1060 * Future: need to be in "struct repository"
1061 * when doing a full libification.
1063 static struct ref_cache
{
1064 struct ref_cache
*next
;
1065 struct ref_entry
*loose
;
1066 struct packed_ref_cache
*packed
;
1068 * The submodule name, or "" for the main repo. We allocate
1069 * length 1 rather than FLEX_ARRAY so that the main ref_cache
1070 * is initialized correctly.
1073 } ref_cache
, *submodule_ref_caches
;
1075 /* Lock used for the main packed-refs file: */
1076 static struct lock_file packlock
;
1079 * Increment the reference count of *packed_refs.
1081 static void acquire_packed_ref_cache(struct packed_ref_cache
*packed_refs
)
1083 packed_refs
->referrers
++;
1087 * Decrease the reference count of *packed_refs. If it goes to zero,
1088 * free *packed_refs and return true; otherwise return false.
1090 static int release_packed_ref_cache(struct packed_ref_cache
*packed_refs
)
1092 if (!--packed_refs
->referrers
) {
1093 free_ref_entry(packed_refs
->root
);
1094 stat_validity_clear(&packed_refs
->validity
);
1102 static void clear_packed_ref_cache(struct ref_cache
*refs
)
1105 struct packed_ref_cache
*packed_refs
= refs
->packed
;
1107 if (packed_refs
->lock
)
1108 die("internal error: packed-ref cache cleared while locked");
1109 refs
->packed
= NULL
;
1110 release_packed_ref_cache(packed_refs
);
1114 static void clear_loose_ref_cache(struct ref_cache
*refs
)
1117 free_ref_entry(refs
->loose
);
1122 static struct ref_cache
*create_ref_cache(const char *submodule
)
1125 struct ref_cache
*refs
;
1128 len
= strlen(submodule
) + 1;
1129 refs
= xcalloc(1, sizeof(struct ref_cache
) + len
);
1130 memcpy(refs
->name
, submodule
, len
);
1135 * Return a pointer to a ref_cache for the specified submodule. For
1136 * the main repository, use submodule==NULL. The returned structure
1137 * will be allocated and initialized but not necessarily populated; it
1138 * should not be freed.
1140 static struct ref_cache
*get_ref_cache(const char *submodule
)
1142 struct ref_cache
*refs
;
1144 if (!submodule
|| !*submodule
)
1147 for (refs
= submodule_ref_caches
; refs
; refs
= refs
->next
)
1148 if (!strcmp(submodule
, refs
->name
))
1151 refs
= create_ref_cache(submodule
);
1152 refs
->next
= submodule_ref_caches
;
1153 submodule_ref_caches
= refs
;
1157 /* The length of a peeled reference line in packed-refs, including EOL: */
1158 #define PEELED_LINE_LENGTH 42
1161 * The packed-refs header line that we write out. Perhaps other
1162 * traits will be added later. The trailing space is required.
1164 static const char PACKED_REFS_HEADER
[] =
1165 "# pack-refs with: peeled fully-peeled \n";
1168 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
1169 * Return a pointer to the refname within the line (null-terminated),
1170 * or NULL if there was a problem.
1172 static const char *parse_ref_line(struct strbuf
*line
, unsigned char *sha1
)
1177 * 42: the answer to everything.
1179 * In this case, it happens to be the answer to
1180 * 40 (length of sha1 hex representation)
1181 * +1 (space in between hex and name)
1182 * +1 (newline at the end of the line)
1184 if (line
->len
<= 42)
1187 if (get_sha1_hex(line
->buf
, sha1
) < 0)
1189 if (!isspace(line
->buf
[40]))
1192 ref
= line
->buf
+ 41;
1196 if (line
->buf
[line
->len
- 1] != '\n')
1198 line
->buf
[--line
->len
] = 0;
1204 * Read f, which is a packed-refs file, into dir.
1206 * A comment line of the form "# pack-refs with: " may contain zero or
1207 * more traits. We interpret the traits as follows:
1211 * Probably no references are peeled. But if the file contains a
1212 * peeled value for a reference, we will use it.
1216 * References under "refs/tags/", if they *can* be peeled, *are*
1217 * peeled in this file. References outside of "refs/tags/" are
1218 * probably not peeled even if they could have been, but if we find
1219 * a peeled value for such a reference we will use it.
1223 * All references in the file that can be peeled are peeled.
1224 * Inversely (and this is more important), any references in the
1225 * file for which no peeled value is recorded is not peelable. This
1226 * trait should typically be written alongside "peeled" for
1227 * compatibility with older clients, but we do not require it
1228 * (i.e., "peeled" is a no-op if "fully-peeled" is set).
1230 static void read_packed_refs(FILE *f
, struct ref_dir
*dir
)
1232 struct ref_entry
*last
= NULL
;
1233 struct strbuf line
= STRBUF_INIT
;
1234 enum { PEELED_NONE
, PEELED_TAGS
, PEELED_FULLY
} peeled
= PEELED_NONE
;
1236 while (strbuf_getwholeline(&line
, f
, '\n') != EOF
) {
1237 unsigned char sha1
[20];
1238 const char *refname
;
1241 if (skip_prefix(line
.buf
, "# pack-refs with:", &traits
)) {
1242 if (strstr(traits
, " fully-peeled "))
1243 peeled
= PEELED_FULLY
;
1244 else if (strstr(traits
, " peeled "))
1245 peeled
= PEELED_TAGS
;
1246 /* perhaps other traits later as well */
1250 refname
= parse_ref_line(&line
, sha1
);
1252 int flag
= REF_ISPACKED
;
1254 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
)) {
1255 if (!refname_is_safe(refname
))
1256 die("packed refname is dangerous: %s", refname
);
1258 flag
|= REF_BAD_NAME
| REF_ISBROKEN
;
1260 last
= create_ref_entry(refname
, sha1
, flag
, 0);
1261 if (peeled
== PEELED_FULLY
||
1262 (peeled
== PEELED_TAGS
&& starts_with(refname
, "refs/tags/")))
1263 last
->flag
|= REF_KNOWS_PEELED
;
1268 line
.buf
[0] == '^' &&
1269 line
.len
== PEELED_LINE_LENGTH
&&
1270 line
.buf
[PEELED_LINE_LENGTH
- 1] == '\n' &&
1271 !get_sha1_hex(line
.buf
+ 1, sha1
)) {
1272 hashcpy(last
->u
.value
.peeled
.hash
, sha1
);
1274 * Regardless of what the file header said,
1275 * we definitely know the value of *this*
1278 last
->flag
|= REF_KNOWS_PEELED
;
1282 strbuf_release(&line
);
1286 * Get the packed_ref_cache for the specified ref_cache, creating it
1289 static struct packed_ref_cache
*get_packed_ref_cache(struct ref_cache
*refs
)
1291 char *packed_refs_file
;
1294 packed_refs_file
= git_pathdup_submodule(refs
->name
, "packed-refs");
1296 packed_refs_file
= git_pathdup("packed-refs");
1299 !stat_validity_check(&refs
->packed
->validity
, packed_refs_file
))
1300 clear_packed_ref_cache(refs
);
1302 if (!refs
->packed
) {
1305 refs
->packed
= xcalloc(1, sizeof(*refs
->packed
));
1306 acquire_packed_ref_cache(refs
->packed
);
1307 refs
->packed
->root
= create_dir_entry(refs
, "", 0, 0);
1308 f
= fopen(packed_refs_file
, "r");
1310 stat_validity_update(&refs
->packed
->validity
, fileno(f
));
1311 read_packed_refs(f
, get_ref_dir(refs
->packed
->root
));
1315 free(packed_refs_file
);
1316 return refs
->packed
;
1319 static struct ref_dir
*get_packed_ref_dir(struct packed_ref_cache
*packed_ref_cache
)
1321 return get_ref_dir(packed_ref_cache
->root
);
1324 static struct ref_dir
*get_packed_refs(struct ref_cache
*refs
)
1326 return get_packed_ref_dir(get_packed_ref_cache(refs
));
1330 * Add a reference to the in-memory packed reference cache. This may
1331 * only be called while the packed-refs file is locked (see
1332 * lock_packed_refs()). To actually write the packed-refs file, call
1333 * commit_packed_refs().
1335 static void add_packed_ref(const char *refname
, const unsigned char *sha1
)
1337 struct packed_ref_cache
*packed_ref_cache
=
1338 get_packed_ref_cache(&ref_cache
);
1340 if (!packed_ref_cache
->lock
)
1341 die("internal error: packed refs not locked");
1342 add_ref(get_packed_ref_dir(packed_ref_cache
),
1343 create_ref_entry(refname
, sha1
, REF_ISPACKED
, 1));
1347 * Read the loose references from the namespace dirname into dir
1348 * (without recursing). dirname must end with '/'. dir must be the
1349 * directory entry corresponding to dirname.
1351 static void read_loose_refs(const char *dirname
, struct ref_dir
*dir
)
1353 struct ref_cache
*refs
= dir
->ref_cache
;
1356 int dirnamelen
= strlen(dirname
);
1357 struct strbuf refname
;
1358 struct strbuf path
= STRBUF_INIT
;
1359 size_t path_baselen
;
1362 strbuf_git_path_submodule(&path
, refs
->name
, "%s", dirname
);
1364 strbuf_git_path(&path
, "%s", dirname
);
1365 path_baselen
= path
.len
;
1367 d
= opendir(path
.buf
);
1369 strbuf_release(&path
);
1373 strbuf_init(&refname
, dirnamelen
+ 257);
1374 strbuf_add(&refname
, dirname
, dirnamelen
);
1376 while ((de
= readdir(d
)) != NULL
) {
1377 unsigned char sha1
[20];
1381 if (de
->d_name
[0] == '.')
1383 if (ends_with(de
->d_name
, ".lock"))
1385 strbuf_addstr(&refname
, de
->d_name
);
1386 strbuf_addstr(&path
, de
->d_name
);
1387 if (stat(path
.buf
, &st
) < 0) {
1388 ; /* silently ignore */
1389 } else if (S_ISDIR(st
.st_mode
)) {
1390 strbuf_addch(&refname
, '/');
1391 add_entry_to_dir(dir
,
1392 create_dir_entry(refs
, refname
.buf
,
1400 read_ok
= !resolve_gitlink_ref(refs
->name
,
1403 read_ok
= !read_ref_full(refname
.buf
,
1404 RESOLVE_REF_READING
,
1410 flag
|= REF_ISBROKEN
;
1411 } else if (is_null_sha1(sha1
)) {
1413 * It is so astronomically unlikely
1414 * that NULL_SHA1 is the SHA-1 of an
1415 * actual object that we consider its
1416 * appearance in a loose reference
1417 * file to be repo corruption
1418 * (probably due to a software bug).
1420 flag
|= REF_ISBROKEN
;
1423 if (check_refname_format(refname
.buf
,
1424 REFNAME_ALLOW_ONELEVEL
)) {
1425 if (!refname_is_safe(refname
.buf
))
1426 die("loose refname is dangerous: %s", refname
.buf
);
1428 flag
|= REF_BAD_NAME
| REF_ISBROKEN
;
1430 add_entry_to_dir(dir
,
1431 create_ref_entry(refname
.buf
, sha1
, flag
, 0));
1433 strbuf_setlen(&refname
, dirnamelen
);
1434 strbuf_setlen(&path
, path_baselen
);
1436 strbuf_release(&refname
);
1437 strbuf_release(&path
);
1441 static struct ref_dir
*get_loose_refs(struct ref_cache
*refs
)
1445 * Mark the top-level directory complete because we
1446 * are about to read the only subdirectory that can
1449 refs
->loose
= create_dir_entry(refs
, "", 0, 0);
1451 * Create an incomplete entry for "refs/":
1453 add_entry_to_dir(get_ref_dir(refs
->loose
),
1454 create_dir_entry(refs
, "refs/", 5, 1));
1456 return get_ref_dir(refs
->loose
);
1459 /* We allow "recursive" symbolic refs. Only within reason, though */
1461 #define MAXREFLEN (1024)
1464 * Called by resolve_gitlink_ref_recursive() after it failed to read
1465 * from the loose refs in ref_cache refs. Find <refname> in the
1466 * packed-refs file for the submodule.
1468 static int resolve_gitlink_packed_ref(struct ref_cache
*refs
,
1469 const char *refname
, unsigned char *sha1
)
1471 struct ref_entry
*ref
;
1472 struct ref_dir
*dir
= get_packed_refs(refs
);
1474 ref
= find_ref(dir
, refname
);
1478 hashcpy(sha1
, ref
->u
.value
.oid
.hash
);
1482 static int resolve_gitlink_ref_recursive(struct ref_cache
*refs
,
1483 const char *refname
, unsigned char *sha1
,
1487 char buffer
[128], *p
;
1490 if (recursion
> MAXDEPTH
|| strlen(refname
) > MAXREFLEN
)
1493 ? git_pathdup_submodule(refs
->name
, "%s", refname
)
1494 : git_pathdup("%s", refname
);
1495 fd
= open(path
, O_RDONLY
);
1498 return resolve_gitlink_packed_ref(refs
, refname
, sha1
);
1500 len
= read(fd
, buffer
, sizeof(buffer
)-1);
1504 while (len
&& isspace(buffer
[len
-1]))
1508 /* Was it a detached head or an old-fashioned symlink? */
1509 if (!get_sha1_hex(buffer
, sha1
))
1513 if (strncmp(buffer
, "ref:", 4))
1519 return resolve_gitlink_ref_recursive(refs
, p
, sha1
, recursion
+1);
1522 int resolve_gitlink_ref(const char *path
, const char *refname
, unsigned char *sha1
)
1524 int len
= strlen(path
), retval
;
1526 struct ref_cache
*refs
;
1528 while (len
&& path
[len
-1] == '/')
1532 submodule
= xstrndup(path
, len
);
1533 refs
= get_ref_cache(submodule
);
1536 retval
= resolve_gitlink_ref_recursive(refs
, refname
, sha1
, 0);
1541 * Return the ref_entry for the given refname from the packed
1542 * references. If it does not exist, return NULL.
1544 static struct ref_entry
*get_packed_ref(const char *refname
)
1546 return find_ref(get_packed_refs(&ref_cache
), refname
);
1550 * A loose ref file doesn't exist; check for a packed ref. The
1551 * options are forwarded from resolve_safe_unsafe().
1553 static int resolve_missing_loose_ref(const char *refname
,
1555 unsigned char *sha1
,
1558 struct ref_entry
*entry
;
1561 * The loose reference file does not exist; check for a packed
1564 entry
= get_packed_ref(refname
);
1566 hashcpy(sha1
, entry
->u
.value
.oid
.hash
);
1568 *flags
|= REF_ISPACKED
;
1571 /* The reference is not a packed reference, either. */
1572 if (resolve_flags
& RESOLVE_REF_READING
) {
1581 /* This function needs to return a meaningful errno on failure */
1582 static const char *resolve_ref_unsafe_1(const char *refname
,
1584 unsigned char *sha1
,
1586 struct strbuf
*sb_path
)
1588 int depth
= MAXDEPTH
;
1591 static char refname_buffer
[256];
1597 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
)) {
1599 *flags
|= REF_BAD_NAME
;
1601 if (!(resolve_flags
& RESOLVE_REF_ALLOW_BAD_NAME
) ||
1602 !refname_is_safe(refname
)) {
1607 * dwim_ref() uses REF_ISBROKEN to distinguish between
1608 * missing refs and refs that were present but invalid,
1609 * to complain about the latter to stderr.
1611 * We don't know whether the ref exists, so don't set
1627 strbuf_reset(sb_path
);
1628 strbuf_git_path(sb_path
, "%s", refname
);
1629 path
= sb_path
->buf
;
1632 * We might have to loop back here to avoid a race
1633 * condition: first we lstat() the file, then we try
1634 * to read it as a link or as a file. But if somebody
1635 * changes the type of the file (file <-> directory
1636 * <-> symlink) between the lstat() and reading, then
1637 * we don't want to report that as an error but rather
1638 * try again starting with the lstat().
1641 if (lstat(path
, &st
) < 0) {
1642 if (errno
!= ENOENT
)
1644 if (resolve_missing_loose_ref(refname
, resolve_flags
,
1650 *flags
|= REF_ISBROKEN
;
1655 /* Follow "normalized" - ie "refs/.." symlinks by hand */
1656 if (S_ISLNK(st
.st_mode
)) {
1657 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
1659 if (errno
== ENOENT
|| errno
== EINVAL
)
1660 /* inconsistent with lstat; retry */
1666 if (starts_with(buffer
, "refs/") &&
1667 !check_refname_format(buffer
, 0)) {
1668 strcpy(refname_buffer
, buffer
);
1669 refname
= refname_buffer
;
1671 *flags
|= REF_ISSYMREF
;
1672 if (resolve_flags
& RESOLVE_REF_NO_RECURSE
) {
1680 /* Is it a directory? */
1681 if (S_ISDIR(st
.st_mode
)) {
1687 * Anything else, just open it and try to use it as
1690 fd
= open(path
, O_RDONLY
);
1692 if (errno
== ENOENT
)
1693 /* inconsistent with lstat; retry */
1698 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
1700 int save_errno
= errno
;
1706 while (len
&& isspace(buffer
[len
-1]))
1711 * Is it a symbolic ref?
1713 if (!starts_with(buffer
, "ref:")) {
1715 * Please note that FETCH_HEAD has a second
1716 * line containing other data.
1718 if (get_sha1_hex(buffer
, sha1
) ||
1719 (buffer
[40] != '\0' && !isspace(buffer
[40]))) {
1721 *flags
|= REF_ISBROKEN
;
1728 *flags
|= REF_ISBROKEN
;
1733 *flags
|= REF_ISSYMREF
;
1735 while (isspace(*buf
))
1737 refname
= strcpy(refname_buffer
, buf
);
1738 if (resolve_flags
& RESOLVE_REF_NO_RECURSE
) {
1742 if (check_refname_format(buf
, REFNAME_ALLOW_ONELEVEL
)) {
1744 *flags
|= REF_ISBROKEN
;
1746 if (!(resolve_flags
& RESOLVE_REF_ALLOW_BAD_NAME
) ||
1747 !refname_is_safe(buf
)) {
1756 const char *resolve_ref_unsafe(const char *refname
, int resolve_flags
,
1757 unsigned char *sha1
, int *flags
)
1759 struct strbuf sb_path
= STRBUF_INIT
;
1760 const char *ret
= resolve_ref_unsafe_1(refname
, resolve_flags
,
1761 sha1
, flags
, &sb_path
);
1762 strbuf_release(&sb_path
);
1766 char *resolve_refdup(const char *refname
, int resolve_flags
,
1767 unsigned char *sha1
, int *flags
)
1769 return xstrdup_or_null(resolve_ref_unsafe(refname
, resolve_flags
,
1773 /* The argument to filter_refs */
1775 const char *pattern
;
1780 int read_ref_full(const char *refname
, int resolve_flags
, unsigned char *sha1
, int *flags
)
1782 if (resolve_ref_unsafe(refname
, resolve_flags
, sha1
, flags
))
1787 int read_ref(const char *refname
, unsigned char *sha1
)
1789 return read_ref_full(refname
, RESOLVE_REF_READING
, sha1
, NULL
);
1792 int ref_exists(const char *refname
)
1794 unsigned char sha1
[20];
1795 return !!resolve_ref_unsafe(refname
, RESOLVE_REF_READING
, sha1
, NULL
);
1798 static int filter_refs(const char *refname
, const struct object_id
*oid
,
1799 int flags
, void *data
)
1801 struct ref_filter
*filter
= (struct ref_filter
*)data
;
1803 if (wildmatch(filter
->pattern
, refname
, 0, NULL
))
1805 return filter
->fn(refname
, oid
, flags
, filter
->cb_data
);
1809 /* object was peeled successfully: */
1813 * object cannot be peeled because the named object (or an
1814 * object referred to by a tag in the peel chain), does not
1819 /* object cannot be peeled because it is not a tag: */
1822 /* ref_entry contains no peeled value because it is a symref: */
1823 PEEL_IS_SYMREF
= -3,
1826 * ref_entry cannot be peeled because it is broken (i.e., the
1827 * symbolic reference cannot even be resolved to an object
1834 * Peel the named object; i.e., if the object is a tag, resolve the
1835 * tag recursively until a non-tag is found. If successful, store the
1836 * result to sha1 and return PEEL_PEELED. If the object is not a tag
1837 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,
1838 * and leave sha1 unchanged.
1840 static enum peel_status
peel_object(const unsigned char *name
, unsigned char *sha1
)
1842 struct object
*o
= lookup_unknown_object(name
);
1844 if (o
->type
== OBJ_NONE
) {
1845 int type
= sha1_object_info(name
, NULL
);
1846 if (type
< 0 || !object_as_type(o
, type
, 0))
1847 return PEEL_INVALID
;
1850 if (o
->type
!= OBJ_TAG
)
1851 return PEEL_NON_TAG
;
1853 o
= deref_tag_noverify(o
);
1855 return PEEL_INVALID
;
1857 hashcpy(sha1
, o
->sha1
);
1862 * Peel the entry (if possible) and return its new peel_status. If
1863 * repeel is true, re-peel the entry even if there is an old peeled
1864 * value that is already stored in it.
1866 * It is OK to call this function with a packed reference entry that
1867 * might be stale and might even refer to an object that has since
1868 * been garbage-collected. In such a case, if the entry has
1869 * REF_KNOWS_PEELED then leave the status unchanged and return
1870 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.
1872 static enum peel_status
peel_entry(struct ref_entry
*entry
, int repeel
)
1874 enum peel_status status
;
1876 if (entry
->flag
& REF_KNOWS_PEELED
) {
1878 entry
->flag
&= ~REF_KNOWS_PEELED
;
1879 oidclr(&entry
->u
.value
.peeled
);
1881 return is_null_oid(&entry
->u
.value
.peeled
) ?
1882 PEEL_NON_TAG
: PEEL_PEELED
;
1885 if (entry
->flag
& REF_ISBROKEN
)
1887 if (entry
->flag
& REF_ISSYMREF
)
1888 return PEEL_IS_SYMREF
;
1890 status
= peel_object(entry
->u
.value
.oid
.hash
, entry
->u
.value
.peeled
.hash
);
1891 if (status
== PEEL_PEELED
|| status
== PEEL_NON_TAG
)
1892 entry
->flag
|= REF_KNOWS_PEELED
;
1896 int peel_ref(const char *refname
, unsigned char *sha1
)
1899 unsigned char base
[20];
1901 if (current_ref
&& (current_ref
->name
== refname
1902 || !strcmp(current_ref
->name
, refname
))) {
1903 if (peel_entry(current_ref
, 0))
1905 hashcpy(sha1
, current_ref
->u
.value
.peeled
.hash
);
1909 if (read_ref_full(refname
, RESOLVE_REF_READING
, base
, &flag
))
1913 * If the reference is packed, read its ref_entry from the
1914 * cache in the hope that we already know its peeled value.
1915 * We only try this optimization on packed references because
1916 * (a) forcing the filling of the loose reference cache could
1917 * be expensive and (b) loose references anyway usually do not
1918 * have REF_KNOWS_PEELED.
1920 if (flag
& REF_ISPACKED
) {
1921 struct ref_entry
*r
= get_packed_ref(refname
);
1923 if (peel_entry(r
, 0))
1925 hashcpy(sha1
, r
->u
.value
.peeled
.hash
);
1930 return peel_object(base
, sha1
);
1933 struct warn_if_dangling_data
{
1935 const char *refname
;
1936 const struct string_list
*refnames
;
1937 const char *msg_fmt
;
1940 static int warn_if_dangling_symref(const char *refname
, const struct object_id
*oid
,
1941 int flags
, void *cb_data
)
1943 struct warn_if_dangling_data
*d
= cb_data
;
1944 const char *resolves_to
;
1945 struct object_id junk
;
1947 if (!(flags
& REF_ISSYMREF
))
1950 resolves_to
= resolve_ref_unsafe(refname
, 0, junk
.hash
, NULL
);
1953 ? strcmp(resolves_to
, d
->refname
)
1954 : !string_list_has_string(d
->refnames
, resolves_to
))) {
1958 fprintf(d
->fp
, d
->msg_fmt
, refname
);
1963 void warn_dangling_symref(FILE *fp
, const char *msg_fmt
, const char *refname
)
1965 struct warn_if_dangling_data data
;
1968 data
.refname
= refname
;
1969 data
.refnames
= NULL
;
1970 data
.msg_fmt
= msg_fmt
;
1971 for_each_rawref(warn_if_dangling_symref
, &data
);
1974 void warn_dangling_symrefs(FILE *fp
, const char *msg_fmt
, const struct string_list
*refnames
)
1976 struct warn_if_dangling_data data
;
1979 data
.refname
= NULL
;
1980 data
.refnames
= refnames
;
1981 data
.msg_fmt
= msg_fmt
;
1982 for_each_rawref(warn_if_dangling_symref
, &data
);
1986 * Call fn for each reference in the specified ref_cache, omitting
1987 * references not in the containing_dir of base. fn is called for all
1988 * references, including broken ones. If fn ever returns a non-zero
1989 * value, stop the iteration and return that value; otherwise, return
1992 static int do_for_each_entry(struct ref_cache
*refs
, const char *base
,
1993 each_ref_entry_fn fn
, void *cb_data
)
1995 struct packed_ref_cache
*packed_ref_cache
;
1996 struct ref_dir
*loose_dir
;
1997 struct ref_dir
*packed_dir
;
2001 * We must make sure that all loose refs are read before accessing the
2002 * packed-refs file; this avoids a race condition in which loose refs
2003 * are migrated to the packed-refs file by a simultaneous process, but
2004 * our in-memory view is from before the migration. get_packed_ref_cache()
2005 * takes care of making sure our view is up to date with what is on
2008 loose_dir
= get_loose_refs(refs
);
2009 if (base
&& *base
) {
2010 loose_dir
= find_containing_dir(loose_dir
, base
, 0);
2013 prime_ref_dir(loose_dir
);
2015 packed_ref_cache
= get_packed_ref_cache(refs
);
2016 acquire_packed_ref_cache(packed_ref_cache
);
2017 packed_dir
= get_packed_ref_dir(packed_ref_cache
);
2018 if (base
&& *base
) {
2019 packed_dir
= find_containing_dir(packed_dir
, base
, 0);
2022 if (packed_dir
&& loose_dir
) {
2023 sort_ref_dir(packed_dir
);
2024 sort_ref_dir(loose_dir
);
2025 retval
= do_for_each_entry_in_dirs(
2026 packed_dir
, loose_dir
, fn
, cb_data
);
2027 } else if (packed_dir
) {
2028 sort_ref_dir(packed_dir
);
2029 retval
= do_for_each_entry_in_dir(
2030 packed_dir
, 0, fn
, cb_data
);
2031 } else if (loose_dir
) {
2032 sort_ref_dir(loose_dir
);
2033 retval
= do_for_each_entry_in_dir(
2034 loose_dir
, 0, fn
, cb_data
);
2037 release_packed_ref_cache(packed_ref_cache
);
2042 * Call fn for each reference in the specified ref_cache for which the
2043 * refname begins with base. If trim is non-zero, then trim that many
2044 * characters off the beginning of each refname before passing the
2045 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include
2046 * broken references in the iteration. If fn ever returns a non-zero
2047 * value, stop the iteration and return that value; otherwise, return
2050 static int do_for_each_ref(struct ref_cache
*refs
, const char *base
,
2051 each_ref_fn fn
, int trim
, int flags
, void *cb_data
)
2053 struct ref_entry_cb data
;
2058 data
.cb_data
= cb_data
;
2060 if (ref_paranoia
< 0)
2061 ref_paranoia
= git_env_bool("GIT_REF_PARANOIA", 0);
2063 data
.flags
|= DO_FOR_EACH_INCLUDE_BROKEN
;
2065 return do_for_each_entry(refs
, base
, do_one_ref
, &data
);
2068 static int do_head_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
2070 struct object_id oid
;
2074 if (resolve_gitlink_ref(submodule
, "HEAD", oid
.hash
) == 0)
2075 return fn("HEAD", &oid
, 0, cb_data
);
2080 if (!read_ref_full("HEAD", RESOLVE_REF_READING
, oid
.hash
, &flag
))
2081 return fn("HEAD", &oid
, flag
, cb_data
);
2086 int head_ref(each_ref_fn fn
, void *cb_data
)
2088 return do_head_ref(NULL
, fn
, cb_data
);
2091 int head_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
2093 return do_head_ref(submodule
, fn
, cb_data
);
2096 int for_each_ref(each_ref_fn fn
, void *cb_data
)
2098 return do_for_each_ref(&ref_cache
, "", fn
, 0, 0, cb_data
);
2101 int for_each_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
2103 return do_for_each_ref(get_ref_cache(submodule
), "", fn
, 0, 0, cb_data
);
2106 int for_each_ref_in(const char *prefix
, each_ref_fn fn
, void *cb_data
)
2108 return do_for_each_ref(&ref_cache
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
2111 int for_each_ref_in_submodule(const char *submodule
, const char *prefix
,
2112 each_ref_fn fn
, void *cb_data
)
2114 return do_for_each_ref(get_ref_cache(submodule
), prefix
, fn
, strlen(prefix
), 0, cb_data
);
2117 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
2119 return for_each_ref_in("refs/tags/", fn
, cb_data
);
2122 int for_each_tag_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
2124 return for_each_ref_in_submodule(submodule
, "refs/tags/", fn
, cb_data
);
2127 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
2129 return for_each_ref_in("refs/heads/", fn
, cb_data
);
2132 int for_each_branch_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
2134 return for_each_ref_in_submodule(submodule
, "refs/heads/", fn
, cb_data
);
2137 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
2139 return for_each_ref_in("refs/remotes/", fn
, cb_data
);
2142 int for_each_remote_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
2144 return for_each_ref_in_submodule(submodule
, "refs/remotes/", fn
, cb_data
);
2147 int for_each_replace_ref(each_ref_fn fn
, void *cb_data
)
2149 return do_for_each_ref(&ref_cache
, git_replace_ref_base
, fn
,
2150 strlen(git_replace_ref_base
), 0, cb_data
);
2153 int head_ref_namespaced(each_ref_fn fn
, void *cb_data
)
2155 struct strbuf buf
= STRBUF_INIT
;
2157 struct object_id oid
;
2160 strbuf_addf(&buf
, "%sHEAD", get_git_namespace());
2161 if (!read_ref_full(buf
.buf
, RESOLVE_REF_READING
, oid
.hash
, &flag
))
2162 ret
= fn(buf
.buf
, &oid
, flag
, cb_data
);
2163 strbuf_release(&buf
);
2168 int for_each_namespaced_ref(each_ref_fn fn
, void *cb_data
)
2170 struct strbuf buf
= STRBUF_INIT
;
2172 strbuf_addf(&buf
, "%srefs/", get_git_namespace());
2173 ret
= do_for_each_ref(&ref_cache
, buf
.buf
, fn
, 0, 0, cb_data
);
2174 strbuf_release(&buf
);
2178 int for_each_glob_ref_in(each_ref_fn fn
, const char *pattern
,
2179 const char *prefix
, void *cb_data
)
2181 struct strbuf real_pattern
= STRBUF_INIT
;
2182 struct ref_filter filter
;
2185 if (!prefix
&& !starts_with(pattern
, "refs/"))
2186 strbuf_addstr(&real_pattern
, "refs/");
2188 strbuf_addstr(&real_pattern
, prefix
);
2189 strbuf_addstr(&real_pattern
, pattern
);
2191 if (!has_glob_specials(pattern
)) {
2192 /* Append implied '/' '*' if not present. */
2193 if (real_pattern
.buf
[real_pattern
.len
- 1] != '/')
2194 strbuf_addch(&real_pattern
, '/');
2195 /* No need to check for '*', there is none. */
2196 strbuf_addch(&real_pattern
, '*');
2199 filter
.pattern
= real_pattern
.buf
;
2201 filter
.cb_data
= cb_data
;
2202 ret
= for_each_ref(filter_refs
, &filter
);
2204 strbuf_release(&real_pattern
);
2208 int for_each_glob_ref(each_ref_fn fn
, const char *pattern
, void *cb_data
)
2210 return for_each_glob_ref_in(fn
, pattern
, NULL
, cb_data
);
2213 int for_each_rawref(each_ref_fn fn
, void *cb_data
)
2215 return do_for_each_ref(&ref_cache
, "", fn
, 0,
2216 DO_FOR_EACH_INCLUDE_BROKEN
, cb_data
);
2219 const char *prettify_refname(const char *name
)
2222 starts_with(name
, "refs/heads/") ? 11 :
2223 starts_with(name
, "refs/tags/") ? 10 :
2224 starts_with(name
, "refs/remotes/") ? 13 :
2228 static const char *ref_rev_parse_rules
[] = {
2233 "refs/remotes/%.*s",
2234 "refs/remotes/%.*s/HEAD",
2238 int refname_match(const char *abbrev_name
, const char *full_name
)
2241 const int abbrev_name_len
= strlen(abbrev_name
);
2243 for (p
= ref_rev_parse_rules
; *p
; p
++) {
2244 if (!strcmp(full_name
, mkpath(*p
, abbrev_name_len
, abbrev_name
))) {
2252 static void unlock_ref(struct ref_lock
*lock
)
2254 /* Do not free lock->lk -- atexit() still looks at them */
2256 rollback_lock_file(lock
->lk
);
2257 free(lock
->ref_name
);
2258 free(lock
->orig_ref_name
);
2263 * Verify that the reference locked by lock has the value old_sha1.
2264 * Fail if the reference doesn't exist and mustexist is set. Return 0
2265 * on success. On error, write an error message to err, set errno, and
2266 * return a negative value.
2268 static int verify_lock(struct ref_lock
*lock
,
2269 const unsigned char *old_sha1
, int mustexist
,
2274 if (read_ref_full(lock
->ref_name
,
2275 mustexist
? RESOLVE_REF_READING
: 0,
2276 lock
->old_oid
.hash
, NULL
)) {
2277 int save_errno
= errno
;
2278 strbuf_addf(err
, "can't verify ref %s", lock
->ref_name
);
2282 if (hashcmp(lock
->old_oid
.hash
, old_sha1
)) {
2283 strbuf_addf(err
, "ref %s is at %s but expected %s",
2285 sha1_to_hex(lock
->old_oid
.hash
),
2286 sha1_to_hex(old_sha1
));
2293 static int remove_empty_directories(struct strbuf
*path
)
2296 * we want to create a file but there is a directory there;
2297 * if that is an empty directory (or a directory that contains
2298 * only empty directories), remove them.
2300 return remove_dir_recursively(path
, REMOVE_DIR_EMPTY_ONLY
);
2304 * *string and *len will only be substituted, and *string returned (for
2305 * later free()ing) if the string passed in is a magic short-hand form
2308 static char *substitute_branch_name(const char **string
, int *len
)
2310 struct strbuf buf
= STRBUF_INIT
;
2311 int ret
= interpret_branch_name(*string
, *len
, &buf
);
2315 *string
= strbuf_detach(&buf
, &size
);
2317 return (char *)*string
;
2323 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
2325 char *last_branch
= substitute_branch_name(&str
, &len
);
2330 for (p
= ref_rev_parse_rules
; *p
; p
++) {
2331 char fullref
[PATH_MAX
];
2332 unsigned char sha1_from_ref
[20];
2333 unsigned char *this_result
;
2336 this_result
= refs_found
? sha1_from_ref
: sha1
;
2337 mksnpath(fullref
, sizeof(fullref
), *p
, len
, str
);
2338 r
= resolve_ref_unsafe(fullref
, RESOLVE_REF_READING
,
2339 this_result
, &flag
);
2343 if (!warn_ambiguous_refs
)
2345 } else if ((flag
& REF_ISSYMREF
) && strcmp(fullref
, "HEAD")) {
2346 warning("ignoring dangling symref %s.", fullref
);
2347 } else if ((flag
& REF_ISBROKEN
) && strchr(fullref
, '/')) {
2348 warning("ignoring broken ref %s.", fullref
);
2355 int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
2357 char *last_branch
= substitute_branch_name(&str
, &len
);
2362 for (p
= ref_rev_parse_rules
; *p
; p
++) {
2363 unsigned char hash
[20];
2364 char path
[PATH_MAX
];
2365 const char *ref
, *it
;
2367 mksnpath(path
, sizeof(path
), *p
, len
, str
);
2368 ref
= resolve_ref_unsafe(path
, RESOLVE_REF_READING
,
2372 if (reflog_exists(path
))
2374 else if (strcmp(ref
, path
) && reflog_exists(ref
))
2378 if (!logs_found
++) {
2380 hashcpy(sha1
, hash
);
2382 if (!warn_ambiguous_refs
)
2390 * Locks a ref returning the lock on success and NULL on failure.
2391 * On failure errno is set to something meaningful.
2393 static struct ref_lock
*lock_ref_sha1_basic(const char *refname
,
2394 const unsigned char *old_sha1
,
2395 const struct string_list
*extras
,
2396 const struct string_list
*skip
,
2397 unsigned int flags
, int *type_p
,
2400 struct strbuf ref_file
= STRBUF_INIT
;
2401 struct strbuf orig_ref_file
= STRBUF_INIT
;
2402 const char *orig_refname
= refname
;
2403 struct ref_lock
*lock
;
2406 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
2407 int resolve_flags
= 0;
2408 int attempts_remaining
= 3;
2412 lock
= xcalloc(1, sizeof(struct ref_lock
));
2415 resolve_flags
|= RESOLVE_REF_READING
;
2416 if (flags
& REF_DELETING
) {
2417 resolve_flags
|= RESOLVE_REF_ALLOW_BAD_NAME
;
2418 if (flags
& REF_NODEREF
)
2419 resolve_flags
|= RESOLVE_REF_NO_RECURSE
;
2422 refname
= resolve_ref_unsafe(refname
, resolve_flags
,
2423 lock
->old_oid
.hash
, &type
);
2424 if (!refname
&& errno
== EISDIR
) {
2426 * we are trying to lock foo but we used to
2427 * have foo/bar which now does not exist;
2428 * it is normal for the empty directory 'foo'
2431 strbuf_git_path(&orig_ref_file
, "%s", orig_refname
);
2432 if (remove_empty_directories(&orig_ref_file
)) {
2434 if (!verify_refname_available(orig_refname
, extras
, skip
,
2435 get_loose_refs(&ref_cache
), err
))
2436 strbuf_addf(err
, "there are still refs under '%s'",
2440 refname
= resolve_ref_unsafe(orig_refname
, resolve_flags
,
2441 lock
->old_oid
.hash
, &type
);
2447 if (last_errno
!= ENOTDIR
||
2448 !verify_refname_available(orig_refname
, extras
, skip
,
2449 get_loose_refs(&ref_cache
), err
))
2450 strbuf_addf(err
, "unable to resolve reference %s: %s",
2451 orig_refname
, strerror(last_errno
));
2456 * If the ref did not exist and we are creating it, make sure
2457 * there is no existing packed ref whose name begins with our
2458 * refname, nor a packed ref whose name is a proper prefix of
2461 if (is_null_oid(&lock
->old_oid
) &&
2462 verify_refname_available(refname
, extras
, skip
,
2463 get_packed_refs(&ref_cache
), err
)) {
2464 last_errno
= ENOTDIR
;
2468 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
2471 if (flags
& REF_NODEREF
) {
2472 refname
= orig_refname
;
2473 lflags
|= LOCK_NO_DEREF
;
2475 lock
->ref_name
= xstrdup(refname
);
2476 lock
->orig_ref_name
= xstrdup(orig_refname
);
2477 strbuf_git_path(&ref_file
, "%s", refname
);
2480 switch (safe_create_leading_directories_const(ref_file
.buf
)) {
2482 break; /* success */
2484 if (--attempts_remaining
> 0)
2489 strbuf_addf(err
, "unable to create directory for %s",
2494 if (hold_lock_file_for_update(lock
->lk
, ref_file
.buf
, lflags
) < 0) {
2496 if (errno
== ENOENT
&& --attempts_remaining
> 0)
2498 * Maybe somebody just deleted one of the
2499 * directories leading to ref_file. Try
2504 unable_to_lock_message(ref_file
.buf
, errno
, err
);
2508 if (old_sha1
&& verify_lock(lock
, old_sha1
, mustexist
, err
)) {
2519 strbuf_release(&ref_file
);
2520 strbuf_release(&orig_ref_file
);
2526 * Write an entry to the packed-refs file for the specified refname.
2527 * If peeled is non-NULL, write it as the entry's peeled value.
2529 static void write_packed_entry(FILE *fh
, char *refname
, unsigned char *sha1
,
2530 unsigned char *peeled
)
2532 fprintf_or_die(fh
, "%s %s\n", sha1_to_hex(sha1
), refname
);
2534 fprintf_or_die(fh
, "^%s\n", sha1_to_hex(peeled
));
2538 * An each_ref_entry_fn that writes the entry to a packed-refs file.
2540 static int write_packed_entry_fn(struct ref_entry
*entry
, void *cb_data
)
2542 enum peel_status peel_status
= peel_entry(entry
, 0);
2544 if (peel_status
!= PEEL_PEELED
&& peel_status
!= PEEL_NON_TAG
)
2545 error("internal error: %s is not a valid packed reference!",
2547 write_packed_entry(cb_data
, entry
->name
, entry
->u
.value
.oid
.hash
,
2548 peel_status
== PEEL_PEELED
?
2549 entry
->u
.value
.peeled
.hash
: NULL
);
2554 * Lock the packed-refs file for writing. Flags is passed to
2555 * hold_lock_file_for_update(). Return 0 on success. On errors, set
2556 * errno appropriately and return a nonzero value.
2558 static int lock_packed_refs(int flags
)
2560 static int timeout_configured
= 0;
2561 static int timeout_value
= 1000;
2563 struct packed_ref_cache
*packed_ref_cache
;
2565 if (!timeout_configured
) {
2566 git_config_get_int("core.packedrefstimeout", &timeout_value
);
2567 timeout_configured
= 1;
2570 if (hold_lock_file_for_update_timeout(
2571 &packlock
, git_path("packed-refs"),
2572 flags
, timeout_value
) < 0)
2575 * Get the current packed-refs while holding the lock. If the
2576 * packed-refs file has been modified since we last read it,
2577 * this will automatically invalidate the cache and re-read
2578 * the packed-refs file.
2580 packed_ref_cache
= get_packed_ref_cache(&ref_cache
);
2581 packed_ref_cache
->lock
= &packlock
;
2582 /* Increment the reference count to prevent it from being freed: */
2583 acquire_packed_ref_cache(packed_ref_cache
);
2588 * Write the current version of the packed refs cache from memory to
2589 * disk. The packed-refs file must already be locked for writing (see
2590 * lock_packed_refs()). Return zero on success. On errors, set errno
2591 * and return a nonzero value
2593 static int commit_packed_refs(void)
2595 struct packed_ref_cache
*packed_ref_cache
=
2596 get_packed_ref_cache(&ref_cache
);
2601 if (!packed_ref_cache
->lock
)
2602 die("internal error: packed-refs not locked");
2604 out
= fdopen_lock_file(packed_ref_cache
->lock
, "w");
2606 die_errno("unable to fdopen packed-refs descriptor");
2608 fprintf_or_die(out
, "%s", PACKED_REFS_HEADER
);
2609 do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache
),
2610 0, write_packed_entry_fn
, out
);
2612 if (commit_lock_file(packed_ref_cache
->lock
)) {
2616 packed_ref_cache
->lock
= NULL
;
2617 release_packed_ref_cache(packed_ref_cache
);
2623 * Rollback the lockfile for the packed-refs file, and discard the
2624 * in-memory packed reference cache. (The packed-refs file will be
2625 * read anew if it is needed again after this function is called.)
2627 static void rollback_packed_refs(void)
2629 struct packed_ref_cache
*packed_ref_cache
=
2630 get_packed_ref_cache(&ref_cache
);
2632 if (!packed_ref_cache
->lock
)
2633 die("internal error: packed-refs not locked");
2634 rollback_lock_file(packed_ref_cache
->lock
);
2635 packed_ref_cache
->lock
= NULL
;
2636 release_packed_ref_cache(packed_ref_cache
);
2637 clear_packed_ref_cache(&ref_cache
);
2640 struct ref_to_prune
{
2641 struct ref_to_prune
*next
;
2642 unsigned char sha1
[20];
2643 char name
[FLEX_ARRAY
];
2646 struct pack_refs_cb_data
{
2648 struct ref_dir
*packed_refs
;
2649 struct ref_to_prune
*ref_to_prune
;
2653 * An each_ref_entry_fn that is run over loose references only. If
2654 * the loose reference can be packed, add an entry in the packed ref
2655 * cache. If the reference should be pruned, also add it to
2656 * ref_to_prune in the pack_refs_cb_data.
2658 static int pack_if_possible_fn(struct ref_entry
*entry
, void *cb_data
)
2660 struct pack_refs_cb_data
*cb
= cb_data
;
2661 enum peel_status peel_status
;
2662 struct ref_entry
*packed_entry
;
2663 int is_tag_ref
= starts_with(entry
->name
, "refs/tags/");
2665 /* ALWAYS pack tags */
2666 if (!(cb
->flags
& PACK_REFS_ALL
) && !is_tag_ref
)
2669 /* Do not pack symbolic or broken refs: */
2670 if ((entry
->flag
& REF_ISSYMREF
) || !ref_resolves_to_object(entry
))
2673 /* Add a packed ref cache entry equivalent to the loose entry. */
2674 peel_status
= peel_entry(entry
, 1);
2675 if (peel_status
!= PEEL_PEELED
&& peel_status
!= PEEL_NON_TAG
)
2676 die("internal error peeling reference %s (%s)",
2677 entry
->name
, oid_to_hex(&entry
->u
.value
.oid
));
2678 packed_entry
= find_ref(cb
->packed_refs
, entry
->name
);
2680 /* Overwrite existing packed entry with info from loose entry */
2681 packed_entry
->flag
= REF_ISPACKED
| REF_KNOWS_PEELED
;
2682 oidcpy(&packed_entry
->u
.value
.oid
, &entry
->u
.value
.oid
);
2684 packed_entry
= create_ref_entry(entry
->name
, entry
->u
.value
.oid
.hash
,
2685 REF_ISPACKED
| REF_KNOWS_PEELED
, 0);
2686 add_ref(cb
->packed_refs
, packed_entry
);
2688 oidcpy(&packed_entry
->u
.value
.peeled
, &entry
->u
.value
.peeled
);
2690 /* Schedule the loose reference for pruning if requested. */
2691 if ((cb
->flags
& PACK_REFS_PRUNE
)) {
2692 int namelen
= strlen(entry
->name
) + 1;
2693 struct ref_to_prune
*n
= xcalloc(1, sizeof(*n
) + namelen
);
2694 hashcpy(n
->sha1
, entry
->u
.value
.oid
.hash
);
2695 strcpy(n
->name
, entry
->name
);
2696 n
->next
= cb
->ref_to_prune
;
2697 cb
->ref_to_prune
= n
;
2703 * Remove empty parents, but spare refs/ and immediate subdirs.
2704 * Note: munges *name.
2706 static void try_remove_empty_parents(char *name
)
2711 for (i
= 0; i
< 2; i
++) { /* refs/{heads,tags,...}/ */
2712 while (*p
&& *p
!= '/')
2714 /* tolerate duplicate slashes; see check_refname_format() */
2718 for (q
= p
; *q
; q
++)
2721 while (q
> p
&& *q
!= '/')
2723 while (q
> p
&& *(q
-1) == '/')
2728 if (rmdir(git_path("%s", name
)))
2733 /* make sure nobody touched the ref, and unlink */
2734 static void prune_ref(struct ref_to_prune
*r
)
2736 struct ref_transaction
*transaction
;
2737 struct strbuf err
= STRBUF_INIT
;
2739 if (check_refname_format(r
->name
, 0))
2742 transaction
= ref_transaction_begin(&err
);
2744 ref_transaction_delete(transaction
, r
->name
, r
->sha1
,
2745 REF_ISPRUNING
, NULL
, &err
) ||
2746 ref_transaction_commit(transaction
, &err
)) {
2747 ref_transaction_free(transaction
);
2748 error("%s", err
.buf
);
2749 strbuf_release(&err
);
2752 ref_transaction_free(transaction
);
2753 strbuf_release(&err
);
2754 try_remove_empty_parents(r
->name
);
2757 static void prune_refs(struct ref_to_prune
*r
)
2765 int pack_refs(unsigned int flags
)
2767 struct pack_refs_cb_data cbdata
;
2769 memset(&cbdata
, 0, sizeof(cbdata
));
2770 cbdata
.flags
= flags
;
2772 lock_packed_refs(LOCK_DIE_ON_ERROR
);
2773 cbdata
.packed_refs
= get_packed_refs(&ref_cache
);
2775 do_for_each_entry_in_dir(get_loose_refs(&ref_cache
), 0,
2776 pack_if_possible_fn
, &cbdata
);
2778 if (commit_packed_refs())
2779 die_errno("unable to overwrite old ref-pack file");
2781 prune_refs(cbdata
.ref_to_prune
);
2786 * Rewrite the packed-refs file, omitting any refs listed in
2787 * 'refnames'. On error, leave packed-refs unchanged, write an error
2788 * message to 'err', and return a nonzero value.
2790 * The refs in 'refnames' needn't be sorted. `err` must not be NULL.
2792 static int repack_without_refs(struct string_list
*refnames
, struct strbuf
*err
)
2794 struct ref_dir
*packed
;
2795 struct string_list_item
*refname
;
2796 int ret
, needs_repacking
= 0, removed
= 0;
2800 /* Look for a packed ref */
2801 for_each_string_list_item(refname
, refnames
) {
2802 if (get_packed_ref(refname
->string
)) {
2803 needs_repacking
= 1;
2808 /* Avoid locking if we have nothing to do */
2809 if (!needs_repacking
)
2810 return 0; /* no refname exists in packed refs */
2812 if (lock_packed_refs(0)) {
2813 unable_to_lock_message(git_path("packed-refs"), errno
, err
);
2816 packed
= get_packed_refs(&ref_cache
);
2818 /* Remove refnames from the cache */
2819 for_each_string_list_item(refname
, refnames
)
2820 if (remove_entry(packed
, refname
->string
) != -1)
2824 * All packed entries disappeared while we were
2825 * acquiring the lock.
2827 rollback_packed_refs();
2831 /* Write what remains */
2832 ret
= commit_packed_refs();
2834 strbuf_addf(err
, "unable to overwrite old ref-pack file: %s",
2839 static int delete_ref_loose(struct ref_lock
*lock
, int flag
, struct strbuf
*err
)
2843 if (!(flag
& REF_ISPACKED
) || flag
& REF_ISSYMREF
) {
2845 * loose. The loose file name is the same as the
2846 * lockfile name, minus ".lock":
2848 char *loose_filename
= get_locked_file_path(lock
->lk
);
2849 int res
= unlink_or_msg(loose_filename
, err
);
2850 free(loose_filename
);
2857 static int is_per_worktree_ref(const char *refname
)
2859 return !strcmp(refname
, "HEAD");
2862 static int is_pseudoref_syntax(const char *refname
)
2866 for (c
= refname
; *c
; c
++) {
2867 if (!isupper(*c
) && *c
!= '-' && *c
!= '_')
2874 enum ref_type
ref_type(const char *refname
)
2876 if (is_per_worktree_ref(refname
))
2877 return REF_TYPE_PER_WORKTREE
;
2878 if (is_pseudoref_syntax(refname
))
2879 return REF_TYPE_PSEUDOREF
;
2880 return REF_TYPE_NORMAL
;
2883 static int write_pseudoref(const char *pseudoref
, const unsigned char *sha1
,
2884 const unsigned char *old_sha1
, struct strbuf
*err
)
2886 const char *filename
;
2888 static struct lock_file lock
;
2889 struct strbuf buf
= STRBUF_INIT
;
2892 strbuf_addf(&buf
, "%s\n", sha1_to_hex(sha1
));
2894 filename
= git_path("%s", pseudoref
);
2895 fd
= hold_lock_file_for_update(&lock
, filename
, LOCK_DIE_ON_ERROR
);
2897 strbuf_addf(err
, "Could not open '%s' for writing: %s",
2898 filename
, strerror(errno
));
2903 unsigned char actual_old_sha1
[20];
2905 if (read_ref(pseudoref
, actual_old_sha1
))
2906 die("could not read ref '%s'", pseudoref
);
2907 if (hashcmp(actual_old_sha1
, old_sha1
)) {
2908 strbuf_addf(err
, "Unexpected sha1 when writing %s", pseudoref
);
2909 rollback_lock_file(&lock
);
2914 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
) {
2915 strbuf_addf(err
, "Could not write to '%s'", filename
);
2916 rollback_lock_file(&lock
);
2920 commit_lock_file(&lock
);
2923 strbuf_release(&buf
);
2927 static int delete_pseudoref(const char *pseudoref
, const unsigned char *old_sha1
)
2929 static struct lock_file lock
;
2930 const char *filename
;
2932 filename
= git_path("%s", pseudoref
);
2934 if (old_sha1
&& !is_null_sha1(old_sha1
)) {
2936 unsigned char actual_old_sha1
[20];
2938 fd
= hold_lock_file_for_update(&lock
, filename
,
2941 die_errno(_("Could not open '%s' for writing"), filename
);
2942 if (read_ref(pseudoref
, actual_old_sha1
))
2943 die("could not read ref '%s'", pseudoref
);
2944 if (hashcmp(actual_old_sha1
, old_sha1
)) {
2945 warning("Unexpected sha1 when deleting %s", pseudoref
);
2946 rollback_lock_file(&lock
);
2951 rollback_lock_file(&lock
);
2959 int delete_ref(const char *refname
, const unsigned char *old_sha1
,
2962 struct ref_transaction
*transaction
;
2963 struct strbuf err
= STRBUF_INIT
;
2965 if (ref_type(refname
) == REF_TYPE_PSEUDOREF
)
2966 return delete_pseudoref(refname
, old_sha1
);
2968 transaction
= ref_transaction_begin(&err
);
2970 ref_transaction_delete(transaction
, refname
, old_sha1
,
2971 flags
, NULL
, &err
) ||
2972 ref_transaction_commit(transaction
, &err
)) {
2973 error("%s", err
.buf
);
2974 ref_transaction_free(transaction
);
2975 strbuf_release(&err
);
2978 ref_transaction_free(transaction
);
2979 strbuf_release(&err
);
2983 int delete_refs(struct string_list
*refnames
)
2985 struct strbuf err
= STRBUF_INIT
;
2991 result
= repack_without_refs(refnames
, &err
);
2994 * If we failed to rewrite the packed-refs file, then
2995 * it is unsafe to try to remove loose refs, because
2996 * doing so might expose an obsolete packed value for
2997 * a reference that might even point at an object that
2998 * has been garbage collected.
3000 if (refnames
->nr
== 1)
3001 error(_("could not delete reference %s: %s"),
3002 refnames
->items
[0].string
, err
.buf
);
3004 error(_("could not delete references: %s"), err
.buf
);
3009 for (i
= 0; i
< refnames
->nr
; i
++) {
3010 const char *refname
= refnames
->items
[i
].string
;
3012 if (delete_ref(refname
, NULL
, 0))
3013 result
|= error(_("could not remove reference %s"), refname
);
3017 strbuf_release(&err
);
3022 * People using contrib's git-new-workdir have .git/logs/refs ->
3023 * /some/other/path/.git/logs/refs, and that may live on another device.
3025 * IOW, to avoid cross device rename errors, the temporary renamed log must
3026 * live into logs/refs.
3028 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
3030 static int rename_tmp_log(const char *newrefname
)
3032 int attempts_remaining
= 4;
3033 struct strbuf path
= STRBUF_INIT
;
3037 strbuf_reset(&path
);
3038 strbuf_git_path(&path
, "logs/%s", newrefname
);
3039 switch (safe_create_leading_directories_const(path
.buf
)) {
3041 break; /* success */
3043 if (--attempts_remaining
> 0)
3047 error("unable to create directory for %s", newrefname
);
3051 if (rename(git_path(TMP_RENAMED_LOG
), path
.buf
)) {
3052 if ((errno
==EISDIR
|| errno
==ENOTDIR
) && --attempts_remaining
> 0) {
3054 * rename(a, b) when b is an existing
3055 * directory ought to result in ISDIR, but
3056 * Solaris 5.8 gives ENOTDIR. Sheesh.
3058 if (remove_empty_directories(&path
)) {
3059 error("Directory not empty: logs/%s", newrefname
);
3063 } else if (errno
== ENOENT
&& --attempts_remaining
> 0) {
3065 * Maybe another process just deleted one of
3066 * the directories in the path to newrefname.
3067 * Try again from the beginning.
3071 error("unable to move logfile "TMP_RENAMED_LOG
" to logs/%s: %s",
3072 newrefname
, strerror(errno
));
3078 strbuf_release(&path
);
3082 static int rename_ref_available(const char *oldname
, const char *newname
)
3084 struct string_list skip
= STRING_LIST_INIT_NODUP
;
3085 struct strbuf err
= STRBUF_INIT
;
3088 string_list_insert(&skip
, oldname
);
3089 ret
= !verify_refname_available(newname
, NULL
, &skip
,
3090 get_packed_refs(&ref_cache
), &err
)
3091 && !verify_refname_available(newname
, NULL
, &skip
,
3092 get_loose_refs(&ref_cache
), &err
);
3094 error("%s", err
.buf
);
3096 string_list_clear(&skip
, 0);
3097 strbuf_release(&err
);
3101 static int write_ref_to_lockfile(struct ref_lock
*lock
,
3102 const unsigned char *sha1
, struct strbuf
*err
);
3103 static int commit_ref_update(struct ref_lock
*lock
,
3104 const unsigned char *sha1
, const char *logmsg
,
3105 int flags
, struct strbuf
*err
);
3107 int rename_ref(const char *oldrefname
, const char *newrefname
, const char *logmsg
)
3109 unsigned char sha1
[20], orig_sha1
[20];
3110 int flag
= 0, logmoved
= 0;
3111 struct ref_lock
*lock
;
3112 struct stat loginfo
;
3113 int log
= !lstat(git_path("logs/%s", oldrefname
), &loginfo
);
3114 const char *symref
= NULL
;
3115 struct strbuf err
= STRBUF_INIT
;
3117 if (log
&& S_ISLNK(loginfo
.st_mode
))
3118 return error("reflog for %s is a symlink", oldrefname
);
3120 symref
= resolve_ref_unsafe(oldrefname
, RESOLVE_REF_READING
,
3122 if (flag
& REF_ISSYMREF
)
3123 return error("refname %s is a symbolic ref, renaming it is not supported",
3126 return error("refname %s not found", oldrefname
);
3128 if (!rename_ref_available(oldrefname
, newrefname
))
3131 if (log
&& rename(git_path("logs/%s", oldrefname
), git_path(TMP_RENAMED_LOG
)))
3132 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG
": %s",
3133 oldrefname
, strerror(errno
));
3135 if (delete_ref(oldrefname
, orig_sha1
, REF_NODEREF
)) {
3136 error("unable to delete old %s", oldrefname
);
3140 if (!read_ref_full(newrefname
, RESOLVE_REF_READING
, sha1
, NULL
) &&
3141 delete_ref(newrefname
, sha1
, REF_NODEREF
)) {
3142 if (errno
==EISDIR
) {
3143 struct strbuf path
= STRBUF_INIT
;
3146 strbuf_git_path(&path
, "%s", newrefname
);
3147 result
= remove_empty_directories(&path
);
3148 strbuf_release(&path
);
3151 error("Directory not empty: %s", newrefname
);
3155 error("unable to delete existing %s", newrefname
);
3160 if (log
&& rename_tmp_log(newrefname
))
3165 lock
= lock_ref_sha1_basic(newrefname
, NULL
, NULL
, NULL
, 0, NULL
, &err
);
3167 error("unable to rename '%s' to '%s': %s", oldrefname
, newrefname
, err
.buf
);
3168 strbuf_release(&err
);
3171 hashcpy(lock
->old_oid
.hash
, orig_sha1
);
3173 if (write_ref_to_lockfile(lock
, orig_sha1
, &err
) ||
3174 commit_ref_update(lock
, orig_sha1
, logmsg
, 0, &err
)) {
3175 error("unable to write current sha1 into %s: %s", newrefname
, err
.buf
);
3176 strbuf_release(&err
);
3183 lock
= lock_ref_sha1_basic(oldrefname
, NULL
, NULL
, NULL
, 0, NULL
, &err
);
3185 error("unable to lock %s for rollback: %s", oldrefname
, err
.buf
);
3186 strbuf_release(&err
);
3190 flag
= log_all_ref_updates
;
3191 log_all_ref_updates
= 0;
3192 if (write_ref_to_lockfile(lock
, orig_sha1
, &err
) ||
3193 commit_ref_update(lock
, orig_sha1
, NULL
, 0, &err
)) {
3194 error("unable to write current sha1 into %s: %s", oldrefname
, err
.buf
);
3195 strbuf_release(&err
);
3197 log_all_ref_updates
= flag
;
3200 if (logmoved
&& rename(git_path("logs/%s", newrefname
), git_path("logs/%s", oldrefname
)))
3201 error("unable to restore logfile %s from %s: %s",
3202 oldrefname
, newrefname
, strerror(errno
));
3203 if (!logmoved
&& log
&&
3204 rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", oldrefname
)))
3205 error("unable to restore logfile %s from "TMP_RENAMED_LOG
": %s",
3206 oldrefname
, strerror(errno
));
3211 static int close_ref(struct ref_lock
*lock
)
3213 if (close_lock_file(lock
->lk
))
3218 static int commit_ref(struct ref_lock
*lock
)
3220 if (commit_lock_file(lock
->lk
))
3226 * copy the reflog message msg to buf, which has been allocated sufficiently
3227 * large, while cleaning up the whitespaces. Especially, convert LF to space,
3228 * because reflog file is one line per entry.
3230 static int copy_msg(char *buf
, const char *msg
)
3237 while ((c
= *msg
++)) {
3238 if (wasspace
&& isspace(c
))
3240 wasspace
= isspace(c
);
3245 while (buf
< cp
&& isspace(cp
[-1]))
3251 static int should_autocreate_reflog(const char *refname
)
3253 if (!log_all_ref_updates
)
3255 return starts_with(refname
, "refs/heads/") ||
3256 starts_with(refname
, "refs/remotes/") ||
3257 starts_with(refname
, "refs/notes/") ||
3258 !strcmp(refname
, "HEAD");
3262 * Create a reflog for a ref. If force_create = 0, the reflog will
3263 * only be created for certain refs (those for which
3264 * should_autocreate_reflog returns non-zero. Otherwise, create it
3265 * regardless of the ref name. Fill in *err and return -1 on failure.
3267 static int log_ref_setup(const char *refname
, struct strbuf
*logfile
, struct strbuf
*err
, int force_create
)
3269 int logfd
, oflags
= O_APPEND
| O_WRONLY
;
3271 strbuf_git_path(logfile
, "logs/%s", refname
);
3272 if (force_create
|| should_autocreate_reflog(refname
)) {
3273 if (safe_create_leading_directories(logfile
->buf
) < 0) {
3274 strbuf_addf(err
, "unable to create directory for %s: "
3275 "%s", logfile
->buf
, strerror(errno
));
3281 logfd
= open(logfile
->buf
, oflags
, 0666);
3283 if (!(oflags
& O_CREAT
) && (errno
== ENOENT
|| errno
== EISDIR
))
3286 if (errno
== EISDIR
) {
3287 if (remove_empty_directories(logfile
)) {
3288 strbuf_addf(err
, "There are still logs under "
3289 "'%s'", logfile
->buf
);
3292 logfd
= open(logfile
->buf
, oflags
, 0666);
3296 strbuf_addf(err
, "unable to append to %s: %s",
3297 logfile
->buf
, strerror(errno
));
3302 adjust_shared_perm(logfile
->buf
);
3308 int safe_create_reflog(const char *refname
, int force_create
, struct strbuf
*err
)
3311 struct strbuf sb
= STRBUF_INIT
;
3313 ret
= log_ref_setup(refname
, &sb
, err
, force_create
);
3314 strbuf_release(&sb
);
3318 static int log_ref_write_fd(int fd
, const unsigned char *old_sha1
,
3319 const unsigned char *new_sha1
,
3320 const char *committer
, const char *msg
)
3322 int msglen
, written
;
3323 unsigned maxlen
, len
;
3326 msglen
= msg
? strlen(msg
) : 0;
3327 maxlen
= strlen(committer
) + msglen
+ 100;
3328 logrec
= xmalloc(maxlen
);
3329 len
= sprintf(logrec
, "%s %s %s\n",
3330 sha1_to_hex(old_sha1
),
3331 sha1_to_hex(new_sha1
),
3334 len
+= copy_msg(logrec
+ len
- 1, msg
) - 1;
3336 written
= len
<= maxlen
? write_in_full(fd
, logrec
, len
) : -1;
3344 static int log_ref_write_1(const char *refname
, const unsigned char *old_sha1
,
3345 const unsigned char *new_sha1
, const char *msg
,
3346 struct strbuf
*logfile
, int flags
,
3349 int logfd
, result
, oflags
= O_APPEND
| O_WRONLY
;
3351 if (log_all_ref_updates
< 0)
3352 log_all_ref_updates
= !is_bare_repository();
3354 result
= log_ref_setup(refname
, logfile
, err
, flags
& REF_FORCE_CREATE_REFLOG
);
3359 logfd
= open(logfile
->buf
, oflags
);
3362 result
= log_ref_write_fd(logfd
, old_sha1
, new_sha1
,
3363 git_committer_info(0), msg
);
3365 strbuf_addf(err
, "unable to append to %s: %s", logfile
->buf
,
3371 strbuf_addf(err
, "unable to append to %s: %s", logfile
->buf
,
3378 static int log_ref_write(const char *refname
, const unsigned char *old_sha1
,
3379 const unsigned char *new_sha1
, const char *msg
,
3380 int flags
, struct strbuf
*err
)
3382 struct strbuf sb
= STRBUF_INIT
;
3383 int ret
= log_ref_write_1(refname
, old_sha1
, new_sha1
, msg
, &sb
, flags
,
3385 strbuf_release(&sb
);
3389 int is_branch(const char *refname
)
3391 return !strcmp(refname
, "HEAD") || starts_with(refname
, "refs/heads/");
3395 * Write sha1 into the open lockfile, then close the lockfile. On
3396 * errors, rollback the lockfile, fill in *err and
3399 static int write_ref_to_lockfile(struct ref_lock
*lock
,
3400 const unsigned char *sha1
, struct strbuf
*err
)
3402 static char term
= '\n';
3406 o
= parse_object(sha1
);
3409 "Trying to write ref %s with nonexistent object %s",
3410 lock
->ref_name
, sha1_to_hex(sha1
));
3414 if (o
->type
!= OBJ_COMMIT
&& is_branch(lock
->ref_name
)) {
3416 "Trying to write non-commit object %s to branch %s",
3417 sha1_to_hex(sha1
), lock
->ref_name
);
3421 fd
= get_lock_file_fd(lock
->lk
);
3422 if (write_in_full(fd
, sha1_to_hex(sha1
), 40) != 40 ||
3423 write_in_full(fd
, &term
, 1) != 1 ||
3424 close_ref(lock
) < 0) {
3426 "Couldn't write %s", get_lock_file_path(lock
->lk
));
3434 * Commit a change to a loose reference that has already been written
3435 * to the loose reference lockfile. Also update the reflogs if
3436 * necessary, using the specified lockmsg (which can be NULL).
3438 static int commit_ref_update(struct ref_lock
*lock
,
3439 const unsigned char *sha1
, const char *logmsg
,
3440 int flags
, struct strbuf
*err
)
3442 clear_loose_ref_cache(&ref_cache
);
3443 if (log_ref_write(lock
->ref_name
, lock
->old_oid
.hash
, sha1
, logmsg
, flags
, err
) < 0 ||
3444 (strcmp(lock
->ref_name
, lock
->orig_ref_name
) &&
3445 log_ref_write(lock
->orig_ref_name
, lock
->old_oid
.hash
, sha1
, logmsg
, flags
, err
) < 0)) {
3446 char *old_msg
= strbuf_detach(err
, NULL
);
3447 strbuf_addf(err
, "Cannot update the ref '%s': %s",
3448 lock
->ref_name
, old_msg
);
3453 if (strcmp(lock
->orig_ref_name
, "HEAD") != 0) {
3455 * Special hack: If a branch is updated directly and HEAD
3456 * points to it (may happen on the remote side of a push
3457 * for example) then logically the HEAD reflog should be
3459 * A generic solution implies reverse symref information,
3460 * but finding all symrefs pointing to the given branch
3461 * would be rather costly for this rare event (the direct
3462 * update of a branch) to be worth it. So let's cheat and
3463 * check with HEAD only which should cover 99% of all usage
3464 * scenarios (even 100% of the default ones).
3466 unsigned char head_sha1
[20];
3468 const char *head_ref
;
3469 head_ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
3470 head_sha1
, &head_flag
);
3471 if (head_ref
&& (head_flag
& REF_ISSYMREF
) &&
3472 !strcmp(head_ref
, lock
->ref_name
)) {
3473 struct strbuf log_err
= STRBUF_INIT
;
3474 if (log_ref_write("HEAD", lock
->old_oid
.hash
, sha1
,
3475 logmsg
, 0, &log_err
)) {
3476 error("%s", log_err
.buf
);
3477 strbuf_release(&log_err
);
3481 if (commit_ref(lock
)) {
3482 error("Couldn't set %s", lock
->ref_name
);
3491 int create_symref(const char *ref_target
, const char *refs_heads_master
,
3494 char *lockpath
= NULL
;
3496 int fd
, len
, written
;
3497 char *git_HEAD
= git_pathdup("%s", ref_target
);
3498 unsigned char old_sha1
[20], new_sha1
[20];
3499 struct strbuf err
= STRBUF_INIT
;
3501 if (logmsg
&& read_ref(ref_target
, old_sha1
))
3504 if (safe_create_leading_directories(git_HEAD
) < 0)
3505 return error("unable to create directory for %s", git_HEAD
);
3507 #ifndef NO_SYMLINK_HEAD
3508 if (prefer_symlink_refs
) {
3510 if (!symlink(refs_heads_master
, git_HEAD
))
3512 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
3516 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
3517 if (sizeof(ref
) <= len
) {
3518 error("refname too long: %s", refs_heads_master
);
3519 goto error_free_return
;
3521 lockpath
= mkpathdup("%s.lock", git_HEAD
);
3522 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
3524 error("Unable to open %s for writing", lockpath
);
3525 goto error_free_return
;
3527 written
= write_in_full(fd
, ref
, len
);
3528 if (close(fd
) != 0 || written
!= len
) {
3529 error("Unable to write to %s", lockpath
);
3530 goto error_unlink_return
;
3532 if (rename(lockpath
, git_HEAD
) < 0) {
3533 error("Unable to create %s", git_HEAD
);
3534 goto error_unlink_return
;
3536 if (adjust_shared_perm(git_HEAD
)) {
3537 error("Unable to fix permissions on %s", lockpath
);
3538 error_unlink_return
:
3539 unlink_or_warn(lockpath
);
3547 #ifndef NO_SYMLINK_HEAD
3550 if (logmsg
&& !read_ref(refs_heads_master
, new_sha1
) &&
3551 log_ref_write(ref_target
, old_sha1
, new_sha1
, logmsg
, 0, &err
)) {
3552 error("%s", err
.buf
);
3553 strbuf_release(&err
);
3560 struct read_ref_at_cb
{
3561 const char *refname
;
3562 unsigned long at_time
;
3565 unsigned char *sha1
;
3568 unsigned char osha1
[20];
3569 unsigned char nsha1
[20];
3573 unsigned long *cutoff_time
;
3578 static int read_ref_at_ent(unsigned char *osha1
, unsigned char *nsha1
,
3579 const char *email
, unsigned long timestamp
, int tz
,
3580 const char *message
, void *cb_data
)
3582 struct read_ref_at_cb
*cb
= cb_data
;
3586 cb
->date
= timestamp
;
3588 if (timestamp
<= cb
->at_time
|| cb
->cnt
== 0) {
3590 *cb
->msg
= xstrdup(message
);
3591 if (cb
->cutoff_time
)
3592 *cb
->cutoff_time
= timestamp
;
3594 *cb
->cutoff_tz
= tz
;
3596 *cb
->cutoff_cnt
= cb
->reccnt
- 1;
3598 * we have not yet updated cb->[n|o]sha1 so they still
3599 * hold the values for the previous record.
3601 if (!is_null_sha1(cb
->osha1
)) {
3602 hashcpy(cb
->sha1
, nsha1
);
3603 if (hashcmp(cb
->osha1
, nsha1
))
3604 warning("Log for ref %s has gap after %s.",
3605 cb
->refname
, show_date(cb
->date
, cb
->tz
, DATE_MODE(RFC2822
)));
3607 else if (cb
->date
== cb
->at_time
)
3608 hashcpy(cb
->sha1
, nsha1
);
3609 else if (hashcmp(nsha1
, cb
->sha1
))
3610 warning("Log for ref %s unexpectedly ended on %s.",
3611 cb
->refname
, show_date(cb
->date
, cb
->tz
,
3612 DATE_MODE(RFC2822
)));
3613 hashcpy(cb
->osha1
, osha1
);
3614 hashcpy(cb
->nsha1
, nsha1
);
3618 hashcpy(cb
->osha1
, osha1
);
3619 hashcpy(cb
->nsha1
, nsha1
);
3625 static int read_ref_at_ent_oldest(unsigned char *osha1
, unsigned char *nsha1
,
3626 const char *email
, unsigned long timestamp
,
3627 int tz
, const char *message
, void *cb_data
)
3629 struct read_ref_at_cb
*cb
= cb_data
;
3632 *cb
->msg
= xstrdup(message
);
3633 if (cb
->cutoff_time
)
3634 *cb
->cutoff_time
= timestamp
;
3636 *cb
->cutoff_tz
= tz
;
3638 *cb
->cutoff_cnt
= cb
->reccnt
;
3639 hashcpy(cb
->sha1
, osha1
);
3640 if (is_null_sha1(cb
->sha1
))
3641 hashcpy(cb
->sha1
, nsha1
);
3642 /* We just want the first entry */
3646 int read_ref_at(const char *refname
, unsigned int flags
, unsigned long at_time
, int cnt
,
3647 unsigned char *sha1
, char **msg
,
3648 unsigned long *cutoff_time
, int *cutoff_tz
, int *cutoff_cnt
)
3650 struct read_ref_at_cb cb
;
3652 memset(&cb
, 0, sizeof(cb
));
3653 cb
.refname
= refname
;
3654 cb
.at_time
= at_time
;
3657 cb
.cutoff_time
= cutoff_time
;
3658 cb
.cutoff_tz
= cutoff_tz
;
3659 cb
.cutoff_cnt
= cutoff_cnt
;
3662 for_each_reflog_ent_reverse(refname
, read_ref_at_ent
, &cb
);
3665 if (flags
& GET_SHA1_QUIETLY
)
3668 die("Log for %s is empty.", refname
);
3673 for_each_reflog_ent(refname
, read_ref_at_ent_oldest
, &cb
);
3678 int reflog_exists(const char *refname
)
3682 return !lstat(git_path("logs/%s", refname
), &st
) &&
3683 S_ISREG(st
.st_mode
);
3686 int delete_reflog(const char *refname
)
3688 return remove_path(git_path("logs/%s", refname
));
3691 static int show_one_reflog_ent(struct strbuf
*sb
, each_reflog_ent_fn fn
, void *cb_data
)
3693 unsigned char osha1
[20], nsha1
[20];
3694 char *email_end
, *message
;
3695 unsigned long timestamp
;
3698 /* old SP new SP name <email> SP time TAB msg LF */
3699 if (sb
->len
< 83 || sb
->buf
[sb
->len
- 1] != '\n' ||
3700 get_sha1_hex(sb
->buf
, osha1
) || sb
->buf
[40] != ' ' ||
3701 get_sha1_hex(sb
->buf
+ 41, nsha1
) || sb
->buf
[81] != ' ' ||
3702 !(email_end
= strchr(sb
->buf
+ 82, '>')) ||
3703 email_end
[1] != ' ' ||
3704 !(timestamp
= strtoul(email_end
+ 2, &message
, 10)) ||
3705 !message
|| message
[0] != ' ' ||
3706 (message
[1] != '+' && message
[1] != '-') ||
3707 !isdigit(message
[2]) || !isdigit(message
[3]) ||
3708 !isdigit(message
[4]) || !isdigit(message
[5]))
3709 return 0; /* corrupt? */
3710 email_end
[1] = '\0';
3711 tz
= strtol(message
+ 1, NULL
, 10);
3712 if (message
[6] != '\t')
3716 return fn(osha1
, nsha1
, sb
->buf
+ 82, timestamp
, tz
, message
, cb_data
);
3719 static char *find_beginning_of_line(char *bob
, char *scan
)
3721 while (bob
< scan
&& *(--scan
) != '\n')
3722 ; /* keep scanning backwards */
3724 * Return either beginning of the buffer, or LF at the end of
3725 * the previous line.
3730 int for_each_reflog_ent_reverse(const char *refname
, each_reflog_ent_fn fn
, void *cb_data
)
3732 struct strbuf sb
= STRBUF_INIT
;
3735 int ret
= 0, at_tail
= 1;
3737 logfp
= fopen(git_path("logs/%s", refname
), "r");
3741 /* Jump to the end */
3742 if (fseek(logfp
, 0, SEEK_END
) < 0)
3743 return error("cannot seek back reflog for %s: %s",
3744 refname
, strerror(errno
));
3746 while (!ret
&& 0 < pos
) {
3752 /* Fill next block from the end */
3753 cnt
= (sizeof(buf
) < pos
) ? sizeof(buf
) : pos
;
3754 if (fseek(logfp
, pos
- cnt
, SEEK_SET
))
3755 return error("cannot seek back reflog for %s: %s",
3756 refname
, strerror(errno
));
3757 nread
= fread(buf
, cnt
, 1, logfp
);
3759 return error("cannot read %d bytes from reflog for %s: %s",
3760 cnt
, refname
, strerror(errno
));
3763 scanp
= endp
= buf
+ cnt
;
3764 if (at_tail
&& scanp
[-1] == '\n')
3765 /* Looking at the final LF at the end of the file */
3769 while (buf
< scanp
) {
3771 * terminating LF of the previous line, or the beginning
3776 bp
= find_beginning_of_line(buf
, scanp
);
3780 * The newline is the end of the previous line,
3781 * so we know we have complete line starting
3782 * at (bp + 1). Prefix it onto any prior data
3783 * we collected for the line and process it.
3785 strbuf_splice(&sb
, 0, 0, bp
+ 1, endp
- (bp
+ 1));
3788 ret
= show_one_reflog_ent(&sb
, fn
, cb_data
);
3794 * We are at the start of the buffer, and the
3795 * start of the file; there is no previous
3796 * line, and we have everything for this one.
3797 * Process it, and we can end the loop.
3799 strbuf_splice(&sb
, 0, 0, buf
, endp
- buf
);
3800 ret
= show_one_reflog_ent(&sb
, fn
, cb_data
);
3807 * We are at the start of the buffer, and there
3808 * is more file to read backwards. Which means
3809 * we are in the middle of a line. Note that we
3810 * may get here even if *bp was a newline; that
3811 * just means we are at the exact end of the
3812 * previous line, rather than some spot in the
3815 * Save away what we have to be combined with
3816 * the data from the next read.
3818 strbuf_splice(&sb
, 0, 0, buf
, endp
- buf
);
3825 die("BUG: reverse reflog parser had leftover data");
3828 strbuf_release(&sb
);
3832 int for_each_reflog_ent(const char *refname
, each_reflog_ent_fn fn
, void *cb_data
)
3835 struct strbuf sb
= STRBUF_INIT
;
3838 logfp
= fopen(git_path("logs/%s", refname
), "r");
3842 while (!ret
&& !strbuf_getwholeline(&sb
, logfp
, '\n'))
3843 ret
= show_one_reflog_ent(&sb
, fn
, cb_data
);
3845 strbuf_release(&sb
);
3849 * Call fn for each reflog in the namespace indicated by name. name
3850 * must be empty or end with '/'. Name will be used as a scratch
3851 * space, but its contents will be restored before return.
3853 static int do_for_each_reflog(struct strbuf
*name
, each_ref_fn fn
, void *cb_data
)
3855 DIR *d
= opendir(git_path("logs/%s", name
->buf
));
3858 int oldlen
= name
->len
;
3861 return name
->len
? errno
: 0;
3863 while ((de
= readdir(d
)) != NULL
) {
3866 if (de
->d_name
[0] == '.')
3868 if (ends_with(de
->d_name
, ".lock"))
3870 strbuf_addstr(name
, de
->d_name
);
3871 if (stat(git_path("logs/%s", name
->buf
), &st
) < 0) {
3872 ; /* silently ignore */
3874 if (S_ISDIR(st
.st_mode
)) {
3875 strbuf_addch(name
, '/');
3876 retval
= do_for_each_reflog(name
, fn
, cb_data
);
3878 struct object_id oid
;
3880 if (read_ref_full(name
->buf
, 0, oid
.hash
, NULL
))
3881 retval
= error("bad ref for %s", name
->buf
);
3883 retval
= fn(name
->buf
, &oid
, 0, cb_data
);
3888 strbuf_setlen(name
, oldlen
);
3894 int for_each_reflog(each_ref_fn fn
, void *cb_data
)
3898 strbuf_init(&name
, PATH_MAX
);
3899 retval
= do_for_each_reflog(&name
, fn
, cb_data
);
3900 strbuf_release(&name
);
3905 * Information needed for a single ref update. Set new_sha1 to the new
3906 * value or to null_sha1 to delete the ref. To check the old value
3907 * while the ref is locked, set (flags & REF_HAVE_OLD) and set
3908 * old_sha1 to the old value, or to null_sha1 to ensure the ref does
3909 * not exist before update.
3913 * If (flags & REF_HAVE_NEW), set the reference to this value:
3915 unsigned char new_sha1
[20];
3917 * If (flags & REF_HAVE_OLD), check that the reference
3918 * previously had this value:
3920 unsigned char old_sha1
[20];
3922 * One or more of REF_HAVE_NEW, REF_HAVE_OLD, REF_NODEREF,
3923 * REF_DELETING, and REF_ISPRUNING:
3926 struct ref_lock
*lock
;
3929 const char refname
[FLEX_ARRAY
];
3933 * Transaction states.
3934 * OPEN: The transaction is in a valid state and can accept new updates.
3935 * An OPEN transaction can be committed.
3936 * CLOSED: A closed transaction is no longer active and no other operations
3937 * than free can be used on it in this state.
3938 * A transaction can either become closed by successfully committing
3939 * an active transaction or if there is a failure while building
3940 * the transaction thus rendering it failed/inactive.
3942 enum ref_transaction_state
{
3943 REF_TRANSACTION_OPEN
= 0,
3944 REF_TRANSACTION_CLOSED
= 1
3948 * Data structure for holding a reference transaction, which can
3949 * consist of checks and updates to multiple references, carried out
3950 * as atomically as possible. This structure is opaque to callers.
3952 struct ref_transaction
{
3953 struct ref_update
**updates
;
3956 enum ref_transaction_state state
;
3959 struct ref_transaction
*ref_transaction_begin(struct strbuf
*err
)
3963 return xcalloc(1, sizeof(struct ref_transaction
));
3966 void ref_transaction_free(struct ref_transaction
*transaction
)
3973 for (i
= 0; i
< transaction
->nr
; i
++) {
3974 free(transaction
->updates
[i
]->msg
);
3975 free(transaction
->updates
[i
]);
3977 free(transaction
->updates
);
3981 static struct ref_update
*add_update(struct ref_transaction
*transaction
,
3982 const char *refname
)
3984 size_t len
= strlen(refname
);
3985 struct ref_update
*update
= xcalloc(1, sizeof(*update
) + len
+ 1);
3987 strcpy((char *)update
->refname
, refname
);
3988 ALLOC_GROW(transaction
->updates
, transaction
->nr
+ 1, transaction
->alloc
);
3989 transaction
->updates
[transaction
->nr
++] = update
;
3993 int ref_transaction_update(struct ref_transaction
*transaction
,
3994 const char *refname
,
3995 const unsigned char *new_sha1
,
3996 const unsigned char *old_sha1
,
3997 unsigned int flags
, const char *msg
,
4000 struct ref_update
*update
;
4004 if (transaction
->state
!= REF_TRANSACTION_OPEN
)
4005 die("BUG: update called for transaction that is not open");
4007 if (new_sha1
&& !is_null_sha1(new_sha1
) &&
4008 check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
)) {
4009 strbuf_addf(err
, "refusing to update ref with bad name %s",
4014 update
= add_update(transaction
, refname
);
4016 hashcpy(update
->new_sha1
, new_sha1
);
4017 flags
|= REF_HAVE_NEW
;
4020 hashcpy(update
->old_sha1
, old_sha1
);
4021 flags
|= REF_HAVE_OLD
;
4023 update
->flags
= flags
;
4025 update
->msg
= xstrdup(msg
);
4029 int ref_transaction_create(struct ref_transaction
*transaction
,
4030 const char *refname
,
4031 const unsigned char *new_sha1
,
4032 unsigned int flags
, const char *msg
,
4035 if (!new_sha1
|| is_null_sha1(new_sha1
))
4036 die("BUG: create called without valid new_sha1");
4037 return ref_transaction_update(transaction
, refname
, new_sha1
,
4038 null_sha1
, flags
, msg
, err
);
4041 int ref_transaction_delete(struct ref_transaction
*transaction
,
4042 const char *refname
,
4043 const unsigned char *old_sha1
,
4044 unsigned int flags
, const char *msg
,
4047 if (old_sha1
&& is_null_sha1(old_sha1
))
4048 die("BUG: delete called with old_sha1 set to zeros");
4049 return ref_transaction_update(transaction
, refname
,
4050 null_sha1
, old_sha1
,
4054 int ref_transaction_verify(struct ref_transaction
*transaction
,
4055 const char *refname
,
4056 const unsigned char *old_sha1
,
4061 die("BUG: verify called with old_sha1 set to NULL");
4062 return ref_transaction_update(transaction
, refname
,
4067 int update_ref(const char *msg
, const char *refname
,
4068 const unsigned char *new_sha1
, const unsigned char *old_sha1
,
4069 unsigned int flags
, enum action_on_err onerr
)
4071 struct ref_transaction
*t
= NULL
;
4072 struct strbuf err
= STRBUF_INIT
;
4075 if (ref_type(refname
) == REF_TYPE_PSEUDOREF
) {
4076 ret
= write_pseudoref(refname
, new_sha1
, old_sha1
, &err
);
4078 t
= ref_transaction_begin(&err
);
4080 ref_transaction_update(t
, refname
, new_sha1
, old_sha1
,
4081 flags
, msg
, &err
) ||
4082 ref_transaction_commit(t
, &err
)) {
4084 ref_transaction_free(t
);
4088 const char *str
= "update_ref failed for ref '%s': %s";
4091 case UPDATE_REFS_MSG_ON_ERR
:
4092 error(str
, refname
, err
.buf
);
4094 case UPDATE_REFS_DIE_ON_ERR
:
4095 die(str
, refname
, err
.buf
);
4097 case UPDATE_REFS_QUIET_ON_ERR
:
4100 strbuf_release(&err
);
4103 strbuf_release(&err
);
4105 ref_transaction_free(t
);
4109 static int ref_update_reject_duplicates(struct string_list
*refnames
,
4112 int i
, n
= refnames
->nr
;
4116 for (i
= 1; i
< n
; i
++)
4117 if (!strcmp(refnames
->items
[i
- 1].string
, refnames
->items
[i
].string
)) {
4119 "Multiple updates for ref '%s' not allowed.",
4120 refnames
->items
[i
].string
);
4126 int ref_transaction_commit(struct ref_transaction
*transaction
,
4130 int n
= transaction
->nr
;
4131 struct ref_update
**updates
= transaction
->updates
;
4132 struct string_list refs_to_delete
= STRING_LIST_INIT_NODUP
;
4133 struct string_list_item
*ref_to_delete
;
4134 struct string_list affected_refnames
= STRING_LIST_INIT_NODUP
;
4138 if (transaction
->state
!= REF_TRANSACTION_OPEN
)
4139 die("BUG: commit called for transaction that is not open");
4142 transaction
->state
= REF_TRANSACTION_CLOSED
;
4146 /* Fail if a refname appears more than once in the transaction: */
4147 for (i
= 0; i
< n
; i
++)
4148 string_list_append(&affected_refnames
, updates
[i
]->refname
);
4149 string_list_sort(&affected_refnames
);
4150 if (ref_update_reject_duplicates(&affected_refnames
, err
)) {
4151 ret
= TRANSACTION_GENERIC_ERROR
;
4156 * Acquire all locks, verify old values if provided, check
4157 * that new values are valid, and write new values to the
4158 * lockfiles, ready to be activated. Only keep one lockfile
4159 * open at a time to avoid running out of file descriptors.
4161 for (i
= 0; i
< n
; i
++) {
4162 struct ref_update
*update
= updates
[i
];
4164 if ((update
->flags
& REF_HAVE_NEW
) &&
4165 is_null_sha1(update
->new_sha1
))
4166 update
->flags
|= REF_DELETING
;
4167 update
->lock
= lock_ref_sha1_basic(
4169 ((update
->flags
& REF_HAVE_OLD
) ?
4170 update
->old_sha1
: NULL
),
4171 &affected_refnames
, NULL
,
4175 if (!update
->lock
) {
4178 ret
= (errno
== ENOTDIR
)
4179 ? TRANSACTION_NAME_CONFLICT
4180 : TRANSACTION_GENERIC_ERROR
;
4181 reason
= strbuf_detach(err
, NULL
);
4182 strbuf_addf(err
, "cannot lock ref '%s': %s",
4183 update
->refname
, reason
);
4187 if ((update
->flags
& REF_HAVE_NEW
) &&
4188 !(update
->flags
& REF_DELETING
)) {
4189 int overwriting_symref
= ((update
->type
& REF_ISSYMREF
) &&
4190 (update
->flags
& REF_NODEREF
));
4192 if (!overwriting_symref
&&
4193 !hashcmp(update
->lock
->old_oid
.hash
, update
->new_sha1
)) {
4195 * The reference already has the desired
4196 * value, so we don't need to write it.
4198 } else if (write_ref_to_lockfile(update
->lock
,
4201 char *write_err
= strbuf_detach(err
, NULL
);
4204 * The lock was freed upon failure of
4205 * write_ref_to_lockfile():
4207 update
->lock
= NULL
;
4209 "cannot update the ref '%s': %s",
4210 update
->refname
, write_err
);
4212 ret
= TRANSACTION_GENERIC_ERROR
;
4215 update
->flags
|= REF_NEEDS_COMMIT
;
4218 if (!(update
->flags
& REF_NEEDS_COMMIT
)) {
4220 * We didn't have to write anything to the lockfile.
4221 * Close it to free up the file descriptor:
4223 if (close_ref(update
->lock
)) {
4224 strbuf_addf(err
, "Couldn't close %s.lock",
4231 /* Perform updates first so live commits remain referenced */
4232 for (i
= 0; i
< n
; i
++) {
4233 struct ref_update
*update
= updates
[i
];
4235 if (update
->flags
& REF_NEEDS_COMMIT
) {
4236 if (commit_ref_update(update
->lock
,
4237 update
->new_sha1
, update
->msg
,
4238 update
->flags
, err
)) {
4239 /* freed by commit_ref_update(): */
4240 update
->lock
= NULL
;
4241 ret
= TRANSACTION_GENERIC_ERROR
;
4244 /* freed by commit_ref_update(): */
4245 update
->lock
= NULL
;
4250 /* Perform deletes now that updates are safely completed */
4251 for (i
= 0; i
< n
; i
++) {
4252 struct ref_update
*update
= updates
[i
];
4254 if (update
->flags
& REF_DELETING
) {
4255 if (delete_ref_loose(update
->lock
, update
->type
, err
)) {
4256 ret
= TRANSACTION_GENERIC_ERROR
;
4260 if (!(update
->flags
& REF_ISPRUNING
))
4261 string_list_append(&refs_to_delete
,
4262 update
->lock
->ref_name
);
4266 if (repack_without_refs(&refs_to_delete
, err
)) {
4267 ret
= TRANSACTION_GENERIC_ERROR
;
4270 for_each_string_list_item(ref_to_delete
, &refs_to_delete
)
4271 unlink_or_warn(git_path("logs/%s", ref_to_delete
->string
));
4272 clear_loose_ref_cache(&ref_cache
);
4275 transaction
->state
= REF_TRANSACTION_CLOSED
;
4277 for (i
= 0; i
< n
; i
++)
4278 if (updates
[i
]->lock
)
4279 unlock_ref(updates
[i
]->lock
);
4280 string_list_clear(&refs_to_delete
, 0);
4281 string_list_clear(&affected_refnames
, 0);
4285 static int ref_present(const char *refname
,
4286 const struct object_id
*oid
, int flags
, void *cb_data
)
4288 struct string_list
*affected_refnames
= cb_data
;
4290 return string_list_has_string(affected_refnames
, refname
);
4293 int initial_ref_transaction_commit(struct ref_transaction
*transaction
,
4296 struct ref_dir
*loose_refs
= get_loose_refs(&ref_cache
);
4297 struct ref_dir
*packed_refs
= get_packed_refs(&ref_cache
);
4299 int n
= transaction
->nr
;
4300 struct ref_update
**updates
= transaction
->updates
;
4301 struct string_list affected_refnames
= STRING_LIST_INIT_NODUP
;
4305 if (transaction
->state
!= REF_TRANSACTION_OPEN
)
4306 die("BUG: commit called for transaction that is not open");
4308 /* Fail if a refname appears more than once in the transaction: */
4309 for (i
= 0; i
< n
; i
++)
4310 string_list_append(&affected_refnames
, updates
[i
]->refname
);
4311 string_list_sort(&affected_refnames
);
4312 if (ref_update_reject_duplicates(&affected_refnames
, err
)) {
4313 ret
= TRANSACTION_GENERIC_ERROR
;
4318 * It's really undefined to call this function in an active
4319 * repository or when there are existing references: we are
4320 * only locking and changing packed-refs, so (1) any
4321 * simultaneous processes might try to change a reference at
4322 * the same time we do, and (2) any existing loose versions of
4323 * the references that we are setting would have precedence
4324 * over our values. But some remote helpers create the remote
4325 * "HEAD" and "master" branches before calling this function,
4326 * so here we really only check that none of the references
4327 * that we are creating already exists.
4329 if (for_each_rawref(ref_present
, &affected_refnames
))
4330 die("BUG: initial ref transaction called with existing refs");
4332 for (i
= 0; i
< n
; i
++) {
4333 struct ref_update
*update
= updates
[i
];
4335 if ((update
->flags
& REF_HAVE_OLD
) &&
4336 !is_null_sha1(update
->old_sha1
))
4337 die("BUG: initial ref transaction with old_sha1 set");
4338 if (verify_refname_available(update
->refname
,
4339 &affected_refnames
, NULL
,
4341 verify_refname_available(update
->refname
,
4342 &affected_refnames
, NULL
,
4343 packed_refs
, err
)) {
4344 ret
= TRANSACTION_NAME_CONFLICT
;
4349 if (lock_packed_refs(0)) {
4350 strbuf_addf(err
, "unable to lock packed-refs file: %s",
4352 ret
= TRANSACTION_GENERIC_ERROR
;
4356 for (i
= 0; i
< n
; i
++) {
4357 struct ref_update
*update
= updates
[i
];
4359 if ((update
->flags
& REF_HAVE_NEW
) &&
4360 !is_null_sha1(update
->new_sha1
))
4361 add_packed_ref(update
->refname
, update
->new_sha1
);
4364 if (commit_packed_refs()) {
4365 strbuf_addf(err
, "unable to commit packed-refs file: %s",
4367 ret
= TRANSACTION_GENERIC_ERROR
;
4372 transaction
->state
= REF_TRANSACTION_CLOSED
;
4373 string_list_clear(&affected_refnames
, 0);
4377 char *shorten_unambiguous_ref(const char *refname
, int strict
)
4380 static char **scanf_fmts
;
4381 static int nr_rules
;
4386 * Pre-generate scanf formats from ref_rev_parse_rules[].
4387 * Generate a format suitable for scanf from a
4388 * ref_rev_parse_rules rule by interpolating "%s" at the
4389 * location of the "%.*s".
4391 size_t total_len
= 0;
4394 /* the rule list is NULL terminated, count them first */
4395 for (nr_rules
= 0; ref_rev_parse_rules
[nr_rules
]; nr_rules
++)
4396 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
4397 total_len
+= strlen(ref_rev_parse_rules
[nr_rules
]) - 2 + 1;
4399 scanf_fmts
= xmalloc(nr_rules
* sizeof(char *) + total_len
);
4402 for (i
= 0; i
< nr_rules
; i
++) {
4403 assert(offset
< total_len
);
4404 scanf_fmts
[i
] = (char *)&scanf_fmts
[nr_rules
] + offset
;
4405 offset
+= snprintf(scanf_fmts
[i
], total_len
- offset
,
4406 ref_rev_parse_rules
[i
], 2, "%s") + 1;
4410 /* bail out if there are no rules */
4412 return xstrdup(refname
);
4414 /* buffer for scanf result, at most refname must fit */
4415 short_name
= xstrdup(refname
);
4417 /* skip first rule, it will always match */
4418 for (i
= nr_rules
- 1; i
> 0 ; --i
) {
4420 int rules_to_fail
= i
;
4423 if (1 != sscanf(refname
, scanf_fmts
[i
], short_name
))
4426 short_name_len
= strlen(short_name
);
4429 * in strict mode, all (except the matched one) rules
4430 * must fail to resolve to a valid non-ambiguous ref
4433 rules_to_fail
= nr_rules
;
4436 * check if the short name resolves to a valid ref,
4437 * but use only rules prior to the matched one
4439 for (j
= 0; j
< rules_to_fail
; j
++) {
4440 const char *rule
= ref_rev_parse_rules
[j
];
4441 char refname
[PATH_MAX
];
4443 /* skip matched rule */
4448 * the short name is ambiguous, if it resolves
4449 * (with this previous rule) to a valid ref
4450 * read_ref() returns 0 on success
4452 mksnpath(refname
, sizeof(refname
),
4453 rule
, short_name_len
, short_name
);
4454 if (ref_exists(refname
))
4459 * short name is non-ambiguous if all previous rules
4460 * haven't resolved to a valid ref
4462 if (j
== rules_to_fail
)
4467 return xstrdup(refname
);
4470 static struct string_list
*hide_refs
;
4472 int parse_hide_refs_config(const char *var
, const char *value
, const char *section
)
4474 if (!strcmp("transfer.hiderefs", var
) ||
4475 /* NEEDSWORK: use parse_config_key() once both are merged */
4476 (starts_with(var
, section
) && var
[strlen(section
)] == '.' &&
4477 !strcmp(var
+ strlen(section
), ".hiderefs"))) {
4482 return config_error_nonbool(var
);
4483 ref
= xstrdup(value
);
4485 while (len
&& ref
[len
- 1] == '/')
4488 hide_refs
= xcalloc(1, sizeof(*hide_refs
));
4489 hide_refs
->strdup_strings
= 1;
4491 string_list_append(hide_refs
, ref
);
4496 int ref_is_hidden(const char *refname
)
4502 for (i
= hide_refs
->nr
- 1; i
>= 0; i
--) {
4503 const char *match
= hide_refs
->items
[i
].string
;
4507 if (*match
== '!') {
4512 if (!starts_with(refname
, match
))
4514 len
= strlen(match
);
4515 if (!refname
[len
] || refname
[len
] == '/')
4521 struct expire_reflog_cb
{
4523 reflog_expiry_should_prune_fn
*should_prune_fn
;
4526 unsigned char last_kept_sha1
[20];
4529 static int expire_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
4530 const char *email
, unsigned long timestamp
, int tz
,
4531 const char *message
, void *cb_data
)
4533 struct expire_reflog_cb
*cb
= cb_data
;
4534 struct expire_reflog_policy_cb
*policy_cb
= cb
->policy_cb
;
4536 if (cb
->flags
& EXPIRE_REFLOGS_REWRITE
)
4537 osha1
= cb
->last_kept_sha1
;
4539 if ((*cb
->should_prune_fn
)(osha1
, nsha1
, email
, timestamp
, tz
,
4540 message
, policy_cb
)) {
4542 printf("would prune %s", message
);
4543 else if (cb
->flags
& EXPIRE_REFLOGS_VERBOSE
)
4544 printf("prune %s", message
);
4547 fprintf(cb
->newlog
, "%s %s %s %lu %+05d\t%s",
4548 sha1_to_hex(osha1
), sha1_to_hex(nsha1
),
4549 email
, timestamp
, tz
, message
);
4550 hashcpy(cb
->last_kept_sha1
, nsha1
);
4552 if (cb
->flags
& EXPIRE_REFLOGS_VERBOSE
)
4553 printf("keep %s", message
);
4558 int reflog_expire(const char *refname
, const unsigned char *sha1
,
4560 reflog_expiry_prepare_fn prepare_fn
,
4561 reflog_expiry_should_prune_fn should_prune_fn
,
4562 reflog_expiry_cleanup_fn cleanup_fn
,
4563 void *policy_cb_data
)
4565 static struct lock_file reflog_lock
;
4566 struct expire_reflog_cb cb
;
4567 struct ref_lock
*lock
;
4571 struct strbuf err
= STRBUF_INIT
;
4573 memset(&cb
, 0, sizeof(cb
));
4575 cb
.policy_cb
= policy_cb_data
;
4576 cb
.should_prune_fn
= should_prune_fn
;
4579 * The reflog file is locked by holding the lock on the
4580 * reference itself, plus we might need to update the
4581 * reference if --updateref was specified:
4583 lock
= lock_ref_sha1_basic(refname
, sha1
, NULL
, NULL
, 0, &type
, &err
);
4585 error("cannot lock ref '%s': %s", refname
, err
.buf
);
4586 strbuf_release(&err
);
4589 if (!reflog_exists(refname
)) {
4594 log_file
= git_pathdup("logs/%s", refname
);
4595 if (!(flags
& EXPIRE_REFLOGS_DRY_RUN
)) {
4597 * Even though holding $GIT_DIR/logs/$reflog.lock has
4598 * no locking implications, we use the lock_file
4599 * machinery here anyway because it does a lot of the
4600 * work we need, including cleaning up if the program
4601 * exits unexpectedly.
4603 if (hold_lock_file_for_update(&reflog_lock
, log_file
, 0) < 0) {
4604 struct strbuf err
= STRBUF_INIT
;
4605 unable_to_lock_message(log_file
, errno
, &err
);
4606 error("%s", err
.buf
);
4607 strbuf_release(&err
);
4610 cb
.newlog
= fdopen_lock_file(&reflog_lock
, "w");
4612 error("cannot fdopen %s (%s)",
4613 get_lock_file_path(&reflog_lock
), strerror(errno
));
4618 (*prepare_fn
)(refname
, sha1
, cb
.policy_cb
);
4619 for_each_reflog_ent(refname
, expire_reflog_ent
, &cb
);
4620 (*cleanup_fn
)(cb
.policy_cb
);
4622 if (!(flags
& EXPIRE_REFLOGS_DRY_RUN
)) {
4624 * It doesn't make sense to adjust a reference pointed
4625 * to by a symbolic ref based on expiring entries in
4626 * the symbolic reference's reflog. Nor can we update
4627 * a reference if there are no remaining reflog
4630 int update
= (flags
& EXPIRE_REFLOGS_UPDATE_REF
) &&
4631 !(type
& REF_ISSYMREF
) &&
4632 !is_null_sha1(cb
.last_kept_sha1
);
4634 if (close_lock_file(&reflog_lock
)) {
4635 status
|= error("couldn't write %s: %s", log_file
,
4637 } else if (update
&&
4638 (write_in_full(get_lock_file_fd(lock
->lk
),
4639 sha1_to_hex(cb
.last_kept_sha1
), 40) != 40 ||
4640 write_str_in_full(get_lock_file_fd(lock
->lk
), "\n") != 1 ||
4641 close_ref(lock
) < 0)) {
4642 status
|= error("couldn't write %s",
4643 get_lock_file_path(lock
->lk
));
4644 rollback_lock_file(&reflog_lock
);
4645 } else if (commit_lock_file(&reflog_lock
)) {
4646 status
|= error("unable to commit reflog '%s' (%s)",
4647 log_file
, strerror(errno
));
4648 } else if (update
&& commit_ref(lock
)) {
4649 status
|= error("couldn't set %s", lock
->ref_name
);
4657 rollback_lock_file(&reflog_lock
);