refs / files-backend.con commit revision.c: --reflog add HEAD reflog from all worktrees (acd9544)
   1#include "../cache.h"
   2#include "../config.h"
   3#include "../refs.h"
   4#include "refs-internal.h"
   5#include "ref-cache.h"
   6#include "packed-backend.h"
   7#include "../iterator.h"
   8#include "../dir-iterator.h"
   9#include "../lockfile.h"
  10#include "../object.h"
  11#include "../dir.h"
  12
  13struct ref_lock {
  14        char *ref_name;
  15        struct lock_file *lk;
  16        struct object_id old_oid;
  17};
  18
  19/*
  20 * Future: need to be in "struct repository"
  21 * when doing a full libification.
  22 */
  23struct files_ref_store {
  24        struct ref_store base;
  25        unsigned int store_flags;
  26
  27        char *gitdir;
  28        char *gitcommondir;
  29
  30        struct ref_cache *loose;
  31
  32        struct ref_store *packed_ref_store;
  33};
  34
  35static void clear_loose_ref_cache(struct files_ref_store *refs)
  36{
  37        if (refs->loose) {
  38                free_ref_cache(refs->loose);
  39                refs->loose = NULL;
  40        }
  41}
  42
  43/*
  44 * Create a new submodule ref cache and add it to the internal
  45 * set of caches.
  46 */
  47static struct ref_store *files_ref_store_create(const char *gitdir,
  48                                                unsigned int flags)
  49{
  50        struct files_ref_store *refs = xcalloc(1, sizeof(*refs));
  51        struct ref_store *ref_store = (struct ref_store *)refs;
  52        struct strbuf sb = STRBUF_INIT;
  53
  54        base_ref_store_init(ref_store, &refs_be_files);
  55        refs->store_flags = flags;
  56
  57        refs->gitdir = xstrdup(gitdir);
  58        get_common_dir_noenv(&sb, gitdir);
  59        refs->gitcommondir = strbuf_detach(&sb, NULL);
  60        strbuf_addf(&sb, "%s/packed-refs", refs->gitcommondir);
  61        refs->packed_ref_store = packed_ref_store_create(sb.buf, flags);
  62        strbuf_release(&sb);
  63
  64        return ref_store;
  65}
  66
  67/*
  68 * Die if refs is not the main ref store. caller is used in any
  69 * necessary error messages.
  70 */
  71static void files_assert_main_repository(struct files_ref_store *refs,
  72                                         const char *caller)
  73{
  74        if (refs->store_flags & REF_STORE_MAIN)
  75                return;
  76
  77        die("BUG: operation %s only allowed for main ref store", caller);
  78}
  79
  80/*
  81 * Downcast ref_store to files_ref_store. Die if ref_store is not a
  82 * files_ref_store. required_flags is compared with ref_store's
  83 * store_flags to ensure the ref_store has all required capabilities.
  84 * "caller" is used in any necessary error messages.
  85 */
  86static struct files_ref_store *files_downcast(struct ref_store *ref_store,
  87                                              unsigned int required_flags,
  88                                              const char *caller)
  89{
  90        struct files_ref_store *refs;
  91
  92        if (ref_store->be != &refs_be_files)
  93                die("BUG: ref_store is type \"%s\" not \"files\" in %s",
  94                    ref_store->be->name, caller);
  95
  96        refs = (struct files_ref_store *)ref_store;
  97
  98        if ((refs->store_flags & required_flags) != required_flags)
  99                die("BUG: operation %s requires abilities 0x%x, but only have 0x%x",
 100                    caller, required_flags, refs->store_flags);
 101
 102        return refs;
 103}
 104
 105static void files_reflog_path(struct files_ref_store *refs,
 106                              struct strbuf *sb,
 107                              const char *refname)
 108{
 109        switch (ref_type(refname)) {
 110        case REF_TYPE_PER_WORKTREE:
 111        case REF_TYPE_PSEUDOREF:
 112                strbuf_addf(sb, "%s/logs/%s", refs->gitdir, refname);
 113                break;
 114        case REF_TYPE_NORMAL:
 115                strbuf_addf(sb, "%s/logs/%s", refs->gitcommondir, refname);
 116                break;
 117        default:
 118                die("BUG: unknown ref type %d of ref %s",
 119                    ref_type(refname), refname);
 120        }
 121}
 122
 123static void files_ref_path(struct files_ref_store *refs,
 124                           struct strbuf *sb,
 125                           const char *refname)
 126{
 127        switch (ref_type(refname)) {
 128        case REF_TYPE_PER_WORKTREE:
 129        case REF_TYPE_PSEUDOREF:
 130                strbuf_addf(sb, "%s/%s", refs->gitdir, refname);
 131                break;
 132        case REF_TYPE_NORMAL:
 133                strbuf_addf(sb, "%s/%s", refs->gitcommondir, refname);
 134                break;
 135        default:
 136                die("BUG: unknown ref type %d of ref %s",
 137                    ref_type(refname), refname);
 138        }
 139}
 140
 141/*
 142 * Read the loose references from the namespace dirname into dir
 143 * (without recursing).  dirname must end with '/'.  dir must be the
 144 * directory entry corresponding to dirname.
 145 */
 146static void loose_fill_ref_dir(struct ref_store *ref_store,
 147                               struct ref_dir *dir, const char *dirname)
 148{
 149        struct files_ref_store *refs =
 150                files_downcast(ref_store, REF_STORE_READ, "fill_ref_dir");
 151        DIR *d;
 152        struct dirent *de;
 153        int dirnamelen = strlen(dirname);
 154        struct strbuf refname;
 155        struct strbuf path = STRBUF_INIT;
 156        size_t path_baselen;
 157
 158        files_ref_path(refs, &path, dirname);
 159        path_baselen = path.len;
 160
 161        d = opendir(path.buf);
 162        if (!d) {
 163                strbuf_release(&path);
 164                return;
 165        }
 166
 167        strbuf_init(&refname, dirnamelen + 257);
 168        strbuf_add(&refname, dirname, dirnamelen);
 169
 170        while ((de = readdir(d)) != NULL) {
 171                struct object_id oid;
 172                struct stat st;
 173                int flag;
 174
 175                if (de->d_name[0] == '.')
 176                        continue;
 177                if (ends_with(de->d_name, ".lock"))
 178                        continue;
 179                strbuf_addstr(&refname, de->d_name);
 180                strbuf_addstr(&path, de->d_name);
 181                if (stat(path.buf, &st) < 0) {
 182                        ; /* silently ignore */
 183                } else if (S_ISDIR(st.st_mode)) {
 184                        strbuf_addch(&refname, '/');
 185                        add_entry_to_dir(dir,
 186                                         create_dir_entry(dir->cache, refname.buf,
 187                                                          refname.len, 1));
 188                } else {
 189                        if (!refs_resolve_ref_unsafe(&refs->base,
 190                                                     refname.buf,
 191                                                     RESOLVE_REF_READING,
 192                                                     oid.hash, &flag)) {
 193                                oidclr(&oid);
 194                                flag |= REF_ISBROKEN;
 195                        } else if (is_null_oid(&oid)) {
 196                                /*
 197                                 * It is so astronomically unlikely
 198                                 * that NULL_SHA1 is the SHA-1 of an
 199                                 * actual object that we consider its
 200                                 * appearance in a loose reference
 201                                 * file to be repo corruption
 202                                 * (probably due to a software bug).
 203                                 */
 204                                flag |= REF_ISBROKEN;
 205                        }
 206
 207                        if (check_refname_format(refname.buf,
 208                                                 REFNAME_ALLOW_ONELEVEL)) {
 209                                if (!refname_is_safe(refname.buf))
 210                                        die("loose refname is dangerous: %s", refname.buf);
 211                                oidclr(&oid);
 212                                flag |= REF_BAD_NAME | REF_ISBROKEN;
 213                        }
 214                        add_entry_to_dir(dir,
 215                                         create_ref_entry(refname.buf, &oid, flag));
 216                }
 217                strbuf_setlen(&refname, dirnamelen);
 218                strbuf_setlen(&path, path_baselen);
 219        }
 220        strbuf_release(&refname);
 221        strbuf_release(&path);
 222        closedir(d);
 223
 224        /*
 225         * Manually add refs/bisect, which, being per-worktree, might
 226         * not appear in the directory listing for refs/ in the main
 227         * repo.
 228         */
 229        if (!strcmp(dirname, "refs/")) {
 230                int pos = search_ref_dir(dir, "refs/bisect/", 12);
 231
 232                if (pos < 0) {
 233                        struct ref_entry *child_entry = create_dir_entry(
 234                                        dir->cache, "refs/bisect/", 12, 1);
 235                        add_entry_to_dir(dir, child_entry);
 236                }
 237        }
 238}
 239
 240static struct ref_cache *get_loose_ref_cache(struct files_ref_store *refs)
 241{
 242        if (!refs->loose) {
 243                /*
 244                 * Mark the top-level directory complete because we
 245                 * are about to read the only subdirectory that can
 246                 * hold references:
 247                 */
 248                refs->loose = create_ref_cache(&refs->base, loose_fill_ref_dir);
 249
 250                /* We're going to fill the top level ourselves: */
 251                refs->loose->root->flag &= ~REF_INCOMPLETE;
 252
 253                /*
 254                 * Add an incomplete entry for "refs/" (to be filled
 255                 * lazily):
 256                 */
 257                add_entry_to_dir(get_ref_dir(refs->loose->root),
 258                                 create_dir_entry(refs->loose, "refs/", 5, 1));
 259        }
 260        return refs->loose;
 261}
 262
 263static int files_read_raw_ref(struct ref_store *ref_store,
 264                              const char *refname, unsigned char *sha1,
 265                              struct strbuf *referent, unsigned int *type)
 266{
 267        struct files_ref_store *refs =
 268                files_downcast(ref_store, REF_STORE_READ, "read_raw_ref");
 269        struct strbuf sb_contents = STRBUF_INIT;
 270        struct strbuf sb_path = STRBUF_INIT;
 271        const char *path;
 272        const char *buf;
 273        struct stat st;
 274        int fd;
 275        int ret = -1;
 276        int save_errno;
 277        int remaining_retries = 3;
 278
 279        *type = 0;
 280        strbuf_reset(&sb_path);
 281
 282        files_ref_path(refs, &sb_path, refname);
 283
 284        path = sb_path.buf;
 285
 286stat_ref:
 287        /*
 288         * We might have to loop back here to avoid a race
 289         * condition: first we lstat() the file, then we try
 290         * to read it as a link or as a file.  But if somebody
 291         * changes the type of the file (file <-> directory
 292         * <-> symlink) between the lstat() and reading, then
 293         * we don't want to report that as an error but rather
 294         * try again starting with the lstat().
 295         *
 296         * We'll keep a count of the retries, though, just to avoid
 297         * any confusing situation sending us into an infinite loop.
 298         */
 299
 300        if (remaining_retries-- <= 0)
 301                goto out;
 302
 303        if (lstat(path, &st) < 0) {
 304                if (errno != ENOENT)
 305                        goto out;
 306                if (refs_read_raw_ref(refs->packed_ref_store, refname,
 307                                      sha1, referent, type)) {
 308                        errno = ENOENT;
 309                        goto out;
 310                }
 311                ret = 0;
 312                goto out;
 313        }
 314
 315        /* Follow "normalized" - ie "refs/.." symlinks by hand */
 316        if (S_ISLNK(st.st_mode)) {
 317                strbuf_reset(&sb_contents);
 318                if (strbuf_readlink(&sb_contents, path, 0) < 0) {
 319                        if (errno == ENOENT || errno == EINVAL)
 320                                /* inconsistent with lstat; retry */
 321                                goto stat_ref;
 322                        else
 323                                goto out;
 324                }
 325                if (starts_with(sb_contents.buf, "refs/") &&
 326                    !check_refname_format(sb_contents.buf, 0)) {
 327                        strbuf_swap(&sb_contents, referent);
 328                        *type |= REF_ISSYMREF;
 329                        ret = 0;
 330                        goto out;
 331                }
 332                /*
 333                 * It doesn't look like a refname; fall through to just
 334                 * treating it like a non-symlink, and reading whatever it
 335                 * points to.
 336                 */
 337        }
 338
 339        /* Is it a directory? */
 340        if (S_ISDIR(st.st_mode)) {
 341                /*
 342                 * Even though there is a directory where the loose
 343                 * ref is supposed to be, there could still be a
 344                 * packed ref:
 345                 */
 346                if (refs_read_raw_ref(refs->packed_ref_store, refname,
 347                                      sha1, referent, type)) {
 348                        errno = EISDIR;
 349                        goto out;
 350                }
 351                ret = 0;
 352                goto out;
 353        }
 354
 355        /*
 356         * Anything else, just open it and try to use it as
 357         * a ref
 358         */
 359        fd = open(path, O_RDONLY);
 360        if (fd < 0) {
 361                if (errno == ENOENT && !S_ISLNK(st.st_mode))
 362                        /* inconsistent with lstat; retry */
 363                        goto stat_ref;
 364                else
 365                        goto out;
 366        }
 367        strbuf_reset(&sb_contents);
 368        if (strbuf_read(&sb_contents, fd, 256) < 0) {
 369                int save_errno = errno;
 370                close(fd);
 371                errno = save_errno;
 372                goto out;
 373        }
 374        close(fd);
 375        strbuf_rtrim(&sb_contents);
 376        buf = sb_contents.buf;
 377        if (starts_with(buf, "ref:")) {
 378                buf += 4;
 379                while (isspace(*buf))
 380                        buf++;
 381
 382                strbuf_reset(referent);
 383                strbuf_addstr(referent, buf);
 384                *type |= REF_ISSYMREF;
 385                ret = 0;
 386                goto out;
 387        }
 388
 389        /*
 390         * Please note that FETCH_HEAD has additional
 391         * data after the sha.
 392         */
 393        if (get_sha1_hex(buf, sha1) ||
 394            (buf[40] != '\0' && !isspace(buf[40]))) {
 395                *type |= REF_ISBROKEN;
 396                errno = EINVAL;
 397                goto out;
 398        }
 399
 400        ret = 0;
 401
 402out:
 403        save_errno = errno;
 404        strbuf_release(&sb_path);
 405        strbuf_release(&sb_contents);
 406        errno = save_errno;
 407        return ret;
 408}
 409
 410static void unlock_ref(struct ref_lock *lock)
 411{
 412        /* Do not free lock->lk -- atexit() still looks at them */
 413        if (lock->lk)
 414                rollback_lock_file(lock->lk);
 415        free(lock->ref_name);
 416        free(lock);
 417}
 418
 419/*
 420 * Lock refname, without following symrefs, and set *lock_p to point
 421 * at a newly-allocated lock object. Fill in lock->old_oid, referent,
 422 * and type similarly to read_raw_ref().
 423 *
 424 * The caller must verify that refname is a "safe" reference name (in
 425 * the sense of refname_is_safe()) before calling this function.
 426 *
 427 * If the reference doesn't already exist, verify that refname doesn't
 428 * have a D/F conflict with any existing references. extras and skip
 429 * are passed to refs_verify_refname_available() for this check.
 430 *
 431 * If mustexist is not set and the reference is not found or is
 432 * broken, lock the reference anyway but clear sha1.
 433 *
 434 * Return 0 on success. On failure, write an error message to err and
 435 * return TRANSACTION_NAME_CONFLICT or TRANSACTION_GENERIC_ERROR.
 436 *
 437 * Implementation note: This function is basically
 438 *
 439 *     lock reference
 440 *     read_raw_ref()
 441 *
 442 * but it includes a lot more code to
 443 * - Deal with possible races with other processes
 444 * - Avoid calling refs_verify_refname_available() when it can be
 445 *   avoided, namely if we were successfully able to read the ref
 446 * - Generate informative error messages in the case of failure
 447 */
 448static int lock_raw_ref(struct files_ref_store *refs,
 449                        const char *refname, int mustexist,
 450                        const struct string_list *extras,
 451                        const struct string_list *skip,
 452                        struct ref_lock **lock_p,
 453                        struct strbuf *referent,
 454                        unsigned int *type,
 455                        struct strbuf *err)
 456{
 457        struct ref_lock *lock;
 458        struct strbuf ref_file = STRBUF_INIT;
 459        int attempts_remaining = 3;
 460        int ret = TRANSACTION_GENERIC_ERROR;
 461
 462        assert(err);
 463        files_assert_main_repository(refs, "lock_raw_ref");
 464
 465        *type = 0;
 466
 467        /* First lock the file so it can't change out from under us. */
 468
 469        *lock_p = lock = xcalloc(1, sizeof(*lock));
 470
 471        lock->ref_name = xstrdup(refname);
 472        files_ref_path(refs, &ref_file, refname);
 473
 474retry:
 475        switch (safe_create_leading_directories(ref_file.buf)) {
 476        case SCLD_OK:
 477                break; /* success */
 478        case SCLD_EXISTS:
 479                /*
 480                 * Suppose refname is "refs/foo/bar". We just failed
 481                 * to create the containing directory, "refs/foo",
 482                 * because there was a non-directory in the way. This
 483                 * indicates a D/F conflict, probably because of
 484                 * another reference such as "refs/foo". There is no
 485                 * reason to expect this error to be transitory.
 486                 */
 487                if (refs_verify_refname_available(&refs->base, refname,
 488                                                  extras, skip, err)) {
 489                        if (mustexist) {
 490                                /*
 491                                 * To the user the relevant error is
 492                                 * that the "mustexist" reference is
 493                                 * missing:
 494                                 */
 495                                strbuf_reset(err);
 496                                strbuf_addf(err, "unable to resolve reference '%s'",
 497                                            refname);
 498                        } else {
 499                                /*
 500                                 * The error message set by
 501                                 * refs_verify_refname_available() is
 502                                 * OK.
 503                                 */
 504                                ret = TRANSACTION_NAME_CONFLICT;
 505                        }
 506                } else {
 507                        /*
 508                         * The file that is in the way isn't a loose
 509                         * reference. Report it as a low-level
 510                         * failure.
 511                         */
 512                        strbuf_addf(err, "unable to create lock file %s.lock; "
 513                                    "non-directory in the way",
 514                                    ref_file.buf);
 515                }
 516                goto error_return;
 517        case SCLD_VANISHED:
 518                /* Maybe another process was tidying up. Try again. */
 519                if (--attempts_remaining > 0)
 520                        goto retry;
 521                /* fall through */
 522        default:
 523                strbuf_addf(err, "unable to create directory for %s",
 524                            ref_file.buf);
 525                goto error_return;
 526        }
 527
 528        if (!lock->lk)
 529                lock->lk = xcalloc(1, sizeof(struct lock_file));
 530
 531        if (hold_lock_file_for_update(lock->lk, ref_file.buf, LOCK_NO_DEREF) < 0) {
 532                if (errno == ENOENT && --attempts_remaining > 0) {
 533                        /*
 534                         * Maybe somebody just deleted one of the
 535                         * directories leading to ref_file.  Try
 536                         * again:
 537                         */
 538                        goto retry;
 539                } else {
 540                        unable_to_lock_message(ref_file.buf, errno, err);
 541                        goto error_return;
 542                }
 543        }
 544
 545        /*
 546         * Now we hold the lock and can read the reference without
 547         * fear that its value will change.
 548         */
 549
 550        if (files_read_raw_ref(&refs->base, refname,
 551                               lock->old_oid.hash, referent, type)) {
 552                if (errno == ENOENT) {
 553                        if (mustexist) {
 554                                /* Garden variety missing reference. */
 555                                strbuf_addf(err, "unable to resolve reference '%s'",
 556                                            refname);
 557                                goto error_return;
 558                        } else {
 559                                /*
 560                                 * Reference is missing, but that's OK. We
 561                                 * know that there is not a conflict with
 562                                 * another loose reference because
 563                                 * (supposing that we are trying to lock
 564                                 * reference "refs/foo/bar"):
 565                                 *
 566                                 * - We were successfully able to create
 567                                 *   the lockfile refs/foo/bar.lock, so we
 568                                 *   know there cannot be a loose reference
 569                                 *   named "refs/foo".
 570                                 *
 571                                 * - We got ENOENT and not EISDIR, so we
 572                                 *   know that there cannot be a loose
 573                                 *   reference named "refs/foo/bar/baz".
 574                                 */
 575                        }
 576                } else if (errno == EISDIR) {
 577                        /*
 578                         * There is a directory in the way. It might have
 579                         * contained references that have been deleted. If
 580                         * we don't require that the reference already
 581                         * exists, try to remove the directory so that it
 582                         * doesn't cause trouble when we want to rename the
 583                         * lockfile into place later.
 584                         */
 585                        if (mustexist) {
 586                                /* Garden variety missing reference. */
 587                                strbuf_addf(err, "unable to resolve reference '%s'",
 588                                            refname);
 589                                goto error_return;
 590                        } else if (remove_dir_recursively(&ref_file,
 591                                                          REMOVE_DIR_EMPTY_ONLY)) {
 592                                if (refs_verify_refname_available(
 593                                                    &refs->base, refname,
 594                                                    extras, skip, err)) {
 595                                        /*
 596                                         * The error message set by
 597                                         * verify_refname_available() is OK.
 598                                         */
 599                                        ret = TRANSACTION_NAME_CONFLICT;
 600                                        goto error_return;
 601                                } else {
 602                                        /*
 603                                         * We can't delete the directory,
 604                                         * but we also don't know of any
 605                                         * references that it should
 606                                         * contain.
 607                                         */
 608                                        strbuf_addf(err, "there is a non-empty directory '%s' "
 609                                                    "blocking reference '%s'",
 610                                                    ref_file.buf, refname);
 611                                        goto error_return;
 612                                }
 613                        }
 614                } else if (errno == EINVAL && (*type & REF_ISBROKEN)) {
 615                        strbuf_addf(err, "unable to resolve reference '%s': "
 616                                    "reference broken", refname);
 617                        goto error_return;
 618                } else {
 619                        strbuf_addf(err, "unable to resolve reference '%s': %s",
 620                                    refname, strerror(errno));
 621                        goto error_return;
 622                }
 623
 624                /*
 625                 * If the ref did not exist and we are creating it,
 626                 * make sure there is no existing packed ref that
 627                 * conflicts with refname:
 628                 */
 629                if (refs_verify_refname_available(
 630                                    refs->packed_ref_store, refname,
 631                                    extras, skip, err))
 632                        goto error_return;
 633        }
 634
 635        ret = 0;
 636        goto out;
 637
 638error_return:
 639        unlock_ref(lock);
 640        *lock_p = NULL;
 641
 642out:
 643        strbuf_release(&ref_file);
 644        return ret;
 645}
 646
 647static int files_peel_ref(struct ref_store *ref_store,
 648                          const char *refname, unsigned char *sha1)
 649{
 650        struct files_ref_store *refs =
 651                files_downcast(ref_store, REF_STORE_READ | REF_STORE_ODB,
 652                               "peel_ref");
 653        int flag;
 654        unsigned char base[20];
 655
 656        if (current_ref_iter && current_ref_iter->refname == refname) {
 657                struct object_id peeled;
 658
 659                if (ref_iterator_peel(current_ref_iter, &peeled))
 660                        return -1;
 661                hashcpy(sha1, peeled.hash);
 662                return 0;
 663        }
 664
 665        if (refs_read_ref_full(ref_store, refname,
 666                               RESOLVE_REF_READING, base, &flag))
 667                return -1;
 668
 669        /*
 670         * If the reference is packed, read its ref_entry from the
 671         * cache in the hope that we already know its peeled value.
 672         * We only try this optimization on packed references because
 673         * (a) forcing the filling of the loose reference cache could
 674         * be expensive and (b) loose references anyway usually do not
 675         * have REF_KNOWS_PEELED.
 676         */
 677        if (flag & REF_ISPACKED &&
 678            !refs_peel_ref(refs->packed_ref_store, refname, sha1))
 679                return 0;
 680
 681        return peel_object(base, sha1);
 682}
 683
 684struct files_ref_iterator {
 685        struct ref_iterator base;
 686
 687        struct ref_iterator *iter0;
 688        unsigned int flags;
 689};
 690
 691static int files_ref_iterator_advance(struct ref_iterator *ref_iterator)
 692{
 693        struct files_ref_iterator *iter =
 694                (struct files_ref_iterator *)ref_iterator;
 695        int ok;
 696
 697        while ((ok = ref_iterator_advance(iter->iter0)) == ITER_OK) {
 698                if (iter->flags & DO_FOR_EACH_PER_WORKTREE_ONLY &&
 699                    ref_type(iter->iter0->refname) != REF_TYPE_PER_WORKTREE)
 700                        continue;
 701
 702                if (!(iter->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&
 703                    !ref_resolves_to_object(iter->iter0->refname,
 704                                            iter->iter0->oid,
 705                                            iter->iter0->flags))
 706                        continue;
 707
 708                iter->base.refname = iter->iter0->refname;
 709                iter->base.oid = iter->iter0->oid;
 710                iter->base.flags = iter->iter0->flags;
 711                return ITER_OK;
 712        }
 713
 714        iter->iter0 = NULL;
 715        if (ref_iterator_abort(ref_iterator) != ITER_DONE)
 716                ok = ITER_ERROR;
 717
 718        return ok;
 719}
 720
 721static int files_ref_iterator_peel(struct ref_iterator *ref_iterator,
 722                                   struct object_id *peeled)
 723{
 724        struct files_ref_iterator *iter =
 725                (struct files_ref_iterator *)ref_iterator;
 726
 727        return ref_iterator_peel(iter->iter0, peeled);
 728}
 729
 730static int files_ref_iterator_abort(struct ref_iterator *ref_iterator)
 731{
 732        struct files_ref_iterator *iter =
 733                (struct files_ref_iterator *)ref_iterator;
 734        int ok = ITER_DONE;
 735
 736        if (iter->iter0)
 737                ok = ref_iterator_abort(iter->iter0);
 738
 739        base_ref_iterator_free(ref_iterator);
 740        return ok;
 741}
 742
 743static struct ref_iterator_vtable files_ref_iterator_vtable = {
 744        files_ref_iterator_advance,
 745        files_ref_iterator_peel,
 746        files_ref_iterator_abort
 747};
 748
 749static struct ref_iterator *files_ref_iterator_begin(
 750                struct ref_store *ref_store,
 751                const char *prefix, unsigned int flags)
 752{
 753        struct files_ref_store *refs;
 754        struct ref_iterator *loose_iter, *packed_iter;
 755        struct files_ref_iterator *iter;
 756        struct ref_iterator *ref_iterator;
 757        unsigned int required_flags = REF_STORE_READ;
 758
 759        if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN))
 760                required_flags |= REF_STORE_ODB;
 761
 762        refs = files_downcast(ref_store, required_flags, "ref_iterator_begin");
 763
 764        iter = xcalloc(1, sizeof(*iter));
 765        ref_iterator = &iter->base;
 766        base_ref_iterator_init(ref_iterator, &files_ref_iterator_vtable);
 767
 768        /*
 769         * We must make sure that all loose refs are read before
 770         * accessing the packed-refs file; this avoids a race
 771         * condition if loose refs are migrated to the packed-refs
 772         * file by a simultaneous process, but our in-memory view is
 773         * from before the migration. We ensure this as follows:
 774         * First, we call start the loose refs iteration with its
 775         * `prime_ref` argument set to true. This causes the loose
 776         * references in the subtree to be pre-read into the cache.
 777         * (If they've already been read, that's OK; we only need to
 778         * guarantee that they're read before the packed refs, not
 779         * *how much* before.) After that, we call
 780         * packed_ref_iterator_begin(), which internally checks
 781         * whether the packed-ref cache is up to date with what is on
 782         * disk, and re-reads it if not.
 783         */
 784
 785        loose_iter = cache_ref_iterator_begin(get_loose_ref_cache(refs),
 786                                              prefix, 1);
 787
 788        /*
 789         * The packed-refs file might contain broken references, for
 790         * example an old version of a reference that points at an
 791         * object that has since been garbage-collected. This is OK as
 792         * long as there is a corresponding loose reference that
 793         * overrides it, and we don't want to emit an error message in
 794         * this case. So ask the packed_ref_store for all of its
 795         * references, and (if needed) do our own check for broken
 796         * ones in files_ref_iterator_advance(), after we have merged
 797         * the packed and loose references.
 798         */
 799        packed_iter = refs_ref_iterator_begin(
 800                        refs->packed_ref_store, prefix, 0,
 801                        DO_FOR_EACH_INCLUDE_BROKEN);
 802
 803        iter->iter0 = overlay_ref_iterator_begin(loose_iter, packed_iter);
 804        iter->flags = flags;
 805
 806        return ref_iterator;
 807}
 808
 809/*
 810 * Verify that the reference locked by lock has the value old_sha1.
 811 * Fail if the reference doesn't exist and mustexist is set. Return 0
 812 * on success. On error, write an error message to err, set errno, and
 813 * return a negative value.
 814 */
 815static int verify_lock(struct ref_store *ref_store, struct ref_lock *lock,
 816                       const unsigned char *old_sha1, int mustexist,
 817                       struct strbuf *err)
 818{
 819        assert(err);
 820
 821        if (refs_read_ref_full(ref_store, lock->ref_name,
 822                               mustexist ? RESOLVE_REF_READING : 0,
 823                               lock->old_oid.hash, NULL)) {
 824                if (old_sha1) {
 825                        int save_errno = errno;
 826                        strbuf_addf(err, "can't verify ref '%s'", lock->ref_name);
 827                        errno = save_errno;
 828                        return -1;
 829                } else {
 830                        oidclr(&lock->old_oid);
 831                        return 0;
 832                }
 833        }
 834        if (old_sha1 && hashcmp(lock->old_oid.hash, old_sha1)) {
 835                strbuf_addf(err, "ref '%s' is at %s but expected %s",
 836                            lock->ref_name,
 837                            oid_to_hex(&lock->old_oid),
 838                            sha1_to_hex(old_sha1));
 839                errno = EBUSY;
 840                return -1;
 841        }
 842        return 0;
 843}
 844
 845static int remove_empty_directories(struct strbuf *path)
 846{
 847        /*
 848         * we want to create a file but there is a directory there;
 849         * if that is an empty directory (or a directory that contains
 850         * only empty directories), remove them.
 851         */
 852        return remove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY);
 853}
 854
 855static int create_reflock(const char *path, void *cb)
 856{
 857        struct lock_file *lk = cb;
 858
 859        return hold_lock_file_for_update(lk, path, LOCK_NO_DEREF) < 0 ? -1 : 0;
 860}
 861
 862/*
 863 * Locks a ref returning the lock on success and NULL on failure.
 864 * On failure errno is set to something meaningful.
 865 */
 866static struct ref_lock *lock_ref_sha1_basic(struct files_ref_store *refs,
 867                                            const char *refname,
 868                                            const unsigned char *old_sha1,
 869                                            const struct string_list *extras,
 870                                            const struct string_list *skip,
 871                                            unsigned int flags, int *type,
 872                                            struct strbuf *err)
 873{
 874        struct strbuf ref_file = STRBUF_INIT;
 875        struct ref_lock *lock;
 876        int last_errno = 0;
 877        int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
 878        int resolve_flags = RESOLVE_REF_NO_RECURSE;
 879        int resolved;
 880
 881        files_assert_main_repository(refs, "lock_ref_sha1_basic");
 882        assert(err);
 883
 884        lock = xcalloc(1, sizeof(struct ref_lock));
 885
 886        if (mustexist)
 887                resolve_flags |= RESOLVE_REF_READING;
 888        if (flags & REF_DELETING)
 889                resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;
 890
 891        files_ref_path(refs, &ref_file, refname);
 892        resolved = !!refs_resolve_ref_unsafe(&refs->base,
 893                                             refname, resolve_flags,
 894                                             lock->old_oid.hash, type);
 895        if (!resolved && errno == EISDIR) {
 896                /*
 897                 * we are trying to lock foo but we used to
 898                 * have foo/bar which now does not exist;
 899                 * it is normal for the empty directory 'foo'
 900                 * to remain.
 901                 */
 902                if (remove_empty_directories(&ref_file)) {
 903                        last_errno = errno;
 904                        if (!refs_verify_refname_available(
 905                                            &refs->base,
 906                                            refname, extras, skip, err))
 907                                strbuf_addf(err, "there are still refs under '%s'",
 908                                            refname);
 909                        goto error_return;
 910                }
 911                resolved = !!refs_resolve_ref_unsafe(&refs->base,
 912                                                     refname, resolve_flags,
 913                                                     lock->old_oid.hash, type);
 914        }
 915        if (!resolved) {
 916                last_errno = errno;
 917                if (last_errno != ENOTDIR ||
 918                    !refs_verify_refname_available(&refs->base, refname,
 919                                                   extras, skip, err))
 920                        strbuf_addf(err, "unable to resolve reference '%s': %s",
 921                                    refname, strerror(last_errno));
 922
 923                goto error_return;
 924        }
 925
 926        /*
 927         * If the ref did not exist and we are creating it, make sure
 928         * there is no existing packed ref whose name begins with our
 929         * refname, nor a packed ref whose name is a proper prefix of
 930         * our refname.
 931         */
 932        if (is_null_oid(&lock->old_oid) &&
 933            refs_verify_refname_available(refs->packed_ref_store, refname,
 934                                          extras, skip, err)) {
 935                last_errno = ENOTDIR;
 936                goto error_return;
 937        }
 938
 939        lock->lk = xcalloc(1, sizeof(struct lock_file));
 940
 941        lock->ref_name = xstrdup(refname);
 942
 943        if (raceproof_create_file(ref_file.buf, create_reflock, lock->lk)) {
 944                last_errno = errno;
 945                unable_to_lock_message(ref_file.buf, errno, err);
 946                goto error_return;
 947        }
 948
 949        if (verify_lock(&refs->base, lock, old_sha1, mustexist, err)) {
 950                last_errno = errno;
 951                goto error_return;
 952        }
 953        goto out;
 954
 955 error_return:
 956        unlock_ref(lock);
 957        lock = NULL;
 958
 959 out:
 960        strbuf_release(&ref_file);
 961        errno = last_errno;
 962        return lock;
 963}
 964
 965struct ref_to_prune {
 966        struct ref_to_prune *next;
 967        unsigned char sha1[20];
 968        char name[FLEX_ARRAY];
 969};
 970
 971enum {
 972        REMOVE_EMPTY_PARENTS_REF = 0x01,
 973        REMOVE_EMPTY_PARENTS_REFLOG = 0x02
 974};
 975
 976/*
 977 * Remove empty parent directories associated with the specified
 978 * reference and/or its reflog, but spare [logs/]refs/ and immediate
 979 * subdirs. flags is a combination of REMOVE_EMPTY_PARENTS_REF and/or
 980 * REMOVE_EMPTY_PARENTS_REFLOG.
 981 */
 982static void try_remove_empty_parents(struct files_ref_store *refs,
 983                                     const char *refname,
 984                                     unsigned int flags)
 985{
 986        struct strbuf buf = STRBUF_INIT;
 987        struct strbuf sb = STRBUF_INIT;
 988        char *p, *q;
 989        int i;
 990
 991        strbuf_addstr(&buf, refname);
 992        p = buf.buf;
 993        for (i = 0; i < 2; i++) { /* refs/{heads,tags,...}/ */
 994                while (*p && *p != '/')
 995                        p++;
 996                /* tolerate duplicate slashes; see check_refname_format() */
 997                while (*p == '/')
 998                        p++;
 999        }
1000        q = buf.buf + buf.len;
1001        while (flags & (REMOVE_EMPTY_PARENTS_REF | REMOVE_EMPTY_PARENTS_REFLOG)) {
1002                while (q > p && *q != '/')
1003                        q--;
1004                while (q > p && *(q-1) == '/')
1005                        q--;
1006                if (q == p)
1007                        break;
1008                strbuf_setlen(&buf, q - buf.buf);
1009
1010                strbuf_reset(&sb);
1011                files_ref_path(refs, &sb, buf.buf);
1012                if ((flags & REMOVE_EMPTY_PARENTS_REF) && rmdir(sb.buf))
1013                        flags &= ~REMOVE_EMPTY_PARENTS_REF;
1014
1015                strbuf_reset(&sb);
1016                files_reflog_path(refs, &sb, buf.buf);
1017                if ((flags & REMOVE_EMPTY_PARENTS_REFLOG) && rmdir(sb.buf))
1018                        flags &= ~REMOVE_EMPTY_PARENTS_REFLOG;
1019        }
1020        strbuf_release(&buf);
1021        strbuf_release(&sb);
1022}
1023
1024/* make sure nobody touched the ref, and unlink */
1025static void prune_ref(struct files_ref_store *refs, struct ref_to_prune *r)
1026{
1027        struct ref_transaction *transaction;
1028        struct strbuf err = STRBUF_INIT;
1029
1030        if (check_refname_format(r->name, 0))
1031                return;
1032
1033        transaction = ref_store_transaction_begin(&refs->base, &err);
1034        if (!transaction ||
1035            ref_transaction_delete(transaction, r->name, r->sha1,
1036                                   REF_ISPRUNING | REF_NODEREF, NULL, &err) ||
1037            ref_transaction_commit(transaction, &err)) {
1038                ref_transaction_free(transaction);
1039                error("%s", err.buf);
1040                strbuf_release(&err);
1041                return;
1042        }
1043        ref_transaction_free(transaction);
1044        strbuf_release(&err);
1045}
1046
1047static void prune_refs(struct files_ref_store *refs, struct ref_to_prune *r)
1048{
1049        while (r) {
1050                prune_ref(refs, r);
1051                r = r->next;
1052        }
1053}
1054
1055/*
1056 * Return true if the specified reference should be packed.
1057 */
1058static int should_pack_ref(const char *refname,
1059                           const struct object_id *oid, unsigned int ref_flags,
1060                           unsigned int pack_flags)
1061{
1062        /* Do not pack per-worktree refs: */
1063        if (ref_type(refname) != REF_TYPE_NORMAL)
1064                return 0;
1065
1066        /* Do not pack non-tags unless PACK_REFS_ALL is set: */
1067        if (!(pack_flags & PACK_REFS_ALL) && !starts_with(refname, "refs/tags/"))
1068                return 0;
1069
1070        /* Do not pack symbolic refs: */
1071        if (ref_flags & REF_ISSYMREF)
1072                return 0;
1073
1074        /* Do not pack broken refs: */
1075        if (!ref_resolves_to_object(refname, oid, ref_flags))
1076                return 0;
1077
1078        return 1;
1079}
1080
1081static int files_pack_refs(struct ref_store *ref_store, unsigned int flags)
1082{
1083        struct files_ref_store *refs =
1084                files_downcast(ref_store, REF_STORE_WRITE | REF_STORE_ODB,
1085                               "pack_refs");
1086        struct ref_iterator *iter;
1087        int ok;
1088        struct ref_to_prune *refs_to_prune = NULL;
1089        struct strbuf err = STRBUF_INIT;
1090
1091        packed_refs_lock(refs->packed_ref_store, LOCK_DIE_ON_ERROR, &err);
1092
1093        iter = cache_ref_iterator_begin(get_loose_ref_cache(refs), NULL, 0);
1094        while ((ok = ref_iterator_advance(iter)) == ITER_OK) {
1095                /*
1096                 * If the loose reference can be packed, add an entry
1097                 * in the packed ref cache. If the reference should be
1098                 * pruned, also add it to refs_to_prune.
1099                 */
1100                if (!should_pack_ref(iter->refname, iter->oid, iter->flags,
1101                                     flags))
1102                        continue;
1103
1104                /*
1105                 * Create an entry in the packed-refs cache equivalent
1106                 * to the one from the loose ref cache, except that
1107                 * we don't copy the peeled status, because we want it
1108                 * to be re-peeled.
1109                 */
1110                add_packed_ref(refs->packed_ref_store, iter->refname, iter->oid);
1111
1112                /* Schedule the loose reference for pruning if requested. */
1113                if ((flags & PACK_REFS_PRUNE)) {
1114                        struct ref_to_prune *n;
1115                        FLEX_ALLOC_STR(n, name, iter->refname);
1116                        hashcpy(n->sha1, iter->oid->hash);
1117                        n->next = refs_to_prune;
1118                        refs_to_prune = n;
1119                }
1120        }
1121        if (ok != ITER_DONE)
1122                die("error while iterating over references");
1123
1124        if (commit_packed_refs(refs->packed_ref_store, &err))
1125                die("unable to overwrite old ref-pack file: %s", err.buf);
1126        packed_refs_unlock(refs->packed_ref_store);
1127
1128        prune_refs(refs, refs_to_prune);
1129        strbuf_release(&err);
1130        return 0;
1131}
1132
1133static int files_delete_refs(struct ref_store *ref_store, const char *msg,
1134                             struct string_list *refnames, unsigned int flags)
1135{
1136        struct files_ref_store *refs =
1137                files_downcast(ref_store, REF_STORE_WRITE, "delete_refs");
1138        struct strbuf err = STRBUF_INIT;
1139        int i, result = 0;
1140
1141        if (!refnames->nr)
1142                return 0;
1143
1144        if (packed_refs_lock(refs->packed_ref_store, 0, &err))
1145                goto error;
1146
1147        if (repack_without_refs(refs->packed_ref_store, refnames, &err)) {
1148                packed_refs_unlock(refs->packed_ref_store);
1149                goto error;
1150        }
1151
1152        packed_refs_unlock(refs->packed_ref_store);
1153
1154        for (i = 0; i < refnames->nr; i++) {
1155                const char *refname = refnames->items[i].string;
1156
1157                if (refs_delete_ref(&refs->base, msg, refname, NULL, flags))
1158                        result |= error(_("could not remove reference %s"), refname);
1159        }
1160
1161        strbuf_release(&err);
1162        return result;
1163
1164error:
1165        /*
1166         * If we failed to rewrite the packed-refs file, then it is
1167         * unsafe to try to remove loose refs, because doing so might
1168         * expose an obsolete packed value for a reference that might
1169         * even point at an object that has been garbage collected.
1170         */
1171        if (refnames->nr == 1)
1172                error(_("could not delete reference %s: %s"),
1173                      refnames->items[0].string, err.buf);
1174        else
1175                error(_("could not delete references: %s"), err.buf);
1176
1177        strbuf_release(&err);
1178        return -1;
1179}
1180
1181/*
1182 * People using contrib's git-new-workdir have .git/logs/refs ->
1183 * /some/other/path/.git/logs/refs, and that may live on another device.
1184 *
1185 * IOW, to avoid cross device rename errors, the temporary renamed log must
1186 * live into logs/refs.
1187 */
1188#define TMP_RENAMED_LOG  "refs/.tmp-renamed-log"
1189
1190struct rename_cb {
1191        const char *tmp_renamed_log;
1192        int true_errno;
1193};
1194
1195static int rename_tmp_log_callback(const char *path, void *cb_data)
1196{
1197        struct rename_cb *cb = cb_data;
1198
1199        if (rename(cb->tmp_renamed_log, path)) {
1200                /*
1201                 * rename(a, b) when b is an existing directory ought
1202                 * to result in ISDIR, but Solaris 5.8 gives ENOTDIR.
1203                 * Sheesh. Record the true errno for error reporting,
1204                 * but report EISDIR to raceproof_create_file() so
1205                 * that it knows to retry.
1206                 */
1207                cb->true_errno = errno;
1208                if (errno == ENOTDIR)
1209                        errno = EISDIR;
1210                return -1;
1211        } else {
1212                return 0;
1213        }
1214}
1215
1216static int rename_tmp_log(struct files_ref_store *refs, const char *newrefname)
1217{
1218        struct strbuf path = STRBUF_INIT;
1219        struct strbuf tmp = STRBUF_INIT;
1220        struct rename_cb cb;
1221        int ret;
1222
1223        files_reflog_path(refs, &path, newrefname);
1224        files_reflog_path(refs, &tmp, TMP_RENAMED_LOG);
1225        cb.tmp_renamed_log = tmp.buf;
1226        ret = raceproof_create_file(path.buf, rename_tmp_log_callback, &cb);
1227        if (ret) {
1228                if (errno == EISDIR)
1229                        error("directory not empty: %s", path.buf);
1230                else
1231                        error("unable to move logfile %s to %s: %s",
1232                              tmp.buf, path.buf,
1233                              strerror(cb.true_errno));
1234        }
1235
1236        strbuf_release(&path);
1237        strbuf_release(&tmp);
1238        return ret;
1239}
1240
1241static int write_ref_to_lockfile(struct ref_lock *lock,
1242                                 const struct object_id *oid, struct strbuf *err);
1243static int commit_ref_update(struct files_ref_store *refs,
1244                             struct ref_lock *lock,
1245                             const struct object_id *oid, const char *logmsg,
1246                             struct strbuf *err);
1247
1248static int files_rename_ref(struct ref_store *ref_store,
1249                            const char *oldrefname, const char *newrefname,
1250                            const char *logmsg)
1251{
1252        struct files_ref_store *refs =
1253                files_downcast(ref_store, REF_STORE_WRITE, "rename_ref");
1254        struct object_id oid, orig_oid;
1255        int flag = 0, logmoved = 0;
1256        struct ref_lock *lock;
1257        struct stat loginfo;
1258        struct strbuf sb_oldref = STRBUF_INIT;
1259        struct strbuf sb_newref = STRBUF_INIT;
1260        struct strbuf tmp_renamed_log = STRBUF_INIT;
1261        int log, ret;
1262        struct strbuf err = STRBUF_INIT;
1263
1264        files_reflog_path(refs, &sb_oldref, oldrefname);
1265        files_reflog_path(refs, &sb_newref, newrefname);
1266        files_reflog_path(refs, &tmp_renamed_log, TMP_RENAMED_LOG);
1267
1268        log = !lstat(sb_oldref.buf, &loginfo);
1269        if (log && S_ISLNK(loginfo.st_mode)) {
1270                ret = error("reflog for %s is a symlink", oldrefname);
1271                goto out;
1272        }
1273
1274        if (!refs_resolve_ref_unsafe(&refs->base, oldrefname,
1275                                     RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,
1276                                orig_oid.hash, &flag)) {
1277                ret = error("refname %s not found", oldrefname);
1278                goto out;
1279        }
1280
1281        if (flag & REF_ISSYMREF) {
1282                ret = error("refname %s is a symbolic ref, renaming it is not supported",
1283                            oldrefname);
1284                goto out;
1285        }
1286        if (!refs_rename_ref_available(&refs->base, oldrefname, newrefname)) {
1287                ret = 1;
1288                goto out;
1289        }
1290
1291        if (log && rename(sb_oldref.buf, tmp_renamed_log.buf)) {
1292                ret = error("unable to move logfile logs/%s to logs/"TMP_RENAMED_LOG": %s",
1293                            oldrefname, strerror(errno));
1294                goto out;
1295        }
1296
1297        if (refs_delete_ref(&refs->base, logmsg, oldrefname,
1298                            orig_oid.hash, REF_NODEREF)) {
1299                error("unable to delete old %s", oldrefname);
1300                goto rollback;
1301        }
1302
1303        /*
1304         * Since we are doing a shallow lookup, oid is not the
1305         * correct value to pass to delete_ref as old_oid. But that
1306         * doesn't matter, because an old_oid check wouldn't add to
1307         * the safety anyway; we want to delete the reference whatever
1308         * its current value.
1309         */
1310        if (!refs_read_ref_full(&refs->base, newrefname,
1311                                RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,
1312                                oid.hash, NULL) &&
1313            refs_delete_ref(&refs->base, NULL, newrefname,
1314                            NULL, REF_NODEREF)) {
1315                if (errno == EISDIR) {
1316                        struct strbuf path = STRBUF_INIT;
1317                        int result;
1318
1319                        files_ref_path(refs, &path, newrefname);
1320                        result = remove_empty_directories(&path);
1321                        strbuf_release(&path);
1322
1323                        if (result) {
1324                                error("Directory not empty: %s", newrefname);
1325                                goto rollback;
1326                        }
1327                } else {
1328                        error("unable to delete existing %s", newrefname);
1329                        goto rollback;
1330                }
1331        }
1332
1333        if (log && rename_tmp_log(refs, newrefname))
1334                goto rollback;
1335
1336        logmoved = log;
1337
1338        lock = lock_ref_sha1_basic(refs, newrefname, NULL, NULL, NULL,
1339                                   REF_NODEREF, NULL, &err);
1340        if (!lock) {
1341                error("unable to rename '%s' to '%s': %s", oldrefname, newrefname, err.buf);
1342                strbuf_release(&err);
1343                goto rollback;
1344        }
1345        oidcpy(&lock->old_oid, &orig_oid);
1346
1347        if (write_ref_to_lockfile(lock, &orig_oid, &err) ||
1348            commit_ref_update(refs, lock, &orig_oid, logmsg, &err)) {
1349                error("unable to write current sha1 into %s: %s", newrefname, err.buf);
1350                strbuf_release(&err);
1351                goto rollback;
1352        }
1353
1354        ret = 0;
1355        goto out;
1356
1357 rollback:
1358        lock = lock_ref_sha1_basic(refs, oldrefname, NULL, NULL, NULL,
1359                                   REF_NODEREF, NULL, &err);
1360        if (!lock) {
1361                error("unable to lock %s for rollback: %s", oldrefname, err.buf);
1362                strbuf_release(&err);
1363                goto rollbacklog;
1364        }
1365
1366        flag = log_all_ref_updates;
1367        log_all_ref_updates = LOG_REFS_NONE;
1368        if (write_ref_to_lockfile(lock, &orig_oid, &err) ||
1369            commit_ref_update(refs, lock, &orig_oid, NULL, &err)) {
1370                error("unable to write current sha1 into %s: %s", oldrefname, err.buf);
1371                strbuf_release(&err);
1372        }
1373        log_all_ref_updates = flag;
1374
1375 rollbacklog:
1376        if (logmoved && rename(sb_newref.buf, sb_oldref.buf))
1377                error("unable to restore logfile %s from %s: %s",
1378                        oldrefname, newrefname, strerror(errno));
1379        if (!logmoved && log &&
1380            rename(tmp_renamed_log.buf, sb_oldref.buf))
1381                error("unable to restore logfile %s from logs/"TMP_RENAMED_LOG": %s",
1382                        oldrefname, strerror(errno));
1383        ret = 1;
1384 out:
1385        strbuf_release(&sb_newref);
1386        strbuf_release(&sb_oldref);
1387        strbuf_release(&tmp_renamed_log);
1388
1389        return ret;
1390}
1391
1392static int close_ref(struct ref_lock *lock)
1393{
1394        if (close_lock_file(lock->lk))
1395                return -1;
1396        return 0;
1397}
1398
1399static int commit_ref(struct ref_lock *lock)
1400{
1401        char *path = get_locked_file_path(lock->lk);
1402        struct stat st;
1403
1404        if (!lstat(path, &st) && S_ISDIR(st.st_mode)) {
1405                /*
1406                 * There is a directory at the path we want to rename
1407                 * the lockfile to. Hopefully it is empty; try to
1408                 * delete it.
1409                 */
1410                size_t len = strlen(path);
1411                struct strbuf sb_path = STRBUF_INIT;
1412
1413                strbuf_attach(&sb_path, path, len, len);
1414
1415                /*
1416                 * If this fails, commit_lock_file() will also fail
1417                 * and will report the problem.
1418                 */
1419                remove_empty_directories(&sb_path);
1420                strbuf_release(&sb_path);
1421        } else {
1422                free(path);
1423        }
1424
1425        if (commit_lock_file(lock->lk))
1426                return -1;
1427        return 0;
1428}
1429
1430static int open_or_create_logfile(const char *path, void *cb)
1431{
1432        int *fd = cb;
1433
1434        *fd = open(path, O_APPEND | O_WRONLY | O_CREAT, 0666);
1435        return (*fd < 0) ? -1 : 0;
1436}
1437
1438/*
1439 * Create a reflog for a ref. If force_create = 0, only create the
1440 * reflog for certain refs (those for which should_autocreate_reflog
1441 * returns non-zero). Otherwise, create it regardless of the reference
1442 * name. If the logfile already existed or was created, return 0 and
1443 * set *logfd to the file descriptor opened for appending to the file.
1444 * If no logfile exists and we decided not to create one, return 0 and
1445 * set *logfd to -1. On failure, fill in *err, set *logfd to -1, and
1446 * return -1.
1447 */
1448static int log_ref_setup(struct files_ref_store *refs,
1449                         const char *refname, int force_create,
1450                         int *logfd, struct strbuf *err)
1451{
1452        struct strbuf logfile_sb = STRBUF_INIT;
1453        char *logfile;
1454
1455        files_reflog_path(refs, &logfile_sb, refname);
1456        logfile = strbuf_detach(&logfile_sb, NULL);
1457
1458        if (force_create || should_autocreate_reflog(refname)) {
1459                if (raceproof_create_file(logfile, open_or_create_logfile, logfd)) {
1460                        if (errno == ENOENT)
1461                                strbuf_addf(err, "unable to create directory for '%s': "
1462                                            "%s", logfile, strerror(errno));
1463                        else if (errno == EISDIR)
1464                                strbuf_addf(err, "there are still logs under '%s'",
1465                                            logfile);
1466                        else
1467                                strbuf_addf(err, "unable to append to '%s': %s",
1468                                            logfile, strerror(errno));
1469
1470                        goto error;
1471                }
1472        } else {
1473                *logfd = open(logfile, O_APPEND | O_WRONLY, 0666);
1474                if (*logfd < 0) {
1475                        if (errno == ENOENT || errno == EISDIR) {
1476                                /*
1477                                 * The logfile doesn't already exist,
1478                                 * but that is not an error; it only
1479                                 * means that we won't write log
1480                                 * entries to it.
1481                                 */
1482                                ;
1483                        } else {
1484                                strbuf_addf(err, "unable to append to '%s': %s",
1485                                            logfile, strerror(errno));
1486                                goto error;
1487                        }
1488                }
1489        }
1490
1491        if (*logfd >= 0)
1492                adjust_shared_perm(logfile);
1493
1494        free(logfile);
1495        return 0;
1496
1497error:
1498        free(logfile);
1499        return -1;
1500}
1501
1502static int files_create_reflog(struct ref_store *ref_store,
1503                               const char *refname, int force_create,
1504                               struct strbuf *err)
1505{
1506        struct files_ref_store *refs =
1507                files_downcast(ref_store, REF_STORE_WRITE, "create_reflog");
1508        int fd;
1509
1510        if (log_ref_setup(refs, refname, force_create, &fd, err))
1511                return -1;
1512
1513        if (fd >= 0)
1514                close(fd);
1515
1516        return 0;
1517}
1518
1519static int log_ref_write_fd(int fd, const struct object_id *old_oid,
1520                            const struct object_id *new_oid,
1521                            const char *committer, const char *msg)
1522{
1523        int msglen, written;
1524        unsigned maxlen, len;
1525        char *logrec;
1526
1527        msglen = msg ? strlen(msg) : 0;
1528        maxlen = strlen(committer) + msglen + 100;
1529        logrec = xmalloc(maxlen);
1530        len = xsnprintf(logrec, maxlen, "%s %s %s\n",
1531                        oid_to_hex(old_oid),
1532                        oid_to_hex(new_oid),
1533                        committer);
1534        if (msglen)
1535                len += copy_reflog_msg(logrec + len - 1, msg) - 1;
1536
1537        written = len <= maxlen ? write_in_full(fd, logrec, len) : -1;
1538        free(logrec);
1539        if (written != len)
1540                return -1;
1541
1542        return 0;
1543}
1544
1545static int files_log_ref_write(struct files_ref_store *refs,
1546                               const char *refname, const struct object_id *old_oid,
1547                               const struct object_id *new_oid, const char *msg,
1548                               int flags, struct strbuf *err)
1549{
1550        int logfd, result;
1551
1552        if (log_all_ref_updates == LOG_REFS_UNSET)
1553                log_all_ref_updates = is_bare_repository() ? LOG_REFS_NONE : LOG_REFS_NORMAL;
1554
1555        result = log_ref_setup(refs, refname,
1556                               flags & REF_FORCE_CREATE_REFLOG,
1557                               &logfd, err);
1558
1559        if (result)
1560                return result;
1561
1562        if (logfd < 0)
1563                return 0;
1564        result = log_ref_write_fd(logfd, old_oid, new_oid,
1565                                  git_committer_info(0), msg);
1566        if (result) {
1567                struct strbuf sb = STRBUF_INIT;
1568                int save_errno = errno;
1569
1570                files_reflog_path(refs, &sb, refname);
1571                strbuf_addf(err, "unable to append to '%s': %s",
1572                            sb.buf, strerror(save_errno));
1573                strbuf_release(&sb);
1574                close(logfd);
1575                return -1;
1576        }
1577        if (close(logfd)) {
1578                struct strbuf sb = STRBUF_INIT;
1579                int save_errno = errno;
1580
1581                files_reflog_path(refs, &sb, refname);
1582                strbuf_addf(err, "unable to append to '%s': %s",
1583                            sb.buf, strerror(save_errno));
1584                strbuf_release(&sb);
1585                return -1;
1586        }
1587        return 0;
1588}
1589
1590/*
1591 * Write sha1 into the open lockfile, then close the lockfile. On
1592 * errors, rollback the lockfile, fill in *err and
1593 * return -1.
1594 */
1595static int write_ref_to_lockfile(struct ref_lock *lock,
1596                                 const struct object_id *oid, struct strbuf *err)
1597{
1598        static char term = '\n';
1599        struct object *o;
1600        int fd;
1601
1602        o = parse_object(oid);
1603        if (!o) {
1604                strbuf_addf(err,
1605                            "trying to write ref '%s' with nonexistent object %s",
1606                            lock->ref_name, oid_to_hex(oid));
1607                unlock_ref(lock);
1608                return -1;
1609        }
1610        if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
1611                strbuf_addf(err,
1612                            "trying to write non-commit object %s to branch '%s'",
1613                            oid_to_hex(oid), lock->ref_name);
1614                unlock_ref(lock);
1615                return -1;
1616        }
1617        fd = get_lock_file_fd(lock->lk);
1618        if (write_in_full(fd, oid_to_hex(oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ ||
1619            write_in_full(fd, &term, 1) != 1 ||
1620            close_ref(lock) < 0) {
1621                strbuf_addf(err,
1622                            "couldn't write '%s'", get_lock_file_path(lock->lk));
1623                unlock_ref(lock);
1624                return -1;
1625        }
1626        return 0;
1627}
1628
1629/*
1630 * Commit a change to a loose reference that has already been written
1631 * to the loose reference lockfile. Also update the reflogs if
1632 * necessary, using the specified lockmsg (which can be NULL).
1633 */
1634static int commit_ref_update(struct files_ref_store *refs,
1635                             struct ref_lock *lock,
1636                             const struct object_id *oid, const char *logmsg,
1637                             struct strbuf *err)
1638{
1639        files_assert_main_repository(refs, "commit_ref_update");
1640
1641        clear_loose_ref_cache(refs);
1642        if (files_log_ref_write(refs, lock->ref_name,
1643                                &lock->old_oid, oid,
1644                                logmsg, 0, err)) {
1645                char *old_msg = strbuf_detach(err, NULL);
1646                strbuf_addf(err, "cannot update the ref '%s': %s",
1647                            lock->ref_name, old_msg);
1648                free(old_msg);
1649                unlock_ref(lock);
1650                return -1;
1651        }
1652
1653        if (strcmp(lock->ref_name, "HEAD") != 0) {
1654                /*
1655                 * Special hack: If a branch is updated directly and HEAD
1656                 * points to it (may happen on the remote side of a push
1657                 * for example) then logically the HEAD reflog should be
1658                 * updated too.
1659                 * A generic solution implies reverse symref information,
1660                 * but finding all symrefs pointing to the given branch
1661                 * would be rather costly for this rare event (the direct
1662                 * update of a branch) to be worth it.  So let's cheat and
1663                 * check with HEAD only which should cover 99% of all usage
1664                 * scenarios (even 100% of the default ones).
1665                 */
1666                struct object_id head_oid;
1667                int head_flag;
1668                const char *head_ref;
1669
1670                head_ref = refs_resolve_ref_unsafe(&refs->base, "HEAD",
1671                                                   RESOLVE_REF_READING,
1672                                                   head_oid.hash, &head_flag);
1673                if (head_ref && (head_flag & REF_ISSYMREF) &&
1674                    !strcmp(head_ref, lock->ref_name)) {
1675                        struct strbuf log_err = STRBUF_INIT;
1676                        if (files_log_ref_write(refs, "HEAD",
1677                                                &lock->old_oid, oid,
1678                                                logmsg, 0, &log_err)) {
1679                                error("%s", log_err.buf);
1680                                strbuf_release(&log_err);
1681                        }
1682                }
1683        }
1684
1685        if (commit_ref(lock)) {
1686                strbuf_addf(err, "couldn't set '%s'", lock->ref_name);
1687                unlock_ref(lock);
1688                return -1;
1689        }
1690
1691        unlock_ref(lock);
1692        return 0;
1693}
1694
1695static int create_ref_symlink(struct ref_lock *lock, const char *target)
1696{
1697        int ret = -1;
1698#ifndef NO_SYMLINK_HEAD
1699        char *ref_path = get_locked_file_path(lock->lk);
1700        unlink(ref_path);
1701        ret = symlink(target, ref_path);
1702        free(ref_path);
1703
1704        if (ret)
1705                fprintf(stderr, "no symlink - falling back to symbolic ref\n");
1706#endif
1707        return ret;
1708}
1709
1710static void update_symref_reflog(struct files_ref_store *refs,
1711                                 struct ref_lock *lock, const char *refname,
1712                                 const char *target, const char *logmsg)
1713{
1714        struct strbuf err = STRBUF_INIT;
1715        struct object_id new_oid;
1716        if (logmsg &&
1717            !refs_read_ref_full(&refs->base, target,
1718                                RESOLVE_REF_READING, new_oid.hash, NULL) &&
1719            files_log_ref_write(refs, refname, &lock->old_oid,
1720                                &new_oid, logmsg, 0, &err)) {
1721                error("%s", err.buf);
1722                strbuf_release(&err);
1723        }
1724}
1725
1726static int create_symref_locked(struct files_ref_store *refs,
1727                                struct ref_lock *lock, const char *refname,
1728                                const char *target, const char *logmsg)
1729{
1730        if (prefer_symlink_refs && !create_ref_symlink(lock, target)) {
1731                update_symref_reflog(refs, lock, refname, target, logmsg);
1732                return 0;
1733        }
1734
1735        if (!fdopen_lock_file(lock->lk, "w"))
1736                return error("unable to fdopen %s: %s",
1737                             lock->lk->tempfile.filename.buf, strerror(errno));
1738
1739        update_symref_reflog(refs, lock, refname, target, logmsg);
1740
1741        /* no error check; commit_ref will check ferror */
1742        fprintf(lock->lk->tempfile.fp, "ref: %s\n", target);
1743        if (commit_ref(lock) < 0)
1744                return error("unable to write symref for %s: %s", refname,
1745                             strerror(errno));
1746        return 0;
1747}
1748
1749static int files_create_symref(struct ref_store *ref_store,
1750                               const char *refname, const char *target,
1751                               const char *logmsg)
1752{
1753        struct files_ref_store *refs =
1754                files_downcast(ref_store, REF_STORE_WRITE, "create_symref");
1755        struct strbuf err = STRBUF_INIT;
1756        struct ref_lock *lock;
1757        int ret;
1758
1759        lock = lock_ref_sha1_basic(refs, refname, NULL,
1760                                   NULL, NULL, REF_NODEREF, NULL,
1761                                   &err);
1762        if (!lock) {
1763                error("%s", err.buf);
1764                strbuf_release(&err);
1765                return -1;
1766        }
1767
1768        ret = create_symref_locked(refs, lock, refname, target, logmsg);
1769        unlock_ref(lock);
1770        return ret;
1771}
1772
1773static int files_reflog_exists(struct ref_store *ref_store,
1774                               const char *refname)
1775{
1776        struct files_ref_store *refs =
1777                files_downcast(ref_store, REF_STORE_READ, "reflog_exists");
1778        struct strbuf sb = STRBUF_INIT;
1779        struct stat st;
1780        int ret;
1781
1782        files_reflog_path(refs, &sb, refname);
1783        ret = !lstat(sb.buf, &st) && S_ISREG(st.st_mode);
1784        strbuf_release(&sb);
1785        return ret;
1786}
1787
1788static int files_delete_reflog(struct ref_store *ref_store,
1789                               const char *refname)
1790{
1791        struct files_ref_store *refs =
1792                files_downcast(ref_store, REF_STORE_WRITE, "delete_reflog");
1793        struct strbuf sb = STRBUF_INIT;
1794        int ret;
1795
1796        files_reflog_path(refs, &sb, refname);
1797        ret = remove_path(sb.buf);
1798        strbuf_release(&sb);
1799        return ret;
1800}
1801
1802static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data)
1803{
1804        struct object_id ooid, noid;
1805        char *email_end, *message;
1806        timestamp_t timestamp;
1807        int tz;
1808        const char *p = sb->buf;
1809
1810        /* old SP new SP name <email> SP time TAB msg LF */
1811        if (!sb->len || sb->buf[sb->len - 1] != '\n' ||
1812            parse_oid_hex(p, &ooid, &p) || *p++ != ' ' ||
1813            parse_oid_hex(p, &noid, &p) || *p++ != ' ' ||
1814            !(email_end = strchr(p, '>')) ||
1815            email_end[1] != ' ' ||
1816            !(timestamp = parse_timestamp(email_end + 2, &message, 10)) ||
1817            !message || message[0] != ' ' ||
1818            (message[1] != '+' && message[1] != '-') ||
1819            !isdigit(message[2]) || !isdigit(message[3]) ||
1820            !isdigit(message[4]) || !isdigit(message[5]))
1821                return 0; /* corrupt? */
1822        email_end[1] = '\0';
1823        tz = strtol(message + 1, NULL, 10);
1824        if (message[6] != '\t')
1825                message += 6;
1826        else
1827                message += 7;
1828        return fn(&ooid, &noid, p, timestamp, tz, message, cb_data);
1829}
1830
1831static char *find_beginning_of_line(char *bob, char *scan)
1832{
1833        while (bob < scan && *(--scan) != '\n')
1834                ; /* keep scanning backwards */
1835        /*
1836         * Return either beginning of the buffer, or LF at the end of
1837         * the previous line.
1838         */
1839        return scan;
1840}
1841
1842static int files_for_each_reflog_ent_reverse(struct ref_store *ref_store,
1843                                             const char *refname,
1844                                             each_reflog_ent_fn fn,
1845                                             void *cb_data)
1846{
1847        struct files_ref_store *refs =
1848                files_downcast(ref_store, REF_STORE_READ,
1849                               "for_each_reflog_ent_reverse");
1850        struct strbuf sb = STRBUF_INIT;
1851        FILE *logfp;
1852        long pos;
1853        int ret = 0, at_tail = 1;
1854
1855        files_reflog_path(refs, &sb, refname);
1856        logfp = fopen(sb.buf, "r");
1857        strbuf_release(&sb);
1858        if (!logfp)
1859                return -1;
1860
1861        /* Jump to the end */
1862        if (fseek(logfp, 0, SEEK_END) < 0)
1863                ret = error("cannot seek back reflog for %s: %s",
1864                            refname, strerror(errno));
1865        pos = ftell(logfp);
1866        while (!ret && 0 < pos) {
1867                int cnt;
1868                size_t nread;
1869                char buf[BUFSIZ];
1870                char *endp, *scanp;
1871
1872                /* Fill next block from the end */
1873                cnt = (sizeof(buf) < pos) ? sizeof(buf) : pos;
1874                if (fseek(logfp, pos - cnt, SEEK_SET)) {
1875                        ret = error("cannot seek back reflog for %s: %s",
1876                                    refname, strerror(errno));
1877                        break;
1878                }
1879                nread = fread(buf, cnt, 1, logfp);
1880                if (nread != 1) {
1881                        ret = error("cannot read %d bytes from reflog for %s: %s",
1882                                    cnt, refname, strerror(errno));
1883                        break;
1884                }
1885                pos -= cnt;
1886
1887                scanp = endp = buf + cnt;
1888                if (at_tail && scanp[-1] == '\n')
1889                        /* Looking at the final LF at the end of the file */
1890                        scanp--;
1891                at_tail = 0;
1892
1893                while (buf < scanp) {
1894                        /*
1895                         * terminating LF of the previous line, or the beginning
1896                         * of the buffer.
1897                         */
1898                        char *bp;
1899
1900                        bp = find_beginning_of_line(buf, scanp);
1901
1902                        if (*bp == '\n') {
1903                                /*
1904                                 * The newline is the end of the previous line,
1905                                 * so we know we have complete line starting
1906                                 * at (bp + 1). Prefix it onto any prior data
1907                                 * we collected for the line and process it.
1908                                 */
1909                                strbuf_splice(&sb, 0, 0, bp + 1, endp - (bp + 1));
1910                                scanp = bp;
1911                                endp = bp + 1;
1912                                ret = show_one_reflog_ent(&sb, fn, cb_data);
1913                                strbuf_reset(&sb);
1914                                if (ret)
1915                                        break;
1916                        } else if (!pos) {
1917                                /*
1918                                 * We are at the start of the buffer, and the
1919                                 * start of the file; there is no previous
1920                                 * line, and we have everything for this one.
1921                                 * Process it, and we can end the loop.
1922                                 */
1923                                strbuf_splice(&sb, 0, 0, buf, endp - buf);
1924                                ret = show_one_reflog_ent(&sb, fn, cb_data);
1925                                strbuf_reset(&sb);
1926                                break;
1927                        }
1928
1929                        if (bp == buf) {
1930                                /*
1931                                 * We are at the start of the buffer, and there
1932                                 * is more file to read backwards. Which means
1933                                 * we are in the middle of a line. Note that we
1934                                 * may get here even if *bp was a newline; that
1935                                 * just means we are at the exact end of the
1936                                 * previous line, rather than some spot in the
1937                                 * middle.
1938                                 *
1939                                 * Save away what we have to be combined with
1940                                 * the data from the next read.
1941                                 */
1942                                strbuf_splice(&sb, 0, 0, buf, endp - buf);
1943                                break;
1944                        }
1945                }
1946
1947        }
1948        if (!ret && sb.len)
1949                die("BUG: reverse reflog parser had leftover data");
1950
1951        fclose(logfp);
1952        strbuf_release(&sb);
1953        return ret;
1954}
1955
1956static int files_for_each_reflog_ent(struct ref_store *ref_store,
1957                                     const char *refname,
1958                                     each_reflog_ent_fn fn, void *cb_data)
1959{
1960        struct files_ref_store *refs =
1961                files_downcast(ref_store, REF_STORE_READ,
1962                               "for_each_reflog_ent");
1963        FILE *logfp;
1964        struct strbuf sb = STRBUF_INIT;
1965        int ret = 0;
1966
1967        files_reflog_path(refs, &sb, refname);
1968        logfp = fopen(sb.buf, "r");
1969        strbuf_release(&sb);
1970        if (!logfp)
1971                return -1;
1972
1973        while (!ret && !strbuf_getwholeline(&sb, logfp, '\n'))
1974                ret = show_one_reflog_ent(&sb, fn, cb_data);
1975        fclose(logfp);
1976        strbuf_release(&sb);
1977        return ret;
1978}
1979
1980struct files_reflog_iterator {
1981        struct ref_iterator base;
1982
1983        struct ref_store *ref_store;
1984        struct dir_iterator *dir_iterator;
1985        struct object_id oid;
1986};
1987
1988static int files_reflog_iterator_advance(struct ref_iterator *ref_iterator)
1989{
1990        struct files_reflog_iterator *iter =
1991                (struct files_reflog_iterator *)ref_iterator;
1992        struct dir_iterator *diter = iter->dir_iterator;
1993        int ok;
1994
1995        while ((ok = dir_iterator_advance(diter)) == ITER_OK) {
1996                int flags;
1997
1998                if (!S_ISREG(diter->st.st_mode))
1999                        continue;
2000                if (diter->basename[0] == '.')
2001                        continue;
2002                if (ends_with(diter->basename, ".lock"))
2003                        continue;
2004
2005                if (refs_read_ref_full(iter->ref_store,
2006                                       diter->relative_path, 0,
2007                                       iter->oid.hash, &flags)) {
2008                        error("bad ref for %s", diter->path.buf);
2009                        continue;
2010                }
2011
2012                iter->base.refname = diter->relative_path;
2013                iter->base.oid = &iter->oid;
2014                iter->base.flags = flags;
2015                return ITER_OK;
2016        }
2017
2018        iter->dir_iterator = NULL;
2019        if (ref_iterator_abort(ref_iterator) == ITER_ERROR)
2020                ok = ITER_ERROR;
2021        return ok;
2022}
2023
2024static int files_reflog_iterator_peel(struct ref_iterator *ref_iterator,
2025                                   struct object_id *peeled)
2026{
2027        die("BUG: ref_iterator_peel() called for reflog_iterator");
2028}
2029
2030static int files_reflog_iterator_abort(struct ref_iterator *ref_iterator)
2031{
2032        struct files_reflog_iterator *iter =
2033                (struct files_reflog_iterator *)ref_iterator;
2034        int ok = ITER_DONE;
2035
2036        if (iter->dir_iterator)
2037                ok = dir_iterator_abort(iter->dir_iterator);
2038
2039        base_ref_iterator_free(ref_iterator);
2040        return ok;
2041}
2042
2043static struct ref_iterator_vtable files_reflog_iterator_vtable = {
2044        files_reflog_iterator_advance,
2045        files_reflog_iterator_peel,
2046        files_reflog_iterator_abort
2047};
2048
2049static struct ref_iterator *reflog_iterator_begin(struct ref_store *ref_store,
2050                                                  const char *gitdir)
2051{
2052        struct files_reflog_iterator *iter = xcalloc(1, sizeof(*iter));
2053        struct ref_iterator *ref_iterator = &iter->base;
2054        struct strbuf sb = STRBUF_INIT;
2055
2056        base_ref_iterator_init(ref_iterator, &files_reflog_iterator_vtable);
2057        strbuf_addf(&sb, "%s/logs", gitdir);
2058        iter->dir_iterator = dir_iterator_begin(sb.buf);
2059        iter->ref_store = ref_store;
2060        strbuf_release(&sb);
2061
2062        return ref_iterator;
2063}
2064
2065static enum iterator_selection reflog_iterator_select(
2066        struct ref_iterator *iter_worktree,
2067        struct ref_iterator *iter_common,
2068        void *cb_data)
2069{
2070        if (iter_worktree) {
2071                /*
2072                 * We're a bit loose here. We probably should ignore
2073                 * common refs if they are accidentally added as
2074                 * per-worktree refs.
2075                 */
2076                return ITER_SELECT_0;
2077        } else if (iter_common) {
2078                if (ref_type(iter_common->refname) == REF_TYPE_NORMAL)
2079                        return ITER_SELECT_1;
2080
2081                /*
2082                 * The main ref store may contain main worktree's
2083                 * per-worktree refs, which should be ignored
2084                 */
2085                return ITER_SKIP_1;
2086        } else
2087                return ITER_DONE;
2088}
2089
2090static struct ref_iterator *files_reflog_iterator_begin(struct ref_store *ref_store)
2091{
2092        struct files_ref_store *refs =
2093                files_downcast(ref_store, REF_STORE_READ,
2094                               "reflog_iterator_begin");
2095
2096        if (!strcmp(refs->gitdir, refs->gitcommondir)) {
2097                return reflog_iterator_begin(ref_store, refs->gitcommondir);
2098        } else {
2099                return merge_ref_iterator_begin(
2100                        reflog_iterator_begin(ref_store, refs->gitdir),
2101                        reflog_iterator_begin(ref_store, refs->gitcommondir),
2102                        reflog_iterator_select, refs);
2103        }
2104}
2105
2106/*
2107 * If update is a direct update of head_ref (the reference pointed to
2108 * by HEAD), then add an extra REF_LOG_ONLY update for HEAD.
2109 */
2110static int split_head_update(struct ref_update *update,
2111                             struct ref_transaction *transaction,
2112                             const char *head_ref,
2113                             struct string_list *affected_refnames,
2114                             struct strbuf *err)
2115{
2116        struct string_list_item *item;
2117        struct ref_update *new_update;
2118
2119        if ((update->flags & REF_LOG_ONLY) ||
2120            (update->flags & REF_ISPRUNING) ||
2121            (update->flags & REF_UPDATE_VIA_HEAD))
2122                return 0;
2123
2124        if (strcmp(update->refname, head_ref))
2125                return 0;
2126
2127        /*
2128         * First make sure that HEAD is not already in the
2129         * transaction. This insertion is O(N) in the transaction
2130         * size, but it happens at most once per transaction.
2131         */
2132        item = string_list_insert(affected_refnames, "HEAD");
2133        if (item->util) {
2134                /* An entry already existed */
2135                strbuf_addf(err,
2136                            "multiple updates for 'HEAD' (including one "
2137                            "via its referent '%s') are not allowed",
2138                            update->refname);
2139                return TRANSACTION_NAME_CONFLICT;
2140        }
2141
2142        new_update = ref_transaction_add_update(
2143                        transaction, "HEAD",
2144                        update->flags | REF_LOG_ONLY | REF_NODEREF,
2145                        update->new_oid.hash, update->old_oid.hash,
2146                        update->msg);
2147
2148        item->util = new_update;
2149
2150        return 0;
2151}
2152
2153/*
2154 * update is for a symref that points at referent and doesn't have
2155 * REF_NODEREF set. Split it into two updates:
2156 * - The original update, but with REF_LOG_ONLY and REF_NODEREF set
2157 * - A new, separate update for the referent reference
2158 * Note that the new update will itself be subject to splitting when
2159 * the iteration gets to it.
2160 */
2161static int split_symref_update(struct files_ref_store *refs,
2162                               struct ref_update *update,
2163                               const char *referent,
2164                               struct ref_transaction *transaction,
2165                               struct string_list *affected_refnames,
2166                               struct strbuf *err)
2167{
2168        struct string_list_item *item;
2169        struct ref_update *new_update;
2170        unsigned int new_flags;
2171
2172        /*
2173         * First make sure that referent is not already in the
2174         * transaction. This insertion is O(N) in the transaction
2175         * size, but it happens at most once per symref in a
2176         * transaction.
2177         */
2178        item = string_list_insert(affected_refnames, referent);
2179        if (item->util) {
2180                /* An entry already existed */
2181                strbuf_addf(err,
2182                            "multiple updates for '%s' (including one "
2183                            "via symref '%s') are not allowed",
2184                            referent, update->refname);
2185                return TRANSACTION_NAME_CONFLICT;
2186        }
2187
2188        new_flags = update->flags;
2189        if (!strcmp(update->refname, "HEAD")) {
2190                /*
2191                 * Record that the new update came via HEAD, so that
2192                 * when we process it, split_head_update() doesn't try
2193                 * to add another reflog update for HEAD. Note that
2194                 * this bit will be propagated if the new_update
2195                 * itself needs to be split.
2196                 */
2197                new_flags |= REF_UPDATE_VIA_HEAD;
2198        }
2199
2200        new_update = ref_transaction_add_update(
2201                        transaction, referent, new_flags,
2202                        update->new_oid.hash, update->old_oid.hash,
2203                        update->msg);
2204
2205        new_update->parent_update = update;
2206
2207        /*
2208         * Change the symbolic ref update to log only. Also, it
2209         * doesn't need to check its old SHA-1 value, as that will be
2210         * done when new_update is processed.
2211         */
2212        update->flags |= REF_LOG_ONLY | REF_NODEREF;
2213        update->flags &= ~REF_HAVE_OLD;
2214
2215        item->util = new_update;
2216
2217        return 0;
2218}
2219
2220/*
2221 * Return the refname under which update was originally requested.
2222 */
2223static const char *original_update_refname(struct ref_update *update)
2224{
2225        while (update->parent_update)
2226                update = update->parent_update;
2227
2228        return update->refname;
2229}
2230
2231/*
2232 * Check whether the REF_HAVE_OLD and old_oid values stored in update
2233 * are consistent with oid, which is the reference's current value. If
2234 * everything is OK, return 0; otherwise, write an error message to
2235 * err and return -1.
2236 */
2237static int check_old_oid(struct ref_update *update, struct object_id *oid,
2238                         struct strbuf *err)
2239{
2240        if (!(update->flags & REF_HAVE_OLD) ||
2241                   !oidcmp(oid, &update->old_oid))
2242                return 0;
2243
2244        if (is_null_oid(&update->old_oid))
2245                strbuf_addf(err, "cannot lock ref '%s': "
2246                            "reference already exists",
2247                            original_update_refname(update));
2248        else if (is_null_oid(oid))
2249                strbuf_addf(err, "cannot lock ref '%s': "
2250                            "reference is missing but expected %s",
2251                            original_update_refname(update),
2252                            oid_to_hex(&update->old_oid));
2253        else
2254                strbuf_addf(err, "cannot lock ref '%s': "
2255                            "is at %s but expected %s",
2256                            original_update_refname(update),
2257                            oid_to_hex(oid),
2258                            oid_to_hex(&update->old_oid));
2259
2260        return -1;
2261}
2262
2263/*
2264 * Prepare for carrying out update:
2265 * - Lock the reference referred to by update.
2266 * - Read the reference under lock.
2267 * - Check that its old SHA-1 value (if specified) is correct, and in
2268 *   any case record it in update->lock->old_oid for later use when
2269 *   writing the reflog.
2270 * - If it is a symref update without REF_NODEREF, split it up into a
2271 *   REF_LOG_ONLY update of the symref and add a separate update for
2272 *   the referent to transaction.
2273 * - If it is an update of head_ref, add a corresponding REF_LOG_ONLY
2274 *   update of HEAD.
2275 */
2276static int lock_ref_for_update(struct files_ref_store *refs,
2277                               struct ref_update *update,
2278                               struct ref_transaction *transaction,
2279                               const char *head_ref,
2280                               struct string_list *affected_refnames,
2281                               struct strbuf *err)
2282{
2283        struct strbuf referent = STRBUF_INIT;
2284        int mustexist = (update->flags & REF_HAVE_OLD) &&
2285                !is_null_oid(&update->old_oid);
2286        int ret;
2287        struct ref_lock *lock;
2288
2289        files_assert_main_repository(refs, "lock_ref_for_update");
2290
2291        if ((update->flags & REF_HAVE_NEW) && is_null_oid(&update->new_oid))
2292                update->flags |= REF_DELETING;
2293
2294        if (head_ref) {
2295                ret = split_head_update(update, transaction, head_ref,
2296                                        affected_refnames, err);
2297                if (ret)
2298                        return ret;
2299        }
2300
2301        ret = lock_raw_ref(refs, update->refname, mustexist,
2302                           affected_refnames, NULL,
2303                           &lock, &referent,
2304                           &update->type, err);
2305        if (ret) {
2306                char *reason;
2307
2308                reason = strbuf_detach(err, NULL);
2309                strbuf_addf(err, "cannot lock ref '%s': %s",
2310                            original_update_refname(update), reason);
2311                free(reason);
2312                return ret;
2313        }
2314
2315        update->backend_data = lock;
2316
2317        if (update->type & REF_ISSYMREF) {
2318                if (update->flags & REF_NODEREF) {
2319                        /*
2320                         * We won't be reading the referent as part of
2321                         * the transaction, so we have to read it here
2322                         * to record and possibly check old_sha1:
2323                         */
2324                        if (refs_read_ref_full(&refs->base,
2325                                               referent.buf, 0,
2326                                               lock->old_oid.hash, NULL)) {
2327                                if (update->flags & REF_HAVE_OLD) {
2328                                        strbuf_addf(err, "cannot lock ref '%s': "
2329                                                    "error reading reference",
2330                                                    original_update_refname(update));
2331                                        return -1;
2332                                }
2333                        } else if (check_old_oid(update, &lock->old_oid, err)) {
2334                                return TRANSACTION_GENERIC_ERROR;
2335                        }
2336                } else {
2337                        /*
2338                         * Create a new update for the reference this
2339                         * symref is pointing at. Also, we will record
2340                         * and verify old_sha1 for this update as part
2341                         * of processing the split-off update, so we
2342                         * don't have to do it here.
2343                         */
2344                        ret = split_symref_update(refs, update,
2345                                                  referent.buf, transaction,
2346                                                  affected_refnames, err);
2347                        if (ret)
2348                                return ret;
2349                }
2350        } else {
2351                struct ref_update *parent_update;
2352
2353                if (check_old_oid(update, &lock->old_oid, err))
2354                        return TRANSACTION_GENERIC_ERROR;
2355
2356                /*
2357                 * If this update is happening indirectly because of a
2358                 * symref update, record the old SHA-1 in the parent
2359                 * update:
2360                 */
2361                for (parent_update = update->parent_update;
2362                     parent_update;
2363                     parent_update = parent_update->parent_update) {
2364                        struct ref_lock *parent_lock = parent_update->backend_data;
2365                        oidcpy(&parent_lock->old_oid, &lock->old_oid);
2366                }
2367        }
2368
2369        if ((update->flags & REF_HAVE_NEW) &&
2370            !(update->flags & REF_DELETING) &&
2371            !(update->flags & REF_LOG_ONLY)) {
2372                if (!(update->type & REF_ISSYMREF) &&
2373                    !oidcmp(&lock->old_oid, &update->new_oid)) {
2374                        /*
2375                         * The reference already has the desired
2376                         * value, so we don't need to write it.
2377                         */
2378                } else if (write_ref_to_lockfile(lock, &update->new_oid,
2379                                                 err)) {
2380                        char *write_err = strbuf_detach(err, NULL);
2381
2382                        /*
2383                         * The lock was freed upon failure of
2384                         * write_ref_to_lockfile():
2385                         */
2386                        update->backend_data = NULL;
2387                        strbuf_addf(err,
2388                                    "cannot update ref '%s': %s",
2389                                    update->refname, write_err);
2390                        free(write_err);
2391                        return TRANSACTION_GENERIC_ERROR;
2392                } else {
2393                        update->flags |= REF_NEEDS_COMMIT;
2394                }
2395        }
2396        if (!(update->flags & REF_NEEDS_COMMIT)) {
2397                /*
2398                 * We didn't call write_ref_to_lockfile(), so
2399                 * the lockfile is still open. Close it to
2400                 * free up the file descriptor:
2401                 */
2402                if (close_ref(lock)) {
2403                        strbuf_addf(err, "couldn't close '%s.lock'",
2404                                    update->refname);
2405                        return TRANSACTION_GENERIC_ERROR;
2406                }
2407        }
2408        return 0;
2409}
2410
2411/*
2412 * Unlock any references in `transaction` that are still locked, and
2413 * mark the transaction closed.
2414 */
2415static void files_transaction_cleanup(struct ref_transaction *transaction)
2416{
2417        size_t i;
2418
2419        for (i = 0; i < transaction->nr; i++) {
2420                struct ref_update *update = transaction->updates[i];
2421                struct ref_lock *lock = update->backend_data;
2422
2423                if (lock) {
2424                        unlock_ref(lock);
2425                        update->backend_data = NULL;
2426                }
2427        }
2428
2429        transaction->state = REF_TRANSACTION_CLOSED;
2430}
2431
2432static int files_transaction_prepare(struct ref_store *ref_store,
2433                                     struct ref_transaction *transaction,
2434                                     struct strbuf *err)
2435{
2436        struct files_ref_store *refs =
2437                files_downcast(ref_store, REF_STORE_WRITE,
2438                               "ref_transaction_prepare");
2439        size_t i;
2440        int ret = 0;
2441        struct string_list affected_refnames = STRING_LIST_INIT_NODUP;
2442        char *head_ref = NULL;
2443        int head_type;
2444        struct object_id head_oid;
2445
2446        assert(err);
2447
2448        if (!transaction->nr)
2449                goto cleanup;
2450
2451        /*
2452         * Fail if a refname appears more than once in the
2453         * transaction. (If we end up splitting up any updates using
2454         * split_symref_update() or split_head_update(), those
2455         * functions will check that the new updates don't have the
2456         * same refname as any existing ones.)
2457         */
2458        for (i = 0; i < transaction->nr; i++) {
2459                struct ref_update *update = transaction->updates[i];
2460                struct string_list_item *item =
2461                        string_list_append(&affected_refnames, update->refname);
2462
2463                /*
2464                 * We store a pointer to update in item->util, but at
2465                 * the moment we never use the value of this field
2466                 * except to check whether it is non-NULL.
2467                 */
2468                item->util = update;
2469        }
2470        string_list_sort(&affected_refnames);
2471        if (ref_update_reject_duplicates(&affected_refnames, err)) {
2472                ret = TRANSACTION_GENERIC_ERROR;
2473                goto cleanup;
2474        }
2475
2476        /*
2477         * Special hack: If a branch is updated directly and HEAD
2478         * points to it (may happen on the remote side of a push
2479         * for example) then logically the HEAD reflog should be
2480         * updated too.
2481         *
2482         * A generic solution would require reverse symref lookups,
2483         * but finding all symrefs pointing to a given branch would be
2484         * rather costly for this rare event (the direct update of a
2485         * branch) to be worth it. So let's cheat and check with HEAD
2486         * only, which should cover 99% of all usage scenarios (even
2487         * 100% of the default ones).
2488         *
2489         * So if HEAD is a symbolic reference, then record the name of
2490         * the reference that it points to. If we see an update of
2491         * head_ref within the transaction, then split_head_update()
2492         * arranges for the reflog of HEAD to be updated, too.
2493         */
2494        head_ref = refs_resolve_refdup(ref_store, "HEAD",
2495                                       RESOLVE_REF_NO_RECURSE,
2496                                       head_oid.hash, &head_type);
2497
2498        if (head_ref && !(head_type & REF_ISSYMREF)) {
2499                FREE_AND_NULL(head_ref);
2500        }
2501
2502        /*
2503         * Acquire all locks, verify old values if provided, check
2504         * that new values are valid, and write new values to the
2505         * lockfiles, ready to be activated. Only keep one lockfile
2506         * open at a time to avoid running out of file descriptors.
2507         * Note that lock_ref_for_update() might append more updates
2508         * to the transaction.
2509         */
2510        for (i = 0; i < transaction->nr; i++) {
2511                struct ref_update *update = transaction->updates[i];
2512
2513                ret = lock_ref_for_update(refs, update, transaction,
2514                                          head_ref, &affected_refnames, err);
2515                if (ret)
2516                        break;
2517        }
2518
2519cleanup:
2520        free(head_ref);
2521        string_list_clear(&affected_refnames, 0);
2522
2523        if (ret)
2524                files_transaction_cleanup(transaction);
2525        else
2526                transaction->state = REF_TRANSACTION_PREPARED;
2527
2528        return ret;
2529}
2530
2531static int files_transaction_finish(struct ref_store *ref_store,
2532                                    struct ref_transaction *transaction,
2533                                    struct strbuf *err)
2534{
2535        struct files_ref_store *refs =
2536                files_downcast(ref_store, 0, "ref_transaction_finish");
2537        size_t i;
2538        int ret = 0;
2539        struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;
2540        struct string_list_item *ref_to_delete;
2541        struct strbuf sb = STRBUF_INIT;
2542
2543        assert(err);
2544
2545        if (!transaction->nr) {
2546                transaction->state = REF_TRANSACTION_CLOSED;
2547                return 0;
2548        }
2549
2550        /* Perform updates first so live commits remain referenced */
2551        for (i = 0; i < transaction->nr; i++) {
2552                struct ref_update *update = transaction->updates[i];
2553                struct ref_lock *lock = update->backend_data;
2554
2555                if (update->flags & REF_NEEDS_COMMIT ||
2556                    update->flags & REF_LOG_ONLY) {
2557                        if (files_log_ref_write(refs,
2558                                                lock->ref_name,
2559                                                &lock->old_oid,
2560                                                &update->new_oid,
2561                                                update->msg, update->flags,
2562                                                err)) {
2563                                char *old_msg = strbuf_detach(err, NULL);
2564
2565                                strbuf_addf(err, "cannot update the ref '%s': %s",
2566                                            lock->ref_name, old_msg);
2567                                free(old_msg);
2568                                unlock_ref(lock);
2569                                update->backend_data = NULL;
2570                                ret = TRANSACTION_GENERIC_ERROR;
2571                                goto cleanup;
2572                        }
2573                }
2574                if (update->flags & REF_NEEDS_COMMIT) {
2575                        clear_loose_ref_cache(refs);
2576                        if (commit_ref(lock)) {
2577                                strbuf_addf(err, "couldn't set '%s'", lock->ref_name);
2578                                unlock_ref(lock);
2579                                update->backend_data = NULL;
2580                                ret = TRANSACTION_GENERIC_ERROR;
2581                                goto cleanup;
2582                        }
2583                }
2584        }
2585        /* Perform deletes now that updates are safely completed */
2586        for (i = 0; i < transaction->nr; i++) {
2587                struct ref_update *update = transaction->updates[i];
2588                struct ref_lock *lock = update->backend_data;
2589
2590                if (update->flags & REF_DELETING &&
2591                    !(update->flags & REF_LOG_ONLY)) {
2592                        if (!(update->type & REF_ISPACKED) ||
2593                            update->type & REF_ISSYMREF) {
2594                                /* It is a loose reference. */
2595                                strbuf_reset(&sb);
2596                                files_ref_path(refs, &sb, lock->ref_name);
2597                                if (unlink_or_msg(sb.buf, err)) {
2598                                        ret = TRANSACTION_GENERIC_ERROR;
2599                                        goto cleanup;
2600                                }
2601                                update->flags |= REF_DELETED_LOOSE;
2602                        }
2603
2604                        if (!(update->flags & REF_ISPRUNING))
2605                                string_list_append(&refs_to_delete,
2606                                                   lock->ref_name);
2607                }
2608        }
2609
2610        if (packed_refs_lock(refs->packed_ref_store, 0, err)) {
2611                ret = TRANSACTION_GENERIC_ERROR;
2612                goto cleanup;
2613        }
2614
2615        if (repack_without_refs(refs->packed_ref_store, &refs_to_delete, err)) {
2616                ret = TRANSACTION_GENERIC_ERROR;
2617                packed_refs_unlock(refs->packed_ref_store);
2618                goto cleanup;
2619        }
2620
2621        packed_refs_unlock(refs->packed_ref_store);
2622
2623        /* Delete the reflogs of any references that were deleted: */
2624        for_each_string_list_item(ref_to_delete, &refs_to_delete) {
2625                strbuf_reset(&sb);
2626                files_reflog_path(refs, &sb, ref_to_delete->string);
2627                if (!unlink_or_warn(sb.buf))
2628                        try_remove_empty_parents(refs, ref_to_delete->string,
2629                                                 REMOVE_EMPTY_PARENTS_REFLOG);
2630        }
2631
2632        clear_loose_ref_cache(refs);
2633
2634cleanup:
2635        files_transaction_cleanup(transaction);
2636
2637        for (i = 0; i < transaction->nr; i++) {
2638                struct ref_update *update = transaction->updates[i];
2639
2640                if (update->flags & REF_DELETED_LOOSE) {
2641                        /*
2642                         * The loose reference was deleted. Delete any
2643                         * empty parent directories. (Note that this
2644                         * can only work because we have already
2645                         * removed the lockfile.)
2646                         */
2647                        try_remove_empty_parents(refs, update->refname,
2648                                                 REMOVE_EMPTY_PARENTS_REF);
2649                }
2650        }
2651
2652        strbuf_release(&sb);
2653        string_list_clear(&refs_to_delete, 0);
2654        return ret;
2655}
2656
2657static int files_transaction_abort(struct ref_store *ref_store,
2658                                   struct ref_transaction *transaction,
2659                                   struct strbuf *err)
2660{
2661        files_transaction_cleanup(transaction);
2662        return 0;
2663}
2664
2665static int ref_present(const char *refname,
2666                       const struct object_id *oid, int flags, void *cb_data)
2667{
2668        struct string_list *affected_refnames = cb_data;
2669
2670        return string_list_has_string(affected_refnames, refname);
2671}
2672
2673static int files_initial_transaction_commit(struct ref_store *ref_store,
2674                                            struct ref_transaction *transaction,
2675                                            struct strbuf *err)
2676{
2677        struct files_ref_store *refs =
2678                files_downcast(ref_store, REF_STORE_WRITE,
2679                               "initial_ref_transaction_commit");
2680        size_t i;
2681        int ret = 0;
2682        struct string_list affected_refnames = STRING_LIST_INIT_NODUP;
2683
2684        assert(err);
2685
2686        if (transaction->state != REF_TRANSACTION_OPEN)
2687                die("BUG: commit called for transaction that is not open");
2688
2689        /* Fail if a refname appears more than once in the transaction: */
2690        for (i = 0; i < transaction->nr; i++)
2691                string_list_append(&affected_refnames,
2692                                   transaction->updates[i]->refname);
2693        string_list_sort(&affected_refnames);
2694        if (ref_update_reject_duplicates(&affected_refnames, err)) {
2695                ret = TRANSACTION_GENERIC_ERROR;
2696                goto cleanup;
2697        }
2698
2699        /*
2700         * It's really undefined to call this function in an active
2701         * repository or when there are existing references: we are
2702         * only locking and changing packed-refs, so (1) any
2703         * simultaneous processes might try to change a reference at
2704         * the same time we do, and (2) any existing loose versions of
2705         * the references that we are setting would have precedence
2706         * over our values. But some remote helpers create the remote
2707         * "HEAD" and "master" branches before calling this function,
2708         * so here we really only check that none of the references
2709         * that we are creating already exists.
2710         */
2711        if (refs_for_each_rawref(&refs->base, ref_present,
2712                                 &affected_refnames))
2713                die("BUG: initial ref transaction called with existing refs");
2714
2715        for (i = 0; i < transaction->nr; i++) {
2716                struct ref_update *update = transaction->updates[i];
2717
2718                if ((update->flags & REF_HAVE_OLD) &&
2719                    !is_null_oid(&update->old_oid))
2720                        die("BUG: initial ref transaction with old_sha1 set");
2721                if (refs_verify_refname_available(&refs->base, update->refname,
2722                                                  &affected_refnames, NULL,
2723                                                  err)) {
2724                        ret = TRANSACTION_NAME_CONFLICT;
2725                        goto cleanup;
2726                }
2727        }
2728
2729        if (packed_refs_lock(refs->packed_ref_store, 0, err)) {
2730                ret = TRANSACTION_GENERIC_ERROR;
2731                goto cleanup;
2732        }
2733
2734        for (i = 0; i < transaction->nr; i++) {
2735                struct ref_update *update = transaction->updates[i];
2736
2737                if ((update->flags & REF_HAVE_NEW) &&
2738                    !is_null_oid(&update->new_oid))
2739                        add_packed_ref(refs->packed_ref_store, update->refname,
2740                                       &update->new_oid);
2741        }
2742
2743        if (commit_packed_refs(refs->packed_ref_store, err)) {
2744                ret = TRANSACTION_GENERIC_ERROR;
2745                goto cleanup;
2746        }
2747
2748cleanup:
2749        packed_refs_unlock(refs->packed_ref_store);
2750        transaction->state = REF_TRANSACTION_CLOSED;
2751        string_list_clear(&affected_refnames, 0);
2752        return ret;
2753}
2754
2755struct expire_reflog_cb {
2756        unsigned int flags;
2757        reflog_expiry_should_prune_fn *should_prune_fn;
2758        void *policy_cb;
2759        FILE *newlog;
2760        struct object_id last_kept_oid;
2761};
2762
2763static int expire_reflog_ent(struct object_id *ooid, struct object_id *noid,
2764                             const char *email, timestamp_t timestamp, int tz,
2765                             const char *message, void *cb_data)
2766{
2767        struct expire_reflog_cb *cb = cb_data;
2768        struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;
2769
2770        if (cb->flags & EXPIRE_REFLOGS_REWRITE)
2771                ooid = &cb->last_kept_oid;
2772
2773        if ((*cb->should_prune_fn)(ooid, noid, email, timestamp, tz,
2774                                   message, policy_cb)) {
2775                if (!cb->newlog)
2776                        printf("would prune %s", message);
2777                else if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
2778                        printf("prune %s", message);
2779        } else {
2780                if (cb->newlog) {
2781                        fprintf(cb->newlog, "%s %s %s %"PRItime" %+05d\t%s",
2782                                oid_to_hex(ooid), oid_to_hex(noid),
2783                                email, timestamp, tz, message);
2784                        oidcpy(&cb->last_kept_oid, noid);
2785                }
2786                if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
2787                        printf("keep %s", message);
2788        }
2789        return 0;
2790}
2791
2792static int files_reflog_expire(struct ref_store *ref_store,
2793                               const char *refname, const unsigned char *sha1,
2794                               unsigned int flags,
2795                               reflog_expiry_prepare_fn prepare_fn,
2796                               reflog_expiry_should_prune_fn should_prune_fn,
2797                               reflog_expiry_cleanup_fn cleanup_fn,
2798                               void *policy_cb_data)
2799{
2800        struct files_ref_store *refs =
2801                files_downcast(ref_store, REF_STORE_WRITE, "reflog_expire");
2802        static struct lock_file reflog_lock;
2803        struct expire_reflog_cb cb;
2804        struct ref_lock *lock;
2805        struct strbuf log_file_sb = STRBUF_INIT;
2806        char *log_file;
2807        int status = 0;
2808        int type;
2809        struct strbuf err = STRBUF_INIT;
2810        struct object_id oid;
2811
2812        memset(&cb, 0, sizeof(cb));
2813        cb.flags = flags;
2814        cb.policy_cb = policy_cb_data;
2815        cb.should_prune_fn = should_prune_fn;
2816
2817        /*
2818         * The reflog file is locked by holding the lock on the
2819         * reference itself, plus we might need to update the
2820         * reference if --updateref was specified:
2821         */
2822        lock = lock_ref_sha1_basic(refs, refname, sha1,
2823                                   NULL, NULL, REF_NODEREF,
2824                                   &type, &err);
2825        if (!lock) {
2826                error("cannot lock ref '%s': %s", refname, err.buf);
2827                strbuf_release(&err);
2828                return -1;
2829        }
2830        if (!refs_reflog_exists(ref_store, refname)) {
2831                unlock_ref(lock);
2832                return 0;
2833        }
2834
2835        files_reflog_path(refs, &log_file_sb, refname);
2836        log_file = strbuf_detach(&log_file_sb, NULL);
2837        if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
2838                /*
2839                 * Even though holding $GIT_DIR/logs/$reflog.lock has
2840                 * no locking implications, we use the lock_file
2841                 * machinery here anyway because it does a lot of the
2842                 * work we need, including cleaning up if the program
2843                 * exits unexpectedly.
2844                 */
2845                if (hold_lock_file_for_update(&reflog_lock, log_file, 0) < 0) {
2846                        struct strbuf err = STRBUF_INIT;
2847                        unable_to_lock_message(log_file, errno, &err);
2848                        error("%s", err.buf);
2849                        strbuf_release(&err);
2850                        goto failure;
2851                }
2852                cb.newlog = fdopen_lock_file(&reflog_lock, "w");
2853                if (!cb.newlog) {
2854                        error("cannot fdopen %s (%s)",
2855                              get_lock_file_path(&reflog_lock), strerror(errno));
2856                        goto failure;
2857                }
2858        }
2859
2860        hashcpy(oid.hash, sha1);
2861
2862        (*prepare_fn)(refname, &oid, cb.policy_cb);
2863        refs_for_each_reflog_ent(ref_store, refname, expire_reflog_ent, &cb);
2864        (*cleanup_fn)(cb.policy_cb);
2865
2866        if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
2867                /*
2868                 * It doesn't make sense to adjust a reference pointed
2869                 * to by a symbolic ref based on expiring entries in
2870                 * the symbolic reference's reflog. Nor can we update
2871                 * a reference if there are no remaining reflog
2872                 * entries.
2873                 */
2874                int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&
2875                        !(type & REF_ISSYMREF) &&
2876                        !is_null_oid(&cb.last_kept_oid);
2877
2878                if (close_lock_file(&reflog_lock)) {
2879                        status |= error("couldn't write %s: %s", log_file,
2880                                        strerror(errno));
2881                } else if (update &&
2882                           (write_in_full(get_lock_file_fd(lock->lk),
2883                                oid_to_hex(&cb.last_kept_oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ ||
2884                            write_str_in_full(get_lock_file_fd(lock->lk), "\n") != 1 ||
2885                            close_ref(lock) < 0)) {
2886                        status |= error("couldn't write %s",
2887                                        get_lock_file_path(lock->lk));
2888                        rollback_lock_file(&reflog_lock);
2889                } else if (commit_lock_file(&reflog_lock)) {
2890                        status |= error("unable to write reflog '%s' (%s)",
2891                                        log_file, strerror(errno));
2892                } else if (update && commit_ref(lock)) {
2893                        status |= error("couldn't set %s", lock->ref_name);
2894                }
2895        }
2896        free(log_file);
2897        unlock_ref(lock);
2898        return status;
2899
2900 failure:
2901        rollback_lock_file(&reflog_lock);
2902        free(log_file);
2903        unlock_ref(lock);
2904        return -1;
2905}
2906
2907static int files_init_db(struct ref_store *ref_store, struct strbuf *err)
2908{
2909        struct files_ref_store *refs =
2910                files_downcast(ref_store, REF_STORE_WRITE, "init_db");
2911        struct strbuf sb = STRBUF_INIT;
2912
2913        /*
2914         * Create .git/refs/{heads,tags}
2915         */
2916        files_ref_path(refs, &sb, "refs/heads");
2917        safe_create_dir(sb.buf, 1);
2918
2919        strbuf_reset(&sb);
2920        files_ref_path(refs, &sb, "refs/tags");
2921        safe_create_dir(sb.buf, 1);
2922
2923        strbuf_release(&sb);
2924        return 0;
2925}
2926
2927struct ref_storage_be refs_be_files = {
2928        NULL,
2929        "files",
2930        files_ref_store_create,
2931        files_init_db,
2932        files_transaction_prepare,
2933        files_transaction_finish,
2934        files_transaction_abort,
2935        files_initial_transaction_commit,
2936
2937        files_pack_refs,
2938        files_peel_ref,
2939        files_create_symref,
2940        files_delete_refs,
2941        files_rename_ref,
2942
2943        files_ref_iterator_begin,
2944        files_read_raw_ref,
2945
2946        files_reflog_iterator_begin,
2947        files_for_each_reflog_ent,
2948        files_for_each_reflog_ent_reverse,
2949        files_reflog_exists,
2950        files_create_reflog,
2951        files_delete_reflog,
2952        files_reflog_expire
2953};