read-cache: mark updated entries for split index
[git] / read-cache.c
1 /*
2  * GIT - The information manager from hell
3  *
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"
10 #include "dir.h"
11 #include "tree.h"
12 #include "commit.h"
13 #include "blob.h"
14 #include "resolve-undo.h"
15 #include "strbuf.h"
16 #include "varint.h"
17 #include "split-index.h"
18
19 static struct cache_entry *refresh_cache_entry(struct cache_entry *ce,
20                                                unsigned int options);
21
22 /* Mask for the name length in ce_flags in the on-disk index */
23
24 #define CE_NAMEMASK  (0x0fff)
25
26 /* Index extensions.
27  *
28  * The first letter should be 'A'..'Z' for extensions that are not
29  * necessary for a correct operation (i.e. optimization data).
30  * When new extensions are added that _needs_ to be understood in
31  * order to correctly interpret the index file, pick character that
32  * is outside the range, to cause the reader to abort.
33  */
34
35 #define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
36 #define CACHE_EXT_TREE 0x54524545       /* "TREE" */
37 #define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
38 #define CACHE_EXT_LINK 0x6c696e6b         /* "link" */
39
40 /* changes that can be kept in $GIT_DIR/index (basically all extensions) */
41 #define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \
42                  CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED)
43
44 struct index_state the_index;
45 static const char *alternate_index_output;
46
47 static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
48 {
49         istate->cache[nr] = ce;
50         add_name_hash(istate, ce);
51 }
52
53 static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
54 {
55         struct cache_entry *old = istate->cache[nr];
56
57         replace_index_entry_in_base(istate, old, ce);
58         remove_name_hash(istate, old);
59         free(old);
60         set_index_entry(istate, nr, ce);
61         ce->ce_flags |= CE_UPDATE_IN_BASE;
62         istate->cache_changed |= CE_ENTRY_CHANGED;
63 }
64
65 void rename_index_entry_at(struct index_state *istate, int nr, const char *new_name)
66 {
67         struct cache_entry *old = istate->cache[nr], *new;
68         int namelen = strlen(new_name);
69
70         new = xmalloc(cache_entry_size(namelen));
71         copy_cache_entry(new, old);
72         new->ce_flags &= ~CE_HASHED;
73         new->ce_namelen = namelen;
74         new->index = 0;
75         memcpy(new->name, new_name, namelen + 1);
76
77         cache_tree_invalidate_path(istate, old->name);
78         remove_index_entry_at(istate, nr);
79         add_index_entry(istate, new, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
80 }
81
82 void fill_stat_data(struct stat_data *sd, struct stat *st)
83 {
84         sd->sd_ctime.sec = (unsigned int)st->st_ctime;
85         sd->sd_mtime.sec = (unsigned int)st->st_mtime;
86         sd->sd_ctime.nsec = ST_CTIME_NSEC(*st);
87         sd->sd_mtime.nsec = ST_MTIME_NSEC(*st);
88         sd->sd_dev = st->st_dev;
89         sd->sd_ino = st->st_ino;
90         sd->sd_uid = st->st_uid;
91         sd->sd_gid = st->st_gid;
92         sd->sd_size = st->st_size;
93 }
94
95 int match_stat_data(const struct stat_data *sd, struct stat *st)
96 {
97         int changed = 0;
98
99         if (sd->sd_mtime.sec != (unsigned int)st->st_mtime)
100                 changed |= MTIME_CHANGED;
101         if (trust_ctime && check_stat &&
102             sd->sd_ctime.sec != (unsigned int)st->st_ctime)
103                 changed |= CTIME_CHANGED;
104
105 #ifdef USE_NSEC
106         if (check_stat && sd->sd_mtime.nsec != ST_MTIME_NSEC(*st))
107                 changed |= MTIME_CHANGED;
108         if (trust_ctime && check_stat &&
109             sd->sd_ctime.nsec != ST_CTIME_NSEC(*st))
110                 changed |= CTIME_CHANGED;
111 #endif
112
113         if (check_stat) {
114                 if (sd->sd_uid != (unsigned int) st->st_uid ||
115                         sd->sd_gid != (unsigned int) st->st_gid)
116                         changed |= OWNER_CHANGED;
117                 if (sd->sd_ino != (unsigned int) st->st_ino)
118                         changed |= INODE_CHANGED;
119         }
120
121 #ifdef USE_STDEV
122         /*
123          * st_dev breaks on network filesystems where different
124          * clients will have different views of what "device"
125          * the filesystem is on
126          */
127         if (check_stat && sd->sd_dev != (unsigned int) st->st_dev)
128                         changed |= INODE_CHANGED;
129 #endif
130
131         if (sd->sd_size != (unsigned int) st->st_size)
132                 changed |= DATA_CHANGED;
133
134         return changed;
135 }
136
137 /*
138  * This only updates the "non-critical" parts of the directory
139  * cache, ie the parts that aren't tracked by GIT, and only used
140  * to validate the cache.
141  */
142 void fill_stat_cache_info(struct cache_entry *ce, struct stat *st)
143 {
144         fill_stat_data(&ce->ce_stat_data, st);
145
146         if (assume_unchanged)
147                 ce->ce_flags |= CE_VALID;
148
149         if (S_ISREG(st->st_mode))
150                 ce_mark_uptodate(ce);
151 }
152
153 static int ce_compare_data(const struct cache_entry *ce, struct stat *st)
154 {
155         int match = -1;
156         int fd = open(ce->name, O_RDONLY);
157
158         if (fd >= 0) {
159                 unsigned char sha1[20];
160                 if (!index_fd(sha1, fd, st, OBJ_BLOB, ce->name, 0))
161                         match = hashcmp(sha1, ce->sha1);
162                 /* index_fd() closed the file descriptor already */
163         }
164         return match;
165 }
166
167 static int ce_compare_link(const struct cache_entry *ce, size_t expected_size)
168 {
169         int match = -1;
170         void *buffer;
171         unsigned long size;
172         enum object_type type;
173         struct strbuf sb = STRBUF_INIT;
174
175         if (strbuf_readlink(&sb, ce->name, expected_size))
176                 return -1;
177
178         buffer = read_sha1_file(ce->sha1, &type, &size);
179         if (buffer) {
180                 if (size == sb.len)
181                         match = memcmp(buffer, sb.buf, size);
182                 free(buffer);
183         }
184         strbuf_release(&sb);
185         return match;
186 }
187
188 static int ce_compare_gitlink(const struct cache_entry *ce)
189 {
190         unsigned char sha1[20];
191
192         /*
193          * We don't actually require that the .git directory
194          * under GITLINK directory be a valid git directory. It
195          * might even be missing (in case nobody populated that
196          * sub-project).
197          *
198          * If so, we consider it always to match.
199          */
200         if (resolve_gitlink_ref(ce->name, "HEAD", sha1) < 0)
201                 return 0;
202         return hashcmp(sha1, ce->sha1);
203 }
204
205 static int ce_modified_check_fs(const struct cache_entry *ce, struct stat *st)
206 {
207         switch (st->st_mode & S_IFMT) {
208         case S_IFREG:
209                 if (ce_compare_data(ce, st))
210                         return DATA_CHANGED;
211                 break;
212         case S_IFLNK:
213                 if (ce_compare_link(ce, xsize_t(st->st_size)))
214                         return DATA_CHANGED;
215                 break;
216         case S_IFDIR:
217                 if (S_ISGITLINK(ce->ce_mode))
218                         return ce_compare_gitlink(ce) ? DATA_CHANGED : 0;
219         default:
220                 return TYPE_CHANGED;
221         }
222         return 0;
223 }
224
225 static int ce_match_stat_basic(const struct cache_entry *ce, struct stat *st)
226 {
227         unsigned int changed = 0;
228
229         if (ce->ce_flags & CE_REMOVE)
230                 return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED;
231
232         switch (ce->ce_mode & S_IFMT) {
233         case S_IFREG:
234                 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
235                 /* We consider only the owner x bit to be relevant for
236                  * "mode changes"
237                  */
238                 if (trust_executable_bit &&
239                     (0100 & (ce->ce_mode ^ st->st_mode)))
240                         changed |= MODE_CHANGED;
241                 break;
242         case S_IFLNK:
243                 if (!S_ISLNK(st->st_mode) &&
244                     (has_symlinks || !S_ISREG(st->st_mode)))
245                         changed |= TYPE_CHANGED;
246                 break;
247         case S_IFGITLINK:
248                 /* We ignore most of the st_xxx fields for gitlinks */
249                 if (!S_ISDIR(st->st_mode))
250                         changed |= TYPE_CHANGED;
251                 else if (ce_compare_gitlink(ce))
252                         changed |= DATA_CHANGED;
253                 return changed;
254         default:
255                 die("internal error: ce_mode is %o", ce->ce_mode);
256         }
257
258         changed |= match_stat_data(&ce->ce_stat_data, st);
259
260         /* Racily smudged entry? */
261         if (!ce->ce_stat_data.sd_size) {
262                 if (!is_empty_blob_sha1(ce->sha1))
263                         changed |= DATA_CHANGED;
264         }
265
266         return changed;
267 }
268
269 static int is_racy_timestamp(const struct index_state *istate,
270                              const struct cache_entry *ce)
271 {
272         return (!S_ISGITLINK(ce->ce_mode) &&
273                 istate->timestamp.sec &&
274 #ifdef USE_NSEC
275                  /* nanosecond timestamped files can also be racy! */
276                 (istate->timestamp.sec < ce->ce_stat_data.sd_mtime.sec ||
277                  (istate->timestamp.sec == ce->ce_stat_data.sd_mtime.sec &&
278                   istate->timestamp.nsec <= ce->ce_stat_data.sd_mtime.nsec))
279 #else
280                 istate->timestamp.sec <= ce->ce_stat_data.sd_mtime.sec
281 #endif
282                  );
283 }
284
285 int ie_match_stat(const struct index_state *istate,
286                   const struct cache_entry *ce, struct stat *st,
287                   unsigned int options)
288 {
289         unsigned int changed;
290         int ignore_valid = options & CE_MATCH_IGNORE_VALID;
291         int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
292         int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY;
293
294         /*
295          * If it's marked as always valid in the index, it's
296          * valid whatever the checked-out copy says.
297          *
298          * skip-worktree has the same effect with higher precedence
299          */
300         if (!ignore_skip_worktree && ce_skip_worktree(ce))
301                 return 0;
302         if (!ignore_valid && (ce->ce_flags & CE_VALID))
303                 return 0;
304
305         /*
306          * Intent-to-add entries have not been added, so the index entry
307          * by definition never matches what is in the work tree until it
308          * actually gets added.
309          */
310         if (ce->ce_flags & CE_INTENT_TO_ADD)
311                 return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED;
312
313         changed = ce_match_stat_basic(ce, st);
314
315         /*
316          * Within 1 second of this sequence:
317          *      echo xyzzy >file && git-update-index --add file
318          * running this command:
319          *      echo frotz >file
320          * would give a falsely clean cache entry.  The mtime and
321          * length match the cache, and other stat fields do not change.
322          *
323          * We could detect this at update-index time (the cache entry
324          * being registered/updated records the same time as "now")
325          * and delay the return from git-update-index, but that would
326          * effectively mean we can make at most one commit per second,
327          * which is not acceptable.  Instead, we check cache entries
328          * whose mtime are the same as the index file timestamp more
329          * carefully than others.
330          */
331         if (!changed && is_racy_timestamp(istate, ce)) {
332                 if (assume_racy_is_modified)
333                         changed |= DATA_CHANGED;
334                 else
335                         changed |= ce_modified_check_fs(ce, st);
336         }
337
338         return changed;
339 }
340
341 int ie_modified(const struct index_state *istate,
342                 const struct cache_entry *ce,
343                 struct stat *st, unsigned int options)
344 {
345         int changed, changed_fs;
346
347         changed = ie_match_stat(istate, ce, st, options);
348         if (!changed)
349                 return 0;
350         /*
351          * If the mode or type has changed, there's no point in trying
352          * to refresh the entry - it's not going to match
353          */
354         if (changed & (MODE_CHANGED | TYPE_CHANGED))
355                 return changed;
356
357         /*
358          * Immediately after read-tree or update-index --cacheinfo,
359          * the length field is zero, as we have never even read the
360          * lstat(2) information once, and we cannot trust DATA_CHANGED
361          * returned by ie_match_stat() which in turn was returned by
362          * ce_match_stat_basic() to signal that the filesize of the
363          * blob changed.  We have to actually go to the filesystem to
364          * see if the contents match, and if so, should answer "unchanged".
365          *
366          * The logic does not apply to gitlinks, as ce_match_stat_basic()
367          * already has checked the actual HEAD from the filesystem in the
368          * subproject.  If ie_match_stat() already said it is different,
369          * then we know it is.
370          */
371         if ((changed & DATA_CHANGED) &&
372             (S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size != 0))
373                 return changed;
374
375         changed_fs = ce_modified_check_fs(ce, st);
376         if (changed_fs)
377                 return changed | changed_fs;
378         return 0;
379 }
380
381 int base_name_compare(const char *name1, int len1, int mode1,
382                       const char *name2, int len2, int mode2)
383 {
384         unsigned char c1, c2;
385         int len = len1 < len2 ? len1 : len2;
386         int cmp;
387
388         cmp = memcmp(name1, name2, len);
389         if (cmp)
390                 return cmp;
391         c1 = name1[len];
392         c2 = name2[len];
393         if (!c1 && S_ISDIR(mode1))
394                 c1 = '/';
395         if (!c2 && S_ISDIR(mode2))
396                 c2 = '/';
397         return (c1 < c2) ? -1 : (c1 > c2) ? 1 : 0;
398 }
399
400 /*
401  * df_name_compare() is identical to base_name_compare(), except it
402  * compares conflicting directory/file entries as equal. Note that
403  * while a directory name compares as equal to a regular file, they
404  * then individually compare _differently_ to a filename that has
405  * a dot after the basename (because '\0' < '.' < '/').
406  *
407  * This is used by routines that want to traverse the git namespace
408  * but then handle conflicting entries together when possible.
409  */
410 int df_name_compare(const char *name1, int len1, int mode1,
411                     const char *name2, int len2, int mode2)
412 {
413         int len = len1 < len2 ? len1 : len2, cmp;
414         unsigned char c1, c2;
415
416         cmp = memcmp(name1, name2, len);
417         if (cmp)
418                 return cmp;
419         /* Directories and files compare equal (same length, same name) */
420         if (len1 == len2)
421                 return 0;
422         c1 = name1[len];
423         if (!c1 && S_ISDIR(mode1))
424                 c1 = '/';
425         c2 = name2[len];
426         if (!c2 && S_ISDIR(mode2))
427                 c2 = '/';
428         if (c1 == '/' && !c2)
429                 return 0;
430         if (c2 == '/' && !c1)
431                 return 0;
432         return c1 - c2;
433 }
434
435 int cache_name_stage_compare(const char *name1, int len1, int stage1, const char *name2, int len2, int stage2)
436 {
437         int len = len1 < len2 ? len1 : len2;
438         int cmp;
439
440         cmp = memcmp(name1, name2, len);
441         if (cmp)
442                 return cmp;
443         if (len1 < len2)
444                 return -1;
445         if (len1 > len2)
446                 return 1;
447
448         if (stage1 < stage2)
449                 return -1;
450         if (stage1 > stage2)
451                 return 1;
452         return 0;
453 }
454
455 int cache_name_compare(const char *name1, int len1, const char *name2, int len2)
456 {
457         return cache_name_stage_compare(name1, len1, 0, name2, len2, 0);
458 }
459
460 static int index_name_stage_pos(const struct index_state *istate, const char *name, int namelen, int stage)
461 {
462         int first, last;
463
464         first = 0;
465         last = istate->cache_nr;
466         while (last > first) {
467                 int next = (last + first) >> 1;
468                 struct cache_entry *ce = istate->cache[next];
469                 int cmp = cache_name_stage_compare(name, namelen, stage, ce->name, ce_namelen(ce), ce_stage(ce));
470                 if (!cmp)
471                         return next;
472                 if (cmp < 0) {
473                         last = next;
474                         continue;
475                 }
476                 first = next+1;
477         }
478         return -first-1;
479 }
480
481 int index_name_pos(const struct index_state *istate, const char *name, int namelen)
482 {
483         return index_name_stage_pos(istate, name, namelen, 0);
484 }
485
486 /* Remove entry, return true if there are more entries to go.. */
487 int remove_index_entry_at(struct index_state *istate, int pos)
488 {
489         struct cache_entry *ce = istate->cache[pos];
490
491         record_resolve_undo(istate, ce);
492         remove_name_hash(istate, ce);
493         save_or_free_index_entry(istate, ce);
494         istate->cache_changed |= CE_ENTRY_REMOVED;
495         istate->cache_nr--;
496         if (pos >= istate->cache_nr)
497                 return 0;
498         memmove(istate->cache + pos,
499                 istate->cache + pos + 1,
500                 (istate->cache_nr - pos) * sizeof(struct cache_entry *));
501         return 1;
502 }
503
504 /*
505  * Remove all cache entries marked for removal, that is where
506  * CE_REMOVE is set in ce_flags.  This is much more effective than
507  * calling remove_index_entry_at() for each entry to be removed.
508  */
509 void remove_marked_cache_entries(struct index_state *istate)
510 {
511         struct cache_entry **ce_array = istate->cache;
512         unsigned int i, j;
513
514         for (i = j = 0; i < istate->cache_nr; i++) {
515                 if (ce_array[i]->ce_flags & CE_REMOVE) {
516                         remove_name_hash(istate, ce_array[i]);
517                         save_or_free_index_entry(istate, ce_array[i]);
518                 }
519                 else
520                         ce_array[j++] = ce_array[i];
521         }
522         if (j == istate->cache_nr)
523                 return;
524         istate->cache_changed |= CE_ENTRY_REMOVED;
525         istate->cache_nr = j;
526 }
527
528 int remove_file_from_index(struct index_state *istate, const char *path)
529 {
530         int pos = index_name_pos(istate, path, strlen(path));
531         if (pos < 0)
532                 pos = -pos-1;
533         cache_tree_invalidate_path(istate, path);
534         while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path))
535                 remove_index_entry_at(istate, pos);
536         return 0;
537 }
538
539 static int compare_name(struct cache_entry *ce, const char *path, int namelen)
540 {
541         return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen);
542 }
543
544 static int index_name_pos_also_unmerged(struct index_state *istate,
545         const char *path, int namelen)
546 {
547         int pos = index_name_pos(istate, path, namelen);
548         struct cache_entry *ce;
549
550         if (pos >= 0)
551                 return pos;
552
553         /* maybe unmerged? */
554         pos = -1 - pos;
555         if (pos >= istate->cache_nr ||
556                         compare_name((ce = istate->cache[pos]), path, namelen))
557                 return -1;
558
559         /* order of preference: stage 2, 1, 3 */
560         if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr &&
561                         ce_stage((ce = istate->cache[pos + 1])) == 2 &&
562                         !compare_name(ce, path, namelen))
563                 pos++;
564         return pos;
565 }
566
567 static int different_name(struct cache_entry *ce, struct cache_entry *alias)
568 {
569         int len = ce_namelen(ce);
570         return ce_namelen(alias) != len || memcmp(ce->name, alias->name, len);
571 }
572
573 /*
574  * If we add a filename that aliases in the cache, we will use the
575  * name that we already have - but we don't want to update the same
576  * alias twice, because that implies that there were actually two
577  * different files with aliasing names!
578  *
579  * So we use the CE_ADDED flag to verify that the alias was an old
580  * one before we accept it as
581  */
582 static struct cache_entry *create_alias_ce(struct index_state *istate,
583                                            struct cache_entry *ce,
584                                            struct cache_entry *alias)
585 {
586         int len;
587         struct cache_entry *new;
588
589         if (alias->ce_flags & CE_ADDED)
590                 die("Will not add file alias '%s' ('%s' already exists in index)", ce->name, alias->name);
591
592         /* Ok, create the new entry using the name of the existing alias */
593         len = ce_namelen(alias);
594         new = xcalloc(1, cache_entry_size(len));
595         memcpy(new->name, alias->name, len);
596         copy_cache_entry(new, ce);
597         save_or_free_index_entry(istate, ce);
598         return new;
599 }
600
601 void set_object_name_for_intent_to_add_entry(struct cache_entry *ce)
602 {
603         unsigned char sha1[20];
604         if (write_sha1_file("", 0, blob_type, sha1))
605                 die("cannot create an empty blob in the object database");
606         hashcpy(ce->sha1, sha1);
607 }
608
609 int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags)
610 {
611         int size, namelen, was_same;
612         mode_t st_mode = st->st_mode;
613         struct cache_entry *ce, *alias;
614         unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY;
615         int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND);
616         int pretend = flags & ADD_CACHE_PRETEND;
617         int intent_only = flags & ADD_CACHE_INTENT;
618         int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE|
619                           (intent_only ? ADD_CACHE_NEW_ONLY : 0));
620
621         if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode))
622                 return error("%s: can only add regular files, symbolic links or git-directories", path);
623
624         namelen = strlen(path);
625         if (S_ISDIR(st_mode)) {
626                 while (namelen && path[namelen-1] == '/')
627                         namelen--;
628         }
629         size = cache_entry_size(namelen);
630         ce = xcalloc(1, size);
631         memcpy(ce->name, path, namelen);
632         ce->ce_namelen = namelen;
633         if (!intent_only)
634                 fill_stat_cache_info(ce, st);
635         else
636                 ce->ce_flags |= CE_INTENT_TO_ADD;
637
638         if (trust_executable_bit && has_symlinks)
639                 ce->ce_mode = create_ce_mode(st_mode);
640         else {
641                 /* If there is an existing entry, pick the mode bits and type
642                  * from it, otherwise assume unexecutable regular file.
643                  */
644                 struct cache_entry *ent;
645                 int pos = index_name_pos_also_unmerged(istate, path, namelen);
646
647                 ent = (0 <= pos) ? istate->cache[pos] : NULL;
648                 ce->ce_mode = ce_mode_from_stat(ent, st_mode);
649         }
650
651         /* When core.ignorecase=true, determine if a directory of the same name but differing
652          * case already exists within the Git repository.  If it does, ensure the directory
653          * case of the file being added to the repository matches (is folded into) the existing
654          * entry's directory case.
655          */
656         if (ignore_case) {
657                 const char *startPtr = ce->name;
658                 const char *ptr = startPtr;
659                 while (*ptr) {
660                         while (*ptr && *ptr != '/')
661                                 ++ptr;
662                         if (*ptr == '/') {
663                                 struct cache_entry *foundce;
664                                 ++ptr;
665                                 foundce = index_dir_exists(istate, ce->name, ptr - ce->name - 1);
666                                 if (foundce) {
667                                         memcpy((void *)startPtr, foundce->name + (startPtr - ce->name), ptr - startPtr);
668                                         startPtr = ptr;
669                                 }
670                         }
671                 }
672         }
673
674         alias = index_file_exists(istate, ce->name, ce_namelen(ce), ignore_case);
675         if (alias && !ce_stage(alias) && !ie_match_stat(istate, alias, st, ce_option)) {
676                 /* Nothing changed, really */
677                 free(ce);
678                 if (!S_ISGITLINK(alias->ce_mode))
679                         ce_mark_uptodate(alias);
680                 alias->ce_flags |= CE_ADDED;
681                 return 0;
682         }
683         if (!intent_only) {
684                 if (index_path(ce->sha1, path, st, HASH_WRITE_OBJECT))
685                         return error("unable to index file %s", path);
686         } else
687                 set_object_name_for_intent_to_add_entry(ce);
688
689         if (ignore_case && alias && different_name(ce, alias))
690                 ce = create_alias_ce(istate, ce, alias);
691         ce->ce_flags |= CE_ADDED;
692
693         /* It was suspected to be racily clean, but it turns out to be Ok */
694         was_same = (alias &&
695                     !ce_stage(alias) &&
696                     !hashcmp(alias->sha1, ce->sha1) &&
697                     ce->ce_mode == alias->ce_mode);
698
699         if (pretend)
700                 ;
701         else if (add_index_entry(istate, ce, add_option))
702                 return error("unable to add %s to index",path);
703         if (verbose && !was_same)
704                 printf("add '%s'\n", path);
705         return 0;
706 }
707
708 int add_file_to_index(struct index_state *istate, const char *path, int flags)
709 {
710         struct stat st;
711         if (lstat(path, &st))
712                 die_errno("unable to stat '%s'", path);
713         return add_to_index(istate, path, &st, flags);
714 }
715
716 struct cache_entry *make_cache_entry(unsigned int mode,
717                 const unsigned char *sha1, const char *path, int stage,
718                 unsigned int refresh_options)
719 {
720         int size, len;
721         struct cache_entry *ce;
722
723         if (!verify_path(path)) {
724                 error("Invalid path '%s'", path);
725                 return NULL;
726         }
727
728         len = strlen(path);
729         size = cache_entry_size(len);
730         ce = xcalloc(1, size);
731
732         hashcpy(ce->sha1, sha1);
733         memcpy(ce->name, path, len);
734         ce->ce_flags = create_ce_flags(stage);
735         ce->ce_namelen = len;
736         ce->ce_mode = create_ce_mode(mode);
737
738         return refresh_cache_entry(ce, refresh_options);
739 }
740
741 int ce_same_name(const struct cache_entry *a, const struct cache_entry *b)
742 {
743         int len = ce_namelen(a);
744         return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
745 }
746
747 /*
748  * We fundamentally don't like some paths: we don't want
749  * dot or dot-dot anywhere, and for obvious reasons don't
750  * want to recurse into ".git" either.
751  *
752  * Also, we don't want double slashes or slashes at the
753  * end that can make pathnames ambiguous.
754  */
755 static int verify_dotfile(const char *rest)
756 {
757         /*
758          * The first character was '.', but that
759          * has already been discarded, we now test
760          * the rest.
761          */
762
763         /* "." is not allowed */
764         if (*rest == '\0' || is_dir_sep(*rest))
765                 return 0;
766
767         switch (*rest) {
768         /*
769          * ".git" followed by  NUL or slash is bad. This
770          * shares the path end test with the ".." case.
771          */
772         case 'g':
773                 if (rest[1] != 'i')
774                         break;
775                 if (rest[2] != 't')
776                         break;
777                 rest += 2;
778         /* fallthrough */
779         case '.':
780                 if (rest[1] == '\0' || is_dir_sep(rest[1]))
781                         return 0;
782         }
783         return 1;
784 }
785
786 int verify_path(const char *path)
787 {
788         char c;
789
790         if (has_dos_drive_prefix(path))
791                 return 0;
792
793         goto inside;
794         for (;;) {
795                 if (!c)
796                         return 1;
797                 if (is_dir_sep(c)) {
798 inside:
799                         c = *path++;
800                         if ((c == '.' && !verify_dotfile(path)) ||
801                             is_dir_sep(c) || c == '\0')
802                                 return 0;
803                 }
804                 c = *path++;
805         }
806 }
807
808 /*
809  * Do we have another file that has the beginning components being a
810  * proper superset of the name we're trying to add?
811  */
812 static int has_file_name(struct index_state *istate,
813                          const struct cache_entry *ce, int pos, int ok_to_replace)
814 {
815         int retval = 0;
816         int len = ce_namelen(ce);
817         int stage = ce_stage(ce);
818         const char *name = ce->name;
819
820         while (pos < istate->cache_nr) {
821                 struct cache_entry *p = istate->cache[pos++];
822
823                 if (len >= ce_namelen(p))
824                         break;
825                 if (memcmp(name, p->name, len))
826                         break;
827                 if (ce_stage(p) != stage)
828                         continue;
829                 if (p->name[len] != '/')
830                         continue;
831                 if (p->ce_flags & CE_REMOVE)
832                         continue;
833                 retval = -1;
834                 if (!ok_to_replace)
835                         break;
836                 remove_index_entry_at(istate, --pos);
837         }
838         return retval;
839 }
840
841 /*
842  * Do we have another file with a pathname that is a proper
843  * subset of the name we're trying to add?
844  */
845 static int has_dir_name(struct index_state *istate,
846                         const struct cache_entry *ce, int pos, int ok_to_replace)
847 {
848         int retval = 0;
849         int stage = ce_stage(ce);
850         const char *name = ce->name;
851         const char *slash = name + ce_namelen(ce);
852
853         for (;;) {
854                 int len;
855
856                 for (;;) {
857                         if (*--slash == '/')
858                                 break;
859                         if (slash <= ce->name)
860                                 return retval;
861                 }
862                 len = slash - name;
863
864                 pos = index_name_stage_pos(istate, name, len, stage);
865                 if (pos >= 0) {
866                         /*
867                          * Found one, but not so fast.  This could
868                          * be a marker that says "I was here, but
869                          * I am being removed".  Such an entry is
870                          * not a part of the resulting tree, and
871                          * it is Ok to have a directory at the same
872                          * path.
873                          */
874                         if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) {
875                                 retval = -1;
876                                 if (!ok_to_replace)
877                                         break;
878                                 remove_index_entry_at(istate, pos);
879                                 continue;
880                         }
881                 }
882                 else
883                         pos = -pos-1;
884
885                 /*
886                  * Trivial optimization: if we find an entry that
887                  * already matches the sub-directory, then we know
888                  * we're ok, and we can exit.
889                  */
890                 while (pos < istate->cache_nr) {
891                         struct cache_entry *p = istate->cache[pos];
892                         if ((ce_namelen(p) <= len) ||
893                             (p->name[len] != '/') ||
894                             memcmp(p->name, name, len))
895                                 break; /* not our subdirectory */
896                         if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))
897                                 /*
898                                  * p is at the same stage as our entry, and
899                                  * is a subdirectory of what we are looking
900                                  * at, so we cannot have conflicts at our
901                                  * level or anything shorter.
902                                  */
903                                 return retval;
904                         pos++;
905                 }
906         }
907         return retval;
908 }
909
910 /* We may be in a situation where we already have path/file and path
911  * is being added, or we already have path and path/file is being
912  * added.  Either one would result in a nonsense tree that has path
913  * twice when git-write-tree tries to write it out.  Prevent it.
914  *
915  * If ok-to-replace is specified, we remove the conflicting entries
916  * from the cache so the caller should recompute the insert position.
917  * When this happens, we return non-zero.
918  */
919 static int check_file_directory_conflict(struct index_state *istate,
920                                          const struct cache_entry *ce,
921                                          int pos, int ok_to_replace)
922 {
923         int retval;
924
925         /*
926          * When ce is an "I am going away" entry, we allow it to be added
927          */
928         if (ce->ce_flags & CE_REMOVE)
929                 return 0;
930
931         /*
932          * We check if the path is a sub-path of a subsequent pathname
933          * first, since removing those will not change the position
934          * in the array.
935          */
936         retval = has_file_name(istate, ce, pos, ok_to_replace);
937
938         /*
939          * Then check if the path might have a clashing sub-directory
940          * before it.
941          */
942         return retval + has_dir_name(istate, ce, pos, ok_to_replace);
943 }
944
945 static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option)
946 {
947         int pos;
948         int ok_to_add = option & ADD_CACHE_OK_TO_ADD;
949         int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;
950         int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;
951         int new_only = option & ADD_CACHE_NEW_ONLY;
952
953         cache_tree_invalidate_path(istate, ce->name);
954         pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce));
955
956         /* existing match? Just replace it. */
957         if (pos >= 0) {
958                 if (!new_only)
959                         replace_index_entry(istate, pos, ce);
960                 return 0;
961         }
962         pos = -pos-1;
963
964         /*
965          * Inserting a merged entry ("stage 0") into the index
966          * will always replace all non-merged entries..
967          */
968         if (pos < istate->cache_nr && ce_stage(ce) == 0) {
969                 while (ce_same_name(istate->cache[pos], ce)) {
970                         ok_to_add = 1;
971                         if (!remove_index_entry_at(istate, pos))
972                                 break;
973                 }
974         }
975
976         if (!ok_to_add)
977                 return -1;
978         if (!verify_path(ce->name))
979                 return error("Invalid path '%s'", ce->name);
980
981         if (!skip_df_check &&
982             check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {
983                 if (!ok_to_replace)
984                         return error("'%s' appears as both a file and as a directory",
985                                      ce->name);
986                 pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce));
987                 pos = -pos-1;
988         }
989         return pos + 1;
990 }
991
992 int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option)
993 {
994         int pos;
995
996         if (option & ADD_CACHE_JUST_APPEND)
997                 pos = istate->cache_nr;
998         else {
999                 int ret;
1000                 ret = add_index_entry_with_check(istate, ce, option);
1001                 if (ret <= 0)
1002                         return ret;
1003                 pos = ret - 1;
1004         }
1005
1006         /* Make sure the array is big enough .. */
1007         ALLOC_GROW(istate->cache, istate->cache_nr + 1, istate->cache_alloc);
1008
1009         /* Add it in.. */
1010         istate->cache_nr++;
1011         if (istate->cache_nr > pos + 1)
1012                 memmove(istate->cache + pos + 1,
1013                         istate->cache + pos,
1014                         (istate->cache_nr - pos - 1) * sizeof(ce));
1015         set_index_entry(istate, pos, ce);
1016         istate->cache_changed |= CE_ENTRY_ADDED;
1017         return 0;
1018 }
1019
1020 /*
1021  * "refresh" does not calculate a new sha1 file or bring the
1022  * cache up-to-date for mode/content changes. But what it
1023  * _does_ do is to "re-match" the stat information of a file
1024  * with the cache, so that you can refresh the cache for a
1025  * file that hasn't been changed but where the stat entry is
1026  * out of date.
1027  *
1028  * For example, you'd want to do this after doing a "git-read-tree",
1029  * to link up the stat cache details with the proper files.
1030  */
1031 static struct cache_entry *refresh_cache_ent(struct index_state *istate,
1032                                              struct cache_entry *ce,
1033                                              unsigned int options, int *err,
1034                                              int *changed_ret)
1035 {
1036         struct stat st;
1037         struct cache_entry *updated;
1038         int changed, size;
1039         int refresh = options & CE_MATCH_REFRESH;
1040         int ignore_valid = options & CE_MATCH_IGNORE_VALID;
1041         int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
1042         int ignore_missing = options & CE_MATCH_IGNORE_MISSING;
1043
1044         if (!refresh || ce_uptodate(ce))
1045                 return ce;
1046
1047         /*
1048          * CE_VALID or CE_SKIP_WORKTREE means the user promised us
1049          * that the change to the work tree does not matter and told
1050          * us not to worry.
1051          */
1052         if (!ignore_skip_worktree && ce_skip_worktree(ce)) {
1053                 ce_mark_uptodate(ce);
1054                 return ce;
1055         }
1056         if (!ignore_valid && (ce->ce_flags & CE_VALID)) {
1057                 ce_mark_uptodate(ce);
1058                 return ce;
1059         }
1060
1061         if (lstat(ce->name, &st) < 0) {
1062                 if (ignore_missing && errno == ENOENT)
1063                         return ce;
1064                 if (err)
1065                         *err = errno;
1066                 return NULL;
1067         }
1068
1069         changed = ie_match_stat(istate, ce, &st, options);
1070         if (changed_ret)
1071                 *changed_ret = changed;
1072         if (!changed) {
1073                 /*
1074                  * The path is unchanged.  If we were told to ignore
1075                  * valid bit, then we did the actual stat check and
1076                  * found that the entry is unmodified.  If the entry
1077                  * is not marked VALID, this is the place to mark it
1078                  * valid again, under "assume unchanged" mode.
1079                  */
1080                 if (ignore_valid && assume_unchanged &&
1081                     !(ce->ce_flags & CE_VALID))
1082                         ; /* mark this one VALID again */
1083                 else {
1084                         /*
1085                          * We do not mark the index itself "modified"
1086                          * because CE_UPTODATE flag is in-core only;
1087                          * we are not going to write this change out.
1088                          */
1089                         if (!S_ISGITLINK(ce->ce_mode))
1090                                 ce_mark_uptodate(ce);
1091                         return ce;
1092                 }
1093         }
1094
1095         if (ie_modified(istate, ce, &st, options)) {
1096                 if (err)
1097                         *err = EINVAL;
1098                 return NULL;
1099         }
1100
1101         size = ce_size(ce);
1102         updated = xmalloc(size);
1103         memcpy(updated, ce, size);
1104         fill_stat_cache_info(updated, &st);
1105         /*
1106          * If ignore_valid is not set, we should leave CE_VALID bit
1107          * alone.  Otherwise, paths marked with --no-assume-unchanged
1108          * (i.e. things to be edited) will reacquire CE_VALID bit
1109          * automatically, which is not really what we want.
1110          */
1111         if (!ignore_valid && assume_unchanged &&
1112             !(ce->ce_flags & CE_VALID))
1113                 updated->ce_flags &= ~CE_VALID;
1114
1115         /* istate->cache_changed is updated in the caller */
1116         return updated;
1117 }
1118
1119 static void show_file(const char * fmt, const char * name, int in_porcelain,
1120                       int * first, const char *header_msg)
1121 {
1122         if (in_porcelain && *first && header_msg) {
1123                 printf("%s\n", header_msg);
1124                 *first = 0;
1125         }
1126         printf(fmt, name);
1127 }
1128
1129 int refresh_index(struct index_state *istate, unsigned int flags,
1130                   const struct pathspec *pathspec,
1131                   char *seen, const char *header_msg)
1132 {
1133         int i;
1134         int has_errors = 0;
1135         int really = (flags & REFRESH_REALLY) != 0;
1136         int allow_unmerged = (flags & REFRESH_UNMERGED) != 0;
1137         int quiet = (flags & REFRESH_QUIET) != 0;
1138         int not_new = (flags & REFRESH_IGNORE_MISSING) != 0;
1139         int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0;
1140         int first = 1;
1141         int in_porcelain = (flags & REFRESH_IN_PORCELAIN);
1142         unsigned int options = (CE_MATCH_REFRESH |
1143                                 (really ? CE_MATCH_IGNORE_VALID : 0) |
1144                                 (not_new ? CE_MATCH_IGNORE_MISSING : 0));
1145         const char *modified_fmt;
1146         const char *deleted_fmt;
1147         const char *typechange_fmt;
1148         const char *added_fmt;
1149         const char *unmerged_fmt;
1150
1151         modified_fmt = (in_porcelain ? "M\t%s\n" : "%s: needs update\n");
1152         deleted_fmt = (in_porcelain ? "D\t%s\n" : "%s: needs update\n");
1153         typechange_fmt = (in_porcelain ? "T\t%s\n" : "%s needs update\n");
1154         added_fmt = (in_porcelain ? "A\t%s\n" : "%s needs update\n");
1155         unmerged_fmt = (in_porcelain ? "U\t%s\n" : "%s: needs merge\n");
1156         for (i = 0; i < istate->cache_nr; i++) {
1157                 struct cache_entry *ce, *new;
1158                 int cache_errno = 0;
1159                 int changed = 0;
1160                 int filtered = 0;
1161
1162                 ce = istate->cache[i];
1163                 if (ignore_submodules && S_ISGITLINK(ce->ce_mode))
1164                         continue;
1165
1166                 if (pathspec && !ce_path_match(ce, pathspec, seen))
1167                         filtered = 1;
1168
1169                 if (ce_stage(ce)) {
1170                         while ((i < istate->cache_nr) &&
1171                                ! strcmp(istate->cache[i]->name, ce->name))
1172                                 i++;
1173                         i--;
1174                         if (allow_unmerged)
1175                                 continue;
1176                         if (!filtered)
1177                                 show_file(unmerged_fmt, ce->name, in_porcelain,
1178                                           &first, header_msg);
1179                         has_errors = 1;
1180                         continue;
1181                 }
1182
1183                 if (filtered)
1184                         continue;
1185
1186                 new = refresh_cache_ent(istate, ce, options, &cache_errno, &changed);
1187                 if (new == ce)
1188                         continue;
1189                 if (!new) {
1190                         const char *fmt;
1191
1192                         if (really && cache_errno == EINVAL) {
1193                                 /* If we are doing --really-refresh that
1194                                  * means the index is not valid anymore.
1195                                  */
1196                                 ce->ce_flags &= ~CE_VALID;
1197                                 ce->ce_flags |= CE_UPDATE_IN_BASE;
1198                                 istate->cache_changed |= CE_ENTRY_CHANGED;
1199                         }
1200                         if (quiet)
1201                                 continue;
1202
1203                         if (cache_errno == ENOENT)
1204                                 fmt = deleted_fmt;
1205                         else if (ce->ce_flags & CE_INTENT_TO_ADD)
1206                                 fmt = added_fmt; /* must be before other checks */
1207                         else if (changed & TYPE_CHANGED)
1208                                 fmt = typechange_fmt;
1209                         else
1210                                 fmt = modified_fmt;
1211                         show_file(fmt,
1212                                   ce->name, in_porcelain, &first, header_msg);
1213                         has_errors = 1;
1214                         continue;
1215                 }
1216
1217                 replace_index_entry(istate, i, new);
1218         }
1219         return has_errors;
1220 }
1221
1222 static struct cache_entry *refresh_cache_entry(struct cache_entry *ce,
1223                                                unsigned int options)
1224 {
1225         return refresh_cache_ent(&the_index, ce, options, NULL, NULL);
1226 }
1227
1228
1229 /*****************************************************************
1230  * Index File I/O
1231  *****************************************************************/
1232
1233 #define INDEX_FORMAT_DEFAULT 3
1234
1235 static int index_format_config(const char *var, const char *value, void *cb)
1236 {
1237         unsigned int *version = cb;
1238         if (!strcmp(var, "index.version")) {
1239                 *version = git_config_int(var, value);
1240                 return 0;
1241         }
1242         return 1;
1243 }
1244
1245 static unsigned int get_index_format_default(void)
1246 {
1247         char *envversion = getenv("GIT_INDEX_VERSION");
1248         char *endp;
1249         unsigned int version = INDEX_FORMAT_DEFAULT;
1250
1251         if (!envversion) {
1252                 git_config(index_format_config, &version);
1253                 if (version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1254                         warning(_("index.version set, but the value is invalid.\n"
1255                                   "Using version %i"), INDEX_FORMAT_DEFAULT);
1256                         return INDEX_FORMAT_DEFAULT;
1257                 }
1258                 return version;
1259         }
1260
1261         version = strtoul(envversion, &endp, 10);
1262         if (*endp ||
1263             version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1264                 warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"
1265                           "Using version %i"), INDEX_FORMAT_DEFAULT);
1266                 version = INDEX_FORMAT_DEFAULT;
1267         }
1268         return version;
1269 }
1270
1271 /*
1272  * dev/ino/uid/gid/size are also just tracked to the low 32 bits
1273  * Again - this is just a (very strong in practice) heuristic that
1274  * the inode hasn't changed.
1275  *
1276  * We save the fields in big-endian order to allow using the
1277  * index file over NFS transparently.
1278  */
1279 struct ondisk_cache_entry {
1280         struct cache_time ctime;
1281         struct cache_time mtime;
1282         uint32_t dev;
1283         uint32_t ino;
1284         uint32_t mode;
1285         uint32_t uid;
1286         uint32_t gid;
1287         uint32_t size;
1288         unsigned char sha1[20];
1289         uint16_t flags;
1290         char name[FLEX_ARRAY]; /* more */
1291 };
1292
1293 /*
1294  * This struct is used when CE_EXTENDED bit is 1
1295  * The struct must match ondisk_cache_entry exactly from
1296  * ctime till flags
1297  */
1298 struct ondisk_cache_entry_extended {
1299         struct cache_time ctime;
1300         struct cache_time mtime;
1301         uint32_t dev;
1302         uint32_t ino;
1303         uint32_t mode;
1304         uint32_t uid;
1305         uint32_t gid;
1306         uint32_t size;
1307         unsigned char sha1[20];
1308         uint16_t flags;
1309         uint16_t flags2;
1310         char name[FLEX_ARRAY]; /* more */
1311 };
1312
1313 /* These are only used for v3 or lower */
1314 #define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,name) + (len) + 8) & ~7)
1315 #define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)
1316 #define ondisk_cache_entry_extended_size(len) align_flex_name(ondisk_cache_entry_extended,len)
1317 #define ondisk_ce_size(ce) (((ce)->ce_flags & CE_EXTENDED) ? \
1318                             ondisk_cache_entry_extended_size(ce_namelen(ce)) : \
1319                             ondisk_cache_entry_size(ce_namelen(ce)))
1320
1321 static int verify_hdr(struct cache_header *hdr, unsigned long size)
1322 {
1323         git_SHA_CTX c;
1324         unsigned char sha1[20];
1325         int hdr_version;
1326
1327         if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
1328                 return error("bad signature");
1329         hdr_version = ntohl(hdr->hdr_version);
1330         if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)
1331                 return error("bad index version %d", hdr_version);
1332         git_SHA1_Init(&c);
1333         git_SHA1_Update(&c, hdr, size - 20);
1334         git_SHA1_Final(sha1, &c);
1335         if (hashcmp(sha1, (unsigned char *)hdr + size - 20))
1336                 return error("bad index file sha1 signature");
1337         return 0;
1338 }
1339
1340 static int read_index_extension(struct index_state *istate,
1341                                 const char *ext, void *data, unsigned long sz)
1342 {
1343         switch (CACHE_EXT(ext)) {
1344         case CACHE_EXT_TREE:
1345                 istate->cache_tree = cache_tree_read(data, sz);
1346                 break;
1347         case CACHE_EXT_RESOLVE_UNDO:
1348                 istate->resolve_undo = resolve_undo_read(data, sz);
1349                 break;
1350         case CACHE_EXT_LINK:
1351                 if (read_link_extension(istate, data, sz))
1352                         return -1;
1353                 break;
1354         default:
1355                 if (*ext < 'A' || 'Z' < *ext)
1356                         return error("index uses %.4s extension, which we do not understand",
1357                                      ext);
1358                 fprintf(stderr, "ignoring %.4s extension\n", ext);
1359                 break;
1360         }
1361         return 0;
1362 }
1363
1364 int read_index(struct index_state *istate)
1365 {
1366         return read_index_from(istate, get_index_file());
1367 }
1368
1369 static struct cache_entry *cache_entry_from_ondisk(struct ondisk_cache_entry *ondisk,
1370                                                    unsigned int flags,
1371                                                    const char *name,
1372                                                    size_t len)
1373 {
1374         struct cache_entry *ce = xmalloc(cache_entry_size(len));
1375
1376         ce->ce_stat_data.sd_ctime.sec = get_be32(&ondisk->ctime.sec);
1377         ce->ce_stat_data.sd_mtime.sec = get_be32(&ondisk->mtime.sec);
1378         ce->ce_stat_data.sd_ctime.nsec = get_be32(&ondisk->ctime.nsec);
1379         ce->ce_stat_data.sd_mtime.nsec = get_be32(&ondisk->mtime.nsec);
1380         ce->ce_stat_data.sd_dev   = get_be32(&ondisk->dev);
1381         ce->ce_stat_data.sd_ino   = get_be32(&ondisk->ino);
1382         ce->ce_mode  = get_be32(&ondisk->mode);
1383         ce->ce_stat_data.sd_uid   = get_be32(&ondisk->uid);
1384         ce->ce_stat_data.sd_gid   = get_be32(&ondisk->gid);
1385         ce->ce_stat_data.sd_size  = get_be32(&ondisk->size);
1386         ce->ce_flags = flags & ~CE_NAMEMASK;
1387         ce->ce_namelen = len;
1388         ce->index = 0;
1389         hashcpy(ce->sha1, ondisk->sha1);
1390         memcpy(ce->name, name, len);
1391         ce->name[len] = '\0';
1392         return ce;
1393 }
1394
1395 /*
1396  * Adjacent cache entries tend to share the leading paths, so it makes
1397  * sense to only store the differences in later entries.  In the v4
1398  * on-disk format of the index, each on-disk cache entry stores the
1399  * number of bytes to be stripped from the end of the previous name,
1400  * and the bytes to append to the result, to come up with its name.
1401  */
1402 static unsigned long expand_name_field(struct strbuf *name, const char *cp_)
1403 {
1404         const unsigned char *ep, *cp = (const unsigned char *)cp_;
1405         size_t len = decode_varint(&cp);
1406
1407         if (name->len < len)
1408                 die("malformed name field in the index");
1409         strbuf_remove(name, name->len - len, len);
1410         for (ep = cp; *ep; ep++)
1411                 ; /* find the end */
1412         strbuf_add(name, cp, ep - cp);
1413         return (const char *)ep + 1 - cp_;
1414 }
1415
1416 static struct cache_entry *create_from_disk(struct ondisk_cache_entry *ondisk,
1417                                             unsigned long *ent_size,
1418                                             struct strbuf *previous_name)
1419 {
1420         struct cache_entry *ce;
1421         size_t len;
1422         const char *name;
1423         unsigned int flags;
1424
1425         /* On-disk flags are just 16 bits */
1426         flags = get_be16(&ondisk->flags);
1427         len = flags & CE_NAMEMASK;
1428
1429         if (flags & CE_EXTENDED) {
1430                 struct ondisk_cache_entry_extended *ondisk2;
1431                 int extended_flags;
1432                 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;
1433                 extended_flags = get_be16(&ondisk2->flags2) << 16;
1434                 /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */
1435                 if (extended_flags & ~CE_EXTENDED_FLAGS)
1436                         die("Unknown index entry format %08x", extended_flags);
1437                 flags |= extended_flags;
1438                 name = ondisk2->name;
1439         }
1440         else
1441                 name = ondisk->name;
1442
1443         if (!previous_name) {
1444                 /* v3 and earlier */
1445                 if (len == CE_NAMEMASK)
1446                         len = strlen(name);
1447                 ce = cache_entry_from_ondisk(ondisk, flags, name, len);
1448
1449                 *ent_size = ondisk_ce_size(ce);
1450         } else {
1451                 unsigned long consumed;
1452                 consumed = expand_name_field(previous_name, name);
1453                 ce = cache_entry_from_ondisk(ondisk, flags,
1454                                              previous_name->buf,
1455                                              previous_name->len);
1456
1457                 *ent_size = (name - ((char *)ondisk)) + consumed;
1458         }
1459         return ce;
1460 }
1461
1462 /* remember to discard_cache() before reading a different cache! */
1463 static int do_read_index(struct index_state *istate, const char *path,
1464                          int must_exist)
1465 {
1466         int fd, i;
1467         struct stat st;
1468         unsigned long src_offset;
1469         struct cache_header *hdr;
1470         void *mmap;
1471         size_t mmap_size;
1472         struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;
1473
1474         if (istate->initialized)
1475                 return istate->cache_nr;
1476
1477         istate->timestamp.sec = 0;
1478         istate->timestamp.nsec = 0;
1479         fd = open(path, O_RDONLY);
1480         if (fd < 0) {
1481                 if (!must_exist && errno == ENOENT)
1482                         return 0;
1483                 die_errno("%s: index file open failed", path);
1484         }
1485
1486         if (fstat(fd, &st))
1487                 die_errno("cannot stat the open index");
1488
1489         mmap_size = xsize_t(st.st_size);
1490         if (mmap_size < sizeof(struct cache_header) + 20)
1491                 die("index file smaller than expected");
1492
1493         mmap = xmmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
1494         if (mmap == MAP_FAILED)
1495                 die_errno("unable to map index file");
1496         close(fd);
1497
1498         hdr = mmap;
1499         if (verify_hdr(hdr, mmap_size) < 0)
1500                 goto unmap;
1501
1502         hashcpy(istate->sha1, (const unsigned char *)hdr + mmap_size - 20);
1503         istate->version = ntohl(hdr->hdr_version);
1504         istate->cache_nr = ntohl(hdr->hdr_entries);
1505         istate->cache_alloc = alloc_nr(istate->cache_nr);
1506         istate->cache = xcalloc(istate->cache_alloc, sizeof(*istate->cache));
1507         istate->initialized = 1;
1508
1509         if (istate->version == 4)
1510                 previous_name = &previous_name_buf;
1511         else
1512                 previous_name = NULL;
1513
1514         src_offset = sizeof(*hdr);
1515         for (i = 0; i < istate->cache_nr; i++) {
1516                 struct ondisk_cache_entry *disk_ce;
1517                 struct cache_entry *ce;
1518                 unsigned long consumed;
1519
1520                 disk_ce = (struct ondisk_cache_entry *)((char *)mmap + src_offset);
1521                 ce = create_from_disk(disk_ce, &consumed, previous_name);
1522                 set_index_entry(istate, i, ce);
1523
1524                 src_offset += consumed;
1525         }
1526         strbuf_release(&previous_name_buf);
1527         istate->timestamp.sec = st.st_mtime;
1528         istate->timestamp.nsec = ST_MTIME_NSEC(st);
1529
1530         while (src_offset <= mmap_size - 20 - 8) {
1531                 /* After an array of active_nr index entries,
1532                  * there can be arbitrary number of extended
1533                  * sections, each of which is prefixed with
1534                  * extension name (4-byte) and section length
1535                  * in 4-byte network byte order.
1536                  */
1537                 uint32_t extsize;
1538                 memcpy(&extsize, (char *)mmap + src_offset + 4, 4);
1539                 extsize = ntohl(extsize);
1540                 if (read_index_extension(istate,
1541                                          (const char *) mmap + src_offset,
1542                                          (char *) mmap + src_offset + 8,
1543                                          extsize) < 0)
1544                         goto unmap;
1545                 src_offset += 8;
1546                 src_offset += extsize;
1547         }
1548         munmap(mmap, mmap_size);
1549         return istate->cache_nr;
1550
1551 unmap:
1552         munmap(mmap, mmap_size);
1553         die("index file corrupt");
1554 }
1555
1556 int read_index_from(struct index_state *istate, const char *path)
1557 {
1558         struct split_index *split_index;
1559         int ret;
1560
1561         /* istate->initialized covers both .git/index and .git/sharedindex.xxx */
1562         if (istate->initialized)
1563                 return istate->cache_nr;
1564
1565         ret = do_read_index(istate, path, 0);
1566         split_index = istate->split_index;
1567         if (!split_index)
1568                 return ret;
1569
1570         if (is_null_sha1(split_index->base_sha1))
1571                 return ret;
1572         if (istate->cache_nr)
1573                 die("index in split-index mode must contain no entries");
1574
1575         if (split_index->base)
1576                 discard_index(split_index->base);
1577         else
1578                 split_index->base = xcalloc(1, sizeof(*split_index->base));
1579         ret = do_read_index(split_index->base,
1580                             git_path("sharedindex.%s",
1581                                      sha1_to_hex(split_index->base_sha1)), 1);
1582         if (hashcmp(split_index->base_sha1, split_index->base->sha1))
1583                 die("broken index, expect %s in %s, got %s",
1584                     sha1_to_hex(split_index->base_sha1),
1585                     git_path("sharedindex.%s",
1586                                      sha1_to_hex(split_index->base_sha1)),
1587                     sha1_to_hex(split_index->base->sha1));
1588         merge_base_index(istate);
1589         return ret;
1590 }
1591
1592 int is_index_unborn(struct index_state *istate)
1593 {
1594         return (!istate->cache_nr && !istate->timestamp.sec);
1595 }
1596
1597 int discard_index(struct index_state *istate)
1598 {
1599         int i;
1600
1601         for (i = 0; i < istate->cache_nr; i++) {
1602                 if (istate->cache[i]->index &&
1603                     istate->split_index &&
1604                     istate->split_index->base &&
1605                     istate->cache[i]->index <= istate->split_index->base->cache_nr &&
1606                     istate->cache[i] == istate->split_index->base->cache[istate->cache[i]->index - 1])
1607                         continue;
1608                 free(istate->cache[i]);
1609         }
1610         resolve_undo_clear_index(istate);
1611         istate->cache_nr = 0;
1612         istate->cache_changed = 0;
1613         istate->timestamp.sec = 0;
1614         istate->timestamp.nsec = 0;
1615         free_name_hash(istate);
1616         cache_tree_free(&(istate->cache_tree));
1617         istate->initialized = 0;
1618         free(istate->cache);
1619         istate->cache = NULL;
1620         istate->cache_alloc = 0;
1621         discard_split_index(istate);
1622         return 0;
1623 }
1624
1625 int unmerged_index(const struct index_state *istate)
1626 {
1627         int i;
1628         for (i = 0; i < istate->cache_nr; i++) {
1629                 if (ce_stage(istate->cache[i]))
1630                         return 1;
1631         }
1632         return 0;
1633 }
1634
1635 #define WRITE_BUFFER_SIZE 8192
1636 static unsigned char write_buffer[WRITE_BUFFER_SIZE];
1637 static unsigned long write_buffer_len;
1638
1639 static int ce_write_flush(git_SHA_CTX *context, int fd)
1640 {
1641         unsigned int buffered = write_buffer_len;
1642         if (buffered) {
1643                 git_SHA1_Update(context, write_buffer, buffered);
1644                 if (write_in_full(fd, write_buffer, buffered) != buffered)
1645                         return -1;
1646                 write_buffer_len = 0;
1647         }
1648         return 0;
1649 }
1650
1651 static int ce_write(git_SHA_CTX *context, int fd, void *data, unsigned int len)
1652 {
1653         while (len) {
1654                 unsigned int buffered = write_buffer_len;
1655                 unsigned int partial = WRITE_BUFFER_SIZE - buffered;
1656                 if (partial > len)
1657                         partial = len;
1658                 memcpy(write_buffer + buffered, data, partial);
1659                 buffered += partial;
1660                 if (buffered == WRITE_BUFFER_SIZE) {
1661                         write_buffer_len = buffered;
1662                         if (ce_write_flush(context, fd))
1663                                 return -1;
1664                         buffered = 0;
1665                 }
1666                 write_buffer_len = buffered;
1667                 len -= partial;
1668                 data = (char *) data + partial;
1669         }
1670         return 0;
1671 }
1672
1673 static int write_index_ext_header(git_SHA_CTX *context, int fd,
1674                                   unsigned int ext, unsigned int sz)
1675 {
1676         ext = htonl(ext);
1677         sz = htonl(sz);
1678         return ((ce_write(context, fd, &ext, 4) < 0) ||
1679                 (ce_write(context, fd, &sz, 4) < 0)) ? -1 : 0;
1680 }
1681
1682 static int ce_flush(git_SHA_CTX *context, int fd, unsigned char *sha1)
1683 {
1684         unsigned int left = write_buffer_len;
1685
1686         if (left) {
1687                 write_buffer_len = 0;
1688                 git_SHA1_Update(context, write_buffer, left);
1689         }
1690
1691         /* Flush first if not enough space for SHA1 signature */
1692         if (left + 20 > WRITE_BUFFER_SIZE) {
1693                 if (write_in_full(fd, write_buffer, left) != left)
1694                         return -1;
1695                 left = 0;
1696         }
1697
1698         /* Append the SHA1 signature at the end */
1699         git_SHA1_Final(write_buffer + left, context);
1700         hashcpy(sha1, write_buffer + left);
1701         left += 20;
1702         return (write_in_full(fd, write_buffer, left) != left) ? -1 : 0;
1703 }
1704
1705 static void ce_smudge_racily_clean_entry(struct cache_entry *ce)
1706 {
1707         /*
1708          * The only thing we care about in this function is to smudge the
1709          * falsely clean entry due to touch-update-touch race, so we leave
1710          * everything else as they are.  We are called for entries whose
1711          * ce_stat_data.sd_mtime match the index file mtime.
1712          *
1713          * Note that this actually does not do much for gitlinks, for
1714          * which ce_match_stat_basic() always goes to the actual
1715          * contents.  The caller checks with is_racy_timestamp() which
1716          * always says "no" for gitlinks, so we are not called for them ;-)
1717          */
1718         struct stat st;
1719
1720         if (lstat(ce->name, &st) < 0)
1721                 return;
1722         if (ce_match_stat_basic(ce, &st))
1723                 return;
1724         if (ce_modified_check_fs(ce, &st)) {
1725                 /* This is "racily clean"; smudge it.  Note that this
1726                  * is a tricky code.  At first glance, it may appear
1727                  * that it can break with this sequence:
1728                  *
1729                  * $ echo xyzzy >frotz
1730                  * $ git-update-index --add frotz
1731                  * $ : >frotz
1732                  * $ sleep 3
1733                  * $ echo filfre >nitfol
1734                  * $ git-update-index --add nitfol
1735                  *
1736                  * but it does not.  When the second update-index runs,
1737                  * it notices that the entry "frotz" has the same timestamp
1738                  * as index, and if we were to smudge it by resetting its
1739                  * size to zero here, then the object name recorded
1740                  * in index is the 6-byte file but the cached stat information
1741                  * becomes zero --- which would then match what we would
1742                  * obtain from the filesystem next time we stat("frotz").
1743                  *
1744                  * However, the second update-index, before calling
1745                  * this function, notices that the cached size is 6
1746                  * bytes and what is on the filesystem is an empty
1747                  * file, and never calls us, so the cached size information
1748                  * for "frotz" stays 6 which does not match the filesystem.
1749                  */
1750                 ce->ce_stat_data.sd_size = 0;
1751         }
1752 }
1753
1754 /* Copy miscellaneous fields but not the name */
1755 static char *copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,
1756                                        struct cache_entry *ce)
1757 {
1758         short flags;
1759
1760         ondisk->ctime.sec = htonl(ce->ce_stat_data.sd_ctime.sec);
1761         ondisk->mtime.sec = htonl(ce->ce_stat_data.sd_mtime.sec);
1762         ondisk->ctime.nsec = htonl(ce->ce_stat_data.sd_ctime.nsec);
1763         ondisk->mtime.nsec = htonl(ce->ce_stat_data.sd_mtime.nsec);
1764         ondisk->dev  = htonl(ce->ce_stat_data.sd_dev);
1765         ondisk->ino  = htonl(ce->ce_stat_data.sd_ino);
1766         ondisk->mode = htonl(ce->ce_mode);
1767         ondisk->uid  = htonl(ce->ce_stat_data.sd_uid);
1768         ondisk->gid  = htonl(ce->ce_stat_data.sd_gid);
1769         ondisk->size = htonl(ce->ce_stat_data.sd_size);
1770         hashcpy(ondisk->sha1, ce->sha1);
1771
1772         flags = ce->ce_flags & ~CE_NAMEMASK;
1773         flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK : ce_namelen(ce));
1774         ondisk->flags = htons(flags);
1775         if (ce->ce_flags & CE_EXTENDED) {
1776                 struct ondisk_cache_entry_extended *ondisk2;
1777                 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;
1778                 ondisk2->flags2 = htons((ce->ce_flags & CE_EXTENDED_FLAGS) >> 16);
1779                 return ondisk2->name;
1780         }
1781         else {
1782                 return ondisk->name;
1783         }
1784 }
1785
1786 static int ce_write_entry(git_SHA_CTX *c, int fd, struct cache_entry *ce,
1787                           struct strbuf *previous_name)
1788 {
1789         int size;
1790         struct ondisk_cache_entry *ondisk;
1791         char *name;
1792         int result;
1793
1794         if (!previous_name) {
1795                 size = ondisk_ce_size(ce);
1796                 ondisk = xcalloc(1, size);
1797                 name = copy_cache_entry_to_ondisk(ondisk, ce);
1798                 memcpy(name, ce->name, ce_namelen(ce));
1799         } else {
1800                 int common, to_remove, prefix_size;
1801                 unsigned char to_remove_vi[16];
1802                 for (common = 0;
1803                      (ce->name[common] &&
1804                       common < previous_name->len &&
1805                       ce->name[common] == previous_name->buf[common]);
1806                      common++)
1807                         ; /* still matching */
1808                 to_remove = previous_name->len - common;
1809                 prefix_size = encode_varint(to_remove, to_remove_vi);
1810
1811                 if (ce->ce_flags & CE_EXTENDED)
1812                         size = offsetof(struct ondisk_cache_entry_extended, name);
1813                 else
1814                         size = offsetof(struct ondisk_cache_entry, name);
1815                 size += prefix_size + (ce_namelen(ce) - common + 1);
1816
1817                 ondisk = xcalloc(1, size);
1818                 name = copy_cache_entry_to_ondisk(ondisk, ce);
1819                 memcpy(name, to_remove_vi, prefix_size);
1820                 memcpy(name + prefix_size, ce->name + common, ce_namelen(ce) - common);
1821
1822                 strbuf_splice(previous_name, common, to_remove,
1823                               ce->name + common, ce_namelen(ce) - common);
1824         }
1825
1826         result = ce_write(c, fd, ondisk, size);
1827         free(ondisk);
1828         return result;
1829 }
1830
1831 static int has_racy_timestamp(struct index_state *istate)
1832 {
1833         int entries = istate->cache_nr;
1834         int i;
1835
1836         for (i = 0; i < entries; i++) {
1837                 struct cache_entry *ce = istate->cache[i];
1838                 if (is_racy_timestamp(istate, ce))
1839                         return 1;
1840         }
1841         return 0;
1842 }
1843
1844 /*
1845  * Opportunistically update the index but do not complain if we can't
1846  */
1847 void update_index_if_able(struct index_state *istate, struct lock_file *lockfile)
1848 {
1849         if ((istate->cache_changed || has_racy_timestamp(istate)) &&
1850             write_locked_index(istate, lockfile, COMMIT_LOCK))
1851                 rollback_lock_file(lockfile);
1852 }
1853
1854 static int do_write_index(struct index_state *istate, int newfd)
1855 {
1856         git_SHA_CTX c;
1857         struct cache_header hdr;
1858         int i, err, removed, extended, hdr_version;
1859         struct cache_entry **cache = istate->cache;
1860         int entries = istate->cache_nr;
1861         struct stat st;
1862         struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;
1863
1864         for (i = removed = extended = 0; i < entries; i++) {
1865                 if (cache[i]->ce_flags & CE_REMOVE)
1866                         removed++;
1867
1868                 /* reduce extended entries if possible */
1869                 cache[i]->ce_flags &= ~CE_EXTENDED;
1870                 if (cache[i]->ce_flags & CE_EXTENDED_FLAGS) {
1871                         extended++;
1872                         cache[i]->ce_flags |= CE_EXTENDED;
1873                 }
1874         }
1875
1876         if (!istate->version)
1877                 istate->version = get_index_format_default();
1878
1879         /* demote version 3 to version 2 when the latter suffices */
1880         if (istate->version == 3 || istate->version == 2)
1881                 istate->version = extended ? 3 : 2;
1882
1883         hdr_version = istate->version;
1884
1885         hdr.hdr_signature = htonl(CACHE_SIGNATURE);
1886         hdr.hdr_version = htonl(hdr_version);
1887         hdr.hdr_entries = htonl(entries - removed);
1888
1889         git_SHA1_Init(&c);
1890         if (ce_write(&c, newfd, &hdr, sizeof(hdr)) < 0)
1891                 return -1;
1892
1893         previous_name = (hdr_version == 4) ? &previous_name_buf : NULL;
1894         for (i = 0; i < entries; i++) {
1895                 struct cache_entry *ce = cache[i];
1896                 if (ce->ce_flags & CE_REMOVE)
1897                         continue;
1898                 if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce))
1899                         ce_smudge_racily_clean_entry(ce);
1900                 if (is_null_sha1(ce->sha1)) {
1901                         static const char msg[] = "cache entry has null sha1: %s";
1902                         static int allow = -1;
1903
1904                         if (allow < 0)
1905                                 allow = git_env_bool("GIT_ALLOW_NULL_SHA1", 0);
1906                         if (allow)
1907                                 warning(msg, ce->name);
1908                         else
1909                                 return error(msg, ce->name);
1910                 }
1911                 if (ce_write_entry(&c, newfd, ce, previous_name) < 0)
1912                         return -1;
1913         }
1914         strbuf_release(&previous_name_buf);
1915
1916         /* Write extension data here */
1917         if (istate->split_index) {
1918                 struct strbuf sb = STRBUF_INIT;
1919
1920                 err = write_link_extension(&sb, istate) < 0 ||
1921                         write_index_ext_header(&c, newfd, CACHE_EXT_LINK,
1922                                                sb.len) < 0 ||
1923                         ce_write(&c, newfd, sb.buf, sb.len) < 0;
1924                 strbuf_release(&sb);
1925                 if (err)
1926                         return -1;
1927         }
1928         if (istate->cache_tree) {
1929                 struct strbuf sb = STRBUF_INIT;
1930
1931                 cache_tree_write(&sb, istate->cache_tree);
1932                 err = write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sb.len) < 0
1933                         || ce_write(&c, newfd, sb.buf, sb.len) < 0;
1934                 strbuf_release(&sb);
1935                 if (err)
1936                         return -1;
1937         }
1938         if (istate->resolve_undo) {
1939                 struct strbuf sb = STRBUF_INIT;
1940
1941                 resolve_undo_write(&sb, istate->resolve_undo);
1942                 err = write_index_ext_header(&c, newfd, CACHE_EXT_RESOLVE_UNDO,
1943                                              sb.len) < 0
1944                         || ce_write(&c, newfd, sb.buf, sb.len) < 0;
1945                 strbuf_release(&sb);
1946                 if (err)
1947                         return -1;
1948         }
1949
1950         if (ce_flush(&c, newfd, istate->sha1) || fstat(newfd, &st))
1951                 return -1;
1952         istate->timestamp.sec = (unsigned int)st.st_mtime;
1953         istate->timestamp.nsec = ST_MTIME_NSEC(st);
1954         return 0;
1955 }
1956
1957 void set_alternate_index_output(const char *name)
1958 {
1959         alternate_index_output = name;
1960 }
1961
1962 static int commit_locked_index(struct lock_file *lk)
1963 {
1964         if (alternate_index_output) {
1965                 if (lk->fd >= 0 && close_lock_file(lk))
1966                         return -1;
1967                 if (rename(lk->filename, alternate_index_output))
1968                         return -1;
1969                 lk->filename[0] = 0;
1970                 return 0;
1971         } else {
1972                 return commit_lock_file(lk);
1973         }
1974 }
1975
1976 static int do_write_locked_index(struct index_state *istate, struct lock_file *lock,
1977                                  unsigned flags)
1978 {
1979         int ret = do_write_index(istate, lock->fd);
1980         if (ret)
1981                 return ret;
1982         assert((flags & (COMMIT_LOCK | CLOSE_LOCK)) !=
1983                (COMMIT_LOCK | CLOSE_LOCK));
1984         if (flags & COMMIT_LOCK)
1985                 return commit_locked_index(lock);
1986         else if (flags & CLOSE_LOCK)
1987                 return close_lock_file(lock);
1988         else
1989                 return ret;
1990 }
1991
1992 static int write_split_index(struct index_state *istate,
1993                              struct lock_file *lock,
1994                              unsigned flags)
1995 {
1996         int ret;
1997         prepare_to_write_split_index(istate);
1998         ret = do_write_locked_index(istate, lock, flags);
1999         finish_writing_split_index(istate);
2000         return ret;
2001 }
2002
2003 int write_locked_index(struct index_state *istate, struct lock_file *lock,
2004                        unsigned flags)
2005 {
2006         struct split_index *si = istate->split_index;
2007
2008         if (!si || (istate->cache_changed & ~EXTMASK)) {
2009                 if (si)
2010                         hashclr(si->base_sha1);
2011                 return do_write_locked_index(istate, lock, flags);
2012         }
2013
2014         return write_split_index(istate, lock, flags);
2015 }
2016
2017 /*
2018  * Read the index file that is potentially unmerged into given
2019  * index_state, dropping any unmerged entries.  Returns true if
2020  * the index is unmerged.  Callers who want to refuse to work
2021  * from an unmerged state can call this and check its return value,
2022  * instead of calling read_cache().
2023  */
2024 int read_index_unmerged(struct index_state *istate)
2025 {
2026         int i;
2027         int unmerged = 0;
2028
2029         read_index(istate);
2030         for (i = 0; i < istate->cache_nr; i++) {
2031                 struct cache_entry *ce = istate->cache[i];
2032                 struct cache_entry *new_ce;
2033                 int size, len;
2034
2035                 if (!ce_stage(ce))
2036                         continue;
2037                 unmerged = 1;
2038                 len = ce_namelen(ce);
2039                 size = cache_entry_size(len);
2040                 new_ce = xcalloc(1, size);
2041                 memcpy(new_ce->name, ce->name, len);
2042                 new_ce->ce_flags = create_ce_flags(0) | CE_CONFLICTED;
2043                 new_ce->ce_namelen = len;
2044                 new_ce->ce_mode = ce->ce_mode;
2045                 if (add_index_entry(istate, new_ce, 0))
2046                         return error("%s: cannot drop to stage #0",
2047                                      new_ce->name);
2048                 i = index_name_pos(istate, new_ce->name, len);
2049         }
2050         return unmerged;
2051 }
2052
2053 /*
2054  * Returns 1 if the path is an "other" path with respect to
2055  * the index; that is, the path is not mentioned in the index at all,
2056  * either as a file, a directory with some files in the index,
2057  * or as an unmerged entry.
2058  *
2059  * We helpfully remove a trailing "/" from directories so that
2060  * the output of read_directory can be used as-is.
2061  */
2062 int index_name_is_other(const struct index_state *istate, const char *name,
2063                 int namelen)
2064 {
2065         int pos;
2066         if (namelen && name[namelen - 1] == '/')
2067                 namelen--;
2068         pos = index_name_pos(istate, name, namelen);
2069         if (0 <= pos)
2070                 return 0;       /* exact match */
2071         pos = -pos - 1;
2072         if (pos < istate->cache_nr) {
2073                 struct cache_entry *ce = istate->cache[pos];
2074                 if (ce_namelen(ce) == namelen &&
2075                     !memcmp(ce->name, name, namelen))
2076                         return 0; /* Yup, this one exists unmerged */
2077         }
2078         return 1;
2079 }
2080
2081 void *read_blob_data_from_index(struct index_state *istate, const char *path, unsigned long *size)
2082 {
2083         int pos, len;
2084         unsigned long sz;
2085         enum object_type type;
2086         void *data;
2087
2088         len = strlen(path);
2089         pos = index_name_pos(istate, path, len);
2090         if (pos < 0) {
2091                 /*
2092                  * We might be in the middle of a merge, in which
2093                  * case we would read stage #2 (ours).
2094                  */
2095                 int i;
2096                 for (i = -pos - 1;
2097                      (pos < 0 && i < istate->cache_nr &&
2098                       !strcmp(istate->cache[i]->name, path));
2099                      i++)
2100                         if (ce_stage(istate->cache[i]) == 2)
2101                                 pos = i;
2102         }
2103         if (pos < 0)
2104                 return NULL;
2105         data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
2106         if (!data || type != OBJ_BLOB) {
2107                 free(data);
2108                 return NULL;
2109         }
2110         if (size)
2111                 *size = sz;
2112         return data;
2113 }
2114
2115 void stat_validity_clear(struct stat_validity *sv)
2116 {
2117         free(sv->sd);
2118         sv->sd = NULL;
2119 }
2120
2121 int stat_validity_check(struct stat_validity *sv, const char *path)
2122 {
2123         struct stat st;
2124
2125         if (stat(path, &st) < 0)
2126                 return sv->sd == NULL;
2127         if (!sv->sd)
2128                 return 0;
2129         return S_ISREG(st.st_mode) && !match_stat_data(sv->sd, &st);
2130 }
2131
2132 void stat_validity_update(struct stat_validity *sv, int fd)
2133 {
2134         struct stat st;
2135
2136         if (fstat(fd, &st) < 0 || !S_ISREG(st.st_mode))
2137                 stat_validity_clear(sv);
2138         else {
2139                 if (!sv->sd)
2140                         sv->sd = xcalloc(1, sizeof(struct stat_data));
2141                 fill_stat_data(sv->sd, &st);
2142         }
2143 }