8 * Make sure "ref" is something reasonable to have under ".git/refs/";
9 * We do not like it if:
11 * - any path component of it begins with ".", or
12 * - it has double dots "..", or
13 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
14 * - it ends with a "/".
15 * - it ends with ".lock"
16 * - it contains a "\" (backslash)
19 /* Return true iff ch is not allowed in reference names. */
20 static inline int bad_ref_char(int ch
)
22 if (((unsigned) ch
) <= ' ' || ch
== 0x7f ||
23 ch
== '~' || ch
== '^' || ch
== ':' || ch
== '\\')
25 /* 2.13 Pattern Matching Notation */
26 if (ch
== '*' || ch
== '?' || ch
== '[') /* Unsupported */
32 * Try to read one refname component from the front of refname. Return
33 * the length of the component found, or -1 if the component is not
36 static int check_refname_component(const char *refname
, int flags
)
41 for (cp
= refname
; ; cp
++) {
43 if (ch
== '\0' || ch
== '/')
46 return -1; /* Illegal character in refname. */
47 if (last
== '.' && ch
== '.')
48 return -1; /* Refname contains "..". */
49 if (last
== '@' && ch
== '{')
50 return -1; /* Refname contains "@{". */
54 return -1; /* Component has zero length. */
55 if (refname
[0] == '.') {
56 if (!(flags
& REFNAME_DOT_COMPONENT
))
57 return -1; /* Component starts with '.'. */
59 * Even if leading dots are allowed, don't allow "."
60 * as a component (".." is prevented by a rule above).
62 if (refname
[1] == '\0')
63 return -1; /* Component equals ".". */
65 if (cp
- refname
>= 5 && !memcmp(cp
- 5, ".lock", 5))
66 return -1; /* Refname ends with ".lock". */
70 int check_refname_format(const char *refname
, int flags
)
72 int component_len
, component_count
= 0;
75 /* We are at the start of a path component. */
76 component_len
= check_refname_component(refname
, flags
);
77 if (component_len
< 0) {
78 if ((flags
& REFNAME_REFSPEC_PATTERN
) &&
80 (refname
[1] == '\0' || refname
[1] == '/')) {
81 /* Accept one wildcard as a full refname component. */
82 flags
&= ~REFNAME_REFSPEC_PATTERN
;
89 if (refname
[component_len
] == '\0')
91 /* Skip to next component. */
92 refname
+= component_len
+ 1;
95 if (refname
[component_len
- 1] == '.')
96 return -1; /* Refname ends with '.'. */
97 if (!(flags
& REFNAME_ALLOW_ONELEVEL
) && component_count
< 2)
98 return -1; /* Refname has only one component. */
108 * Entries with index 0 <= i < sorted are sorted by name. New
109 * entries are appended to the list unsorted, and are sorted
110 * only when required; thus we avoid the need to sort the list
111 * after the addition of every reference.
115 struct ref_entry
**refs
;
118 /* ISSYMREF=0x01, ISPACKED=0x02 and ISBROKEN=0x04 are public interfaces */
119 #define REF_KNOWS_PEELED 0x10
122 unsigned char flag
; /* ISSYMREF? ISPACKED? */
123 unsigned char sha1
[20];
124 unsigned char peeled
[20];
125 /* The full name of the reference (e.g., "refs/heads/master"): */
126 char name
[FLEX_ARRAY
];
129 static struct ref_entry
*create_ref_entry(const char *refname
,
130 const unsigned char *sha1
, int flag
,
134 struct ref_entry
*ref
;
137 check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
|REFNAME_DOT_COMPONENT
))
138 die("Reference has invalid format: '%s'", refname
);
139 len
= strlen(refname
) + 1;
140 ref
= xmalloc(sizeof(struct ref_entry
) + len
);
141 hashcpy(ref
->sha1
, sha1
);
142 hashclr(ref
->peeled
);
143 memcpy(ref
->name
, refname
, len
);
148 /* Add a ref_entry to the end of the ref_array (unsorted). */
149 static void add_ref(struct ref_array
*refs
, struct ref_entry
*ref
)
151 ALLOC_GROW(refs
->refs
, refs
->nr
+ 1, refs
->alloc
);
152 refs
->refs
[refs
->nr
++] = ref
;
155 static void clear_ref_array(struct ref_array
*array
)
158 for (i
= 0; i
< array
->nr
; i
++)
159 free(array
->refs
[i
]);
161 array
->sorted
= array
->nr
= array
->alloc
= 0;
165 static int ref_entry_cmp(const void *a
, const void *b
)
167 struct ref_entry
*one
= *(struct ref_entry
**)a
;
168 struct ref_entry
*two
= *(struct ref_entry
**)b
;
169 return strcmp(one
->name
, two
->name
);
172 static void sort_ref_array(struct ref_array
*array
);
174 static struct ref_entry
*search_ref_array(struct ref_array
*array
, const char *refname
)
176 struct ref_entry
*e
, **r
;
184 sort_ref_array(array
);
185 len
= strlen(refname
) + 1;
186 e
= xmalloc(sizeof(struct ref_entry
) + len
);
187 memcpy(e
->name
, refname
, len
);
189 r
= bsearch(&e
, array
->refs
, array
->nr
, sizeof(*array
->refs
), ref_entry_cmp
);
200 * Emit a warning and return true iff ref1 and ref2 have the same name
201 * and the same sha1. Die if they have the same name but different
204 static int is_dup_ref(const struct ref_entry
*ref1
, const struct ref_entry
*ref2
)
206 if (!strcmp(ref1
->name
, ref2
->name
)) {
207 /* Duplicate name; make sure that the SHA1s match: */
208 if (hashcmp(ref1
->sha1
, ref2
->sha1
))
209 die("Duplicated ref, and SHA1s don't match: %s",
211 warning("Duplicated ref: %s", ref1
->name
);
219 * Sort the entries in array (if they are not already sorted).
221 static void sort_ref_array(struct ref_array
*array
)
226 * This check also prevents passing a zero-length array to qsort(),
227 * which is a problem on some platforms.
229 if (array
->sorted
== array
->nr
)
232 qsort(array
->refs
, array
->nr
, sizeof(*array
->refs
), ref_entry_cmp
);
234 /* Remove any duplicates from the ref_array */
236 for (j
= 1; j
< array
->nr
; j
++) {
237 if (is_dup_ref(array
->refs
[i
], array
->refs
[j
])) {
238 free(array
->refs
[j
]);
241 array
->refs
[++i
] = array
->refs
[j
];
243 array
->sorted
= array
->nr
= i
+ 1;
246 #define DO_FOR_EACH_INCLUDE_BROKEN 01
248 static struct ref_entry
*current_ref
;
250 static int do_one_ref(const char *base
, each_ref_fn fn
, int trim
,
251 int flags
, void *cb_data
, struct ref_entry
*entry
)
254 if (prefixcmp(entry
->name
, base
))
257 if (!(flags
& DO_FOR_EACH_INCLUDE_BROKEN
)) {
258 if (entry
->flag
& REF_ISBROKEN
)
259 return 0; /* ignore broken refs e.g. dangling symref */
260 if (!has_sha1_file(entry
->sha1
)) {
261 error("%s does not point to a valid object!", entry
->name
);
266 retval
= fn(entry
->name
+ trim
, entry
->sha1
, entry
->flag
, cb_data
);
272 * Call fn for each reference in array that has index in the range
273 * offset <= index < array->nr. This function does not sort the
274 * array; sorting should be done by the caller.
276 static int do_for_each_ref_in_array(struct ref_array
*array
, int offset
,
278 each_ref_fn fn
, int trim
, int flags
, void *cb_data
)
281 assert(array
->sorted
== array
->nr
);
282 for (i
= offset
; i
< array
->nr
; i
++) {
283 int retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, array
->refs
[i
]);
291 * Return true iff a reference named refname could be created without
292 * conflicting with the name of an existing reference. If oldrefname
293 * is non-NULL, ignore potential conflicts with oldrefname (e.g.,
294 * because oldrefname is scheduled for deletion in the same
297 static int is_refname_available(const char *refname
, const char *oldrefname
,
298 struct ref_array
*array
)
300 int i
, namlen
= strlen(refname
); /* e.g. 'foo/bar' */
301 for (i
= 0; i
< array
->nr
; i
++) {
302 struct ref_entry
*entry
= array
->refs
[i
];
303 /* entry->name could be 'foo' or 'foo/bar/baz' */
304 if (!oldrefname
|| strcmp(oldrefname
, entry
->name
)) {
305 int len
= strlen(entry
->name
);
306 int cmplen
= (namlen
< len
) ? namlen
: len
;
307 const char *lead
= (namlen
< len
) ? entry
->name
: refname
;
308 if (!strncmp(refname
, entry
->name
, cmplen
) &&
309 lead
[cmplen
] == '/') {
310 error("'%s' exists; cannot create '%s'",
311 entry
->name
, refname
);
320 * Future: need to be in "struct repository"
321 * when doing a full libification.
323 static struct ref_cache
{
324 struct ref_cache
*next
;
327 struct ref_array loose
;
328 struct ref_array packed
;
329 /* The submodule name, or "" for the main repo. */
330 char name
[FLEX_ARRAY
];
333 static void clear_packed_ref_cache(struct ref_cache
*refs
)
335 if (refs
->did_packed
)
336 clear_ref_array(&refs
->packed
);
337 refs
->did_packed
= 0;
340 static void clear_loose_ref_cache(struct ref_cache
*refs
)
343 clear_ref_array(&refs
->loose
);
347 static struct ref_cache
*create_ref_cache(const char *submodule
)
350 struct ref_cache
*refs
;
353 len
= strlen(submodule
) + 1;
354 refs
= xcalloc(1, sizeof(struct ref_cache
) + len
);
355 memcpy(refs
->name
, submodule
, len
);
360 * Return a pointer to a ref_cache for the specified submodule. For
361 * the main repository, use submodule==NULL. The returned structure
362 * will be allocated and initialized but not necessarily populated; it
363 * should not be freed.
365 static struct ref_cache
*get_ref_cache(const char *submodule
)
367 struct ref_cache
*refs
= ref_cache
;
371 if (!strcmp(submodule
, refs
->name
))
376 refs
= create_ref_cache(submodule
);
377 refs
->next
= ref_cache
;
382 void invalidate_ref_cache(const char *submodule
)
384 struct ref_cache
*refs
= get_ref_cache(submodule
);
385 clear_packed_ref_cache(refs
);
386 clear_loose_ref_cache(refs
);
390 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
391 * Return a pointer to the refname within the line (null-terminated),
392 * or NULL if there was a problem.
394 static const char *parse_ref_line(char *line
, unsigned char *sha1
)
397 * 42: the answer to everything.
399 * In this case, it happens to be the answer to
400 * 40 (length of sha1 hex representation)
401 * +1 (space in between hex and name)
402 * +1 (newline at the end of the line)
404 int len
= strlen(line
) - 42;
408 if (get_sha1_hex(line
, sha1
) < 0)
410 if (!isspace(line
[40]))
415 if (line
[len
] != '\n')
422 static void read_packed_refs(FILE *f
, struct ref_array
*array
)
424 struct ref_entry
*last
= NULL
;
425 char refline
[PATH_MAX
];
426 int flag
= REF_ISPACKED
;
428 while (fgets(refline
, sizeof(refline
), f
)) {
429 unsigned char sha1
[20];
431 static const char header
[] = "# pack-refs with:";
433 if (!strncmp(refline
, header
, sizeof(header
)-1)) {
434 const char *traits
= refline
+ sizeof(header
) - 1;
435 if (strstr(traits
, " peeled "))
436 flag
|= REF_KNOWS_PEELED
;
437 /* perhaps other traits later as well */
441 refname
= parse_ref_line(refline
, sha1
);
443 last
= create_ref_entry(refname
, sha1
, flag
, 1);
444 add_ref(array
, last
);
449 strlen(refline
) == 42 &&
450 refline
[41] == '\n' &&
451 !get_sha1_hex(refline
+ 1, sha1
))
452 hashcpy(last
->peeled
, sha1
);
456 static struct ref_array
*get_packed_refs(struct ref_cache
*refs
)
458 if (!refs
->did_packed
) {
459 const char *packed_refs_file
;
463 packed_refs_file
= git_path_submodule(refs
->name
, "packed-refs");
465 packed_refs_file
= git_path("packed-refs");
466 f
= fopen(packed_refs_file
, "r");
468 read_packed_refs(f
, &refs
->packed
);
471 refs
->did_packed
= 1;
473 return &refs
->packed
;
476 void add_packed_ref(const char *refname
, const unsigned char *sha1
)
478 add_ref(get_packed_refs(get_ref_cache(NULL
)),
479 create_ref_entry(refname
, sha1
, REF_ISPACKED
, 1));
482 static void get_ref_dir(struct ref_cache
*refs
, const char *base
,
483 struct ref_array
*array
)
489 path
= git_path_submodule(refs
->name
, "%s", base
);
491 path
= git_path("%s", base
);
497 int baselen
= strlen(base
);
498 char *refname
= xmalloc(baselen
+ 257);
500 memcpy(refname
, base
, baselen
);
501 if (baselen
&& base
[baselen
-1] != '/')
502 refname
[baselen
++] = '/';
504 while ((de
= readdir(dir
)) != NULL
) {
505 unsigned char sha1
[20];
511 if (de
->d_name
[0] == '.')
513 namelen
= strlen(de
->d_name
);
516 if (has_extension(de
->d_name
, ".lock"))
518 memcpy(refname
+ baselen
, de
->d_name
, namelen
+1);
520 ? git_path_submodule(refs
->name
, "%s", refname
)
521 : git_path("%s", refname
);
522 if (stat(refdir
, &st
) < 0)
524 if (S_ISDIR(st
.st_mode
)) {
525 get_ref_dir(refs
, refname
, array
);
531 if (resolve_gitlink_ref(refs
->name
, refname
, sha1
) < 0) {
533 flag
|= REF_ISBROKEN
;
535 } else if (read_ref_full(refname
, sha1
, 1, &flag
)) {
537 flag
|= REF_ISBROKEN
;
539 add_ref(array
, create_ref_entry(refname
, sha1
, flag
, 1));
546 static struct ref_array
*get_loose_refs(struct ref_cache
*refs
)
548 if (!refs
->did_loose
) {
549 get_ref_dir(refs
, "refs", &refs
->loose
);
555 /* We allow "recursive" symbolic refs. Only within reason, though */
557 #define MAXREFLEN (1024)
560 * Called by resolve_gitlink_ref_recursive() after it failed to read
561 * from the loose refs in ref_cache refs. Find <refname> in the
562 * packed-refs file for the submodule.
564 static int resolve_gitlink_packed_ref(struct ref_cache
*refs
,
565 const char *refname
, unsigned char *sha1
)
567 struct ref_entry
*ref
;
568 struct ref_array
*array
= get_packed_refs(refs
);
570 ref
= search_ref_array(array
, refname
);
574 memcpy(sha1
, ref
->sha1
, 20);
578 static int resolve_gitlink_ref_recursive(struct ref_cache
*refs
,
579 const char *refname
, unsigned char *sha1
,
583 char buffer
[128], *p
;
586 if (recursion
> MAXDEPTH
|| strlen(refname
) > MAXREFLEN
)
589 ? git_path_submodule(refs
->name
, "%s", refname
)
590 : git_path("%s", refname
);
591 fd
= open(path
, O_RDONLY
);
593 return resolve_gitlink_packed_ref(refs
, refname
, sha1
);
595 len
= read(fd
, buffer
, sizeof(buffer
)-1);
599 while (len
&& isspace(buffer
[len
-1]))
603 /* Was it a detached head or an old-fashioned symlink? */
604 if (!get_sha1_hex(buffer
, sha1
))
608 if (strncmp(buffer
, "ref:", 4))
614 return resolve_gitlink_ref_recursive(refs
, p
, sha1
, recursion
+1);
617 int resolve_gitlink_ref(const char *path
, const char *refname
, unsigned char *sha1
)
619 int len
= strlen(path
), retval
;
621 struct ref_cache
*refs
;
623 while (len
&& path
[len
-1] == '/')
627 submodule
= xstrndup(path
, len
);
628 refs
= get_ref_cache(submodule
);
631 retval
= resolve_gitlink_ref_recursive(refs
, refname
, sha1
, 0);
636 * Try to read ref from the packed references. On success, set sha1
637 * and return 0; otherwise, return -1.
639 static int get_packed_ref(const char *refname
, unsigned char *sha1
)
641 struct ref_array
*packed
= get_packed_refs(get_ref_cache(NULL
));
642 struct ref_entry
*entry
= search_ref_array(packed
, refname
);
644 hashcpy(sha1
, entry
->sha1
);
650 const char *resolve_ref_unsafe(const char *refname
, unsigned char *sha1
, int reading
, int *flag
)
652 int depth
= MAXDEPTH
;
655 static char refname_buffer
[256];
660 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
))
672 git_snpath(path
, sizeof(path
), "%s", refname
);
674 if (lstat(path
, &st
) < 0) {
678 * The loose reference file does not exist;
679 * check for a packed reference.
681 if (!get_packed_ref(refname
, sha1
)) {
683 *flag
|= REF_ISPACKED
;
686 /* The reference is not a packed reference, either. */
695 /* Follow "normalized" - ie "refs/.." symlinks by hand */
696 if (S_ISLNK(st
.st_mode
)) {
697 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
701 if (!prefixcmp(buffer
, "refs/") &&
702 !check_refname_format(buffer
, 0)) {
703 strcpy(refname_buffer
, buffer
);
704 refname
= refname_buffer
;
706 *flag
|= REF_ISSYMREF
;
711 /* Is it a directory? */
712 if (S_ISDIR(st
.st_mode
)) {
718 * Anything else, just open it and try to use it as
721 fd
= open(path
, O_RDONLY
);
724 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
728 while (len
&& isspace(buffer
[len
-1]))
733 * Is it a symbolic ref?
735 if (prefixcmp(buffer
, "ref:"))
738 *flag
|= REF_ISSYMREF
;
740 while (isspace(*buf
))
742 if (check_refname_format(buf
, REFNAME_ALLOW_ONELEVEL
)) {
744 *flag
|= REF_ISBROKEN
;
747 refname
= strcpy(refname_buffer
, buf
);
749 /* Please note that FETCH_HEAD has a second line containing other data. */
750 if (get_sha1_hex(buffer
, sha1
) || (buffer
[40] != '\0' && !isspace(buffer
[40]))) {
752 *flag
|= REF_ISBROKEN
;
758 char *resolve_refdup(const char *ref
, unsigned char *sha1
, int reading
, int *flag
)
760 const char *ret
= resolve_ref_unsafe(ref
, sha1
, reading
, flag
);
761 return ret
? xstrdup(ret
) : NULL
;
764 /* The argument to filter_refs */
771 int read_ref_full(const char *refname
, unsigned char *sha1
, int reading
, int *flags
)
773 if (resolve_ref_unsafe(refname
, sha1
, reading
, flags
))
778 int read_ref(const char *refname
, unsigned char *sha1
)
780 return read_ref_full(refname
, sha1
, 1, NULL
);
783 int ref_exists(const char *refname
)
785 unsigned char sha1
[20];
786 return !!resolve_ref_unsafe(refname
, sha1
, 1, NULL
);
789 static int filter_refs(const char *refname
, const unsigned char *sha1
, int flags
,
792 struct ref_filter
*filter
= (struct ref_filter
*)data
;
793 if (fnmatch(filter
->pattern
, refname
, 0))
795 return filter
->fn(refname
, sha1
, flags
, filter
->cb_data
);
798 int peel_ref(const char *refname
, unsigned char *sha1
)
801 unsigned char base
[20];
804 if (current_ref
&& (current_ref
->name
== refname
805 || !strcmp(current_ref
->name
, refname
))) {
806 if (current_ref
->flag
& REF_KNOWS_PEELED
) {
807 hashcpy(sha1
, current_ref
->peeled
);
810 hashcpy(base
, current_ref
->sha1
);
814 if (read_ref_full(refname
, base
, 1, &flag
))
817 if ((flag
& REF_ISPACKED
)) {
818 struct ref_array
*array
= get_packed_refs(get_ref_cache(NULL
));
819 struct ref_entry
*r
= search_ref_array(array
, refname
);
821 if (r
!= NULL
&& r
->flag
& REF_KNOWS_PEELED
) {
822 hashcpy(sha1
, r
->peeled
);
828 o
= parse_object(base
);
829 if (o
&& o
->type
== OBJ_TAG
) {
830 o
= deref_tag(o
, refname
, 0);
832 hashcpy(sha1
, o
->sha1
);
839 struct warn_if_dangling_data
{
845 static int warn_if_dangling_symref(const char *refname
, const unsigned char *sha1
,
846 int flags
, void *cb_data
)
848 struct warn_if_dangling_data
*d
= cb_data
;
849 const char *resolves_to
;
850 unsigned char junk
[20];
852 if (!(flags
& REF_ISSYMREF
))
855 resolves_to
= resolve_ref_unsafe(refname
, junk
, 0, NULL
);
856 if (!resolves_to
|| strcmp(resolves_to
, d
->refname
))
859 fprintf(d
->fp
, d
->msg_fmt
, refname
);
863 void warn_dangling_symref(FILE *fp
, const char *msg_fmt
, const char *refname
)
865 struct warn_if_dangling_data data
;
868 data
.refname
= refname
;
869 data
.msg_fmt
= msg_fmt
;
870 for_each_rawref(warn_if_dangling_symref
, &data
);
873 static int do_for_each_ref(const char *submodule
, const char *base
, each_ref_fn fn
,
874 int trim
, int flags
, void *cb_data
)
876 int retval
= 0, p
= 0, l
= 0;
877 struct ref_cache
*refs
= get_ref_cache(submodule
);
878 struct ref_array
*packed
= get_packed_refs(refs
);
879 struct ref_array
*loose
= get_loose_refs(refs
);
881 sort_ref_array(packed
);
882 sort_ref_array(loose
);
883 while (p
< packed
->nr
&& l
< loose
->nr
) {
884 struct ref_entry
*entry
;
885 int cmp
= strcmp(packed
->refs
[p
]->name
, loose
->refs
[l
]->name
);
891 entry
= loose
->refs
[l
++];
893 entry
= packed
->refs
[p
++];
895 retval
= do_one_ref(base
, fn
, trim
, flags
, cb_data
, entry
);
901 return do_for_each_ref_in_array(loose
, l
, base
, fn
, trim
, flags
, cb_data
);
903 return do_for_each_ref_in_array(packed
, p
, base
, fn
, trim
, flags
, cb_data
);
908 static int do_head_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
910 unsigned char sha1
[20];
914 if (resolve_gitlink_ref(submodule
, "HEAD", sha1
) == 0)
915 return fn("HEAD", sha1
, 0, cb_data
);
920 if (!read_ref_full("HEAD", sha1
, 1, &flag
))
921 return fn("HEAD", sha1
, flag
, cb_data
);
926 int head_ref(each_ref_fn fn
, void *cb_data
)
928 return do_head_ref(NULL
, fn
, cb_data
);
931 int head_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
933 return do_head_ref(submodule
, fn
, cb_data
);
936 int for_each_ref(each_ref_fn fn
, void *cb_data
)
938 return do_for_each_ref(NULL
, "", fn
, 0, 0, cb_data
);
941 int for_each_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
943 return do_for_each_ref(submodule
, "", fn
, 0, 0, cb_data
);
946 int for_each_ref_in(const char *prefix
, each_ref_fn fn
, void *cb_data
)
948 return do_for_each_ref(NULL
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
951 int for_each_ref_in_submodule(const char *submodule
, const char *prefix
,
952 each_ref_fn fn
, void *cb_data
)
954 return do_for_each_ref(submodule
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
957 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
959 return for_each_ref_in("refs/tags/", fn
, cb_data
);
962 int for_each_tag_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
964 return for_each_ref_in_submodule(submodule
, "refs/tags/", fn
, cb_data
);
967 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
969 return for_each_ref_in("refs/heads/", fn
, cb_data
);
972 int for_each_branch_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
974 return for_each_ref_in_submodule(submodule
, "refs/heads/", fn
, cb_data
);
977 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
979 return for_each_ref_in("refs/remotes/", fn
, cb_data
);
982 int for_each_remote_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
984 return for_each_ref_in_submodule(submodule
, "refs/remotes/", fn
, cb_data
);
987 int for_each_replace_ref(each_ref_fn fn
, void *cb_data
)
989 return do_for_each_ref(NULL
, "refs/replace/", fn
, 13, 0, cb_data
);
992 int head_ref_namespaced(each_ref_fn fn
, void *cb_data
)
994 struct strbuf buf
= STRBUF_INIT
;
996 unsigned char sha1
[20];
999 strbuf_addf(&buf
, "%sHEAD", get_git_namespace());
1000 if (!read_ref_full(buf
.buf
, sha1
, 1, &flag
))
1001 ret
= fn(buf
.buf
, sha1
, flag
, cb_data
);
1002 strbuf_release(&buf
);
1007 int for_each_namespaced_ref(each_ref_fn fn
, void *cb_data
)
1009 struct strbuf buf
= STRBUF_INIT
;
1011 strbuf_addf(&buf
, "%srefs/", get_git_namespace());
1012 ret
= do_for_each_ref(NULL
, buf
.buf
, fn
, 0, 0, cb_data
);
1013 strbuf_release(&buf
);
1017 int for_each_glob_ref_in(each_ref_fn fn
, const char *pattern
,
1018 const char *prefix
, void *cb_data
)
1020 struct strbuf real_pattern
= STRBUF_INIT
;
1021 struct ref_filter filter
;
1024 if (!prefix
&& prefixcmp(pattern
, "refs/"))
1025 strbuf_addstr(&real_pattern
, "refs/");
1027 strbuf_addstr(&real_pattern
, prefix
);
1028 strbuf_addstr(&real_pattern
, pattern
);
1030 if (!has_glob_specials(pattern
)) {
1031 /* Append implied '/' '*' if not present. */
1032 if (real_pattern
.buf
[real_pattern
.len
- 1] != '/')
1033 strbuf_addch(&real_pattern
, '/');
1034 /* No need to check for '*', there is none. */
1035 strbuf_addch(&real_pattern
, '*');
1038 filter
.pattern
= real_pattern
.buf
;
1040 filter
.cb_data
= cb_data
;
1041 ret
= for_each_ref(filter_refs
, &filter
);
1043 strbuf_release(&real_pattern
);
1047 int for_each_glob_ref(each_ref_fn fn
, const char *pattern
, void *cb_data
)
1049 return for_each_glob_ref_in(fn
, pattern
, NULL
, cb_data
);
1052 int for_each_rawref(each_ref_fn fn
, void *cb_data
)
1054 return do_for_each_ref(NULL
, "", fn
, 0,
1055 DO_FOR_EACH_INCLUDE_BROKEN
, cb_data
);
1058 const char *prettify_refname(const char *name
)
1061 !prefixcmp(name
, "refs/heads/") ? 11 :
1062 !prefixcmp(name
, "refs/tags/") ? 10 :
1063 !prefixcmp(name
, "refs/remotes/") ? 13 :
1067 const char *ref_rev_parse_rules
[] = {
1072 "refs/remotes/%.*s",
1073 "refs/remotes/%.*s/HEAD",
1077 int refname_match(const char *abbrev_name
, const char *full_name
, const char **rules
)
1080 const int abbrev_name_len
= strlen(abbrev_name
);
1082 for (p
= rules
; *p
; p
++) {
1083 if (!strcmp(full_name
, mkpath(*p
, abbrev_name_len
, abbrev_name
))) {
1091 static struct ref_lock
*verify_lock(struct ref_lock
*lock
,
1092 const unsigned char *old_sha1
, int mustexist
)
1094 if (read_ref_full(lock
->ref_name
, lock
->old_sha1
, mustexist
, NULL
)) {
1095 error("Can't verify ref %s", lock
->ref_name
);
1099 if (hashcmp(lock
->old_sha1
, old_sha1
)) {
1100 error("Ref %s is at %s but expected %s", lock
->ref_name
,
1101 sha1_to_hex(lock
->old_sha1
), sha1_to_hex(old_sha1
));
1108 static int remove_empty_directories(const char *file
)
1110 /* we want to create a file but there is a directory there;
1111 * if that is an empty directory (or a directory that contains
1112 * only empty directories), remove them.
1117 strbuf_init(&path
, 20);
1118 strbuf_addstr(&path
, file
);
1120 result
= remove_dir_recursively(&path
, REMOVE_DIR_EMPTY_ONLY
);
1122 strbuf_release(&path
);
1128 * *string and *len will only be substituted, and *string returned (for
1129 * later free()ing) if the string passed in is a magic short-hand form
1132 static char *substitute_branch_name(const char **string
, int *len
)
1134 struct strbuf buf
= STRBUF_INIT
;
1135 int ret
= interpret_branch_name(*string
, &buf
);
1139 *string
= strbuf_detach(&buf
, &size
);
1141 return (char *)*string
;
1147 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
1149 char *last_branch
= substitute_branch_name(&str
, &len
);
1154 for (p
= ref_rev_parse_rules
; *p
; p
++) {
1155 char fullref
[PATH_MAX
];
1156 unsigned char sha1_from_ref
[20];
1157 unsigned char *this_result
;
1160 this_result
= refs_found
? sha1_from_ref
: sha1
;
1161 mksnpath(fullref
, sizeof(fullref
), *p
, len
, str
);
1162 r
= resolve_ref_unsafe(fullref
, this_result
, 1, &flag
);
1166 if (!warn_ambiguous_refs
)
1168 } else if ((flag
& REF_ISSYMREF
) && strcmp(fullref
, "HEAD")) {
1169 warning("ignoring dangling symref %s.", fullref
);
1170 } else if ((flag
& REF_ISBROKEN
) && strchr(fullref
, '/')) {
1171 warning("ignoring broken ref %s.", fullref
);
1178 int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
1180 char *last_branch
= substitute_branch_name(&str
, &len
);
1185 for (p
= ref_rev_parse_rules
; *p
; p
++) {
1187 unsigned char hash
[20];
1188 char path
[PATH_MAX
];
1189 const char *ref
, *it
;
1191 mksnpath(path
, sizeof(path
), *p
, len
, str
);
1192 ref
= resolve_ref_unsafe(path
, hash
, 1, NULL
);
1195 if (!stat(git_path("logs/%s", path
), &st
) &&
1196 S_ISREG(st
.st_mode
))
1198 else if (strcmp(ref
, path
) &&
1199 !stat(git_path("logs/%s", ref
), &st
) &&
1200 S_ISREG(st
.st_mode
))
1204 if (!logs_found
++) {
1206 hashcpy(sha1
, hash
);
1208 if (!warn_ambiguous_refs
)
1215 static struct ref_lock
*lock_ref_sha1_basic(const char *refname
,
1216 const unsigned char *old_sha1
,
1217 int flags
, int *type_p
)
1220 const char *orig_refname
= refname
;
1221 struct ref_lock
*lock
;
1224 int mustexist
= (old_sha1
&& !is_null_sha1(old_sha1
));
1227 lock
= xcalloc(1, sizeof(struct ref_lock
));
1230 refname
= resolve_ref_unsafe(refname
, lock
->old_sha1
, mustexist
, &type
);
1231 if (!refname
&& errno
== EISDIR
) {
1232 /* we are trying to lock foo but we used to
1233 * have foo/bar which now does not exist;
1234 * it is normal for the empty directory 'foo'
1237 ref_file
= git_path("%s", orig_refname
);
1238 if (remove_empty_directories(ref_file
)) {
1240 error("there are still refs under '%s'", orig_refname
);
1243 refname
= resolve_ref_unsafe(orig_refname
, lock
->old_sha1
, mustexist
, &type
);
1249 error("unable to resolve reference %s: %s",
1250 orig_refname
, strerror(errno
));
1253 missing
= is_null_sha1(lock
->old_sha1
);
1254 /* When the ref did not exist and we are creating it,
1255 * make sure there is no existing ref that is packed
1256 * whose name begins with our refname, nor a ref whose
1257 * name is a proper prefix of our refname.
1260 !is_refname_available(refname
, NULL
, get_packed_refs(get_ref_cache(NULL
)))) {
1261 last_errno
= ENOTDIR
;
1265 lock
->lk
= xcalloc(1, sizeof(struct lock_file
));
1267 lflags
= LOCK_DIE_ON_ERROR
;
1268 if (flags
& REF_NODEREF
) {
1269 refname
= orig_refname
;
1270 lflags
|= LOCK_NODEREF
;
1272 lock
->ref_name
= xstrdup(refname
);
1273 lock
->orig_ref_name
= xstrdup(orig_refname
);
1274 ref_file
= git_path("%s", refname
);
1276 lock
->force_write
= 1;
1277 if ((flags
& REF_NODEREF
) && (type
& REF_ISSYMREF
))
1278 lock
->force_write
= 1;
1280 if (safe_create_leading_directories(ref_file
)) {
1282 error("unable to create directory for %s", ref_file
);
1286 lock
->lock_fd
= hold_lock_file_for_update(lock
->lk
, ref_file
, lflags
);
1287 return old_sha1
? verify_lock(lock
, old_sha1
, mustexist
) : lock
;
1295 struct ref_lock
*lock_ref_sha1(const char *refname
, const unsigned char *old_sha1
)
1297 char refpath
[PATH_MAX
];
1298 if (check_refname_format(refname
, 0))
1300 strcpy(refpath
, mkpath("refs/%s", refname
));
1301 return lock_ref_sha1_basic(refpath
, old_sha1
, 0, NULL
);
1304 struct ref_lock
*lock_any_ref_for_update(const char *refname
,
1305 const unsigned char *old_sha1
, int flags
)
1307 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
))
1309 return lock_ref_sha1_basic(refname
, old_sha1
, flags
, NULL
);
1312 static struct lock_file packlock
;
1314 static int repack_without_ref(const char *refname
)
1316 struct ref_array
*packed
;
1319 packed
= get_packed_refs(get_ref_cache(NULL
));
1320 if (search_ref_array(packed
, refname
) == NULL
)
1322 fd
= hold_lock_file_for_update(&packlock
, git_path("packed-refs"), 0);
1324 unable_to_lock_error(git_path("packed-refs"), errno
);
1325 return error("cannot delete '%s' from packed refs", refname
);
1328 for (i
= 0; i
< packed
->nr
; i
++) {
1329 char line
[PATH_MAX
+ 100];
1331 struct ref_entry
*ref
= packed
->refs
[i
];
1333 if (!strcmp(refname
, ref
->name
))
1335 len
= snprintf(line
, sizeof(line
), "%s %s\n",
1336 sha1_to_hex(ref
->sha1
), ref
->name
);
1337 /* this should not happen but just being defensive */
1338 if (len
> sizeof(line
))
1339 die("too long a refname '%s'", ref
->name
);
1340 write_or_die(fd
, line
, len
);
1342 return commit_lock_file(&packlock
);
1345 int delete_ref(const char *refname
, const unsigned char *sha1
, int delopt
)
1347 struct ref_lock
*lock
;
1348 int err
, i
= 0, ret
= 0, flag
= 0;
1350 lock
= lock_ref_sha1_basic(refname
, sha1
, 0, &flag
);
1353 if (!(flag
& REF_ISPACKED
) || flag
& REF_ISSYMREF
) {
1357 if (!(delopt
& REF_NODEREF
)) {
1358 i
= strlen(lock
->lk
->filename
) - 5; /* .lock */
1359 lock
->lk
->filename
[i
] = 0;
1360 path
= lock
->lk
->filename
;
1362 path
= git_path("%s", refname
);
1364 err
= unlink_or_warn(path
);
1365 if (err
&& errno
!= ENOENT
)
1368 if (!(delopt
& REF_NODEREF
))
1369 lock
->lk
->filename
[i
] = '.';
1371 /* removing the loose one could have resurrected an earlier
1372 * packed one. Also, if it was not loose we need to repack
1375 ret
|= repack_without_ref(refname
);
1377 unlink_or_warn(git_path("logs/%s", lock
->ref_name
));
1378 invalidate_ref_cache(NULL
);
1384 * People using contrib's git-new-workdir have .git/logs/refs ->
1385 * /some/other/path/.git/logs/refs, and that may live on another device.
1387 * IOW, to avoid cross device rename errors, the temporary renamed log must
1388 * live into logs/refs.
1390 #define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
1392 int rename_ref(const char *oldrefname
, const char *newrefname
, const char *logmsg
)
1394 unsigned char sha1
[20], orig_sha1
[20];
1395 int flag
= 0, logmoved
= 0;
1396 struct ref_lock
*lock
;
1397 struct stat loginfo
;
1398 int log
= !lstat(git_path("logs/%s", oldrefname
), &loginfo
);
1399 const char *symref
= NULL
;
1400 struct ref_cache
*refs
= get_ref_cache(NULL
);
1402 if (log
&& S_ISLNK(loginfo
.st_mode
))
1403 return error("reflog for %s is a symlink", oldrefname
);
1405 symref
= resolve_ref_unsafe(oldrefname
, orig_sha1
, 1, &flag
);
1406 if (flag
& REF_ISSYMREF
)
1407 return error("refname %s is a symbolic ref, renaming it is not supported",
1410 return error("refname %s not found", oldrefname
);
1412 if (!is_refname_available(newrefname
, oldrefname
, get_packed_refs(refs
)))
1415 if (!is_refname_available(newrefname
, oldrefname
, get_loose_refs(refs
)))
1418 if (log
&& rename(git_path("logs/%s", oldrefname
), git_path(TMP_RENAMED_LOG
)))
1419 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG
": %s",
1420 oldrefname
, strerror(errno
));
1422 if (delete_ref(oldrefname
, orig_sha1
, REF_NODEREF
)) {
1423 error("unable to delete old %s", oldrefname
);
1427 if (!read_ref_full(newrefname
, sha1
, 1, &flag
) &&
1428 delete_ref(newrefname
, sha1
, REF_NODEREF
)) {
1429 if (errno
==EISDIR
) {
1430 if (remove_empty_directories(git_path("%s", newrefname
))) {
1431 error("Directory not empty: %s", newrefname
);
1435 error("unable to delete existing %s", newrefname
);
1440 if (log
&& safe_create_leading_directories(git_path("logs/%s", newrefname
))) {
1441 error("unable to create directory for %s", newrefname
);
1446 if (log
&& rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", newrefname
))) {
1447 if (errno
==EISDIR
|| errno
==ENOTDIR
) {
1449 * rename(a, b) when b is an existing
1450 * directory ought to result in ISDIR, but
1451 * Solaris 5.8 gives ENOTDIR. Sheesh.
1453 if (remove_empty_directories(git_path("logs/%s", newrefname
))) {
1454 error("Directory not empty: logs/%s", newrefname
);
1459 error("unable to move logfile "TMP_RENAMED_LOG
" to logs/%s: %s",
1460 newrefname
, strerror(errno
));
1466 lock
= lock_ref_sha1_basic(newrefname
, NULL
, 0, NULL
);
1468 error("unable to lock %s for update", newrefname
);
1471 lock
->force_write
= 1;
1472 hashcpy(lock
->old_sha1
, orig_sha1
);
1473 if (write_ref_sha1(lock
, orig_sha1
, logmsg
)) {
1474 error("unable to write current sha1 into %s", newrefname
);
1481 lock
= lock_ref_sha1_basic(oldrefname
, NULL
, 0, NULL
);
1483 error("unable to lock %s for rollback", oldrefname
);
1487 lock
->force_write
= 1;
1488 flag
= log_all_ref_updates
;
1489 log_all_ref_updates
= 0;
1490 if (write_ref_sha1(lock
, orig_sha1
, NULL
))
1491 error("unable to write current sha1 into %s", oldrefname
);
1492 log_all_ref_updates
= flag
;
1495 if (logmoved
&& rename(git_path("logs/%s", newrefname
), git_path("logs/%s", oldrefname
)))
1496 error("unable to restore logfile %s from %s: %s",
1497 oldrefname
, newrefname
, strerror(errno
));
1498 if (!logmoved
&& log
&&
1499 rename(git_path(TMP_RENAMED_LOG
), git_path("logs/%s", oldrefname
)))
1500 error("unable to restore logfile %s from "TMP_RENAMED_LOG
": %s",
1501 oldrefname
, strerror(errno
));
1506 int close_ref(struct ref_lock
*lock
)
1508 if (close_lock_file(lock
->lk
))
1514 int commit_ref(struct ref_lock
*lock
)
1516 if (commit_lock_file(lock
->lk
))
1522 void unlock_ref(struct ref_lock
*lock
)
1524 /* Do not free lock->lk -- atexit() still looks at them */
1526 rollback_lock_file(lock
->lk
);
1527 free(lock
->ref_name
);
1528 free(lock
->orig_ref_name
);
1533 * copy the reflog message msg to buf, which has been allocated sufficiently
1534 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1535 * because reflog file is one line per entry.
1537 static int copy_msg(char *buf
, const char *msg
)
1544 while ((c
= *msg
++)) {
1545 if (wasspace
&& isspace(c
))
1547 wasspace
= isspace(c
);
1552 while (buf
< cp
&& isspace(cp
[-1]))
1558 int log_ref_setup(const char *refname
, char *logfile
, int bufsize
)
1560 int logfd
, oflags
= O_APPEND
| O_WRONLY
;
1562 git_snpath(logfile
, bufsize
, "logs/%s", refname
);
1563 if (log_all_ref_updates
&&
1564 (!prefixcmp(refname
, "refs/heads/") ||
1565 !prefixcmp(refname
, "refs/remotes/") ||
1566 !prefixcmp(refname
, "refs/notes/") ||
1567 !strcmp(refname
, "HEAD"))) {
1568 if (safe_create_leading_directories(logfile
) < 0)
1569 return error("unable to create directory for %s",
1574 logfd
= open(logfile
, oflags
, 0666);
1576 if (!(oflags
& O_CREAT
) && errno
== ENOENT
)
1579 if ((oflags
& O_CREAT
) && errno
== EISDIR
) {
1580 if (remove_empty_directories(logfile
)) {
1581 return error("There are still logs under '%s'",
1584 logfd
= open(logfile
, oflags
, 0666);
1588 return error("Unable to append to %s: %s",
1589 logfile
, strerror(errno
));
1592 adjust_shared_perm(logfile
);
1597 static int log_ref_write(const char *refname
, const unsigned char *old_sha1
,
1598 const unsigned char *new_sha1
, const char *msg
)
1600 int logfd
, result
, written
, oflags
= O_APPEND
| O_WRONLY
;
1601 unsigned maxlen
, len
;
1603 char log_file
[PATH_MAX
];
1605 const char *committer
;
1607 if (log_all_ref_updates
< 0)
1608 log_all_ref_updates
= !is_bare_repository();
1610 result
= log_ref_setup(refname
, log_file
, sizeof(log_file
));
1614 logfd
= open(log_file
, oflags
);
1617 msglen
= msg
? strlen(msg
) : 0;
1618 committer
= git_committer_info(0);
1619 maxlen
= strlen(committer
) + msglen
+ 100;
1620 logrec
= xmalloc(maxlen
);
1621 len
= sprintf(logrec
, "%s %s %s\n",
1622 sha1_to_hex(old_sha1
),
1623 sha1_to_hex(new_sha1
),
1626 len
+= copy_msg(logrec
+ len
- 1, msg
) - 1;
1627 written
= len
<= maxlen
? write_in_full(logfd
, logrec
, len
) : -1;
1629 if (close(logfd
) != 0 || written
!= len
)
1630 return error("Unable to append to %s", log_file
);
1634 static int is_branch(const char *refname
)
1636 return !strcmp(refname
, "HEAD") || !prefixcmp(refname
, "refs/heads/");
1639 int write_ref_sha1(struct ref_lock
*lock
,
1640 const unsigned char *sha1
, const char *logmsg
)
1642 static char term
= '\n';
1647 if (!lock
->force_write
&& !hashcmp(lock
->old_sha1
, sha1
)) {
1651 o
= parse_object(sha1
);
1653 error("Trying to write ref %s with nonexistent object %s",
1654 lock
->ref_name
, sha1_to_hex(sha1
));
1658 if (o
->type
!= OBJ_COMMIT
&& is_branch(lock
->ref_name
)) {
1659 error("Trying to write non-commit object %s to branch %s",
1660 sha1_to_hex(sha1
), lock
->ref_name
);
1664 if (write_in_full(lock
->lock_fd
, sha1_to_hex(sha1
), 40) != 40 ||
1665 write_in_full(lock
->lock_fd
, &term
, 1) != 1
1666 || close_ref(lock
) < 0) {
1667 error("Couldn't write %s", lock
->lk
->filename
);
1671 clear_loose_ref_cache(get_ref_cache(NULL
));
1672 if (log_ref_write(lock
->ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0 ||
1673 (strcmp(lock
->ref_name
, lock
->orig_ref_name
) &&
1674 log_ref_write(lock
->orig_ref_name
, lock
->old_sha1
, sha1
, logmsg
) < 0)) {
1678 if (strcmp(lock
->orig_ref_name
, "HEAD") != 0) {
1680 * Special hack: If a branch is updated directly and HEAD
1681 * points to it (may happen on the remote side of a push
1682 * for example) then logically the HEAD reflog should be
1684 * A generic solution implies reverse symref information,
1685 * but finding all symrefs pointing to the given branch
1686 * would be rather costly for this rare event (the direct
1687 * update of a branch) to be worth it. So let's cheat and
1688 * check with HEAD only which should cover 99% of all usage
1689 * scenarios (even 100% of the default ones).
1691 unsigned char head_sha1
[20];
1693 const char *head_ref
;
1694 head_ref
= resolve_ref_unsafe("HEAD", head_sha1
, 1, &head_flag
);
1695 if (head_ref
&& (head_flag
& REF_ISSYMREF
) &&
1696 !strcmp(head_ref
, lock
->ref_name
))
1697 log_ref_write("HEAD", lock
->old_sha1
, sha1
, logmsg
);
1699 if (commit_ref(lock
)) {
1700 error("Couldn't set %s", lock
->ref_name
);
1708 int create_symref(const char *ref_target
, const char *refs_heads_master
,
1711 const char *lockpath
;
1713 int fd
, len
, written
;
1714 char *git_HEAD
= git_pathdup("%s", ref_target
);
1715 unsigned char old_sha1
[20], new_sha1
[20];
1717 if (logmsg
&& read_ref(ref_target
, old_sha1
))
1720 if (safe_create_leading_directories(git_HEAD
) < 0)
1721 return error("unable to create directory for %s", git_HEAD
);
1723 #ifndef NO_SYMLINK_HEAD
1724 if (prefer_symlink_refs
) {
1726 if (!symlink(refs_heads_master
, git_HEAD
))
1728 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
1732 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
1733 if (sizeof(ref
) <= len
) {
1734 error("refname too long: %s", refs_heads_master
);
1735 goto error_free_return
;
1737 lockpath
= mkpath("%s.lock", git_HEAD
);
1738 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
1740 error("Unable to open %s for writing", lockpath
);
1741 goto error_free_return
;
1743 written
= write_in_full(fd
, ref
, len
);
1744 if (close(fd
) != 0 || written
!= len
) {
1745 error("Unable to write to %s", lockpath
);
1746 goto error_unlink_return
;
1748 if (rename(lockpath
, git_HEAD
) < 0) {
1749 error("Unable to create %s", git_HEAD
);
1750 goto error_unlink_return
;
1752 if (adjust_shared_perm(git_HEAD
)) {
1753 error("Unable to fix permissions on %s", lockpath
);
1754 error_unlink_return
:
1755 unlink_or_warn(lockpath
);
1761 #ifndef NO_SYMLINK_HEAD
1764 if (logmsg
&& !read_ref(refs_heads_master
, new_sha1
))
1765 log_ref_write(ref_target
, old_sha1
, new_sha1
, logmsg
);
1771 static char *ref_msg(const char *line
, const char *endp
)
1775 ep
= memchr(line
, '\n', endp
- line
);
1778 return xmemdupz(line
, ep
- line
);
1781 int read_ref_at(const char *refname
, unsigned long at_time
, int cnt
,
1782 unsigned char *sha1
, char **msg
,
1783 unsigned long *cutoff_time
, int *cutoff_tz
, int *cutoff_cnt
)
1785 const char *logfile
, *logdata
, *logend
, *rec
, *lastgt
, *lastrec
;
1787 int logfd
, tz
, reccnt
= 0;
1790 unsigned char logged_sha1
[20];
1794 logfile
= git_path("logs/%s", refname
);
1795 logfd
= open(logfile
, O_RDONLY
, 0);
1797 die_errno("Unable to read log '%s'", logfile
);
1800 die("Log %s is empty.", logfile
);
1801 mapsz
= xsize_t(st
.st_size
);
1802 log_mapped
= xmmap(NULL
, mapsz
, PROT_READ
, MAP_PRIVATE
, logfd
, 0);
1803 logdata
= log_mapped
;
1807 rec
= logend
= logdata
+ st
.st_size
;
1808 while (logdata
< rec
) {
1810 if (logdata
< rec
&& *(rec
-1) == '\n')
1813 while (logdata
< rec
&& *(rec
-1) != '\n') {
1819 die("Log %s is corrupt.", logfile
);
1820 date
= strtoul(lastgt
+ 1, &tz_c
, 10);
1821 if (date
<= at_time
|| cnt
== 0) {
1822 tz
= strtoul(tz_c
, NULL
, 10);
1824 *msg
= ref_msg(rec
, logend
);
1826 *cutoff_time
= date
;
1830 *cutoff_cnt
= reccnt
- 1;
1832 if (get_sha1_hex(lastrec
, logged_sha1
))
1833 die("Log %s is corrupt.", logfile
);
1834 if (get_sha1_hex(rec
+ 41, sha1
))
1835 die("Log %s is corrupt.", logfile
);
1836 if (hashcmp(logged_sha1
, sha1
)) {
1837 warning("Log %s has gap after %s.",
1838 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1841 else if (date
== at_time
) {
1842 if (get_sha1_hex(rec
+ 41, sha1
))
1843 die("Log %s is corrupt.", logfile
);
1846 if (get_sha1_hex(rec
+ 41, logged_sha1
))
1847 die("Log %s is corrupt.", logfile
);
1848 if (hashcmp(logged_sha1
, sha1
)) {
1849 warning("Log %s unexpectedly ended on %s.",
1850 logfile
, show_date(date
, tz
, DATE_RFC2822
));
1853 munmap(log_mapped
, mapsz
);
1862 while (rec
< logend
&& *rec
!= '>' && *rec
!= '\n')
1864 if (rec
== logend
|| *rec
== '\n')
1865 die("Log %s is corrupt.", logfile
);
1866 date
= strtoul(rec
+ 1, &tz_c
, 10);
1867 tz
= strtoul(tz_c
, NULL
, 10);
1868 if (get_sha1_hex(logdata
, sha1
))
1869 die("Log %s is corrupt.", logfile
);
1870 if (is_null_sha1(sha1
)) {
1871 if (get_sha1_hex(logdata
+ 41, sha1
))
1872 die("Log %s is corrupt.", logfile
);
1875 *msg
= ref_msg(logdata
, logend
);
1876 munmap(log_mapped
, mapsz
);
1879 *cutoff_time
= date
;
1883 *cutoff_cnt
= reccnt
;
1887 int for_each_recent_reflog_ent(const char *refname
, each_reflog_ent_fn fn
, long ofs
, void *cb_data
)
1889 const char *logfile
;
1891 struct strbuf sb
= STRBUF_INIT
;
1894 logfile
= git_path("logs/%s", refname
);
1895 logfp
= fopen(logfile
, "r");
1900 struct stat statbuf
;
1901 if (fstat(fileno(logfp
), &statbuf
) ||
1902 statbuf
.st_size
< ofs
||
1903 fseek(logfp
, -ofs
, SEEK_END
) ||
1904 strbuf_getwholeline(&sb
, logfp
, '\n')) {
1906 strbuf_release(&sb
);
1911 while (!strbuf_getwholeline(&sb
, logfp
, '\n')) {
1912 unsigned char osha1
[20], nsha1
[20];
1913 char *email_end
, *message
;
1914 unsigned long timestamp
;
1917 /* old SP new SP name <email> SP time TAB msg LF */
1918 if (sb
.len
< 83 || sb
.buf
[sb
.len
- 1] != '\n' ||
1919 get_sha1_hex(sb
.buf
, osha1
) || sb
.buf
[40] != ' ' ||
1920 get_sha1_hex(sb
.buf
+ 41, nsha1
) || sb
.buf
[81] != ' ' ||
1921 !(email_end
= strchr(sb
.buf
+ 82, '>')) ||
1922 email_end
[1] != ' ' ||
1923 !(timestamp
= strtoul(email_end
+ 2, &message
, 10)) ||
1924 !message
|| message
[0] != ' ' ||
1925 (message
[1] != '+' && message
[1] != '-') ||
1926 !isdigit(message
[2]) || !isdigit(message
[3]) ||
1927 !isdigit(message
[4]) || !isdigit(message
[5]))
1928 continue; /* corrupt? */
1929 email_end
[1] = '\0';
1930 tz
= strtol(message
+ 1, NULL
, 10);
1931 if (message
[6] != '\t')
1935 ret
= fn(osha1
, nsha1
, sb
.buf
+ 82, timestamp
, tz
, message
,
1941 strbuf_release(&sb
);
1945 int for_each_reflog_ent(const char *refname
, each_reflog_ent_fn fn
, void *cb_data
)
1947 return for_each_recent_reflog_ent(refname
, fn
, 0, cb_data
);
1950 static int do_for_each_reflog(const char *base
, each_ref_fn fn
, void *cb_data
)
1952 DIR *dir
= opendir(git_path("logs/%s", base
));
1957 int baselen
= strlen(base
);
1958 char *log
= xmalloc(baselen
+ 257);
1960 memcpy(log
, base
, baselen
);
1961 if (baselen
&& base
[baselen
-1] != '/')
1962 log
[baselen
++] = '/';
1964 while ((de
= readdir(dir
)) != NULL
) {
1968 if (de
->d_name
[0] == '.')
1970 namelen
= strlen(de
->d_name
);
1973 if (has_extension(de
->d_name
, ".lock"))
1975 memcpy(log
+ baselen
, de
->d_name
, namelen
+1);
1976 if (stat(git_path("logs/%s", log
), &st
) < 0)
1978 if (S_ISDIR(st
.st_mode
)) {
1979 retval
= do_for_each_reflog(log
, fn
, cb_data
);
1981 unsigned char sha1
[20];
1982 if (read_ref_full(log
, sha1
, 0, NULL
))
1983 retval
= error("bad ref for %s", log
);
1985 retval
= fn(log
, sha1
, 0, cb_data
);
1998 int for_each_reflog(each_ref_fn fn
, void *cb_data
)
2000 return do_for_each_reflog("", fn
, cb_data
);
2003 int update_ref(const char *action
, const char *refname
,
2004 const unsigned char *sha1
, const unsigned char *oldval
,
2005 int flags
, enum action_on_err onerr
)
2007 static struct ref_lock
*lock
;
2008 lock
= lock_any_ref_for_update(refname
, oldval
, flags
);
2010 const char *str
= "Cannot lock the ref '%s'.";
2012 case MSG_ON_ERR
: error(str
, refname
); break;
2013 case DIE_ON_ERR
: die(str
, refname
); break;
2014 case QUIET_ON_ERR
: break;
2018 if (write_ref_sha1(lock
, sha1
, action
) < 0) {
2019 const char *str
= "Cannot update the ref '%s'.";
2021 case MSG_ON_ERR
: error(str
, refname
); break;
2022 case DIE_ON_ERR
: die(str
, refname
); break;
2023 case QUIET_ON_ERR
: break;
2030 struct ref
*find_ref_by_name(const struct ref
*list
, const char *name
)
2032 for ( ; list
; list
= list
->next
)
2033 if (!strcmp(list
->name
, name
))
2034 return (struct ref
*)list
;
2039 * generate a format suitable for scanf from a ref_rev_parse_rules
2040 * rule, that is replace the "%.*s" spec with a "%s" spec
2042 static void gen_scanf_fmt(char *scanf_fmt
, const char *rule
)
2046 spec
= strstr(rule
, "%.*s");
2047 if (!spec
|| strstr(spec
+ 4, "%.*s"))
2048 die("invalid rule in ref_rev_parse_rules: %s", rule
);
2050 /* copy all until spec */
2051 strncpy(scanf_fmt
, rule
, spec
- rule
);
2052 scanf_fmt
[spec
- rule
] = '\0';
2054 strcat(scanf_fmt
, "%s");
2055 /* copy remaining rule */
2056 strcat(scanf_fmt
, spec
+ 4);
2061 char *shorten_unambiguous_ref(const char *refname
, int strict
)
2064 static char **scanf_fmts
;
2065 static int nr_rules
;
2068 /* pre generate scanf formats from ref_rev_parse_rules[] */
2070 size_t total_len
= 0;
2072 /* the rule list is NULL terminated, count them first */
2073 for (; ref_rev_parse_rules
[nr_rules
]; nr_rules
++)
2074 /* no +1 because strlen("%s") < strlen("%.*s") */
2075 total_len
+= strlen(ref_rev_parse_rules
[nr_rules
]);
2077 scanf_fmts
= xmalloc(nr_rules
* sizeof(char *) + total_len
);
2080 for (i
= 0; i
< nr_rules
; i
++) {
2081 scanf_fmts
[i
] = (char *)&scanf_fmts
[nr_rules
]
2083 gen_scanf_fmt(scanf_fmts
[i
], ref_rev_parse_rules
[i
]);
2084 total_len
+= strlen(ref_rev_parse_rules
[i
]);
2088 /* bail out if there are no rules */
2090 return xstrdup(refname
);
2092 /* buffer for scanf result, at most refname must fit */
2093 short_name
= xstrdup(refname
);
2095 /* skip first rule, it will always match */
2096 for (i
= nr_rules
- 1; i
> 0 ; --i
) {
2098 int rules_to_fail
= i
;
2101 if (1 != sscanf(refname
, scanf_fmts
[i
], short_name
))
2104 short_name_len
= strlen(short_name
);
2107 * in strict mode, all (except the matched one) rules
2108 * must fail to resolve to a valid non-ambiguous ref
2111 rules_to_fail
= nr_rules
;
2114 * check if the short name resolves to a valid ref,
2115 * but use only rules prior to the matched one
2117 for (j
= 0; j
< rules_to_fail
; j
++) {
2118 const char *rule
= ref_rev_parse_rules
[j
];
2119 char refname
[PATH_MAX
];
2121 /* skip matched rule */
2126 * the short name is ambiguous, if it resolves
2127 * (with this previous rule) to a valid ref
2128 * read_ref() returns 0 on success
2130 mksnpath(refname
, sizeof(refname
),
2131 rule
, short_name_len
, short_name
);
2132 if (ref_exists(refname
))
2137 * short name is non-ambiguous if all previous rules
2138 * haven't resolved to a valid ref
2140 if (j
== rules_to_fail
)
2145 return xstrdup(refname
);