7 /* ISSYMREF=0x01, ISPACKED=0x02 and ISBROKEN=0x04 are public interfaces */
8 #define REF_KNOWS_PEELED 0x10
11 unsigned char flag
; /* ISSYMREF? ISPACKED? */
12 unsigned char sha1
[20];
13 unsigned char peeled
[20];
14 /* The full name of the reference (e.g., "refs/heads/master"): */
15 char name
[FLEX_ARRAY
];
20 struct ref_entry
**refs
;
24 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
25 * Return a pointer to the refname within the line (null-terminated),
26 * or NULL if there was a problem.
28 static const char *parse_ref_line(char *line
, unsigned char *sha1
)
31 * 42: the answer to everything.
33 * In this case, it happens to be the answer to
34 * 40 (length of sha1 hex representation)
35 * +1 (space in between hex and name)
36 * +1 (newline at the end of the line)
38 int len
= strlen(line
) - 42;
42 if (get_sha1_hex(line
, sha1
) < 0)
44 if (!isspace(line
[40]))
49 if (line
[len
] != '\n')
53 if (check_refname_format(line
, REFNAME_ALLOW_ONELEVEL
))
59 static struct ref_entry
*create_ref_entry(const char *refname
,
60 const unsigned char *sha1
, int flag
,
64 struct ref_entry
*ref
;
67 check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
|REFNAME_DOT_COMPONENT
))
68 die("Reference has invalid format: '%s'", refname
);
69 len
= strlen(refname
) + 1;
70 ref
= xmalloc(sizeof(struct ref_entry
) + len
);
71 hashcpy(ref
->sha1
, sha1
);
73 memcpy(ref
->name
, refname
, len
);
78 /* Add a ref_entry to the end of the ref_array (unsorted). */
79 static void add_ref(struct ref_array
*refs
, struct ref_entry
*ref
)
81 ALLOC_GROW(refs
->refs
, refs
->nr
+ 1, refs
->alloc
);
82 refs
->refs
[refs
->nr
++] = ref
;
85 static int ref_entry_cmp(const void *a
, const void *b
)
87 struct ref_entry
*one
= *(struct ref_entry
**)a
;
88 struct ref_entry
*two
= *(struct ref_entry
**)b
;
89 return strcmp(one
->name
, two
->name
);
93 * Emit a warning and return true iff ref1 and ref2 have the same name
94 * and the same sha1. Die if they have the same name but different
97 static int is_dup_ref(const struct ref_entry
*ref1
, const struct ref_entry
*ref2
)
99 if (!strcmp(ref1
->name
, ref2
->name
)) {
100 /* Duplicate name; make sure that the SHA1s match: */
101 if (hashcmp(ref1
->sha1
, ref2
->sha1
))
102 die("Duplicated ref, and SHA1s don't match: %s",
104 warning("Duplicated ref: %s", ref1
->name
);
111 static void sort_ref_array(struct ref_array
*array
)
115 /* Nothing to sort unless there are at least two entries */
119 qsort(array
->refs
, array
->nr
, sizeof(*array
->refs
), ref_entry_cmp
);
121 /* Remove any duplicates from the ref_array */
122 for (; j
< array
->nr
; j
++) {
123 struct ref_entry
*a
= array
->refs
[i
];
124 struct ref_entry
*b
= array
->refs
[j
];
125 if (is_dup_ref(a
, b
)) {
130 array
->refs
[i
] = array
->refs
[j
];
135 static struct ref_entry
*search_ref_array(struct ref_array
*array
, const char *refname
)
137 struct ref_entry
*e
, **r
;
146 len
= strlen(refname
) + 1;
147 e
= xmalloc(sizeof(struct ref_entry
) + len
);
148 memcpy(e
->name
, refname
, len
);
150 r
= bsearch(&e
, array
->refs
, array
->nr
, sizeof(*array
->refs
), ref_entry_cmp
);
161 * Future: need to be in "struct repository"
162 * when doing a full libification.
164 static struct ref_cache
{
165 struct ref_cache
*next
;
168 struct ref_array loose
;
169 struct ref_array packed
;
170 /* The submodule name, or "" for the main repo. */
171 char name
[FLEX_ARRAY
];
174 static struct ref_entry
*current_ref
;
176 static struct ref_array extra_refs
;
178 static void clear_ref_array(struct ref_array
*array
)
181 for (i
= 0; i
< array
->nr
; i
++)
182 free(array
->refs
[i
]);
184 array
->nr
= array
->alloc
= 0;
188 static void clear_packed_ref_cache(struct ref_cache
*refs
)
190 if (refs
->did_packed
)
191 clear_ref_array(&refs
->packed
);
192 refs
->did_packed
= 0;
195 static void clear_loose_ref_cache(struct ref_cache
*refs
)
198 clear_ref_array(&refs
->loose
);
202 static struct ref_cache
*create_ref_cache(const char *submodule
)
205 struct ref_cache
*refs
;
208 len
= strlen(submodule
) + 1;
209 refs
= xcalloc(1, sizeof(struct ref_cache
) + len
);
210 memcpy(refs
->name
, submodule
, len
);
215 * Return a pointer to a ref_cache for the specified submodule. For
216 * the main repository, use submodule==NULL. The returned structure
217 * will be allocated and initialized but not necessarily populated; it
218 * should not be freed.
220 static struct ref_cache
*get_ref_cache(const char *submodule
)
222 struct ref_cache
*refs
= ref_cache
;
226 if (!strcmp(submodule
, refs
->name
))
231 refs
= create_ref_cache(submodule
);
232 refs
->next
= ref_cache
;
237 void invalidate_ref_cache(const char *submodule
)
239 struct ref_cache
*refs
= get_ref_cache(submodule
);
240 clear_packed_ref_cache(refs
);
241 clear_loose_ref_cache(refs
);
244 static void read_packed_refs(FILE *f
, struct ref_array
*array
)
246 struct ref_entry
*last
= NULL
;
247 char refline
[PATH_MAX
];
248 int flag
= REF_ISPACKED
;
250 while (fgets(refline
, sizeof(refline
), f
)) {
251 unsigned char sha1
[20];
253 static const char header
[] = "# pack-refs with:";
255 if (!strncmp(refline
, header
, sizeof(header
)-1)) {
256 const char *traits
= refline
+ sizeof(header
) - 1;
257 if (strstr(traits
, " peeled "))
258 flag
|= REF_KNOWS_PEELED
;
259 /* perhaps other traits later as well */
263 refname
= parse_ref_line(refline
, sha1
);
265 last
= create_ref_entry(refname
, sha1
, flag
, 1);
266 add_ref(array
, last
);
271 strlen(refline
) == 42 &&
272 refline
[41] == '\n' &&
273 !get_sha1_hex(refline
+ 1, sha1
))
274 hashcpy(last
->peeled
, sha1
);
276 sort_ref_array(array
);
279 void add_extra_ref(const char *refname
, const unsigned char *sha1
, int flag
)
281 add_ref(&extra_refs
, create_ref_entry(refname
, sha1
, flag
, 0));
284 void clear_extra_refs(void)
286 clear_ref_array(&extra_refs
);
289 static struct ref_array
*get_packed_refs(struct ref_cache
*refs
)
291 if (!refs
->did_packed
) {
292 const char *packed_refs_file
;
296 packed_refs_file
= git_path_submodule(refs
->name
, "packed-refs");
298 packed_refs_file
= git_path("packed-refs");
299 f
= fopen(packed_refs_file
, "r");
301 read_packed_refs(f
, &refs
->packed
);
304 refs
->did_packed
= 1;
306 return &refs
->packed
;
309 static void get_ref_dir(struct ref_cache
*refs
, const char *base
,
310 struct ref_array
*array
)
316 path
= git_path_submodule(refs
->name
, "%s", base
);
318 path
= git_path("%s", base
);
325 int baselen
= strlen(base
);
326 char *refname
= xmalloc(baselen
+ 257);
328 memcpy(refname
, base
, baselen
);
329 if (baselen
&& base
[baselen
-1] != '/')
330 refname
[baselen
++] = '/';
332 while ((de
= readdir(dir
)) != NULL
) {
333 unsigned char sha1
[20];
339 if (de
->d_name
[0] == '.')
341 namelen
= strlen(de
->d_name
);
344 if (has_extension(de
->d_name
, ".lock"))
346 memcpy(refname
+ baselen
, de
->d_name
, namelen
+1);
348 ? git_path_submodule(refs
->name
, "%s", refname
)
349 : git_path("%s", refname
);
350 if (stat(refdir
, &st
) < 0)
352 if (S_ISDIR(st
.st_mode
)) {
353 get_ref_dir(refs
, refname
, array
);
359 if (resolve_gitlink_ref(refs
->name
, refname
, sha1
) < 0) {
361 flag
|= REF_ISBROKEN
;
364 if (read_ref_full(refname
, sha1
, 1, &flag
)) {
366 flag
|= REF_ISBROKEN
;
368 add_ref(array
, create_ref_entry(refname
, sha1
, flag
, 1));
375 struct warn_if_dangling_data
{
381 static int warn_if_dangling_symref(const char *refname
, const unsigned char *sha1
,
382 int flags
, void *cb_data
)
384 struct warn_if_dangling_data
*d
= cb_data
;
385 const char *resolves_to
;
386 unsigned char junk
[20];
388 if (!(flags
& REF_ISSYMREF
))
391 resolves_to
= resolve_ref(refname
, junk
, 0, NULL
);
392 if (!resolves_to
|| strcmp(resolves_to
, d
->refname
))
395 fprintf(d
->fp
, d
->msg_fmt
, refname
);
399 void warn_dangling_symref(FILE *fp
, const char *msg_fmt
, const char *refname
)
401 struct warn_if_dangling_data data
;
404 data
.refname
= refname
;
405 data
.msg_fmt
= msg_fmt
;
406 for_each_rawref(warn_if_dangling_symref
, &data
);
409 static struct ref_array
*get_loose_refs(struct ref_cache
*refs
)
411 if (!refs
->did_loose
) {
412 get_ref_dir(refs
, "refs", &refs
->loose
);
413 sort_ref_array(&refs
->loose
);
419 /* We allow "recursive" symbolic refs. Only within reason, though */
421 #define MAXREFLEN (1024)
423 static int resolve_gitlink_packed_ref(struct ref_cache
*refs
,
424 const char *refname
, unsigned char *sha1
)
427 struct ref_entry
*ref
;
428 struct ref_array
*array
= get_packed_refs(refs
);
430 ref
= search_ref_array(array
, refname
);
432 memcpy(sha1
, ref
->sha1
, 20);
438 static int resolve_gitlink_ref_recursive(struct ref_cache
*refs
,
439 const char *refname
, unsigned char *sha1
,
443 char buffer
[128], *p
;
446 if (recursion
> MAXDEPTH
|| strlen(refname
) > MAXREFLEN
)
449 ? git_path_submodule(refs
->name
, "%s", refname
)
450 : git_path("%s", refname
);
451 fd
= open(path
, O_RDONLY
);
453 return resolve_gitlink_packed_ref(refs
, refname
, sha1
);
455 len
= read(fd
, buffer
, sizeof(buffer
)-1);
459 while (len
&& isspace(buffer
[len
-1]))
463 /* Was it a detached head or an old-fashioned symlink? */
464 if (!get_sha1_hex(buffer
, sha1
))
468 if (strncmp(buffer
, "ref:", 4))
474 return resolve_gitlink_ref_recursive(refs
, p
, sha1
, recursion
+1);
477 int resolve_gitlink_ref(const char *path
, const char *refname
, unsigned char *sha1
)
479 int len
= strlen(path
), retval
;
481 struct ref_cache
*refs
;
483 while (len
&& path
[len
-1] == '/')
487 submodule
= xstrndup(path
, len
);
488 refs
= get_ref_cache(submodule
);
491 retval
= resolve_gitlink_ref_recursive(refs
, refname
, sha1
, 0);
496 * Try to read ref from the packed references. On success, set sha1
497 * and return 0; otherwise, return -1.
499 static int get_packed_ref(const char *refname
, unsigned char *sha1
)
501 struct ref_array
*packed
= get_packed_refs(get_ref_cache(NULL
));
502 struct ref_entry
*entry
= search_ref_array(packed
, refname
);
504 hashcpy(sha1
, entry
->sha1
);
510 const char *resolve_ref(const char *refname
, unsigned char *sha1
, int reading
, int *flag
)
512 int depth
= MAXDEPTH
;
515 static char refname_buffer
[256];
520 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
))
532 git_snpath(path
, sizeof(path
), "%s", refname
);
534 if (lstat(path
, &st
) < 0) {
538 * The loose reference file does not exist;
539 * check for a packed reference.
541 if (!get_packed_ref(refname
, sha1
)) {
543 *flag
|= REF_ISPACKED
;
546 /* The reference is not a packed reference, either. */
555 /* Follow "normalized" - ie "refs/.." symlinks by hand */
556 if (S_ISLNK(st
.st_mode
)) {
557 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
561 if (!prefixcmp(buffer
, "refs/") &&
562 !check_refname_format(buffer
, 0)) {
563 strcpy(refname_buffer
, buffer
);
564 refname
= refname_buffer
;
566 *flag
|= REF_ISSYMREF
;
571 /* Is it a directory? */
572 if (S_ISDIR(st
.st_mode
)) {
578 * Anything else, just open it and try to use it as
581 fd
= open(path
, O_RDONLY
);
584 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
588 while (len
&& isspace(buffer
[len
-1]))
593 * Is it a symbolic ref?
595 if (prefixcmp(buffer
, "ref:"))
598 *flag
|= REF_ISSYMREF
;
600 while (isspace(*buf
))
602 if (check_refname_format(buf
, REFNAME_ALLOW_ONELEVEL
)) {
604 *flag
|= REF_ISBROKEN
;
607 refname
= strcpy(refname_buffer
, buf
);
609 /* Please note that FETCH_HEAD has a second line containing other data. */
610 if (get_sha1_hex(buffer
, sha1
) || (buffer
[40] != '\0' && !isspace(buffer
[40]))) {
612 *flag
|= REF_ISBROKEN
;
618 /* The argument to filter_refs */
625 int read_ref_full(const char *refname
, unsigned char *sha1
, int reading
, int *flags
)
627 if (resolve_ref(refname
, sha1
, reading
, flags
))
632 int read_ref(const char *ref
, unsigned char *sha1
)
634 return read_ref_full(ref
, sha1
, 1, NULL
);
637 #define DO_FOR_EACH_INCLUDE_BROKEN 01
638 static int do_one_ref(const char *base
, each_ref_fn fn
, int trim
,
639 int flags
, void *cb_data
, struct ref_entry
*entry
)
641 if (prefixcmp(entry
->name
, base
))
644 if (!(flags
& DO_FOR_EACH_INCLUDE_BROKEN
)) {
645 if (entry
->flag
& REF_ISBROKEN
)
646 return 0; /* ignore broken refs e.g. dangling symref */
647 if (!has_sha1_file(entry
->sha1
)) {
648 error("%s does not point to a valid object!", entry
->name
);
653 return fn(entry
->name
+ trim
, entry
->sha1
, entry
->flag
, cb_data
);
656 static int filter_refs(const char *refname
, const unsigned char *sha
, int flags
,
659 struct ref_filter
*filter
= (struct ref_filter
*)data
;
660 if (fnmatch(filter
->pattern
, refname
, 0))
662 return filter
->fn(refname
, sha
, flags
, filter
->cb_data
);
665 int peel_ref(const char *refname
, unsigned char *sha1
)
668 unsigned char base
[20];
671 if (current_ref
&& (current_ref
->name
== refname
672 || !strcmp(current_ref
->name
, refname
))) {
673 if (current_ref
->flag
& REF_KNOWS_PEELED
) {
674 hashcpy(sha1
, current_ref
->peeled
);
677 hashcpy(base
, current_ref
->sha1
);
681 if (read_ref_full(refname
, base
, 1, &flag
))
684 if ((flag
& REF_ISPACKED
)) {
685 struct ref_array
*array
= get_packed_refs(get_ref_cache(NULL
));
686 struct ref_entry
*r
= search_ref_array(array
, refname
);
688 if (r
!= NULL
&& r
->flag
& REF_KNOWS_PEELED
) {
689 hashcpy(sha1
, r
->peeled
);
695 o
= parse_object(base
);
696 if (o
&& o
->type
== OBJ_TAG
) {
697 o
= deref_tag(o
, refname
, 0);
699 hashcpy(sha1
, o
->sha1
);
706 static int do_for_each_ref_in_array(struct ref_array
*array
, int offset
,
708 each_ref_fn fn
, int trim
, int flags
, void *cb_data
)
711 for (i
= offset
; i
< array
->nr
; i
++) {
712 int retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, array
->refs
[i
]);
719 static int do_for_each_ref(const char *submodule
, const char *base
, each_ref_fn fn
,
720 int trim
, int flags
, void *cb_data
)
722 int retval
= 0, p
= 0, l
= 0;
723 struct ref_cache
*refs
= get_ref_cache(submodule
);
724 struct ref_array
*packed
= get_packed_refs(refs
);
725 struct ref_array
*loose
= get_loose_refs(refs
);
727 retval
= do_for_each_ref_in_array(&extra_refs
, 0,
728 base
, fn
, trim
, flags
, cb_data
);
732 while (p
< packed
->nr
&& l
< loose
->nr
) {
733 struct ref_entry
*entry
;
734 int cmp
= strcmp(packed
->refs
[p
]->name
, loose
->refs
[l
]->name
);
740 entry
= loose
->refs
[l
++];
742 entry
= packed
->refs
[p
++];
744 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, entry
);
750 retval
= do_for_each_ref_in_array(loose
, l
,
751 base
, fn
, trim
, flags
, cb_data
);
753 retval
= do_for_each_ref_in_array(packed
, p
,
754 base
, fn
, trim
, flags
, cb_data
);
763 static int do_head_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
765 unsigned char sha1
[20];
769 if (resolve_gitlink_ref(submodule
, "HEAD", sha1
) == 0)
770 return fn("HEAD", sha1
, 0, cb_data
);
775 if (!read_ref_full("HEAD", sha1
, 1, &flag
))
776 return fn("HEAD", sha1
, flag
, cb_data
);
781 int head_ref(each_ref_fn fn
, void *cb_data
)
783 return do_head_ref(NULL
, fn
, cb_data
);
786 int head_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
788 return do_head_ref(submodule
, fn
, cb_data
);
791 int for_each_ref(each_ref_fn fn
, void *cb_data
)
793 return do_for_each_ref(NULL
, "", fn
, 0, 0, cb_data
);
796 int for_each_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
798 return do_for_each_ref(submodule
, "", fn
, 0, 0, cb_data
);
801 int for_each_ref_in(const char *prefix
, each_ref_fn fn
, void *cb_data
)
803 return do_for_each_ref(NULL
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
806 int for_each_ref_in_submodule(const char *submodule
, const char *prefix
,
807 each_ref_fn fn
, void *cb_data
)
809 return do_for_each_ref(submodule
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
812 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
814 return for_each_ref_in("refs/tags/", fn
, cb_data
);
817 int for_each_tag_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
819 return for_each_ref_in_submodule(submodule
, "refs/tags/", fn
, cb_data
);
822 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
824 return for_each_ref_in("refs/heads/", fn
, cb_data
);
827 int for_each_branch_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
829 return for_each_ref_in_submodule(submodule
, "refs/heads/", fn
, cb_data
);
832 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
834 return for_each_ref_in("refs/remotes/", fn
, cb_data
);
837 int for_each_remote_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
839 return for_each_ref_in_submodule(submodule
, "refs/remotes/", fn
, cb_data
);
842 int for_each_replace_ref(each_ref_fn fn
, void *cb_data
)
844 return do_for_each_ref(NULL
, "refs/replace/", fn
, 13, 0, cb_data
);
847 int head_ref_namespaced(each_ref_fn fn
, void *cb_data
)
849 struct strbuf buf
= STRBUF_INIT
;
851 unsigned char sha1
[20];
854 strbuf_addf(&buf
, "%sHEAD", get_git_namespace());
855 if (!read_ref_full(buf
.buf
, sha1
, 1, &flag
))
856 ret
= fn(buf
.buf
, sha1
, flag
, cb_data
);
857 strbuf_release(&buf
);
862 int for_each_namespaced_ref(each_ref_fn fn
, void *cb_data
)
864 struct strbuf buf
= STRBUF_INIT
;
866 strbuf_addf(&buf
, "%srefs/", get_git_namespace());
867 ret
= do_for_each_ref(NULL
, buf
.buf
, fn
, 0, 0, cb_data
);
868 strbuf_release(&buf
);
872 int for_each_glob_ref_in(each_ref_fn fn
, const char *pattern
,
873 const char *prefix
, void *cb_data
)
875 struct strbuf real_pattern
= STRBUF_INIT
;
876 struct ref_filter filter
;
879 if (!prefix
&& prefixcmp(pattern
, "refs/"))
880 strbuf_addstr(&real_pattern
, "refs/");
882 strbuf_addstr(&real_pattern
, prefix
);
883 strbuf_addstr(&real_pattern
, pattern
);
885 if (!has_glob_specials(pattern
)) {
886 /* Append implied '/' '*' if not present. */
887 if (real_pattern
.buf
[real_pattern
.len
- 1] != '/')
888 strbuf_addch(&real_pattern
, '/');
889 /* No need to check for '*', there is none. */
890 strbuf_addch(&real_pattern
, '*');
893 filter
.pattern
= real_pattern
.buf
;
895 filter
.cb_data
= cb_data
;
896 ret
= for_each_ref(filter_refs
, &filter
);
898 strbuf_release(&real_pattern
);
902 int for_each_glob_ref(each_ref_fn fn
, const char *pattern
, void *cb_data
)
904 return for_each_glob_ref_in(fn
, pattern
, NULL
, cb_data
);
907 int for_each_rawref(each_ref_fn fn
, void *cb_data
)
909 return do_for_each_ref(NULL
, "", fn
, 0,
910 DO_FOR_EACH_INCLUDE_BROKEN
, cb_data
);
914 * Make sure "ref" is something reasonable to have under ".git/refs/";
915 * We do not like it if:
917 * - any path component of it begins with ".", or
918 * - it has double dots "..", or
919 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
920 * - it ends with a "/".
921 * - it ends with ".lock"
922 * - it contains a "\" (backslash)
925 /* Return true iff ch is not allowed in reference names. */
926 static inline int bad_ref_char(int ch
)
928 if (((unsigned) ch
) <= ' ' || ch
== 0x7f ||
929 ch
== '~' || ch
== '^' || ch
== ':' || ch
== '\\')
931 /* 2.13 Pattern Matching Notation */
932 if (ch
== '*' || ch
== '?' || ch
== '[') /* Unsupported */
938 * Try to read one refname component from the front of refname. Return
939 * the length of the component found, or -1 if the component is not
942 static int check_refname_component(const char *refname
, int flags
)
947 for (cp
= refname
; ; cp
++) {
949 if (ch
== '\0' || ch
== '/')
951 if (bad_ref_char(ch
))
952 return -1; /* Illegal character in refname. */
953 if (last
== '.' && ch
== '.')
954 return -1; /* Refname contains "..". */
955 if (last
== '@' && ch
== '{')
956 return -1; /* Refname contains "@{". */
960 return -1; /* Component has zero length. */
961 if (refname
[0] == '.') {
962 if (!(flags
& REFNAME_DOT_COMPONENT
))
963 return -1; /* Component starts with '.'. */
965 * Even if leading dots are allowed, don't allow "."
966 * as a component (".." is prevented by a rule above).
968 if (refname
[1] == '\0')
969 return -1; /* Component equals ".". */
971 if (cp
- refname
>= 5 && !memcmp(cp
- 5, ".lock", 5))
972 return -1; /* Refname ends with ".lock". */
976 int check_refname_format(const char *refname
, int flags
)
978 int component_len
, component_count
= 0;
981 /* We are at the start of a path component. */
982 component_len
= check_refname_component(refname
, flags
);
983 if (component_len
< 0) {
984 if ((flags
& REFNAME_REFSPEC_PATTERN
) &&
986 (refname
[1] == '\0' || refname
[1] == '/')) {
987 /* Accept one wildcard as a full refname component. */
988 flags
&= ~REFNAME_REFSPEC_PATTERN
;
995 if (refname
[component_len
] == '\0')
997 /* Skip to next component. */
998 refname
+= component_len
+ 1;
1001 if (refname
[component_len
- 1] == '.')
1002 return -1; /* Refname ends with '.'. */
1003 if (!(flags
& REFNAME_ALLOW_ONELEVEL
) && component_count
< 2)
1004 return -1; /* Refname has only one component. */
1008 const char *prettify_refname(const char *name
)
1011 !prefixcmp(name
, "refs/heads/") ? 11 :
1012 !prefixcmp(name
, "refs/tags/") ? 10 :
1013 !prefixcmp(name
, "refs/remotes/") ? 13 :
1017 const char *ref_rev_parse_rules
[] = {
1022 "refs/remotes/%.*s",
1023 "refs/remotes/%.*s/HEAD",
1027 int refname_match(const char *abbrev_name
, const char *full_name
, const char **rules
)
1030 const int abbrev_name_len
= strlen(abbrev_name
);
1032 for (p
= rules
; *p
; p
++) {
1033 if (!strcmp(full_name
, mkpath(*p
, abbrev_name_len
, abbrev_name
))) {
1041 static struct ref_lock
*verify_lock(struct ref_lock
*lock
,
1042 const unsigned char *old_sha1
, int mustexist
)
1044 if (read_ref_full(lock
->ref_name
, lock
->old_sha1
, mustexist
, NULL
)) {
1045 error("Can't verify ref %s", lock
->ref_name
);
1049 if (hashcmp(lock
->old_sha1
, old_sha1
)) {
1050 error("Ref %s is at %s but expected %s", lock
->ref_name
,
1051 sha1_to_hex(lock
->old_sha1
), sha1_to_hex(old_sha1
));
1058 static int remove_empty_directories(const char *file
)
1060 /* we want to create a file but there is a directory there;
1061 * if that is an empty directory (or a directory that contains
1062 * only empty directories), remove them.
1067 strbuf_init(&path
, 20);
1068 strbuf_addstr(&path
, file
);
1070 result
= remove_dir_recursively(&path
, REMOVE_DIR_EMPTY_ONLY
);
1072 strbuf_release(&path
);
1078 * Return true iff refname1 and refname2 conflict with each other.
1079 * Two reference names conflict if one of them exactly matches the
1080 * leading components of the other; e.g., "foo/bar" conflicts with
1081 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or
1084 static int names_conflict(const char *refname1
, const char *refname2
)
1086 for (; *refname1
&& *refname1
== *refname2
; refname1
++, refname2
++)
1088 return (*refname1
== '\0' && *refname2
== '/')
1089 || (*refname1
== '/' && *refname2
== '\0');
1092 struct name_conflict_cb
{
1093 const char *refname
;
1094 const char *oldrefname
;
1095 const char *conflicting_refname
;
1098 static int name_conflict_fn(const char *existingrefname
, const unsigned char *sha1
,
1099 int flags
, void *cb_data
)
1101 struct name_conflict_cb
*data
= (struct name_conflict_cb
*)cb_data
;
1102 if (data
->oldrefname
&& !strcmp(data
->oldrefname
, existingrefname
))
1104 if (names_conflict(data
->refname
, existingrefname
)) {
1105 data
->conflicting_refname
= existingrefname
;
1112 * Return true iff a reference named refname could be created without
1113 * conflicting with the name of an existing reference. If oldrefname
1114 * is non-NULL, ignore potential conflicts with oldrefname (e.g.,
1115 * because oldrefname is scheduled for deletion in the same
1118 static int is_refname_available(const char *refname
, const char *oldrefname
,
1119 struct ref_array
*array
)
1121 struct name_conflict_cb data
;
1122 data
.refname
= refname
;
1123 data
.oldrefname
= oldrefname
;
1124 data
.conflicting_refname
= NULL
;
1126 if (do_for_each_ref_in_array(array
, 0, "", name_conflict_fn
,
1127 0, DO_FOR_EACH_INCLUDE_BROKEN
,
1129 error("'%s' exists; cannot create '%s'",
1130 data
.conflicting_refname
, refname
);
1137 * *string and *len will only be substituted, and *string returned (for
1138 * later free()ing) if the string passed in is a magic short-hand form
1141 static char *substitute_branch_name(const char **string
, int *len
)
1143 struct strbuf buf
= STRBUF_INIT
;
1144 int ret
= interpret_branch_name(*string
, &buf
);
1148 *string
= strbuf_detach(&buf
, &size
);
1150 return (char *)*string
;
1156 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
1158 char *last_branch
= substitute_branch_name(&str
, &len
);
1163 for (p
= ref_rev_parse_rules
; *p
; p
++) {
1164 char fullref
[PATH_MAX
];
1165 unsigned char sha1_from_ref
[20];
1166 unsigned char *this_result
;
1169 this_result
= refs_found
? sha1_from_ref
: sha1
;
1170 mksnpath(fullref
, sizeof(fullref
), *p
, len
, str
);
1171 r
= resolve_ref(fullref
, this_result
, 1, &flag
);
1175 if (!warn_ambiguous_refs
)
1177 } else if ((flag
& REF_ISSYMREF
) && strcmp(fullref
, "HEAD")) {
1178 warning("ignoring dangling symref %s.", fullref
);
1179 } else if ((flag
& REF_ISBROKEN
) && strchr(fullref
, '/')) {
1180 warning("ignoring broken ref %s.", fullref
);
1187 int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
1189 char *last_branch
= substitute_branch_name(&str
, &len
);
1194 for (p
= ref_rev_parse_rules
; *p
; p
++) {
1196 unsigned char hash
[20];
1197 char path
[PATH_MAX
];
1198 const char *ref
, *it
;
1200 mksnpath(path
, sizeof(path
), *p
, len
, str
);
1201 ref
= resolve_ref(path
, hash
, 1, NULL
);
1204 if (!stat(git_path("logs/%s", path
), &st
) &&
1205 S_ISREG(st
.st_mode
))
1207 else if (strcmp(ref
, path
) &&
1208 !stat(git_path("logs/%s", ref
), &st
) &&
1209 S_ISREG(st
.st_mode
))
1213 if (!logs_found
++) {
1215 hashcpy(sha1
, hash
);
1217 if (!warn_ambiguous_refs
)
1224 static struct ref_lock
*lock_ref_sha1_basic(const char *refname
,
1225 const unsigned char *old_sha1
,
1226 int flags
, int *type_p
)
1229 const char *orig_refname
= refname
;
1230 struct ref_lock
*lock
;
1233 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
1236 lock
= xcalloc(1, sizeof(struct ref_lock
));
1239 refname
= resolve_ref(refname
, lock
->old_sha1
, mustexist
, &type
);
1240 if (!refname
&& errno
== EISDIR
) {
1241 /* we are trying to lock foo but we used to
1242 * have foo/bar which now does not exist;
1243 * it is normal for the empty directory 'foo'
1246 ref_file
= git_path("%s", orig_refname
);
1247 if (remove_empty_directories(ref_file
)) {
1249 error("there are still refs under '%s'", orig_refname
);
1252 refname
= resolve_ref(orig_refname
, lock
->old_sha1
, mustexist
, &type
);
1258 error("unable to resolve reference %s: %s",
1259 orig_refname
, strerror(errno
));
1262 missing
= is_null_sha1(lock
->old_sha1
);
1263 /* When the ref did not exist and we are creating it,
1264 * make sure there is no existing ref that is packed
1265 * whose name begins with our refname, nor a ref whose
1266 * name is a proper prefix of our refname.
1269 !is_refname_available(refname
, NULL
, get_packed_refs(get_ref_cache(NULL
)))) {
1270 last_errno
= ENOTDIR
;
1274 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
1276 lflags
= LOCK_DIE_ON_ERROR
;
1277 if (flags
& REF_NODEREF
) {
1278 refname
= orig_refname
;
1279 lflags
|= LOCK_NODEREF
;
1281 lock
->ref_name
= xstrdup(refname
);
1282 lock
->orig_ref_name
= xstrdup(orig_refname
);
1283 ref_file
= git_path("%s", refname
);
1285 lock
->force_write
= 1;
1286 if ((flags
& REF_NODEREF
) && (type
& REF_ISSYMREF
))
1287 lock
->force_write
= 1;
1289 if (safe_create_leading_directories(ref_file
)) {
1291 error("unable to create directory for %s", ref_file
);
1295 lock
->lock_fd
= hold_lock_file_for_update(lock
->lk
, ref_file
, lflags
);
1296 return old_sha1
? verify_lock(lock
, old_sha1
, mustexist
) : lock
;
1304 struct ref_lock
*lock_ref_sha1(const char *refname
, const unsigned char *old_sha1
)
1306 char refpath
[PATH_MAX
];
1307 if (check_refname_format(refname
, 0))
1309 strcpy(refpath
, mkpath("refs/%s", refname
));
1310 return lock_ref_sha1_basic(refpath
, old_sha1
, 0, NULL
);
1313 struct ref_lock
*lock_any_ref_for_update(const char *refname
,
1314 const unsigned char *old_sha1
, int flags
)
1316 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
))
1318 return lock_ref_sha1_basic(refname
, old_sha1
, flags
, NULL
);
1321 struct repack_without_ref_sb
{
1322 const char *refname
;
1326 static int repack_without_ref_fn(const char *refname
, const unsigned char *sha1
,
1327 int flags
, void *cb_data
)
1329 struct repack_without_ref_sb
*data
= cb_data
;
1330 char line
[PATH_MAX
+ 100];
1333 if (!strcmp(data
->refname
, refname
))
1335 len
= snprintf(line
, sizeof(line
), "%s %s\n",
1336 sha1_to_hex(sha1
), refname
);
1337 /* this should not happen but just being defensive */
1338 if (len
> sizeof(line
))
1339 die("too long a refname '%s'", refname
);
1340 write_or_die(data
->fd
, line
, len
);
1344 static struct lock_file packlock
;
1346 static int repack_without_ref(const char *refname
)
1348 struct repack_without_ref_sb data
;
1349 struct ref_array
*packed
;
1351 packed
= get_packed_refs(get_ref_cache(NULL
));
1352 if (search_ref_array(packed
, refname
) == NULL
)
1354 data
.refname
= refname
;
1355 data
.fd
= hold_lock_file_for_update(&packlock
, git_path("packed-refs"), 0);
1357 unable_to_lock_error(git_path("packed-refs"), errno
);
1358 return error("cannot delete '%s' from packed refs", refname
);
1360 do_for_each_ref_in_array(packed
, 0, "", repack_without_ref_fn
, 0, 0, &data
);
1361 return commit_lock_file(&packlock
);
1364 int delete_ref(const char *refname
, const unsigned char *sha1
, int delopt
)
1366 struct ref_lock
*lock
;
1367 int err
, i
= 0, ret
= 0, flag
= 0;
1369 lock
= lock_ref_sha1_basic(refname
, sha1
, 0, &flag
);
1372 if (!(flag
& REF_ISPACKED
) || flag
& REF_ISSYMREF
) {
1376 if (!(delopt
& REF_NODEREF
)) {
1377 i
= strlen(lock
->lk
->filename
) - 5; /* .lock */
1378 lock
->lk
->filename
[i
] = 0;
1379 path
= lock
->lk
->filename
;
1381 path
= git_path("%s", refname
);
1383 err
= unlink_or_warn(path
);
1384 if (err
&& errno
!= ENOENT
)
1387 if (!(delopt
& REF_NODEREF
))
1388 lock
->lk
->filename
[i
] = '.';
1390 /* removing the loose one could have resurrected an earlier
1391 * packed one. Also, if it was not loose we need to repack
1394 ret
|= repack_without_ref(refname
);
1396 unlink_or_warn(git_path("logs/%s", lock
->ref_name
));
1397 invalidate_ref_cache(NULL
);
1403 * People using contrib's git-new-workdir have .git/logs/refs ->
1404 * /some/other/path/.git/logs/refs, and that may live on another device.
1406 * IOW, to avoid cross device rename errors, the temporary renamed log must
1407 * live into logs/refs.
1409 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
1411 int rename_ref(const char *oldrefname
, const char *newrefname
, const char *logmsg
)
1413 unsigned char sha1
[20], orig_sha1
[20];
1414 int flag
= 0, logmoved
= 0;
1415 struct ref_lock
*lock
;
1416 struct stat loginfo
;
1417 int log
= !lstat(git_path("logs/%s", oldrefname
), &loginfo
);
1418 const char *symref
= NULL
;
1419 struct ref_cache
*refs
= get_ref_cache(NULL
);
1421 if (log
&& S_ISLNK(loginfo
.st_mode
))
1422 return error("reflog for %s is a symlink", oldrefname
);
1424 symref
= resolve_ref(oldrefname
, orig_sha1
, 1, &flag
);
1425 if (flag
& REF_ISSYMREF
)
1426 return error("refname %s is a symbolic ref, renaming it is not supported",
1429 return error("refname %s not found", oldrefname
);
1431 if (!is_refname_available(newrefname
, oldrefname
, get_packed_refs(refs
)))
1434 if (!is_refname_available(newrefname
, oldrefname
, get_loose_refs(refs
)))
1437 if (log
&& rename(git_path("logs/%s", oldrefname
), git_path(TMP_RENAMED_LOG
)))
1438 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG
": %s",
1439 oldrefname
, strerror(errno
));
1441 if (delete_ref(oldrefname
, orig_sha1
, REF_NODEREF
)) {
1442 error("unable to delete old %s", oldrefname
);
1446 if (!read_ref_full(newrefname
, sha1
, 1, &flag
) &&
1447 delete_ref(newrefname
, sha1
, REF_NODEREF
)) {
1448 if (errno
==EISDIR
) {
1449 if (remove_empty_directories(git_path("%s", newrefname
))) {
1450 error("Directory not empty: %s", newrefname
);
1454 error("unable to delete existing %s", newrefname
);
1459 if (log
&& safe_create_leading_directories(git_path("logs/%s", newrefname
))) {
1460 error("unable to create directory for %s", newrefname
);
1465 if (log
&& rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", newrefname
))) {
1466 if (errno
==EISDIR
|| errno
==ENOTDIR
) {
1468 * rename(a, b) when b is an existing
1469 * directory ought to result in ISDIR, but
1470 * Solaris 5.8 gives ENOTDIR. Sheesh.
1472 if (remove_empty_directories(git_path("logs/%s", newrefname
))) {
1473 error("Directory not empty: logs/%s", newrefname
);
1478 error("unable to move logfile "TMP_RENAMED_LOG
" to logs/%s: %s",
1479 newrefname
, strerror(errno
));
1485 lock
= lock_ref_sha1_basic(newrefname
, NULL
, 0, NULL
);
1487 error("unable to lock %s for update", newrefname
);
1490 lock
->force_write
= 1;
1491 hashcpy(lock
->old_sha1
, orig_sha1
);
1492 if (write_ref_sha1(lock
, orig_sha1
, logmsg
)) {
1493 error("unable to write current sha1 into %s", newrefname
);
1500 lock
= lock_ref_sha1_basic(oldrefname
, NULL
, 0, NULL
);
1502 error("unable to lock %s for rollback", oldrefname
);
1506 lock
->force_write
= 1;
1507 flag
= log_all_ref_updates
;
1508 log_all_ref_updates
= 0;
1509 if (write_ref_sha1(lock
, orig_sha1
, NULL
))
1510 error("unable to write current sha1 into %s", oldrefname
);
1511 log_all_ref_updates
= flag
;
1514 if (logmoved
&& rename(git_path("logs/%s", newrefname
), git_path("logs/%s", oldrefname
)))
1515 error("unable to restore logfile %s from %s: %s",
1516 oldrefname
, newrefname
, strerror(errno
));
1517 if (!logmoved
&& log
&&
1518 rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", oldrefname
)))
1519 error("unable to restore logfile %s from "TMP_RENAMED_LOG
": %s",
1520 oldrefname
, strerror(errno
));
1525 int close_ref(struct ref_lock
*lock
)
1527 if (close_lock_file(lock
->lk
))
1533 int commit_ref(struct ref_lock
*lock
)
1535 if (commit_lock_file(lock
->lk
))
1541 void unlock_ref(struct ref_lock
*lock
)
1543 /* Do not free lock->lk -- atexit() still looks at them */
1545 rollback_lock_file(lock
->lk
);
1546 free(lock
->ref_name
);
1547 free(lock
->orig_ref_name
);
1552 * copy the reflog message msg to buf, which has been allocated sufficiently
1553 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1554 * because reflog file is one line per entry.
1556 static int copy_msg(char *buf
, const char *msg
)
1563 while ((c
= *msg
++)) {
1564 if (wasspace
&& isspace(c
))
1566 wasspace
= isspace(c
);
1571 while (buf
< cp
&& isspace(cp
[-1]))
1577 int log_ref_setup(const char *refname
, char *logfile
, int bufsize
)
1579 int logfd
, oflags
= O_APPEND
| O_WRONLY
;
1581 git_snpath(logfile
, bufsize
, "logs/%s", refname
);
1582 if (log_all_ref_updates
&&
1583 (!prefixcmp(refname
, "refs/heads/") ||
1584 !prefixcmp(refname
, "refs/remotes/") ||
1585 !prefixcmp(refname
, "refs/notes/") ||
1586 !strcmp(refname
, "HEAD"))) {
1587 if (safe_create_leading_directories(logfile
) < 0)
1588 return error("unable to create directory for %s",
1593 logfd
= open(logfile
, oflags
, 0666);
1595 if (!(oflags
& O_CREAT
) && errno
== ENOENT
)
1598 if ((oflags
& O_CREAT
) && errno
== EISDIR
) {
1599 if (remove_empty_directories(logfile
)) {
1600 return error("There are still logs under '%s'",
1603 logfd
= open(logfile
, oflags
, 0666);
1607 return error("Unable to append to %s: %s",
1608 logfile
, strerror(errno
));
1611 adjust_shared_perm(logfile
);
1616 static int log_ref_write(const char *refname
, const unsigned char *old_sha1
,
1617 const unsigned char *new_sha1
, const char *msg
)
1619 int logfd
, result
, written
, oflags
= O_APPEND
| O_WRONLY
;
1620 unsigned maxlen
, len
;
1622 char log_file
[PATH_MAX
];
1624 const char *committer
;
1626 if (log_all_ref_updates
< 0)
1627 log_all_ref_updates
= !is_bare_repository();
1629 result
= log_ref_setup(refname
, log_file
, sizeof(log_file
));
1633 logfd
= open(log_file
, oflags
);
1636 msglen
= msg
? strlen(msg
) : 0;
1637 committer
= git_committer_info(0);
1638 maxlen
= strlen(committer
) + msglen
+ 100;
1639 logrec
= xmalloc(maxlen
);
1640 len
= sprintf(logrec
, "%s %s %s\n",
1641 sha1_to_hex(old_sha1
),
1642 sha1_to_hex(new_sha1
),
1645 len
+= copy_msg(logrec
+ len
- 1, msg
) - 1;
1646 written
= len
<= maxlen
? write_in_full(logfd
, logrec
, len
) : -1;
1648 if (close(logfd
) != 0 || written
!= len
)
1649 return error("Unable to append to %s", log_file
);
1653 static int is_branch(const char *refname
)
1655 return !strcmp(refname
, "HEAD") || !prefixcmp(refname
, "refs/heads/");
1658 int write_ref_sha1(struct ref_lock
*lock
,
1659 const unsigned char *sha1
, const char *logmsg
)
1661 static char term
= '\n';
1666 if (!lock
->force_write
&& !hashcmp(lock
->old_sha1
, sha1
)) {
1670 o
= parse_object(sha1
);
1672 error("Trying to write ref %s with nonexistent object %s",
1673 lock
->ref_name
, sha1_to_hex(sha1
));
1677 if (o
->type
!= OBJ_COMMIT
&& is_branch(lock
->ref_name
)) {
1678 error("Trying to write non-commit object %s to branch %s",
1679 sha1_to_hex(sha1
), lock
->ref_name
);
1683 if (write_in_full(lock
->lock_fd
, sha1_to_hex(sha1
), 40) != 40 ||
1684 write_in_full(lock
->lock_fd
, &term
, 1) != 1
1685 || close_ref(lock
) < 0) {
1686 error("Couldn't write %s", lock
->lk
->filename
);
1690 clear_loose_ref_cache(get_ref_cache(NULL
));
1691 if (log_ref_write(lock
->ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0 ||
1692 (strcmp(lock
->ref_name
, lock
->orig_ref_name
) &&
1693 log_ref_write(lock
->orig_ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0)) {
1697 if (strcmp(lock
->orig_ref_name
, "HEAD") != 0) {
1699 * Special hack: If a branch is updated directly and HEAD
1700 * points to it (may happen on the remote side of a push
1701 * for example) then logically the HEAD reflog should be
1703 * A generic solution implies reverse symref information,
1704 * but finding all symrefs pointing to the given branch
1705 * would be rather costly for this rare event (the direct
1706 * update of a branch) to be worth it. So let's cheat and
1707 * check with HEAD only which should cover 99% of all usage
1708 * scenarios (even 100% of the default ones).
1710 unsigned char head_sha1
[20];
1712 const char *head_ref
;
1713 head_ref
= resolve_ref("HEAD", head_sha1
, 1, &head_flag
);
1714 if (head_ref
&& (head_flag
& REF_ISSYMREF
) &&
1715 !strcmp(head_ref
, lock
->ref_name
))
1716 log_ref_write("HEAD", lock
->old_sha1
, sha1
, logmsg
);
1718 if (commit_ref(lock
)) {
1719 error("Couldn't set %s", lock
->ref_name
);
1727 int create_symref(const char *ref_target
, const char *refs_heads_master
,
1730 const char *lockpath
;
1732 int fd
, len
, written
;
1733 char *git_HEAD
= git_pathdup("%s", ref_target
);
1734 unsigned char old_sha1
[20], new_sha1
[20];
1736 if (logmsg
&& read_ref(ref_target
, old_sha1
))
1739 if (safe_create_leading_directories(git_HEAD
) < 0)
1740 return error("unable to create directory for %s", git_HEAD
);
1742 #ifndef NO_SYMLINK_HEAD
1743 if (prefer_symlink_refs
) {
1745 if (!symlink(refs_heads_master
, git_HEAD
))
1747 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
1751 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
1752 if (sizeof(ref
) <= len
) {
1753 error("refname too long: %s", refs_heads_master
);
1754 goto error_free_return
;
1756 lockpath
= mkpath("%s.lock", git_HEAD
);
1757 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1759 error("Unable to open %s for writing", lockpath
);
1760 goto error_free_return
;
1762 written
= write_in_full(fd
, ref
, len
);
1763 if (close(fd
) != 0 || written
!= len
) {
1764 error("Unable to write to %s", lockpath
);
1765 goto error_unlink_return
;
1767 if (rename(lockpath
, git_HEAD
) < 0) {
1768 error("Unable to create %s", git_HEAD
);
1769 goto error_unlink_return
;
1771 if (adjust_shared_perm(git_HEAD
)) {
1772 error("Unable to fix permissions on %s", lockpath
);
1773 error_unlink_return
:
1774 unlink_or_warn(lockpath
);
1780 #ifndef NO_SYMLINK_HEAD
1783 if (logmsg
&& !read_ref(refs_heads_master
, new_sha1
))
1784 log_ref_write(ref_target
, old_sha1
, new_sha1
, logmsg
);
1790 static char *ref_msg(const char *line
, const char *endp
)
1794 ep
= memchr(line
, '\n', endp
- line
);
1797 return xmemdupz(line
, ep
- line
);
1800 int read_ref_at(const char *refname
, unsigned long at_time
, int cnt
,
1801 unsigned char *sha1
, char **msg
,
1802 unsigned long *cutoff_time
, int *cutoff_tz
, int *cutoff_cnt
)
1804 const char *logfile
, *logdata
, *logend
, *rec
, *lastgt
, *lastrec
;
1806 int logfd
, tz
, reccnt
= 0;
1809 unsigned char logged_sha1
[20];
1813 logfile
= git_path("logs/%s", refname
);
1814 logfd
= open(logfile
, O_RDONLY
, 0);
1816 die_errno("Unable to read log '%s'", logfile
);
1819 die("Log %s is empty.", logfile
);
1820 mapsz
= xsize_t(st
.st_size
);
1821 log_mapped
= xmmap(NULL
, mapsz
, PROT_READ
, MAP_PRIVATE
, logfd
, 0);
1822 logdata
= log_mapped
;
1826 rec
= logend
= logdata
+ st
.st_size
;
1827 while (logdata
< rec
) {
1829 if (logdata
< rec
&& *(rec
-1) == '\n')
1832 while (logdata
< rec
&& *(rec
-1) != '\n') {
1838 die("Log %s is corrupt.", logfile
);
1839 date
= strtoul(lastgt
+ 1, &tz_c
, 10);
1840 if (date
<= at_time
|| cnt
== 0) {
1841 tz
= strtoul(tz_c
, NULL
, 10);
1843 *msg
= ref_msg(rec
, logend
);
1845 *cutoff_time
= date
;
1849 *cutoff_cnt
= reccnt
- 1;
1851 if (get_sha1_hex(lastrec
, logged_sha1
))
1852 die("Log %s is corrupt.", logfile
);
1853 if (get_sha1_hex(rec
+ 41, sha1
))
1854 die("Log %s is corrupt.", logfile
);
1855 if (hashcmp(logged_sha1
, sha1
)) {
1856 warning("Log %s has gap after %s.",
1857 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1860 else if (date
== at_time
) {
1861 if (get_sha1_hex(rec
+ 41, sha1
))
1862 die("Log %s is corrupt.", logfile
);
1865 if (get_sha1_hex(rec
+ 41, logged_sha1
))
1866 die("Log %s is corrupt.", logfile
);
1867 if (hashcmp(logged_sha1
, sha1
)) {
1868 warning("Log %s unexpectedly ended on %s.",
1869 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1872 munmap(log_mapped
, mapsz
);
1881 while (rec
< logend
&& *rec
!= '>' && *rec
!= '\n')
1883 if (rec
== logend
|| *rec
== '\n')
1884 die("Log %s is corrupt.", logfile
);
1885 date
= strtoul(rec
+ 1, &tz_c
, 10);
1886 tz
= strtoul(tz_c
, NULL
, 10);
1887 if (get_sha1_hex(logdata
, sha1
))
1888 die("Log %s is corrupt.", logfile
);
1889 if (is_null_sha1(sha1
)) {
1890 if (get_sha1_hex(logdata
+ 41, sha1
))
1891 die("Log %s is corrupt.", logfile
);
1894 *msg
= ref_msg(logdata
, logend
);
1895 munmap(log_mapped
, mapsz
);
1898 *cutoff_time
= date
;
1902 *cutoff_cnt
= reccnt
;
1906 int for_each_recent_reflog_ent(const char *refname
, each_reflog_ent_fn fn
, long ofs
, void *cb_data
)
1908 const char *logfile
;
1910 struct strbuf sb
= STRBUF_INIT
;
1913 logfile
= git_path("logs/%s", refname
);
1914 logfp
= fopen(logfile
, "r");
1919 struct stat statbuf
;
1920 if (fstat(fileno(logfp
), &statbuf
) ||
1921 statbuf
.st_size
< ofs
||
1922 fseek(logfp
, -ofs
, SEEK_END
) ||
1923 strbuf_getwholeline(&sb
, logfp
, '\n')) {
1925 strbuf_release(&sb
);
1930 while (!strbuf_getwholeline(&sb
, logfp
, '\n')) {
1931 unsigned char osha1
[20], nsha1
[20];
1932 char *email_end
, *message
;
1933 unsigned long timestamp
;
1936 /* old SP new SP name <email> SP time TAB msg LF */
1937 if (sb
.len
< 83 || sb
.buf
[sb
.len
- 1] != '\n' ||
1938 get_sha1_hex(sb
.buf
, osha1
) || sb
.buf
[40] != ' ' ||
1939 get_sha1_hex(sb
.buf
+ 41, nsha1
) || sb
.buf
[81] != ' ' ||
1940 !(email_end
= strchr(sb
.buf
+ 82, '>')) ||
1941 email_end
[1] != ' ' ||
1942 !(timestamp
= strtoul(email_end
+ 2, &message
, 10)) ||
1943 !message
|| message
[0] != ' ' ||
1944 (message
[1] != '+' && message
[1] != '-') ||
1945 !isdigit(message
[2]) || !isdigit(message
[3]) ||
1946 !isdigit(message
[4]) || !isdigit(message
[5]))
1947 continue; /* corrupt? */
1948 email_end
[1] = '\0';
1949 tz
= strtol(message
+ 1, NULL
, 10);
1950 if (message
[6] != '\t')
1954 ret
= fn(osha1
, nsha1
, sb
.buf
+ 82, timestamp
, tz
, message
,
1960 strbuf_release(&sb
);
1964 int for_each_reflog_ent(const char *refname
, each_reflog_ent_fn fn
, void *cb_data
)
1966 return for_each_recent_reflog_ent(refname
, fn
, 0, cb_data
);
1969 static int do_for_each_reflog(const char *base
, each_ref_fn fn
, void *cb_data
)
1971 DIR *dir
= opendir(git_path("logs/%s", base
));
1976 int baselen
= strlen(base
);
1977 char *log
= xmalloc(baselen
+ 257);
1979 memcpy(log
, base
, baselen
);
1980 if (baselen
&& base
[baselen
-1] != '/')
1981 log
[baselen
++] = '/';
1983 while ((de
= readdir(dir
)) != NULL
) {
1987 if (de
->d_name
[0] == '.')
1989 namelen
= strlen(de
->d_name
);
1992 if (has_extension(de
->d_name
, ".lock"))
1994 memcpy(log
+ baselen
, de
->d_name
, namelen
+1);
1995 if (stat(git_path("logs/%s", log
), &st
) < 0)
1997 if (S_ISDIR(st
.st_mode
)) {
1998 retval
= do_for_each_reflog(log
, fn
, cb_data
);
2000 unsigned char sha1
[20];
2001 if (read_ref_full(log
, sha1
, 0, NULL
))
2002 retval
= error("bad ref for %s", log
);
2004 retval
= fn(log
, sha1
, 0, cb_data
);
2017 int for_each_reflog(each_ref_fn fn
, void *cb_data
)
2019 return do_for_each_reflog("", fn
, cb_data
);
2022 int update_ref(const char *action
, const char *refname
,
2023 const unsigned char *sha1
, const unsigned char *oldval
,
2024 int flags
, enum action_on_err onerr
)
2026 static struct ref_lock
*lock
;
2027 lock
= lock_any_ref_for_update(refname
, oldval
, flags
);
2029 const char *str
= "Cannot lock the ref '%s'.";
2031 case MSG_ON_ERR
: error(str
, refname
); break;
2032 case DIE_ON_ERR
: die(str
, refname
); break;
2033 case QUIET_ON_ERR
: break;
2037 if (write_ref_sha1(lock
, sha1
, action
) < 0) {
2038 const char *str
= "Cannot update the ref '%s'.";
2040 case MSG_ON_ERR
: error(str
, refname
); break;
2041 case DIE_ON_ERR
: die(str
, refname
); break;
2042 case QUIET_ON_ERR
: break;
2049 int ref_exists(const char *refname
)
2051 unsigned char sha1
[20];
2052 return !!resolve_ref(refname
, sha1
, 1, NULL
);
2055 struct ref
*find_ref_by_name(const struct ref
*list
, const char *name
)
2057 for ( ; list
; list
= list
->next
)
2058 if (!strcmp(list
->name
, name
))
2059 return (struct ref
*)list
;
2064 * generate a format suitable for scanf from a ref_rev_parse_rules
2065 * rule, that is replace the "%.*s" spec with a "%s" spec
2067 static void gen_scanf_fmt(char *scanf_fmt
, const char *rule
)
2071 spec
= strstr(rule
, "%.*s");
2072 if (!spec
|| strstr(spec
+ 4, "%.*s"))
2073 die("invalid rule in ref_rev_parse_rules: %s", rule
);
2075 /* copy all until spec */
2076 strncpy(scanf_fmt
, rule
, spec
- rule
);
2077 scanf_fmt
[spec
- rule
] = '\0';
2079 strcat(scanf_fmt
, "%s");
2080 /* copy remaining rule */
2081 strcat(scanf_fmt
, spec
+ 4);
2086 char *shorten_unambiguous_ref(const char *refname
, int strict
)
2089 static char **scanf_fmts
;
2090 static int nr_rules
;
2093 /* pre generate scanf formats from ref_rev_parse_rules[] */
2095 size_t total_len
= 0;
2097 /* the rule list is NULL terminated, count them first */
2098 for (; ref_rev_parse_rules
[nr_rules
]; nr_rules
++)
2099 /* no +1 because strlen("%s") < strlen("%.*s") */
2100 total_len
+= strlen(ref_rev_parse_rules
[nr_rules
]);
2102 scanf_fmts
= xmalloc(nr_rules
* sizeof(char *) + total_len
);
2105 for (i
= 0; i
< nr_rules
; i
++) {
2106 scanf_fmts
[i
] = (char *)&scanf_fmts
[nr_rules
]
2108 gen_scanf_fmt(scanf_fmts
[i
], ref_rev_parse_rules
[i
]);
2109 total_len
+= strlen(ref_rev_parse_rules
[i
]);
2113 /* bail out if there are no rules */
2115 return xstrdup(refname
);
2117 /* buffer for scanf result, at most refname must fit */
2118 short_name
= xstrdup(refname
);
2120 /* skip first rule, it will always match */
2121 for (i
= nr_rules
- 1; i
> 0 ; --i
) {
2123 int rules_to_fail
= i
;
2126 if (1 != sscanf(refname
, scanf_fmts
[i
], short_name
))
2129 short_name_len
= strlen(short_name
);
2132 * in strict mode, all (except the matched one) rules
2133 * must fail to resolve to a valid non-ambiguous ref
2136 rules_to_fail
= nr_rules
;
2139 * check if the short name resolves to a valid ref,
2140 * but use only rules prior to the matched one
2142 for (j
= 0; j
< rules_to_fail
; j
++) {
2143 const char *rule
= ref_rev_parse_rules
[j
];
2144 char refname
[PATH_MAX
];
2146 /* skip matched rule */
2151 * the short name is ambiguous, if it resolves
2152 * (with this previous rule) to a valid ref
2153 * read_ref() returns 0 on success
2155 mksnpath(refname
, sizeof(refname
),
2156 rule
, short_name_len
, short_name
);
2157 if (ref_exists(refname
))
2162 * short name is non-ambiguous if all previous rules
2163 * haven't resolved to a valid ref
2165 if (j
== rules_to_fail
)
2170 return xstrdup(refname
);