refs: Use binary search to lookup refs faster
[git] / refs.c
1 #include "cache.h"
2 #include "refs.h"
3 #include "object.h"
4 #include "tag.h"
5 #include "dir.h"
6
7 /* ISSYMREF=01 and ISPACKED=02 are public interfaces */
8 #define REF_KNOWS_PEELED 04
9 #define REF_BROKEN 010
10
11 struct ref_entry {
12         unsigned char flag; /* ISSYMREF? ISPACKED? */
13         unsigned char sha1[20];
14         unsigned char peeled[20];
15         char name[FLEX_ARRAY];
16 };
17
18 struct ref_array {
19         int nr, alloc;
20         struct ref_entry **refs;
21 };
22
23 static const char *parse_ref_line(char *line, unsigned char *sha1)
24 {
25         /*
26          * 42: the answer to everything.
27          *
28          * In this case, it happens to be the answer to
29          *  40 (length of sha1 hex representation)
30          *  +1 (space in between hex and name)
31          *  +1 (newline at the end of the line)
32          */
33         int len = strlen(line) - 42;
34
35         if (len <= 0)
36                 return NULL;
37         if (get_sha1_hex(line, sha1) < 0)
38                 return NULL;
39         if (!isspace(line[40]))
40                 return NULL;
41         line += 41;
42         if (isspace(*line))
43                 return NULL;
44         if (line[len] != '\n')
45                 return NULL;
46         line[len] = 0;
47
48         return line;
49 }
50
51 static void add_ref(const char *name, const unsigned char *sha1,
52                     int flag, struct ref_array *refs,
53                     struct ref_entry **new_entry)
54 {
55         int len;
56         struct ref_entry *entry;
57
58         /* Allocate it and add it in.. */
59         len = strlen(name) + 1;
60         entry = xmalloc(sizeof(struct ref_entry) + len);
61         hashcpy(entry->sha1, sha1);
62         hashclr(entry->peeled);
63         memcpy(entry->name, name, len);
64         entry->flag = flag;
65         if (new_entry)
66                 *new_entry = entry;
67         ALLOC_GROW(refs->refs, refs->nr + 1, refs->alloc);
68         refs->refs[refs->nr++] = entry;
69 }
70
71 static int ref_entry_cmp(const void *a, const void *b)
72 {
73         struct ref_entry *one = *(struct ref_entry **)a;
74         struct ref_entry *two = *(struct ref_entry **)b;
75         return strcmp(one->name, two->name);
76 }
77
78 static void sort_ref_array(struct ref_array *array)
79 {
80         int i = 0, j = 1;
81
82         /* Nothing to sort unless there are at least two entries */
83         if (array->nr < 2)
84                 return;
85
86         qsort(array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
87
88         /* Remove any duplicates from the ref_array */
89         for (; j < array->nr; j++) {
90                 struct ref_entry *a = array->refs[i];
91                 struct ref_entry *b = array->refs[j];
92                 if (!strcmp(a->name, b->name)) {
93                         if (hashcmp(a->sha1, b->sha1))
94                                 die("Duplicated ref, and SHA1s don't match: %s",
95                                     a->name);
96                         warning("Duplicated ref: %s", a->name);
97                         continue;
98                 }
99                 i++;
100                 array->refs[i] = array->refs[j];
101         }
102         array->nr = i + 1;
103 }
104
105 static struct ref_entry *search_ref_array(struct ref_array *array, const char *name)
106 {
107         struct ref_entry *e, **r;
108         int len;
109
110         if (name == NULL)
111                 return NULL;
112
113         len = strlen(name) + 1;
114         e = xmalloc(sizeof(struct ref_entry) + len);
115         memcpy(e->name, name, len);
116
117         r = bsearch(&e, array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
118
119         free(e);
120
121         if (r == NULL)
122                 return NULL;
123
124         return *r;
125 }
126
127 /*
128  * Future: need to be in "struct repository"
129  * when doing a full libification.
130  */
131 static struct cached_refs {
132         char did_loose;
133         char did_packed;
134         struct ref_array loose;
135         struct ref_array packed;
136 } cached_refs, submodule_refs;
137 static struct ref_entry *current_ref;
138
139 static struct ref_array extra_refs;
140
141 static void free_ref_array(struct ref_array *array)
142 {
143         int i;
144         for (i = 0; i < array->nr; i++)
145                 free(array->refs[i]);
146         free(array->refs);
147         array->nr = array->alloc = 0;
148         array->refs = NULL;
149 }
150
151 static void invalidate_cached_refs(void)
152 {
153         struct cached_refs *ca = &cached_refs;
154
155         if (ca->did_loose)
156                 free_ref_array(&ca->loose);
157         if (ca->did_packed)
158                 free_ref_array(&ca->packed);
159         ca->did_loose = ca->did_packed = 0;
160 }
161
162 static void read_packed_refs(FILE *f, struct cached_refs *cached_refs)
163 {
164         struct ref_entry *last = NULL;
165         char refline[PATH_MAX];
166         int flag = REF_ISPACKED;
167
168         while (fgets(refline, sizeof(refline), f)) {
169                 unsigned char sha1[20];
170                 const char *name;
171                 static const char header[] = "# pack-refs with:";
172
173                 if (!strncmp(refline, header, sizeof(header)-1)) {
174                         const char *traits = refline + sizeof(header) - 1;
175                         if (strstr(traits, " peeled "))
176                                 flag |= REF_KNOWS_PEELED;
177                         /* perhaps other traits later as well */
178                         continue;
179                 }
180
181                 name = parse_ref_line(refline, sha1);
182                 if (name) {
183                         add_ref(name, sha1, flag, &cached_refs->packed, &last);
184                         continue;
185                 }
186                 if (last &&
187                     refline[0] == '^' &&
188                     strlen(refline) == 42 &&
189                     refline[41] == '\n' &&
190                     !get_sha1_hex(refline + 1, sha1))
191                         hashcpy(last->peeled, sha1);
192         }
193         sort_ref_array(&cached_refs->packed);
194 }
195
196 void add_extra_ref(const char *name, const unsigned char *sha1, int flag)
197 {
198         add_ref(name, sha1, flag, &extra_refs, NULL);
199 }
200
201 void clear_extra_refs(void)
202 {
203         free_ref_array(&extra_refs);
204 }
205
206 static struct ref_array *get_packed_refs(const char *submodule)
207 {
208         const char *packed_refs_file;
209         struct cached_refs *refs;
210
211         if (submodule) {
212                 packed_refs_file = git_path_submodule(submodule, "packed-refs");
213                 refs = &submodule_refs;
214                 free_ref_array(&refs->packed);
215         } else {
216                 packed_refs_file = git_path("packed-refs");
217                 refs = &cached_refs;
218         }
219
220         if (!refs->did_packed || submodule) {
221                 FILE *f = fopen(packed_refs_file, "r");
222                 if (f) {
223                         read_packed_refs(f, refs);
224                         fclose(f);
225                 }
226                 refs->did_packed = 1;
227         }
228         return &refs->packed;
229 }
230
231 static void get_ref_dir(const char *submodule, const char *base,
232                         struct ref_array *array)
233 {
234         DIR *dir;
235         const char *path;
236
237         if (submodule)
238                 path = git_path_submodule(submodule, "%s", base);
239         else
240                 path = git_path("%s", base);
241
242
243         dir = opendir(path);
244
245         if (dir) {
246                 struct dirent *de;
247                 int baselen = strlen(base);
248                 char *ref = xmalloc(baselen + 257);
249
250                 memcpy(ref, base, baselen);
251                 if (baselen && base[baselen-1] != '/')
252                         ref[baselen++] = '/';
253
254                 while ((de = readdir(dir)) != NULL) {
255                         unsigned char sha1[20];
256                         struct stat st;
257                         int flag;
258                         int namelen;
259                         const char *refdir;
260
261                         if (de->d_name[0] == '.')
262                                 continue;
263                         namelen = strlen(de->d_name);
264                         if (namelen > 255)
265                                 continue;
266                         if (has_extension(de->d_name, ".lock"))
267                                 continue;
268                         memcpy(ref + baselen, de->d_name, namelen+1);
269                         refdir = submodule
270                                 ? git_path_submodule(submodule, "%s", ref)
271                                 : git_path("%s", ref);
272                         if (stat(refdir, &st) < 0)
273                                 continue;
274                         if (S_ISDIR(st.st_mode)) {
275                                 get_ref_dir(submodule, ref, array);
276                                 continue;
277                         }
278                         if (submodule) {
279                                 hashclr(sha1);
280                                 flag = 0;
281                                 if (resolve_gitlink_ref(submodule, ref, sha1) < 0) {
282                                         hashclr(sha1);
283                                         flag |= REF_BROKEN;
284                                 }
285                         } else
286                                 if (!resolve_ref(ref, sha1, 1, &flag)) {
287                                         hashclr(sha1);
288                                         flag |= REF_BROKEN;
289                                 }
290                         add_ref(ref, sha1, flag, array, NULL);
291                 }
292                 free(ref);
293                 closedir(dir);
294         }
295 }
296
297 struct warn_if_dangling_data {
298         FILE *fp;
299         const char *refname;
300         const char *msg_fmt;
301 };
302
303 static int warn_if_dangling_symref(const char *refname, const unsigned char *sha1,
304                                    int flags, void *cb_data)
305 {
306         struct warn_if_dangling_data *d = cb_data;
307         const char *resolves_to;
308         unsigned char junk[20];
309
310         if (!(flags & REF_ISSYMREF))
311                 return 0;
312
313         resolves_to = resolve_ref(refname, junk, 0, NULL);
314         if (!resolves_to || strcmp(resolves_to, d->refname))
315                 return 0;
316
317         fprintf(d->fp, d->msg_fmt, refname);
318         return 0;
319 }
320
321 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
322 {
323         struct warn_if_dangling_data data;
324
325         data.fp = fp;
326         data.refname = refname;
327         data.msg_fmt = msg_fmt;
328         for_each_rawref(warn_if_dangling_symref, &data);
329 }
330
331 static struct ref_array *get_loose_refs(const char *submodule)
332 {
333         if (submodule) {
334                 free_ref_array(&submodule_refs.loose);
335                 get_ref_dir(submodule, "refs", &submodule_refs.loose);
336                 sort_ref_array(&submodule_refs.loose);
337                 return &submodule_refs.loose;
338         }
339
340         if (!cached_refs.did_loose) {
341                 get_ref_dir(NULL, "refs", &cached_refs.loose);
342                 sort_ref_array(&cached_refs.loose);
343                 cached_refs.did_loose = 1;
344         }
345         return &cached_refs.loose;
346 }
347
348 /* We allow "recursive" symbolic refs. Only within reason, though */
349 #define MAXDEPTH 5
350 #define MAXREFLEN (1024)
351
352 static int resolve_gitlink_packed_ref(char *name, int pathlen, const char *refname, unsigned char *result)
353 {
354         FILE *f;
355         struct cached_refs refs;
356         struct ref_entry *ref;
357         int retval = -1;
358
359         strcpy(name + pathlen, "packed-refs");
360         f = fopen(name, "r");
361         if (!f)
362                 return -1;
363         read_packed_refs(f, &refs);
364         fclose(f);
365         ref = search_ref_array(&refs.packed, refname);
366         if (ref != NULL) {
367                 memcpy(result, ref->sha1, 20);
368                 retval = 0;
369         }
370         free_ref_array(&refs.packed);
371         return retval;
372 }
373
374 static int resolve_gitlink_ref_recursive(char *name, int pathlen, const char *refname, unsigned char *result, int recursion)
375 {
376         int fd, len = strlen(refname);
377         char buffer[128], *p;
378
379         if (recursion > MAXDEPTH || len > MAXREFLEN)
380                 return -1;
381         memcpy(name + pathlen, refname, len+1);
382         fd = open(name, O_RDONLY);
383         if (fd < 0)
384                 return resolve_gitlink_packed_ref(name, pathlen, refname, result);
385
386         len = read(fd, buffer, sizeof(buffer)-1);
387         close(fd);
388         if (len < 0)
389                 return -1;
390         while (len && isspace(buffer[len-1]))
391                 len--;
392         buffer[len] = 0;
393
394         /* Was it a detached head or an old-fashioned symlink? */
395         if (!get_sha1_hex(buffer, result))
396                 return 0;
397
398         /* Symref? */
399         if (strncmp(buffer, "ref:", 4))
400                 return -1;
401         p = buffer + 4;
402         while (isspace(*p))
403                 p++;
404
405         return resolve_gitlink_ref_recursive(name, pathlen, p, result, recursion+1);
406 }
407
408 int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *result)
409 {
410         int len = strlen(path), retval;
411         char *gitdir;
412         const char *tmp;
413
414         while (len && path[len-1] == '/')
415                 len--;
416         if (!len)
417                 return -1;
418         gitdir = xmalloc(len + MAXREFLEN + 8);
419         memcpy(gitdir, path, len);
420         memcpy(gitdir + len, "/.git", 6);
421         len += 5;
422
423         tmp = read_gitfile_gently(gitdir);
424         if (tmp) {
425                 free(gitdir);
426                 len = strlen(tmp);
427                 gitdir = xmalloc(len + MAXREFLEN + 3);
428                 memcpy(gitdir, tmp, len);
429         }
430         gitdir[len] = '/';
431         gitdir[++len] = '\0';
432         retval = resolve_gitlink_ref_recursive(gitdir, len, refname, result, 0);
433         free(gitdir);
434         return retval;
435 }
436
437 /*
438  * If the "reading" argument is set, this function finds out what _object_
439  * the ref points at by "reading" the ref.  The ref, if it is not symbolic,
440  * has to exist, and if it is symbolic, it has to point at an existing ref,
441  * because the "read" goes through the symref to the ref it points at.
442  *
443  * The access that is not "reading" may often be "writing", but does not
444  * have to; it can be merely checking _where it leads to_. If it is a
445  * prelude to "writing" to the ref, a write to a symref that points at
446  * yet-to-be-born ref will create the real ref pointed by the symref.
447  * reading=0 allows the caller to check where such a symref leads to.
448  */
449 const char *resolve_ref(const char *ref, unsigned char *sha1, int reading, int *flag)
450 {
451         int depth = MAXDEPTH;
452         ssize_t len;
453         char buffer[256];
454         static char ref_buffer[256];
455
456         if (flag)
457                 *flag = 0;
458
459         for (;;) {
460                 char path[PATH_MAX];
461                 struct stat st;
462                 char *buf;
463                 int fd;
464
465                 if (--depth < 0)
466                         return NULL;
467
468                 git_snpath(path, sizeof(path), "%s", ref);
469                 /* Special case: non-existing file. */
470                 if (lstat(path, &st) < 0) {
471                         struct ref_array *packed = get_packed_refs(NULL);
472                         struct ref_entry *r = search_ref_array(packed, ref);
473                         if (r != NULL) {
474                                 hashcpy(sha1, r->sha1);
475                                 if (flag)
476                                         *flag |= REF_ISPACKED;
477                                 return ref;
478                         }
479                         if (reading || errno != ENOENT)
480                                 return NULL;
481                         hashclr(sha1);
482                         return ref;
483                 }
484
485                 /* Follow "normalized" - ie "refs/.." symlinks by hand */
486                 if (S_ISLNK(st.st_mode)) {
487                         len = readlink(path, buffer, sizeof(buffer)-1);
488                         if (len >= 5 && !memcmp("refs/", buffer, 5)) {
489                                 buffer[len] = 0;
490                                 strcpy(ref_buffer, buffer);
491                                 ref = ref_buffer;
492                                 if (flag)
493                                         *flag |= REF_ISSYMREF;
494                                 continue;
495                         }
496                 }
497
498                 /* Is it a directory? */
499                 if (S_ISDIR(st.st_mode)) {
500                         errno = EISDIR;
501                         return NULL;
502                 }
503
504                 /*
505                  * Anything else, just open it and try to use it as
506                  * a ref
507                  */
508                 fd = open(path, O_RDONLY);
509                 if (fd < 0)
510                         return NULL;
511                 len = read_in_full(fd, buffer, sizeof(buffer)-1);
512                 close(fd);
513
514                 /*
515                  * Is it a symbolic ref?
516                  */
517                 if (len < 4 || memcmp("ref:", buffer, 4))
518                         break;
519                 buf = buffer + 4;
520                 len -= 4;
521                 while (len && isspace(*buf))
522                         buf++, len--;
523                 while (len && isspace(buf[len-1]))
524                         len--;
525                 buf[len] = 0;
526                 memcpy(ref_buffer, buf, len + 1);
527                 ref = ref_buffer;
528                 if (flag)
529                         *flag |= REF_ISSYMREF;
530         }
531         if (len < 40 || get_sha1_hex(buffer, sha1))
532                 return NULL;
533         return ref;
534 }
535
536 /* The argument to filter_refs */
537 struct ref_filter {
538         const char *pattern;
539         each_ref_fn *fn;
540         void *cb_data;
541 };
542
543 int read_ref(const char *ref, unsigned char *sha1)
544 {
545         if (resolve_ref(ref, sha1, 1, NULL))
546                 return 0;
547         return -1;
548 }
549
550 #define DO_FOR_EACH_INCLUDE_BROKEN 01
551 static int do_one_ref(const char *base, each_ref_fn fn, int trim,
552                       int flags, void *cb_data, struct ref_entry *entry)
553 {
554         if (strncmp(base, entry->name, trim))
555                 return 0;
556
557         if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) {
558                 if (entry->flag & REF_BROKEN)
559                         return 0; /* ignore dangling symref */
560                 if (!has_sha1_file(entry->sha1)) {
561                         error("%s does not point to a valid object!", entry->name);
562                         return 0;
563                 }
564         }
565         current_ref = entry;
566         return fn(entry->name + trim, entry->sha1, entry->flag, cb_data);
567 }
568
569 static int filter_refs(const char *ref, const unsigned char *sha, int flags,
570         void *data)
571 {
572         struct ref_filter *filter = (struct ref_filter *)data;
573         if (fnmatch(filter->pattern, ref, 0))
574                 return 0;
575         return filter->fn(ref, sha, flags, filter->cb_data);
576 }
577
578 int peel_ref(const char *ref, unsigned char *sha1)
579 {
580         int flag;
581         unsigned char base[20];
582         struct object *o;
583
584         if (current_ref && (current_ref->name == ref
585                 || !strcmp(current_ref->name, ref))) {
586                 if (current_ref->flag & REF_KNOWS_PEELED) {
587                         hashcpy(sha1, current_ref->peeled);
588                         return 0;
589                 }
590                 hashcpy(base, current_ref->sha1);
591                 goto fallback;
592         }
593
594         if (!resolve_ref(ref, base, 1, &flag))
595                 return -1;
596
597         if ((flag & REF_ISPACKED)) {
598                 struct ref_array *array = get_packed_refs(NULL);
599                 struct ref_entry *r = search_ref_array(array, ref);
600
601                 if (r != NULL && r->flag & REF_KNOWS_PEELED) {
602                         hashcpy(sha1, r->peeled);
603                         return 0;
604                 }
605         }
606
607 fallback:
608         o = parse_object(base);
609         if (o && o->type == OBJ_TAG) {
610                 o = deref_tag(o, ref, 0);
611                 if (o) {
612                         hashcpy(sha1, o->sha1);
613                         return 0;
614                 }
615         }
616         return -1;
617 }
618
619 static int do_for_each_ref(const char *submodule, const char *base, each_ref_fn fn,
620                            int trim, int flags, void *cb_data)
621 {
622         int retval = 0, i, p = 0, l = 0;
623         struct ref_array *packed = get_packed_refs(submodule);
624         struct ref_array *loose = get_loose_refs(submodule);
625
626         struct ref_array *extra = &extra_refs;
627
628         for (i = 0; i < extra->nr; i++)
629                 retval = do_one_ref(base, fn, trim, flags, cb_data, extra->refs[i]);
630
631         while (p < packed->nr && l < loose->nr) {
632                 struct ref_entry *entry;
633                 int cmp = strcmp(packed->refs[p]->name, loose->refs[l]->name);
634                 if (!cmp) {
635                         p++;
636                         continue;
637                 }
638                 if (cmp > 0) {
639                         entry = loose->refs[l++];
640                 } else {
641                         entry = packed->refs[p++];
642                 }
643                 retval = do_one_ref(base, fn, trim, flags, cb_data, entry);
644                 if (retval)
645                         goto end_each;
646         }
647
648         if (l < loose->nr) {
649                 p = l;
650                 packed = loose;
651         }
652
653         for (; p < packed->nr; p++) {
654                 retval = do_one_ref(base, fn, trim, flags, cb_data, packed->refs[p]);
655                 if (retval)
656                         goto end_each;
657         }
658
659 end_each:
660         current_ref = NULL;
661         return retval;
662 }
663
664
665 static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
666 {
667         unsigned char sha1[20];
668         int flag;
669
670         if (submodule) {
671                 if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
672                         return fn("HEAD", sha1, 0, cb_data);
673
674                 return 0;
675         }
676
677         if (resolve_ref("HEAD", sha1, 1, &flag))
678                 return fn("HEAD", sha1, flag, cb_data);
679
680         return 0;
681 }
682
683 int head_ref(each_ref_fn fn, void *cb_data)
684 {
685         return do_head_ref(NULL, fn, cb_data);
686 }
687
688 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
689 {
690         return do_head_ref(submodule, fn, cb_data);
691 }
692
693 int for_each_ref(each_ref_fn fn, void *cb_data)
694 {
695         return do_for_each_ref(NULL, "refs/", fn, 0, 0, cb_data);
696 }
697
698 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
699 {
700         return do_for_each_ref(submodule, "refs/", fn, 0, 0, cb_data);
701 }
702
703 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
704 {
705         return do_for_each_ref(NULL, prefix, fn, strlen(prefix), 0, cb_data);
706 }
707
708 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
709                 each_ref_fn fn, void *cb_data)
710 {
711         return do_for_each_ref(submodule, prefix, fn, strlen(prefix), 0, cb_data);
712 }
713
714 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
715 {
716         return for_each_ref_in("refs/tags/", fn, cb_data);
717 }
718
719 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
720 {
721         return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
722 }
723
724 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
725 {
726         return for_each_ref_in("refs/heads/", fn, cb_data);
727 }
728
729 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
730 {
731         return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
732 }
733
734 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
735 {
736         return for_each_ref_in("refs/remotes/", fn, cb_data);
737 }
738
739 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
740 {
741         return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
742 }
743
744 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
745 {
746         return do_for_each_ref(NULL, "refs/replace/", fn, 13, 0, cb_data);
747 }
748
749 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
750         const char *prefix, void *cb_data)
751 {
752         struct strbuf real_pattern = STRBUF_INIT;
753         struct ref_filter filter;
754         int ret;
755
756         if (!prefix && prefixcmp(pattern, "refs/"))
757                 strbuf_addstr(&real_pattern, "refs/");
758         else if (prefix)
759                 strbuf_addstr(&real_pattern, prefix);
760         strbuf_addstr(&real_pattern, pattern);
761
762         if (!has_glob_specials(pattern)) {
763                 /* Append implied '/' '*' if not present. */
764                 if (real_pattern.buf[real_pattern.len - 1] != '/')
765                         strbuf_addch(&real_pattern, '/');
766                 /* No need to check for '*', there is none. */
767                 strbuf_addch(&real_pattern, '*');
768         }
769
770         filter.pattern = real_pattern.buf;
771         filter.fn = fn;
772         filter.cb_data = cb_data;
773         ret = for_each_ref(filter_refs, &filter);
774
775         strbuf_release(&real_pattern);
776         return ret;
777 }
778
779 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
780 {
781         return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
782 }
783
784 int for_each_rawref(each_ref_fn fn, void *cb_data)
785 {
786         return do_for_each_ref(NULL, "refs/", fn, 0,
787                                DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
788 }
789
790 /*
791  * Make sure "ref" is something reasonable to have under ".git/refs/";
792  * We do not like it if:
793  *
794  * - any path component of it begins with ".", or
795  * - it has double dots "..", or
796  * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
797  * - it ends with a "/".
798  * - it ends with ".lock"
799  * - it contains a "\" (backslash)
800  */
801
802 static inline int bad_ref_char(int ch)
803 {
804         if (((unsigned) ch) <= ' ' ||
805             ch == '~' || ch == '^' || ch == ':' || ch == '\\')
806                 return 1;
807         /* 2.13 Pattern Matching Notation */
808         if (ch == '?' || ch == '[') /* Unsupported */
809                 return 1;
810         if (ch == '*') /* Supported at the end */
811                 return 2;
812         return 0;
813 }
814
815 int check_ref_format(const char *ref)
816 {
817         int ch, level, bad_type, last;
818         int ret = CHECK_REF_FORMAT_OK;
819         const char *cp = ref;
820
821         level = 0;
822         while (1) {
823                 while ((ch = *cp++) == '/')
824                         ; /* tolerate duplicated slashes */
825                 if (!ch)
826                         /* should not end with slashes */
827                         return CHECK_REF_FORMAT_ERROR;
828
829                 /* we are at the beginning of the path component */
830                 if (ch == '.')
831                         return CHECK_REF_FORMAT_ERROR;
832                 bad_type = bad_ref_char(ch);
833                 if (bad_type) {
834                         if (bad_type == 2 && (!*cp || *cp == '/') &&
835                             ret == CHECK_REF_FORMAT_OK)
836                                 ret = CHECK_REF_FORMAT_WILDCARD;
837                         else
838                                 return CHECK_REF_FORMAT_ERROR;
839                 }
840
841                 last = ch;
842                 /* scan the rest of the path component */
843                 while ((ch = *cp++) != 0) {
844                         bad_type = bad_ref_char(ch);
845                         if (bad_type)
846                                 return CHECK_REF_FORMAT_ERROR;
847                         if (ch == '/')
848                                 break;
849                         if (last == '.' && ch == '.')
850                                 return CHECK_REF_FORMAT_ERROR;
851                         if (last == '@' && ch == '{')
852                                 return CHECK_REF_FORMAT_ERROR;
853                         last = ch;
854                 }
855                 level++;
856                 if (!ch) {
857                         if (ref <= cp - 2 && cp[-2] == '.')
858                                 return CHECK_REF_FORMAT_ERROR;
859                         if (level < 2)
860                                 return CHECK_REF_FORMAT_ONELEVEL;
861                         if (has_extension(ref, ".lock"))
862                                 return CHECK_REF_FORMAT_ERROR;
863                         return ret;
864                 }
865         }
866 }
867
868 const char *prettify_refname(const char *name)
869 {
870         return name + (
871                 !prefixcmp(name, "refs/heads/") ? 11 :
872                 !prefixcmp(name, "refs/tags/") ? 10 :
873                 !prefixcmp(name, "refs/remotes/") ? 13 :
874                 0);
875 }
876
877 const char *ref_rev_parse_rules[] = {
878         "%.*s",
879         "refs/%.*s",
880         "refs/tags/%.*s",
881         "refs/heads/%.*s",
882         "refs/remotes/%.*s",
883         "refs/remotes/%.*s/HEAD",
884         NULL
885 };
886
887 const char *ref_fetch_rules[] = {
888         "%.*s",
889         "refs/%.*s",
890         "refs/heads/%.*s",
891         NULL
892 };
893
894 int refname_match(const char *abbrev_name, const char *full_name, const char **rules)
895 {
896         const char **p;
897         const int abbrev_name_len = strlen(abbrev_name);
898
899         for (p = rules; *p; p++) {
900                 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
901                         return 1;
902                 }
903         }
904
905         return 0;
906 }
907
908 static struct ref_lock *verify_lock(struct ref_lock *lock,
909         const unsigned char *old_sha1, int mustexist)
910 {
911         if (!resolve_ref(lock->ref_name, lock->old_sha1, mustexist, NULL)) {
912                 error("Can't verify ref %s", lock->ref_name);
913                 unlock_ref(lock);
914                 return NULL;
915         }
916         if (hashcmp(lock->old_sha1, old_sha1)) {
917                 error("Ref %s is at %s but expected %s", lock->ref_name,
918                         sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
919                 unlock_ref(lock);
920                 return NULL;
921         }
922         return lock;
923 }
924
925 static int remove_empty_directories(const char *file)
926 {
927         /* we want to create a file but there is a directory there;
928          * if that is an empty directory (or a directory that contains
929          * only empty directories), remove them.
930          */
931         struct strbuf path;
932         int result;
933
934         strbuf_init(&path, 20);
935         strbuf_addstr(&path, file);
936
937         result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
938
939         strbuf_release(&path);
940
941         return result;
942 }
943
944 static int is_refname_available(const char *ref, const char *oldref,
945                                 struct ref_array *array, int quiet)
946 {
947         int i, namlen = strlen(ref); /* e.g. 'foo/bar' */
948         for (i = 0; i < array->nr; i++ ) {
949                 struct ref_entry *entry = array->refs[i];
950                 /* entry->name could be 'foo' or 'foo/bar/baz' */
951                 if (!oldref || strcmp(oldref, entry->name)) {
952                         int len = strlen(entry->name);
953                         int cmplen = (namlen < len) ? namlen : len;
954                         const char *lead = (namlen < len) ? entry->name : ref;
955                         if (!strncmp(ref, entry->name, cmplen) &&
956                             lead[cmplen] == '/') {
957                                 if (!quiet)
958                                         error("'%s' exists; cannot create '%s'",
959                                               entry->name, ref);
960                                 return 0;
961                         }
962                 }
963         }
964         return 1;
965 }
966
967 static struct ref_lock *lock_ref_sha1_basic(const char *ref, const unsigned char *old_sha1, int flags, int *type_p)
968 {
969         char *ref_file;
970         const char *orig_ref = ref;
971         struct ref_lock *lock;
972         int last_errno = 0;
973         int type, lflags;
974         int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
975         int missing = 0;
976
977         lock = xcalloc(1, sizeof(struct ref_lock));
978         lock->lock_fd = -1;
979
980         ref = resolve_ref(ref, lock->old_sha1, mustexist, &type);
981         if (!ref && errno == EISDIR) {
982                 /* we are trying to lock foo but we used to
983                  * have foo/bar which now does not exist;
984                  * it is normal for the empty directory 'foo'
985                  * to remain.
986                  */
987                 ref_file = git_path("%s", orig_ref);
988                 if (remove_empty_directories(ref_file)) {
989                         last_errno = errno;
990                         error("there are still refs under '%s'", orig_ref);
991                         goto error_return;
992                 }
993                 ref = resolve_ref(orig_ref, lock->old_sha1, mustexist, &type);
994         }
995         if (type_p)
996             *type_p = type;
997         if (!ref) {
998                 last_errno = errno;
999                 error("unable to resolve reference %s: %s",
1000                         orig_ref, strerror(errno));
1001                 goto error_return;
1002         }
1003         missing = is_null_sha1(lock->old_sha1);
1004         /* When the ref did not exist and we are creating it,
1005          * make sure there is no existing ref that is packed
1006          * whose name begins with our refname, nor a ref whose
1007          * name is a proper prefix of our refname.
1008          */
1009         if (missing &&
1010              !is_refname_available(ref, NULL, get_packed_refs(NULL), 0)) {
1011                 last_errno = ENOTDIR;
1012                 goto error_return;
1013         }
1014
1015         lock->lk = xcalloc(1, sizeof(struct lock_file));
1016
1017         lflags = LOCK_DIE_ON_ERROR;
1018         if (flags & REF_NODEREF) {
1019                 ref = orig_ref;
1020                 lflags |= LOCK_NODEREF;
1021         }
1022         lock->ref_name = xstrdup(ref);
1023         lock->orig_ref_name = xstrdup(orig_ref);
1024         ref_file = git_path("%s", ref);
1025         if (missing)
1026                 lock->force_write = 1;
1027         if ((flags & REF_NODEREF) && (type & REF_ISSYMREF))
1028                 lock->force_write = 1;
1029
1030         if (safe_create_leading_directories(ref_file)) {
1031                 last_errno = errno;
1032                 error("unable to create directory for %s", ref_file);
1033                 goto error_return;
1034         }
1035
1036         lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, lflags);
1037         return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
1038
1039  error_return:
1040         unlock_ref(lock);
1041         errno = last_errno;
1042         return NULL;
1043 }
1044
1045 struct ref_lock *lock_ref_sha1(const char *ref, const unsigned char *old_sha1)
1046 {
1047         char refpath[PATH_MAX];
1048         if (check_ref_format(ref))
1049                 return NULL;
1050         strcpy(refpath, mkpath("refs/%s", ref));
1051         return lock_ref_sha1_basic(refpath, old_sha1, 0, NULL);
1052 }
1053
1054 struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1, int flags)
1055 {
1056         switch (check_ref_format(ref)) {
1057         default:
1058                 return NULL;
1059         case 0:
1060         case CHECK_REF_FORMAT_ONELEVEL:
1061                 return lock_ref_sha1_basic(ref, old_sha1, flags, NULL);
1062         }
1063 }
1064
1065 static struct lock_file packlock;
1066
1067 static int repack_without_ref(const char *refname)
1068 {
1069         struct ref_array *packed;
1070         struct ref_entry *ref;
1071         int fd, i;
1072
1073         packed = get_packed_refs(NULL);
1074         ref = search_ref_array(packed, refname);
1075         if (ref == NULL)
1076                 return 0;
1077         fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0);
1078         if (fd < 0) {
1079                 unable_to_lock_error(git_path("packed-refs"), errno);
1080                 return error("cannot delete '%s' from packed refs", refname);
1081         }
1082
1083         for (i = 0; i < packed->nr; i++) {
1084                 char line[PATH_MAX + 100];
1085                 int len;
1086
1087                 ref = packed->refs[i];
1088
1089                 if (!strcmp(refname, ref->name))
1090                         continue;
1091                 len = snprintf(line, sizeof(line), "%s %s\n",
1092                                sha1_to_hex(ref->sha1), ref->name);
1093                 /* this should not happen but just being defensive */
1094                 if (len > sizeof(line))
1095                         die("too long a refname '%s'", ref->name);
1096                 write_or_die(fd, line, len);
1097         }
1098         return commit_lock_file(&packlock);
1099 }
1100
1101 int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
1102 {
1103         struct ref_lock *lock;
1104         int err, i = 0, ret = 0, flag = 0;
1105
1106         lock = lock_ref_sha1_basic(refname, sha1, 0, &flag);
1107         if (!lock)
1108                 return 1;
1109         if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
1110                 /* loose */
1111                 const char *path;
1112
1113                 if (!(delopt & REF_NODEREF)) {
1114                         i = strlen(lock->lk->filename) - 5; /* .lock */
1115                         lock->lk->filename[i] = 0;
1116                         path = lock->lk->filename;
1117                 } else {
1118                         path = git_path("%s", refname);
1119                 }
1120                 err = unlink_or_warn(path);
1121                 if (err && errno != ENOENT)
1122                         ret = 1;
1123
1124                 if (!(delopt & REF_NODEREF))
1125                         lock->lk->filename[i] = '.';
1126         }
1127         /* removing the loose one could have resurrected an earlier
1128          * packed one.  Also, if it was not loose we need to repack
1129          * without it.
1130          */
1131         ret |= repack_without_ref(refname);
1132
1133         unlink_or_warn(git_path("logs/%s", lock->ref_name));
1134         invalidate_cached_refs();
1135         unlock_ref(lock);
1136         return ret;
1137 }
1138
1139 /*
1140  * People using contrib's git-new-workdir have .git/logs/refs ->
1141  * /some/other/path/.git/logs/refs, and that may live on another device.
1142  *
1143  * IOW, to avoid cross device rename errors, the temporary renamed log must
1144  * live into logs/refs.
1145  */
1146 #define TMP_RENAMED_LOG  "logs/refs/.tmp-renamed-log"
1147
1148 int rename_ref(const char *oldref, const char *newref, const char *logmsg)
1149 {
1150         static const char renamed_ref[] = "RENAMED-REF";
1151         unsigned char sha1[20], orig_sha1[20];
1152         int flag = 0, logmoved = 0;
1153         struct ref_lock *lock;
1154         struct stat loginfo;
1155         int log = !lstat(git_path("logs/%s", oldref), &loginfo);
1156         const char *symref = NULL;
1157
1158         if (log && S_ISLNK(loginfo.st_mode))
1159                 return error("reflog for %s is a symlink", oldref);
1160
1161         symref = resolve_ref(oldref, orig_sha1, 1, &flag);
1162         if (flag & REF_ISSYMREF)
1163                 return error("refname %s is a symbolic ref, renaming it is not supported",
1164                         oldref);
1165         if (!symref)
1166                 return error("refname %s not found", oldref);
1167
1168         if (!is_refname_available(newref, oldref, get_packed_refs(NULL), 0))
1169                 return 1;
1170
1171         if (!is_refname_available(newref, oldref, get_loose_refs(NULL), 0))
1172                 return 1;
1173
1174         lock = lock_ref_sha1_basic(renamed_ref, NULL, 0, NULL);
1175         if (!lock)
1176                 return error("unable to lock %s", renamed_ref);
1177         lock->force_write = 1;
1178         if (write_ref_sha1(lock, orig_sha1, logmsg))
1179                 return error("unable to save current sha1 in %s", renamed_ref);
1180
1181         if (log && rename(git_path("logs/%s", oldref), git_path(TMP_RENAMED_LOG)))
1182                 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
1183                         oldref, strerror(errno));
1184
1185         if (delete_ref(oldref, orig_sha1, REF_NODEREF)) {
1186                 error("unable to delete old %s", oldref);
1187                 goto rollback;
1188         }
1189
1190         if (resolve_ref(newref, sha1, 1, &flag) && delete_ref(newref, sha1, REF_NODEREF)) {
1191                 if (errno==EISDIR) {
1192                         if (remove_empty_directories(git_path("%s", newref))) {
1193                                 error("Directory not empty: %s", newref);
1194                                 goto rollback;
1195                         }
1196                 } else {
1197                         error("unable to delete existing %s", newref);
1198                         goto rollback;
1199                 }
1200         }
1201
1202         if (log && safe_create_leading_directories(git_path("logs/%s", newref))) {
1203                 error("unable to create directory for %s", newref);
1204                 goto rollback;
1205         }
1206
1207  retry:
1208         if (log && rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newref))) {
1209                 if (errno==EISDIR || errno==ENOTDIR) {
1210                         /*
1211                          * rename(a, b) when b is an existing
1212                          * directory ought to result in ISDIR, but
1213                          * Solaris 5.8 gives ENOTDIR.  Sheesh.
1214                          */
1215                         if (remove_empty_directories(git_path("logs/%s", newref))) {
1216                                 error("Directory not empty: logs/%s", newref);
1217                                 goto rollback;
1218                         }
1219                         goto retry;
1220                 } else {
1221                         error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
1222                                 newref, strerror(errno));
1223                         goto rollback;
1224                 }
1225         }
1226         logmoved = log;
1227
1228         lock = lock_ref_sha1_basic(newref, NULL, 0, NULL);
1229         if (!lock) {
1230                 error("unable to lock %s for update", newref);
1231                 goto rollback;
1232         }
1233         lock->force_write = 1;
1234         hashcpy(lock->old_sha1, orig_sha1);
1235         if (write_ref_sha1(lock, orig_sha1, logmsg)) {
1236                 error("unable to write current sha1 into %s", newref);
1237                 goto rollback;
1238         }
1239
1240         return 0;
1241
1242  rollback:
1243         lock = lock_ref_sha1_basic(oldref, NULL, 0, NULL);
1244         if (!lock) {
1245                 error("unable to lock %s for rollback", oldref);
1246                 goto rollbacklog;
1247         }
1248
1249         lock->force_write = 1;
1250         flag = log_all_ref_updates;
1251         log_all_ref_updates = 0;
1252         if (write_ref_sha1(lock, orig_sha1, NULL))
1253                 error("unable to write current sha1 into %s", oldref);
1254         log_all_ref_updates = flag;
1255
1256  rollbacklog:
1257         if (logmoved && rename(git_path("logs/%s", newref), git_path("logs/%s", oldref)))
1258                 error("unable to restore logfile %s from %s: %s",
1259                         oldref, newref, strerror(errno));
1260         if (!logmoved && log &&
1261             rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldref)))
1262                 error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
1263                         oldref, strerror(errno));
1264
1265         return 1;
1266 }
1267
1268 int close_ref(struct ref_lock *lock)
1269 {
1270         if (close_lock_file(lock->lk))
1271                 return -1;
1272         lock->lock_fd = -1;
1273         return 0;
1274 }
1275
1276 int commit_ref(struct ref_lock *lock)
1277 {
1278         if (commit_lock_file(lock->lk))
1279                 return -1;
1280         lock->lock_fd = -1;
1281         return 0;
1282 }
1283
1284 void unlock_ref(struct ref_lock *lock)
1285 {
1286         /* Do not free lock->lk -- atexit() still looks at them */
1287         if (lock->lk)
1288                 rollback_lock_file(lock->lk);
1289         free(lock->ref_name);
1290         free(lock->orig_ref_name);
1291         free(lock);
1292 }
1293
1294 /*
1295  * copy the reflog message msg to buf, which has been allocated sufficiently
1296  * large, while cleaning up the whitespaces.  Especially, convert LF to space,
1297  * because reflog file is one line per entry.
1298  */
1299 static int copy_msg(char *buf, const char *msg)
1300 {
1301         char *cp = buf;
1302         char c;
1303         int wasspace = 1;
1304
1305         *cp++ = '\t';
1306         while ((c = *msg++)) {
1307                 if (wasspace && isspace(c))
1308                         continue;
1309                 wasspace = isspace(c);
1310                 if (wasspace)
1311                         c = ' ';
1312                 *cp++ = c;
1313         }
1314         while (buf < cp && isspace(cp[-1]))
1315                 cp--;
1316         *cp++ = '\n';
1317         return cp - buf;
1318 }
1319
1320 int log_ref_setup(const char *ref_name, char *logfile, int bufsize)
1321 {
1322         int logfd, oflags = O_APPEND | O_WRONLY;
1323
1324         git_snpath(logfile, bufsize, "logs/%s", ref_name);
1325         if (log_all_ref_updates &&
1326             (!prefixcmp(ref_name, "refs/heads/") ||
1327              !prefixcmp(ref_name, "refs/remotes/") ||
1328              !prefixcmp(ref_name, "refs/notes/") ||
1329              !strcmp(ref_name, "HEAD"))) {
1330                 if (safe_create_leading_directories(logfile) < 0)
1331                         return error("unable to create directory for %s",
1332                                      logfile);
1333                 oflags |= O_CREAT;
1334         }
1335
1336         logfd = open(logfile, oflags, 0666);
1337         if (logfd < 0) {
1338                 if (!(oflags & O_CREAT) && errno == ENOENT)
1339                         return 0;
1340
1341                 if ((oflags & O_CREAT) && errno == EISDIR) {
1342                         if (remove_empty_directories(logfile)) {
1343                                 return error("There are still logs under '%s'",
1344                                              logfile);
1345                         }
1346                         logfd = open(logfile, oflags, 0666);
1347                 }
1348
1349                 if (logfd < 0)
1350                         return error("Unable to append to %s: %s",
1351                                      logfile, strerror(errno));
1352         }
1353
1354         adjust_shared_perm(logfile);
1355         close(logfd);
1356         return 0;
1357 }
1358
1359 static int log_ref_write(const char *ref_name, const unsigned char *old_sha1,
1360                          const unsigned char *new_sha1, const char *msg)
1361 {
1362         int logfd, result, written, oflags = O_APPEND | O_WRONLY;
1363         unsigned maxlen, len;
1364         int msglen;
1365         char log_file[PATH_MAX];
1366         char *logrec;
1367         const char *committer;
1368
1369         if (log_all_ref_updates < 0)
1370                 log_all_ref_updates = !is_bare_repository();
1371
1372         result = log_ref_setup(ref_name, log_file, sizeof(log_file));
1373         if (result)
1374                 return result;
1375
1376         logfd = open(log_file, oflags);
1377         if (logfd < 0)
1378                 return 0;
1379         msglen = msg ? strlen(msg) : 0;
1380         committer = git_committer_info(0);
1381         maxlen = strlen(committer) + msglen + 100;
1382         logrec = xmalloc(maxlen);
1383         len = sprintf(logrec, "%s %s %s\n",
1384                       sha1_to_hex(old_sha1),
1385                       sha1_to_hex(new_sha1),
1386                       committer);
1387         if (msglen)
1388                 len += copy_msg(logrec + len - 1, msg) - 1;
1389         written = len <= maxlen ? write_in_full(logfd, logrec, len) : -1;
1390         free(logrec);
1391         if (close(logfd) != 0 || written != len)
1392                 return error("Unable to append to %s", log_file);
1393         return 0;
1394 }
1395
1396 static int is_branch(const char *refname)
1397 {
1398         return !strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/");
1399 }
1400
1401 int write_ref_sha1(struct ref_lock *lock,
1402         const unsigned char *sha1, const char *logmsg)
1403 {
1404         static char term = '\n';
1405         struct object *o;
1406
1407         if (!lock)
1408                 return -1;
1409         if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
1410                 unlock_ref(lock);
1411                 return 0;
1412         }
1413         o = parse_object(sha1);
1414         if (!o) {
1415                 error("Trying to write ref %s with nonexistant object %s",
1416                         lock->ref_name, sha1_to_hex(sha1));
1417                 unlock_ref(lock);
1418                 return -1;
1419         }
1420         if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
1421                 error("Trying to write non-commit object %s to branch %s",
1422                         sha1_to_hex(sha1), lock->ref_name);
1423                 unlock_ref(lock);
1424                 return -1;
1425         }
1426         if (write_in_full(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
1427             write_in_full(lock->lock_fd, &term, 1) != 1
1428                 || close_ref(lock) < 0) {
1429                 error("Couldn't write %s", lock->lk->filename);
1430                 unlock_ref(lock);
1431                 return -1;
1432         }
1433         invalidate_cached_refs();
1434         if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
1435             (strcmp(lock->ref_name, lock->orig_ref_name) &&
1436              log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
1437                 unlock_ref(lock);
1438                 return -1;
1439         }
1440         if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
1441                 /*
1442                  * Special hack: If a branch is updated directly and HEAD
1443                  * points to it (may happen on the remote side of a push
1444                  * for example) then logically the HEAD reflog should be
1445                  * updated too.
1446                  * A generic solution implies reverse symref information,
1447                  * but finding all symrefs pointing to the given branch
1448                  * would be rather costly for this rare event (the direct
1449                  * update of a branch) to be worth it.  So let's cheat and
1450                  * check with HEAD only which should cover 99% of all usage
1451                  * scenarios (even 100% of the default ones).
1452                  */
1453                 unsigned char head_sha1[20];
1454                 int head_flag;
1455                 const char *head_ref;
1456                 head_ref = resolve_ref("HEAD", head_sha1, 1, &head_flag);
1457                 if (head_ref && (head_flag & REF_ISSYMREF) &&
1458                     !strcmp(head_ref, lock->ref_name))
1459                         log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);
1460         }
1461         if (commit_ref(lock)) {
1462                 error("Couldn't set %s", lock->ref_name);
1463                 unlock_ref(lock);
1464                 return -1;
1465         }
1466         unlock_ref(lock);
1467         return 0;
1468 }
1469
1470 int create_symref(const char *ref_target, const char *refs_heads_master,
1471                   const char *logmsg)
1472 {
1473         const char *lockpath;
1474         char ref[1000];
1475         int fd, len, written;
1476         char *git_HEAD = git_pathdup("%s", ref_target);
1477         unsigned char old_sha1[20], new_sha1[20];
1478
1479         if (logmsg && read_ref(ref_target, old_sha1))
1480                 hashclr(old_sha1);
1481
1482         if (safe_create_leading_directories(git_HEAD) < 0)
1483                 return error("unable to create directory for %s", git_HEAD);
1484
1485 #ifndef NO_SYMLINK_HEAD
1486         if (prefer_symlink_refs) {
1487                 unlink(git_HEAD);
1488                 if (!symlink(refs_heads_master, git_HEAD))
1489                         goto done;
1490                 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
1491         }
1492 #endif
1493
1494         len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
1495         if (sizeof(ref) <= len) {
1496                 error("refname too long: %s", refs_heads_master);
1497                 goto error_free_return;
1498         }
1499         lockpath = mkpath("%s.lock", git_HEAD);
1500         fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
1501         if (fd < 0) {
1502                 error("Unable to open %s for writing", lockpath);
1503                 goto error_free_return;
1504         }
1505         written = write_in_full(fd, ref, len);
1506         if (close(fd) != 0 || written != len) {
1507                 error("Unable to write to %s", lockpath);
1508                 goto error_unlink_return;
1509         }
1510         if (rename(lockpath, git_HEAD) < 0) {
1511                 error("Unable to create %s", git_HEAD);
1512                 goto error_unlink_return;
1513         }
1514         if (adjust_shared_perm(git_HEAD)) {
1515                 error("Unable to fix permissions on %s", lockpath);
1516         error_unlink_return:
1517                 unlink_or_warn(lockpath);
1518         error_free_return:
1519                 free(git_HEAD);
1520                 return -1;
1521         }
1522
1523 #ifndef NO_SYMLINK_HEAD
1524         done:
1525 #endif
1526         if (logmsg && !read_ref(refs_heads_master, new_sha1))
1527                 log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
1528
1529         free(git_HEAD);
1530         return 0;
1531 }
1532
1533 static char *ref_msg(const char *line, const char *endp)
1534 {
1535         const char *ep;
1536         line += 82;
1537         ep = memchr(line, '\n', endp - line);
1538         if (!ep)
1539                 ep = endp;
1540         return xmemdupz(line, ep - line);
1541 }
1542
1543 int read_ref_at(const char *ref, unsigned long at_time, int cnt, unsigned char *sha1, char **msg, unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
1544 {
1545         const char *logfile, *logdata, *logend, *rec, *lastgt, *lastrec;
1546         char *tz_c;
1547         int logfd, tz, reccnt = 0;
1548         struct stat st;
1549         unsigned long date;
1550         unsigned char logged_sha1[20];
1551         void *log_mapped;
1552         size_t mapsz;
1553
1554         logfile = git_path("logs/%s", ref);
1555         logfd = open(logfile, O_RDONLY, 0);
1556         if (logfd < 0)
1557                 die_errno("Unable to read log '%s'", logfile);
1558         fstat(logfd, &st);
1559         if (!st.st_size)
1560                 die("Log %s is empty.", logfile);
1561         mapsz = xsize_t(st.st_size);
1562         log_mapped = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, logfd, 0);
1563         logdata = log_mapped;
1564         close(logfd);
1565
1566         lastrec = NULL;
1567         rec = logend = logdata + st.st_size;
1568         while (logdata < rec) {
1569                 reccnt++;
1570                 if (logdata < rec && *(rec-1) == '\n')
1571                         rec--;
1572                 lastgt = NULL;
1573                 while (logdata < rec && *(rec-1) != '\n') {
1574                         rec--;
1575                         if (*rec == '>')
1576                                 lastgt = rec;
1577                 }
1578                 if (!lastgt)
1579                         die("Log %s is corrupt.", logfile);
1580                 date = strtoul(lastgt + 1, &tz_c, 10);
1581                 if (date <= at_time || cnt == 0) {
1582                         tz = strtoul(tz_c, NULL, 10);
1583                         if (msg)
1584                                 *msg = ref_msg(rec, logend);
1585                         if (cutoff_time)
1586                                 *cutoff_time = date;
1587                         if (cutoff_tz)
1588                                 *cutoff_tz = tz;
1589                         if (cutoff_cnt)
1590                                 *cutoff_cnt = reccnt - 1;
1591                         if (lastrec) {
1592                                 if (get_sha1_hex(lastrec, logged_sha1))
1593                                         die("Log %s is corrupt.", logfile);
1594                                 if (get_sha1_hex(rec + 41, sha1))
1595                                         die("Log %s is corrupt.", logfile);
1596                                 if (hashcmp(logged_sha1, sha1)) {
1597                                         warning("Log %s has gap after %s.",
1598                                                 logfile, show_date(date, tz, DATE_RFC2822));
1599                                 }
1600                         }
1601                         else if (date == at_time) {
1602                                 if (get_sha1_hex(rec + 41, sha1))
1603                                         die("Log %s is corrupt.", logfile);
1604                         }
1605                         else {
1606                                 if (get_sha1_hex(rec + 41, logged_sha1))
1607                                         die("Log %s is corrupt.", logfile);
1608                                 if (hashcmp(logged_sha1, sha1)) {
1609                                         warning("Log %s unexpectedly ended on %s.",
1610                                                 logfile, show_date(date, tz, DATE_RFC2822));
1611                                 }
1612                         }
1613                         munmap(log_mapped, mapsz);
1614                         return 0;
1615                 }
1616                 lastrec = rec;
1617                 if (cnt > 0)
1618                         cnt--;
1619         }
1620
1621         rec = logdata;
1622         while (rec < logend && *rec != '>' && *rec != '\n')
1623                 rec++;
1624         if (rec == logend || *rec == '\n')
1625                 die("Log %s is corrupt.", logfile);
1626         date = strtoul(rec + 1, &tz_c, 10);
1627         tz = strtoul(tz_c, NULL, 10);
1628         if (get_sha1_hex(logdata, sha1))
1629                 die("Log %s is corrupt.", logfile);
1630         if (is_null_sha1(sha1)) {
1631                 if (get_sha1_hex(logdata + 41, sha1))
1632                         die("Log %s is corrupt.", logfile);
1633         }
1634         if (msg)
1635                 *msg = ref_msg(logdata, logend);
1636         munmap(log_mapped, mapsz);
1637
1638         if (cutoff_time)
1639                 *cutoff_time = date;
1640         if (cutoff_tz)
1641                 *cutoff_tz = tz;
1642         if (cutoff_cnt)
1643                 *cutoff_cnt = reccnt;
1644         return 1;
1645 }
1646
1647 int for_each_recent_reflog_ent(const char *ref, each_reflog_ent_fn fn, long ofs, void *cb_data)
1648 {
1649         const char *logfile;
1650         FILE *logfp;
1651         struct strbuf sb = STRBUF_INIT;
1652         int ret = 0;
1653
1654         logfile = git_path("logs/%s", ref);
1655         logfp = fopen(logfile, "r");
1656         if (!logfp)
1657                 return -1;
1658
1659         if (ofs) {
1660                 struct stat statbuf;
1661                 if (fstat(fileno(logfp), &statbuf) ||
1662                     statbuf.st_size < ofs ||
1663                     fseek(logfp, -ofs, SEEK_END) ||
1664                     strbuf_getwholeline(&sb, logfp, '\n')) {
1665                         fclose(logfp);
1666                         strbuf_release(&sb);
1667                         return -1;
1668                 }
1669         }
1670
1671         while (!strbuf_getwholeline(&sb, logfp, '\n')) {
1672                 unsigned char osha1[20], nsha1[20];
1673                 char *email_end, *message;
1674                 unsigned long timestamp;
1675                 int tz;
1676
1677                 /* old SP new SP name <email> SP time TAB msg LF */
1678                 if (sb.len < 83 || sb.buf[sb.len - 1] != '\n' ||
1679                     get_sha1_hex(sb.buf, osha1) || sb.buf[40] != ' ' ||
1680                     get_sha1_hex(sb.buf + 41, nsha1) || sb.buf[81] != ' ' ||
1681                     !(email_end = strchr(sb.buf + 82, '>')) ||
1682                     email_end[1] != ' ' ||
1683                     !(timestamp = strtoul(email_end + 2, &message, 10)) ||
1684                     !message || message[0] != ' ' ||
1685                     (message[1] != '+' && message[1] != '-') ||
1686                     !isdigit(message[2]) || !isdigit(message[3]) ||
1687                     !isdigit(message[4]) || !isdigit(message[5]))
1688                         continue; /* corrupt? */
1689                 email_end[1] = '\0';
1690                 tz = strtol(message + 1, NULL, 10);
1691                 if (message[6] != '\t')
1692                         message += 6;
1693                 else
1694                         message += 7;
1695                 ret = fn(osha1, nsha1, sb.buf + 82, timestamp, tz, message,
1696                          cb_data);
1697                 if (ret)
1698                         break;
1699         }
1700         fclose(logfp);
1701         strbuf_release(&sb);
1702         return ret;
1703 }
1704
1705 int for_each_reflog_ent(const char *ref, each_reflog_ent_fn fn, void *cb_data)
1706 {
1707         return for_each_recent_reflog_ent(ref, fn, 0, cb_data);
1708 }
1709
1710 static int do_for_each_reflog(const char *base, each_ref_fn fn, void *cb_data)
1711 {
1712         DIR *dir = opendir(git_path("logs/%s", base));
1713         int retval = 0;
1714
1715         if (dir) {
1716                 struct dirent *de;
1717                 int baselen = strlen(base);
1718                 char *log = xmalloc(baselen + 257);
1719
1720                 memcpy(log, base, baselen);
1721                 if (baselen && base[baselen-1] != '/')
1722                         log[baselen++] = '/';
1723
1724                 while ((de = readdir(dir)) != NULL) {
1725                         struct stat st;
1726                         int namelen;
1727
1728                         if (de->d_name[0] == '.')
1729                                 continue;
1730                         namelen = strlen(de->d_name);
1731                         if (namelen > 255)
1732                                 continue;
1733                         if (has_extension(de->d_name, ".lock"))
1734                                 continue;
1735                         memcpy(log + baselen, de->d_name, namelen+1);
1736                         if (stat(git_path("logs/%s", log), &st) < 0)
1737                                 continue;
1738                         if (S_ISDIR(st.st_mode)) {
1739                                 retval = do_for_each_reflog(log, fn, cb_data);
1740                         } else {
1741                                 unsigned char sha1[20];
1742                                 if (!resolve_ref(log, sha1, 0, NULL))
1743                                         retval = error("bad ref for %s", log);
1744                                 else
1745                                         retval = fn(log, sha1, 0, cb_data);
1746                         }
1747                         if (retval)
1748                                 break;
1749                 }
1750                 free(log);
1751                 closedir(dir);
1752         }
1753         else if (*base)
1754                 return errno;
1755         return retval;
1756 }
1757
1758 int for_each_reflog(each_ref_fn fn, void *cb_data)
1759 {
1760         return do_for_each_reflog("", fn, cb_data);
1761 }
1762
1763 int update_ref(const char *action, const char *refname,
1764                 const unsigned char *sha1, const unsigned char *oldval,
1765                 int flags, enum action_on_err onerr)
1766 {
1767         static struct ref_lock *lock;
1768         lock = lock_any_ref_for_update(refname, oldval, flags);
1769         if (!lock) {
1770                 const char *str = "Cannot lock the ref '%s'.";
1771                 switch (onerr) {
1772                 case MSG_ON_ERR: error(str, refname); break;
1773                 case DIE_ON_ERR: die(str, refname); break;
1774                 case QUIET_ON_ERR: break;
1775                 }
1776                 return 1;
1777         }
1778         if (write_ref_sha1(lock, sha1, action) < 0) {
1779                 const char *str = "Cannot update the ref '%s'.";
1780                 switch (onerr) {
1781                 case MSG_ON_ERR: error(str, refname); break;
1782                 case DIE_ON_ERR: die(str, refname); break;
1783                 case QUIET_ON_ERR: break;
1784                 }
1785                 return 1;
1786         }
1787         return 0;
1788 }
1789
1790 struct ref *find_ref_by_name(const struct ref *list, const char *name)
1791 {
1792         for ( ; list; list = list->next)
1793                 if (!strcmp(list->name, name))
1794                         return (struct ref *)list;
1795         return NULL;
1796 }
1797
1798 /*
1799  * generate a format suitable for scanf from a ref_rev_parse_rules
1800  * rule, that is replace the "%.*s" spec with a "%s" spec
1801  */
1802 static void gen_scanf_fmt(char *scanf_fmt, const char *rule)
1803 {
1804         char *spec;
1805
1806         spec = strstr(rule, "%.*s");
1807         if (!spec || strstr(spec + 4, "%.*s"))
1808                 die("invalid rule in ref_rev_parse_rules: %s", rule);
1809
1810         /* copy all until spec */
1811         strncpy(scanf_fmt, rule, spec - rule);
1812         scanf_fmt[spec - rule] = '\0';
1813         /* copy new spec */
1814         strcat(scanf_fmt, "%s");
1815         /* copy remaining rule */
1816         strcat(scanf_fmt, spec + 4);
1817
1818         return;
1819 }
1820
1821 char *shorten_unambiguous_ref(const char *ref, int strict)
1822 {
1823         int i;
1824         static char **scanf_fmts;
1825         static int nr_rules;
1826         char *short_name;
1827
1828         /* pre generate scanf formats from ref_rev_parse_rules[] */
1829         if (!nr_rules) {
1830                 size_t total_len = 0;
1831
1832                 /* the rule list is NULL terminated, count them first */
1833                 for (; ref_rev_parse_rules[nr_rules]; nr_rules++)
1834                         /* no +1 because strlen("%s") < strlen("%.*s") */
1835                         total_len += strlen(ref_rev_parse_rules[nr_rules]);
1836
1837                 scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
1838
1839                 total_len = 0;
1840                 for (i = 0; i < nr_rules; i++) {
1841                         scanf_fmts[i] = (char *)&scanf_fmts[nr_rules]
1842                                         + total_len;
1843                         gen_scanf_fmt(scanf_fmts[i], ref_rev_parse_rules[i]);
1844                         total_len += strlen(ref_rev_parse_rules[i]);
1845                 }
1846         }
1847
1848         /* bail out if there are no rules */
1849         if (!nr_rules)
1850                 return xstrdup(ref);
1851
1852         /* buffer for scanf result, at most ref must fit */
1853         short_name = xstrdup(ref);
1854
1855         /* skip first rule, it will always match */
1856         for (i = nr_rules - 1; i > 0 ; --i) {
1857                 int j;
1858                 int rules_to_fail = i;
1859                 int short_name_len;
1860
1861                 if (1 != sscanf(ref, scanf_fmts[i], short_name))
1862                         continue;
1863
1864                 short_name_len = strlen(short_name);
1865
1866                 /*
1867                  * in strict mode, all (except the matched one) rules
1868                  * must fail to resolve to a valid non-ambiguous ref
1869                  */
1870                 if (strict)
1871                         rules_to_fail = nr_rules;
1872
1873                 /*
1874                  * check if the short name resolves to a valid ref,
1875                  * but use only rules prior to the matched one
1876                  */
1877                 for (j = 0; j < rules_to_fail; j++) {
1878                         const char *rule = ref_rev_parse_rules[j];
1879                         unsigned char short_objectname[20];
1880                         char refname[PATH_MAX];
1881
1882                         /* skip matched rule */
1883                         if (i == j)
1884                                 continue;
1885
1886                         /*
1887                          * the short name is ambiguous, if it resolves
1888                          * (with this previous rule) to a valid ref
1889                          * read_ref() returns 0 on success
1890                          */
1891                         mksnpath(refname, sizeof(refname),
1892                                  rule, short_name_len, short_name);
1893                         if (!read_ref(refname, short_objectname))
1894                                 break;
1895                 }
1896
1897                 /*
1898                  * short name is non-ambiguous if all previous rules
1899                  * haven't resolved to a valid ref
1900                  */
1901                 if (j == rules_to_fail)
1902                         return short_name;
1903         }
1904
1905         free(short_name);
1906         return xstrdup(ref);
1907 }