refs.con commit names_conflict(): simplify implementation (5a4d494)
   1#include "cache.h"
   2#include "refs.h"
   3#include "object.h"
   4#include "tag.h"
   5#include "dir.h"
   6
   7/*
   8 * Make sure "ref" is something reasonable to have under ".git/refs/";
   9 * We do not like it if:
  10 *
  11 * - any path component of it begins with ".", or
  12 * - it has double dots "..", or
  13 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
  14 * - it ends with a "/".
  15 * - it ends with ".lock"
  16 * - it contains a "\" (backslash)
  17 */
  18
  19/* Return true iff ch is not allowed in reference names. */
  20static inline int bad_ref_char(int ch)
  21{
  22        if (((unsigned) ch) <= ' ' || ch == 0x7f ||
  23            ch == '~' || ch == '^' || ch == ':' || ch == '\\')
  24                return 1;
  25        /* 2.13 Pattern Matching Notation */
  26        if (ch == '*' || ch == '?' || ch == '[') /* Unsupported */
  27                return 1;
  28        return 0;
  29}
  30
  31/*
  32 * Try to read one refname component from the front of refname.  Return
  33 * the length of the component found, or -1 if the component is not
  34 * legal.
  35 */
  36static int check_refname_component(const char *refname, int flags)
  37{
  38        const char *cp;
  39        char last = '\0';
  40
  41        for (cp = refname; ; cp++) {
  42                char ch = *cp;
  43                if (ch == '\0' || ch == '/')
  44                        break;
  45                if (bad_ref_char(ch))
  46                        return -1; /* Illegal character in refname. */
  47                if (last == '.' && ch == '.')
  48                        return -1; /* Refname contains "..". */
  49                if (last == '@' && ch == '{')
  50                        return -1; /* Refname contains "@{". */
  51                last = ch;
  52        }
  53        if (cp == refname)
  54                return -1; /* Component has zero length. */
  55        if (refname[0] == '.') {
  56                if (!(flags & REFNAME_DOT_COMPONENT))
  57                        return -1; /* Component starts with '.'. */
  58                /*
  59                 * Even if leading dots are allowed, don't allow "."
  60                 * as a component (".." is prevented by a rule above).
  61                 */
  62                if (refname[1] == '\0')
  63                        return -1; /* Component equals ".". */
  64        }
  65        if (cp - refname >= 5 && !memcmp(cp - 5, ".lock", 5))
  66                return -1; /* Refname ends with ".lock". */
  67        return cp - refname;
  68}
  69
  70int check_refname_format(const char *refname, int flags)
  71{
  72        int component_len, component_count = 0;
  73
  74        while (1) {
  75                /* We are at the start of a path component. */
  76                component_len = check_refname_component(refname, flags);
  77                if (component_len < 0) {
  78                        if ((flags & REFNAME_REFSPEC_PATTERN) &&
  79                                        refname[0] == '*' &&
  80                                        (refname[1] == '\0' || refname[1] == '/')) {
  81                                /* Accept one wildcard as a full refname component. */
  82                                flags &= ~REFNAME_REFSPEC_PATTERN;
  83                                component_len = 1;
  84                        } else {
  85                                return -1;
  86                        }
  87                }
  88                component_count++;
  89                if (refname[component_len] == '\0')
  90                        break;
  91                /* Skip to next component. */
  92                refname += component_len + 1;
  93        }
  94
  95        if (refname[component_len - 1] == '.')
  96                return -1; /* Refname ends with '.'. */
  97        if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
  98                return -1; /* Refname has only one component. */
  99        return 0;
 100}
 101
 102struct ref_entry;
 103
 104struct ref_array {
 105        int nr, alloc;
 106
 107        /*
 108         * Entries with index 0 <= i < sorted are sorted by name.  New
 109         * entries are appended to the list unsorted, and are sorted
 110         * only when required; thus we avoid the need to sort the list
 111         * after the addition of every reference.
 112         */
 113        int sorted;
 114
 115        struct ref_entry **refs;
 116};
 117
 118/* ISSYMREF=0x01, ISPACKED=0x02 and ISBROKEN=0x04 are public interfaces */
 119#define REF_KNOWS_PEELED 0x10
 120
 121struct ref_entry {
 122        unsigned char flag; /* ISSYMREF? ISPACKED? */
 123        unsigned char sha1[20];
 124        unsigned char peeled[20];
 125        /* The full name of the reference (e.g., "refs/heads/master"): */
 126        char name[FLEX_ARRAY];
 127};
 128
 129static struct ref_entry *create_ref_entry(const char *refname,
 130                                          const unsigned char *sha1, int flag,
 131                                          int check_name)
 132{
 133        int len;
 134        struct ref_entry *ref;
 135
 136        if (check_name &&
 137            check_refname_format(refname, REFNAME_ALLOW_ONELEVEL|REFNAME_DOT_COMPONENT))
 138                die("Reference has invalid format: '%s'", refname);
 139        len = strlen(refname) + 1;
 140        ref = xmalloc(sizeof(struct ref_entry) + len);
 141        hashcpy(ref->sha1, sha1);
 142        hashclr(ref->peeled);
 143        memcpy(ref->name, refname, len);
 144        ref->flag = flag;
 145        return ref;
 146}
 147
 148/* Add a ref_entry to the end of the ref_array (unsorted). */
 149static void add_ref(struct ref_array *refs, struct ref_entry *ref)
 150{
 151        ALLOC_GROW(refs->refs, refs->nr + 1, refs->alloc);
 152        refs->refs[refs->nr++] = ref;
 153}
 154
 155static void clear_ref_array(struct ref_array *array)
 156{
 157        int i;
 158        for (i = 0; i < array->nr; i++)
 159                free(array->refs[i]);
 160        free(array->refs);
 161        array->sorted = array->nr = array->alloc = 0;
 162        array->refs = NULL;
 163}
 164
 165static int ref_entry_cmp(const void *a, const void *b)
 166{
 167        struct ref_entry *one = *(struct ref_entry **)a;
 168        struct ref_entry *two = *(struct ref_entry **)b;
 169        return strcmp(one->name, two->name);
 170}
 171
 172static void sort_ref_array(struct ref_array *array);
 173
 174static struct ref_entry *search_ref_array(struct ref_array *array, const char *refname)
 175{
 176        struct ref_entry *e, **r;
 177        int len;
 178
 179        if (refname == NULL)
 180                return NULL;
 181
 182        if (!array->nr)
 183                return NULL;
 184        sort_ref_array(array);
 185        len = strlen(refname) + 1;
 186        e = xmalloc(sizeof(struct ref_entry) + len);
 187        memcpy(e->name, refname, len);
 188
 189        r = bsearch(&e, array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
 190
 191        free(e);
 192
 193        if (r == NULL)
 194                return NULL;
 195
 196        return *r;
 197}
 198
 199/*
 200 * Emit a warning and return true iff ref1 and ref2 have the same name
 201 * and the same sha1.  Die if they have the same name but different
 202 * sha1s.
 203 */
 204static int is_dup_ref(const struct ref_entry *ref1, const struct ref_entry *ref2)
 205{
 206        if (!strcmp(ref1->name, ref2->name)) {
 207                /* Duplicate name; make sure that the SHA1s match: */
 208                if (hashcmp(ref1->sha1, ref2->sha1))
 209                        die("Duplicated ref, and SHA1s don't match: %s",
 210                            ref1->name);
 211                warning("Duplicated ref: %s", ref1->name);
 212                return 1;
 213        } else {
 214                return 0;
 215        }
 216}
 217
 218/*
 219 * Sort the entries in array (if they are not already sorted).
 220 */
 221static void sort_ref_array(struct ref_array *array)
 222{
 223        int i, j;
 224
 225        /*
 226         * This check also prevents passing a zero-length array to qsort(),
 227         * which is a problem on some platforms.
 228         */
 229        if (array->sorted == array->nr)
 230                return;
 231
 232        qsort(array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
 233
 234        /* Remove any duplicates from the ref_array */
 235        i = 0;
 236        for (j = 1; j < array->nr; j++) {
 237                if (is_dup_ref(array->refs[i], array->refs[j])) {
 238                        free(array->refs[j]);
 239                        continue;
 240                }
 241                array->refs[++i] = array->refs[j];
 242        }
 243        array->sorted = array->nr = i + 1;
 244}
 245
 246#define DO_FOR_EACH_INCLUDE_BROKEN 01
 247
 248static struct ref_entry *current_ref;
 249
 250static int do_one_ref(const char *base, each_ref_fn fn, int trim,
 251                      int flags, void *cb_data, struct ref_entry *entry)
 252{
 253        int retval;
 254        if (prefixcmp(entry->name, base))
 255                return 0;
 256
 257        if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) {
 258                if (entry->flag & REF_ISBROKEN)
 259                        return 0; /* ignore broken refs e.g. dangling symref */
 260                if (!has_sha1_file(entry->sha1)) {
 261                        error("%s does not point to a valid object!", entry->name);
 262                        return 0;
 263                }
 264        }
 265        current_ref = entry;
 266        retval = fn(entry->name + trim, entry->sha1, entry->flag, cb_data);
 267        current_ref = NULL;
 268        return retval;
 269}
 270
 271/*
 272 * Call fn for each reference in array that has index in the range
 273 * offset <= index < array->nr.  This function does not sort the
 274 * array; sorting should be done by the caller.
 275 */
 276static int do_for_each_ref_in_array(struct ref_array *array, int offset,
 277                                    const char *base,
 278                                    each_ref_fn fn, int trim, int flags, void *cb_data)
 279{
 280        int i;
 281        assert(array->sorted == array->nr);
 282        for (i = offset; i < array->nr; i++) {
 283                int retval = do_one_ref(base, fn, trim, flags, cb_data, array->refs[i]);
 284                if (retval)
 285                        return retval;
 286        }
 287        return 0;
 288}
 289
 290/*
 291 * Call fn for each reference in the union of array1 and array2, in
 292 * order by refname.  If an entry appears in both array1 and array2,
 293 * then only process the version that is in array2.  The input arrays
 294 * must already be sorted.
 295 */
 296static int do_for_each_ref_in_arrays(struct ref_array *array1,
 297                                     struct ref_array *array2,
 298                                     const char *base, each_ref_fn fn, int trim,
 299                                     int flags, void *cb_data)
 300{
 301        int retval;
 302        int i1 = 0, i2 = 0;
 303
 304        assert(array1->sorted == array1->nr);
 305        assert(array2->sorted == array2->nr);
 306        while (i1 < array1->nr && i2 < array2->nr) {
 307                struct ref_entry *e1 = array1->refs[i1];
 308                struct ref_entry *e2 = array2->refs[i2];
 309                int cmp = strcmp(e1->name, e2->name);
 310                if (cmp < 0) {
 311                        retval = do_one_ref(base, fn, trim, flags, cb_data, e1);
 312                        i1++;
 313                } else {
 314                        retval = do_one_ref(base, fn, trim, flags, cb_data, e2);
 315                        i2++;
 316                        if (cmp == 0) {
 317                                /*
 318                                 * There was a ref in array1 with the
 319                                 * same name; ignore it.
 320                                 */
 321                                i1++;
 322                        }
 323                }
 324                if (retval)
 325                        return retval;
 326        }
 327        if (i1 < array1->nr)
 328                return do_for_each_ref_in_array(array1, i1,
 329                                                base, fn, trim, flags, cb_data);
 330        if (i2 < array2->nr)
 331                return do_for_each_ref_in_array(array2, i2,
 332                                                base, fn, trim, flags, cb_data);
 333        return 0;
 334}
 335
 336/*
 337 * Return true iff refname1 and refname2 conflict with each other.
 338 * Two reference names conflict if one of them exactly matches the
 339 * leading components of the other; e.g., "foo/bar" conflicts with
 340 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or
 341 * "foo/barbados".
 342 */
 343static int names_conflict(const char *refname1, const char *refname2)
 344{
 345        for (; *refname1 && *refname1 == *refname2; refname1++, refname2++)
 346                ;
 347        return (*refname1 == '\0' && *refname2 == '/')
 348                || (*refname1 == '/' && *refname2 == '\0');
 349}
 350
 351struct name_conflict_cb {
 352        const char *refname;
 353        const char *oldrefname;
 354        const char *conflicting_refname;
 355};
 356
 357static int name_conflict_fn(const char *existingrefname, const unsigned char *sha1,
 358                            int flags, void *cb_data)
 359{
 360        struct name_conflict_cb *data = (struct name_conflict_cb *)cb_data;
 361        if (data->oldrefname && !strcmp(data->oldrefname, existingrefname))
 362                return 0;
 363        if (names_conflict(data->refname, existingrefname)) {
 364                data->conflicting_refname = existingrefname;
 365                return 1;
 366        }
 367        return 0;
 368}
 369
 370/*
 371 * Return true iff a reference named refname could be created without
 372 * conflicting with the name of an existing reference in array.  If
 373 * oldrefname is non-NULL, ignore potential conflicts with oldrefname
 374 * (e.g., because oldrefname is scheduled for deletion in the same
 375 * operation).
 376 */
 377static int is_refname_available(const char *refname, const char *oldrefname,
 378                                struct ref_array *array)
 379{
 380        struct name_conflict_cb data;
 381        data.refname = refname;
 382        data.oldrefname = oldrefname;
 383        data.conflicting_refname = NULL;
 384
 385        sort_ref_array(array);
 386        if (do_for_each_ref_in_array(array, 0, "", name_conflict_fn,
 387                                     0, DO_FOR_EACH_INCLUDE_BROKEN,
 388                                     &data)) {
 389                error("'%s' exists; cannot create '%s'",
 390                      data.conflicting_refname, refname);
 391                return 0;
 392        }
 393        return 1;
 394}
 395
 396/*
 397 * Future: need to be in "struct repository"
 398 * when doing a full libification.
 399 */
 400static struct ref_cache {
 401        struct ref_cache *next;
 402        char did_loose;
 403        char did_packed;
 404        struct ref_array loose;
 405        struct ref_array packed;
 406        /* The submodule name, or "" for the main repo. */
 407        char name[FLEX_ARRAY];
 408} *ref_cache;
 409
 410static void clear_packed_ref_cache(struct ref_cache *refs)
 411{
 412        if (refs->did_packed)
 413                clear_ref_array(&refs->packed);
 414        refs->did_packed = 0;
 415}
 416
 417static void clear_loose_ref_cache(struct ref_cache *refs)
 418{
 419        if (refs->did_loose)
 420                clear_ref_array(&refs->loose);
 421        refs->did_loose = 0;
 422}
 423
 424static struct ref_cache *create_ref_cache(const char *submodule)
 425{
 426        int len;
 427        struct ref_cache *refs;
 428        if (!submodule)
 429                submodule = "";
 430        len = strlen(submodule) + 1;
 431        refs = xcalloc(1, sizeof(struct ref_cache) + len);
 432        memcpy(refs->name, submodule, len);
 433        return refs;
 434}
 435
 436/*
 437 * Return a pointer to a ref_cache for the specified submodule. For
 438 * the main repository, use submodule==NULL. The returned structure
 439 * will be allocated and initialized but not necessarily populated; it
 440 * should not be freed.
 441 */
 442static struct ref_cache *get_ref_cache(const char *submodule)
 443{
 444        struct ref_cache *refs = ref_cache;
 445        if (!submodule)
 446                submodule = "";
 447        while (refs) {
 448                if (!strcmp(submodule, refs->name))
 449                        return refs;
 450                refs = refs->next;
 451        }
 452
 453        refs = create_ref_cache(submodule);
 454        refs->next = ref_cache;
 455        ref_cache = refs;
 456        return refs;
 457}
 458
 459void invalidate_ref_cache(const char *submodule)
 460{
 461        struct ref_cache *refs = get_ref_cache(submodule);
 462        clear_packed_ref_cache(refs);
 463        clear_loose_ref_cache(refs);
 464}
 465
 466/*
 467 * Parse one line from a packed-refs file.  Write the SHA1 to sha1.
 468 * Return a pointer to the refname within the line (null-terminated),
 469 * or NULL if there was a problem.
 470 */
 471static const char *parse_ref_line(char *line, unsigned char *sha1)
 472{
 473        /*
 474         * 42: the answer to everything.
 475         *
 476         * In this case, it happens to be the answer to
 477         *  40 (length of sha1 hex representation)
 478         *  +1 (space in between hex and name)
 479         *  +1 (newline at the end of the line)
 480         */
 481        int len = strlen(line) - 42;
 482
 483        if (len <= 0)
 484                return NULL;
 485        if (get_sha1_hex(line, sha1) < 0)
 486                return NULL;
 487        if (!isspace(line[40]))
 488                return NULL;
 489        line += 41;
 490        if (isspace(*line))
 491                return NULL;
 492        if (line[len] != '\n')
 493                return NULL;
 494        line[len] = 0;
 495
 496        return line;
 497}
 498
 499static void read_packed_refs(FILE *f, struct ref_array *array)
 500{
 501        struct ref_entry *last = NULL;
 502        char refline[PATH_MAX];
 503        int flag = REF_ISPACKED;
 504
 505        while (fgets(refline, sizeof(refline), f)) {
 506                unsigned char sha1[20];
 507                const char *refname;
 508                static const char header[] = "# pack-refs with:";
 509
 510                if (!strncmp(refline, header, sizeof(header)-1)) {
 511                        const char *traits = refline + sizeof(header) - 1;
 512                        if (strstr(traits, " peeled "))
 513                                flag |= REF_KNOWS_PEELED;
 514                        /* perhaps other traits later as well */
 515                        continue;
 516                }
 517
 518                refname = parse_ref_line(refline, sha1);
 519                if (refname) {
 520                        last = create_ref_entry(refname, sha1, flag, 1);
 521                        add_ref(array, last);
 522                        continue;
 523                }
 524                if (last &&
 525                    refline[0] == '^' &&
 526                    strlen(refline) == 42 &&
 527                    refline[41] == '\n' &&
 528                    !get_sha1_hex(refline + 1, sha1))
 529                        hashcpy(last->peeled, sha1);
 530        }
 531}
 532
 533static struct ref_array *get_packed_refs(struct ref_cache *refs)
 534{
 535        if (!refs->did_packed) {
 536                const char *packed_refs_file;
 537                FILE *f;
 538
 539                if (*refs->name)
 540                        packed_refs_file = git_path_submodule(refs->name, "packed-refs");
 541                else
 542                        packed_refs_file = git_path("packed-refs");
 543                f = fopen(packed_refs_file, "r");
 544                if (f) {
 545                        read_packed_refs(f, &refs->packed);
 546                        fclose(f);
 547                }
 548                refs->did_packed = 1;
 549        }
 550        return &refs->packed;
 551}
 552
 553void add_packed_ref(const char *refname, const unsigned char *sha1)
 554{
 555        add_ref(get_packed_refs(get_ref_cache(NULL)),
 556                        create_ref_entry(refname, sha1, REF_ISPACKED, 1));
 557}
 558
 559static void get_ref_dir(struct ref_cache *refs, const char *base,
 560                        struct ref_array *array)
 561{
 562        DIR *dir;
 563        const char *path;
 564
 565        if (*refs->name)
 566                path = git_path_submodule(refs->name, "%s", base);
 567        else
 568                path = git_path("%s", base);
 569
 570        dir = opendir(path);
 571
 572        if (dir) {
 573                struct dirent *de;
 574                int baselen = strlen(base);
 575                char *refname = xmalloc(baselen + 257);
 576
 577                memcpy(refname, base, baselen);
 578                if (baselen && base[baselen-1] != '/')
 579                        refname[baselen++] = '/';
 580
 581                while ((de = readdir(dir)) != NULL) {
 582                        unsigned char sha1[20];
 583                        struct stat st;
 584                        int flag;
 585                        int namelen;
 586                        const char *refdir;
 587
 588                        if (de->d_name[0] == '.')
 589                                continue;
 590                        namelen = strlen(de->d_name);
 591                        if (namelen > 255)
 592                                continue;
 593                        if (has_extension(de->d_name, ".lock"))
 594                                continue;
 595                        memcpy(refname + baselen, de->d_name, namelen+1);
 596                        refdir = *refs->name
 597                                ? git_path_submodule(refs->name, "%s", refname)
 598                                : git_path("%s", refname);
 599                        if (stat(refdir, &st) < 0)
 600                                continue;
 601                        if (S_ISDIR(st.st_mode)) {
 602                                get_ref_dir(refs, refname, array);
 603                                continue;
 604                        }
 605                        if (*refs->name) {
 606                                hashclr(sha1);
 607                                flag = 0;
 608                                if (resolve_gitlink_ref(refs->name, refname, sha1) < 0) {
 609                                        hashclr(sha1);
 610                                        flag |= REF_ISBROKEN;
 611                                }
 612                        } else if (read_ref_full(refname, sha1, 1, &flag)) {
 613                                hashclr(sha1);
 614                                flag |= REF_ISBROKEN;
 615                        }
 616                        add_ref(array, create_ref_entry(refname, sha1, flag, 1));
 617                }
 618                free(refname);
 619                closedir(dir);
 620        }
 621}
 622
 623static struct ref_array *get_loose_refs(struct ref_cache *refs)
 624{
 625        if (!refs->did_loose) {
 626                get_ref_dir(refs, "refs", &refs->loose);
 627                refs->did_loose = 1;
 628        }
 629        return &refs->loose;
 630}
 631
 632/* We allow "recursive" symbolic refs. Only within reason, though */
 633#define MAXDEPTH 5
 634#define MAXREFLEN (1024)
 635
 636/*
 637 * Called by resolve_gitlink_ref_recursive() after it failed to read
 638 * from the loose refs in ref_cache refs. Find <refname> in the
 639 * packed-refs file for the submodule.
 640 */
 641static int resolve_gitlink_packed_ref(struct ref_cache *refs,
 642                                      const char *refname, unsigned char *sha1)
 643{
 644        struct ref_entry *ref;
 645        struct ref_array *array = get_packed_refs(refs);
 646
 647        ref = search_ref_array(array, refname);
 648        if (ref == NULL)
 649                return -1;
 650
 651        memcpy(sha1, ref->sha1, 20);
 652        return 0;
 653}
 654
 655static int resolve_gitlink_ref_recursive(struct ref_cache *refs,
 656                                         const char *refname, unsigned char *sha1,
 657                                         int recursion)
 658{
 659        int fd, len;
 660        char buffer[128], *p;
 661        char *path;
 662
 663        if (recursion > MAXDEPTH || strlen(refname) > MAXREFLEN)
 664                return -1;
 665        path = *refs->name
 666                ? git_path_submodule(refs->name, "%s", refname)
 667                : git_path("%s", refname);
 668        fd = open(path, O_RDONLY);
 669        if (fd < 0)
 670                return resolve_gitlink_packed_ref(refs, refname, sha1);
 671
 672        len = read(fd, buffer, sizeof(buffer)-1);
 673        close(fd);
 674        if (len < 0)
 675                return -1;
 676        while (len && isspace(buffer[len-1]))
 677                len--;
 678        buffer[len] = 0;
 679
 680        /* Was it a detached head or an old-fashioned symlink? */
 681        if (!get_sha1_hex(buffer, sha1))
 682                return 0;
 683
 684        /* Symref? */
 685        if (strncmp(buffer, "ref:", 4))
 686                return -1;
 687        p = buffer + 4;
 688        while (isspace(*p))
 689                p++;
 690
 691        return resolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);
 692}
 693
 694int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *sha1)
 695{
 696        int len = strlen(path), retval;
 697        char *submodule;
 698        struct ref_cache *refs;
 699
 700        while (len && path[len-1] == '/')
 701                len--;
 702        if (!len)
 703                return -1;
 704        submodule = xstrndup(path, len);
 705        refs = get_ref_cache(submodule);
 706        free(submodule);
 707
 708        retval = resolve_gitlink_ref_recursive(refs, refname, sha1, 0);
 709        return retval;
 710}
 711
 712/*
 713 * Try to read ref from the packed references.  On success, set sha1
 714 * and return 0; otherwise, return -1.
 715 */
 716static int get_packed_ref(const char *refname, unsigned char *sha1)
 717{
 718        struct ref_array *packed = get_packed_refs(get_ref_cache(NULL));
 719        struct ref_entry *entry = search_ref_array(packed, refname);
 720        if (entry) {
 721                hashcpy(sha1, entry->sha1);
 722                return 0;
 723        }
 724        return -1;
 725}
 726
 727const char *resolve_ref_unsafe(const char *refname, unsigned char *sha1, int reading, int *flag)
 728{
 729        int depth = MAXDEPTH;
 730        ssize_t len;
 731        char buffer[256];
 732        static char refname_buffer[256];
 733
 734        if (flag)
 735                *flag = 0;
 736
 737        if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
 738                return NULL;
 739
 740        for (;;) {
 741                char path[PATH_MAX];
 742                struct stat st;
 743                char *buf;
 744                int fd;
 745
 746                if (--depth < 0)
 747                        return NULL;
 748
 749                git_snpath(path, sizeof(path), "%s", refname);
 750
 751                if (lstat(path, &st) < 0) {
 752                        if (errno != ENOENT)
 753                                return NULL;
 754                        /*
 755                         * The loose reference file does not exist;
 756                         * check for a packed reference.
 757                         */
 758                        if (!get_packed_ref(refname, sha1)) {
 759                                if (flag)
 760                                        *flag |= REF_ISPACKED;
 761                                return refname;
 762                        }
 763                        /* The reference is not a packed reference, either. */
 764                        if (reading) {
 765                                return NULL;
 766                        } else {
 767                                hashclr(sha1);
 768                                return refname;
 769                        }
 770                }
 771
 772                /* Follow "normalized" - ie "refs/.." symlinks by hand */
 773                if (S_ISLNK(st.st_mode)) {
 774                        len = readlink(path, buffer, sizeof(buffer)-1);
 775                        if (len < 0)
 776                                return NULL;
 777                        buffer[len] = 0;
 778                        if (!prefixcmp(buffer, "refs/") &&
 779                                        !check_refname_format(buffer, 0)) {
 780                                strcpy(refname_buffer, buffer);
 781                                refname = refname_buffer;
 782                                if (flag)
 783                                        *flag |= REF_ISSYMREF;
 784                                continue;
 785                        }
 786                }
 787
 788                /* Is it a directory? */
 789                if (S_ISDIR(st.st_mode)) {
 790                        errno = EISDIR;
 791                        return NULL;
 792                }
 793
 794                /*
 795                 * Anything else, just open it and try to use it as
 796                 * a ref
 797                 */
 798                fd = open(path, O_RDONLY);
 799                if (fd < 0)
 800                        return NULL;
 801                len = read_in_full(fd, buffer, sizeof(buffer)-1);
 802                close(fd);
 803                if (len < 0)
 804                        return NULL;
 805                while (len && isspace(buffer[len-1]))
 806                        len--;
 807                buffer[len] = '\0';
 808
 809                /*
 810                 * Is it a symbolic ref?
 811                 */
 812                if (prefixcmp(buffer, "ref:"))
 813                        break;
 814                if (flag)
 815                        *flag |= REF_ISSYMREF;
 816                buf = buffer + 4;
 817                while (isspace(*buf))
 818                        buf++;
 819                if (check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {
 820                        if (flag)
 821                                *flag |= REF_ISBROKEN;
 822                        return NULL;
 823                }
 824                refname = strcpy(refname_buffer, buf);
 825        }
 826        /* Please note that FETCH_HEAD has a second line containing other data. */
 827        if (get_sha1_hex(buffer, sha1) || (buffer[40] != '\0' && !isspace(buffer[40]))) {
 828                if (flag)
 829                        *flag |= REF_ISBROKEN;
 830                return NULL;
 831        }
 832        return refname;
 833}
 834
 835char *resolve_refdup(const char *ref, unsigned char *sha1, int reading, int *flag)
 836{
 837        const char *ret = resolve_ref_unsafe(ref, sha1, reading, flag);
 838        return ret ? xstrdup(ret) : NULL;
 839}
 840
 841/* The argument to filter_refs */
 842struct ref_filter {
 843        const char *pattern;
 844        each_ref_fn *fn;
 845        void *cb_data;
 846};
 847
 848int read_ref_full(const char *refname, unsigned char *sha1, int reading, int *flags)
 849{
 850        if (resolve_ref_unsafe(refname, sha1, reading, flags))
 851                return 0;
 852        return -1;
 853}
 854
 855int read_ref(const char *refname, unsigned char *sha1)
 856{
 857        return read_ref_full(refname, sha1, 1, NULL);
 858}
 859
 860int ref_exists(const char *refname)
 861{
 862        unsigned char sha1[20];
 863        return !!resolve_ref_unsafe(refname, sha1, 1, NULL);
 864}
 865
 866static int filter_refs(const char *refname, const unsigned char *sha1, int flags,
 867                       void *data)
 868{
 869        struct ref_filter *filter = (struct ref_filter *)data;
 870        if (fnmatch(filter->pattern, refname, 0))
 871                return 0;
 872        return filter->fn(refname, sha1, flags, filter->cb_data);
 873}
 874
 875int peel_ref(const char *refname, unsigned char *sha1)
 876{
 877        int flag;
 878        unsigned char base[20];
 879        struct object *o;
 880
 881        if (current_ref && (current_ref->name == refname
 882                || !strcmp(current_ref->name, refname))) {
 883                if (current_ref->flag & REF_KNOWS_PEELED) {
 884                        hashcpy(sha1, current_ref->peeled);
 885                        return 0;
 886                }
 887                hashcpy(base, current_ref->sha1);
 888                goto fallback;
 889        }
 890
 891        if (read_ref_full(refname, base, 1, &flag))
 892                return -1;
 893
 894        if ((flag & REF_ISPACKED)) {
 895                struct ref_array *array = get_packed_refs(get_ref_cache(NULL));
 896                struct ref_entry *r = search_ref_array(array, refname);
 897
 898                if (r != NULL && r->flag & REF_KNOWS_PEELED) {
 899                        hashcpy(sha1, r->peeled);
 900                        return 0;
 901                }
 902        }
 903
 904fallback:
 905        o = parse_object(base);
 906        if (o && o->type == OBJ_TAG) {
 907                o = deref_tag(o, refname, 0);
 908                if (o) {
 909                        hashcpy(sha1, o->sha1);
 910                        return 0;
 911                }
 912        }
 913        return -1;
 914}
 915
 916struct warn_if_dangling_data {
 917        FILE *fp;
 918        const char *refname;
 919        const char *msg_fmt;
 920};
 921
 922static int warn_if_dangling_symref(const char *refname, const unsigned char *sha1,
 923                                   int flags, void *cb_data)
 924{
 925        struct warn_if_dangling_data *d = cb_data;
 926        const char *resolves_to;
 927        unsigned char junk[20];
 928
 929        if (!(flags & REF_ISSYMREF))
 930                return 0;
 931
 932        resolves_to = resolve_ref_unsafe(refname, junk, 0, NULL);
 933        if (!resolves_to || strcmp(resolves_to, d->refname))
 934                return 0;
 935
 936        fprintf(d->fp, d->msg_fmt, refname);
 937        return 0;
 938}
 939
 940void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
 941{
 942        struct warn_if_dangling_data data;
 943
 944        data.fp = fp;
 945        data.refname = refname;
 946        data.msg_fmt = msg_fmt;
 947        for_each_rawref(warn_if_dangling_symref, &data);
 948}
 949
 950static int do_for_each_ref(const char *submodule, const char *base, each_ref_fn fn,
 951                           int trim, int flags, void *cb_data)
 952{
 953        struct ref_cache *refs = get_ref_cache(submodule);
 954        struct ref_array *packed_refs = get_packed_refs(refs);
 955        struct ref_array *loose_refs = get_loose_refs(refs);
 956        sort_ref_array(packed_refs);
 957        sort_ref_array(loose_refs);
 958        return do_for_each_ref_in_arrays(packed_refs,
 959                                         loose_refs,
 960                                         base, fn, trim, flags, cb_data);
 961}
 962
 963static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
 964{
 965        unsigned char sha1[20];
 966        int flag;
 967
 968        if (submodule) {
 969                if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
 970                        return fn("HEAD", sha1, 0, cb_data);
 971
 972                return 0;
 973        }
 974
 975        if (!read_ref_full("HEAD", sha1, 1, &flag))
 976                return fn("HEAD", sha1, flag, cb_data);
 977
 978        return 0;
 979}
 980
 981int head_ref(each_ref_fn fn, void *cb_data)
 982{
 983        return do_head_ref(NULL, fn, cb_data);
 984}
 985
 986int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
 987{
 988        return do_head_ref(submodule, fn, cb_data);
 989}
 990
 991int for_each_ref(each_ref_fn fn, void *cb_data)
 992{
 993        return do_for_each_ref(NULL, "", fn, 0, 0, cb_data);
 994}
 995
 996int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
 997{
 998        return do_for_each_ref(submodule, "", fn, 0, 0, cb_data);
 999}
1000
1001int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1002{
1003        return do_for_each_ref(NULL, prefix, fn, strlen(prefix), 0, cb_data);
1004}
1005
1006int for_each_ref_in_submodule(const char *submodule, const char *prefix,
1007                each_ref_fn fn, void *cb_data)
1008{
1009        return do_for_each_ref(submodule, prefix, fn, strlen(prefix), 0, cb_data);
1010}
1011
1012int for_each_tag_ref(each_ref_fn fn, void *cb_data)
1013{
1014        return for_each_ref_in("refs/tags/", fn, cb_data);
1015}
1016
1017int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1018{
1019        return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
1020}
1021
1022int for_each_branch_ref(each_ref_fn fn, void *cb_data)
1023{
1024        return for_each_ref_in("refs/heads/", fn, cb_data);
1025}
1026
1027int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1028{
1029        return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
1030}
1031
1032int for_each_remote_ref(each_ref_fn fn, void *cb_data)
1033{
1034        return for_each_ref_in("refs/remotes/", fn, cb_data);
1035}
1036
1037int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1038{
1039        return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
1040}
1041
1042int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1043{
1044        return do_for_each_ref(NULL, "refs/replace/", fn, 13, 0, cb_data);
1045}
1046
1047int head_ref_namespaced(each_ref_fn fn, void *cb_data)
1048{
1049        struct strbuf buf = STRBUF_INIT;
1050        int ret = 0;
1051        unsigned char sha1[20];
1052        int flag;
1053
1054        strbuf_addf(&buf, "%sHEAD", get_git_namespace());
1055        if (!read_ref_full(buf.buf, sha1, 1, &flag))
1056                ret = fn(buf.buf, sha1, flag, cb_data);
1057        strbuf_release(&buf);
1058
1059        return ret;
1060}
1061
1062int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1063{
1064        struct strbuf buf = STRBUF_INIT;
1065        int ret;
1066        strbuf_addf(&buf, "%srefs/", get_git_namespace());
1067        ret = do_for_each_ref(NULL, buf.buf, fn, 0, 0, cb_data);
1068        strbuf_release(&buf);
1069        return ret;
1070}
1071
1072int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
1073        const char *prefix, void *cb_data)
1074{
1075        struct strbuf real_pattern = STRBUF_INIT;
1076        struct ref_filter filter;
1077        int ret;
1078
1079        if (!prefix && prefixcmp(pattern, "refs/"))
1080                strbuf_addstr(&real_pattern, "refs/");
1081        else if (prefix)
1082                strbuf_addstr(&real_pattern, prefix);
1083        strbuf_addstr(&real_pattern, pattern);
1084
1085        if (!has_glob_specials(pattern)) {
1086                /* Append implied '/' '*' if not present. */
1087                if (real_pattern.buf[real_pattern.len - 1] != '/')
1088                        strbuf_addch(&real_pattern, '/');
1089                /* No need to check for '*', there is none. */
1090                strbuf_addch(&real_pattern, '*');
1091        }
1092
1093        filter.pattern = real_pattern.buf;
1094        filter.fn = fn;
1095        filter.cb_data = cb_data;
1096        ret = for_each_ref(filter_refs, &filter);
1097
1098        strbuf_release(&real_pattern);
1099        return ret;
1100}
1101
1102int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
1103{
1104        return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
1105}
1106
1107int for_each_rawref(each_ref_fn fn, void *cb_data)
1108{
1109        return do_for_each_ref(NULL, "", fn, 0,
1110                               DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1111}
1112
1113const char *prettify_refname(const char *name)
1114{
1115        return name + (
1116                !prefixcmp(name, "refs/heads/") ? 11 :
1117                !prefixcmp(name, "refs/tags/") ? 10 :
1118                !prefixcmp(name, "refs/remotes/") ? 13 :
1119                0);
1120}
1121
1122const char *ref_rev_parse_rules[] = {
1123        "%.*s",
1124        "refs/%.*s",
1125        "refs/tags/%.*s",
1126        "refs/heads/%.*s",
1127        "refs/remotes/%.*s",
1128        "refs/remotes/%.*s/HEAD",
1129        NULL
1130};
1131
1132int refname_match(const char *abbrev_name, const char *full_name, const char **rules)
1133{
1134        const char **p;
1135        const int abbrev_name_len = strlen(abbrev_name);
1136
1137        for (p = rules; *p; p++) {
1138                if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
1139                        return 1;
1140                }
1141        }
1142
1143        return 0;
1144}
1145
1146static struct ref_lock *verify_lock(struct ref_lock *lock,
1147        const unsigned char *old_sha1, int mustexist)
1148{
1149        if (read_ref_full(lock->ref_name, lock->old_sha1, mustexist, NULL)) {
1150                error("Can't verify ref %s", lock->ref_name);
1151                unlock_ref(lock);
1152                return NULL;
1153        }
1154        if (hashcmp(lock->old_sha1, old_sha1)) {
1155                error("Ref %s is at %s but expected %s", lock->ref_name,
1156                        sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
1157                unlock_ref(lock);
1158                return NULL;
1159        }
1160        return lock;
1161}
1162
1163static int remove_empty_directories(const char *file)
1164{
1165        /* we want to create a file but there is a directory there;
1166         * if that is an empty directory (or a directory that contains
1167         * only empty directories), remove them.
1168         */
1169        struct strbuf path;
1170        int result;
1171
1172        strbuf_init(&path, 20);
1173        strbuf_addstr(&path, file);
1174
1175        result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
1176
1177        strbuf_release(&path);
1178
1179        return result;
1180}
1181
1182/*
1183 * *string and *len will only be substituted, and *string returned (for
1184 * later free()ing) if the string passed in is a magic short-hand form
1185 * to name a branch.
1186 */
1187static char *substitute_branch_name(const char **string, int *len)
1188{
1189        struct strbuf buf = STRBUF_INIT;
1190        int ret = interpret_branch_name(*string, &buf);
1191
1192        if (ret == *len) {
1193                size_t size;
1194                *string = strbuf_detach(&buf, &size);
1195                *len = size;
1196                return (char *)*string;
1197        }
1198
1199        return NULL;
1200}
1201
1202int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
1203{
1204        char *last_branch = substitute_branch_name(&str, &len);
1205        const char **p, *r;
1206        int refs_found = 0;
1207
1208        *ref = NULL;
1209        for (p = ref_rev_parse_rules; *p; p++) {
1210                char fullref[PATH_MAX];
1211                unsigned char sha1_from_ref[20];
1212                unsigned char *this_result;
1213                int flag;
1214
1215                this_result = refs_found ? sha1_from_ref : sha1;
1216                mksnpath(fullref, sizeof(fullref), *p, len, str);
1217                r = resolve_ref_unsafe(fullref, this_result, 1, &flag);
1218                if (r) {
1219                        if (!refs_found++)
1220                                *ref = xstrdup(r);
1221                        if (!warn_ambiguous_refs)
1222                                break;
1223                } else if ((flag & REF_ISSYMREF) && strcmp(fullref, "HEAD")) {
1224                        warning("ignoring dangling symref %s.", fullref);
1225                } else if ((flag & REF_ISBROKEN) && strchr(fullref, '/')) {
1226                        warning("ignoring broken ref %s.", fullref);
1227                }
1228        }
1229        free(last_branch);
1230        return refs_found;
1231}
1232
1233int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
1234{
1235        char *last_branch = substitute_branch_name(&str, &len);
1236        const char **p;
1237        int logs_found = 0;
1238
1239        *log = NULL;
1240        for (p = ref_rev_parse_rules; *p; p++) {
1241                struct stat st;
1242                unsigned char hash[20];
1243                char path[PATH_MAX];
1244                const char *ref, *it;
1245
1246                mksnpath(path, sizeof(path), *p, len, str);
1247                ref = resolve_ref_unsafe(path, hash, 1, NULL);
1248                if (!ref)
1249                        continue;
1250                if (!stat(git_path("logs/%s", path), &st) &&
1251                    S_ISREG(st.st_mode))
1252                        it = path;
1253                else if (strcmp(ref, path) &&
1254                         !stat(git_path("logs/%s", ref), &st) &&
1255                         S_ISREG(st.st_mode))
1256                        it = ref;
1257                else
1258                        continue;
1259                if (!logs_found++) {
1260                        *log = xstrdup(it);
1261                        hashcpy(sha1, hash);
1262                }
1263                if (!warn_ambiguous_refs)
1264                        break;
1265        }
1266        free(last_branch);
1267        return logs_found;
1268}
1269
1270static struct ref_lock *lock_ref_sha1_basic(const char *refname,
1271                                            const unsigned char *old_sha1,
1272                                            int flags, int *type_p)
1273{
1274        char *ref_file;
1275        const char *orig_refname = refname;
1276        struct ref_lock *lock;
1277        int last_errno = 0;
1278        int type, lflags;
1279        int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
1280        int missing = 0;
1281
1282        lock = xcalloc(1, sizeof(struct ref_lock));
1283        lock->lock_fd = -1;
1284
1285        refname = resolve_ref_unsafe(refname, lock->old_sha1, mustexist, &type);
1286        if (!refname && errno == EISDIR) {
1287                /* we are trying to lock foo but we used to
1288                 * have foo/bar which now does not exist;
1289                 * it is normal for the empty directory 'foo'
1290                 * to remain.
1291                 */
1292                ref_file = git_path("%s", orig_refname);
1293                if (remove_empty_directories(ref_file)) {
1294                        last_errno = errno;
1295                        error("there are still refs under '%s'", orig_refname);
1296                        goto error_return;
1297                }
1298                refname = resolve_ref_unsafe(orig_refname, lock->old_sha1, mustexist, &type);
1299        }
1300        if (type_p)
1301            *type_p = type;
1302        if (!refname) {
1303                last_errno = errno;
1304                error("unable to resolve reference %s: %s",
1305                        orig_refname, strerror(errno));
1306                goto error_return;
1307        }
1308        missing = is_null_sha1(lock->old_sha1);
1309        /* When the ref did not exist and we are creating it,
1310         * make sure there is no existing ref that is packed
1311         * whose name begins with our refname, nor a ref whose
1312         * name is a proper prefix of our refname.
1313         */
1314        if (missing &&
1315             !is_refname_available(refname, NULL, get_packed_refs(get_ref_cache(NULL)))) {
1316                last_errno = ENOTDIR;
1317                goto error_return;
1318        }
1319
1320        lock->lk = xcalloc(1, sizeof(struct lock_file));
1321
1322        lflags = LOCK_DIE_ON_ERROR;
1323        if (flags & REF_NODEREF) {
1324                refname = orig_refname;
1325                lflags |= LOCK_NODEREF;
1326        }
1327        lock->ref_name = xstrdup(refname);
1328        lock->orig_ref_name = xstrdup(orig_refname);
1329        ref_file = git_path("%s", refname);
1330        if (missing)
1331                lock->force_write = 1;
1332        if ((flags & REF_NODEREF) && (type & REF_ISSYMREF))
1333                lock->force_write = 1;
1334
1335        if (safe_create_leading_directories(ref_file)) {
1336                last_errno = errno;
1337                error("unable to create directory for %s", ref_file);
1338                goto error_return;
1339        }
1340
1341        lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, lflags);
1342        return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
1343
1344 error_return:
1345        unlock_ref(lock);
1346        errno = last_errno;
1347        return NULL;
1348}
1349
1350struct ref_lock *lock_ref_sha1(const char *refname, const unsigned char *old_sha1)
1351{
1352        char refpath[PATH_MAX];
1353        if (check_refname_format(refname, 0))
1354                return NULL;
1355        strcpy(refpath, mkpath("refs/%s", refname));
1356        return lock_ref_sha1_basic(refpath, old_sha1, 0, NULL);
1357}
1358
1359struct ref_lock *lock_any_ref_for_update(const char *refname,
1360                                         const unsigned char *old_sha1, int flags)
1361{
1362        if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))
1363                return NULL;
1364        return lock_ref_sha1_basic(refname, old_sha1, flags, NULL);
1365}
1366
1367struct repack_without_ref_sb {
1368        const char *refname;
1369        int fd;
1370};
1371
1372static int repack_without_ref_fn(const char *refname, const unsigned char *sha1,
1373                                 int flags, void *cb_data)
1374{
1375        struct repack_without_ref_sb *data = cb_data;
1376        char line[PATH_MAX + 100];
1377        int len;
1378
1379        if (!strcmp(data->refname, refname))
1380                return 0;
1381        len = snprintf(line, sizeof(line), "%s %s\n",
1382                       sha1_to_hex(sha1), refname);
1383        /* this should not happen but just being defensive */
1384        if (len > sizeof(line))
1385                die("too long a refname '%s'", refname);
1386        write_or_die(data->fd, line, len);
1387        return 0;
1388}
1389
1390static struct lock_file packlock;
1391
1392static int repack_without_ref(const char *refname)
1393{
1394        struct repack_without_ref_sb data;
1395        struct ref_array *packed = get_packed_refs(get_ref_cache(NULL));
1396        sort_ref_array(packed);
1397        if (search_ref_array(packed, refname) == NULL)
1398                return 0;
1399        data.refname = refname;
1400        data.fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0);
1401        if (data.fd < 0) {
1402                unable_to_lock_error(git_path("packed-refs"), errno);
1403                return error("cannot delete '%s' from packed refs", refname);
1404        }
1405        do_for_each_ref_in_array(packed, 0, "", repack_without_ref_fn, 0, 0, &data);
1406        return commit_lock_file(&packlock);
1407}
1408
1409int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
1410{
1411        struct ref_lock *lock;
1412        int err, i = 0, ret = 0, flag = 0;
1413
1414        lock = lock_ref_sha1_basic(refname, sha1, 0, &flag);
1415        if (!lock)
1416                return 1;
1417        if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
1418                /* loose */
1419                const char *path;
1420
1421                if (!(delopt & REF_NODEREF)) {
1422                        i = strlen(lock->lk->filename) - 5; /* .lock */
1423                        lock->lk->filename[i] = 0;
1424                        path = lock->lk->filename;
1425                } else {
1426                        path = git_path("%s", refname);
1427                }
1428                err = unlink_or_warn(path);
1429                if (err && errno != ENOENT)
1430                        ret = 1;
1431
1432                if (!(delopt & REF_NODEREF))
1433                        lock->lk->filename[i] = '.';
1434        }
1435        /* removing the loose one could have resurrected an earlier
1436         * packed one.  Also, if it was not loose we need to repack
1437         * without it.
1438         */
1439        ret |= repack_without_ref(refname);
1440
1441        unlink_or_warn(git_path("logs/%s", lock->ref_name));
1442        invalidate_ref_cache(NULL);
1443        unlock_ref(lock);
1444        return ret;
1445}
1446
1447/*
1448 * People using contrib's git-new-workdir have .git/logs/refs ->
1449 * /some/other/path/.git/logs/refs, and that may live on another device.
1450 *
1451 * IOW, to avoid cross device rename errors, the temporary renamed log must
1452 * live into logs/refs.
1453 */
1454#define TMP_RENAMED_LOG  "logs/refs/.tmp-renamed-log"
1455
1456int rename_ref(const char *oldrefname, const char *newrefname, const char *logmsg)
1457{
1458        unsigned char sha1[20], orig_sha1[20];
1459        int flag = 0, logmoved = 0;
1460        struct ref_lock *lock;
1461        struct stat loginfo;
1462        int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);
1463        const char *symref = NULL;
1464        struct ref_cache *refs = get_ref_cache(NULL);
1465
1466        if (log && S_ISLNK(loginfo.st_mode))
1467                return error("reflog for %s is a symlink", oldrefname);
1468
1469        symref = resolve_ref_unsafe(oldrefname, orig_sha1, 1, &flag);
1470        if (flag & REF_ISSYMREF)
1471                return error("refname %s is a symbolic ref, renaming it is not supported",
1472                        oldrefname);
1473        if (!symref)
1474                return error("refname %s not found", oldrefname);
1475
1476        if (!is_refname_available(newrefname, oldrefname, get_packed_refs(refs)))
1477                return 1;
1478
1479        if (!is_refname_available(newrefname, oldrefname, get_loose_refs(refs)))
1480                return 1;
1481
1482        if (log && rename(git_path("logs/%s", oldrefname), git_path(TMP_RENAMED_LOG)))
1483                return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
1484                        oldrefname, strerror(errno));
1485
1486        if (delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {
1487                error("unable to delete old %s", oldrefname);
1488                goto rollback;
1489        }
1490
1491        if (!read_ref_full(newrefname, sha1, 1, &flag) &&
1492            delete_ref(newrefname, sha1, REF_NODEREF)) {
1493                if (errno==EISDIR) {
1494                        if (remove_empty_directories(git_path("%s", newrefname))) {
1495                                error("Directory not empty: %s", newrefname);
1496                                goto rollback;
1497                        }
1498                } else {
1499                        error("unable to delete existing %s", newrefname);
1500                        goto rollback;
1501                }
1502        }
1503
1504        if (log && safe_create_leading_directories(git_path("logs/%s", newrefname))) {
1505                error("unable to create directory for %s", newrefname);
1506                goto rollback;
1507        }
1508
1509 retry:
1510        if (log && rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newrefname))) {
1511                if (errno==EISDIR || errno==ENOTDIR) {
1512                        /*
1513                         * rename(a, b) when b is an existing
1514                         * directory ought to result in ISDIR, but
1515                         * Solaris 5.8 gives ENOTDIR.  Sheesh.
1516                         */
1517                        if (remove_empty_directories(git_path("logs/%s", newrefname))) {
1518                                error("Directory not empty: logs/%s", newrefname);
1519                                goto rollback;
1520                        }
1521                        goto retry;
1522                } else {
1523                        error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
1524                                newrefname, strerror(errno));
1525                        goto rollback;
1526                }
1527        }
1528        logmoved = log;
1529
1530        lock = lock_ref_sha1_basic(newrefname, NULL, 0, NULL);
1531        if (!lock) {
1532                error("unable to lock %s for update", newrefname);
1533                goto rollback;
1534        }
1535        lock->force_write = 1;
1536        hashcpy(lock->old_sha1, orig_sha1);
1537        if (write_ref_sha1(lock, orig_sha1, logmsg)) {
1538                error("unable to write current sha1 into %s", newrefname);
1539                goto rollback;
1540        }
1541
1542        return 0;
1543
1544 rollback:
1545        lock = lock_ref_sha1_basic(oldrefname, NULL, 0, NULL);
1546        if (!lock) {
1547                error("unable to lock %s for rollback", oldrefname);
1548                goto rollbacklog;
1549        }
1550
1551        lock->force_write = 1;
1552        flag = log_all_ref_updates;
1553        log_all_ref_updates = 0;
1554        if (write_ref_sha1(lock, orig_sha1, NULL))
1555                error("unable to write current sha1 into %s", oldrefname);
1556        log_all_ref_updates = flag;
1557
1558 rollbacklog:
1559        if (logmoved && rename(git_path("logs/%s", newrefname), git_path("logs/%s", oldrefname)))
1560                error("unable to restore logfile %s from %s: %s",
1561                        oldrefname, newrefname, strerror(errno));
1562        if (!logmoved && log &&
1563            rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldrefname)))
1564                error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
1565                        oldrefname, strerror(errno));
1566
1567        return 1;
1568}
1569
1570int close_ref(struct ref_lock *lock)
1571{
1572        if (close_lock_file(lock->lk))
1573                return -1;
1574        lock->lock_fd = -1;
1575        return 0;
1576}
1577
1578int commit_ref(struct ref_lock *lock)
1579{
1580        if (commit_lock_file(lock->lk))
1581                return -1;
1582        lock->lock_fd = -1;
1583        return 0;
1584}
1585
1586void unlock_ref(struct ref_lock *lock)
1587{
1588        /* Do not free lock->lk -- atexit() still looks at them */
1589        if (lock->lk)
1590                rollback_lock_file(lock->lk);
1591        free(lock->ref_name);
1592        free(lock->orig_ref_name);
1593        free(lock);
1594}
1595
1596/*
1597 * copy the reflog message msg to buf, which has been allocated sufficiently
1598 * large, while cleaning up the whitespaces.  Especially, convert LF to space,
1599 * because reflog file is one line per entry.
1600 */
1601static int copy_msg(char *buf, const char *msg)
1602{
1603        char *cp = buf;
1604        char c;
1605        int wasspace = 1;
1606
1607        *cp++ = '\t';
1608        while ((c = *msg++)) {
1609                if (wasspace && isspace(c))
1610                        continue;
1611                wasspace = isspace(c);
1612                if (wasspace)
1613                        c = ' ';
1614                *cp++ = c;
1615        }
1616        while (buf < cp && isspace(cp[-1]))
1617                cp--;
1618        *cp++ = '\n';
1619        return cp - buf;
1620}
1621
1622int log_ref_setup(const char *refname, char *logfile, int bufsize)
1623{
1624        int logfd, oflags = O_APPEND | O_WRONLY;
1625
1626        git_snpath(logfile, bufsize, "logs/%s", refname);
1627        if (log_all_ref_updates &&
1628            (!prefixcmp(refname, "refs/heads/") ||
1629             !prefixcmp(refname, "refs/remotes/") ||
1630             !prefixcmp(refname, "refs/notes/") ||
1631             !strcmp(refname, "HEAD"))) {
1632                if (safe_create_leading_directories(logfile) < 0)
1633                        return error("unable to create directory for %s",
1634                                     logfile);
1635                oflags |= O_CREAT;
1636        }
1637
1638        logfd = open(logfile, oflags, 0666);
1639        if (logfd < 0) {
1640                if (!(oflags & O_CREAT) && errno == ENOENT)
1641                        return 0;
1642
1643                if ((oflags & O_CREAT) && errno == EISDIR) {
1644                        if (remove_empty_directories(logfile)) {
1645                                return error("There are still logs under '%s'",
1646                                             logfile);
1647                        }
1648                        logfd = open(logfile, oflags, 0666);
1649                }
1650
1651                if (logfd < 0)
1652                        return error("Unable to append to %s: %s",
1653                                     logfile, strerror(errno));
1654        }
1655
1656        adjust_shared_perm(logfile);
1657        close(logfd);
1658        return 0;
1659}
1660
1661static int log_ref_write(const char *refname, const unsigned char *old_sha1,
1662                         const unsigned char *new_sha1, const char *msg)
1663{
1664        int logfd, result, written, oflags = O_APPEND | O_WRONLY;
1665        unsigned maxlen, len;
1666        int msglen;
1667        char log_file[PATH_MAX];
1668        char *logrec;
1669        const char *committer;
1670
1671        if (log_all_ref_updates < 0)
1672                log_all_ref_updates = !is_bare_repository();
1673
1674        result = log_ref_setup(refname, log_file, sizeof(log_file));
1675        if (result)
1676                return result;
1677
1678        logfd = open(log_file, oflags);
1679        if (logfd < 0)
1680                return 0;
1681        msglen = msg ? strlen(msg) : 0;
1682        committer = git_committer_info(0);
1683        maxlen = strlen(committer) + msglen + 100;
1684        logrec = xmalloc(maxlen);
1685        len = sprintf(logrec, "%s %s %s\n",
1686                      sha1_to_hex(old_sha1),
1687                      sha1_to_hex(new_sha1),
1688                      committer);
1689        if (msglen)
1690                len += copy_msg(logrec + len - 1, msg) - 1;
1691        written = len <= maxlen ? write_in_full(logfd, logrec, len) : -1;
1692        free(logrec);
1693        if (close(logfd) != 0 || written != len)
1694                return error("Unable to append to %s", log_file);
1695        return 0;
1696}
1697
1698static int is_branch(const char *refname)
1699{
1700        return !strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/");
1701}
1702
1703int write_ref_sha1(struct ref_lock *lock,
1704        const unsigned char *sha1, const char *logmsg)
1705{
1706        static char term = '\n';
1707        struct object *o;
1708
1709        if (!lock)
1710                return -1;
1711        if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
1712                unlock_ref(lock);
1713                return 0;
1714        }
1715        o = parse_object(sha1);
1716        if (!o) {
1717                error("Trying to write ref %s with nonexistent object %s",
1718                        lock->ref_name, sha1_to_hex(sha1));
1719                unlock_ref(lock);
1720                return -1;
1721        }
1722        if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
1723                error("Trying to write non-commit object %s to branch %s",
1724                        sha1_to_hex(sha1), lock->ref_name);
1725                unlock_ref(lock);
1726                return -1;
1727        }
1728        if (write_in_full(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
1729            write_in_full(lock->lock_fd, &term, 1) != 1
1730                || close_ref(lock) < 0) {
1731                error("Couldn't write %s", lock->lk->filename);
1732                unlock_ref(lock);
1733                return -1;
1734        }
1735        clear_loose_ref_cache(get_ref_cache(NULL));
1736        if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
1737            (strcmp(lock->ref_name, lock->orig_ref_name) &&
1738             log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
1739                unlock_ref(lock);
1740                return -1;
1741        }
1742        if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
1743                /*
1744                 * Special hack: If a branch is updated directly and HEAD
1745                 * points to it (may happen on the remote side of a push
1746                 * for example) then logically the HEAD reflog should be
1747                 * updated too.
1748                 * A generic solution implies reverse symref information,
1749                 * but finding all symrefs pointing to the given branch
1750                 * would be rather costly for this rare event (the direct
1751                 * update of a branch) to be worth it.  So let's cheat and
1752                 * check with HEAD only which should cover 99% of all usage
1753                 * scenarios (even 100% of the default ones).
1754                 */
1755                unsigned char head_sha1[20];
1756                int head_flag;
1757                const char *head_ref;
1758                head_ref = resolve_ref_unsafe("HEAD", head_sha1, 1, &head_flag);
1759                if (head_ref && (head_flag & REF_ISSYMREF) &&
1760                    !strcmp(head_ref, lock->ref_name))
1761                        log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);
1762        }
1763        if (commit_ref(lock)) {
1764                error("Couldn't set %s", lock->ref_name);
1765                unlock_ref(lock);
1766                return -1;
1767        }
1768        unlock_ref(lock);
1769        return 0;
1770}
1771
1772int create_symref(const char *ref_target, const char *refs_heads_master,
1773                  const char *logmsg)
1774{
1775        const char *lockpath;
1776        char ref[1000];
1777        int fd, len, written;
1778        char *git_HEAD = git_pathdup("%s", ref_target);
1779        unsigned char old_sha1[20], new_sha1[20];
1780
1781        if (logmsg && read_ref(ref_target, old_sha1))
1782                hashclr(old_sha1);
1783
1784        if (safe_create_leading_directories(git_HEAD) < 0)
1785                return error("unable to create directory for %s", git_HEAD);
1786
1787#ifndef NO_SYMLINK_HEAD
1788        if (prefer_symlink_refs) {
1789                unlink(git_HEAD);
1790                if (!symlink(refs_heads_master, git_HEAD))
1791                        goto done;
1792                fprintf(stderr, "no symlink - falling back to symbolic ref\n");
1793        }
1794#endif
1795
1796        len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
1797        if (sizeof(ref) <= len) {
1798                error("refname too long: %s", refs_heads_master);
1799                goto error_free_return;
1800        }
1801        lockpath = mkpath("%s.lock", git_HEAD);
1802        fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
1803        if (fd < 0) {
1804                error("Unable to open %s for writing", lockpath);
1805                goto error_free_return;
1806        }
1807        written = write_in_full(fd, ref, len);
1808        if (close(fd) != 0 || written != len) {
1809                error("Unable to write to %s", lockpath);
1810                goto error_unlink_return;
1811        }
1812        if (rename(lockpath, git_HEAD) < 0) {
1813                error("Unable to create %s", git_HEAD);
1814                goto error_unlink_return;
1815        }
1816        if (adjust_shared_perm(git_HEAD)) {
1817                error("Unable to fix permissions on %s", lockpath);
1818        error_unlink_return:
1819                unlink_or_warn(lockpath);
1820        error_free_return:
1821                free(git_HEAD);
1822                return -1;
1823        }
1824
1825#ifndef NO_SYMLINK_HEAD
1826        done:
1827#endif
1828        if (logmsg && !read_ref(refs_heads_master, new_sha1))
1829                log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
1830
1831        free(git_HEAD);
1832        return 0;
1833}
1834
1835static char *ref_msg(const char *line, const char *endp)
1836{
1837        const char *ep;
1838        line += 82;
1839        ep = memchr(line, '\n', endp - line);
1840        if (!ep)
1841                ep = endp;
1842        return xmemdupz(line, ep - line);
1843}
1844
1845int read_ref_at(const char *refname, unsigned long at_time, int cnt,
1846                unsigned char *sha1, char **msg,
1847                unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
1848{
1849        const char *logfile, *logdata, *logend, *rec, *lastgt, *lastrec;
1850        char *tz_c;
1851        int logfd, tz, reccnt = 0;
1852        struct stat st;
1853        unsigned long date;
1854        unsigned char logged_sha1[20];
1855        void *log_mapped;
1856        size_t mapsz;
1857
1858        logfile = git_path("logs/%s", refname);
1859        logfd = open(logfile, O_RDONLY, 0);
1860        if (logfd < 0)
1861                die_errno("Unable to read log '%s'", logfile);
1862        fstat(logfd, &st);
1863        if (!st.st_size)
1864                die("Log %s is empty.", logfile);
1865        mapsz = xsize_t(st.st_size);
1866        log_mapped = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, logfd, 0);
1867        logdata = log_mapped;
1868        close(logfd);
1869
1870        lastrec = NULL;
1871        rec = logend = logdata + st.st_size;
1872        while (logdata < rec) {
1873                reccnt++;
1874                if (logdata < rec && *(rec-1) == '\n')
1875                        rec--;
1876                lastgt = NULL;
1877                while (logdata < rec && *(rec-1) != '\n') {
1878                        rec--;
1879                        if (*rec == '>')
1880                                lastgt = rec;
1881                }
1882                if (!lastgt)
1883                        die("Log %s is corrupt.", logfile);
1884                date = strtoul(lastgt + 1, &tz_c, 10);
1885                if (date <= at_time || cnt == 0) {
1886                        tz = strtoul(tz_c, NULL, 10);
1887                        if (msg)
1888                                *msg = ref_msg(rec, logend);
1889                        if (cutoff_time)
1890                                *cutoff_time = date;
1891                        if (cutoff_tz)
1892                                *cutoff_tz = tz;
1893                        if (cutoff_cnt)
1894                                *cutoff_cnt = reccnt - 1;
1895                        if (lastrec) {
1896                                if (get_sha1_hex(lastrec, logged_sha1))
1897                                        die("Log %s is corrupt.", logfile);
1898                                if (get_sha1_hex(rec + 41, sha1))
1899                                        die("Log %s is corrupt.", logfile);
1900                                if (hashcmp(logged_sha1, sha1)) {
1901                                        warning("Log %s has gap after %s.",
1902                                                logfile, show_date(date, tz, DATE_RFC2822));
1903                                }
1904                        }
1905                        else if (date == at_time) {
1906                                if (get_sha1_hex(rec + 41, sha1))
1907                                        die("Log %s is corrupt.", logfile);
1908                        }
1909                        else {
1910                                if (get_sha1_hex(rec + 41, logged_sha1))
1911                                        die("Log %s is corrupt.", logfile);
1912                                if (hashcmp(logged_sha1, sha1)) {
1913                                        warning("Log %s unexpectedly ended on %s.",
1914                                                logfile, show_date(date, tz, DATE_RFC2822));
1915                                }
1916                        }
1917                        munmap(log_mapped, mapsz);
1918                        return 0;
1919                }
1920                lastrec = rec;
1921                if (cnt > 0)
1922                        cnt--;
1923        }
1924
1925        rec = logdata;
1926        while (rec < logend && *rec != '>' && *rec != '\n')
1927                rec++;
1928        if (rec == logend || *rec == '\n')
1929                die("Log %s is corrupt.", logfile);
1930        date = strtoul(rec + 1, &tz_c, 10);
1931        tz = strtoul(tz_c, NULL, 10);
1932        if (get_sha1_hex(logdata, sha1))
1933                die("Log %s is corrupt.", logfile);
1934        if (is_null_sha1(sha1)) {
1935                if (get_sha1_hex(logdata + 41, sha1))
1936                        die("Log %s is corrupt.", logfile);
1937        }
1938        if (msg)
1939                *msg = ref_msg(logdata, logend);
1940        munmap(log_mapped, mapsz);
1941
1942        if (cutoff_time)
1943                *cutoff_time = date;
1944        if (cutoff_tz)
1945                *cutoff_tz = tz;
1946        if (cutoff_cnt)
1947                *cutoff_cnt = reccnt;
1948        return 1;
1949}
1950
1951int for_each_recent_reflog_ent(const char *refname, each_reflog_ent_fn fn, long ofs, void *cb_data)
1952{
1953        const char *logfile;
1954        FILE *logfp;
1955        struct strbuf sb = STRBUF_INIT;
1956        int ret = 0;
1957
1958        logfile = git_path("logs/%s", refname);
1959        logfp = fopen(logfile, "r");
1960        if (!logfp)
1961                return -1;
1962
1963        if (ofs) {
1964                struct stat statbuf;
1965                if (fstat(fileno(logfp), &statbuf) ||
1966                    statbuf.st_size < ofs ||
1967                    fseek(logfp, -ofs, SEEK_END) ||
1968                    strbuf_getwholeline(&sb, logfp, '\n')) {
1969                        fclose(logfp);
1970                        strbuf_release(&sb);
1971                        return -1;
1972                }
1973        }
1974
1975        while (!strbuf_getwholeline(&sb, logfp, '\n')) {
1976                unsigned char osha1[20], nsha1[20];
1977                char *email_end, *message;
1978                unsigned long timestamp;
1979                int tz;
1980
1981                /* old SP new SP name <email> SP time TAB msg LF */
1982                if (sb.len < 83 || sb.buf[sb.len - 1] != '\n' ||
1983                    get_sha1_hex(sb.buf, osha1) || sb.buf[40] != ' ' ||
1984                    get_sha1_hex(sb.buf + 41, nsha1) || sb.buf[81] != ' ' ||
1985                    !(email_end = strchr(sb.buf + 82, '>')) ||
1986                    email_end[1] != ' ' ||
1987                    !(timestamp = strtoul(email_end + 2, &message, 10)) ||
1988                    !message || message[0] != ' ' ||
1989                    (message[1] != '+' && message[1] != '-') ||
1990                    !isdigit(message[2]) || !isdigit(message[3]) ||
1991                    !isdigit(message[4]) || !isdigit(message[5]))
1992                        continue; /* corrupt? */
1993                email_end[1] = '\0';
1994                tz = strtol(message + 1, NULL, 10);
1995                if (message[6] != '\t')
1996                        message += 6;
1997                else
1998                        message += 7;
1999                ret = fn(osha1, nsha1, sb.buf + 82, timestamp, tz, message,
2000                         cb_data);
2001                if (ret)
2002                        break;
2003        }
2004        fclose(logfp);
2005        strbuf_release(&sb);
2006        return ret;
2007}
2008
2009int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data)
2010{
2011        return for_each_recent_reflog_ent(refname, fn, 0, cb_data);
2012}
2013
2014static int do_for_each_reflog(const char *base, each_ref_fn fn, void *cb_data)
2015{
2016        DIR *dir = opendir(git_path("logs/%s", base));
2017        int retval = 0;
2018
2019        if (dir) {
2020                struct dirent *de;
2021                int baselen = strlen(base);
2022                char *log = xmalloc(baselen + 257);
2023
2024                memcpy(log, base, baselen);
2025                if (baselen && base[baselen-1] != '/')
2026                        log[baselen++] = '/';
2027
2028                while ((de = readdir(dir)) != NULL) {
2029                        struct stat st;
2030                        int namelen;
2031
2032                        if (de->d_name[0] == '.')
2033                                continue;
2034                        namelen = strlen(de->d_name);
2035                        if (namelen > 255)
2036                                continue;
2037                        if (has_extension(de->d_name, ".lock"))
2038                                continue;
2039                        memcpy(log + baselen, de->d_name, namelen+1);
2040                        if (stat(git_path("logs/%s", log), &st) < 0)
2041                                continue;
2042                        if (S_ISDIR(st.st_mode)) {
2043                                retval = do_for_each_reflog(log, fn, cb_data);
2044                        } else {
2045                                unsigned char sha1[20];
2046                                if (read_ref_full(log, sha1, 0, NULL))
2047                                        retval = error("bad ref for %s", log);
2048                                else
2049                                        retval = fn(log, sha1, 0, cb_data);
2050                        }
2051                        if (retval)
2052                                break;
2053                }
2054                free(log);
2055                closedir(dir);
2056        }
2057        else if (*base)
2058                return errno;
2059        return retval;
2060}
2061
2062int for_each_reflog(each_ref_fn fn, void *cb_data)
2063{
2064        return do_for_each_reflog("", fn, cb_data);
2065}
2066
2067int update_ref(const char *action, const char *refname,
2068                const unsigned char *sha1, const unsigned char *oldval,
2069                int flags, enum action_on_err onerr)
2070{
2071        static struct ref_lock *lock;
2072        lock = lock_any_ref_for_update(refname, oldval, flags);
2073        if (!lock) {
2074                const char *str = "Cannot lock the ref '%s'.";
2075                switch (onerr) {
2076                case MSG_ON_ERR: error(str, refname); break;
2077                case DIE_ON_ERR: die(str, refname); break;
2078                case QUIET_ON_ERR: break;
2079                }
2080                return 1;
2081        }
2082        if (write_ref_sha1(lock, sha1, action) < 0) {
2083                const char *str = "Cannot update the ref '%s'.";
2084                switch (onerr) {
2085                case MSG_ON_ERR: error(str, refname); break;
2086                case DIE_ON_ERR: die(str, refname); break;
2087                case QUIET_ON_ERR: break;
2088                }
2089                return 1;
2090        }
2091        return 0;
2092}
2093
2094struct ref *find_ref_by_name(const struct ref *list, const char *name)
2095{
2096        for ( ; list; list = list->next)
2097                if (!strcmp(list->name, name))
2098                        return (struct ref *)list;
2099        return NULL;
2100}
2101
2102/*
2103 * generate a format suitable for scanf from a ref_rev_parse_rules
2104 * rule, that is replace the "%.*s" spec with a "%s" spec
2105 */
2106static void gen_scanf_fmt(char *scanf_fmt, const char *rule)
2107{
2108        char *spec;
2109
2110        spec = strstr(rule, "%.*s");
2111        if (!spec || strstr(spec + 4, "%.*s"))
2112                die("invalid rule in ref_rev_parse_rules: %s", rule);
2113
2114        /* copy all until spec */
2115        strncpy(scanf_fmt, rule, spec - rule);
2116        scanf_fmt[spec - rule] = '\0';
2117        /* copy new spec */
2118        strcat(scanf_fmt, "%s");
2119        /* copy remaining rule */
2120        strcat(scanf_fmt, spec + 4);
2121
2122        return;
2123}
2124
2125char *shorten_unambiguous_ref(const char *refname, int strict)
2126{
2127        int i;
2128        static char **scanf_fmts;
2129        static int nr_rules;
2130        char *short_name;
2131
2132        /* pre generate scanf formats from ref_rev_parse_rules[] */
2133        if (!nr_rules) {
2134                size_t total_len = 0;
2135
2136                /* the rule list is NULL terminated, count them first */
2137                for (; ref_rev_parse_rules[nr_rules]; nr_rules++)
2138                        /* no +1 because strlen("%s") < strlen("%.*s") */
2139                        total_len += strlen(ref_rev_parse_rules[nr_rules]);
2140
2141                scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
2142
2143                total_len = 0;
2144                for (i = 0; i < nr_rules; i++) {
2145                        scanf_fmts[i] = (char *)&scanf_fmts[nr_rules]
2146                                        + total_len;
2147                        gen_scanf_fmt(scanf_fmts[i], ref_rev_parse_rules[i]);
2148                        total_len += strlen(ref_rev_parse_rules[i]);
2149                }
2150        }
2151
2152        /* bail out if there are no rules */
2153        if (!nr_rules)
2154                return xstrdup(refname);
2155
2156        /* buffer for scanf result, at most refname must fit */
2157        short_name = xstrdup(refname);
2158
2159        /* skip first rule, it will always match */
2160        for (i = nr_rules - 1; i > 0 ; --i) {
2161                int j;
2162                int rules_to_fail = i;
2163                int short_name_len;
2164
2165                if (1 != sscanf(refname, scanf_fmts[i], short_name))
2166                        continue;
2167
2168                short_name_len = strlen(short_name);
2169
2170                /*
2171                 * in strict mode, all (except the matched one) rules
2172                 * must fail to resolve to a valid non-ambiguous ref
2173                 */
2174                if (strict)
2175                        rules_to_fail = nr_rules;
2176
2177                /*
2178                 * check if the short name resolves to a valid ref,
2179                 * but use only rules prior to the matched one
2180                 */
2181                for (j = 0; j < rules_to_fail; j++) {
2182                        const char *rule = ref_rev_parse_rules[j];
2183                        char refname[PATH_MAX];
2184
2185                        /* skip matched rule */
2186                        if (i == j)
2187                                continue;
2188
2189                        /*
2190                         * the short name is ambiguous, if it resolves
2191                         * (with this previous rule) to a valid ref
2192                         * read_ref() returns 0 on success
2193                         */
2194                        mksnpath(refname, sizeof(refname),
2195                                 rule, short_name_len, short_name);
2196                        if (ref_exists(refname))
2197                                break;
2198                }
2199
2200                /*
2201                 * short name is non-ambiguous if all previous rules
2202                 * haven't resolved to a valid ref
2203                 */
2204                if (j == rules_to_fail)
2205                        return short_name;
2206        }
2207
2208        free(short_name);
2209        return xstrdup(refname);
2210}