builtin / update-index.con commit Merge branch 'rs/maint-config-use-labs' into maint (e8c2351)
   1/*
   2 * GIT - The information manager from hell
   3 *
   4 * Copyright (C) Linus Torvalds, 2005
   5 */
   6#include "cache.h"
   7#include "lockfile.h"
   8#include "quote.h"
   9#include "cache-tree.h"
  10#include "tree-walk.h"
  11#include "builtin.h"
  12#include "refs.h"
  13#include "resolve-undo.h"
  14#include "parse-options.h"
  15#include "pathspec.h"
  16#include "dir.h"
  17#include "split-index.h"
  18
  19/*
  20 * Default to not allowing changes to the list of files. The
  21 * tool doesn't actually care, but this makes it harder to add
  22 * files to the revision control by mistake by doing something
  23 * like "git update-index *" and suddenly having all the object
  24 * files be revision controlled.
  25 */
  26static int allow_add;
  27static int allow_remove;
  28static int allow_replace;
  29static int info_only;
  30static int force_remove;
  31static int verbose;
  32static int mark_valid_only;
  33static int mark_skip_worktree_only;
  34#define MARK_FLAG 1
  35#define UNMARK_FLAG 2
  36
  37__attribute__((format (printf, 1, 2)))
  38static void report(const char *fmt, ...)
  39{
  40        va_list vp;
  41
  42        if (!verbose)
  43                return;
  44
  45        va_start(vp, fmt);
  46        vprintf(fmt, vp);
  47        putchar('\n');
  48        va_end(vp);
  49}
  50
  51static int mark_ce_flags(const char *path, int flag, int mark)
  52{
  53        int namelen = strlen(path);
  54        int pos = cache_name_pos(path, namelen);
  55        if (0 <= pos) {
  56                if (mark)
  57                        active_cache[pos]->ce_flags |= flag;
  58                else
  59                        active_cache[pos]->ce_flags &= ~flag;
  60                active_cache[pos]->ce_flags |= CE_UPDATE_IN_BASE;
  61                cache_tree_invalidate_path(&the_index, path);
  62                active_cache_changed |= CE_ENTRY_CHANGED;
  63                return 0;
  64        }
  65        return -1;
  66}
  67
  68static int remove_one_path(const char *path)
  69{
  70        if (!allow_remove)
  71                return error("%s: does not exist and --remove not passed", path);
  72        if (remove_file_from_cache(path))
  73                return error("%s: cannot remove from the index", path);
  74        return 0;
  75}
  76
  77/*
  78 * Handle a path that couldn't be lstat'ed. It's either:
  79 *  - missing file (ENOENT or ENOTDIR). That's ok if we're
  80 *    supposed to be removing it and the removal actually
  81 *    succeeds.
  82 *  - permission error. That's never ok.
  83 */
  84static int process_lstat_error(const char *path, int err)
  85{
  86        if (err == ENOENT || err == ENOTDIR)
  87                return remove_one_path(path);
  88        return error("lstat(\"%s\"): %s", path, strerror(errno));
  89}
  90
  91static int add_one_path(const struct cache_entry *old, const char *path, int len, struct stat *st)
  92{
  93        int option, size;
  94        struct cache_entry *ce;
  95
  96        /* Was the old index entry already up-to-date? */
  97        if (old && !ce_stage(old) && !ce_match_stat(old, st, 0))
  98                return 0;
  99
 100        size = cache_entry_size(len);
 101        ce = xcalloc(1, size);
 102        memcpy(ce->name, path, len);
 103        ce->ce_flags = create_ce_flags(0);
 104        ce->ce_namelen = len;
 105        fill_stat_cache_info(ce, st);
 106        ce->ce_mode = ce_mode_from_stat(old, st->st_mode);
 107
 108        if (index_path(ce->sha1, path, st,
 109                       info_only ? 0 : HASH_WRITE_OBJECT)) {
 110                free(ce);
 111                return -1;
 112        }
 113        option = allow_add ? ADD_CACHE_OK_TO_ADD : 0;
 114        option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0;
 115        if (add_cache_entry(ce, option))
 116                return error("%s: cannot add to the index - missing --add option?", path);
 117        return 0;
 118}
 119
 120/*
 121 * Handle a path that was a directory. Four cases:
 122 *
 123 *  - it's already a gitlink in the index, and we keep it that
 124 *    way, and update it if we can (if we cannot find the HEAD,
 125 *    we're going to keep it unchanged in the index!)
 126 *
 127 *  - it's a *file* in the index, in which case it should be
 128 *    removed as a file if removal is allowed, since it doesn't
 129 *    exist as such any more. If removal isn't allowed, it's
 130 *    an error.
 131 *
 132 *    (NOTE! This is old and arguably fairly strange behaviour.
 133 *    We might want to make this an error unconditionally, and
 134 *    use "--force-remove" if you actually want to force removal).
 135 *
 136 *  - it used to exist as a subdirectory (ie multiple files with
 137 *    this particular prefix) in the index, in which case it's wrong
 138 *    to try to update it as a directory.
 139 *
 140 *  - it doesn't exist at all in the index, but it is a valid
 141 *    git directory, and it should be *added* as a gitlink.
 142 */
 143static int process_directory(const char *path, int len, struct stat *st)
 144{
 145        unsigned char sha1[20];
 146        int pos = cache_name_pos(path, len);
 147
 148        /* Exact match: file or existing gitlink */
 149        if (pos >= 0) {
 150                const struct cache_entry *ce = active_cache[pos];
 151                if (S_ISGITLINK(ce->ce_mode)) {
 152
 153                        /* Do nothing to the index if there is no HEAD! */
 154                        if (resolve_gitlink_ref(path, "HEAD", sha1) < 0)
 155                                return 0;
 156
 157                        return add_one_path(ce, path, len, st);
 158                }
 159                /* Should this be an unconditional error? */
 160                return remove_one_path(path);
 161        }
 162
 163        /* Inexact match: is there perhaps a subdirectory match? */
 164        pos = -pos-1;
 165        while (pos < active_nr) {
 166                const struct cache_entry *ce = active_cache[pos++];
 167
 168                if (strncmp(ce->name, path, len))
 169                        break;
 170                if (ce->name[len] > '/')
 171                        break;
 172                if (ce->name[len] < '/')
 173                        continue;
 174
 175                /* Subdirectory match - error out */
 176                return error("%s: is a directory - add individual files instead", path);
 177        }
 178
 179        /* No match - should we add it as a gitlink? */
 180        if (!resolve_gitlink_ref(path, "HEAD", sha1))
 181                return add_one_path(NULL, path, len, st);
 182
 183        /* Error out. */
 184        return error("%s: is a directory - add files inside instead", path);
 185}
 186
 187static int process_path(const char *path)
 188{
 189        int pos, len;
 190        struct stat st;
 191        const struct cache_entry *ce;
 192
 193        len = strlen(path);
 194        if (has_symlink_leading_path(path, len))
 195                return error("'%s' is beyond a symbolic link", path);
 196
 197        pos = cache_name_pos(path, len);
 198        ce = pos < 0 ? NULL : active_cache[pos];
 199        if (ce && ce_skip_worktree(ce)) {
 200                /*
 201                 * working directory version is assumed "good"
 202                 * so updating it does not make sense.
 203                 * On the other hand, removing it from index should work
 204                 */
 205                if (allow_remove && remove_file_from_cache(path))
 206                        return error("%s: cannot remove from the index", path);
 207                return 0;
 208        }
 209
 210        /*
 211         * First things first: get the stat information, to decide
 212         * what to do about the pathname!
 213         */
 214        if (lstat(path, &st) < 0)
 215                return process_lstat_error(path, errno);
 216
 217        if (S_ISDIR(st.st_mode))
 218                return process_directory(path, len, &st);
 219
 220        return add_one_path(ce, path, len, &st);
 221}
 222
 223static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
 224                         const char *path, int stage)
 225{
 226        int size, len, option;
 227        struct cache_entry *ce;
 228
 229        if (!verify_path(path))
 230                return error("Invalid path '%s'", path);
 231
 232        len = strlen(path);
 233        size = cache_entry_size(len);
 234        ce = xcalloc(1, size);
 235
 236        hashcpy(ce->sha1, sha1);
 237        memcpy(ce->name, path, len);
 238        ce->ce_flags = create_ce_flags(stage);
 239        ce->ce_namelen = len;
 240        ce->ce_mode = create_ce_mode(mode);
 241        if (assume_unchanged)
 242                ce->ce_flags |= CE_VALID;
 243        option = allow_add ? ADD_CACHE_OK_TO_ADD : 0;
 244        option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0;
 245        if (add_cache_entry(ce, option))
 246                return error("%s: cannot add to the index - missing --add option?",
 247                             path);
 248        report("add '%s'", path);
 249        return 0;
 250}
 251
 252static void chmod_path(int flip, const char *path)
 253{
 254        int pos;
 255        struct cache_entry *ce;
 256        unsigned int mode;
 257
 258        pos = cache_name_pos(path, strlen(path));
 259        if (pos < 0)
 260                goto fail;
 261        ce = active_cache[pos];
 262        mode = ce->ce_mode;
 263        if (!S_ISREG(mode))
 264                goto fail;
 265        switch (flip) {
 266        case '+':
 267                ce->ce_mode |= 0111; break;
 268        case '-':
 269                ce->ce_mode &= ~0111; break;
 270        default:
 271                goto fail;
 272        }
 273        cache_tree_invalidate_path(&the_index, path);
 274        ce->ce_flags |= CE_UPDATE_IN_BASE;
 275        active_cache_changed |= CE_ENTRY_CHANGED;
 276        report("chmod %cx '%s'", flip, path);
 277        return;
 278 fail:
 279        die("git update-index: cannot chmod %cx '%s'", flip, path);
 280}
 281
 282static void update_one(const char *path)
 283{
 284        if (!verify_path(path)) {
 285                fprintf(stderr, "Ignoring path %s\n", path);
 286                return;
 287        }
 288        if (mark_valid_only) {
 289                if (mark_ce_flags(path, CE_VALID, mark_valid_only == MARK_FLAG))
 290                        die("Unable to mark file %s", path);
 291                return;
 292        }
 293        if (mark_skip_worktree_only) {
 294                if (mark_ce_flags(path, CE_SKIP_WORKTREE, mark_skip_worktree_only == MARK_FLAG))
 295                        die("Unable to mark file %s", path);
 296                return;
 297        }
 298
 299        if (force_remove) {
 300                if (remove_file_from_cache(path))
 301                        die("git update-index: unable to remove %s", path);
 302                report("remove '%s'", path);
 303                return;
 304        }
 305        if (process_path(path))
 306                die("Unable to process path %s", path);
 307        report("add '%s'", path);
 308}
 309
 310static void read_index_info(int line_termination)
 311{
 312        struct strbuf buf = STRBUF_INIT;
 313        struct strbuf uq = STRBUF_INIT;
 314
 315        while (strbuf_getline(&buf, stdin, line_termination) != EOF) {
 316                char *ptr, *tab;
 317                char *path_name;
 318                unsigned char sha1[20];
 319                unsigned int mode;
 320                unsigned long ul;
 321                int stage;
 322
 323                /* This reads lines formatted in one of three formats:
 324                 *
 325                 * (1) mode         SP sha1          TAB path
 326                 * The first format is what "git apply --index-info"
 327                 * reports, and used to reconstruct a partial tree
 328                 * that is used for phony merge base tree when falling
 329                 * back on 3-way merge.
 330                 *
 331                 * (2) mode SP type SP sha1          TAB path
 332                 * The second format is to stuff "git ls-tree" output
 333                 * into the index file.
 334                 *
 335                 * (3) mode         SP sha1 SP stage TAB path
 336                 * This format is to put higher order stages into the
 337                 * index file and matches "git ls-files --stage" output.
 338                 */
 339                errno = 0;
 340                ul = strtoul(buf.buf, &ptr, 8);
 341                if (ptr == buf.buf || *ptr != ' '
 342                    || errno || (unsigned int) ul != ul)
 343                        goto bad_line;
 344                mode = ul;
 345
 346                tab = strchr(ptr, '\t');
 347                if (!tab || tab - ptr < 41)
 348                        goto bad_line;
 349
 350                if (tab[-2] == ' ' && '0' <= tab[-1] && tab[-1] <= '3') {
 351                        stage = tab[-1] - '0';
 352                        ptr = tab + 1; /* point at the head of path */
 353                        tab = tab - 2; /* point at tail of sha1 */
 354                }
 355                else {
 356                        stage = 0;
 357                        ptr = tab + 1; /* point at the head of path */
 358                }
 359
 360                if (get_sha1_hex(tab - 40, sha1) || tab[-41] != ' ')
 361                        goto bad_line;
 362
 363                path_name = ptr;
 364                if (line_termination && path_name[0] == '"') {
 365                        strbuf_reset(&uq);
 366                        if (unquote_c_style(&uq, path_name, NULL)) {
 367                                die("git update-index: bad quoting of path name");
 368                        }
 369                        path_name = uq.buf;
 370                }
 371
 372                if (!verify_path(path_name)) {
 373                        fprintf(stderr, "Ignoring path %s\n", path_name);
 374                        continue;
 375                }
 376
 377                if (!mode) {
 378                        /* mode == 0 means there is no such path -- remove */
 379                        if (remove_file_from_cache(path_name))
 380                                die("git update-index: unable to remove %s",
 381                                    ptr);
 382                }
 383                else {
 384                        /* mode ' ' sha1 '\t' name
 385                         * ptr[-1] points at tab,
 386                         * ptr[-41] is at the beginning of sha1
 387                         */
 388                        ptr[-42] = ptr[-1] = 0;
 389                        if (add_cacheinfo(mode, sha1, path_name, stage))
 390                                die("git update-index: unable to update %s",
 391                                    path_name);
 392                }
 393                continue;
 394
 395        bad_line:
 396                die("malformed index info %s", buf.buf);
 397        }
 398        strbuf_release(&buf);
 399        strbuf_release(&uq);
 400}
 401
 402static const char * const update_index_usage[] = {
 403        N_("git update-index [options] [--] [<file>...]"),
 404        NULL
 405};
 406
 407static unsigned char head_sha1[20];
 408static unsigned char merge_head_sha1[20];
 409
 410static struct cache_entry *read_one_ent(const char *which,
 411                                        unsigned char *ent, const char *path,
 412                                        int namelen, int stage)
 413{
 414        unsigned mode;
 415        unsigned char sha1[20];
 416        int size;
 417        struct cache_entry *ce;
 418
 419        if (get_tree_entry(ent, path, sha1, &mode)) {
 420                if (which)
 421                        error("%s: not in %s branch.", path, which);
 422                return NULL;
 423        }
 424        if (mode == S_IFDIR) {
 425                if (which)
 426                        error("%s: not a blob in %s branch.", path, which);
 427                return NULL;
 428        }
 429        size = cache_entry_size(namelen);
 430        ce = xcalloc(1, size);
 431
 432        hashcpy(ce->sha1, sha1);
 433        memcpy(ce->name, path, namelen);
 434        ce->ce_flags = create_ce_flags(stage);
 435        ce->ce_namelen = namelen;
 436        ce->ce_mode = create_ce_mode(mode);
 437        return ce;
 438}
 439
 440static int unresolve_one(const char *path)
 441{
 442        int namelen = strlen(path);
 443        int pos;
 444        int ret = 0;
 445        struct cache_entry *ce_2 = NULL, *ce_3 = NULL;
 446
 447        /* See if there is such entry in the index. */
 448        pos = cache_name_pos(path, namelen);
 449        if (0 <= pos) {
 450                /* already merged */
 451                pos = unmerge_cache_entry_at(pos);
 452                if (pos < active_nr) {
 453                        const struct cache_entry *ce = active_cache[pos];
 454                        if (ce_stage(ce) &&
 455                            ce_namelen(ce) == namelen &&
 456                            !memcmp(ce->name, path, namelen))
 457                                return 0;
 458                }
 459                /* no resolve-undo information; fall back */
 460        } else {
 461                /* If there isn't, either it is unmerged, or
 462                 * resolved as "removed" by mistake.  We do not
 463                 * want to do anything in the former case.
 464                 */
 465                pos = -pos-1;
 466                if (pos < active_nr) {
 467                        const struct cache_entry *ce = active_cache[pos];
 468                        if (ce_namelen(ce) == namelen &&
 469                            !memcmp(ce->name, path, namelen)) {
 470                                fprintf(stderr,
 471                                        "%s: skipping still unmerged path.\n",
 472                                        path);
 473                                goto free_return;
 474                        }
 475                }
 476        }
 477
 478        /* Grab blobs from given path from HEAD and MERGE_HEAD,
 479         * stuff HEAD version in stage #2,
 480         * stuff MERGE_HEAD version in stage #3.
 481         */
 482        ce_2 = read_one_ent("our", head_sha1, path, namelen, 2);
 483        ce_3 = read_one_ent("their", merge_head_sha1, path, namelen, 3);
 484
 485        if (!ce_2 || !ce_3) {
 486                ret = -1;
 487                goto free_return;
 488        }
 489        if (!hashcmp(ce_2->sha1, ce_3->sha1) &&
 490            ce_2->ce_mode == ce_3->ce_mode) {
 491                fprintf(stderr, "%s: identical in both, skipping.\n",
 492                        path);
 493                goto free_return;
 494        }
 495
 496        remove_file_from_cache(path);
 497        if (add_cache_entry(ce_2, ADD_CACHE_OK_TO_ADD)) {
 498                error("%s: cannot add our version to the index.", path);
 499                ret = -1;
 500                goto free_return;
 501        }
 502        if (!add_cache_entry(ce_3, ADD_CACHE_OK_TO_ADD))
 503                return 0;
 504        error("%s: cannot add their version to the index.", path);
 505        ret = -1;
 506 free_return:
 507        free(ce_2);
 508        free(ce_3);
 509        return ret;
 510}
 511
 512static void read_head_pointers(void)
 513{
 514        if (read_ref("HEAD", head_sha1))
 515                die("No HEAD -- no initial commit yet?");
 516        if (read_ref("MERGE_HEAD", merge_head_sha1)) {
 517                fprintf(stderr, "Not in the middle of a merge.\n");
 518                exit(0);
 519        }
 520}
 521
 522static int do_unresolve(int ac, const char **av,
 523                        const char *prefix, int prefix_length)
 524{
 525        int i;
 526        int err = 0;
 527
 528        /* Read HEAD and MERGE_HEAD; if MERGE_HEAD does not exist, we
 529         * are not doing a merge, so exit with success status.
 530         */
 531        read_head_pointers();
 532
 533        for (i = 1; i < ac; i++) {
 534                const char *arg = av[i];
 535                const char *p = prefix_path(prefix, prefix_length, arg);
 536                err |= unresolve_one(p);
 537                if (p < arg || p > arg + strlen(arg))
 538                        free((char *)p);
 539        }
 540        return err;
 541}
 542
 543static int do_reupdate(int ac, const char **av,
 544                       const char *prefix, int prefix_length)
 545{
 546        /* Read HEAD and run update-index on paths that are
 547         * merged and already different between index and HEAD.
 548         */
 549        int pos;
 550        int has_head = 1;
 551        struct pathspec pathspec;
 552
 553        parse_pathspec(&pathspec, 0,
 554                       PATHSPEC_PREFER_CWD,
 555                       prefix, av + 1);
 556
 557        if (read_ref("HEAD", head_sha1))
 558                /* If there is no HEAD, that means it is an initial
 559                 * commit.  Update everything in the index.
 560                 */
 561                has_head = 0;
 562 redo:
 563        for (pos = 0; pos < active_nr; pos++) {
 564                const struct cache_entry *ce = active_cache[pos];
 565                struct cache_entry *old = NULL;
 566                int save_nr;
 567                char *path;
 568
 569                if (ce_stage(ce) || !ce_path_match(ce, &pathspec, NULL))
 570                        continue;
 571                if (has_head)
 572                        old = read_one_ent(NULL, head_sha1,
 573                                           ce->name, ce_namelen(ce), 0);
 574                if (old && ce->ce_mode == old->ce_mode &&
 575                    !hashcmp(ce->sha1, old->sha1)) {
 576                        free(old);
 577                        continue; /* unchanged */
 578                }
 579                /* Be careful.  The working tree may not have the
 580                 * path anymore, in which case, under 'allow_remove',
 581                 * or worse yet 'allow_replace', active_nr may decrease.
 582                 */
 583                save_nr = active_nr;
 584                path = xstrdup(ce->name);
 585                update_one(path);
 586                free(path);
 587                if (save_nr != active_nr)
 588                        goto redo;
 589        }
 590        free_pathspec(&pathspec);
 591        return 0;
 592}
 593
 594struct refresh_params {
 595        unsigned int flags;
 596        int *has_errors;
 597};
 598
 599static int refresh(struct refresh_params *o, unsigned int flag)
 600{
 601        setup_work_tree();
 602        read_cache_preload(NULL);
 603        *o->has_errors |= refresh_cache(o->flags | flag);
 604        return 0;
 605}
 606
 607static int refresh_callback(const struct option *opt,
 608                                const char *arg, int unset)
 609{
 610        return refresh(opt->value, 0);
 611}
 612
 613static int really_refresh_callback(const struct option *opt,
 614                                const char *arg, int unset)
 615{
 616        return refresh(opt->value, REFRESH_REALLY);
 617}
 618
 619static int chmod_callback(const struct option *opt,
 620                                const char *arg, int unset)
 621{
 622        char *flip = opt->value;
 623        if ((arg[0] != '-' && arg[0] != '+') || arg[1] != 'x' || arg[2])
 624                return error("option 'chmod' expects \"+x\" or \"-x\"");
 625        *flip = arg[0];
 626        return 0;
 627}
 628
 629static int resolve_undo_clear_callback(const struct option *opt,
 630                                const char *arg, int unset)
 631{
 632        resolve_undo_clear();
 633        return 0;
 634}
 635
 636static int parse_new_style_cacheinfo(const char *arg,
 637                                     unsigned int *mode,
 638                                     unsigned char sha1[],
 639                                     const char **path)
 640{
 641        unsigned long ul;
 642        char *endp;
 643
 644        if (!arg)
 645                return -1;
 646
 647        errno = 0;
 648        ul = strtoul(arg, &endp, 8);
 649        if (errno || endp == arg || *endp != ',' || (unsigned int) ul != ul)
 650                return -1; /* not a new-style cacheinfo */
 651        *mode = ul;
 652        endp++;
 653        if (get_sha1_hex(endp, sha1) || endp[40] != ',')
 654                return -1;
 655        *path = endp + 41;
 656        return 0;
 657}
 658
 659static int cacheinfo_callback(struct parse_opt_ctx_t *ctx,
 660                                const struct option *opt, int unset)
 661{
 662        unsigned char sha1[20];
 663        unsigned int mode;
 664        const char *path;
 665
 666        if (!parse_new_style_cacheinfo(ctx->argv[1], &mode, sha1, &path)) {
 667                if (add_cacheinfo(mode, sha1, path, 0))
 668                        die("git update-index: --cacheinfo cannot add %s", path);
 669                ctx->argv++;
 670                ctx->argc--;
 671                return 0;
 672        }
 673        if (ctx->argc <= 3)
 674                return error("option 'cacheinfo' expects <mode>,<sha1>,<path>");
 675        if (strtoul_ui(*++ctx->argv, 8, &mode) ||
 676            get_sha1_hex(*++ctx->argv, sha1) ||
 677            add_cacheinfo(mode, sha1, *++ctx->argv, 0))
 678                die("git update-index: --cacheinfo cannot add %s", *ctx->argv);
 679        ctx->argc -= 3;
 680        return 0;
 681}
 682
 683static int stdin_cacheinfo_callback(struct parse_opt_ctx_t *ctx,
 684                              const struct option *opt, int unset)
 685{
 686        int *line_termination = opt->value;
 687
 688        if (ctx->argc != 1)
 689                return error("option '%s' must be the last argument", opt->long_name);
 690        allow_add = allow_replace = allow_remove = 1;
 691        read_index_info(*line_termination);
 692        return 0;
 693}
 694
 695static int stdin_callback(struct parse_opt_ctx_t *ctx,
 696                                const struct option *opt, int unset)
 697{
 698        int *read_from_stdin = opt->value;
 699
 700        if (ctx->argc != 1)
 701                return error("option '%s' must be the last argument", opt->long_name);
 702        *read_from_stdin = 1;
 703        return 0;
 704}
 705
 706static int unresolve_callback(struct parse_opt_ctx_t *ctx,
 707                                const struct option *opt, int flags)
 708{
 709        int *has_errors = opt->value;
 710        const char *prefix = startup_info->prefix;
 711
 712        /* consume remaining arguments. */
 713        *has_errors = do_unresolve(ctx->argc, ctx->argv,
 714                                prefix, prefix ? strlen(prefix) : 0);
 715        if (*has_errors)
 716                active_cache_changed = 0;
 717
 718        ctx->argv += ctx->argc - 1;
 719        ctx->argc = 1;
 720        return 0;
 721}
 722
 723static int reupdate_callback(struct parse_opt_ctx_t *ctx,
 724                                const struct option *opt, int flags)
 725{
 726        int *has_errors = opt->value;
 727        const char *prefix = startup_info->prefix;
 728
 729        /* consume remaining arguments. */
 730        setup_work_tree();
 731        *has_errors = do_reupdate(ctx->argc, ctx->argv,
 732                                prefix, prefix ? strlen(prefix) : 0);
 733        if (*has_errors)
 734                active_cache_changed = 0;
 735
 736        ctx->argv += ctx->argc - 1;
 737        ctx->argc = 1;
 738        return 0;
 739}
 740
 741int cmd_update_index(int argc, const char **argv, const char *prefix)
 742{
 743        int newfd, entries, has_errors = 0, line_termination = '\n';
 744        int read_from_stdin = 0;
 745        int prefix_length = prefix ? strlen(prefix) : 0;
 746        int preferred_index_format = 0;
 747        char set_executable_bit = 0;
 748        struct refresh_params refresh_args = {0, &has_errors};
 749        int lock_error = 0;
 750        int split_index = -1;
 751        struct lock_file *lock_file;
 752        struct parse_opt_ctx_t ctx;
 753        int parseopt_state = PARSE_OPT_UNKNOWN;
 754        struct option options[] = {
 755                OPT_BIT('q', NULL, &refresh_args.flags,
 756                        N_("continue refresh even when index needs update"),
 757                        REFRESH_QUIET),
 758                OPT_BIT(0, "ignore-submodules", &refresh_args.flags,
 759                        N_("refresh: ignore submodules"),
 760                        REFRESH_IGNORE_SUBMODULES),
 761                OPT_SET_INT(0, "add", &allow_add,
 762                        N_("do not ignore new files"), 1),
 763                OPT_SET_INT(0, "replace", &allow_replace,
 764                        N_("let files replace directories and vice-versa"), 1),
 765                OPT_SET_INT(0, "remove", &allow_remove,
 766                        N_("notice files missing from worktree"), 1),
 767                OPT_BIT(0, "unmerged", &refresh_args.flags,
 768                        N_("refresh even if index contains unmerged entries"),
 769                        REFRESH_UNMERGED),
 770                {OPTION_CALLBACK, 0, "refresh", &refresh_args, NULL,
 771                        N_("refresh stat information"),
 772                        PARSE_OPT_NOARG | PARSE_OPT_NONEG,
 773                        refresh_callback},
 774                {OPTION_CALLBACK, 0, "really-refresh", &refresh_args, NULL,
 775                        N_("like --refresh, but ignore assume-unchanged setting"),
 776                        PARSE_OPT_NOARG | PARSE_OPT_NONEG,
 777                        really_refresh_callback},
 778                {OPTION_LOWLEVEL_CALLBACK, 0, "cacheinfo", NULL,
 779                        N_("<mode>,<object>,<path>"),
 780                        N_("add the specified entry to the index"),
 781                        PARSE_OPT_NOARG | /* disallow --cacheinfo=<mode> form */
 782                        PARSE_OPT_NONEG | PARSE_OPT_LITERAL_ARGHELP,
 783                        (parse_opt_cb *) cacheinfo_callback},
 784                {OPTION_CALLBACK, 0, "chmod", &set_executable_bit, N_("(+/-)x"),
 785                        N_("override the executable bit of the listed files"),
 786                        PARSE_OPT_NONEG | PARSE_OPT_LITERAL_ARGHELP,
 787                        chmod_callback},
 788                {OPTION_SET_INT, 0, "assume-unchanged", &mark_valid_only, NULL,
 789                        N_("mark files as \"not changing\""),
 790                        PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, MARK_FLAG},
 791                {OPTION_SET_INT, 0, "no-assume-unchanged", &mark_valid_only, NULL,
 792                        N_("clear assumed-unchanged bit"),
 793                        PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, UNMARK_FLAG},
 794                {OPTION_SET_INT, 0, "skip-worktree", &mark_skip_worktree_only, NULL,
 795                        N_("mark files as \"index-only\""),
 796                        PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, MARK_FLAG},
 797                {OPTION_SET_INT, 0, "no-skip-worktree", &mark_skip_worktree_only, NULL,
 798                        N_("clear skip-worktree bit"),
 799                        PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, UNMARK_FLAG},
 800                OPT_SET_INT(0, "info-only", &info_only,
 801                        N_("add to index only; do not add content to object database"), 1),
 802                OPT_SET_INT(0, "force-remove", &force_remove,
 803                        N_("remove named paths even if present in worktree"), 1),
 804                OPT_SET_INT('z', NULL, &line_termination,
 805                        N_("with --stdin: input lines are terminated by null bytes"), '\0'),
 806                {OPTION_LOWLEVEL_CALLBACK, 0, "stdin", &read_from_stdin, NULL,
 807                        N_("read list of paths to be updated from standard input"),
 808                        PARSE_OPT_NONEG | PARSE_OPT_NOARG,
 809                        (parse_opt_cb *) stdin_callback},
 810                {OPTION_LOWLEVEL_CALLBACK, 0, "index-info", &line_termination, NULL,
 811                        N_("add entries from standard input to the index"),
 812                        PARSE_OPT_NONEG | PARSE_OPT_NOARG,
 813                        (parse_opt_cb *) stdin_cacheinfo_callback},
 814                {OPTION_LOWLEVEL_CALLBACK, 0, "unresolve", &has_errors, NULL,
 815                        N_("repopulate stages #2 and #3 for the listed paths"),
 816                        PARSE_OPT_NONEG | PARSE_OPT_NOARG,
 817                        (parse_opt_cb *) unresolve_callback},
 818                {OPTION_LOWLEVEL_CALLBACK, 'g', "again", &has_errors, NULL,
 819                        N_("only update entries that differ from HEAD"),
 820                        PARSE_OPT_NONEG | PARSE_OPT_NOARG,
 821                        (parse_opt_cb *) reupdate_callback},
 822                OPT_BIT(0, "ignore-missing", &refresh_args.flags,
 823                        N_("ignore files missing from worktree"),
 824                        REFRESH_IGNORE_MISSING),
 825                OPT_SET_INT(0, "verbose", &verbose,
 826                        N_("report actions to standard output"), 1),
 827                {OPTION_CALLBACK, 0, "clear-resolve-undo", NULL, NULL,
 828                        N_("(for porcelains) forget saved unresolved conflicts"),
 829                        PARSE_OPT_NOARG | PARSE_OPT_NONEG,
 830                        resolve_undo_clear_callback},
 831                OPT_INTEGER(0, "index-version", &preferred_index_format,
 832                        N_("write index in this format")),
 833                OPT_BOOL(0, "split-index", &split_index,
 834                        N_("enable or disable split index")),
 835                OPT_END()
 836        };
 837
 838        if (argc == 2 && !strcmp(argv[1], "-h"))
 839                usage_with_options(update_index_usage, options);
 840
 841        git_config(git_default_config, NULL);
 842
 843        /* We can't free this memory, it becomes part of a linked list parsed atexit() */
 844        lock_file = xcalloc(1, sizeof(struct lock_file));
 845
 846        newfd = hold_locked_index(lock_file, 0);
 847        if (newfd < 0)
 848                lock_error = errno;
 849
 850        entries = read_cache();
 851        if (entries < 0)
 852                die("cache corrupted");
 853
 854        /*
 855         * Custom copy of parse_options() because we want to handle
 856         * filename arguments as they come.
 857         */
 858        parse_options_start(&ctx, argc, argv, prefix,
 859                            options, PARSE_OPT_STOP_AT_NON_OPTION);
 860        while (ctx.argc) {
 861                if (parseopt_state != PARSE_OPT_DONE)
 862                        parseopt_state = parse_options_step(&ctx, options,
 863                                                            update_index_usage);
 864                if (!ctx.argc)
 865                        break;
 866                switch (parseopt_state) {
 867                case PARSE_OPT_HELP:
 868                        exit(129);
 869                case PARSE_OPT_NON_OPTION:
 870                case PARSE_OPT_DONE:
 871                {
 872                        const char *path = ctx.argv[0];
 873                        const char *p;
 874
 875                        setup_work_tree();
 876                        p = prefix_path(prefix, prefix_length, path);
 877                        update_one(p);
 878                        if (set_executable_bit)
 879                                chmod_path(set_executable_bit, p);
 880                        free((char *)p);
 881                        ctx.argc--;
 882                        ctx.argv++;
 883                        break;
 884                }
 885                case PARSE_OPT_UNKNOWN:
 886                        if (ctx.argv[0][1] == '-')
 887                                error("unknown option '%s'", ctx.argv[0] + 2);
 888                        else
 889                                error("unknown switch '%c'", *ctx.opt);
 890                        usage_with_options(update_index_usage, options);
 891                }
 892        }
 893        argc = parse_options_end(&ctx);
 894        if (preferred_index_format) {
 895                if (preferred_index_format < INDEX_FORMAT_LB ||
 896                    INDEX_FORMAT_UB < preferred_index_format)
 897                        die("index-version %d not in range: %d..%d",
 898                            preferred_index_format,
 899                            INDEX_FORMAT_LB, INDEX_FORMAT_UB);
 900
 901                if (the_index.version != preferred_index_format)
 902                        active_cache_changed |= SOMETHING_CHANGED;
 903                the_index.version = preferred_index_format;
 904        }
 905
 906        if (read_from_stdin) {
 907                struct strbuf buf = STRBUF_INIT, nbuf = STRBUF_INIT;
 908
 909                setup_work_tree();
 910                while (strbuf_getline(&buf, stdin, line_termination) != EOF) {
 911                        const char *p;
 912                        if (line_termination && buf.buf[0] == '"') {
 913                                strbuf_reset(&nbuf);
 914                                if (unquote_c_style(&nbuf, buf.buf, NULL))
 915                                        die("line is badly quoted");
 916                                strbuf_swap(&buf, &nbuf);
 917                        }
 918                        p = prefix_path(prefix, prefix_length, buf.buf);
 919                        update_one(p);
 920                        if (set_executable_bit)
 921                                chmod_path(set_executable_bit, p);
 922                        free((char *)p);
 923                }
 924                strbuf_release(&nbuf);
 925                strbuf_release(&buf);
 926        }
 927
 928        if (split_index > 0) {
 929                init_split_index(&the_index);
 930                the_index.cache_changed |= SPLIT_INDEX_ORDERED;
 931        } else if (!split_index && the_index.split_index) {
 932                /*
 933                 * can't discard_split_index(&the_index); because that
 934                 * will destroy split_index->base->cache[], which may
 935                 * be shared with the_index.cache[]. So yeah we're
 936                 * leaking a bit here.
 937                 */
 938                the_index.split_index = NULL;
 939                the_index.cache_changed |= SOMETHING_CHANGED;
 940        }
 941
 942        if (active_cache_changed) {
 943                if (newfd < 0) {
 944                        if (refresh_args.flags & REFRESH_QUIET)
 945                                exit(128);
 946                        unable_to_lock_die(get_index_file(), lock_error);
 947                }
 948                if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
 949                        die("Unable to write new index file");
 950        }
 951
 952        rollback_lock_file(lock_file);
 953
 954        return has_errors ? 1 : 0;
 955}