7 /* ISSYMREF=01 and ISPACKED=02 are public interfaces */
8 #define REF_KNOWS_PEELED 04
12 unsigned char flag
; /* ISSYMREF? ISPACKED? */
13 unsigned char sha1
[20];
14 unsigned char peeled
[20];
15 char name
[FLEX_ARRAY
];
20 struct ref_entry
**refs
;
23 static const char *parse_ref_line(char *line
, unsigned char *sha1
)
26 * 42: the answer to everything.
28 * In this case, it happens to be the answer to
29 * 40 (length of sha1 hex representation)
30 * +1 (space in between hex and name)
31 * +1 (newline at the end of the line)
33 int len
= strlen(line
) - 42;
37 if (get_sha1_hex(line
, sha1
) < 0)
39 if (!isspace(line
[40]))
44 if (line
[len
] != '\n')
51 static void add_ref(const char *name
, const unsigned char *sha1
,
52 int flag
, struct ref_array
*refs
,
53 struct ref_entry
**new_entry
)
56 struct ref_entry
*entry
;
58 /* Allocate it and add it in.. */
59 len
= strlen(name
) + 1;
60 entry
= xmalloc(sizeof(struct ref_entry
) + len
);
61 hashcpy(entry
->sha1
, sha1
);
62 hashclr(entry
->peeled
);
63 memcpy(entry
->name
, name
, len
);
67 ALLOC_GROW(refs
->refs
, refs
->nr
+ 1, refs
->alloc
);
68 refs
->refs
[refs
->nr
++] = entry
;
71 static int ref_entry_cmp(const void *a
, const void *b
)
73 struct ref_entry
*one
= *(struct ref_entry
**)a
;
74 struct ref_entry
*two
= *(struct ref_entry
**)b
;
75 return strcmp(one
->name
, two
->name
);
78 static void sort_ref_array(struct ref_array
*array
)
82 /* Nothing to sort unless there are at least two entries */
86 qsort(array
->refs
, array
->nr
, sizeof(*array
->refs
), ref_entry_cmp
);
88 /* Remove any duplicates from the ref_array */
89 for (; j
< array
->nr
; j
++) {
90 struct ref_entry
*a
= array
->refs
[i
];
91 struct ref_entry
*b
= array
->refs
[j
];
92 if (!strcmp(a
->name
, b
->name
)) {
93 if (hashcmp(a
->sha1
, b
->sha1
))
94 die("Duplicated ref, and SHA1s don't match: %s",
96 warning("Duplicated ref: %s", a
->name
);
100 array
->refs
[i
] = array
->refs
[j
];
105 static struct ref_entry
*search_ref_array(struct ref_array
*array
, const char *name
)
107 struct ref_entry
*e
, **r
;
113 len
= strlen(name
) + 1;
114 e
= xmalloc(sizeof(struct ref_entry
) + len
);
115 memcpy(e
->name
, name
, len
);
117 r
= bsearch(&e
, array
->refs
, array
->nr
, sizeof(*array
->refs
), ref_entry_cmp
);
128 * Future: need to be in "struct repository"
129 * when doing a full libification.
131 static struct cached_refs
{
134 struct ref_array loose
;
135 struct ref_array packed
;
136 } cached_refs
, submodule_refs
;
137 static struct ref_entry
*current_ref
;
139 static struct ref_array extra_refs
;
141 static void free_ref_array(struct ref_array
*array
)
144 for (i
= 0; i
< array
->nr
; i
++)
145 free(array
->refs
[i
]);
147 array
->nr
= array
->alloc
= 0;
151 static void invalidate_cached_refs(void)
153 struct cached_refs
*ca
= &cached_refs
;
156 free_ref_array(&ca
->loose
);
158 free_ref_array(&ca
->packed
);
159 ca
->did_loose
= ca
->did_packed
= 0;
162 static void read_packed_refs(FILE *f
, struct cached_refs
*cached_refs
)
164 struct ref_entry
*last
= NULL
;
165 char refline
[PATH_MAX
];
166 int flag
= REF_ISPACKED
;
168 while (fgets(refline
, sizeof(refline
), f
)) {
169 unsigned char sha1
[20];
171 static const char header
[] = "# pack-refs with:";
173 if (!strncmp(refline
, header
, sizeof(header
)-1)) {
174 const char *traits
= refline
+ sizeof(header
) - 1;
175 if (strstr(traits
, " peeled "))
176 flag
|= REF_KNOWS_PEELED
;
177 /* perhaps other traits later as well */
181 name
= parse_ref_line(refline
, sha1
);
183 add_ref(name
, sha1
, flag
, &cached_refs
->packed
, &last
);
188 strlen(refline
) == 42 &&
189 refline
[41] == '\n' &&
190 !get_sha1_hex(refline
+ 1, sha1
))
191 hashcpy(last
->peeled
, sha1
);
193 sort_ref_array(&cached_refs
->packed
);
196 void add_extra_ref(const char *name
, const unsigned char *sha1
, int flag
)
198 add_ref(name
, sha1
, flag
, &extra_refs
, NULL
);
201 void clear_extra_refs(void)
203 free_ref_array(&extra_refs
);
206 static struct ref_array
*get_packed_refs(const char *submodule
)
208 const char *packed_refs_file
;
209 struct cached_refs
*refs
;
212 packed_refs_file
= git_path_submodule(submodule
, "packed-refs");
213 refs
= &submodule_refs
;
214 free_ref_array(&refs
->packed
);
216 packed_refs_file
= git_path("packed-refs");
220 if (!refs
->did_packed
|| submodule
) {
221 FILE *f
= fopen(packed_refs_file
, "r");
223 read_packed_refs(f
, refs
);
226 refs
->did_packed
= 1;
228 return &refs
->packed
;
231 static void get_ref_dir(const char *submodule
, const char *base
,
232 struct ref_array
*array
)
238 path
= git_path_submodule(submodule
, "%s", base
);
240 path
= git_path("%s", base
);
247 int baselen
= strlen(base
);
248 char *ref
= xmalloc(baselen
+ 257);
250 memcpy(ref
, base
, baselen
);
251 if (baselen
&& base
[baselen
-1] != '/')
252 ref
[baselen
++] = '/';
254 while ((de
= readdir(dir
)) != NULL
) {
255 unsigned char sha1
[20];
261 if (de
->d_name
[0] == '.')
263 namelen
= strlen(de
->d_name
);
266 if (has_extension(de
->d_name
, ".lock"))
268 memcpy(ref
+ baselen
, de
->d_name
, namelen
+1);
270 ? git_path_submodule(submodule
, "%s", ref
)
271 : git_path("%s", ref
);
272 if (stat(refdir
, &st
) < 0)
274 if (S_ISDIR(st
.st_mode
)) {
275 get_ref_dir(submodule
, ref
, array
);
281 if (resolve_gitlink_ref(submodule
, ref
, sha1
) < 0) {
286 if (!resolve_ref(ref
, sha1
, 1, &flag
)) {
290 add_ref(ref
, sha1
, flag
, array
, NULL
);
297 struct warn_if_dangling_data
{
303 static int warn_if_dangling_symref(const char *refname
, const unsigned char *sha1
,
304 int flags
, void *cb_data
)
306 struct warn_if_dangling_data
*d
= cb_data
;
307 const char *resolves_to
;
308 unsigned char junk
[20];
310 if (!(flags
& REF_ISSYMREF
))
313 resolves_to
= resolve_ref(refname
, junk
, 0, NULL
);
314 if (!resolves_to
|| strcmp(resolves_to
, d
->refname
))
317 fprintf(d
->fp
, d
->msg_fmt
, refname
);
321 void warn_dangling_symref(FILE *fp
, const char *msg_fmt
, const char *refname
)
323 struct warn_if_dangling_data data
;
326 data
.refname
= refname
;
327 data
.msg_fmt
= msg_fmt
;
328 for_each_rawref(warn_if_dangling_symref
, &data
);
331 static struct ref_array
*get_loose_refs(const char *submodule
)
334 free_ref_array(&submodule_refs
.loose
);
335 get_ref_dir(submodule
, "refs", &submodule_refs
.loose
);
336 sort_ref_array(&submodule_refs
.loose
);
337 return &submodule_refs
.loose
;
340 if (!cached_refs
.did_loose
) {
341 get_ref_dir(NULL
, "refs", &cached_refs
.loose
);
342 sort_ref_array(&cached_refs
.loose
);
343 cached_refs
.did_loose
= 1;
345 return &cached_refs
.loose
;
348 /* We allow "recursive" symbolic refs. Only within reason, though */
350 #define MAXREFLEN (1024)
352 static int resolve_gitlink_packed_ref(char *name
, int pathlen
, const char *refname
, unsigned char *result
)
355 struct cached_refs refs
;
356 struct ref_entry
*ref
;
359 strcpy(name
+ pathlen
, "packed-refs");
360 f
= fopen(name
, "r");
363 read_packed_refs(f
, &refs
);
365 ref
= search_ref_array(&refs
.packed
, refname
);
367 memcpy(result
, ref
->sha1
, 20);
370 free_ref_array(&refs
.packed
);
374 static int resolve_gitlink_ref_recursive(char *name
, int pathlen
, const char *refname
, unsigned char *result
, int recursion
)
376 int fd
, len
= strlen(refname
);
377 char buffer
[128], *p
;
379 if (recursion
> MAXDEPTH
|| len
> MAXREFLEN
)
381 memcpy(name
+ pathlen
, refname
, len
+1);
382 fd
= open(name
, O_RDONLY
);
384 return resolve_gitlink_packed_ref(name
, pathlen
, refname
, result
);
386 len
= read(fd
, buffer
, sizeof(buffer
)-1);
390 while (len
&& isspace(buffer
[len
-1]))
394 /* Was it a detached head or an old-fashioned symlink? */
395 if (!get_sha1_hex(buffer
, result
))
399 if (strncmp(buffer
, "ref:", 4))
405 return resolve_gitlink_ref_recursive(name
, pathlen
, p
, result
, recursion
+1);
408 int resolve_gitlink_ref(const char *path
, const char *refname
, unsigned char *result
)
410 int len
= strlen(path
), retval
;
414 while (len
&& path
[len
-1] == '/')
418 gitdir
= xmalloc(len
+ MAXREFLEN
+ 8);
419 memcpy(gitdir
, path
, len
);
420 memcpy(gitdir
+ len
, "/.git", 6);
423 tmp
= read_gitfile_gently(gitdir
);
427 gitdir
= xmalloc(len
+ MAXREFLEN
+ 3);
428 memcpy(gitdir
, tmp
, len
);
431 gitdir
[++len
] = '\0';
432 retval
= resolve_gitlink_ref_recursive(gitdir
, len
, refname
, result
, 0);
438 * If the "reading" argument is set, this function finds out what _object_
439 * the ref points at by "reading" the ref. The ref, if it is not symbolic,
440 * has to exist, and if it is symbolic, it has to point at an existing ref,
441 * because the "read" goes through the symref to the ref it points at.
443 * The access that is not "reading" may often be "writing", but does not
444 * have to; it can be merely checking _where it leads to_. If it is a
445 * prelude to "writing" to the ref, a write to a symref that points at
446 * yet-to-be-born ref will create the real ref pointed by the symref.
447 * reading=0 allows the caller to check where such a symref leads to.
449 const char *resolve_ref(const char *ref
, unsigned char *sha1
, int reading
, int *flag
)
451 int depth
= MAXDEPTH
;
454 static char ref_buffer
[256];
468 git_snpath(path
, sizeof(path
), "%s", ref
);
469 /* Special case: non-existing file. */
470 if (lstat(path
, &st
) < 0) {
471 struct ref_array
*packed
= get_packed_refs(NULL
);
472 struct ref_entry
*r
= search_ref_array(packed
, ref
);
474 hashcpy(sha1
, r
->sha1
);
476 *flag
|= REF_ISPACKED
;
479 if (reading
|| errno
!= ENOENT
)
485 /* Follow "normalized" - ie "refs/.." symlinks by hand */
486 if (S_ISLNK(st
.st_mode
)) {
487 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
488 if (len
>= 5 && !memcmp("refs/", buffer
, 5)) {
490 strcpy(ref_buffer
, buffer
);
493 *flag
|= REF_ISSYMREF
;
498 /* Is it a directory? */
499 if (S_ISDIR(st
.st_mode
)) {
505 * Anything else, just open it and try to use it as
508 fd
= open(path
, O_RDONLY
);
511 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
515 * Is it a symbolic ref?
517 if (len
< 4 || memcmp("ref:", buffer
, 4))
521 while (len
&& isspace(*buf
))
523 while (len
&& isspace(buf
[len
-1]))
526 memcpy(ref_buffer
, buf
, len
+ 1);
529 *flag
|= REF_ISSYMREF
;
531 if (len
< 40 || get_sha1_hex(buffer
, sha1
))
536 /* The argument to filter_refs */
543 int read_ref(const char *ref
, unsigned char *sha1
)
545 if (resolve_ref(ref
, sha1
, 1, NULL
))
550 #define DO_FOR_EACH_INCLUDE_BROKEN 01
551 static int do_one_ref(const char *base
, each_ref_fn fn
, int trim
,
552 int flags
, void *cb_data
, struct ref_entry
*entry
)
554 if (strncmp(base
, entry
->name
, trim
))
557 if (!(flags
& DO_FOR_EACH_INCLUDE_BROKEN
)) {
558 if (entry
->flag
& REF_BROKEN
)
559 return 0; /* ignore dangling symref */
560 if (!has_sha1_file(entry
->sha1
)) {
561 error("%s does not point to a valid object!", entry
->name
);
566 return fn(entry
->name
+ trim
, entry
->sha1
, entry
->flag
, cb_data
);
569 static int filter_refs(const char *ref
, const unsigned char *sha
, int flags
,
572 struct ref_filter
*filter
= (struct ref_filter
*)data
;
573 if (fnmatch(filter
->pattern
, ref
, 0))
575 return filter
->fn(ref
, sha
, flags
, filter
->cb_data
);
578 int peel_ref(const char *ref
, unsigned char *sha1
)
581 unsigned char base
[20];
584 if (current_ref
&& (current_ref
->name
== ref
585 || !strcmp(current_ref
->name
, ref
))) {
586 if (current_ref
->flag
& REF_KNOWS_PEELED
) {
587 hashcpy(sha1
, current_ref
->peeled
);
590 hashcpy(base
, current_ref
->sha1
);
594 if (!resolve_ref(ref
, base
, 1, &flag
))
597 if ((flag
& REF_ISPACKED
)) {
598 struct ref_array
*array
= get_packed_refs(NULL
);
599 struct ref_entry
*r
= search_ref_array(array
, ref
);
601 if (r
!= NULL
&& r
->flag
& REF_KNOWS_PEELED
) {
602 hashcpy(sha1
, r
->peeled
);
608 o
= parse_object(base
);
609 if (o
&& o
->type
== OBJ_TAG
) {
610 o
= deref_tag(o
, ref
, 0);
612 hashcpy(sha1
, o
->sha1
);
619 static int do_for_each_ref(const char *submodule
, const char *base
, each_ref_fn fn
,
620 int trim
, int flags
, void *cb_data
)
622 int retval
= 0, i
, p
= 0, l
= 0;
623 struct ref_array
*packed
= get_packed_refs(submodule
);
624 struct ref_array
*loose
= get_loose_refs(submodule
);
626 struct ref_array
*extra
= &extra_refs
;
628 for (i
= 0; i
< extra
->nr
; i
++)
629 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, extra
->refs
[i
]);
631 while (p
< packed
->nr
&& l
< loose
->nr
) {
632 struct ref_entry
*entry
;
633 int cmp
= strcmp(packed
->refs
[p
]->name
, loose
->refs
[l
]->name
);
639 entry
= loose
->refs
[l
++];
641 entry
= packed
->refs
[p
++];
643 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, entry
);
653 for (; p
< packed
->nr
; p
++) {
654 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, packed
->refs
[p
]);
665 static int do_head_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
667 unsigned char sha1
[20];
671 if (resolve_gitlink_ref(submodule
, "HEAD", sha1
) == 0)
672 return fn("HEAD", sha1
, 0, cb_data
);
677 if (resolve_ref("HEAD", sha1
, 1, &flag
))
678 return fn("HEAD", sha1
, flag
, cb_data
);
683 int head_ref(each_ref_fn fn
, void *cb_data
)
685 return do_head_ref(NULL
, fn
, cb_data
);
688 int head_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
690 return do_head_ref(submodule
, fn
, cb_data
);
693 int for_each_ref(each_ref_fn fn
, void *cb_data
)
695 return do_for_each_ref(NULL
, "refs/", fn
, 0, 0, cb_data
);
698 int for_each_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
700 return do_for_each_ref(submodule
, "refs/", fn
, 0, 0, cb_data
);
703 int for_each_ref_in(const char *prefix
, each_ref_fn fn
, void *cb_data
)
705 return do_for_each_ref(NULL
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
708 int for_each_ref_in_submodule(const char *submodule
, const char *prefix
,
709 each_ref_fn fn
, void *cb_data
)
711 return do_for_each_ref(submodule
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
714 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
716 return for_each_ref_in("refs/tags/", fn
, cb_data
);
719 int for_each_tag_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
721 return for_each_ref_in_submodule(submodule
, "refs/tags/", fn
, cb_data
);
724 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
726 return for_each_ref_in("refs/heads/", fn
, cb_data
);
729 int for_each_branch_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
731 return for_each_ref_in_submodule(submodule
, "refs/heads/", fn
, cb_data
);
734 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
736 return for_each_ref_in("refs/remotes/", fn
, cb_data
);
739 int for_each_remote_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
741 return for_each_ref_in_submodule(submodule
, "refs/remotes/", fn
, cb_data
);
744 int for_each_replace_ref(each_ref_fn fn
, void *cb_data
)
746 return do_for_each_ref(NULL
, "refs/replace/", fn
, 13, 0, cb_data
);
749 int for_each_glob_ref_in(each_ref_fn fn
, const char *pattern
,
750 const char *prefix
, void *cb_data
)
752 struct strbuf real_pattern
= STRBUF_INIT
;
753 struct ref_filter filter
;
756 if (!prefix
&& prefixcmp(pattern
, "refs/"))
757 strbuf_addstr(&real_pattern
, "refs/");
759 strbuf_addstr(&real_pattern
, prefix
);
760 strbuf_addstr(&real_pattern
, pattern
);
762 if (!has_glob_specials(pattern
)) {
763 /* Append implied '/' '*' if not present. */
764 if (real_pattern
.buf
[real_pattern
.len
- 1] != '/')
765 strbuf_addch(&real_pattern
, '/');
766 /* No need to check for '*', there is none. */
767 strbuf_addch(&real_pattern
, '*');
770 filter
.pattern
= real_pattern
.buf
;
772 filter
.cb_data
= cb_data
;
773 ret
= for_each_ref(filter_refs
, &filter
);
775 strbuf_release(&real_pattern
);
779 int for_each_glob_ref(each_ref_fn fn
, const char *pattern
, void *cb_data
)
781 return for_each_glob_ref_in(fn
, pattern
, NULL
, cb_data
);
784 int for_each_rawref(each_ref_fn fn
, void *cb_data
)
786 return do_for_each_ref(NULL
, "refs/", fn
, 0,
787 DO_FOR_EACH_INCLUDE_BROKEN
, cb_data
);
791 * Make sure "ref" is something reasonable to have under ".git/refs/";
792 * We do not like it if:
794 * - any path component of it begins with ".", or
795 * - it has double dots "..", or
796 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
797 * - it ends with a "/".
798 * - it ends with ".lock"
799 * - it contains a "\" (backslash)
802 static inline int bad_ref_char(int ch
)
804 if (((unsigned) ch
) <= ' ' ||
805 ch
== '~' || ch
== '^' || ch
== ':' || ch
== '\\')
807 /* 2.13 Pattern Matching Notation */
808 if (ch
== '?' || ch
== '[') /* Unsupported */
810 if (ch
== '*') /* Supported at the end */
815 int check_ref_format(const char *ref
)
817 int ch
, level
, bad_type
, last
;
818 int ret
= CHECK_REF_FORMAT_OK
;
819 const char *cp
= ref
;
823 while ((ch
= *cp
++) == '/')
824 ; /* tolerate duplicated slashes */
826 /* should not end with slashes */
827 return CHECK_REF_FORMAT_ERROR
;
829 /* we are at the beginning of the path component */
831 return CHECK_REF_FORMAT_ERROR
;
832 bad_type
= bad_ref_char(ch
);
834 if (bad_type
== 2 && (!*cp
|| *cp
== '/') &&
835 ret
== CHECK_REF_FORMAT_OK
)
836 ret
= CHECK_REF_FORMAT_WILDCARD
;
838 return CHECK_REF_FORMAT_ERROR
;
842 /* scan the rest of the path component */
843 while ((ch
= *cp
++) != 0) {
844 bad_type
= bad_ref_char(ch
);
846 return CHECK_REF_FORMAT_ERROR
;
849 if (last
== '.' && ch
== '.')
850 return CHECK_REF_FORMAT_ERROR
;
851 if (last
== '@' && ch
== '{')
852 return CHECK_REF_FORMAT_ERROR
;
857 if (ref
<= cp
- 2 && cp
[-2] == '.')
858 return CHECK_REF_FORMAT_ERROR
;
860 return CHECK_REF_FORMAT_ONELEVEL
;
861 if (has_extension(ref
, ".lock"))
862 return CHECK_REF_FORMAT_ERROR
;
868 const char *prettify_refname(const char *name
)
871 !prefixcmp(name
, "refs/heads/") ? 11 :
872 !prefixcmp(name
, "refs/tags/") ? 10 :
873 !prefixcmp(name
, "refs/remotes/") ? 13 :
877 const char *ref_rev_parse_rules
[] = {
883 "refs/remotes/%.*s/HEAD",
887 const char *ref_fetch_rules
[] = {
894 int refname_match(const char *abbrev_name
, const char *full_name
, const char **rules
)
897 const int abbrev_name_len
= strlen(abbrev_name
);
899 for (p
= rules
; *p
; p
++) {
900 if (!strcmp(full_name
, mkpath(*p
, abbrev_name_len
, abbrev_name
))) {
908 static struct ref_lock
*verify_lock(struct ref_lock
*lock
,
909 const unsigned char *old_sha1
, int mustexist
)
911 if (!resolve_ref(lock
->ref_name
, lock
->old_sha1
, mustexist
, NULL
)) {
912 error("Can't verify ref %s", lock
->ref_name
);
916 if (hashcmp(lock
->old_sha1
, old_sha1
)) {
917 error("Ref %s is at %s but expected %s", lock
->ref_name
,
918 sha1_to_hex(lock
->old_sha1
), sha1_to_hex(old_sha1
));
925 static int remove_empty_directories(const char *file
)
927 /* we want to create a file but there is a directory there;
928 * if that is an empty directory (or a directory that contains
929 * only empty directories), remove them.
934 strbuf_init(&path
, 20);
935 strbuf_addstr(&path
, file
);
937 result
= remove_dir_recursively(&path
, REMOVE_DIR_EMPTY_ONLY
);
939 strbuf_release(&path
);
944 static int is_refname_available(const char *ref
, const char *oldref
,
945 struct ref_array
*array
, int quiet
)
947 int i
, namlen
= strlen(ref
); /* e.g. 'foo/bar' */
948 for (i
= 0; i
< array
->nr
; i
++ ) {
949 struct ref_entry
*entry
= array
->refs
[i
];
950 /* entry->name could be 'foo' or 'foo/bar/baz' */
951 if (!oldref
|| strcmp(oldref
, entry
->name
)) {
952 int len
= strlen(entry
->name
);
953 int cmplen
= (namlen
< len
) ? namlen
: len
;
954 const char *lead
= (namlen
< len
) ? entry
->name
: ref
;
955 if (!strncmp(ref
, entry
->name
, cmplen
) &&
956 lead
[cmplen
] == '/') {
958 error("'%s' exists; cannot create '%s'",
967 static struct ref_lock
*lock_ref_sha1_basic(const char *ref
, const unsigned char *old_sha1
, int flags
, int *type_p
)
970 const char *orig_ref
= ref
;
971 struct ref_lock
*lock
;
974 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
977 lock
= xcalloc(1, sizeof(struct ref_lock
));
980 ref
= resolve_ref(ref
, lock
->old_sha1
, mustexist
, &type
);
981 if (!ref
&& errno
== EISDIR
) {
982 /* we are trying to lock foo but we used to
983 * have foo/bar which now does not exist;
984 * it is normal for the empty directory 'foo'
987 ref_file
= git_path("%s", orig_ref
);
988 if (remove_empty_directories(ref_file
)) {
990 error("there are still refs under '%s'", orig_ref
);
993 ref
= resolve_ref(orig_ref
, lock
->old_sha1
, mustexist
, &type
);
999 error("unable to resolve reference %s: %s",
1000 orig_ref
, strerror(errno
));
1003 missing
= is_null_sha1(lock
->old_sha1
);
1004 /* When the ref did not exist and we are creating it,
1005 * make sure there is no existing ref that is packed
1006 * whose name begins with our refname, nor a ref whose
1007 * name is a proper prefix of our refname.
1010 !is_refname_available(ref
, NULL
, get_packed_refs(NULL
), 0)) {
1011 last_errno
= ENOTDIR
;
1015 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
1017 lflags
= LOCK_DIE_ON_ERROR
;
1018 if (flags
& REF_NODEREF
) {
1020 lflags
|= LOCK_NODEREF
;
1022 lock
->ref_name
= xstrdup(ref
);
1023 lock
->orig_ref_name
= xstrdup(orig_ref
);
1024 ref_file
= git_path("%s", ref
);
1026 lock
->force_write
= 1;
1027 if ((flags
& REF_NODEREF
) && (type
& REF_ISSYMREF
))
1028 lock
->force_write
= 1;
1030 if (safe_create_leading_directories(ref_file
)) {
1032 error("unable to create directory for %s", ref_file
);
1036 lock
->lock_fd
= hold_lock_file_for_update(lock
->lk
, ref_file
, lflags
);
1037 return old_sha1
? verify_lock(lock
, old_sha1
, mustexist
) : lock
;
1045 struct ref_lock
*lock_ref_sha1(const char *ref
, const unsigned char *old_sha1
)
1047 char refpath
[PATH_MAX
];
1048 if (check_ref_format(ref
))
1050 strcpy(refpath
, mkpath("refs/%s", ref
));
1051 return lock_ref_sha1_basic(refpath
, old_sha1
, 0, NULL
);
1054 struct ref_lock
*lock_any_ref_for_update(const char *ref
, const unsigned char *old_sha1
, int flags
)
1056 switch (check_ref_format(ref
)) {
1060 case CHECK_REF_FORMAT_ONELEVEL
:
1061 return lock_ref_sha1_basic(ref
, old_sha1
, flags
, NULL
);
1065 static struct lock_file packlock
;
1067 static int repack_without_ref(const char *refname
)
1069 struct ref_array
*packed
;
1070 struct ref_entry
*ref
;
1073 packed
= get_packed_refs(NULL
);
1074 ref
= search_ref_array(packed
, refname
);
1077 fd
= hold_lock_file_for_update(&packlock
, git_path("packed-refs"), 0);
1079 unable_to_lock_error(git_path("packed-refs"), errno
);
1080 return error("cannot delete '%s' from packed refs", refname
);
1083 for (i
= 0; i
< packed
->nr
; i
++) {
1084 char line
[PATH_MAX
+ 100];
1087 ref
= packed
->refs
[i
];
1089 if (!strcmp(refname
, ref
->name
))
1091 len
= snprintf(line
, sizeof(line
), "%s %s\n",
1092 sha1_to_hex(ref
->sha1
), ref
->name
);
1093 /* this should not happen but just being defensive */
1094 if (len
> sizeof(line
))
1095 die("too long a refname '%s'", ref
->name
);
1096 write_or_die(fd
, line
, len
);
1098 return commit_lock_file(&packlock
);
1101 int delete_ref(const char *refname
, const unsigned char *sha1
, int delopt
)
1103 struct ref_lock
*lock
;
1104 int err
, i
= 0, ret
= 0, flag
= 0;
1106 lock
= lock_ref_sha1_basic(refname
, sha1
, 0, &flag
);
1109 if (!(flag
& REF_ISPACKED
) || flag
& REF_ISSYMREF
) {
1113 if (!(delopt
& REF_NODEREF
)) {
1114 i
= strlen(lock
->lk
->filename
) - 5; /* .lock */
1115 lock
->lk
->filename
[i
] = 0;
1116 path
= lock
->lk
->filename
;
1118 path
= git_path("%s", refname
);
1120 err
= unlink_or_warn(path
);
1121 if (err
&& errno
!= ENOENT
)
1124 if (!(delopt
& REF_NODEREF
))
1125 lock
->lk
->filename
[i
] = '.';
1127 /* removing the loose one could have resurrected an earlier
1128 * packed one. Also, if it was not loose we need to repack
1131 ret
|= repack_without_ref(refname
);
1133 unlink_or_warn(git_path("logs/%s", lock
->ref_name
));
1134 invalidate_cached_refs();
1140 * People using contrib's git-new-workdir have .git/logs/refs ->
1141 * /some/other/path/.git/logs/refs, and that may live on another device.
1143 * IOW, to avoid cross device rename errors, the temporary renamed log must
1144 * live into logs/refs.
1146 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
1148 int rename_ref(const char *oldref
, const char *newref
, const char *logmsg
)
1150 static const char renamed_ref
[] = "RENAMED-REF";
1151 unsigned char sha1
[20], orig_sha1
[20];
1152 int flag
= 0, logmoved
= 0;
1153 struct ref_lock
*lock
;
1154 struct stat loginfo
;
1155 int log
= !lstat(git_path("logs/%s", oldref
), &loginfo
);
1156 const char *symref
= NULL
;
1158 if (log
&& S_ISLNK(loginfo
.st_mode
))
1159 return error("reflog for %s is a symlink", oldref
);
1161 symref
= resolve_ref(oldref
, orig_sha1
, 1, &flag
);
1162 if (flag
& REF_ISSYMREF
)
1163 return error("refname %s is a symbolic ref, renaming it is not supported",
1166 return error("refname %s not found", oldref
);
1168 if (!is_refname_available(newref
, oldref
, get_packed_refs(NULL
), 0))
1171 if (!is_refname_available(newref
, oldref
, get_loose_refs(NULL
), 0))
1174 lock
= lock_ref_sha1_basic(renamed_ref
, NULL
, 0, NULL
);
1176 return error("unable to lock %s", renamed_ref
);
1177 lock
->force_write
= 1;
1178 if (write_ref_sha1(lock
, orig_sha1
, logmsg
))
1179 return error("unable to save current sha1 in %s", renamed_ref
);
1181 if (log
&& rename(git_path("logs/%s", oldref
), git_path(TMP_RENAMED_LOG
)))
1182 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG
": %s",
1183 oldref
, strerror(errno
));
1185 if (delete_ref(oldref
, orig_sha1
, REF_NODEREF
)) {
1186 error("unable to delete old %s", oldref
);
1190 if (resolve_ref(newref
, sha1
, 1, &flag
) && delete_ref(newref
, sha1
, REF_NODEREF
)) {
1191 if (errno
==EISDIR
) {
1192 if (remove_empty_directories(git_path("%s", newref
))) {
1193 error("Directory not empty: %s", newref
);
1197 error("unable to delete existing %s", newref
);
1202 if (log
&& safe_create_leading_directories(git_path("logs/%s", newref
))) {
1203 error("unable to create directory for %s", newref
);
1208 if (log
&& rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", newref
))) {
1209 if (errno
==EISDIR
|| errno
==ENOTDIR
) {
1211 * rename(a, b) when b is an existing
1212 * directory ought to result in ISDIR, but
1213 * Solaris 5.8 gives ENOTDIR. Sheesh.
1215 if (remove_empty_directories(git_path("logs/%s", newref
))) {
1216 error("Directory not empty: logs/%s", newref
);
1221 error("unable to move logfile "TMP_RENAMED_LOG
" to logs/%s: %s",
1222 newref
, strerror(errno
));
1228 lock
= lock_ref_sha1_basic(newref
, NULL
, 0, NULL
);
1230 error("unable to lock %s for update", newref
);
1233 lock
->force_write
= 1;
1234 hashcpy(lock
->old_sha1
, orig_sha1
);
1235 if (write_ref_sha1(lock
, orig_sha1
, logmsg
)) {
1236 error("unable to write current sha1 into %s", newref
);
1243 lock
= lock_ref_sha1_basic(oldref
, NULL
, 0, NULL
);
1245 error("unable to lock %s for rollback", oldref
);
1249 lock
->force_write
= 1;
1250 flag
= log_all_ref_updates
;
1251 log_all_ref_updates
= 0;
1252 if (write_ref_sha1(lock
, orig_sha1
, NULL
))
1253 error("unable to write current sha1 into %s", oldref
);
1254 log_all_ref_updates
= flag
;
1257 if (logmoved
&& rename(git_path("logs/%s", newref
), git_path("logs/%s", oldref
)))
1258 error("unable to restore logfile %s from %s: %s",
1259 oldref
, newref
, strerror(errno
));
1260 if (!logmoved
&& log
&&
1261 rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", oldref
)))
1262 error("unable to restore logfile %s from "TMP_RENAMED_LOG
": %s",
1263 oldref
, strerror(errno
));
1268 int close_ref(struct ref_lock
*lock
)
1270 if (close_lock_file(lock
->lk
))
1276 int commit_ref(struct ref_lock
*lock
)
1278 if (commit_lock_file(lock
->lk
))
1284 void unlock_ref(struct ref_lock
*lock
)
1286 /* Do not free lock->lk -- atexit() still looks at them */
1288 rollback_lock_file(lock
->lk
);
1289 free(lock
->ref_name
);
1290 free(lock
->orig_ref_name
);
1295 * copy the reflog message msg to buf, which has been allocated sufficiently
1296 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1297 * because reflog file is one line per entry.
1299 static int copy_msg(char *buf
, const char *msg
)
1306 while ((c
= *msg
++)) {
1307 if (wasspace
&& isspace(c
))
1309 wasspace
= isspace(c
);
1314 while (buf
< cp
&& isspace(cp
[-1]))
1320 int log_ref_setup(const char *ref_name
, char *logfile
, int bufsize
)
1322 int logfd
, oflags
= O_APPEND
| O_WRONLY
;
1324 git_snpath(logfile
, bufsize
, "logs/%s", ref_name
);
1325 if (log_all_ref_updates
&&
1326 (!prefixcmp(ref_name
, "refs/heads/") ||
1327 !prefixcmp(ref_name
, "refs/remotes/") ||
1328 !prefixcmp(ref_name
, "refs/notes/") ||
1329 !strcmp(ref_name
, "HEAD"))) {
1330 if (safe_create_leading_directories(logfile
) < 0)
1331 return error("unable to create directory for %s",
1336 logfd
= open(logfile
, oflags
, 0666);
1338 if (!(oflags
& O_CREAT
) && errno
== ENOENT
)
1341 if ((oflags
& O_CREAT
) && errno
== EISDIR
) {
1342 if (remove_empty_directories(logfile
)) {
1343 return error("There are still logs under '%s'",
1346 logfd
= open(logfile
, oflags
, 0666);
1350 return error("Unable to append to %s: %s",
1351 logfile
, strerror(errno
));
1354 adjust_shared_perm(logfile
);
1359 static int log_ref_write(const char *ref_name
, const unsigned char *old_sha1
,
1360 const unsigned char *new_sha1
, const char *msg
)
1362 int logfd
, result
, written
, oflags
= O_APPEND
| O_WRONLY
;
1363 unsigned maxlen
, len
;
1365 char log_file
[PATH_MAX
];
1367 const char *committer
;
1369 if (log_all_ref_updates
< 0)
1370 log_all_ref_updates
= !is_bare_repository();
1372 result
= log_ref_setup(ref_name
, log_file
, sizeof(log_file
));
1376 logfd
= open(log_file
, oflags
);
1379 msglen
= msg
? strlen(msg
) : 0;
1380 committer
= git_committer_info(0);
1381 maxlen
= strlen(committer
) + msglen
+ 100;
1382 logrec
= xmalloc(maxlen
);
1383 len
= sprintf(logrec
, "%s %s %s\n",
1384 sha1_to_hex(old_sha1
),
1385 sha1_to_hex(new_sha1
),
1388 len
+= copy_msg(logrec
+ len
- 1, msg
) - 1;
1389 written
= len
<= maxlen
? write_in_full(logfd
, logrec
, len
) : -1;
1391 if (close(logfd
) != 0 || written
!= len
)
1392 return error("Unable to append to %s", log_file
);
1396 static int is_branch(const char *refname
)
1398 return !strcmp(refname
, "HEAD") || !prefixcmp(refname
, "refs/heads/");
1401 int write_ref_sha1(struct ref_lock
*lock
,
1402 const unsigned char *sha1
, const char *logmsg
)
1404 static char term
= '\n';
1409 if (!lock
->force_write
&& !hashcmp(lock
->old_sha1
, sha1
)) {
1413 o
= parse_object(sha1
);
1415 error("Trying to write ref %s with nonexistant object %s",
1416 lock
->ref_name
, sha1_to_hex(sha1
));
1420 if (o
->type
!= OBJ_COMMIT
&& is_branch(lock
->ref_name
)) {
1421 error("Trying to write non-commit object %s to branch %s",
1422 sha1_to_hex(sha1
), lock
->ref_name
);
1426 if (write_in_full(lock
->lock_fd
, sha1_to_hex(sha1
), 40) != 40 ||
1427 write_in_full(lock
->lock_fd
, &term
, 1) != 1
1428 || close_ref(lock
) < 0) {
1429 error("Couldn't write %s", lock
->lk
->filename
);
1433 invalidate_cached_refs();
1434 if (log_ref_write(lock
->ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0 ||
1435 (strcmp(lock
->ref_name
, lock
->orig_ref_name
) &&
1436 log_ref_write(lock
->orig_ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0)) {
1440 if (strcmp(lock
->orig_ref_name
, "HEAD") != 0) {
1442 * Special hack: If a branch is updated directly and HEAD
1443 * points to it (may happen on the remote side of a push
1444 * for example) then logically the HEAD reflog should be
1446 * A generic solution implies reverse symref information,
1447 * but finding all symrefs pointing to the given branch
1448 * would be rather costly for this rare event (the direct
1449 * update of a branch) to be worth it. So let's cheat and
1450 * check with HEAD only which should cover 99% of all usage
1451 * scenarios (even 100% of the default ones).
1453 unsigned char head_sha1
[20];
1455 const char *head_ref
;
1456 head_ref
= resolve_ref("HEAD", head_sha1
, 1, &head_flag
);
1457 if (head_ref
&& (head_flag
& REF_ISSYMREF
) &&
1458 !strcmp(head_ref
, lock
->ref_name
))
1459 log_ref_write("HEAD", lock
->old_sha1
, sha1
, logmsg
);
1461 if (commit_ref(lock
)) {
1462 error("Couldn't set %s", lock
->ref_name
);
1470 int create_symref(const char *ref_target
, const char *refs_heads_master
,
1473 const char *lockpath
;
1475 int fd
, len
, written
;
1476 char *git_HEAD
= git_pathdup("%s", ref_target
);
1477 unsigned char old_sha1
[20], new_sha1
[20];
1479 if (logmsg
&& read_ref(ref_target
, old_sha1
))
1482 if (safe_create_leading_directories(git_HEAD
) < 0)
1483 return error("unable to create directory for %s", git_HEAD
);
1485 #ifndef NO_SYMLINK_HEAD
1486 if (prefer_symlink_refs
) {
1488 if (!symlink(refs_heads_master
, git_HEAD
))
1490 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
1494 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
1495 if (sizeof(ref
) <= len
) {
1496 error("refname too long: %s", refs_heads_master
);
1497 goto error_free_return
;
1499 lockpath
= mkpath("%s.lock", git_HEAD
);
1500 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1502 error("Unable to open %s for writing", lockpath
);
1503 goto error_free_return
;
1505 written
= write_in_full(fd
, ref
, len
);
1506 if (close(fd
) != 0 || written
!= len
) {
1507 error("Unable to write to %s", lockpath
);
1508 goto error_unlink_return
;
1510 if (rename(lockpath
, git_HEAD
) < 0) {
1511 error("Unable to create %s", git_HEAD
);
1512 goto error_unlink_return
;
1514 if (adjust_shared_perm(git_HEAD
)) {
1515 error("Unable to fix permissions on %s", lockpath
);
1516 error_unlink_return
:
1517 unlink_or_warn(lockpath
);
1523 #ifndef NO_SYMLINK_HEAD
1526 if (logmsg
&& !read_ref(refs_heads_master
, new_sha1
))
1527 log_ref_write(ref_target
, old_sha1
, new_sha1
, logmsg
);
1533 static char *ref_msg(const char *line
, const char *endp
)
1537 ep
= memchr(line
, '\n', endp
- line
);
1540 return xmemdupz(line
, ep
- line
);
1543 int read_ref_at(const char *ref
, unsigned long at_time
, int cnt
, unsigned char *sha1
, char **msg
, unsigned long *cutoff_time
, int *cutoff_tz
, int *cutoff_cnt
)
1545 const char *logfile
, *logdata
, *logend
, *rec
, *lastgt
, *lastrec
;
1547 int logfd
, tz
, reccnt
= 0;
1550 unsigned char logged_sha1
[20];
1554 logfile
= git_path("logs/%s", ref
);
1555 logfd
= open(logfile
, O_RDONLY
, 0);
1557 die_errno("Unable to read log '%s'", logfile
);
1560 die("Log %s is empty.", logfile
);
1561 mapsz
= xsize_t(st
.st_size
);
1562 log_mapped
= xmmap(NULL
, mapsz
, PROT_READ
, MAP_PRIVATE
, logfd
, 0);
1563 logdata
= log_mapped
;
1567 rec
= logend
= logdata
+ st
.st_size
;
1568 while (logdata
< rec
) {
1570 if (logdata
< rec
&& *(rec
-1) == '\n')
1573 while (logdata
< rec
&& *(rec
-1) != '\n') {
1579 die("Log %s is corrupt.", logfile
);
1580 date
= strtoul(lastgt
+ 1, &tz_c
, 10);
1581 if (date
<= at_time
|| cnt
== 0) {
1582 tz
= strtoul(tz_c
, NULL
, 10);
1584 *msg
= ref_msg(rec
, logend
);
1586 *cutoff_time
= date
;
1590 *cutoff_cnt
= reccnt
- 1;
1592 if (get_sha1_hex(lastrec
, logged_sha1
))
1593 die("Log %s is corrupt.", logfile
);
1594 if (get_sha1_hex(rec
+ 41, sha1
))
1595 die("Log %s is corrupt.", logfile
);
1596 if (hashcmp(logged_sha1
, sha1
)) {
1597 warning("Log %s has gap after %s.",
1598 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1601 else if (date
== at_time
) {
1602 if (get_sha1_hex(rec
+ 41, sha1
))
1603 die("Log %s is corrupt.", logfile
);
1606 if (get_sha1_hex(rec
+ 41, logged_sha1
))
1607 die("Log %s is corrupt.", logfile
);
1608 if (hashcmp(logged_sha1
, sha1
)) {
1609 warning("Log %s unexpectedly ended on %s.",
1610 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1613 munmap(log_mapped
, mapsz
);
1622 while (rec
< logend
&& *rec
!= '>' && *rec
!= '\n')
1624 if (rec
== logend
|| *rec
== '\n')
1625 die("Log %s is corrupt.", logfile
);
1626 date
= strtoul(rec
+ 1, &tz_c
, 10);
1627 tz
= strtoul(tz_c
, NULL
, 10);
1628 if (get_sha1_hex(logdata
, sha1
))
1629 die("Log %s is corrupt.", logfile
);
1630 if (is_null_sha1(sha1
)) {
1631 if (get_sha1_hex(logdata
+ 41, sha1
))
1632 die("Log %s is corrupt.", logfile
);
1635 *msg
= ref_msg(logdata
, logend
);
1636 munmap(log_mapped
, mapsz
);
1639 *cutoff_time
= date
;
1643 *cutoff_cnt
= reccnt
;
1647 int for_each_recent_reflog_ent(const char *ref
, each_reflog_ent_fn fn
, long ofs
, void *cb_data
)
1649 const char *logfile
;
1651 struct strbuf sb
= STRBUF_INIT
;
1654 logfile
= git_path("logs/%s", ref
);
1655 logfp
= fopen(logfile
, "r");
1660 struct stat statbuf
;
1661 if (fstat(fileno(logfp
), &statbuf
) ||
1662 statbuf
.st_size
< ofs
||
1663 fseek(logfp
, -ofs
, SEEK_END
) ||
1664 strbuf_getwholeline(&sb
, logfp
, '\n')) {
1666 strbuf_release(&sb
);
1671 while (!strbuf_getwholeline(&sb
, logfp
, '\n')) {
1672 unsigned char osha1
[20], nsha1
[20];
1673 char *email_end
, *message
;
1674 unsigned long timestamp
;
1677 /* old SP new SP name <email> SP time TAB msg LF */
1678 if (sb
.len
< 83 || sb
.buf
[sb
.len
- 1] != '\n' ||
1679 get_sha1_hex(sb
.buf
, osha1
) || sb
.buf
[40] != ' ' ||
1680 get_sha1_hex(sb
.buf
+ 41, nsha1
) || sb
.buf
[81] != ' ' ||
1681 !(email_end
= strchr(sb
.buf
+ 82, '>')) ||
1682 email_end
[1] != ' ' ||
1683 !(timestamp
= strtoul(email_end
+ 2, &message
, 10)) ||
1684 !message
|| message
[0] != ' ' ||
1685 (message
[1] != '+' && message
[1] != '-') ||
1686 !isdigit(message
[2]) || !isdigit(message
[3]) ||
1687 !isdigit(message
[4]) || !isdigit(message
[5]))
1688 continue; /* corrupt? */
1689 email_end
[1] = '\0';
1690 tz
= strtol(message
+ 1, NULL
, 10);
1691 if (message
[6] != '\t')
1695 ret
= fn(osha1
, nsha1
, sb
.buf
+ 82, timestamp
, tz
, message
,
1701 strbuf_release(&sb
);
1705 int for_each_reflog_ent(const char *ref
, each_reflog_ent_fn fn
, void *cb_data
)
1707 return for_each_recent_reflog_ent(ref
, fn
, 0, cb_data
);
1710 static int do_for_each_reflog(const char *base
, each_ref_fn fn
, void *cb_data
)
1712 DIR *dir
= opendir(git_path("logs/%s", base
));
1717 int baselen
= strlen(base
);
1718 char *log
= xmalloc(baselen
+ 257);
1720 memcpy(log
, base
, baselen
);
1721 if (baselen
&& base
[baselen
-1] != '/')
1722 log
[baselen
++] = '/';
1724 while ((de
= readdir(dir
)) != NULL
) {
1728 if (de
->d_name
[0] == '.')
1730 namelen
= strlen(de
->d_name
);
1733 if (has_extension(de
->d_name
, ".lock"))
1735 memcpy(log
+ baselen
, de
->d_name
, namelen
+1);
1736 if (stat(git_path("logs/%s", log
), &st
) < 0)
1738 if (S_ISDIR(st
.st_mode
)) {
1739 retval
= do_for_each_reflog(log
, fn
, cb_data
);
1741 unsigned char sha1
[20];
1742 if (!resolve_ref(log
, sha1
, 0, NULL
))
1743 retval
= error("bad ref for %s", log
);
1745 retval
= fn(log
, sha1
, 0, cb_data
);
1758 int for_each_reflog(each_ref_fn fn
, void *cb_data
)
1760 return do_for_each_reflog("", fn
, cb_data
);
1763 int update_ref(const char *action
, const char *refname
,
1764 const unsigned char *sha1
, const unsigned char *oldval
,
1765 int flags
, enum action_on_err onerr
)
1767 static struct ref_lock
*lock
;
1768 lock
= lock_any_ref_for_update(refname
, oldval
, flags
);
1770 const char *str
= "Cannot lock the ref '%s'.";
1772 case MSG_ON_ERR
: error(str
, refname
); break;
1773 case DIE_ON_ERR
: die(str
, refname
); break;
1774 case QUIET_ON_ERR
: break;
1778 if (write_ref_sha1(lock
, sha1
, action
) < 0) {
1779 const char *str
= "Cannot update the ref '%s'.";
1781 case MSG_ON_ERR
: error(str
, refname
); break;
1782 case DIE_ON_ERR
: die(str
, refname
); break;
1783 case QUIET_ON_ERR
: break;
1790 struct ref
*find_ref_by_name(const struct ref
*list
, const char *name
)
1792 for ( ; list
; list
= list
->next
)
1793 if (!strcmp(list
->name
, name
))
1794 return (struct ref
*)list
;
1799 * generate a format suitable for scanf from a ref_rev_parse_rules
1800 * rule, that is replace the "%.*s" spec with a "%s" spec
1802 static void gen_scanf_fmt(char *scanf_fmt
, const char *rule
)
1806 spec
= strstr(rule
, "%.*s");
1807 if (!spec
|| strstr(spec
+ 4, "%.*s"))
1808 die("invalid rule in ref_rev_parse_rules: %s", rule
);
1810 /* copy all until spec */
1811 strncpy(scanf_fmt
, rule
, spec
- rule
);
1812 scanf_fmt
[spec
- rule
] = '\0';
1814 strcat(scanf_fmt
, "%s");
1815 /* copy remaining rule */
1816 strcat(scanf_fmt
, spec
+ 4);
1821 char *shorten_unambiguous_ref(const char *ref
, int strict
)
1824 static char **scanf_fmts
;
1825 static int nr_rules
;
1828 /* pre generate scanf formats from ref_rev_parse_rules[] */
1830 size_t total_len
= 0;
1832 /* the rule list is NULL terminated, count them first */
1833 for (; ref_rev_parse_rules
[nr_rules
]; nr_rules
++)
1834 /* no +1 because strlen("%s") < strlen("%.*s") */
1835 total_len
+= strlen(ref_rev_parse_rules
[nr_rules
]);
1837 scanf_fmts
= xmalloc(nr_rules
* sizeof(char *) + total_len
);
1840 for (i
= 0; i
< nr_rules
; i
++) {
1841 scanf_fmts
[i
] = (char *)&scanf_fmts
[nr_rules
]
1843 gen_scanf_fmt(scanf_fmts
[i
], ref_rev_parse_rules
[i
]);
1844 total_len
+= strlen(ref_rev_parse_rules
[i
]);
1848 /* bail out if there are no rules */
1850 return xstrdup(ref
);
1852 /* buffer for scanf result, at most ref must fit */
1853 short_name
= xstrdup(ref
);
1855 /* skip first rule, it will always match */
1856 for (i
= nr_rules
- 1; i
> 0 ; --i
) {
1858 int rules_to_fail
= i
;
1861 if (1 != sscanf(ref
, scanf_fmts
[i
], short_name
))
1864 short_name_len
= strlen(short_name
);
1867 * in strict mode, all (except the matched one) rules
1868 * must fail to resolve to a valid non-ambiguous ref
1871 rules_to_fail
= nr_rules
;
1874 * check if the short name resolves to a valid ref,
1875 * but use only rules prior to the matched one
1877 for (j
= 0; j
< rules_to_fail
; j
++) {
1878 const char *rule
= ref_rev_parse_rules
[j
];
1879 unsigned char short_objectname
[20];
1880 char refname
[PATH_MAX
];
1882 /* skip matched rule */
1887 * the short name is ambiguous, if it resolves
1888 * (with this previous rule) to a valid ref
1889 * read_ref() returns 0 on success
1891 mksnpath(refname
, sizeof(refname
),
1892 rule
, short_name_len
, short_name
);
1893 if (!read_ref(refname
, short_objectname
))
1898 * short name is non-ambiguous if all previous rules
1899 * haven't resolved to a valid ref
1901 if (j
== rules_to_fail
)
1906 return xstrdup(ref
);