refs.con commit refs.c: remove the_repo from substitute_branch_name() (8f56e9d)
   1/*
   2 * The backend-independent part of the reference module.
   3 */
   4
   5#include "cache.h"
   6#include "config.h"
   7#include "hashmap.h"
   8#include "lockfile.h"
   9#include "iterator.h"
  10#include "refs.h"
  11#include "refs/refs-internal.h"
  12#include "object-store.h"
  13#include "object.h"
  14#include "tag.h"
  15#include "submodule.h"
  16#include "worktree.h"
  17#include "argv-array.h"
  18#include "repository.h"
  19
  20/*
  21 * List of all available backends
  22 */
  23static struct ref_storage_be *refs_backends = &refs_be_files;
  24
  25static struct ref_storage_be *find_ref_storage_backend(const char *name)
  26{
  27        struct ref_storage_be *be;
  28        for (be = refs_backends; be; be = be->next)
  29                if (!strcmp(be->name, name))
  30                        return be;
  31        return NULL;
  32}
  33
  34int ref_storage_backend_exists(const char *name)
  35{
  36        return find_ref_storage_backend(name) != NULL;
  37}
  38
  39/*
  40 * How to handle various characters in refnames:
  41 * 0: An acceptable character for refs
  42 * 1: End-of-component
  43 * 2: ., look for a preceding . to reject .. in refs
  44 * 3: {, look for a preceding @ to reject @{ in refs
  45 * 4: A bad character: ASCII control characters, and
  46 *    ":", "?", "[", "\", "^", "~", SP, or TAB
  47 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
  48 */
  49static unsigned char refname_disposition[256] = {
  50        1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  51        4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  52        4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
  53        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
  54        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  55        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
  56        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  57        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
  58};
  59
  60/*
  61 * Try to read one refname component from the front of refname.
  62 * Return the length of the component found, or -1 if the component is
  63 * not legal.  It is legal if it is something reasonable to have under
  64 * ".git/refs/"; We do not like it if:
  65 *
  66 * - any path component of it begins with ".", or
  67 * - it has double dots "..", or
  68 * - it has ASCII control characters, or
  69 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
  70 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
  71 * - it ends with a "/", or
  72 * - it ends with ".lock", or
  73 * - it contains a "@{" portion
  74 */
  75static int check_refname_component(const char *refname, int *flags)
  76{
  77        const char *cp;
  78        char last = '\0';
  79
  80        for (cp = refname; ; cp++) {
  81                int ch = *cp & 255;
  82                unsigned char disp = refname_disposition[ch];
  83                switch (disp) {
  84                case 1:
  85                        goto out;
  86                case 2:
  87                        if (last == '.')
  88                                return -1; /* Refname contains "..". */
  89                        break;
  90                case 3:
  91                        if (last == '@')
  92                                return -1; /* Refname contains "@{". */
  93                        break;
  94                case 4:
  95                        return -1;
  96                case 5:
  97                        if (!(*flags & REFNAME_REFSPEC_PATTERN))
  98                                return -1; /* refspec can't be a pattern */
  99
 100                        /*
 101                         * Unset the pattern flag so that we only accept
 102                         * a single asterisk for one side of refspec.
 103                         */
 104                        *flags &= ~ REFNAME_REFSPEC_PATTERN;
 105                        break;
 106                }
 107                last = ch;
 108        }
 109out:
 110        if (cp == refname)
 111                return 0; /* Component has zero length. */
 112        if (refname[0] == '.')
 113                return -1; /* Component starts with '.'. */
 114        if (cp - refname >= LOCK_SUFFIX_LEN &&
 115            !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
 116                return -1; /* Refname ends with ".lock". */
 117        return cp - refname;
 118}
 119
 120int check_refname_format(const char *refname, int flags)
 121{
 122        int component_len, component_count = 0;
 123
 124        if (!strcmp(refname, "@"))
 125                /* Refname is a single character '@'. */
 126                return -1;
 127
 128        while (1) {
 129                /* We are at the start of a path component. */
 130                component_len = check_refname_component(refname, &flags);
 131                if (component_len <= 0)
 132                        return -1;
 133
 134                component_count++;
 135                if (refname[component_len] == '\0')
 136                        break;
 137                /* Skip to next component. */
 138                refname += component_len + 1;
 139        }
 140
 141        if (refname[component_len - 1] == '.')
 142                return -1; /* Refname ends with '.'. */
 143        if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
 144                return -1; /* Refname has only one component. */
 145        return 0;
 146}
 147
 148int refname_is_safe(const char *refname)
 149{
 150        const char *rest;
 151
 152        if (skip_prefix(refname, "refs/", &rest)) {
 153                char *buf;
 154                int result;
 155                size_t restlen = strlen(rest);
 156
 157                /* rest must not be empty, or start or end with "/" */
 158                if (!restlen || *rest == '/' || rest[restlen - 1] == '/')
 159                        return 0;
 160
 161                /*
 162                 * Does the refname try to escape refs/?
 163                 * For example: refs/foo/../bar is safe but refs/foo/../../bar
 164                 * is not.
 165                 */
 166                buf = xmallocz(restlen);
 167                result = !normalize_path_copy(buf, rest) && !strcmp(buf, rest);
 168                free(buf);
 169                return result;
 170        }
 171
 172        do {
 173                if (!isupper(*refname) && *refname != '_')
 174                        return 0;
 175                refname++;
 176        } while (*refname);
 177        return 1;
 178}
 179
 180/*
 181 * Return true if refname, which has the specified oid and flags, can
 182 * be resolved to an object in the database. If the referred-to object
 183 * does not exist, emit a warning and return false.
 184 */
 185int ref_resolves_to_object(const char *refname,
 186                           const struct object_id *oid,
 187                           unsigned int flags)
 188{
 189        if (flags & REF_ISBROKEN)
 190                return 0;
 191        if (!has_object_file(oid)) {
 192                error(_("%s does not point to a valid object!"), refname);
 193                return 0;
 194        }
 195        return 1;
 196}
 197
 198char *refs_resolve_refdup(struct ref_store *refs,
 199                          const char *refname, int resolve_flags,
 200                          struct object_id *oid, int *flags)
 201{
 202        const char *result;
 203
 204        result = refs_resolve_ref_unsafe(refs, refname, resolve_flags,
 205                                         oid, flags);
 206        return xstrdup_or_null(result);
 207}
 208
 209char *resolve_refdup(const char *refname, int resolve_flags,
 210                     struct object_id *oid, int *flags)
 211{
 212        return refs_resolve_refdup(get_main_ref_store(the_repository),
 213                                   refname, resolve_flags,
 214                                   oid, flags);
 215}
 216
 217/* The argument to filter_refs */
 218struct ref_filter {
 219        const char *pattern;
 220        const char *prefix;
 221        each_ref_fn *fn;
 222        void *cb_data;
 223};
 224
 225int refs_read_ref_full(struct ref_store *refs, const char *refname,
 226                       int resolve_flags, struct object_id *oid, int *flags)
 227{
 228        if (refs_resolve_ref_unsafe(refs, refname, resolve_flags, oid, flags))
 229                return 0;
 230        return -1;
 231}
 232
 233int read_ref_full(const char *refname, int resolve_flags, struct object_id *oid, int *flags)
 234{
 235        return refs_read_ref_full(get_main_ref_store(the_repository), refname,
 236                                  resolve_flags, oid, flags);
 237}
 238
 239int read_ref(const char *refname, struct object_id *oid)
 240{
 241        return read_ref_full(refname, RESOLVE_REF_READING, oid, NULL);
 242}
 243
 244static int refs_ref_exists(struct ref_store *refs, const char *refname)
 245{
 246        return !!refs_resolve_ref_unsafe(refs, refname, RESOLVE_REF_READING, NULL, NULL);
 247}
 248
 249int ref_exists(const char *refname)
 250{
 251        return refs_ref_exists(get_main_ref_store(the_repository), refname);
 252}
 253
 254static int match_ref_pattern(const char *refname,
 255                             const struct string_list_item *item)
 256{
 257        int matched = 0;
 258        if (item->util == NULL) {
 259                if (!wildmatch(item->string, refname, 0))
 260                        matched = 1;
 261        } else {
 262                const char *rest;
 263                if (skip_prefix(refname, item->string, &rest) &&
 264                    (!*rest || *rest == '/'))
 265                        matched = 1;
 266        }
 267        return matched;
 268}
 269
 270int ref_filter_match(const char *refname,
 271                     const struct string_list *include_patterns,
 272                     const struct string_list *exclude_patterns)
 273{
 274        struct string_list_item *item;
 275
 276        if (exclude_patterns && exclude_patterns->nr) {
 277                for_each_string_list_item(item, exclude_patterns) {
 278                        if (match_ref_pattern(refname, item))
 279                                return 0;
 280                }
 281        }
 282
 283        if (include_patterns && include_patterns->nr) {
 284                int found = 0;
 285                for_each_string_list_item(item, include_patterns) {
 286                        if (match_ref_pattern(refname, item)) {
 287                                found = 1;
 288                                break;
 289                        }
 290                }
 291
 292                if (!found)
 293                        return 0;
 294        }
 295        return 1;
 296}
 297
 298static int filter_refs(const char *refname, const struct object_id *oid,
 299                           int flags, void *data)
 300{
 301        struct ref_filter *filter = (struct ref_filter *)data;
 302
 303        if (wildmatch(filter->pattern, refname, 0))
 304                return 0;
 305        if (filter->prefix)
 306                skip_prefix(refname, filter->prefix, &refname);
 307        return filter->fn(refname, oid, flags, filter->cb_data);
 308}
 309
 310enum peel_status peel_object(const struct object_id *name, struct object_id *oid)
 311{
 312        struct object *o = lookup_unknown_object(name->hash);
 313
 314        if (o->type == OBJ_NONE) {
 315                int type = oid_object_info(the_repository, name, NULL);
 316                if (type < 0 || !object_as_type(the_repository, o, type, 0))
 317                        return PEEL_INVALID;
 318        }
 319
 320        if (o->type != OBJ_TAG)
 321                return PEEL_NON_TAG;
 322
 323        o = deref_tag_noverify(o);
 324        if (!o)
 325                return PEEL_INVALID;
 326
 327        oidcpy(oid, &o->oid);
 328        return PEEL_PEELED;
 329}
 330
 331struct warn_if_dangling_data {
 332        FILE *fp;
 333        const char *refname;
 334        const struct string_list *refnames;
 335        const char *msg_fmt;
 336};
 337
 338static int warn_if_dangling_symref(const char *refname, const struct object_id *oid,
 339                                   int flags, void *cb_data)
 340{
 341        struct warn_if_dangling_data *d = cb_data;
 342        const char *resolves_to;
 343
 344        if (!(flags & REF_ISSYMREF))
 345                return 0;
 346
 347        resolves_to = resolve_ref_unsafe(refname, 0, NULL, NULL);
 348        if (!resolves_to
 349            || (d->refname
 350                ? strcmp(resolves_to, d->refname)
 351                : !string_list_has_string(d->refnames, resolves_to))) {
 352                return 0;
 353        }
 354
 355        fprintf(d->fp, d->msg_fmt, refname);
 356        fputc('\n', d->fp);
 357        return 0;
 358}
 359
 360void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
 361{
 362        struct warn_if_dangling_data data;
 363
 364        data.fp = fp;
 365        data.refname = refname;
 366        data.refnames = NULL;
 367        data.msg_fmt = msg_fmt;
 368        for_each_rawref(warn_if_dangling_symref, &data);
 369}
 370
 371void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
 372{
 373        struct warn_if_dangling_data data;
 374
 375        data.fp = fp;
 376        data.refname = NULL;
 377        data.refnames = refnames;
 378        data.msg_fmt = msg_fmt;
 379        for_each_rawref(warn_if_dangling_symref, &data);
 380}
 381
 382int refs_for_each_tag_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
 383{
 384        return refs_for_each_ref_in(refs, "refs/tags/", fn, cb_data);
 385}
 386
 387int for_each_tag_ref(each_ref_fn fn, void *cb_data)
 388{
 389        return refs_for_each_tag_ref(get_main_ref_store(the_repository), fn, cb_data);
 390}
 391
 392int refs_for_each_branch_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
 393{
 394        return refs_for_each_ref_in(refs, "refs/heads/", fn, cb_data);
 395}
 396
 397int for_each_branch_ref(each_ref_fn fn, void *cb_data)
 398{
 399        return refs_for_each_branch_ref(get_main_ref_store(the_repository), fn, cb_data);
 400}
 401
 402int refs_for_each_remote_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
 403{
 404        return refs_for_each_ref_in(refs, "refs/remotes/", fn, cb_data);
 405}
 406
 407int for_each_remote_ref(each_ref_fn fn, void *cb_data)
 408{
 409        return refs_for_each_remote_ref(get_main_ref_store(the_repository), fn, cb_data);
 410}
 411
 412int head_ref_namespaced(each_ref_fn fn, void *cb_data)
 413{
 414        struct strbuf buf = STRBUF_INIT;
 415        int ret = 0;
 416        struct object_id oid;
 417        int flag;
 418
 419        strbuf_addf(&buf, "%sHEAD", get_git_namespace());
 420        if (!read_ref_full(buf.buf, RESOLVE_REF_READING, &oid, &flag))
 421                ret = fn(buf.buf, &oid, flag, cb_data);
 422        strbuf_release(&buf);
 423
 424        return ret;
 425}
 426
 427void normalize_glob_ref(struct string_list_item *item, const char *prefix,
 428                        const char *pattern)
 429{
 430        struct strbuf normalized_pattern = STRBUF_INIT;
 431
 432        if (*pattern == '/')
 433                BUG("pattern must not start with '/'");
 434
 435        if (prefix) {
 436                strbuf_addstr(&normalized_pattern, prefix);
 437        }
 438        else if (!starts_with(pattern, "refs/"))
 439                strbuf_addstr(&normalized_pattern, "refs/");
 440        strbuf_addstr(&normalized_pattern, pattern);
 441        strbuf_strip_suffix(&normalized_pattern, "/");
 442
 443        item->string = strbuf_detach(&normalized_pattern, NULL);
 444        item->util = has_glob_specials(pattern) ? NULL : item->string;
 445        strbuf_release(&normalized_pattern);
 446}
 447
 448int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
 449        const char *prefix, void *cb_data)
 450{
 451        struct strbuf real_pattern = STRBUF_INIT;
 452        struct ref_filter filter;
 453        int ret;
 454
 455        if (!prefix && !starts_with(pattern, "refs/"))
 456                strbuf_addstr(&real_pattern, "refs/");
 457        else if (prefix)
 458                strbuf_addstr(&real_pattern, prefix);
 459        strbuf_addstr(&real_pattern, pattern);
 460
 461        if (!has_glob_specials(pattern)) {
 462                /* Append implied '/' '*' if not present. */
 463                strbuf_complete(&real_pattern, '/');
 464                /* No need to check for '*', there is none. */
 465                strbuf_addch(&real_pattern, '*');
 466        }
 467
 468        filter.pattern = real_pattern.buf;
 469        filter.prefix = prefix;
 470        filter.fn = fn;
 471        filter.cb_data = cb_data;
 472        ret = for_each_ref(filter_refs, &filter);
 473
 474        strbuf_release(&real_pattern);
 475        return ret;
 476}
 477
 478int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
 479{
 480        return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
 481}
 482
 483const char *prettify_refname(const char *name)
 484{
 485        if (skip_prefix(name, "refs/heads/", &name) ||
 486            skip_prefix(name, "refs/tags/", &name) ||
 487            skip_prefix(name, "refs/remotes/", &name))
 488                ; /* nothing */
 489        return name;
 490}
 491
 492static const char *ref_rev_parse_rules[] = {
 493        "%.*s",
 494        "refs/%.*s",
 495        "refs/tags/%.*s",
 496        "refs/heads/%.*s",
 497        "refs/remotes/%.*s",
 498        "refs/remotes/%.*s/HEAD",
 499        NULL
 500};
 501
 502#define NUM_REV_PARSE_RULES (ARRAY_SIZE(ref_rev_parse_rules) - 1)
 503
 504/*
 505 * Is it possible that the caller meant full_name with abbrev_name?
 506 * If so return a non-zero value to signal "yes"; the magnitude of
 507 * the returned value gives the precedence used for disambiguation.
 508 *
 509 * If abbrev_name cannot mean full_name, return 0.
 510 */
 511int refname_match(const char *abbrev_name, const char *full_name)
 512{
 513        const char **p;
 514        const int abbrev_name_len = strlen(abbrev_name);
 515        const int num_rules = NUM_REV_PARSE_RULES;
 516
 517        for (p = ref_rev_parse_rules; *p; p++)
 518                if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name)))
 519                        return &ref_rev_parse_rules[num_rules] - p;
 520
 521        return 0;
 522}
 523
 524/*
 525 * Given a 'prefix' expand it by the rules in 'ref_rev_parse_rules' and add
 526 * the results to 'prefixes'
 527 */
 528void expand_ref_prefix(struct argv_array *prefixes, const char *prefix)
 529{
 530        const char **p;
 531        int len = strlen(prefix);
 532
 533        for (p = ref_rev_parse_rules; *p; p++)
 534                argv_array_pushf(prefixes, *p, len, prefix);
 535}
 536
 537/*
 538 * *string and *len will only be substituted, and *string returned (for
 539 * later free()ing) if the string passed in is a magic short-hand form
 540 * to name a branch.
 541 */
 542static char *substitute_branch_name(struct repository *r,
 543                                    const char **string, int *len)
 544{
 545        struct strbuf buf = STRBUF_INIT;
 546        int ret = repo_interpret_branch_name(r, *string, *len, &buf, 0);
 547
 548        if (ret == *len) {
 549                size_t size;
 550                *string = strbuf_detach(&buf, &size);
 551                *len = size;
 552                return (char *)*string;
 553        }
 554
 555        return NULL;
 556}
 557
 558int dwim_ref(const char *str, int len, struct object_id *oid, char **ref)
 559{
 560        char *last_branch = substitute_branch_name(the_repository, &str, &len);
 561        int   refs_found  = expand_ref(str, len, oid, ref);
 562        free(last_branch);
 563        return refs_found;
 564}
 565
 566int expand_ref(const char *str, int len, struct object_id *oid, char **ref)
 567{
 568        const char **p, *r;
 569        int refs_found = 0;
 570        struct strbuf fullref = STRBUF_INIT;
 571
 572        *ref = NULL;
 573        for (p = ref_rev_parse_rules; *p; p++) {
 574                struct object_id oid_from_ref;
 575                struct object_id *this_result;
 576                int flag;
 577
 578                this_result = refs_found ? &oid_from_ref : oid;
 579                strbuf_reset(&fullref);
 580                strbuf_addf(&fullref, *p, len, str);
 581                r = resolve_ref_unsafe(fullref.buf, RESOLVE_REF_READING,
 582                                       this_result, &flag);
 583                if (r) {
 584                        if (!refs_found++)
 585                                *ref = xstrdup(r);
 586                        if (!warn_ambiguous_refs)
 587                                break;
 588                } else if ((flag & REF_ISSYMREF) && strcmp(fullref.buf, "HEAD")) {
 589                        warning(_("ignoring dangling symref %s"), fullref.buf);
 590                } else if ((flag & REF_ISBROKEN) && strchr(fullref.buf, '/')) {
 591                        warning(_("ignoring broken ref %s"), fullref.buf);
 592                }
 593        }
 594        strbuf_release(&fullref);
 595        return refs_found;
 596}
 597
 598int dwim_log(const char *str, int len, struct object_id *oid, char **log)
 599{
 600        char *last_branch = substitute_branch_name(the_repository, &str, &len);
 601        const char **p;
 602        int logs_found = 0;
 603        struct strbuf path = STRBUF_INIT;
 604
 605        *log = NULL;
 606        for (p = ref_rev_parse_rules; *p; p++) {
 607                struct object_id hash;
 608                const char *ref, *it;
 609
 610                strbuf_reset(&path);
 611                strbuf_addf(&path, *p, len, str);
 612                ref = resolve_ref_unsafe(path.buf, RESOLVE_REF_READING,
 613                                         &hash, NULL);
 614                if (!ref)
 615                        continue;
 616                if (reflog_exists(path.buf))
 617                        it = path.buf;
 618                else if (strcmp(ref, path.buf) && reflog_exists(ref))
 619                        it = ref;
 620                else
 621                        continue;
 622                if (!logs_found++) {
 623                        *log = xstrdup(it);
 624                        oidcpy(oid, &hash);
 625                }
 626                if (!warn_ambiguous_refs)
 627                        break;
 628        }
 629        strbuf_release(&path);
 630        free(last_branch);
 631        return logs_found;
 632}
 633
 634static int is_per_worktree_ref(const char *refname)
 635{
 636        return !strcmp(refname, "HEAD") ||
 637                starts_with(refname, "refs/worktree/") ||
 638                starts_with(refname, "refs/bisect/") ||
 639                starts_with(refname, "refs/rewritten/");
 640}
 641
 642static int is_pseudoref_syntax(const char *refname)
 643{
 644        const char *c;
 645
 646        for (c = refname; *c; c++) {
 647                if (!isupper(*c) && *c != '-' && *c != '_')
 648                        return 0;
 649        }
 650
 651        return 1;
 652}
 653
 654static int is_main_pseudoref_syntax(const char *refname)
 655{
 656        return skip_prefix(refname, "main-worktree/", &refname) &&
 657                *refname &&
 658                is_pseudoref_syntax(refname);
 659}
 660
 661static int is_other_pseudoref_syntax(const char *refname)
 662{
 663        if (!skip_prefix(refname, "worktrees/", &refname))
 664                return 0;
 665        refname = strchr(refname, '/');
 666        if (!refname || !refname[1])
 667                return 0;
 668        return is_pseudoref_syntax(refname + 1);
 669}
 670
 671enum ref_type ref_type(const char *refname)
 672{
 673        if (is_per_worktree_ref(refname))
 674                return REF_TYPE_PER_WORKTREE;
 675        if (is_pseudoref_syntax(refname))
 676                return REF_TYPE_PSEUDOREF;
 677        if (is_main_pseudoref_syntax(refname))
 678                return REF_TYPE_MAIN_PSEUDOREF;
 679        if (is_other_pseudoref_syntax(refname))
 680                return REF_TYPE_OTHER_PSEUDOREF;
 681        return REF_TYPE_NORMAL;
 682}
 683
 684long get_files_ref_lock_timeout_ms(void)
 685{
 686        static int configured = 0;
 687
 688        /* The default timeout is 100 ms: */
 689        static int timeout_ms = 100;
 690
 691        if (!configured) {
 692                git_config_get_int("core.filesreflocktimeout", &timeout_ms);
 693                configured = 1;
 694        }
 695
 696        return timeout_ms;
 697}
 698
 699static int write_pseudoref(const char *pseudoref, const struct object_id *oid,
 700                           const struct object_id *old_oid, struct strbuf *err)
 701{
 702        const char *filename;
 703        int fd;
 704        struct lock_file lock = LOCK_INIT;
 705        struct strbuf buf = STRBUF_INIT;
 706        int ret = -1;
 707
 708        if (!oid)
 709                return 0;
 710
 711        strbuf_addf(&buf, "%s\n", oid_to_hex(oid));
 712
 713        filename = git_path("%s", pseudoref);
 714        fd = hold_lock_file_for_update_timeout(&lock, filename, 0,
 715                                               get_files_ref_lock_timeout_ms());
 716        if (fd < 0) {
 717                strbuf_addf(err, _("could not open '%s' for writing: %s"),
 718                            filename, strerror(errno));
 719                goto done;
 720        }
 721
 722        if (old_oid) {
 723                struct object_id actual_old_oid;
 724
 725                if (read_ref(pseudoref, &actual_old_oid)) {
 726                        if (!is_null_oid(old_oid)) {
 727                                strbuf_addf(err, _("could not read ref '%s'"),
 728                                            pseudoref);
 729                                rollback_lock_file(&lock);
 730                                goto done;
 731                        }
 732                } else if (is_null_oid(old_oid)) {
 733                        strbuf_addf(err, _("ref '%s' already exists"),
 734                                    pseudoref);
 735                        rollback_lock_file(&lock);
 736                        goto done;
 737                } else if (!oideq(&actual_old_oid, old_oid)) {
 738                        strbuf_addf(err, _("unexpected object ID when writing '%s'"),
 739                                    pseudoref);
 740                        rollback_lock_file(&lock);
 741                        goto done;
 742                }
 743        }
 744
 745        if (write_in_full(fd, buf.buf, buf.len) < 0) {
 746                strbuf_addf(err, _("could not write to '%s'"), filename);
 747                rollback_lock_file(&lock);
 748                goto done;
 749        }
 750
 751        commit_lock_file(&lock);
 752        ret = 0;
 753done:
 754        strbuf_release(&buf);
 755        return ret;
 756}
 757
 758static int delete_pseudoref(const char *pseudoref, const struct object_id *old_oid)
 759{
 760        const char *filename;
 761
 762        filename = git_path("%s", pseudoref);
 763
 764        if (old_oid && !is_null_oid(old_oid)) {
 765                struct lock_file lock = LOCK_INIT;
 766                int fd;
 767                struct object_id actual_old_oid;
 768
 769                fd = hold_lock_file_for_update_timeout(
 770                                &lock, filename, 0,
 771                                get_files_ref_lock_timeout_ms());
 772                if (fd < 0) {
 773                        error_errno(_("could not open '%s' for writing"),
 774                                    filename);
 775                        return -1;
 776                }
 777                if (read_ref(pseudoref, &actual_old_oid))
 778                        die(_("could not read ref '%s'"), pseudoref);
 779                if (!oideq(&actual_old_oid, old_oid)) {
 780                        error(_("unexpected object ID when deleting '%s'"),
 781                              pseudoref);
 782                        rollback_lock_file(&lock);
 783                        return -1;
 784                }
 785
 786                unlink(filename);
 787                rollback_lock_file(&lock);
 788        } else {
 789                unlink(filename);
 790        }
 791
 792        return 0;
 793}
 794
 795int refs_delete_ref(struct ref_store *refs, const char *msg,
 796                    const char *refname,
 797                    const struct object_id *old_oid,
 798                    unsigned int flags)
 799{
 800        struct ref_transaction *transaction;
 801        struct strbuf err = STRBUF_INIT;
 802
 803        if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
 804                assert(refs == get_main_ref_store(the_repository));
 805                return delete_pseudoref(refname, old_oid);
 806        }
 807
 808        transaction = ref_store_transaction_begin(refs, &err);
 809        if (!transaction ||
 810            ref_transaction_delete(transaction, refname, old_oid,
 811                                   flags, msg, &err) ||
 812            ref_transaction_commit(transaction, &err)) {
 813                error("%s", err.buf);
 814                ref_transaction_free(transaction);
 815                strbuf_release(&err);
 816                return 1;
 817        }
 818        ref_transaction_free(transaction);
 819        strbuf_release(&err);
 820        return 0;
 821}
 822
 823int delete_ref(const char *msg, const char *refname,
 824               const struct object_id *old_oid, unsigned int flags)
 825{
 826        return refs_delete_ref(get_main_ref_store(the_repository), msg, refname,
 827                               old_oid, flags);
 828}
 829
 830void copy_reflog_msg(struct strbuf *sb, const char *msg)
 831{
 832        char c;
 833        int wasspace = 1;
 834
 835        strbuf_addch(sb, '\t');
 836        while ((c = *msg++)) {
 837                if (wasspace && isspace(c))
 838                        continue;
 839                wasspace = isspace(c);
 840                if (wasspace)
 841                        c = ' ';
 842                strbuf_addch(sb, c);
 843        }
 844        strbuf_rtrim(sb);
 845}
 846
 847int should_autocreate_reflog(const char *refname)
 848{
 849        switch (log_all_ref_updates) {
 850        case LOG_REFS_ALWAYS:
 851                return 1;
 852        case LOG_REFS_NORMAL:
 853                return starts_with(refname, "refs/heads/") ||
 854                        starts_with(refname, "refs/remotes/") ||
 855                        starts_with(refname, "refs/notes/") ||
 856                        !strcmp(refname, "HEAD");
 857        default:
 858                return 0;
 859        }
 860}
 861
 862int is_branch(const char *refname)
 863{
 864        return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
 865}
 866
 867struct read_ref_at_cb {
 868        const char *refname;
 869        timestamp_t at_time;
 870        int cnt;
 871        int reccnt;
 872        struct object_id *oid;
 873        int found_it;
 874
 875        struct object_id ooid;
 876        struct object_id noid;
 877        int tz;
 878        timestamp_t date;
 879        char **msg;
 880        timestamp_t *cutoff_time;
 881        int *cutoff_tz;
 882        int *cutoff_cnt;
 883};
 884
 885static int read_ref_at_ent(struct object_id *ooid, struct object_id *noid,
 886                const char *email, timestamp_t timestamp, int tz,
 887                const char *message, void *cb_data)
 888{
 889        struct read_ref_at_cb *cb = cb_data;
 890
 891        cb->reccnt++;
 892        cb->tz = tz;
 893        cb->date = timestamp;
 894
 895        if (timestamp <= cb->at_time || cb->cnt == 0) {
 896                if (cb->msg)
 897                        *cb->msg = xstrdup(message);
 898                if (cb->cutoff_time)
 899                        *cb->cutoff_time = timestamp;
 900                if (cb->cutoff_tz)
 901                        *cb->cutoff_tz = tz;
 902                if (cb->cutoff_cnt)
 903                        *cb->cutoff_cnt = cb->reccnt - 1;
 904                /*
 905                 * we have not yet updated cb->[n|o]oid so they still
 906                 * hold the values for the previous record.
 907                 */
 908                if (!is_null_oid(&cb->ooid)) {
 909                        oidcpy(cb->oid, noid);
 910                        if (!oideq(&cb->ooid, noid))
 911                                warning(_("log for ref %s has gap after %s"),
 912                                        cb->refname, show_date(cb->date, cb->tz, DATE_MODE(RFC2822)));
 913                }
 914                else if (cb->date == cb->at_time)
 915                        oidcpy(cb->oid, noid);
 916                else if (!oideq(noid, cb->oid))
 917                        warning(_("log for ref %s unexpectedly ended on %s"),
 918                                cb->refname, show_date(cb->date, cb->tz,
 919                                                       DATE_MODE(RFC2822)));
 920                oidcpy(&cb->ooid, ooid);
 921                oidcpy(&cb->noid, noid);
 922                cb->found_it = 1;
 923                return 1;
 924        }
 925        oidcpy(&cb->ooid, ooid);
 926        oidcpy(&cb->noid, noid);
 927        if (cb->cnt > 0)
 928                cb->cnt--;
 929        return 0;
 930}
 931
 932static int read_ref_at_ent_oldest(struct object_id *ooid, struct object_id *noid,
 933                                  const char *email, timestamp_t timestamp,
 934                                  int tz, const char *message, void *cb_data)
 935{
 936        struct read_ref_at_cb *cb = cb_data;
 937
 938        if (cb->msg)
 939                *cb->msg = xstrdup(message);
 940        if (cb->cutoff_time)
 941                *cb->cutoff_time = timestamp;
 942        if (cb->cutoff_tz)
 943                *cb->cutoff_tz = tz;
 944        if (cb->cutoff_cnt)
 945                *cb->cutoff_cnt = cb->reccnt;
 946        oidcpy(cb->oid, ooid);
 947        if (is_null_oid(cb->oid))
 948                oidcpy(cb->oid, noid);
 949        /* We just want the first entry */
 950        return 1;
 951}
 952
 953int read_ref_at(const char *refname, unsigned int flags, timestamp_t at_time, int cnt,
 954                struct object_id *oid, char **msg,
 955                timestamp_t *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
 956{
 957        struct read_ref_at_cb cb;
 958
 959        memset(&cb, 0, sizeof(cb));
 960        cb.refname = refname;
 961        cb.at_time = at_time;
 962        cb.cnt = cnt;
 963        cb.msg = msg;
 964        cb.cutoff_time = cutoff_time;
 965        cb.cutoff_tz = cutoff_tz;
 966        cb.cutoff_cnt = cutoff_cnt;
 967        cb.oid = oid;
 968
 969        for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
 970
 971        if (!cb.reccnt) {
 972                if (flags & GET_OID_QUIETLY)
 973                        exit(128);
 974                else
 975                        die(_("log for %s is empty"), refname);
 976        }
 977        if (cb.found_it)
 978                return 0;
 979
 980        for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
 981
 982        return 1;
 983}
 984
 985struct ref_transaction *ref_store_transaction_begin(struct ref_store *refs,
 986                                                    struct strbuf *err)
 987{
 988        struct ref_transaction *tr;
 989        assert(err);
 990
 991        tr = xcalloc(1, sizeof(struct ref_transaction));
 992        tr->ref_store = refs;
 993        return tr;
 994}
 995
 996struct ref_transaction *ref_transaction_begin(struct strbuf *err)
 997{
 998        return ref_store_transaction_begin(get_main_ref_store(the_repository), err);
 999}
1000
1001void ref_transaction_free(struct ref_transaction *transaction)
1002{
1003        size_t i;
1004
1005        if (!transaction)
1006                return;
1007
1008        switch (transaction->state) {
1009        case REF_TRANSACTION_OPEN:
1010        case REF_TRANSACTION_CLOSED:
1011                /* OK */
1012                break;
1013        case REF_TRANSACTION_PREPARED:
1014                BUG("free called on a prepared reference transaction");
1015                break;
1016        default:
1017                BUG("unexpected reference transaction state");
1018                break;
1019        }
1020
1021        for (i = 0; i < transaction->nr; i++) {
1022                free(transaction->updates[i]->msg);
1023                free(transaction->updates[i]);
1024        }
1025        free(transaction->updates);
1026        free(transaction);
1027}
1028
1029struct ref_update *ref_transaction_add_update(
1030                struct ref_transaction *transaction,
1031                const char *refname, unsigned int flags,
1032                const struct object_id *new_oid,
1033                const struct object_id *old_oid,
1034                const char *msg)
1035{
1036        struct ref_update *update;
1037
1038        if (transaction->state != REF_TRANSACTION_OPEN)
1039                BUG("update called for transaction that is not open");
1040
1041        FLEX_ALLOC_STR(update, refname, refname);
1042        ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
1043        transaction->updates[transaction->nr++] = update;
1044
1045        update->flags = flags;
1046
1047        if (flags & REF_HAVE_NEW)
1048                oidcpy(&update->new_oid, new_oid);
1049        if (flags & REF_HAVE_OLD)
1050                oidcpy(&update->old_oid, old_oid);
1051        update->msg = xstrdup_or_null(msg);
1052        return update;
1053}
1054
1055int ref_transaction_update(struct ref_transaction *transaction,
1056                           const char *refname,
1057                           const struct object_id *new_oid,
1058                           const struct object_id *old_oid,
1059                           unsigned int flags, const char *msg,
1060                           struct strbuf *err)
1061{
1062        assert(err);
1063
1064        if ((new_oid && !is_null_oid(new_oid)) ?
1065            check_refname_format(refname, REFNAME_ALLOW_ONELEVEL) :
1066            !refname_is_safe(refname)) {
1067                strbuf_addf(err, _("refusing to update ref with bad name '%s'"),
1068                            refname);
1069                return -1;
1070        }
1071
1072        if (flags & ~REF_TRANSACTION_UPDATE_ALLOWED_FLAGS)
1073                BUG("illegal flags 0x%x passed to ref_transaction_update()", flags);
1074
1075        flags |= (new_oid ? REF_HAVE_NEW : 0) | (old_oid ? REF_HAVE_OLD : 0);
1076
1077        ref_transaction_add_update(transaction, refname, flags,
1078                                   new_oid, old_oid, msg);
1079        return 0;
1080}
1081
1082int ref_transaction_create(struct ref_transaction *transaction,
1083                           const char *refname,
1084                           const struct object_id *new_oid,
1085                           unsigned int flags, const char *msg,
1086                           struct strbuf *err)
1087{
1088        if (!new_oid || is_null_oid(new_oid))
1089                BUG("create called without valid new_oid");
1090        return ref_transaction_update(transaction, refname, new_oid,
1091                                      &null_oid, flags, msg, err);
1092}
1093
1094int ref_transaction_delete(struct ref_transaction *transaction,
1095                           const char *refname,
1096                           const struct object_id *old_oid,
1097                           unsigned int flags, const char *msg,
1098                           struct strbuf *err)
1099{
1100        if (old_oid && is_null_oid(old_oid))
1101                BUG("delete called with old_oid set to zeros");
1102        return ref_transaction_update(transaction, refname,
1103                                      &null_oid, old_oid,
1104                                      flags, msg, err);
1105}
1106
1107int ref_transaction_verify(struct ref_transaction *transaction,
1108                           const char *refname,
1109                           const struct object_id *old_oid,
1110                           unsigned int flags,
1111                           struct strbuf *err)
1112{
1113        if (!old_oid)
1114                BUG("verify called with old_oid set to NULL");
1115        return ref_transaction_update(transaction, refname,
1116                                      NULL, old_oid,
1117                                      flags, NULL, err);
1118}
1119
1120int refs_update_ref(struct ref_store *refs, const char *msg,
1121                    const char *refname, const struct object_id *new_oid,
1122                    const struct object_id *old_oid, unsigned int flags,
1123                    enum action_on_err onerr)
1124{
1125        struct ref_transaction *t = NULL;
1126        struct strbuf err = STRBUF_INIT;
1127        int ret = 0;
1128
1129        if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
1130                assert(refs == get_main_ref_store(the_repository));
1131                ret = write_pseudoref(refname, new_oid, old_oid, &err);
1132        } else {
1133                t = ref_store_transaction_begin(refs, &err);
1134                if (!t ||
1135                    ref_transaction_update(t, refname, new_oid, old_oid,
1136                                           flags, msg, &err) ||
1137                    ref_transaction_commit(t, &err)) {
1138                        ret = 1;
1139                        ref_transaction_free(t);
1140                }
1141        }
1142        if (ret) {
1143                const char *str = _("update_ref failed for ref '%s': %s");
1144
1145                switch (onerr) {
1146                case UPDATE_REFS_MSG_ON_ERR:
1147                        error(str, refname, err.buf);
1148                        break;
1149                case UPDATE_REFS_DIE_ON_ERR:
1150                        die(str, refname, err.buf);
1151                        break;
1152                case UPDATE_REFS_QUIET_ON_ERR:
1153                        break;
1154                }
1155                strbuf_release(&err);
1156                return 1;
1157        }
1158        strbuf_release(&err);
1159        if (t)
1160                ref_transaction_free(t);
1161        return 0;
1162}
1163
1164int update_ref(const char *msg, const char *refname,
1165               const struct object_id *new_oid,
1166               const struct object_id *old_oid,
1167               unsigned int flags, enum action_on_err onerr)
1168{
1169        return refs_update_ref(get_main_ref_store(the_repository), msg, refname, new_oid,
1170                               old_oid, flags, onerr);
1171}
1172
1173char *refs_shorten_unambiguous_ref(struct ref_store *refs,
1174                                   const char *refname, int strict)
1175{
1176        int i;
1177        static char **scanf_fmts;
1178        static int nr_rules;
1179        char *short_name;
1180        struct strbuf resolved_buf = STRBUF_INIT;
1181
1182        if (!nr_rules) {
1183                /*
1184                 * Pre-generate scanf formats from ref_rev_parse_rules[].
1185                 * Generate a format suitable for scanf from a
1186                 * ref_rev_parse_rules rule by interpolating "%s" at the
1187                 * location of the "%.*s".
1188                 */
1189                size_t total_len = 0;
1190                size_t offset = 0;
1191
1192                /* the rule list is NULL terminated, count them first */
1193                for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
1194                        /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
1195                        total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
1196
1197                scanf_fmts = xmalloc(st_add(st_mult(sizeof(char *), nr_rules), total_len));
1198
1199                offset = 0;
1200                for (i = 0; i < nr_rules; i++) {
1201                        assert(offset < total_len);
1202                        scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
1203                        offset += xsnprintf(scanf_fmts[i], total_len - offset,
1204                                            ref_rev_parse_rules[i], 2, "%s") + 1;
1205                }
1206        }
1207
1208        /* bail out if there are no rules */
1209        if (!nr_rules)
1210                return xstrdup(refname);
1211
1212        /* buffer for scanf result, at most refname must fit */
1213        short_name = xstrdup(refname);
1214
1215        /* skip first rule, it will always match */
1216        for (i = nr_rules - 1; i > 0 ; --i) {
1217                int j;
1218                int rules_to_fail = i;
1219                int short_name_len;
1220
1221                if (1 != sscanf(refname, scanf_fmts[i], short_name))
1222                        continue;
1223
1224                short_name_len = strlen(short_name);
1225
1226                /*
1227                 * in strict mode, all (except the matched one) rules
1228                 * must fail to resolve to a valid non-ambiguous ref
1229                 */
1230                if (strict)
1231                        rules_to_fail = nr_rules;
1232
1233                /*
1234                 * check if the short name resolves to a valid ref,
1235                 * but use only rules prior to the matched one
1236                 */
1237                for (j = 0; j < rules_to_fail; j++) {
1238                        const char *rule = ref_rev_parse_rules[j];
1239
1240                        /* skip matched rule */
1241                        if (i == j)
1242                                continue;
1243
1244                        /*
1245                         * the short name is ambiguous, if it resolves
1246                         * (with this previous rule) to a valid ref
1247                         * read_ref() returns 0 on success
1248                         */
1249                        strbuf_reset(&resolved_buf);
1250                        strbuf_addf(&resolved_buf, rule,
1251                                    short_name_len, short_name);
1252                        if (refs_ref_exists(refs, resolved_buf.buf))
1253                                break;
1254                }
1255
1256                /*
1257                 * short name is non-ambiguous if all previous rules
1258                 * haven't resolved to a valid ref
1259                 */
1260                if (j == rules_to_fail) {
1261                        strbuf_release(&resolved_buf);
1262                        return short_name;
1263                }
1264        }
1265
1266        strbuf_release(&resolved_buf);
1267        free(short_name);
1268        return xstrdup(refname);
1269}
1270
1271char *shorten_unambiguous_ref(const char *refname, int strict)
1272{
1273        return refs_shorten_unambiguous_ref(get_main_ref_store(the_repository),
1274                                            refname, strict);
1275}
1276
1277static struct string_list *hide_refs;
1278
1279int parse_hide_refs_config(const char *var, const char *value, const char *section)
1280{
1281        const char *key;
1282        if (!strcmp("transfer.hiderefs", var) ||
1283            (!parse_config_key(var, section, NULL, NULL, &key) &&
1284             !strcmp(key, "hiderefs"))) {
1285                char *ref;
1286                int len;
1287
1288                if (!value)
1289                        return config_error_nonbool(var);
1290                ref = xstrdup(value);
1291                len = strlen(ref);
1292                while (len && ref[len - 1] == '/')
1293                        ref[--len] = '\0';
1294                if (!hide_refs) {
1295                        hide_refs = xcalloc(1, sizeof(*hide_refs));
1296                        hide_refs->strdup_strings = 1;
1297                }
1298                string_list_append(hide_refs, ref);
1299        }
1300        return 0;
1301}
1302
1303int ref_is_hidden(const char *refname, const char *refname_full)
1304{
1305        int i;
1306
1307        if (!hide_refs)
1308                return 0;
1309        for (i = hide_refs->nr - 1; i >= 0; i--) {
1310                const char *match = hide_refs->items[i].string;
1311                const char *subject;
1312                int neg = 0;
1313                const char *p;
1314
1315                if (*match == '!') {
1316                        neg = 1;
1317                        match++;
1318                }
1319
1320                if (*match == '^') {
1321                        subject = refname_full;
1322                        match++;
1323                } else {
1324                        subject = refname;
1325                }
1326
1327                /* refname can be NULL when namespaces are used. */
1328                if (subject &&
1329                    skip_prefix(subject, match, &p) &&
1330                    (!*p || *p == '/'))
1331                        return !neg;
1332        }
1333        return 0;
1334}
1335
1336const char *find_descendant_ref(const char *dirname,
1337                                const struct string_list *extras,
1338                                const struct string_list *skip)
1339{
1340        int pos;
1341
1342        if (!extras)
1343                return NULL;
1344
1345        /*
1346         * Look at the place where dirname would be inserted into
1347         * extras. If there is an entry at that position that starts
1348         * with dirname (remember, dirname includes the trailing
1349         * slash) and is not in skip, then we have a conflict.
1350         */
1351        for (pos = string_list_find_insert_index(extras, dirname, 0);
1352             pos < extras->nr; pos++) {
1353                const char *extra_refname = extras->items[pos].string;
1354
1355                if (!starts_with(extra_refname, dirname))
1356                        break;
1357
1358                if (!skip || !string_list_has_string(skip, extra_refname))
1359                        return extra_refname;
1360        }
1361        return NULL;
1362}
1363
1364int refs_rename_ref_available(struct ref_store *refs,
1365                              const char *old_refname,
1366                              const char *new_refname)
1367{
1368        struct string_list skip = STRING_LIST_INIT_NODUP;
1369        struct strbuf err = STRBUF_INIT;
1370        int ok;
1371
1372        string_list_insert(&skip, old_refname);
1373        ok = !refs_verify_refname_available(refs, new_refname,
1374                                            NULL, &skip, &err);
1375        if (!ok)
1376                error("%s", err.buf);
1377
1378        string_list_clear(&skip, 0);
1379        strbuf_release(&err);
1380        return ok;
1381}
1382
1383int refs_head_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1384{
1385        struct object_id oid;
1386        int flag;
1387
1388        if (!refs_read_ref_full(refs, "HEAD", RESOLVE_REF_READING,
1389                                &oid, &flag))
1390                return fn("HEAD", &oid, flag, cb_data);
1391
1392        return 0;
1393}
1394
1395int head_ref(each_ref_fn fn, void *cb_data)
1396{
1397        return refs_head_ref(get_main_ref_store(the_repository), fn, cb_data);
1398}
1399
1400struct ref_iterator *refs_ref_iterator_begin(
1401                struct ref_store *refs,
1402                const char *prefix, int trim, int flags)
1403{
1404        struct ref_iterator *iter;
1405
1406        if (ref_paranoia < 0)
1407                ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 0);
1408        if (ref_paranoia)
1409                flags |= DO_FOR_EACH_INCLUDE_BROKEN;
1410
1411        iter = refs->be->iterator_begin(refs, prefix, flags);
1412
1413        /*
1414         * `iterator_begin()` already takes care of prefix, but we
1415         * might need to do some trimming:
1416         */
1417        if (trim)
1418                iter = prefix_ref_iterator_begin(iter, "", trim);
1419
1420        /* Sanity check for subclasses: */
1421        if (!iter->ordered)
1422                BUG("reference iterator is not ordered");
1423
1424        return iter;
1425}
1426
1427/*
1428 * Call fn for each reference in the specified submodule for which the
1429 * refname begins with prefix. If trim is non-zero, then trim that
1430 * many characters off the beginning of each refname before passing
1431 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1432 * include broken references in the iteration. If fn ever returns a
1433 * non-zero value, stop the iteration and return that value;
1434 * otherwise, return 0.
1435 */
1436static int do_for_each_repo_ref(struct repository *r, const char *prefix,
1437                                each_repo_ref_fn fn, int trim, int flags,
1438                                void *cb_data)
1439{
1440        struct ref_iterator *iter;
1441        struct ref_store *refs = get_main_ref_store(r);
1442
1443        if (!refs)
1444                return 0;
1445
1446        iter = refs_ref_iterator_begin(refs, prefix, trim, flags);
1447
1448        return do_for_each_repo_ref_iterator(r, iter, fn, cb_data);
1449}
1450
1451struct do_for_each_ref_help {
1452        each_ref_fn *fn;
1453        void *cb_data;
1454};
1455
1456static int do_for_each_ref_helper(struct repository *r,
1457                                  const char *refname,
1458                                  const struct object_id *oid,
1459                                  int flags,
1460                                  void *cb_data)
1461{
1462        struct do_for_each_ref_help *hp = cb_data;
1463
1464        return hp->fn(refname, oid, flags, hp->cb_data);
1465}
1466
1467static int do_for_each_ref(struct ref_store *refs, const char *prefix,
1468                           each_ref_fn fn, int trim, int flags, void *cb_data)
1469{
1470        struct ref_iterator *iter;
1471        struct do_for_each_ref_help hp = { fn, cb_data };
1472
1473        if (!refs)
1474                return 0;
1475
1476        iter = refs_ref_iterator_begin(refs, prefix, trim, flags);
1477
1478        return do_for_each_repo_ref_iterator(the_repository, iter,
1479                                        do_for_each_ref_helper, &hp);
1480}
1481
1482int refs_for_each_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1483{
1484        return do_for_each_ref(refs, "", fn, 0, 0, cb_data);
1485}
1486
1487int for_each_ref(each_ref_fn fn, void *cb_data)
1488{
1489        return refs_for_each_ref(get_main_ref_store(the_repository), fn, cb_data);
1490}
1491
1492int refs_for_each_ref_in(struct ref_store *refs, const char *prefix,
1493                         each_ref_fn fn, void *cb_data)
1494{
1495        return do_for_each_ref(refs, prefix, fn, strlen(prefix), 0, cb_data);
1496}
1497
1498int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1499{
1500        return refs_for_each_ref_in(get_main_ref_store(the_repository), prefix, fn, cb_data);
1501}
1502
1503int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data, unsigned int broken)
1504{
1505        unsigned int flag = 0;
1506
1507        if (broken)
1508                flag = DO_FOR_EACH_INCLUDE_BROKEN;
1509        return do_for_each_ref(get_main_ref_store(the_repository),
1510                               prefix, fn, 0, flag, cb_data);
1511}
1512
1513int refs_for_each_fullref_in(struct ref_store *refs, const char *prefix,
1514                             each_ref_fn fn, void *cb_data,
1515                             unsigned int broken)
1516{
1517        unsigned int flag = 0;
1518
1519        if (broken)
1520                flag = DO_FOR_EACH_INCLUDE_BROKEN;
1521        return do_for_each_ref(refs, prefix, fn, 0, flag, cb_data);
1522}
1523
1524int for_each_replace_ref(struct repository *r, each_repo_ref_fn fn, void *cb_data)
1525{
1526        return do_for_each_repo_ref(r, git_replace_ref_base, fn,
1527                                    strlen(git_replace_ref_base),
1528                                    DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1529}
1530
1531int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1532{
1533        struct strbuf buf = STRBUF_INIT;
1534        int ret;
1535        strbuf_addf(&buf, "%srefs/", get_git_namespace());
1536        ret = do_for_each_ref(get_main_ref_store(the_repository),
1537                              buf.buf, fn, 0, 0, cb_data);
1538        strbuf_release(&buf);
1539        return ret;
1540}
1541
1542int refs_for_each_rawref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1543{
1544        return do_for_each_ref(refs, "", fn, 0,
1545                               DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1546}
1547
1548int for_each_rawref(each_ref_fn fn, void *cb_data)
1549{
1550        return refs_for_each_rawref(get_main_ref_store(the_repository), fn, cb_data);
1551}
1552
1553int refs_read_raw_ref(struct ref_store *ref_store,
1554                      const char *refname, struct object_id *oid,
1555                      struct strbuf *referent, unsigned int *type)
1556{
1557        return ref_store->be->read_raw_ref(ref_store, refname, oid, referent, type);
1558}
1559
1560/* This function needs to return a meaningful errno on failure */
1561const char *refs_resolve_ref_unsafe(struct ref_store *refs,
1562                                    const char *refname,
1563                                    int resolve_flags,
1564                                    struct object_id *oid, int *flags)
1565{
1566        static struct strbuf sb_refname = STRBUF_INIT;
1567        struct object_id unused_oid;
1568        int unused_flags;
1569        int symref_count;
1570
1571        if (!oid)
1572                oid = &unused_oid;
1573        if (!flags)
1574                flags = &unused_flags;
1575
1576        *flags = 0;
1577
1578        if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1579                if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1580                    !refname_is_safe(refname)) {
1581                        errno = EINVAL;
1582                        return NULL;
1583                }
1584
1585                /*
1586                 * dwim_ref() uses REF_ISBROKEN to distinguish between
1587                 * missing refs and refs that were present but invalid,
1588                 * to complain about the latter to stderr.
1589                 *
1590                 * We don't know whether the ref exists, so don't set
1591                 * REF_ISBROKEN yet.
1592                 */
1593                *flags |= REF_BAD_NAME;
1594        }
1595
1596        for (symref_count = 0; symref_count < SYMREF_MAXDEPTH; symref_count++) {
1597                unsigned int read_flags = 0;
1598
1599                if (refs_read_raw_ref(refs, refname,
1600                                      oid, &sb_refname, &read_flags)) {
1601                        *flags |= read_flags;
1602
1603                        /* In reading mode, refs must eventually resolve */
1604                        if (resolve_flags & RESOLVE_REF_READING)
1605                                return NULL;
1606
1607                        /*
1608                         * Otherwise a missing ref is OK. But the files backend
1609                         * may show errors besides ENOENT if there are
1610                         * similarly-named refs.
1611                         */
1612                        if (errno != ENOENT &&
1613                            errno != EISDIR &&
1614                            errno != ENOTDIR)
1615                                return NULL;
1616
1617                        oidclr(oid);
1618                        if (*flags & REF_BAD_NAME)
1619                                *flags |= REF_ISBROKEN;
1620                        return refname;
1621                }
1622
1623                *flags |= read_flags;
1624
1625                if (!(read_flags & REF_ISSYMREF)) {
1626                        if (*flags & REF_BAD_NAME) {
1627                                oidclr(oid);
1628                                *flags |= REF_ISBROKEN;
1629                        }
1630                        return refname;
1631                }
1632
1633                refname = sb_refname.buf;
1634                if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1635                        oidclr(oid);
1636                        return refname;
1637                }
1638                if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1639                        if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1640                            !refname_is_safe(refname)) {
1641                                errno = EINVAL;
1642                                return NULL;
1643                        }
1644
1645                        *flags |= REF_ISBROKEN | REF_BAD_NAME;
1646                }
1647        }
1648
1649        errno = ELOOP;
1650        return NULL;
1651}
1652
1653/* backend functions */
1654int refs_init_db(struct strbuf *err)
1655{
1656        struct ref_store *refs = get_main_ref_store(the_repository);
1657
1658        return refs->be->init_db(refs, err);
1659}
1660
1661const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1662                               struct object_id *oid, int *flags)
1663{
1664        return refs_resolve_ref_unsafe(get_main_ref_store(the_repository), refname,
1665                                       resolve_flags, oid, flags);
1666}
1667
1668int resolve_gitlink_ref(const char *submodule, const char *refname,
1669                        struct object_id *oid)
1670{
1671        struct ref_store *refs;
1672        int flags;
1673
1674        refs = get_submodule_ref_store(submodule);
1675
1676        if (!refs)
1677                return -1;
1678
1679        if (!refs_resolve_ref_unsafe(refs, refname, 0, oid, &flags) ||
1680            is_null_oid(oid))
1681                return -1;
1682        return 0;
1683}
1684
1685struct ref_store_hash_entry
1686{
1687        struct hashmap_entry ent; /* must be the first member! */
1688
1689        struct ref_store *refs;
1690
1691        /* NUL-terminated identifier of the ref store: */
1692        char name[FLEX_ARRAY];
1693};
1694
1695static int ref_store_hash_cmp(const void *unused_cmp_data,
1696                              const void *entry, const void *entry_or_key,
1697                              const void *keydata)
1698{
1699        const struct ref_store_hash_entry *e1 = entry, *e2 = entry_or_key;
1700        const char *name = keydata ? keydata : e2->name;
1701
1702        return strcmp(e1->name, name);
1703}
1704
1705static struct ref_store_hash_entry *alloc_ref_store_hash_entry(
1706                const char *name, struct ref_store *refs)
1707{
1708        struct ref_store_hash_entry *entry;
1709
1710        FLEX_ALLOC_STR(entry, name, name);
1711        hashmap_entry_init(entry, strhash(name));
1712        entry->refs = refs;
1713        return entry;
1714}
1715
1716/* A hashmap of ref_stores, stored by submodule name: */
1717static struct hashmap submodule_ref_stores;
1718
1719/* A hashmap of ref_stores, stored by worktree id: */
1720static struct hashmap worktree_ref_stores;
1721
1722/*
1723 * Look up a ref store by name. If that ref_store hasn't been
1724 * registered yet, return NULL.
1725 */
1726static struct ref_store *lookup_ref_store_map(struct hashmap *map,
1727                                              const char *name)
1728{
1729        struct ref_store_hash_entry *entry;
1730
1731        if (!map->tablesize)
1732                /* It's initialized on demand in register_ref_store(). */
1733                return NULL;
1734
1735        entry = hashmap_get_from_hash(map, strhash(name), name);
1736        return entry ? entry->refs : NULL;
1737}
1738
1739/*
1740 * Create, record, and return a ref_store instance for the specified
1741 * gitdir.
1742 */
1743static struct ref_store *ref_store_init(const char *gitdir,
1744                                        unsigned int flags)
1745{
1746        const char *be_name = "files";
1747        struct ref_storage_be *be = find_ref_storage_backend(be_name);
1748        struct ref_store *refs;
1749
1750        if (!be)
1751                BUG("reference backend %s is unknown", be_name);
1752
1753        refs = be->init(gitdir, flags);
1754        return refs;
1755}
1756
1757struct ref_store *get_main_ref_store(struct repository *r)
1758{
1759        if (r->refs)
1760                return r->refs;
1761
1762        if (!r->gitdir)
1763                BUG("attempting to get main_ref_store outside of repository");
1764
1765        r->refs = ref_store_init(r->gitdir, REF_STORE_ALL_CAPS);
1766        return r->refs;
1767}
1768
1769/*
1770 * Associate a ref store with a name. It is a fatal error to call this
1771 * function twice for the same name.
1772 */
1773static void register_ref_store_map(struct hashmap *map,
1774                                   const char *type,
1775                                   struct ref_store *refs,
1776                                   const char *name)
1777{
1778        if (!map->tablesize)
1779                hashmap_init(map, ref_store_hash_cmp, NULL, 0);
1780
1781        if (hashmap_put(map, alloc_ref_store_hash_entry(name, refs)))
1782                BUG("%s ref_store '%s' initialized twice", type, name);
1783}
1784
1785struct ref_store *get_submodule_ref_store(const char *submodule)
1786{
1787        struct strbuf submodule_sb = STRBUF_INIT;
1788        struct ref_store *refs;
1789        char *to_free = NULL;
1790        size_t len;
1791
1792        if (!submodule)
1793                return NULL;
1794
1795        len = strlen(submodule);
1796        while (len && is_dir_sep(submodule[len - 1]))
1797                len--;
1798        if (!len)
1799                return NULL;
1800
1801        if (submodule[len])
1802                /* We need to strip off one or more trailing slashes */
1803                submodule = to_free = xmemdupz(submodule, len);
1804
1805        refs = lookup_ref_store_map(&submodule_ref_stores, submodule);
1806        if (refs)
1807                goto done;
1808
1809        strbuf_addstr(&submodule_sb, submodule);
1810        if (!is_nonbare_repository_dir(&submodule_sb))
1811                goto done;
1812
1813        if (submodule_to_gitdir(&submodule_sb, submodule))
1814                goto done;
1815
1816        /* assume that add_submodule_odb() has been called */
1817        refs = ref_store_init(submodule_sb.buf,
1818                              REF_STORE_READ | REF_STORE_ODB);
1819        register_ref_store_map(&submodule_ref_stores, "submodule",
1820                               refs, submodule);
1821
1822done:
1823        strbuf_release(&submodule_sb);
1824        free(to_free);
1825
1826        return refs;
1827}
1828
1829struct ref_store *get_worktree_ref_store(const struct worktree *wt)
1830{
1831        struct ref_store *refs;
1832        const char *id;
1833
1834        if (wt->is_current)
1835                return get_main_ref_store(the_repository);
1836
1837        id = wt->id ? wt->id : "/";
1838        refs = lookup_ref_store_map(&worktree_ref_stores, id);
1839        if (refs)
1840                return refs;
1841
1842        if (wt->id)
1843                refs = ref_store_init(git_common_path("worktrees/%s", wt->id),
1844                                      REF_STORE_ALL_CAPS);
1845        else
1846                refs = ref_store_init(get_git_common_dir(),
1847                                      REF_STORE_ALL_CAPS);
1848
1849        if (refs)
1850                register_ref_store_map(&worktree_ref_stores, "worktree",
1851                                       refs, id);
1852        return refs;
1853}
1854
1855void base_ref_store_init(struct ref_store *refs,
1856                         const struct ref_storage_be *be)
1857{
1858        refs->be = be;
1859}
1860
1861/* backend functions */
1862int refs_pack_refs(struct ref_store *refs, unsigned int flags)
1863{
1864        return refs->be->pack_refs(refs, flags);
1865}
1866
1867int refs_peel_ref(struct ref_store *refs, const char *refname,
1868                  struct object_id *oid)
1869{
1870        int flag;
1871        struct object_id base;
1872
1873        if (current_ref_iter && current_ref_iter->refname == refname) {
1874                struct object_id peeled;
1875
1876                if (ref_iterator_peel(current_ref_iter, &peeled))
1877                        return -1;
1878                oidcpy(oid, &peeled);
1879                return 0;
1880        }
1881
1882        if (refs_read_ref_full(refs, refname,
1883                               RESOLVE_REF_READING, &base, &flag))
1884                return -1;
1885
1886        return peel_object(&base, oid);
1887}
1888
1889int peel_ref(const char *refname, struct object_id *oid)
1890{
1891        return refs_peel_ref(get_main_ref_store(the_repository), refname, oid);
1892}
1893
1894int refs_create_symref(struct ref_store *refs,
1895                       const char *ref_target,
1896                       const char *refs_heads_master,
1897                       const char *logmsg)
1898{
1899        return refs->be->create_symref(refs, ref_target,
1900                                       refs_heads_master,
1901                                       logmsg);
1902}
1903
1904int create_symref(const char *ref_target, const char *refs_heads_master,
1905                  const char *logmsg)
1906{
1907        return refs_create_symref(get_main_ref_store(the_repository), ref_target,
1908                                  refs_heads_master, logmsg);
1909}
1910
1911int ref_update_reject_duplicates(struct string_list *refnames,
1912                                 struct strbuf *err)
1913{
1914        size_t i, n = refnames->nr;
1915
1916        assert(err);
1917
1918        for (i = 1; i < n; i++) {
1919                int cmp = strcmp(refnames->items[i - 1].string,
1920                                 refnames->items[i].string);
1921
1922                if (!cmp) {
1923                        strbuf_addf(err,
1924                                    _("multiple updates for ref '%s' not allowed"),
1925                                    refnames->items[i].string);
1926                        return 1;
1927                } else if (cmp > 0) {
1928                        BUG("ref_update_reject_duplicates() received unsorted list");
1929                }
1930        }
1931        return 0;
1932}
1933
1934int ref_transaction_prepare(struct ref_transaction *transaction,
1935                            struct strbuf *err)
1936{
1937        struct ref_store *refs = transaction->ref_store;
1938
1939        switch (transaction->state) {
1940        case REF_TRANSACTION_OPEN:
1941                /* Good. */
1942                break;
1943        case REF_TRANSACTION_PREPARED:
1944                BUG("prepare called twice on reference transaction");
1945                break;
1946        case REF_TRANSACTION_CLOSED:
1947                BUG("prepare called on a closed reference transaction");
1948                break;
1949        default:
1950                BUG("unexpected reference transaction state");
1951                break;
1952        }
1953
1954        if (getenv(GIT_QUARANTINE_ENVIRONMENT)) {
1955                strbuf_addstr(err,
1956                              _("ref updates forbidden inside quarantine environment"));
1957                return -1;
1958        }
1959
1960        return refs->be->transaction_prepare(refs, transaction, err);
1961}
1962
1963int ref_transaction_abort(struct ref_transaction *transaction,
1964                          struct strbuf *err)
1965{
1966        struct ref_store *refs = transaction->ref_store;
1967        int ret = 0;
1968
1969        switch (transaction->state) {
1970        case REF_TRANSACTION_OPEN:
1971                /* No need to abort explicitly. */
1972                break;
1973        case REF_TRANSACTION_PREPARED:
1974                ret = refs->be->transaction_abort(refs, transaction, err);
1975                break;
1976        case REF_TRANSACTION_CLOSED:
1977                BUG("abort called on a closed reference transaction");
1978                break;
1979        default:
1980                BUG("unexpected reference transaction state");
1981                break;
1982        }
1983
1984        ref_transaction_free(transaction);
1985        return ret;
1986}
1987
1988int ref_transaction_commit(struct ref_transaction *transaction,
1989                           struct strbuf *err)
1990{
1991        struct ref_store *refs = transaction->ref_store;
1992        int ret;
1993
1994        switch (transaction->state) {
1995        case REF_TRANSACTION_OPEN:
1996                /* Need to prepare first. */
1997                ret = ref_transaction_prepare(transaction, err);
1998                if (ret)
1999                        return ret;
2000                break;
2001        case REF_TRANSACTION_PREPARED:
2002                /* Fall through to finish. */
2003                break;
2004        case REF_TRANSACTION_CLOSED:
2005                BUG("commit called on a closed reference transaction");
2006                break;
2007        default:
2008                BUG("unexpected reference transaction state");
2009                break;
2010        }
2011
2012        return refs->be->transaction_finish(refs, transaction, err);
2013}
2014
2015int refs_verify_refname_available(struct ref_store *refs,
2016                                  const char *refname,
2017                                  const struct string_list *extras,
2018                                  const struct string_list *skip,
2019                                  struct strbuf *err)
2020{
2021        const char *slash;
2022        const char *extra_refname;
2023        struct strbuf dirname = STRBUF_INIT;
2024        struct strbuf referent = STRBUF_INIT;
2025        struct object_id oid;
2026        unsigned int type;
2027        struct ref_iterator *iter;
2028        int ok;
2029        int ret = -1;
2030
2031        /*
2032         * For the sake of comments in this function, suppose that
2033         * refname is "refs/foo/bar".
2034         */
2035
2036        assert(err);
2037
2038        strbuf_grow(&dirname, strlen(refname) + 1);
2039        for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
2040                /* Expand dirname to the new prefix, not including the trailing slash: */
2041                strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
2042
2043                /*
2044                 * We are still at a leading dir of the refname (e.g.,
2045                 * "refs/foo"; if there is a reference with that name,
2046                 * it is a conflict, *unless* it is in skip.
2047                 */
2048                if (skip && string_list_has_string(skip, dirname.buf))
2049                        continue;
2050
2051                if (!refs_read_raw_ref(refs, dirname.buf, &oid, &referent, &type)) {
2052                        strbuf_addf(err, _("'%s' exists; cannot create '%s'"),
2053                                    dirname.buf, refname);
2054                        goto cleanup;
2055                }
2056
2057                if (extras && string_list_has_string(extras, dirname.buf)) {
2058                        strbuf_addf(err, _("cannot process '%s' and '%s' at the same time"),
2059                                    refname, dirname.buf);
2060                        goto cleanup;
2061                }
2062        }
2063
2064        /*
2065         * We are at the leaf of our refname (e.g., "refs/foo/bar").
2066         * There is no point in searching for a reference with that
2067         * name, because a refname isn't considered to conflict with
2068         * itself. But we still need to check for references whose
2069         * names are in the "refs/foo/bar/" namespace, because they
2070         * *do* conflict.
2071         */
2072        strbuf_addstr(&dirname, refname + dirname.len);
2073        strbuf_addch(&dirname, '/');
2074
2075        iter = refs_ref_iterator_begin(refs, dirname.buf, 0,
2076                                       DO_FOR_EACH_INCLUDE_BROKEN);
2077        while ((ok = ref_iterator_advance(iter)) == ITER_OK) {
2078                if (skip &&
2079                    string_list_has_string(skip, iter->refname))
2080                        continue;
2081
2082                strbuf_addf(err, _("'%s' exists; cannot create '%s'"),
2083                            iter->refname, refname);
2084                ref_iterator_abort(iter);
2085                goto cleanup;
2086        }
2087
2088        if (ok != ITER_DONE)
2089                BUG("error while iterating over references");
2090
2091        extra_refname = find_descendant_ref(dirname.buf, extras, skip);
2092        if (extra_refname)
2093                strbuf_addf(err, _("cannot process '%s' and '%s' at the same time"),
2094                            refname, extra_refname);
2095        else
2096                ret = 0;
2097
2098cleanup:
2099        strbuf_release(&referent);
2100        strbuf_release(&dirname);
2101        return ret;
2102}
2103
2104int refs_for_each_reflog(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2105{
2106        struct ref_iterator *iter;
2107        struct do_for_each_ref_help hp = { fn, cb_data };
2108
2109        iter = refs->be->reflog_iterator_begin(refs);
2110
2111        return do_for_each_repo_ref_iterator(the_repository, iter,
2112                                             do_for_each_ref_helper, &hp);
2113}
2114
2115int for_each_reflog(each_ref_fn fn, void *cb_data)
2116{
2117        return refs_for_each_reflog(get_main_ref_store(the_repository), fn, cb_data);
2118}
2119
2120int refs_for_each_reflog_ent_reverse(struct ref_store *refs,
2121                                     const char *refname,
2122                                     each_reflog_ent_fn fn,
2123                                     void *cb_data)
2124{
2125        return refs->be->for_each_reflog_ent_reverse(refs, refname,
2126                                                     fn, cb_data);
2127}
2128
2129int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn,
2130                                void *cb_data)
2131{
2132        return refs_for_each_reflog_ent_reverse(get_main_ref_store(the_repository),
2133                                                refname, fn, cb_data);
2134}
2135
2136int refs_for_each_reflog_ent(struct ref_store *refs, const char *refname,
2137                             each_reflog_ent_fn fn, void *cb_data)
2138{
2139        return refs->be->for_each_reflog_ent(refs, refname, fn, cb_data);
2140}
2141
2142int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn,
2143                        void *cb_data)
2144{
2145        return refs_for_each_reflog_ent(get_main_ref_store(the_repository), refname,
2146                                        fn, cb_data);
2147}
2148
2149int refs_reflog_exists(struct ref_store *refs, const char *refname)
2150{
2151        return refs->be->reflog_exists(refs, refname);
2152}
2153
2154int reflog_exists(const char *refname)
2155{
2156        return refs_reflog_exists(get_main_ref_store(the_repository), refname);
2157}
2158
2159int refs_create_reflog(struct ref_store *refs, const char *refname,
2160                       int force_create, struct strbuf *err)
2161{
2162        return refs->be->create_reflog(refs, refname, force_create, err);
2163}
2164
2165int safe_create_reflog(const char *refname, int force_create,
2166                       struct strbuf *err)
2167{
2168        return refs_create_reflog(get_main_ref_store(the_repository), refname,
2169                                  force_create, err);
2170}
2171
2172int refs_delete_reflog(struct ref_store *refs, const char *refname)
2173{
2174        return refs->be->delete_reflog(refs, refname);
2175}
2176
2177int delete_reflog(const char *refname)
2178{
2179        return refs_delete_reflog(get_main_ref_store(the_repository), refname);
2180}
2181
2182int refs_reflog_expire(struct ref_store *refs,
2183                       const char *refname, const struct object_id *oid,
2184                       unsigned int flags,
2185                       reflog_expiry_prepare_fn prepare_fn,
2186                       reflog_expiry_should_prune_fn should_prune_fn,
2187                       reflog_expiry_cleanup_fn cleanup_fn,
2188                       void *policy_cb_data)
2189{
2190        return refs->be->reflog_expire(refs, refname, oid, flags,
2191                                       prepare_fn, should_prune_fn,
2192                                       cleanup_fn, policy_cb_data);
2193}
2194
2195int reflog_expire(const char *refname, const struct object_id *oid,
2196                  unsigned int flags,
2197                  reflog_expiry_prepare_fn prepare_fn,
2198                  reflog_expiry_should_prune_fn should_prune_fn,
2199                  reflog_expiry_cleanup_fn cleanup_fn,
2200                  void *policy_cb_data)
2201{
2202        return refs_reflog_expire(get_main_ref_store(the_repository),
2203                                  refname, oid, flags,
2204                                  prepare_fn, should_prune_fn,
2205                                  cleanup_fn, policy_cb_data);
2206}
2207
2208int initial_ref_transaction_commit(struct ref_transaction *transaction,
2209                                   struct strbuf *err)
2210{
2211        struct ref_store *refs = transaction->ref_store;
2212
2213        return refs->be->initial_transaction_commit(refs, transaction, err);
2214}
2215
2216int refs_delete_refs(struct ref_store *refs, const char *msg,
2217                     struct string_list *refnames, unsigned int flags)
2218{
2219        return refs->be->delete_refs(refs, msg, refnames, flags);
2220}
2221
2222int delete_refs(const char *msg, struct string_list *refnames,
2223                unsigned int flags)
2224{
2225        return refs_delete_refs(get_main_ref_store(the_repository), msg, refnames, flags);
2226}
2227
2228int refs_rename_ref(struct ref_store *refs, const char *oldref,
2229                    const char *newref, const char *logmsg)
2230{
2231        return refs->be->rename_ref(refs, oldref, newref, logmsg);
2232}
2233
2234int rename_ref(const char *oldref, const char *newref, const char *logmsg)
2235{
2236        return refs_rename_ref(get_main_ref_store(the_repository), oldref, newref, logmsg);
2237}
2238
2239int refs_copy_existing_ref(struct ref_store *refs, const char *oldref,
2240                    const char *newref, const char *logmsg)
2241{
2242        return refs->be->copy_ref(refs, oldref, newref, logmsg);
2243}
2244
2245int copy_existing_ref(const char *oldref, const char *newref, const char *logmsg)
2246{
2247        return refs_copy_existing_ref(get_main_ref_store(the_repository), oldref, newref, logmsg);
2248}