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 refs_for_each_branch_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
341 return refs_for_each_ref_in(refs, "refs/heads/", fn, cb_data);
344 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
346 return refs_for_each_branch_ref(get_main_ref_store(), fn, cb_data);
349 int refs_for_each_remote_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
351 return refs_for_each_ref_in(refs, "refs/remotes/", fn, cb_data);
354 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
356 return refs_for_each_remote_ref(get_main_ref_store(), fn, cb_data);
359 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
361 struct strbuf buf = STRBUF_INIT;
363 struct object_id oid;
366 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
367 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, oid.hash, &flag))
368 ret = fn(buf.buf, &oid, flag, cb_data);
369 strbuf_release(&buf);
374 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
375 const char *prefix, void *cb_data)
377 struct strbuf real_pattern = STRBUF_INIT;
378 struct ref_filter filter;
381 if (!prefix && !starts_with(pattern, "refs/"))
382 strbuf_addstr(&real_pattern, "refs/");
384 strbuf_addstr(&real_pattern, prefix);
385 strbuf_addstr(&real_pattern, pattern);
387 if (!has_glob_specials(pattern)) {
388 /* Append implied '/' '*' if not present. */
389 strbuf_complete(&real_pattern, '/');
390 /* No need to check for '*', there is none. */
391 strbuf_addch(&real_pattern, '*');
394 filter.pattern = real_pattern.buf;
396 filter.cb_data = cb_data;
397 ret = for_each_ref(filter_refs, &filter);
399 strbuf_release(&real_pattern);
403 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
405 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
408 const char *prettify_refname(const char *name)
410 if (skip_prefix(name, "refs/heads/", &name) ||
411 skip_prefix(name, "refs/tags/", &name) ||
412 skip_prefix(name, "refs/remotes/", &name))
417 static const char *ref_rev_parse_rules[] = {
423 "refs/remotes/%.*s/HEAD",
427 int refname_match(const char *abbrev_name, const char *full_name)
430 const int abbrev_name_len = strlen(abbrev_name);
432 for (p = ref_rev_parse_rules; *p; p++) {
433 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
442 * *string and *len will only be substituted, and *string returned (for
443 * later free()ing) if the string passed in is a magic short-hand form
446 static char *substitute_branch_name(const char **string, int *len)
448 struct strbuf buf = STRBUF_INIT;
449 int ret = interpret_branch_name(*string, *len, &buf, 0);
453 *string = strbuf_detach(&buf, &size);
455 return (char *)*string;
461 int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
463 char *last_branch = substitute_branch_name(&str, &len);
464 int refs_found = expand_ref(str, len, sha1, ref);
469 int expand_ref(const char *str, int len, unsigned char *sha1, char **ref)
473 struct strbuf fullref = STRBUF_INIT;
476 for (p = ref_rev_parse_rules; *p; p++) {
477 unsigned char sha1_from_ref[20];
478 unsigned char *this_result;
481 this_result = refs_found ? sha1_from_ref : sha1;
482 strbuf_reset(&fullref);
483 strbuf_addf(&fullref, *p, len, str);
484 r = resolve_ref_unsafe(fullref.buf, RESOLVE_REF_READING,
489 if (!warn_ambiguous_refs)
491 } else if ((flag & REF_ISSYMREF) && strcmp(fullref.buf, "HEAD")) {
492 warning("ignoring dangling symref %s.", fullref.buf);
493 } else if ((flag & REF_ISBROKEN) && strchr(fullref.buf, '/')) {
494 warning("ignoring broken ref %s.", fullref.buf);
497 strbuf_release(&fullref);
501 int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
503 char *last_branch = substitute_branch_name(&str, &len);
506 struct strbuf path = STRBUF_INIT;
509 for (p = ref_rev_parse_rules; *p; p++) {
510 unsigned char hash[20];
511 const char *ref, *it;
514 strbuf_addf(&path, *p, len, str);
515 ref = resolve_ref_unsafe(path.buf, RESOLVE_REF_READING,
519 if (reflog_exists(path.buf))
521 else if (strcmp(ref, path.buf) && reflog_exists(ref))
529 if (!warn_ambiguous_refs)
532 strbuf_release(&path);
537 static int is_per_worktree_ref(const char *refname)
539 return !strcmp(refname, "HEAD") ||
540 starts_with(refname, "refs/bisect/");
543 static int is_pseudoref_syntax(const char *refname)
547 for (c = refname; *c; c++) {
548 if (!isupper(*c) && *c != '-' && *c != '_')
555 enum ref_type ref_type(const char *refname)
557 if (is_per_worktree_ref(refname))
558 return REF_TYPE_PER_WORKTREE;
559 if (is_pseudoref_syntax(refname))
560 return REF_TYPE_PSEUDOREF;
561 return REF_TYPE_NORMAL;
564 static int write_pseudoref(const char *pseudoref, const unsigned char *sha1,
565 const unsigned char *old_sha1, struct strbuf *err)
567 const char *filename;
569 static struct lock_file lock;
570 struct strbuf buf = STRBUF_INIT;
573 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
575 filename = git_path("%s", pseudoref);
576 fd = hold_lock_file_for_update(&lock, filename, LOCK_DIE_ON_ERROR);
578 strbuf_addf(err, "could not open '%s' for writing: %s",
579 filename, strerror(errno));
584 unsigned char actual_old_sha1[20];
586 if (read_ref(pseudoref, actual_old_sha1))
587 die("could not read ref '%s'", pseudoref);
588 if (hashcmp(actual_old_sha1, old_sha1)) {
589 strbuf_addf(err, "unexpected sha1 when writing '%s'", pseudoref);
590 rollback_lock_file(&lock);
595 if (write_in_full(fd, buf.buf, buf.len) != buf.len) {
596 strbuf_addf(err, "could not write to '%s'", filename);
597 rollback_lock_file(&lock);
601 commit_lock_file(&lock);
604 strbuf_release(&buf);
608 static int delete_pseudoref(const char *pseudoref, const unsigned char *old_sha1)
610 static struct lock_file lock;
611 const char *filename;
613 filename = git_path("%s", pseudoref);
615 if (old_sha1 && !is_null_sha1(old_sha1)) {
617 unsigned char actual_old_sha1[20];
619 fd = hold_lock_file_for_update(&lock, filename,
622 die_errno(_("Could not open '%s' for writing"), filename);
623 if (read_ref(pseudoref, actual_old_sha1))
624 die("could not read ref '%s'", pseudoref);
625 if (hashcmp(actual_old_sha1, old_sha1)) {
626 warning("Unexpected sha1 when deleting %s", pseudoref);
627 rollback_lock_file(&lock);
632 rollback_lock_file(&lock);
640 int refs_delete_ref(struct ref_store *refs, const char *msg,
642 const unsigned char *old_sha1,
645 struct ref_transaction *transaction;
646 struct strbuf err = STRBUF_INIT;
648 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
649 assert(refs == get_main_ref_store());
650 return delete_pseudoref(refname, old_sha1);
653 transaction = ref_store_transaction_begin(refs, &err);
655 ref_transaction_delete(transaction, refname, old_sha1,
657 ref_transaction_commit(transaction, &err)) {
658 error("%s", err.buf);
659 ref_transaction_free(transaction);
660 strbuf_release(&err);
663 ref_transaction_free(transaction);
664 strbuf_release(&err);
668 int delete_ref(const char *msg, const char *refname,
669 const unsigned char *old_sha1, unsigned int flags)
671 return refs_delete_ref(get_main_ref_store(), msg, refname,
675 int copy_reflog_msg(char *buf, const char *msg)
682 while ((c = *msg++)) {
683 if (wasspace && isspace(c))
685 wasspace = isspace(c);
690 while (buf < cp && isspace(cp[-1]))
696 int should_autocreate_reflog(const char *refname)
698 switch (log_all_ref_updates) {
699 case LOG_REFS_ALWAYS:
701 case LOG_REFS_NORMAL:
702 return starts_with(refname, "refs/heads/") ||
703 starts_with(refname, "refs/remotes/") ||
704 starts_with(refname, "refs/notes/") ||
705 !strcmp(refname, "HEAD");
711 int is_branch(const char *refname)
713 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
716 struct read_ref_at_cb {
724 unsigned char osha1[20];
725 unsigned char nsha1[20];
729 timestamp_t *cutoff_time;
734 static int read_ref_at_ent(struct object_id *ooid, struct object_id *noid,
735 const char *email, timestamp_t timestamp, int tz,
736 const char *message, void *cb_data)
738 struct read_ref_at_cb *cb = cb_data;
742 cb->date = timestamp;
744 if (timestamp <= cb->at_time || cb->cnt == 0) {
746 *cb->msg = xstrdup(message);
748 *cb->cutoff_time = timestamp;
752 *cb->cutoff_cnt = cb->reccnt - 1;
754 * we have not yet updated cb->[n|o]sha1 so they still
755 * hold the values for the previous record.
757 if (!is_null_sha1(cb->osha1)) {
758 hashcpy(cb->sha1, noid->hash);
759 if (hashcmp(cb->osha1, noid->hash))
760 warning("Log for ref %s has gap after %s.",
761 cb->refname, show_date(cb->date, cb->tz, DATE_MODE(RFC2822)));
763 else if (cb->date == cb->at_time)
764 hashcpy(cb->sha1, noid->hash);
765 else if (hashcmp(noid->hash, cb->sha1))
766 warning("Log for ref %s unexpectedly ended on %s.",
767 cb->refname, show_date(cb->date, cb->tz,
768 DATE_MODE(RFC2822)));
769 hashcpy(cb->osha1, ooid->hash);
770 hashcpy(cb->nsha1, noid->hash);
774 hashcpy(cb->osha1, ooid->hash);
775 hashcpy(cb->nsha1, noid->hash);
781 static int read_ref_at_ent_oldest(struct object_id *ooid, struct object_id *noid,
782 const char *email, timestamp_t timestamp,
783 int tz, const char *message, void *cb_data)
785 struct read_ref_at_cb *cb = cb_data;
788 *cb->msg = xstrdup(message);
790 *cb->cutoff_time = timestamp;
794 *cb->cutoff_cnt = cb->reccnt;
795 hashcpy(cb->sha1, ooid->hash);
796 if (is_null_sha1(cb->sha1))
797 hashcpy(cb->sha1, noid->hash);
798 /* We just want the first entry */
802 int read_ref_at(const char *refname, unsigned int flags, timestamp_t at_time, int cnt,
803 unsigned char *sha1, char **msg,
804 timestamp_t *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
806 struct read_ref_at_cb cb;
808 memset(&cb, 0, sizeof(cb));
809 cb.refname = refname;
810 cb.at_time = at_time;
813 cb.cutoff_time = cutoff_time;
814 cb.cutoff_tz = cutoff_tz;
815 cb.cutoff_cnt = cutoff_cnt;
818 for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
821 if (flags & GET_OID_QUIETLY)
824 die("Log for %s is empty.", refname);
829 for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
834 struct ref_transaction *ref_store_transaction_begin(struct ref_store *refs,
837 struct ref_transaction *tr;
840 tr = xcalloc(1, sizeof(struct ref_transaction));
841 tr->ref_store = refs;
845 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
847 return ref_store_transaction_begin(get_main_ref_store(), err);
850 void ref_transaction_free(struct ref_transaction *transaction)
857 switch (transaction->state) {
858 case REF_TRANSACTION_OPEN:
859 case REF_TRANSACTION_CLOSED:
862 case REF_TRANSACTION_PREPARED:
863 die("BUG: free called on a prepared reference transaction");
866 die("BUG: unexpected reference transaction state");
870 for (i = 0; i < transaction->nr; i++) {
871 free(transaction->updates[i]->msg);
872 free(transaction->updates[i]);
874 free(transaction->updates);
878 struct ref_update *ref_transaction_add_update(
879 struct ref_transaction *transaction,
880 const char *refname, unsigned int flags,
881 const unsigned char *new_sha1,
882 const unsigned char *old_sha1,
885 struct ref_update *update;
887 if (transaction->state != REF_TRANSACTION_OPEN)
888 die("BUG: update called for transaction that is not open");
890 if ((flags & REF_ISPRUNING) && !(flags & REF_NODEREF))
891 die("BUG: REF_ISPRUNING set without REF_NODEREF");
893 FLEX_ALLOC_STR(update, refname, refname);
894 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
895 transaction->updates[transaction->nr++] = update;
897 update->flags = flags;
899 if (flags & REF_HAVE_NEW)
900 hashcpy(update->new_oid.hash, new_sha1);
901 if (flags & REF_HAVE_OLD)
902 hashcpy(update->old_oid.hash, old_sha1);
903 update->msg = xstrdup_or_null(msg);
907 int ref_transaction_update(struct ref_transaction *transaction,
909 const unsigned char *new_sha1,
910 const unsigned char *old_sha1,
911 unsigned int flags, const char *msg,
916 if ((new_sha1 && !is_null_sha1(new_sha1)) ?
917 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL) :
918 !refname_is_safe(refname)) {
919 strbuf_addf(err, "refusing to update ref with bad name '%s'",
924 flags |= (new_sha1 ? REF_HAVE_NEW : 0) | (old_sha1 ? REF_HAVE_OLD : 0);
926 ref_transaction_add_update(transaction, refname, flags,
927 new_sha1, old_sha1, msg);
931 int ref_transaction_create(struct ref_transaction *transaction,
933 const unsigned char *new_sha1,
934 unsigned int flags, const char *msg,
937 if (!new_sha1 || is_null_sha1(new_sha1))
938 die("BUG: create called without valid new_sha1");
939 return ref_transaction_update(transaction, refname, new_sha1,
940 null_sha1, flags, msg, err);
943 int ref_transaction_delete(struct ref_transaction *transaction,
945 const unsigned char *old_sha1,
946 unsigned int flags, const char *msg,
949 if (old_sha1 && is_null_sha1(old_sha1))
950 die("BUG: delete called with old_sha1 set to zeros");
951 return ref_transaction_update(transaction, refname,
956 int ref_transaction_verify(struct ref_transaction *transaction,
958 const unsigned char *old_sha1,
963 die("BUG: verify called with old_sha1 set to NULL");
964 return ref_transaction_update(transaction, refname,
969 int update_ref_oid(const char *msg, const char *refname,
970 const struct object_id *new_oid, const struct object_id *old_oid,
971 unsigned int flags, enum action_on_err onerr)
973 return update_ref(msg, refname, new_oid ? new_oid->hash : NULL,
974 old_oid ? old_oid->hash : NULL, flags, onerr);
977 int refs_update_ref(struct ref_store *refs, const char *msg,
978 const char *refname, const unsigned char *new_sha1,
979 const unsigned char *old_sha1, unsigned int flags,
980 enum action_on_err onerr)
982 struct ref_transaction *t = NULL;
983 struct strbuf err = STRBUF_INIT;
986 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
987 assert(refs == get_main_ref_store());
988 ret = write_pseudoref(refname, new_sha1, old_sha1, &err);
990 t = ref_store_transaction_begin(refs, &err);
992 ref_transaction_update(t, refname, new_sha1, old_sha1,
994 ref_transaction_commit(t, &err)) {
996 ref_transaction_free(t);
1000 const char *str = "update_ref failed for ref '%s': %s";
1003 case UPDATE_REFS_MSG_ON_ERR:
1004 error(str, refname, err.buf);
1006 case UPDATE_REFS_DIE_ON_ERR:
1007 die(str, refname, err.buf);
1009 case UPDATE_REFS_QUIET_ON_ERR:
1012 strbuf_release(&err);
1015 strbuf_release(&err);
1017 ref_transaction_free(t);
1021 int update_ref(const char *msg, const char *refname,
1022 const unsigned char *new_sha1,
1023 const unsigned char *old_sha1,
1024 unsigned int flags, enum action_on_err onerr)
1026 return refs_update_ref(get_main_ref_store(), msg, refname, new_sha1,
1027 old_sha1, flags, onerr);
1030 char *shorten_unambiguous_ref(const char *refname, int strict)
1033 static char **scanf_fmts;
1034 static int nr_rules;
1036 struct strbuf resolved_buf = STRBUF_INIT;
1040 * Pre-generate scanf formats from ref_rev_parse_rules[].
1041 * Generate a format suitable for scanf from a
1042 * ref_rev_parse_rules rule by interpolating "%s" at the
1043 * location of the "%.*s".
1045 size_t total_len = 0;
1048 /* the rule list is NULL terminated, count them first */
1049 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
1050 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
1051 total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
1053 scanf_fmts = xmalloc(st_add(st_mult(sizeof(char *), nr_rules), total_len));
1056 for (i = 0; i < nr_rules; i++) {
1057 assert(offset < total_len);
1058 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
1059 offset += snprintf(scanf_fmts[i], total_len - offset,
1060 ref_rev_parse_rules[i], 2, "%s") + 1;
1064 /* bail out if there are no rules */
1066 return xstrdup(refname);
1068 /* buffer for scanf result, at most refname must fit */
1069 short_name = xstrdup(refname);
1071 /* skip first rule, it will always match */
1072 for (i = nr_rules - 1; i > 0 ; --i) {
1074 int rules_to_fail = i;
1077 if (1 != sscanf(refname, scanf_fmts[i], short_name))
1080 short_name_len = strlen(short_name);
1083 * in strict mode, all (except the matched one) rules
1084 * must fail to resolve to a valid non-ambiguous ref
1087 rules_to_fail = nr_rules;
1090 * check if the short name resolves to a valid ref,
1091 * but use only rules prior to the matched one
1093 for (j = 0; j < rules_to_fail; j++) {
1094 const char *rule = ref_rev_parse_rules[j];
1096 /* skip matched rule */
1101 * the short name is ambiguous, if it resolves
1102 * (with this previous rule) to a valid ref
1103 * read_ref() returns 0 on success
1105 strbuf_reset(&resolved_buf);
1106 strbuf_addf(&resolved_buf, rule,
1107 short_name_len, short_name);
1108 if (ref_exists(resolved_buf.buf))
1113 * short name is non-ambiguous if all previous rules
1114 * haven't resolved to a valid ref
1116 if (j == rules_to_fail) {
1117 strbuf_release(&resolved_buf);
1122 strbuf_release(&resolved_buf);
1124 return xstrdup(refname);
1127 static struct string_list *hide_refs;
1129 int parse_hide_refs_config(const char *var, const char *value, const char *section)
1132 if (!strcmp("transfer.hiderefs", var) ||
1133 (!parse_config_key(var, section, NULL, NULL, &key) &&
1134 !strcmp(key, "hiderefs"))) {
1139 return config_error_nonbool(var);
1140 ref = xstrdup(value);
1142 while (len && ref[len - 1] == '/')
1145 hide_refs = xcalloc(1, sizeof(*hide_refs));
1146 hide_refs->strdup_strings = 1;
1148 string_list_append(hide_refs, ref);
1153 int ref_is_hidden(const char *refname, const char *refname_full)
1159 for (i = hide_refs->nr - 1; i >= 0; i--) {
1160 const char *match = hide_refs->items[i].string;
1161 const char *subject;
1165 if (*match == '!') {
1170 if (*match == '^') {
1171 subject = refname_full;
1177 /* refname can be NULL when namespaces are used. */
1179 skip_prefix(subject, match, &p) &&
1186 const char *find_descendant_ref(const char *dirname,
1187 const struct string_list *extras,
1188 const struct string_list *skip)
1196 * Look at the place where dirname would be inserted into
1197 * extras. If there is an entry at that position that starts
1198 * with dirname (remember, dirname includes the trailing
1199 * slash) and is not in skip, then we have a conflict.
1201 for (pos = string_list_find_insert_index(extras, dirname, 0);
1202 pos < extras->nr; pos++) {
1203 const char *extra_refname = extras->items[pos].string;
1205 if (!starts_with(extra_refname, dirname))
1208 if (!skip || !string_list_has_string(skip, extra_refname))
1209 return extra_refname;
1214 int refs_rename_ref_available(struct ref_store *refs,
1215 const char *old_refname,
1216 const char *new_refname)
1218 struct string_list skip = STRING_LIST_INIT_NODUP;
1219 struct strbuf err = STRBUF_INIT;
1222 string_list_insert(&skip, old_refname);
1223 ok = !refs_verify_refname_available(refs, new_refname,
1226 error("%s", err.buf);
1228 string_list_clear(&skip, 0);
1229 strbuf_release(&err);
1233 int refs_head_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1235 struct object_id oid;
1238 if (!refs_read_ref_full(refs, "HEAD", RESOLVE_REF_READING,
1240 return fn("HEAD", &oid, flag, cb_data);
1245 int head_ref(each_ref_fn fn, void *cb_data)
1247 return refs_head_ref(get_main_ref_store(), fn, cb_data);
1250 struct ref_iterator *refs_ref_iterator_begin(
1251 struct ref_store *refs,
1252 const char *prefix, int trim, int flags)
1254 struct ref_iterator *iter;
1256 if (ref_paranoia < 0)
1257 ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 0);
1259 flags |= DO_FOR_EACH_INCLUDE_BROKEN;
1261 iter = refs->be->iterator_begin(refs, prefix, flags);
1264 * `iterator_begin()` already takes care of prefix, but we
1265 * might need to do some trimming:
1268 iter = prefix_ref_iterator_begin(iter, "", trim);
1274 * Call fn for each reference in the specified submodule for which the
1275 * refname begins with prefix. If trim is non-zero, then trim that
1276 * many characters off the beginning of each refname before passing
1277 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1278 * include broken references in the iteration. If fn ever returns a
1279 * non-zero value, stop the iteration and return that value;
1280 * otherwise, return 0.
1282 static int do_for_each_ref(struct ref_store *refs, const char *prefix,
1283 each_ref_fn fn, int trim, int flags, void *cb_data)
1285 struct ref_iterator *iter;
1290 iter = refs_ref_iterator_begin(refs, prefix, trim, flags);
1292 return do_for_each_ref_iterator(iter, fn, cb_data);
1295 int refs_for_each_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1297 return do_for_each_ref(refs, "", fn, 0, 0, cb_data);
1300 int for_each_ref(each_ref_fn fn, void *cb_data)
1302 return refs_for_each_ref(get_main_ref_store(), fn, cb_data);
1305 int refs_for_each_ref_in(struct ref_store *refs, const char *prefix,
1306 each_ref_fn fn, void *cb_data)
1308 return do_for_each_ref(refs, prefix, fn, strlen(prefix), 0, cb_data);
1311 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1313 return refs_for_each_ref_in(get_main_ref_store(), prefix, fn, cb_data);
1316 int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data, unsigned int broken)
1318 unsigned int flag = 0;
1321 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1322 return do_for_each_ref(get_main_ref_store(),
1323 prefix, fn, 0, flag, cb_data);
1326 int refs_for_each_fullref_in(struct ref_store *refs, const char *prefix,
1327 each_ref_fn fn, void *cb_data,
1328 unsigned int broken)
1330 unsigned int flag = 0;
1333 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1334 return do_for_each_ref(refs, prefix, fn, 0, flag, cb_data);
1337 int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1339 return do_for_each_ref(get_main_ref_store(),
1340 git_replace_ref_base, fn,
1341 strlen(git_replace_ref_base),
1345 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1347 struct strbuf buf = STRBUF_INIT;
1349 strbuf_addf(&buf, "%srefs/", get_git_namespace());
1350 ret = do_for_each_ref(get_main_ref_store(),
1351 buf.buf, fn, 0, 0, cb_data);
1352 strbuf_release(&buf);
1356 int refs_for_each_rawref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1358 return do_for_each_ref(refs, "", fn, 0,
1359 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1362 int for_each_rawref(each_ref_fn fn, void *cb_data)
1364 return refs_for_each_rawref(get_main_ref_store(), fn, cb_data);
1367 int refs_read_raw_ref(struct ref_store *ref_store,
1368 const char *refname, unsigned char *sha1,
1369 struct strbuf *referent, unsigned int *type)
1371 return ref_store->be->read_raw_ref(ref_store, refname, sha1, referent, type);
1374 /* This function needs to return a meaningful errno on failure */
1375 const char *refs_resolve_ref_unsafe(struct ref_store *refs,
1376 const char *refname,
1378 unsigned char *sha1, int *flags)
1380 static struct strbuf sb_refname = STRBUF_INIT;
1385 flags = &unused_flags;
1389 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1390 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1391 !refname_is_safe(refname)) {
1397 * dwim_ref() uses REF_ISBROKEN to distinguish between
1398 * missing refs and refs that were present but invalid,
1399 * to complain about the latter to stderr.
1401 * We don't know whether the ref exists, so don't set
1404 *flags |= REF_BAD_NAME;
1407 for (symref_count = 0; symref_count < SYMREF_MAXDEPTH; symref_count++) {
1408 unsigned int read_flags = 0;
1410 if (refs_read_raw_ref(refs, refname,
1411 sha1, &sb_refname, &read_flags)) {
1412 *flags |= read_flags;
1413 if (errno != ENOENT || (resolve_flags & RESOLVE_REF_READING))
1416 if (*flags & REF_BAD_NAME)
1417 *flags |= REF_ISBROKEN;
1421 *flags |= read_flags;
1423 if (!(read_flags & REF_ISSYMREF)) {
1424 if (*flags & REF_BAD_NAME) {
1426 *flags |= REF_ISBROKEN;
1431 refname = sb_refname.buf;
1432 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1436 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1437 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1438 !refname_is_safe(refname)) {
1443 *flags |= REF_ISBROKEN | REF_BAD_NAME;
1451 /* backend functions */
1452 int refs_init_db(struct strbuf *err)
1454 struct ref_store *refs = get_main_ref_store();
1456 return refs->be->init_db(refs, err);
1459 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1460 unsigned char *sha1, int *flags)
1462 return refs_resolve_ref_unsafe(get_main_ref_store(), refname,
1463 resolve_flags, sha1, flags);
1466 int resolve_gitlink_ref(const char *submodule, const char *refname,
1467 unsigned char *sha1)
1469 struct ref_store *refs;
1472 refs = get_submodule_ref_store(submodule);
1477 if (!refs_resolve_ref_unsafe(refs, refname, 0, sha1, &flags) ||
1483 struct ref_store_hash_entry
1485 struct hashmap_entry ent; /* must be the first member! */
1487 struct ref_store *refs;
1489 /* NUL-terminated identifier of the ref store: */
1490 char name[FLEX_ARRAY];
1493 static int ref_store_hash_cmp(const void *unused_cmp_data,
1494 const void *entry, const void *entry_or_key,
1495 const void *keydata)
1497 const struct ref_store_hash_entry *e1 = entry, *e2 = entry_or_key;
1498 const char *name = keydata ? keydata : e2->name;
1500 return strcmp(e1->name, name);
1503 static struct ref_store_hash_entry *alloc_ref_store_hash_entry(
1504 const char *name, struct ref_store *refs)
1506 struct ref_store_hash_entry *entry;
1508 FLEX_ALLOC_STR(entry, name, name);
1509 hashmap_entry_init(entry, strhash(name));
1514 /* A pointer to the ref_store for the main repository: */
1515 static struct ref_store *main_ref_store;
1517 /* A hashmap of ref_stores, stored by submodule name: */
1518 static struct hashmap submodule_ref_stores;
1520 /* A hashmap of ref_stores, stored by worktree id: */
1521 static struct hashmap worktree_ref_stores;
1524 * Look up a ref store by name. If that ref_store hasn't been
1525 * registered yet, return NULL.
1527 static struct ref_store *lookup_ref_store_map(struct hashmap *map,
1530 struct ref_store_hash_entry *entry;
1532 if (!map->tablesize)
1533 /* It's initialized on demand in register_ref_store(). */
1536 entry = hashmap_get_from_hash(map, strhash(name), name);
1537 return entry ? entry->refs : NULL;
1541 * Create, record, and return a ref_store instance for the specified
1544 static struct ref_store *ref_store_init(const char *gitdir,
1547 const char *be_name = "files";
1548 struct ref_storage_be *be = find_ref_storage_backend(be_name);
1549 struct ref_store *refs;
1552 die("BUG: reference backend %s is unknown", be_name);
1554 refs = be->init(gitdir, flags);
1558 struct ref_store *get_main_ref_store(void)
1561 return main_ref_store;
1563 main_ref_store = ref_store_init(get_git_dir(), REF_STORE_ALL_CAPS);
1564 return main_ref_store;
1568 * Associate a ref store with a name. It is a fatal error to call this
1569 * function twice for the same name.
1571 static void register_ref_store_map(struct hashmap *map,
1573 struct ref_store *refs,
1576 if (!map->tablesize)
1577 hashmap_init(map, ref_store_hash_cmp, NULL, 0);
1579 if (hashmap_put(map, alloc_ref_store_hash_entry(name, refs)))
1580 die("BUG: %s ref_store '%s' initialized twice", type, name);
1583 struct ref_store *get_submodule_ref_store(const char *submodule)
1585 struct strbuf submodule_sb = STRBUF_INIT;
1586 struct ref_store *refs;
1587 char *to_free = NULL;
1591 len = strlen(submodule);
1592 while (len && is_dir_sep(submodule[len - 1]))
1598 if (!submodule || !*submodule) {
1600 * FIXME: This case is ideally not allowed. But that
1601 * can't happen until we clean up all the callers.
1603 return get_main_ref_store();
1607 /* We need to strip off one or more trailing slashes */
1608 submodule = to_free = xmemdupz(submodule, len);
1610 refs = lookup_ref_store_map(&submodule_ref_stores, submodule);
1614 strbuf_addstr(&submodule_sb, submodule);
1615 if (!is_nonbare_repository_dir(&submodule_sb))
1618 if (submodule_to_gitdir(&submodule_sb, submodule))
1621 /* assume that add_submodule_odb() has been called */
1622 refs = ref_store_init(submodule_sb.buf,
1623 REF_STORE_READ | REF_STORE_ODB);
1624 register_ref_store_map(&submodule_ref_stores, "submodule",
1628 strbuf_release(&submodule_sb);
1634 struct ref_store *get_worktree_ref_store(const struct worktree *wt)
1636 struct ref_store *refs;
1640 return get_main_ref_store();
1642 id = wt->id ? wt->id : "/";
1643 refs = lookup_ref_store_map(&worktree_ref_stores, id);
1648 refs = ref_store_init(git_common_path("worktrees/%s", wt->id),
1649 REF_STORE_ALL_CAPS);
1651 refs = ref_store_init(get_git_common_dir(),
1652 REF_STORE_ALL_CAPS);
1655 register_ref_store_map(&worktree_ref_stores, "worktree",
1660 void base_ref_store_init(struct ref_store *refs,
1661 const struct ref_storage_be *be)
1666 /* backend functions */
1667 int refs_pack_refs(struct ref_store *refs, unsigned int flags)
1669 return refs->be->pack_refs(refs, flags);
1672 int refs_peel_ref(struct ref_store *refs, const char *refname,
1673 unsigned char *sha1)
1675 return refs->be->peel_ref(refs, refname, sha1);
1678 int peel_ref(const char *refname, unsigned char *sha1)
1680 return refs_peel_ref(get_main_ref_store(), refname, sha1);
1683 int refs_create_symref(struct ref_store *refs,
1684 const char *ref_target,
1685 const char *refs_heads_master,
1688 return refs->be->create_symref(refs, ref_target,
1693 int create_symref(const char *ref_target, const char *refs_heads_master,
1696 return refs_create_symref(get_main_ref_store(), ref_target,
1697 refs_heads_master, logmsg);
1700 int ref_update_reject_duplicates(struct string_list *refnames,
1703 size_t i, n = refnames->nr;
1707 for (i = 1; i < n; i++) {
1708 int cmp = strcmp(refnames->items[i - 1].string,
1709 refnames->items[i].string);
1713 "multiple updates for ref '%s' not allowed.",
1714 refnames->items[i].string);
1716 } else if (cmp > 0) {
1717 die("BUG: ref_update_reject_duplicates() received unsorted list");
1723 int ref_transaction_prepare(struct ref_transaction *transaction,
1726 struct ref_store *refs = transaction->ref_store;
1728 switch (transaction->state) {
1729 case REF_TRANSACTION_OPEN:
1732 case REF_TRANSACTION_PREPARED:
1733 die("BUG: prepare called twice on reference transaction");
1735 case REF_TRANSACTION_CLOSED:
1736 die("BUG: prepare called on a closed reference transaction");
1739 die("BUG: unexpected reference transaction state");
1743 if (getenv(GIT_QUARANTINE_ENVIRONMENT)) {
1745 _("ref updates forbidden inside quarantine environment"));
1749 return refs->be->transaction_prepare(refs, transaction, err);
1752 int ref_transaction_abort(struct ref_transaction *transaction,
1755 struct ref_store *refs = transaction->ref_store;
1758 switch (transaction->state) {
1759 case REF_TRANSACTION_OPEN:
1760 /* No need to abort explicitly. */
1762 case REF_TRANSACTION_PREPARED:
1763 ret = refs->be->transaction_abort(refs, transaction, err);
1765 case REF_TRANSACTION_CLOSED:
1766 die("BUG: abort called on a closed reference transaction");
1769 die("BUG: unexpected reference transaction state");
1773 ref_transaction_free(transaction);
1777 int ref_transaction_commit(struct ref_transaction *transaction,
1780 struct ref_store *refs = transaction->ref_store;
1783 switch (transaction->state) {
1784 case REF_TRANSACTION_OPEN:
1785 /* Need to prepare first. */
1786 ret = ref_transaction_prepare(transaction, err);
1790 case REF_TRANSACTION_PREPARED:
1791 /* Fall through to finish. */
1793 case REF_TRANSACTION_CLOSED:
1794 die("BUG: commit called on a closed reference transaction");
1797 die("BUG: unexpected reference transaction state");
1801 return refs->be->transaction_finish(refs, transaction, err);
1804 int refs_verify_refname_available(struct ref_store *refs,
1805 const char *refname,
1806 const struct string_list *extras,
1807 const struct string_list *skip,
1811 const char *extra_refname;
1812 struct strbuf dirname = STRBUF_INIT;
1813 struct strbuf referent = STRBUF_INIT;
1814 struct object_id oid;
1816 struct ref_iterator *iter;
1821 * For the sake of comments in this function, suppose that
1822 * refname is "refs/foo/bar".
1827 strbuf_grow(&dirname, strlen(refname) + 1);
1828 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
1829 /* Expand dirname to the new prefix, not including the trailing slash: */
1830 strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
1833 * We are still at a leading dir of the refname (e.g.,
1834 * "refs/foo"; if there is a reference with that name,
1835 * it is a conflict, *unless* it is in skip.
1837 if (skip && string_list_has_string(skip, dirname.buf))
1840 if (!refs_read_raw_ref(refs, dirname.buf, oid.hash, &referent, &type)) {
1841 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1842 dirname.buf, refname);
1846 if (extras && string_list_has_string(extras, dirname.buf)) {
1847 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1848 refname, dirname.buf);
1854 * We are at the leaf of our refname (e.g., "refs/foo/bar").
1855 * There is no point in searching for a reference with that
1856 * name, because a refname isn't considered to conflict with
1857 * itself. But we still need to check for references whose
1858 * names are in the "refs/foo/bar/" namespace, because they
1861 strbuf_addstr(&dirname, refname + dirname.len);
1862 strbuf_addch(&dirname, '/');
1864 iter = refs_ref_iterator_begin(refs, dirname.buf, 0,
1865 DO_FOR_EACH_INCLUDE_BROKEN);
1866 while ((ok = ref_iterator_advance(iter)) == ITER_OK) {
1868 string_list_has_string(skip, iter->refname))
1871 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1872 iter->refname, refname);
1873 ref_iterator_abort(iter);
1877 if (ok != ITER_DONE)
1878 die("BUG: error while iterating over references");
1880 extra_refname = find_descendant_ref(dirname.buf, extras, skip);
1882 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1883 refname, extra_refname);
1888 strbuf_release(&referent);
1889 strbuf_release(&dirname);
1893 int refs_for_each_reflog(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1895 struct ref_iterator *iter;
1897 iter = refs->be->reflog_iterator_begin(refs);
1899 return do_for_each_ref_iterator(iter, fn, cb_data);
1902 int for_each_reflog(each_ref_fn fn, void *cb_data)
1904 return refs_for_each_reflog(get_main_ref_store(), fn, cb_data);
1907 int refs_for_each_reflog_ent_reverse(struct ref_store *refs,
1908 const char *refname,
1909 each_reflog_ent_fn fn,
1912 return refs->be->for_each_reflog_ent_reverse(refs, refname,
1916 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn,
1919 return refs_for_each_reflog_ent_reverse(get_main_ref_store(),
1920 refname, fn, cb_data);
1923 int refs_for_each_reflog_ent(struct ref_store *refs, const char *refname,
1924 each_reflog_ent_fn fn, void *cb_data)
1926 return refs->be->for_each_reflog_ent(refs, refname, fn, cb_data);
1929 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn,
1932 return refs_for_each_reflog_ent(get_main_ref_store(), refname,
1936 int refs_reflog_exists(struct ref_store *refs, const char *refname)
1938 return refs->be->reflog_exists(refs, refname);
1941 int reflog_exists(const char *refname)
1943 return refs_reflog_exists(get_main_ref_store(), refname);
1946 int refs_create_reflog(struct ref_store *refs, const char *refname,
1947 int force_create, struct strbuf *err)
1949 return refs->be->create_reflog(refs, refname, force_create, err);
1952 int safe_create_reflog(const char *refname, int force_create,
1955 return refs_create_reflog(get_main_ref_store(), refname,
1959 int refs_delete_reflog(struct ref_store *refs, const char *refname)
1961 return refs->be->delete_reflog(refs, refname);
1964 int delete_reflog(const char *refname)
1966 return refs_delete_reflog(get_main_ref_store(), refname);
1969 int refs_reflog_expire(struct ref_store *refs,
1970 const char *refname, const unsigned char *sha1,
1972 reflog_expiry_prepare_fn prepare_fn,
1973 reflog_expiry_should_prune_fn should_prune_fn,
1974 reflog_expiry_cleanup_fn cleanup_fn,
1975 void *policy_cb_data)
1977 return refs->be->reflog_expire(refs, refname, sha1, flags,
1978 prepare_fn, should_prune_fn,
1979 cleanup_fn, policy_cb_data);
1982 int reflog_expire(const char *refname, const unsigned char *sha1,
1984 reflog_expiry_prepare_fn prepare_fn,
1985 reflog_expiry_should_prune_fn should_prune_fn,
1986 reflog_expiry_cleanup_fn cleanup_fn,
1987 void *policy_cb_data)
1989 return refs_reflog_expire(get_main_ref_store(),
1990 refname, sha1, flags,
1991 prepare_fn, should_prune_fn,
1992 cleanup_fn, policy_cb_data);
1995 int initial_ref_transaction_commit(struct ref_transaction *transaction,
1998 struct ref_store *refs = transaction->ref_store;
2000 return refs->be->initial_transaction_commit(refs, transaction, err);
2003 int refs_delete_refs(struct ref_store *refs, const char *msg,
2004 struct string_list *refnames, unsigned int flags)
2006 return refs->be->delete_refs(refs, msg, refnames, flags);
2009 int delete_refs(const char *msg, struct string_list *refnames,
2012 return refs_delete_refs(get_main_ref_store(), msg, refnames, flags);
2015 int refs_rename_ref(struct ref_store *refs, const char *oldref,
2016 const char *newref, const char *logmsg)
2018 return refs->be->rename_ref(refs, oldref, newref, logmsg);
2021 int rename_ref(const char *oldref, const char *newref, const char *logmsg)
2023 return refs_rename_ref(get_main_ref_store(), oldref, newref, logmsg);