2 * The backend-independent part of the reference module.
10 #include "refs/refs-internal.h"
13 #include "submodule.h"
16 * List of all available backends
18 static struct ref_storage_be *refs_backends = &refs_be_files;
20 static struct ref_storage_be *find_ref_storage_backend(const char *name)
22 struct ref_storage_be *be;
23 for (be = refs_backends; be; be = be->next)
24 if (!strcmp(be->name, name))
29 int ref_storage_backend_exists(const char *name)
31 return find_ref_storage_backend(name) != NULL;
35 * How to handle various characters in refnames:
36 * 0: An acceptable character for refs
38 * 2: ., look for a preceding . to reject .. in refs
39 * 3: {, look for a preceding @ to reject @{ in refs
40 * 4: A bad character: ASCII control characters, and
41 * ":", "?", "[", "\", "^", "~", SP, or TAB
42 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
44 static unsigned char refname_disposition[256] = {
45 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
46 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
47 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
48 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
49 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
50 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
51 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
52 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
56 * Try to read one refname component from the front of refname.
57 * Return the length of the component found, or -1 if the component is
58 * not legal. It is legal if it is something reasonable to have under
59 * ".git/refs/"; We do not like it if:
61 * - any path component of it begins with ".", or
62 * - it has double dots "..", or
63 * - it has ASCII control characters, or
64 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
65 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
66 * - it ends with a "/", or
67 * - it ends with ".lock", or
68 * - it contains a "@{" portion
70 static int check_refname_component(const char *refname, int *flags)
75 for (cp = refname; ; cp++) {
77 unsigned char disp = refname_disposition[ch];
83 return -1; /* Refname contains "..". */
87 return -1; /* Refname contains "@{". */
92 if (!(*flags & REFNAME_REFSPEC_PATTERN))
93 return -1; /* refspec can't be a pattern */
96 * Unset the pattern flag so that we only accept
97 * a single asterisk for one side of refspec.
99 *flags &= ~ REFNAME_REFSPEC_PATTERN;
106 return 0; /* Component has zero length. */
107 if (refname[0] == '.')
108 return -1; /* Component starts with '.'. */
109 if (cp - refname >= LOCK_SUFFIX_LEN &&
110 !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
111 return -1; /* Refname ends with ".lock". */
115 int check_refname_format(const char *refname, int flags)
117 int component_len, component_count = 0;
119 if (!strcmp(refname, "@"))
120 /* Refname is a single character '@'. */
124 /* We are at the start of a path component. */
125 component_len = check_refname_component(refname, &flags);
126 if (component_len <= 0)
130 if (refname[component_len] == '\0')
132 /* Skip to next component. */
133 refname += component_len + 1;
136 if (refname[component_len - 1] == '.')
137 return -1; /* Refname ends with '.'. */
138 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
139 return -1; /* Refname has only one component. */
143 int refname_is_safe(const char *refname)
147 if (skip_prefix(refname, "refs/", &rest)) {
150 size_t restlen = strlen(rest);
152 /* rest must not be empty, or start or end with "/" */
153 if (!restlen || *rest == '/' || rest[restlen - 1] == '/')
157 * Does the refname try to escape refs/?
158 * For example: refs/foo/../bar is safe but refs/foo/../../bar
161 buf = xmallocz(restlen);
162 result = !normalize_path_copy(buf, rest) && !strcmp(buf, rest);
168 if (!isupper(*refname) && *refname != '_')
175 char *refs_resolve_refdup(struct ref_store *refs,
176 const char *refname, int resolve_flags,
177 unsigned char *sha1, int *flags)
181 result = refs_resolve_ref_unsafe(refs, refname, resolve_flags,
183 return xstrdup_or_null(result);
186 char *resolve_refdup(const char *refname, int resolve_flags,
187 unsigned char *sha1, int *flags)
189 return refs_resolve_refdup(get_main_ref_store(),
190 refname, resolve_flags,
194 /* The argument to filter_refs */
201 int refs_read_ref_full(struct ref_store *refs, const char *refname,
202 int resolve_flags, unsigned char *sha1, int *flags)
204 if (refs_resolve_ref_unsafe(refs, refname, resolve_flags, sha1, flags))
209 int read_ref_full(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
211 return refs_read_ref_full(get_main_ref_store(), refname,
212 resolve_flags, sha1, flags);
215 int read_ref(const char *refname, unsigned char *sha1)
217 return read_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);
220 int ref_exists(const char *refname)
222 unsigned char sha1[20];
223 return !!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);
226 static int filter_refs(const char *refname, const struct object_id *oid,
227 int flags, void *data)
229 struct ref_filter *filter = (struct ref_filter *)data;
231 if (wildmatch(filter->pattern, refname, 0, NULL))
233 return filter->fn(refname, oid, flags, filter->cb_data);
236 enum peel_status peel_object(const unsigned char *name, unsigned char *sha1)
238 struct object *o = lookup_unknown_object(name);
240 if (o->type == OBJ_NONE) {
241 int type = sha1_object_info(name, NULL);
242 if (type < 0 || !object_as_type(o, type, 0))
246 if (o->type != OBJ_TAG)
249 o = deref_tag_noverify(o);
253 hashcpy(sha1, o->oid.hash);
257 struct warn_if_dangling_data {
260 const struct string_list *refnames;
264 static int warn_if_dangling_symref(const char *refname, const struct object_id *oid,
265 int flags, void *cb_data)
267 struct warn_if_dangling_data *d = cb_data;
268 const char *resolves_to;
269 struct object_id junk;
271 if (!(flags & REF_ISSYMREF))
274 resolves_to = resolve_ref_unsafe(refname, 0, junk.hash, NULL);
277 ? strcmp(resolves_to, d->refname)
278 : !string_list_has_string(d->refnames, resolves_to))) {
282 fprintf(d->fp, d->msg_fmt, refname);
287 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
289 struct warn_if_dangling_data data;
292 data.refname = refname;
293 data.refnames = NULL;
294 data.msg_fmt = msg_fmt;
295 for_each_rawref(warn_if_dangling_symref, &data);
298 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
300 struct warn_if_dangling_data data;
304 data.refnames = refnames;
305 data.msg_fmt = msg_fmt;
306 for_each_rawref(warn_if_dangling_symref, &data);
309 int refs_for_each_tag_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
311 return refs_for_each_ref_in(refs, "refs/tags/", fn, cb_data);
314 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
316 return refs_for_each_tag_ref(get_main_ref_store(), fn, cb_data);
319 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
321 return refs_for_each_tag_ref(get_submodule_ref_store(submodule),
325 int refs_for_each_branch_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
327 return refs_for_each_ref_in(refs, "refs/heads/", fn, cb_data);
330 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
332 return refs_for_each_branch_ref(get_main_ref_store(), fn, cb_data);
335 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
337 return refs_for_each_branch_ref(get_submodule_ref_store(submodule),
341 int refs_for_each_remote_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
343 return refs_for_each_ref_in(refs, "refs/remotes/", fn, cb_data);
346 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
348 return refs_for_each_remote_ref(get_main_ref_store(), fn, cb_data);
351 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
353 return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
357 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
359 struct strbuf buf = STRBUF_INIT;
361 struct object_id oid;
364 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
365 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, oid.hash, &flag))
366 ret = fn(buf.buf, &oid, flag, cb_data);
367 strbuf_release(&buf);
372 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
373 const char *prefix, void *cb_data)
375 struct strbuf real_pattern = STRBUF_INIT;
376 struct ref_filter filter;
379 if (!prefix && !starts_with(pattern, "refs/"))
380 strbuf_addstr(&real_pattern, "refs/");
382 strbuf_addstr(&real_pattern, prefix);
383 strbuf_addstr(&real_pattern, pattern);
385 if (!has_glob_specials(pattern)) {
386 /* Append implied '/' '*' if not present. */
387 strbuf_complete(&real_pattern, '/');
388 /* No need to check for '*', there is none. */
389 strbuf_addch(&real_pattern, '*');
392 filter.pattern = real_pattern.buf;
394 filter.cb_data = cb_data;
395 ret = for_each_ref(filter_refs, &filter);
397 strbuf_release(&real_pattern);
401 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
403 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
406 const char *prettify_refname(const char *name)
408 if (skip_prefix(name, "refs/heads/", &name) ||
409 skip_prefix(name, "refs/tags/", &name) ||
410 skip_prefix(name, "refs/remotes/", &name))
415 static const char *ref_rev_parse_rules[] = {
421 "refs/remotes/%.*s/HEAD",
425 int refname_match(const char *abbrev_name, const char *full_name)
428 const int abbrev_name_len = strlen(abbrev_name);
430 for (p = ref_rev_parse_rules; *p; p++) {
431 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
440 * *string and *len will only be substituted, and *string returned (for
441 * later free()ing) if the string passed in is a magic short-hand form
444 static char *substitute_branch_name(const char **string, int *len)
446 struct strbuf buf = STRBUF_INIT;
447 int ret = interpret_branch_name(*string, *len, &buf, 0);
451 *string = strbuf_detach(&buf, &size);
453 return (char *)*string;
459 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
461 char *last_branch = substitute_branch_name(&str, &len);
462 int refs_found = expand_ref(str, len, sha1, ref);
467 int expand_ref(const char *str, int len, unsigned char *sha1, char **ref)
471 struct strbuf fullref = STRBUF_INIT;
474 for (p = ref_rev_parse_rules; *p; p++) {
475 unsigned char sha1_from_ref[20];
476 unsigned char *this_result;
479 this_result = refs_found ? sha1_from_ref : sha1;
480 strbuf_reset(&fullref);
481 strbuf_addf(&fullref, *p, len, str);
482 r = resolve_ref_unsafe(fullref.buf, RESOLVE_REF_READING,
487 if (!warn_ambiguous_refs)
489 } else if ((flag & REF_ISSYMREF) && strcmp(fullref.buf, "HEAD")) {
490 warning("ignoring dangling symref %s.", fullref.buf);
491 } else if ((flag & REF_ISBROKEN) && strchr(fullref.buf, '/')) {
492 warning("ignoring broken ref %s.", fullref.buf);
495 strbuf_release(&fullref);
499 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
501 char *last_branch = substitute_branch_name(&str, &len);
504 struct strbuf path = STRBUF_INIT;
507 for (p = ref_rev_parse_rules; *p; p++) {
508 unsigned char hash[20];
509 const char *ref, *it;
512 strbuf_addf(&path, *p, len, str);
513 ref = resolve_ref_unsafe(path.buf, RESOLVE_REF_READING,
517 if (reflog_exists(path.buf))
519 else if (strcmp(ref, path.buf) && reflog_exists(ref))
527 if (!warn_ambiguous_refs)
530 strbuf_release(&path);
535 static int is_per_worktree_ref(const char *refname)
537 return !strcmp(refname, "HEAD") ||
538 starts_with(refname, "refs/bisect/");
541 static int is_pseudoref_syntax(const char *refname)
545 for (c = refname; *c; c++) {
546 if (!isupper(*c) && *c != '-' && *c != '_')
553 enum ref_type ref_type(const char *refname)
555 if (is_per_worktree_ref(refname))
556 return REF_TYPE_PER_WORKTREE;
557 if (is_pseudoref_syntax(refname))
558 return REF_TYPE_PSEUDOREF;
559 return REF_TYPE_NORMAL;
562 static int write_pseudoref(const char *pseudoref, const unsigned char *sha1,
563 const unsigned char *old_sha1, struct strbuf *err)
565 const char *filename;
567 static struct lock_file lock;
568 struct strbuf buf = STRBUF_INIT;
571 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
573 filename = git_path("%s", pseudoref);
574 fd = hold_lock_file_for_update(&lock, filename, LOCK_DIE_ON_ERROR);
576 strbuf_addf(err, "could not open '%s' for writing: %s",
577 filename, strerror(errno));
582 unsigned char actual_old_sha1[20];
584 if (read_ref(pseudoref, actual_old_sha1))
585 die("could not read ref '%s'", pseudoref);
586 if (hashcmp(actual_old_sha1, old_sha1)) {
587 strbuf_addf(err, "unexpected sha1 when writing '%s'", pseudoref);
588 rollback_lock_file(&lock);
593 if (write_in_full(fd, buf.buf, buf.len) != buf.len) {
594 strbuf_addf(err, "could not write to '%s'", filename);
595 rollback_lock_file(&lock);
599 commit_lock_file(&lock);
602 strbuf_release(&buf);
606 static int delete_pseudoref(const char *pseudoref, const unsigned char *old_sha1)
608 static struct lock_file lock;
609 const char *filename;
611 filename = git_path("%s", pseudoref);
613 if (old_sha1 && !is_null_sha1(old_sha1)) {
615 unsigned char actual_old_sha1[20];
617 fd = hold_lock_file_for_update(&lock, filename,
620 die_errno(_("Could not open '%s' for writing"), filename);
621 if (read_ref(pseudoref, actual_old_sha1))
622 die("could not read ref '%s'", pseudoref);
623 if (hashcmp(actual_old_sha1, old_sha1)) {
624 warning("Unexpected sha1 when deleting %s", pseudoref);
625 rollback_lock_file(&lock);
630 rollback_lock_file(&lock);
638 int refs_delete_ref(struct ref_store *refs, const char *msg,
640 const unsigned char *old_sha1,
643 struct ref_transaction *transaction;
644 struct strbuf err = STRBUF_INIT;
646 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
647 assert(refs == get_main_ref_store());
648 return delete_pseudoref(refname, old_sha1);
651 transaction = ref_store_transaction_begin(refs, &err);
653 ref_transaction_delete(transaction, refname, old_sha1,
655 ref_transaction_commit(transaction, &err)) {
656 error("%s", err.buf);
657 ref_transaction_free(transaction);
658 strbuf_release(&err);
661 ref_transaction_free(transaction);
662 strbuf_release(&err);
666 int delete_ref(const char *msg, const char *refname,
667 const unsigned char *old_sha1, unsigned int flags)
669 return refs_delete_ref(get_main_ref_store(), msg, refname,
673 int copy_reflog_msg(char *buf, const char *msg)
680 while ((c = *msg++)) {
681 if (wasspace && isspace(c))
683 wasspace = isspace(c);
688 while (buf < cp && isspace(cp[-1]))
694 int should_autocreate_reflog(const char *refname)
696 switch (log_all_ref_updates) {
697 case LOG_REFS_ALWAYS:
699 case LOG_REFS_NORMAL:
700 return starts_with(refname, "refs/heads/") ||
701 starts_with(refname, "refs/remotes/") ||
702 starts_with(refname, "refs/notes/") ||
703 !strcmp(refname, "HEAD");
709 int is_branch(const char *refname)
711 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
714 struct read_ref_at_cb {
716 unsigned long at_time;
722 unsigned char osha1[20];
723 unsigned char nsha1[20];
727 unsigned long *cutoff_time;
732 static int read_ref_at_ent(struct object_id *ooid, struct object_id *noid,
733 const char *email, unsigned long timestamp, int tz,
734 const char *message, void *cb_data)
736 struct read_ref_at_cb *cb = cb_data;
740 cb->date = timestamp;
742 if (timestamp <= cb->at_time || cb->cnt == 0) {
744 *cb->msg = xstrdup(message);
746 *cb->cutoff_time = timestamp;
750 *cb->cutoff_cnt = cb->reccnt - 1;
752 * we have not yet updated cb->[n|o]sha1 so they still
753 * hold the values for the previous record.
755 if (!is_null_sha1(cb->osha1)) {
756 hashcpy(cb->sha1, noid->hash);
757 if (hashcmp(cb->osha1, noid->hash))
758 warning("Log for ref %s has gap after %s.",
759 cb->refname, show_date(cb->date, cb->tz, DATE_MODE(RFC2822)));
761 else if (cb->date == cb->at_time)
762 hashcpy(cb->sha1, noid->hash);
763 else if (hashcmp(noid->hash, cb->sha1))
764 warning("Log for ref %s unexpectedly ended on %s.",
765 cb->refname, show_date(cb->date, cb->tz,
766 DATE_MODE(RFC2822)));
767 hashcpy(cb->osha1, ooid->hash);
768 hashcpy(cb->nsha1, noid->hash);
772 hashcpy(cb->osha1, ooid->hash);
773 hashcpy(cb->nsha1, noid->hash);
779 static int read_ref_at_ent_oldest(struct object_id *ooid, struct object_id *noid,
780 const char *email, unsigned long timestamp,
781 int tz, const char *message, void *cb_data)
783 struct read_ref_at_cb *cb = cb_data;
786 *cb->msg = xstrdup(message);
788 *cb->cutoff_time = timestamp;
792 *cb->cutoff_cnt = cb->reccnt;
793 hashcpy(cb->sha1, ooid->hash);
794 if (is_null_sha1(cb->sha1))
795 hashcpy(cb->sha1, noid->hash);
796 /* We just want the first entry */
800 int read_ref_at(const char *refname, unsigned int flags, unsigned long at_time, int cnt,
801 unsigned char *sha1, char **msg,
802 unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
804 struct read_ref_at_cb cb;
806 memset(&cb, 0, sizeof(cb));
807 cb.refname = refname;
808 cb.at_time = at_time;
811 cb.cutoff_time = cutoff_time;
812 cb.cutoff_tz = cutoff_tz;
813 cb.cutoff_cnt = cutoff_cnt;
816 for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
819 if (flags & GET_SHA1_QUIETLY)
822 die("Log for %s is empty.", refname);
827 for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
832 struct ref_transaction *ref_store_transaction_begin(struct ref_store *refs,
835 struct ref_transaction *tr;
838 tr = xcalloc(1, sizeof(struct ref_transaction));
839 tr->ref_store = refs;
843 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
845 return ref_store_transaction_begin(get_main_ref_store(), err);
848 void ref_transaction_free(struct ref_transaction *transaction)
855 for (i = 0; i < transaction->nr; i++) {
856 free(transaction->updates[i]->msg);
857 free(transaction->updates[i]);
859 free(transaction->updates);
863 struct ref_update *ref_transaction_add_update(
864 struct ref_transaction *transaction,
865 const char *refname, unsigned int flags,
866 const unsigned char *new_sha1,
867 const unsigned char *old_sha1,
870 struct ref_update *update;
872 if (transaction->state != REF_TRANSACTION_OPEN)
873 die("BUG: update called for transaction that is not open");
875 if ((flags & REF_ISPRUNING) && !(flags & REF_NODEREF))
876 die("BUG: REF_ISPRUNING set without REF_NODEREF");
878 FLEX_ALLOC_STR(update, refname, refname);
879 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
880 transaction->updates[transaction->nr++] = update;
882 update->flags = flags;
884 if (flags & REF_HAVE_NEW)
885 hashcpy(update->new_sha1, new_sha1);
886 if (flags & REF_HAVE_OLD)
887 hashcpy(update->old_sha1, old_sha1);
888 update->msg = xstrdup_or_null(msg);
892 int ref_transaction_update(struct ref_transaction *transaction,
894 const unsigned char *new_sha1,
895 const unsigned char *old_sha1,
896 unsigned int flags, const char *msg,
901 if ((new_sha1 && !is_null_sha1(new_sha1)) ?
902 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL) :
903 !refname_is_safe(refname)) {
904 strbuf_addf(err, "refusing to update ref with bad name '%s'",
909 flags |= (new_sha1 ? REF_HAVE_NEW : 0) | (old_sha1 ? REF_HAVE_OLD : 0);
911 ref_transaction_add_update(transaction, refname, flags,
912 new_sha1, old_sha1, msg);
916 int ref_transaction_create(struct ref_transaction *transaction,
918 const unsigned char *new_sha1,
919 unsigned int flags, const char *msg,
922 if (!new_sha1 || is_null_sha1(new_sha1))
923 die("BUG: create called without valid new_sha1");
924 return ref_transaction_update(transaction, refname, new_sha1,
925 null_sha1, flags, msg, err);
928 int ref_transaction_delete(struct ref_transaction *transaction,
930 const unsigned char *old_sha1,
931 unsigned int flags, const char *msg,
934 if (old_sha1 && is_null_sha1(old_sha1))
935 die("BUG: delete called with old_sha1 set to zeros");
936 return ref_transaction_update(transaction, refname,
941 int ref_transaction_verify(struct ref_transaction *transaction,
943 const unsigned char *old_sha1,
948 die("BUG: verify called with old_sha1 set to NULL");
949 return ref_transaction_update(transaction, refname,
954 int update_ref_oid(const char *msg, const char *refname,
955 const struct object_id *new_oid, const struct object_id *old_oid,
956 unsigned int flags, enum action_on_err onerr)
958 return update_ref(msg, refname, new_oid ? new_oid->hash : NULL,
959 old_oid ? old_oid->hash : NULL, flags, onerr);
962 int refs_update_ref(struct ref_store *refs, const char *msg,
963 const char *refname, const unsigned char *new_sha1,
964 const unsigned char *old_sha1, unsigned int flags,
965 enum action_on_err onerr)
967 struct ref_transaction *t = NULL;
968 struct strbuf err = STRBUF_INIT;
971 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
972 assert(refs == get_main_ref_store());
973 ret = write_pseudoref(refname, new_sha1, old_sha1, &err);
975 t = ref_store_transaction_begin(refs, &err);
977 ref_transaction_update(t, refname, new_sha1, old_sha1,
979 ref_transaction_commit(t, &err)) {
981 ref_transaction_free(t);
985 const char *str = "update_ref failed for ref '%s': %s";
988 case UPDATE_REFS_MSG_ON_ERR:
989 error(str, refname, err.buf);
991 case UPDATE_REFS_DIE_ON_ERR:
992 die(str, refname, err.buf);
994 case UPDATE_REFS_QUIET_ON_ERR:
997 strbuf_release(&err);
1000 strbuf_release(&err);
1002 ref_transaction_free(t);
1006 int update_ref(const char *msg, const char *refname,
1007 const unsigned char *new_sha1,
1008 const unsigned char *old_sha1,
1009 unsigned int flags, enum action_on_err onerr)
1011 return refs_update_ref(get_main_ref_store(), msg, refname, new_sha1,
1012 old_sha1, flags, onerr);
1015 char *shorten_unambiguous_ref(const char *refname, int strict)
1018 static char **scanf_fmts;
1019 static int nr_rules;
1021 struct strbuf resolved_buf = STRBUF_INIT;
1025 * Pre-generate scanf formats from ref_rev_parse_rules[].
1026 * Generate a format suitable for scanf from a
1027 * ref_rev_parse_rules rule by interpolating "%s" at the
1028 * location of the "%.*s".
1030 size_t total_len = 0;
1033 /* the rule list is NULL terminated, count them first */
1034 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
1035 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
1036 total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
1038 scanf_fmts = xmalloc(st_add(st_mult(sizeof(char *), nr_rules), total_len));
1041 for (i = 0; i < nr_rules; i++) {
1042 assert(offset < total_len);
1043 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
1044 offset += snprintf(scanf_fmts[i], total_len - offset,
1045 ref_rev_parse_rules[i], 2, "%s") + 1;
1049 /* bail out if there are no rules */
1051 return xstrdup(refname);
1053 /* buffer for scanf result, at most refname must fit */
1054 short_name = xstrdup(refname);
1056 /* skip first rule, it will always match */
1057 for (i = nr_rules - 1; i > 0 ; --i) {
1059 int rules_to_fail = i;
1062 if (1 != sscanf(refname, scanf_fmts[i], short_name))
1065 short_name_len = strlen(short_name);
1068 * in strict mode, all (except the matched one) rules
1069 * must fail to resolve to a valid non-ambiguous ref
1072 rules_to_fail = nr_rules;
1075 * check if the short name resolves to a valid ref,
1076 * but use only rules prior to the matched one
1078 for (j = 0; j < rules_to_fail; j++) {
1079 const char *rule = ref_rev_parse_rules[j];
1081 /* skip matched rule */
1086 * the short name is ambiguous, if it resolves
1087 * (with this previous rule) to a valid ref
1088 * read_ref() returns 0 on success
1090 strbuf_reset(&resolved_buf);
1091 strbuf_addf(&resolved_buf, rule,
1092 short_name_len, short_name);
1093 if (ref_exists(resolved_buf.buf))
1098 * short name is non-ambiguous if all previous rules
1099 * haven't resolved to a valid ref
1101 if (j == rules_to_fail) {
1102 strbuf_release(&resolved_buf);
1107 strbuf_release(&resolved_buf);
1109 return xstrdup(refname);
1112 static struct string_list *hide_refs;
1114 int parse_hide_refs_config(const char *var, const char *value, const char *section)
1117 if (!strcmp("transfer.hiderefs", var) ||
1118 (!parse_config_key(var, section, NULL, NULL, &key) &&
1119 !strcmp(key, "hiderefs"))) {
1124 return config_error_nonbool(var);
1125 ref = xstrdup(value);
1127 while (len && ref[len - 1] == '/')
1130 hide_refs = xcalloc(1, sizeof(*hide_refs));
1131 hide_refs->strdup_strings = 1;
1133 string_list_append(hide_refs, ref);
1138 int ref_is_hidden(const char *refname, const char *refname_full)
1144 for (i = hide_refs->nr - 1; i >= 0; i--) {
1145 const char *match = hide_refs->items[i].string;
1146 const char *subject;
1150 if (*match == '!') {
1155 if (*match == '^') {
1156 subject = refname_full;
1162 /* refname can be NULL when namespaces are used. */
1163 if (!subject || !starts_with(subject, match))
1165 len = strlen(match);
1166 if (!subject[len] || subject[len] == '/')
1172 const char *find_descendant_ref(const char *dirname,
1173 const struct string_list *extras,
1174 const struct string_list *skip)
1182 * Look at the place where dirname would be inserted into
1183 * extras. If there is an entry at that position that starts
1184 * with dirname (remember, dirname includes the trailing
1185 * slash) and is not in skip, then we have a conflict.
1187 for (pos = string_list_find_insert_index(extras, dirname, 0);
1188 pos < extras->nr; pos++) {
1189 const char *extra_refname = extras->items[pos].string;
1191 if (!starts_with(extra_refname, dirname))
1194 if (!skip || !string_list_has_string(skip, extra_refname))
1195 return extra_refname;
1200 int refs_rename_ref_available(struct ref_store *refs,
1201 const char *old_refname,
1202 const char *new_refname)
1204 struct string_list skip = STRING_LIST_INIT_NODUP;
1205 struct strbuf err = STRBUF_INIT;
1208 string_list_insert(&skip, old_refname);
1209 ok = !refs_verify_refname_available(refs, new_refname,
1212 error("%s", err.buf);
1214 string_list_clear(&skip, 0);
1215 strbuf_release(&err);
1219 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1221 struct object_id oid;
1225 if (resolve_gitlink_ref(submodule, "HEAD", oid.hash) == 0)
1226 return fn("HEAD", &oid, 0, cb_data);
1231 if (!read_ref_full("HEAD", RESOLVE_REF_READING, oid.hash, &flag))
1232 return fn("HEAD", &oid, flag, cb_data);
1237 int head_ref(each_ref_fn fn, void *cb_data)
1239 return head_ref_submodule(NULL, fn, cb_data);
1242 struct ref_iterator *refs_ref_iterator_begin(
1243 struct ref_store *refs,
1244 const char *prefix, int trim, int flags)
1246 struct ref_iterator *iter;
1248 iter = refs->be->iterator_begin(refs, prefix, flags);
1249 iter = prefix_ref_iterator_begin(iter, prefix, trim);
1255 * Call fn for each reference in the specified submodule for which the
1256 * refname begins with prefix. If trim is non-zero, then trim that
1257 * many characters off the beginning of each refname before passing
1258 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1259 * include broken references in the iteration. If fn ever returns a
1260 * non-zero value, stop the iteration and return that value;
1261 * otherwise, return 0.
1263 static int do_for_each_ref(struct ref_store *refs, const char *prefix,
1264 each_ref_fn fn, int trim, int flags, void *cb_data)
1266 struct ref_iterator *iter;
1271 iter = refs_ref_iterator_begin(refs, prefix, trim, flags);
1273 return do_for_each_ref_iterator(iter, fn, cb_data);
1276 int refs_for_each_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1278 return do_for_each_ref(refs, "", fn, 0, 0, cb_data);
1281 int for_each_ref(each_ref_fn fn, void *cb_data)
1283 return refs_for_each_ref(get_main_ref_store(), fn, cb_data);
1286 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1288 return refs_for_each_ref(get_submodule_ref_store(submodule), fn, cb_data);
1291 int refs_for_each_ref_in(struct ref_store *refs, const char *prefix,
1292 each_ref_fn fn, void *cb_data)
1294 return do_for_each_ref(refs, prefix, fn, strlen(prefix), 0, cb_data);
1297 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1299 return refs_for_each_ref_in(get_main_ref_store(), prefix, fn, cb_data);
1302 int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data, unsigned int broken)
1304 unsigned int flag = 0;
1307 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1308 return do_for_each_ref(get_main_ref_store(),
1309 prefix, fn, 0, flag, cb_data);
1312 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
1313 each_ref_fn fn, void *cb_data)
1315 return refs_for_each_ref_in(get_submodule_ref_store(submodule),
1316 prefix, fn, cb_data);
1319 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1321 return do_for_each_ref(get_main_ref_store(),
1322 git_replace_ref_base, fn,
1323 strlen(git_replace_ref_base),
1327 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1329 struct strbuf buf = STRBUF_INIT;
1331 strbuf_addf(&buf, "%srefs/", get_git_namespace());
1332 ret = do_for_each_ref(get_main_ref_store(),
1333 buf.buf, fn, 0, 0, cb_data);
1334 strbuf_release(&buf);
1338 int refs_for_each_rawref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1340 return do_for_each_ref(refs, "", fn, 0,
1341 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1344 int for_each_rawref(each_ref_fn fn, void *cb_data)
1346 return refs_for_each_rawref(get_main_ref_store(), fn, cb_data);
1349 int refs_read_raw_ref(struct ref_store *ref_store,
1350 const char *refname, unsigned char *sha1,
1351 struct strbuf *referent, unsigned int *type)
1353 return ref_store->be->read_raw_ref(ref_store, refname, sha1, referent, type);
1356 /* This function needs to return a meaningful errno on failure */
1357 const char *refs_resolve_ref_unsafe(struct ref_store *refs,
1358 const char *refname,
1360 unsigned char *sha1, int *flags)
1362 static struct strbuf sb_refname = STRBUF_INIT;
1367 flags = &unused_flags;
1371 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1372 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1373 !refname_is_safe(refname)) {
1379 * dwim_ref() uses REF_ISBROKEN to distinguish between
1380 * missing refs and refs that were present but invalid,
1381 * to complain about the latter to stderr.
1383 * We don't know whether the ref exists, so don't set
1386 *flags |= REF_BAD_NAME;
1389 for (symref_count = 0; symref_count < SYMREF_MAXDEPTH; symref_count++) {
1390 unsigned int read_flags = 0;
1392 if (refs_read_raw_ref(refs, refname,
1393 sha1, &sb_refname, &read_flags)) {
1394 *flags |= read_flags;
1395 if (errno != ENOENT || (resolve_flags & RESOLVE_REF_READING))
1398 if (*flags & REF_BAD_NAME)
1399 *flags |= REF_ISBROKEN;
1403 *flags |= read_flags;
1405 if (!(read_flags & REF_ISSYMREF)) {
1406 if (*flags & REF_BAD_NAME) {
1408 *flags |= REF_ISBROKEN;
1413 refname = sb_refname.buf;
1414 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1418 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1419 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1420 !refname_is_safe(refname)) {
1425 *flags |= REF_ISBROKEN | REF_BAD_NAME;
1433 /* backend functions */
1434 int refs_init_db(struct strbuf *err)
1436 struct ref_store *refs = get_main_ref_store();
1438 return refs->be->init_db(refs, err);
1441 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1442 unsigned char *sha1, int *flags)
1444 return refs_resolve_ref_unsafe(get_main_ref_store(), refname,
1445 resolve_flags, sha1, flags);
1448 int resolve_gitlink_ref(const char *submodule, const char *refname,
1449 unsigned char *sha1)
1451 size_t len = strlen(submodule);
1452 struct ref_store *refs;
1455 while (len && submodule[len - 1] == '/')
1461 if (submodule[len]) {
1462 /* We need to strip off one or more trailing slashes */
1463 char *stripped = xmemdupz(submodule, len);
1465 refs = get_submodule_ref_store(stripped);
1468 refs = get_submodule_ref_store(submodule);
1474 if (!refs_resolve_ref_unsafe(refs, refname, 0, sha1, &flags) ||
1480 struct submodule_hash_entry
1482 struct hashmap_entry ent; /* must be the first member! */
1484 struct ref_store *refs;
1486 /* NUL-terminated name of submodule: */
1487 char submodule[FLEX_ARRAY];
1490 static int submodule_hash_cmp(const void *entry, const void *entry_or_key,
1491 const void *keydata)
1493 const struct submodule_hash_entry *e1 = entry, *e2 = entry_or_key;
1494 const char *submodule = keydata ? keydata : e2->submodule;
1496 return strcmp(e1->submodule, submodule);
1499 static struct submodule_hash_entry *alloc_submodule_hash_entry(
1500 const char *submodule, struct ref_store *refs)
1502 struct submodule_hash_entry *entry;
1504 FLEX_ALLOC_STR(entry, submodule, submodule);
1505 hashmap_entry_init(entry, strhash(submodule));
1510 /* A pointer to the ref_store for the main repository: */
1511 static struct ref_store *main_ref_store;
1513 /* A hashmap of ref_stores, stored by submodule name: */
1514 static struct hashmap submodule_ref_stores;
1517 * Return the ref_store instance for the specified submodule. If that
1518 * ref_store hasn't been initialized yet, return NULL.
1520 static struct ref_store *lookup_submodule_ref_store(const char *submodule)
1522 struct submodule_hash_entry *entry;
1524 if (!submodule_ref_stores.tablesize)
1525 /* It's initialized on demand in register_ref_store(). */
1528 entry = hashmap_get_from_hash(&submodule_ref_stores,
1529 strhash(submodule), submodule);
1530 return entry ? entry->refs : NULL;
1534 * Create, record, and return a ref_store instance for the specified
1537 static struct ref_store *ref_store_init(const char *gitdir,
1540 const char *be_name = "files";
1541 struct ref_storage_be *be = find_ref_storage_backend(be_name);
1542 struct ref_store *refs;
1545 die("BUG: reference backend %s is unknown", be_name);
1547 refs = be->init(gitdir, flags);
1551 struct ref_store *get_main_ref_store(void)
1554 return main_ref_store;
1556 main_ref_store = ref_store_init(get_git_dir(),
1561 return main_ref_store;
1565 * Register the specified ref_store to be the one that should be used
1566 * for submodule. It is a fatal error to call this function twice for
1567 * the same submodule.
1569 static void register_submodule_ref_store(struct ref_store *refs,
1570 const char *submodule)
1572 if (!submodule_ref_stores.tablesize)
1573 hashmap_init(&submodule_ref_stores, submodule_hash_cmp, 0);
1575 if (hashmap_put(&submodule_ref_stores,
1576 alloc_submodule_hash_entry(submodule, refs)))
1577 die("BUG: ref_store for submodule '%s' initialized twice",
1581 struct ref_store *get_submodule_ref_store(const char *submodule)
1583 struct strbuf submodule_sb = STRBUF_INIT;
1584 struct ref_store *refs;
1587 if (!submodule || !*submodule) {
1589 * FIXME: This case is ideally not allowed. But that
1590 * can't happen until we clean up all the callers.
1592 return get_main_ref_store();
1595 refs = lookup_submodule_ref_store(submodule);
1599 strbuf_addstr(&submodule_sb, submodule);
1600 ret = is_nonbare_repository_dir(&submodule_sb);
1601 strbuf_release(&submodule_sb);
1605 ret = submodule_to_gitdir(&submodule_sb, submodule);
1607 strbuf_release(&submodule_sb);
1611 /* assume that add_submodule_odb() has been called */
1612 refs = ref_store_init(submodule_sb.buf,
1613 REF_STORE_READ | REF_STORE_ODB);
1614 register_submodule_ref_store(refs, submodule);
1616 strbuf_release(&submodule_sb);
1620 void base_ref_store_init(struct ref_store *refs,
1621 const struct ref_storage_be *be)
1626 /* backend functions */
1627 int refs_pack_refs(struct ref_store *refs, unsigned int flags)
1629 return refs->be->pack_refs(refs, flags);
1632 int refs_peel_ref(struct ref_store *refs, const char *refname,
1633 unsigned char *sha1)
1635 return refs->be->peel_ref(refs, refname, sha1);
1638 int peel_ref(const char *refname, unsigned char *sha1)
1640 return refs_peel_ref(get_main_ref_store(), refname, sha1);
1643 int refs_create_symref(struct ref_store *refs,
1644 const char *ref_target,
1645 const char *refs_heads_master,
1648 return refs->be->create_symref(refs, ref_target,
1653 int create_symref(const char *ref_target, const char *refs_heads_master,
1656 return refs_create_symref(get_main_ref_store(), ref_target,
1657 refs_heads_master, logmsg);
1660 int ref_transaction_commit(struct ref_transaction *transaction,
1663 struct ref_store *refs = transaction->ref_store;
1665 if (getenv(GIT_QUARANTINE_ENVIRONMENT)) {
1667 _("ref updates forbidden inside quarantine environment"));
1671 return refs->be->transaction_commit(refs, transaction, err);
1674 int refs_verify_refname_available(struct ref_store *refs,
1675 const char *refname,
1676 const struct string_list *extras,
1677 const struct string_list *skip,
1681 const char *extra_refname;
1682 struct strbuf dirname = STRBUF_INIT;
1683 struct strbuf referent = STRBUF_INIT;
1684 struct object_id oid;
1686 struct ref_iterator *iter;
1691 * For the sake of comments in this function, suppose that
1692 * refname is "refs/foo/bar".
1697 strbuf_grow(&dirname, strlen(refname) + 1);
1698 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
1699 /* Expand dirname to the new prefix, not including the trailing slash: */
1700 strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
1703 * We are still at a leading dir of the refname (e.g.,
1704 * "refs/foo"; if there is a reference with that name,
1705 * it is a conflict, *unless* it is in skip.
1707 if (skip && string_list_has_string(skip, dirname.buf))
1710 if (!refs_read_raw_ref(refs, dirname.buf, oid.hash, &referent, &type)) {
1711 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1712 dirname.buf, refname);
1716 if (extras && string_list_has_string(extras, dirname.buf)) {
1717 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1718 refname, dirname.buf);
1724 * We are at the leaf of our refname (e.g., "refs/foo/bar").
1725 * There is no point in searching for a reference with that
1726 * name, because a refname isn't considered to conflict with
1727 * itself. But we still need to check for references whose
1728 * names are in the "refs/foo/bar/" namespace, because they
1731 strbuf_addstr(&dirname, refname + dirname.len);
1732 strbuf_addch(&dirname, '/');
1734 iter = refs_ref_iterator_begin(refs, dirname.buf, 0,
1735 DO_FOR_EACH_INCLUDE_BROKEN);
1736 while ((ok = ref_iterator_advance(iter)) == ITER_OK) {
1738 string_list_has_string(skip, iter->refname))
1741 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1742 iter->refname, refname);
1743 ref_iterator_abort(iter);
1747 if (ok != ITER_DONE)
1748 die("BUG: error while iterating over references");
1750 extra_refname = find_descendant_ref(dirname.buf, extras, skip);
1752 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1753 refname, extra_refname);
1758 strbuf_release(&referent);
1759 strbuf_release(&dirname);
1763 int refs_for_each_reflog(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1765 struct ref_iterator *iter;
1767 iter = refs->be->reflog_iterator_begin(refs);
1769 return do_for_each_ref_iterator(iter, fn, cb_data);
1772 int for_each_reflog(each_ref_fn fn, void *cb_data)
1774 return refs_for_each_reflog(get_main_ref_store(), fn, cb_data);
1777 int refs_for_each_reflog_ent_reverse(struct ref_store *refs,
1778 const char *refname,
1779 each_reflog_ent_fn fn,
1782 return refs->be->for_each_reflog_ent_reverse(refs, refname,
1786 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn,
1789 return refs_for_each_reflog_ent_reverse(get_main_ref_store(),
1790 refname, fn, cb_data);
1793 int refs_for_each_reflog_ent(struct ref_store *refs, const char *refname,
1794 each_reflog_ent_fn fn, void *cb_data)
1796 return refs->be->for_each_reflog_ent(refs, refname, fn, cb_data);
1799 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn,
1802 return refs_for_each_reflog_ent(get_main_ref_store(), refname,
1806 int refs_reflog_exists(struct ref_store *refs, const char *refname)
1808 return refs->be->reflog_exists(refs, refname);
1811 int reflog_exists(const char *refname)
1813 return refs_reflog_exists(get_main_ref_store(), refname);
1816 int refs_create_reflog(struct ref_store *refs, const char *refname,
1817 int force_create, struct strbuf *err)
1819 return refs->be->create_reflog(refs, refname, force_create, err);
1822 int safe_create_reflog(const char *refname, int force_create,
1825 return refs_create_reflog(get_main_ref_store(), refname,
1829 int refs_delete_reflog(struct ref_store *refs, const char *refname)
1831 return refs->be->delete_reflog(refs, refname);
1834 int delete_reflog(const char *refname)
1836 return refs_delete_reflog(get_main_ref_store(), refname);
1839 int refs_reflog_expire(struct ref_store *refs,
1840 const char *refname, const unsigned char *sha1,
1842 reflog_expiry_prepare_fn prepare_fn,
1843 reflog_expiry_should_prune_fn should_prune_fn,
1844 reflog_expiry_cleanup_fn cleanup_fn,
1845 void *policy_cb_data)
1847 return refs->be->reflog_expire(refs, refname, sha1, flags,
1848 prepare_fn, should_prune_fn,
1849 cleanup_fn, policy_cb_data);
1852 int reflog_expire(const char *refname, const unsigned char *sha1,
1854 reflog_expiry_prepare_fn prepare_fn,
1855 reflog_expiry_should_prune_fn should_prune_fn,
1856 reflog_expiry_cleanup_fn cleanup_fn,
1857 void *policy_cb_data)
1859 return refs_reflog_expire(get_main_ref_store(),
1860 refname, sha1, flags,
1861 prepare_fn, should_prune_fn,
1862 cleanup_fn, policy_cb_data);
1865 int initial_ref_transaction_commit(struct ref_transaction *transaction,
1868 struct ref_store *refs = transaction->ref_store;
1870 return refs->be->initial_transaction_commit(refs, transaction, err);
1873 int refs_delete_refs(struct ref_store *refs, struct string_list *refnames,
1876 return refs->be->delete_refs(refs, refnames, flags);
1879 int delete_refs(struct string_list *refnames, unsigned int flags)
1881 return refs_delete_refs(get_main_ref_store(), refnames, flags);
1884 int refs_rename_ref(struct ref_store *refs, const char *oldref,
1885 const char *newref, const char *logmsg)
1887 return refs->be->rename_ref(refs, oldref, newref, logmsg);
1890 int rename_ref(const char *oldref, const char *newref, const char *logmsg)
1892 return refs_rename_ref(get_main_ref_store(), oldref, newref, logmsg);