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