refs: Use binary search to lookup refs faster
[alt-git.git] / refs.c
blob5835b40b0cb1e707323aaa0d4c837a7ab21d99d0
1 #include "cache.h"
2 #include "refs.h"
3 #include "object.h"
4 #include "tag.h"
5 #include "dir.h"
7 /* ISSYMREF=01 and ISPACKED=02 are public interfaces */
8 #define REF_KNOWS_PEELED 04
9 #define REF_BROKEN 010
11 struct ref_entry {
12 unsigned char flag; /* ISSYMREF? ISPACKED? */
13 unsigned char sha1[20];
14 unsigned char peeled[20];
15 char name[FLEX_ARRAY];
18 struct ref_array {
19 int nr, alloc;
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;
35 if (len <= 0)
36 return NULL;
37 if (get_sha1_hex(line, sha1) < 0)
38 return NULL;
39 if (!isspace(line[40]))
40 return NULL;
41 line += 41;
42 if (isspace(*line))
43 return NULL;
44 if (line[len] != '\n')
45 return NULL;
46 line[len] = 0;
48 return line;
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)
55 int len;
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);
64 entry->flag = flag;
65 if (new_entry)
66 *new_entry = entry;
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)
80 int i = 0, j = 1;
82 /* Nothing to sort unless there are at least two entries */
83 if (array->nr < 2)
84 return;
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",
95 a->name);
96 warning("Duplicated ref: %s", a->name);
97 continue;
99 i++;
100 array->refs[i] = array->refs[j];
102 array->nr = i + 1;
105 static struct ref_entry *search_ref_array(struct ref_array *array, const char *name)
107 struct ref_entry *e, **r;
108 int len;
110 if (name == NULL)
111 return NULL;
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);
119 free(e);
121 if (r == NULL)
122 return NULL;
124 return *r;
128 * Future: need to be in "struct repository"
129 * when doing a full libification.
131 static struct cached_refs {
132 char did_loose;
133 char did_packed;
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)
143 int i;
144 for (i = 0; i < array->nr; i++)
145 free(array->refs[i]);
146 free(array->refs);
147 array->nr = array->alloc = 0;
148 array->refs = NULL;
151 static void invalidate_cached_refs(void)
153 struct cached_refs *ca = &cached_refs;
155 if (ca->did_loose)
156 free_ref_array(&ca->loose);
157 if (ca->did_packed)
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];
170 const char *name;
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 */
178 continue;
181 name = parse_ref_line(refline, sha1);
182 if (name) {
183 add_ref(name, sha1, flag, &cached_refs->packed, &last);
184 continue;
186 if (last &&
187 refline[0] == '^' &&
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;
211 if (submodule) {
212 packed_refs_file = git_path_submodule(submodule, "packed-refs");
213 refs = &submodule_refs;
214 free_ref_array(&refs->packed);
215 } else {
216 packed_refs_file = git_path("packed-refs");
217 refs = &cached_refs;
220 if (!refs->did_packed || submodule) {
221 FILE *f = fopen(packed_refs_file, "r");
222 if (f) {
223 read_packed_refs(f, refs);
224 fclose(f);
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)
234 DIR *dir;
235 const char *path;
237 if (submodule)
238 path = git_path_submodule(submodule, "%s", base);
239 else
240 path = git_path("%s", base);
243 dir = opendir(path);
245 if (dir) {
246 struct dirent *de;
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];
256 struct stat st;
257 int flag;
258 int namelen;
259 const char *refdir;
261 if (de->d_name[0] == '.')
262 continue;
263 namelen = strlen(de->d_name);
264 if (namelen > 255)
265 continue;
266 if (has_extension(de->d_name, ".lock"))
267 continue;
268 memcpy(ref + baselen, de->d_name, namelen+1);
269 refdir = submodule
270 ? git_path_submodule(submodule, "%s", ref)
271 : git_path("%s", ref);
272 if (stat(refdir, &st) < 0)
273 continue;
274 if (S_ISDIR(st.st_mode)) {
275 get_ref_dir(submodule, ref, array);
276 continue;
278 if (submodule) {
279 hashclr(sha1);
280 flag = 0;
281 if (resolve_gitlink_ref(submodule, ref, sha1) < 0) {
282 hashclr(sha1);
283 flag |= REF_BROKEN;
285 } else
286 if (!resolve_ref(ref, sha1, 1, &flag)) {
287 hashclr(sha1);
288 flag |= REF_BROKEN;
290 add_ref(ref, sha1, flag, array, NULL);
292 free(ref);
293 closedir(dir);
297 struct warn_if_dangling_data {
298 FILE *fp;
299 const char *refname;
300 const char *msg_fmt;
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))
311 return 0;
313 resolves_to = resolve_ref(refname, junk, 0, NULL);
314 if (!resolves_to || strcmp(resolves_to, d->refname))
315 return 0;
317 fprintf(d->fp, d->msg_fmt, refname);
318 return 0;
321 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
323 struct warn_if_dangling_data data;
325 data.fp = fp;
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)
333 if (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 */
349 #define MAXDEPTH 5
350 #define MAXREFLEN (1024)
352 static int resolve_gitlink_packed_ref(char *name, int pathlen, const char *refname, unsigned char *result)
354 FILE *f;
355 struct cached_refs refs;
356 struct ref_entry *ref;
357 int retval = -1;
359 strcpy(name + pathlen, "packed-refs");
360 f = fopen(name, "r");
361 if (!f)
362 return -1;
363 read_packed_refs(f, &refs);
364 fclose(f);
365 ref = search_ref_array(&refs.packed, refname);
366 if (ref != NULL) {
367 memcpy(result, ref->sha1, 20);
368 retval = 0;
370 free_ref_array(&refs.packed);
371 return retval;
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)
380 return -1;
381 memcpy(name + pathlen, refname, len+1);
382 fd = open(name, O_RDONLY);
383 if (fd < 0)
384 return resolve_gitlink_packed_ref(name, pathlen, refname, result);
386 len = read(fd, buffer, sizeof(buffer)-1);
387 close(fd);
388 if (len < 0)
389 return -1;
390 while (len && isspace(buffer[len-1]))
391 len--;
392 buffer[len] = 0;
394 /* Was it a detached head or an old-fashioned symlink? */
395 if (!get_sha1_hex(buffer, result))
396 return 0;
398 /* Symref? */
399 if (strncmp(buffer, "ref:", 4))
400 return -1;
401 p = buffer + 4;
402 while (isspace(*p))
403 p++;
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;
411 char *gitdir;
412 const char *tmp;
414 while (len && path[len-1] == '/')
415 len--;
416 if (!len)
417 return -1;
418 gitdir = xmalloc(len + MAXREFLEN + 8);
419 memcpy(gitdir, path, len);
420 memcpy(gitdir + len, "/.git", 6);
421 len += 5;
423 tmp = read_gitfile_gently(gitdir);
424 if (tmp) {
425 free(gitdir);
426 len = strlen(tmp);
427 gitdir = xmalloc(len + MAXREFLEN + 3);
428 memcpy(gitdir, tmp, len);
430 gitdir[len] = '/';
431 gitdir[++len] = '\0';
432 retval = resolve_gitlink_ref_recursive(gitdir, len, refname, result, 0);
433 free(gitdir);
434 return retval;
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;
452 ssize_t len;
453 char buffer[256];
454 static char ref_buffer[256];
456 if (flag)
457 *flag = 0;
459 for (;;) {
460 char path[PATH_MAX];
461 struct stat st;
462 char *buf;
463 int fd;
465 if (--depth < 0)
466 return NULL;
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);
473 if (r != NULL) {
474 hashcpy(sha1, r->sha1);
475 if (flag)
476 *flag |= REF_ISPACKED;
477 return ref;
479 if (reading || errno != ENOENT)
480 return NULL;
481 hashclr(sha1);
482 return ref;
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)) {
489 buffer[len] = 0;
490 strcpy(ref_buffer, buffer);
491 ref = ref_buffer;
492 if (flag)
493 *flag |= REF_ISSYMREF;
494 continue;
498 /* Is it a directory? */
499 if (S_ISDIR(st.st_mode)) {
500 errno = EISDIR;
501 return NULL;
505 * Anything else, just open it and try to use it as
506 * a ref
508 fd = open(path, O_RDONLY);
509 if (fd < 0)
510 return NULL;
511 len = read_in_full(fd, buffer, sizeof(buffer)-1);
512 close(fd);
515 * Is it a symbolic ref?
517 if (len < 4 || memcmp("ref:", buffer, 4))
518 break;
519 buf = buffer + 4;
520 len -= 4;
521 while (len && isspace(*buf))
522 buf++, len--;
523 while (len && isspace(buf[len-1]))
524 len--;
525 buf[len] = 0;
526 memcpy(ref_buffer, buf, len + 1);
527 ref = ref_buffer;
528 if (flag)
529 *flag |= REF_ISSYMREF;
531 if (len < 40 || get_sha1_hex(buffer, sha1))
532 return NULL;
533 return ref;
536 /* The argument to filter_refs */
537 struct ref_filter {
538 const char *pattern;
539 each_ref_fn *fn;
540 void *cb_data;
543 int read_ref(const char *ref, unsigned char *sha1)
545 if (resolve_ref(ref, sha1, 1, NULL))
546 return 0;
547 return -1;
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))
555 return 0;
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);
562 return 0;
565 current_ref = entry;
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,
570 void *data)
572 struct ref_filter *filter = (struct ref_filter *)data;
573 if (fnmatch(filter->pattern, ref, 0))
574 return 0;
575 return filter->fn(ref, sha, flags, filter->cb_data);
578 int peel_ref(const char *ref, unsigned char *sha1)
580 int flag;
581 unsigned char base[20];
582 struct object *o;
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);
588 return 0;
590 hashcpy(base, current_ref->sha1);
591 goto fallback;
594 if (!resolve_ref(ref, base, 1, &flag))
595 return -1;
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);
603 return 0;
607 fallback:
608 o = parse_object(base);
609 if (o && o->type == OBJ_TAG) {
610 o = deref_tag(o, ref, 0);
611 if (o) {
612 hashcpy(sha1, o->sha1);
613 return 0;
616 return -1;
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);
634 if (!cmp) {
635 p++;
636 continue;
638 if (cmp > 0) {
639 entry = loose->refs[l++];
640 } else {
641 entry = packed->refs[p++];
643 retval = do_one_ref(base, fn, trim, flags, cb_data, entry);
644 if (retval)
645 goto end_each;
648 if (l < loose->nr) {
649 p = l;
650 packed = loose;
653 for (; p < packed->nr; p++) {
654 retval = do_one_ref(base, fn, trim, flags, cb_data, packed->refs[p]);
655 if (retval)
656 goto end_each;
659 end_each:
660 current_ref = NULL;
661 return retval;
665 static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
667 unsigned char sha1[20];
668 int flag;
670 if (submodule) {
671 if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
672 return fn("HEAD", sha1, 0, cb_data);
674 return 0;
677 if (resolve_ref("HEAD", sha1, 1, &flag))
678 return fn("HEAD", sha1, flag, cb_data);
680 return 0;
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;
754 int ret;
756 if (!prefix && prefixcmp(pattern, "refs/"))
757 strbuf_addstr(&real_pattern, "refs/");
758 else if (prefix)
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;
771 filter.fn = fn;
772 filter.cb_data = cb_data;
773 ret = for_each_ref(filter_refs, &filter);
775 strbuf_release(&real_pattern);
776 return ret;
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 == '\\')
806 return 1;
807 /* 2.13 Pattern Matching Notation */
808 if (ch == '?' || ch == '[') /* Unsupported */
809 return 1;
810 if (ch == '*') /* Supported at the end */
811 return 2;
812 return 0;
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;
821 level = 0;
822 while (1) {
823 while ((ch = *cp++) == '/')
824 ; /* tolerate duplicated slashes */
825 if (!ch)
826 /* should not end with slashes */
827 return CHECK_REF_FORMAT_ERROR;
829 /* we are at the beginning of the path component */
830 if (ch == '.')
831 return CHECK_REF_FORMAT_ERROR;
832 bad_type = bad_ref_char(ch);
833 if (bad_type) {
834 if (bad_type == 2 && (!*cp || *cp == '/') &&
835 ret == CHECK_REF_FORMAT_OK)
836 ret = CHECK_REF_FORMAT_WILDCARD;
837 else
838 return CHECK_REF_FORMAT_ERROR;
841 last = ch;
842 /* scan the rest of the path component */
843 while ((ch = *cp++) != 0) {
844 bad_type = bad_ref_char(ch);
845 if (bad_type)
846 return CHECK_REF_FORMAT_ERROR;
847 if (ch == '/')
848 break;
849 if (last == '.' && ch == '.')
850 return CHECK_REF_FORMAT_ERROR;
851 if (last == '@' && ch == '{')
852 return CHECK_REF_FORMAT_ERROR;
853 last = ch;
855 level++;
856 if (!ch) {
857 if (ref <= cp - 2 && cp[-2] == '.')
858 return CHECK_REF_FORMAT_ERROR;
859 if (level < 2)
860 return CHECK_REF_FORMAT_ONELEVEL;
861 if (has_extension(ref, ".lock"))
862 return CHECK_REF_FORMAT_ERROR;
863 return ret;
868 const char *prettify_refname(const char *name)
870 return 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[] = {
878 "%.*s",
879 "refs/%.*s",
880 "refs/tags/%.*s",
881 "refs/heads/%.*s",
882 "refs/remotes/%.*s",
883 "refs/remotes/%.*s/HEAD",
884 NULL
887 const char *ref_fetch_rules[] = {
888 "%.*s",
889 "refs/%.*s",
890 "refs/heads/%.*s",
891 NULL
894 int refname_match(const char *abbrev_name, const char *full_name, const char **rules)
896 const char **p;
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))) {
901 return 1;
905 return 0;
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);
913 unlock_ref(lock);
914 return NULL;
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));
919 unlock_ref(lock);
920 return NULL;
922 return lock;
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.
931 struct strbuf path;
932 int result;
934 strbuf_init(&path, 20);
935 strbuf_addstr(&path, file);
937 result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
939 strbuf_release(&path);
941 return result;
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] == '/') {
957 if (!quiet)
958 error("'%s' exists; cannot create '%s'",
959 entry->name, ref);
960 return 0;
964 return 1;
967 static struct ref_lock *lock_ref_sha1_basic(const char *ref, const unsigned char *old_sha1, int flags, int *type_p)
969 char *ref_file;
970 const char *orig_ref = ref;
971 struct ref_lock *lock;
972 int last_errno = 0;
973 int type, lflags;
974 int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
975 int missing = 0;
977 lock = xcalloc(1, sizeof(struct ref_lock));
978 lock->lock_fd = -1;
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'
985 * to remain.
987 ref_file = git_path("%s", orig_ref);
988 if (remove_empty_directories(ref_file)) {
989 last_errno = errno;
990 error("there are still refs under '%s'", orig_ref);
991 goto error_return;
993 ref = resolve_ref(orig_ref, lock->old_sha1, mustexist, &type);
995 if (type_p)
996 *type_p = type;
997 if (!ref) {
998 last_errno = errno;
999 error("unable to resolve reference %s: %s",
1000 orig_ref, strerror(errno));
1001 goto error_return;
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.
1009 if (missing &&
1010 !is_refname_available(ref, NULL, get_packed_refs(NULL), 0)) {
1011 last_errno = ENOTDIR;
1012 goto error_return;
1015 lock->lk = xcalloc(1, sizeof(struct lock_file));
1017 lflags = LOCK_DIE_ON_ERROR;
1018 if (flags & REF_NODEREF) {
1019 ref = orig_ref;
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);
1025 if (missing)
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)) {
1031 last_errno = errno;
1032 error("unable to create directory for %s", ref_file);
1033 goto error_return;
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;
1039 error_return:
1040 unlock_ref(lock);
1041 errno = last_errno;
1042 return NULL;
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))
1049 return NULL;
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)) {
1057 default:
1058 return NULL;
1059 case 0:
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;
1071 int fd, i;
1073 packed = get_packed_refs(NULL);
1074 ref = search_ref_array(packed, refname);
1075 if (ref == NULL)
1076 return 0;
1077 fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0);
1078 if (fd < 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];
1085 int len;
1087 ref = packed->refs[i];
1089 if (!strcmp(refname, ref->name))
1090 continue;
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);
1107 if (!lock)
1108 return 1;
1109 if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
1110 /* loose */
1111 const char *path;
1113 if (!(delopt & REF_NODEREF)) {
1114 i = strlen(lock->lk->filename) - 5; /* .lock */
1115 lock->lk->filename[i] = 0;
1116 path = lock->lk->filename;
1117 } else {
1118 path = git_path("%s", refname);
1120 err = unlink_or_warn(path);
1121 if (err && errno != ENOENT)
1122 ret = 1;
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
1129 * without it.
1131 ret |= repack_without_ref(refname);
1133 unlink_or_warn(git_path("logs/%s", lock->ref_name));
1134 invalidate_cached_refs();
1135 unlock_ref(lock);
1136 return ret;
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",
1164 oldref);
1165 if (!symref)
1166 return error("refname %s not found", oldref);
1168 if (!is_refname_available(newref, oldref, get_packed_refs(NULL), 0))
1169 return 1;
1171 if (!is_refname_available(newref, oldref, get_loose_refs(NULL), 0))
1172 return 1;
1174 lock = lock_ref_sha1_basic(renamed_ref, NULL, 0, NULL);
1175 if (!lock)
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);
1187 goto rollback;
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);
1194 goto rollback;
1196 } else {
1197 error("unable to delete existing %s", newref);
1198 goto rollback;
1202 if (log && safe_create_leading_directories(git_path("logs/%s", newref))) {
1203 error("unable to create directory for %s", newref);
1204 goto rollback;
1207 retry:
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);
1217 goto rollback;
1219 goto retry;
1220 } else {
1221 error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
1222 newref, strerror(errno));
1223 goto rollback;
1226 logmoved = log;
1228 lock = lock_ref_sha1_basic(newref, NULL, 0, NULL);
1229 if (!lock) {
1230 error("unable to lock %s for update", newref);
1231 goto rollback;
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);
1237 goto rollback;
1240 return 0;
1242 rollback:
1243 lock = lock_ref_sha1_basic(oldref, NULL, 0, NULL);
1244 if (!lock) {
1245 error("unable to lock %s for rollback", oldref);
1246 goto rollbacklog;
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;
1256 rollbacklog:
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));
1265 return 1;
1268 int close_ref(struct ref_lock *lock)
1270 if (close_lock_file(lock->lk))
1271 return -1;
1272 lock->lock_fd = -1;
1273 return 0;
1276 int commit_ref(struct ref_lock *lock)
1278 if (commit_lock_file(lock->lk))
1279 return -1;
1280 lock->lock_fd = -1;
1281 return 0;
1284 void unlock_ref(struct ref_lock *lock)
1286 /* Do not free lock->lk -- atexit() still looks at them */
1287 if (lock->lk)
1288 rollback_lock_file(lock->lk);
1289 free(lock->ref_name);
1290 free(lock->orig_ref_name);
1291 free(lock);
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)
1301 char *cp = buf;
1302 char c;
1303 int wasspace = 1;
1305 *cp++ = '\t';
1306 while ((c = *msg++)) {
1307 if (wasspace && isspace(c))
1308 continue;
1309 wasspace = isspace(c);
1310 if (wasspace)
1311 c = ' ';
1312 *cp++ = c;
1314 while (buf < cp && isspace(cp[-1]))
1315 cp--;
1316 *cp++ = '\n';
1317 return cp - buf;
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",
1332 logfile);
1333 oflags |= O_CREAT;
1336 logfd = open(logfile, oflags, 0666);
1337 if (logfd < 0) {
1338 if (!(oflags & O_CREAT) && errno == ENOENT)
1339 return 0;
1341 if ((oflags & O_CREAT) && errno == EISDIR) {
1342 if (remove_empty_directories(logfile)) {
1343 return error("There are still logs under '%s'",
1344 logfile);
1346 logfd = open(logfile, oflags, 0666);
1349 if (logfd < 0)
1350 return error("Unable to append to %s: %s",
1351 logfile, strerror(errno));
1354 adjust_shared_perm(logfile);
1355 close(logfd);
1356 return 0;
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;
1364 int msglen;
1365 char log_file[PATH_MAX];
1366 char *logrec;
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));
1373 if (result)
1374 return result;
1376 logfd = open(log_file, oflags);
1377 if (logfd < 0)
1378 return 0;
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),
1386 committer);
1387 if (msglen)
1388 len += copy_msg(logrec + len - 1, msg) - 1;
1389 written = len <= maxlen ? write_in_full(logfd, logrec, len) : -1;
1390 free(logrec);
1391 if (close(logfd) != 0 || written != len)
1392 return error("Unable to append to %s", log_file);
1393 return 0;
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';
1405 struct object *o;
1407 if (!lock)
1408 return -1;
1409 if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
1410 unlock_ref(lock);
1411 return 0;
1413 o = parse_object(sha1);
1414 if (!o) {
1415 error("Trying to write ref %s with nonexistant object %s",
1416 lock->ref_name, sha1_to_hex(sha1));
1417 unlock_ref(lock);
1418 return -1;
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);
1423 unlock_ref(lock);
1424 return -1;
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);
1430 unlock_ref(lock);
1431 return -1;
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)) {
1437 unlock_ref(lock);
1438 return -1;
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
1445 * updated too.
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];
1454 int head_flag;
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);
1463 unlock_ref(lock);
1464 return -1;
1466 unlock_ref(lock);
1467 return 0;
1470 int create_symref(const char *ref_target, const char *refs_heads_master,
1471 const char *logmsg)
1473 const char *lockpath;
1474 char ref[1000];
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))
1480 hashclr(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) {
1487 unlink(git_HEAD);
1488 if (!symlink(refs_heads_master, git_HEAD))
1489 goto done;
1490 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
1492 #endif
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);
1501 if (fd < 0) {
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);
1518 error_free_return:
1519 free(git_HEAD);
1520 return -1;
1523 #ifndef NO_SYMLINK_HEAD
1524 done:
1525 #endif
1526 if (logmsg && !read_ref(refs_heads_master, new_sha1))
1527 log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
1529 free(git_HEAD);
1530 return 0;
1533 static char *ref_msg(const char *line, const char *endp)
1535 const char *ep;
1536 line += 82;
1537 ep = memchr(line, '\n', endp - line);
1538 if (!ep)
1539 ep = endp;
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;
1546 char *tz_c;
1547 int logfd, tz, reccnt = 0;
1548 struct stat st;
1549 unsigned long date;
1550 unsigned char logged_sha1[20];
1551 void *log_mapped;
1552 size_t mapsz;
1554 logfile = git_path("logs/%s", ref);
1555 logfd = open(logfile, O_RDONLY, 0);
1556 if (logfd < 0)
1557 die_errno("Unable to read log '%s'", logfile);
1558 fstat(logfd, &st);
1559 if (!st.st_size)
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;
1564 close(logfd);
1566 lastrec = NULL;
1567 rec = logend = logdata + st.st_size;
1568 while (logdata < rec) {
1569 reccnt++;
1570 if (logdata < rec && *(rec-1) == '\n')
1571 rec--;
1572 lastgt = NULL;
1573 while (logdata < rec && *(rec-1) != '\n') {
1574 rec--;
1575 if (*rec == '>')
1576 lastgt = rec;
1578 if (!lastgt)
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);
1583 if (msg)
1584 *msg = ref_msg(rec, logend);
1585 if (cutoff_time)
1586 *cutoff_time = date;
1587 if (cutoff_tz)
1588 *cutoff_tz = tz;
1589 if (cutoff_cnt)
1590 *cutoff_cnt = reccnt - 1;
1591 if (lastrec) {
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);
1605 else {
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);
1614 return 0;
1616 lastrec = rec;
1617 if (cnt > 0)
1618 cnt--;
1621 rec = logdata;
1622 while (rec < logend && *rec != '>' && *rec != '\n')
1623 rec++;
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);
1634 if (msg)
1635 *msg = ref_msg(logdata, logend);
1636 munmap(log_mapped, mapsz);
1638 if (cutoff_time)
1639 *cutoff_time = date;
1640 if (cutoff_tz)
1641 *cutoff_tz = tz;
1642 if (cutoff_cnt)
1643 *cutoff_cnt = reccnt;
1644 return 1;
1647 int for_each_recent_reflog_ent(const char *ref, each_reflog_ent_fn fn, long ofs, void *cb_data)
1649 const char *logfile;
1650 FILE *logfp;
1651 struct strbuf sb = STRBUF_INIT;
1652 int ret = 0;
1654 logfile = git_path("logs/%s", ref);
1655 logfp = fopen(logfile, "r");
1656 if (!logfp)
1657 return -1;
1659 if (ofs) {
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')) {
1665 fclose(logfp);
1666 strbuf_release(&sb);
1667 return -1;
1671 while (!strbuf_getwholeline(&sb, logfp, '\n')) {
1672 unsigned char osha1[20], nsha1[20];
1673 char *email_end, *message;
1674 unsigned long timestamp;
1675 int tz;
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')
1692 message += 6;
1693 else
1694 message += 7;
1695 ret = fn(osha1, nsha1, sb.buf + 82, timestamp, tz, message,
1696 cb_data);
1697 if (ret)
1698 break;
1700 fclose(logfp);
1701 strbuf_release(&sb);
1702 return ret;
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));
1713 int retval = 0;
1715 if (dir) {
1716 struct dirent *de;
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) {
1725 struct stat st;
1726 int namelen;
1728 if (de->d_name[0] == '.')
1729 continue;
1730 namelen = strlen(de->d_name);
1731 if (namelen > 255)
1732 continue;
1733 if (has_extension(de->d_name, ".lock"))
1734 continue;
1735 memcpy(log + baselen, de->d_name, namelen+1);
1736 if (stat(git_path("logs/%s", log), &st) < 0)
1737 continue;
1738 if (S_ISDIR(st.st_mode)) {
1739 retval = do_for_each_reflog(log, fn, cb_data);
1740 } else {
1741 unsigned char sha1[20];
1742 if (!resolve_ref(log, sha1, 0, NULL))
1743 retval = error("bad ref for %s", log);
1744 else
1745 retval = fn(log, sha1, 0, cb_data);
1747 if (retval)
1748 break;
1750 free(log);
1751 closedir(dir);
1753 else if (*base)
1754 return errno;
1755 return retval;
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);
1769 if (!lock) {
1770 const char *str = "Cannot lock the ref '%s'.";
1771 switch (onerr) {
1772 case MSG_ON_ERR: error(str, refname); break;
1773 case DIE_ON_ERR: die(str, refname); break;
1774 case QUIET_ON_ERR: break;
1776 return 1;
1778 if (write_ref_sha1(lock, sha1, action) < 0) {
1779 const char *str = "Cannot update the ref '%s'.";
1780 switch (onerr) {
1781 case MSG_ON_ERR: error(str, refname); break;
1782 case DIE_ON_ERR: die(str, refname); break;
1783 case QUIET_ON_ERR: break;
1785 return 1;
1787 return 0;
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;
1795 return NULL;
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)
1804 char *spec;
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';
1813 /* copy new spec */
1814 strcat(scanf_fmt, "%s");
1815 /* copy remaining rule */
1816 strcat(scanf_fmt, spec + 4);
1818 return;
1821 char *shorten_unambiguous_ref(const char *ref, int strict)
1823 int i;
1824 static char **scanf_fmts;
1825 static int nr_rules;
1826 char *short_name;
1828 /* pre generate scanf formats from ref_rev_parse_rules[] */
1829 if (!nr_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);
1839 total_len = 0;
1840 for (i = 0; i < nr_rules; i++) {
1841 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules]
1842 + total_len;
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 */
1849 if (!nr_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) {
1857 int j;
1858 int rules_to_fail = i;
1859 int short_name_len;
1861 if (1 != sscanf(ref, scanf_fmts[i], short_name))
1862 continue;
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
1870 if (strict)
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 */
1883 if (i == j)
1884 continue;
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))
1894 break;
1898 * short name is non-ambiguous if all previous rules
1899 * haven't resolved to a valid ref
1901 if (j == rules_to_fail)
1902 return short_name;
1905 free(short_name);
1906 return xstrdup(ref);