t5701: skip hardlink test
[git/mingw/4msysgit/wingit-dll.git] / read-cache.c
blob23d16a40ef6690883d3e1517b613642f732332f6
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 */
6 #define NO_THE_INDEX_COMPATIBILITY_MACROS
7 #include "cache.h"
8 #include "cache-tree.h"
9 #include "refs.h"
11 /* Index extensions.
13 * The first letter should be 'A'..'Z' for extensions that are not
14 * necessary for a correct operation (i.e. optimization data).
15 * When new extensions are added that _needs_ to be understood in
16 * order to correctly interpret the index file, pick character that
17 * is outside the range, to cause the reader to abort.
20 #define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
21 #define CACHE_EXT_TREE 0x54524545 /* "TREE" */
23 struct index_state the_index;
26 * This only updates the "non-critical" parts of the directory
27 * cache, ie the parts that aren't tracked by GIT, and only used
28 * to validate the cache.
30 void fill_stat_cache_info(struct cache_entry *ce, struct stat *st)
32 ce->ce_ctime.sec = htonl(st->st_ctime);
33 ce->ce_mtime.sec = htonl(st->st_mtime);
34 #ifdef USE_NSEC
35 ce->ce_ctime.nsec = htonl(st->st_ctim.tv_nsec);
36 ce->ce_mtime.nsec = htonl(st->st_mtim.tv_nsec);
37 #endif
38 ce->ce_dev = htonl(st->st_dev);
39 ce->ce_ino = htonl(st->st_ino);
40 ce->ce_uid = htonl(st->st_uid);
41 ce->ce_gid = htonl(st->st_gid);
42 ce->ce_size = htonl(st->st_size);
44 if (assume_unchanged)
45 ce->ce_flags |= htons(CE_VALID);
48 static int ce_compare_data(struct cache_entry *ce, struct stat *st)
50 int match = -1;
51 int fd = open(ce->name, O_RDONLY);
53 if (fd >= 0) {
54 unsigned char sha1[20];
55 if (!index_fd(sha1, fd, st, 0, OBJ_BLOB, ce->name))
56 match = hashcmp(sha1, ce->sha1);
57 /* index_fd() closed the file descriptor already */
59 return match;
62 static int ce_compare_link(struct cache_entry *ce, size_t expected_size)
64 int match = -1;
65 char *target;
66 void *buffer;
67 unsigned long size;
68 enum object_type type;
69 int len;
71 target = xmalloc(expected_size);
72 len = readlink(ce->name, target, expected_size);
73 if (len != expected_size) {
74 free(target);
75 return -1;
77 buffer = read_sha1_file(ce->sha1, &type, &size);
78 if (!buffer) {
79 free(target);
80 return -1;
82 if (size == expected_size)
83 match = memcmp(buffer, target, size);
84 free(buffer);
85 free(target);
86 return match;
89 static int ce_compare_gitlink(struct cache_entry *ce)
91 unsigned char sha1[20];
94 * We don't actually require that the .git directory
95 * under GITLINK directory be a valid git directory. It
96 * might even be missing (in case nobody populated that
97 * sub-project).
99 * If so, we consider it always to match.
101 if (resolve_gitlink_ref(ce->name, "HEAD", sha1) < 0)
102 return 0;
103 return hashcmp(sha1, ce->sha1);
106 static int ce_modified_check_fs(struct cache_entry *ce, struct stat *st)
108 switch (st->st_mode & S_IFMT) {
109 case S_IFREG:
110 if (ce_compare_data(ce, st))
111 return DATA_CHANGED;
112 break;
113 case S_IFLNK:
114 if (ce_compare_link(ce, xsize_t(st->st_size)))
115 return DATA_CHANGED;
116 break;
117 case S_IFDIR:
118 if (S_ISGITLINK(ntohl(ce->ce_mode)))
119 return 0;
120 default:
121 return TYPE_CHANGED;
123 return 0;
126 static int ce_match_stat_basic(struct cache_entry *ce, struct stat *st)
128 unsigned int changed = 0;
130 switch (ntohl(ce->ce_mode) & S_IFMT) {
131 case S_IFREG:
132 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
133 /* We consider only the owner x bit to be relevant for
134 * "mode changes"
136 if (trust_executable_bit &&
137 (0100 & (ntohl(ce->ce_mode) ^ st->st_mode)))
138 changed |= MODE_CHANGED;
139 break;
140 case S_IFLNK:
141 if (!S_ISLNK(st->st_mode) &&
142 (has_symlinks || !S_ISREG(st->st_mode)))
143 changed |= TYPE_CHANGED;
144 break;
145 case S_IFGITLINK:
146 if (!S_ISDIR(st->st_mode))
147 changed |= TYPE_CHANGED;
148 else if (ce_compare_gitlink(ce))
149 changed |= DATA_CHANGED;
150 return changed;
151 default:
152 die("internal error: ce_mode is %lo", ntohl(ce->ce_mode));
154 if (ce->ce_mtime.sec != htonl(st->st_mtime))
155 changed |= MTIME_CHANGED;
156 if (ce->ce_ctime.sec != htonl(st->st_ctime))
157 changed |= CTIME_CHANGED;
159 #ifdef USE_NSEC
161 * nsec seems unreliable - not all filesystems support it, so
162 * as long as it is in the inode cache you get right nsec
163 * but after it gets flushed, you get zero nsec.
165 if (ce->ce_mtime.nsec != htonl(st->st_mtim.tv_nsec))
166 changed |= MTIME_CHANGED;
167 if (ce->ce_ctime.nsec != htonl(st->st_ctim.tv_nsec))
168 changed |= CTIME_CHANGED;
169 #endif
171 if (ce->ce_uid != htonl(st->st_uid) ||
172 ce->ce_gid != htonl(st->st_gid))
173 changed |= OWNER_CHANGED;
174 if (ce->ce_ino != htonl(st->st_ino))
175 changed |= INODE_CHANGED;
177 #ifdef USE_STDEV
179 * st_dev breaks on network filesystems where different
180 * clients will have different views of what "device"
181 * the filesystem is on
183 if (ce->ce_dev != htonl(st->st_dev))
184 changed |= INODE_CHANGED;
185 #endif
187 if (ce->ce_size != htonl(st->st_size))
188 changed |= DATA_CHANGED;
190 return changed;
193 int ie_match_stat(struct index_state *istate,
194 struct cache_entry *ce, struct stat *st, int options)
196 unsigned int changed;
197 int ignore_valid = options & 01;
198 int assume_racy_is_modified = options & 02;
201 * If it's marked as always valid in the index, it's
202 * valid whatever the checked-out copy says.
204 if (!ignore_valid && (ce->ce_flags & htons(CE_VALID)))
205 return 0;
207 changed = ce_match_stat_basic(ce, st);
210 * Within 1 second of this sequence:
211 * echo xyzzy >file && git-update-index --add file
212 * running this command:
213 * echo frotz >file
214 * would give a falsely clean cache entry. The mtime and
215 * length match the cache, and other stat fields do not change.
217 * We could detect this at update-index time (the cache entry
218 * being registered/updated records the same time as "now")
219 * and delay the return from git-update-index, but that would
220 * effectively mean we can make at most one commit per second,
221 * which is not acceptable. Instead, we check cache entries
222 * whose mtime are the same as the index file timestamp more
223 * carefully than others.
225 if (!changed &&
226 istate->timestamp &&
227 istate->timestamp <= ntohl(ce->ce_mtime.sec)) {
228 if (assume_racy_is_modified)
229 changed |= DATA_CHANGED;
230 else
231 changed |= ce_modified_check_fs(ce, st);
234 return changed;
237 int ie_modified(struct index_state *istate,
238 struct cache_entry *ce, struct stat *st, int really)
240 int changed, changed_fs;
241 changed = ie_match_stat(istate, ce, st, really);
242 if (!changed)
243 return 0;
245 * If the mode or type has changed, there's no point in trying
246 * to refresh the entry - it's not going to match
248 if (changed & (MODE_CHANGED | TYPE_CHANGED))
249 return changed;
251 /* Immediately after read-tree or update-index --cacheinfo,
252 * the length field is zero. For other cases the ce_size
253 * should match the SHA1 recorded in the index entry.
255 if ((changed & DATA_CHANGED) && ce->ce_size != htonl(0))
256 return changed;
258 changed_fs = ce_modified_check_fs(ce, st);
259 if (changed_fs)
260 return changed | changed_fs;
261 return 0;
264 int base_name_compare(const char *name1, int len1, int mode1,
265 const char *name2, int len2, int mode2)
267 unsigned char c1, c2;
268 int len = len1 < len2 ? len1 : len2;
269 int cmp;
271 cmp = memcmp(name1, name2, len);
272 if (cmp)
273 return cmp;
274 c1 = name1[len];
275 c2 = name2[len];
276 if (!c1 && S_ISDIR(mode1))
277 c1 = '/';
278 if (!c2 && S_ISDIR(mode2))
279 c2 = '/';
280 return (c1 < c2) ? -1 : (c1 > c2) ? 1 : 0;
283 int cache_name_compare(const char *name1, int flags1, const char *name2, int flags2)
285 int len1 = flags1 & CE_NAMEMASK;
286 int len2 = flags2 & CE_NAMEMASK;
287 int len = len1 < len2 ? len1 : len2;
288 int cmp;
290 cmp = memcmp(name1, name2, len);
291 if (cmp)
292 return cmp;
293 if (len1 < len2)
294 return -1;
295 if (len1 > len2)
296 return 1;
298 /* Compare stages */
299 flags1 &= CE_STAGEMASK;
300 flags2 &= CE_STAGEMASK;
302 if (flags1 < flags2)
303 return -1;
304 if (flags1 > flags2)
305 return 1;
306 return 0;
309 int index_name_pos(struct index_state *istate, const char *name, int namelen)
311 int first, last;
313 first = 0;
314 last = istate->cache_nr;
315 while (last > first) {
316 int next = (last + first) >> 1;
317 struct cache_entry *ce = istate->cache[next];
318 int cmp = cache_name_compare(name, namelen, ce->name, ntohs(ce->ce_flags));
319 if (!cmp)
320 return next;
321 if (cmp < 0) {
322 last = next;
323 continue;
325 first = next+1;
327 return -first-1;
330 /* Remove entry, return true if there are more entries to go.. */
331 int remove_index_entry_at(struct index_state *istate, int pos)
333 istate->cache_changed = 1;
334 istate->cache_nr--;
335 if (pos >= istate->cache_nr)
336 return 0;
337 memmove(istate->cache + pos,
338 istate->cache + pos + 1,
339 (istate->cache_nr - pos) * sizeof(struct cache_entry *));
340 return 1;
343 int remove_file_from_index(struct index_state *istate, const char *path)
345 int pos = index_name_pos(istate, path, strlen(path));
346 if (pos < 0)
347 pos = -pos-1;
348 while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path))
349 remove_index_entry_at(istate, pos);
350 return 0;
353 static int compare_name(struct cache_entry *ce, const char *path, int namelen)
355 return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen);
358 static int index_name_pos_also_unmerged(struct index_state *istate,
359 const char *path, int namelen)
361 int pos = index_name_pos(istate, path, namelen);
362 struct cache_entry *ce;
364 if (pos >= 0)
365 return pos;
367 /* maybe unmerged? */
368 pos = -1 - pos;
369 if (pos >= istate->cache_nr ||
370 compare_name((ce = istate->cache[pos]), path, namelen))
371 return -1;
373 /* order of preference: stage 2, 1, 3 */
374 if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr &&
375 ce_stage((ce = istate->cache[pos + 1])) == 2 &&
376 !compare_name(ce, path, namelen))
377 pos++;
378 return pos;
381 int add_file_to_index(struct index_state *istate, const char *path, int verbose)
383 int size, namelen, pos;
384 struct stat st;
385 struct cache_entry *ce;
387 if (lstat(path, &st))
388 die("%s: unable to stat (%s)", path, strerror(errno));
390 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode) && !S_ISDIR(st.st_mode))
391 die("%s: can only add regular files, symbolic links or git-directories", path);
393 namelen = strlen(path);
394 if (S_ISDIR(st.st_mode)) {
395 while (namelen && path[namelen-1] == '/')
396 namelen--;
398 size = cache_entry_size(namelen);
399 ce = xcalloc(1, size);
400 memcpy(ce->name, path, namelen);
401 ce->ce_flags = htons(namelen);
402 fill_stat_cache_info(ce, &st);
404 if (trust_executable_bit && has_symlinks)
405 ce->ce_mode = create_ce_mode(st.st_mode);
406 else {
407 /* If there is an existing entry, pick the mode bits and type
408 * from it, otherwise assume unexecutable regular file.
410 struct cache_entry *ent;
411 int pos = index_name_pos_also_unmerged(istate, path, namelen);
413 ent = (0 <= pos) ? istate->cache[pos] : NULL;
414 ce->ce_mode = ce_mode_from_stat(ent, st.st_mode);
417 pos = index_name_pos(istate, ce->name, namelen);
418 if (0 <= pos &&
419 !ce_stage(istate->cache[pos]) &&
420 !ie_modified(istate, istate->cache[pos], &st, 1)) {
421 /* Nothing changed, really */
422 free(ce);
423 return 0;
426 if (index_path(ce->sha1, path, &st, 1))
427 die("unable to index file %s", path);
428 if (add_index_entry(istate, ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE))
429 die("unable to add %s to index",path);
430 if (verbose)
431 printf("add '%s'\n", path);
432 cache_tree_invalidate_path(istate->cache_tree, path);
433 return 0;
436 int ce_same_name(struct cache_entry *a, struct cache_entry *b)
438 int len = ce_namelen(a);
439 return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
442 int ce_path_match(const struct cache_entry *ce, const char **pathspec)
444 const char *match, *name;
445 int len;
447 if (!pathspec)
448 return 1;
450 len = ce_namelen(ce);
451 name = ce->name;
452 while ((match = *pathspec++) != NULL) {
453 int matchlen = strlen(match);
454 if (matchlen > len)
455 continue;
456 if (memcmp(name, match, matchlen))
457 continue;
458 if (matchlen && name[matchlen-1] == '/')
459 return 1;
460 if (name[matchlen] == '/' || !name[matchlen])
461 return 1;
462 if (!matchlen)
463 return 1;
465 return 0;
469 * We fundamentally don't like some paths: we don't want
470 * dot or dot-dot anywhere, and for obvious reasons don't
471 * want to recurse into ".git" either.
473 * Also, we don't want double slashes or slashes at the
474 * end that can make pathnames ambiguous.
476 static int verify_dotfile(const char *rest)
479 * The first character was '.', but that
480 * has already been discarded, we now test
481 * the rest.
483 switch (*rest) {
484 /* "." is not allowed */
485 case '\0': case '/':
486 return 0;
489 * ".git" followed by NUL or slash is bad. This
490 * shares the path end test with the ".." case.
492 case 'g':
493 if (rest[1] != 'i')
494 break;
495 if (rest[2] != 't')
496 break;
497 rest += 2;
498 /* fallthrough */
499 case '.':
500 if (rest[1] == '\0' || rest[1] == '/')
501 return 0;
503 return 1;
506 int verify_path(const char *path)
508 char c;
510 #ifdef __MINGW32__
511 if (is_absolute_path(path))
512 return error("Cannot handle absolute path: %s", path);
513 #endif
515 goto inside;
516 for (;;) {
517 if (!c)
518 return 1;
519 if (c == '/') {
520 inside:
521 c = *path++;
522 switch (c) {
523 default:
524 continue;
525 case '/': case '\0':
526 break;
527 case '.':
528 if (verify_dotfile(path))
529 continue;
531 return 0;
533 c = *path++;
538 * Do we have another file that has the beginning components being a
539 * proper superset of the name we're trying to add?
541 static int has_file_name(struct index_state *istate,
542 const struct cache_entry *ce, int pos, int ok_to_replace)
544 int retval = 0;
545 int len = ce_namelen(ce);
546 int stage = ce_stage(ce);
547 const char *name = ce->name;
549 while (pos < istate->cache_nr) {
550 struct cache_entry *p = istate->cache[pos++];
552 if (len >= ce_namelen(p))
553 break;
554 if (memcmp(name, p->name, len))
555 break;
556 if (ce_stage(p) != stage)
557 continue;
558 if (p->name[len] != '/')
559 continue;
560 if (!ce_stage(p) && !p->ce_mode)
561 continue;
562 retval = -1;
563 if (!ok_to_replace)
564 break;
565 remove_index_entry_at(istate, --pos);
567 return retval;
571 * Do we have another file with a pathname that is a proper
572 * subset of the name we're trying to add?
574 static int has_dir_name(struct index_state *istate,
575 const struct cache_entry *ce, int pos, int ok_to_replace)
577 int retval = 0;
578 int stage = ce_stage(ce);
579 const char *name = ce->name;
580 const char *slash = name + ce_namelen(ce);
582 for (;;) {
583 int len;
585 for (;;) {
586 if (*--slash == '/')
587 break;
588 if (slash <= ce->name)
589 return retval;
591 len = slash - name;
593 pos = index_name_pos(istate, name, ntohs(create_ce_flags(len, stage)));
594 if (pos >= 0) {
596 * Found one, but not so fast. This could
597 * be a marker that says "I was here, but
598 * I am being removed". Such an entry is
599 * not a part of the resulting tree, and
600 * it is Ok to have a directory at the same
601 * path.
603 if (stage || istate->cache[pos]->ce_mode) {
604 retval = -1;
605 if (!ok_to_replace)
606 break;
607 remove_index_entry_at(istate, pos);
608 continue;
611 else
612 pos = -pos-1;
615 * Trivial optimization: if we find an entry that
616 * already matches the sub-directory, then we know
617 * we're ok, and we can exit.
619 while (pos < istate->cache_nr) {
620 struct cache_entry *p = istate->cache[pos];
621 if ((ce_namelen(p) <= len) ||
622 (p->name[len] != '/') ||
623 memcmp(p->name, name, len))
624 break; /* not our subdirectory */
625 if (ce_stage(p) == stage && (stage || p->ce_mode))
626 /* p is at the same stage as our entry, and
627 * is a subdirectory of what we are looking
628 * at, so we cannot have conflicts at our
629 * level or anything shorter.
631 return retval;
632 pos++;
635 return retval;
638 /* We may be in a situation where we already have path/file and path
639 * is being added, or we already have path and path/file is being
640 * added. Either one would result in a nonsense tree that has path
641 * twice when git-write-tree tries to write it out. Prevent it.
643 * If ok-to-replace is specified, we remove the conflicting entries
644 * from the cache so the caller should recompute the insert position.
645 * When this happens, we return non-zero.
647 static int check_file_directory_conflict(struct index_state *istate,
648 const struct cache_entry *ce,
649 int pos, int ok_to_replace)
651 int retval;
654 * When ce is an "I am going away" entry, we allow it to be added
656 if (!ce_stage(ce) && !ce->ce_mode)
657 return 0;
660 * We check if the path is a sub-path of a subsequent pathname
661 * first, since removing those will not change the position
662 * in the array.
664 retval = has_file_name(istate, ce, pos, ok_to_replace);
667 * Then check if the path might have a clashing sub-directory
668 * before it.
670 return retval + has_dir_name(istate, ce, pos, ok_to_replace);
673 static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option)
675 int pos;
676 int ok_to_add = option & ADD_CACHE_OK_TO_ADD;
677 int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;
678 int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;
680 pos = index_name_pos(istate, ce->name, ntohs(ce->ce_flags));
682 /* existing match? Just replace it. */
683 if (pos >= 0) {
684 istate->cache_changed = 1;
685 istate->cache[pos] = ce;
686 return 0;
688 pos = -pos-1;
691 * Inserting a merged entry ("stage 0") into the index
692 * will always replace all non-merged entries..
694 if (pos < istate->cache_nr && ce_stage(ce) == 0) {
695 while (ce_same_name(istate->cache[pos], ce)) {
696 ok_to_add = 1;
697 if (!remove_index_entry_at(istate, pos))
698 break;
702 if (!ok_to_add)
703 return -1;
704 if (!verify_path(ce->name))
705 return -1;
707 if (!skip_df_check &&
708 check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {
709 if (!ok_to_replace)
710 return error("'%s' appears as both a file and as a directory",
711 ce->name);
712 pos = index_name_pos(istate, ce->name, ntohs(ce->ce_flags));
713 pos = -pos-1;
715 return pos + 1;
718 int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option)
720 int pos;
722 if (option & ADD_CACHE_JUST_APPEND)
723 pos = istate->cache_nr;
724 else {
725 int ret;
726 ret = add_index_entry_with_check(istate, ce, option);
727 if (ret <= 0)
728 return ret;
729 pos = ret - 1;
732 /* Make sure the array is big enough .. */
733 if (istate->cache_nr == istate->cache_alloc) {
734 istate->cache_alloc = alloc_nr(istate->cache_alloc);
735 istate->cache = xrealloc(istate->cache,
736 istate->cache_alloc * sizeof(struct cache_entry *));
739 /* Add it in.. */
740 istate->cache_nr++;
741 if (istate->cache_nr > pos + 1)
742 memmove(istate->cache + pos + 1,
743 istate->cache + pos,
744 (istate->cache_nr - pos - 1) * sizeof(ce));
745 istate->cache[pos] = ce;
746 istate->cache_changed = 1;
747 return 0;
751 * "refresh" does not calculate a new sha1 file or bring the
752 * cache up-to-date for mode/content changes. But what it
753 * _does_ do is to "re-match" the stat information of a file
754 * with the cache, so that you can refresh the cache for a
755 * file that hasn't been changed but where the stat entry is
756 * out of date.
758 * For example, you'd want to do this after doing a "git-read-tree",
759 * to link up the stat cache details with the proper files.
761 static struct cache_entry *refresh_cache_ent(struct index_state *istate,
762 struct cache_entry *ce, int really, int *err)
764 struct stat st;
765 struct cache_entry *updated;
766 int changed, size;
768 if (lstat(ce->name, &st) < 0) {
769 if (err)
770 *err = errno;
771 return NULL;
774 changed = ie_match_stat(istate, ce, &st, really);
775 if (!changed) {
776 if (really && assume_unchanged &&
777 !(ce->ce_flags & htons(CE_VALID)))
778 ; /* mark this one VALID again */
779 else
780 return ce;
783 if (ie_modified(istate, ce, &st, really)) {
784 if (err)
785 *err = EINVAL;
786 return NULL;
789 size = ce_size(ce);
790 updated = xmalloc(size);
791 memcpy(updated, ce, size);
792 fill_stat_cache_info(updated, &st);
794 /* In this case, if really is not set, we should leave
795 * CE_VALID bit alone. Otherwise, paths marked with
796 * --no-assume-unchanged (i.e. things to be edited) will
797 * reacquire CE_VALID bit automatically, which is not
798 * really what we want.
800 if (!really && assume_unchanged && !(ce->ce_flags & htons(CE_VALID)))
801 updated->ce_flags &= ~htons(CE_VALID);
803 return updated;
806 int refresh_index(struct index_state *istate, unsigned int flags)
808 int i;
809 int has_errors = 0;
810 int really = (flags & REFRESH_REALLY) != 0;
811 int allow_unmerged = (flags & REFRESH_UNMERGED) != 0;
812 int quiet = (flags & REFRESH_QUIET) != 0;
813 int not_new = (flags & REFRESH_IGNORE_MISSING) != 0;
815 for (i = 0; i < istate->cache_nr; i++) {
816 struct cache_entry *ce, *new;
817 int cache_errno = 0;
819 ce = istate->cache[i];
820 if (ce_stage(ce)) {
821 while ((i < istate->cache_nr) &&
822 ! strcmp(istate->cache[i]->name, ce->name))
823 i++;
824 i--;
825 if (allow_unmerged)
826 continue;
827 printf("%s: needs merge\n", ce->name);
828 has_errors = 1;
829 continue;
832 new = refresh_cache_ent(istate, ce, really, &cache_errno);
833 if (new == ce)
834 continue;
835 if (!new) {
836 if (not_new && cache_errno == ENOENT)
837 continue;
838 if (really && cache_errno == EINVAL) {
839 /* If we are doing --really-refresh that
840 * means the index is not valid anymore.
842 ce->ce_flags &= ~htons(CE_VALID);
843 istate->cache_changed = 1;
845 if (quiet)
846 continue;
847 printf("%s: needs update\n", ce->name);
848 has_errors = 1;
849 continue;
851 istate->cache_changed = 1;
852 /* You can NOT just free istate->cache[i] here, since it
853 * might not be necessarily malloc()ed but can also come
854 * from mmap(). */
855 istate->cache[i] = new;
857 return has_errors;
860 struct cache_entry *refresh_cache_entry(struct cache_entry *ce, int really)
862 return refresh_cache_ent(&the_index, ce, really, NULL);
865 static int verify_hdr(struct cache_header *hdr, unsigned long size)
867 SHA_CTX c;
868 unsigned char sha1[20];
870 if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
871 return error("bad signature");
872 if (hdr->hdr_version != htonl(2))
873 return error("bad index version");
874 SHA1_Init(&c);
875 SHA1_Update(&c, hdr, size - 20);
876 SHA1_Final(sha1, &c);
877 if (hashcmp(sha1, (unsigned char *)hdr + size - 20))
878 return error("bad index file sha1 signature");
879 return 0;
882 static int read_index_extension(struct index_state *istate,
883 const char *ext, void *data, unsigned long sz)
885 switch (CACHE_EXT(ext)) {
886 case CACHE_EXT_TREE:
887 istate->cache_tree = cache_tree_read(data, sz);
888 break;
889 default:
890 if (*ext < 'A' || 'Z' < *ext)
891 return error("index uses %.4s extension, which we do not understand",
892 ext);
893 fprintf(stderr, "ignoring %.4s extension\n", ext);
894 break;
896 return 0;
899 int read_index(struct index_state *istate)
901 return read_index_from(istate, get_index_file());
904 /* remember to discard_cache() before reading a different cache! */
905 int read_index_from(struct index_state *istate, const char *path)
907 int fd, i;
908 struct stat st;
909 unsigned long offset;
910 struct cache_header *hdr;
912 errno = EBUSY;
913 if (istate->mmap)
914 return istate->cache_nr;
916 errno = ENOENT;
917 istate->timestamp = 0;
918 fd = open(path, O_RDONLY);
919 if (fd < 0) {
920 if (errno == ENOENT)
921 return 0;
922 die("index file open failed (%s)", strerror(errno));
925 if (fstat(fd, &st))
926 die("cannot stat the open index (%s)", strerror(errno));
928 errno = EINVAL;
929 istate->mmap_size = xsize_t(st.st_size);
930 if (istate->mmap_size < sizeof(struct cache_header) + 20)
931 die("index file smaller than expected");
933 istate->mmap = xmmap(NULL, istate->mmap_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
934 close(fd);
936 hdr = istate->mmap;
937 if (verify_hdr(hdr, istate->mmap_size) < 0)
938 goto unmap;
940 istate->cache_nr = ntohl(hdr->hdr_entries);
941 istate->cache_alloc = alloc_nr(istate->cache_nr);
942 istate->cache = xcalloc(istate->cache_alloc, sizeof(struct cache_entry *));
944 offset = sizeof(*hdr);
945 for (i = 0; i < istate->cache_nr; i++) {
946 struct cache_entry *ce;
948 ce = (struct cache_entry *)((char *)(istate->mmap) + offset);
949 offset = offset + ce_size(ce);
950 istate->cache[i] = ce;
952 istate->timestamp = st.st_mtime;
953 while (offset <= istate->mmap_size - 20 - 8) {
954 /* After an array of active_nr index entries,
955 * there can be arbitrary number of extended
956 * sections, each of which is prefixed with
957 * extension name (4-byte) and section length
958 * in 4-byte network byte order.
960 unsigned long extsize;
961 memcpy(&extsize, (char *)(istate->mmap) + offset + 4, 4);
962 extsize = ntohl(extsize);
963 if (read_index_extension(istate,
964 ((const char *) (istate->mmap)) + offset,
965 (char *) (istate->mmap) + offset + 8,
966 extsize) < 0)
967 goto unmap;
968 offset += 8;
969 offset += extsize;
971 return istate->cache_nr;
973 unmap:
974 munmap(istate->mmap, istate->mmap_size);
975 errno = EINVAL;
976 die("index file corrupt");
979 int discard_index(struct index_state *istate)
981 int ret;
983 istate->cache_nr = 0;
984 istate->cache_changed = 0;
985 istate->timestamp = 0;
986 cache_tree_free(&(istate->cache_tree));
987 if (istate->mmap == NULL)
988 return 0;
989 ret = munmap(istate->mmap, istate->mmap_size);
990 istate->mmap = NULL;
991 istate->mmap_size = 0;
993 /* no need to throw away allocated active_cache */
994 return ret;
997 #define WRITE_BUFFER_SIZE 8192
998 static unsigned char write_buffer[WRITE_BUFFER_SIZE];
999 static unsigned long write_buffer_len;
1001 static int ce_write_flush(SHA_CTX *context, int fd)
1003 unsigned int buffered = write_buffer_len;
1004 if (buffered) {
1005 SHA1_Update(context, write_buffer, buffered);
1006 if (write_in_full(fd, write_buffer, buffered) != buffered)
1007 return -1;
1008 write_buffer_len = 0;
1010 return 0;
1013 static int ce_write(SHA_CTX *context, int fd, void *data, unsigned int len)
1015 while (len) {
1016 unsigned int buffered = write_buffer_len;
1017 unsigned int partial = WRITE_BUFFER_SIZE - buffered;
1018 if (partial > len)
1019 partial = len;
1020 memcpy(write_buffer + buffered, data, partial);
1021 buffered += partial;
1022 if (buffered == WRITE_BUFFER_SIZE) {
1023 write_buffer_len = buffered;
1024 if (ce_write_flush(context, fd))
1025 return -1;
1026 buffered = 0;
1028 write_buffer_len = buffered;
1029 len -= partial;
1030 data = (char *) data + partial;
1032 return 0;
1035 static int write_index_ext_header(SHA_CTX *context, int fd,
1036 unsigned int ext, unsigned int sz)
1038 ext = htonl(ext);
1039 sz = htonl(sz);
1040 return ((ce_write(context, fd, &ext, 4) < 0) ||
1041 (ce_write(context, fd, &sz, 4) < 0)) ? -1 : 0;
1044 static int ce_flush(SHA_CTX *context, int fd)
1046 unsigned int left = write_buffer_len;
1048 if (left) {
1049 write_buffer_len = 0;
1050 SHA1_Update(context, write_buffer, left);
1053 /* Flush first if not enough space for SHA1 signature */
1054 if (left + 20 > WRITE_BUFFER_SIZE) {
1055 if (write_in_full(fd, write_buffer, left) != left)
1056 return -1;
1057 left = 0;
1060 /* Append the SHA1 signature at the end */
1061 SHA1_Final(write_buffer + left, context);
1062 left += 20;
1063 return (write_in_full(fd, write_buffer, left) != left) ? -1 : 0;
1066 static void ce_smudge_racily_clean_entry(struct cache_entry *ce)
1069 * The only thing we care about in this function is to smudge the
1070 * falsely clean entry due to touch-update-touch race, so we leave
1071 * everything else as they are. We are called for entries whose
1072 * ce_mtime match the index file mtime.
1074 struct stat st;
1076 if (lstat(ce->name, &st) < 0)
1077 return;
1078 if (ce_match_stat_basic(ce, &st))
1079 return;
1080 if (ce_modified_check_fs(ce, &st)) {
1081 /* This is "racily clean"; smudge it. Note that this
1082 * is a tricky code. At first glance, it may appear
1083 * that it can break with this sequence:
1085 * $ echo xyzzy >frotz
1086 * $ git-update-index --add frotz
1087 * $ : >frotz
1088 * $ sleep 3
1089 * $ echo filfre >nitfol
1090 * $ git-update-index --add nitfol
1092 * but it does not. When the second update-index runs,
1093 * it notices that the entry "frotz" has the same timestamp
1094 * as index, and if we were to smudge it by resetting its
1095 * size to zero here, then the object name recorded
1096 * in index is the 6-byte file but the cached stat information
1097 * becomes zero --- which would then match what we would
1098 * obtain from the filesystem next time we stat("frotz").
1100 * However, the second update-index, before calling
1101 * this function, notices that the cached size is 6
1102 * bytes and what is on the filesystem is an empty
1103 * file, and never calls us, so the cached size information
1104 * for "frotz" stays 6 which does not match the filesystem.
1106 ce->ce_size = htonl(0);
1107 trace_printf("trace: index: Index object for '%s' smudged due to being racily clean\n", ce->name);
1111 int write_index(struct index_state *istate, int newfd)
1113 SHA_CTX c;
1114 struct cache_header hdr;
1115 int i, removed;
1116 struct cache_entry **cache = istate->cache;
1117 int entries = istate->cache_nr;
1119 for (i = removed = 0; i < entries; i++)
1120 if (!cache[i]->ce_mode)
1121 removed++;
1123 hdr.hdr_signature = htonl(CACHE_SIGNATURE);
1124 hdr.hdr_version = htonl(2);
1125 hdr.hdr_entries = htonl(entries - removed);
1127 SHA1_Init(&c);
1128 if (ce_write(&c, newfd, &hdr, sizeof(hdr)) < 0)
1129 return -1;
1131 for (i = 0; i < entries; i++) {
1132 struct cache_entry *ce = cache[i];
1133 if (!ce->ce_mode)
1134 continue;
1135 if (istate->timestamp &&
1136 istate->timestamp <= ntohl(ce->ce_mtime.sec))
1137 ce_smudge_racily_clean_entry(ce);
1138 if (ce_write(&c, newfd, ce, ce_size(ce)) < 0)
1139 return -1;
1142 /* Write extension data here */
1143 if (istate->cache_tree) {
1144 unsigned long sz;
1145 void *data = cache_tree_write(istate->cache_tree, &sz);
1146 if (data &&
1147 !write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sz) &&
1148 !ce_write(&c, newfd, data, sz))
1149 free(data);
1150 else {
1151 free(data);
1152 return -1;
1155 return ce_flush(&c, newfd);