8 unsigned char flag
; /* ISSYMREF? ISPACKED? */
9 unsigned char sha1
[20];
10 char name
[FLEX_ARRAY
];
13 static const char *parse_ref_line(char *line
, unsigned char *sha1
)
16 * 42: the answer to everything.
18 * In this case, it happens to be the answer to
19 * 40 (length of sha1 hex representation)
20 * +1 (space in between hex and name)
21 * +1 (newline at the end of the line)
23 int len
= strlen(line
) - 42;
27 if (get_sha1_hex(line
, sha1
) < 0)
29 if (!isspace(line
[40]))
34 if (line
[len
] != '\n')
40 static struct ref_list
*add_ref(const char *name
, const unsigned char *sha1
,
41 int flag
, struct ref_list
*list
)
44 struct ref_list
**p
= &list
, *entry
;
46 /* Find the place to insert the ref into.. */
47 while ((entry
= *p
) != NULL
) {
48 int cmp
= strcmp(entry
->name
, name
);
52 /* Same as existing entry? */
58 /* Allocate it and add it in.. */
59 len
= strlen(name
) + 1;
60 entry
= xmalloc(sizeof(struct ref_list
) + len
);
61 hashcpy(entry
->sha1
, sha1
);
62 memcpy(entry
->name
, name
, len
);
70 * Future: need to be in "struct repository"
71 * when doing a full libification.
76 struct ref_list
*loose
;
77 struct ref_list
*packed
;
80 static void free_ref_list(struct ref_list
*list
)
82 struct ref_list
*next
;
83 for ( ; list
; list
= next
) {
89 static void invalidate_cached_refs(void)
91 struct cached_refs
*ca
= &cached_refs
;
93 if (ca
->did_loose
&& ca
->loose
)
94 free_ref_list(ca
->loose
);
95 if (ca
->did_packed
&& ca
->packed
)
96 free_ref_list(ca
->packed
);
97 ca
->loose
= ca
->packed
= NULL
;
98 ca
->did_loose
= ca
->did_packed
= 0;
101 static struct ref_list
*get_packed_refs(void)
103 if (!cached_refs
.did_packed
) {
104 struct ref_list
*refs
= NULL
;
105 FILE *f
= fopen(git_path("packed-refs"), "r");
107 struct ref_list
*list
= NULL
;
108 char refline
[PATH_MAX
];
109 while (fgets(refline
, sizeof(refline
), f
)) {
110 unsigned char sha1
[20];
111 const char *name
= parse_ref_line(refline
, sha1
);
114 list
= add_ref(name
, sha1
, REF_ISPACKED
, list
);
119 cached_refs
.packed
= refs
;
120 cached_refs
.did_packed
= 1;
122 return cached_refs
.packed
;
125 static struct ref_list
*get_ref_dir(const char *base
, struct ref_list
*list
)
127 DIR *dir
= opendir(git_path("%s", base
));
131 int baselen
= strlen(base
);
132 char *ref
= xmalloc(baselen
+ 257);
134 memcpy(ref
, base
, baselen
);
135 if (baselen
&& base
[baselen
-1] != '/')
136 ref
[baselen
++] = '/';
138 while ((de
= readdir(dir
)) != NULL
) {
139 unsigned char sha1
[20];
144 if (de
->d_name
[0] == '.')
146 namelen
= strlen(de
->d_name
);
149 if (has_extension(de
->d_name
, ".lock"))
151 memcpy(ref
+ baselen
, de
->d_name
, namelen
+1);
152 if (stat(git_path("%s", ref
), &st
) < 0)
154 if (S_ISDIR(st
.st_mode
)) {
155 list
= get_ref_dir(ref
, list
);
158 if (!resolve_ref(ref
, sha1
, 1, &flag
)) {
159 error("%s points nowhere!", ref
);
162 list
= add_ref(ref
, sha1
, flag
, list
);
170 static struct ref_list
*get_loose_refs(void)
172 if (!cached_refs
.did_loose
) {
173 cached_refs
.loose
= get_ref_dir("refs", NULL
);
174 cached_refs
.did_loose
= 1;
176 return cached_refs
.loose
;
179 /* We allow "recursive" symbolic refs. Only within reason, though */
182 const char *resolve_ref(const char *ref
, unsigned char *sha1
, int reading
, int *flag
)
184 int depth
= MAXDEPTH
, len
;
186 static char ref_buffer
[256];
192 const char *path
= git_path("%s", ref
);
200 /* Special case: non-existing file.
201 * Not having the refs/heads/new-branch is OK
202 * if we are writing into it, so is .git/HEAD
203 * that points at refs/heads/master still to be
204 * born. It is NOT OK if we are resolving for
207 if (lstat(path
, &st
) < 0) {
208 struct ref_list
*list
= get_packed_refs();
210 if (!strcmp(ref
, list
->name
)) {
211 hashcpy(sha1
, list
->sha1
);
213 *flag
|= REF_ISPACKED
;
218 if (reading
|| errno
!= ENOENT
)
224 /* Follow "normalized" - ie "refs/.." symlinks by hand */
225 if (S_ISLNK(st
.st_mode
)) {
226 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
227 if (len
>= 5 && !memcmp("refs/", buffer
, 5)) {
229 strcpy(ref_buffer
, buffer
);
232 *flag
|= REF_ISSYMREF
;
238 * Anything else, just open it and try to use it as
241 fd
= open(path
, O_RDONLY
);
244 len
= read(fd
, buffer
, sizeof(buffer
)-1);
248 * Is it a symbolic ref?
250 if (len
< 4 || memcmp("ref:", buffer
, 4))
254 while (len
&& isspace(*buf
))
256 while (len
&& isspace(buf
[len
-1]))
259 memcpy(ref_buffer
, buf
, len
+ 1);
262 *flag
|= REF_ISSYMREF
;
264 if (len
< 40 || get_sha1_hex(buffer
, sha1
))
269 int create_symref(const char *ref_target
, const char *refs_heads_master
)
271 const char *lockpath
;
273 int fd
, len
, written
;
274 const char *git_HEAD
= git_path("%s", ref_target
);
276 #ifndef NO_SYMLINK_HEAD
277 if (prefer_symlink_refs
) {
279 if (!symlink(refs_heads_master
, git_HEAD
))
281 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
285 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
286 if (sizeof(ref
) <= len
) {
287 error("refname too long: %s", refs_heads_master
);
290 lockpath
= mkpath("%s.lock", git_HEAD
);
291 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
292 written
= write(fd
, ref
, len
);
294 if (written
!= len
) {
296 error("Unable to write to %s", lockpath
);
299 if (rename(lockpath
, git_HEAD
) < 0) {
301 error("Unable to create %s", git_HEAD
);
304 if (adjust_shared_perm(git_HEAD
)) {
306 error("Unable to fix permissions on %s", lockpath
);
312 int read_ref(const char *ref
, unsigned char *sha1
)
314 if (resolve_ref(ref
, sha1
, 1, NULL
))
319 static int do_for_each_ref(const char *base
, each_ref_fn fn
, int trim
,
323 struct ref_list
*packed
= get_packed_refs();
324 struct ref_list
*loose
= get_loose_refs();
326 while (packed
&& loose
) {
327 struct ref_list
*entry
;
328 int cmp
= strcmp(packed
->name
, loose
->name
);
330 packed
= packed
->next
;
338 packed
= packed
->next
;
340 if (strncmp(base
, entry
->name
, trim
))
342 if (is_null_sha1(entry
->sha1
))
344 if (!has_sha1_file(entry
->sha1
)) {
345 error("%s does not point to a valid object!", entry
->name
);
348 retval
= fn(entry
->name
+ trim
, entry
->sha1
,
349 entry
->flag
, cb_data
);
354 packed
= packed
? packed
: loose
;
356 if (!strncmp(base
, packed
->name
, trim
)) {
357 retval
= fn(packed
->name
+ trim
, packed
->sha1
,
358 packed
->flag
, cb_data
);
362 packed
= packed
->next
;
367 int head_ref(each_ref_fn fn
, void *cb_data
)
369 unsigned char sha1
[20];
372 if (resolve_ref("HEAD", sha1
, 1, &flag
))
373 return fn("HEAD", sha1
, flag
, cb_data
);
377 int for_each_ref(each_ref_fn fn
, void *cb_data
)
379 return do_for_each_ref("refs/", fn
, 0, cb_data
);
382 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
384 return do_for_each_ref("refs/tags/", fn
, 10, cb_data
);
387 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
389 return do_for_each_ref("refs/heads/", fn
, 11, cb_data
);
392 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
394 return do_for_each_ref("refs/remotes/", fn
, 13, cb_data
);
397 /* NEEDSWORK: This is only used by ssh-upload and it should go; the
398 * caller should do resolve_ref or read_ref like everybody else. Or
399 * maybe everybody else should use get_ref_sha1() instead of doing
402 int get_ref_sha1(const char *ref
, unsigned char *sha1
)
404 if (check_ref_format(ref
))
406 return read_ref(mkpath("refs/%s", ref
), sha1
);
409 int delete_ref(const char *refname
, unsigned char *sha1
)
411 struct ref_lock
*lock
;
414 lock
= lock_any_ref_for_update(refname
, sha1
);
417 i
= strlen(lock
->lk
->filename
) - 5; /* .lock */
418 lock
->lk
->filename
[i
] = 0;
419 err
= unlink(lock
->lk
->filename
);
422 error("unlink(%s) failed: %s",
423 lock
->lk
->filename
, strerror(errno
));
425 lock
->lk
->filename
[i
] = '.';
427 err
= unlink(lock
->log_file
);
428 if (err
&& errno
!= ENOENT
)
429 fprintf(stderr
, "warning: unlink(%s) failed: %s",
430 lock
->log_file
, strerror(errno
));
432 invalidate_cached_refs();
437 * Make sure "ref" is something reasonable to have under ".git/refs/";
438 * We do not like it if:
440 * - any path component of it begins with ".", or
441 * - it has double dots "..", or
442 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
443 * - it ends with a "/".
446 static inline int bad_ref_char(int ch
)
448 return (((unsigned) ch
) <= ' ' ||
449 ch
== '~' || ch
== '^' || ch
== ':' ||
450 /* 2.13 Pattern Matching Notation */
451 ch
== '?' || ch
== '*' || ch
== '[');
454 int check_ref_format(const char *ref
)
457 const char *cp
= ref
;
461 while ((ch
= *cp
++) == '/')
462 ; /* tolerate duplicated slashes */
464 return -1; /* should not end with slashes */
466 /* we are at the beginning of the path component */
467 if (ch
== '.' || bad_ref_char(ch
))
470 /* scan the rest of the path component */
471 while ((ch
= *cp
++) != 0) {
472 if (bad_ref_char(ch
))
476 if (ch
== '.' && *cp
== '.')
482 return -1; /* at least of form "heads/blah" */
488 static struct ref_lock
*verify_lock(struct ref_lock
*lock
,
489 const unsigned char *old_sha1
, int mustexist
)
491 if (!resolve_ref(lock
->ref_name
, lock
->old_sha1
, mustexist
, NULL
)) {
492 error("Can't verify ref %s", lock
->ref_name
);
496 if (hashcmp(lock
->old_sha1
, old_sha1
)) {
497 error("Ref %s is at %s but expected %s", lock
->ref_name
,
498 sha1_to_hex(lock
->old_sha1
), sha1_to_hex(old_sha1
));
505 static int remove_empty_dir_recursive(char *path
, int len
)
507 DIR *dir
= opendir(path
);
513 if (path
[len
-1] != '/')
515 while ((e
= readdir(dir
)) != NULL
) {
518 if ((e
->d_name
[0] == '.') &&
519 ((e
->d_name
[1] == 0) ||
520 ((e
->d_name
[1] == '.') && e
->d_name
[2] == 0)))
521 continue; /* "." and ".." */
523 namlen
= strlen(e
->d_name
);
524 if ((len
+ namlen
< PATH_MAX
) &&
525 strcpy(path
+ len
, e
->d_name
) &&
527 S_ISDIR(st
.st_mode
) &&
528 remove_empty_dir_recursive(path
, len
+ namlen
))
529 continue; /* happy */
531 /* path too long, stat fails, or non-directory still exists */
543 static int remove_empty_directories(char *file
)
545 /* we want to create a file but there is a directory there;
546 * if that is an empty directory (or a directory that contains
547 * only empty directories), remove them.
550 int len
= strlen(file
);
552 if (len
>= PATH_MAX
) /* path too long ;-) */
555 return remove_empty_dir_recursive(path
, len
);
558 static struct ref_lock
*lock_ref_sha1_basic(const char *ref
, const unsigned char *old_sha1
)
561 const char *orig_ref
= ref
;
562 struct ref_lock
*lock
;
565 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
567 lock
= xcalloc(1, sizeof(struct ref_lock
));
570 ref
= resolve_ref(ref
, lock
->old_sha1
, mustexist
, NULL
);
571 if (!ref
&& errno
== EISDIR
) {
572 /* we are trying to lock foo but we used to
573 * have foo/bar which now does not exist;
574 * it is normal for the empty directory 'foo'
577 ref_file
= git_path("%s", orig_ref
);
578 if (remove_empty_directories(ref_file
)) {
580 error("there are still refs under '%s'", orig_ref
);
583 ref
= resolve_ref(orig_ref
, lock
->old_sha1
, mustexist
, NULL
);
587 error("unable to resolve reference %s: %s",
588 orig_ref
, strerror(errno
));
591 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
593 lock
->ref_name
= xstrdup(ref
);
594 lock
->log_file
= xstrdup(git_path("logs/%s", ref
));
595 ref_file
= git_path("%s", ref
);
596 lock
->force_write
= lstat(ref_file
, &st
) && errno
== ENOENT
;
598 if (safe_create_leading_directories(ref_file
)) {
600 error("unable to create directory for %s", ref_file
);
603 lock
->lock_fd
= hold_lock_file_for_update(lock
->lk
, ref_file
, 1);
605 return old_sha1
? verify_lock(lock
, old_sha1
, mustexist
) : lock
;
613 struct ref_lock
*lock_ref_sha1(const char *ref
, const unsigned char *old_sha1
)
615 char refpath
[PATH_MAX
];
616 if (check_ref_format(ref
))
618 strcpy(refpath
, mkpath("refs/%s", ref
));
619 return lock_ref_sha1_basic(refpath
, old_sha1
);
622 struct ref_lock
*lock_any_ref_for_update(const char *ref
, const unsigned char *old_sha1
)
624 return lock_ref_sha1_basic(ref
, old_sha1
);
627 void unlock_ref(struct ref_lock
*lock
)
629 if (lock
->lock_fd
>= 0) {
630 close(lock
->lock_fd
);
631 /* Do not free lock->lk -- atexit() still looks at them */
633 rollback_lock_file(lock
->lk
);
635 free(lock
->ref_name
);
636 free(lock
->log_file
);
640 static int log_ref_write(struct ref_lock
*lock
,
641 const unsigned char *sha1
, const char *msg
)
643 int logfd
, written
, oflags
= O_APPEND
| O_WRONLY
;
644 unsigned maxlen
, len
;
646 const char *committer
;
648 if (log_all_ref_updates
) {
649 if (safe_create_leading_directories(lock
->log_file
) < 0)
650 return error("unable to create directory for %s",
655 logfd
= open(lock
->log_file
, oflags
, 0666);
657 if (!log_all_ref_updates
&& errno
== ENOENT
)
659 return error("Unable to append to %s: %s",
660 lock
->log_file
, strerror(errno
));
663 committer
= git_committer_info(1);
665 maxlen
= strlen(committer
) + strlen(msg
) + 2*40 + 5;
666 logrec
= xmalloc(maxlen
);
667 len
= snprintf(logrec
, maxlen
, "%s %s %s\t%s\n",
668 sha1_to_hex(lock
->old_sha1
),
674 maxlen
= strlen(committer
) + 2*40 + 4;
675 logrec
= xmalloc(maxlen
);
676 len
= snprintf(logrec
, maxlen
, "%s %s %s\n",
677 sha1_to_hex(lock
->old_sha1
),
681 written
= len
<= maxlen
? write(logfd
, logrec
, len
) : -1;
685 return error("Unable to append to %s", lock
->log_file
);
689 int write_ref_sha1(struct ref_lock
*lock
,
690 const unsigned char *sha1
, const char *logmsg
)
692 static char term
= '\n';
696 if (!lock
->force_write
&& !hashcmp(lock
->old_sha1
, sha1
)) {
700 if (write(lock
->lock_fd
, sha1_to_hex(sha1
), 40) != 40 ||
701 write(lock
->lock_fd
, &term
, 1) != 1
702 || close(lock
->lock_fd
) < 0) {
703 error("Couldn't write %s", lock
->lk
->filename
);
707 invalidate_cached_refs();
708 if (log_ref_write(lock
, sha1
, logmsg
) < 0) {
712 if (commit_lock_file(lock
->lk
)) {
713 error("Couldn't set %s", lock
->ref_name
);
722 int read_ref_at(const char *ref
, unsigned long at_time
, unsigned char *sha1
)
724 const char *logfile
, *logdata
, *logend
, *rec
, *lastgt
, *lastrec
;
729 unsigned char logged_sha1
[20];
731 logfile
= git_path("logs/%s", ref
);
732 logfd
= open(logfile
, O_RDONLY
, 0);
734 die("Unable to read log %s: %s", logfile
, strerror(errno
));
737 die("Log %s is empty.", logfile
);
738 logdata
= mmap(NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, logfd
, 0);
742 rec
= logend
= logdata
+ st
.st_size
;
743 while (logdata
< rec
) {
744 if (logdata
< rec
&& *(rec
-1) == '\n')
747 while (logdata
< rec
&& *(rec
-1) != '\n') {
753 die("Log %s is corrupt.", logfile
);
754 date
= strtoul(lastgt
+ 1, &tz_c
, 10);
755 if (date
<= at_time
) {
757 if (get_sha1_hex(lastrec
, logged_sha1
))
758 die("Log %s is corrupt.", logfile
);
759 if (get_sha1_hex(rec
+ 41, sha1
))
760 die("Log %s is corrupt.", logfile
);
761 if (hashcmp(logged_sha1
, sha1
)) {
762 tz
= strtoul(tz_c
, NULL
, 10);
764 "warning: Log %s has gap after %s.\n",
765 logfile
, show_rfc2822_date(date
, tz
));
768 else if (date
== at_time
) {
769 if (get_sha1_hex(rec
+ 41, sha1
))
770 die("Log %s is corrupt.", logfile
);
773 if (get_sha1_hex(rec
+ 41, logged_sha1
))
774 die("Log %s is corrupt.", logfile
);
775 if (hashcmp(logged_sha1
, sha1
)) {
776 tz
= strtoul(tz_c
, NULL
, 10);
778 "warning: Log %s unexpectedly ended on %s.\n",
779 logfile
, show_rfc2822_date(date
, tz
));
782 munmap((void*)logdata
, st
.st_size
);
789 while (rec
< logend
&& *rec
!= '>' && *rec
!= '\n')
791 if (rec
== logend
|| *rec
== '\n')
792 die("Log %s is corrupt.", logfile
);
793 date
= strtoul(rec
+ 1, &tz_c
, 10);
794 tz
= strtoul(tz_c
, NULL
, 10);
795 if (get_sha1_hex(logdata
, sha1
))
796 die("Log %s is corrupt.", logfile
);
797 munmap((void*)logdata
, st
.st_size
);
798 fprintf(stderr
, "warning: Log %s only goes back to %s.\n",
799 logfile
, show_rfc2822_date(date
, tz
));