2 * The backend-independent part of the reference module.
8 #include "refs/refs-internal.h"
13 * List of all available backends
15 static struct ref_storage_be *refs_backends = &refs_be_files;
17 static struct ref_storage_be *find_ref_storage_backend(const char *name)
19 struct ref_storage_be *be;
20 for (be = refs_backends; be; be = be->next)
21 if (!strcmp(be->name, name))
26 int ref_storage_backend_exists(const char *name)
28 return find_ref_storage_backend(name) != NULL;
32 * How to handle various characters in refnames:
33 * 0: An acceptable character for refs
35 * 2: ., look for a preceding . to reject .. in refs
36 * 3: {, look for a preceding @ to reject @{ in refs
37 * 4: A bad character: ASCII control characters, and
38 * ":", "?", "[", "\", "^", "~", SP, or TAB
39 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
41 static unsigned char refname_disposition[256] = {
42 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
43 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
44 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
45 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
46 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
47 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
48 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
49 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
53 * Try to read one refname component from the front of refname.
54 * Return the length of the component found, or -1 if the component is
55 * not legal. It is legal if it is something reasonable to have under
56 * ".git/refs/"; We do not like it if:
58 * - any path component of it begins with ".", or
59 * - it has double dots "..", or
60 * - it has ASCII control characters, or
61 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
62 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
63 * - it ends with a "/", or
64 * - it ends with ".lock", or
65 * - it contains a "@{" portion
67 static int check_refname_component(const char *refname, int *flags)
72 for (cp = refname; ; cp++) {
74 unsigned char disp = refname_disposition[ch];
80 return -1; /* Refname contains "..". */
84 return -1; /* Refname contains "@{". */
89 if (!(*flags & REFNAME_REFSPEC_PATTERN))
90 return -1; /* refspec can't be a pattern */
93 * Unset the pattern flag so that we only accept
94 * a single asterisk for one side of refspec.
96 *flags &= ~ REFNAME_REFSPEC_PATTERN;
103 return 0; /* Component has zero length. */
104 if (refname[0] == '.')
105 return -1; /* Component starts with '.'. */
106 if (cp - refname >= LOCK_SUFFIX_LEN &&
107 !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
108 return -1; /* Refname ends with ".lock". */
112 int check_refname_format(const char *refname, int flags)
114 int component_len, component_count = 0;
116 if (!strcmp(refname, "@"))
117 /* Refname is a single character '@'. */
121 /* We are at the start of a path component. */
122 component_len = check_refname_component(refname, &flags);
123 if (component_len <= 0)
127 if (refname[component_len] == '\0')
129 /* Skip to next component. */
130 refname += component_len + 1;
133 if (refname[component_len - 1] == '.')
134 return -1; /* Refname ends with '.'. */
135 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
136 return -1; /* Refname has only one component. */
140 int refname_is_safe(const char *refname)
144 if (skip_prefix(refname, "refs/", &rest)) {
147 size_t restlen = strlen(rest);
149 /* rest must not be empty, or start or end with "/" */
150 if (!restlen || *rest == '/' || rest[restlen - 1] == '/')
154 * Does the refname try to escape refs/?
155 * For example: refs/foo/../bar is safe but refs/foo/../../bar
158 buf = xmallocz(restlen);
159 result = !normalize_path_copy(buf, rest) && !strcmp(buf, rest);
165 if (!isupper(*refname) && *refname != '_')
172 char *resolve_refdup(const char *refname, int resolve_flags,
173 unsigned char *sha1, int *flags)
175 return xstrdup_or_null(resolve_ref_unsafe(refname, resolve_flags,
179 /* The argument to filter_refs */
186 int read_ref_full(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
188 if (resolve_ref_unsafe(refname, resolve_flags, sha1, flags))
193 int read_ref(const char *refname, unsigned char *sha1)
195 return read_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);
198 int ref_exists(const char *refname)
200 unsigned char sha1[20];
201 return !!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);
204 static int filter_refs(const char *refname, const struct object_id *oid,
205 int flags, void *data)
207 struct ref_filter *filter = (struct ref_filter *)data;
209 if (wildmatch(filter->pattern, refname, 0, NULL))
211 return filter->fn(refname, oid, flags, filter->cb_data);
214 enum peel_status peel_object(const unsigned char *name, unsigned char *sha1)
216 struct object *o = lookup_unknown_object(name);
218 if (o->type == OBJ_NONE) {
219 int type = sha1_object_info(name, NULL);
220 if (type < 0 || !object_as_type(o, type, 0))
224 if (o->type != OBJ_TAG)
227 o = deref_tag_noverify(o);
231 hashcpy(sha1, o->oid.hash);
235 struct warn_if_dangling_data {
238 const struct string_list *refnames;
242 static int warn_if_dangling_symref(const char *refname, const struct object_id *oid,
243 int flags, void *cb_data)
245 struct warn_if_dangling_data *d = cb_data;
246 const char *resolves_to;
247 struct object_id junk;
249 if (!(flags & REF_ISSYMREF))
252 resolves_to = resolve_ref_unsafe(refname, 0, junk.hash, NULL);
255 ? strcmp(resolves_to, d->refname)
256 : !string_list_has_string(d->refnames, resolves_to))) {
260 fprintf(d->fp, d->msg_fmt, refname);
265 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
267 struct warn_if_dangling_data data;
270 data.refname = refname;
271 data.refnames = NULL;
272 data.msg_fmt = msg_fmt;
273 for_each_rawref(warn_if_dangling_symref, &data);
276 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
278 struct warn_if_dangling_data data;
282 data.refnames = refnames;
283 data.msg_fmt = msg_fmt;
284 for_each_rawref(warn_if_dangling_symref, &data);
287 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
289 return for_each_ref_in("refs/tags/", fn, cb_data);
292 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
294 return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
297 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
299 return for_each_ref_in("refs/heads/", fn, cb_data);
302 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
304 return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
307 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
309 return for_each_ref_in("refs/remotes/", fn, cb_data);
312 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
314 return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
317 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
319 struct strbuf buf = STRBUF_INIT;
321 struct object_id oid;
324 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
325 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, oid.hash, &flag))
326 ret = fn(buf.buf, &oid, flag, cb_data);
327 strbuf_release(&buf);
332 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
333 const char *prefix, void *cb_data)
335 struct strbuf real_pattern = STRBUF_INIT;
336 struct ref_filter filter;
339 if (!prefix && !starts_with(pattern, "refs/"))
340 strbuf_addstr(&real_pattern, "refs/");
342 strbuf_addstr(&real_pattern, prefix);
343 strbuf_addstr(&real_pattern, pattern);
345 if (!has_glob_specials(pattern)) {
346 /* Append implied '/' '*' if not present. */
347 strbuf_complete(&real_pattern, '/');
348 /* No need to check for '*', there is none. */
349 strbuf_addch(&real_pattern, '*');
352 filter.pattern = real_pattern.buf;
354 filter.cb_data = cb_data;
355 ret = for_each_ref(filter_refs, &filter);
357 strbuf_release(&real_pattern);
361 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
363 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
366 const char *prettify_refname(const char *name)
369 starts_with(name, "refs/heads/") ? 11 :
370 starts_with(name, "refs/tags/") ? 10 :
371 starts_with(name, "refs/remotes/") ? 13 :
375 static const char *ref_rev_parse_rules[] = {
381 "refs/remotes/%.*s/HEAD",
385 int refname_match(const char *abbrev_name, const char *full_name)
388 const int abbrev_name_len = strlen(abbrev_name);
390 for (p = ref_rev_parse_rules; *p; p++) {
391 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
400 * *string and *len will only be substituted, and *string returned (for
401 * later free()ing) if the string passed in is a magic short-hand form
404 static char *substitute_branch_name(const char **string, int *len)
406 struct strbuf buf = STRBUF_INIT;
407 int ret = interpret_branch_name(*string, *len, &buf);
411 *string = strbuf_detach(&buf, &size);
413 return (char *)*string;
419 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
421 char *last_branch = substitute_branch_name(&str, &len);
426 for (p = ref_rev_parse_rules; *p; p++) {
427 char fullref[PATH_MAX];
428 unsigned char sha1_from_ref[20];
429 unsigned char *this_result;
432 this_result = refs_found ? sha1_from_ref : sha1;
433 mksnpath(fullref, sizeof(fullref), *p, len, str);
434 r = resolve_ref_unsafe(fullref, RESOLVE_REF_READING,
439 if (!warn_ambiguous_refs)
441 } else if ((flag & REF_ISSYMREF) && strcmp(fullref, "HEAD")) {
442 warning("ignoring dangling symref %s.", fullref);
443 } else if ((flag & REF_ISBROKEN) && strchr(fullref, '/')) {
444 warning("ignoring broken ref %s.", fullref);
451 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
453 char *last_branch = substitute_branch_name(&str, &len);
458 for (p = ref_rev_parse_rules; *p; p++) {
459 unsigned char hash[20];
461 const char *ref, *it;
463 mksnpath(path, sizeof(path), *p, len, str);
464 ref = resolve_ref_unsafe(path, RESOLVE_REF_READING,
468 if (reflog_exists(path))
470 else if (strcmp(ref, path) && reflog_exists(ref))
478 if (!warn_ambiguous_refs)
485 static int is_per_worktree_ref(const char *refname)
487 return !strcmp(refname, "HEAD") ||
488 starts_with(refname, "refs/bisect/");
491 static int is_pseudoref_syntax(const char *refname)
495 for (c = refname; *c; c++) {
496 if (!isupper(*c) && *c != '-' && *c != '_')
503 enum ref_type ref_type(const char *refname)
505 if (is_per_worktree_ref(refname))
506 return REF_TYPE_PER_WORKTREE;
507 if (is_pseudoref_syntax(refname))
508 return REF_TYPE_PSEUDOREF;
509 return REF_TYPE_NORMAL;
512 static int write_pseudoref(const char *pseudoref, const unsigned char *sha1,
513 const unsigned char *old_sha1, struct strbuf *err)
515 const char *filename;
517 static struct lock_file lock;
518 struct strbuf buf = STRBUF_INIT;
521 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
523 filename = git_path("%s", pseudoref);
524 fd = hold_lock_file_for_update(&lock, filename, LOCK_DIE_ON_ERROR);
526 strbuf_addf(err, "could not open '%s' for writing: %s",
527 filename, strerror(errno));
532 unsigned char actual_old_sha1[20];
534 if (read_ref(pseudoref, actual_old_sha1))
535 die("could not read ref '%s'", pseudoref);
536 if (hashcmp(actual_old_sha1, old_sha1)) {
537 strbuf_addf(err, "unexpected sha1 when writing '%s'", pseudoref);
538 rollback_lock_file(&lock);
543 if (write_in_full(fd, buf.buf, buf.len) != buf.len) {
544 strbuf_addf(err, "could not write to '%s'", filename);
545 rollback_lock_file(&lock);
549 commit_lock_file(&lock);
552 strbuf_release(&buf);
556 static int delete_pseudoref(const char *pseudoref, const unsigned char *old_sha1)
558 static struct lock_file lock;
559 const char *filename;
561 filename = git_path("%s", pseudoref);
563 if (old_sha1 && !is_null_sha1(old_sha1)) {
565 unsigned char actual_old_sha1[20];
567 fd = hold_lock_file_for_update(&lock, filename,
570 die_errno(_("Could not open '%s' for writing"), filename);
571 if (read_ref(pseudoref, actual_old_sha1))
572 die("could not read ref '%s'", pseudoref);
573 if (hashcmp(actual_old_sha1, old_sha1)) {
574 warning("Unexpected sha1 when deleting %s", pseudoref);
575 rollback_lock_file(&lock);
580 rollback_lock_file(&lock);
588 int delete_ref(const char *refname, const unsigned char *old_sha1,
591 struct ref_transaction *transaction;
592 struct strbuf err = STRBUF_INIT;
594 if (ref_type(refname) == REF_TYPE_PSEUDOREF)
595 return delete_pseudoref(refname, old_sha1);
597 transaction = ref_transaction_begin(&err);
599 ref_transaction_delete(transaction, refname, old_sha1,
600 flags, NULL, &err) ||
601 ref_transaction_commit(transaction, &err)) {
602 error("%s", err.buf);
603 ref_transaction_free(transaction);
604 strbuf_release(&err);
607 ref_transaction_free(transaction);
608 strbuf_release(&err);
612 int copy_reflog_msg(char *buf, const char *msg)
619 while ((c = *msg++)) {
620 if (wasspace && isspace(c))
622 wasspace = isspace(c);
627 while (buf < cp && isspace(cp[-1]))
633 int should_autocreate_reflog(const char *refname)
635 if (!log_all_ref_updates)
637 return starts_with(refname, "refs/heads/") ||
638 starts_with(refname, "refs/remotes/") ||
639 starts_with(refname, "refs/notes/") ||
640 !strcmp(refname, "HEAD");
643 int is_branch(const char *refname)
645 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
648 struct read_ref_at_cb {
650 unsigned long at_time;
656 unsigned char osha1[20];
657 unsigned char nsha1[20];
661 unsigned long *cutoff_time;
666 static int read_ref_at_ent(unsigned char *osha1, unsigned char *nsha1,
667 const char *email, unsigned long timestamp, int tz,
668 const char *message, void *cb_data)
670 struct read_ref_at_cb *cb = cb_data;
674 cb->date = timestamp;
676 if (timestamp <= cb->at_time || cb->cnt == 0) {
678 *cb->msg = xstrdup(message);
680 *cb->cutoff_time = timestamp;
684 *cb->cutoff_cnt = cb->reccnt - 1;
686 * we have not yet updated cb->[n|o]sha1 so they still
687 * hold the values for the previous record.
689 if (!is_null_sha1(cb->osha1)) {
690 hashcpy(cb->sha1, nsha1);
691 if (hashcmp(cb->osha1, nsha1))
692 warning("Log for ref %s has gap after %s.",
693 cb->refname, show_date(cb->date, cb->tz, DATE_MODE(RFC2822)));
695 else if (cb->date == cb->at_time)
696 hashcpy(cb->sha1, nsha1);
697 else if (hashcmp(nsha1, cb->sha1))
698 warning("Log for ref %s unexpectedly ended on %s.",
699 cb->refname, show_date(cb->date, cb->tz,
700 DATE_MODE(RFC2822)));
701 hashcpy(cb->osha1, osha1);
702 hashcpy(cb->nsha1, nsha1);
706 hashcpy(cb->osha1, osha1);
707 hashcpy(cb->nsha1, nsha1);
713 static int read_ref_at_ent_oldest(unsigned char *osha1, unsigned char *nsha1,
714 const char *email, unsigned long timestamp,
715 int tz, const char *message, void *cb_data)
717 struct read_ref_at_cb *cb = cb_data;
720 *cb->msg = xstrdup(message);
722 *cb->cutoff_time = timestamp;
726 *cb->cutoff_cnt = cb->reccnt;
727 hashcpy(cb->sha1, osha1);
728 if (is_null_sha1(cb->sha1))
729 hashcpy(cb->sha1, nsha1);
730 /* We just want the first entry */
734 int read_ref_at(const char *refname, unsigned int flags, unsigned long at_time, int cnt,
735 unsigned char *sha1, char **msg,
736 unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
738 struct read_ref_at_cb cb;
740 memset(&cb, 0, sizeof(cb));
741 cb.refname = refname;
742 cb.at_time = at_time;
745 cb.cutoff_time = cutoff_time;
746 cb.cutoff_tz = cutoff_tz;
747 cb.cutoff_cnt = cutoff_cnt;
750 for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
753 if (flags & GET_SHA1_QUIETLY)
756 die("Log for %s is empty.", refname);
761 for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
766 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
770 return xcalloc(1, sizeof(struct ref_transaction));
773 void ref_transaction_free(struct ref_transaction *transaction)
780 for (i = 0; i < transaction->nr; i++) {
781 free(transaction->updates[i]->msg);
782 free(transaction->updates[i]);
784 free(transaction->updates);
788 struct ref_update *ref_transaction_add_update(
789 struct ref_transaction *transaction,
790 const char *refname, unsigned int flags,
791 const unsigned char *new_sha1,
792 const unsigned char *old_sha1,
795 struct ref_update *update;
797 if (transaction->state != REF_TRANSACTION_OPEN)
798 die("BUG: update called for transaction that is not open");
800 if ((flags & REF_ISPRUNING) && !(flags & REF_NODEREF))
801 die("BUG: REF_ISPRUNING set without REF_NODEREF");
803 FLEX_ALLOC_STR(update, refname, refname);
804 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
805 transaction->updates[transaction->nr++] = update;
807 update->flags = flags;
809 if (flags & REF_HAVE_NEW)
810 hashcpy(update->new_sha1, new_sha1);
811 if (flags & REF_HAVE_OLD)
812 hashcpy(update->old_sha1, old_sha1);
814 update->msg = xstrdup(msg);
818 int ref_transaction_update(struct ref_transaction *transaction,
820 const unsigned char *new_sha1,
821 const unsigned char *old_sha1,
822 unsigned int flags, const char *msg,
827 if ((new_sha1 && !is_null_sha1(new_sha1)) ?
828 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL) :
829 !refname_is_safe(refname)) {
830 strbuf_addf(err, "refusing to update ref with bad name '%s'",
835 flags |= (new_sha1 ? REF_HAVE_NEW : 0) | (old_sha1 ? REF_HAVE_OLD : 0);
837 ref_transaction_add_update(transaction, refname, flags,
838 new_sha1, old_sha1, msg);
842 int ref_transaction_create(struct ref_transaction *transaction,
844 const unsigned char *new_sha1,
845 unsigned int flags, const char *msg,
848 if (!new_sha1 || is_null_sha1(new_sha1))
849 die("BUG: create called without valid new_sha1");
850 return ref_transaction_update(transaction, refname, new_sha1,
851 null_sha1, flags, msg, err);
854 int ref_transaction_delete(struct ref_transaction *transaction,
856 const unsigned char *old_sha1,
857 unsigned int flags, const char *msg,
860 if (old_sha1 && is_null_sha1(old_sha1))
861 die("BUG: delete called with old_sha1 set to zeros");
862 return ref_transaction_update(transaction, refname,
867 int ref_transaction_verify(struct ref_transaction *transaction,
869 const unsigned char *old_sha1,
874 die("BUG: verify called with old_sha1 set to NULL");
875 return ref_transaction_update(transaction, refname,
880 int update_ref(const char *msg, const char *refname,
881 const unsigned char *new_sha1, const unsigned char *old_sha1,
882 unsigned int flags, enum action_on_err onerr)
884 struct ref_transaction *t = NULL;
885 struct strbuf err = STRBUF_INIT;
888 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
889 ret = write_pseudoref(refname, new_sha1, old_sha1, &err);
891 t = ref_transaction_begin(&err);
893 ref_transaction_update(t, refname, new_sha1, old_sha1,
895 ref_transaction_commit(t, &err)) {
897 ref_transaction_free(t);
901 const char *str = "update_ref failed for ref '%s': %s";
904 case UPDATE_REFS_MSG_ON_ERR:
905 error(str, refname, err.buf);
907 case UPDATE_REFS_DIE_ON_ERR:
908 die(str, refname, err.buf);
910 case UPDATE_REFS_QUIET_ON_ERR:
913 strbuf_release(&err);
916 strbuf_release(&err);
918 ref_transaction_free(t);
922 char *shorten_unambiguous_ref(const char *refname, int strict)
925 static char **scanf_fmts;
931 * Pre-generate scanf formats from ref_rev_parse_rules[].
932 * Generate a format suitable for scanf from a
933 * ref_rev_parse_rules rule by interpolating "%s" at the
934 * location of the "%.*s".
936 size_t total_len = 0;
939 /* the rule list is NULL terminated, count them first */
940 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
941 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
942 total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
944 scanf_fmts = xmalloc(st_add(st_mult(nr_rules, sizeof(char *)), total_len));
947 for (i = 0; i < nr_rules; i++) {
948 assert(offset < total_len);
949 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
950 offset += snprintf(scanf_fmts[i], total_len - offset,
951 ref_rev_parse_rules[i], 2, "%s") + 1;
955 /* bail out if there are no rules */
957 return xstrdup(refname);
959 /* buffer for scanf result, at most refname must fit */
960 short_name = xstrdup(refname);
962 /* skip first rule, it will always match */
963 for (i = nr_rules - 1; i > 0 ; --i) {
965 int rules_to_fail = i;
968 if (1 != sscanf(refname, scanf_fmts[i], short_name))
971 short_name_len = strlen(short_name);
974 * in strict mode, all (except the matched one) rules
975 * must fail to resolve to a valid non-ambiguous ref
978 rules_to_fail = nr_rules;
981 * check if the short name resolves to a valid ref,
982 * but use only rules prior to the matched one
984 for (j = 0; j < rules_to_fail; j++) {
985 const char *rule = ref_rev_parse_rules[j];
986 char refname[PATH_MAX];
988 /* skip matched rule */
993 * the short name is ambiguous, if it resolves
994 * (with this previous rule) to a valid ref
995 * read_ref() returns 0 on success
997 mksnpath(refname, sizeof(refname),
998 rule, short_name_len, short_name);
999 if (ref_exists(refname))
1004 * short name is non-ambiguous if all previous rules
1005 * haven't resolved to a valid ref
1007 if (j == rules_to_fail)
1012 return xstrdup(refname);
1015 static struct string_list *hide_refs;
1017 int parse_hide_refs_config(const char *var, const char *value, const char *section)
1019 if (!strcmp("transfer.hiderefs", var) ||
1020 /* NEEDSWORK: use parse_config_key() once both are merged */
1021 (starts_with(var, section) && var[strlen(section)] == '.' &&
1022 !strcmp(var + strlen(section), ".hiderefs"))) {
1027 return config_error_nonbool(var);
1028 ref = xstrdup(value);
1030 while (len && ref[len - 1] == '/')
1033 hide_refs = xcalloc(1, sizeof(*hide_refs));
1034 hide_refs->strdup_strings = 1;
1036 string_list_append(hide_refs, ref);
1041 int ref_is_hidden(const char *refname, const char *refname_full)
1047 for (i = hide_refs->nr - 1; i >= 0; i--) {
1048 const char *match = hide_refs->items[i].string;
1049 const char *subject;
1053 if (*match == '!') {
1058 if (*match == '^') {
1059 subject = refname_full;
1065 /* refname can be NULL when namespaces are used. */
1066 if (!subject || !starts_with(subject, match))
1068 len = strlen(match);
1069 if (!subject[len] || subject[len] == '/')
1075 const char *find_descendant_ref(const char *dirname,
1076 const struct string_list *extras,
1077 const struct string_list *skip)
1085 * Look at the place where dirname would be inserted into
1086 * extras. If there is an entry at that position that starts
1087 * with dirname (remember, dirname includes the trailing
1088 * slash) and is not in skip, then we have a conflict.
1090 for (pos = string_list_find_insert_index(extras, dirname, 0);
1091 pos < extras->nr; pos++) {
1092 const char *extra_refname = extras->items[pos].string;
1094 if (!starts_with(extra_refname, dirname))
1097 if (!skip || !string_list_has_string(skip, extra_refname))
1098 return extra_refname;
1103 int rename_ref_available(const char *old_refname, const char *new_refname)
1105 struct string_list skip = STRING_LIST_INIT_NODUP;
1106 struct strbuf err = STRBUF_INIT;
1109 string_list_insert(&skip, old_refname);
1110 ok = !verify_refname_available(new_refname, NULL, &skip, &err);
1112 error("%s", err.buf);
1114 string_list_clear(&skip, 0);
1115 strbuf_release(&err);
1119 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1121 struct object_id oid;
1125 if (resolve_gitlink_ref(submodule, "HEAD", oid.hash) == 0)
1126 return fn("HEAD", &oid, 0, cb_data);
1131 if (!read_ref_full("HEAD", RESOLVE_REF_READING, oid.hash, &flag))
1132 return fn("HEAD", &oid, flag, cb_data);
1137 int head_ref(each_ref_fn fn, void *cb_data)
1139 return head_ref_submodule(NULL, fn, cb_data);
1143 * Call fn for each reference in the specified submodule for which the
1144 * refname begins with prefix. If trim is non-zero, then trim that
1145 * many characters off the beginning of each refname before passing
1146 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1147 * include broken references in the iteration. If fn ever returns a
1148 * non-zero value, stop the iteration and return that value;
1149 * otherwise, return 0.
1151 static int do_for_each_ref(const char *submodule, const char *prefix,
1152 each_ref_fn fn, int trim, int flags, void *cb_data)
1154 struct ref_store *refs = get_ref_store(submodule);
1155 struct ref_iterator *iter;
1160 iter = files_ref_iterator_begin(submodule, prefix, flags);
1161 iter = prefix_ref_iterator_begin(iter, prefix, trim);
1163 return do_for_each_ref_iterator(iter, fn, cb_data);
1166 int for_each_ref(each_ref_fn fn, void *cb_data)
1168 return do_for_each_ref(NULL, "", fn, 0, 0, cb_data);
1171 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1173 return do_for_each_ref(submodule, "", fn, 0, 0, cb_data);
1176 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1178 return do_for_each_ref(NULL, prefix, fn, strlen(prefix), 0, cb_data);
1181 int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data, unsigned int broken)
1183 unsigned int flag = 0;
1186 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1187 return do_for_each_ref(NULL, prefix, fn, 0, flag, cb_data);
1190 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
1191 each_ref_fn fn, void *cb_data)
1193 return do_for_each_ref(submodule, prefix, fn, strlen(prefix), 0, cb_data);
1196 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1198 return do_for_each_ref(NULL, git_replace_ref_base, fn,
1199 strlen(git_replace_ref_base), 0, cb_data);
1202 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1204 struct strbuf buf = STRBUF_INIT;
1206 strbuf_addf(&buf, "%srefs/", get_git_namespace());
1207 ret = do_for_each_ref(NULL, buf.buf, fn, 0, 0, cb_data);
1208 strbuf_release(&buf);
1212 int for_each_rawref(each_ref_fn fn, void *cb_data)
1214 return do_for_each_ref(NULL, "", fn, 0,
1215 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1218 /* This function needs to return a meaningful errno on failure */
1219 static const char *resolve_ref_recursively(struct ref_store *refs,
1220 const char *refname,
1222 unsigned char *sha1, int *flags)
1224 static struct strbuf sb_refname = STRBUF_INIT;
1229 flags = &unused_flags;
1233 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1234 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1235 !refname_is_safe(refname)) {
1241 * dwim_ref() uses REF_ISBROKEN to distinguish between
1242 * missing refs and refs that were present but invalid,
1243 * to complain about the latter to stderr.
1245 * We don't know whether the ref exists, so don't set
1248 *flags |= REF_BAD_NAME;
1251 for (symref_count = 0; symref_count < SYMREF_MAXDEPTH; symref_count++) {
1252 unsigned int read_flags = 0;
1254 if (refs->be->read_raw_ref(refs, refname,
1255 sha1, &sb_refname, &read_flags)) {
1256 *flags |= read_flags;
1257 if (errno != ENOENT || (resolve_flags & RESOLVE_REF_READING))
1260 if (*flags & REF_BAD_NAME)
1261 *flags |= REF_ISBROKEN;
1265 *flags |= read_flags;
1267 if (!(read_flags & REF_ISSYMREF)) {
1268 if (*flags & REF_BAD_NAME) {
1270 *flags |= REF_ISBROKEN;
1275 refname = sb_refname.buf;
1276 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1280 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1281 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1282 !refname_is_safe(refname)) {
1287 *flags |= REF_ISBROKEN | REF_BAD_NAME;
1295 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1296 unsigned char *sha1, int *flags)
1298 return resolve_ref_recursively(get_ref_store(NULL), refname,
1299 resolve_flags, sha1, flags);
1302 int resolve_gitlink_ref(const char *submodule, const char *refname,
1303 unsigned char *sha1)
1305 size_t len = strlen(submodule);
1306 struct ref_store *refs;
1309 while (len && submodule[len - 1] == '/')
1315 if (submodule[len]) {
1316 /* We need to strip off one or more trailing slashes */
1317 char *stripped = xmemdupz(submodule, len);
1319 refs = get_ref_store(stripped);
1322 refs = get_ref_store(submodule);
1328 if (!resolve_ref_recursively(refs, refname, 0, sha1, &flags) ||
1334 /* A pointer to the ref_store for the main repository: */
1335 static struct ref_store *main_ref_store;
1337 /* A linked list of ref_stores for submodules: */
1338 static struct ref_store *submodule_ref_stores;
1340 void base_ref_store_init(struct ref_store *refs,
1341 const struct ref_storage_be *be,
1342 const char *submodule)
1347 die("BUG: main_ref_store initialized twice");
1349 refs->submodule = "";
1351 main_ref_store = refs;
1353 if (lookup_ref_store(submodule))
1354 die("BUG: ref_store for submodule '%s' initialized twice",
1357 refs->submodule = xstrdup(submodule);
1358 refs->next = submodule_ref_stores;
1359 submodule_ref_stores = refs;
1363 struct ref_store *ref_store_init(const char *submodule)
1365 const char *be_name = "files";
1366 struct ref_storage_be *be = find_ref_storage_backend(be_name);
1369 die("BUG: reference backend %s is unknown", be_name);
1371 if (!submodule || !*submodule)
1372 return be->init(NULL);
1374 return be->init(submodule);
1377 struct ref_store *lookup_ref_store(const char *submodule)
1379 struct ref_store *refs;
1381 if (!submodule || !*submodule)
1382 return main_ref_store;
1384 for (refs = submodule_ref_stores; refs; refs = refs->next) {
1385 if (!strcmp(submodule, refs->submodule))
1392 struct ref_store *get_ref_store(const char *submodule)
1394 struct ref_store *refs;
1396 if (!submodule || !*submodule) {
1397 refs = lookup_ref_store(NULL);
1400 refs = ref_store_init(NULL);
1402 refs = lookup_ref_store(submodule);
1405 struct strbuf submodule_sb = STRBUF_INIT;
1407 strbuf_addstr(&submodule_sb, submodule);
1408 if (is_nonbare_repository_dir(&submodule_sb))
1409 refs = ref_store_init(submodule);
1410 strbuf_release(&submodule_sb);
1417 void assert_main_repository(struct ref_store *refs, const char *caller)
1419 if (*refs->submodule)
1420 die("BUG: %s called for a submodule", caller);
1423 /* backend functions */
1424 int pack_refs(unsigned int flags)
1426 struct ref_store *refs = get_ref_store(NULL);
1428 return refs->be->pack_refs(refs, flags);
1431 int ref_transaction_commit(struct ref_transaction *transaction,
1434 struct ref_store *refs = get_ref_store(NULL);
1436 return refs->be->transaction_commit(refs, transaction, err);
1439 int verify_refname_available(const char *refname,
1440 const struct string_list *extra,
1441 const struct string_list *skip,
1444 struct ref_store *refs = get_ref_store(NULL);
1446 return refs->be->verify_refname_available(refs, refname, extra, skip, err);