sha1_file.con commit add: introduce "--renormalize" (9472935)
   1/*
   2 * GIT - The information manager from hell
   3 *
   4 * Copyright (C) Linus Torvalds, 2005
   5 *
   6 * This handles basic git sha1 object files - packing, unpacking,
   7 * creation etc.
   8 */
   9#include "cache.h"
  10#include "config.h"
  11#include "string-list.h"
  12#include "lockfile.h"
  13#include "delta.h"
  14#include "pack.h"
  15#include "blob.h"
  16#include "commit.h"
  17#include "run-command.h"
  18#include "tag.h"
  19#include "tree.h"
  20#include "tree-walk.h"
  21#include "refs.h"
  22#include "pack-revindex.h"
  23#include "sha1-lookup.h"
  24#include "bulk-checkin.h"
  25#include "streaming.h"
  26#include "dir.h"
  27#include "mru.h"
  28#include "list.h"
  29#include "mergesort.h"
  30#include "quote.h"
  31#include "packfile.h"
  32
  33const unsigned char null_sha1[GIT_MAX_RAWSZ];
  34const struct object_id null_oid;
  35const struct object_id empty_tree_oid = {
  36        EMPTY_TREE_SHA1_BIN_LITERAL
  37};
  38const struct object_id empty_blob_oid = {
  39        EMPTY_BLOB_SHA1_BIN_LITERAL
  40};
  41
  42/*
  43 * This is meant to hold a *small* number of objects that you would
  44 * want read_sha1_file() to be able to return, but yet you do not want
  45 * to write them into the object store (e.g. a browse-only
  46 * application).
  47 */
  48static struct cached_object {
  49        unsigned char sha1[20];
  50        enum object_type type;
  51        void *buf;
  52        unsigned long size;
  53} *cached_objects;
  54static int cached_object_nr, cached_object_alloc;
  55
  56static struct cached_object empty_tree = {
  57        EMPTY_TREE_SHA1_BIN_LITERAL,
  58        OBJ_TREE,
  59        "",
  60        0
  61};
  62
  63static struct cached_object *find_cached_object(const unsigned char *sha1)
  64{
  65        int i;
  66        struct cached_object *co = cached_objects;
  67
  68        for (i = 0; i < cached_object_nr; i++, co++) {
  69                if (!hashcmp(co->sha1, sha1))
  70                        return co;
  71        }
  72        if (!hashcmp(sha1, empty_tree.sha1))
  73                return &empty_tree;
  74        return NULL;
  75}
  76
  77
  78static enum safe_crlf get_safe_crlf(unsigned flags)
  79{
  80        if (flags & HASH_RENORMALIZE)
  81                return SAFE_CRLF_RENORMALIZE;
  82        else if (flags & HASH_WRITE_OBJECT)
  83                return safe_crlf;
  84        else
  85                return SAFE_CRLF_FALSE;
  86}
  87
  88
  89int mkdir_in_gitdir(const char *path)
  90{
  91        if (mkdir(path, 0777)) {
  92                int saved_errno = errno;
  93                struct stat st;
  94                struct strbuf sb = STRBUF_INIT;
  95
  96                if (errno != EEXIST)
  97                        return -1;
  98                /*
  99                 * Are we looking at a path in a symlinked worktree
 100                 * whose original repository does not yet have it?
 101                 * e.g. .git/rr-cache pointing at its original
 102                 * repository in which the user hasn't performed any
 103                 * conflict resolution yet?
 104                 */
 105                if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
 106                    strbuf_readlink(&sb, path, st.st_size) ||
 107                    !is_absolute_path(sb.buf) ||
 108                    mkdir(sb.buf, 0777)) {
 109                        strbuf_release(&sb);
 110                        errno = saved_errno;
 111                        return -1;
 112                }
 113                strbuf_release(&sb);
 114        }
 115        return adjust_shared_perm(path);
 116}
 117
 118enum scld_error safe_create_leading_directories(char *path)
 119{
 120        char *next_component = path + offset_1st_component(path);
 121        enum scld_error ret = SCLD_OK;
 122
 123        while (ret == SCLD_OK && next_component) {
 124                struct stat st;
 125                char *slash = next_component, slash_character;
 126
 127                while (*slash && !is_dir_sep(*slash))
 128                        slash++;
 129
 130                if (!*slash)
 131                        break;
 132
 133                next_component = slash + 1;
 134                while (is_dir_sep(*next_component))
 135                        next_component++;
 136                if (!*next_component)
 137                        break;
 138
 139                slash_character = *slash;
 140                *slash = '\0';
 141                if (!stat(path, &st)) {
 142                        /* path exists */
 143                        if (!S_ISDIR(st.st_mode)) {
 144                                errno = ENOTDIR;
 145                                ret = SCLD_EXISTS;
 146                        }
 147                } else if (mkdir(path, 0777)) {
 148                        if (errno == EEXIST &&
 149                            !stat(path, &st) && S_ISDIR(st.st_mode))
 150                                ; /* somebody created it since we checked */
 151                        else if (errno == ENOENT)
 152                                /*
 153                                 * Either mkdir() failed because
 154                                 * somebody just pruned the containing
 155                                 * directory, or stat() failed because
 156                                 * the file that was in our way was
 157                                 * just removed.  Either way, inform
 158                                 * the caller that it might be worth
 159                                 * trying again:
 160                                 */
 161                                ret = SCLD_VANISHED;
 162                        else
 163                                ret = SCLD_FAILED;
 164                } else if (adjust_shared_perm(path)) {
 165                        ret = SCLD_PERMS;
 166                }
 167                *slash = slash_character;
 168        }
 169        return ret;
 170}
 171
 172enum scld_error safe_create_leading_directories_const(const char *path)
 173{
 174        int save_errno;
 175        /* path points to cache entries, so xstrdup before messing with it */
 176        char *buf = xstrdup(path);
 177        enum scld_error result = safe_create_leading_directories(buf);
 178
 179        save_errno = errno;
 180        free(buf);
 181        errno = save_errno;
 182        return result;
 183}
 184
 185int raceproof_create_file(const char *path, create_file_fn fn, void *cb)
 186{
 187        /*
 188         * The number of times we will try to remove empty directories
 189         * in the way of path. This is only 1 because if another
 190         * process is racily creating directories that conflict with
 191         * us, we don't want to fight against them.
 192         */
 193        int remove_directories_remaining = 1;
 194
 195        /*
 196         * The number of times that we will try to create the
 197         * directories containing path. We are willing to attempt this
 198         * more than once, because another process could be trying to
 199         * clean up empty directories at the same time as we are
 200         * trying to create them.
 201         */
 202        int create_directories_remaining = 3;
 203
 204        /* A scratch copy of path, filled lazily if we need it: */
 205        struct strbuf path_copy = STRBUF_INIT;
 206
 207        int ret, save_errno;
 208
 209        /* Sanity check: */
 210        assert(*path);
 211
 212retry_fn:
 213        ret = fn(path, cb);
 214        save_errno = errno;
 215        if (!ret)
 216                goto out;
 217
 218        if (errno == EISDIR && remove_directories_remaining-- > 0) {
 219                /*
 220                 * A directory is in the way. Maybe it is empty; try
 221                 * to remove it:
 222                 */
 223                if (!path_copy.len)
 224                        strbuf_addstr(&path_copy, path);
 225
 226                if (!remove_dir_recursively(&path_copy, REMOVE_DIR_EMPTY_ONLY))
 227                        goto retry_fn;
 228        } else if (errno == ENOENT && create_directories_remaining-- > 0) {
 229                /*
 230                 * Maybe the containing directory didn't exist, or
 231                 * maybe it was just deleted by a process that is
 232                 * racing with us to clean up empty directories. Try
 233                 * to create it:
 234                 */
 235                enum scld_error scld_result;
 236
 237                if (!path_copy.len)
 238                        strbuf_addstr(&path_copy, path);
 239
 240                do {
 241                        scld_result = safe_create_leading_directories(path_copy.buf);
 242                        if (scld_result == SCLD_OK)
 243                                goto retry_fn;
 244                } while (scld_result == SCLD_VANISHED && create_directories_remaining-- > 0);
 245        }
 246
 247out:
 248        strbuf_release(&path_copy);
 249        errno = save_errno;
 250        return ret;
 251}
 252
 253static void fill_sha1_path(struct strbuf *buf, const unsigned char *sha1)
 254{
 255        int i;
 256        for (i = 0; i < 20; i++) {
 257                static char hex[] = "0123456789abcdef";
 258                unsigned int val = sha1[i];
 259                strbuf_addch(buf, hex[val >> 4]);
 260                strbuf_addch(buf, hex[val & 0xf]);
 261                if (!i)
 262                        strbuf_addch(buf, '/');
 263        }
 264}
 265
 266const char *sha1_file_name(const unsigned char *sha1)
 267{
 268        static struct strbuf buf = STRBUF_INIT;
 269
 270        strbuf_reset(&buf);
 271        strbuf_addf(&buf, "%s/", get_object_directory());
 272
 273        fill_sha1_path(&buf, sha1);
 274        return buf.buf;
 275}
 276
 277struct strbuf *alt_scratch_buf(struct alternate_object_database *alt)
 278{
 279        strbuf_setlen(&alt->scratch, alt->base_len);
 280        return &alt->scratch;
 281}
 282
 283static const char *alt_sha1_path(struct alternate_object_database *alt,
 284                                 const unsigned char *sha1)
 285{
 286        struct strbuf *buf = alt_scratch_buf(alt);
 287        fill_sha1_path(buf, sha1);
 288        return buf->buf;
 289}
 290
 291struct alternate_object_database *alt_odb_list;
 292static struct alternate_object_database **alt_odb_tail;
 293
 294/*
 295 * Return non-zero iff the path is usable as an alternate object database.
 296 */
 297static int alt_odb_usable(struct strbuf *path, const char *normalized_objdir)
 298{
 299        struct alternate_object_database *alt;
 300
 301        /* Detect cases where alternate disappeared */
 302        if (!is_directory(path->buf)) {
 303                error("object directory %s does not exist; "
 304                      "check .git/objects/info/alternates.",
 305                      path->buf);
 306                return 0;
 307        }
 308
 309        /*
 310         * Prevent the common mistake of listing the same
 311         * thing twice, or object directory itself.
 312         */
 313        for (alt = alt_odb_list; alt; alt = alt->next) {
 314                if (!fspathcmp(path->buf, alt->path))
 315                        return 0;
 316        }
 317        if (!fspathcmp(path->buf, normalized_objdir))
 318                return 0;
 319
 320        return 1;
 321}
 322
 323/*
 324 * Prepare alternate object database registry.
 325 *
 326 * The variable alt_odb_list points at the list of struct
 327 * alternate_object_database.  The elements on this list come from
 328 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
 329 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
 330 * whose contents is similar to that environment variable but can be
 331 * LF separated.  Its base points at a statically allocated buffer that
 332 * contains "/the/directory/corresponding/to/.git/objects/...", while
 333 * its name points just after the slash at the end of ".git/objects/"
 334 * in the example above, and has enough space to hold 40-byte hex
 335 * SHA1, an extra slash for the first level indirection, and the
 336 * terminating NUL.
 337 */
 338static void read_info_alternates(const char * relative_base, int depth);
 339static int link_alt_odb_entry(const char *entry, const char *relative_base,
 340        int depth, const char *normalized_objdir)
 341{
 342        struct alternate_object_database *ent;
 343        struct strbuf pathbuf = STRBUF_INIT;
 344
 345        if (!is_absolute_path(entry) && relative_base) {
 346                strbuf_realpath(&pathbuf, relative_base, 1);
 347                strbuf_addch(&pathbuf, '/');
 348        }
 349        strbuf_addstr(&pathbuf, entry);
 350
 351        if (strbuf_normalize_path(&pathbuf) < 0 && relative_base) {
 352                error("unable to normalize alternate object path: %s",
 353                      pathbuf.buf);
 354                strbuf_release(&pathbuf);
 355                return -1;
 356        }
 357
 358        /*
 359         * The trailing slash after the directory name is given by
 360         * this function at the end. Remove duplicates.
 361         */
 362        while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
 363                strbuf_setlen(&pathbuf, pathbuf.len - 1);
 364
 365        if (!alt_odb_usable(&pathbuf, normalized_objdir)) {
 366                strbuf_release(&pathbuf);
 367                return -1;
 368        }
 369
 370        ent = alloc_alt_odb(pathbuf.buf);
 371
 372        /* add the alternate entry */
 373        *alt_odb_tail = ent;
 374        alt_odb_tail = &(ent->next);
 375        ent->next = NULL;
 376
 377        /* recursively add alternates */
 378        read_info_alternates(pathbuf.buf, depth + 1);
 379
 380        strbuf_release(&pathbuf);
 381        return 0;
 382}
 383
 384static const char *parse_alt_odb_entry(const char *string,
 385                                       int sep,
 386                                       struct strbuf *out)
 387{
 388        const char *end;
 389
 390        strbuf_reset(out);
 391
 392        if (*string == '#') {
 393                /* comment; consume up to next separator */
 394                end = strchrnul(string, sep);
 395        } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
 396                /*
 397                 * quoted path; unquote_c_style has copied the
 398                 * data for us and set "end". Broken quoting (e.g.,
 399                 * an entry that doesn't end with a quote) falls
 400                 * back to the unquoted case below.
 401                 */
 402        } else {
 403                /* normal, unquoted path */
 404                end = strchrnul(string, sep);
 405                strbuf_add(out, string, end - string);
 406        }
 407
 408        if (*end)
 409                end++;
 410        return end;
 411}
 412
 413static void link_alt_odb_entries(const char *alt, int sep,
 414                                 const char *relative_base, int depth)
 415{
 416        struct strbuf objdirbuf = STRBUF_INIT;
 417        struct strbuf entry = STRBUF_INIT;
 418
 419        if (depth > 5) {
 420                error("%s: ignoring alternate object stores, nesting too deep.",
 421                                relative_base);
 422                return;
 423        }
 424
 425        strbuf_add_absolute_path(&objdirbuf, get_object_directory());
 426        if (strbuf_normalize_path(&objdirbuf) < 0)
 427                die("unable to normalize object directory: %s",
 428                    objdirbuf.buf);
 429
 430        while (*alt) {
 431                alt = parse_alt_odb_entry(alt, sep, &entry);
 432                if (!entry.len)
 433                        continue;
 434                link_alt_odb_entry(entry.buf, relative_base, depth, objdirbuf.buf);
 435        }
 436        strbuf_release(&entry);
 437        strbuf_release(&objdirbuf);
 438}
 439
 440static void read_info_alternates(const char * relative_base, int depth)
 441{
 442        char *path;
 443        struct strbuf buf = STRBUF_INIT;
 444
 445        path = xstrfmt("%s/info/alternates", relative_base);
 446        if (strbuf_read_file(&buf, path, 1024) < 0) {
 447                warn_on_fopen_errors(path);
 448                free(path);
 449                return;
 450        }
 451
 452        link_alt_odb_entries(buf.buf, '\n', relative_base, depth);
 453        strbuf_release(&buf);
 454        free(path);
 455}
 456
 457struct alternate_object_database *alloc_alt_odb(const char *dir)
 458{
 459        struct alternate_object_database *ent;
 460
 461        FLEX_ALLOC_STR(ent, path, dir);
 462        strbuf_init(&ent->scratch, 0);
 463        strbuf_addf(&ent->scratch, "%s/", dir);
 464        ent->base_len = ent->scratch.len;
 465
 466        return ent;
 467}
 468
 469void add_to_alternates_file(const char *reference)
 470{
 471        struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
 472        char *alts = git_pathdup("objects/info/alternates");
 473        FILE *in, *out;
 474
 475        hold_lock_file_for_update(lock, alts, LOCK_DIE_ON_ERROR);
 476        out = fdopen_lock_file(lock, "w");
 477        if (!out)
 478                die_errno("unable to fdopen alternates lockfile");
 479
 480        in = fopen(alts, "r");
 481        if (in) {
 482                struct strbuf line = STRBUF_INIT;
 483                int found = 0;
 484
 485                while (strbuf_getline(&line, in) != EOF) {
 486                        if (!strcmp(reference, line.buf)) {
 487                                found = 1;
 488                                break;
 489                        }
 490                        fprintf_or_die(out, "%s\n", line.buf);
 491                }
 492
 493                strbuf_release(&line);
 494                fclose(in);
 495
 496                if (found) {
 497                        rollback_lock_file(lock);
 498                        lock = NULL;
 499                }
 500        }
 501        else if (errno != ENOENT)
 502                die_errno("unable to read alternates file");
 503
 504        if (lock) {
 505                fprintf_or_die(out, "%s\n", reference);
 506                if (commit_lock_file(lock))
 507                        die_errno("unable to move new alternates file into place");
 508                if (alt_odb_tail)
 509                        link_alt_odb_entries(reference, '\n', NULL, 0);
 510        }
 511        free(alts);
 512}
 513
 514void add_to_alternates_memory(const char *reference)
 515{
 516        /*
 517         * Make sure alternates are initialized, or else our entry may be
 518         * overwritten when they are.
 519         */
 520        prepare_alt_odb();
 521
 522        link_alt_odb_entries(reference, '\n', NULL, 0);
 523}
 524
 525/*
 526 * Compute the exact path an alternate is at and returns it. In case of
 527 * error NULL is returned and the human readable error is added to `err`
 528 * `path` may be relative and should point to $GITDIR.
 529 * `err` must not be null.
 530 */
 531char *compute_alternate_path(const char *path, struct strbuf *err)
 532{
 533        char *ref_git = NULL;
 534        const char *repo, *ref_git_s;
 535        int seen_error = 0;
 536
 537        ref_git_s = real_path_if_valid(path);
 538        if (!ref_git_s) {
 539                seen_error = 1;
 540                strbuf_addf(err, _("path '%s' does not exist"), path);
 541                goto out;
 542        } else
 543                /*
 544                 * Beware: read_gitfile(), real_path() and mkpath()
 545                 * return static buffer
 546                 */
 547                ref_git = xstrdup(ref_git_s);
 548
 549        repo = read_gitfile(ref_git);
 550        if (!repo)
 551                repo = read_gitfile(mkpath("%s/.git", ref_git));
 552        if (repo) {
 553                free(ref_git);
 554                ref_git = xstrdup(repo);
 555        }
 556
 557        if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
 558                char *ref_git_git = mkpathdup("%s/.git", ref_git);
 559                free(ref_git);
 560                ref_git = ref_git_git;
 561        } else if (!is_directory(mkpath("%s/objects", ref_git))) {
 562                struct strbuf sb = STRBUF_INIT;
 563                seen_error = 1;
 564                if (get_common_dir(&sb, ref_git)) {
 565                        strbuf_addf(err,
 566                                    _("reference repository '%s' as a linked "
 567                                      "checkout is not supported yet."),
 568                                    path);
 569                        goto out;
 570                }
 571
 572                strbuf_addf(err, _("reference repository '%s' is not a "
 573                                        "local repository."), path);
 574                goto out;
 575        }
 576
 577        if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
 578                strbuf_addf(err, _("reference repository '%s' is shallow"),
 579                            path);
 580                seen_error = 1;
 581                goto out;
 582        }
 583
 584        if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
 585                strbuf_addf(err,
 586                            _("reference repository '%s' is grafted"),
 587                            path);
 588                seen_error = 1;
 589                goto out;
 590        }
 591
 592out:
 593        if (seen_error) {
 594                FREE_AND_NULL(ref_git);
 595        }
 596
 597        return ref_git;
 598}
 599
 600int foreach_alt_odb(alt_odb_fn fn, void *cb)
 601{
 602        struct alternate_object_database *ent;
 603        int r = 0;
 604
 605        prepare_alt_odb();
 606        for (ent = alt_odb_list; ent; ent = ent->next) {
 607                r = fn(ent, cb);
 608                if (r)
 609                        break;
 610        }
 611        return r;
 612}
 613
 614void prepare_alt_odb(void)
 615{
 616        const char *alt;
 617
 618        if (alt_odb_tail)
 619                return;
 620
 621        alt = getenv(ALTERNATE_DB_ENVIRONMENT);
 622        if (!alt) alt = "";
 623
 624        alt_odb_tail = &alt_odb_list;
 625        link_alt_odb_entries(alt, PATH_SEP, NULL, 0);
 626
 627        read_info_alternates(get_object_directory(), 0);
 628}
 629
 630/* Returns 1 if we have successfully freshened the file, 0 otherwise. */
 631static int freshen_file(const char *fn)
 632{
 633        struct utimbuf t;
 634        t.actime = t.modtime = time(NULL);
 635        return !utime(fn, &t);
 636}
 637
 638/*
 639 * All of the check_and_freshen functions return 1 if the file exists and was
 640 * freshened (if freshening was requested), 0 otherwise. If they return
 641 * 0, you should not assume that it is safe to skip a write of the object (it
 642 * either does not exist on disk, or has a stale mtime and may be subject to
 643 * pruning).
 644 */
 645int check_and_freshen_file(const char *fn, int freshen)
 646{
 647        if (access(fn, F_OK))
 648                return 0;
 649        if (freshen && !freshen_file(fn))
 650                return 0;
 651        return 1;
 652}
 653
 654static int check_and_freshen_local(const unsigned char *sha1, int freshen)
 655{
 656        return check_and_freshen_file(sha1_file_name(sha1), freshen);
 657}
 658
 659static int check_and_freshen_nonlocal(const unsigned char *sha1, int freshen)
 660{
 661        struct alternate_object_database *alt;
 662        prepare_alt_odb();
 663        for (alt = alt_odb_list; alt; alt = alt->next) {
 664                const char *path = alt_sha1_path(alt, sha1);
 665                if (check_and_freshen_file(path, freshen))
 666                        return 1;
 667        }
 668        return 0;
 669}
 670
 671static int check_and_freshen(const unsigned char *sha1, int freshen)
 672{
 673        return check_and_freshen_local(sha1, freshen) ||
 674               check_and_freshen_nonlocal(sha1, freshen);
 675}
 676
 677int has_loose_object_nonlocal(const unsigned char *sha1)
 678{
 679        return check_and_freshen_nonlocal(sha1, 0);
 680}
 681
 682static int has_loose_object(const unsigned char *sha1)
 683{
 684        return check_and_freshen(sha1, 0);
 685}
 686
 687static void mmap_limit_check(size_t length)
 688{
 689        static size_t limit = 0;
 690        if (!limit) {
 691                limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
 692                if (!limit)
 693                        limit = SIZE_MAX;
 694        }
 695        if (length > limit)
 696                die("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX,
 697                    (uintmax_t)length, (uintmax_t)limit);
 698}
 699
 700void *xmmap_gently(void *start, size_t length,
 701                  int prot, int flags, int fd, off_t offset)
 702{
 703        void *ret;
 704
 705        mmap_limit_check(length);
 706        ret = mmap(start, length, prot, flags, fd, offset);
 707        if (ret == MAP_FAILED) {
 708                if (!length)
 709                        return NULL;
 710                release_pack_memory(length);
 711                ret = mmap(start, length, prot, flags, fd, offset);
 712        }
 713        return ret;
 714}
 715
 716void *xmmap(void *start, size_t length,
 717        int prot, int flags, int fd, off_t offset)
 718{
 719        void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
 720        if (ret == MAP_FAILED)
 721                die_errno("mmap failed");
 722        return ret;
 723}
 724
 725/*
 726 * With an in-core object data in "map", rehash it to make sure the
 727 * object name actually matches "sha1" to detect object corruption.
 728 * With "map" == NULL, try reading the object named with "sha1" using
 729 * the streaming interface and rehash it to do the same.
 730 */
 731int check_sha1_signature(const unsigned char *sha1, void *map,
 732                         unsigned long size, const char *type)
 733{
 734        unsigned char real_sha1[20];
 735        enum object_type obj_type;
 736        struct git_istream *st;
 737        git_SHA_CTX c;
 738        char hdr[32];
 739        int hdrlen;
 740
 741        if (map) {
 742                hash_sha1_file(map, size, type, real_sha1);
 743                return hashcmp(sha1, real_sha1) ? -1 : 0;
 744        }
 745
 746        st = open_istream(sha1, &obj_type, &size, NULL);
 747        if (!st)
 748                return -1;
 749
 750        /* Generate the header */
 751        hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(obj_type), size) + 1;
 752
 753        /* Sha1.. */
 754        git_SHA1_Init(&c);
 755        git_SHA1_Update(&c, hdr, hdrlen);
 756        for (;;) {
 757                char buf[1024 * 16];
 758                ssize_t readlen = read_istream(st, buf, sizeof(buf));
 759
 760                if (readlen < 0) {
 761                        close_istream(st);
 762                        return -1;
 763                }
 764                if (!readlen)
 765                        break;
 766                git_SHA1_Update(&c, buf, readlen);
 767        }
 768        git_SHA1_Final(real_sha1, &c);
 769        close_istream(st);
 770        return hashcmp(sha1, real_sha1) ? -1 : 0;
 771}
 772
 773int git_open_cloexec(const char *name, int flags)
 774{
 775        int fd;
 776        static int o_cloexec = O_CLOEXEC;
 777
 778        fd = open(name, flags | o_cloexec);
 779        if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
 780                /* Try again w/o O_CLOEXEC: the kernel might not support it */
 781                o_cloexec &= ~O_CLOEXEC;
 782                fd = open(name, flags | o_cloexec);
 783        }
 784
 785#if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
 786        {
 787                static int fd_cloexec = FD_CLOEXEC;
 788
 789                if (!o_cloexec && 0 <= fd && fd_cloexec) {
 790                        /* Opened w/o O_CLOEXEC?  try with fcntl(2) to add it */
 791                        int flags = fcntl(fd, F_GETFD);
 792                        if (fcntl(fd, F_SETFD, flags | fd_cloexec))
 793                                fd_cloexec = 0;
 794                }
 795        }
 796#endif
 797        return fd;
 798}
 799
 800/*
 801 * Find "sha1" as a loose object in the local repository or in an alternate.
 802 * Returns 0 on success, negative on failure.
 803 *
 804 * The "path" out-parameter will give the path of the object we found (if any).
 805 * Note that it may point to static storage and is only valid until another
 806 * call to sha1_file_name(), etc.
 807 */
 808static int stat_sha1_file(const unsigned char *sha1, struct stat *st,
 809                          const char **path)
 810{
 811        struct alternate_object_database *alt;
 812
 813        *path = sha1_file_name(sha1);
 814        if (!lstat(*path, st))
 815                return 0;
 816
 817        prepare_alt_odb();
 818        errno = ENOENT;
 819        for (alt = alt_odb_list; alt; alt = alt->next) {
 820                *path = alt_sha1_path(alt, sha1);
 821                if (!lstat(*path, st))
 822                        return 0;
 823        }
 824
 825        return -1;
 826}
 827
 828/*
 829 * Like stat_sha1_file(), but actually open the object and return the
 830 * descriptor. See the caveats on the "path" parameter above.
 831 */
 832static int open_sha1_file(const unsigned char *sha1, const char **path)
 833{
 834        int fd;
 835        struct alternate_object_database *alt;
 836        int most_interesting_errno;
 837
 838        *path = sha1_file_name(sha1);
 839        fd = git_open(*path);
 840        if (fd >= 0)
 841                return fd;
 842        most_interesting_errno = errno;
 843
 844        prepare_alt_odb();
 845        for (alt = alt_odb_list; alt; alt = alt->next) {
 846                *path = alt_sha1_path(alt, sha1);
 847                fd = git_open(*path);
 848                if (fd >= 0)
 849                        return fd;
 850                if (most_interesting_errno == ENOENT)
 851                        most_interesting_errno = errno;
 852        }
 853        errno = most_interesting_errno;
 854        return -1;
 855}
 856
 857/*
 858 * Map the loose object at "path" if it is not NULL, or the path found by
 859 * searching for a loose object named "sha1".
 860 */
 861static void *map_sha1_file_1(const char *path,
 862                             const unsigned char *sha1,
 863                             unsigned long *size)
 864{
 865        void *map;
 866        int fd;
 867
 868        if (path)
 869                fd = git_open(path);
 870        else
 871                fd = open_sha1_file(sha1, &path);
 872        map = NULL;
 873        if (fd >= 0) {
 874                struct stat st;
 875
 876                if (!fstat(fd, &st)) {
 877                        *size = xsize_t(st.st_size);
 878                        if (!*size) {
 879                                /* mmap() is forbidden on empty files */
 880                                error("object file %s is empty", path);
 881                                return NULL;
 882                        }
 883                        map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
 884                }
 885                close(fd);
 886        }
 887        return map;
 888}
 889
 890void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
 891{
 892        return map_sha1_file_1(NULL, sha1, size);
 893}
 894
 895static int unpack_sha1_short_header(git_zstream *stream,
 896                                    unsigned char *map, unsigned long mapsize,
 897                                    void *buffer, unsigned long bufsiz)
 898{
 899        /* Get the data stream */
 900        memset(stream, 0, sizeof(*stream));
 901        stream->next_in = map;
 902        stream->avail_in = mapsize;
 903        stream->next_out = buffer;
 904        stream->avail_out = bufsiz;
 905
 906        git_inflate_init(stream);
 907        return git_inflate(stream, 0);
 908}
 909
 910int unpack_sha1_header(git_zstream *stream,
 911                       unsigned char *map, unsigned long mapsize,
 912                       void *buffer, unsigned long bufsiz)
 913{
 914        int status = unpack_sha1_short_header(stream, map, mapsize,
 915                                              buffer, bufsiz);
 916
 917        if (status < Z_OK)
 918                return status;
 919
 920        /* Make sure we have the terminating NUL */
 921        if (!memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
 922                return -1;
 923        return 0;
 924}
 925
 926static int unpack_sha1_header_to_strbuf(git_zstream *stream, unsigned char *map,
 927                                        unsigned long mapsize, void *buffer,
 928                                        unsigned long bufsiz, struct strbuf *header)
 929{
 930        int status;
 931
 932        status = unpack_sha1_short_header(stream, map, mapsize, buffer, bufsiz);
 933        if (status < Z_OK)
 934                return -1;
 935
 936        /*
 937         * Check if entire header is unpacked in the first iteration.
 938         */
 939        if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
 940                return 0;
 941
 942        /*
 943         * buffer[0..bufsiz] was not large enough.  Copy the partial
 944         * result out to header, and then append the result of further
 945         * reading the stream.
 946         */
 947        strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
 948        stream->next_out = buffer;
 949        stream->avail_out = bufsiz;
 950
 951        do {
 952                status = git_inflate(stream, 0);
 953                strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
 954                if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
 955                        return 0;
 956                stream->next_out = buffer;
 957                stream->avail_out = bufsiz;
 958        } while (status != Z_STREAM_END);
 959        return -1;
 960}
 961
 962static void *unpack_sha1_rest(git_zstream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
 963{
 964        int bytes = strlen(buffer) + 1;
 965        unsigned char *buf = xmallocz(size);
 966        unsigned long n;
 967        int status = Z_OK;
 968
 969        n = stream->total_out - bytes;
 970        if (n > size)
 971                n = size;
 972        memcpy(buf, (char *) buffer + bytes, n);
 973        bytes = n;
 974        if (bytes <= size) {
 975                /*
 976                 * The above condition must be (bytes <= size), not
 977                 * (bytes < size).  In other words, even though we
 978                 * expect no more output and set avail_out to zero,
 979                 * the input zlib stream may have bytes that express
 980                 * "this concludes the stream", and we *do* want to
 981                 * eat that input.
 982                 *
 983                 * Otherwise we would not be able to test that we
 984                 * consumed all the input to reach the expected size;
 985                 * we also want to check that zlib tells us that all
 986                 * went well with status == Z_STREAM_END at the end.
 987                 */
 988                stream->next_out = buf + bytes;
 989                stream->avail_out = size - bytes;
 990                while (status == Z_OK)
 991                        status = git_inflate(stream, Z_FINISH);
 992        }
 993        if (status == Z_STREAM_END && !stream->avail_in) {
 994                git_inflate_end(stream);
 995                return buf;
 996        }
 997
 998        if (status < 0)
 999                error("corrupt loose object '%s'", sha1_to_hex(sha1));
1000        else if (stream->avail_in)
1001                error("garbage at end of loose object '%s'",
1002                      sha1_to_hex(sha1));
1003        free(buf);
1004        return NULL;
1005}
1006
1007/*
1008 * We used to just use "sscanf()", but that's actually way
1009 * too permissive for what we want to check. So do an anal
1010 * object header parse by hand.
1011 */
1012static int parse_sha1_header_extended(const char *hdr, struct object_info *oi,
1013                               unsigned int flags)
1014{
1015        const char *type_buf = hdr;
1016        unsigned long size;
1017        int type, type_len = 0;
1018
1019        /*
1020         * The type can be of any size but is followed by
1021         * a space.
1022         */
1023        for (;;) {
1024                char c = *hdr++;
1025                if (!c)
1026                        return -1;
1027                if (c == ' ')
1028                        break;
1029                type_len++;
1030        }
1031
1032        type = type_from_string_gently(type_buf, type_len, 1);
1033        if (oi->typename)
1034                strbuf_add(oi->typename, type_buf, type_len);
1035        /*
1036         * Set type to 0 if its an unknown object and
1037         * we're obtaining the type using '--allow-unknown-type'
1038         * option.
1039         */
1040        if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE) && (type < 0))
1041                type = 0;
1042        else if (type < 0)
1043                die("invalid object type");
1044        if (oi->typep)
1045                *oi->typep = type;
1046
1047        /*
1048         * The length must follow immediately, and be in canonical
1049         * decimal format (ie "010" is not valid).
1050         */
1051        size = *hdr++ - '0';
1052        if (size > 9)
1053                return -1;
1054        if (size) {
1055                for (;;) {
1056                        unsigned long c = *hdr - '0';
1057                        if (c > 9)
1058                                break;
1059                        hdr++;
1060                        size = size * 10 + c;
1061                }
1062        }
1063
1064        if (oi->sizep)
1065                *oi->sizep = size;
1066
1067        /*
1068         * The length must be followed by a zero byte
1069         */
1070        return *hdr ? -1 : type;
1071}
1072
1073int parse_sha1_header(const char *hdr, unsigned long *sizep)
1074{
1075        struct object_info oi = OBJECT_INFO_INIT;
1076
1077        oi.sizep = sizep;
1078        return parse_sha1_header_extended(hdr, &oi, 0);
1079}
1080
1081static int sha1_loose_object_info(const unsigned char *sha1,
1082                                  struct object_info *oi,
1083                                  int flags)
1084{
1085        int status = 0;
1086        unsigned long mapsize;
1087        void *map;
1088        git_zstream stream;
1089        char hdr[32];
1090        struct strbuf hdrbuf = STRBUF_INIT;
1091        unsigned long size_scratch;
1092
1093        if (oi->delta_base_sha1)
1094                hashclr(oi->delta_base_sha1);
1095
1096        /*
1097         * If we don't care about type or size, then we don't
1098         * need to look inside the object at all. Note that we
1099         * do not optimize out the stat call, even if the
1100         * caller doesn't care about the disk-size, since our
1101         * return value implicitly indicates whether the
1102         * object even exists.
1103         */
1104        if (!oi->typep && !oi->typename && !oi->sizep && !oi->contentp) {
1105                const char *path;
1106                struct stat st;
1107                if (stat_sha1_file(sha1, &st, &path) < 0)
1108                        return -1;
1109                if (oi->disk_sizep)
1110                        *oi->disk_sizep = st.st_size;
1111                return 0;
1112        }
1113
1114        map = map_sha1_file(sha1, &mapsize);
1115        if (!map)
1116                return -1;
1117
1118        if (!oi->sizep)
1119                oi->sizep = &size_scratch;
1120
1121        if (oi->disk_sizep)
1122                *oi->disk_sizep = mapsize;
1123        if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE)) {
1124                if (unpack_sha1_header_to_strbuf(&stream, map, mapsize, hdr, sizeof(hdr), &hdrbuf) < 0)
1125                        status = error("unable to unpack %s header with --allow-unknown-type",
1126                                       sha1_to_hex(sha1));
1127        } else if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1128                status = error("unable to unpack %s header",
1129                               sha1_to_hex(sha1));
1130        if (status < 0)
1131                ; /* Do nothing */
1132        else if (hdrbuf.len) {
1133                if ((status = parse_sha1_header_extended(hdrbuf.buf, oi, flags)) < 0)
1134                        status = error("unable to parse %s header with --allow-unknown-type",
1135                                       sha1_to_hex(sha1));
1136        } else if ((status = parse_sha1_header_extended(hdr, oi, flags)) < 0)
1137                status = error("unable to parse %s header", sha1_to_hex(sha1));
1138
1139        if (status >= 0 && oi->contentp) {
1140                *oi->contentp = unpack_sha1_rest(&stream, hdr,
1141                                                 *oi->sizep, sha1);
1142                if (!*oi->contentp) {
1143                        git_inflate_end(&stream);
1144                        status = -1;
1145                }
1146        } else
1147                git_inflate_end(&stream);
1148
1149        munmap(map, mapsize);
1150        if (status && oi->typep)
1151                *oi->typep = status;
1152        if (oi->sizep == &size_scratch)
1153                oi->sizep = NULL;
1154        strbuf_release(&hdrbuf);
1155        oi->whence = OI_LOOSE;
1156        return (status < 0) ? status : 0;
1157}
1158
1159int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi, unsigned flags)
1160{
1161        static struct object_info blank_oi = OBJECT_INFO_INIT;
1162        struct pack_entry e;
1163        int rtype;
1164        const unsigned char *real = (flags & OBJECT_INFO_LOOKUP_REPLACE) ?
1165                                    lookup_replace_object(sha1) :
1166                                    sha1;
1167
1168        if (!oi)
1169                oi = &blank_oi;
1170
1171        if (!(flags & OBJECT_INFO_SKIP_CACHED)) {
1172                struct cached_object *co = find_cached_object(real);
1173                if (co) {
1174                        if (oi->typep)
1175                                *(oi->typep) = co->type;
1176                        if (oi->sizep)
1177                                *(oi->sizep) = co->size;
1178                        if (oi->disk_sizep)
1179                                *(oi->disk_sizep) = 0;
1180                        if (oi->delta_base_sha1)
1181                                hashclr(oi->delta_base_sha1);
1182                        if (oi->typename)
1183                                strbuf_addstr(oi->typename, typename(co->type));
1184                        if (oi->contentp)
1185                                *oi->contentp = xmemdupz(co->buf, co->size);
1186                        oi->whence = OI_CACHED;
1187                        return 0;
1188                }
1189        }
1190
1191        if (!find_pack_entry(real, &e)) {
1192                /* Most likely it's a loose object. */
1193                if (!sha1_loose_object_info(real, oi, flags))
1194                        return 0;
1195
1196                /* Not a loose object; someone else may have just packed it. */
1197                if (flags & OBJECT_INFO_QUICK) {
1198                        return -1;
1199                } else {
1200                        reprepare_packed_git();
1201                        if (!find_pack_entry(real, &e))
1202                                return -1;
1203                }
1204        }
1205
1206        if (oi == &blank_oi)
1207                /*
1208                 * We know that the caller doesn't actually need the
1209                 * information below, so return early.
1210                 */
1211                return 0;
1212
1213        rtype = packed_object_info(e.p, e.offset, oi);
1214        if (rtype < 0) {
1215                mark_bad_packed_object(e.p, real);
1216                return sha1_object_info_extended(real, oi, 0);
1217        } else if (oi->whence == OI_PACKED) {
1218                oi->u.packed.offset = e.offset;
1219                oi->u.packed.pack = e.p;
1220                oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1221                                         rtype == OBJ_OFS_DELTA);
1222        }
1223
1224        return 0;
1225}
1226
1227/* returns enum object_type or negative */
1228int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
1229{
1230        enum object_type type;
1231        struct object_info oi = OBJECT_INFO_INIT;
1232
1233        oi.typep = &type;
1234        oi.sizep = sizep;
1235        if (sha1_object_info_extended(sha1, &oi,
1236                                      OBJECT_INFO_LOOKUP_REPLACE) < 0)
1237                return -1;
1238        return type;
1239}
1240
1241static void *read_object(const unsigned char *sha1, enum object_type *type,
1242                         unsigned long *size)
1243{
1244        struct object_info oi = OBJECT_INFO_INIT;
1245        void *content;
1246        oi.typep = type;
1247        oi.sizep = size;
1248        oi.contentp = &content;
1249
1250        if (sha1_object_info_extended(sha1, &oi, 0) < 0)
1251                return NULL;
1252        return content;
1253}
1254
1255int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
1256                      unsigned char *sha1)
1257{
1258        struct cached_object *co;
1259
1260        hash_sha1_file(buf, len, typename(type), sha1);
1261        if (has_sha1_file(sha1) || find_cached_object(sha1))
1262                return 0;
1263        ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1264        co = &cached_objects[cached_object_nr++];
1265        co->size = len;
1266        co->type = type;
1267        co->buf = xmalloc(len);
1268        memcpy(co->buf, buf, len);
1269        hashcpy(co->sha1, sha1);
1270        return 0;
1271}
1272
1273/*
1274 * This function dies on corrupt objects; the callers who want to
1275 * deal with them should arrange to call read_object() and give error
1276 * messages themselves.
1277 */
1278void *read_sha1_file_extended(const unsigned char *sha1,
1279                              enum object_type *type,
1280                              unsigned long *size,
1281                              int lookup_replace)
1282{
1283        void *data;
1284        const struct packed_git *p;
1285        const char *path;
1286        struct stat st;
1287        const unsigned char *repl = lookup_replace ? lookup_replace_object(sha1)
1288                                                   : sha1;
1289
1290        errno = 0;
1291        data = read_object(repl, type, size);
1292        if (data)
1293                return data;
1294
1295        if (errno && errno != ENOENT)
1296                die_errno("failed to read object %s", sha1_to_hex(sha1));
1297
1298        /* die if we replaced an object with one that does not exist */
1299        if (repl != sha1)
1300                die("replacement %s not found for %s",
1301                    sha1_to_hex(repl), sha1_to_hex(sha1));
1302
1303        if (!stat_sha1_file(repl, &st, &path))
1304                die("loose object %s (stored in %s) is corrupt",
1305                    sha1_to_hex(repl), path);
1306
1307        if ((p = has_packed_and_bad(repl)) != NULL)
1308                die("packed object %s (stored in %s) is corrupt",
1309                    sha1_to_hex(repl), p->pack_name);
1310
1311        return NULL;
1312}
1313
1314void *read_object_with_reference(const unsigned char *sha1,
1315                                 const char *required_type_name,
1316                                 unsigned long *size,
1317                                 unsigned char *actual_sha1_return)
1318{
1319        enum object_type type, required_type;
1320        void *buffer;
1321        unsigned long isize;
1322        unsigned char actual_sha1[20];
1323
1324        required_type = type_from_string(required_type_name);
1325        hashcpy(actual_sha1, sha1);
1326        while (1) {
1327                int ref_length = -1;
1328                const char *ref_type = NULL;
1329
1330                buffer = read_sha1_file(actual_sha1, &type, &isize);
1331                if (!buffer)
1332                        return NULL;
1333                if (type == required_type) {
1334                        *size = isize;
1335                        if (actual_sha1_return)
1336                                hashcpy(actual_sha1_return, actual_sha1);
1337                        return buffer;
1338                }
1339                /* Handle references */
1340                else if (type == OBJ_COMMIT)
1341                        ref_type = "tree ";
1342                else if (type == OBJ_TAG)
1343                        ref_type = "object ";
1344                else {
1345                        free(buffer);
1346                        return NULL;
1347                }
1348                ref_length = strlen(ref_type);
1349
1350                if (ref_length + 40 > isize ||
1351                    memcmp(buffer, ref_type, ref_length) ||
1352                    get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
1353                        free(buffer);
1354                        return NULL;
1355                }
1356                free(buffer);
1357                /* Now we have the ID of the referred-to object in
1358                 * actual_sha1.  Check again. */
1359        }
1360}
1361
1362static void write_sha1_file_prepare(const void *buf, unsigned long len,
1363                                    const char *type, unsigned char *sha1,
1364                                    char *hdr, int *hdrlen)
1365{
1366        git_SHA_CTX c;
1367
1368        /* Generate the header */
1369        *hdrlen = xsnprintf(hdr, *hdrlen, "%s %lu", type, len)+1;
1370
1371        /* Sha1.. */
1372        git_SHA1_Init(&c);
1373        git_SHA1_Update(&c, hdr, *hdrlen);
1374        git_SHA1_Update(&c, buf, len);
1375        git_SHA1_Final(sha1, &c);
1376}
1377
1378/*
1379 * Move the just written object into its final resting place.
1380 */
1381int finalize_object_file(const char *tmpfile, const char *filename)
1382{
1383        int ret = 0;
1384
1385        if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1386                goto try_rename;
1387        else if (link(tmpfile, filename))
1388                ret = errno;
1389
1390        /*
1391         * Coda hack - coda doesn't like cross-directory links,
1392         * so we fall back to a rename, which will mean that it
1393         * won't be able to check collisions, but that's not a
1394         * big deal.
1395         *
1396         * The same holds for FAT formatted media.
1397         *
1398         * When this succeeds, we just return.  We have nothing
1399         * left to unlink.
1400         */
1401        if (ret && ret != EEXIST) {
1402        try_rename:
1403                if (!rename(tmpfile, filename))
1404                        goto out;
1405                ret = errno;
1406        }
1407        unlink_or_warn(tmpfile);
1408        if (ret) {
1409                if (ret != EEXIST) {
1410                        return error_errno("unable to write sha1 filename %s", filename);
1411                }
1412                /* FIXME!!! Collision check here ? */
1413        }
1414
1415out:
1416        if (adjust_shared_perm(filename))
1417                return error("unable to set permission to '%s'", filename);
1418        return 0;
1419}
1420
1421static int write_buffer(int fd, const void *buf, size_t len)
1422{
1423        if (write_in_full(fd, buf, len) < 0)
1424                return error_errno("file write error");
1425        return 0;
1426}
1427
1428int hash_sha1_file(const void *buf, unsigned long len, const char *type,
1429                   unsigned char *sha1)
1430{
1431        char hdr[32];
1432        int hdrlen = sizeof(hdr);
1433        write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
1434        return 0;
1435}
1436
1437/* Finalize a file on disk, and close it. */
1438static void close_sha1_file(int fd)
1439{
1440        if (fsync_object_files)
1441                fsync_or_die(fd, "sha1 file");
1442        if (close(fd) != 0)
1443                die_errno("error when closing sha1 file");
1444}
1445
1446/* Size of directory component, including the ending '/' */
1447static inline int directory_size(const char *filename)
1448{
1449        const char *s = strrchr(filename, '/');
1450        if (!s)
1451                return 0;
1452        return s - filename + 1;
1453}
1454
1455/*
1456 * This creates a temporary file in the same directory as the final
1457 * 'filename'
1458 *
1459 * We want to avoid cross-directory filename renames, because those
1460 * can have problems on various filesystems (FAT, NFS, Coda).
1461 */
1462static int create_tmpfile(struct strbuf *tmp, const char *filename)
1463{
1464        int fd, dirlen = directory_size(filename);
1465
1466        strbuf_reset(tmp);
1467        strbuf_add(tmp, filename, dirlen);
1468        strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1469        fd = git_mkstemp_mode(tmp->buf, 0444);
1470        if (fd < 0 && dirlen && errno == ENOENT) {
1471                /*
1472                 * Make sure the directory exists; note that the contents
1473                 * of the buffer are undefined after mkstemp returns an
1474                 * error, so we have to rewrite the whole buffer from
1475                 * scratch.
1476                 */
1477                strbuf_reset(tmp);
1478                strbuf_add(tmp, filename, dirlen - 1);
1479                if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1480                        return -1;
1481                if (adjust_shared_perm(tmp->buf))
1482                        return -1;
1483
1484                /* Try again */
1485                strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1486                fd = git_mkstemp_mode(tmp->buf, 0444);
1487        }
1488        return fd;
1489}
1490
1491static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
1492                              const void *buf, unsigned long len, time_t mtime)
1493{
1494        int fd, ret;
1495        unsigned char compressed[4096];
1496        git_zstream stream;
1497        git_SHA_CTX c;
1498        unsigned char parano_sha1[20];
1499        static struct strbuf tmp_file = STRBUF_INIT;
1500        const char *filename = sha1_file_name(sha1);
1501
1502        fd = create_tmpfile(&tmp_file, filename);
1503        if (fd < 0) {
1504                if (errno == EACCES)
1505                        return error("insufficient permission for adding an object to repository database %s", get_object_directory());
1506                else
1507                        return error_errno("unable to create temporary file");
1508        }
1509
1510        /* Set it up */
1511        git_deflate_init(&stream, zlib_compression_level);
1512        stream.next_out = compressed;
1513        stream.avail_out = sizeof(compressed);
1514        git_SHA1_Init(&c);
1515
1516        /* First header.. */
1517        stream.next_in = (unsigned char *)hdr;
1518        stream.avail_in = hdrlen;
1519        while (git_deflate(&stream, 0) == Z_OK)
1520                ; /* nothing */
1521        git_SHA1_Update(&c, hdr, hdrlen);
1522
1523        /* Then the data itself.. */
1524        stream.next_in = (void *)buf;
1525        stream.avail_in = len;
1526        do {
1527                unsigned char *in0 = stream.next_in;
1528                ret = git_deflate(&stream, Z_FINISH);
1529                git_SHA1_Update(&c, in0, stream.next_in - in0);
1530                if (write_buffer(fd, compressed, stream.next_out - compressed) < 0)
1531                        die("unable to write sha1 file");
1532                stream.next_out = compressed;
1533                stream.avail_out = sizeof(compressed);
1534        } while (ret == Z_OK);
1535
1536        if (ret != Z_STREAM_END)
1537                die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
1538        ret = git_deflate_end_gently(&stream);
1539        if (ret != Z_OK)
1540                die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
1541        git_SHA1_Final(parano_sha1, &c);
1542        if (hashcmp(sha1, parano_sha1) != 0)
1543                die("confused by unstable object source data for %s", sha1_to_hex(sha1));
1544
1545        close_sha1_file(fd);
1546
1547        if (mtime) {
1548                struct utimbuf utb;
1549                utb.actime = mtime;
1550                utb.modtime = mtime;
1551                if (utime(tmp_file.buf, &utb) < 0)
1552                        warning_errno("failed utime() on %s", tmp_file.buf);
1553        }
1554
1555        return finalize_object_file(tmp_file.buf, filename);
1556}
1557
1558static int freshen_loose_object(const unsigned char *sha1)
1559{
1560        return check_and_freshen(sha1, 1);
1561}
1562
1563static int freshen_packed_object(const unsigned char *sha1)
1564{
1565        struct pack_entry e;
1566        if (!find_pack_entry(sha1, &e))
1567                return 0;
1568        if (e.p->freshened)
1569                return 1;
1570        if (!freshen_file(e.p->pack_name))
1571                return 0;
1572        e.p->freshened = 1;
1573        return 1;
1574}
1575
1576int write_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *sha1)
1577{
1578        char hdr[32];
1579        int hdrlen = sizeof(hdr);
1580
1581        /* Normally if we have it in the pack then we do not bother writing
1582         * it out into .git/objects/??/?{38} file.
1583         */
1584        write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
1585        if (freshen_packed_object(sha1) || freshen_loose_object(sha1))
1586                return 0;
1587        return write_loose_object(sha1, hdr, hdrlen, buf, len, 0);
1588}
1589
1590int hash_sha1_file_literally(const void *buf, unsigned long len, const char *type,
1591                             struct object_id *oid, unsigned flags)
1592{
1593        char *header;
1594        int hdrlen, status = 0;
1595
1596        /* type string, SP, %lu of the length plus NUL must fit this */
1597        hdrlen = strlen(type) + 32;
1598        header = xmalloc(hdrlen);
1599        write_sha1_file_prepare(buf, len, type, oid->hash, header, &hdrlen);
1600
1601        if (!(flags & HASH_WRITE_OBJECT))
1602                goto cleanup;
1603        if (freshen_packed_object(oid->hash) || freshen_loose_object(oid->hash))
1604                goto cleanup;
1605        status = write_loose_object(oid->hash, header, hdrlen, buf, len, 0);
1606
1607cleanup:
1608        free(header);
1609        return status;
1610}
1611
1612int force_object_loose(const unsigned char *sha1, time_t mtime)
1613{
1614        void *buf;
1615        unsigned long len;
1616        enum object_type type;
1617        char hdr[32];
1618        int hdrlen;
1619        int ret;
1620
1621        if (has_loose_object(sha1))
1622                return 0;
1623        buf = read_object(sha1, &type, &len);
1624        if (!buf)
1625                return error("cannot read sha1_file for %s", sha1_to_hex(sha1));
1626        hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(type), len) + 1;
1627        ret = write_loose_object(sha1, hdr, hdrlen, buf, len, mtime);
1628        free(buf);
1629
1630        return ret;
1631}
1632
1633int has_sha1_file_with_flags(const unsigned char *sha1, int flags)
1634{
1635        if (!startup_info->have_repository)
1636                return 0;
1637        return sha1_object_info_extended(sha1, NULL,
1638                                         flags | OBJECT_INFO_SKIP_CACHED) >= 0;
1639}
1640
1641int has_object_file(const struct object_id *oid)
1642{
1643        return has_sha1_file(oid->hash);
1644}
1645
1646int has_object_file_with_flags(const struct object_id *oid, int flags)
1647{
1648        return has_sha1_file_with_flags(oid->hash, flags);
1649}
1650
1651static void check_tree(const void *buf, size_t size)
1652{
1653        struct tree_desc desc;
1654        struct name_entry entry;
1655
1656        init_tree_desc(&desc, buf, size);
1657        while (tree_entry(&desc, &entry))
1658                /* do nothing
1659                 * tree_entry() will die() on malformed entries */
1660                ;
1661}
1662
1663static void check_commit(const void *buf, size_t size)
1664{
1665        struct commit c;
1666        memset(&c, 0, sizeof(c));
1667        if (parse_commit_buffer(&c, buf, size))
1668                die("corrupt commit");
1669}
1670
1671static void check_tag(const void *buf, size_t size)
1672{
1673        struct tag t;
1674        memset(&t, 0, sizeof(t));
1675        if (parse_tag_buffer(&t, buf, size))
1676                die("corrupt tag");
1677}
1678
1679static int index_mem(unsigned char *sha1, void *buf, size_t size,
1680                     enum object_type type,
1681                     const char *path, unsigned flags)
1682{
1683        int ret, re_allocated = 0;
1684        int write_object = flags & HASH_WRITE_OBJECT;
1685
1686        if (!type)
1687                type = OBJ_BLOB;
1688
1689        /*
1690         * Convert blobs to git internal format
1691         */
1692        if ((type == OBJ_BLOB) && path) {
1693                struct strbuf nbuf = STRBUF_INIT;
1694                if (convert_to_git(&the_index, path, buf, size, &nbuf,
1695                                   get_safe_crlf(flags))) {
1696                        buf = strbuf_detach(&nbuf, &size);
1697                        re_allocated = 1;
1698                }
1699        }
1700        if (flags & HASH_FORMAT_CHECK) {
1701                if (type == OBJ_TREE)
1702                        check_tree(buf, size);
1703                if (type == OBJ_COMMIT)
1704                        check_commit(buf, size);
1705                if (type == OBJ_TAG)
1706                        check_tag(buf, size);
1707        }
1708
1709        if (write_object)
1710                ret = write_sha1_file(buf, size, typename(type), sha1);
1711        else
1712                ret = hash_sha1_file(buf, size, typename(type), sha1);
1713        if (re_allocated)
1714                free(buf);
1715        return ret;
1716}
1717
1718static int index_stream_convert_blob(unsigned char *sha1, int fd,
1719                                     const char *path, unsigned flags)
1720{
1721        int ret;
1722        const int write_object = flags & HASH_WRITE_OBJECT;
1723        struct strbuf sbuf = STRBUF_INIT;
1724
1725        assert(path);
1726        assert(would_convert_to_git_filter_fd(path));
1727
1728        convert_to_git_filter_fd(&the_index, path, fd, &sbuf,
1729                                 get_safe_crlf(flags));
1730
1731        if (write_object)
1732                ret = write_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
1733                                      sha1);
1734        else
1735                ret = hash_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
1736                                     sha1);
1737        strbuf_release(&sbuf);
1738        return ret;
1739}
1740
1741static int index_pipe(unsigned char *sha1, int fd, enum object_type type,
1742                      const char *path, unsigned flags)
1743{
1744        struct strbuf sbuf = STRBUF_INIT;
1745        int ret;
1746
1747        if (strbuf_read(&sbuf, fd, 4096) >= 0)
1748                ret = index_mem(sha1, sbuf.buf, sbuf.len, type, path, flags);
1749        else
1750                ret = -1;
1751        strbuf_release(&sbuf);
1752        return ret;
1753}
1754
1755#define SMALL_FILE_SIZE (32*1024)
1756
1757static int index_core(unsigned char *sha1, int fd, size_t size,
1758                      enum object_type type, const char *path,
1759                      unsigned flags)
1760{
1761        int ret;
1762
1763        if (!size) {
1764                ret = index_mem(sha1, "", size, type, path, flags);
1765        } else if (size <= SMALL_FILE_SIZE) {
1766                char *buf = xmalloc(size);
1767                ssize_t read_result = read_in_full(fd, buf, size);
1768                if (read_result < 0)
1769                        ret = error_errno("read error while indexing %s",
1770                                          path ? path : "<unknown>");
1771                else if (read_result != size)
1772                        ret = error("short read while indexing %s",
1773                                    path ? path : "<unknown>");
1774                else
1775                        ret = index_mem(sha1, buf, size, type, path, flags);
1776                free(buf);
1777        } else {
1778                void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
1779                ret = index_mem(sha1, buf, size, type, path, flags);
1780                munmap(buf, size);
1781        }
1782        return ret;
1783}
1784
1785/*
1786 * This creates one packfile per large blob unless bulk-checkin
1787 * machinery is "plugged".
1788 *
1789 * This also bypasses the usual "convert-to-git" dance, and that is on
1790 * purpose. We could write a streaming version of the converting
1791 * functions and insert that before feeding the data to fast-import
1792 * (or equivalent in-core API described above). However, that is
1793 * somewhat complicated, as we do not know the size of the filter
1794 * result, which we need to know beforehand when writing a git object.
1795 * Since the primary motivation for trying to stream from the working
1796 * tree file and to avoid mmaping it in core is to deal with large
1797 * binary blobs, they generally do not want to get any conversion, and
1798 * callers should avoid this code path when filters are requested.
1799 */
1800static int index_stream(struct object_id *oid, int fd, size_t size,
1801                        enum object_type type, const char *path,
1802                        unsigned flags)
1803{
1804        return index_bulk_checkin(oid->hash, fd, size, type, path, flags);
1805}
1806
1807int index_fd(struct object_id *oid, int fd, struct stat *st,
1808             enum object_type type, const char *path, unsigned flags)
1809{
1810        int ret;
1811
1812        /*
1813         * Call xsize_t() only when needed to avoid potentially unnecessary
1814         * die() for large files.
1815         */
1816        if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(path))
1817                ret = index_stream_convert_blob(oid->hash, fd, path, flags);
1818        else if (!S_ISREG(st->st_mode))
1819                ret = index_pipe(oid->hash, fd, type, path, flags);
1820        else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
1821                 (path && would_convert_to_git(&the_index, path)))
1822                ret = index_core(oid->hash, fd, xsize_t(st->st_size), type, path,
1823                                 flags);
1824        else
1825                ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
1826                                   flags);
1827        close(fd);
1828        return ret;
1829}
1830
1831int index_path(struct object_id *oid, const char *path, struct stat *st, unsigned flags)
1832{
1833        int fd;
1834        struct strbuf sb = STRBUF_INIT;
1835        int rc = 0;
1836
1837        switch (st->st_mode & S_IFMT) {
1838        case S_IFREG:
1839                fd = open(path, O_RDONLY);
1840                if (fd < 0)
1841                        return error_errno("open(\"%s\")", path);
1842                if (index_fd(oid, fd, st, OBJ_BLOB, path, flags) < 0)
1843                        return error("%s: failed to insert into database",
1844                                     path);
1845                break;
1846        case S_IFLNK:
1847                if (strbuf_readlink(&sb, path, st->st_size))
1848                        return error_errno("readlink(\"%s\")", path);
1849                if (!(flags & HASH_WRITE_OBJECT))
1850                        hash_sha1_file(sb.buf, sb.len, blob_type, oid->hash);
1851                else if (write_sha1_file(sb.buf, sb.len, blob_type, oid->hash))
1852                        rc = error("%s: failed to insert into database", path);
1853                strbuf_release(&sb);
1854                break;
1855        case S_IFDIR:
1856                return resolve_gitlink_ref(path, "HEAD", oid->hash);
1857        default:
1858                return error("%s: unsupported file type", path);
1859        }
1860        return rc;
1861}
1862
1863int read_pack_header(int fd, struct pack_header *header)
1864{
1865        if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
1866                /* "eof before pack header was fully read" */
1867                return PH_ERROR_EOF;
1868
1869        if (header->hdr_signature != htonl(PACK_SIGNATURE))
1870                /* "protocol error (pack signature mismatch detected)" */
1871                return PH_ERROR_PACK_SIGNATURE;
1872        if (!pack_version_ok(header->hdr_version))
1873                /* "protocol error (pack version unsupported)" */
1874                return PH_ERROR_PROTOCOL;
1875        return 0;
1876}
1877
1878void assert_sha1_type(const unsigned char *sha1, enum object_type expect)
1879{
1880        enum object_type type = sha1_object_info(sha1, NULL);
1881        if (type < 0)
1882                die("%s is not a valid object", sha1_to_hex(sha1));
1883        if (type != expect)
1884                die("%s is not a valid '%s' object", sha1_to_hex(sha1),
1885                    typename(expect));
1886}
1887
1888int for_each_file_in_obj_subdir(unsigned int subdir_nr,
1889                                struct strbuf *path,
1890                                each_loose_object_fn obj_cb,
1891                                each_loose_cruft_fn cruft_cb,
1892                                each_loose_subdir_fn subdir_cb,
1893                                void *data)
1894{
1895        size_t origlen, baselen;
1896        DIR *dir;
1897        struct dirent *de;
1898        int r = 0;
1899
1900        if (subdir_nr > 0xff)
1901                BUG("invalid loose object subdirectory: %x", subdir_nr);
1902
1903        origlen = path->len;
1904        strbuf_complete(path, '/');
1905        strbuf_addf(path, "%02x", subdir_nr);
1906        baselen = path->len;
1907
1908        dir = opendir(path->buf);
1909        if (!dir) {
1910                if (errno != ENOENT)
1911                        r = error_errno("unable to open %s", path->buf);
1912                strbuf_setlen(path, origlen);
1913                return r;
1914        }
1915
1916        while ((de = readdir(dir))) {
1917                if (is_dot_or_dotdot(de->d_name))
1918                        continue;
1919
1920                strbuf_setlen(path, baselen);
1921                strbuf_addf(path, "/%s", de->d_name);
1922
1923                if (strlen(de->d_name) == GIT_SHA1_HEXSZ - 2)  {
1924                        char hex[GIT_MAX_HEXSZ+1];
1925                        struct object_id oid;
1926
1927                        xsnprintf(hex, sizeof(hex), "%02x%s",
1928                                  subdir_nr, de->d_name);
1929                        if (!get_oid_hex(hex, &oid)) {
1930                                if (obj_cb) {
1931                                        r = obj_cb(&oid, path->buf, data);
1932                                        if (r)
1933                                                break;
1934                                }
1935                                continue;
1936                        }
1937                }
1938
1939                if (cruft_cb) {
1940                        r = cruft_cb(de->d_name, path->buf, data);
1941                        if (r)
1942                                break;
1943                }
1944        }
1945        closedir(dir);
1946
1947        strbuf_setlen(path, baselen);
1948        if (!r && subdir_cb)
1949                r = subdir_cb(subdir_nr, path->buf, data);
1950
1951        strbuf_setlen(path, origlen);
1952
1953        return r;
1954}
1955
1956int for_each_loose_file_in_objdir_buf(struct strbuf *path,
1957                            each_loose_object_fn obj_cb,
1958                            each_loose_cruft_fn cruft_cb,
1959                            each_loose_subdir_fn subdir_cb,
1960                            void *data)
1961{
1962        int r = 0;
1963        int i;
1964
1965        for (i = 0; i < 256; i++) {
1966                r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
1967                                                subdir_cb, data);
1968                if (r)
1969                        break;
1970        }
1971
1972        return r;
1973}
1974
1975int for_each_loose_file_in_objdir(const char *path,
1976                                  each_loose_object_fn obj_cb,
1977                                  each_loose_cruft_fn cruft_cb,
1978                                  each_loose_subdir_fn subdir_cb,
1979                                  void *data)
1980{
1981        struct strbuf buf = STRBUF_INIT;
1982        int r;
1983
1984        strbuf_addstr(&buf, path);
1985        r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
1986                                              subdir_cb, data);
1987        strbuf_release(&buf);
1988
1989        return r;
1990}
1991
1992struct loose_alt_odb_data {
1993        each_loose_object_fn *cb;
1994        void *data;
1995};
1996
1997static int loose_from_alt_odb(struct alternate_object_database *alt,
1998                              void *vdata)
1999{
2000        struct loose_alt_odb_data *data = vdata;
2001        struct strbuf buf = STRBUF_INIT;
2002        int r;
2003
2004        strbuf_addstr(&buf, alt->path);
2005        r = for_each_loose_file_in_objdir_buf(&buf,
2006                                              data->cb, NULL, NULL,
2007                                              data->data);
2008        strbuf_release(&buf);
2009        return r;
2010}
2011
2012int for_each_loose_object(each_loose_object_fn cb, void *data, unsigned flags)
2013{
2014        struct loose_alt_odb_data alt;
2015        int r;
2016
2017        r = for_each_loose_file_in_objdir(get_object_directory(),
2018                                          cb, NULL, NULL, data);
2019        if (r)
2020                return r;
2021
2022        if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2023                return 0;
2024
2025        alt.cb = cb;
2026        alt.data = data;
2027        return foreach_alt_odb(loose_from_alt_odb, &alt);
2028}
2029
2030static int check_stream_sha1(git_zstream *stream,
2031                             const char *hdr,
2032                             unsigned long size,
2033                             const char *path,
2034                             const unsigned char *expected_sha1)
2035{
2036        git_SHA_CTX c;
2037        unsigned char real_sha1[GIT_MAX_RAWSZ];
2038        unsigned char buf[4096];
2039        unsigned long total_read;
2040        int status = Z_OK;
2041
2042        git_SHA1_Init(&c);
2043        git_SHA1_Update(&c, hdr, stream->total_out);
2044
2045        /*
2046         * We already read some bytes into hdr, but the ones up to the NUL
2047         * do not count against the object's content size.
2048         */
2049        total_read = stream->total_out - strlen(hdr) - 1;
2050
2051        /*
2052         * This size comparison must be "<=" to read the final zlib packets;
2053         * see the comment in unpack_sha1_rest for details.
2054         */
2055        while (total_read <= size &&
2056               (status == Z_OK || status == Z_BUF_ERROR)) {
2057                stream->next_out = buf;
2058                stream->avail_out = sizeof(buf);
2059                if (size - total_read < stream->avail_out)
2060                        stream->avail_out = size - total_read;
2061                status = git_inflate(stream, Z_FINISH);
2062                git_SHA1_Update(&c, buf, stream->next_out - buf);
2063                total_read += stream->next_out - buf;
2064        }
2065        git_inflate_end(stream);
2066
2067        if (status != Z_STREAM_END) {
2068                error("corrupt loose object '%s'", sha1_to_hex(expected_sha1));
2069                return -1;
2070        }
2071        if (stream->avail_in) {
2072                error("garbage at end of loose object '%s'",
2073                      sha1_to_hex(expected_sha1));
2074                return -1;
2075        }
2076
2077        git_SHA1_Final(real_sha1, &c);
2078        if (hashcmp(expected_sha1, real_sha1)) {
2079                error("sha1 mismatch for %s (expected %s)", path,
2080                      sha1_to_hex(expected_sha1));
2081                return -1;
2082        }
2083
2084        return 0;
2085}
2086
2087int read_loose_object(const char *path,
2088                      const unsigned char *expected_sha1,
2089                      enum object_type *type,
2090                      unsigned long *size,
2091                      void **contents)
2092{
2093        int ret = -1;
2094        void *map = NULL;
2095        unsigned long mapsize;
2096        git_zstream stream;
2097        char hdr[32];
2098
2099        *contents = NULL;
2100
2101        map = map_sha1_file_1(path, NULL, &mapsize);
2102        if (!map) {
2103                error_errno("unable to mmap %s", path);
2104                goto out;
2105        }
2106
2107        if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0) {
2108                error("unable to unpack header of %s", path);
2109                goto out;
2110        }
2111
2112        *type = parse_sha1_header(hdr, size);
2113        if (*type < 0) {
2114                error("unable to parse header of %s", path);
2115                git_inflate_end(&stream);
2116                goto out;
2117        }
2118
2119        if (*type == OBJ_BLOB) {
2120                if (check_stream_sha1(&stream, hdr, *size, path, expected_sha1) < 0)
2121                        goto out;
2122        } else {
2123                *contents = unpack_sha1_rest(&stream, hdr, *size, expected_sha1);
2124                if (!*contents) {
2125                        error("unable to unpack contents of %s", path);
2126                        git_inflate_end(&stream);
2127                        goto out;
2128                }
2129                if (check_sha1_signature(expected_sha1, *contents,
2130                                         *size, typename(*type))) {
2131                        error("sha1 mismatch for %s (expected %s)", path,
2132                              sha1_to_hex(expected_sha1));
2133                        free(*contents);
2134                        goto out;
2135                }
2136        }
2137
2138        ret = 0; /* everything checks out */
2139
2140out:
2141        if (map)
2142                munmap(map, mapsize);
2143        return ret;
2144}