8 * Make sure "ref" is something reasonable to have under ".git/refs/";
9 * We do not like it if:
11 * - any path component of it begins with ".", or
12 * - it has double dots "..", or
13 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
14 * - it ends with a "/".
15 * - it ends with ".lock"
16 * - it contains a "\" (backslash)
19 /* Return true iff ch is not allowed in reference names. */
20 static inline int bad_ref_char(int ch
)
22 if (((unsigned) ch
) <= ' ' || ch
== 0x7f ||
23 ch
== '~' || ch
== '^' || ch
== ':' || ch
== '\\')
25 /* 2.13 Pattern Matching Notation */
26 if (ch
== '*' || ch
== '?' || ch
== '[') /* Unsupported */
32 * Try to read one refname component from the front of refname. Return
33 * the length of the component found, or -1 if the component is not
36 static int check_refname_component(const char *refname
, int flags
)
41 for (cp
= refname
; ; cp
++) {
43 if (ch
== '\0' || ch
== '/')
46 return -1; /* Illegal character in refname. */
47 if (last
== '.' && ch
== '.')
48 return -1; /* Refname contains "..". */
49 if (last
== '@' && ch
== '{')
50 return -1; /* Refname contains "@{". */
54 return 0; /* Component has zero length. */
55 if (refname
[0] == '.') {
56 if (!(flags
& REFNAME_DOT_COMPONENT
))
57 return -1; /* Component starts with '.'. */
59 * Even if leading dots are allowed, don't allow "."
60 * as a component (".." is prevented by a rule above).
62 if (refname
[1] == '\0')
63 return -1; /* Component equals ".". */
65 if (cp
- refname
>= 5 && !memcmp(cp
- 5, ".lock", 5))
66 return -1; /* Refname ends with ".lock". */
70 int check_refname_format(const char *refname
, int flags
)
72 int component_len
, component_count
= 0;
75 /* We are at the start of a path component. */
76 component_len
= check_refname_component(refname
, flags
);
77 if (component_len
<= 0) {
78 if ((flags
& REFNAME_REFSPEC_PATTERN
) &&
80 (refname
[1] == '\0' || refname
[1] == '/')) {
81 /* Accept one wildcard as a full refname component. */
82 flags
&= ~REFNAME_REFSPEC_PATTERN
;
89 if (refname
[component_len
] == '\0')
91 /* Skip to next component. */
92 refname
+= component_len
+ 1;
95 if (refname
[component_len
- 1] == '.')
96 return -1; /* Refname ends with '.'. */
97 if (!(flags
& REFNAME_ALLOW_ONELEVEL
) && component_count
< 2)
98 return -1; /* Refname has only one component. */
105 unsigned char sha1
[20];
106 unsigned char peeled
[20];
115 * Entries with index 0 <= i < sorted are sorted by name. New
116 * entries are appended to the list unsorted, and are sorted
117 * only when required; thus we avoid the need to sort the list
118 * after the addition of every reference.
122 /* A pointer to the ref_cache that contains this ref_dir. */
123 struct ref_cache
*ref_cache
;
125 struct ref_entry
**entries
;
128 /* ISSYMREF=0x01, ISPACKED=0x02, and ISBROKEN=0x04 are public interfaces */
129 #define REF_KNOWS_PEELED 0x08
133 * A ref_entry represents either a reference or a "subdirectory" of
134 * references. Each directory in the reference namespace is
135 * represented by a ref_entry with (flags & REF_DIR) set and
136 * containing a subdir member that holds the entries in that
137 * directory. References are represented by a ref_entry with (flags &
138 * REF_DIR) unset and a value member that describes the reference's
139 * value. The flag member is at the ref_entry level, but it is also
140 * needed to interpret the contents of the value field (in other
141 * words, a ref_value object is not very much use without the
142 * enclosing ref_entry).
144 * Reference names cannot end with slash and directories' names are
145 * always stored with a trailing slash (except for the top-level
146 * directory, which is always denoted by ""). This has two nice
147 * consequences: (1) when the entries in each subdir are sorted
148 * lexicographically by name (as they usually are), the references in
149 * a whole tree can be generated in lexicographic order by traversing
150 * the tree in left-to-right, depth-first order; (2) the names of
151 * references and subdirectories cannot conflict, and therefore the
152 * presence of an empty subdirectory does not block the creation of a
153 * similarly-named reference. (The fact that reference names with the
154 * same leading components can conflict *with each other* is a
155 * separate issue that is regulated by is_refname_available().)
157 * Please note that the name field contains the fully-qualified
158 * reference (or subdirectory) name. Space could be saved by only
159 * storing the relative names. But that would require the full names
160 * to be generated on the fly when iterating in do_for_each_ref(), and
161 * would break callback functions, who have always been able to assume
162 * that the name strings that they are passed will not be freed during
166 unsigned char flag
; /* ISSYMREF? ISPACKED? */
168 struct ref_value value
; /* if not (flags&REF_DIR) */
169 struct ref_dir subdir
; /* if (flags&REF_DIR) */
172 * The full name of the reference (e.g., "refs/heads/master")
173 * or the full name of the directory with a trailing slash
174 * (e.g., "refs/heads/"):
176 char name
[FLEX_ARRAY
];
179 static struct ref_dir
*get_ref_dir(struct ref_entry
*entry
)
181 assert(entry
->flag
& REF_DIR
);
182 return &entry
->u
.subdir
;
185 static struct ref_entry
*create_ref_entry(const char *refname
,
186 const unsigned char *sha1
, int flag
,
190 struct ref_entry
*ref
;
193 check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
|REFNAME_DOT_COMPONENT
))
194 die("Reference has invalid format: '%s'", refname
);
195 len
= strlen(refname
) + 1;
196 ref
= xmalloc(sizeof(struct ref_entry
) + len
);
197 hashcpy(ref
->u
.value
.sha1
, sha1
);
198 hashclr(ref
->u
.value
.peeled
);
199 memcpy(ref
->name
, refname
, len
);
204 static void clear_ref_dir(struct ref_dir
*dir
);
206 static void free_ref_entry(struct ref_entry
*entry
)
208 if (entry
->flag
& REF_DIR
)
209 clear_ref_dir(get_ref_dir(entry
));
214 * Add a ref_entry to the end of dir (unsorted). Entry is always
215 * stored directly in dir; no recursion into subdirectories is
218 static void add_entry_to_dir(struct ref_dir
*dir
, struct ref_entry
*entry
)
220 ALLOC_GROW(dir
->entries
, dir
->nr
+ 1, dir
->alloc
);
221 dir
->entries
[dir
->nr
++] = entry
;
225 * Clear and free all entries in dir, recursively.
227 static void clear_ref_dir(struct ref_dir
*dir
)
230 for (i
= 0; i
< dir
->nr
; i
++)
231 free_ref_entry(dir
->entries
[i
]);
233 dir
->sorted
= dir
->nr
= dir
->alloc
= 0;
238 * Create a struct ref_entry object for the specified dirname.
239 * dirname is the name of the directory with a trailing slash (e.g.,
240 * "refs/heads/") or "" for the top-level directory.
242 static struct ref_entry
*create_dir_entry(struct ref_cache
*ref_cache
,
245 struct ref_entry
*direntry
;
246 int len
= strlen(dirname
);
247 direntry
= xcalloc(1, sizeof(struct ref_entry
) + len
+ 1);
248 memcpy(direntry
->name
, dirname
, len
+ 1);
249 direntry
->u
.subdir
.ref_cache
= ref_cache
;
250 direntry
->flag
= REF_DIR
;
254 static int ref_entry_cmp(const void *a
, const void *b
)
256 struct ref_entry
*one
= *(struct ref_entry
**)a
;
257 struct ref_entry
*two
= *(struct ref_entry
**)b
;
258 return strcmp(one
->name
, two
->name
);
261 static void sort_ref_dir(struct ref_dir
*dir
);
264 * Return the entry with the given refname from the ref_dir
265 * (non-recursively), sorting dir if necessary. Return NULL if no
266 * such entry is found.
268 static struct ref_entry
*search_ref_dir(struct ref_dir
*dir
, const char *refname
)
270 struct ref_entry
*e
, **r
;
273 if (refname
== NULL
|| !dir
->nr
)
278 len
= strlen(refname
) + 1;
279 e
= xmalloc(sizeof(struct ref_entry
) + len
);
280 memcpy(e
->name
, refname
, len
);
282 r
= bsearch(&e
, dir
->entries
, dir
->nr
, sizeof(*dir
->entries
), ref_entry_cmp
);
293 * Search for a directory entry directly within dir (without
294 * recursing). Sort dir if necessary. subdirname must be a directory
295 * name (i.e., end in '/'). If mkdir is set, then create the
296 * directory if it is missing; otherwise, return NULL if the desired
297 * directory cannot be found.
299 static struct ref_dir
*search_for_subdir(struct ref_dir
*dir
,
300 const char *subdirname
, int mkdir
)
302 struct ref_entry
*entry
= search_ref_dir(dir
, subdirname
);
306 entry
= create_dir_entry(dir
->ref_cache
, subdirname
);
307 add_entry_to_dir(dir
, entry
);
309 return get_ref_dir(entry
);
313 * If refname is a reference name, find the ref_dir within the dir
314 * tree that should hold refname. If refname is a directory name
315 * (i.e., ends in '/'), then return that ref_dir itself. dir must
316 * represent the top-level directory. Sort ref_dirs and recurse into
317 * subdirectories as necessary. If mkdir is set, then create any
318 * missing directories; otherwise, return NULL if the desired
319 * directory cannot be found.
321 static struct ref_dir
*find_containing_dir(struct ref_dir
*dir
,
322 const char *refname
, int mkdir
)
324 struct strbuf dirname
;
326 strbuf_init(&dirname
, PATH_MAX
);
327 for (slash
= strchr(refname
, '/'); slash
; slash
= strchr(slash
+ 1, '/')) {
328 struct ref_dir
*subdir
;
330 refname
+ dirname
.len
,
331 (slash
+ 1) - (refname
+ dirname
.len
));
332 subdir
= search_for_subdir(dir
, dirname
.buf
, mkdir
);
338 strbuf_release(&dirname
);
343 * Find the value entry with the given name in dir, sorting ref_dirs
344 * and recursing into subdirectories as necessary. If the name is not
345 * found or it corresponds to a directory entry, return NULL.
347 static struct ref_entry
*find_ref(struct ref_dir
*dir
, const char *refname
)
349 struct ref_entry
*entry
;
350 dir
= find_containing_dir(dir
, refname
, 0);
353 entry
= search_ref_dir(dir
, refname
);
354 return (entry
&& !(entry
->flag
& REF_DIR
)) ? entry
: NULL
;
358 * Add a ref_entry to the ref_dir (unsorted), recursing into
359 * subdirectories as necessary. dir must represent the top-level
360 * directory. Return 0 on success.
362 static int add_ref(struct ref_dir
*dir
, struct ref_entry
*ref
)
364 dir
= find_containing_dir(dir
, ref
->name
, 1);
367 add_entry_to_dir(dir
, ref
);
372 * Emit a warning and return true iff ref1 and ref2 have the same name
373 * and the same sha1. Die if they have the same name but different
376 static int is_dup_ref(const struct ref_entry
*ref1
, const struct ref_entry
*ref2
)
378 if (strcmp(ref1
->name
, ref2
->name
))
381 /* Duplicate name; make sure that they don't conflict: */
383 if ((ref1
->flag
& REF_DIR
) || (ref2
->flag
& REF_DIR
))
384 /* This is impossible by construction */
385 die("Reference directory conflict: %s", ref1
->name
);
387 if (hashcmp(ref1
->u
.value
.sha1
, ref2
->u
.value
.sha1
))
388 die("Duplicated ref, and SHA1s don't match: %s", ref1
->name
);
390 warning("Duplicated ref: %s", ref1
->name
);
395 * Sort the entries in dir non-recursively (if they are not already
396 * sorted) and remove any duplicate entries.
398 static void sort_ref_dir(struct ref_dir
*dir
)
401 struct ref_entry
*last
= NULL
;
404 * This check also prevents passing a zero-length array to qsort(),
405 * which is a problem on some platforms.
407 if (dir
->sorted
== dir
->nr
)
410 qsort(dir
->entries
, dir
->nr
, sizeof(*dir
->entries
), ref_entry_cmp
);
412 /* Remove any duplicates: */
413 for (i
= 0, j
= 0; j
< dir
->nr
; j
++) {
414 struct ref_entry
*entry
= dir
->entries
[j
];
415 if (last
&& is_dup_ref(last
, entry
))
416 free_ref_entry(entry
);
418 last
= dir
->entries
[i
++] = entry
;
420 dir
->sorted
= dir
->nr
= i
;
423 #define DO_FOR_EACH_INCLUDE_BROKEN 01
425 static struct ref_entry
*current_ref
;
427 static int do_one_ref(const char *base
, each_ref_fn fn
, int trim
,
428 int flags
, void *cb_data
, struct ref_entry
*entry
)
431 if (prefixcmp(entry
->name
, base
))
434 if (!(flags
& DO_FOR_EACH_INCLUDE_BROKEN
)) {
435 if (entry
->flag
& REF_ISBROKEN
)
436 return 0; /* ignore broken refs e.g. dangling symref */
437 if (!has_sha1_file(entry
->u
.value
.sha1
)) {
438 error("%s does not point to a valid object!", entry
->name
);
443 retval
= fn(entry
->name
+ trim
, entry
->u
.value
.sha1
, entry
->flag
, cb_data
);
449 * Call fn for each reference in dir that has index in the range
450 * offset <= index < dir->nr. Recurse into subdirectories that are in
451 * that index range, sorting them before iterating. This function
452 * does not sort dir itself; it should be sorted beforehand.
454 static int do_for_each_ref_in_dir(struct ref_dir
*dir
, int offset
,
456 each_ref_fn fn
, int trim
, int flags
, void *cb_data
)
459 assert(dir
->sorted
== dir
->nr
);
460 for (i
= offset
; i
< dir
->nr
; i
++) {
461 struct ref_entry
*entry
= dir
->entries
[i
];
463 if (entry
->flag
& REF_DIR
) {
464 struct ref_dir
*subdir
= get_ref_dir(entry
);
465 sort_ref_dir(subdir
);
466 retval
= do_for_each_ref_in_dir(subdir
, 0,
467 base
, fn
, trim
, flags
, cb_data
);
469 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, entry
);
478 * Call fn for each reference in the union of dir1 and dir2, in order
479 * by refname. Recurse into subdirectories. If a value entry appears
480 * in both dir1 and dir2, then only process the version that is in
481 * dir2. The input dirs must already be sorted, but subdirs will be
484 static int do_for_each_ref_in_dirs(struct ref_dir
*dir1
,
485 struct ref_dir
*dir2
,
486 const char *base
, each_ref_fn fn
, int trim
,
487 int flags
, void *cb_data
)
492 assert(dir1
->sorted
== dir1
->nr
);
493 assert(dir2
->sorted
== dir2
->nr
);
495 struct ref_entry
*e1
, *e2
;
497 if (i1
== dir1
->nr
) {
498 return do_for_each_ref_in_dir(dir2
, i2
,
499 base
, fn
, trim
, flags
, cb_data
);
501 if (i2
== dir2
->nr
) {
502 return do_for_each_ref_in_dir(dir1
, i1
,
503 base
, fn
, trim
, flags
, cb_data
);
505 e1
= dir1
->entries
[i1
];
506 e2
= dir2
->entries
[i2
];
507 cmp
= strcmp(e1
->name
, e2
->name
);
509 if ((e1
->flag
& REF_DIR
) && (e2
->flag
& REF_DIR
)) {
510 /* Both are directories; descend them in parallel. */
511 struct ref_dir
*subdir1
= get_ref_dir(e1
);
512 struct ref_dir
*subdir2
= get_ref_dir(e2
);
513 sort_ref_dir(subdir1
);
514 sort_ref_dir(subdir2
);
515 retval
= do_for_each_ref_in_dirs(
517 base
, fn
, trim
, flags
, cb_data
);
520 } else if (!(e1
->flag
& REF_DIR
) && !(e2
->flag
& REF_DIR
)) {
521 /* Both are references; ignore the one from dir1. */
522 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, e2
);
526 die("conflict between reference and directory: %s",
538 if (e
->flag
& REF_DIR
) {
539 struct ref_dir
*subdir
= get_ref_dir(e
);
540 sort_ref_dir(subdir
);
541 retval
= do_for_each_ref_in_dir(
543 base
, fn
, trim
, flags
, cb_data
);
545 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, e
);
552 return do_for_each_ref_in_dir(dir1
, i1
,
553 base
, fn
, trim
, flags
, cb_data
);
555 return do_for_each_ref_in_dir(dir2
, i2
,
556 base
, fn
, trim
, flags
, cb_data
);
561 * Return true iff refname1 and refname2 conflict with each other.
562 * Two reference names conflict if one of them exactly matches the
563 * leading components of the other; e.g., "foo/bar" conflicts with
564 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or
567 static int names_conflict(const char *refname1
, const char *refname2
)
569 for (; *refname1
&& *refname1
== *refname2
; refname1
++, refname2
++)
571 return (*refname1
== '\0' && *refname2
== '/')
572 || (*refname1
== '/' && *refname2
== '\0');
575 struct name_conflict_cb
{
577 const char *oldrefname
;
578 const char *conflicting_refname
;
581 static int name_conflict_fn(const char *existingrefname
, const unsigned char *sha1
,
582 int flags
, void *cb_data
)
584 struct name_conflict_cb
*data
= (struct name_conflict_cb
*)cb_data
;
585 if (data
->oldrefname
&& !strcmp(data
->oldrefname
, existingrefname
))
587 if (names_conflict(data
->refname
, existingrefname
)) {
588 data
->conflicting_refname
= existingrefname
;
595 * Return true iff a reference named refname could be created without
596 * conflicting with the name of an existing reference in array. If
597 * oldrefname is non-NULL, ignore potential conflicts with oldrefname
598 * (e.g., because oldrefname is scheduled for deletion in the same
601 static int is_refname_available(const char *refname
, const char *oldrefname
,
604 struct name_conflict_cb data
;
605 data
.refname
= refname
;
606 data
.oldrefname
= oldrefname
;
607 data
.conflicting_refname
= NULL
;
610 if (do_for_each_ref_in_dir(dir
, 0, "", name_conflict_fn
,
611 0, DO_FOR_EACH_INCLUDE_BROKEN
,
613 error("'%s' exists; cannot create '%s'",
614 data
.conflicting_refname
, refname
);
621 * Future: need to be in "struct repository"
622 * when doing a full libification.
624 static struct ref_cache
{
625 struct ref_cache
*next
;
626 struct ref_entry
*loose
;
627 struct ref_entry
*packed
;
628 /* The submodule name, or "" for the main repo. */
629 char name
[FLEX_ARRAY
];
632 static void clear_packed_ref_cache(struct ref_cache
*refs
)
635 free_ref_entry(refs
->packed
);
640 static void clear_loose_ref_cache(struct ref_cache
*refs
)
643 free_ref_entry(refs
->loose
);
648 static struct ref_cache
*create_ref_cache(const char *submodule
)
651 struct ref_cache
*refs
;
654 len
= strlen(submodule
) + 1;
655 refs
= xcalloc(1, sizeof(struct ref_cache
) + len
);
656 memcpy(refs
->name
, submodule
, len
);
661 * Return a pointer to a ref_cache for the specified submodule. For
662 * the main repository, use submodule==NULL. The returned structure
663 * will be allocated and initialized but not necessarily populated; it
664 * should not be freed.
666 static struct ref_cache
*get_ref_cache(const char *submodule
)
668 struct ref_cache
*refs
= ref_cache
;
672 if (!strcmp(submodule
, refs
->name
))
677 refs
= create_ref_cache(submodule
);
678 refs
->next
= ref_cache
;
683 void invalidate_ref_cache(const char *submodule
)
685 struct ref_cache
*refs
= get_ref_cache(submodule
);
686 clear_packed_ref_cache(refs
);
687 clear_loose_ref_cache(refs
);
691 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
692 * Return a pointer to the refname within the line (null-terminated),
693 * or NULL if there was a problem.
695 static const char *parse_ref_line(char *line
, unsigned char *sha1
)
698 * 42: the answer to everything.
700 * In this case, it happens to be the answer to
701 * 40 (length of sha1 hex representation)
702 * +1 (space in between hex and name)
703 * +1 (newline at the end of the line)
705 int len
= strlen(line
) - 42;
709 if (get_sha1_hex(line
, sha1
) < 0)
711 if (!isspace(line
[40]))
716 if (line
[len
] != '\n')
723 static void read_packed_refs(FILE *f
, struct ref_dir
*dir
)
725 struct ref_entry
*last
= NULL
;
726 char refline
[PATH_MAX
];
727 int flag
= REF_ISPACKED
;
729 while (fgets(refline
, sizeof(refline
), f
)) {
730 unsigned char sha1
[20];
732 static const char header
[] = "# pack-refs with:";
734 if (!strncmp(refline
, header
, sizeof(header
)-1)) {
735 const char *traits
= refline
+ sizeof(header
) - 1;
736 if (strstr(traits
, " peeled "))
737 flag
|= REF_KNOWS_PEELED
;
738 /* perhaps other traits later as well */
742 refname
= parse_ref_line(refline
, sha1
);
744 last
= create_ref_entry(refname
, sha1
, flag
, 1);
750 strlen(refline
) == 42 &&
751 refline
[41] == '\n' &&
752 !get_sha1_hex(refline
+ 1, sha1
))
753 hashcpy(last
->u
.value
.peeled
, sha1
);
757 static struct ref_dir
*get_packed_refs(struct ref_cache
*refs
)
760 const char *packed_refs_file
;
763 refs
->packed
= create_dir_entry(refs
, "");
765 packed_refs_file
= git_path_submodule(refs
->name
, "packed-refs");
767 packed_refs_file
= git_path("packed-refs");
768 f
= fopen(packed_refs_file
, "r");
770 read_packed_refs(f
, get_ref_dir(refs
->packed
));
774 return get_ref_dir(refs
->packed
);
777 void add_packed_ref(const char *refname
, const unsigned char *sha1
)
779 add_ref(get_packed_refs(get_ref_cache(NULL
)),
780 create_ref_entry(refname
, sha1
, REF_ISPACKED
, 1));
784 * Read the loose references for refs from the namespace dirname.
785 * dirname must end with '/'. dir must be the directory entry
786 * corresponding to dirname.
788 static void read_loose_refs(const char *dirname
, struct ref_dir
*dir
)
790 struct ref_cache
*refs
= dir
->ref_cache
;
794 int dirnamelen
= strlen(dirname
);
795 struct strbuf refname
;
798 path
= git_path_submodule(refs
->name
, "%s", dirname
);
800 path
= git_path("%s", dirname
);
806 strbuf_init(&refname
, dirnamelen
+ 257);
807 strbuf_add(&refname
, dirname
, dirnamelen
);
809 while ((de
= readdir(d
)) != NULL
) {
810 unsigned char sha1
[20];
815 if (de
->d_name
[0] == '.')
817 if (has_extension(de
->d_name
, ".lock"))
819 strbuf_addstr(&refname
, de
->d_name
);
821 ? git_path_submodule(refs
->name
, "%s", refname
.buf
)
822 : git_path("%s", refname
.buf
);
823 if (stat(refdir
, &st
) < 0) {
824 ; /* silently ignore */
825 } else if (S_ISDIR(st
.st_mode
)) {
826 strbuf_addch(&refname
, '/');
827 read_loose_refs(refname
.buf
,
828 search_for_subdir(dir
, refname
.buf
, 1));
833 if (resolve_gitlink_ref(refs
->name
, refname
.buf
, sha1
) < 0) {
835 flag
|= REF_ISBROKEN
;
837 } else if (read_ref_full(refname
.buf
, sha1
, 1, &flag
)) {
839 flag
|= REF_ISBROKEN
;
841 add_entry_to_dir(dir
,
842 create_ref_entry(refname
.buf
, sha1
, flag
, 1));
844 strbuf_setlen(&refname
, dirnamelen
);
846 strbuf_release(&refname
);
850 static struct ref_dir
*get_loose_refs(struct ref_cache
*refs
)
853 refs
->loose
= create_dir_entry(refs
, "");
854 read_loose_refs("refs/",
855 search_for_subdir(get_ref_dir(refs
->loose
),
858 return get_ref_dir(refs
->loose
);
861 /* We allow "recursive" symbolic refs. Only within reason, though */
863 #define MAXREFLEN (1024)
866 * Called by resolve_gitlink_ref_recursive() after it failed to read
867 * from the loose refs in ref_cache refs. Find <refname> in the
868 * packed-refs file for the submodule.
870 static int resolve_gitlink_packed_ref(struct ref_cache
*refs
,
871 const char *refname
, unsigned char *sha1
)
873 struct ref_entry
*ref
;
874 struct ref_dir
*dir
= get_packed_refs(refs
);
876 ref
= find_ref(dir
, refname
);
880 memcpy(sha1
, ref
->u
.value
.sha1
, 20);
884 static int resolve_gitlink_ref_recursive(struct ref_cache
*refs
,
885 const char *refname
, unsigned char *sha1
,
889 char buffer
[128], *p
;
892 if (recursion
> MAXDEPTH
|| strlen(refname
) > MAXREFLEN
)
895 ? git_path_submodule(refs
->name
, "%s", refname
)
896 : git_path("%s", refname
);
897 fd
= open(path
, O_RDONLY
);
899 return resolve_gitlink_packed_ref(refs
, refname
, sha1
);
901 len
= read(fd
, buffer
, sizeof(buffer
)-1);
905 while (len
&& isspace(buffer
[len
-1]))
909 /* Was it a detached head or an old-fashioned symlink? */
910 if (!get_sha1_hex(buffer
, sha1
))
914 if (strncmp(buffer
, "ref:", 4))
920 return resolve_gitlink_ref_recursive(refs
, p
, sha1
, recursion
+1);
923 int resolve_gitlink_ref(const char *path
, const char *refname
, unsigned char *sha1
)
925 int len
= strlen(path
), retval
;
927 struct ref_cache
*refs
;
929 while (len
&& path
[len
-1] == '/')
933 submodule
= xstrndup(path
, len
);
934 refs
= get_ref_cache(submodule
);
937 retval
= resolve_gitlink_ref_recursive(refs
, refname
, sha1
, 0);
942 * Try to read ref from the packed references. On success, set sha1
943 * and return 0; otherwise, return -1.
945 static int get_packed_ref(const char *refname
, unsigned char *sha1
)
947 struct ref_dir
*packed
= get_packed_refs(get_ref_cache(NULL
));
948 struct ref_entry
*entry
= find_ref(packed
, refname
);
950 hashcpy(sha1
, entry
->u
.value
.sha1
);
956 const char *resolve_ref_unsafe(const char *refname
, unsigned char *sha1
, int reading
, int *flag
)
958 int depth
= MAXDEPTH
;
961 static char refname_buffer
[256];
966 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
))
978 git_snpath(path
, sizeof(path
), "%s", refname
);
980 if (lstat(path
, &st
) < 0) {
984 * The loose reference file does not exist;
985 * check for a packed reference.
987 if (!get_packed_ref(refname
, sha1
)) {
989 *flag
|= REF_ISPACKED
;
992 /* The reference is not a packed reference, either. */
1001 /* Follow "normalized" - ie "refs/.." symlinks by hand */
1002 if (S_ISLNK(st
.st_mode
)) {
1003 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
1007 if (!prefixcmp(buffer
, "refs/") &&
1008 !check_refname_format(buffer
, 0)) {
1009 strcpy(refname_buffer
, buffer
);
1010 refname
= refname_buffer
;
1012 *flag
|= REF_ISSYMREF
;
1017 /* Is it a directory? */
1018 if (S_ISDIR(st
.st_mode
)) {
1024 * Anything else, just open it and try to use it as
1027 fd
= open(path
, O_RDONLY
);
1030 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
1034 while (len
&& isspace(buffer
[len
-1]))
1039 * Is it a symbolic ref?
1041 if (prefixcmp(buffer
, "ref:"))
1044 *flag
|= REF_ISSYMREF
;
1046 while (isspace(*buf
))
1048 if (check_refname_format(buf
, REFNAME_ALLOW_ONELEVEL
)) {
1050 *flag
|= REF_ISBROKEN
;
1053 refname
= strcpy(refname_buffer
, buf
);
1055 /* Please note that FETCH_HEAD has a second line containing other data. */
1056 if (get_sha1_hex(buffer
, sha1
) || (buffer
[40] != '\0' && !isspace(buffer
[40]))) {
1058 *flag
|= REF_ISBROKEN
;
1064 char *resolve_refdup(const char *ref
, unsigned char *sha1
, int reading
, int *flag
)
1066 const char *ret
= resolve_ref_unsafe(ref
, sha1
, reading
, flag
);
1067 return ret
? xstrdup(ret
) : NULL
;
1070 /* The argument to filter_refs */
1072 const char *pattern
;
1077 int read_ref_full(const char *refname
, unsigned char *sha1
, int reading
, int *flags
)
1079 if (resolve_ref_unsafe(refname
, sha1
, reading
, flags
))
1084 int read_ref(const char *refname
, unsigned char *sha1
)
1086 return read_ref_full(refname
, sha1
, 1, NULL
);
1089 int ref_exists(const char *refname
)
1091 unsigned char sha1
[20];
1092 return !!resolve_ref_unsafe(refname
, sha1
, 1, NULL
);
1095 static int filter_refs(const char *refname
, const unsigned char *sha1
, int flags
,
1098 struct ref_filter
*filter
= (struct ref_filter
*)data
;
1099 if (fnmatch(filter
->pattern
, refname
, 0))
1101 return filter
->fn(refname
, sha1
, flags
, filter
->cb_data
);
1104 int peel_ref(const char *refname
, unsigned char *sha1
)
1107 unsigned char base
[20];
1110 if (current_ref
&& (current_ref
->name
== refname
1111 || !strcmp(current_ref
->name
, refname
))) {
1112 if (current_ref
->flag
& REF_KNOWS_PEELED
) {
1113 hashcpy(sha1
, current_ref
->u
.value
.peeled
);
1116 hashcpy(base
, current_ref
->u
.value
.sha1
);
1120 if (read_ref_full(refname
, base
, 1, &flag
))
1123 if ((flag
& REF_ISPACKED
)) {
1124 struct ref_dir
*dir
= get_packed_refs(get_ref_cache(NULL
));
1125 struct ref_entry
*r
= find_ref(dir
, refname
);
1127 if (r
!= NULL
&& r
->flag
& REF_KNOWS_PEELED
) {
1128 hashcpy(sha1
, r
->u
.value
.peeled
);
1134 o
= parse_object(base
);
1135 if (o
&& o
->type
== OBJ_TAG
) {
1136 o
= deref_tag(o
, refname
, 0);
1138 hashcpy(sha1
, o
->sha1
);
1145 struct warn_if_dangling_data
{
1147 const char *refname
;
1148 const char *msg_fmt
;
1151 static int warn_if_dangling_symref(const char *refname
, const unsigned char *sha1
,
1152 int flags
, void *cb_data
)
1154 struct warn_if_dangling_data
*d
= cb_data
;
1155 const char *resolves_to
;
1156 unsigned char junk
[20];
1158 if (!(flags
& REF_ISSYMREF
))
1161 resolves_to
= resolve_ref_unsafe(refname
, junk
, 0, NULL
);
1162 if (!resolves_to
|| strcmp(resolves_to
, d
->refname
))
1165 fprintf(d
->fp
, d
->msg_fmt
, refname
);
1169 void warn_dangling_symref(FILE *fp
, const char *msg_fmt
, const char *refname
)
1171 struct warn_if_dangling_data data
;
1174 data
.refname
= refname
;
1175 data
.msg_fmt
= msg_fmt
;
1176 for_each_rawref(warn_if_dangling_symref
, &data
);
1179 static int do_for_each_ref(const char *submodule
, const char *base
, each_ref_fn fn
,
1180 int trim
, int flags
, void *cb_data
)
1182 struct ref_cache
*refs
= get_ref_cache(submodule
);
1183 struct ref_dir
*packed_dir
= get_packed_refs(refs
);
1184 struct ref_dir
*loose_dir
= get_loose_refs(refs
);
1187 if (base
&& *base
) {
1188 packed_dir
= find_containing_dir(packed_dir
, base
, 0);
1189 loose_dir
= find_containing_dir(loose_dir
, base
, 0);
1192 if (packed_dir
&& loose_dir
) {
1193 sort_ref_dir(packed_dir
);
1194 sort_ref_dir(loose_dir
);
1195 retval
= do_for_each_ref_in_dirs(
1196 packed_dir
, loose_dir
,
1197 base
, fn
, trim
, flags
, cb_data
);
1198 } else if (packed_dir
) {
1199 sort_ref_dir(packed_dir
);
1200 retval
= do_for_each_ref_in_dir(
1202 base
, fn
, trim
, flags
, cb_data
);
1203 } else if (loose_dir
) {
1204 sort_ref_dir(loose_dir
);
1205 retval
= do_for_each_ref_in_dir(
1207 base
, fn
, trim
, flags
, cb_data
);
1213 static int do_head_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1215 unsigned char sha1
[20];
1219 if (resolve_gitlink_ref(submodule
, "HEAD", sha1
) == 0)
1220 return fn("HEAD", sha1
, 0, cb_data
);
1225 if (!read_ref_full("HEAD", sha1
, 1, &flag
))
1226 return fn("HEAD", sha1
, flag
, cb_data
);
1231 int head_ref(each_ref_fn fn
, void *cb_data
)
1233 return do_head_ref(NULL
, fn
, cb_data
);
1236 int head_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1238 return do_head_ref(submodule
, fn
, cb_data
);
1241 int for_each_ref(each_ref_fn fn
, void *cb_data
)
1243 return do_for_each_ref(NULL
, "", fn
, 0, 0, cb_data
);
1246 int for_each_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1248 return do_for_each_ref(submodule
, "", fn
, 0, 0, cb_data
);
1251 int for_each_ref_in(const char *prefix
, each_ref_fn fn
, void *cb_data
)
1253 return do_for_each_ref(NULL
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
1256 int for_each_ref_in_submodule(const char *submodule
, const char *prefix
,
1257 each_ref_fn fn
, void *cb_data
)
1259 return do_for_each_ref(submodule
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
1262 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
1264 return for_each_ref_in("refs/tags/", fn
, cb_data
);
1267 int for_each_tag_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1269 return for_each_ref_in_submodule(submodule
, "refs/tags/", fn
, cb_data
);
1272 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
1274 return for_each_ref_in("refs/heads/", fn
, cb_data
);
1277 int for_each_branch_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1279 return for_each_ref_in_submodule(submodule
, "refs/heads/", fn
, cb_data
);
1282 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
1284 return for_each_ref_in("refs/remotes/", fn
, cb_data
);
1287 int for_each_remote_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1289 return for_each_ref_in_submodule(submodule
, "refs/remotes/", fn
, cb_data
);
1292 int for_each_replace_ref(each_ref_fn fn
, void *cb_data
)
1294 return do_for_each_ref(NULL
, "refs/replace/", fn
, 13, 0, cb_data
);
1297 int head_ref_namespaced(each_ref_fn fn
, void *cb_data
)
1299 struct strbuf buf
= STRBUF_INIT
;
1301 unsigned char sha1
[20];
1304 strbuf_addf(&buf
, "%sHEAD", get_git_namespace());
1305 if (!read_ref_full(buf
.buf
, sha1
, 1, &flag
))
1306 ret
= fn(buf
.buf
, sha1
, flag
, cb_data
);
1307 strbuf_release(&buf
);
1312 int for_each_namespaced_ref(each_ref_fn fn
, void *cb_data
)
1314 struct strbuf buf
= STRBUF_INIT
;
1316 strbuf_addf(&buf
, "%srefs/", get_git_namespace());
1317 ret
= do_for_each_ref(NULL
, buf
.buf
, fn
, 0, 0, cb_data
);
1318 strbuf_release(&buf
);
1322 int for_each_glob_ref_in(each_ref_fn fn
, const char *pattern
,
1323 const char *prefix
, void *cb_data
)
1325 struct strbuf real_pattern
= STRBUF_INIT
;
1326 struct ref_filter filter
;
1329 if (!prefix
&& prefixcmp(pattern
, "refs/"))
1330 strbuf_addstr(&real_pattern
, "refs/");
1332 strbuf_addstr(&real_pattern
, prefix
);
1333 strbuf_addstr(&real_pattern
, pattern
);
1335 if (!has_glob_specials(pattern
)) {
1336 /* Append implied '/' '*' if not present. */
1337 if (real_pattern
.buf
[real_pattern
.len
- 1] != '/')
1338 strbuf_addch(&real_pattern
, '/');
1339 /* No need to check for '*', there is none. */
1340 strbuf_addch(&real_pattern
, '*');
1343 filter
.pattern
= real_pattern
.buf
;
1345 filter
.cb_data
= cb_data
;
1346 ret
= for_each_ref(filter_refs
, &filter
);
1348 strbuf_release(&real_pattern
);
1352 int for_each_glob_ref(each_ref_fn fn
, const char *pattern
, void *cb_data
)
1354 return for_each_glob_ref_in(fn
, pattern
, NULL
, cb_data
);
1357 int for_each_rawref(each_ref_fn fn
, void *cb_data
)
1359 return do_for_each_ref(NULL
, "", fn
, 0,
1360 DO_FOR_EACH_INCLUDE_BROKEN
, cb_data
);
1363 const char *prettify_refname(const char *name
)
1366 !prefixcmp(name
, "refs/heads/") ? 11 :
1367 !prefixcmp(name
, "refs/tags/") ? 10 :
1368 !prefixcmp(name
, "refs/remotes/") ? 13 :
1372 const char *ref_rev_parse_rules
[] = {
1377 "refs/remotes/%.*s",
1378 "refs/remotes/%.*s/HEAD",
1382 int refname_match(const char *abbrev_name
, const char *full_name
, const char **rules
)
1385 const int abbrev_name_len
= strlen(abbrev_name
);
1387 for (p
= rules
; *p
; p
++) {
1388 if (!strcmp(full_name
, mkpath(*p
, abbrev_name_len
, abbrev_name
))) {
1396 static struct ref_lock
*verify_lock(struct ref_lock
*lock
,
1397 const unsigned char *old_sha1
, int mustexist
)
1399 if (read_ref_full(lock
->ref_name
, lock
->old_sha1
, mustexist
, NULL
)) {
1400 error("Can't verify ref %s", lock
->ref_name
);
1404 if (hashcmp(lock
->old_sha1
, old_sha1
)) {
1405 error("Ref %s is at %s but expected %s", lock
->ref_name
,
1406 sha1_to_hex(lock
->old_sha1
), sha1_to_hex(old_sha1
));
1413 static int remove_empty_directories(const char *file
)
1415 /* we want to create a file but there is a directory there;
1416 * if that is an empty directory (or a directory that contains
1417 * only empty directories), remove them.
1422 strbuf_init(&path
, 20);
1423 strbuf_addstr(&path
, file
);
1425 result
= remove_dir_recursively(&path
, REMOVE_DIR_EMPTY_ONLY
);
1427 strbuf_release(&path
);
1433 * *string and *len will only be substituted, and *string returned (for
1434 * later free()ing) if the string passed in is a magic short-hand form
1437 static char *substitute_branch_name(const char **string
, int *len
)
1439 struct strbuf buf
= STRBUF_INIT
;
1440 int ret
= interpret_branch_name(*string
, &buf
);
1444 *string
= strbuf_detach(&buf
, &size
);
1446 return (char *)*string
;
1452 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
1454 char *last_branch
= substitute_branch_name(&str
, &len
);
1459 for (p
= ref_rev_parse_rules
; *p
; p
++) {
1460 char fullref
[PATH_MAX
];
1461 unsigned char sha1_from_ref
[20];
1462 unsigned char *this_result
;
1465 this_result
= refs_found
? sha1_from_ref
: sha1
;
1466 mksnpath(fullref
, sizeof(fullref
), *p
, len
, str
);
1467 r
= resolve_ref_unsafe(fullref
, this_result
, 1, &flag
);
1471 if (!warn_ambiguous_refs
)
1473 } else if ((flag
& REF_ISSYMREF
) && strcmp(fullref
, "HEAD")) {
1474 warning("ignoring dangling symref %s.", fullref
);
1475 } else if ((flag
& REF_ISBROKEN
) && strchr(fullref
, '/')) {
1476 warning("ignoring broken ref %s.", fullref
);
1483 int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
1485 char *last_branch
= substitute_branch_name(&str
, &len
);
1490 for (p
= ref_rev_parse_rules
; *p
; p
++) {
1492 unsigned char hash
[20];
1493 char path
[PATH_MAX
];
1494 const char *ref
, *it
;
1496 mksnpath(path
, sizeof(path
), *p
, len
, str
);
1497 ref
= resolve_ref_unsafe(path
, hash
, 1, NULL
);
1500 if (!stat(git_path("logs/%s", path
), &st
) &&
1501 S_ISREG(st
.st_mode
))
1503 else if (strcmp(ref
, path
) &&
1504 !stat(git_path("logs/%s", ref
), &st
) &&
1505 S_ISREG(st
.st_mode
))
1509 if (!logs_found
++) {
1511 hashcpy(sha1
, hash
);
1513 if (!warn_ambiguous_refs
)
1520 static struct ref_lock
*lock_ref_sha1_basic(const char *refname
,
1521 const unsigned char *old_sha1
,
1522 int flags
, int *type_p
)
1525 const char *orig_refname
= refname
;
1526 struct ref_lock
*lock
;
1529 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
1532 lock
= xcalloc(1, sizeof(struct ref_lock
));
1535 refname
= resolve_ref_unsafe(refname
, lock
->old_sha1
, mustexist
, &type
);
1536 if (!refname
&& errno
== EISDIR
) {
1537 /* we are trying to lock foo but we used to
1538 * have foo/bar which now does not exist;
1539 * it is normal for the empty directory 'foo'
1542 ref_file
= git_path("%s", orig_refname
);
1543 if (remove_empty_directories(ref_file
)) {
1545 error("there are still refs under '%s'", orig_refname
);
1548 refname
= resolve_ref_unsafe(orig_refname
, lock
->old_sha1
, mustexist
, &type
);
1554 error("unable to resolve reference %s: %s",
1555 orig_refname
, strerror(errno
));
1558 missing
= is_null_sha1(lock
->old_sha1
);
1559 /* When the ref did not exist and we are creating it,
1560 * make sure there is no existing ref that is packed
1561 * whose name begins with our refname, nor a ref whose
1562 * name is a proper prefix of our refname.
1565 !is_refname_available(refname
, NULL
, get_packed_refs(get_ref_cache(NULL
)))) {
1566 last_errno
= ENOTDIR
;
1570 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
1572 lflags
= LOCK_DIE_ON_ERROR
;
1573 if (flags
& REF_NODEREF
) {
1574 refname
= orig_refname
;
1575 lflags
|= LOCK_NODEREF
;
1577 lock
->ref_name
= xstrdup(refname
);
1578 lock
->orig_ref_name
= xstrdup(orig_refname
);
1579 ref_file
= git_path("%s", refname
);
1581 lock
->force_write
= 1;
1582 if ((flags
& REF_NODEREF
) && (type
& REF_ISSYMREF
))
1583 lock
->force_write
= 1;
1585 if (safe_create_leading_directories(ref_file
)) {
1587 error("unable to create directory for %s", ref_file
);
1591 lock
->lock_fd
= hold_lock_file_for_update(lock
->lk
, ref_file
, lflags
);
1592 return old_sha1
? verify_lock(lock
, old_sha1
, mustexist
) : lock
;
1600 struct ref_lock
*lock_ref_sha1(const char *refname
, const unsigned char *old_sha1
)
1602 char refpath
[PATH_MAX
];
1603 if (check_refname_format(refname
, 0))
1605 strcpy(refpath
, mkpath("refs/%s", refname
));
1606 return lock_ref_sha1_basic(refpath
, old_sha1
, 0, NULL
);
1609 struct ref_lock
*lock_any_ref_for_update(const char *refname
,
1610 const unsigned char *old_sha1
, int flags
)
1612 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
))
1614 return lock_ref_sha1_basic(refname
, old_sha1
, flags
, NULL
);
1617 struct repack_without_ref_sb
{
1618 const char *refname
;
1622 static int repack_without_ref_fn(const char *refname
, const unsigned char *sha1
,
1623 int flags
, void *cb_data
)
1625 struct repack_without_ref_sb
*data
= cb_data
;
1626 char line
[PATH_MAX
+ 100];
1629 if (!strcmp(data
->refname
, refname
))
1631 len
= snprintf(line
, sizeof(line
), "%s %s\n",
1632 sha1_to_hex(sha1
), refname
);
1633 /* this should not happen but just being defensive */
1634 if (len
> sizeof(line
))
1635 die("too long a refname '%s'", refname
);
1636 write_or_die(data
->fd
, line
, len
);
1640 static struct lock_file packlock
;
1642 static int repack_without_ref(const char *refname
)
1644 struct repack_without_ref_sb data
;
1645 struct ref_dir
*packed
= get_packed_refs(get_ref_cache(NULL
));
1646 if (find_ref(packed
, refname
) == NULL
)
1648 data
.refname
= refname
;
1649 data
.fd
= hold_lock_file_for_update(&packlock
, git_path("packed-refs"), 0);
1651 unable_to_lock_error(git_path("packed-refs"), errno
);
1652 return error("cannot delete '%s' from packed refs", refname
);
1654 do_for_each_ref_in_dir(packed
, 0, "", repack_without_ref_fn
, 0, 0, &data
);
1655 return commit_lock_file(&packlock
);
1658 int delete_ref(const char *refname
, const unsigned char *sha1
, int delopt
)
1660 struct ref_lock
*lock
;
1661 int err
, i
= 0, ret
= 0, flag
= 0;
1663 lock
= lock_ref_sha1_basic(refname
, sha1
, 0, &flag
);
1666 if (!(flag
& REF_ISPACKED
) || flag
& REF_ISSYMREF
) {
1670 if (!(delopt
& REF_NODEREF
)) {
1671 i
= strlen(lock
->lk
->filename
) - 5; /* .lock */
1672 lock
->lk
->filename
[i
] = 0;
1673 path
= lock
->lk
->filename
;
1675 path
= git_path("%s", refname
);
1677 err
= unlink_or_warn(path
);
1678 if (err
&& errno
!= ENOENT
)
1681 if (!(delopt
& REF_NODEREF
))
1682 lock
->lk
->filename
[i
] = '.';
1684 /* removing the loose one could have resurrected an earlier
1685 * packed one. Also, if it was not loose we need to repack
1688 ret
|= repack_without_ref(refname
);
1690 unlink_or_warn(git_path("logs/%s", lock
->ref_name
));
1691 invalidate_ref_cache(NULL
);
1697 * People using contrib's git-new-workdir have .git/logs/refs ->
1698 * /some/other/path/.git/logs/refs, and that may live on another device.
1700 * IOW, to avoid cross device rename errors, the temporary renamed log must
1701 * live into logs/refs.
1703 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
1705 int rename_ref(const char *oldrefname
, const char *newrefname
, const char *logmsg
)
1707 unsigned char sha1
[20], orig_sha1
[20];
1708 int flag
= 0, logmoved
= 0;
1709 struct ref_lock
*lock
;
1710 struct stat loginfo
;
1711 int log
= !lstat(git_path("logs/%s", oldrefname
), &loginfo
);
1712 const char *symref
= NULL
;
1713 struct ref_cache
*refs
= get_ref_cache(NULL
);
1715 if (log
&& S_ISLNK(loginfo
.st_mode
))
1716 return error("reflog for %s is a symlink", oldrefname
);
1718 symref
= resolve_ref_unsafe(oldrefname
, orig_sha1
, 1, &flag
);
1719 if (flag
& REF_ISSYMREF
)
1720 return error("refname %s is a symbolic ref, renaming it is not supported",
1723 return error("refname %s not found", oldrefname
);
1725 if (!is_refname_available(newrefname
, oldrefname
, get_packed_refs(refs
)))
1728 if (!is_refname_available(newrefname
, oldrefname
, get_loose_refs(refs
)))
1731 if (log
&& rename(git_path("logs/%s", oldrefname
), git_path(TMP_RENAMED_LOG
)))
1732 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG
": %s",
1733 oldrefname
, strerror(errno
));
1735 if (delete_ref(oldrefname
, orig_sha1
, REF_NODEREF
)) {
1736 error("unable to delete old %s", oldrefname
);
1740 if (!read_ref_full(newrefname
, sha1
, 1, &flag
) &&
1741 delete_ref(newrefname
, sha1
, REF_NODEREF
)) {
1742 if (errno
==EISDIR
) {
1743 if (remove_empty_directories(git_path("%s", newrefname
))) {
1744 error("Directory not empty: %s", newrefname
);
1748 error("unable to delete existing %s", newrefname
);
1753 if (log
&& safe_create_leading_directories(git_path("logs/%s", newrefname
))) {
1754 error("unable to create directory for %s", newrefname
);
1759 if (log
&& rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", newrefname
))) {
1760 if (errno
==EISDIR
|| errno
==ENOTDIR
) {
1762 * rename(a, b) when b is an existing
1763 * directory ought to result in ISDIR, but
1764 * Solaris 5.8 gives ENOTDIR. Sheesh.
1766 if (remove_empty_directories(git_path("logs/%s", newrefname
))) {
1767 error("Directory not empty: logs/%s", newrefname
);
1772 error("unable to move logfile "TMP_RENAMED_LOG
" to logs/%s: %s",
1773 newrefname
, strerror(errno
));
1779 lock
= lock_ref_sha1_basic(newrefname
, NULL
, 0, NULL
);
1781 error("unable to lock %s for update", newrefname
);
1784 lock
->force_write
= 1;
1785 hashcpy(lock
->old_sha1
, orig_sha1
);
1786 if (write_ref_sha1(lock
, orig_sha1
, logmsg
)) {
1787 error("unable to write current sha1 into %s", newrefname
);
1794 lock
= lock_ref_sha1_basic(oldrefname
, NULL
, 0, NULL
);
1796 error("unable to lock %s for rollback", oldrefname
);
1800 lock
->force_write
= 1;
1801 flag
= log_all_ref_updates
;
1802 log_all_ref_updates
= 0;
1803 if (write_ref_sha1(lock
, orig_sha1
, NULL
))
1804 error("unable to write current sha1 into %s", oldrefname
);
1805 log_all_ref_updates
= flag
;
1808 if (logmoved
&& rename(git_path("logs/%s", newrefname
), git_path("logs/%s", oldrefname
)))
1809 error("unable to restore logfile %s from %s: %s",
1810 oldrefname
, newrefname
, strerror(errno
));
1811 if (!logmoved
&& log
&&
1812 rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", oldrefname
)))
1813 error("unable to restore logfile %s from "TMP_RENAMED_LOG
": %s",
1814 oldrefname
, strerror(errno
));
1819 int close_ref(struct ref_lock
*lock
)
1821 if (close_lock_file(lock
->lk
))
1827 int commit_ref(struct ref_lock
*lock
)
1829 if (commit_lock_file(lock
->lk
))
1835 void unlock_ref(struct ref_lock
*lock
)
1837 /* Do not free lock->lk -- atexit() still looks at them */
1839 rollback_lock_file(lock
->lk
);
1840 free(lock
->ref_name
);
1841 free(lock
->orig_ref_name
);
1846 * copy the reflog message msg to buf, which has been allocated sufficiently
1847 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1848 * because reflog file is one line per entry.
1850 static int copy_msg(char *buf
, const char *msg
)
1857 while ((c
= *msg
++)) {
1858 if (wasspace
&& isspace(c
))
1860 wasspace
= isspace(c
);
1865 while (buf
< cp
&& isspace(cp
[-1]))
1871 int log_ref_setup(const char *refname
, char *logfile
, int bufsize
)
1873 int logfd
, oflags
= O_APPEND
| O_WRONLY
;
1875 git_snpath(logfile
, bufsize
, "logs/%s", refname
);
1876 if (log_all_ref_updates
&&
1877 (!prefixcmp(refname
, "refs/heads/") ||
1878 !prefixcmp(refname
, "refs/remotes/") ||
1879 !prefixcmp(refname
, "refs/notes/") ||
1880 !strcmp(refname
, "HEAD"))) {
1881 if (safe_create_leading_directories(logfile
) < 0)
1882 return error("unable to create directory for %s",
1887 logfd
= open(logfile
, oflags
, 0666);
1889 if (!(oflags
& O_CREAT
) && errno
== ENOENT
)
1892 if ((oflags
& O_CREAT
) && errno
== EISDIR
) {
1893 if (remove_empty_directories(logfile
)) {
1894 return error("There are still logs under '%s'",
1897 logfd
= open(logfile
, oflags
, 0666);
1901 return error("Unable to append to %s: %s",
1902 logfile
, strerror(errno
));
1905 adjust_shared_perm(logfile
);
1910 static int log_ref_write(const char *refname
, const unsigned char *old_sha1
,
1911 const unsigned char *new_sha1
, const char *msg
)
1913 int logfd
, result
, written
, oflags
= O_APPEND
| O_WRONLY
;
1914 unsigned maxlen
, len
;
1916 char log_file
[PATH_MAX
];
1918 const char *committer
;
1920 if (log_all_ref_updates
< 0)
1921 log_all_ref_updates
= !is_bare_repository();
1923 result
= log_ref_setup(refname
, log_file
, sizeof(log_file
));
1927 logfd
= open(log_file
, oflags
);
1930 msglen
= msg
? strlen(msg
) : 0;
1931 committer
= git_committer_info(0);
1932 maxlen
= strlen(committer
) + msglen
+ 100;
1933 logrec
= xmalloc(maxlen
);
1934 len
= sprintf(logrec
, "%s %s %s\n",
1935 sha1_to_hex(old_sha1
),
1936 sha1_to_hex(new_sha1
),
1939 len
+= copy_msg(logrec
+ len
- 1, msg
) - 1;
1940 written
= len
<= maxlen
? write_in_full(logfd
, logrec
, len
) : -1;
1942 if (close(logfd
) != 0 || written
!= len
)
1943 return error("Unable to append to %s", log_file
);
1947 static int is_branch(const char *refname
)
1949 return !strcmp(refname
, "HEAD") || !prefixcmp(refname
, "refs/heads/");
1952 int write_ref_sha1(struct ref_lock
*lock
,
1953 const unsigned char *sha1
, const char *logmsg
)
1955 static char term
= '\n';
1960 if (!lock
->force_write
&& !hashcmp(lock
->old_sha1
, sha1
)) {
1964 o
= parse_object(sha1
);
1966 error("Trying to write ref %s with nonexistent object %s",
1967 lock
->ref_name
, sha1_to_hex(sha1
));
1971 if (o
->type
!= OBJ_COMMIT
&& is_branch(lock
->ref_name
)) {
1972 error("Trying to write non-commit object %s to branch %s",
1973 sha1_to_hex(sha1
), lock
->ref_name
);
1977 if (write_in_full(lock
->lock_fd
, sha1_to_hex(sha1
), 40) != 40 ||
1978 write_in_full(lock
->lock_fd
, &term
, 1) != 1
1979 || close_ref(lock
) < 0) {
1980 error("Couldn't write %s", lock
->lk
->filename
);
1984 clear_loose_ref_cache(get_ref_cache(NULL
));
1985 if (log_ref_write(lock
->ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0 ||
1986 (strcmp(lock
->ref_name
, lock
->orig_ref_name
) &&
1987 log_ref_write(lock
->orig_ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0)) {
1991 if (strcmp(lock
->orig_ref_name
, "HEAD") != 0) {
1993 * Special hack: If a branch is updated directly and HEAD
1994 * points to it (may happen on the remote side of a push
1995 * for example) then logically the HEAD reflog should be
1997 * A generic solution implies reverse symref information,
1998 * but finding all symrefs pointing to the given branch
1999 * would be rather costly for this rare event (the direct
2000 * update of a branch) to be worth it. So let's cheat and
2001 * check with HEAD only which should cover 99% of all usage
2002 * scenarios (even 100% of the default ones).
2004 unsigned char head_sha1
[20];
2006 const char *head_ref
;
2007 head_ref
= resolve_ref_unsafe("HEAD", head_sha1
, 1, &head_flag
);
2008 if (head_ref
&& (head_flag
& REF_ISSYMREF
) &&
2009 !strcmp(head_ref
, lock
->ref_name
))
2010 log_ref_write("HEAD", lock
->old_sha1
, sha1
, logmsg
);
2012 if (commit_ref(lock
)) {
2013 error("Couldn't set %s", lock
->ref_name
);
2021 int create_symref(const char *ref_target
, const char *refs_heads_master
,
2024 const char *lockpath
;
2026 int fd
, len
, written
;
2027 char *git_HEAD
= git_pathdup("%s", ref_target
);
2028 unsigned char old_sha1
[20], new_sha1
[20];
2030 if (logmsg
&& read_ref(ref_target
, old_sha1
))
2033 if (safe_create_leading_directories(git_HEAD
) < 0)
2034 return error("unable to create directory for %s", git_HEAD
);
2036 #ifndef NO_SYMLINK_HEAD
2037 if (prefer_symlink_refs
) {
2039 if (!symlink(refs_heads_master
, git_HEAD
))
2041 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
2045 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
2046 if (sizeof(ref
) <= len
) {
2047 error("refname too long: %s", refs_heads_master
);
2048 goto error_free_return
;
2050 lockpath
= mkpath("%s.lock", git_HEAD
);
2051 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
2053 error("Unable to open %s for writing", lockpath
);
2054 goto error_free_return
;
2056 written
= write_in_full(fd
, ref
, len
);
2057 if (close(fd
) != 0 || written
!= len
) {
2058 error("Unable to write to %s", lockpath
);
2059 goto error_unlink_return
;
2061 if (rename(lockpath
, git_HEAD
) < 0) {
2062 error("Unable to create %s", git_HEAD
);
2063 goto error_unlink_return
;
2065 if (adjust_shared_perm(git_HEAD
)) {
2066 error("Unable to fix permissions on %s", lockpath
);
2067 error_unlink_return
:
2068 unlink_or_warn(lockpath
);
2074 #ifndef NO_SYMLINK_HEAD
2077 if (logmsg
&& !read_ref(refs_heads_master
, new_sha1
))
2078 log_ref_write(ref_target
, old_sha1
, new_sha1
, logmsg
);
2084 static char *ref_msg(const char *line
, const char *endp
)
2088 ep
= memchr(line
, '\n', endp
- line
);
2091 return xmemdupz(line
, ep
- line
);
2094 int read_ref_at(const char *refname
, unsigned long at_time
, int cnt
,
2095 unsigned char *sha1
, char **msg
,
2096 unsigned long *cutoff_time
, int *cutoff_tz
, int *cutoff_cnt
)
2098 const char *logfile
, *logdata
, *logend
, *rec
, *lastgt
, *lastrec
;
2100 int logfd
, tz
, reccnt
= 0;
2103 unsigned char logged_sha1
[20];
2107 logfile
= git_path("logs/%s", refname
);
2108 logfd
= open(logfile
, O_RDONLY
, 0);
2110 die_errno("Unable to read log '%s'", logfile
);
2113 die("Log %s is empty.", logfile
);
2114 mapsz
= xsize_t(st
.st_size
);
2115 log_mapped
= xmmap(NULL
, mapsz
, PROT_READ
, MAP_PRIVATE
, logfd
, 0);
2116 logdata
= log_mapped
;
2120 rec
= logend
= logdata
+ st
.st_size
;
2121 while (logdata
< rec
) {
2123 if (logdata
< rec
&& *(rec
-1) == '\n')
2126 while (logdata
< rec
&& *(rec
-1) != '\n') {
2132 die("Log %s is corrupt.", logfile
);
2133 date
= strtoul(lastgt
+ 1, &tz_c
, 10);
2134 if (date
<= at_time
|| cnt
== 0) {
2135 tz
= strtoul(tz_c
, NULL
, 10);
2137 *msg
= ref_msg(rec
, logend
);
2139 *cutoff_time
= date
;
2143 *cutoff_cnt
= reccnt
- 1;
2145 if (get_sha1_hex(lastrec
, logged_sha1
))
2146 die("Log %s is corrupt.", logfile
);
2147 if (get_sha1_hex(rec
+ 41, sha1
))
2148 die("Log %s is corrupt.", logfile
);
2149 if (hashcmp(logged_sha1
, sha1
)) {
2150 warning("Log %s has gap after %s.",
2151 logfile
, show_date(date
, tz
, DATE_RFC2822
));
2154 else if (date
== at_time
) {
2155 if (get_sha1_hex(rec
+ 41, sha1
))
2156 die("Log %s is corrupt.", logfile
);
2159 if (get_sha1_hex(rec
+ 41, logged_sha1
))
2160 die("Log %s is corrupt.", logfile
);
2161 if (hashcmp(logged_sha1
, sha1
)) {
2162 warning("Log %s unexpectedly ended on %s.",
2163 logfile
, show_date(date
, tz
, DATE_RFC2822
));
2166 munmap(log_mapped
, mapsz
);
2175 while (rec
< logend
&& *rec
!= '>' && *rec
!= '\n')
2177 if (rec
== logend
|| *rec
== '\n')
2178 die("Log %s is corrupt.", logfile
);
2179 date
= strtoul(rec
+ 1, &tz_c
, 10);
2180 tz
= strtoul(tz_c
, NULL
, 10);
2181 if (get_sha1_hex(logdata
, sha1
))
2182 die("Log %s is corrupt.", logfile
);
2183 if (is_null_sha1(sha1
)) {
2184 if (get_sha1_hex(logdata
+ 41, sha1
))
2185 die("Log %s is corrupt.", logfile
);
2188 *msg
= ref_msg(logdata
, logend
);
2189 munmap(log_mapped
, mapsz
);
2192 *cutoff_time
= date
;
2196 *cutoff_cnt
= reccnt
;
2200 int for_each_recent_reflog_ent(const char *refname
, each_reflog_ent_fn fn
, long ofs
, void *cb_data
)
2202 const char *logfile
;
2204 struct strbuf sb
= STRBUF_INIT
;
2207 logfile
= git_path("logs/%s", refname
);
2208 logfp
= fopen(logfile
, "r");
2213 struct stat statbuf
;
2214 if (fstat(fileno(logfp
), &statbuf
) ||
2215 statbuf
.st_size
< ofs
||
2216 fseek(logfp
, -ofs
, SEEK_END
) ||
2217 strbuf_getwholeline(&sb
, logfp
, '\n')) {
2219 strbuf_release(&sb
);
2224 while (!strbuf_getwholeline(&sb
, logfp
, '\n')) {
2225 unsigned char osha1
[20], nsha1
[20];
2226 char *email_end
, *message
;
2227 unsigned long timestamp
;
2230 /* old SP new SP name <email> SP time TAB msg LF */
2231 if (sb
.len
< 83 || sb
.buf
[sb
.len
- 1] != '\n' ||
2232 get_sha1_hex(sb
.buf
, osha1
) || sb
.buf
[40] != ' ' ||
2233 get_sha1_hex(sb
.buf
+ 41, nsha1
) || sb
.buf
[81] != ' ' ||
2234 !(email_end
= strchr(sb
.buf
+ 82, '>')) ||
2235 email_end
[1] != ' ' ||
2236 !(timestamp
= strtoul(email_end
+ 2, &message
, 10)) ||
2237 !message
|| message
[0] != ' ' ||
2238 (message
[1] != '+' && message
[1] != '-') ||
2239 !isdigit(message
[2]) || !isdigit(message
[3]) ||
2240 !isdigit(message
[4]) || !isdigit(message
[5]))
2241 continue; /* corrupt? */
2242 email_end
[1] = '\0';
2243 tz
= strtol(message
+ 1, NULL
, 10);
2244 if (message
[6] != '\t')
2248 ret
= fn(osha1
, nsha1
, sb
.buf
+ 82, timestamp
, tz
, message
,
2254 strbuf_release(&sb
);
2258 int for_each_reflog_ent(const char *refname
, each_reflog_ent_fn fn
, void *cb_data
)
2260 return for_each_recent_reflog_ent(refname
, fn
, 0, cb_data
);
2264 * Call fn for each reflog in the namespace indicated by name. name
2265 * must be empty or end with '/'. Name will be used as a scratch
2266 * space, but its contents will be restored before return.
2268 static int do_for_each_reflog(struct strbuf
*name
, each_ref_fn fn
, void *cb_data
)
2270 DIR *d
= opendir(git_path("logs/%s", name
->buf
));
2273 int oldlen
= name
->len
;
2276 return name
->len
? errno
: 0;
2278 while ((de
= readdir(d
)) != NULL
) {
2281 if (de
->d_name
[0] == '.')
2283 if (has_extension(de
->d_name
, ".lock"))
2285 strbuf_addstr(name
, de
->d_name
);
2286 if (stat(git_path("logs/%s", name
->buf
), &st
) < 0) {
2287 ; /* silently ignore */
2289 if (S_ISDIR(st
.st_mode
)) {
2290 strbuf_addch(name
, '/');
2291 retval
= do_for_each_reflog(name
, fn
, cb_data
);
2293 unsigned char sha1
[20];
2294 if (read_ref_full(name
->buf
, sha1
, 0, NULL
))
2295 retval
= error("bad ref for %s", name
->buf
);
2297 retval
= fn(name
->buf
, sha1
, 0, cb_data
);
2302 strbuf_setlen(name
, oldlen
);
2308 int for_each_reflog(each_ref_fn fn
, void *cb_data
)
2312 strbuf_init(&name
, PATH_MAX
);
2313 retval
= do_for_each_reflog(&name
, fn
, cb_data
);
2314 strbuf_release(&name
);
2318 int update_ref(const char *action
, const char *refname
,
2319 const unsigned char *sha1
, const unsigned char *oldval
,
2320 int flags
, enum action_on_err onerr
)
2322 static struct ref_lock
*lock
;
2323 lock
= lock_any_ref_for_update(refname
, oldval
, flags
);
2325 const char *str
= "Cannot lock the ref '%s'.";
2327 case MSG_ON_ERR
: error(str
, refname
); break;
2328 case DIE_ON_ERR
: die(str
, refname
); break;
2329 case QUIET_ON_ERR
: break;
2333 if (write_ref_sha1(lock
, sha1
, action
) < 0) {
2334 const char *str
= "Cannot update the ref '%s'.";
2336 case MSG_ON_ERR
: error(str
, refname
); break;
2337 case DIE_ON_ERR
: die(str
, refname
); break;
2338 case QUIET_ON_ERR
: break;
2345 struct ref
*find_ref_by_name(const struct ref
*list
, const char *name
)
2347 for ( ; list
; list
= list
->next
)
2348 if (!strcmp(list
->name
, name
))
2349 return (struct ref
*)list
;
2354 * generate a format suitable for scanf from a ref_rev_parse_rules
2355 * rule, that is replace the "%.*s" spec with a "%s" spec
2357 static void gen_scanf_fmt(char *scanf_fmt
, const char *rule
)
2361 spec
= strstr(rule
, "%.*s");
2362 if (!spec
|| strstr(spec
+ 4, "%.*s"))
2363 die("invalid rule in ref_rev_parse_rules: %s", rule
);
2365 /* copy all until spec */
2366 strncpy(scanf_fmt
, rule
, spec
- rule
);
2367 scanf_fmt
[spec
- rule
] = '\0';
2369 strcat(scanf_fmt
, "%s");
2370 /* copy remaining rule */
2371 strcat(scanf_fmt
, spec
+ 4);
2376 char *shorten_unambiguous_ref(const char *refname
, int strict
)
2379 static char **scanf_fmts
;
2380 static int nr_rules
;
2383 /* pre generate scanf formats from ref_rev_parse_rules[] */
2385 size_t total_len
= 0;
2387 /* the rule list is NULL terminated, count them first */
2388 for (; ref_rev_parse_rules
[nr_rules
]; nr_rules
++)
2389 /* no +1 because strlen("%s") < strlen("%.*s") */
2390 total_len
+= strlen(ref_rev_parse_rules
[nr_rules
]);
2392 scanf_fmts
= xmalloc(nr_rules
* sizeof(char *) + total_len
);
2395 for (i
= 0; i
< nr_rules
; i
++) {
2396 scanf_fmts
[i
] = (char *)&scanf_fmts
[nr_rules
]
2398 gen_scanf_fmt(scanf_fmts
[i
], ref_rev_parse_rules
[i
]);
2399 total_len
+= strlen(ref_rev_parse_rules
[i
]);
2403 /* bail out if there are no rules */
2405 return xstrdup(refname
);
2407 /* buffer for scanf result, at most refname must fit */
2408 short_name
= xstrdup(refname
);
2410 /* skip first rule, it will always match */
2411 for (i
= nr_rules
- 1; i
> 0 ; --i
) {
2413 int rules_to_fail
= i
;
2416 if (1 != sscanf(refname
, scanf_fmts
[i
], short_name
))
2419 short_name_len
= strlen(short_name
);
2422 * in strict mode, all (except the matched one) rules
2423 * must fail to resolve to a valid non-ambiguous ref
2426 rules_to_fail
= nr_rules
;
2429 * check if the short name resolves to a valid ref,
2430 * but use only rules prior to the matched one
2432 for (j
= 0; j
< rules_to_fail
; j
++) {
2433 const char *rule
= ref_rev_parse_rules
[j
];
2434 char refname
[PATH_MAX
];
2436 /* skip matched rule */
2441 * the short name is ambiguous, if it resolves
2442 * (with this previous rule) to a valid ref
2443 * read_ref() returns 0 on success
2445 mksnpath(refname
, sizeof(refname
),
2446 rule
, short_name_len
, short_name
);
2447 if (ref_exists(refname
))
2452 * short name is non-ambiguous if all previous rules
2453 * haven't resolved to a valid ref
2455 if (j
== rules_to_fail
)
2460 return xstrdup(refname
);