6 /* ISSYMREF=01 and ISPACKED=02 are public interfaces */
7 #define REF_KNOWS_PEELED 04
10 struct ref_list
*next
;
11 unsigned char flag
; /* ISSYMREF? ISPACKED? */
12 unsigned char sha1
[20];
13 unsigned char peeled
[20];
14 char name
[FLEX_ARRAY
];
17 static const char *parse_ref_line(char *line
, unsigned char *sha1
)
20 * 42: the answer to everything.
22 * In this case, it happens to be the answer to
23 * 40 (length of sha1 hex representation)
24 * +1 (space in between hex and name)
25 * +1 (newline at the end of the line)
27 int len
= strlen(line
) - 42;
31 if (get_sha1_hex(line
, sha1
) < 0)
33 if (!isspace(line
[40]))
38 if (line
[len
] != '\n')
45 static struct ref_list
*add_ref(const char *name
, const unsigned char *sha1
,
46 int flag
, struct ref_list
*list
,
47 struct ref_list
**new_entry
)
50 struct ref_list
*entry
;
52 /* Allocate it and add it in.. */
53 len
= strlen(name
) + 1;
54 entry
= xmalloc(sizeof(struct ref_list
) + len
);
55 hashcpy(entry
->sha1
, sha1
);
56 hashclr(entry
->peeled
);
57 memcpy(entry
->name
, name
, len
);
65 /* merge sort the ref list */
66 static struct ref_list
*sort_ref_list(struct ref_list
*list
)
68 int psize
, qsize
, last_merge_count
, cmp
;
69 struct ref_list
*p
, *q
, *l
, *e
;
70 struct ref_list
*new_list
= list
;
78 last_merge_count
= merge_count
;
91 while (psize
< k
&& q
->next
) {
97 while ((psize
> 0) || (qsize
> 0 && q
)) {
98 if (qsize
== 0 || !q
) {
102 } else if (psize
== 0) {
107 cmp
= strcmp(q
->name
, p
->name
);
112 } else if (cmp
> 0) {
117 if (hashcmp(q
->sha1
, p
->sha1
))
118 die("Duplicated ref, and SHA1s don't match: %s",
120 warning("Duplicated ref: %s", q
->name
);
144 } while ((last_merge_count
!= merge_count
) || (last_merge_count
!= 1));
150 * Future: need to be in "struct repository"
151 * when doing a full libification.
153 static struct cached_refs
{
156 struct ref_list
*loose
;
157 struct ref_list
*packed
;
160 static void free_ref_list(struct ref_list
*list
)
162 struct ref_list
*next
;
163 for ( ; list
; list
= next
) {
169 static void invalidate_cached_refs(void)
171 struct cached_refs
*ca
= &cached_refs
;
173 if (ca
->did_loose
&& ca
->loose
)
174 free_ref_list(ca
->loose
);
175 if (ca
->did_packed
&& ca
->packed
)
176 free_ref_list(ca
->packed
);
177 ca
->loose
= ca
->packed
= NULL
;
178 ca
->did_loose
= ca
->did_packed
= 0;
181 static void read_packed_refs(FILE *f
, struct cached_refs
*cached_refs
)
183 struct ref_list
*list
= NULL
;
184 struct ref_list
*last
= NULL
;
185 char refline
[PATH_MAX
];
186 int flag
= REF_ISPACKED
;
188 while (fgets(refline
, sizeof(refline
), f
)) {
189 unsigned char sha1
[20];
191 static const char header
[] = "# pack-refs with:";
193 if (!strncmp(refline
, header
, sizeof(header
)-1)) {
194 const char *traits
= refline
+ sizeof(header
) - 1;
195 if (strstr(traits
, " peeled "))
196 flag
|= REF_KNOWS_PEELED
;
197 /* perhaps other traits later as well */
201 name
= parse_ref_line(refline
, sha1
);
203 list
= add_ref(name
, sha1
, flag
, list
, &last
);
208 strlen(refline
) == 42 &&
209 refline
[41] == '\n' &&
210 !get_sha1_hex(refline
+ 1, sha1
))
211 hashcpy(last
->peeled
, sha1
);
213 cached_refs
->packed
= sort_ref_list(list
);
216 static struct ref_list
*get_packed_refs(void)
218 if (!cached_refs
.did_packed
) {
219 FILE *f
= fopen(git_path("packed-refs"), "r");
220 cached_refs
.packed
= NULL
;
222 read_packed_refs(f
, &cached_refs
);
225 cached_refs
.did_packed
= 1;
227 return cached_refs
.packed
;
230 static struct ref_list
*get_ref_dir(const char *base
, struct ref_list
*list
)
232 DIR *dir
= opendir(git_path("%s", base
));
236 int baselen
= strlen(base
);
237 char *ref
= xmalloc(baselen
+ 257);
239 memcpy(ref
, base
, baselen
);
240 if (baselen
&& base
[baselen
-1] != '/')
241 ref
[baselen
++] = '/';
243 while ((de
= readdir(dir
)) != NULL
) {
244 unsigned char sha1
[20];
249 if (de
->d_name
[0] == '.')
251 namelen
= strlen(de
->d_name
);
254 if (has_extension(de
->d_name
, ".lock"))
256 memcpy(ref
+ baselen
, de
->d_name
, namelen
+1);
257 if (stat(git_path("%s", ref
), &st
) < 0)
259 if (S_ISDIR(st
.st_mode
)) {
260 list
= get_ref_dir(ref
, list
);
263 if (!resolve_ref(ref
, sha1
, 1, &flag
)) {
264 error("%s points nowhere!", ref
);
267 list
= add_ref(ref
, sha1
, flag
, list
, NULL
);
272 return sort_ref_list(list
);
275 static struct ref_list
*get_loose_refs(void)
277 if (!cached_refs
.did_loose
) {
278 cached_refs
.loose
= get_ref_dir("refs", NULL
);
279 cached_refs
.did_loose
= 1;
281 return cached_refs
.loose
;
284 /* We allow "recursive" symbolic refs. Only within reason, though */
286 #define MAXREFLEN (1024)
288 static int resolve_gitlink_packed_ref(char *name
, int pathlen
, const char *refname
, unsigned char *result
)
291 struct cached_refs refs
;
292 struct ref_list
*ref
;
295 strcpy(name
+ pathlen
, "packed-refs");
296 f
= fopen(name
, "r");
299 read_packed_refs(f
, &refs
);
304 if (!strcmp(ref
->name
, refname
)) {
306 memcpy(result
, ref
->sha1
, 20);
311 free_ref_list(refs
.packed
);
315 static int resolve_gitlink_ref_recursive(char *name
, int pathlen
, const char *refname
, unsigned char *result
, int recursion
)
317 int fd
, len
= strlen(refname
);
318 char buffer
[128], *p
;
320 if (recursion
> MAXDEPTH
|| len
> MAXREFLEN
)
322 memcpy(name
+ pathlen
, refname
, len
+1);
323 fd
= open(name
, O_RDONLY
);
325 return resolve_gitlink_packed_ref(name
, pathlen
, refname
, result
);
327 len
= read(fd
, buffer
, sizeof(buffer
)-1);
331 while (len
&& isspace(buffer
[len
-1]))
335 /* Was it a detached head or an old-fashioned symlink? */
336 if (!get_sha1_hex(buffer
, result
))
340 if (strncmp(buffer
, "ref:", 4))
346 return resolve_gitlink_ref_recursive(name
, pathlen
, p
, result
, recursion
+1);
349 int resolve_gitlink_ref(const char *path
, const char *refname
, unsigned char *result
)
351 int len
= strlen(path
), retval
;
354 while (len
&& path
[len
-1] == '/')
358 gitdir
= xmalloc(len
+ MAXREFLEN
+ 8);
359 memcpy(gitdir
, path
, len
);
360 memcpy(gitdir
+ len
, "/.git/", 7);
362 retval
= resolve_gitlink_ref_recursive(gitdir
, len
+6, refname
, result
, 0);
367 const char *resolve_ref(const char *ref
, unsigned char *sha1
, int reading
, int *flag
)
369 int depth
= MAXDEPTH
, len
;
371 static char ref_buffer
[256];
377 const char *path
= git_path("%s", ref
);
385 /* Special case: non-existing file.
386 * Not having the refs/heads/new-branch is OK
387 * if we are writing into it, so is .git/HEAD
388 * that points at refs/heads/master still to be
389 * born. It is NOT OK if we are resolving for
392 if (lstat(path
, &st
) < 0) {
393 struct ref_list
*list
= get_packed_refs();
395 if (!strcmp(ref
, list
->name
)) {
396 hashcpy(sha1
, list
->sha1
);
398 *flag
|= REF_ISPACKED
;
403 if (reading
|| errno
!= ENOENT
)
409 /* Follow "normalized" - ie "refs/.." symlinks by hand */
410 if (S_ISLNK(st
.st_mode
)) {
411 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
412 if (len
>= 5 && !memcmp("refs/", buffer
, 5)) {
414 strcpy(ref_buffer
, buffer
);
417 *flag
|= REF_ISSYMREF
;
422 /* Is it a directory? */
423 if (S_ISDIR(st
.st_mode
)) {
429 * Anything else, just open it and try to use it as
432 fd
= open(path
, O_RDONLY
);
435 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
439 * Is it a symbolic ref?
441 if (len
< 4 || memcmp("ref:", buffer
, 4))
445 while (len
&& isspace(*buf
))
447 while (len
&& isspace(buf
[len
-1]))
450 memcpy(ref_buffer
, buf
, len
+ 1);
453 *flag
|= REF_ISSYMREF
;
455 if (len
< 40 || get_sha1_hex(buffer
, sha1
))
460 int read_ref(const char *ref
, unsigned char *sha1
)
462 if (resolve_ref(ref
, sha1
, 1, NULL
))
467 static int do_one_ref(const char *base
, each_ref_fn fn
, int trim
,
468 void *cb_data
, struct ref_list
*entry
)
470 if (strncmp(base
, entry
->name
, trim
))
472 if (is_null_sha1(entry
->sha1
))
474 if (!has_sha1_file(entry
->sha1
)) {
475 error("%s does not point to a valid object!", entry
->name
);
478 return fn(entry
->name
+ trim
, entry
->sha1
, entry
->flag
, cb_data
);
481 int peel_ref(const char *ref
, unsigned char *sha1
)
484 unsigned char base
[20];
487 if (!resolve_ref(ref
, base
, 1, &flag
))
490 if ((flag
& REF_ISPACKED
)) {
491 struct ref_list
*list
= get_packed_refs();
494 if (!strcmp(list
->name
, ref
)) {
495 if (list
->flag
& REF_KNOWS_PEELED
) {
496 hashcpy(sha1
, list
->peeled
);
499 /* older pack-refs did not leave peeled ones */
506 /* fallback - callers should not call this for unpacked refs */
507 o
= parse_object(base
);
508 if (o
->type
== OBJ_TAG
) {
509 o
= deref_tag(o
, ref
, 0);
511 hashcpy(sha1
, o
->sha1
);
518 static int do_for_each_ref(const char *base
, each_ref_fn fn
, int trim
,
522 struct ref_list
*packed
= get_packed_refs();
523 struct ref_list
*loose
= get_loose_refs();
525 while (packed
&& loose
) {
526 struct ref_list
*entry
;
527 int cmp
= strcmp(packed
->name
, loose
->name
);
529 packed
= packed
->next
;
537 packed
= packed
->next
;
539 retval
= do_one_ref(base
, fn
, trim
, cb_data
, entry
);
544 for (packed
= packed
? packed
: loose
; packed
; packed
= packed
->next
) {
545 retval
= do_one_ref(base
, fn
, trim
, cb_data
, packed
);
552 int head_ref(each_ref_fn fn
, void *cb_data
)
554 unsigned char sha1
[20];
557 if (resolve_ref("HEAD", sha1
, 1, &flag
))
558 return fn("HEAD", sha1
, flag
, cb_data
);
562 int for_each_ref(each_ref_fn fn
, void *cb_data
)
564 return do_for_each_ref("refs/", fn
, 0, cb_data
);
567 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
569 return do_for_each_ref("refs/tags/", fn
, 10, cb_data
);
572 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
574 return do_for_each_ref("refs/heads/", fn
, 11, cb_data
);
577 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
579 return do_for_each_ref("refs/remotes/", fn
, 13, cb_data
);
582 /* NEEDSWORK: This is only used by ssh-upload and it should go; the
583 * caller should do resolve_ref or read_ref like everybody else. Or
584 * maybe everybody else should use get_ref_sha1() instead of doing
587 int get_ref_sha1(const char *ref
, unsigned char *sha1
)
589 if (check_ref_format(ref
))
591 return read_ref(mkpath("refs/%s", ref
), sha1
);
595 * Make sure "ref" is something reasonable to have under ".git/refs/";
596 * We do not like it if:
598 * - any path component of it begins with ".", or
599 * - it has double dots "..", or
600 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
601 * - it ends with a "/".
604 static inline int bad_ref_char(int ch
)
606 if (((unsigned) ch
) <= ' ' ||
607 ch
== '~' || ch
== '^' || ch
== ':')
609 /* 2.13 Pattern Matching Notation */
610 if (ch
== '?' || ch
== '[') /* Unsupported */
612 if (ch
== '*') /* Supported at the end */
617 int check_ref_format(const char *ref
)
619 int ch
, level
, bad_type
;
620 const char *cp
= ref
;
624 while ((ch
= *cp
++) == '/')
625 ; /* tolerate duplicated slashes */
627 return -1; /* should not end with slashes */
629 /* we are at the beginning of the path component */
632 bad_type
= bad_ref_char(ch
);
634 return (bad_type
== 2 && !*cp
) ? -3 : -1;
637 /* scan the rest of the path component */
638 while ((ch
= *cp
++) != 0) {
639 bad_type
= bad_ref_char(ch
);
641 return (bad_type
== 2 && !*cp
) ? -3 : -1;
645 if (ch
== '.' && *cp
== '.')
651 return -2; /* at least of form "heads/blah" */
657 static struct ref_lock
*verify_lock(struct ref_lock
*lock
,
658 const unsigned char *old_sha1
, int mustexist
)
660 if (!resolve_ref(lock
->ref_name
, lock
->old_sha1
, mustexist
, NULL
)) {
661 error("Can't verify ref %s", lock
->ref_name
);
665 if (hashcmp(lock
->old_sha1
, old_sha1
)) {
666 error("Ref %s is at %s but expected %s", lock
->ref_name
,
667 sha1_to_hex(lock
->old_sha1
), sha1_to_hex(old_sha1
));
674 static int remove_empty_dir_recursive(char *path
, int len
)
676 DIR *dir
= opendir(path
);
682 if (path
[len
-1] != '/')
684 while ((e
= readdir(dir
)) != NULL
) {
687 if ((e
->d_name
[0] == '.') &&
688 ((e
->d_name
[1] == 0) ||
689 ((e
->d_name
[1] == '.') && e
->d_name
[2] == 0)))
690 continue; /* "." and ".." */
692 namlen
= strlen(e
->d_name
);
693 if ((len
+ namlen
< PATH_MAX
) &&
694 strcpy(path
+ len
, e
->d_name
) &&
696 S_ISDIR(st
.st_mode
) &&
697 !remove_empty_dir_recursive(path
, len
+ namlen
))
698 continue; /* happy */
700 /* path too long, stat fails, or non-directory still exists */
712 static int remove_empty_directories(char *file
)
714 /* we want to create a file but there is a directory there;
715 * if that is an empty directory (or a directory that contains
716 * only empty directories), remove them.
719 int len
= strlen(file
);
721 if (len
>= PATH_MAX
) /* path too long ;-) */
724 return remove_empty_dir_recursive(path
, len
);
727 static int is_refname_available(const char *ref
, const char *oldref
,
728 struct ref_list
*list
, int quiet
)
730 int namlen
= strlen(ref
); /* e.g. 'foo/bar' */
732 /* list->name could be 'foo' or 'foo/bar/baz' */
733 if (!oldref
|| strcmp(oldref
, list
->name
)) {
734 int len
= strlen(list
->name
);
735 int cmplen
= (namlen
< len
) ? namlen
: len
;
736 const char *lead
= (namlen
< len
) ? list
->name
: ref
;
737 if (!strncmp(ref
, list
->name
, cmplen
) &&
738 lead
[cmplen
] == '/') {
740 error("'%s' exists; cannot create '%s'",
750 static struct ref_lock
*lock_ref_sha1_basic(const char *ref
, const unsigned char *old_sha1
, int flags
, int *type_p
)
753 const char *orig_ref
= ref
;
754 struct ref_lock
*lock
;
758 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
760 lock
= xcalloc(1, sizeof(struct ref_lock
));
763 ref
= resolve_ref(ref
, lock
->old_sha1
, mustexist
, &type
);
764 if (!ref
&& errno
== EISDIR
) {
765 /* we are trying to lock foo but we used to
766 * have foo/bar which now does not exist;
767 * it is normal for the empty directory 'foo'
770 ref_file
= git_path("%s", orig_ref
);
771 if (remove_empty_directories(ref_file
)) {
773 error("there are still refs under '%s'", orig_ref
);
776 ref
= resolve_ref(orig_ref
, lock
->old_sha1
, mustexist
, &type
);
782 error("unable to resolve reference %s: %s",
783 orig_ref
, strerror(errno
));
786 /* When the ref did not exist and we are creating it,
787 * make sure there is no existing ref that is packed
788 * whose name begins with our refname, nor a ref whose
789 * name is a proper prefix of our refname.
791 if (is_null_sha1(lock
->old_sha1
) &&
792 !is_refname_available(ref
, NULL
, get_packed_refs(), 0))
795 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
797 if (flags
& REF_NODEREF
)
799 lock
->ref_name
= xstrdup(ref
);
800 lock
->orig_ref_name
= xstrdup(orig_ref
);
801 ref_file
= git_path("%s", ref
);
802 if (lstat(ref_file
, &st
) && errno
== ENOENT
)
803 lock
->force_write
= 1;
804 if ((flags
& REF_NODEREF
) && (type
& REF_ISSYMREF
))
805 lock
->force_write
= 1;
807 if (safe_create_leading_directories(ref_file
)) {
809 error("unable to create directory for %s", ref_file
);
812 lock
->lock_fd
= hold_lock_file_for_update(lock
->lk
, ref_file
, 1);
814 return old_sha1
? verify_lock(lock
, old_sha1
, mustexist
) : lock
;
822 struct ref_lock
*lock_ref_sha1(const char *ref
, const unsigned char *old_sha1
)
824 char refpath
[PATH_MAX
];
825 if (check_ref_format(ref
))
827 strcpy(refpath
, mkpath("refs/%s", ref
));
828 return lock_ref_sha1_basic(refpath
, old_sha1
, 0, NULL
);
831 struct ref_lock
*lock_any_ref_for_update(const char *ref
, const unsigned char *old_sha1
, int flags
)
833 if (check_ref_format(ref
) == -1)
835 return lock_ref_sha1_basic(ref
, old_sha1
, flags
, NULL
);
838 static struct lock_file packlock
;
840 static int repack_without_ref(const char *refname
)
842 struct ref_list
*list
, *packed_ref_list
;
846 packed_ref_list
= get_packed_refs();
847 for (list
= packed_ref_list
; list
; list
= list
->next
) {
848 if (!strcmp(refname
, list
->name
)) {
855 fd
= hold_lock_file_for_update(&packlock
, git_path("packed-refs"), 0);
857 return error("cannot delete '%s' from packed refs", refname
);
859 for (list
= packed_ref_list
; list
; list
= list
->next
) {
860 char line
[PATH_MAX
+ 100];
863 if (!strcmp(refname
, list
->name
))
865 len
= snprintf(line
, sizeof(line
), "%s %s\n",
866 sha1_to_hex(list
->sha1
), list
->name
);
867 /* this should not happen but just being defensive */
868 if (len
> sizeof(line
))
869 die("too long a refname '%s'", list
->name
);
870 write_or_die(fd
, line
, len
);
873 return commit_lock_file(&packlock
);
876 int delete_ref(const char *refname
, const unsigned char *sha1
)
878 struct ref_lock
*lock
;
879 int err
, i
, ret
= 0, flag
= 0;
881 lock
= lock_ref_sha1_basic(refname
, sha1
, 0, &flag
);
884 if (!(flag
& REF_ISPACKED
)) {
886 i
= strlen(lock
->lk
->filename
) - 5; /* .lock */
887 lock
->lk
->filename
[i
] = 0;
888 err
= unlink(lock
->lk
->filename
);
891 error("unlink(%s) failed: %s",
892 lock
->lk
->filename
, strerror(errno
));
894 lock
->lk
->filename
[i
] = '.';
896 /* removing the loose one could have resurrected an earlier
897 * packed one. Also, if it was not loose we need to repack
900 ret
|= repack_without_ref(refname
);
902 err
= unlink(git_path("logs/%s", lock
->ref_name
));
903 if (err
&& errno
!= ENOENT
)
904 fprintf(stderr
, "warning: unlink(%s) failed: %s",
905 git_path("logs/%s", lock
->ref_name
), strerror(errno
));
906 invalidate_cached_refs();
911 int rename_ref(const char *oldref
, const char *newref
, const char *logmsg
)
913 static const char renamed_ref
[] = "RENAMED-REF";
914 unsigned char sha1
[20], orig_sha1
[20];
915 int flag
= 0, logmoved
= 0;
916 struct ref_lock
*lock
;
918 int log
= !lstat(git_path("logs/%s", oldref
), &loginfo
);
920 if (S_ISLNK(loginfo
.st_mode
))
921 return error("reflog for %s is a symlink", oldref
);
923 if (!resolve_ref(oldref
, orig_sha1
, 1, &flag
))
924 return error("refname %s not found", oldref
);
926 if (!is_refname_available(newref
, oldref
, get_packed_refs(), 0))
929 if (!is_refname_available(newref
, oldref
, get_loose_refs(), 0))
932 lock
= lock_ref_sha1_basic(renamed_ref
, NULL
, 0, NULL
);
934 return error("unable to lock %s", renamed_ref
);
935 lock
->force_write
= 1;
936 if (write_ref_sha1(lock
, orig_sha1
, logmsg
))
937 return error("unable to save current sha1 in %s", renamed_ref
);
939 if (log
&& rename(git_path("logs/%s", oldref
), git_path("tmp-renamed-log")))
940 return error("unable to move logfile logs/%s to tmp-renamed-log: %s",
941 oldref
, strerror(errno
));
943 if (delete_ref(oldref
, orig_sha1
)) {
944 error("unable to delete old %s", oldref
);
948 if (resolve_ref(newref
, sha1
, 1, &flag
) && delete_ref(newref
, sha1
)) {
950 if (remove_empty_directories(git_path("%s", newref
))) {
951 error("Directory not empty: %s", newref
);
955 error("unable to delete existing %s", newref
);
960 if (log
&& safe_create_leading_directories(git_path("logs/%s", newref
))) {
961 error("unable to create directory for %s", newref
);
966 if (log
&& rename(git_path("tmp-renamed-log"), git_path("logs/%s", newref
))) {
967 if (errno
==EISDIR
|| errno
==ENOTDIR
) {
969 * rename(a, b) when b is an existing
970 * directory ought to result in ISDIR, but
971 * Solaris 5.8 gives ENOTDIR. Sheesh.
973 if (remove_empty_directories(git_path("logs/%s", newref
))) {
974 error("Directory not empty: logs/%s", newref
);
979 error("unable to move logfile tmp-renamed-log to logs/%s: %s",
980 newref
, strerror(errno
));
986 lock
= lock_ref_sha1_basic(newref
, NULL
, 0, NULL
);
988 error("unable to lock %s for update", newref
);
992 lock
->force_write
= 1;
993 hashcpy(lock
->old_sha1
, orig_sha1
);
994 if (write_ref_sha1(lock
, orig_sha1
, logmsg
)) {
995 error("unable to write current sha1 into %s", newref
);
1002 lock
= lock_ref_sha1_basic(oldref
, NULL
, 0, NULL
);
1004 error("unable to lock %s for rollback", oldref
);
1008 lock
->force_write
= 1;
1009 flag
= log_all_ref_updates
;
1010 log_all_ref_updates
= 0;
1011 if (write_ref_sha1(lock
, orig_sha1
, NULL
))
1012 error("unable to write current sha1 into %s", oldref
);
1013 log_all_ref_updates
= flag
;
1016 if (logmoved
&& rename(git_path("logs/%s", newref
), git_path("logs/%s", oldref
)))
1017 error("unable to restore logfile %s from %s: %s",
1018 oldref
, newref
, strerror(errno
));
1019 if (!logmoved
&& log
&&
1020 rename(git_path("tmp-renamed-log"), git_path("logs/%s", oldref
)))
1021 error("unable to restore logfile %s from tmp-renamed-log: %s",
1022 oldref
, strerror(errno
));
1027 void unlock_ref(struct ref_lock
*lock
)
1029 if (lock
->lock_fd
>= 0) {
1030 close(lock
->lock_fd
);
1031 /* Do not free lock->lk -- atexit() still looks at them */
1033 rollback_lock_file(lock
->lk
);
1035 free(lock
->ref_name
);
1036 free(lock
->orig_ref_name
);
1041 * copy the reflog message msg to buf, which has been allocated sufficiently
1042 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1043 * because reflog file is one line per entry.
1045 static int copy_msg(char *buf
, const char *msg
)
1052 while ((c
= *msg
++)) {
1053 if (wasspace
&& isspace(c
))
1055 wasspace
= isspace(c
);
1060 while (buf
< cp
&& isspace(cp
[-1]))
1066 static int log_ref_write(const char *ref_name
, const unsigned char *old_sha1
,
1067 const unsigned char *new_sha1
, const char *msg
)
1069 int logfd
, written
, oflags
= O_APPEND
| O_WRONLY
;
1070 unsigned maxlen
, len
;
1072 char *log_file
, *logrec
;
1073 const char *committer
;
1075 if (log_all_ref_updates
< 0)
1076 log_all_ref_updates
= !is_bare_repository();
1078 log_file
= git_path("logs/%s", ref_name
);
1080 if (log_all_ref_updates
&&
1081 (!prefixcmp(ref_name
, "refs/heads/") ||
1082 !prefixcmp(ref_name
, "refs/remotes/") ||
1083 !strcmp(ref_name
, "HEAD"))) {
1084 if (safe_create_leading_directories(log_file
) < 0)
1085 return error("unable to create directory for %s",
1090 logfd
= open(log_file
, oflags
, 0666);
1092 if (!(oflags
& O_CREAT
) && errno
== ENOENT
)
1095 if ((oflags
& O_CREAT
) && errno
== EISDIR
) {
1096 if (remove_empty_directories(log_file
)) {
1097 return error("There are still logs under '%s'",
1100 logfd
= open(log_file
, oflags
, 0666);
1104 return error("Unable to append to %s: %s",
1105 log_file
, strerror(errno
));
1108 adjust_shared_perm(log_file
);
1110 msglen
= msg
? strlen(msg
) : 0;
1111 committer
= git_committer_info(-1);
1112 maxlen
= strlen(committer
) + msglen
+ 100;
1113 logrec
= xmalloc(maxlen
);
1114 len
= sprintf(logrec
, "%s %s %s\n",
1115 sha1_to_hex(old_sha1
),
1116 sha1_to_hex(new_sha1
),
1119 len
+= copy_msg(logrec
+ len
- 1, msg
) - 1;
1120 written
= len
<= maxlen
? write_in_full(logfd
, logrec
, len
) : -1;
1122 if (close(logfd
) != 0 || written
!= len
)
1123 return error("Unable to append to %s", log_file
);
1127 int write_ref_sha1(struct ref_lock
*lock
,
1128 const unsigned char *sha1
, const char *logmsg
)
1130 static char term
= '\n';
1134 if (!lock
->force_write
&& !hashcmp(lock
->old_sha1
, sha1
)) {
1138 if (write_in_full(lock
->lock_fd
, sha1_to_hex(sha1
), 40) != 40 ||
1139 write_in_full(lock
->lock_fd
, &term
, 1) != 1
1140 || close(lock
->lock_fd
) < 0) {
1141 error("Couldn't write %s", lock
->lk
->filename
);
1145 invalidate_cached_refs();
1146 if (log_ref_write(lock
->ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0 ||
1147 (strcmp(lock
->ref_name
, lock
->orig_ref_name
) &&
1148 log_ref_write(lock
->orig_ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0)) {
1152 if (strcmp(lock
->orig_ref_name
, "HEAD") != 0) {
1154 * Special hack: If a branch is updated directly and HEAD
1155 * points to it (may happen on the remote side of a push
1156 * for example) then logically the HEAD reflog should be
1158 * A generic solution implies reverse symref information,
1159 * but finding all symrefs pointing to the given branch
1160 * would be rather costly for this rare event (the direct
1161 * update of a branch) to be worth it. So let's cheat and
1162 * check with HEAD only which should cover 99% of all usage
1163 * scenarios (even 100% of the default ones).
1165 unsigned char head_sha1
[20];
1167 const char *head_ref
;
1168 head_ref
= resolve_ref("HEAD", head_sha1
, 1, &head_flag
);
1169 if (head_ref
&& (head_flag
& REF_ISSYMREF
) &&
1170 !strcmp(head_ref
, lock
->ref_name
))
1171 log_ref_write("HEAD", lock
->old_sha1
, sha1
, logmsg
);
1173 if (commit_lock_file(lock
->lk
)) {
1174 error("Couldn't set %s", lock
->ref_name
);
1183 int create_symref(const char *ref_target
, const char *refs_heads_master
,
1186 const char *lockpath
;
1188 int fd
, len
, written
;
1189 char *git_HEAD
= xstrdup(git_path("%s", ref_target
));
1190 unsigned char old_sha1
[20], new_sha1
[20];
1192 if (logmsg
&& read_ref(ref_target
, old_sha1
))
1195 if (safe_create_leading_directories(git_HEAD
) < 0)
1196 return error("unable to create directory for %s", git_HEAD
);
1198 #ifndef NO_SYMLINK_HEAD
1199 if (prefer_symlink_refs
) {
1201 if (!symlink(refs_heads_master
, git_HEAD
))
1203 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
1207 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
1208 if (sizeof(ref
) <= len
) {
1209 error("refname too long: %s", refs_heads_master
);
1210 goto error_free_return
;
1212 lockpath
= mkpath("%s.lock", git_HEAD
);
1213 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1215 error("Unable to open %s for writing", lockpath
);
1216 goto error_free_return
;
1218 written
= write_in_full(fd
, ref
, len
);
1219 if (close(fd
) != 0 || written
!= len
) {
1220 error("Unable to write to %s", lockpath
);
1221 goto error_unlink_return
;
1223 if (rename(lockpath
, git_HEAD
) < 0) {
1224 error("Unable to create %s", git_HEAD
);
1225 goto error_unlink_return
;
1227 if (adjust_shared_perm(git_HEAD
)) {
1228 error("Unable to fix permissions on %s", lockpath
);
1229 error_unlink_return
:
1236 #ifndef NO_SYMLINK_HEAD
1239 if (logmsg
&& !read_ref(refs_heads_master
, new_sha1
))
1240 log_ref_write(ref_target
, old_sha1
, new_sha1
, logmsg
);
1246 static char *ref_msg(const char *line
, const char *endp
)
1250 ep
= memchr(line
, '\n', endp
- line
);
1253 return xmemdupz(line
, ep
- line
);
1256 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
)
1258 const char *logfile
, *logdata
, *logend
, *rec
, *lastgt
, *lastrec
;
1260 int logfd
, tz
, reccnt
= 0;
1263 unsigned char logged_sha1
[20];
1267 logfile
= git_path("logs/%s", ref
);
1268 logfd
= open(logfile
, O_RDONLY
, 0);
1270 die("Unable to read log %s: %s", logfile
, strerror(errno
));
1273 die("Log %s is empty.", logfile
);
1274 mapsz
= xsize_t(st
.st_size
);
1275 log_mapped
= xmmap(NULL
, mapsz
, PROT_READ
, MAP_PRIVATE
, logfd
, 0);
1276 logdata
= log_mapped
;
1280 rec
= logend
= logdata
+ st
.st_size
;
1281 while (logdata
< rec
) {
1283 if (logdata
< rec
&& *(rec
-1) == '\n')
1286 while (logdata
< rec
&& *(rec
-1) != '\n') {
1292 die("Log %s is corrupt.", logfile
);
1293 date
= strtoul(lastgt
+ 1, &tz_c
, 10);
1294 if (date
<= at_time
|| cnt
== 0) {
1295 tz
= strtoul(tz_c
, NULL
, 10);
1297 *msg
= ref_msg(rec
, logend
);
1299 *cutoff_time
= date
;
1303 *cutoff_cnt
= reccnt
- 1;
1305 if (get_sha1_hex(lastrec
, logged_sha1
))
1306 die("Log %s is corrupt.", logfile
);
1307 if (get_sha1_hex(rec
+ 41, sha1
))
1308 die("Log %s is corrupt.", logfile
);
1309 if (hashcmp(logged_sha1
, sha1
)) {
1311 "warning: Log %s has gap after %s.\n",
1312 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1315 else if (date
== at_time
) {
1316 if (get_sha1_hex(rec
+ 41, sha1
))
1317 die("Log %s is corrupt.", logfile
);
1320 if (get_sha1_hex(rec
+ 41, logged_sha1
))
1321 die("Log %s is corrupt.", logfile
);
1322 if (hashcmp(logged_sha1
, sha1
)) {
1324 "warning: Log %s unexpectedly ended on %s.\n",
1325 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1328 munmap(log_mapped
, mapsz
);
1337 while (rec
< logend
&& *rec
!= '>' && *rec
!= '\n')
1339 if (rec
== logend
|| *rec
== '\n')
1340 die("Log %s is corrupt.", logfile
);
1341 date
= strtoul(rec
+ 1, &tz_c
, 10);
1342 tz
= strtoul(tz_c
, NULL
, 10);
1343 if (get_sha1_hex(logdata
, sha1
))
1344 die("Log %s is corrupt.", logfile
);
1346 *msg
= ref_msg(logdata
, logend
);
1347 munmap(log_mapped
, mapsz
);
1350 *cutoff_time
= date
;
1354 *cutoff_cnt
= reccnt
;
1358 int for_each_reflog_ent(const char *ref
, each_reflog_ent_fn fn
, void *cb_data
)
1360 const char *logfile
;
1365 logfile
= git_path("logs/%s", ref
);
1366 logfp
= fopen(logfile
, "r");
1369 while (fgets(buf
, sizeof(buf
), logfp
)) {
1370 unsigned char osha1
[20], nsha1
[20];
1371 char *email_end
, *message
;
1372 unsigned long timestamp
;
1375 /* old SP new SP name <email> SP time TAB msg LF */
1377 if (len
< 83 || buf
[len
-1] != '\n' ||
1378 get_sha1_hex(buf
, osha1
) || buf
[40] != ' ' ||
1379 get_sha1_hex(buf
+ 41, nsha1
) || buf
[81] != ' ' ||
1380 !(email_end
= strchr(buf
+ 82, '>')) ||
1381 email_end
[1] != ' ' ||
1382 !(timestamp
= strtoul(email_end
+ 2, &message
, 10)) ||
1383 !message
|| message
[0] != ' ' ||
1384 (message
[1] != '+' && message
[1] != '-') ||
1385 !isdigit(message
[2]) || !isdigit(message
[3]) ||
1386 !isdigit(message
[4]) || !isdigit(message
[5]))
1387 continue; /* corrupt? */
1388 email_end
[1] = '\0';
1389 tz
= strtol(message
+ 1, NULL
, 10);
1390 if (message
[6] != '\t')
1394 ret
= fn(osha1
, nsha1
, buf
+82, timestamp
, tz
, message
, cb_data
);
1402 static int do_for_each_reflog(const char *base
, each_ref_fn fn
, void *cb_data
)
1404 DIR *dir
= opendir(git_path("logs/%s", base
));
1409 int baselen
= strlen(base
);
1410 char *log
= xmalloc(baselen
+ 257);
1412 memcpy(log
, base
, baselen
);
1413 if (baselen
&& base
[baselen
-1] != '/')
1414 log
[baselen
++] = '/';
1416 while ((de
= readdir(dir
)) != NULL
) {
1420 if (de
->d_name
[0] == '.')
1422 namelen
= strlen(de
->d_name
);
1425 if (has_extension(de
->d_name
, ".lock"))
1427 memcpy(log
+ baselen
, de
->d_name
, namelen
+1);
1428 if (stat(git_path("logs/%s", log
), &st
) < 0)
1430 if (S_ISDIR(st
.st_mode
)) {
1431 retval
= do_for_each_reflog(log
, fn
, cb_data
);
1433 unsigned char sha1
[20];
1434 if (!resolve_ref(log
, sha1
, 0, NULL
))
1435 retval
= error("bad ref for %s", log
);
1437 retval
= fn(log
, sha1
, 0, cb_data
);
1450 int for_each_reflog(each_ref_fn fn
, void *cb_data
)
1452 return do_for_each_reflog("", fn
, cb_data
);
1455 int update_ref(const char *action
, const char *refname
,
1456 const unsigned char *sha1
, const unsigned char *oldval
,
1457 int flags
, enum action_on_err onerr
)
1459 static struct ref_lock
*lock
;
1460 lock
= lock_any_ref_for_update(refname
, oldval
, flags
);
1462 const char *str
= "Cannot lock the ref '%s'.";
1464 case MSG_ON_ERR
: error(str
, refname
); break;
1465 case DIE_ON_ERR
: die(str
, refname
); break;
1466 case QUIET_ON_ERR
: break;
1470 if (write_ref_sha1(lock
, sha1
, action
) < 0) {
1471 const char *str
= "Cannot update the ref '%s'.";
1473 case MSG_ON_ERR
: error(str
, refname
); break;
1474 case DIE_ON_ERR
: die(str
, refname
); break;
1475 case QUIET_ON_ERR
: break;