c07dc418d61a4cc46e5400274a1b4d8b3dd454fb
   1#include "../cache.h"
   2#include "../refs.h"
   3#include "refs-internal.h"
   4#include "../lockfile.h"
   5#include "../object.h"
   6#include "../dir.h"
   7
   8struct ref_lock {
   9        char *ref_name;
  10        char *orig_ref_name;
  11        struct lock_file *lk;
  12        struct object_id old_oid;
  13};
  14
  15struct ref_entry;
  16
  17/*
  18 * Information used (along with the information in ref_entry) to
  19 * describe a single cached reference.  This data structure only
  20 * occurs embedded in a union in struct ref_entry, and only when
  21 * (ref_entry->flag & REF_DIR) is zero.
  22 */
  23struct ref_value {
  24        /*
  25         * The name of the object to which this reference resolves
  26         * (which may be a tag object).  If REF_ISBROKEN, this is
  27         * null.  If REF_ISSYMREF, then this is the name of the object
  28         * referred to by the last reference in the symlink chain.
  29         */
  30        struct object_id oid;
  31
  32        /*
  33         * If REF_KNOWS_PEELED, then this field holds the peeled value
  34         * of this reference, or null if the reference is known not to
  35         * be peelable.  See the documentation for peel_ref() for an
  36         * exact definition of "peelable".
  37         */
  38        struct object_id peeled;
  39};
  40
  41struct ref_cache;
  42
  43/*
  44 * Information used (along with the information in ref_entry) to
  45 * describe a level in the hierarchy of references.  This data
  46 * structure only occurs embedded in a union in struct ref_entry, and
  47 * only when (ref_entry.flag & REF_DIR) is set.  In that case,
  48 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references
  49 * in the directory have already been read:
  50 *
  51 *     (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose
  52 *         or packed references, already read.
  53 *
  54 *     (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose
  55 *         references that hasn't been read yet (nor has any of its
  56 *         subdirectories).
  57 *
  58 * Entries within a directory are stored within a growable array of
  59 * pointers to ref_entries (entries, nr, alloc).  Entries 0 <= i <
  60 * sorted are sorted by their component name in strcmp() order and the
  61 * remaining entries are unsorted.
  62 *
  63 * Loose references are read lazily, one directory at a time.  When a
  64 * directory of loose references is read, then all of the references
  65 * in that directory are stored, and REF_INCOMPLETE stubs are created
  66 * for any subdirectories, but the subdirectories themselves are not
  67 * read.  The reading is triggered by get_ref_dir().
  68 */
  69struct ref_dir {
  70        int nr, alloc;
  71
  72        /*
  73         * Entries with index 0 <= i < sorted are sorted by name.  New
  74         * entries are appended to the list unsorted, and are sorted
  75         * only when required; thus we avoid the need to sort the list
  76         * after the addition of every reference.
  77         */
  78        int sorted;
  79
  80        /* A pointer to the ref_cache that contains this ref_dir. */
  81        struct ref_cache *ref_cache;
  82
  83        struct ref_entry **entries;
  84};
  85
  86/*
  87 * Bit values for ref_entry::flag.  REF_ISSYMREF=0x01,
  88 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are
  89 * public values; see refs.h.
  90 */
  91
  92/*
  93 * The field ref_entry->u.value.peeled of this value entry contains
  94 * the correct peeled value for the reference, which might be
  95 * null_sha1 if the reference is not a tag or if it is broken.
  96 */
  97#define REF_KNOWS_PEELED 0x10
  98
  99/* ref_entry represents a directory of references */
 100#define REF_DIR 0x20
 101
 102/*
 103 * Entry has not yet been read from disk (used only for REF_DIR
 104 * entries representing loose references)
 105 */
 106#define REF_INCOMPLETE 0x40
 107
 108/*
 109 * A ref_entry represents either a reference or a "subdirectory" of
 110 * references.
 111 *
 112 * Each directory in the reference namespace is represented by a
 113 * ref_entry with (flags & REF_DIR) set and containing a subdir member
 114 * that holds the entries in that directory that have been read so
 115 * far.  If (flags & REF_INCOMPLETE) is set, then the directory and
 116 * its subdirectories haven't been read yet.  REF_INCOMPLETE is only
 117 * used for loose reference directories.
 118 *
 119 * References are represented by a ref_entry with (flags & REF_DIR)
 120 * unset and a value member that describes the reference's value.  The
 121 * flag member is at the ref_entry level, but it is also needed to
 122 * interpret the contents of the value field (in other words, a
 123 * ref_value object is not very much use without the enclosing
 124 * ref_entry).
 125 *
 126 * Reference names cannot end with slash and directories' names are
 127 * always stored with a trailing slash (except for the top-level
 128 * directory, which is always denoted by "").  This has two nice
 129 * consequences: (1) when the entries in each subdir are sorted
 130 * lexicographically by name (as they usually are), the references in
 131 * a whole tree can be generated in lexicographic order by traversing
 132 * the tree in left-to-right, depth-first order; (2) the names of
 133 * references and subdirectories cannot conflict, and therefore the
 134 * presence of an empty subdirectory does not block the creation of a
 135 * similarly-named reference.  (The fact that reference names with the
 136 * same leading components can conflict *with each other* is a
 137 * separate issue that is regulated by verify_refname_available().)
 138 *
 139 * Please note that the name field contains the fully-qualified
 140 * reference (or subdirectory) name.  Space could be saved by only
 141 * storing the relative names.  But that would require the full names
 142 * to be generated on the fly when iterating in do_for_each_ref(), and
 143 * would break callback functions, who have always been able to assume
 144 * that the name strings that they are passed will not be freed during
 145 * the iteration.
 146 */
 147struct ref_entry {
 148        unsigned char flag; /* ISSYMREF? ISPACKED? */
 149        union {
 150                struct ref_value value; /* if not (flags&REF_DIR) */
 151                struct ref_dir subdir; /* if (flags&REF_DIR) */
 152        } u;
 153        /*
 154         * The full name of the reference (e.g., "refs/heads/master")
 155         * or the full name of the directory with a trailing slash
 156         * (e.g., "refs/heads/"):
 157         */
 158        char name[FLEX_ARRAY];
 159};
 160
 161static void read_loose_refs(const char *dirname, struct ref_dir *dir);
 162static int search_ref_dir(struct ref_dir *dir, const char *refname, size_t len);
 163static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache,
 164                                          const char *dirname, size_t len,
 165                                          int incomplete);
 166static void add_entry_to_dir(struct ref_dir *dir, struct ref_entry *entry);
 167
 168static struct ref_dir *get_ref_dir(struct ref_entry *entry)
 169{
 170        struct ref_dir *dir;
 171        assert(entry->flag & REF_DIR);
 172        dir = &entry->u.subdir;
 173        if (entry->flag & REF_INCOMPLETE) {
 174                read_loose_refs(entry->name, dir);
 175
 176                /*
 177                 * Manually add refs/bisect, which, being
 178                 * per-worktree, might not appear in the directory
 179                 * listing for refs/ in the main repo.
 180                 */
 181                if (!strcmp(entry->name, "refs/")) {
 182                        int pos = search_ref_dir(dir, "refs/bisect/", 12);
 183                        if (pos < 0) {
 184                                struct ref_entry *child_entry;
 185                                child_entry = create_dir_entry(dir->ref_cache,
 186                                                               "refs/bisect/",
 187                                                               12, 1);
 188                                add_entry_to_dir(dir, child_entry);
 189                                read_loose_refs("refs/bisect",
 190                                                &child_entry->u.subdir);
 191                        }
 192                }
 193                entry->flag &= ~REF_INCOMPLETE;
 194        }
 195        return dir;
 196}
 197
 198static struct ref_entry *create_ref_entry(const char *refname,
 199                                          const unsigned char *sha1, int flag,
 200                                          int check_name)
 201{
 202        struct ref_entry *ref;
 203
 204        if (check_name &&
 205            check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
 206                die("Reference has invalid format: '%s'", refname);
 207        FLEX_ALLOC_STR(ref, name, refname);
 208        hashcpy(ref->u.value.oid.hash, sha1);
 209        oidclr(&ref->u.value.peeled);
 210        ref->flag = flag;
 211        return ref;
 212}
 213
 214static void clear_ref_dir(struct ref_dir *dir);
 215
 216static void free_ref_entry(struct ref_entry *entry)
 217{
 218        if (entry->flag & REF_DIR) {
 219                /*
 220                 * Do not use get_ref_dir() here, as that might
 221                 * trigger the reading of loose refs.
 222                 */
 223                clear_ref_dir(&entry->u.subdir);
 224        }
 225        free(entry);
 226}
 227
 228/*
 229 * Add a ref_entry to the end of dir (unsorted).  Entry is always
 230 * stored directly in dir; no recursion into subdirectories is
 231 * done.
 232 */
 233static void add_entry_to_dir(struct ref_dir *dir, struct ref_entry *entry)
 234{
 235        ALLOC_GROW(dir->entries, dir->nr + 1, dir->alloc);
 236        dir->entries[dir->nr++] = entry;
 237        /* optimize for the case that entries are added in order */
 238        if (dir->nr == 1 ||
 239            (dir->nr == dir->sorted + 1 &&
 240             strcmp(dir->entries[dir->nr - 2]->name,
 241                    dir->entries[dir->nr - 1]->name) < 0))
 242                dir->sorted = dir->nr;
 243}
 244
 245/*
 246 * Clear and free all entries in dir, recursively.
 247 */
 248static void clear_ref_dir(struct ref_dir *dir)
 249{
 250        int i;
 251        for (i = 0; i < dir->nr; i++)
 252                free_ref_entry(dir->entries[i]);
 253        free(dir->entries);
 254        dir->sorted = dir->nr = dir->alloc = 0;
 255        dir->entries = NULL;
 256}
 257
 258/*
 259 * Create a struct ref_entry object for the specified dirname.
 260 * dirname is the name of the directory with a trailing slash (e.g.,
 261 * "refs/heads/") or "" for the top-level directory.
 262 */
 263static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache,
 264                                          const char *dirname, size_t len,
 265                                          int incomplete)
 266{
 267        struct ref_entry *direntry;
 268        FLEX_ALLOC_MEM(direntry, name, dirname, len);
 269        direntry->u.subdir.ref_cache = ref_cache;
 270        direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE : 0);
 271        return direntry;
 272}
 273
 274static int ref_entry_cmp(const void *a, const void *b)
 275{
 276        struct ref_entry *one = *(struct ref_entry **)a;
 277        struct ref_entry *two = *(struct ref_entry **)b;
 278        return strcmp(one->name, two->name);
 279}
 280
 281static void sort_ref_dir(struct ref_dir *dir);
 282
 283struct string_slice {
 284        size_t len;
 285        const char *str;
 286};
 287
 288static int ref_entry_cmp_sslice(const void *key_, const void *ent_)
 289{
 290        const struct string_slice *key = key_;
 291        const struct ref_entry *ent = *(const struct ref_entry * const *)ent_;
 292        int cmp = strncmp(key->str, ent->name, key->len);
 293        if (cmp)
 294                return cmp;
 295        return '\0' - (unsigned char)ent->name[key->len];
 296}
 297
 298/*
 299 * Return the index of the entry with the given refname from the
 300 * ref_dir (non-recursively), sorting dir if necessary.  Return -1 if
 301 * no such entry is found.  dir must already be complete.
 302 */
 303static int search_ref_dir(struct ref_dir *dir, const char *refname, size_t len)
 304{
 305        struct ref_entry **r;
 306        struct string_slice key;
 307
 308        if (refname == NULL || !dir->nr)
 309                return -1;
 310
 311        sort_ref_dir(dir);
 312        key.len = len;
 313        key.str = refname;
 314        r = bsearch(&key, dir->entries, dir->nr, sizeof(*dir->entries),
 315                    ref_entry_cmp_sslice);
 316
 317        if (r == NULL)
 318                return -1;
 319
 320        return r - dir->entries;
 321}
 322
 323/*
 324 * Search for a directory entry directly within dir (without
 325 * recursing).  Sort dir if necessary.  subdirname must be a directory
 326 * name (i.e., end in '/').  If mkdir is set, then create the
 327 * directory if it is missing; otherwise, return NULL if the desired
 328 * directory cannot be found.  dir must already be complete.
 329 */
 330static struct ref_dir *search_for_subdir(struct ref_dir *dir,
 331                                         const char *subdirname, size_t len,
 332                                         int mkdir)
 333{
 334        int entry_index = search_ref_dir(dir, subdirname, len);
 335        struct ref_entry *entry;
 336        if (entry_index == -1) {
 337                if (!mkdir)
 338                        return NULL;
 339                /*
 340                 * Since dir is complete, the absence of a subdir
 341                 * means that the subdir really doesn't exist;
 342                 * therefore, create an empty record for it but mark
 343                 * the record complete.
 344                 */
 345                entry = create_dir_entry(dir->ref_cache, subdirname, len, 0);
 346                add_entry_to_dir(dir, entry);
 347        } else {
 348                entry = dir->entries[entry_index];
 349        }
 350        return get_ref_dir(entry);
 351}
 352
 353/*
 354 * If refname is a reference name, find the ref_dir within the dir
 355 * tree that should hold refname.  If refname is a directory name
 356 * (i.e., ends in '/'), then return that ref_dir itself.  dir must
 357 * represent the top-level directory and must already be complete.
 358 * Sort ref_dirs and recurse into subdirectories as necessary.  If
 359 * mkdir is set, then create any missing directories; otherwise,
 360 * return NULL if the desired directory cannot be found.
 361 */
 362static struct ref_dir *find_containing_dir(struct ref_dir *dir,
 363                                           const char *refname, int mkdir)
 364{
 365        const char *slash;
 366        for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
 367                size_t dirnamelen = slash - refname + 1;
 368                struct ref_dir *subdir;
 369                subdir = search_for_subdir(dir, refname, dirnamelen, mkdir);
 370                if (!subdir) {
 371                        dir = NULL;
 372                        break;
 373                }
 374                dir = subdir;
 375        }
 376
 377        return dir;
 378}
 379
 380/*
 381 * Find the value entry with the given name in dir, sorting ref_dirs
 382 * and recursing into subdirectories as necessary.  If the name is not
 383 * found or it corresponds to a directory entry, return NULL.
 384 */
 385static struct ref_entry *find_ref(struct ref_dir *dir, const char *refname)
 386{
 387        int entry_index;
 388        struct ref_entry *entry;
 389        dir = find_containing_dir(dir, refname, 0);
 390        if (!dir)
 391                return NULL;
 392        entry_index = search_ref_dir(dir, refname, strlen(refname));
 393        if (entry_index == -1)
 394                return NULL;
 395        entry = dir->entries[entry_index];
 396        return (entry->flag & REF_DIR) ? NULL : entry;
 397}
 398
 399/*
 400 * Remove the entry with the given name from dir, recursing into
 401 * subdirectories as necessary.  If refname is the name of a directory
 402 * (i.e., ends with '/'), then remove the directory and its contents.
 403 * If the removal was successful, return the number of entries
 404 * remaining in the directory entry that contained the deleted entry.
 405 * If the name was not found, return -1.  Please note that this
 406 * function only deletes the entry from the cache; it does not delete
 407 * it from the filesystem or ensure that other cache entries (which
 408 * might be symbolic references to the removed entry) are updated.
 409 * Nor does it remove any containing dir entries that might be made
 410 * empty by the removal.  dir must represent the top-level directory
 411 * and must already be complete.
 412 */
 413static int remove_entry(struct ref_dir *dir, const char *refname)
 414{
 415        int refname_len = strlen(refname);
 416        int entry_index;
 417        struct ref_entry *entry;
 418        int is_dir = refname[refname_len - 1] == '/';
 419        if (is_dir) {
 420                /*
 421                 * refname represents a reference directory.  Remove
 422                 * the trailing slash; otherwise we will get the
 423                 * directory *representing* refname rather than the
 424                 * one *containing* it.
 425                 */
 426                char *dirname = xmemdupz(refname, refname_len - 1);
 427                dir = find_containing_dir(dir, dirname, 0);
 428                free(dirname);
 429        } else {
 430                dir = find_containing_dir(dir, refname, 0);
 431        }
 432        if (!dir)
 433                return -1;
 434        entry_index = search_ref_dir(dir, refname, refname_len);
 435        if (entry_index == -1)
 436                return -1;
 437        entry = dir->entries[entry_index];
 438
 439        memmove(&dir->entries[entry_index],
 440                &dir->entries[entry_index + 1],
 441                (dir->nr - entry_index - 1) * sizeof(*dir->entries)
 442                );
 443        dir->nr--;
 444        if (dir->sorted > entry_index)
 445                dir->sorted--;
 446        free_ref_entry(entry);
 447        return dir->nr;
 448}
 449
 450/*
 451 * Add a ref_entry to the ref_dir (unsorted), recursing into
 452 * subdirectories as necessary.  dir must represent the top-level
 453 * directory.  Return 0 on success.
 454 */
 455static int add_ref(struct ref_dir *dir, struct ref_entry *ref)
 456{
 457        dir = find_containing_dir(dir, ref->name, 1);
 458        if (!dir)
 459                return -1;
 460        add_entry_to_dir(dir, ref);
 461        return 0;
 462}
 463
 464/*
 465 * Emit a warning and return true iff ref1 and ref2 have the same name
 466 * and the same sha1.  Die if they have the same name but different
 467 * sha1s.
 468 */
 469static int is_dup_ref(const struct ref_entry *ref1, const struct ref_entry *ref2)
 470{
 471        if (strcmp(ref1->name, ref2->name))
 472                return 0;
 473
 474        /* Duplicate name; make sure that they don't conflict: */
 475
 476        if ((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR))
 477                /* This is impossible by construction */
 478                die("Reference directory conflict: %s", ref1->name);
 479
 480        if (oidcmp(&ref1->u.value.oid, &ref2->u.value.oid))
 481                die("Duplicated ref, and SHA1s don't match: %s", ref1->name);
 482
 483        warning("Duplicated ref: %s", ref1->name);
 484        return 1;
 485}
 486
 487/*
 488 * Sort the entries in dir non-recursively (if they are not already
 489 * sorted) and remove any duplicate entries.
 490 */
 491static void sort_ref_dir(struct ref_dir *dir)
 492{
 493        int i, j;
 494        struct ref_entry *last = NULL;
 495
 496        /*
 497         * This check also prevents passing a zero-length array to qsort(),
 498         * which is a problem on some platforms.
 499         */
 500        if (dir->sorted == dir->nr)
 501                return;
 502
 503        qsort(dir->entries, dir->nr, sizeof(*dir->entries), ref_entry_cmp);
 504
 505        /* Remove any duplicates: */
 506        for (i = 0, j = 0; j < dir->nr; j++) {
 507                struct ref_entry *entry = dir->entries[j];
 508                if (last && is_dup_ref(last, entry))
 509                        free_ref_entry(entry);
 510                else
 511                        last = dir->entries[i++] = entry;
 512        }
 513        dir->sorted = dir->nr = i;
 514}
 515
 516/* Include broken references in a do_for_each_ref*() iteration: */
 517#define DO_FOR_EACH_INCLUDE_BROKEN 0x01
 518
 519/*
 520 * Return true iff the reference described by entry can be resolved to
 521 * an object in the database.  Emit a warning if the referred-to
 522 * object does not exist.
 523 */
 524static int ref_resolves_to_object(struct ref_entry *entry)
 525{
 526        if (entry->flag & REF_ISBROKEN)
 527                return 0;
 528        if (!has_sha1_file(entry->u.value.oid.hash)) {
 529                error("%s does not point to a valid object!", entry->name);
 530                return 0;
 531        }
 532        return 1;
 533}
 534
 535/*
 536 * current_ref is a performance hack: when iterating over references
 537 * using the for_each_ref*() functions, current_ref is set to the
 538 * current reference's entry before calling the callback function.  If
 539 * the callback function calls peel_ref(), then peel_ref() first
 540 * checks whether the reference to be peeled is the current reference
 541 * (it usually is) and if so, returns that reference's peeled version
 542 * if it is available.  This avoids a refname lookup in a common case.
 543 */
 544static struct ref_entry *current_ref;
 545
 546typedef int each_ref_entry_fn(struct ref_entry *entry, void *cb_data);
 547
 548struct ref_entry_cb {
 549        const char *base;
 550        int trim;
 551        int flags;
 552        each_ref_fn *fn;
 553        void *cb_data;
 554};
 555
 556/*
 557 * Handle one reference in a do_for_each_ref*()-style iteration,
 558 * calling an each_ref_fn for each entry.
 559 */
 560static int do_one_ref(struct ref_entry *entry, void *cb_data)
 561{
 562        struct ref_entry_cb *data = cb_data;
 563        struct ref_entry *old_current_ref;
 564        int retval;
 565
 566        if (!starts_with(entry->name, data->base))
 567                return 0;
 568
 569        if (!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&
 570              !ref_resolves_to_object(entry))
 571                return 0;
 572
 573        /* Store the old value, in case this is a recursive call: */
 574        old_current_ref = current_ref;
 575        current_ref = entry;
 576        retval = data->fn(entry->name + data->trim, &entry->u.value.oid,
 577                          entry->flag, data->cb_data);
 578        current_ref = old_current_ref;
 579        return retval;
 580}
 581
 582/*
 583 * Call fn for each reference in dir that has index in the range
 584 * offset <= index < dir->nr.  Recurse into subdirectories that are in
 585 * that index range, sorting them before iterating.  This function
 586 * does not sort dir itself; it should be sorted beforehand.  fn is
 587 * called for all references, including broken ones.
 588 */
 589static int do_for_each_entry_in_dir(struct ref_dir *dir, int offset,
 590                                    each_ref_entry_fn fn, void *cb_data)
 591{
 592        int i;
 593        assert(dir->sorted == dir->nr);
 594        for (i = offset; i < dir->nr; i++) {
 595                struct ref_entry *entry = dir->entries[i];
 596                int retval;
 597                if (entry->flag & REF_DIR) {
 598                        struct ref_dir *subdir = get_ref_dir(entry);
 599                        sort_ref_dir(subdir);
 600                        retval = do_for_each_entry_in_dir(subdir, 0, fn, cb_data);
 601                } else {
 602                        retval = fn(entry, cb_data);
 603                }
 604                if (retval)
 605                        return retval;
 606        }
 607        return 0;
 608}
 609
 610/*
 611 * Call fn for each reference in the union of dir1 and dir2, in order
 612 * by refname.  Recurse into subdirectories.  If a value entry appears
 613 * in both dir1 and dir2, then only process the version that is in
 614 * dir2.  The input dirs must already be sorted, but subdirs will be
 615 * sorted as needed.  fn is called for all references, including
 616 * broken ones.
 617 */
 618static int do_for_each_entry_in_dirs(struct ref_dir *dir1,
 619                                     struct ref_dir *dir2,
 620                                     each_ref_entry_fn fn, void *cb_data)
 621{
 622        int retval;
 623        int i1 = 0, i2 = 0;
 624
 625        assert(dir1->sorted == dir1->nr);
 626        assert(dir2->sorted == dir2->nr);
 627        while (1) {
 628                struct ref_entry *e1, *e2;
 629                int cmp;
 630                if (i1 == dir1->nr) {
 631                        return do_for_each_entry_in_dir(dir2, i2, fn, cb_data);
 632                }
 633                if (i2 == dir2->nr) {
 634                        return do_for_each_entry_in_dir(dir1, i1, fn, cb_data);
 635                }
 636                e1 = dir1->entries[i1];
 637                e2 = dir2->entries[i2];
 638                cmp = strcmp(e1->name, e2->name);
 639                if (cmp == 0) {
 640                        if ((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) {
 641                                /* Both are directories; descend them in parallel. */
 642                                struct ref_dir *subdir1 = get_ref_dir(e1);
 643                                struct ref_dir *subdir2 = get_ref_dir(e2);
 644                                sort_ref_dir(subdir1);
 645                                sort_ref_dir(subdir2);
 646                                retval = do_for_each_entry_in_dirs(
 647                                                subdir1, subdir2, fn, cb_data);
 648                                i1++;
 649                                i2++;
 650                        } else if (!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) {
 651                                /* Both are references; ignore the one from dir1. */
 652                                retval = fn(e2, cb_data);
 653                                i1++;
 654                                i2++;
 655                        } else {
 656                                die("conflict between reference and directory: %s",
 657                                    e1->name);
 658                        }
 659                } else {
 660                        struct ref_entry *e;
 661                        if (cmp < 0) {
 662                                e = e1;
 663                                i1++;
 664                        } else {
 665                                e = e2;
 666                                i2++;
 667                        }
 668                        if (e->flag & REF_DIR) {
 669                                struct ref_dir *subdir = get_ref_dir(e);
 670                                sort_ref_dir(subdir);
 671                                retval = do_for_each_entry_in_dir(
 672                                                subdir, 0, fn, cb_data);
 673                        } else {
 674                                retval = fn(e, cb_data);
 675                        }
 676                }
 677                if (retval)
 678                        return retval;
 679        }
 680}
 681
 682/*
 683 * Load all of the refs from the dir into our in-memory cache. The hard work
 684 * of loading loose refs is done by get_ref_dir(), so we just need to recurse
 685 * through all of the sub-directories. We do not even need to care about
 686 * sorting, as traversal order does not matter to us.
 687 */
 688static void prime_ref_dir(struct ref_dir *dir)
 689{
 690        int i;
 691        for (i = 0; i < dir->nr; i++) {
 692                struct ref_entry *entry = dir->entries[i];
 693                if (entry->flag & REF_DIR)
 694                        prime_ref_dir(get_ref_dir(entry));
 695        }
 696}
 697
 698struct nonmatching_ref_data {
 699        const struct string_list *skip;
 700        const char *conflicting_refname;
 701};
 702
 703static int nonmatching_ref_fn(struct ref_entry *entry, void *vdata)
 704{
 705        struct nonmatching_ref_data *data = vdata;
 706
 707        if (data->skip && string_list_has_string(data->skip, entry->name))
 708                return 0;
 709
 710        data->conflicting_refname = entry->name;
 711        return 1;
 712}
 713
 714/*
 715 * Return 0 if a reference named refname could be created without
 716 * conflicting with the name of an existing reference in dir.
 717 * See verify_refname_available for more information.
 718 */
 719static int verify_refname_available_dir(const char *refname,
 720                                        const struct string_list *extras,
 721                                        const struct string_list *skip,
 722                                        struct ref_dir *dir,
 723                                        struct strbuf *err)
 724{
 725        const char *slash;
 726        const char *extra_refname;
 727        int pos;
 728        struct strbuf dirname = STRBUF_INIT;
 729        int ret = -1;
 730
 731        /*
 732         * For the sake of comments in this function, suppose that
 733         * refname is "refs/foo/bar".
 734         */
 735
 736        assert(err);
 737
 738        strbuf_grow(&dirname, strlen(refname) + 1);
 739        for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
 740                /* Expand dirname to the new prefix, not including the trailing slash: */
 741                strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
 742
 743                /*
 744                 * We are still at a leading dir of the refname (e.g.,
 745                 * "refs/foo"; if there is a reference with that name,
 746                 * it is a conflict, *unless* it is in skip.
 747                 */
 748                if (dir) {
 749                        pos = search_ref_dir(dir, dirname.buf, dirname.len);
 750                        if (pos >= 0 &&
 751                            (!skip || !string_list_has_string(skip, dirname.buf))) {
 752                                /*
 753                                 * We found a reference whose name is
 754                                 * a proper prefix of refname; e.g.,
 755                                 * "refs/foo", and is not in skip.
 756                                 */
 757                                strbuf_addf(err, "'%s' exists; cannot create '%s'",
 758                                            dirname.buf, refname);
 759                                goto cleanup;
 760                        }
 761                }
 762
 763                if (extras && string_list_has_string(extras, dirname.buf) &&
 764                    (!skip || !string_list_has_string(skip, dirname.buf))) {
 765                        strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
 766                                    refname, dirname.buf);
 767                        goto cleanup;
 768                }
 769
 770                /*
 771                 * Otherwise, we can try to continue our search with
 772                 * the next component. So try to look up the
 773                 * directory, e.g., "refs/foo/". If we come up empty,
 774                 * we know there is nothing under this whole prefix,
 775                 * but even in that case we still have to continue the
 776                 * search for conflicts with extras.
 777                 */
 778                strbuf_addch(&dirname, '/');
 779                if (dir) {
 780                        pos = search_ref_dir(dir, dirname.buf, dirname.len);
 781                        if (pos < 0) {
 782                                /*
 783                                 * There was no directory "refs/foo/",
 784                                 * so there is nothing under this
 785                                 * whole prefix. So there is no need
 786                                 * to continue looking for conflicting
 787                                 * references. But we need to continue
 788                                 * looking for conflicting extras.
 789                                 */
 790                                dir = NULL;
 791                        } else {
 792                                dir = get_ref_dir(dir->entries[pos]);
 793                        }
 794                }
 795        }
 796
 797        /*
 798         * We are at the leaf of our refname (e.g., "refs/foo/bar").
 799         * There is no point in searching for a reference with that
 800         * name, because a refname isn't considered to conflict with
 801         * itself. But we still need to check for references whose
 802         * names are in the "refs/foo/bar/" namespace, because they
 803         * *do* conflict.
 804         */
 805        strbuf_addstr(&dirname, refname + dirname.len);
 806        strbuf_addch(&dirname, '/');
 807
 808        if (dir) {
 809                pos = search_ref_dir(dir, dirname.buf, dirname.len);
 810
 811                if (pos >= 0) {
 812                        /*
 813                         * We found a directory named "$refname/"
 814                         * (e.g., "refs/foo/bar/"). It is a problem
 815                         * iff it contains any ref that is not in
 816                         * "skip".
 817                         */
 818                        struct nonmatching_ref_data data;
 819
 820                        data.skip = skip;
 821                        data.conflicting_refname = NULL;
 822                        dir = get_ref_dir(dir->entries[pos]);
 823                        sort_ref_dir(dir);
 824                        if (do_for_each_entry_in_dir(dir, 0, nonmatching_ref_fn, &data)) {
 825                                strbuf_addf(err, "'%s' exists; cannot create '%s'",
 826                                            data.conflicting_refname, refname);
 827                                goto cleanup;
 828                        }
 829                }
 830        }
 831
 832        extra_refname = find_descendant_ref(dirname.buf, extras, skip);
 833        if (extra_refname)
 834                strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
 835                            refname, extra_refname);
 836        else
 837                ret = 0;
 838
 839cleanup:
 840        strbuf_release(&dirname);
 841        return ret;
 842}
 843
 844struct packed_ref_cache {
 845        struct ref_entry *root;
 846
 847        /*
 848         * Count of references to the data structure in this instance,
 849         * including the pointer from ref_cache::packed if any.  The
 850         * data will not be freed as long as the reference count is
 851         * nonzero.
 852         */
 853        unsigned int referrers;
 854
 855        /*
 856         * Iff the packed-refs file associated with this instance is
 857         * currently locked for writing, this points at the associated
 858         * lock (which is owned by somebody else).  The referrer count
 859         * is also incremented when the file is locked and decremented
 860         * when it is unlocked.
 861         */
 862        struct lock_file *lock;
 863
 864        /* The metadata from when this packed-refs cache was read */
 865        struct stat_validity validity;
 866};
 867
 868/*
 869 * Future: need to be in "struct repository"
 870 * when doing a full libification.
 871 */
 872static struct ref_cache {
 873        struct ref_cache *next;
 874        struct ref_entry *loose;
 875        struct packed_ref_cache *packed;
 876        /*
 877         * The submodule name, or "" for the main repo.  We allocate
 878         * length 1 rather than FLEX_ARRAY so that the main ref_cache
 879         * is initialized correctly.
 880         */
 881        char name[1];
 882} ref_cache, *submodule_ref_caches;
 883
 884/* Lock used for the main packed-refs file: */
 885static struct lock_file packlock;
 886
 887/*
 888 * Increment the reference count of *packed_refs.
 889 */
 890static void acquire_packed_ref_cache(struct packed_ref_cache *packed_refs)
 891{
 892        packed_refs->referrers++;
 893}
 894
 895/*
 896 * Decrease the reference count of *packed_refs.  If it goes to zero,
 897 * free *packed_refs and return true; otherwise return false.
 898 */
 899static int release_packed_ref_cache(struct packed_ref_cache *packed_refs)
 900{
 901        if (!--packed_refs->referrers) {
 902                free_ref_entry(packed_refs->root);
 903                stat_validity_clear(&packed_refs->validity);
 904                free(packed_refs);
 905                return 1;
 906        } else {
 907                return 0;
 908        }
 909}
 910
 911static void clear_packed_ref_cache(struct ref_cache *refs)
 912{
 913        if (refs->packed) {
 914                struct packed_ref_cache *packed_refs = refs->packed;
 915
 916                if (packed_refs->lock)
 917                        die("internal error: packed-ref cache cleared while locked");
 918                refs->packed = NULL;
 919                release_packed_ref_cache(packed_refs);
 920        }
 921}
 922
 923static void clear_loose_ref_cache(struct ref_cache *refs)
 924{
 925        if (refs->loose) {
 926                free_ref_entry(refs->loose);
 927                refs->loose = NULL;
 928        }
 929}
 930
 931/*
 932 * Create a new submodule ref cache and add it to the internal
 933 * set of caches.
 934 */
 935static struct ref_cache *create_ref_cache(const char *submodule)
 936{
 937        struct ref_cache *refs;
 938        if (!submodule)
 939                submodule = "";
 940        FLEX_ALLOC_STR(refs, name, submodule);
 941        refs->next = submodule_ref_caches;
 942        submodule_ref_caches = refs;
 943        return refs;
 944}
 945
 946static struct ref_cache *lookup_ref_cache(const char *submodule)
 947{
 948        struct ref_cache *refs;
 949
 950        if (!submodule || !*submodule)
 951                return &ref_cache;
 952
 953        for (refs = submodule_ref_caches; refs; refs = refs->next)
 954                if (!strcmp(submodule, refs->name))
 955                        return refs;
 956        return NULL;
 957}
 958
 959/*
 960 * Return a pointer to a ref_cache for the specified submodule. For
 961 * the main repository, use submodule==NULL. The returned structure
 962 * will be allocated and initialized but not necessarily populated; it
 963 * should not be freed.
 964 */
 965static struct ref_cache *get_ref_cache(const char *submodule)
 966{
 967        struct ref_cache *refs = lookup_ref_cache(submodule);
 968        if (!refs)
 969                refs = create_ref_cache(submodule);
 970        return refs;
 971}
 972
 973/* The length of a peeled reference line in packed-refs, including EOL: */
 974#define PEELED_LINE_LENGTH 42
 975
 976/*
 977 * The packed-refs header line that we write out.  Perhaps other
 978 * traits will be added later.  The trailing space is required.
 979 */
 980static const char PACKED_REFS_HEADER[] =
 981        "# pack-refs with: peeled fully-peeled \n";
 982
 983/*
 984 * Parse one line from a packed-refs file.  Write the SHA1 to sha1.
 985 * Return a pointer to the refname within the line (null-terminated),
 986 * or NULL if there was a problem.
 987 */
 988static const char *parse_ref_line(struct strbuf *line, unsigned char *sha1)
 989{
 990        const char *ref;
 991
 992        /*
 993         * 42: the answer to everything.
 994         *
 995         * In this case, it happens to be the answer to
 996         *  40 (length of sha1 hex representation)
 997         *  +1 (space in between hex and name)
 998         *  +1 (newline at the end of the line)
 999         */
1000        if (line->len <= 42)
1001                return NULL;
1002
1003        if (get_sha1_hex(line->buf, sha1) < 0)
1004                return NULL;
1005        if (!isspace(line->buf[40]))
1006                return NULL;
1007
1008        ref = line->buf + 41;
1009        if (isspace(*ref))
1010                return NULL;
1011
1012        if (line->buf[line->len - 1] != '\n')
1013                return NULL;
1014        line->buf[--line->len] = 0;
1015
1016        return ref;
1017}
1018
1019/*
1020 * Read f, which is a packed-refs file, into dir.
1021 *
1022 * A comment line of the form "# pack-refs with: " may contain zero or
1023 * more traits. We interpret the traits as follows:
1024 *
1025 *   No traits:
1026 *
1027 *      Probably no references are peeled. But if the file contains a
1028 *      peeled value for a reference, we will use it.
1029 *
1030 *   peeled:
1031 *
1032 *      References under "refs/tags/", if they *can* be peeled, *are*
1033 *      peeled in this file. References outside of "refs/tags/" are
1034 *      probably not peeled even if they could have been, but if we find
1035 *      a peeled value for such a reference we will use it.
1036 *
1037 *   fully-peeled:
1038 *
1039 *      All references in the file that can be peeled are peeled.
1040 *      Inversely (and this is more important), any references in the
1041 *      file for which no peeled value is recorded is not peelable. This
1042 *      trait should typically be written alongside "peeled" for
1043 *      compatibility with older clients, but we do not require it
1044 *      (i.e., "peeled" is a no-op if "fully-peeled" is set).
1045 */
1046static void read_packed_refs(FILE *f, struct ref_dir *dir)
1047{
1048        struct ref_entry *last = NULL;
1049        struct strbuf line = STRBUF_INIT;
1050        enum { PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;
1051
1052        while (strbuf_getwholeline(&line, f, '\n') != EOF) {
1053                unsigned char sha1[20];
1054                const char *refname;
1055                const char *traits;
1056
1057                if (skip_prefix(line.buf, "# pack-refs with:", &traits)) {
1058                        if (strstr(traits, " fully-peeled "))
1059                                peeled = PEELED_FULLY;
1060                        else if (strstr(traits, " peeled "))
1061                                peeled = PEELED_TAGS;
1062                        /* perhaps other traits later as well */
1063                        continue;
1064                }
1065
1066                refname = parse_ref_line(&line, sha1);
1067                if (refname) {
1068                        int flag = REF_ISPACKED;
1069
1070                        if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1071                                if (!refname_is_safe(refname))
1072                                        die("packed refname is dangerous: %s", refname);
1073                                hashclr(sha1);
1074                                flag |= REF_BAD_NAME | REF_ISBROKEN;
1075                        }
1076                        last = create_ref_entry(refname, sha1, flag, 0);
1077                        if (peeled == PEELED_FULLY ||
1078                            (peeled == PEELED_TAGS && starts_with(refname, "refs/tags/")))
1079                                last->flag |= REF_KNOWS_PEELED;
1080                        add_ref(dir, last);
1081                        continue;
1082                }
1083                if (last &&
1084                    line.buf[0] == '^' &&
1085                    line.len == PEELED_LINE_LENGTH &&
1086                    line.buf[PEELED_LINE_LENGTH - 1] == '\n' &&
1087                    !get_sha1_hex(line.buf + 1, sha1)) {
1088                        hashcpy(last->u.value.peeled.hash, sha1);
1089                        /*
1090                         * Regardless of what the file header said,
1091                         * we definitely know the value of *this*
1092                         * reference:
1093                         */
1094                        last->flag |= REF_KNOWS_PEELED;
1095                }
1096        }
1097
1098        strbuf_release(&line);
1099}
1100
1101/*
1102 * Get the packed_ref_cache for the specified ref_cache, creating it
1103 * if necessary.
1104 */
1105static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)
1106{
1107        char *packed_refs_file;
1108
1109        if (*refs->name)
1110                packed_refs_file = git_pathdup_submodule(refs->name, "packed-refs");
1111        else
1112                packed_refs_file = git_pathdup("packed-refs");
1113
1114        if (refs->packed &&
1115            !stat_validity_check(&refs->packed->validity, packed_refs_file))
1116                clear_packed_ref_cache(refs);
1117
1118        if (!refs->packed) {
1119                FILE *f;
1120
1121                refs->packed = xcalloc(1, sizeof(*refs->packed));
1122                acquire_packed_ref_cache(refs->packed);
1123                refs->packed->root = create_dir_entry(refs, "", 0, 0);
1124                f = fopen(packed_refs_file, "r");
1125                if (f) {
1126                        stat_validity_update(&refs->packed->validity, fileno(f));
1127                        read_packed_refs(f, get_ref_dir(refs->packed->root));
1128                        fclose(f);
1129                }
1130        }
1131        free(packed_refs_file);
1132        return refs->packed;
1133}
1134
1135static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)
1136{
1137        return get_ref_dir(packed_ref_cache->root);
1138}
1139
1140static struct ref_dir *get_packed_refs(struct ref_cache *refs)
1141{
1142        return get_packed_ref_dir(get_packed_ref_cache(refs));
1143}
1144
1145/*
1146 * Add a reference to the in-memory packed reference cache.  This may
1147 * only be called while the packed-refs file is locked (see
1148 * lock_packed_refs()).  To actually write the packed-refs file, call
1149 * commit_packed_refs().
1150 */
1151static void add_packed_ref(const char *refname, const unsigned char *sha1)
1152{
1153        struct packed_ref_cache *packed_ref_cache =
1154                get_packed_ref_cache(&ref_cache);
1155
1156        if (!packed_ref_cache->lock)
1157                die("internal error: packed refs not locked");
1158        add_ref(get_packed_ref_dir(packed_ref_cache),
1159                create_ref_entry(refname, sha1, REF_ISPACKED, 1));
1160}
1161
1162/*
1163 * Read the loose references from the namespace dirname into dir
1164 * (without recursing).  dirname must end with '/'.  dir must be the
1165 * directory entry corresponding to dirname.
1166 */
1167static void read_loose_refs(const char *dirname, struct ref_dir *dir)
1168{
1169        struct ref_cache *refs = dir->ref_cache;
1170        DIR *d;
1171        struct dirent *de;
1172        int dirnamelen = strlen(dirname);
1173        struct strbuf refname;
1174        struct strbuf path = STRBUF_INIT;
1175        size_t path_baselen;
1176
1177        if (*refs->name)
1178                strbuf_git_path_submodule(&path, refs->name, "%s", dirname);
1179        else
1180                strbuf_git_path(&path, "%s", dirname);
1181        path_baselen = path.len;
1182
1183        d = opendir(path.buf);
1184        if (!d) {
1185                strbuf_release(&path);
1186                return;
1187        }
1188
1189        strbuf_init(&refname, dirnamelen + 257);
1190        strbuf_add(&refname, dirname, dirnamelen);
1191
1192        while ((de = readdir(d)) != NULL) {
1193                unsigned char sha1[20];
1194                struct stat st;
1195                int flag;
1196
1197                if (de->d_name[0] == '.')
1198                        continue;
1199                if (ends_with(de->d_name, ".lock"))
1200                        continue;
1201                strbuf_addstr(&refname, de->d_name);
1202                strbuf_addstr(&path, de->d_name);
1203                if (stat(path.buf, &st) < 0) {
1204                        ; /* silently ignore */
1205                } else if (S_ISDIR(st.st_mode)) {
1206                        strbuf_addch(&refname, '/');
1207                        add_entry_to_dir(dir,
1208                                         create_dir_entry(refs, refname.buf,
1209                                                          refname.len, 1));
1210                } else {
1211                        int read_ok;
1212
1213                        if (*refs->name) {
1214                                hashclr(sha1);
1215                                flag = 0;
1216                                read_ok = !resolve_gitlink_ref(refs->name,
1217                                                               refname.buf, sha1);
1218                        } else {
1219                                read_ok = !read_ref_full(refname.buf,
1220                                                         RESOLVE_REF_READING,
1221                                                         sha1, &flag);
1222                        }
1223
1224                        if (!read_ok) {
1225                                hashclr(sha1);
1226                                flag |= REF_ISBROKEN;
1227                        } else if (is_null_sha1(sha1)) {
1228                                /*
1229                                 * It is so astronomically unlikely
1230                                 * that NULL_SHA1 is the SHA-1 of an
1231                                 * actual object that we consider its
1232                                 * appearance in a loose reference
1233                                 * file to be repo corruption
1234                                 * (probably due to a software bug).
1235                                 */
1236                                flag |= REF_ISBROKEN;
1237                        }
1238
1239                        if (check_refname_format(refname.buf,
1240                                                 REFNAME_ALLOW_ONELEVEL)) {
1241                                if (!refname_is_safe(refname.buf))
1242                                        die("loose refname is dangerous: %s", refname.buf);
1243                                hashclr(sha1);
1244                                flag |= REF_BAD_NAME | REF_ISBROKEN;
1245                        }
1246                        add_entry_to_dir(dir,
1247                                         create_ref_entry(refname.buf, sha1, flag, 0));
1248                }
1249                strbuf_setlen(&refname, dirnamelen);
1250                strbuf_setlen(&path, path_baselen);
1251        }
1252        strbuf_release(&refname);
1253        strbuf_release(&path);
1254        closedir(d);
1255}
1256
1257static struct ref_dir *get_loose_refs(struct ref_cache *refs)
1258{
1259        if (!refs->loose) {
1260                /*
1261                 * Mark the top-level directory complete because we
1262                 * are about to read the only subdirectory that can
1263                 * hold references:
1264                 */
1265                refs->loose = create_dir_entry(refs, "", 0, 0);
1266                /*
1267                 * Create an incomplete entry for "refs/":
1268                 */
1269                add_entry_to_dir(get_ref_dir(refs->loose),
1270                                 create_dir_entry(refs, "refs/", 5, 1));
1271        }
1272        return get_ref_dir(refs->loose);
1273}
1274
1275/* We allow "recursive" symbolic refs. Only within reason, though */
1276#define MAXDEPTH 5
1277#define MAXREFLEN (1024)
1278
1279/*
1280 * Called by resolve_gitlink_ref_recursive() after it failed to read
1281 * from the loose refs in ref_cache refs. Find <refname> in the
1282 * packed-refs file for the submodule.
1283 */
1284static int resolve_gitlink_packed_ref(struct ref_cache *refs,
1285                                      const char *refname, unsigned char *sha1)
1286{
1287        struct ref_entry *ref;
1288        struct ref_dir *dir = get_packed_refs(refs);
1289
1290        ref = find_ref(dir, refname);
1291        if (ref == NULL)
1292                return -1;
1293
1294        hashcpy(sha1, ref->u.value.oid.hash);
1295        return 0;
1296}
1297
1298static int resolve_gitlink_ref_recursive(struct ref_cache *refs,
1299                                         const char *refname, unsigned char *sha1,
1300                                         int recursion)
1301{
1302        int fd, len;
1303        char buffer[128], *p;
1304        char *path;
1305
1306        if (recursion > MAXDEPTH || strlen(refname) > MAXREFLEN)
1307                return -1;
1308        path = *refs->name
1309                ? git_pathdup_submodule(refs->name, "%s", refname)
1310                : git_pathdup("%s", refname);
1311        fd = open(path, O_RDONLY);
1312        free(path);
1313        if (fd < 0)
1314                return resolve_gitlink_packed_ref(refs, refname, sha1);
1315
1316        len = read(fd, buffer, sizeof(buffer)-1);
1317        close(fd);
1318        if (len < 0)
1319                return -1;
1320        while (len && isspace(buffer[len-1]))
1321                len--;
1322        buffer[len] = 0;
1323
1324        /* Was it a detached head or an old-fashioned symlink? */
1325        if (!get_sha1_hex(buffer, sha1))
1326                return 0;
1327
1328        /* Symref? */
1329        if (strncmp(buffer, "ref:", 4))
1330                return -1;
1331        p = buffer + 4;
1332        while (isspace(*p))
1333                p++;
1334
1335        return resolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);
1336}
1337
1338int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *sha1)
1339{
1340        int len = strlen(path), retval;
1341        struct strbuf submodule = STRBUF_INIT;
1342        struct ref_cache *refs;
1343
1344        while (len && path[len-1] == '/')
1345                len--;
1346        if (!len)
1347                return -1;
1348
1349        strbuf_add(&submodule, path, len);
1350        refs = lookup_ref_cache(submodule.buf);
1351        if (!refs) {
1352                if (!is_nonbare_repository_dir(&submodule)) {
1353                        strbuf_release(&submodule);
1354                        return -1;
1355                }
1356                refs = create_ref_cache(submodule.buf);
1357        }
1358        strbuf_release(&submodule);
1359
1360        retval = resolve_gitlink_ref_recursive(refs, refname, sha1, 0);
1361        return retval;
1362}
1363
1364/*
1365 * Return the ref_entry for the given refname from the packed
1366 * references.  If it does not exist, return NULL.
1367 */
1368static struct ref_entry *get_packed_ref(const char *refname)
1369{
1370        return find_ref(get_packed_refs(&ref_cache), refname);
1371}
1372
1373/*
1374 * A loose ref file doesn't exist; check for a packed ref.  The
1375 * options are forwarded from resolve_safe_unsafe().
1376 */
1377static int resolve_missing_loose_ref(const char *refname,
1378                                     int resolve_flags,
1379                                     unsigned char *sha1,
1380                                     int *flags)
1381{
1382        struct ref_entry *entry;
1383
1384        /*
1385         * The loose reference file does not exist; check for a packed
1386         * reference.
1387         */
1388        entry = get_packed_ref(refname);
1389        if (entry) {
1390                hashcpy(sha1, entry->u.value.oid.hash);
1391                if (flags)
1392                        *flags |= REF_ISPACKED;
1393                return 0;
1394        }
1395        /* The reference is not a packed reference, either. */
1396        if (resolve_flags & RESOLVE_REF_READING) {
1397                errno = ENOENT;
1398                return -1;
1399        } else {
1400                hashclr(sha1);
1401                return 0;
1402        }
1403}
1404
1405/* This function needs to return a meaningful errno on failure */
1406static const char *resolve_ref_1(const char *refname,
1407                                 int resolve_flags,
1408                                 unsigned char *sha1,
1409                                 int *flags,
1410                                 struct strbuf *sb_refname,
1411                                 struct strbuf *sb_path,
1412                                 struct strbuf *sb_contents)
1413{
1414        int depth = MAXDEPTH;
1415        int bad_name = 0;
1416
1417        if (flags)
1418                *flags = 0;
1419
1420        if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1421                if (flags)
1422                        *flags |= REF_BAD_NAME;
1423
1424                if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1425                    !refname_is_safe(refname)) {
1426                        errno = EINVAL;
1427                        return NULL;
1428                }
1429                /*
1430                 * dwim_ref() uses REF_ISBROKEN to distinguish between
1431                 * missing refs and refs that were present but invalid,
1432                 * to complain about the latter to stderr.
1433                 *
1434                 * We don't know whether the ref exists, so don't set
1435                 * REF_ISBROKEN yet.
1436                 */
1437                bad_name = 1;
1438        }
1439        for (;;) {
1440                const char *path;
1441                struct stat st;
1442                char *buf;
1443                int fd;
1444
1445                if (--depth < 0) {
1446                        errno = ELOOP;
1447                        return NULL;
1448                }
1449
1450                strbuf_reset(sb_path);
1451                strbuf_git_path(sb_path, "%s", refname);
1452                path = sb_path->buf;
1453
1454                /*
1455                 * We might have to loop back here to avoid a race
1456                 * condition: first we lstat() the file, then we try
1457                 * to read it as a link or as a file.  But if somebody
1458                 * changes the type of the file (file <-> directory
1459                 * <-> symlink) between the lstat() and reading, then
1460                 * we don't want to report that as an error but rather
1461                 * try again starting with the lstat().
1462                 */
1463        stat_ref:
1464                if (lstat(path, &st) < 0) {
1465                        if (errno != ENOENT)
1466                                return NULL;
1467                        if (resolve_missing_loose_ref(refname, resolve_flags,
1468                                                      sha1, flags))
1469                                return NULL;
1470                        if (bad_name) {
1471                                hashclr(sha1);
1472                                if (flags)
1473                                        *flags |= REF_ISBROKEN;
1474                        }
1475                        return refname;
1476                }
1477
1478                /* Follow "normalized" - ie "refs/.." symlinks by hand */
1479                if (S_ISLNK(st.st_mode)) {
1480                        strbuf_reset(sb_contents);
1481                        if (strbuf_readlink(sb_contents, path, 0) < 0) {
1482                                if (errno == ENOENT || errno == EINVAL)
1483                                        /* inconsistent with lstat; retry */
1484                                        goto stat_ref;
1485                                else
1486                                        return NULL;
1487                        }
1488                        if (starts_with(sb_contents->buf, "refs/") &&
1489                            !check_refname_format(sb_contents->buf, 0)) {
1490                                strbuf_swap(sb_refname, sb_contents);
1491                                refname = sb_refname->buf;
1492                                if (flags)
1493                                        *flags |= REF_ISSYMREF;
1494                                if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1495                                        hashclr(sha1);
1496                                        return refname;
1497                                }
1498                                continue;
1499                        }
1500                }
1501
1502                /* Is it a directory? */
1503                if (S_ISDIR(st.st_mode)) {
1504                        errno = EISDIR;
1505                        return NULL;
1506                }
1507
1508                /*
1509                 * Anything else, just open it and try to use it as
1510                 * a ref
1511                 */
1512                fd = open(path, O_RDONLY);
1513                if (fd < 0) {
1514                        if (errno == ENOENT)
1515                                /* inconsistent with lstat; retry */
1516                                goto stat_ref;
1517                        else
1518                                return NULL;
1519                }
1520                strbuf_reset(sb_contents);
1521                if (strbuf_read(sb_contents, fd, 256) < 0) {
1522                        int save_errno = errno;
1523                        close(fd);
1524                        errno = save_errno;
1525                        return NULL;
1526                }
1527                close(fd);
1528                strbuf_rtrim(sb_contents);
1529
1530                /*
1531                 * Is it a symbolic ref?
1532                 */
1533                if (!starts_with(sb_contents->buf, "ref:")) {
1534                        /*
1535                         * Please note that FETCH_HEAD has a second
1536                         * line containing other data.
1537                         */
1538                        if (get_sha1_hex(sb_contents->buf, sha1) ||
1539                            (sb_contents->buf[40] != '\0' && !isspace(sb_contents->buf[40]))) {
1540                                if (flags)
1541                                        *flags |= REF_ISBROKEN;
1542                                errno = EINVAL;
1543                                return NULL;
1544                        }
1545                        if (bad_name) {
1546                                hashclr(sha1);
1547                                if (flags)
1548                                        *flags |= REF_ISBROKEN;
1549                        }
1550                        return refname;
1551                }
1552                if (flags)
1553                        *flags |= REF_ISSYMREF;
1554                buf = sb_contents->buf + 4;
1555                while (isspace(*buf))
1556                        buf++;
1557                strbuf_reset(sb_refname);
1558                strbuf_addstr(sb_refname, buf);
1559                refname = sb_refname->buf;
1560                if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1561                        hashclr(sha1);
1562                        return refname;
1563                }
1564                if (check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {
1565                        if (flags)
1566                                *flags |= REF_ISBROKEN;
1567
1568                        if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1569                            !refname_is_safe(buf)) {
1570                                errno = EINVAL;
1571                                return NULL;
1572                        }
1573                        bad_name = 1;
1574                }
1575        }
1576}
1577
1578const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1579                               unsigned char *sha1, int *flags)
1580{
1581        static struct strbuf sb_refname = STRBUF_INIT;
1582        struct strbuf sb_contents = STRBUF_INIT;
1583        struct strbuf sb_path = STRBUF_INIT;
1584        const char *ret;
1585
1586        ret = resolve_ref_1(refname, resolve_flags, sha1, flags,
1587                            &sb_refname, &sb_path, &sb_contents);
1588        strbuf_release(&sb_path);
1589        strbuf_release(&sb_contents);
1590        return ret;
1591}
1592
1593/*
1594 * Peel the entry (if possible) and return its new peel_status.  If
1595 * repeel is true, re-peel the entry even if there is an old peeled
1596 * value that is already stored in it.
1597 *
1598 * It is OK to call this function with a packed reference entry that
1599 * might be stale and might even refer to an object that has since
1600 * been garbage-collected.  In such a case, if the entry has
1601 * REF_KNOWS_PEELED then leave the status unchanged and return
1602 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.
1603 */
1604static enum peel_status peel_entry(struct ref_entry *entry, int repeel)
1605{
1606        enum peel_status status;
1607
1608        if (entry->flag & REF_KNOWS_PEELED) {
1609                if (repeel) {
1610                        entry->flag &= ~REF_KNOWS_PEELED;
1611                        oidclr(&entry->u.value.peeled);
1612                } else {
1613                        return is_null_oid(&entry->u.value.peeled) ?
1614                                PEEL_NON_TAG : PEEL_PEELED;
1615                }
1616        }
1617        if (entry->flag & REF_ISBROKEN)
1618                return PEEL_BROKEN;
1619        if (entry->flag & REF_ISSYMREF)
1620                return PEEL_IS_SYMREF;
1621
1622        status = peel_object(entry->u.value.oid.hash, entry->u.value.peeled.hash);
1623        if (status == PEEL_PEELED || status == PEEL_NON_TAG)
1624                entry->flag |= REF_KNOWS_PEELED;
1625        return status;
1626}
1627
1628int peel_ref(const char *refname, unsigned char *sha1)
1629{
1630        int flag;
1631        unsigned char base[20];
1632
1633        if (current_ref && (current_ref->name == refname
1634                            || !strcmp(current_ref->name, refname))) {
1635                if (peel_entry(current_ref, 0))
1636                        return -1;
1637                hashcpy(sha1, current_ref->u.value.peeled.hash);
1638                return 0;
1639        }
1640
1641        if (read_ref_full(refname, RESOLVE_REF_READING, base, &flag))
1642                return -1;
1643
1644        /*
1645         * If the reference is packed, read its ref_entry from the
1646         * cache in the hope that we already know its peeled value.
1647         * We only try this optimization on packed references because
1648         * (a) forcing the filling of the loose reference cache could
1649         * be expensive and (b) loose references anyway usually do not
1650         * have REF_KNOWS_PEELED.
1651         */
1652        if (flag & REF_ISPACKED) {
1653                struct ref_entry *r = get_packed_ref(refname);
1654                if (r) {
1655                        if (peel_entry(r, 0))
1656                                return -1;
1657                        hashcpy(sha1, r->u.value.peeled.hash);
1658                        return 0;
1659                }
1660        }
1661
1662        return peel_object(base, sha1);
1663}
1664
1665/*
1666 * Call fn for each reference in the specified ref_cache, omitting
1667 * references not in the containing_dir of base.  fn is called for all
1668 * references, including broken ones.  If fn ever returns a non-zero
1669 * value, stop the iteration and return that value; otherwise, return
1670 * 0.
1671 */
1672static int do_for_each_entry(struct ref_cache *refs, const char *base,
1673                             each_ref_entry_fn fn, void *cb_data)
1674{
1675        struct packed_ref_cache *packed_ref_cache;
1676        struct ref_dir *loose_dir;
1677        struct ref_dir *packed_dir;
1678        int retval = 0;
1679
1680        /*
1681         * We must make sure that all loose refs are read before accessing the
1682         * packed-refs file; this avoids a race condition in which loose refs
1683         * are migrated to the packed-refs file by a simultaneous process, but
1684         * our in-memory view is from before the migration. get_packed_ref_cache()
1685         * takes care of making sure our view is up to date with what is on
1686         * disk.
1687         */
1688        loose_dir = get_loose_refs(refs);
1689        if (base && *base) {
1690                loose_dir = find_containing_dir(loose_dir, base, 0);
1691        }
1692        if (loose_dir)
1693                prime_ref_dir(loose_dir);
1694
1695        packed_ref_cache = get_packed_ref_cache(refs);
1696        acquire_packed_ref_cache(packed_ref_cache);
1697        packed_dir = get_packed_ref_dir(packed_ref_cache);
1698        if (base && *base) {
1699                packed_dir = find_containing_dir(packed_dir, base, 0);
1700        }
1701
1702        if (packed_dir && loose_dir) {
1703                sort_ref_dir(packed_dir);
1704                sort_ref_dir(loose_dir);
1705                retval = do_for_each_entry_in_dirs(
1706                                packed_dir, loose_dir, fn, cb_data);
1707        } else if (packed_dir) {
1708                sort_ref_dir(packed_dir);
1709                retval = do_for_each_entry_in_dir(
1710                                packed_dir, 0, fn, cb_data);
1711        } else if (loose_dir) {
1712                sort_ref_dir(loose_dir);
1713                retval = do_for_each_entry_in_dir(
1714                                loose_dir, 0, fn, cb_data);
1715        }
1716
1717        release_packed_ref_cache(packed_ref_cache);
1718        return retval;
1719}
1720
1721/*
1722 * Call fn for each reference in the specified ref_cache for which the
1723 * refname begins with base.  If trim is non-zero, then trim that many
1724 * characters off the beginning of each refname before passing the
1725 * refname to fn.  flags can be DO_FOR_EACH_INCLUDE_BROKEN to include
1726 * broken references in the iteration.  If fn ever returns a non-zero
1727 * value, stop the iteration and return that value; otherwise, return
1728 * 0.
1729 */
1730static int do_for_each_ref(struct ref_cache *refs, const char *base,
1731                           each_ref_fn fn, int trim, int flags, void *cb_data)
1732{
1733        struct ref_entry_cb data;
1734        data.base = base;
1735        data.trim = trim;
1736        data.flags = flags;
1737        data.fn = fn;
1738        data.cb_data = cb_data;
1739
1740        if (ref_paranoia < 0)
1741                ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 0);
1742        if (ref_paranoia)
1743                data.flags |= DO_FOR_EACH_INCLUDE_BROKEN;
1744
1745        return do_for_each_entry(refs, base, do_one_ref, &data);
1746}
1747
1748int for_each_ref(each_ref_fn fn, void *cb_data)
1749{
1750        return do_for_each_ref(&ref_cache, "", fn, 0, 0, cb_data);
1751}
1752
1753int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1754{
1755        return do_for_each_ref(get_ref_cache(submodule), "", fn, 0, 0, cb_data);
1756}
1757
1758int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1759{
1760        return do_for_each_ref(&ref_cache, prefix, fn, strlen(prefix), 0, cb_data);
1761}
1762
1763int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data, unsigned int broken)
1764{
1765        unsigned int flag = 0;
1766
1767        if (broken)
1768                flag = DO_FOR_EACH_INCLUDE_BROKEN;
1769        return do_for_each_ref(&ref_cache, prefix, fn, 0, flag, cb_data);
1770}
1771
1772int for_each_ref_in_submodule(const char *submodule, const char *prefix,
1773                each_ref_fn fn, void *cb_data)
1774{
1775        return do_for_each_ref(get_ref_cache(submodule), prefix, fn, strlen(prefix), 0, cb_data);
1776}
1777
1778int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1779{
1780        return do_for_each_ref(&ref_cache, git_replace_ref_base, fn,
1781                               strlen(git_replace_ref_base), 0, cb_data);
1782}
1783
1784int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1785{
1786        struct strbuf buf = STRBUF_INIT;
1787        int ret;
1788        strbuf_addf(&buf, "%srefs/", get_git_namespace());
1789        ret = do_for_each_ref(&ref_cache, buf.buf, fn, 0, 0, cb_data);
1790        strbuf_release(&buf);
1791        return ret;
1792}
1793
1794int for_each_rawref(each_ref_fn fn, void *cb_data)
1795{
1796        return do_for_each_ref(&ref_cache, "", fn, 0,
1797                               DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1798}
1799
1800static void unlock_ref(struct ref_lock *lock)
1801{
1802        /* Do not free lock->lk -- atexit() still looks at them */
1803        if (lock->lk)
1804                rollback_lock_file(lock->lk);
1805        free(lock->ref_name);
1806        free(lock->orig_ref_name);
1807        free(lock);
1808}
1809
1810/*
1811 * Verify that the reference locked by lock has the value old_sha1.
1812 * Fail if the reference doesn't exist and mustexist is set. Return 0
1813 * on success. On error, write an error message to err, set errno, and
1814 * return a negative value.
1815 */
1816static int verify_lock(struct ref_lock *lock,
1817                       const unsigned char *old_sha1, int mustexist,
1818                       struct strbuf *err)
1819{
1820        assert(err);
1821
1822        if (read_ref_full(lock->ref_name,
1823                          mustexist ? RESOLVE_REF_READING : 0,
1824                          lock->old_oid.hash, NULL)) {
1825                if (old_sha1) {
1826                        int save_errno = errno;
1827                        strbuf_addf(err, "can't verify ref %s", lock->ref_name);
1828                        errno = save_errno;
1829                        return -1;
1830                } else {
1831                        hashclr(lock->old_oid.hash);
1832                        return 0;
1833                }
1834        }
1835        if (old_sha1 && hashcmp(lock->old_oid.hash, old_sha1)) {
1836                strbuf_addf(err, "ref %s is at %s but expected %s",
1837                            lock->ref_name,
1838                            sha1_to_hex(lock->old_oid.hash),
1839                            sha1_to_hex(old_sha1));
1840                errno = EBUSY;
1841                return -1;
1842        }
1843        return 0;
1844}
1845
1846static int remove_empty_directories(struct strbuf *path)
1847{
1848        /*
1849         * we want to create a file but there is a directory there;
1850         * if that is an empty directory (or a directory that contains
1851         * only empty directories), remove them.
1852         */
1853        return remove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY);
1854}
1855
1856/*
1857 * Locks a ref returning the lock on success and NULL on failure.
1858 * On failure errno is set to something meaningful.
1859 */
1860static struct ref_lock *lock_ref_sha1_basic(const char *refname,
1861                                            const unsigned char *old_sha1,
1862                                            const struct string_list *extras,
1863                                            const struct string_list *skip,
1864                                            unsigned int flags, int *type_p,
1865                                            struct strbuf *err)
1866{
1867        struct strbuf ref_file = STRBUF_INIT;
1868        struct strbuf orig_ref_file = STRBUF_INIT;
1869        const char *orig_refname = refname;
1870        struct ref_lock *lock;
1871        int last_errno = 0;
1872        int type;
1873        int lflags = 0;
1874        int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
1875        int resolve_flags = 0;
1876        int attempts_remaining = 3;
1877
1878        assert(err);
1879
1880        lock = xcalloc(1, sizeof(struct ref_lock));
1881
1882        if (mustexist)
1883                resolve_flags |= RESOLVE_REF_READING;
1884        if (flags & REF_DELETING)
1885                resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;
1886        if (flags & REF_NODEREF) {
1887                resolve_flags |= RESOLVE_REF_NO_RECURSE;
1888                lflags |= LOCK_NO_DEREF;
1889        }
1890
1891        refname = resolve_ref_unsafe(refname, resolve_flags,
1892                                     lock->old_oid.hash, &type);
1893        if (!refname && errno == EISDIR) {
1894                /*
1895                 * we are trying to lock foo but we used to
1896                 * have foo/bar which now does not exist;
1897                 * it is normal for the empty directory 'foo'
1898                 * to remain.
1899                 */
1900                strbuf_git_path(&orig_ref_file, "%s", orig_refname);
1901                if (remove_empty_directories(&orig_ref_file)) {
1902                        last_errno = errno;
1903                        if (!verify_refname_available_dir(orig_refname, extras, skip,
1904                                                          get_loose_refs(&ref_cache), err))
1905                                strbuf_addf(err, "there are still refs under '%s'",
1906                                            orig_refname);
1907                        goto error_return;
1908                }
1909                refname = resolve_ref_unsafe(orig_refname, resolve_flags,
1910                                             lock->old_oid.hash, &type);
1911        }
1912        if (type_p)
1913            *type_p = type;
1914        if (!refname) {
1915                last_errno = errno;
1916                if (last_errno != ENOTDIR ||
1917                    !verify_refname_available_dir(orig_refname, extras, skip,
1918                                                  get_loose_refs(&ref_cache), err))
1919                        strbuf_addf(err, "unable to resolve reference %s: %s",
1920                                    orig_refname, strerror(last_errno));
1921
1922                goto error_return;
1923        }
1924
1925        if (flags & REF_NODEREF)
1926                refname = orig_refname;
1927
1928        /*
1929         * If the ref did not exist and we are creating it, make sure
1930         * there is no existing packed ref whose name begins with our
1931         * refname, nor a packed ref whose name is a proper prefix of
1932         * our refname.
1933         */
1934        if (is_null_oid(&lock->old_oid) &&
1935            verify_refname_available_dir(refname, extras, skip,
1936                                         get_packed_refs(&ref_cache), err)) {
1937                last_errno = ENOTDIR;
1938                goto error_return;
1939        }
1940
1941        lock->lk = xcalloc(1, sizeof(struct lock_file));
1942
1943        lock->ref_name = xstrdup(refname);
1944        lock->orig_ref_name = xstrdup(orig_refname);
1945        strbuf_git_path(&ref_file, "%s", refname);
1946
1947 retry:
1948        switch (safe_create_leading_directories_const(ref_file.buf)) {
1949        case SCLD_OK:
1950                break; /* success */
1951        case SCLD_VANISHED:
1952                if (--attempts_remaining > 0)
1953                        goto retry;
1954                /* fall through */
1955        default:
1956                last_errno = errno;
1957                strbuf_addf(err, "unable to create directory for %s",
1958                            ref_file.buf);
1959                goto error_return;
1960        }
1961
1962        if (hold_lock_file_for_update(lock->lk, ref_file.buf, lflags) < 0) {
1963                last_errno = errno;
1964                if (errno == ENOENT && --attempts_remaining > 0)
1965                        /*
1966                         * Maybe somebody just deleted one of the
1967                         * directories leading to ref_file.  Try
1968                         * again:
1969                         */
1970                        goto retry;
1971                else {
1972                        unable_to_lock_message(ref_file.buf, errno, err);
1973                        goto error_return;
1974                }
1975        }
1976        if (verify_lock(lock, old_sha1, mustexist, err)) {
1977                last_errno = errno;
1978                goto error_return;
1979        }
1980        goto out;
1981
1982 error_return:
1983        unlock_ref(lock);
1984        lock = NULL;
1985
1986 out:
1987        strbuf_release(&ref_file);
1988        strbuf_release(&orig_ref_file);
1989        errno = last_errno;
1990        return lock;
1991}
1992
1993/*
1994 * Write an entry to the packed-refs file for the specified refname.
1995 * If peeled is non-NULL, write it as the entry's peeled value.
1996 */
1997static void write_packed_entry(FILE *fh, char *refname, unsigned char *sha1,
1998                               unsigned char *peeled)
1999{
2000        fprintf_or_die(fh, "%s %s\n", sha1_to_hex(sha1), refname);
2001        if (peeled)
2002                fprintf_or_die(fh, "^%s\n", sha1_to_hex(peeled));
2003}
2004
2005/*
2006 * An each_ref_entry_fn that writes the entry to a packed-refs file.
2007 */
2008static int write_packed_entry_fn(struct ref_entry *entry, void *cb_data)
2009{
2010        enum peel_status peel_status = peel_entry(entry, 0);
2011
2012        if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2013                error("internal error: %s is not a valid packed reference!",
2014                      entry->name);
2015        write_packed_entry(cb_data, entry->name, entry->u.value.oid.hash,
2016                           peel_status == PEEL_PEELED ?
2017                           entry->u.value.peeled.hash : NULL);
2018        return 0;
2019}
2020
2021/*
2022 * Lock the packed-refs file for writing. Flags is passed to
2023 * hold_lock_file_for_update(). Return 0 on success. On errors, set
2024 * errno appropriately and return a nonzero value.
2025 */
2026static int lock_packed_refs(int flags)
2027{
2028        static int timeout_configured = 0;
2029        static int timeout_value = 1000;
2030
2031        struct packed_ref_cache *packed_ref_cache;
2032
2033        if (!timeout_configured) {
2034                git_config_get_int("core.packedrefstimeout", &timeout_value);
2035                timeout_configured = 1;
2036        }
2037
2038        if (hold_lock_file_for_update_timeout(
2039                            &packlock, git_path("packed-refs"),
2040                            flags, timeout_value) < 0)
2041                return -1;
2042        /*
2043         * Get the current packed-refs while holding the lock.  If the
2044         * packed-refs file has been modified since we last read it,
2045         * this will automatically invalidate the cache and re-read
2046         * the packed-refs file.
2047         */
2048        packed_ref_cache = get_packed_ref_cache(&ref_cache);
2049        packed_ref_cache->lock = &packlock;
2050        /* Increment the reference count to prevent it from being freed: */
2051        acquire_packed_ref_cache(packed_ref_cache);
2052        return 0;
2053}
2054
2055/*
2056 * Write the current version of the packed refs cache from memory to
2057 * disk. The packed-refs file must already be locked for writing (see
2058 * lock_packed_refs()). Return zero on success. On errors, set errno
2059 * and return a nonzero value
2060 */
2061static int commit_packed_refs(void)
2062{
2063        struct packed_ref_cache *packed_ref_cache =
2064                get_packed_ref_cache(&ref_cache);
2065        int error = 0;
2066        int save_errno = 0;
2067        FILE *out;
2068
2069        if (!packed_ref_cache->lock)
2070                die("internal error: packed-refs not locked");
2071
2072        out = fdopen_lock_file(packed_ref_cache->lock, "w");
2073        if (!out)
2074                die_errno("unable to fdopen packed-refs descriptor");
2075
2076        fprintf_or_die(out, "%s", PACKED_REFS_HEADER);
2077        do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),
2078                                 0, write_packed_entry_fn, out);
2079
2080        if (commit_lock_file(packed_ref_cache->lock)) {
2081                save_errno = errno;
2082                error = -1;
2083        }
2084        packed_ref_cache->lock = NULL;
2085        release_packed_ref_cache(packed_ref_cache);
2086        errno = save_errno;
2087        return error;
2088}
2089
2090/*
2091 * Rollback the lockfile for the packed-refs file, and discard the
2092 * in-memory packed reference cache.  (The packed-refs file will be
2093 * read anew if it is needed again after this function is called.)
2094 */
2095static void rollback_packed_refs(void)
2096{
2097        struct packed_ref_cache *packed_ref_cache =
2098                get_packed_ref_cache(&ref_cache);
2099
2100        if (!packed_ref_cache->lock)
2101                die("internal error: packed-refs not locked");
2102        rollback_lock_file(packed_ref_cache->lock);
2103        packed_ref_cache->lock = NULL;
2104        release_packed_ref_cache(packed_ref_cache);
2105        clear_packed_ref_cache(&ref_cache);
2106}
2107
2108struct ref_to_prune {
2109        struct ref_to_prune *next;
2110        unsigned char sha1[20];
2111        char name[FLEX_ARRAY];
2112};
2113
2114struct pack_refs_cb_data {
2115        unsigned int flags;
2116        struct ref_dir *packed_refs;
2117        struct ref_to_prune *ref_to_prune;
2118};
2119
2120/*
2121 * An each_ref_entry_fn that is run over loose references only.  If
2122 * the loose reference can be packed, add an entry in the packed ref
2123 * cache.  If the reference should be pruned, also add it to
2124 * ref_to_prune in the pack_refs_cb_data.
2125 */
2126static int pack_if_possible_fn(struct ref_entry *entry, void *cb_data)
2127{
2128        struct pack_refs_cb_data *cb = cb_data;
2129        enum peel_status peel_status;
2130        struct ref_entry *packed_entry;
2131        int is_tag_ref = starts_with(entry->name, "refs/tags/");
2132
2133        /* Do not pack per-worktree refs: */
2134        if (ref_type(entry->name) != REF_TYPE_NORMAL)
2135                return 0;
2136
2137        /* ALWAYS pack tags */
2138        if (!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)
2139                return 0;
2140
2141        /* Do not pack symbolic or broken refs: */
2142        if ((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))
2143                return 0;
2144
2145        /* Add a packed ref cache entry equivalent to the loose entry. */
2146        peel_status = peel_entry(entry, 1);
2147        if (peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)
2148                die("internal error peeling reference %s (%s)",
2149                    entry->name, oid_to_hex(&entry->u.value.oid));
2150        packed_entry = find_ref(cb->packed_refs, entry->name);
2151        if (packed_entry) {
2152                /* Overwrite existing packed entry with info from loose entry */
2153                packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;
2154                oidcpy(&packed_entry->u.value.oid, &entry->u.value.oid);
2155        } else {
2156                packed_entry = create_ref_entry(entry->name, entry->u.value.oid.hash,
2157                                                REF_ISPACKED | REF_KNOWS_PEELED, 0);
2158                add_ref(cb->packed_refs, packed_entry);
2159        }
2160        oidcpy(&packed_entry->u.value.peeled, &entry->u.value.peeled);
2161
2162        /* Schedule the loose reference for pruning if requested. */
2163        if ((cb->flags & PACK_REFS_PRUNE)) {
2164                struct ref_to_prune *n;
2165                FLEX_ALLOC_STR(n, name, entry->name);
2166                hashcpy(n->sha1, entry->u.value.oid.hash);
2167                n->next = cb->ref_to_prune;
2168                cb->ref_to_prune = n;
2169        }
2170        return 0;
2171}
2172
2173/*
2174 * Remove empty parents, but spare refs/ and immediate subdirs.
2175 * Note: munges *name.
2176 */
2177static void try_remove_empty_parents(char *name)
2178{
2179        char *p, *q;
2180        int i;
2181        p = name;
2182        for (i = 0; i < 2; i++) { /* refs/{heads,tags,...}/ */
2183                while (*p && *p != '/')
2184                        p++;
2185                /* tolerate duplicate slashes; see check_refname_format() */
2186                while (*p == '/')
2187                        p++;
2188        }
2189        for (q = p; *q; q++)
2190                ;
2191        while (1) {
2192                while (q > p && *q != '/')
2193                        q--;
2194                while (q > p && *(q-1) == '/')
2195                        q--;
2196                if (q == p)
2197                        break;
2198                *q = '\0';
2199                if (rmdir(git_path("%s", name)))
2200                        break;
2201        }
2202}
2203
2204/* make sure nobody touched the ref, and unlink */
2205static void prune_ref(struct ref_to_prune *r)
2206{
2207        struct ref_transaction *transaction;
2208        struct strbuf err = STRBUF_INIT;
2209
2210        if (check_refname_format(r->name, 0))
2211                return;
2212
2213        transaction = ref_transaction_begin(&err);
2214        if (!transaction ||
2215            ref_transaction_delete(transaction, r->name, r->sha1,
2216                                   REF_ISPRUNING, NULL, &err) ||
2217            ref_transaction_commit(transaction, &err)) {
2218                ref_transaction_free(transaction);
2219                error("%s", err.buf);
2220                strbuf_release(&err);
2221                return;
2222        }
2223        ref_transaction_free(transaction);
2224        strbuf_release(&err);
2225        try_remove_empty_parents(r->name);
2226}
2227
2228static void prune_refs(struct ref_to_prune *r)
2229{
2230        while (r) {
2231                prune_ref(r);
2232                r = r->next;
2233        }
2234}
2235
2236int pack_refs(unsigned int flags)
2237{
2238        struct pack_refs_cb_data cbdata;
2239
2240        memset(&cbdata, 0, sizeof(cbdata));
2241        cbdata.flags = flags;
2242
2243        lock_packed_refs(LOCK_DIE_ON_ERROR);
2244        cbdata.packed_refs = get_packed_refs(&ref_cache);
2245
2246        do_for_each_entry_in_dir(get_loose_refs(&ref_cache), 0,
2247                                 pack_if_possible_fn, &cbdata);
2248
2249        if (commit_packed_refs())
2250                die_errno("unable to overwrite old ref-pack file");
2251
2252        prune_refs(cbdata.ref_to_prune);
2253        return 0;
2254}
2255
2256/*
2257 * Rewrite the packed-refs file, omitting any refs listed in
2258 * 'refnames'. On error, leave packed-refs unchanged, write an error
2259 * message to 'err', and return a nonzero value.
2260 *
2261 * The refs in 'refnames' needn't be sorted. `err` must not be NULL.
2262 */
2263static int repack_without_refs(struct string_list *refnames, struct strbuf *err)
2264{
2265        struct ref_dir *packed;
2266        struct string_list_item *refname;
2267        int ret, needs_repacking = 0, removed = 0;
2268
2269        assert(err);
2270
2271        /* Look for a packed ref */
2272        for_each_string_list_item(refname, refnames) {
2273                if (get_packed_ref(refname->string)) {
2274                        needs_repacking = 1;
2275                        break;
2276                }
2277        }
2278
2279        /* Avoid locking if we have nothing to do */
2280        if (!needs_repacking)
2281                return 0; /* no refname exists in packed refs */
2282
2283        if (lock_packed_refs(0)) {
2284                unable_to_lock_message(git_path("packed-refs"), errno, err);
2285                return -1;
2286        }
2287        packed = get_packed_refs(&ref_cache);
2288
2289        /* Remove refnames from the cache */
2290        for_each_string_list_item(refname, refnames)
2291                if (remove_entry(packed, refname->string) != -1)
2292                        removed = 1;
2293        if (!removed) {
2294                /*
2295                 * All packed entries disappeared while we were
2296                 * acquiring the lock.
2297                 */
2298                rollback_packed_refs();
2299                return 0;
2300        }
2301
2302        /* Write what remains */
2303        ret = commit_packed_refs();
2304        if (ret)
2305                strbuf_addf(err, "unable to overwrite old ref-pack file: %s",
2306                            strerror(errno));
2307        return ret;
2308}
2309
2310static int delete_ref_loose(struct ref_lock *lock, int flag, struct strbuf *err)
2311{
2312        assert(err);
2313
2314        if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
2315                /*
2316                 * loose.  The loose file name is the same as the
2317                 * lockfile name, minus ".lock":
2318                 */
2319                char *loose_filename = get_locked_file_path(lock->lk);
2320                int res = unlink_or_msg(loose_filename, err);
2321                free(loose_filename);
2322                if (res)
2323                        return 1;
2324        }
2325        return 0;
2326}
2327
2328int delete_refs(struct string_list *refnames)
2329{
2330        struct strbuf err = STRBUF_INIT;
2331        int i, result = 0;
2332
2333        if (!refnames->nr)
2334                return 0;
2335
2336        result = repack_without_refs(refnames, &err);
2337        if (result) {
2338                /*
2339                 * If we failed to rewrite the packed-refs file, then
2340                 * it is unsafe to try to remove loose refs, because
2341                 * doing so might expose an obsolete packed value for
2342                 * a reference that might even point at an object that
2343                 * has been garbage collected.
2344                 */
2345                if (refnames->nr == 1)
2346                        error(_("could not delete reference %s: %s"),
2347                              refnames->items[0].string, err.buf);
2348                else
2349                        error(_("could not delete references: %s"), err.buf);
2350
2351                goto out;
2352        }
2353
2354        for (i = 0; i < refnames->nr; i++) {
2355                const char *refname = refnames->items[i].string;
2356
2357                if (delete_ref(refname, NULL, 0))
2358                        result |= error(_("could not remove reference %s"), refname);
2359        }
2360
2361out:
2362        strbuf_release(&err);
2363        return result;
2364}
2365
2366/*
2367 * People using contrib's git-new-workdir have .git/logs/refs ->
2368 * /some/other/path/.git/logs/refs, and that may live on another device.
2369 *
2370 * IOW, to avoid cross device rename errors, the temporary renamed log must
2371 * live into logs/refs.
2372 */
2373#define TMP_RENAMED_LOG  "logs/refs/.tmp-renamed-log"
2374
2375static int rename_tmp_log(const char *newrefname)
2376{
2377        int attempts_remaining = 4;
2378        struct strbuf path = STRBUF_INIT;
2379        int ret = -1;
2380
2381 retry:
2382        strbuf_reset(&path);
2383        strbuf_git_path(&path, "logs/%s", newrefname);
2384        switch (safe_create_leading_directories_const(path.buf)) {
2385        case SCLD_OK:
2386                break; /* success */
2387        case SCLD_VANISHED:
2388                if (--attempts_remaining > 0)
2389                        goto retry;
2390                /* fall through */
2391        default:
2392                error("unable to create directory for %s", newrefname);
2393                goto out;
2394        }
2395
2396        if (rename(git_path(TMP_RENAMED_LOG), path.buf)) {
2397                if ((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining > 0) {
2398                        /*
2399                         * rename(a, b) when b is an existing
2400                         * directory ought to result in ISDIR, but
2401                         * Solaris 5.8 gives ENOTDIR.  Sheesh.
2402                         */
2403                        if (remove_empty_directories(&path)) {
2404                                error("Directory not empty: logs/%s", newrefname);
2405                                goto out;
2406                        }
2407                        goto retry;
2408                } else if (errno == ENOENT && --attempts_remaining > 0) {
2409                        /*
2410                         * Maybe another process just deleted one of
2411                         * the directories in the path to newrefname.
2412                         * Try again from the beginning.
2413                         */
2414                        goto retry;
2415                } else {
2416                        error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
2417                                newrefname, strerror(errno));
2418                        goto out;
2419                }
2420        }
2421        ret = 0;
2422out:
2423        strbuf_release(&path);
2424        return ret;
2425}
2426
2427int verify_refname_available(const char *newname,
2428                             struct string_list *extras,
2429                             struct string_list *skip,
2430                             struct strbuf *err)
2431{
2432        struct ref_dir *packed_refs = get_packed_refs(&ref_cache);
2433        struct ref_dir *loose_refs = get_loose_refs(&ref_cache);
2434
2435        if (verify_refname_available_dir(newname, extras, skip,
2436                                         packed_refs, err) ||
2437            verify_refname_available_dir(newname, extras, skip,
2438                                         loose_refs, err))
2439                return -1;
2440
2441        return 0;
2442}
2443
2444static int write_ref_to_lockfile(struct ref_lock *lock,
2445                                 const unsigned char *sha1, struct strbuf *err);
2446static int commit_ref_update(struct ref_lock *lock,
2447                             const unsigned char *sha1, const char *logmsg,
2448                             int flags, struct strbuf *err);
2449
2450int rename_ref(const char *oldrefname, const char *newrefname, const char *logmsg)
2451{
2452        unsigned char sha1[20], orig_sha1[20];
2453        int flag = 0, logmoved = 0;
2454        struct ref_lock *lock;
2455        struct stat loginfo;
2456        int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);
2457        const char *symref = NULL;
2458        struct strbuf err = STRBUF_INIT;
2459
2460        if (log && S_ISLNK(loginfo.st_mode))
2461                return error("reflog for %s is a symlink", oldrefname);
2462
2463        symref = resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,
2464                                    orig_sha1, &flag);
2465        if (flag & REF_ISSYMREF)
2466                return error("refname %s is a symbolic ref, renaming it is not supported",
2467                        oldrefname);
2468        if (!symref)
2469                return error("refname %s not found", oldrefname);
2470
2471        if (!rename_ref_available(oldrefname, newrefname))
2472                return 1;
2473
2474        if (log && rename(git_path("logs/%s", oldrefname), git_path(TMP_RENAMED_LOG)))
2475                return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
2476                        oldrefname, strerror(errno));
2477
2478        if (delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {
2479                error("unable to delete old %s", oldrefname);
2480                goto rollback;
2481        }
2482
2483        if (!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&
2484            delete_ref(newrefname, sha1, REF_NODEREF)) {
2485                if (errno==EISDIR) {
2486                        struct strbuf path = STRBUF_INIT;
2487                        int result;
2488
2489                        strbuf_git_path(&path, "%s", newrefname);
2490                        result = remove_empty_directories(&path);
2491                        strbuf_release(&path);
2492
2493                        if (result) {
2494                                error("Directory not empty: %s", newrefname);
2495                                goto rollback;
2496                        }
2497                } else {
2498                        error("unable to delete existing %s", newrefname);
2499                        goto rollback;
2500                }
2501        }
2502
2503        if (log && rename_tmp_log(newrefname))
2504                goto rollback;
2505
2506        logmoved = log;
2507
2508        lock = lock_ref_sha1_basic(newrefname, NULL, NULL, NULL, 0, NULL, &err);
2509        if (!lock) {
2510                error("unable to rename '%s' to '%s': %s", oldrefname, newrefname, err.buf);
2511                strbuf_release(&err);
2512                goto rollback;
2513        }
2514        hashcpy(lock->old_oid.hash, orig_sha1);
2515
2516        if (write_ref_to_lockfile(lock, orig_sha1, &err) ||
2517            commit_ref_update(lock, orig_sha1, logmsg, 0, &err)) {
2518                error("unable to write current sha1 into %s: %s", newrefname, err.buf);
2519                strbuf_release(&err);
2520                goto rollback;
2521        }
2522
2523        return 0;
2524
2525 rollback:
2526        lock = lock_ref_sha1_basic(oldrefname, NULL, NULL, NULL, 0, NULL, &err);
2527        if (!lock) {
2528                error("unable to lock %s for rollback: %s", oldrefname, err.buf);
2529                strbuf_release(&err);
2530                goto rollbacklog;
2531        }
2532
2533        flag = log_all_ref_updates;
2534        log_all_ref_updates = 0;
2535        if (write_ref_to_lockfile(lock, orig_sha1, &err) ||
2536            commit_ref_update(lock, orig_sha1, NULL, 0, &err)) {
2537                error("unable to write current sha1 into %s: %s", oldrefname, err.buf);
2538                strbuf_release(&err);
2539        }
2540        log_all_ref_updates = flag;
2541
2542 rollbacklog:
2543        if (logmoved && rename(git_path("logs/%s", newrefname), git_path("logs/%s", oldrefname)))
2544                error("unable to restore logfile %s from %s: %s",
2545                        oldrefname, newrefname, strerror(errno));
2546        if (!logmoved && log &&
2547            rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldrefname)))
2548                error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
2549                        oldrefname, strerror(errno));
2550
2551        return 1;
2552}
2553
2554static int close_ref(struct ref_lock *lock)
2555{
2556        if (close_lock_file(lock->lk))
2557                return -1;
2558        return 0;
2559}
2560
2561static int commit_ref(struct ref_lock *lock)
2562{
2563        if (commit_lock_file(lock->lk))
2564                return -1;
2565        return 0;
2566}
2567
2568/*
2569 * Create a reflog for a ref.  If force_create = 0, the reflog will
2570 * only be created for certain refs (those for which
2571 * should_autocreate_reflog returns non-zero.  Otherwise, create it
2572 * regardless of the ref name.  Fill in *err and return -1 on failure.
2573 */
2574static int log_ref_setup(const char *refname, struct strbuf *logfile, struct strbuf *err, int force_create)
2575{
2576        int logfd, oflags = O_APPEND | O_WRONLY;
2577
2578        strbuf_git_path(logfile, "logs/%s", refname);
2579        if (force_create || should_autocreate_reflog(refname)) {
2580                if (safe_create_leading_directories(logfile->buf) < 0) {
2581                        strbuf_addf(err, "unable to create directory for %s: "
2582                                    "%s", logfile->buf, strerror(errno));
2583                        return -1;
2584                }
2585                oflags |= O_CREAT;
2586        }
2587
2588        logfd = open(logfile->buf, oflags, 0666);
2589        if (logfd < 0) {
2590                if (!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))
2591                        return 0;
2592
2593                if (errno == EISDIR) {
2594                        if (remove_empty_directories(logfile)) {
2595                                strbuf_addf(err, "There are still logs under "
2596                                            "'%s'", logfile->buf);
2597                                return -1;
2598                        }
2599                        logfd = open(logfile->buf, oflags, 0666);
2600                }
2601
2602                if (logfd < 0) {
2603                        strbuf_addf(err, "unable to append to %s: %s",
2604                                    logfile->buf, strerror(errno));
2605                        return -1;
2606                }
2607        }
2608
2609        adjust_shared_perm(logfile->buf);
2610        close(logfd);
2611        return 0;
2612}
2613
2614
2615int safe_create_reflog(const char *refname, int force_create, struct strbuf *err)
2616{
2617        int ret;
2618        struct strbuf sb = STRBUF_INIT;
2619
2620        ret = log_ref_setup(refname, &sb, err, force_create);
2621        strbuf_release(&sb);
2622        return ret;
2623}
2624
2625static int log_ref_write_fd(int fd, const unsigned char *old_sha1,
2626                            const unsigned char *new_sha1,
2627                            const char *committer, const char *msg)
2628{
2629        int msglen, written;
2630        unsigned maxlen, len;
2631        char *logrec;
2632
2633        msglen = msg ? strlen(msg) : 0;
2634        maxlen = strlen(committer) + msglen + 100;
2635        logrec = xmalloc(maxlen);
2636        len = xsnprintf(logrec, maxlen, "%s %s %s\n",
2637                        sha1_to_hex(old_sha1),
2638                        sha1_to_hex(new_sha1),
2639                        committer);
2640        if (msglen)
2641                len += copy_reflog_msg(logrec + len - 1, msg) - 1;
2642
2643        written = len <= maxlen ? write_in_full(fd, logrec, len) : -1;
2644        free(logrec);
2645        if (written != len)
2646                return -1;
2647
2648        return 0;
2649}
2650
2651static int log_ref_write_1(const char *refname, const unsigned char *old_sha1,
2652                           const unsigned char *new_sha1, const char *msg,
2653                           struct strbuf *logfile, int flags,
2654                           struct strbuf *err)
2655{
2656        int logfd, result, oflags = O_APPEND | O_WRONLY;
2657
2658        if (log_all_ref_updates < 0)
2659                log_all_ref_updates = !is_bare_repository();
2660
2661        result = log_ref_setup(refname, logfile, err, flags & REF_FORCE_CREATE_REFLOG);
2662
2663        if (result)
2664                return result;
2665
2666        logfd = open(logfile->buf, oflags);
2667        if (logfd < 0)
2668                return 0;
2669        result = log_ref_write_fd(logfd, old_sha1, new_sha1,
2670                                  git_committer_info(0), msg);
2671        if (result) {
2672                strbuf_addf(err, "unable to append to %s: %s", logfile->buf,
2673                            strerror(errno));
2674                close(logfd);
2675                return -1;
2676        }
2677        if (close(logfd)) {
2678                strbuf_addf(err, "unable to append to %s: %s", logfile->buf,
2679                            strerror(errno));
2680                return -1;
2681        }
2682        return 0;
2683}
2684
2685static int log_ref_write(const char *refname, const unsigned char *old_sha1,
2686                         const unsigned char *new_sha1, const char *msg,
2687                         int flags, struct strbuf *err)
2688{
2689        return files_log_ref_write(refname, old_sha1, new_sha1, msg, flags,
2690                                   err);
2691}
2692
2693int files_log_ref_write(const char *refname, const unsigned char *old_sha1,
2694                        const unsigned char *new_sha1, const char *msg,
2695                        int flags, struct strbuf *err)
2696{
2697        struct strbuf sb = STRBUF_INIT;
2698        int ret = log_ref_write_1(refname, old_sha1, new_sha1, msg, &sb, flags,
2699                                  err);
2700        strbuf_release(&sb);
2701        return ret;
2702}
2703
2704/*
2705 * Write sha1 into the open lockfile, then close the lockfile. On
2706 * errors, rollback the lockfile, fill in *err and
2707 * return -1.
2708 */
2709static int write_ref_to_lockfile(struct ref_lock *lock,
2710                                 const unsigned char *sha1, struct strbuf *err)
2711{
2712        static char term = '\n';
2713        struct object *o;
2714        int fd;
2715
2716        o = parse_object(sha1);
2717        if (!o) {
2718                strbuf_addf(err,
2719                            "Trying to write ref %s with nonexistent object %s",
2720                            lock->ref_name, sha1_to_hex(sha1));
2721                unlock_ref(lock);
2722                return -1;
2723        }
2724        if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
2725                strbuf_addf(err,
2726                            "Trying to write non-commit object %s to branch %s",
2727                            sha1_to_hex(sha1), lock->ref_name);
2728                unlock_ref(lock);
2729                return -1;
2730        }
2731        fd = get_lock_file_fd(lock->lk);
2732        if (write_in_full(fd, sha1_to_hex(sha1), 40) != 40 ||
2733            write_in_full(fd, &term, 1) != 1 ||
2734            close_ref(lock) < 0) {
2735                strbuf_addf(err,
2736                            "Couldn't write %s", get_lock_file_path(lock->lk));
2737                unlock_ref(lock);
2738                return -1;
2739        }
2740        return 0;
2741}
2742
2743/*
2744 * Commit a change to a loose reference that has already been written
2745 * to the loose reference lockfile. Also update the reflogs if
2746 * necessary, using the specified lockmsg (which can be NULL).
2747 */
2748static int commit_ref_update(struct ref_lock *lock,
2749                             const unsigned char *sha1, const char *logmsg,
2750                             int flags, struct strbuf *err)
2751{
2752        clear_loose_ref_cache(&ref_cache);
2753        if (log_ref_write(lock->ref_name, lock->old_oid.hash, sha1, logmsg, flags, err) < 0 ||
2754            (strcmp(lock->ref_name, lock->orig_ref_name) &&
2755             log_ref_write(lock->orig_ref_name, lock->old_oid.hash, sha1, logmsg, flags, err) < 0)) {
2756                char *old_msg = strbuf_detach(err, NULL);
2757                strbuf_addf(err, "Cannot update the ref '%s': %s",
2758                            lock->ref_name, old_msg);
2759                free(old_msg);
2760                unlock_ref(lock);
2761                return -1;
2762        }
2763        if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
2764                /*
2765                 * Special hack: If a branch is updated directly and HEAD
2766                 * points to it (may happen on the remote side of a push
2767                 * for example) then logically the HEAD reflog should be
2768                 * updated too.
2769                 * A generic solution implies reverse symref information,
2770                 * but finding all symrefs pointing to the given branch
2771                 * would be rather costly for this rare event (the direct
2772                 * update of a branch) to be worth it.  So let's cheat and
2773                 * check with HEAD only which should cover 99% of all usage
2774                 * scenarios (even 100% of the default ones).
2775                 */
2776                unsigned char head_sha1[20];
2777                int head_flag;
2778                const char *head_ref;
2779                head_ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
2780                                              head_sha1, &head_flag);
2781                if (head_ref && (head_flag & REF_ISSYMREF) &&
2782                    !strcmp(head_ref, lock->ref_name)) {
2783                        struct strbuf log_err = STRBUF_INIT;
2784                        if (log_ref_write("HEAD", lock->old_oid.hash, sha1,
2785                                          logmsg, 0, &log_err)) {
2786                                error("%s", log_err.buf);
2787                                strbuf_release(&log_err);
2788                        }
2789                }
2790        }
2791        if (commit_ref(lock)) {
2792                error("Couldn't set %s", lock->ref_name);
2793                unlock_ref(lock);
2794                return -1;
2795        }
2796
2797        unlock_ref(lock);
2798        return 0;
2799}
2800
2801static int create_ref_symlink(struct ref_lock *lock, const char *target)
2802{
2803        int ret = -1;
2804#ifndef NO_SYMLINK_HEAD
2805        char *ref_path = get_locked_file_path(lock->lk);
2806        unlink(ref_path);
2807        ret = symlink(target, ref_path);
2808        free(ref_path);
2809
2810        if (ret)
2811                fprintf(stderr, "no symlink - falling back to symbolic ref\n");
2812#endif
2813        return ret;
2814}
2815
2816static void update_symref_reflog(struct ref_lock *lock, const char *refname,
2817                                 const char *target, const char *logmsg)
2818{
2819        struct strbuf err = STRBUF_INIT;
2820        unsigned char new_sha1[20];
2821        if (logmsg && !read_ref(target, new_sha1) &&
2822            log_ref_write(refname, lock->old_oid.hash, new_sha1, logmsg, 0, &err)) {
2823                error("%s", err.buf);
2824                strbuf_release(&err);
2825        }
2826}
2827
2828static int create_symref_locked(struct ref_lock *lock, const char *refname,
2829                                const char *target, const char *logmsg)
2830{
2831        if (prefer_symlink_refs && !create_ref_symlink(lock, target)) {
2832                update_symref_reflog(lock, refname, target, logmsg);
2833                return 0;
2834        }
2835
2836        if (!fdopen_lock_file(lock->lk, "w"))
2837                return error("unable to fdopen %s: %s",
2838                             lock->lk->tempfile.filename.buf, strerror(errno));
2839
2840        update_symref_reflog(lock, refname, target, logmsg);
2841
2842        /* no error check; commit_ref will check ferror */
2843        fprintf(lock->lk->tempfile.fp, "ref: %s\n", target);
2844        if (commit_ref(lock) < 0)
2845                return error("unable to write symref for %s: %s", refname,
2846                             strerror(errno));
2847        return 0;
2848}
2849
2850int create_symref(const char *refname, const char *target, const char *logmsg)
2851{
2852        struct strbuf err = STRBUF_INIT;
2853        struct ref_lock *lock;
2854        int ret;
2855
2856        lock = lock_ref_sha1_basic(refname, NULL, NULL, NULL, REF_NODEREF, NULL,
2857                                   &err);
2858        if (!lock) {
2859                error("%s", err.buf);
2860                strbuf_release(&err);
2861                return -1;
2862        }
2863
2864        ret = create_symref_locked(lock, refname, target, logmsg);
2865        unlock_ref(lock);
2866        return ret;
2867}
2868
2869int reflog_exists(const char *refname)
2870{
2871        struct stat st;
2872
2873        return !lstat(git_path("logs/%s", refname), &st) &&
2874                S_ISREG(st.st_mode);
2875}
2876
2877int delete_reflog(const char *refname)
2878{
2879        return remove_path(git_path("logs/%s", refname));
2880}
2881
2882static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data)
2883{
2884        unsigned char osha1[20], nsha1[20];
2885        char *email_end, *message;
2886        unsigned long timestamp;
2887        int tz;
2888
2889        /* old SP new SP name <email> SP time TAB msg LF */
2890        if (sb->len < 83 || sb->buf[sb->len - 1] != '\n' ||
2891            get_sha1_hex(sb->buf, osha1) || sb->buf[40] != ' ' ||
2892            get_sha1_hex(sb->buf + 41, nsha1) || sb->buf[81] != ' ' ||
2893            !(email_end = strchr(sb->buf + 82, '>')) ||
2894            email_end[1] != ' ' ||
2895            !(timestamp = strtoul(email_end + 2, &message, 10)) ||
2896            !message || message[0] != ' ' ||
2897            (message[1] != '+' && message[1] != '-') ||
2898            !isdigit(message[2]) || !isdigit(message[3]) ||
2899            !isdigit(message[4]) || !isdigit(message[5]))
2900                return 0; /* corrupt? */
2901        email_end[1] = '\0';
2902        tz = strtol(message + 1, NULL, 10);
2903        if (message[6] != '\t')
2904                message += 6;
2905        else
2906                message += 7;
2907        return fn(osha1, nsha1, sb->buf + 82, timestamp, tz, message, cb_data);
2908}
2909
2910static char *find_beginning_of_line(char *bob, char *scan)
2911{
2912        while (bob < scan && *(--scan) != '\n')
2913                ; /* keep scanning backwards */
2914        /*
2915         * Return either beginning of the buffer, or LF at the end of
2916         * the previous line.
2917         */
2918        return scan;
2919}
2920
2921int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn, void *cb_data)
2922{
2923        struct strbuf sb = STRBUF_INIT;
2924        FILE *logfp;
2925        long pos;
2926        int ret = 0, at_tail = 1;
2927
2928        logfp = fopen(git_path("logs/%s", refname), "r");
2929        if (!logfp)
2930                return -1;
2931
2932        /* Jump to the end */
2933        if (fseek(logfp, 0, SEEK_END) < 0)
2934                return error("cannot seek back reflog for %s: %s",
2935                             refname, strerror(errno));
2936        pos = ftell(logfp);
2937        while (!ret && 0 < pos) {
2938                int cnt;
2939                size_t nread;
2940                char buf[BUFSIZ];
2941                char *endp, *scanp;
2942
2943                /* Fill next block from the end */
2944                cnt = (sizeof(buf) < pos) ? sizeof(buf) : pos;
2945                if (fseek(logfp, pos - cnt, SEEK_SET))
2946                        return error("cannot seek back reflog for %s: %s",
2947                                     refname, strerror(errno));
2948                nread = fread(buf, cnt, 1, logfp);
2949                if (nread != 1)
2950                        return error("cannot read %d bytes from reflog for %s: %s",
2951                                     cnt, refname, strerror(errno));
2952                pos -= cnt;
2953
2954                scanp = endp = buf + cnt;
2955                if (at_tail && scanp[-1] == '\n')
2956                        /* Looking at the final LF at the end of the file */
2957                        scanp--;
2958                at_tail = 0;
2959
2960                while (buf < scanp) {
2961                        /*
2962                         * terminating LF of the previous line, or the beginning
2963                         * of the buffer.
2964                         */
2965                        char *bp;
2966
2967                        bp = find_beginning_of_line(buf, scanp);
2968
2969                        if (*bp == '\n') {
2970                                /*
2971                                 * The newline is the end of the previous line,
2972                                 * so we know we have complete line starting
2973                                 * at (bp + 1). Prefix it onto any prior data
2974                                 * we collected for the line and process it.
2975                                 */
2976                                strbuf_splice(&sb, 0, 0, bp + 1, endp - (bp + 1));
2977                                scanp = bp;
2978                                endp = bp + 1;
2979                                ret = show_one_reflog_ent(&sb, fn, cb_data);
2980                                strbuf_reset(&sb);
2981                                if (ret)
2982                                        break;
2983                        } else if (!pos) {
2984                                /*
2985                                 * We are at the start of the buffer, and the
2986                                 * start of the file; there is no previous
2987                                 * line, and we have everything for this one.
2988                                 * Process it, and we can end the loop.
2989                                 */
2990                                strbuf_splice(&sb, 0, 0, buf, endp - buf);
2991                                ret = show_one_reflog_ent(&sb, fn, cb_data);
2992                                strbuf_reset(&sb);
2993                                break;
2994                        }
2995
2996                        if (bp == buf) {
2997                                /*
2998                                 * We are at the start of the buffer, and there
2999                                 * is more file to read backwards. Which means
3000                                 * we are in the middle of a line. Note that we
3001                                 * may get here even if *bp was a newline; that
3002                                 * just means we are at the exact end of the
3003                                 * previous line, rather than some spot in the
3004                                 * middle.
3005                                 *
3006                                 * Save away what we have to be combined with
3007                                 * the data from the next read.
3008                                 */
3009                                strbuf_splice(&sb, 0, 0, buf, endp - buf);
3010                                break;
3011                        }
3012                }
3013
3014        }
3015        if (!ret && sb.len)
3016                die("BUG: reverse reflog parser had leftover data");
3017
3018        fclose(logfp);
3019        strbuf_release(&sb);
3020        return ret;
3021}
3022
3023int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data)
3024{
3025        FILE *logfp;
3026        struct strbuf sb = STRBUF_INIT;
3027        int ret = 0;
3028
3029        logfp = fopen(git_path("logs/%s", refname), "r");
3030        if (!logfp)
3031                return -1;
3032
3033        while (!ret && !strbuf_getwholeline(&sb, logfp, '\n'))
3034                ret = show_one_reflog_ent(&sb, fn, cb_data);
3035        fclose(logfp);
3036        strbuf_release(&sb);
3037        return ret;
3038}
3039/*
3040 * Call fn for each reflog in the namespace indicated by name.  name
3041 * must be empty or end with '/'.  Name will be used as a scratch
3042 * space, but its contents will be restored before return.
3043 */
3044static int do_for_each_reflog(struct strbuf *name, each_ref_fn fn, void *cb_data)
3045{
3046        DIR *d = opendir(git_path("logs/%s", name->buf));
3047        int retval = 0;
3048        struct dirent *de;
3049        int oldlen = name->len;
3050
3051        if (!d)
3052                return name->len ? errno : 0;
3053
3054        while ((de = readdir(d)) != NULL) {
3055                struct stat st;
3056
3057                if (de->d_name[0] == '.')
3058                        continue;
3059                if (ends_with(de->d_name, ".lock"))
3060                        continue;
3061                strbuf_addstr(name, de->d_name);
3062                if (stat(git_path("logs/%s", name->buf), &st) < 0) {
3063                        ; /* silently ignore */
3064                } else {
3065                        if (S_ISDIR(st.st_mode)) {
3066                                strbuf_addch(name, '/');
3067                                retval = do_for_each_reflog(name, fn, cb_data);
3068                        } else {
3069                                struct object_id oid;
3070
3071                                if (read_ref_full(name->buf, 0, oid.hash, NULL))
3072                                        retval = error("bad ref for %s", name->buf);
3073                                else
3074                                        retval = fn(name->buf, &oid, 0, cb_data);
3075                        }
3076                        if (retval)
3077                                break;
3078                }
3079                strbuf_setlen(name, oldlen);
3080        }
3081        closedir(d);
3082        return retval;
3083}
3084
3085int for_each_reflog(each_ref_fn fn, void *cb_data)
3086{
3087        int retval;
3088        struct strbuf name;
3089        strbuf_init(&name, PATH_MAX);
3090        retval = do_for_each_reflog(&name, fn, cb_data);
3091        strbuf_release(&name);
3092        return retval;
3093}
3094
3095static int ref_update_reject_duplicates(struct string_list *refnames,
3096                                        struct strbuf *err)
3097{
3098        int i, n = refnames->nr;
3099
3100        assert(err);
3101
3102        for (i = 1; i < n; i++)
3103                if (!strcmp(refnames->items[i - 1].string, refnames->items[i].string)) {
3104                        strbuf_addf(err,
3105                                    "Multiple updates for ref '%s' not allowed.",
3106                                    refnames->items[i].string);
3107                        return 1;
3108                }
3109        return 0;
3110}
3111
3112int ref_transaction_commit(struct ref_transaction *transaction,
3113                           struct strbuf *err)
3114{
3115        int ret = 0, i;
3116        int n = transaction->nr;
3117        struct ref_update **updates = transaction->updates;
3118        struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;
3119        struct string_list_item *ref_to_delete;
3120        struct string_list affected_refnames = STRING_LIST_INIT_NODUP;
3121
3122        assert(err);
3123
3124        if (transaction->state != REF_TRANSACTION_OPEN)
3125                die("BUG: commit called for transaction that is not open");
3126
3127        if (!n) {
3128                transaction->state = REF_TRANSACTION_CLOSED;
3129                return 0;
3130        }
3131
3132        /* Fail if a refname appears more than once in the transaction: */
3133        for (i = 0; i < n; i++)
3134                string_list_append(&affected_refnames, updates[i]->refname);
3135        string_list_sort(&affected_refnames);
3136        if (ref_update_reject_duplicates(&affected_refnames, err)) {
3137                ret = TRANSACTION_GENERIC_ERROR;
3138                goto cleanup;
3139        }
3140
3141        /*
3142         * Acquire all locks, verify old values if provided, check
3143         * that new values are valid, and write new values to the
3144         * lockfiles, ready to be activated. Only keep one lockfile
3145         * open at a time to avoid running out of file descriptors.
3146         */
3147        for (i = 0; i < n; i++) {
3148                struct ref_update *update = updates[i];
3149
3150                if ((update->flags & REF_HAVE_NEW) &&
3151                    is_null_sha1(update->new_sha1))
3152                        update->flags |= REF_DELETING;
3153                update->lock = lock_ref_sha1_basic(
3154                                update->refname,
3155                                ((update->flags & REF_HAVE_OLD) ?
3156                                 update->old_sha1 : NULL),
3157                                &affected_refnames, NULL,
3158                                update->flags,
3159                                &update->type,
3160                                err);
3161                if (!update->lock) {
3162                        char *reason;
3163
3164                        ret = (errno == ENOTDIR)
3165                                ? TRANSACTION_NAME_CONFLICT
3166                                : TRANSACTION_GENERIC_ERROR;
3167                        reason = strbuf_detach(err, NULL);
3168                        strbuf_addf(err, "cannot lock ref '%s': %s",
3169                                    update->refname, reason);
3170                        free(reason);
3171                        goto cleanup;
3172                }
3173                if ((update->flags & REF_HAVE_NEW) &&
3174                    !(update->flags & REF_DELETING)) {
3175                        int overwriting_symref = ((update->type & REF_ISSYMREF) &&
3176                                                  (update->flags & REF_NODEREF));
3177
3178                        if (!overwriting_symref &&
3179                            !hashcmp(update->lock->old_oid.hash, update->new_sha1)) {
3180                                /*
3181                                 * The reference already has the desired
3182                                 * value, so we don't need to write it.
3183                                 */
3184                        } else if (write_ref_to_lockfile(update->lock,
3185                                                         update->new_sha1,
3186                                                         err)) {
3187                                char *write_err = strbuf_detach(err, NULL);
3188
3189                                /*
3190                                 * The lock was freed upon failure of
3191                                 * write_ref_to_lockfile():
3192                                 */
3193                                update->lock = NULL;
3194                                strbuf_addf(err,
3195                                            "cannot update the ref '%s': %s",
3196                                            update->refname, write_err);
3197                                free(write_err);
3198                                ret = TRANSACTION_GENERIC_ERROR;
3199                                goto cleanup;
3200                        } else {
3201                                update->flags |= REF_NEEDS_COMMIT;
3202                        }
3203                }
3204                if (!(update->flags & REF_NEEDS_COMMIT)) {
3205                        /*
3206                         * We didn't have to write anything to the lockfile.
3207                         * Close it to free up the file descriptor:
3208                         */
3209                        if (close_ref(update->lock)) {
3210                                strbuf_addf(err, "Couldn't close %s.lock",
3211                                            update->refname);
3212                                goto cleanup;
3213                        }
3214                }
3215        }
3216
3217        /* Perform updates first so live commits remain referenced */
3218        for (i = 0; i < n; i++) {
3219                struct ref_update *update = updates[i];
3220
3221                if (update->flags & REF_NEEDS_COMMIT) {
3222                        if (commit_ref_update(update->lock,
3223                                              update->new_sha1, update->msg,
3224                                              update->flags, err)) {
3225                                /* freed by commit_ref_update(): */
3226                                update->lock = NULL;
3227                                ret = TRANSACTION_GENERIC_ERROR;
3228                                goto cleanup;
3229                        } else {
3230                                /* freed by commit_ref_update(): */
3231                                update->lock = NULL;
3232                        }
3233                }
3234        }
3235
3236        /* Perform deletes now that updates are safely completed */
3237        for (i = 0; i < n; i++) {
3238                struct ref_update *update = updates[i];
3239
3240                if (update->flags & REF_DELETING) {
3241                        if (delete_ref_loose(update->lock, update->type, err)) {
3242                                ret = TRANSACTION_GENERIC_ERROR;
3243                                goto cleanup;
3244                        }
3245
3246                        if (!(update->flags & REF_ISPRUNING))
3247                                string_list_append(&refs_to_delete,
3248                                                   update->lock->ref_name);
3249                }
3250        }
3251
3252        if (repack_without_refs(&refs_to_delete, err)) {
3253                ret = TRANSACTION_GENERIC_ERROR;
3254                goto cleanup;
3255        }
3256        for_each_string_list_item(ref_to_delete, &refs_to_delete)
3257                unlink_or_warn(git_path("logs/%s", ref_to_delete->string));
3258        clear_loose_ref_cache(&ref_cache);
3259
3260cleanup:
3261        transaction->state = REF_TRANSACTION_CLOSED;
3262
3263        for (i = 0; i < n; i++)
3264                if (updates[i]->lock)
3265                        unlock_ref(updates[i]->lock);
3266        string_list_clear(&refs_to_delete, 0);
3267        string_list_clear(&affected_refnames, 0);
3268        return ret;
3269}
3270
3271static int ref_present(const char *refname,
3272                       const struct object_id *oid, int flags, void *cb_data)
3273{
3274        struct string_list *affected_refnames = cb_data;
3275
3276        return string_list_has_string(affected_refnames, refname);
3277}
3278
3279int initial_ref_transaction_commit(struct ref_transaction *transaction,
3280                                   struct strbuf *err)
3281{
3282        int ret = 0, i;
3283        int n = transaction->nr;
3284        struct ref_update **updates = transaction->updates;
3285        struct string_list affected_refnames = STRING_LIST_INIT_NODUP;
3286
3287        assert(err);
3288
3289        if (transaction->state != REF_TRANSACTION_OPEN)
3290                die("BUG: commit called for transaction that is not open");
3291
3292        /* Fail if a refname appears more than once in the transaction: */
3293        for (i = 0; i < n; i++)
3294                string_list_append(&affected_refnames, updates[i]->refname);
3295        string_list_sort(&affected_refnames);
3296        if (ref_update_reject_duplicates(&affected_refnames, err)) {
3297                ret = TRANSACTION_GENERIC_ERROR;
3298                goto cleanup;
3299        }
3300
3301        /*
3302         * It's really undefined to call this function in an active
3303         * repository or when there are existing references: we are
3304         * only locking and changing packed-refs, so (1) any
3305         * simultaneous processes might try to change a reference at
3306         * the same time we do, and (2) any existing loose versions of
3307         * the references that we are setting would have precedence
3308         * over our values. But some remote helpers create the remote
3309         * "HEAD" and "master" branches before calling this function,
3310         * so here we really only check that none of the references
3311         * that we are creating already exists.
3312         */
3313        if (for_each_rawref(ref_present, &affected_refnames))
3314                die("BUG: initial ref transaction called with existing refs");
3315
3316        for (i = 0; i < n; i++) {
3317                struct ref_update *update = updates[i];
3318
3319                if ((update->flags & REF_HAVE_OLD) &&
3320                    !is_null_sha1(update->old_sha1))
3321                        die("BUG: initial ref transaction with old_sha1 set");
3322                if (verify_refname_available(update->refname,
3323                                             &affected_refnames, NULL,
3324                                             err)) {
3325                        ret = TRANSACTION_NAME_CONFLICT;
3326                        goto cleanup;
3327                }
3328        }
3329
3330        if (lock_packed_refs(0)) {
3331                strbuf_addf(err, "unable to lock packed-refs file: %s",
3332                            strerror(errno));
3333                ret = TRANSACTION_GENERIC_ERROR;
3334                goto cleanup;
3335        }
3336
3337        for (i = 0; i < n; i++) {
3338                struct ref_update *update = updates[i];
3339
3340                if ((update->flags & REF_HAVE_NEW) &&
3341                    !is_null_sha1(update->new_sha1))
3342                        add_packed_ref(update->refname, update->new_sha1);
3343        }
3344
3345        if (commit_packed_refs()) {
3346                strbuf_addf(err, "unable to commit packed-refs file: %s",
3347                            strerror(errno));
3348                ret = TRANSACTION_GENERIC_ERROR;
3349                goto cleanup;
3350        }
3351
3352cleanup:
3353        transaction->state = REF_TRANSACTION_CLOSED;
3354        string_list_clear(&affected_refnames, 0);
3355        return ret;
3356}
3357
3358struct expire_reflog_cb {
3359        unsigned int flags;
3360        reflog_expiry_should_prune_fn *should_prune_fn;
3361        void *policy_cb;
3362        FILE *newlog;
3363        unsigned char last_kept_sha1[20];
3364};
3365
3366static int expire_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
3367                             const char *email, unsigned long timestamp, int tz,
3368                             const char *message, void *cb_data)
3369{
3370        struct expire_reflog_cb *cb = cb_data;
3371        struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;
3372
3373        if (cb->flags & EXPIRE_REFLOGS_REWRITE)
3374                osha1 = cb->last_kept_sha1;
3375
3376        if ((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,
3377                                   message, policy_cb)) {
3378                if (!cb->newlog)
3379                        printf("would prune %s", message);
3380                else if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
3381                        printf("prune %s", message);
3382        } else {
3383                if (cb->newlog) {
3384                        fprintf(cb->newlog, "%s %s %s %lu %+05d\t%s",
3385                                sha1_to_hex(osha1), sha1_to_hex(nsha1),
3386                                email, timestamp, tz, message);
3387                        hashcpy(cb->last_kept_sha1, nsha1);
3388                }
3389                if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
3390                        printf("keep %s", message);
3391        }
3392        return 0;
3393}
3394
3395int reflog_expire(const char *refname, const unsigned char *sha1,
3396                 unsigned int flags,
3397                 reflog_expiry_prepare_fn prepare_fn,
3398                 reflog_expiry_should_prune_fn should_prune_fn,
3399                 reflog_expiry_cleanup_fn cleanup_fn,
3400                 void *policy_cb_data)
3401{
3402        static struct lock_file reflog_lock;
3403        struct expire_reflog_cb cb;
3404        struct ref_lock *lock;
3405        char *log_file;
3406        int status = 0;
3407        int type;
3408        struct strbuf err = STRBUF_INIT;
3409
3410        memset(&cb, 0, sizeof(cb));
3411        cb.flags = flags;
3412        cb.policy_cb = policy_cb_data;
3413        cb.should_prune_fn = should_prune_fn;
3414
3415        /*
3416         * The reflog file is locked by holding the lock on the
3417         * reference itself, plus we might need to update the
3418         * reference if --updateref was specified:
3419         */
3420        lock = lock_ref_sha1_basic(refname, sha1, NULL, NULL, 0, &type, &err);
3421        if (!lock) {
3422                error("cannot lock ref '%s': %s", refname, err.buf);
3423                strbuf_release(&err);
3424                return -1;
3425        }
3426        if (!reflog_exists(refname)) {
3427                unlock_ref(lock);
3428                return 0;
3429        }
3430
3431        log_file = git_pathdup("logs/%s", refname);
3432        if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
3433                /*
3434                 * Even though holding $GIT_DIR/logs/$reflog.lock has
3435                 * no locking implications, we use the lock_file
3436                 * machinery here anyway because it does a lot of the
3437                 * work we need, including cleaning up if the program
3438                 * exits unexpectedly.
3439                 */
3440                if (hold_lock_file_for_update(&reflog_lock, log_file, 0) < 0) {
3441                        struct strbuf err = STRBUF_INIT;
3442                        unable_to_lock_message(log_file, errno, &err);
3443                        error("%s", err.buf);
3444                        strbuf_release(&err);
3445                        goto failure;
3446                }
3447                cb.newlog = fdopen_lock_file(&reflog_lock, "w");
3448                if (!cb.newlog) {
3449                        error("cannot fdopen %s (%s)",
3450                              get_lock_file_path(&reflog_lock), strerror(errno));
3451                        goto failure;
3452                }
3453        }
3454
3455        (*prepare_fn)(refname, sha1, cb.policy_cb);
3456        for_each_reflog_ent(refname, expire_reflog_ent, &cb);
3457        (*cleanup_fn)(cb.policy_cb);
3458
3459        if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {
3460                /*
3461                 * It doesn't make sense to adjust a reference pointed
3462                 * to by a symbolic ref based on expiring entries in
3463                 * the symbolic reference's reflog. Nor can we update
3464                 * a reference if there are no remaining reflog
3465                 * entries.
3466                 */
3467                int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&
3468                        !(type & REF_ISSYMREF) &&
3469                        !is_null_sha1(cb.last_kept_sha1);
3470
3471                if (close_lock_file(&reflog_lock)) {
3472                        status |= error("couldn't write %s: %s", log_file,
3473                                        strerror(errno));
3474                } else if (update &&
3475                           (write_in_full(get_lock_file_fd(lock->lk),
3476                                sha1_to_hex(cb.last_kept_sha1), 40) != 40 ||
3477                            write_str_in_full(get_lock_file_fd(lock->lk), "\n") != 1 ||
3478                            close_ref(lock) < 0)) {
3479                        status |= error("couldn't write %s",
3480                                        get_lock_file_path(lock->lk));
3481                        rollback_lock_file(&reflog_lock);
3482                } else if (commit_lock_file(&reflog_lock)) {
3483                        status |= error("unable to write reflog '%s' (%s)",
3484                                        log_file, strerror(errno));
3485                } else if (update && commit_ref(lock)) {
3486                        status |= error("couldn't set %s", lock->ref_name);
3487                }
3488        }
3489        free(log_file);
3490        unlock_ref(lock);
3491        return status;
3492
3493 failure:
3494        rollback_lock_file(&reflog_lock);
3495        free(log_file);
3496        unlock_ref(lock);
3497        return -1;
3498}