8 /* ISSYMREF=01 and ISPACKED=02 are public interfaces */
9 #define REF_KNOWS_PEELED 04
12 struct ref_list
*next
;
13 unsigned char flag
; /* ISSYMREF? ISPACKED? */
14 unsigned char sha1
[20];
15 unsigned char peeled
[20];
16 char name
[FLEX_ARRAY
];
19 static const char *parse_ref_line(char *line
, unsigned char *sha1
)
22 * 42: the answer to everything.
24 * In this case, it happens to be the answer to
25 * 40 (length of sha1 hex representation)
26 * +1 (space in between hex and name)
27 * +1 (newline at the end of the line)
29 int len
= strlen(line
) - 42;
33 if (get_sha1_hex(line
, sha1
) < 0)
35 if (!isspace(line
[40]))
40 if (line
[len
] != '\n')
47 static struct ref_list
*add_ref(const char *name
, const unsigned char *sha1
,
48 int flag
, struct ref_list
*list
,
49 struct ref_list
**new_entry
)
52 struct ref_list
**p
= &list
, *entry
;
54 /* Find the place to insert the ref into.. */
55 while ((entry
= *p
) != NULL
) {
56 int cmp
= strcmp(entry
->name
, name
);
60 /* Same as existing entry? */
69 /* Allocate it and add it in.. */
70 len
= strlen(name
) + 1;
71 entry
= xmalloc(sizeof(struct ref_list
) + len
);
72 hashcpy(entry
->sha1
, sha1
);
73 hashclr(entry
->peeled
);
74 memcpy(entry
->name
, name
, len
);
84 * Future: need to be in "struct repository"
85 * when doing a full libification.
90 struct ref_list
*loose
;
91 struct ref_list
*packed
;
94 static void free_ref_list(struct ref_list
*list
)
96 struct ref_list
*next
;
97 for ( ; list
; list
= next
) {
103 static void invalidate_cached_refs(void)
105 struct cached_refs
*ca
= &cached_refs
;
107 if (ca
->did_loose
&& ca
->loose
)
108 free_ref_list(ca
->loose
);
109 if (ca
->did_packed
&& ca
->packed
)
110 free_ref_list(ca
->packed
);
111 ca
->loose
= ca
->packed
= NULL
;
112 ca
->did_loose
= ca
->did_packed
= 0;
115 static void read_packed_refs(FILE *f
, struct cached_refs
*cached_refs
)
117 struct ref_list
*list
= NULL
;
118 struct ref_list
*last
= NULL
;
119 char refline
[PATH_MAX
];
120 int flag
= REF_ISPACKED
;
122 while (fgets(refline
, sizeof(refline
), f
)) {
123 unsigned char sha1
[20];
125 static const char header
[] = "# pack-refs with:";
127 if (!strncmp(refline
, header
, sizeof(header
)-1)) {
128 const char *traits
= refline
+ sizeof(header
) - 1;
129 if (strstr(traits
, " peeled "))
130 flag
|= REF_KNOWS_PEELED
;
131 /* perhaps other traits later as well */
135 name
= parse_ref_line(refline
, sha1
);
137 list
= add_ref(name
, sha1
, flag
, list
, &last
);
142 strlen(refline
) == 42 &&
143 refline
[41] == '\n' &&
144 !get_sha1_hex(refline
+ 1, sha1
))
145 hashcpy(last
->peeled
, sha1
);
147 cached_refs
->packed
= list
;
150 static struct ref_list
*get_packed_refs(void)
152 if (!cached_refs
.did_packed
) {
153 FILE *f
= fopen(git_path("packed-refs"), "r");
154 cached_refs
.packed
= NULL
;
156 read_packed_refs(f
, &cached_refs
);
159 cached_refs
.did_packed
= 1;
161 return cached_refs
.packed
;
164 static struct ref_list
*get_ref_dir(const char *base
, struct ref_list
*list
)
166 DIR *dir
= opendir(git_path("%s", base
));
170 int baselen
= strlen(base
);
171 char *ref
= xmalloc(baselen
+ 257);
173 memcpy(ref
, base
, baselen
);
174 if (baselen
&& base
[baselen
-1] != '/')
175 ref
[baselen
++] = '/';
177 while ((de
= readdir(dir
)) != NULL
) {
178 unsigned char sha1
[20];
183 if (de
->d_name
[0] == '.')
185 namelen
= strlen(de
->d_name
);
188 if (has_extension(de
->d_name
, ".lock"))
190 memcpy(ref
+ baselen
, de
->d_name
, namelen
+1);
191 if (stat(git_path("%s", ref
), &st
) < 0)
193 if (S_ISDIR(st
.st_mode
)) {
194 list
= get_ref_dir(ref
, list
);
197 if (!resolve_ref(ref
, sha1
, 1, &flag
)) {
198 error("%s points nowhere!", ref
);
201 list
= add_ref(ref
, sha1
, flag
, list
, NULL
);
209 static struct ref_list
*get_loose_refs(void)
211 if (!cached_refs
.did_loose
) {
212 cached_refs
.loose
= get_ref_dir("refs", NULL
);
213 cached_refs
.did_loose
= 1;
215 return cached_refs
.loose
;
218 /* We allow "recursive" symbolic refs. Only within reason, though */
221 const char *resolve_ref(const char *ref
, unsigned char *sha1
, int reading
, int *flag
)
223 int depth
= MAXDEPTH
, len
;
225 static char ref_buffer
[256];
231 const char *path
= git_path("%s", ref
);
239 /* Special case: non-existing file.
240 * Not having the refs/heads/new-branch is OK
241 * if we are writing into it, so is .git/HEAD
242 * that points at refs/heads/master still to be
243 * born. It is NOT OK if we are resolving for
246 if (lstat(path
, &st
) < 0) {
247 struct ref_list
*list
= get_packed_refs();
249 if (!strcmp(ref
, list
->name
)) {
250 hashcpy(sha1
, list
->sha1
);
252 *flag
|= REF_ISPACKED
;
257 if (reading
|| errno
!= ENOENT
)
263 /* Follow "normalized" - ie "refs/.." symlinks by hand */
264 if (S_ISLNK(st
.st_mode
)) {
265 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
266 if (len
>= 5 && !memcmp("refs/", buffer
, 5)) {
268 strcpy(ref_buffer
, buffer
);
271 *flag
|= REF_ISSYMREF
;
276 /* Is it a directory? */
277 if (S_ISDIR(st
.st_mode
)) {
283 * Anything else, just open it and try to use it as
286 fd
= open(path
, O_RDONLY
);
289 len
= read(fd
, buffer
, sizeof(buffer
)-1);
293 * Is it a symbolic ref?
295 if (len
< 4 || memcmp("ref:", buffer
, 4))
299 while (len
&& isspace(*buf
))
301 while (len
&& isspace(buf
[len
-1]))
304 memcpy(ref_buffer
, buf
, len
+ 1);
307 *flag
|= REF_ISSYMREF
;
309 if (len
< 40 || get_sha1_hex(buffer
, sha1
))
314 int create_symref(const char *ref_target
, const char *refs_heads_master
)
316 const char *lockpath
;
318 int fd
, len
, written
;
319 const char *git_HEAD
= git_path("%s", ref_target
);
321 #ifndef NO_SYMLINK_HEAD
322 if (prefer_symlink_refs
) {
324 if (!symlink(refs_heads_master
, git_HEAD
))
326 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
330 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
331 if (sizeof(ref
) <= len
) {
332 error("refname too long: %s", refs_heads_master
);
335 lockpath
= mkpath("%s.lock", git_HEAD
);
336 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
337 written
= write(fd
, ref
, len
);
339 if (written
!= len
) {
341 error("Unable to write to %s", lockpath
);
344 if (rename(lockpath
, git_HEAD
) < 0) {
346 error("Unable to create %s", git_HEAD
);
349 if (adjust_shared_perm(git_HEAD
)) {
351 error("Unable to fix permissions on %s", lockpath
);
357 int read_ref(const char *ref
, unsigned char *sha1
)
359 if (resolve_ref(ref
, sha1
, 1, NULL
))
364 static int do_one_ref(const char *base
, each_ref_fn fn
, int trim
,
365 void *cb_data
, struct ref_list
*entry
)
367 if (strncmp(base
, entry
->name
, trim
))
369 if (is_null_sha1(entry
->sha1
))
371 if (!has_sha1_file(entry
->sha1
)) {
372 error("%s does not point to a valid object!", entry
->name
);
375 return fn(entry
->name
+ trim
, entry
->sha1
, entry
->flag
, cb_data
);
378 int peel_ref(const char *ref
, unsigned char *sha1
)
381 unsigned char base
[20];
384 if (!resolve_ref(ref
, base
, 1, &flag
))
387 if ((flag
& REF_ISPACKED
)) {
388 struct ref_list
*list
= get_packed_refs();
391 if (!strcmp(list
->name
, ref
)) {
392 if (list
->flag
& REF_KNOWS_PEELED
) {
393 hashcpy(sha1
, list
->peeled
);
396 /* older pack-refs did not leave peeled ones */
403 /* fallback - callers should not call this for unpacked refs */
404 o
= parse_object(base
);
405 if (o
->type
== OBJ_TAG
) {
406 o
= deref_tag(o
, ref
, 0);
408 hashcpy(sha1
, o
->sha1
);
415 static int do_for_each_ref(const char *base
, each_ref_fn fn
, int trim
,
419 struct ref_list
*packed
= get_packed_refs();
420 struct ref_list
*loose
= get_loose_refs();
422 while (packed
&& loose
) {
423 struct ref_list
*entry
;
424 int cmp
= strcmp(packed
->name
, loose
->name
);
426 packed
= packed
->next
;
434 packed
= packed
->next
;
436 retval
= do_one_ref(base
, fn
, trim
, cb_data
, entry
);
441 for (packed
= packed
? packed
: loose
; packed
; packed
= packed
->next
) {
442 retval
= do_one_ref(base
, fn
, trim
, cb_data
, packed
);
449 int head_ref(each_ref_fn fn
, void *cb_data
)
451 unsigned char sha1
[20];
454 if (resolve_ref("HEAD", sha1
, 1, &flag
))
455 return fn("HEAD", sha1
, flag
, cb_data
);
459 int for_each_ref(each_ref_fn fn
, void *cb_data
)
461 return do_for_each_ref("refs/", fn
, 0, cb_data
);
464 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
466 return do_for_each_ref("refs/tags/", fn
, 10, cb_data
);
469 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
471 return do_for_each_ref("refs/heads/", fn
, 11, cb_data
);
474 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
476 return do_for_each_ref("refs/remotes/", fn
, 13, cb_data
);
479 /* NEEDSWORK: This is only used by ssh-upload and it should go; the
480 * caller should do resolve_ref or read_ref like everybody else. Or
481 * maybe everybody else should use get_ref_sha1() instead of doing
484 int get_ref_sha1(const char *ref
, unsigned char *sha1
)
486 if (check_ref_format(ref
))
488 return read_ref(mkpath("refs/%s", ref
), sha1
);
492 * Make sure "ref" is something reasonable to have under ".git/refs/";
493 * We do not like it if:
495 * - any path component of it begins with ".", or
496 * - it has double dots "..", or
497 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
498 * - it ends with a "/".
501 static inline int bad_ref_char(int ch
)
503 return (((unsigned) ch
) <= ' ' ||
504 ch
== '~' || ch
== '^' || ch
== ':' ||
505 /* 2.13 Pattern Matching Notation */
506 ch
== '?' || ch
== '*' || ch
== '[');
509 int check_ref_format(const char *ref
)
512 const char *cp
= ref
;
516 while ((ch
= *cp
++) == '/')
517 ; /* tolerate duplicated slashes */
519 return -1; /* should not end with slashes */
521 /* we are at the beginning of the path component */
522 if (ch
== '.' || bad_ref_char(ch
))
525 /* scan the rest of the path component */
526 while ((ch
= *cp
++) != 0) {
527 if (bad_ref_char(ch
))
531 if (ch
== '.' && *cp
== '.')
537 return -2; /* at least of form "heads/blah" */
543 static struct ref_lock
*verify_lock(struct ref_lock
*lock
,
544 const unsigned char *old_sha1
, int mustexist
)
546 if (!resolve_ref(lock
->ref_name
, lock
->old_sha1
, mustexist
, NULL
)) {
547 error("Can't verify ref %s", lock
->ref_name
);
551 if (hashcmp(lock
->old_sha1
, old_sha1
)) {
552 error("Ref %s is at %s but expected %s", lock
->ref_name
,
553 sha1_to_hex(lock
->old_sha1
), sha1_to_hex(old_sha1
));
560 static int remove_empty_dir_recursive(char *path
, int len
)
562 DIR *dir
= opendir(path
);
568 if (path
[len
-1] != '/')
570 while ((e
= readdir(dir
)) != NULL
) {
573 if ((e
->d_name
[0] == '.') &&
574 ((e
->d_name
[1] == 0) ||
575 ((e
->d_name
[1] == '.') && e
->d_name
[2] == 0)))
576 continue; /* "." and ".." */
578 namlen
= strlen(e
->d_name
);
579 if ((len
+ namlen
< PATH_MAX
) &&
580 strcpy(path
+ len
, e
->d_name
) &&
582 S_ISDIR(st
.st_mode
) &&
583 !remove_empty_dir_recursive(path
, len
+ namlen
))
584 continue; /* happy */
586 /* path too long, stat fails, or non-directory still exists */
598 static int remove_empty_directories(char *file
)
600 /* we want to create a file but there is a directory there;
601 * if that is an empty directory (or a directory that contains
602 * only empty directories), remove them.
605 int len
= strlen(file
);
607 if (len
>= PATH_MAX
) /* path too long ;-) */
610 return remove_empty_dir_recursive(path
, len
);
613 static int is_refname_available(const char *ref
, const char *oldref
,
614 struct ref_list
*list
, int quiet
)
616 int namlen
= strlen(ref
); /* e.g. 'foo/bar' */
618 /* list->name could be 'foo' or 'foo/bar/baz' */
619 if (!oldref
|| strcmp(oldref
, list
->name
)) {
620 int len
= strlen(list
->name
);
621 int cmplen
= (namlen
< len
) ? namlen
: len
;
622 const char *lead
= (namlen
< len
) ? list
->name
: ref
;
623 if (!strncmp(ref
, list
->name
, cmplen
) &&
624 lead
[cmplen
] == '/') {
626 error("'%s' exists; cannot create '%s'",
636 static struct ref_lock
*lock_ref_sha1_basic(const char *ref
, const unsigned char *old_sha1
, int *flag
)
639 const char *orig_ref
= ref
;
640 struct ref_lock
*lock
;
643 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
645 lock
= xcalloc(1, sizeof(struct ref_lock
));
648 ref
= resolve_ref(ref
, lock
->old_sha1
, mustexist
, flag
);
649 if (!ref
&& errno
== EISDIR
) {
650 /* we are trying to lock foo but we used to
651 * have foo/bar which now does not exist;
652 * it is normal for the empty directory 'foo'
655 ref_file
= git_path("%s", orig_ref
);
656 if (remove_empty_directories(ref_file
)) {
658 error("there are still refs under '%s'", orig_ref
);
661 ref
= resolve_ref(orig_ref
, lock
->old_sha1
, mustexist
, flag
);
665 error("unable to resolve reference %s: %s",
666 orig_ref
, strerror(errno
));
669 /* When the ref did not exist and we are creating it,
670 * make sure there is no existing ref that is packed
671 * whose name begins with our refname, nor a ref whose
672 * name is a proper prefix of our refname.
674 if (is_null_sha1(lock
->old_sha1
) &&
675 !is_refname_available(ref
, NULL
, get_packed_refs(), 0))
678 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
680 lock
->ref_name
= xstrdup(ref
);
681 lock
->log_file
= xstrdup(git_path("logs/%s", ref
));
682 ref_file
= git_path("%s", ref
);
683 lock
->force_write
= lstat(ref_file
, &st
) && errno
== ENOENT
;
685 if (safe_create_leading_directories(ref_file
)) {
687 error("unable to create directory for %s", ref_file
);
690 lock
->lock_fd
= hold_lock_file_for_update(lock
->lk
, ref_file
, 1);
692 return old_sha1
? verify_lock(lock
, old_sha1
, mustexist
) : lock
;
700 struct ref_lock
*lock_ref_sha1(const char *ref
, const unsigned char *old_sha1
)
702 char refpath
[PATH_MAX
];
703 if (check_ref_format(ref
))
705 strcpy(refpath
, mkpath("refs/%s", ref
));
706 return lock_ref_sha1_basic(refpath
, old_sha1
, NULL
);
709 struct ref_lock
*lock_any_ref_for_update(const char *ref
, const unsigned char *old_sha1
)
711 return lock_ref_sha1_basic(ref
, old_sha1
, NULL
);
714 static struct lock_file packlock
;
716 static int repack_without_ref(const char *refname
)
718 struct ref_list
*list
, *packed_ref_list
;
722 packed_ref_list
= get_packed_refs();
723 for (list
= packed_ref_list
; list
; list
= list
->next
) {
724 if (!strcmp(refname
, list
->name
)) {
731 memset(&packlock
, 0, sizeof(packlock
));
732 fd
= hold_lock_file_for_update(&packlock
, git_path("packed-refs"), 0);
734 return error("cannot delete '%s' from packed refs", refname
);
736 for (list
= packed_ref_list
; list
; list
= list
->next
) {
737 char line
[PATH_MAX
+ 100];
740 if (!strcmp(refname
, list
->name
))
742 len
= snprintf(line
, sizeof(line
), "%s %s\n",
743 sha1_to_hex(list
->sha1
), list
->name
);
744 /* this should not happen but just being defensive */
745 if (len
> sizeof(line
))
746 die("too long a refname '%s'", list
->name
);
747 write_or_die(fd
, line
, len
);
749 return commit_lock_file(&packlock
);
752 int delete_ref(const char *refname
, unsigned char *sha1
)
754 struct ref_lock
*lock
;
755 int err
, i
, ret
= 0, flag
= 0;
757 lock
= lock_ref_sha1_basic(refname
, sha1
, &flag
);
760 if (!(flag
& REF_ISPACKED
)) {
762 i
= strlen(lock
->lk
->filename
) - 5; /* .lock */
763 lock
->lk
->filename
[i
] = 0;
764 err
= unlink(lock
->lk
->filename
);
767 error("unlink(%s) failed: %s",
768 lock
->lk
->filename
, strerror(errno
));
770 lock
->lk
->filename
[i
] = '.';
772 /* removing the loose one could have resurrected an earlier
773 * packed one. Also, if it was not loose we need to repack
776 ret
|= repack_without_ref(refname
);
778 err
= unlink(lock
->log_file
);
779 if (err
&& errno
!= ENOENT
)
780 fprintf(stderr
, "warning: unlink(%s) failed: %s",
781 lock
->log_file
, strerror(errno
));
782 invalidate_cached_refs();
787 int rename_ref(const char *oldref
, const char *newref
, const char *logmsg
)
789 static const char renamed_ref
[] = "RENAMED-REF";
790 unsigned char sha1
[20], orig_sha1
[20];
791 int flag
= 0, logmoved
= 0;
792 struct ref_lock
*lock
;
794 int log
= !lstat(git_path("logs/%s", oldref
), &loginfo
);
796 if (S_ISLNK(loginfo
.st_mode
))
797 return error("reflog for %s is a symlink", oldref
);
799 if (!resolve_ref(oldref
, orig_sha1
, 1, &flag
))
800 return error("refname %s not found", oldref
);
802 if (!is_refname_available(newref
, oldref
, get_packed_refs(), 0))
805 if (!is_refname_available(newref
, oldref
, get_loose_refs(), 0))
808 lock
= lock_ref_sha1_basic(renamed_ref
, NULL
, NULL
);
810 return error("unable to lock %s", renamed_ref
);
811 lock
->force_write
= 1;
812 if (write_ref_sha1(lock
, orig_sha1
, logmsg
))
813 return error("unable to save current sha1 in %s", renamed_ref
);
815 if (log
&& rename(git_path("logs/%s", oldref
), git_path("tmp-renamed-log")))
816 return error("unable to move logfile logs/%s to tmp-renamed-log: %s",
817 oldref
, strerror(errno
));
819 if (delete_ref(oldref
, orig_sha1
)) {
820 error("unable to delete old %s", oldref
);
824 if (resolve_ref(newref
, sha1
, 1, &flag
) && delete_ref(newref
, sha1
)) {
826 if (remove_empty_directories(git_path("%s", newref
))) {
827 error("Directory not empty: %s", newref
);
831 error("unable to delete existing %s", newref
);
836 if (log
&& safe_create_leading_directories(git_path("logs/%s", newref
))) {
837 error("unable to create directory for %s", newref
);
842 if (log
&& rename(git_path("tmp-renamed-log"), git_path("logs/%s", newref
))) {
844 if (remove_empty_directories(git_path("logs/%s", newref
))) {
845 error("Directory not empty: logs/%s", newref
);
850 error("unable to move logfile tmp-renamed-log to logs/%s: %s",
851 newref
, strerror(errno
));
857 lock
= lock_ref_sha1_basic(newref
, NULL
, NULL
);
859 error("unable to lock %s for update", newref
);
863 lock
->force_write
= 1;
864 hashcpy(lock
->old_sha1
, orig_sha1
);
865 if (write_ref_sha1(lock
, orig_sha1
, logmsg
)) {
866 error("unable to write current sha1 into %s", newref
);
870 if (!strncmp(oldref
, "refs/heads/", 11) &&
871 !strncmp(newref
, "refs/heads/", 11)) {
872 char oldsection
[1024], newsection
[1024];
874 snprintf(oldsection
, 1024, "branch.%s", oldref
+ 11);
875 snprintf(newsection
, 1024, "branch.%s", newref
+ 11);
876 if (git_config_rename_section(oldsection
, newsection
) < 0)
883 lock
= lock_ref_sha1_basic(oldref
, NULL
, NULL
);
885 error("unable to lock %s for rollback", oldref
);
889 lock
->force_write
= 1;
890 flag
= log_all_ref_updates
;
891 log_all_ref_updates
= 0;
892 if (write_ref_sha1(lock
, orig_sha1
, NULL
))
893 error("unable to write current sha1 into %s", oldref
);
894 log_all_ref_updates
= flag
;
897 if (logmoved
&& rename(git_path("logs/%s", newref
), git_path("logs/%s", oldref
)))
898 error("unable to restore logfile %s from %s: %s",
899 oldref
, newref
, strerror(errno
));
900 if (!logmoved
&& log
&&
901 rename(git_path("tmp-renamed-log"), git_path("logs/%s", oldref
)))
902 error("unable to restore logfile %s from tmp-renamed-log: %s",
903 oldref
, strerror(errno
));
908 void unlock_ref(struct ref_lock
*lock
)
910 if (lock
->lock_fd
>= 0) {
911 close(lock
->lock_fd
);
912 /* Do not free lock->lk -- atexit() still looks at them */
914 rollback_lock_file(lock
->lk
);
916 free(lock
->ref_name
);
917 free(lock
->log_file
);
921 static int log_ref_write(struct ref_lock
*lock
,
922 const unsigned char *sha1
, const char *msg
)
924 int logfd
, written
, oflags
= O_APPEND
| O_WRONLY
;
925 unsigned maxlen
, len
;
927 const char *committer
;
929 if (log_all_ref_updates
&&
930 !strncmp(lock
->ref_name
, "refs/heads/", 11)) {
931 if (safe_create_leading_directories(lock
->log_file
) < 0)
932 return error("unable to create directory for %s",
937 logfd
= open(lock
->log_file
, oflags
, 0666);
939 if (!(oflags
& O_CREAT
) && errno
== ENOENT
)
942 if ((oflags
& O_CREAT
) && errno
== EISDIR
) {
943 if (remove_empty_directories(lock
->log_file
)) {
944 return error("There are still logs under '%s'",
947 logfd
= open(lock
->log_file
, oflags
, 0666);
951 return error("Unable to append to %s: %s",
952 lock
->log_file
, strerror(errno
));
955 committer
= git_committer_info(1);
957 maxlen
= strlen(committer
) + strlen(msg
) + 2*40 + 5;
958 logrec
= xmalloc(maxlen
);
959 len
= snprintf(logrec
, maxlen
, "%s %s %s\t%s\n",
960 sha1_to_hex(lock
->old_sha1
),
966 maxlen
= strlen(committer
) + 2*40 + 4;
967 logrec
= xmalloc(maxlen
);
968 len
= snprintf(logrec
, maxlen
, "%s %s %s\n",
969 sha1_to_hex(lock
->old_sha1
),
973 written
= len
<= maxlen
? write(logfd
, logrec
, len
) : -1;
977 return error("Unable to append to %s", lock
->log_file
);
981 int write_ref_sha1(struct ref_lock
*lock
,
982 const unsigned char *sha1
, const char *logmsg
)
984 static char term
= '\n';
988 if (!lock
->force_write
&& !hashcmp(lock
->old_sha1
, sha1
)) {
992 if (write(lock
->lock_fd
, sha1_to_hex(sha1
), 40) != 40 ||
993 write(lock
->lock_fd
, &term
, 1) != 1
994 || close(lock
->lock_fd
) < 0) {
995 error("Couldn't write %s", lock
->lk
->filename
);
999 invalidate_cached_refs();
1000 if (log_ref_write(lock
, sha1
, logmsg
) < 0) {
1004 if (commit_lock_file(lock
->lk
)) {
1005 error("Couldn't set %s", lock
->ref_name
);
1014 int read_ref_at(const char *ref
, unsigned long at_time
, int cnt
, unsigned char *sha1
)
1016 const char *logfile
, *logdata
, *logend
, *rec
, *lastgt
, *lastrec
;
1021 unsigned char logged_sha1
[20];
1023 logfile
= git_path("logs/%s", ref
);
1024 logfd
= open(logfile
, O_RDONLY
, 0);
1026 die("Unable to read log %s: %s", logfile
, strerror(errno
));
1029 die("Log %s is empty.", logfile
);
1030 logdata
= mmap(NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, logfd
, 0);
1034 rec
= logend
= logdata
+ st
.st_size
;
1035 while (logdata
< rec
) {
1036 if (logdata
< rec
&& *(rec
-1) == '\n')
1039 while (logdata
< rec
&& *(rec
-1) != '\n') {
1045 die("Log %s is corrupt.", logfile
);
1046 date
= strtoul(lastgt
+ 1, &tz_c
, 10);
1047 if (date
<= at_time
|| cnt
== 0) {
1049 if (get_sha1_hex(lastrec
, logged_sha1
))
1050 die("Log %s is corrupt.", logfile
);
1051 if (get_sha1_hex(rec
+ 41, sha1
))
1052 die("Log %s is corrupt.", logfile
);
1053 if (hashcmp(logged_sha1
, sha1
)) {
1054 tz
= strtoul(tz_c
, NULL
, 10);
1056 "warning: Log %s has gap after %s.\n",
1057 logfile
, show_rfc2822_date(date
, tz
));
1060 else if (date
== at_time
) {
1061 if (get_sha1_hex(rec
+ 41, sha1
))
1062 die("Log %s is corrupt.", logfile
);
1065 if (get_sha1_hex(rec
+ 41, logged_sha1
))
1066 die("Log %s is corrupt.", logfile
);
1067 if (hashcmp(logged_sha1
, sha1
)) {
1068 tz
= strtoul(tz_c
, NULL
, 10);
1070 "warning: Log %s unexpectedly ended on %s.\n",
1071 logfile
, show_rfc2822_date(date
, tz
));
1074 munmap((void*)logdata
, st
.st_size
);
1083 while (rec
< logend
&& *rec
!= '>' && *rec
!= '\n')
1085 if (rec
== logend
|| *rec
== '\n')
1086 die("Log %s is corrupt.", logfile
);
1087 date
= strtoul(rec
+ 1, &tz_c
, 10);
1088 tz
= strtoul(tz_c
, NULL
, 10);
1089 if (get_sha1_hex(logdata
, sha1
))
1090 die("Log %s is corrupt.", logfile
);
1091 munmap((void*)logdata
, st
.st_size
);
1092 fprintf(stderr
, "warning: Log %s only goes back to %s.\n",
1093 logfile
, show_rfc2822_date(date
, tz
));