list-objects: pass full pathname to callbacks
[git] / builtin / update-index.c
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  */
26 static int allow_add;
27 static int allow_remove;
28 static int allow_replace;
29 static int info_only;
30 static int force_remove;
31 static int verbose;
32 static int mark_valid_only;
33 static int mark_skip_worktree_only;
34 #define MARK_FLAG 1
35 #define UNMARK_FLAG 2
36
37 __attribute__((format (printf, 1, 2)))
38 static 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
51 static 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
68 static 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  */
84 static 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
91 static 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  */
143 static 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
187 static 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
223 static 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
252 static 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
282 static 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
310 static 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
402 static const char * const update_index_usage[] = {
403         N_("git update-index [<options>] [--] [<file>...]"),
404         NULL
405 };
406
407 static unsigned char head_sha1[20];
408 static unsigned char merge_head_sha1[20];
409
410 static 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
440 static 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
512 static 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
522 static 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
543 static 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                 free(old);
588                 if (save_nr != active_nr)
589                         goto redo;
590         }
591         free_pathspec(&pathspec);
592         return 0;
593 }
594
595 struct refresh_params {
596         unsigned int flags;
597         int *has_errors;
598 };
599
600 static int refresh(struct refresh_params *o, unsigned int flag)
601 {
602         setup_work_tree();
603         read_cache_preload(NULL);
604         *o->has_errors |= refresh_cache(o->flags | flag);
605         return 0;
606 }
607
608 static int refresh_callback(const struct option *opt,
609                                 const char *arg, int unset)
610 {
611         return refresh(opt->value, 0);
612 }
613
614 static int really_refresh_callback(const struct option *opt,
615                                 const char *arg, int unset)
616 {
617         return refresh(opt->value, REFRESH_REALLY);
618 }
619
620 static int chmod_callback(const struct option *opt,
621                                 const char *arg, int unset)
622 {
623         char *flip = opt->value;
624         if ((arg[0] != '-' && arg[0] != '+') || arg[1] != 'x' || arg[2])
625                 return error("option 'chmod' expects \"+x\" or \"-x\"");
626         *flip = arg[0];
627         return 0;
628 }
629
630 static int resolve_undo_clear_callback(const struct option *opt,
631                                 const char *arg, int unset)
632 {
633         resolve_undo_clear();
634         return 0;
635 }
636
637 static int parse_new_style_cacheinfo(const char *arg,
638                                      unsigned int *mode,
639                                      unsigned char sha1[],
640                                      const char **path)
641 {
642         unsigned long ul;
643         char *endp;
644
645         if (!arg)
646                 return -1;
647
648         errno = 0;
649         ul = strtoul(arg, &endp, 8);
650         if (errno || endp == arg || *endp != ',' || (unsigned int) ul != ul)
651                 return -1; /* not a new-style cacheinfo */
652         *mode = ul;
653         endp++;
654         if (get_sha1_hex(endp, sha1) || endp[40] != ',')
655                 return -1;
656         *path = endp + 41;
657         return 0;
658 }
659
660 static int cacheinfo_callback(struct parse_opt_ctx_t *ctx,
661                                 const struct option *opt, int unset)
662 {
663         unsigned char sha1[20];
664         unsigned int mode;
665         const char *path;
666
667         if (!parse_new_style_cacheinfo(ctx->argv[1], &mode, sha1, &path)) {
668                 if (add_cacheinfo(mode, sha1, path, 0))
669                         die("git update-index: --cacheinfo cannot add %s", path);
670                 ctx->argv++;
671                 ctx->argc--;
672                 return 0;
673         }
674         if (ctx->argc <= 3)
675                 return error("option 'cacheinfo' expects <mode>,<sha1>,<path>");
676         if (strtoul_ui(*++ctx->argv, 8, &mode) ||
677             get_sha1_hex(*++ctx->argv, sha1) ||
678             add_cacheinfo(mode, sha1, *++ctx->argv, 0))
679                 die("git update-index: --cacheinfo cannot add %s", *ctx->argv);
680         ctx->argc -= 3;
681         return 0;
682 }
683
684 static int stdin_cacheinfo_callback(struct parse_opt_ctx_t *ctx,
685                               const struct option *opt, int unset)
686 {
687         int *line_termination = opt->value;
688
689         if (ctx->argc != 1)
690                 return error("option '%s' must be the last argument", opt->long_name);
691         allow_add = allow_replace = allow_remove = 1;
692         read_index_info(*line_termination);
693         return 0;
694 }
695
696 static int stdin_callback(struct parse_opt_ctx_t *ctx,
697                                 const struct option *opt, int unset)
698 {
699         int *read_from_stdin = opt->value;
700
701         if (ctx->argc != 1)
702                 return error("option '%s' must be the last argument", opt->long_name);
703         *read_from_stdin = 1;
704         return 0;
705 }
706
707 static int unresolve_callback(struct parse_opt_ctx_t *ctx,
708                                 const struct option *opt, int flags)
709 {
710         int *has_errors = opt->value;
711         const char *prefix = startup_info->prefix;
712
713         /* consume remaining arguments. */
714         *has_errors = do_unresolve(ctx->argc, ctx->argv,
715                                 prefix, prefix ? strlen(prefix) : 0);
716         if (*has_errors)
717                 active_cache_changed = 0;
718
719         ctx->argv += ctx->argc - 1;
720         ctx->argc = 1;
721         return 0;
722 }
723
724 static int reupdate_callback(struct parse_opt_ctx_t *ctx,
725                                 const struct option *opt, int flags)
726 {
727         int *has_errors = opt->value;
728         const char *prefix = startup_info->prefix;
729
730         /* consume remaining arguments. */
731         setup_work_tree();
732         *has_errors = do_reupdate(ctx->argc, ctx->argv,
733                                 prefix, prefix ? strlen(prefix) : 0);
734         if (*has_errors)
735                 active_cache_changed = 0;
736
737         ctx->argv += ctx->argc - 1;
738         ctx->argc = 1;
739         return 0;
740 }
741
742 int cmd_update_index(int argc, const char **argv, const char *prefix)
743 {
744         int newfd, entries, has_errors = 0, line_termination = '\n';
745         int read_from_stdin = 0;
746         int prefix_length = prefix ? strlen(prefix) : 0;
747         int preferred_index_format = 0;
748         char set_executable_bit = 0;
749         struct refresh_params refresh_args = {0, &has_errors};
750         int lock_error = 0;
751         int split_index = -1;
752         struct lock_file *lock_file;
753         struct parse_opt_ctx_t ctx;
754         int parseopt_state = PARSE_OPT_UNKNOWN;
755         struct option options[] = {
756                 OPT_BIT('q', NULL, &refresh_args.flags,
757                         N_("continue refresh even when index needs update"),
758                         REFRESH_QUIET),
759                 OPT_BIT(0, "ignore-submodules", &refresh_args.flags,
760                         N_("refresh: ignore submodules"),
761                         REFRESH_IGNORE_SUBMODULES),
762                 OPT_SET_INT(0, "add", &allow_add,
763                         N_("do not ignore new files"), 1),
764                 OPT_SET_INT(0, "replace", &allow_replace,
765                         N_("let files replace directories and vice-versa"), 1),
766                 OPT_SET_INT(0, "remove", &allow_remove,
767                         N_("notice files missing from worktree"), 1),
768                 OPT_BIT(0, "unmerged", &refresh_args.flags,
769                         N_("refresh even if index contains unmerged entries"),
770                         REFRESH_UNMERGED),
771                 {OPTION_CALLBACK, 0, "refresh", &refresh_args, NULL,
772                         N_("refresh stat information"),
773                         PARSE_OPT_NOARG | PARSE_OPT_NONEG,
774                         refresh_callback},
775                 {OPTION_CALLBACK, 0, "really-refresh", &refresh_args, NULL,
776                         N_("like --refresh, but ignore assume-unchanged setting"),
777                         PARSE_OPT_NOARG | PARSE_OPT_NONEG,
778                         really_refresh_callback},
779                 {OPTION_LOWLEVEL_CALLBACK, 0, "cacheinfo", NULL,
780                         N_("<mode>,<object>,<path>"),
781                         N_("add the specified entry to the index"),
782                         PARSE_OPT_NOARG | /* disallow --cacheinfo=<mode> form */
783                         PARSE_OPT_NONEG | PARSE_OPT_LITERAL_ARGHELP,
784                         (parse_opt_cb *) cacheinfo_callback},
785                 {OPTION_CALLBACK, 0, "chmod", &set_executable_bit, N_("(+/-)x"),
786                         N_("override the executable bit of the listed files"),
787                         PARSE_OPT_NONEG | PARSE_OPT_LITERAL_ARGHELP,
788                         chmod_callback},
789                 {OPTION_SET_INT, 0, "assume-unchanged", &mark_valid_only, NULL,
790                         N_("mark files as \"not changing\""),
791                         PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, MARK_FLAG},
792                 {OPTION_SET_INT, 0, "no-assume-unchanged", &mark_valid_only, NULL,
793                         N_("clear assumed-unchanged bit"),
794                         PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, UNMARK_FLAG},
795                 {OPTION_SET_INT, 0, "skip-worktree", &mark_skip_worktree_only, NULL,
796                         N_("mark files as \"index-only\""),
797                         PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, MARK_FLAG},
798                 {OPTION_SET_INT, 0, "no-skip-worktree", &mark_skip_worktree_only, NULL,
799                         N_("clear skip-worktree bit"),
800                         PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, UNMARK_FLAG},
801                 OPT_SET_INT(0, "info-only", &info_only,
802                         N_("add to index only; do not add content to object database"), 1),
803                 OPT_SET_INT(0, "force-remove", &force_remove,
804                         N_("remove named paths even if present in worktree"), 1),
805                 OPT_SET_INT('z', NULL, &line_termination,
806                         N_("with --stdin: input lines are terminated by null bytes"), '\0'),
807                 {OPTION_LOWLEVEL_CALLBACK, 0, "stdin", &read_from_stdin, NULL,
808                         N_("read list of paths to be updated from standard input"),
809                         PARSE_OPT_NONEG | PARSE_OPT_NOARG,
810                         (parse_opt_cb *) stdin_callback},
811                 {OPTION_LOWLEVEL_CALLBACK, 0, "index-info", &line_termination, NULL,
812                         N_("add entries from standard input to the index"),
813                         PARSE_OPT_NONEG | PARSE_OPT_NOARG,
814                         (parse_opt_cb *) stdin_cacheinfo_callback},
815                 {OPTION_LOWLEVEL_CALLBACK, 0, "unresolve", &has_errors, NULL,
816                         N_("repopulate stages #2 and #3 for the listed paths"),
817                         PARSE_OPT_NONEG | PARSE_OPT_NOARG,
818                         (parse_opt_cb *) unresolve_callback},
819                 {OPTION_LOWLEVEL_CALLBACK, 'g', "again", &has_errors, NULL,
820                         N_("only update entries that differ from HEAD"),
821                         PARSE_OPT_NONEG | PARSE_OPT_NOARG,
822                         (parse_opt_cb *) reupdate_callback},
823                 OPT_BIT(0, "ignore-missing", &refresh_args.flags,
824                         N_("ignore files missing from worktree"),
825                         REFRESH_IGNORE_MISSING),
826                 OPT_SET_INT(0, "verbose", &verbose,
827                         N_("report actions to standard output"), 1),
828                 {OPTION_CALLBACK, 0, "clear-resolve-undo", NULL, NULL,
829                         N_("(for porcelains) forget saved unresolved conflicts"),
830                         PARSE_OPT_NOARG | PARSE_OPT_NONEG,
831                         resolve_undo_clear_callback},
832                 OPT_INTEGER(0, "index-version", &preferred_index_format,
833                         N_("write index in this format")),
834                 OPT_BOOL(0, "split-index", &split_index,
835                         N_("enable or disable split index")),
836                 OPT_END()
837         };
838
839         if (argc == 2 && !strcmp(argv[1], "-h"))
840                 usage_with_options(update_index_usage, options);
841
842         git_config(git_default_config, NULL);
843
844         /* We can't free this memory, it becomes part of a linked list parsed atexit() */
845         lock_file = xcalloc(1, sizeof(struct lock_file));
846
847         newfd = hold_locked_index(lock_file, 0);
848         if (newfd < 0)
849                 lock_error = errno;
850
851         entries = read_cache();
852         if (entries < 0)
853                 die("cache corrupted");
854
855         /*
856          * Custom copy of parse_options() because we want to handle
857          * filename arguments as they come.
858          */
859         parse_options_start(&ctx, argc, argv, prefix,
860                             options, PARSE_OPT_STOP_AT_NON_OPTION);
861         while (ctx.argc) {
862                 if (parseopt_state != PARSE_OPT_DONE)
863                         parseopt_state = parse_options_step(&ctx, options,
864                                                             update_index_usage);
865                 if (!ctx.argc)
866                         break;
867                 switch (parseopt_state) {
868                 case PARSE_OPT_HELP:
869                         exit(129);
870                 case PARSE_OPT_NON_OPTION:
871                 case PARSE_OPT_DONE:
872                 {
873                         const char *path = ctx.argv[0];
874                         const char *p;
875
876                         setup_work_tree();
877                         p = prefix_path(prefix, prefix_length, path);
878                         update_one(p);
879                         if (set_executable_bit)
880                                 chmod_path(set_executable_bit, p);
881                         free((char *)p);
882                         ctx.argc--;
883                         ctx.argv++;
884                         break;
885                 }
886                 case PARSE_OPT_UNKNOWN:
887                         if (ctx.argv[0][1] == '-')
888                                 error("unknown option '%s'", ctx.argv[0] + 2);
889                         else
890                                 error("unknown switch '%c'", *ctx.opt);
891                         usage_with_options(update_index_usage, options);
892                 }
893         }
894         argc = parse_options_end(&ctx);
895         if (preferred_index_format) {
896                 if (preferred_index_format < INDEX_FORMAT_LB ||
897                     INDEX_FORMAT_UB < preferred_index_format)
898                         die("index-version %d not in range: %d..%d",
899                             preferred_index_format,
900                             INDEX_FORMAT_LB, INDEX_FORMAT_UB);
901
902                 if (the_index.version != preferred_index_format)
903                         active_cache_changed |= SOMETHING_CHANGED;
904                 the_index.version = preferred_index_format;
905         }
906
907         if (read_from_stdin) {
908                 struct strbuf buf = STRBUF_INIT, nbuf = STRBUF_INIT;
909
910                 setup_work_tree();
911                 while (strbuf_getline(&buf, stdin, line_termination) != EOF) {
912                         const char *p;
913                         if (line_termination && buf.buf[0] == '"') {
914                                 strbuf_reset(&nbuf);
915                                 if (unquote_c_style(&nbuf, buf.buf, NULL))
916                                         die("line is badly quoted");
917                                 strbuf_swap(&buf, &nbuf);
918                         }
919                         p = prefix_path(prefix, prefix_length, buf.buf);
920                         update_one(p);
921                         if (set_executable_bit)
922                                 chmod_path(set_executable_bit, p);
923                         free((char *)p);
924                 }
925                 strbuf_release(&nbuf);
926                 strbuf_release(&buf);
927         }
928
929         if (split_index > 0) {
930                 init_split_index(&the_index);
931                 the_index.cache_changed |= SPLIT_INDEX_ORDERED;
932         } else if (!split_index && the_index.split_index) {
933                 /*
934                  * can't discard_split_index(&the_index); because that
935                  * will destroy split_index->base->cache[], which may
936                  * be shared with the_index.cache[]. So yeah we're
937                  * leaking a bit here.
938                  */
939                 the_index.split_index = NULL;
940                 the_index.cache_changed |= SOMETHING_CHANGED;
941         }
942
943         if (active_cache_changed) {
944                 if (newfd < 0) {
945                         if (refresh_args.flags & REFRESH_QUIET)
946                                 exit(128);
947                         unable_to_lock_die(get_index_file(), lock_error);
948                 }
949                 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
950                         die("Unable to write new index file");
951         }
952
953         rollback_lock_file(lock_file);
954
955         return has_errors ? 1 : 0;
956 }