Merge branch 'jc/maint-pack-object-cycle' into next
[git/dscho.git] / refs.c
blob5bccdc870cd884993fe81aa6c9fc24abaaacb6f3
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 if (check_refname_format(line, REFNAME_ALLOW_ONELEVEL))
54 return NULL;
56 return line;
59 static struct ref_entry *create_ref_entry(const char *refname,
60 const unsigned char *sha1, int flag,
61 int check_name)
63 int len;
64 struct ref_entry *ref;
66 if (check_name &&
67 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL|REFNAME_DOT_COMPONENT))
68 die("Reference has invalid format: '%s'", refname);
69 len = strlen(refname) + 1;
70 ref = xmalloc(sizeof(struct ref_entry) + len);
71 hashcpy(ref->sha1, sha1);
72 hashclr(ref->peeled);
73 memcpy(ref->name, refname, len);
74 ref->flag = flag;
75 return ref;
78 /* Add a ref_entry to the end of the ref_array (unsorted). */
79 static void add_ref(struct ref_array *refs, struct ref_entry *ref)
81 ALLOC_GROW(refs->refs, refs->nr + 1, refs->alloc);
82 refs->refs[refs->nr++] = ref;
85 static int ref_entry_cmp(const void *a, const void *b)
87 struct ref_entry *one = *(struct ref_entry **)a;
88 struct ref_entry *two = *(struct ref_entry **)b;
89 return strcmp(one->name, two->name);
93 * Emit a warning and return true iff ref1 and ref2 have the same name
94 * and the same sha1. Die if they have the same name but different
95 * sha1s.
97 static int is_dup_ref(const struct ref_entry *ref1, const struct ref_entry *ref2)
99 if (!strcmp(ref1->name, ref2->name)) {
100 /* Duplicate name; make sure that the SHA1s match: */
101 if (hashcmp(ref1->sha1, ref2->sha1))
102 die("Duplicated ref, and SHA1s don't match: %s",
103 ref1->name);
104 warning("Duplicated ref: %s", ref1->name);
105 return 1;
106 } else {
107 return 0;
111 static void sort_ref_array(struct ref_array *array)
113 int i = 0, j = 1;
115 /* Nothing to sort unless there are at least two entries */
116 if (array->nr < 2)
117 return;
119 qsort(array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
121 /* Remove any duplicates from the ref_array */
122 for (; j < array->nr; j++) {
123 struct ref_entry *a = array->refs[i];
124 struct ref_entry *b = array->refs[j];
125 if (is_dup_ref(a, b)) {
126 free(b);
127 continue;
129 i++;
130 array->refs[i] = array->refs[j];
132 array->nr = i + 1;
135 static struct ref_entry *search_ref_array(struct ref_array *array, const char *refname)
137 struct ref_entry *e, **r;
138 int len;
140 if (refname == NULL)
141 return NULL;
143 if (!array->nr)
144 return NULL;
146 len = strlen(refname) + 1;
147 e = xmalloc(sizeof(struct ref_entry) + len);
148 memcpy(e->name, refname, len);
150 r = bsearch(&e, array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
152 free(e);
154 if (r == NULL)
155 return NULL;
157 return *r;
161 * Future: need to be in "struct repository"
162 * when doing a full libification.
164 static struct ref_cache {
165 struct ref_cache *next;
166 char did_loose;
167 char did_packed;
168 struct ref_array loose;
169 struct ref_array packed;
170 /* The submodule name, or "" for the main repo. */
171 char name[FLEX_ARRAY];
172 } *ref_cache;
174 static struct ref_entry *current_ref;
176 static struct ref_array extra_refs;
178 static void clear_ref_array(struct ref_array *array)
180 int i;
181 for (i = 0; i < array->nr; i++)
182 free(array->refs[i]);
183 free(array->refs);
184 array->nr = array->alloc = 0;
185 array->refs = NULL;
188 static void clear_packed_ref_cache(struct ref_cache *refs)
190 if (refs->did_packed)
191 clear_ref_array(&refs->packed);
192 refs->did_packed = 0;
195 static void clear_loose_ref_cache(struct ref_cache *refs)
197 if (refs->did_loose)
198 clear_ref_array(&refs->loose);
199 refs->did_loose = 0;
202 static struct ref_cache *create_ref_cache(const char *submodule)
204 int len;
205 struct ref_cache *refs;
206 if (!submodule)
207 submodule = "";
208 len = strlen(submodule) + 1;
209 refs = xcalloc(1, sizeof(struct ref_cache) + len);
210 memcpy(refs->name, submodule, len);
211 return refs;
215 * Return a pointer to a ref_cache for the specified submodule. For
216 * the main repository, use submodule==NULL. The returned structure
217 * will be allocated and initialized but not necessarily populated; it
218 * should not be freed.
220 static struct ref_cache *get_ref_cache(const char *submodule)
222 struct ref_cache *refs = ref_cache;
223 if (!submodule)
224 submodule = "";
225 while (refs) {
226 if (!strcmp(submodule, refs->name))
227 return refs;
228 refs = refs->next;
231 refs = create_ref_cache(submodule);
232 refs->next = ref_cache;
233 ref_cache = refs;
234 return refs;
237 void invalidate_ref_cache(const char *submodule)
239 struct ref_cache *refs = get_ref_cache(submodule);
240 clear_packed_ref_cache(refs);
241 clear_loose_ref_cache(refs);
244 static void read_packed_refs(FILE *f, struct ref_array *array)
246 struct ref_entry *last = NULL;
247 char refline[PATH_MAX];
248 int flag = REF_ISPACKED;
250 while (fgets(refline, sizeof(refline), f)) {
251 unsigned char sha1[20];
252 const char *refname;
253 static const char header[] = "# pack-refs with:";
255 if (!strncmp(refline, header, sizeof(header)-1)) {
256 const char *traits = refline + sizeof(header) - 1;
257 if (strstr(traits, " peeled "))
258 flag |= REF_KNOWS_PEELED;
259 /* perhaps other traits later as well */
260 continue;
263 refname = parse_ref_line(refline, sha1);
264 if (refname) {
265 last = create_ref_entry(refname, sha1, flag, 1);
266 add_ref(array, last);
267 continue;
269 if (last &&
270 refline[0] == '^' &&
271 strlen(refline) == 42 &&
272 refline[41] == '\n' &&
273 !get_sha1_hex(refline + 1, sha1))
274 hashcpy(last->peeled, sha1);
276 sort_ref_array(array);
279 void add_extra_ref(const char *refname, const unsigned char *sha1, int flag)
281 add_ref(&extra_refs, create_ref_entry(refname, sha1, flag, 0));
284 void clear_extra_refs(void)
286 clear_ref_array(&extra_refs);
289 static struct ref_array *get_packed_refs(struct ref_cache *refs)
291 if (!refs->did_packed) {
292 const char *packed_refs_file;
293 FILE *f;
295 if (*refs->name)
296 packed_refs_file = git_path_submodule(refs->name, "packed-refs");
297 else
298 packed_refs_file = git_path("packed-refs");
299 f = fopen(packed_refs_file, "r");
300 if (f) {
301 read_packed_refs(f, &refs->packed);
302 fclose(f);
304 refs->did_packed = 1;
306 return &refs->packed;
309 static void get_ref_dir(struct ref_cache *refs, const char *base,
310 struct ref_array *array)
312 DIR *dir;
313 const char *path;
315 if (*refs->name)
316 path = git_path_submodule(refs->name, "%s", base);
317 else
318 path = git_path("%s", base);
321 dir = opendir(path);
323 if (dir) {
324 struct dirent *de;
325 int baselen = strlen(base);
326 char *refname = xmalloc(baselen + 257);
328 memcpy(refname, base, baselen);
329 if (baselen && base[baselen-1] != '/')
330 refname[baselen++] = '/';
332 while ((de = readdir(dir)) != NULL) {
333 unsigned char sha1[20];
334 struct stat st;
335 int flag;
336 int namelen;
337 const char *refdir;
339 if (de->d_name[0] == '.')
340 continue;
341 namelen = strlen(de->d_name);
342 if (namelen > 255)
343 continue;
344 if (has_extension(de->d_name, ".lock"))
345 continue;
346 memcpy(refname + baselen, de->d_name, namelen+1);
347 refdir = *refs->name
348 ? git_path_submodule(refs->name, "%s", refname)
349 : git_path("%s", refname);
350 if (stat(refdir, &st) < 0)
351 continue;
352 if (S_ISDIR(st.st_mode)) {
353 get_ref_dir(refs, refname, array);
354 continue;
356 if (*refs->name) {
357 hashclr(sha1);
358 flag = 0;
359 if (resolve_gitlink_ref(refs->name, refname, sha1) < 0) {
360 hashclr(sha1);
361 flag |= REF_ISBROKEN;
363 } else
364 if (!resolve_ref(refname, sha1, 1, &flag)) {
365 hashclr(sha1);
366 flag |= REF_ISBROKEN;
368 add_ref(array, create_ref_entry(refname, sha1, flag, 1));
370 free(refname);
371 closedir(dir);
375 struct warn_if_dangling_data {
376 FILE *fp;
377 const char *refname;
378 const char *msg_fmt;
381 static int warn_if_dangling_symref(const char *refname, const unsigned char *sha1,
382 int flags, void *cb_data)
384 struct warn_if_dangling_data *d = cb_data;
385 const char *resolves_to;
386 unsigned char junk[20];
388 if (!(flags & REF_ISSYMREF))
389 return 0;
391 resolves_to = resolve_ref(refname, junk, 0, NULL);
392 if (!resolves_to || strcmp(resolves_to, d->refname))
393 return 0;
395 fprintf(d->fp, d->msg_fmt, refname);
396 return 0;
399 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
401 struct warn_if_dangling_data data;
403 data.fp = fp;
404 data.refname = refname;
405 data.msg_fmt = msg_fmt;
406 for_each_rawref(warn_if_dangling_symref, &data);
409 static struct ref_array *get_loose_refs(struct ref_cache *refs)
411 if (!refs->did_loose) {
412 get_ref_dir(refs, "refs", &refs->loose);
413 sort_ref_array(&refs->loose);
414 refs->did_loose = 1;
416 return &refs->loose;
419 /* We allow "recursive" symbolic refs. Only within reason, though */
420 #define MAXDEPTH 5
421 #define MAXREFLEN (1024)
423 static int resolve_gitlink_packed_ref(struct ref_cache *refs,
424 const char *refname, unsigned char *sha1)
426 int retval = -1;
427 struct ref_entry *ref;
428 struct ref_array *array = get_packed_refs(refs);
430 ref = search_ref_array(array, refname);
431 if (ref != NULL) {
432 memcpy(sha1, ref->sha1, 20);
433 retval = 0;
435 return retval;
438 static int resolve_gitlink_ref_recursive(struct ref_cache *refs,
439 const char *refname, unsigned char *sha1,
440 int recursion)
442 int fd, len;
443 char buffer[128], *p;
444 char *path;
446 if (recursion > MAXDEPTH || strlen(refname) > MAXREFLEN)
447 return -1;
448 path = *refs->name
449 ? git_path_submodule(refs->name, "%s", refname)
450 : git_path("%s", refname);
451 fd = open(path, O_RDONLY);
452 if (fd < 0)
453 return resolve_gitlink_packed_ref(refs, refname, sha1);
455 len = read(fd, buffer, sizeof(buffer)-1);
456 close(fd);
457 if (len < 0)
458 return -1;
459 while (len && isspace(buffer[len-1]))
460 len--;
461 buffer[len] = 0;
463 /* Was it a detached head or an old-fashioned symlink? */
464 if (!get_sha1_hex(buffer, sha1))
465 return 0;
467 /* Symref? */
468 if (strncmp(buffer, "ref:", 4))
469 return -1;
470 p = buffer + 4;
471 while (isspace(*p))
472 p++;
474 return resolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);
477 int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *sha1)
479 int len = strlen(path), retval;
480 char *submodule;
481 struct ref_cache *refs;
483 while (len && path[len-1] == '/')
484 len--;
485 if (!len)
486 return -1;
487 submodule = xstrndup(path, len);
488 refs = get_ref_cache(submodule);
489 free(submodule);
491 retval = resolve_gitlink_ref_recursive(refs, refname, sha1, 0);
492 return retval;
496 * Try to read ref from the packed references. On success, set sha1
497 * and return 0; otherwise, return -1.
499 static int get_packed_ref(const char *refname, unsigned char *sha1)
501 struct ref_array *packed = get_packed_refs(get_ref_cache(NULL));
502 struct ref_entry *entry = search_ref_array(packed, refname);
503 if (entry) {
504 hashcpy(sha1, entry->sha1);
505 return 0;
507 return -1;
510 const char *resolve_ref(const char *refname, unsigned char *sha1, int reading, int *flag)
512 int depth = MAXDEPTH;
513 ssize_t len;
514 char buffer[256];
515 static char refname_buffer[256];
517 if (flag)
518 *flag = 0;
520 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
521 return NULL;
523 for (;;) {
524 char path[PATH_MAX];
525 struct stat st;
526 char *buf;
527 int fd;
529 if (--depth < 0)
530 return NULL;
532 git_snpath(path, sizeof(path), "%s", refname);
534 if (lstat(path, &st) < 0) {
535 if (errno != ENOENT)
536 return NULL;
538 * The loose reference file does not exist;
539 * check for a packed reference.
541 if (!get_packed_ref(refname, sha1)) {
542 if (flag)
543 *flag |= REF_ISPACKED;
544 return refname;
546 /* The reference is not a packed reference, either. */
547 if (reading) {
548 return NULL;
549 } else {
550 hashclr(sha1);
551 return refname;
555 /* Follow "normalized" - ie "refs/.." symlinks by hand */
556 if (S_ISLNK(st.st_mode)) {
557 len = readlink(path, buffer, sizeof(buffer)-1);
558 if (len < 0)
559 return NULL;
560 buffer[len] = 0;
561 if (!prefixcmp(buffer, "refs/") &&
562 !check_refname_format(buffer, 0)) {
563 strcpy(refname_buffer, buffer);
564 refname = refname_buffer;
565 if (flag)
566 *flag |= REF_ISSYMREF;
567 continue;
571 /* Is it a directory? */
572 if (S_ISDIR(st.st_mode)) {
573 errno = EISDIR;
574 return NULL;
578 * Anything else, just open it and try to use it as
579 * a ref
581 fd = open(path, O_RDONLY);
582 if (fd < 0)
583 return NULL;
584 len = read_in_full(fd, buffer, sizeof(buffer)-1);
585 close(fd);
586 if (len < 0)
587 return NULL;
588 while (len && isspace(buffer[len-1]))
589 len--;
590 buffer[len] = '\0';
593 * Is it a symbolic ref?
595 if (prefixcmp(buffer, "ref:"))
596 break;
597 if (flag)
598 *flag |= REF_ISSYMREF;
599 buf = buffer + 4;
600 while (isspace(*buf))
601 buf++;
602 if (check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {
603 if (flag)
604 *flag |= REF_ISBROKEN;
605 return NULL;
607 refname = strcpy(refname_buffer, buf);
609 /* Please note that FETCH_HEAD has a second line containing other data. */
610 if (get_sha1_hex(buffer, sha1) || (buffer[40] != '\0' && !isspace(buffer[40]))) {
611 if (flag)
612 *flag |= REF_ISBROKEN;
613 return NULL;
615 return refname;
618 /* The argument to filter_refs */
619 struct ref_filter {
620 const char *pattern;
621 each_ref_fn *fn;
622 void *cb_data;
625 int read_ref(const char *refname, unsigned char *sha1)
627 if (resolve_ref(refname, sha1, 1, NULL))
628 return 0;
629 return -1;
632 #define DO_FOR_EACH_INCLUDE_BROKEN 01
633 static int do_one_ref(const char *base, each_ref_fn fn, int trim,
634 int flags, void *cb_data, struct ref_entry *entry)
636 if (prefixcmp(entry->name, base))
637 return 0;
639 if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) {
640 if (entry->flag & REF_ISBROKEN)
641 return 0; /* ignore broken refs e.g. dangling symref */
642 if (!has_sha1_file(entry->sha1)) {
643 error("%s does not point to a valid object!", entry->name);
644 return 0;
647 current_ref = entry;
648 return fn(entry->name + trim, entry->sha1, entry->flag, cb_data);
651 static int filter_refs(const char *refname, const unsigned char *sha, int flags,
652 void *data)
654 struct ref_filter *filter = (struct ref_filter *)data;
655 if (fnmatch(filter->pattern, refname, 0))
656 return 0;
657 return filter->fn(refname, sha, flags, filter->cb_data);
660 int peel_ref(const char *refname, unsigned char *sha1)
662 int flag;
663 unsigned char base[20];
664 struct object *o;
666 if (current_ref && (current_ref->name == refname
667 || !strcmp(current_ref->name, refname))) {
668 if (current_ref->flag & REF_KNOWS_PEELED) {
669 hashcpy(sha1, current_ref->peeled);
670 return 0;
672 hashcpy(base, current_ref->sha1);
673 goto fallback;
676 if (!resolve_ref(refname, base, 1, &flag))
677 return -1;
679 if ((flag & REF_ISPACKED)) {
680 struct ref_array *array = get_packed_refs(get_ref_cache(NULL));
681 struct ref_entry *r = search_ref_array(array, refname);
683 if (r != NULL && r->flag & REF_KNOWS_PEELED) {
684 hashcpy(sha1, r->peeled);
685 return 0;
689 fallback:
690 o = parse_object(base);
691 if (o && o->type == OBJ_TAG) {
692 o = deref_tag(o, refname, 0);
693 if (o) {
694 hashcpy(sha1, o->sha1);
695 return 0;
698 return -1;
701 static int do_for_each_ref_in_array(struct ref_array *array, int offset,
702 const char *base,
703 each_ref_fn fn, int trim, int flags, void *cb_data)
705 int i;
706 for (i = offset; i < array->nr; i++) {
707 int retval = do_one_ref(base, fn, trim, flags, cb_data, array->refs[i]);
708 if (retval)
709 return retval;
711 return 0;
714 static int do_for_each_ref(const char *submodule, const char *base, each_ref_fn fn,
715 int trim, int flags, void *cb_data)
717 int retval = 0, p = 0, l = 0;
718 struct ref_cache *refs = get_ref_cache(submodule);
719 struct ref_array *packed = get_packed_refs(refs);
720 struct ref_array *loose = get_loose_refs(refs);
722 retval = do_for_each_ref_in_array(&extra_refs, 0,
723 base, fn, trim, flags, cb_data);
724 if (retval)
725 goto end_each;
727 while (p < packed->nr && l < loose->nr) {
728 struct ref_entry *entry;
729 int cmp = strcmp(packed->refs[p]->name, loose->refs[l]->name);
730 if (!cmp) {
731 p++;
732 continue;
734 if (cmp > 0) {
735 entry = loose->refs[l++];
736 } else {
737 entry = packed->refs[p++];
739 retval = do_one_ref(base, fn, trim, flags, cb_data, entry);
740 if (retval)
741 goto end_each;
744 if (l < loose->nr) {
745 retval = do_for_each_ref_in_array(loose, l,
746 base, fn, trim, flags, cb_data);
747 } else {
748 retval = do_for_each_ref_in_array(packed, p,
749 base, fn, trim, flags, cb_data);
752 end_each:
753 current_ref = NULL;
754 return retval;
758 static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
760 unsigned char sha1[20];
761 int flag;
763 if (submodule) {
764 if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
765 return fn("HEAD", sha1, 0, cb_data);
767 return 0;
770 if (resolve_ref("HEAD", sha1, 1, &flag))
771 return fn("HEAD", sha1, flag, cb_data);
773 return 0;
776 int head_ref(each_ref_fn fn, void *cb_data)
778 return do_head_ref(NULL, fn, cb_data);
781 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
783 return do_head_ref(submodule, fn, cb_data);
786 int for_each_ref(each_ref_fn fn, void *cb_data)
788 return do_for_each_ref(NULL, "", fn, 0, 0, cb_data);
791 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
793 return do_for_each_ref(submodule, "", fn, 0, 0, cb_data);
796 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
798 return do_for_each_ref(NULL, prefix, fn, strlen(prefix), 0, cb_data);
801 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
802 each_ref_fn fn, void *cb_data)
804 return do_for_each_ref(submodule, prefix, fn, strlen(prefix), 0, cb_data);
807 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
809 return for_each_ref_in("refs/tags/", fn, cb_data);
812 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
814 return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
817 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
819 return for_each_ref_in("refs/heads/", fn, cb_data);
822 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
824 return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
827 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
829 return for_each_ref_in("refs/remotes/", fn, cb_data);
832 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
834 return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
837 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
839 return do_for_each_ref(NULL, "refs/replace/", fn, 13, 0, cb_data);
842 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
844 struct strbuf buf = STRBUF_INIT;
845 int ret = 0;
846 unsigned char sha1[20];
847 int flag;
849 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
850 if (resolve_ref(buf.buf, sha1, 1, &flag))
851 ret = fn(buf.buf, sha1, flag, cb_data);
852 strbuf_release(&buf);
854 return ret;
857 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
859 struct strbuf buf = STRBUF_INIT;
860 int ret;
861 strbuf_addf(&buf, "%srefs/", get_git_namespace());
862 ret = do_for_each_ref(NULL, buf.buf, fn, 0, 0, cb_data);
863 strbuf_release(&buf);
864 return ret;
867 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
868 const char *prefix, void *cb_data)
870 struct strbuf real_pattern = STRBUF_INIT;
871 struct ref_filter filter;
872 int ret;
874 if (!prefix && prefixcmp(pattern, "refs/"))
875 strbuf_addstr(&real_pattern, "refs/");
876 else if (prefix)
877 strbuf_addstr(&real_pattern, prefix);
878 strbuf_addstr(&real_pattern, pattern);
880 if (!has_glob_specials(pattern)) {
881 /* Append implied '/' '*' if not present. */
882 if (real_pattern.buf[real_pattern.len - 1] != '/')
883 strbuf_addch(&real_pattern, '/');
884 /* No need to check for '*', there is none. */
885 strbuf_addch(&real_pattern, '*');
888 filter.pattern = real_pattern.buf;
889 filter.fn = fn;
890 filter.cb_data = cb_data;
891 ret = for_each_ref(filter_refs, &filter);
893 strbuf_release(&real_pattern);
894 return ret;
897 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
899 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
902 int for_each_rawref(each_ref_fn fn, void *cb_data)
904 return do_for_each_ref(NULL, "", fn, 0,
905 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
909 * Make sure "ref" is something reasonable to have under ".git/refs/";
910 * We do not like it if:
912 * - any path component of it begins with ".", or
913 * - it has double dots "..", or
914 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
915 * - it ends with a "/".
916 * - it ends with ".lock"
917 * - it contains a "\" (backslash)
920 /* Return true iff ch is not allowed in reference names. */
921 static inline int bad_ref_char(int ch)
923 if (((unsigned) ch) <= ' ' || ch == 0x7f ||
924 ch == '~' || ch == '^' || ch == ':' || ch == '\\')
925 return 1;
926 /* 2.13 Pattern Matching Notation */
927 if (ch == '*' || ch == '?' || ch == '[') /* Unsupported */
928 return 1;
929 return 0;
933 * Try to read one refname component from the front of refname. Return
934 * the length of the component found, or -1 if the component is not
935 * legal.
937 static int check_refname_component(const char *refname, int flags)
939 const char *cp;
940 char last = '\0';
942 for (cp = refname; ; cp++) {
943 char ch = *cp;
944 if (ch == '\0' || ch == '/')
945 break;
946 if (bad_ref_char(ch))
947 return -1; /* Illegal character in refname. */
948 if (last == '.' && ch == '.')
949 return -1; /* Refname contains "..". */
950 if (last == '@' && ch == '{')
951 return -1; /* Refname contains "@{". */
952 last = ch;
954 if (cp == refname)
955 return -1; /* Component has zero length. */
956 if (refname[0] == '.') {
957 if (!(flags & REFNAME_DOT_COMPONENT))
958 return -1; /* Component starts with '.'. */
960 * Even if leading dots are allowed, don't allow "."
961 * as a component (".." is prevented by a rule above).
963 if (refname[1] == '\0')
964 return -1; /* Component equals ".". */
966 if (cp - refname >= 5 && !memcmp(cp - 5, ".lock", 5))
967 return -1; /* Refname ends with ".lock". */
968 return cp - refname;
971 int check_refname_format(const char *refname, int flags)
973 int component_len, component_count = 0;
975 while (1) {
976 /* We are at the start of a path component. */
977 component_len = check_refname_component(refname, flags);
978 if (component_len < 0) {
979 if ((flags & REFNAME_REFSPEC_PATTERN) &&
980 refname[0] == '*' &&
981 (refname[1] == '\0' || refname[1] == '/')) {
982 /* Accept one wildcard as a full refname component. */
983 flags &= ~REFNAME_REFSPEC_PATTERN;
984 component_len = 1;
985 } else {
986 return -1;
989 component_count++;
990 if (refname[component_len] == '\0')
991 break;
992 /* Skip to next component. */
993 refname += component_len + 1;
996 if (refname[component_len - 1] == '.')
997 return -1; /* Refname ends with '.'. */
998 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
999 return -1; /* Refname has only one component. */
1000 return 0;
1003 const char *prettify_refname(const char *name)
1005 return name + (
1006 !prefixcmp(name, "refs/heads/") ? 11 :
1007 !prefixcmp(name, "refs/tags/") ? 10 :
1008 !prefixcmp(name, "refs/remotes/") ? 13 :
1012 const char *ref_rev_parse_rules[] = {
1013 "%.*s",
1014 "refs/%.*s",
1015 "refs/tags/%.*s",
1016 "refs/heads/%.*s",
1017 "refs/remotes/%.*s",
1018 "refs/remotes/%.*s/HEAD",
1019 NULL
1022 int refname_match(const char *abbrev_name, const char *full_name, const char **rules)
1024 const char **p;
1025 const int abbrev_name_len = strlen(abbrev_name);
1027 for (p = rules; *p; p++) {
1028 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
1029 return 1;
1033 return 0;
1036 static struct ref_lock *verify_lock(struct ref_lock *lock,
1037 const unsigned char *old_sha1, int mustexist)
1039 if (!resolve_ref(lock->ref_name, lock->old_sha1, mustexist, NULL)) {
1040 error("Can't verify ref %s", lock->ref_name);
1041 unlock_ref(lock);
1042 return NULL;
1044 if (hashcmp(lock->old_sha1, old_sha1)) {
1045 error("Ref %s is at %s but expected %s", lock->ref_name,
1046 sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
1047 unlock_ref(lock);
1048 return NULL;
1050 return lock;
1053 static int remove_empty_directories(const char *file)
1055 /* we want to create a file but there is a directory there;
1056 * if that is an empty directory (or a directory that contains
1057 * only empty directories), remove them.
1059 struct strbuf path;
1060 int result;
1062 strbuf_init(&path, 20);
1063 strbuf_addstr(&path, file);
1065 result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
1067 strbuf_release(&path);
1069 return result;
1073 * Return true iff refname1 and refname2 conflict with each other.
1074 * Two reference names conflict if one of them exactly matches the
1075 * leading components of the other; e.g., "foo/bar" conflicts with
1076 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or
1077 * "foo/barbados".
1079 static int names_conflict(const char *refname1, const char *refname2)
1081 for (; *refname1 && *refname1 == *refname2; refname1++, refname2++)
1083 return (*refname1 == '\0' && *refname2 == '/')
1084 || (*refname1 == '/' && *refname2 == '\0');
1087 struct name_conflict_cb {
1088 const char *refname;
1089 const char *oldrefname;
1090 const char *conflicting_refname;
1093 static int name_conflict_fn(const char *existingrefname, const unsigned char *sha1,
1094 int flags, void *cb_data)
1096 struct name_conflict_cb *data = (struct name_conflict_cb *)cb_data;
1097 if (data->oldrefname && !strcmp(data->oldrefname, existingrefname))
1098 return 0;
1099 if (names_conflict(data->refname, existingrefname)) {
1100 data->conflicting_refname = existingrefname;
1101 return 1;
1103 return 0;
1107 * Return true iff a reference named refname could be created without
1108 * conflicting with the name of an existing reference. If oldrefname
1109 * is non-NULL, ignore potential conflicts with oldrefname (e.g.,
1110 * because oldrefname is scheduled for deletion in the same
1111 * operation).
1113 static int is_refname_available(const char *refname, const char *oldrefname,
1114 struct ref_array *array)
1116 struct name_conflict_cb data;
1117 data.refname = refname;
1118 data.oldrefname = oldrefname;
1119 data.conflicting_refname = NULL;
1121 if (do_for_each_ref_in_array(array, 0, "", name_conflict_fn,
1122 0, DO_FOR_EACH_INCLUDE_BROKEN,
1123 &data)) {
1124 error("'%s' exists; cannot create '%s'",
1125 data.conflicting_refname, refname);
1126 return 0;
1128 return 1;
1132 * *string and *len will only be substituted, and *string returned (for
1133 * later free()ing) if the string passed in is a magic short-hand form
1134 * to name a branch.
1136 static char *substitute_branch_name(const char **string, int *len)
1138 struct strbuf buf = STRBUF_INIT;
1139 int ret = interpret_branch_name(*string, &buf);
1141 if (ret == *len) {
1142 size_t size;
1143 *string = strbuf_detach(&buf, &size);
1144 *len = size;
1145 return (char *)*string;
1148 return NULL;
1151 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
1153 char *last_branch = substitute_branch_name(&str, &len);
1154 const char **p, *r;
1155 int refs_found = 0;
1157 *ref = NULL;
1158 for (p = ref_rev_parse_rules; *p; p++) {
1159 char fullref[PATH_MAX];
1160 unsigned char sha1_from_ref[20];
1161 unsigned char *this_result;
1162 int flag;
1164 this_result = refs_found ? sha1_from_ref : sha1;
1165 mksnpath(fullref, sizeof(fullref), *p, len, str);
1166 r = resolve_ref(fullref, this_result, 1, &flag);
1167 if (r) {
1168 if (!refs_found++)
1169 *ref = xstrdup(r);
1170 if (!warn_ambiguous_refs)
1171 break;
1172 } else if ((flag & REF_ISSYMREF) && strcmp(fullref, "HEAD")) {
1173 warning("ignoring dangling symref %s.", fullref);
1174 } else if ((flag & REF_ISBROKEN) && strchr(fullref, '/')) {
1175 warning("ignoring broken ref %s.", fullref);
1178 free(last_branch);
1179 return refs_found;
1182 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
1184 char *last_branch = substitute_branch_name(&str, &len);
1185 const char **p;
1186 int logs_found = 0;
1188 *log = NULL;
1189 for (p = ref_rev_parse_rules; *p; p++) {
1190 struct stat st;
1191 unsigned char hash[20];
1192 char path[PATH_MAX];
1193 const char *ref, *it;
1195 mksnpath(path, sizeof(path), *p, len, str);
1196 ref = resolve_ref(path, hash, 1, NULL);
1197 if (!ref)
1198 continue;
1199 if (!stat(git_path("logs/%s", path), &st) &&
1200 S_ISREG(st.st_mode))
1201 it = path;
1202 else if (strcmp(ref, path) &&
1203 !stat(git_path("logs/%s", ref), &st) &&
1204 S_ISREG(st.st_mode))
1205 it = ref;
1206 else
1207 continue;
1208 if (!logs_found++) {
1209 *log = xstrdup(it);
1210 hashcpy(sha1, hash);
1212 if (!warn_ambiguous_refs)
1213 break;
1215 free(last_branch);
1216 return logs_found;
1219 static struct ref_lock *lock_ref_sha1_basic(const char *refname,
1220 const unsigned char *old_sha1,
1221 int flags, int *type_p)
1223 char *ref_file;
1224 const char *orig_refname = refname;
1225 struct ref_lock *lock;
1226 int last_errno = 0;
1227 int type, lflags;
1228 int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
1229 int missing = 0;
1231 lock = xcalloc(1, sizeof(struct ref_lock));
1232 lock->lock_fd = -1;
1234 refname = resolve_ref(refname, lock->old_sha1, mustexist, &type);
1235 if (!refname && errno == EISDIR) {
1236 /* we are trying to lock foo but we used to
1237 * have foo/bar which now does not exist;
1238 * it is normal for the empty directory 'foo'
1239 * to remain.
1241 ref_file = git_path("%s", orig_refname);
1242 if (remove_empty_directories(ref_file)) {
1243 last_errno = errno;
1244 error("there are still refs under '%s'", orig_refname);
1245 goto error_return;
1247 refname = resolve_ref(orig_refname, lock->old_sha1, mustexist, &type);
1249 if (type_p)
1250 *type_p = type;
1251 if (!refname) {
1252 last_errno = errno;
1253 error("unable to resolve reference %s: %s",
1254 orig_refname, strerror(errno));
1255 goto error_return;
1257 missing = is_null_sha1(lock->old_sha1);
1258 /* When the ref did not exist and we are creating it,
1259 * make sure there is no existing ref that is packed
1260 * whose name begins with our refname, nor a ref whose
1261 * name is a proper prefix of our refname.
1263 if (missing &&
1264 !is_refname_available(refname, NULL, get_packed_refs(get_ref_cache(NULL)))) {
1265 last_errno = ENOTDIR;
1266 goto error_return;
1269 lock->lk = xcalloc(1, sizeof(struct lock_file));
1271 lflags = LOCK_DIE_ON_ERROR;
1272 if (flags & REF_NODEREF) {
1273 refname = orig_refname;
1274 lflags |= LOCK_NODEREF;
1276 lock->ref_name = xstrdup(refname);
1277 lock->orig_ref_name = xstrdup(orig_refname);
1278 ref_file = git_path("%s", refname);
1279 if (missing)
1280 lock->force_write = 1;
1281 if ((flags & REF_NODEREF) && (type & REF_ISSYMREF))
1282 lock->force_write = 1;
1284 if (safe_create_leading_directories(ref_file)) {
1285 last_errno = errno;
1286 error("unable to create directory for %s", ref_file);
1287 goto error_return;
1290 lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, lflags);
1291 return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
1293 error_return:
1294 unlock_ref(lock);
1295 errno = last_errno;
1296 return NULL;
1299 struct ref_lock *lock_ref_sha1(const char *refname, const unsigned char *old_sha1)
1301 char refpath[PATH_MAX];
1302 if (check_refname_format(refname, 0))
1303 return NULL;
1304 strcpy(refpath, mkpath("refs/%s", refname));
1305 return lock_ref_sha1_basic(refpath, old_sha1, 0, NULL);
1308 struct ref_lock *lock_any_ref_for_update(const char *refname,
1309 const unsigned char *old_sha1, int flags)
1311 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
1312 return NULL;
1313 return lock_ref_sha1_basic(refname, old_sha1, flags, NULL);
1316 struct repack_without_ref_sb {
1317 const char *refname;
1318 int fd;
1321 static int repack_without_ref_fn(const char *refname, const unsigned char *sha1,
1322 int flags, void *cb_data)
1324 struct repack_without_ref_sb *data = cb_data;
1325 char line[PATH_MAX + 100];
1326 int len;
1328 if (!strcmp(data->refname, refname))
1329 return 0;
1330 len = snprintf(line, sizeof(line), "%s %s\n",
1331 sha1_to_hex(sha1), refname);
1332 /* this should not happen but just being defensive */
1333 if (len > sizeof(line))
1334 die("too long a refname '%s'", refname);
1335 write_or_die(data->fd, line, len);
1336 return 0;
1339 static struct lock_file packlock;
1341 static int repack_without_ref(const char *refname)
1343 struct repack_without_ref_sb data;
1344 struct ref_array *packed;
1346 packed = get_packed_refs(get_ref_cache(NULL));
1347 if (search_ref_array(packed, refname) == NULL)
1348 return 0;
1349 data.refname = refname;
1350 data.fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0);
1351 if (data.fd < 0) {
1352 unable_to_lock_error(git_path("packed-refs"), errno);
1353 return error("cannot delete '%s' from packed refs", refname);
1355 do_for_each_ref_in_array(packed, 0, "", repack_without_ref_fn, 0, 0, &data);
1356 return commit_lock_file(&packlock);
1359 int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
1361 struct ref_lock *lock;
1362 int err, i = 0, ret = 0, flag = 0;
1364 lock = lock_ref_sha1_basic(refname, sha1, 0, &flag);
1365 if (!lock)
1366 return 1;
1367 if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
1368 /* loose */
1369 const char *path;
1371 if (!(delopt & REF_NODEREF)) {
1372 i = strlen(lock->lk->filename) - 5; /* .lock */
1373 lock->lk->filename[i] = 0;
1374 path = lock->lk->filename;
1375 } else {
1376 path = git_path("%s", refname);
1378 err = unlink_or_warn(path);
1379 if (err && errno != ENOENT)
1380 ret = 1;
1382 if (!(delopt & REF_NODEREF))
1383 lock->lk->filename[i] = '.';
1385 /* removing the loose one could have resurrected an earlier
1386 * packed one. Also, if it was not loose we need to repack
1387 * without it.
1389 ret |= repack_without_ref(refname);
1391 unlink_or_warn(git_path("logs/%s", lock->ref_name));
1392 invalidate_ref_cache(NULL);
1393 unlock_ref(lock);
1394 return ret;
1398 * People using contrib's git-new-workdir have .git/logs/refs ->
1399 * /some/other/path/.git/logs/refs, and that may live on another device.
1401 * IOW, to avoid cross device rename errors, the temporary renamed log must
1402 * live into logs/refs.
1404 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
1406 int rename_ref(const char *oldrefname, const char *newrefname, const char *logmsg)
1408 unsigned char sha1[20], orig_sha1[20];
1409 int flag = 0, logmoved = 0;
1410 struct ref_lock *lock;
1411 struct stat loginfo;
1412 int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);
1413 const char *symref = NULL;
1414 struct ref_cache *refs = get_ref_cache(NULL);
1416 if (log && S_ISLNK(loginfo.st_mode))
1417 return error("reflog for %s is a symlink", oldrefname);
1419 symref = resolve_ref(oldrefname, orig_sha1, 1, &flag);
1420 if (flag & REF_ISSYMREF)
1421 return error("refname %s is a symbolic ref, renaming it is not supported",
1422 oldrefname);
1423 if (!symref)
1424 return error("refname %s not found", oldrefname);
1426 if (!is_refname_available(newrefname, oldrefname, get_packed_refs(refs)))
1427 return 1;
1429 if (!is_refname_available(newrefname, oldrefname, get_loose_refs(refs)))
1430 return 1;
1432 if (log && rename(git_path("logs/%s", oldrefname), git_path(TMP_RENAMED_LOG)))
1433 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
1434 oldrefname, strerror(errno));
1436 if (delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {
1437 error("unable to delete old %s", oldrefname);
1438 goto rollback;
1441 if (resolve_ref(newrefname, sha1, 1, &flag) && delete_ref(newrefname, sha1, REF_NODEREF)) {
1442 if (errno==EISDIR) {
1443 if (remove_empty_directories(git_path("%s", newrefname))) {
1444 error("Directory not empty: %s", newrefname);
1445 goto rollback;
1447 } else {
1448 error("unable to delete existing %s", newrefname);
1449 goto rollback;
1453 if (log && safe_create_leading_directories(git_path("logs/%s", newrefname))) {
1454 error("unable to create directory for %s", newrefname);
1455 goto rollback;
1458 retry:
1459 if (log && rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newrefname))) {
1460 if (errno==EISDIR || errno==ENOTDIR) {
1462 * rename(a, b) when b is an existing
1463 * directory ought to result in ISDIR, but
1464 * Solaris 5.8 gives ENOTDIR. Sheesh.
1466 if (remove_empty_directories(git_path("logs/%s", newrefname))) {
1467 error("Directory not empty: logs/%s", newrefname);
1468 goto rollback;
1470 goto retry;
1471 } else {
1472 error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
1473 newrefname, strerror(errno));
1474 goto rollback;
1477 logmoved = log;
1479 lock = lock_ref_sha1_basic(newrefname, NULL, 0, NULL);
1480 if (!lock) {
1481 error("unable to lock %s for update", newrefname);
1482 goto rollback;
1484 lock->force_write = 1;
1485 hashcpy(lock->old_sha1, orig_sha1);
1486 if (write_ref_sha1(lock, orig_sha1, logmsg)) {
1487 error("unable to write current sha1 into %s", newrefname);
1488 goto rollback;
1491 return 0;
1493 rollback:
1494 lock = lock_ref_sha1_basic(oldrefname, NULL, 0, NULL);
1495 if (!lock) {
1496 error("unable to lock %s for rollback", oldrefname);
1497 goto rollbacklog;
1500 lock->force_write = 1;
1501 flag = log_all_ref_updates;
1502 log_all_ref_updates = 0;
1503 if (write_ref_sha1(lock, orig_sha1, NULL))
1504 error("unable to write current sha1 into %s", oldrefname);
1505 log_all_ref_updates = flag;
1507 rollbacklog:
1508 if (logmoved && rename(git_path("logs/%s", newrefname), git_path("logs/%s", oldrefname)))
1509 error("unable to restore logfile %s from %s: %s",
1510 oldrefname, newrefname, strerror(errno));
1511 if (!logmoved && log &&
1512 rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldrefname)))
1513 error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
1514 oldrefname, strerror(errno));
1516 return 1;
1519 int close_ref(struct ref_lock *lock)
1521 if (close_lock_file(lock->lk))
1522 return -1;
1523 lock->lock_fd = -1;
1524 return 0;
1527 int commit_ref(struct ref_lock *lock)
1529 if (commit_lock_file(lock->lk))
1530 return -1;
1531 lock->lock_fd = -1;
1532 return 0;
1535 void unlock_ref(struct ref_lock *lock)
1537 /* Do not free lock->lk -- atexit() still looks at them */
1538 if (lock->lk)
1539 rollback_lock_file(lock->lk);
1540 free(lock->ref_name);
1541 free(lock->orig_ref_name);
1542 free(lock);
1546 * copy the reflog message msg to buf, which has been allocated sufficiently
1547 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1548 * because reflog file is one line per entry.
1550 static int copy_msg(char *buf, const char *msg)
1552 char *cp = buf;
1553 char c;
1554 int wasspace = 1;
1556 *cp++ = '\t';
1557 while ((c = *msg++)) {
1558 if (wasspace && isspace(c))
1559 continue;
1560 wasspace = isspace(c);
1561 if (wasspace)
1562 c = ' ';
1563 *cp++ = c;
1565 while (buf < cp && isspace(cp[-1]))
1566 cp--;
1567 *cp++ = '\n';
1568 return cp - buf;
1571 int log_ref_setup(const char *refname, char *logfile, int bufsize)
1573 int logfd, oflags = O_APPEND | O_WRONLY;
1575 git_snpath(logfile, bufsize, "logs/%s", refname);
1576 if (log_all_ref_updates &&
1577 (!prefixcmp(refname, "refs/heads/") ||
1578 !prefixcmp(refname, "refs/remotes/") ||
1579 !prefixcmp(refname, "refs/notes/") ||
1580 !strcmp(refname, "HEAD"))) {
1581 if (safe_create_leading_directories(logfile) < 0)
1582 return error("unable to create directory for %s",
1583 logfile);
1584 oflags |= O_CREAT;
1587 logfd = open(logfile, oflags, 0666);
1588 if (logfd < 0) {
1589 if (!(oflags & O_CREAT) && errno == ENOENT)
1590 return 0;
1592 if ((oflags & O_CREAT) && errno == EISDIR) {
1593 if (remove_empty_directories(logfile)) {
1594 return error("There are still logs under '%s'",
1595 logfile);
1597 logfd = open(logfile, oflags, 0666);
1600 if (logfd < 0)
1601 return error("Unable to append to %s: %s",
1602 logfile, strerror(errno));
1605 adjust_shared_perm(logfile);
1606 close(logfd);
1607 return 0;
1610 static int log_ref_write(const char *refname, const unsigned char *old_sha1,
1611 const unsigned char *new_sha1, const char *msg)
1613 int logfd, result, written, oflags = O_APPEND | O_WRONLY;
1614 unsigned maxlen, len;
1615 int msglen;
1616 char log_file[PATH_MAX];
1617 char *logrec;
1618 const char *committer;
1620 if (log_all_ref_updates < 0)
1621 log_all_ref_updates = !is_bare_repository();
1623 result = log_ref_setup(refname, log_file, sizeof(log_file));
1624 if (result)
1625 return result;
1627 logfd = open(log_file, oflags);
1628 if (logfd < 0)
1629 return 0;
1630 msglen = msg ? strlen(msg) : 0;
1631 committer = git_committer_info(0);
1632 maxlen = strlen(committer) + msglen + 100;
1633 logrec = xmalloc(maxlen);
1634 len = sprintf(logrec, "%s %s %s\n",
1635 sha1_to_hex(old_sha1),
1636 sha1_to_hex(new_sha1),
1637 committer);
1638 if (msglen)
1639 len += copy_msg(logrec + len - 1, msg) - 1;
1640 written = len <= maxlen ? write_in_full(logfd, logrec, len) : -1;
1641 free(logrec);
1642 if (close(logfd) != 0 || written != len)
1643 return error("Unable to append to %s", log_file);
1644 return 0;
1647 static int is_branch(const char *refname)
1649 return !strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/");
1652 int write_ref_sha1(struct ref_lock *lock,
1653 const unsigned char *sha1, const char *logmsg)
1655 static char term = '\n';
1656 struct object *o;
1658 if (!lock)
1659 return -1;
1660 if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
1661 unlock_ref(lock);
1662 return 0;
1664 o = parse_object(sha1);
1665 if (!o) {
1666 error("Trying to write ref %s with nonexistent object %s",
1667 lock->ref_name, sha1_to_hex(sha1));
1668 unlock_ref(lock);
1669 return -1;
1671 if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
1672 error("Trying to write non-commit object %s to branch %s",
1673 sha1_to_hex(sha1), lock->ref_name);
1674 unlock_ref(lock);
1675 return -1;
1677 if (write_in_full(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
1678 write_in_full(lock->lock_fd, &term, 1) != 1
1679 || close_ref(lock) < 0) {
1680 error("Couldn't write %s", lock->lk->filename);
1681 unlock_ref(lock);
1682 return -1;
1684 clear_loose_ref_cache(get_ref_cache(NULL));
1685 if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
1686 (strcmp(lock->ref_name, lock->orig_ref_name) &&
1687 log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
1688 unlock_ref(lock);
1689 return -1;
1691 if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
1693 * Special hack: If a branch is updated directly and HEAD
1694 * points to it (may happen on the remote side of a push
1695 * for example) then logically the HEAD reflog should be
1696 * updated too.
1697 * A generic solution implies reverse symref information,
1698 * but finding all symrefs pointing to the given branch
1699 * would be rather costly for this rare event (the direct
1700 * update of a branch) to be worth it. So let's cheat and
1701 * check with HEAD only which should cover 99% of all usage
1702 * scenarios (even 100% of the default ones).
1704 unsigned char head_sha1[20];
1705 int head_flag;
1706 const char *head_ref;
1707 head_ref = resolve_ref("HEAD", head_sha1, 1, &head_flag);
1708 if (head_ref && (head_flag & REF_ISSYMREF) &&
1709 !strcmp(head_ref, lock->ref_name))
1710 log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);
1712 if (commit_ref(lock)) {
1713 error("Couldn't set %s", lock->ref_name);
1714 unlock_ref(lock);
1715 return -1;
1717 unlock_ref(lock);
1718 return 0;
1721 int create_symref(const char *ref_target, const char *refs_heads_master,
1722 const char *logmsg)
1724 const char *lockpath;
1725 char ref[1000];
1726 int fd, len, written;
1727 char *git_HEAD = git_pathdup("%s", ref_target);
1728 unsigned char old_sha1[20], new_sha1[20];
1730 if (logmsg && read_ref(ref_target, old_sha1))
1731 hashclr(old_sha1);
1733 if (safe_create_leading_directories(git_HEAD) < 0)
1734 return error("unable to create directory for %s", git_HEAD);
1736 #ifndef NO_SYMLINK_HEAD
1737 if (prefer_symlink_refs) {
1738 unlink(git_HEAD);
1739 if (!symlink(refs_heads_master, git_HEAD))
1740 goto done;
1741 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
1743 #endif
1745 len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
1746 if (sizeof(ref) <= len) {
1747 error("refname too long: %s", refs_heads_master);
1748 goto error_free_return;
1750 lockpath = mkpath("%s.lock", git_HEAD);
1751 fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
1752 if (fd < 0) {
1753 error("Unable to open %s for writing", lockpath);
1754 goto error_free_return;
1756 written = write_in_full(fd, ref, len);
1757 if (close(fd) != 0 || written != len) {
1758 error("Unable to write to %s", lockpath);
1759 goto error_unlink_return;
1761 if (rename(lockpath, git_HEAD) < 0) {
1762 error("Unable to create %s", git_HEAD);
1763 goto error_unlink_return;
1765 if (adjust_shared_perm(git_HEAD)) {
1766 error("Unable to fix permissions on %s", lockpath);
1767 error_unlink_return:
1768 unlink_or_warn(lockpath);
1769 error_free_return:
1770 free(git_HEAD);
1771 return -1;
1774 #ifndef NO_SYMLINK_HEAD
1775 done:
1776 #endif
1777 if (logmsg && !read_ref(refs_heads_master, new_sha1))
1778 log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
1780 free(git_HEAD);
1781 return 0;
1784 static char *ref_msg(const char *line, const char *endp)
1786 const char *ep;
1787 line += 82;
1788 ep = memchr(line, '\n', endp - line);
1789 if (!ep)
1790 ep = endp;
1791 return xmemdupz(line, ep - line);
1794 int read_ref_at(const char *refname, unsigned long at_time, int cnt,
1795 unsigned char *sha1, char **msg,
1796 unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
1798 const char *logfile, *logdata, *logend, *rec, *lastgt, *lastrec;
1799 char *tz_c;
1800 int logfd, tz, reccnt = 0;
1801 struct stat st;
1802 unsigned long date;
1803 unsigned char logged_sha1[20];
1804 void *log_mapped;
1805 size_t mapsz;
1807 logfile = git_path("logs/%s", refname);
1808 logfd = open(logfile, O_RDONLY, 0);
1809 if (logfd < 0)
1810 die_errno("Unable to read log '%s'", logfile);
1811 fstat(logfd, &st);
1812 if (!st.st_size)
1813 die("Log %s is empty.", logfile);
1814 mapsz = xsize_t(st.st_size);
1815 log_mapped = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, logfd, 0);
1816 logdata = log_mapped;
1817 close(logfd);
1819 lastrec = NULL;
1820 rec = logend = logdata + st.st_size;
1821 while (logdata < rec) {
1822 reccnt++;
1823 if (logdata < rec && *(rec-1) == '\n')
1824 rec--;
1825 lastgt = NULL;
1826 while (logdata < rec && *(rec-1) != '\n') {
1827 rec--;
1828 if (*rec == '>')
1829 lastgt = rec;
1831 if (!lastgt)
1832 die("Log %s is corrupt.", logfile);
1833 date = strtoul(lastgt + 1, &tz_c, 10);
1834 if (date <= at_time || cnt == 0) {
1835 tz = strtoul(tz_c, NULL, 10);
1836 if (msg)
1837 *msg = ref_msg(rec, logend);
1838 if (cutoff_time)
1839 *cutoff_time = date;
1840 if (cutoff_tz)
1841 *cutoff_tz = tz;
1842 if (cutoff_cnt)
1843 *cutoff_cnt = reccnt - 1;
1844 if (lastrec) {
1845 if (get_sha1_hex(lastrec, logged_sha1))
1846 die("Log %s is corrupt.", logfile);
1847 if (get_sha1_hex(rec + 41, sha1))
1848 die("Log %s is corrupt.", logfile);
1849 if (hashcmp(logged_sha1, sha1)) {
1850 warning("Log %s has gap after %s.",
1851 logfile, show_date(date, tz, DATE_RFC2822));
1854 else if (date == at_time) {
1855 if (get_sha1_hex(rec + 41, sha1))
1856 die("Log %s is corrupt.", logfile);
1858 else {
1859 if (get_sha1_hex(rec + 41, logged_sha1))
1860 die("Log %s is corrupt.", logfile);
1861 if (hashcmp(logged_sha1, sha1)) {
1862 warning("Log %s unexpectedly ended on %s.",
1863 logfile, show_date(date, tz, DATE_RFC2822));
1866 munmap(log_mapped, mapsz);
1867 return 0;
1869 lastrec = rec;
1870 if (cnt > 0)
1871 cnt--;
1874 rec = logdata;
1875 while (rec < logend && *rec != '>' && *rec != '\n')
1876 rec++;
1877 if (rec == logend || *rec == '\n')
1878 die("Log %s is corrupt.", logfile);
1879 date = strtoul(rec + 1, &tz_c, 10);
1880 tz = strtoul(tz_c, NULL, 10);
1881 if (get_sha1_hex(logdata, sha1))
1882 die("Log %s is corrupt.", logfile);
1883 if (is_null_sha1(sha1)) {
1884 if (get_sha1_hex(logdata + 41, sha1))
1885 die("Log %s is corrupt.", logfile);
1887 if (msg)
1888 *msg = ref_msg(logdata, logend);
1889 munmap(log_mapped, mapsz);
1891 if (cutoff_time)
1892 *cutoff_time = date;
1893 if (cutoff_tz)
1894 *cutoff_tz = tz;
1895 if (cutoff_cnt)
1896 *cutoff_cnt = reccnt;
1897 return 1;
1900 int for_each_recent_reflog_ent(const char *refname, each_reflog_ent_fn fn, long ofs, void *cb_data)
1902 const char *logfile;
1903 FILE *logfp;
1904 struct strbuf sb = STRBUF_INIT;
1905 int ret = 0;
1907 logfile = git_path("logs/%s", refname);
1908 logfp = fopen(logfile, "r");
1909 if (!logfp)
1910 return -1;
1912 if (ofs) {
1913 struct stat statbuf;
1914 if (fstat(fileno(logfp), &statbuf) ||
1915 statbuf.st_size < ofs ||
1916 fseek(logfp, -ofs, SEEK_END) ||
1917 strbuf_getwholeline(&sb, logfp, '\n')) {
1918 fclose(logfp);
1919 strbuf_release(&sb);
1920 return -1;
1924 while (!strbuf_getwholeline(&sb, logfp, '\n')) {
1925 unsigned char osha1[20], nsha1[20];
1926 char *email_end, *message;
1927 unsigned long timestamp;
1928 int tz;
1930 /* old SP new SP name <email> SP time TAB msg LF */
1931 if (sb.len < 83 || sb.buf[sb.len - 1] != '\n' ||
1932 get_sha1_hex(sb.buf, osha1) || sb.buf[40] != ' ' ||
1933 get_sha1_hex(sb.buf + 41, nsha1) || sb.buf[81] != ' ' ||
1934 !(email_end = strchr(sb.buf + 82, '>')) ||
1935 email_end[1] != ' ' ||
1936 !(timestamp = strtoul(email_end + 2, &message, 10)) ||
1937 !message || message[0] != ' ' ||
1938 (message[1] != '+' && message[1] != '-') ||
1939 !isdigit(message[2]) || !isdigit(message[3]) ||
1940 !isdigit(message[4]) || !isdigit(message[5]))
1941 continue; /* corrupt? */
1942 email_end[1] = '\0';
1943 tz = strtol(message + 1, NULL, 10);
1944 if (message[6] != '\t')
1945 message += 6;
1946 else
1947 message += 7;
1948 ret = fn(osha1, nsha1, sb.buf + 82, timestamp, tz, message,
1949 cb_data);
1950 if (ret)
1951 break;
1953 fclose(logfp);
1954 strbuf_release(&sb);
1955 return ret;
1958 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data)
1960 return for_each_recent_reflog_ent(refname, fn, 0, cb_data);
1963 static int do_for_each_reflog(const char *base, each_ref_fn fn, void *cb_data)
1965 DIR *dir = opendir(git_path("logs/%s", base));
1966 int retval = 0;
1968 if (dir) {
1969 struct dirent *de;
1970 int baselen = strlen(base);
1971 char *log = xmalloc(baselen + 257);
1973 memcpy(log, base, baselen);
1974 if (baselen && base[baselen-1] != '/')
1975 log[baselen++] = '/';
1977 while ((de = readdir(dir)) != NULL) {
1978 struct stat st;
1979 int namelen;
1981 if (de->d_name[0] == '.')
1982 continue;
1983 namelen = strlen(de->d_name);
1984 if (namelen > 255)
1985 continue;
1986 if (has_extension(de->d_name, ".lock"))
1987 continue;
1988 memcpy(log + baselen, de->d_name, namelen+1);
1989 if (stat(git_path("logs/%s", log), &st) < 0)
1990 continue;
1991 if (S_ISDIR(st.st_mode)) {
1992 retval = do_for_each_reflog(log, fn, cb_data);
1993 } else {
1994 unsigned char sha1[20];
1995 if (!resolve_ref(log, sha1, 0, NULL))
1996 retval = error("bad ref for %s", log);
1997 else
1998 retval = fn(log, sha1, 0, cb_data);
2000 if (retval)
2001 break;
2003 free(log);
2004 closedir(dir);
2006 else if (*base)
2007 return errno;
2008 return retval;
2011 int for_each_reflog(each_ref_fn fn, void *cb_data)
2013 return do_for_each_reflog("", fn, cb_data);
2016 int update_ref(const char *action, const char *refname,
2017 const unsigned char *sha1, const unsigned char *oldval,
2018 int flags, enum action_on_err onerr)
2020 static struct ref_lock *lock;
2021 lock = lock_any_ref_for_update(refname, oldval, flags);
2022 if (!lock) {
2023 const char *str = "Cannot lock the ref '%s'.";
2024 switch (onerr) {
2025 case MSG_ON_ERR: error(str, refname); break;
2026 case DIE_ON_ERR: die(str, refname); break;
2027 case QUIET_ON_ERR: break;
2029 return 1;
2031 if (write_ref_sha1(lock, sha1, action) < 0) {
2032 const char *str = "Cannot update the ref '%s'.";
2033 switch (onerr) {
2034 case MSG_ON_ERR: error(str, refname); break;
2035 case DIE_ON_ERR: die(str, refname); break;
2036 case QUIET_ON_ERR: break;
2038 return 1;
2040 return 0;
2043 int ref_exists(const char *refname)
2045 unsigned char sha1[20];
2046 return !!resolve_ref(refname, sha1, 1, NULL);
2049 struct ref *find_ref_by_name(const struct ref *list, const char *name)
2051 for ( ; list; list = list->next)
2052 if (!strcmp(list->name, name))
2053 return (struct ref *)list;
2054 return NULL;
2058 * generate a format suitable for scanf from a ref_rev_parse_rules
2059 * rule, that is replace the "%.*s" spec with a "%s" spec
2061 static void gen_scanf_fmt(char *scanf_fmt, const char *rule)
2063 char *spec;
2065 spec = strstr(rule, "%.*s");
2066 if (!spec || strstr(spec + 4, "%.*s"))
2067 die("invalid rule in ref_rev_parse_rules: %s", rule);
2069 /* copy all until spec */
2070 strncpy(scanf_fmt, rule, spec - rule);
2071 scanf_fmt[spec - rule] = '\0';
2072 /* copy new spec */
2073 strcat(scanf_fmt, "%s");
2074 /* copy remaining rule */
2075 strcat(scanf_fmt, spec + 4);
2077 return;
2080 char *shorten_unambiguous_ref(const char *refname, int strict)
2082 int i;
2083 static char **scanf_fmts;
2084 static int nr_rules;
2085 char *short_name;
2087 /* pre generate scanf formats from ref_rev_parse_rules[] */
2088 if (!nr_rules) {
2089 size_t total_len = 0;
2091 /* the rule list is NULL terminated, count them first */
2092 for (; ref_rev_parse_rules[nr_rules]; nr_rules++)
2093 /* no +1 because strlen("%s") < strlen("%.*s") */
2094 total_len += strlen(ref_rev_parse_rules[nr_rules]);
2096 scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
2098 total_len = 0;
2099 for (i = 0; i < nr_rules; i++) {
2100 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules]
2101 + total_len;
2102 gen_scanf_fmt(scanf_fmts[i], ref_rev_parse_rules[i]);
2103 total_len += strlen(ref_rev_parse_rules[i]);
2107 /* bail out if there are no rules */
2108 if (!nr_rules)
2109 return xstrdup(refname);
2111 /* buffer for scanf result, at most refname must fit */
2112 short_name = xstrdup(refname);
2114 /* skip first rule, it will always match */
2115 for (i = nr_rules - 1; i > 0 ; --i) {
2116 int j;
2117 int rules_to_fail = i;
2118 int short_name_len;
2120 if (1 != sscanf(refname, scanf_fmts[i], short_name))
2121 continue;
2123 short_name_len = strlen(short_name);
2126 * in strict mode, all (except the matched one) rules
2127 * must fail to resolve to a valid non-ambiguous ref
2129 if (strict)
2130 rules_to_fail = nr_rules;
2133 * check if the short name resolves to a valid ref,
2134 * but use only rules prior to the matched one
2136 for (j = 0; j < rules_to_fail; j++) {
2137 const char *rule = ref_rev_parse_rules[j];
2138 unsigned char short_objectname[20];
2139 char refname[PATH_MAX];
2141 /* skip matched rule */
2142 if (i == j)
2143 continue;
2146 * the short name is ambiguous, if it resolves
2147 * (with this previous rule) to a valid ref
2148 * read_ref() returns 0 on success
2150 mksnpath(refname, sizeof(refname),
2151 rule, short_name_len, short_name);
2152 if (!read_ref(refname, short_objectname))
2153 break;
2157 * short name is non-ambiguous if all previous rules
2158 * haven't resolved to a valid ref
2160 if (j == rules_to_fail)
2161 return short_name;
2164 free(short_name);
2165 return xstrdup(refname);