Merge branch 'jm/maint-gitweb-filter-forks-fix' into next
[git/dscho.git] / refs.c
blob87dd83275dc31763acbef8a46e2cce88758bf214
1 #include "cache.h"
2 #include "refs.h"
3 #include "object.h"
4 #include "tag.h"
5 #include "dir.h"
7 /* ISSYMREF=0x01, ISPACKED=0x02 and ISBROKEN=0x04 are public interfaces */
8 #define REF_KNOWS_PEELED 0x10
10 struct ref_entry {
11 unsigned char flag; /* ISSYMREF? ISPACKED? */
12 unsigned char sha1[20];
13 unsigned char peeled[20];
14 /* The full name of the reference (e.g., "refs/heads/master"): */
15 char name[FLEX_ARRAY];
18 struct ref_array {
19 int nr, alloc;
20 struct ref_entry **refs;
24 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
25 * Return a pointer to the refname within the line (null-terminated),
26 * or NULL if there was a problem.
28 static const char *parse_ref_line(char *line, unsigned char *sha1)
31 * 42: the answer to everything.
33 * In this case, it happens to be the answer to
34 * 40 (length of sha1 hex representation)
35 * +1 (space in between hex and name)
36 * +1 (newline at the end of the line)
38 int len = strlen(line) - 42;
40 if (len <= 0)
41 return NULL;
42 if (get_sha1_hex(line, sha1) < 0)
43 return NULL;
44 if (!isspace(line[40]))
45 return NULL;
46 line += 41;
47 if (isspace(*line))
48 return NULL;
49 if (line[len] != '\n')
50 return NULL;
51 line[len] = 0;
53 return line;
56 /* Add a ref_entry to the end of the ref_array (unsorted). */
57 static void add_ref(const char *refname, const unsigned char *sha1,
58 int flag, struct ref_array *refs,
59 struct ref_entry **new_entry)
61 int len;
62 struct ref_entry *entry;
64 /* Allocate it and add it in.. */
65 len = strlen(refname) + 1;
66 entry = xmalloc(sizeof(struct ref_entry) + len);
67 hashcpy(entry->sha1, sha1);
68 hashclr(entry->peeled);
69 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL|REFNAME_DOT_COMPONENT))
70 die("Reference has invalid format: '%s'", refname);
71 memcpy(entry->name, refname, len);
72 entry->flag = flag;
73 if (new_entry)
74 *new_entry = entry;
75 ALLOC_GROW(refs->refs, refs->nr + 1, refs->alloc);
76 refs->refs[refs->nr++] = entry;
79 static int ref_entry_cmp(const void *a, const void *b)
81 struct ref_entry *one = *(struct ref_entry **)a;
82 struct ref_entry *two = *(struct ref_entry **)b;
83 return strcmp(one->name, two->name);
87 * Emit a warning and return true iff ref1 and ref2 have the same name
88 * and the same sha1. Die if they have the same name but different
89 * sha1s.
91 static int is_dup_ref(const struct ref_entry *ref1, const struct ref_entry *ref2)
93 if (!strcmp(ref1->name, ref2->name)) {
94 /* Duplicate name; make sure that the SHA1s match: */
95 if (hashcmp(ref1->sha1, ref2->sha1))
96 die("Duplicated ref, and SHA1s don't match: %s",
97 ref1->name);
98 warning("Duplicated ref: %s", ref1->name);
99 return 1;
100 } else {
101 return 0;
105 static void sort_ref_array(struct ref_array *array)
107 int i = 0, j = 1;
109 /* Nothing to sort unless there are at least two entries */
110 if (array->nr < 2)
111 return;
113 qsort(array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
115 /* Remove any duplicates from the ref_array */
116 for (; j < array->nr; j++) {
117 struct ref_entry *a = array->refs[i];
118 struct ref_entry *b = array->refs[j];
119 if (is_dup_ref(a, b)) {
120 free(b);
121 continue;
123 i++;
124 array->refs[i] = array->refs[j];
126 array->nr = i + 1;
129 static struct ref_entry *search_ref_array(struct ref_array *array, const char *refname)
131 struct ref_entry *e, **r;
132 int len;
134 if (refname == NULL)
135 return NULL;
137 if (!array->nr)
138 return NULL;
140 len = strlen(refname) + 1;
141 e = xmalloc(sizeof(struct ref_entry) + len);
142 memcpy(e->name, refname, len);
144 r = bsearch(&e, array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
146 free(e);
148 if (r == NULL)
149 return NULL;
151 return *r;
155 * Future: need to be in "struct repository"
156 * when doing a full libification.
158 static struct ref_cache {
159 struct ref_cache *next;
160 char did_loose;
161 char did_packed;
162 struct ref_array loose;
163 struct ref_array packed;
164 /* The submodule name, or "" for the main repo. */
165 char name[FLEX_ARRAY];
166 } *ref_cache;
168 static struct ref_entry *current_ref;
170 static struct ref_array extra_refs;
172 static void clear_ref_array(struct ref_array *array)
174 int i;
175 for (i = 0; i < array->nr; i++)
176 free(array->refs[i]);
177 free(array->refs);
178 array->nr = array->alloc = 0;
179 array->refs = NULL;
182 static void clear_packed_ref_cache(struct ref_cache *refs)
184 if (refs->did_packed)
185 clear_ref_array(&refs->packed);
186 refs->did_packed = 0;
189 static void clear_loose_ref_cache(struct ref_cache *refs)
191 if (refs->did_loose)
192 clear_ref_array(&refs->loose);
193 refs->did_loose = 0;
196 static struct ref_cache *create_ref_cache(const char *submodule)
198 int len;
199 struct ref_cache *refs;
200 if (!submodule)
201 submodule = "";
202 len = strlen(submodule) + 1;
203 refs = xcalloc(1, sizeof(struct ref_cache) + len);
204 memcpy(refs->name, submodule, len);
205 return refs;
209 * Return a pointer to a ref_cache for the specified submodule. For
210 * the main repository, use submodule==NULL. The returned structure
211 * will be allocated and initialized but not necessarily populated; it
212 * should not be freed.
214 static struct ref_cache *get_ref_cache(const char *submodule)
216 struct ref_cache *refs = ref_cache;
217 if (!submodule)
218 submodule = "";
219 while (refs) {
220 if (!strcmp(submodule, refs->name))
221 return refs;
222 refs = refs->next;
225 refs = create_ref_cache(submodule);
226 refs->next = ref_cache;
227 ref_cache = refs;
228 return refs;
231 void invalidate_ref_cache(const char *submodule)
233 struct ref_cache *refs = get_ref_cache(submodule);
234 clear_packed_ref_cache(refs);
235 clear_loose_ref_cache(refs);
238 static void read_packed_refs(FILE *f, struct ref_array *array)
240 struct ref_entry *last = NULL;
241 char refline[PATH_MAX];
242 int flag = REF_ISPACKED;
244 while (fgets(refline, sizeof(refline), f)) {
245 unsigned char sha1[20];
246 const char *refname;
247 static const char header[] = "# pack-refs with:";
249 if (!strncmp(refline, header, sizeof(header)-1)) {
250 const char *traits = refline + sizeof(header) - 1;
251 if (strstr(traits, " peeled "))
252 flag |= REF_KNOWS_PEELED;
253 /* perhaps other traits later as well */
254 continue;
257 refname = parse_ref_line(refline, sha1);
258 if (refname) {
259 add_ref(refname, sha1, flag, array, &last);
260 continue;
262 if (last &&
263 refline[0] == '^' &&
264 strlen(refline) == 42 &&
265 refline[41] == '\n' &&
266 !get_sha1_hex(refline + 1, sha1))
267 hashcpy(last->peeled, sha1);
269 sort_ref_array(array);
272 void add_extra_ref(const char *refname, const unsigned char *sha1, int flag)
274 add_ref(refname, sha1, flag, &extra_refs, NULL);
277 void clear_extra_refs(void)
279 clear_ref_array(&extra_refs);
282 static struct ref_array *get_packed_refs(struct ref_cache *refs)
284 if (!refs->did_packed) {
285 const char *packed_refs_file;
286 FILE *f;
288 if (*refs->name)
289 packed_refs_file = git_path_submodule(refs->name, "packed-refs");
290 else
291 packed_refs_file = git_path("packed-refs");
292 f = fopen(packed_refs_file, "r");
293 if (f) {
294 read_packed_refs(f, &refs->packed);
295 fclose(f);
297 refs->did_packed = 1;
299 return &refs->packed;
302 static void get_ref_dir(struct ref_cache *refs, const char *base,
303 struct ref_array *array)
305 DIR *dir;
306 const char *path;
308 if (*refs->name)
309 path = git_path_submodule(refs->name, "%s", base);
310 else
311 path = git_path("%s", base);
314 dir = opendir(path);
316 if (dir) {
317 struct dirent *de;
318 int baselen = strlen(base);
319 char *ref = xmalloc(baselen + 257);
321 memcpy(ref, base, baselen);
322 if (baselen && base[baselen-1] != '/')
323 ref[baselen++] = '/';
325 while ((de = readdir(dir)) != NULL) {
326 unsigned char sha1[20];
327 struct stat st;
328 int flag;
329 int namelen;
330 const char *refdir;
332 if (de->d_name[0] == '.')
333 continue;
334 namelen = strlen(de->d_name);
335 if (namelen > 255)
336 continue;
337 if (has_extension(de->d_name, ".lock"))
338 continue;
339 memcpy(ref + baselen, de->d_name, namelen+1);
340 refdir = *refs->name
341 ? git_path_submodule(refs->name, "%s", ref)
342 : git_path("%s", ref);
343 if (stat(refdir, &st) < 0)
344 continue;
345 if (S_ISDIR(st.st_mode)) {
346 get_ref_dir(refs, ref, array);
347 continue;
349 if (*refs->name) {
350 hashclr(sha1);
351 flag = 0;
352 if (resolve_gitlink_ref(refs->name, ref, sha1) < 0) {
353 hashclr(sha1);
354 flag |= REF_ISBROKEN;
356 } else
357 if (!resolve_ref(ref, sha1, 1, &flag)) {
358 hashclr(sha1);
359 flag |= REF_ISBROKEN;
361 add_ref(ref, sha1, flag, array, NULL);
363 free(ref);
364 closedir(dir);
368 struct warn_if_dangling_data {
369 FILE *fp;
370 const char *refname;
371 const char *msg_fmt;
374 static int warn_if_dangling_symref(const char *refname, const unsigned char *sha1,
375 int flags, void *cb_data)
377 struct warn_if_dangling_data *d = cb_data;
378 const char *resolves_to;
379 unsigned char junk[20];
381 if (!(flags & REF_ISSYMREF))
382 return 0;
384 resolves_to = resolve_ref(refname, junk, 0, NULL);
385 if (!resolves_to || strcmp(resolves_to, d->refname))
386 return 0;
388 fprintf(d->fp, d->msg_fmt, refname);
389 return 0;
392 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
394 struct warn_if_dangling_data data;
396 data.fp = fp;
397 data.refname = refname;
398 data.msg_fmt = msg_fmt;
399 for_each_rawref(warn_if_dangling_symref, &data);
402 static struct ref_array *get_loose_refs(struct ref_cache *refs)
404 if (!refs->did_loose) {
405 get_ref_dir(refs, "refs", &refs->loose);
406 sort_ref_array(&refs->loose);
407 refs->did_loose = 1;
409 return &refs->loose;
412 /* We allow "recursive" symbolic refs. Only within reason, though */
413 #define MAXDEPTH 5
414 #define MAXREFLEN (1024)
416 static int resolve_gitlink_packed_ref(struct ref_cache *refs,
417 const char *refname, unsigned char *sha1)
419 int retval = -1;
420 struct ref_entry *ref;
421 struct ref_array *array = get_packed_refs(refs);
423 ref = search_ref_array(array, refname);
424 if (ref != NULL) {
425 memcpy(sha1, ref->sha1, 20);
426 retval = 0;
428 return retval;
431 static int resolve_gitlink_ref_recursive(struct ref_cache *refs,
432 const char *refname, unsigned char *sha1,
433 int recursion)
435 int fd, len;
436 char buffer[128], *p;
437 char *path;
439 if (recursion > MAXDEPTH || strlen(refname) > MAXREFLEN)
440 return -1;
441 path = *refs->name
442 ? git_path_submodule(refs->name, "%s", refname)
443 : git_path("%s", refname);
444 fd = open(path, O_RDONLY);
445 if (fd < 0)
446 return resolve_gitlink_packed_ref(refs, refname, sha1);
448 len = read(fd, buffer, sizeof(buffer)-1);
449 close(fd);
450 if (len < 0)
451 return -1;
452 while (len && isspace(buffer[len-1]))
453 len--;
454 buffer[len] = 0;
456 /* Was it a detached head or an old-fashioned symlink? */
457 if (!get_sha1_hex(buffer, sha1))
458 return 0;
460 /* Symref? */
461 if (strncmp(buffer, "ref:", 4))
462 return -1;
463 p = buffer + 4;
464 while (isspace(*p))
465 p++;
467 return resolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);
470 int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *sha1)
472 int len = strlen(path), retval;
473 char *submodule;
474 struct ref_cache *refs;
476 while (len && path[len-1] == '/')
477 len--;
478 if (!len)
479 return -1;
480 submodule = xstrndup(path, len);
481 refs = get_ref_cache(submodule);
482 free(submodule);
484 retval = resolve_gitlink_ref_recursive(refs, refname, sha1, 0);
485 return retval;
489 * Try to read ref from the packed references. On success, set sha1
490 * and return 0; otherwise, return -1.
492 static int get_packed_ref(const char *refname, unsigned char *sha1)
494 struct ref_array *packed = get_packed_refs(get_ref_cache(NULL));
495 struct ref_entry *entry = search_ref_array(packed, refname);
496 if (entry) {
497 hashcpy(sha1, entry->sha1);
498 return 0;
500 return -1;
503 const char *resolve_ref(const char *refname, unsigned char *sha1, int reading, int *flag)
505 int depth = MAXDEPTH;
506 ssize_t len;
507 char buffer[256];
508 static char refname_buffer[256];
510 if (flag)
511 *flag = 0;
513 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
514 return NULL;
516 for (;;) {
517 char path[PATH_MAX];
518 struct stat st;
519 char *buf;
520 int fd;
522 if (--depth < 0)
523 return NULL;
525 git_snpath(path, sizeof(path), "%s", refname);
527 if (lstat(path, &st) < 0) {
528 if (errno != ENOENT)
529 return NULL;
531 * The loose reference file does not exist;
532 * check for a packed reference.
534 if (!get_packed_ref(refname, sha1)) {
535 if (flag)
536 *flag |= REF_ISPACKED;
537 return refname;
539 /* The reference is not a packed reference, either. */
540 if (reading) {
541 return NULL;
542 } else {
543 hashclr(sha1);
544 return refname;
548 /* Follow "normalized" - ie "refs/.." symlinks by hand */
549 if (S_ISLNK(st.st_mode)) {
550 len = readlink(path, buffer, sizeof(buffer)-1);
551 if (len < 0)
552 return NULL;
553 buffer[len] = 0;
554 if (!prefixcmp(buffer, "refs/") &&
555 !check_refname_format(buffer, 0)) {
556 strcpy(refname_buffer, buffer);
557 refname = refname_buffer;
558 if (flag)
559 *flag |= REF_ISSYMREF;
560 continue;
564 /* Is it a directory? */
565 if (S_ISDIR(st.st_mode)) {
566 errno = EISDIR;
567 return NULL;
571 * Anything else, just open it and try to use it as
572 * a ref
574 fd = open(path, O_RDONLY);
575 if (fd < 0)
576 return NULL;
577 len = read_in_full(fd, buffer, sizeof(buffer)-1);
578 close(fd);
579 if (len < 0)
580 return NULL;
581 while (len && isspace(buffer[len-1]))
582 len--;
583 buffer[len] = '\0';
586 * Is it a symbolic ref?
588 if (prefixcmp(buffer, "ref:"))
589 break;
590 if (flag)
591 *flag |= REF_ISSYMREF;
592 buf = buffer + 4;
593 while (isspace(*buf))
594 buf++;
595 if (check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {
596 if (flag)
597 *flag |= REF_ISBROKEN;
598 return NULL;
600 refname = strcpy(refname_buffer, buf);
602 /* Please note that FETCH_HEAD has a second line containing other data. */
603 if (get_sha1_hex(buffer, sha1) || (buffer[40] != '\0' && !isspace(buffer[40]))) {
604 if (flag)
605 *flag |= REF_ISBROKEN;
606 return NULL;
608 return refname;
611 /* The argument to filter_refs */
612 struct ref_filter {
613 const char *pattern;
614 each_ref_fn *fn;
615 void *cb_data;
618 int read_ref(const char *refname, unsigned char *sha1)
620 if (resolve_ref(refname, sha1, 1, NULL))
621 return 0;
622 return -1;
625 #define DO_FOR_EACH_INCLUDE_BROKEN 01
626 static int do_one_ref(const char *base, each_ref_fn fn, int trim,
627 int flags, void *cb_data, struct ref_entry *entry)
629 if (prefixcmp(entry->name, base))
630 return 0;
632 if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) {
633 if (entry->flag & REF_ISBROKEN)
634 return 0; /* ignore broken refs e.g. dangling symref */
635 if (!has_sha1_file(entry->sha1)) {
636 error("%s does not point to a valid object!", entry->name);
637 return 0;
640 current_ref = entry;
641 return fn(entry->name + trim, entry->sha1, entry->flag, cb_data);
644 static int filter_refs(const char *refname, const unsigned char *sha, int flags,
645 void *data)
647 struct ref_filter *filter = (struct ref_filter *)data;
648 if (fnmatch(filter->pattern, refname, 0))
649 return 0;
650 return filter->fn(refname, sha, flags, filter->cb_data);
653 int peel_ref(const char *refname, unsigned char *sha1)
655 int flag;
656 unsigned char base[20];
657 struct object *o;
659 if (current_ref && (current_ref->name == refname
660 || !strcmp(current_ref->name, refname))) {
661 if (current_ref->flag & REF_KNOWS_PEELED) {
662 hashcpy(sha1, current_ref->peeled);
663 return 0;
665 hashcpy(base, current_ref->sha1);
666 goto fallback;
669 if (!resolve_ref(refname, base, 1, &flag))
670 return -1;
672 if ((flag & REF_ISPACKED)) {
673 struct ref_array *array = get_packed_refs(get_ref_cache(NULL));
674 struct ref_entry *r = search_ref_array(array, refname);
676 if (r != NULL && r->flag & REF_KNOWS_PEELED) {
677 hashcpy(sha1, r->peeled);
678 return 0;
682 fallback:
683 o = parse_object(base);
684 if (o && o->type == OBJ_TAG) {
685 o = deref_tag(o, refname, 0);
686 if (o) {
687 hashcpy(sha1, o->sha1);
688 return 0;
691 return -1;
694 static int do_for_each_ref(const char *submodule, const char *base, each_ref_fn fn,
695 int trim, int flags, void *cb_data)
697 int retval = 0, i, p = 0, l = 0;
698 struct ref_cache *refs = get_ref_cache(submodule);
699 struct ref_array *packed = get_packed_refs(refs);
700 struct ref_array *loose = get_loose_refs(refs);
702 struct ref_array *extra = &extra_refs;
704 for (i = 0; i < extra->nr; i++)
705 retval = do_one_ref(base, fn, trim, flags, cb_data, extra->refs[i]);
707 while (p < packed->nr && l < loose->nr) {
708 struct ref_entry *entry;
709 int cmp = strcmp(packed->refs[p]->name, loose->refs[l]->name);
710 if (!cmp) {
711 p++;
712 continue;
714 if (cmp > 0) {
715 entry = loose->refs[l++];
716 } else {
717 entry = packed->refs[p++];
719 retval = do_one_ref(base, fn, trim, flags, cb_data, entry);
720 if (retval)
721 goto end_each;
724 if (l < loose->nr) {
725 p = l;
726 packed = loose;
729 for (; p < packed->nr; p++) {
730 retval = do_one_ref(base, fn, trim, flags, cb_data, packed->refs[p]);
731 if (retval)
732 goto end_each;
735 end_each:
736 current_ref = NULL;
737 return retval;
741 static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
743 unsigned char sha1[20];
744 int flag;
746 if (submodule) {
747 if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
748 return fn("HEAD", sha1, 0, cb_data);
750 return 0;
753 if (resolve_ref("HEAD", sha1, 1, &flag))
754 return fn("HEAD", sha1, flag, cb_data);
756 return 0;
759 int head_ref(each_ref_fn fn, void *cb_data)
761 return do_head_ref(NULL, fn, cb_data);
764 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
766 return do_head_ref(submodule, fn, cb_data);
769 int for_each_ref(each_ref_fn fn, void *cb_data)
771 return do_for_each_ref(NULL, "", fn, 0, 0, cb_data);
774 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
776 return do_for_each_ref(submodule, "", fn, 0, 0, cb_data);
779 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
781 return do_for_each_ref(NULL, prefix, fn, strlen(prefix), 0, cb_data);
784 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
785 each_ref_fn fn, void *cb_data)
787 return do_for_each_ref(submodule, prefix, fn, strlen(prefix), 0, cb_data);
790 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
792 return for_each_ref_in("refs/tags/", fn, cb_data);
795 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
797 return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
800 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
802 return for_each_ref_in("refs/heads/", fn, cb_data);
805 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
807 return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
810 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
812 return for_each_ref_in("refs/remotes/", fn, cb_data);
815 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
817 return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
820 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
822 return do_for_each_ref(NULL, "refs/replace/", fn, 13, 0, cb_data);
825 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
827 struct strbuf buf = STRBUF_INIT;
828 int ret = 0;
829 unsigned char sha1[20];
830 int flag;
832 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
833 if (resolve_ref(buf.buf, sha1, 1, &flag))
834 ret = fn(buf.buf, sha1, flag, cb_data);
835 strbuf_release(&buf);
837 return ret;
840 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
842 struct strbuf buf = STRBUF_INIT;
843 int ret;
844 strbuf_addf(&buf, "%srefs/", get_git_namespace());
845 ret = do_for_each_ref(NULL, buf.buf, fn, 0, 0, cb_data);
846 strbuf_release(&buf);
847 return ret;
850 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
851 const char *prefix, void *cb_data)
853 struct strbuf real_pattern = STRBUF_INIT;
854 struct ref_filter filter;
855 int ret;
857 if (!prefix && prefixcmp(pattern, "refs/"))
858 strbuf_addstr(&real_pattern, "refs/");
859 else if (prefix)
860 strbuf_addstr(&real_pattern, prefix);
861 strbuf_addstr(&real_pattern, pattern);
863 if (!has_glob_specials(pattern)) {
864 /* Append implied '/' '*' if not present. */
865 if (real_pattern.buf[real_pattern.len - 1] != '/')
866 strbuf_addch(&real_pattern, '/');
867 /* No need to check for '*', there is none. */
868 strbuf_addch(&real_pattern, '*');
871 filter.pattern = real_pattern.buf;
872 filter.fn = fn;
873 filter.cb_data = cb_data;
874 ret = for_each_ref(filter_refs, &filter);
876 strbuf_release(&real_pattern);
877 return ret;
880 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
882 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
885 int for_each_rawref(each_ref_fn fn, void *cb_data)
887 return do_for_each_ref(NULL, "", fn, 0,
888 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
892 * Make sure "ref" is something reasonable to have under ".git/refs/";
893 * We do not like it if:
895 * - any path component of it begins with ".", or
896 * - it has double dots "..", or
897 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
898 * - it ends with a "/".
899 * - it ends with ".lock"
900 * - it contains a "\" (backslash)
903 /* Return true iff ch is not allowed in reference names. */
904 static inline int bad_ref_char(int ch)
906 if (((unsigned) ch) <= ' ' || ch == 0x7f ||
907 ch == '~' || ch == '^' || ch == ':' || ch == '\\')
908 return 1;
909 /* 2.13 Pattern Matching Notation */
910 if (ch == '*' || ch == '?' || ch == '[') /* Unsupported */
911 return 1;
912 return 0;
916 * Try to read one refname component from the front of refname. Return
917 * the length of the component found, or -1 if the component is not
918 * legal.
920 static int check_refname_component(const char *refname, int flags)
922 const char *cp;
923 char last = '\0';
925 for (cp = refname; ; cp++) {
926 char ch = *cp;
927 if (ch == '\0' || ch == '/')
928 break;
929 if (bad_ref_char(ch))
930 return -1; /* Illegal character in refname. */
931 if (last == '.' && ch == '.')
932 return -1; /* Refname contains "..". */
933 if (last == '@' && ch == '{')
934 return -1; /* Refname contains "@{". */
935 last = ch;
937 if (cp == refname)
938 return -1; /* Component has zero length. */
939 if (refname[0] == '.') {
940 if (!(flags & REFNAME_DOT_COMPONENT))
941 return -1; /* Component starts with '.'. */
943 * Even if leading dots are allowed, don't allow "."
944 * as a component (".." is prevented by a rule above).
946 if (refname[1] == '\0')
947 return -1; /* Component equals ".". */
949 if (cp - refname >= 5 && !memcmp(cp - 5, ".lock", 5))
950 return -1; /* Refname ends with ".lock". */
951 return cp - refname;
954 int check_refname_format(const char *refname, int flags)
956 int component_len, component_count = 0;
958 while (1) {
959 /* We are at the start of a path component. */
960 component_len = check_refname_component(refname, flags);
961 if (component_len < 0) {
962 if ((flags & REFNAME_REFSPEC_PATTERN) &&
963 refname[0] == '*' &&
964 (refname[1] == '\0' || refname[1] == '/')) {
965 /* Accept one wildcard as a full refname component. */
966 flags &= ~REFNAME_REFSPEC_PATTERN;
967 component_len = 1;
968 } else {
969 return -1;
972 component_count++;
973 if (refname[component_len] == '\0')
974 break;
975 /* Skip to next component. */
976 refname += component_len + 1;
979 if (refname[component_len - 1] == '.')
980 return -1; /* Refname ends with '.'. */
981 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
982 return -1; /* Refname has only one component. */
983 return 0;
986 const char *prettify_refname(const char *name)
988 return name + (
989 !prefixcmp(name, "refs/heads/") ? 11 :
990 !prefixcmp(name, "refs/tags/") ? 10 :
991 !prefixcmp(name, "refs/remotes/") ? 13 :
995 const char *ref_rev_parse_rules[] = {
996 "%.*s",
997 "refs/%.*s",
998 "refs/tags/%.*s",
999 "refs/heads/%.*s",
1000 "refs/remotes/%.*s",
1001 "refs/remotes/%.*s/HEAD",
1002 NULL
1005 const char *ref_fetch_rules[] = {
1006 "%.*s",
1007 "refs/%.*s",
1008 "refs/heads/%.*s",
1009 NULL
1012 int refname_match(const char *abbrev_name, const char *full_name, const char **rules)
1014 const char **p;
1015 const int abbrev_name_len = strlen(abbrev_name);
1017 for (p = rules; *p; p++) {
1018 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
1019 return 1;
1023 return 0;
1026 static struct ref_lock *verify_lock(struct ref_lock *lock,
1027 const unsigned char *old_sha1, int mustexist)
1029 if (!resolve_ref(lock->ref_name, lock->old_sha1, mustexist, NULL)) {
1030 error("Can't verify ref %s", lock->ref_name);
1031 unlock_ref(lock);
1032 return NULL;
1034 if (hashcmp(lock->old_sha1, old_sha1)) {
1035 error("Ref %s is at %s but expected %s", lock->ref_name,
1036 sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
1037 unlock_ref(lock);
1038 return NULL;
1040 return lock;
1043 static int remove_empty_directories(const char *file)
1045 /* we want to create a file but there is a directory there;
1046 * if that is an empty directory (or a directory that contains
1047 * only empty directories), remove them.
1049 struct strbuf path;
1050 int result;
1052 strbuf_init(&path, 20);
1053 strbuf_addstr(&path, file);
1055 result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
1057 strbuf_release(&path);
1059 return result;
1063 * Return true iff a reference named refname could be created without
1064 * conflicting with the name of an existing reference. If oldrefname
1065 * is non-NULL, ignore potential conflicts with oldrefname (e.g.,
1066 * because oldrefname is scheduled for deletion in the same
1067 * operation).
1069 static int is_refname_available(const char *refname, const char *oldrefname,
1070 struct ref_array *array)
1072 int i, namlen = strlen(refname); /* e.g. 'foo/bar' */
1073 for (i = 0; i < array->nr; i++ ) {
1074 struct ref_entry *entry = array->refs[i];
1075 /* entry->name could be 'foo' or 'foo/bar/baz' */
1076 if (!oldrefname || strcmp(oldrefname, entry->name)) {
1077 int len = strlen(entry->name);
1078 int cmplen = (namlen < len) ? namlen : len;
1079 const char *lead = (namlen < len) ? entry->name : refname;
1080 if (!strncmp(refname, entry->name, cmplen) &&
1081 lead[cmplen] == '/') {
1082 error("'%s' exists; cannot create '%s'",
1083 entry->name, refname);
1084 return 0;
1088 return 1;
1092 * *string and *len will only be substituted, and *string returned (for
1093 * later free()ing) if the string passed in is a magic short-hand form
1094 * to name a branch.
1096 static char *substitute_branch_name(const char **string, int *len)
1098 struct strbuf buf = STRBUF_INIT;
1099 int ret = interpret_branch_name(*string, &buf);
1101 if (ret == *len) {
1102 size_t size;
1103 *string = strbuf_detach(&buf, &size);
1104 *len = size;
1105 return (char *)*string;
1108 return NULL;
1111 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
1113 char *last_branch = substitute_branch_name(&str, &len);
1114 const char **p, *r;
1115 int refs_found = 0;
1117 *ref = NULL;
1118 for (p = ref_rev_parse_rules; *p; p++) {
1119 char fullref[PATH_MAX];
1120 unsigned char sha1_from_ref[20];
1121 unsigned char *this_result;
1122 int flag;
1124 this_result = refs_found ? sha1_from_ref : sha1;
1125 mksnpath(fullref, sizeof(fullref), *p, len, str);
1126 r = resolve_ref(fullref, this_result, 1, &flag);
1127 if (r) {
1128 if (!refs_found++)
1129 *ref = xstrdup(r);
1130 if (!warn_ambiguous_refs)
1131 break;
1132 } else if ((flag & REF_ISSYMREF) && strcmp(fullref, "HEAD")) {
1133 warning("ignoring dangling symref %s.", fullref);
1134 } else if ((flag & REF_ISBROKEN) && strchr(fullref, '/')) {
1135 warning("ignoring broken ref %s.", fullref);
1138 free(last_branch);
1139 return refs_found;
1142 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
1144 char *last_branch = substitute_branch_name(&str, &len);
1145 const char **p;
1146 int logs_found = 0;
1148 *log = NULL;
1149 for (p = ref_rev_parse_rules; *p; p++) {
1150 struct stat st;
1151 unsigned char hash[20];
1152 char path[PATH_MAX];
1153 const char *ref, *it;
1155 mksnpath(path, sizeof(path), *p, len, str);
1156 ref = resolve_ref(path, hash, 1, NULL);
1157 if (!ref)
1158 continue;
1159 if (!stat(git_path("logs/%s", path), &st) &&
1160 S_ISREG(st.st_mode))
1161 it = path;
1162 else if (strcmp(ref, path) &&
1163 !stat(git_path("logs/%s", ref), &st) &&
1164 S_ISREG(st.st_mode))
1165 it = ref;
1166 else
1167 continue;
1168 if (!logs_found++) {
1169 *log = xstrdup(it);
1170 hashcpy(sha1, hash);
1172 if (!warn_ambiguous_refs)
1173 break;
1175 free(last_branch);
1176 return logs_found;
1179 static struct ref_lock *lock_ref_sha1_basic(const char *refname,
1180 const unsigned char *old_sha1,
1181 int flags, int *type_p)
1183 char *ref_file;
1184 const char *orig_refname = refname;
1185 struct ref_lock *lock;
1186 int last_errno = 0;
1187 int type, lflags;
1188 int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
1189 int missing = 0;
1191 lock = xcalloc(1, sizeof(struct ref_lock));
1192 lock->lock_fd = -1;
1194 refname = resolve_ref(refname, lock->old_sha1, mustexist, &type);
1195 if (!refname && errno == EISDIR) {
1196 /* we are trying to lock foo but we used to
1197 * have foo/bar which now does not exist;
1198 * it is normal for the empty directory 'foo'
1199 * to remain.
1201 ref_file = git_path("%s", orig_refname);
1202 if (remove_empty_directories(ref_file)) {
1203 last_errno = errno;
1204 error("there are still refs under '%s'", orig_refname);
1205 goto error_return;
1207 refname = resolve_ref(orig_refname, lock->old_sha1, mustexist, &type);
1209 if (type_p)
1210 *type_p = type;
1211 if (!refname) {
1212 last_errno = errno;
1213 error("unable to resolve reference %s: %s",
1214 orig_refname, strerror(errno));
1215 goto error_return;
1217 missing = is_null_sha1(lock->old_sha1);
1218 /* When the ref did not exist and we are creating it,
1219 * make sure there is no existing ref that is packed
1220 * whose name begins with our refname, nor a ref whose
1221 * name is a proper prefix of our refname.
1223 if (missing &&
1224 !is_refname_available(refname, NULL, get_packed_refs(get_ref_cache(NULL)))) {
1225 last_errno = ENOTDIR;
1226 goto error_return;
1229 lock->lk = xcalloc(1, sizeof(struct lock_file));
1231 lflags = LOCK_DIE_ON_ERROR;
1232 if (flags & REF_NODEREF) {
1233 refname = orig_refname;
1234 lflags |= LOCK_NODEREF;
1236 lock->ref_name = xstrdup(refname);
1237 lock->orig_ref_name = xstrdup(orig_refname);
1238 ref_file = git_path("%s", refname);
1239 if (missing)
1240 lock->force_write = 1;
1241 if ((flags & REF_NODEREF) && (type & REF_ISSYMREF))
1242 lock->force_write = 1;
1244 if (safe_create_leading_directories(ref_file)) {
1245 last_errno = errno;
1246 error("unable to create directory for %s", ref_file);
1247 goto error_return;
1250 lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, lflags);
1251 return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
1253 error_return:
1254 unlock_ref(lock);
1255 errno = last_errno;
1256 return NULL;
1259 struct ref_lock *lock_ref_sha1(const char *refname, const unsigned char *old_sha1)
1261 char refpath[PATH_MAX];
1262 if (check_refname_format(refname, 0))
1263 return NULL;
1264 strcpy(refpath, mkpath("refs/%s", refname));
1265 return lock_ref_sha1_basic(refpath, old_sha1, 0, NULL);
1268 struct ref_lock *lock_any_ref_for_update(const char *refname,
1269 const unsigned char *old_sha1, int flags)
1271 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
1272 return NULL;
1273 return lock_ref_sha1_basic(refname, old_sha1, flags, NULL);
1276 static struct lock_file packlock;
1278 static int repack_without_ref(const char *refname)
1280 struct ref_array *packed;
1281 struct ref_entry *ref;
1282 int fd, i;
1284 packed = get_packed_refs(get_ref_cache(NULL));
1285 ref = search_ref_array(packed, refname);
1286 if (ref == NULL)
1287 return 0;
1288 fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0);
1289 if (fd < 0) {
1290 unable_to_lock_error(git_path("packed-refs"), errno);
1291 return error("cannot delete '%s' from packed refs", refname);
1294 for (i = 0; i < packed->nr; i++) {
1295 char line[PATH_MAX + 100];
1296 int len;
1298 ref = packed->refs[i];
1300 if (!strcmp(refname, ref->name))
1301 continue;
1302 len = snprintf(line, sizeof(line), "%s %s\n",
1303 sha1_to_hex(ref->sha1), ref->name);
1304 /* this should not happen but just being defensive */
1305 if (len > sizeof(line))
1306 die("too long a refname '%s'", ref->name);
1307 write_or_die(fd, line, len);
1309 return commit_lock_file(&packlock);
1312 int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
1314 struct ref_lock *lock;
1315 int err, i = 0, ret = 0, flag = 0;
1317 lock = lock_ref_sha1_basic(refname, sha1, 0, &flag);
1318 if (!lock)
1319 return 1;
1320 if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
1321 /* loose */
1322 const char *path;
1324 if (!(delopt & REF_NODEREF)) {
1325 i = strlen(lock->lk->filename) - 5; /* .lock */
1326 lock->lk->filename[i] = 0;
1327 path = lock->lk->filename;
1328 } else {
1329 path = git_path("%s", refname);
1331 err = unlink_or_warn(path);
1332 if (err && errno != ENOENT)
1333 ret = 1;
1335 if (!(delopt & REF_NODEREF))
1336 lock->lk->filename[i] = '.';
1338 /* removing the loose one could have resurrected an earlier
1339 * packed one. Also, if it was not loose we need to repack
1340 * without it.
1342 ret |= repack_without_ref(refname);
1344 unlink_or_warn(git_path("logs/%s", lock->ref_name));
1345 invalidate_ref_cache(NULL);
1346 unlock_ref(lock);
1347 return ret;
1351 * People using contrib's git-new-workdir have .git/logs/refs ->
1352 * /some/other/path/.git/logs/refs, and that may live on another device.
1354 * IOW, to avoid cross device rename errors, the temporary renamed log must
1355 * live into logs/refs.
1357 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
1359 int rename_ref(const char *oldrefname, const char *newrefname, const char *logmsg)
1361 unsigned char sha1[20], orig_sha1[20];
1362 int flag = 0, logmoved = 0;
1363 struct ref_lock *lock;
1364 struct stat loginfo;
1365 int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);
1366 const char *symref = NULL;
1367 struct ref_cache *refs = get_ref_cache(NULL);
1369 if (log && S_ISLNK(loginfo.st_mode))
1370 return error("reflog for %s is a symlink", oldrefname);
1372 symref = resolve_ref(oldrefname, orig_sha1, 1, &flag);
1373 if (flag & REF_ISSYMREF)
1374 return error("refname %s is a symbolic ref, renaming it is not supported",
1375 oldrefname);
1376 if (!symref)
1377 return error("refname %s not found", oldrefname);
1379 if (!is_refname_available(newrefname, oldrefname, get_packed_refs(refs)))
1380 return 1;
1382 if (!is_refname_available(newrefname, oldrefname, get_loose_refs(refs)))
1383 return 1;
1385 if (log && rename(git_path("logs/%s", oldrefname), git_path(TMP_RENAMED_LOG)))
1386 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
1387 oldrefname, strerror(errno));
1389 if (delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {
1390 error("unable to delete old %s", oldrefname);
1391 goto rollback;
1394 if (resolve_ref(newrefname, sha1, 1, &flag) && delete_ref(newrefname, sha1, REF_NODEREF)) {
1395 if (errno==EISDIR) {
1396 if (remove_empty_directories(git_path("%s", newrefname))) {
1397 error("Directory not empty: %s", newrefname);
1398 goto rollback;
1400 } else {
1401 error("unable to delete existing %s", newrefname);
1402 goto rollback;
1406 if (log && safe_create_leading_directories(git_path("logs/%s", newrefname))) {
1407 error("unable to create directory for %s", newrefname);
1408 goto rollback;
1411 retry:
1412 if (log && rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newrefname))) {
1413 if (errno==EISDIR || errno==ENOTDIR) {
1415 * rename(a, b) when b is an existing
1416 * directory ought to result in ISDIR, but
1417 * Solaris 5.8 gives ENOTDIR. Sheesh.
1419 if (remove_empty_directories(git_path("logs/%s", newrefname))) {
1420 error("Directory not empty: logs/%s", newrefname);
1421 goto rollback;
1423 goto retry;
1424 } else {
1425 error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
1426 newrefname, strerror(errno));
1427 goto rollback;
1430 logmoved = log;
1432 lock = lock_ref_sha1_basic(newrefname, NULL, 0, NULL);
1433 if (!lock) {
1434 error("unable to lock %s for update", newrefname);
1435 goto rollback;
1437 lock->force_write = 1;
1438 hashcpy(lock->old_sha1, orig_sha1);
1439 if (write_ref_sha1(lock, orig_sha1, logmsg)) {
1440 error("unable to write current sha1 into %s", newrefname);
1441 goto rollback;
1444 return 0;
1446 rollback:
1447 lock = lock_ref_sha1_basic(oldrefname, NULL, 0, NULL);
1448 if (!lock) {
1449 error("unable to lock %s for rollback", oldrefname);
1450 goto rollbacklog;
1453 lock->force_write = 1;
1454 flag = log_all_ref_updates;
1455 log_all_ref_updates = 0;
1456 if (write_ref_sha1(lock, orig_sha1, NULL))
1457 error("unable to write current sha1 into %s", oldrefname);
1458 log_all_ref_updates = flag;
1460 rollbacklog:
1461 if (logmoved && rename(git_path("logs/%s", newrefname), git_path("logs/%s", oldrefname)))
1462 error("unable to restore logfile %s from %s: %s",
1463 oldrefname, newrefname, strerror(errno));
1464 if (!logmoved && log &&
1465 rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldrefname)))
1466 error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
1467 oldrefname, strerror(errno));
1469 return 1;
1472 int close_ref(struct ref_lock *lock)
1474 if (close_lock_file(lock->lk))
1475 return -1;
1476 lock->lock_fd = -1;
1477 return 0;
1480 int commit_ref(struct ref_lock *lock)
1482 if (commit_lock_file(lock->lk))
1483 return -1;
1484 lock->lock_fd = -1;
1485 return 0;
1488 void unlock_ref(struct ref_lock *lock)
1490 /* Do not free lock->lk -- atexit() still looks at them */
1491 if (lock->lk)
1492 rollback_lock_file(lock->lk);
1493 free(lock->ref_name);
1494 free(lock->orig_ref_name);
1495 free(lock);
1499 * copy the reflog message msg to buf, which has been allocated sufficiently
1500 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1501 * because reflog file is one line per entry.
1503 static int copy_msg(char *buf, const char *msg)
1505 char *cp = buf;
1506 char c;
1507 int wasspace = 1;
1509 *cp++ = '\t';
1510 while ((c = *msg++)) {
1511 if (wasspace && isspace(c))
1512 continue;
1513 wasspace = isspace(c);
1514 if (wasspace)
1515 c = ' ';
1516 *cp++ = c;
1518 while (buf < cp && isspace(cp[-1]))
1519 cp--;
1520 *cp++ = '\n';
1521 return cp - buf;
1524 int log_ref_setup(const char *refname, char *logfile, int bufsize)
1526 int logfd, oflags = O_APPEND | O_WRONLY;
1528 git_snpath(logfile, bufsize, "logs/%s", refname);
1529 if (log_all_ref_updates &&
1530 (!prefixcmp(refname, "refs/heads/") ||
1531 !prefixcmp(refname, "refs/remotes/") ||
1532 !prefixcmp(refname, "refs/notes/") ||
1533 !strcmp(refname, "HEAD"))) {
1534 if (safe_create_leading_directories(logfile) < 0)
1535 return error("unable to create directory for %s",
1536 logfile);
1537 oflags |= O_CREAT;
1540 logfd = open(logfile, oflags, 0666);
1541 if (logfd < 0) {
1542 if (!(oflags & O_CREAT) && errno == ENOENT)
1543 return 0;
1545 if ((oflags & O_CREAT) && errno == EISDIR) {
1546 if (remove_empty_directories(logfile)) {
1547 return error("There are still logs under '%s'",
1548 logfile);
1550 logfd = open(logfile, oflags, 0666);
1553 if (logfd < 0)
1554 return error("Unable to append to %s: %s",
1555 logfile, strerror(errno));
1558 adjust_shared_perm(logfile);
1559 close(logfd);
1560 return 0;
1563 static int log_ref_write(const char *refname, const unsigned char *old_sha1,
1564 const unsigned char *new_sha1, const char *msg)
1566 int logfd, result, written, oflags = O_APPEND | O_WRONLY;
1567 unsigned maxlen, len;
1568 int msglen;
1569 char log_file[PATH_MAX];
1570 char *logrec;
1571 const char *committer;
1573 if (log_all_ref_updates < 0)
1574 log_all_ref_updates = !is_bare_repository();
1576 result = log_ref_setup(refname, log_file, sizeof(log_file));
1577 if (result)
1578 return result;
1580 logfd = open(log_file, oflags);
1581 if (logfd < 0)
1582 return 0;
1583 msglen = msg ? strlen(msg) : 0;
1584 committer = git_committer_info(0);
1585 maxlen = strlen(committer) + msglen + 100;
1586 logrec = xmalloc(maxlen);
1587 len = sprintf(logrec, "%s %s %s\n",
1588 sha1_to_hex(old_sha1),
1589 sha1_to_hex(new_sha1),
1590 committer);
1591 if (msglen)
1592 len += copy_msg(logrec + len - 1, msg) - 1;
1593 written = len <= maxlen ? write_in_full(logfd, logrec, len) : -1;
1594 free(logrec);
1595 if (close(logfd) != 0 || written != len)
1596 return error("Unable to append to %s", log_file);
1597 return 0;
1600 static int is_branch(const char *refname)
1602 return !strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/");
1605 int write_ref_sha1(struct ref_lock *lock,
1606 const unsigned char *sha1, const char *logmsg)
1608 static char term = '\n';
1609 struct object *o;
1611 if (!lock)
1612 return -1;
1613 if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
1614 unlock_ref(lock);
1615 return 0;
1617 o = parse_object(sha1);
1618 if (!o) {
1619 error("Trying to write ref %s with nonexistent object %s",
1620 lock->ref_name, sha1_to_hex(sha1));
1621 unlock_ref(lock);
1622 return -1;
1624 if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
1625 error("Trying to write non-commit object %s to branch %s",
1626 sha1_to_hex(sha1), lock->ref_name);
1627 unlock_ref(lock);
1628 return -1;
1630 if (write_in_full(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
1631 write_in_full(lock->lock_fd, &term, 1) != 1
1632 || close_ref(lock) < 0) {
1633 error("Couldn't write %s", lock->lk->filename);
1634 unlock_ref(lock);
1635 return -1;
1637 clear_loose_ref_cache(get_ref_cache(NULL));
1638 if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
1639 (strcmp(lock->ref_name, lock->orig_ref_name) &&
1640 log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
1641 unlock_ref(lock);
1642 return -1;
1644 if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
1646 * Special hack: If a branch is updated directly and HEAD
1647 * points to it (may happen on the remote side of a push
1648 * for example) then logically the HEAD reflog should be
1649 * updated too.
1650 * A generic solution implies reverse symref information,
1651 * but finding all symrefs pointing to the given branch
1652 * would be rather costly for this rare event (the direct
1653 * update of a branch) to be worth it. So let's cheat and
1654 * check with HEAD only which should cover 99% of all usage
1655 * scenarios (even 100% of the default ones).
1657 unsigned char head_sha1[20];
1658 int head_flag;
1659 const char *head_ref;
1660 head_ref = resolve_ref("HEAD", head_sha1, 1, &head_flag);
1661 if (head_ref && (head_flag & REF_ISSYMREF) &&
1662 !strcmp(head_ref, lock->ref_name))
1663 log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);
1665 if (commit_ref(lock)) {
1666 error("Couldn't set %s", lock->ref_name);
1667 unlock_ref(lock);
1668 return -1;
1670 unlock_ref(lock);
1671 return 0;
1674 int create_symref(const char *ref_target, const char *refs_heads_master,
1675 const char *logmsg)
1677 const char *lockpath;
1678 char ref[1000];
1679 int fd, len, written;
1680 char *git_HEAD = git_pathdup("%s", ref_target);
1681 unsigned char old_sha1[20], new_sha1[20];
1683 if (logmsg && read_ref(ref_target, old_sha1))
1684 hashclr(old_sha1);
1686 if (safe_create_leading_directories(git_HEAD) < 0)
1687 return error("unable to create directory for %s", git_HEAD);
1689 #ifndef NO_SYMLINK_HEAD
1690 if (prefer_symlink_refs) {
1691 unlink(git_HEAD);
1692 if (!symlink(refs_heads_master, git_HEAD))
1693 goto done;
1694 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
1696 #endif
1698 len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
1699 if (sizeof(ref) <= len) {
1700 error("refname too long: %s", refs_heads_master);
1701 goto error_free_return;
1703 lockpath = mkpath("%s.lock", git_HEAD);
1704 fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
1705 if (fd < 0) {
1706 error("Unable to open %s for writing", lockpath);
1707 goto error_free_return;
1709 written = write_in_full(fd, ref, len);
1710 if (close(fd) != 0 || written != len) {
1711 error("Unable to write to %s", lockpath);
1712 goto error_unlink_return;
1714 if (rename(lockpath, git_HEAD) < 0) {
1715 error("Unable to create %s", git_HEAD);
1716 goto error_unlink_return;
1718 if (adjust_shared_perm(git_HEAD)) {
1719 error("Unable to fix permissions on %s", lockpath);
1720 error_unlink_return:
1721 unlink_or_warn(lockpath);
1722 error_free_return:
1723 free(git_HEAD);
1724 return -1;
1727 #ifndef NO_SYMLINK_HEAD
1728 done:
1729 #endif
1730 if (logmsg && !read_ref(refs_heads_master, new_sha1))
1731 log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
1733 free(git_HEAD);
1734 return 0;
1737 static char *ref_msg(const char *line, const char *endp)
1739 const char *ep;
1740 line += 82;
1741 ep = memchr(line, '\n', endp - line);
1742 if (!ep)
1743 ep = endp;
1744 return xmemdupz(line, ep - line);
1747 int read_ref_at(const char *refname, unsigned long at_time, int cnt,
1748 unsigned char *sha1, char **msg,
1749 unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
1751 const char *logfile, *logdata, *logend, *rec, *lastgt, *lastrec;
1752 char *tz_c;
1753 int logfd, tz, reccnt = 0;
1754 struct stat st;
1755 unsigned long date;
1756 unsigned char logged_sha1[20];
1757 void *log_mapped;
1758 size_t mapsz;
1760 logfile = git_path("logs/%s", refname);
1761 logfd = open(logfile, O_RDONLY, 0);
1762 if (logfd < 0)
1763 die_errno("Unable to read log '%s'", logfile);
1764 fstat(logfd, &st);
1765 if (!st.st_size)
1766 die("Log %s is empty.", logfile);
1767 mapsz = xsize_t(st.st_size);
1768 log_mapped = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, logfd, 0);
1769 logdata = log_mapped;
1770 close(logfd);
1772 lastrec = NULL;
1773 rec = logend = logdata + st.st_size;
1774 while (logdata < rec) {
1775 reccnt++;
1776 if (logdata < rec && *(rec-1) == '\n')
1777 rec--;
1778 lastgt = NULL;
1779 while (logdata < rec && *(rec-1) != '\n') {
1780 rec--;
1781 if (*rec == '>')
1782 lastgt = rec;
1784 if (!lastgt)
1785 die("Log %s is corrupt.", logfile);
1786 date = strtoul(lastgt + 1, &tz_c, 10);
1787 if (date <= at_time || cnt == 0) {
1788 tz = strtoul(tz_c, NULL, 10);
1789 if (msg)
1790 *msg = ref_msg(rec, logend);
1791 if (cutoff_time)
1792 *cutoff_time = date;
1793 if (cutoff_tz)
1794 *cutoff_tz = tz;
1795 if (cutoff_cnt)
1796 *cutoff_cnt = reccnt - 1;
1797 if (lastrec) {
1798 if (get_sha1_hex(lastrec, logged_sha1))
1799 die("Log %s is corrupt.", logfile);
1800 if (get_sha1_hex(rec + 41, sha1))
1801 die("Log %s is corrupt.", logfile);
1802 if (hashcmp(logged_sha1, sha1)) {
1803 warning("Log %s has gap after %s.",
1804 logfile, show_date(date, tz, DATE_RFC2822));
1807 else if (date == at_time) {
1808 if (get_sha1_hex(rec + 41, sha1))
1809 die("Log %s is corrupt.", logfile);
1811 else {
1812 if (get_sha1_hex(rec + 41, logged_sha1))
1813 die("Log %s is corrupt.", logfile);
1814 if (hashcmp(logged_sha1, sha1)) {
1815 warning("Log %s unexpectedly ended on %s.",
1816 logfile, show_date(date, tz, DATE_RFC2822));
1819 munmap(log_mapped, mapsz);
1820 return 0;
1822 lastrec = rec;
1823 if (cnt > 0)
1824 cnt--;
1827 rec = logdata;
1828 while (rec < logend && *rec != '>' && *rec != '\n')
1829 rec++;
1830 if (rec == logend || *rec == '\n')
1831 die("Log %s is corrupt.", logfile);
1832 date = strtoul(rec + 1, &tz_c, 10);
1833 tz = strtoul(tz_c, NULL, 10);
1834 if (get_sha1_hex(logdata, sha1))
1835 die("Log %s is corrupt.", logfile);
1836 if (is_null_sha1(sha1)) {
1837 if (get_sha1_hex(logdata + 41, sha1))
1838 die("Log %s is corrupt.", logfile);
1840 if (msg)
1841 *msg = ref_msg(logdata, logend);
1842 munmap(log_mapped, mapsz);
1844 if (cutoff_time)
1845 *cutoff_time = date;
1846 if (cutoff_tz)
1847 *cutoff_tz = tz;
1848 if (cutoff_cnt)
1849 *cutoff_cnt = reccnt;
1850 return 1;
1853 int for_each_recent_reflog_ent(const char *refname, each_reflog_ent_fn fn, long ofs, void *cb_data)
1855 const char *logfile;
1856 FILE *logfp;
1857 struct strbuf sb = STRBUF_INIT;
1858 int ret = 0;
1860 logfile = git_path("logs/%s", refname);
1861 logfp = fopen(logfile, "r");
1862 if (!logfp)
1863 return -1;
1865 if (ofs) {
1866 struct stat statbuf;
1867 if (fstat(fileno(logfp), &statbuf) ||
1868 statbuf.st_size < ofs ||
1869 fseek(logfp, -ofs, SEEK_END) ||
1870 strbuf_getwholeline(&sb, logfp, '\n')) {
1871 fclose(logfp);
1872 strbuf_release(&sb);
1873 return -1;
1877 while (!strbuf_getwholeline(&sb, logfp, '\n')) {
1878 unsigned char osha1[20], nsha1[20];
1879 char *email_end, *message;
1880 unsigned long timestamp;
1881 int tz;
1883 /* old SP new SP name <email> SP time TAB msg LF */
1884 if (sb.len < 83 || sb.buf[sb.len - 1] != '\n' ||
1885 get_sha1_hex(sb.buf, osha1) || sb.buf[40] != ' ' ||
1886 get_sha1_hex(sb.buf + 41, nsha1) || sb.buf[81] != ' ' ||
1887 !(email_end = strchr(sb.buf + 82, '>')) ||
1888 email_end[1] != ' ' ||
1889 !(timestamp = strtoul(email_end + 2, &message, 10)) ||
1890 !message || message[0] != ' ' ||
1891 (message[1] != '+' && message[1] != '-') ||
1892 !isdigit(message[2]) || !isdigit(message[3]) ||
1893 !isdigit(message[4]) || !isdigit(message[5]))
1894 continue; /* corrupt? */
1895 email_end[1] = '\0';
1896 tz = strtol(message + 1, NULL, 10);
1897 if (message[6] != '\t')
1898 message += 6;
1899 else
1900 message += 7;
1901 ret = fn(osha1, nsha1, sb.buf + 82, timestamp, tz, message,
1902 cb_data);
1903 if (ret)
1904 break;
1906 fclose(logfp);
1907 strbuf_release(&sb);
1908 return ret;
1911 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data)
1913 return for_each_recent_reflog_ent(refname, fn, 0, cb_data);
1916 static int do_for_each_reflog(const char *base, each_ref_fn fn, void *cb_data)
1918 DIR *dir = opendir(git_path("logs/%s", base));
1919 int retval = 0;
1921 if (dir) {
1922 struct dirent *de;
1923 int baselen = strlen(base);
1924 char *log = xmalloc(baselen + 257);
1926 memcpy(log, base, baselen);
1927 if (baselen && base[baselen-1] != '/')
1928 log[baselen++] = '/';
1930 while ((de = readdir(dir)) != NULL) {
1931 struct stat st;
1932 int namelen;
1934 if (de->d_name[0] == '.')
1935 continue;
1936 namelen = strlen(de->d_name);
1937 if (namelen > 255)
1938 continue;
1939 if (has_extension(de->d_name, ".lock"))
1940 continue;
1941 memcpy(log + baselen, de->d_name, namelen+1);
1942 if (stat(git_path("logs/%s", log), &st) < 0)
1943 continue;
1944 if (S_ISDIR(st.st_mode)) {
1945 retval = do_for_each_reflog(log, fn, cb_data);
1946 } else {
1947 unsigned char sha1[20];
1948 if (!resolve_ref(log, sha1, 0, NULL))
1949 retval = error("bad ref for %s", log);
1950 else
1951 retval = fn(log, sha1, 0, cb_data);
1953 if (retval)
1954 break;
1956 free(log);
1957 closedir(dir);
1959 else if (*base)
1960 return errno;
1961 return retval;
1964 int for_each_reflog(each_ref_fn fn, void *cb_data)
1966 return do_for_each_reflog("", fn, cb_data);
1969 int update_ref(const char *action, const char *refname,
1970 const unsigned char *sha1, const unsigned char *oldval,
1971 int flags, enum action_on_err onerr)
1973 static struct ref_lock *lock;
1974 lock = lock_any_ref_for_update(refname, oldval, flags);
1975 if (!lock) {
1976 const char *str = "Cannot lock the ref '%s'.";
1977 switch (onerr) {
1978 case MSG_ON_ERR: error(str, refname); break;
1979 case DIE_ON_ERR: die(str, refname); break;
1980 case QUIET_ON_ERR: break;
1982 return 1;
1984 if (write_ref_sha1(lock, sha1, action) < 0) {
1985 const char *str = "Cannot update the ref '%s'.";
1986 switch (onerr) {
1987 case MSG_ON_ERR: error(str, refname); break;
1988 case DIE_ON_ERR: die(str, refname); break;
1989 case QUIET_ON_ERR: break;
1991 return 1;
1993 return 0;
1996 int ref_exists(const char *refname)
1998 unsigned char sha1[20];
1999 return !!resolve_ref(refname, sha1, 1, NULL);
2002 struct ref *find_ref_by_name(const struct ref *list, const char *name)
2004 for ( ; list; list = list->next)
2005 if (!strcmp(list->name, name))
2006 return (struct ref *)list;
2007 return NULL;
2011 * generate a format suitable for scanf from a ref_rev_parse_rules
2012 * rule, that is replace the "%.*s" spec with a "%s" spec
2014 static void gen_scanf_fmt(char *scanf_fmt, const char *rule)
2016 char *spec;
2018 spec = strstr(rule, "%.*s");
2019 if (!spec || strstr(spec + 4, "%.*s"))
2020 die("invalid rule in ref_rev_parse_rules: %s", rule);
2022 /* copy all until spec */
2023 strncpy(scanf_fmt, rule, spec - rule);
2024 scanf_fmt[spec - rule] = '\0';
2025 /* copy new spec */
2026 strcat(scanf_fmt, "%s");
2027 /* copy remaining rule */
2028 strcat(scanf_fmt, spec + 4);
2030 return;
2033 char *shorten_unambiguous_ref(const char *refname, int strict)
2035 int i;
2036 static char **scanf_fmts;
2037 static int nr_rules;
2038 char *short_name;
2040 /* pre generate scanf formats from ref_rev_parse_rules[] */
2041 if (!nr_rules) {
2042 size_t total_len = 0;
2044 /* the rule list is NULL terminated, count them first */
2045 for (; ref_rev_parse_rules[nr_rules]; nr_rules++)
2046 /* no +1 because strlen("%s") < strlen("%.*s") */
2047 total_len += strlen(ref_rev_parse_rules[nr_rules]);
2049 scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
2051 total_len = 0;
2052 for (i = 0; i < nr_rules; i++) {
2053 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules]
2054 + total_len;
2055 gen_scanf_fmt(scanf_fmts[i], ref_rev_parse_rules[i]);
2056 total_len += strlen(ref_rev_parse_rules[i]);
2060 /* bail out if there are no rules */
2061 if (!nr_rules)
2062 return xstrdup(refname);
2064 /* buffer for scanf result, at most refname must fit */
2065 short_name = xstrdup(refname);
2067 /* skip first rule, it will always match */
2068 for (i = nr_rules - 1; i > 0 ; --i) {
2069 int j;
2070 int rules_to_fail = i;
2071 int short_name_len;
2073 if (1 != sscanf(refname, scanf_fmts[i], short_name))
2074 continue;
2076 short_name_len = strlen(short_name);
2079 * in strict mode, all (except the matched one) rules
2080 * must fail to resolve to a valid non-ambiguous ref
2082 if (strict)
2083 rules_to_fail = nr_rules;
2086 * check if the short name resolves to a valid ref,
2087 * but use only rules prior to the matched one
2089 for (j = 0; j < rules_to_fail; j++) {
2090 const char *rule = ref_rev_parse_rules[j];
2091 unsigned char short_objectname[20];
2092 char refname[PATH_MAX];
2094 /* skip matched rule */
2095 if (i == j)
2096 continue;
2099 * the short name is ambiguous, if it resolves
2100 * (with this previous rule) to a valid ref
2101 * read_ref() returns 0 on success
2103 mksnpath(refname, sizeof(refname),
2104 rule, short_name_len, short_name);
2105 if (!read_ref(refname, short_objectname))
2106 break;
2110 * short name is non-ambiguous if all previous rules
2111 * haven't resolved to a valid ref
2113 if (j == rules_to_fail)
2114 return short_name;
2117 free(short_name);
2118 return xstrdup(refname);