2 * The backend-independent part of the reference module.
11 #include "refs/refs-internal.h"
14 #include "submodule.h"
18 * List of all available backends
20 static struct ref_storage_be *refs_backends = &refs_be_files;
22 static struct ref_storage_be *find_ref_storage_backend(const char *name)
24 struct ref_storage_be *be;
25 for (be = refs_backends; be; be = be->next)
26 if (!strcmp(be->name, name))
31 int ref_storage_backend_exists(const char *name)
33 return find_ref_storage_backend(name) != NULL;
37 * How to handle various characters in refnames:
38 * 0: An acceptable character for refs
40 * 2: ., look for a preceding . to reject .. in refs
41 * 3: {, look for a preceding @ to reject @{ in refs
42 * 4: A bad character: ASCII control characters, and
43 * ":", "?", "[", "\", "^", "~", SP, or TAB
44 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
46 static unsigned char refname_disposition[256] = {
47 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
48 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
49 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
50 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
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, 4, 4, 0, 4, 0,
53 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
54 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
58 * Try to read one refname component from the front of refname.
59 * Return the length of the component found, or -1 if the component is
60 * not legal. It is legal if it is something reasonable to have under
61 * ".git/refs/"; We do not like it if:
63 * - any path component of it begins with ".", or
64 * - it has double dots "..", or
65 * - it has ASCII control characters, or
66 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
67 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
68 * - it ends with a "/", or
69 * - it ends with ".lock", or
70 * - it contains a "@{" portion
72 static int check_refname_component(const char *refname, int *flags)
77 for (cp = refname; ; cp++) {
79 unsigned char disp = refname_disposition[ch];
85 return -1; /* Refname contains "..". */
89 return -1; /* Refname contains "@{". */
94 if (!(*flags & REFNAME_REFSPEC_PATTERN))
95 return -1; /* refspec can't be a pattern */
98 * Unset the pattern flag so that we only accept
99 * a single asterisk for one side of refspec.
101 *flags &= ~ REFNAME_REFSPEC_PATTERN;
108 return 0; /* Component has zero length. */
109 if (refname[0] == '.')
110 return -1; /* Component starts with '.'. */
111 if (cp - refname >= LOCK_SUFFIX_LEN &&
112 !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
113 return -1; /* Refname ends with ".lock". */
117 int check_refname_format(const char *refname, int flags)
119 int component_len, component_count = 0;
121 if (!strcmp(refname, "@"))
122 /* Refname is a single character '@'. */
126 /* We are at the start of a path component. */
127 component_len = check_refname_component(refname, &flags);
128 if (component_len <= 0)
132 if (refname[component_len] == '\0')
134 /* Skip to next component. */
135 refname += component_len + 1;
138 if (refname[component_len - 1] == '.')
139 return -1; /* Refname ends with '.'. */
140 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
141 return -1; /* Refname has only one component. */
145 int refname_is_safe(const char *refname)
149 if (skip_prefix(refname, "refs/", &rest)) {
152 size_t restlen = strlen(rest);
154 /* rest must not be empty, or start or end with "/" */
155 if (!restlen || *rest == '/' || rest[restlen - 1] == '/')
159 * Does the refname try to escape refs/?
160 * For example: refs/foo/../bar is safe but refs/foo/../../bar
163 buf = xmallocz(restlen);
164 result = !normalize_path_copy(buf, rest) && !strcmp(buf, rest);
170 if (!isupper(*refname) && *refname != '_')
178 * Return true if refname, which has the specified oid and flags, can
179 * be resolved to an object in the database. If the referred-to object
180 * does not exist, emit a warning and return false.
182 int ref_resolves_to_object(const char *refname,
183 const struct object_id *oid,
186 if (flags & REF_ISBROKEN)
188 if (!has_sha1_file(oid->hash)) {
189 error("%s does not point to a valid object!", refname);
195 char *refs_resolve_refdup(struct ref_store *refs,
196 const char *refname, int resolve_flags,
197 unsigned char *sha1, int *flags)
201 result = refs_resolve_ref_unsafe(refs, refname, resolve_flags,
203 return xstrdup_or_null(result);
206 char *resolve_refdup(const char *refname, int resolve_flags,
207 unsigned char *sha1, int *flags)
209 return refs_resolve_refdup(get_main_ref_store(),
210 refname, resolve_flags,
214 /* The argument to filter_refs */
221 int refs_read_ref_full(struct ref_store *refs, const char *refname,
222 int resolve_flags, unsigned char *sha1, int *flags)
224 if (refs_resolve_ref_unsafe(refs, refname, resolve_flags, sha1, flags))
229 int read_ref_full(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
231 return refs_read_ref_full(get_main_ref_store(), refname,
232 resolve_flags, sha1, flags);
235 int read_ref(const char *refname, unsigned char *sha1)
237 return read_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);
240 int ref_exists(const char *refname)
242 unsigned char sha1[20];
243 return !!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);
246 static int filter_refs(const char *refname, const struct object_id *oid,
247 int flags, void *data)
249 struct ref_filter *filter = (struct ref_filter *)data;
251 if (wildmatch(filter->pattern, refname, 0))
253 return filter->fn(refname, oid, flags, filter->cb_data);
256 enum peel_status peel_object(const unsigned char *name, unsigned char *sha1)
258 struct object *o = lookup_unknown_object(name);
260 if (o->type == OBJ_NONE) {
261 int type = sha1_object_info(name, NULL);
262 if (type < 0 || !object_as_type(o, type, 0))
266 if (o->type != OBJ_TAG)
269 o = deref_tag_noverify(o);
273 hashcpy(sha1, o->oid.hash);
277 struct warn_if_dangling_data {
280 const struct string_list *refnames;
284 static int warn_if_dangling_symref(const char *refname, const struct object_id *oid,
285 int flags, void *cb_data)
287 struct warn_if_dangling_data *d = cb_data;
288 const char *resolves_to;
289 struct object_id junk;
291 if (!(flags & REF_ISSYMREF))
294 resolves_to = resolve_ref_unsafe(refname, 0, junk.hash, NULL);
297 ? strcmp(resolves_to, d->refname)
298 : !string_list_has_string(d->refnames, resolves_to))) {
302 fprintf(d->fp, d->msg_fmt, refname);
307 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
309 struct warn_if_dangling_data data;
312 data.refname = refname;
313 data.refnames = NULL;
314 data.msg_fmt = msg_fmt;
315 for_each_rawref(warn_if_dangling_symref, &data);
318 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
320 struct warn_if_dangling_data data;
324 data.refnames = refnames;
325 data.msg_fmt = msg_fmt;
326 for_each_rawref(warn_if_dangling_symref, &data);
329 int refs_for_each_tag_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
331 return refs_for_each_ref_in(refs, "refs/tags/", fn, cb_data);
334 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
336 return refs_for_each_tag_ref(get_main_ref_store(), fn, cb_data);
339 int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
341 return refs_for_each_tag_ref(get_submodule_ref_store(submodule),
345 int refs_for_each_branch_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
347 return refs_for_each_ref_in(refs, "refs/heads/", fn, cb_data);
350 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
352 return refs_for_each_branch_ref(get_main_ref_store(), fn, cb_data);
355 int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
357 return refs_for_each_branch_ref(get_submodule_ref_store(submodule),
361 int refs_for_each_remote_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
363 return refs_for_each_ref_in(refs, "refs/remotes/", fn, cb_data);
366 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
368 return refs_for_each_remote_ref(get_main_ref_store(), fn, cb_data);
371 int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
373 return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
377 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
379 struct strbuf buf = STRBUF_INIT;
381 struct object_id oid;
384 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
385 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, oid.hash, &flag))
386 ret = fn(buf.buf, &oid, flag, cb_data);
387 strbuf_release(&buf);
392 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
393 const char *prefix, void *cb_data)
395 struct strbuf real_pattern = STRBUF_INIT;
396 struct ref_filter filter;
399 if (!prefix && !starts_with(pattern, "refs/"))
400 strbuf_addstr(&real_pattern, "refs/");
402 strbuf_addstr(&real_pattern, prefix);
403 strbuf_addstr(&real_pattern, pattern);
405 if (!has_glob_specials(pattern)) {
406 /* Append implied '/' '*' if not present. */
407 strbuf_complete(&real_pattern, '/');
408 /* No need to check for '*', there is none. */
409 strbuf_addch(&real_pattern, '*');
412 filter.pattern = real_pattern.buf;
414 filter.cb_data = cb_data;
415 ret = for_each_ref(filter_refs, &filter);
417 strbuf_release(&real_pattern);
421 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
423 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
426 const char *prettify_refname(const char *name)
428 if (skip_prefix(name, "refs/heads/", &name) ||
429 skip_prefix(name, "refs/tags/", &name) ||
430 skip_prefix(name, "refs/remotes/", &name))
435 static const char *ref_rev_parse_rules[] = {
441 "refs/remotes/%.*s/HEAD",
445 int refname_match(const char *abbrev_name, const char *full_name)
448 const int abbrev_name_len = strlen(abbrev_name);
450 for (p = ref_rev_parse_rules; *p; p++) {
451 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
460 * *string and *len will only be substituted, and *string returned (for
461 * later free()ing) if the string passed in is a magic short-hand form
464 static char *substitute_branch_name(const char **string, int *len)
466 struct strbuf buf = STRBUF_INIT;
467 int ret = interpret_branch_name(*string, *len, &buf, 0);
471 *string = strbuf_detach(&buf, &size);
473 return (char *)*string;
479 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
481 char *last_branch = substitute_branch_name(&str, &len);
482 int refs_found = expand_ref(str, len, sha1, ref);
487 int expand_ref(const char *str, int len, unsigned char *sha1, char **ref)
491 struct strbuf fullref = STRBUF_INIT;
494 for (p = ref_rev_parse_rules; *p; p++) {
495 unsigned char sha1_from_ref[20];
496 unsigned char *this_result;
499 this_result = refs_found ? sha1_from_ref : sha1;
500 strbuf_reset(&fullref);
501 strbuf_addf(&fullref, *p, len, str);
502 r = resolve_ref_unsafe(fullref.buf, RESOLVE_REF_READING,
507 if (!warn_ambiguous_refs)
509 } else if ((flag & REF_ISSYMREF) && strcmp(fullref.buf, "HEAD")) {
510 warning("ignoring dangling symref %s.", fullref.buf);
511 } else if ((flag & REF_ISBROKEN) && strchr(fullref.buf, '/')) {
512 warning("ignoring broken ref %s.", fullref.buf);
515 strbuf_release(&fullref);
519 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
521 char *last_branch = substitute_branch_name(&str, &len);
524 struct strbuf path = STRBUF_INIT;
527 for (p = ref_rev_parse_rules; *p; p++) {
528 unsigned char hash[20];
529 const char *ref, *it;
532 strbuf_addf(&path, *p, len, str);
533 ref = resolve_ref_unsafe(path.buf, RESOLVE_REF_READING,
537 if (reflog_exists(path.buf))
539 else if (strcmp(ref, path.buf) && reflog_exists(ref))
547 if (!warn_ambiguous_refs)
550 strbuf_release(&path);
555 static int is_per_worktree_ref(const char *refname)
557 return !strcmp(refname, "HEAD") ||
558 starts_with(refname, "refs/bisect/");
561 static int is_pseudoref_syntax(const char *refname)
565 for (c = refname; *c; c++) {
566 if (!isupper(*c) && *c != '-' && *c != '_')
573 enum ref_type ref_type(const char *refname)
575 if (is_per_worktree_ref(refname))
576 return REF_TYPE_PER_WORKTREE;
577 if (is_pseudoref_syntax(refname))
578 return REF_TYPE_PSEUDOREF;
579 return REF_TYPE_NORMAL;
582 long get_files_ref_lock_timeout_ms(void)
584 static int configured = 0;
586 /* The default timeout is 100 ms: */
587 static int timeout_ms = 100;
590 git_config_get_int("core.filesreflocktimeout", &timeout_ms);
597 static int write_pseudoref(const char *pseudoref, const unsigned char *sha1,
598 const unsigned char *old_sha1, struct strbuf *err)
600 const char *filename;
602 static struct lock_file lock;
603 struct strbuf buf = STRBUF_INIT;
606 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
608 filename = git_path("%s", pseudoref);
609 fd = hold_lock_file_for_update_timeout(&lock, filename,
611 get_files_ref_lock_timeout_ms());
613 strbuf_addf(err, "could not open '%s' for writing: %s",
614 filename, strerror(errno));
619 unsigned char actual_old_sha1[20];
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 strbuf_addf(err, "unexpected sha1 when writing '%s'", pseudoref);
625 rollback_lock_file(&lock);
630 if (write_in_full(fd, buf.buf, buf.len) != buf.len) {
631 strbuf_addf(err, "could not write to '%s'", filename);
632 rollback_lock_file(&lock);
636 commit_lock_file(&lock);
639 strbuf_release(&buf);
643 static int delete_pseudoref(const char *pseudoref, const unsigned char *old_sha1)
645 static struct lock_file lock;
646 const char *filename;
648 filename = git_path("%s", pseudoref);
650 if (old_sha1 && !is_null_sha1(old_sha1)) {
652 unsigned char actual_old_sha1[20];
654 fd = hold_lock_file_for_update_timeout(
655 &lock, filename, LOCK_DIE_ON_ERROR,
656 get_files_ref_lock_timeout_ms());
658 die_errno(_("Could not open '%s' for writing"), filename);
659 if (read_ref(pseudoref, actual_old_sha1))
660 die("could not read ref '%s'", pseudoref);
661 if (hashcmp(actual_old_sha1, old_sha1)) {
662 warning("Unexpected sha1 when deleting %s", pseudoref);
663 rollback_lock_file(&lock);
668 rollback_lock_file(&lock);
676 int refs_delete_ref(struct ref_store *refs, const char *msg,
678 const unsigned char *old_sha1,
681 struct ref_transaction *transaction;
682 struct strbuf err = STRBUF_INIT;
684 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
685 assert(refs == get_main_ref_store());
686 return delete_pseudoref(refname, old_sha1);
689 transaction = ref_store_transaction_begin(refs, &err);
691 ref_transaction_delete(transaction, refname, old_sha1,
693 ref_transaction_commit(transaction, &err)) {
694 error("%s", err.buf);
695 ref_transaction_free(transaction);
696 strbuf_release(&err);
699 ref_transaction_free(transaction);
700 strbuf_release(&err);
704 int delete_ref(const char *msg, const char *refname,
705 const unsigned char *old_sha1, unsigned int flags)
707 return refs_delete_ref(get_main_ref_store(), msg, refname,
711 int copy_reflog_msg(char *buf, const char *msg)
718 while ((c = *msg++)) {
719 if (wasspace && isspace(c))
721 wasspace = isspace(c);
726 while (buf < cp && isspace(cp[-1]))
732 int should_autocreate_reflog(const char *refname)
734 switch (log_all_ref_updates) {
735 case LOG_REFS_ALWAYS:
737 case LOG_REFS_NORMAL:
738 return starts_with(refname, "refs/heads/") ||
739 starts_with(refname, "refs/remotes/") ||
740 starts_with(refname, "refs/notes/") ||
741 !strcmp(refname, "HEAD");
747 int is_branch(const char *refname)
749 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
752 struct read_ref_at_cb {
760 unsigned char osha1[20];
761 unsigned char nsha1[20];
765 timestamp_t *cutoff_time;
770 static int read_ref_at_ent(struct object_id *ooid, struct object_id *noid,
771 const char *email, timestamp_t timestamp, int tz,
772 const char *message, void *cb_data)
774 struct read_ref_at_cb *cb = cb_data;
778 cb->date = timestamp;
780 if (timestamp <= cb->at_time || cb->cnt == 0) {
782 *cb->msg = xstrdup(message);
784 *cb->cutoff_time = timestamp;
788 *cb->cutoff_cnt = cb->reccnt - 1;
790 * we have not yet updated cb->[n|o]sha1 so they still
791 * hold the values for the previous record.
793 if (!is_null_sha1(cb->osha1)) {
794 hashcpy(cb->sha1, noid->hash);
795 if (hashcmp(cb->osha1, noid->hash))
796 warning("Log for ref %s has gap after %s.",
797 cb->refname, show_date(cb->date, cb->tz, DATE_MODE(RFC2822)));
799 else if (cb->date == cb->at_time)
800 hashcpy(cb->sha1, noid->hash);
801 else if (hashcmp(noid->hash, cb->sha1))
802 warning("Log for ref %s unexpectedly ended on %s.",
803 cb->refname, show_date(cb->date, cb->tz,
804 DATE_MODE(RFC2822)));
805 hashcpy(cb->osha1, ooid->hash);
806 hashcpy(cb->nsha1, noid->hash);
810 hashcpy(cb->osha1, ooid->hash);
811 hashcpy(cb->nsha1, noid->hash);
817 static int read_ref_at_ent_oldest(struct object_id *ooid, struct object_id *noid,
818 const char *email, timestamp_t timestamp,
819 int tz, const char *message, void *cb_data)
821 struct read_ref_at_cb *cb = cb_data;
824 *cb->msg = xstrdup(message);
826 *cb->cutoff_time = timestamp;
830 *cb->cutoff_cnt = cb->reccnt;
831 hashcpy(cb->sha1, ooid->hash);
832 if (is_null_sha1(cb->sha1))
833 hashcpy(cb->sha1, noid->hash);
834 /* We just want the first entry */
838 int read_ref_at(const char *refname, unsigned int flags, timestamp_t at_time, int cnt,
839 unsigned char *sha1, char **msg,
840 timestamp_t *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
842 struct read_ref_at_cb cb;
844 memset(&cb, 0, sizeof(cb));
845 cb.refname = refname;
846 cb.at_time = at_time;
849 cb.cutoff_time = cutoff_time;
850 cb.cutoff_tz = cutoff_tz;
851 cb.cutoff_cnt = cutoff_cnt;
854 for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
857 if (flags & GET_OID_QUIETLY)
860 die("Log for %s is empty.", refname);
865 for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
870 struct ref_transaction *ref_store_transaction_begin(struct ref_store *refs,
873 struct ref_transaction *tr;
876 tr = xcalloc(1, sizeof(struct ref_transaction));
877 tr->ref_store = refs;
881 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
883 return ref_store_transaction_begin(get_main_ref_store(), err);
886 void ref_transaction_free(struct ref_transaction *transaction)
893 switch (transaction->state) {
894 case REF_TRANSACTION_OPEN:
895 case REF_TRANSACTION_CLOSED:
898 case REF_TRANSACTION_PREPARED:
899 die("BUG: free called on a prepared reference transaction");
902 die("BUG: unexpected reference transaction state");
906 for (i = 0; i < transaction->nr; i++) {
907 free(transaction->updates[i]->msg);
908 free(transaction->updates[i]);
910 free(transaction->updates);
914 struct ref_update *ref_transaction_add_update(
915 struct ref_transaction *transaction,
916 const char *refname, unsigned int flags,
917 const unsigned char *new_sha1,
918 const unsigned char *old_sha1,
921 struct ref_update *update;
923 if (transaction->state != REF_TRANSACTION_OPEN)
924 die("BUG: update called for transaction that is not open");
926 if ((flags & REF_ISPRUNING) && !(flags & REF_NODEREF))
927 die("BUG: REF_ISPRUNING set without REF_NODEREF");
929 FLEX_ALLOC_STR(update, refname, refname);
930 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
931 transaction->updates[transaction->nr++] = update;
933 update->flags = flags;
935 if (flags & REF_HAVE_NEW)
936 hashcpy(update->new_oid.hash, new_sha1);
937 if (flags & REF_HAVE_OLD)
938 hashcpy(update->old_oid.hash, old_sha1);
939 update->msg = xstrdup_or_null(msg);
943 int ref_transaction_update(struct ref_transaction *transaction,
945 const unsigned char *new_sha1,
946 const unsigned char *old_sha1,
947 unsigned int flags, const char *msg,
952 if ((new_sha1 && !is_null_sha1(new_sha1)) ?
953 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL) :
954 !refname_is_safe(refname)) {
955 strbuf_addf(err, "refusing to update ref with bad name '%s'",
960 flags |= (new_sha1 ? REF_HAVE_NEW : 0) | (old_sha1 ? REF_HAVE_OLD : 0);
962 ref_transaction_add_update(transaction, refname, flags,
963 new_sha1, old_sha1, msg);
967 int ref_transaction_create(struct ref_transaction *transaction,
969 const unsigned char *new_sha1,
970 unsigned int flags, const char *msg,
973 if (!new_sha1 || is_null_sha1(new_sha1))
974 die("BUG: create called without valid new_sha1");
975 return ref_transaction_update(transaction, refname, new_sha1,
976 null_sha1, flags, msg, err);
979 int ref_transaction_delete(struct ref_transaction *transaction,
981 const unsigned char *old_sha1,
982 unsigned int flags, const char *msg,
985 if (old_sha1 && is_null_sha1(old_sha1))
986 die("BUG: delete called with old_sha1 set to zeros");
987 return ref_transaction_update(transaction, refname,
992 int ref_transaction_verify(struct ref_transaction *transaction,
994 const unsigned char *old_sha1,
999 die("BUG: verify called with old_sha1 set to NULL");
1000 return ref_transaction_update(transaction, refname,
1005 int update_ref_oid(const char *msg, const char *refname,
1006 const struct object_id *new_oid, const struct object_id *old_oid,
1007 unsigned int flags, enum action_on_err onerr)
1009 return update_ref(msg, refname, new_oid ? new_oid->hash : NULL,
1010 old_oid ? old_oid->hash : NULL, flags, onerr);
1013 int refs_update_ref(struct ref_store *refs, const char *msg,
1014 const char *refname, const unsigned char *new_sha1,
1015 const unsigned char *old_sha1, unsigned int flags,
1016 enum action_on_err onerr)
1018 struct ref_transaction *t = NULL;
1019 struct strbuf err = STRBUF_INIT;
1022 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
1023 assert(refs == get_main_ref_store());
1024 ret = write_pseudoref(refname, new_sha1, old_sha1, &err);
1026 t = ref_store_transaction_begin(refs, &err);
1028 ref_transaction_update(t, refname, new_sha1, old_sha1,
1029 flags, msg, &err) ||
1030 ref_transaction_commit(t, &err)) {
1032 ref_transaction_free(t);
1036 const char *str = "update_ref failed for ref '%s': %s";
1039 case UPDATE_REFS_MSG_ON_ERR:
1040 error(str, refname, err.buf);
1042 case UPDATE_REFS_DIE_ON_ERR:
1043 die(str, refname, err.buf);
1045 case UPDATE_REFS_QUIET_ON_ERR:
1048 strbuf_release(&err);
1051 strbuf_release(&err);
1053 ref_transaction_free(t);
1057 int update_ref(const char *msg, const char *refname,
1058 const unsigned char *new_sha1,
1059 const unsigned char *old_sha1,
1060 unsigned int flags, enum action_on_err onerr)
1062 return refs_update_ref(get_main_ref_store(), msg, refname, new_sha1,
1063 old_sha1, flags, onerr);
1066 char *shorten_unambiguous_ref(const char *refname, int strict)
1069 static char **scanf_fmts;
1070 static int nr_rules;
1072 struct strbuf resolved_buf = STRBUF_INIT;
1076 * Pre-generate scanf formats from ref_rev_parse_rules[].
1077 * Generate a format suitable for scanf from a
1078 * ref_rev_parse_rules rule by interpolating "%s" at the
1079 * location of the "%.*s".
1081 size_t total_len = 0;
1084 /* the rule list is NULL terminated, count them first */
1085 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
1086 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
1087 total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
1089 scanf_fmts = xmalloc(st_add(st_mult(sizeof(char *), nr_rules), total_len));
1092 for (i = 0; i < nr_rules; i++) {
1093 assert(offset < total_len);
1094 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
1095 offset += snprintf(scanf_fmts[i], total_len - offset,
1096 ref_rev_parse_rules[i], 2, "%s") + 1;
1100 /* bail out if there are no rules */
1102 return xstrdup(refname);
1104 /* buffer for scanf result, at most refname must fit */
1105 short_name = xstrdup(refname);
1107 /* skip first rule, it will always match */
1108 for (i = nr_rules - 1; i > 0 ; --i) {
1110 int rules_to_fail = i;
1113 if (1 != sscanf(refname, scanf_fmts[i], short_name))
1116 short_name_len = strlen(short_name);
1119 * in strict mode, all (except the matched one) rules
1120 * must fail to resolve to a valid non-ambiguous ref
1123 rules_to_fail = nr_rules;
1126 * check if the short name resolves to a valid ref,
1127 * but use only rules prior to the matched one
1129 for (j = 0; j < rules_to_fail; j++) {
1130 const char *rule = ref_rev_parse_rules[j];
1132 /* skip matched rule */
1137 * the short name is ambiguous, if it resolves
1138 * (with this previous rule) to a valid ref
1139 * read_ref() returns 0 on success
1141 strbuf_reset(&resolved_buf);
1142 strbuf_addf(&resolved_buf, rule,
1143 short_name_len, short_name);
1144 if (ref_exists(resolved_buf.buf))
1149 * short name is non-ambiguous if all previous rules
1150 * haven't resolved to a valid ref
1152 if (j == rules_to_fail) {
1153 strbuf_release(&resolved_buf);
1158 strbuf_release(&resolved_buf);
1160 return xstrdup(refname);
1163 static struct string_list *hide_refs;
1165 int parse_hide_refs_config(const char *var, const char *value, const char *section)
1168 if (!strcmp("transfer.hiderefs", var) ||
1169 (!parse_config_key(var, section, NULL, NULL, &key) &&
1170 !strcmp(key, "hiderefs"))) {
1175 return config_error_nonbool(var);
1176 ref = xstrdup(value);
1178 while (len && ref[len - 1] == '/')
1181 hide_refs = xcalloc(1, sizeof(*hide_refs));
1182 hide_refs->strdup_strings = 1;
1184 string_list_append(hide_refs, ref);
1189 int ref_is_hidden(const char *refname, const char *refname_full)
1195 for (i = hide_refs->nr - 1; i >= 0; i--) {
1196 const char *match = hide_refs->items[i].string;
1197 const char *subject;
1201 if (*match == '!') {
1206 if (*match == '^') {
1207 subject = refname_full;
1213 /* refname can be NULL when namespaces are used. */
1215 skip_prefix(subject, match, &p) &&
1222 const char *find_descendant_ref(const char *dirname,
1223 const struct string_list *extras,
1224 const struct string_list *skip)
1232 * Look at the place where dirname would be inserted into
1233 * extras. If there is an entry at that position that starts
1234 * with dirname (remember, dirname includes the trailing
1235 * slash) and is not in skip, then we have a conflict.
1237 for (pos = string_list_find_insert_index(extras, dirname, 0);
1238 pos < extras->nr; pos++) {
1239 const char *extra_refname = extras->items[pos].string;
1241 if (!starts_with(extra_refname, dirname))
1244 if (!skip || !string_list_has_string(skip, extra_refname))
1245 return extra_refname;
1250 int refs_rename_ref_available(struct ref_store *refs,
1251 const char *old_refname,
1252 const char *new_refname)
1254 struct string_list skip = STRING_LIST_INIT_NODUP;
1255 struct strbuf err = STRBUF_INIT;
1258 string_list_insert(&skip, old_refname);
1259 ok = !refs_verify_refname_available(refs, new_refname,
1262 error("%s", err.buf);
1264 string_list_clear(&skip, 0);
1265 strbuf_release(&err);
1269 int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1271 struct object_id oid;
1275 if (resolve_gitlink_ref(submodule, "HEAD", oid.hash) == 0)
1276 return fn("HEAD", &oid, 0, cb_data);
1281 if (!read_ref_full("HEAD", RESOLVE_REF_READING, oid.hash, &flag))
1282 return fn("HEAD", &oid, flag, cb_data);
1287 int head_ref(each_ref_fn fn, void *cb_data)
1289 return head_ref_submodule(NULL, fn, cb_data);
1292 struct ref_iterator *refs_ref_iterator_begin(
1293 struct ref_store *refs,
1294 const char *prefix, int trim, int flags)
1296 struct ref_iterator *iter;
1298 if (ref_paranoia < 0)
1299 ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 0);
1301 flags |= DO_FOR_EACH_INCLUDE_BROKEN;
1303 iter = refs->be->iterator_begin(refs, prefix, flags);
1306 * `iterator_begin()` already takes care of prefix, but we
1307 * might need to do some trimming:
1310 iter = prefix_ref_iterator_begin(iter, "", trim);
1316 * Call fn for each reference in the specified submodule for which the
1317 * refname begins with prefix. If trim is non-zero, then trim that
1318 * many characters off the beginning of each refname before passing
1319 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1320 * include broken references in the iteration. If fn ever returns a
1321 * non-zero value, stop the iteration and return that value;
1322 * otherwise, return 0.
1324 static int do_for_each_ref(struct ref_store *refs, const char *prefix,
1325 each_ref_fn fn, int trim, int flags, void *cb_data)
1327 struct ref_iterator *iter;
1332 iter = refs_ref_iterator_begin(refs, prefix, trim, flags);
1334 return do_for_each_ref_iterator(iter, fn, cb_data);
1337 int refs_for_each_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1339 return do_for_each_ref(refs, "", fn, 0, 0, cb_data);
1342 int for_each_ref(each_ref_fn fn, void *cb_data)
1344 return refs_for_each_ref(get_main_ref_store(), fn, cb_data);
1347 int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1349 return refs_for_each_ref(get_submodule_ref_store(submodule), fn, cb_data);
1352 int refs_for_each_ref_in(struct ref_store *refs, const char *prefix,
1353 each_ref_fn fn, void *cb_data)
1355 return do_for_each_ref(refs, prefix, fn, strlen(prefix), 0, cb_data);
1358 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1360 return refs_for_each_ref_in(get_main_ref_store(), prefix, fn, cb_data);
1363 int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data, unsigned int broken)
1365 unsigned int flag = 0;
1368 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1369 return do_for_each_ref(get_main_ref_store(),
1370 prefix, fn, 0, flag, cb_data);
1373 int for_each_ref_in_submodule(const char *submodule, const char *prefix,
1374 each_ref_fn fn, void *cb_data)
1376 return refs_for_each_ref_in(get_submodule_ref_store(submodule),
1377 prefix, fn, cb_data);
1380 int for_each_fullref_in_submodule(const char *submodule, const char *prefix,
1381 each_ref_fn fn, void *cb_data,
1382 unsigned int broken)
1384 unsigned int flag = 0;
1387 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1388 return do_for_each_ref(get_submodule_ref_store(submodule),
1389 prefix, fn, 0, flag, cb_data);
1392 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1394 return do_for_each_ref(get_main_ref_store(),
1395 git_replace_ref_base, fn,
1396 strlen(git_replace_ref_base),
1400 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1402 struct strbuf buf = STRBUF_INIT;
1404 strbuf_addf(&buf, "%srefs/", get_git_namespace());
1405 ret = do_for_each_ref(get_main_ref_store(),
1406 buf.buf, fn, 0, 0, cb_data);
1407 strbuf_release(&buf);
1411 int refs_for_each_rawref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1413 return do_for_each_ref(refs, "", fn, 0,
1414 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1417 int for_each_rawref(each_ref_fn fn, void *cb_data)
1419 return refs_for_each_rawref(get_main_ref_store(), fn, cb_data);
1422 int refs_read_raw_ref(struct ref_store *ref_store,
1423 const char *refname, unsigned char *sha1,
1424 struct strbuf *referent, unsigned int *type)
1426 return ref_store->be->read_raw_ref(ref_store, refname, sha1, referent, type);
1429 /* This function needs to return a meaningful errno on failure */
1430 const char *refs_resolve_ref_unsafe(struct ref_store *refs,
1431 const char *refname,
1433 unsigned char *sha1, int *flags)
1435 static struct strbuf sb_refname = STRBUF_INIT;
1440 flags = &unused_flags;
1444 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1445 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1446 !refname_is_safe(refname)) {
1452 * dwim_ref() uses REF_ISBROKEN to distinguish between
1453 * missing refs and refs that were present but invalid,
1454 * to complain about the latter to stderr.
1456 * We don't know whether the ref exists, so don't set
1459 *flags |= REF_BAD_NAME;
1462 for (symref_count = 0; symref_count < SYMREF_MAXDEPTH; symref_count++) {
1463 unsigned int read_flags = 0;
1465 if (refs_read_raw_ref(refs, refname,
1466 sha1, &sb_refname, &read_flags)) {
1467 *flags |= read_flags;
1468 if (errno != ENOENT || (resolve_flags & RESOLVE_REF_READING))
1471 if (*flags & REF_BAD_NAME)
1472 *flags |= REF_ISBROKEN;
1476 *flags |= read_flags;
1478 if (!(read_flags & REF_ISSYMREF)) {
1479 if (*flags & REF_BAD_NAME) {
1481 *flags |= REF_ISBROKEN;
1486 refname = sb_refname.buf;
1487 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1491 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1492 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1493 !refname_is_safe(refname)) {
1498 *flags |= REF_ISBROKEN | REF_BAD_NAME;
1506 /* backend functions */
1507 int refs_init_db(struct strbuf *err)
1509 struct ref_store *refs = get_main_ref_store();
1511 return refs->be->init_db(refs, err);
1514 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1515 unsigned char *sha1, int *flags)
1517 return refs_resolve_ref_unsafe(get_main_ref_store(), refname,
1518 resolve_flags, sha1, flags);
1521 int resolve_gitlink_ref(const char *submodule, const char *refname,
1522 unsigned char *sha1)
1524 size_t len = strlen(submodule);
1525 struct ref_store *refs;
1528 while (len && submodule[len - 1] == '/')
1534 if (submodule[len]) {
1535 /* We need to strip off one or more trailing slashes */
1536 char *stripped = xmemdupz(submodule, len);
1538 refs = get_submodule_ref_store(stripped);
1541 refs = get_submodule_ref_store(submodule);
1547 if (!refs_resolve_ref_unsafe(refs, refname, 0, sha1, &flags) ||
1553 struct ref_store_hash_entry
1555 struct hashmap_entry ent; /* must be the first member! */
1557 struct ref_store *refs;
1559 /* NUL-terminated identifier of the ref store: */
1560 char name[FLEX_ARRAY];
1563 static int ref_store_hash_cmp(const void *unused_cmp_data,
1564 const void *entry, const void *entry_or_key,
1565 const void *keydata)
1567 const struct ref_store_hash_entry *e1 = entry, *e2 = entry_or_key;
1568 const char *name = keydata ? keydata : e2->name;
1570 return strcmp(e1->name, name);
1573 static struct ref_store_hash_entry *alloc_ref_store_hash_entry(
1574 const char *name, struct ref_store *refs)
1576 struct ref_store_hash_entry *entry;
1578 FLEX_ALLOC_STR(entry, name, name);
1579 hashmap_entry_init(entry, strhash(name));
1584 /* A pointer to the ref_store for the main repository: */
1585 static struct ref_store *main_ref_store;
1587 /* A hashmap of ref_stores, stored by submodule name: */
1588 static struct hashmap submodule_ref_stores;
1590 /* A hashmap of ref_stores, stored by worktree id: */
1591 static struct hashmap worktree_ref_stores;
1594 * Look up a ref store by name. If that ref_store hasn't been
1595 * registered yet, return NULL.
1597 static struct ref_store *lookup_ref_store_map(struct hashmap *map,
1600 struct ref_store_hash_entry *entry;
1602 if (!map->tablesize)
1603 /* It's initialized on demand in register_ref_store(). */
1606 entry = hashmap_get_from_hash(map, strhash(name), name);
1607 return entry ? entry->refs : NULL;
1611 * Create, record, and return a ref_store instance for the specified
1614 static struct ref_store *ref_store_init(const char *gitdir,
1617 const char *be_name = "files";
1618 struct ref_storage_be *be = find_ref_storage_backend(be_name);
1619 struct ref_store *refs;
1622 die("BUG: reference backend %s is unknown", be_name);
1624 refs = be->init(gitdir, flags);
1628 struct ref_store *get_main_ref_store(void)
1631 return main_ref_store;
1633 main_ref_store = ref_store_init(get_git_dir(), REF_STORE_ALL_CAPS);
1634 return main_ref_store;
1638 * Associate a ref store with a name. It is a fatal error to call this
1639 * function twice for the same name.
1641 static void register_ref_store_map(struct hashmap *map,
1643 struct ref_store *refs,
1646 if (!map->tablesize)
1647 hashmap_init(map, ref_store_hash_cmp, NULL, 0);
1649 if (hashmap_put(map, alloc_ref_store_hash_entry(name, refs)))
1650 die("BUG: %s ref_store '%s' initialized twice", type, name);
1653 struct ref_store *get_submodule_ref_store(const char *submodule)
1655 struct strbuf submodule_sb = STRBUF_INIT;
1656 struct ref_store *refs;
1659 if (!submodule || !*submodule) {
1661 * FIXME: This case is ideally not allowed. But that
1662 * can't happen until we clean up all the callers.
1664 return get_main_ref_store();
1667 refs = lookup_ref_store_map(&submodule_ref_stores, submodule);
1671 strbuf_addstr(&submodule_sb, submodule);
1672 ret = is_nonbare_repository_dir(&submodule_sb);
1673 strbuf_release(&submodule_sb);
1677 ret = submodule_to_gitdir(&submodule_sb, submodule);
1679 strbuf_release(&submodule_sb);
1683 /* assume that add_submodule_odb() has been called */
1684 refs = ref_store_init(submodule_sb.buf,
1685 REF_STORE_READ | REF_STORE_ODB);
1686 register_ref_store_map(&submodule_ref_stores, "submodule",
1689 strbuf_release(&submodule_sb);
1693 struct ref_store *get_worktree_ref_store(const struct worktree *wt)
1695 struct ref_store *refs;
1699 return get_main_ref_store();
1701 id = wt->id ? wt->id : "/";
1702 refs = lookup_ref_store_map(&worktree_ref_stores, id);
1707 refs = ref_store_init(git_common_path("worktrees/%s", wt->id),
1708 REF_STORE_ALL_CAPS);
1710 refs = ref_store_init(get_git_common_dir(),
1711 REF_STORE_ALL_CAPS);
1714 register_ref_store_map(&worktree_ref_stores, "worktree",
1719 void base_ref_store_init(struct ref_store *refs,
1720 const struct ref_storage_be *be)
1725 /* backend functions */
1726 int refs_pack_refs(struct ref_store *refs, unsigned int flags)
1728 return refs->be->pack_refs(refs, flags);
1731 int refs_peel_ref(struct ref_store *refs, const char *refname,
1732 unsigned char *sha1)
1734 return refs->be->peel_ref(refs, refname, sha1);
1737 int peel_ref(const char *refname, unsigned char *sha1)
1739 return refs_peel_ref(get_main_ref_store(), refname, sha1);
1742 int refs_create_symref(struct ref_store *refs,
1743 const char *ref_target,
1744 const char *refs_heads_master,
1747 return refs->be->create_symref(refs, ref_target,
1752 int create_symref(const char *ref_target, const char *refs_heads_master,
1755 return refs_create_symref(get_main_ref_store(), ref_target,
1756 refs_heads_master, logmsg);
1759 int ref_update_reject_duplicates(struct string_list *refnames,
1762 size_t i, n = refnames->nr;
1766 for (i = 1; i < n; i++) {
1767 int cmp = strcmp(refnames->items[i - 1].string,
1768 refnames->items[i].string);
1772 "multiple updates for ref '%s' not allowed.",
1773 refnames->items[i].string);
1775 } else if (cmp > 0) {
1776 die("BUG: ref_update_reject_duplicates() received unsorted list");
1782 int ref_transaction_prepare(struct ref_transaction *transaction,
1785 struct ref_store *refs = transaction->ref_store;
1787 switch (transaction->state) {
1788 case REF_TRANSACTION_OPEN:
1791 case REF_TRANSACTION_PREPARED:
1792 die("BUG: prepare called twice on reference transaction");
1794 case REF_TRANSACTION_CLOSED:
1795 die("BUG: prepare called on a closed reference transaction");
1798 die("BUG: unexpected reference transaction state");
1802 if (getenv(GIT_QUARANTINE_ENVIRONMENT)) {
1804 _("ref updates forbidden inside quarantine environment"));
1808 return refs->be->transaction_prepare(refs, transaction, err);
1811 int ref_transaction_abort(struct ref_transaction *transaction,
1814 struct ref_store *refs = transaction->ref_store;
1817 switch (transaction->state) {
1818 case REF_TRANSACTION_OPEN:
1819 /* No need to abort explicitly. */
1821 case REF_TRANSACTION_PREPARED:
1822 ret = refs->be->transaction_abort(refs, transaction, err);
1824 case REF_TRANSACTION_CLOSED:
1825 die("BUG: abort called on a closed reference transaction");
1828 die("BUG: unexpected reference transaction state");
1832 ref_transaction_free(transaction);
1836 int ref_transaction_commit(struct ref_transaction *transaction,
1839 struct ref_store *refs = transaction->ref_store;
1842 switch (transaction->state) {
1843 case REF_TRANSACTION_OPEN:
1844 /* Need to prepare first. */
1845 ret = ref_transaction_prepare(transaction, err);
1849 case REF_TRANSACTION_PREPARED:
1850 /* Fall through to finish. */
1852 case REF_TRANSACTION_CLOSED:
1853 die("BUG: commit called on a closed reference transaction");
1856 die("BUG: unexpected reference transaction state");
1860 return refs->be->transaction_finish(refs, transaction, err);
1863 int refs_verify_refname_available(struct ref_store *refs,
1864 const char *refname,
1865 const struct string_list *extras,
1866 const struct string_list *skip,
1870 const char *extra_refname;
1871 struct strbuf dirname = STRBUF_INIT;
1872 struct strbuf referent = STRBUF_INIT;
1873 struct object_id oid;
1875 struct ref_iterator *iter;
1880 * For the sake of comments in this function, suppose that
1881 * refname is "refs/foo/bar".
1886 strbuf_grow(&dirname, strlen(refname) + 1);
1887 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
1888 /* Expand dirname to the new prefix, not including the trailing slash: */
1889 strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
1892 * We are still at a leading dir of the refname (e.g.,
1893 * "refs/foo"; if there is a reference with that name,
1894 * it is a conflict, *unless* it is in skip.
1896 if (skip && string_list_has_string(skip, dirname.buf))
1899 if (!refs_read_raw_ref(refs, dirname.buf, oid.hash, &referent, &type)) {
1900 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1901 dirname.buf, refname);
1905 if (extras && string_list_has_string(extras, dirname.buf)) {
1906 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1907 refname, dirname.buf);
1913 * We are at the leaf of our refname (e.g., "refs/foo/bar").
1914 * There is no point in searching for a reference with that
1915 * name, because a refname isn't considered to conflict with
1916 * itself. But we still need to check for references whose
1917 * names are in the "refs/foo/bar/" namespace, because they
1920 strbuf_addstr(&dirname, refname + dirname.len);
1921 strbuf_addch(&dirname, '/');
1923 iter = refs_ref_iterator_begin(refs, dirname.buf, 0,
1924 DO_FOR_EACH_INCLUDE_BROKEN);
1925 while ((ok = ref_iterator_advance(iter)) == ITER_OK) {
1927 string_list_has_string(skip, iter->refname))
1930 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1931 iter->refname, refname);
1932 ref_iterator_abort(iter);
1936 if (ok != ITER_DONE)
1937 die("BUG: error while iterating over references");
1939 extra_refname = find_descendant_ref(dirname.buf, extras, skip);
1941 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1942 refname, extra_refname);
1947 strbuf_release(&referent);
1948 strbuf_release(&dirname);
1952 int refs_for_each_reflog(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1954 struct ref_iterator *iter;
1956 iter = refs->be->reflog_iterator_begin(refs);
1958 return do_for_each_ref_iterator(iter, fn, cb_data);
1961 int for_each_reflog(each_ref_fn fn, void *cb_data)
1963 return refs_for_each_reflog(get_main_ref_store(), fn, cb_data);
1966 int refs_for_each_reflog_ent_reverse(struct ref_store *refs,
1967 const char *refname,
1968 each_reflog_ent_fn fn,
1971 return refs->be->for_each_reflog_ent_reverse(refs, refname,
1975 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn,
1978 return refs_for_each_reflog_ent_reverse(get_main_ref_store(),
1979 refname, fn, cb_data);
1982 int refs_for_each_reflog_ent(struct ref_store *refs, const char *refname,
1983 each_reflog_ent_fn fn, void *cb_data)
1985 return refs->be->for_each_reflog_ent(refs, refname, fn, cb_data);
1988 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn,
1991 return refs_for_each_reflog_ent(get_main_ref_store(), refname,
1995 int refs_reflog_exists(struct ref_store *refs, const char *refname)
1997 return refs->be->reflog_exists(refs, refname);
2000 int reflog_exists(const char *refname)
2002 return refs_reflog_exists(get_main_ref_store(), refname);
2005 int refs_create_reflog(struct ref_store *refs, const char *refname,
2006 int force_create, struct strbuf *err)
2008 return refs->be->create_reflog(refs, refname, force_create, err);
2011 int safe_create_reflog(const char *refname, int force_create,
2014 return refs_create_reflog(get_main_ref_store(), refname,
2018 int refs_delete_reflog(struct ref_store *refs, const char *refname)
2020 return refs->be->delete_reflog(refs, refname);
2023 int delete_reflog(const char *refname)
2025 return refs_delete_reflog(get_main_ref_store(), refname);
2028 int refs_reflog_expire(struct ref_store *refs,
2029 const char *refname, const unsigned char *sha1,
2031 reflog_expiry_prepare_fn prepare_fn,
2032 reflog_expiry_should_prune_fn should_prune_fn,
2033 reflog_expiry_cleanup_fn cleanup_fn,
2034 void *policy_cb_data)
2036 return refs->be->reflog_expire(refs, refname, sha1, flags,
2037 prepare_fn, should_prune_fn,
2038 cleanup_fn, policy_cb_data);
2041 int reflog_expire(const char *refname, const unsigned char *sha1,
2043 reflog_expiry_prepare_fn prepare_fn,
2044 reflog_expiry_should_prune_fn should_prune_fn,
2045 reflog_expiry_cleanup_fn cleanup_fn,
2046 void *policy_cb_data)
2048 return refs_reflog_expire(get_main_ref_store(),
2049 refname, sha1, flags,
2050 prepare_fn, should_prune_fn,
2051 cleanup_fn, policy_cb_data);
2054 int initial_ref_transaction_commit(struct ref_transaction *transaction,
2057 struct ref_store *refs = transaction->ref_store;
2059 return refs->be->initial_transaction_commit(refs, transaction, err);
2062 int refs_delete_refs(struct ref_store *refs, const char *msg,
2063 struct string_list *refnames, unsigned int flags)
2065 return refs->be->delete_refs(refs, msg, refnames, flags);
2068 int delete_refs(const char *msg, struct string_list *refnames,
2071 return refs_delete_refs(get_main_ref_store(), msg, refnames, flags);
2074 int refs_rename_ref(struct ref_store *refs, const char *oldref,
2075 const char *newref, const char *logmsg)
2077 return refs->be->rename_ref(refs, oldref, newref, logmsg);
2080 int rename_ref(const char *oldref, const char *newref, const char *logmsg)
2082 return refs_rename_ref(get_main_ref_store(), oldref, newref, logmsg);