2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
11 * Default to not allowing changes to the list of files. The
12 * tool doesn't actually care, but this makes it harder to add
13 * files to the revision control by mistake by doing something
14 * like "git-update-index *" and suddenly having all the object
15 * files be revision controlled.
18 static int allow_remove;
19 static int allow_replace;
20 static int allow_unmerged; /* --refresh needing merge is not error */
21 static int not_new; /* --refresh not having working tree files is not error */
22 static int quiet; /* --refresh needing update is not error */
24 static int force_remove;
26 static int mark_valid_only = 0;
28 #define UNMARK_VALID 2
31 /* Three functions to allow overloaded pointer return; see linux/err.h */
32 static inline void *ERR_PTR(long error)
34 return (void *) error;
37 static inline long PTR_ERR(const void *ptr)
42 static inline long IS_ERR(const void *ptr)
44 return (unsigned long)ptr > (unsigned long)-1000L;
47 static void report(const char *fmt, ...)
60 static int mark_valid(const char *path)
62 int namelen = strlen(path);
63 int pos = cache_name_pos(path, namelen);
65 switch (mark_valid_only) {
67 active_cache[pos]->ce_flags |= htons(CE_VALID);
70 active_cache[pos]->ce_flags &= ~htons(CE_VALID);
73 active_cache_changed = 1;
79 static int add_file_to_cache(const char *path)
81 int size, namelen, option, status;
82 struct cache_entry *ce;
85 status = lstat(path, &st);
86 if (status < 0 || S_ISDIR(st.st_mode)) {
87 /* When we used to have "path" and now we want to add
88 * "path/file", we need a way to remove "path" before
89 * being able to add "path/file". However,
90 * "git-update-index --remove path" would not work.
91 * --force-remove can be used but this is more user
92 * friendly, especially since we can do the opposite
93 * case just fine without --force-remove.
95 if (status == 0 || (errno == ENOENT || errno == ENOTDIR)) {
97 if (remove_file_from_cache(path))
98 return error("%s: cannot remove from the index",
102 } else if (status < 0) {
103 return error("%s: does not exist and --remove not passed",
108 return error("%s: is a directory - add files inside instead",
111 return error("lstat(\"%s\"): %s", path,
115 namelen = strlen(path);
116 size = cache_entry_size(namelen);
119 memcpy(ce->name, path, namelen);
120 ce->ce_flags = htons(namelen);
121 fill_stat_cache_info(ce, &st);
123 ce->ce_mode = create_ce_mode(st.st_mode);
124 if (!trust_executable_bit) {
125 /* If there is an existing entry, pick the mode bits
128 int pos = cache_name_pos(path, namelen);
130 ce->ce_mode = active_cache[pos]->ce_mode;
133 if (index_path(ce->sha1, path, &st, !info_only))
135 option = allow_add ? ADD_CACHE_OK_TO_ADD : 0;
136 option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0;
137 if (add_cache_entry(ce, option))
138 return error("%s: cannot add to the index - missing --add option?",
144 * "refresh" does not calculate a new sha1 file or bring the
145 * cache up-to-date for mode/content changes. But what it
146 * _does_ do is to "re-match" the stat information of a file
147 * with the cache, so that you can refresh the cache for a
148 * file that hasn't been changed but where the stat entry is
151 * For example, you'd want to do this after doing a "git-read-tree",
152 * to link up the stat cache details with the proper files.
154 static struct cache_entry *refresh_entry(struct cache_entry *ce, int really)
157 struct cache_entry *updated;
160 if (lstat(ce->name, &st) < 0)
161 return ERR_PTR(-errno);
163 changed = ce_match_stat(ce, &st, really);
165 if (really && assume_unchanged &&
166 !(ce->ce_flags & htons(CE_VALID)))
167 ; /* mark this one VALID again */
172 if (ce_modified(ce, &st, really))
173 return ERR_PTR(-EINVAL);
176 updated = xmalloc(size);
177 memcpy(updated, ce, size);
178 fill_stat_cache_info(updated, &st);
180 /* In this case, if really is not set, we should leave
181 * CE_VALID bit alone. Otherwise, paths marked with
182 * --no-assume-unchanged (i.e. things to be edited) will
183 * reacquire CE_VALID bit automatically, which is not
184 * really what we want.
186 if (!really && assume_unchanged && !(ce->ce_flags & htons(CE_VALID)))
187 updated->ce_flags &= ~htons(CE_VALID);
192 static int refresh_cache(int really)
197 for (i = 0; i < active_nr; i++) {
198 struct cache_entry *ce, *new;
199 ce = active_cache[i];
201 while ((i < active_nr) &&
202 ! strcmp(active_cache[i]->name, ce->name))
207 printf("%s: needs merge\n", ce->name);
212 new = refresh_entry(ce, really);
216 if (not_new && PTR_ERR(new) == -ENOENT)
218 if (really && PTR_ERR(new) == -EINVAL) {
219 /* If we are doing --really-refresh that
220 * means the index is not valid anymore.
222 ce->ce_flags &= ~htons(CE_VALID);
223 active_cache_changed = 1;
227 printf("%s: needs update\n", ce->name);
231 active_cache_changed = 1;
232 /* You can NOT just free active_cache[i] here, since it
233 * might not be necessarily malloc()ed but can also come
235 active_cache[i] = new;
241 * We fundamentally don't like some paths: we don't want
242 * dot or dot-dot anywhere, and for obvious reasons don't
243 * want to recurse into ".git" either.
245 * Also, we don't want double slashes or slashes at the
246 * end that can make pathnames ambiguous.
248 static int verify_dotfile(const char *rest)
251 * The first character was '.', but that
252 * has already been discarded, we now test
256 /* "." is not allowed */
261 * ".git" followed by NUL or slash is bad. This
262 * shares the path end test with the ".." case.
272 if (rest[1] == '\0' || rest[1] == '/')
278 static int verify_path(const char *path)
295 if (verify_dotfile(path))
304 static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
305 const char *path, int stage)
307 int size, len, option;
308 struct cache_entry *ce;
310 if (!verify_path(path))
314 size = cache_entry_size(len);
318 memcpy(ce->sha1, sha1, 20);
319 memcpy(ce->name, path, len);
320 ce->ce_flags = create_ce_flags(len, stage);
321 ce->ce_mode = create_ce_mode(mode);
322 if (assume_unchanged)
323 ce->ce_flags |= htons(CE_VALID);
324 option = allow_add ? ADD_CACHE_OK_TO_ADD : 0;
325 option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0;
326 if (add_cache_entry(ce, option))
327 return error("%s: cannot add to the index - missing --add option?",
329 report("add '%s'", path);
333 static int chmod_path(int flip, const char *path)
336 struct cache_entry *ce;
339 pos = cache_name_pos(path, strlen(path));
342 ce = active_cache[pos];
343 mode = ntohl(ce->ce_mode);
348 ce->ce_mode |= htonl(0111); break;
350 ce->ce_mode &= htonl(~0111); break;
354 active_cache_changed = 1;
358 static struct cache_file cache_file;
360 static void update_one(const char *path, const char *prefix, int prefix_length)
362 const char *p = prefix_path(prefix, prefix_length, path);
363 if (!verify_path(p)) {
364 fprintf(stderr, "Ignoring path %s\n", path);
367 if (mark_valid_only) {
369 die("Unable to mark file %s", path);
374 if (remove_file_from_cache(p))
375 die("git-update-index: unable to remove %s", path);
376 report("remove '%s'", path);
379 if (add_file_to_cache(p))
380 die("Unable to process file %s", path);
381 report("add '%s'", path);
384 static void read_index_info(int line_termination)
391 unsigned char sha1[20];
395 /* This reads lines formatted in one of three formats:
397 * (1) mode SP sha1 TAB path
398 * The first format is what "git-apply --index-info"
399 * reports, and used to reconstruct a partial tree
400 * that is used for phony merge base tree when falling
401 * back on 3-way merge.
403 * (2) mode SP type SP sha1 TAB path
404 * The second format is to stuff git-ls-tree output
405 * into the index file.
407 * (3) mode SP sha1 SP stage TAB path
408 * This format is to put higher order stages into the
409 * index file and matches git-ls-files --stage output.
411 read_line(&buf, stdin, line_termination);
415 mode = strtoul(buf.buf, &ptr, 8);
416 if (ptr == buf.buf || *ptr != ' ')
419 tab = strchr(ptr, '\t');
420 if (!tab || tab - ptr < 41)
423 if (tab[-2] == ' ' && '0' <= tab[-1] && tab[-1] <= '3') {
424 stage = tab[-1] - '0';
425 ptr = tab + 1; /* point at the head of path */
426 tab = tab - 2; /* point at tail of sha1 */
430 ptr = tab + 1; /* point at the head of path */
433 if (get_sha1_hex(tab - 40, sha1) || tab[-41] != ' ')
436 if (line_termination && ptr[0] == '"')
437 path_name = unquote_c_style(ptr, NULL);
441 if (!verify_path(path_name)) {
442 fprintf(stderr, "Ignoring path %s\n", path_name);
443 if (path_name != ptr)
449 /* mode == 0 means there is no such path -- remove */
450 if (remove_file_from_cache(path_name))
451 die("git-update-index: unable to remove %s",
455 /* mode ' ' sha1 '\t' name
456 * ptr[-1] points at tab,
457 * ptr[-41] is at the beginning of sha1
459 ptr[-42] = ptr[-1] = 0;
460 if (add_cacheinfo(mode, sha1, path_name, stage))
461 die("git-update-index: unable to update %s",
464 if (path_name != ptr)
469 die("malformed index info %s", buf.buf);
473 static const char update_index_usage[] =
474 "git-update-index [-q] [--add] [--replace] [--remove] [--unmerged] [--refresh] [--cacheinfo] [--chmod=(+|-)x] [--info-only] [--force-remove] [--stdin] [--index-info] [--ignore-missing] [-z] [--verbose] [--] <file>...";
476 int main(int argc, const char **argv)
478 int i, newfd, entries, has_errors = 0, line_termination = '\n';
479 int allow_options = 1;
480 int read_from_stdin = 0;
481 const char *prefix = setup_git_directory();
482 int prefix_length = prefix ? strlen(prefix) : 0;
484 git_config(git_default_config);
486 newfd = hold_index_file_for_update(&cache_file, get_index_file());
488 die("unable to create new cachefile");
490 entries = read_cache();
492 die("cache corrupted");
494 for (i = 1 ; i < argc; i++) {
495 const char *path = argv[i];
497 if (allow_options && *path == '-') {
498 if (!strcmp(path, "--")) {
502 if (!strcmp(path, "-q")) {
506 if (!strcmp(path, "--add")) {
510 if (!strcmp(path, "--replace")) {
514 if (!strcmp(path, "--remove")) {
518 if (!strcmp(path, "--unmerged")) {
522 if (!strcmp(path, "--refresh")) {
523 has_errors |= refresh_cache(0);
526 if (!strcmp(path, "--really-refresh")) {
527 has_errors |= refresh_cache(1);
530 if (!strcmp(path, "--cacheinfo")) {
531 unsigned char sha1[20];
535 die("git-update-index: --cacheinfo <mode> <sha1> <path>");
537 if ((sscanf(argv[i+1], "%o", &mode) != 1) ||
538 get_sha1_hex(argv[i+2], sha1) ||
539 add_cacheinfo(mode, sha1, argv[i+3], 0))
540 die("git-update-index: --cacheinfo"
541 " cannot add %s", argv[i+3]);
545 if (!strcmp(path, "--chmod=-x") ||
546 !strcmp(path, "--chmod=+x")) {
548 die("git-update-index: %s <path>", path);
549 if (chmod_path(path[8], argv[++i]))
550 die("git-update-index: %s cannot chmod %s", path, argv[i]);
553 if (!strcmp(path, "--assume-unchanged")) {
554 mark_valid_only = MARK_VALID;
557 if (!strcmp(path, "--no-assume-unchanged")) {
558 mark_valid_only = UNMARK_VALID;
561 if (!strcmp(path, "--info-only")) {
565 if (!strcmp(path, "--force-remove")) {
569 if (!strcmp(path, "-z")) {
570 line_termination = 0;
573 if (!strcmp(path, "--stdin")) {
575 die("--stdin must be at the end");
579 if (!strcmp(path, "--index-info")) {
581 die("--index-info must be at the end");
582 allow_add = allow_replace = allow_remove = 1;
583 read_index_info(line_termination);
586 if (!strcmp(path, "--ignore-missing")) {
590 if (!strcmp(path, "--verbose")) {
594 if (!strcmp(path, "-h") || !strcmp(path, "--help"))
595 usage(update_index_usage);
596 die("unknown option %s", path);
598 update_one(path, prefix, prefix_length);
600 if (read_from_stdin) {
605 read_line(&buf, stdin, line_termination);
608 if (line_termination && buf.buf[0] == '"')
609 path_name = unquote_c_style(buf.buf, NULL);
612 update_one(path_name, prefix, prefix_length);
613 if (path_name != buf.buf)
617 if (active_cache_changed) {
618 if (write_cache(newfd, active_cache, active_nr) ||
619 commit_index_file(&cache_file))
620 die("Unable to write new cachefile");
623 return has_errors ? 1 : 0;