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