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);
167 if (ce_modified(ce, &st, really))
168 return ERR_PTR(-EINVAL);
171 updated = xmalloc(size);
172 memcpy(updated, ce, size);
173 fill_stat_cache_info(updated, &st);
175 /* In this case, if really is not set, we should leave
176 * CE_VALID bit alone. Otherwise, paths marked with
177 * --no-assume-unchanged (i.e. things to be edited) will
178 * reacquire CE_VALID bit automatically, which is not
179 * really what we want.
181 if (!really && assume_unchanged && !(ce->ce_flags & htons(CE_VALID)))
182 updated->ce_flags &= ~htons(CE_VALID);
187 static int refresh_cache(int really)
192 for (i = 0; i < active_nr; i++) {
193 struct cache_entry *ce, *new;
194 ce = active_cache[i];
196 while ((i < active_nr) &&
197 ! strcmp(active_cache[i]->name, ce->name))
202 printf("%s: needs merge\n", ce->name);
207 new = refresh_entry(ce, really);
211 if (not_new && PTR_ERR(new) == -ENOENT)
213 if (really && PTR_ERR(new) == -EINVAL) {
214 /* If we are doing --really-refresh that
215 * means the index is not valid anymore.
217 ce->ce_flags &= ~htons(CE_VALID);
218 active_cache_changed = 1;
222 printf("%s: needs update\n", ce->name);
226 active_cache_changed = 1;
227 /* You can NOT just free active_cache[i] here, since it
228 * might not be necessarily malloc()ed but can also come
230 active_cache[i] = new;
236 * We fundamentally don't like some paths: we don't want
237 * dot or dot-dot anywhere, and for obvious reasons don't
238 * want to recurse into ".git" either.
240 * Also, we don't want double slashes or slashes at the
241 * end that can make pathnames ambiguous.
243 static int verify_dotfile(const char *rest)
246 * The first character was '.', but that
247 * has already been discarded, we now test
251 /* "." is not allowed */
256 * ".git" followed by NUL or slash is bad. This
257 * shares the path end test with the ".." case.
267 if (rest[1] == '\0' || rest[1] == '/')
273 static int verify_path(const char *path)
290 if (verify_dotfile(path))
299 static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
300 const char *path, int stage)
302 int size, len, option;
303 struct cache_entry *ce;
305 if (!verify_path(path))
309 size = cache_entry_size(len);
313 memcpy(ce->sha1, sha1, 20);
314 memcpy(ce->name, path, len);
315 ce->ce_flags = create_ce_flags(len, stage);
316 ce->ce_mode = create_ce_mode(mode);
317 if (assume_unchanged)
318 ce->ce_flags |= htons(CE_VALID);
319 option = allow_add ? ADD_CACHE_OK_TO_ADD : 0;
320 option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0;
321 if (add_cache_entry(ce, option))
322 return error("%s: cannot add to the index - missing --add option?",
324 report("add '%s'", path);
328 static int chmod_path(int flip, const char *path)
331 struct cache_entry *ce;
334 pos = cache_name_pos(path, strlen(path));
337 ce = active_cache[pos];
338 mode = ntohl(ce->ce_mode);
343 ce->ce_mode |= htonl(0111); break;
345 ce->ce_mode &= htonl(~0111); break;
349 active_cache_changed = 1;
353 static struct cache_file cache_file;
355 static void update_one(const char *path, const char *prefix, int prefix_length)
357 const char *p = prefix_path(prefix, prefix_length, path);
358 if (!verify_path(p)) {
359 fprintf(stderr, "Ignoring path %s\n", path);
362 if (mark_valid_only) {
364 die("Unable to mark file %s", path);
369 if (remove_file_from_cache(p))
370 die("git-update-index: unable to remove %s", path);
371 report("remove '%s'", path);
374 if (add_file_to_cache(p))
375 die("Unable to process file %s", path);
376 report("add '%s'", path);
379 static void read_index_info(int line_termination)
386 unsigned char sha1[20];
390 /* This reads lines formatted in one of three formats:
392 * (1) mode SP sha1 TAB path
393 * The first format is what "git-apply --index-info"
394 * reports, and used to reconstruct a partial tree
395 * that is used for phony merge base tree when falling
396 * back on 3-way merge.
398 * (2) mode SP type SP sha1 TAB path
399 * The second format is to stuff git-ls-tree output
400 * into the index file.
402 * (3) mode SP sha1 SP stage TAB path
403 * This format is to put higher order stages into the
404 * index file and matches git-ls-files --stage output.
406 read_line(&buf, stdin, line_termination);
410 mode = strtoul(buf.buf, &ptr, 8);
411 if (ptr == buf.buf || *ptr != ' ')
414 tab = strchr(ptr, '\t');
415 if (!tab || tab - ptr < 41)
418 if (tab[-2] == ' ' && '0' <= tab[-1] && tab[-1] <= '3') {
419 stage = tab[-1] - '0';
420 ptr = tab + 1; /* point at the head of path */
421 tab = tab - 2; /* point at tail of sha1 */
425 ptr = tab + 1; /* point at the head of path */
428 if (get_sha1_hex(tab - 40, sha1) || tab[-41] != ' ')
431 if (line_termination && ptr[0] == '"')
432 path_name = unquote_c_style(ptr, NULL);
436 if (!verify_path(path_name)) {
437 fprintf(stderr, "Ignoring path %s\n", path_name);
438 if (path_name != ptr)
444 /* mode == 0 means there is no such path -- remove */
445 if (remove_file_from_cache(path_name))
446 die("git-update-index: unable to remove %s",
450 /* mode ' ' sha1 '\t' name
451 * ptr[-1] points at tab,
452 * ptr[-41] is at the beginning of sha1
454 ptr[-42] = ptr[-1] = 0;
455 if (add_cacheinfo(mode, sha1, path_name, stage))
456 die("git-update-index: unable to update %s",
459 if (path_name != ptr)
464 die("malformed index info %s", buf.buf);
468 static const char update_index_usage[] =
469 "git-update-index [-q] [--add] [--replace] [--remove] [--unmerged] [--refresh] [--cacheinfo] [--chmod=(+|-)x] [--info-only] [--force-remove] [--stdin] [--index-info] [--ignore-missing] [-z] [--verbose] [--] <file>...";
471 int main(int argc, const char **argv)
473 int i, newfd, entries, has_errors = 0, line_termination = '\n';
474 int allow_options = 1;
475 int read_from_stdin = 0;
476 const char *prefix = setup_git_directory();
477 int prefix_length = prefix ? strlen(prefix) : 0;
479 git_config(git_default_config);
481 newfd = hold_index_file_for_update(&cache_file, get_index_file());
483 die("unable to create new cachefile");
485 entries = read_cache();
487 die("cache corrupted");
489 for (i = 1 ; i < argc; i++) {
490 const char *path = argv[i];
492 if (allow_options && *path == '-') {
493 if (!strcmp(path, "--")) {
497 if (!strcmp(path, "-q")) {
501 if (!strcmp(path, "--add")) {
505 if (!strcmp(path, "--replace")) {
509 if (!strcmp(path, "--remove")) {
513 if (!strcmp(path, "--unmerged")) {
517 if (!strcmp(path, "--refresh")) {
518 has_errors |= refresh_cache(0);
521 if (!strcmp(path, "--really-refresh")) {
522 has_errors |= refresh_cache(1);
525 if (!strcmp(path, "--cacheinfo")) {
526 unsigned char sha1[20];
530 die("git-update-index: --cacheinfo <mode> <sha1> <path>");
532 if ((sscanf(argv[i+1], "%o", &mode) != 1) ||
533 get_sha1_hex(argv[i+2], sha1) ||
534 add_cacheinfo(mode, sha1, argv[i+3], 0))
535 die("git-update-index: --cacheinfo"
536 " cannot add %s", argv[i+3]);
540 if (!strcmp(path, "--chmod=-x") ||
541 !strcmp(path, "--chmod=+x")) {
543 die("git-update-index: %s <path>", path);
544 if (chmod_path(path[8], argv[++i]))
545 die("git-update-index: %s cannot chmod %s", path, argv[i]);
548 if (!strcmp(path, "--assume-unchanged")) {
549 mark_valid_only = MARK_VALID;
552 if (!strcmp(path, "--no-assume-unchanged")) {
553 mark_valid_only = UNMARK_VALID;
556 if (!strcmp(path, "--info-only")) {
560 if (!strcmp(path, "--force-remove")) {
564 if (!strcmp(path, "-z")) {
565 line_termination = 0;
568 if (!strcmp(path, "--stdin")) {
570 die("--stdin must be at the end");
574 if (!strcmp(path, "--index-info")) {
575 allow_add = allow_replace = allow_remove = 1;
576 read_index_info(line_termination);
579 if (!strcmp(path, "--ignore-missing")) {
583 if (!strcmp(path, "--verbose")) {
587 if (!strcmp(path, "-h") || !strcmp(path, "--help"))
588 usage(update_index_usage);
589 die("unknown option %s", path);
591 update_one(path, prefix, prefix_length);
593 if (read_from_stdin) {
598 read_line(&buf, stdin, line_termination);
601 if (line_termination && buf.buf[0] == '"')
602 path_name = unquote_c_style(buf.buf, NULL);
605 update_one(path_name, prefix, prefix_length);
606 if (path_name != buf.buf)
610 if (active_cache_changed) {
611 if (write_cache(newfd, active_cache, active_nr) ||
612 commit_index_file(&cache_file))
613 die("Unable to write new cachefile");
616 return has_errors ? 1 : 0;