]> git.ipfire.org Git - thirdparty/git.git/blame - read-cache.c
t/test-lib.sh: add test_external and test_external_without_stderr
[thirdparty/git.git] / read-cache.c
CommitLineData
8bc9a0c7
LT
1/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
4aab5b46 6#define NO_THE_INDEX_COMPATIBILITY_MACROS
e83c5163 7#include "cache.h"
bad68ec9 8#include "cache-tree.h"
f35a6d3b 9#include "refs.h"
d616813d 10#include "dir.h"
bad68ec9
JH
11
12/* Index extensions.
13 *
14 * The first letter should be 'A'..'Z' for extensions that are not
15 * necessary for a correct operation (i.e. optimization data).
16 * When new extensions are added that _needs_ to be understood in
17 * order to correctly interpret the index file, pick character that
18 * is outside the range, to cause the reader to abort.
19 */
20
21#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
22#define CACHE_EXT_TREE 0x54524545 /* "TREE" */
e83c5163 23
228e94f9 24struct index_state the_index;
8fd2cb40 25
9cb76b8c
JH
26static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
27{
28 istate->cache[nr] = ce;
96872bc2 29 add_name_hash(istate, ce);
9cb76b8c
JH
30}
31
cf558704
LT
32static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
33{
34 struct cache_entry *old = istate->cache[nr];
35
96872bc2 36 remove_name_hash(old);
a22c6371 37 set_index_entry(istate, nr, ce);
cf558704
LT
38 istate->cache_changed = 1;
39}
40
415e96c8
JH
41/*
42 * This only updates the "non-critical" parts of the directory
43 * cache, ie the parts that aren't tracked by GIT, and only used
44 * to validate the cache.
45 */
46void fill_stat_cache_info(struct cache_entry *ce, struct stat *st)
47{
7a51ed66
LT
48 ce->ce_ctime = st->st_ctime;
49 ce->ce_mtime = st->st_mtime;
50 ce->ce_dev = st->st_dev;
51 ce->ce_ino = st->st_ino;
52 ce->ce_uid = st->st_uid;
53 ce->ce_gid = st->st_gid;
54 ce->ce_size = st->st_size;
5f73076c
JH
55
56 if (assume_unchanged)
7a51ed66 57 ce->ce_flags |= CE_VALID;
eadb5831
JH
58
59 if (S_ISREG(st->st_mode))
60 ce_mark_uptodate(ce);
415e96c8
JH
61}
62
29e4d363
JH
63static int ce_compare_data(struct cache_entry *ce, struct stat *st)
64{
65 int match = -1;
66 int fd = open(ce->name, O_RDONLY);
67
68 if (fd >= 0) {
69 unsigned char sha1[20];
53bca91a 70 if (!index_fd(sha1, fd, st, 0, OBJ_BLOB, ce->name))
a89fccd2 71 match = hashcmp(sha1, ce->sha1);
7f8508e8 72 /* index_fd() closed the file descriptor already */
29e4d363
JH
73 }
74 return match;
75}
76
dc49cd76 77static int ce_compare_link(struct cache_entry *ce, size_t expected_size)
29e4d363
JH
78{
79 int match = -1;
80 char *target;
81 void *buffer;
82 unsigned long size;
21666f1a 83 enum object_type type;
29e4d363
JH
84 int len;
85
86 target = xmalloc(expected_size);
87 len = readlink(ce->name, target, expected_size);
88 if (len != expected_size) {
89 free(target);
90 return -1;
91 }
21666f1a 92 buffer = read_sha1_file(ce->sha1, &type, &size);
29e4d363
JH
93 if (!buffer) {
94 free(target);
95 return -1;
96 }
97 if (size == expected_size)
98 match = memcmp(buffer, target, size);
99 free(buffer);
100 free(target);
101 return match;
102}
103
f35a6d3b
LT
104static int ce_compare_gitlink(struct cache_entry *ce)
105{
106 unsigned char sha1[20];
107
108 /*
109 * We don't actually require that the .git directory
302b9282 110 * under GITLINK directory be a valid git directory. It
f35a6d3b
LT
111 * might even be missing (in case nobody populated that
112 * sub-project).
113 *
114 * If so, we consider it always to match.
115 */
116 if (resolve_gitlink_ref(ce->name, "HEAD", sha1) < 0)
117 return 0;
118 return hashcmp(sha1, ce->sha1);
119}
120
29e4d363
JH
121static int ce_modified_check_fs(struct cache_entry *ce, struct stat *st)
122{
123 switch (st->st_mode & S_IFMT) {
124 case S_IFREG:
125 if (ce_compare_data(ce, st))
126 return DATA_CHANGED;
127 break;
128 case S_IFLNK:
dc49cd76 129 if (ce_compare_link(ce, xsize_t(st->st_size)))
29e4d363
JH
130 return DATA_CHANGED;
131 break;
a8ee75bc 132 case S_IFDIR:
7a51ed66 133 if (S_ISGITLINK(ce->ce_mode))
a8ee75bc 134 return 0;
29e4d363
JH
135 default:
136 return TYPE_CHANGED;
137 }
138 return 0;
139}
140
407c8eb0 141static int ce_match_stat_basic(struct cache_entry *ce, struct stat *st)
734aab75
LT
142{
143 unsigned int changed = 0;
144
7a51ed66
LT
145 if (ce->ce_flags & CE_REMOVE)
146 return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED;
147
148 switch (ce->ce_mode & S_IFMT) {
8ae0a8c5
KS
149 case S_IFREG:
150 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
3e09cdfd
JH
151 /* We consider only the owner x bit to be relevant for
152 * "mode changes"
153 */
154 if (trust_executable_bit &&
7a51ed66 155 (0100 & (ce->ce_mode ^ st->st_mode)))
ffbe1add 156 changed |= MODE_CHANGED;
8ae0a8c5
KS
157 break;
158 case S_IFLNK:
78a8d641
JS
159 if (!S_ISLNK(st->st_mode) &&
160 (has_symlinks || !S_ISREG(st->st_mode)))
161 changed |= TYPE_CHANGED;
8ae0a8c5 162 break;
302b9282 163 case S_IFGITLINK:
f35a6d3b
LT
164 if (!S_ISDIR(st->st_mode))
165 changed |= TYPE_CHANGED;
166 else if (ce_compare_gitlink(ce))
167 changed |= DATA_CHANGED;
a8ee75bc 168 return changed;
8ae0a8c5 169 default:
7a51ed66 170 die("internal error: ce_mode is %o", ce->ce_mode);
8ae0a8c5 171 }
7a51ed66 172 if (ce->ce_mtime != (unsigned int) st->st_mtime)
ccc4feb5 173 changed |= MTIME_CHANGED;
7a51ed66 174 if (ce->ce_ctime != (unsigned int) st->st_ctime)
734aab75 175 changed |= CTIME_CHANGED;
ccc4feb5 176
7a51ed66
LT
177 if (ce->ce_uid != (unsigned int) st->st_uid ||
178 ce->ce_gid != (unsigned int) st->st_gid)
734aab75 179 changed |= OWNER_CHANGED;
7a51ed66 180 if (ce->ce_ino != (unsigned int) st->st_ino)
734aab75 181 changed |= INODE_CHANGED;
2cb45e95
LT
182
183#ifdef USE_STDEV
184 /*
185 * st_dev breaks on network filesystems where different
186 * clients will have different views of what "device"
187 * the filesystem is on
188 */
7a51ed66 189 if (ce->ce_dev != (unsigned int) st->st_dev)
2cb45e95
LT
190 changed |= INODE_CHANGED;
191#endif
192
7a51ed66 193 if (ce->ce_size != (unsigned int) st->st_size)
734aab75 194 changed |= DATA_CHANGED;
b0391890 195
407c8eb0
JH
196 return changed;
197}
198
d1f128b0 199static int is_racy_timestamp(const struct index_state *istate, struct cache_entry *ce)
6d91da6d 200{
050288d5
JH
201 return (!S_ISGITLINK(ce->ce_mode) &&
202 istate->timestamp &&
6d91da6d
JH
203 ((unsigned int)istate->timestamp) <= ce->ce_mtime);
204}
205
d1f128b0 206int ie_match_stat(const struct index_state *istate,
4bd5b7da
JH
207 struct cache_entry *ce, struct stat *st,
208 unsigned int options)
407c8eb0 209{
5f73076c 210 unsigned int changed;
4bd5b7da
JH
211 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
212 int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY;
5f73076c
JH
213
214 /*
215 * If it's marked as always valid in the index, it's
216 * valid whatever the checked-out copy says.
217 */
7a51ed66 218 if (!ignore_valid && (ce->ce_flags & CE_VALID))
5f73076c
JH
219 return 0;
220
221 changed = ce_match_stat_basic(ce, st);
407c8eb0 222
29e4d363
JH
223 /*
224 * Within 1 second of this sequence:
225 * echo xyzzy >file && git-update-index --add file
226 * running this command:
227 * echo frotz >file
228 * would give a falsely clean cache entry. The mtime and
229 * length match the cache, and other stat fields do not change.
230 *
231 * We could detect this at update-index time (the cache entry
232 * being registered/updated records the same time as "now")
233 * and delay the return from git-update-index, but that would
234 * effectively mean we can make at most one commit per second,
235 * which is not acceptable. Instead, we check cache entries
236 * whose mtime are the same as the index file timestamp more
5f73076c 237 * carefully than others.
29e4d363 238 */
6d91da6d 239 if (!changed && is_racy_timestamp(istate, ce)) {
42f77406
JH
240 if (assume_racy_is_modified)
241 changed |= DATA_CHANGED;
242 else
243 changed |= ce_modified_check_fs(ce, st);
244 }
b0391890 245
29e4d363 246 return changed;
b0391890
JH
247}
248
d1f128b0 249int ie_modified(const struct index_state *istate,
4bd5b7da 250 struct cache_entry *ce, struct stat *st, unsigned int options)
b0391890 251{
29e4d363 252 int changed, changed_fs;
4bd5b7da
JH
253
254 changed = ie_match_stat(istate, ce, st, options);
b0391890
JH
255 if (!changed)
256 return 0;
b0391890
JH
257 /*
258 * If the mode or type has changed, there's no point in trying
259 * to refresh the entry - it's not going to match
260 */
261 if (changed & (MODE_CHANGED | TYPE_CHANGED))
262 return changed;
263
264 /* Immediately after read-tree or update-index --cacheinfo,
265 * the length field is zero. For other cases the ce_size
266 * should match the SHA1 recorded in the index entry.
267 */
7a51ed66 268 if ((changed & DATA_CHANGED) && ce->ce_size != 0)
b0391890
JH
269 return changed;
270
29e4d363
JH
271 changed_fs = ce_modified_check_fs(ce, st);
272 if (changed_fs)
273 return changed | changed_fs;
b0391890
JH
274 return 0;
275}
276
958ba6c9
LT
277int base_name_compare(const char *name1, int len1, int mode1,
278 const char *name2, int len2, int mode2)
279{
280 unsigned char c1, c2;
281 int len = len1 < len2 ? len1 : len2;
282 int cmp;
283
284 cmp = memcmp(name1, name2, len);
285 if (cmp)
286 return cmp;
287 c1 = name1[len];
288 c2 = name2[len];
1833a925 289 if (!c1 && S_ISDIR(mode1))
958ba6c9 290 c1 = '/';
1833a925 291 if (!c2 && S_ISDIR(mode2))
958ba6c9
LT
292 c2 = '/';
293 return (c1 < c2) ? -1 : (c1 > c2) ? 1 : 0;
294}
295
0ab9e1e8
LT
296/*
297 * df_name_compare() is identical to base_name_compare(), except it
298 * compares conflicting directory/file entries as equal. Note that
299 * while a directory name compares as equal to a regular file, they
300 * then individually compare _differently_ to a filename that has
301 * a dot after the basename (because '\0' < '.' < '/').
302 *
303 * This is used by routines that want to traverse the git namespace
304 * but then handle conflicting entries together when possible.
305 */
306int df_name_compare(const char *name1, int len1, int mode1,
307 const char *name2, int len2, int mode2)
308{
309 int len = len1 < len2 ? len1 : len2, cmp;
310 unsigned char c1, c2;
311
312 cmp = memcmp(name1, name2, len);
313 if (cmp)
314 return cmp;
315 /* Directories and files compare equal (same length, same name) */
316 if (len1 == len2)
317 return 0;
318 c1 = name1[len];
319 if (!c1 && S_ISDIR(mode1))
320 c1 = '/';
321 c2 = name2[len];
322 if (!c2 && S_ISDIR(mode2))
323 c2 = '/';
324 if (c1 == '/' && !c2)
325 return 0;
326 if (c2 == '/' && !c1)
327 return 0;
328 return c1 - c2;
329}
330
95fd5bf8 331int cache_name_compare(const char *name1, int flags1, const char *name2, int flags2)
eb38c22f 332{
95fd5bf8
LT
333 int len1 = flags1 & CE_NAMEMASK;
334 int len2 = flags2 & CE_NAMEMASK;
eb38c22f
LT
335 int len = len1 < len2 ? len1 : len2;
336 int cmp;
337
338 cmp = memcmp(name1, name2, len);
339 if (cmp)
340 return cmp;
341 if (len1 < len2)
342 return -1;
343 if (len1 > len2)
344 return 1;
5f73076c 345
7b80be15
JH
346 /* Compare stages */
347 flags1 &= CE_STAGEMASK;
348 flags2 &= CE_STAGEMASK;
5f73076c 349
95fd5bf8
LT
350 if (flags1 < flags2)
351 return -1;
352 if (flags1 > flags2)
353 return 1;
eb38c22f
LT
354 return 0;
355}
356
d1f128b0 357int index_name_pos(const struct index_state *istate, const char *name, int namelen)
eb38c22f
LT
358{
359 int first, last;
360
361 first = 0;
4aab5b46 362 last = istate->cache_nr;
eb38c22f
LT
363 while (last > first) {
364 int next = (last + first) >> 1;
4aab5b46 365 struct cache_entry *ce = istate->cache[next];
7a51ed66 366 int cmp = cache_name_compare(name, namelen, ce->name, ce->ce_flags);
eb38c22f 367 if (!cmp)
76e7f4ec 368 return next;
eb38c22f
LT
369 if (cmp < 0) {
370 last = next;
371 continue;
372 }
373 first = next+1;
374 }
76e7f4ec 375 return -first-1;
eb38c22f
LT
376}
377
7b937ca3 378/* Remove entry, return true if there are more entries to go.. */
4aab5b46 379int remove_index_entry_at(struct index_state *istate, int pos)
7b937ca3 380{
cf558704
LT
381 struct cache_entry *ce = istate->cache[pos];
382
96872bc2 383 remove_name_hash(ce);
4aab5b46
JH
384 istate->cache_changed = 1;
385 istate->cache_nr--;
386 if (pos >= istate->cache_nr)
7b937ca3 387 return 0;
4aab5b46
JH
388 memmove(istate->cache + pos,
389 istate->cache + pos + 1,
390 (istate->cache_nr - pos) * sizeof(struct cache_entry *));
7b937ca3
LT
391 return 1;
392}
393
4aab5b46 394int remove_file_from_index(struct index_state *istate, const char *path)
197ee8c9 395{
4aab5b46 396 int pos = index_name_pos(istate, path, strlen(path));
c4e3cca1
JH
397 if (pos < 0)
398 pos = -pos-1;
09d5dc32 399 cache_tree_invalidate_path(istate->cache_tree, path);
4aab5b46
JH
400 while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path))
401 remove_index_entry_at(istate, pos);
197ee8c9
LT
402 return 0;
403}
404
20314271
JS
405static int compare_name(struct cache_entry *ce, const char *path, int namelen)
406{
407 return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen);
408}
409
410static int index_name_pos_also_unmerged(struct index_state *istate,
411 const char *path, int namelen)
412{
413 int pos = index_name_pos(istate, path, namelen);
414 struct cache_entry *ce;
415
416 if (pos >= 0)
417 return pos;
418
419 /* maybe unmerged? */
420 pos = -1 - pos;
421 if (pos >= istate->cache_nr ||
422 compare_name((ce = istate->cache[pos]), path, namelen))
423 return -1;
424
425 /* order of preference: stage 2, 1, 3 */
426 if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr &&
427 ce_stage((ce = istate->cache[pos + 1])) == 2 &&
428 !compare_name(ce, path, namelen))
429 pos++;
430 return pos;
431}
432
1102952b
LT
433static int different_name(struct cache_entry *ce, struct cache_entry *alias)
434{
435 int len = ce_namelen(ce);
436 return ce_namelen(alias) != len || memcmp(ce->name, alias->name, len);
437}
438
439/*
440 * If we add a filename that aliases in the cache, we will use the
441 * name that we already have - but we don't want to update the same
442 * alias twice, because that implies that there were actually two
443 * different files with aliasing names!
444 *
445 * So we use the CE_ADDED flag to verify that the alias was an old
446 * one before we accept it as
447 */
448static struct cache_entry *create_alias_ce(struct cache_entry *ce, struct cache_entry *alias)
449{
450 int len;
451 struct cache_entry *new;
452
453 if (alias->ce_flags & CE_ADDED)
454 die("Will not add file alias '%s' ('%s' already exists in index)", ce->name, alias->name);
455
456 /* Ok, create the new entry using the name of the existing alias */
457 len = ce_namelen(alias);
458 new = xcalloc(1, cache_entry_size(len));
459 memcpy(new->name, alias->name, len);
460 copy_cache_entry(new, ce);
461 free(ce);
462 return new;
463}
464
38ed1d89 465int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags)
11be42a4 466{
38ed1d89 467 int size, namelen, was_same;
d177cab0 468 mode_t st_mode = st->st_mode;
6835550d 469 struct cache_entry *ce, *alias;
fb63d7f8 470 unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_RACY_IS_DIRTY;
38ed1d89
JH
471 int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND);
472 int pretend = flags & ADD_CACHE_PRETEND;
11be42a4 473
d177cab0 474 if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode))
960b8ad1 475 return error("%s: can only add regular files, symbolic links or git-directories", path);
11be42a4
JS
476
477 namelen = strlen(path);
d177cab0 478 if (S_ISDIR(st_mode)) {
09595258
LT
479 while (namelen && path[namelen-1] == '/')
480 namelen--;
481 }
11be42a4
JS
482 size = cache_entry_size(namelen);
483 ce = xcalloc(1, size);
484 memcpy(ce->name, path, namelen);
7a51ed66 485 ce->ce_flags = namelen;
d177cab0 486 fill_stat_cache_info(ce, st);
11be42a4 487
78a8d641 488 if (trust_executable_bit && has_symlinks)
d177cab0 489 ce->ce_mode = create_ce_mode(st_mode);
185c975f 490 else {
78a8d641
JS
491 /* If there is an existing entry, pick the mode bits and type
492 * from it, otherwise assume unexecutable regular file.
11be42a4 493 */
185c975f 494 struct cache_entry *ent;
20314271 495 int pos = index_name_pos_also_unmerged(istate, path, namelen);
185c975f 496
4aab5b46 497 ent = (0 <= pos) ? istate->cache[pos] : NULL;
d177cab0 498 ce->ce_mode = ce_mode_from_stat(ent, st_mode);
11be42a4
JS
499 }
500
6835550d 501 alias = index_name_exists(istate, ce->name, ce_namelen(ce), ignore_case);
d177cab0 502 if (alias && !ce_stage(alias) && !ie_match_stat(istate, alias, st, ce_option)) {
0781b8a9
JH
503 /* Nothing changed, really */
504 free(ce);
6835550d 505 ce_mark_uptodate(alias);
1102952b 506 alias->ce_flags |= CE_ADDED;
0781b8a9
JH
507 return 0;
508 }
d177cab0 509 if (index_path(ce->sha1, path, st, 1))
960b8ad1 510 return error("unable to index file %s", path);
1102952b
LT
511 if (ignore_case && alias && different_name(ce, alias))
512 ce = create_alias_ce(ce, alias);
513 ce->ce_flags |= CE_ADDED;
38ed1d89
JH
514
515 /* It was suspected to be recily clean, but it turns out to be Ok */
516 was_same = (alias &&
517 !ce_stage(alias) &&
518 !hashcmp(alias->sha1, ce->sha1) &&
519 ce->ce_mode == alias->ce_mode);
520
521 if (pretend)
522 ;
523 else if (add_index_entry(istate, ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE))
960b8ad1 524 return error("unable to add %s to index",path);
38ed1d89 525 if (verbose && !was_same)
11be42a4 526 printf("add '%s'\n", path);
11be42a4
JS
527 return 0;
528}
529
38ed1d89 530int add_file_to_index(struct index_state *istate, const char *path, int flags)
d177cab0
LT
531{
532 struct stat st;
533 if (lstat(path, &st))
534 die("%s: unable to stat (%s)", path, strerror(errno));
38ed1d89 535 return add_to_index(istate, path, &st, flags);
d177cab0
LT
536}
537
6640f881
CR
538struct cache_entry *make_cache_entry(unsigned int mode,
539 const unsigned char *sha1, const char *path, int stage,
540 int refresh)
541{
542 int size, len;
543 struct cache_entry *ce;
544
545 if (!verify_path(path))
546 return NULL;
547
548 len = strlen(path);
549 size = cache_entry_size(len);
550 ce = xcalloc(1, size);
551
552 hashcpy(ce->sha1, sha1);
553 memcpy(ce->name, path, len);
554 ce->ce_flags = create_ce_flags(len, stage);
555 ce->ce_mode = create_ce_mode(mode);
556
557 if (refresh)
558 return refresh_cache_entry(ce, 0);
559
560 return ce;
561}
562
dbbce55b 563int ce_same_name(struct cache_entry *a, struct cache_entry *b)
7b937ca3
LT
564{
565 int len = ce_namelen(a);
566 return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
567}
568
c0fd1f51
LT
569int ce_path_match(const struct cache_entry *ce, const char **pathspec)
570{
571 const char *match, *name;
572 int len;
573
574 if (!pathspec)
575 return 1;
576
577 len = ce_namelen(ce);
578 name = ce->name;
579 while ((match = *pathspec++) != NULL) {
580 int matchlen = strlen(match);
581 if (matchlen > len)
582 continue;
583 if (memcmp(name, match, matchlen))
584 continue;
585 if (matchlen && name[matchlen-1] == '/')
586 return 1;
587 if (name[matchlen] == '/' || !name[matchlen])
588 return 1;
f332726e
LT
589 if (!matchlen)
590 return 1;
c0fd1f51
LT
591 }
592 return 0;
593}
594
8dcf39c4
LT
595/*
596 * We fundamentally don't like some paths: we don't want
597 * dot or dot-dot anywhere, and for obvious reasons don't
598 * want to recurse into ".git" either.
599 *
600 * Also, we don't want double slashes or slashes at the
601 * end that can make pathnames ambiguous.
602 */
603static int verify_dotfile(const char *rest)
604{
605 /*
606 * The first character was '.', but that
607 * has already been discarded, we now test
608 * the rest.
609 */
610 switch (*rest) {
611 /* "." is not allowed */
612 case '\0': case '/':
613 return 0;
614
615 /*
616 * ".git" followed by NUL or slash is bad. This
617 * shares the path end test with the ".." case.
618 */
619 case 'g':
620 if (rest[1] != 'i')
621 break;
622 if (rest[2] != 't')
623 break;
624 rest += 2;
625 /* fallthrough */
626 case '.':
627 if (rest[1] == '\0' || rest[1] == '/')
628 return 0;
629 }
630 return 1;
631}
632
633int verify_path(const char *path)
634{
635 char c;
636
637 goto inside;
638 for (;;) {
639 if (!c)
640 return 1;
641 if (c == '/') {
642inside:
643 c = *path++;
644 switch (c) {
645 default:
646 continue;
647 case '/': case '\0':
648 break;
649 case '.':
650 if (verify_dotfile(path))
651 continue;
652 }
653 return 0;
654 }
655 c = *path++;
656 }
657}
658
12676608
LT
659/*
660 * Do we have another file that has the beginning components being a
661 * proper superset of the name we're trying to add?
0f1e4f04 662 */
4aab5b46
JH
663static int has_file_name(struct index_state *istate,
664 const struct cache_entry *ce, int pos, int ok_to_replace)
0f1e4f04 665{
12676608
LT
666 int retval = 0;
667 int len = ce_namelen(ce);
b155725d 668 int stage = ce_stage(ce);
12676608 669 const char *name = ce->name;
0f1e4f04 670
4aab5b46
JH
671 while (pos < istate->cache_nr) {
672 struct cache_entry *p = istate->cache[pos++];
0f1e4f04 673
12676608 674 if (len >= ce_namelen(p))
0f1e4f04 675 break;
12676608
LT
676 if (memcmp(name, p->name, len))
677 break;
b155725d
JH
678 if (ce_stage(p) != stage)
679 continue;
12676608
LT
680 if (p->name[len] != '/')
681 continue;
7a51ed66 682 if (p->ce_flags & CE_REMOVE)
21cd8d00 683 continue;
12676608
LT
684 retval = -1;
685 if (!ok_to_replace)
686 break;
4aab5b46 687 remove_index_entry_at(istate, --pos);
0f1e4f04 688 }
12676608
LT
689 return retval;
690}
0f1e4f04 691
12676608
LT
692/*
693 * Do we have another file with a pathname that is a proper
694 * subset of the name we're trying to add?
695 */
4aab5b46
JH
696static int has_dir_name(struct index_state *istate,
697 const struct cache_entry *ce, int pos, int ok_to_replace)
12676608
LT
698{
699 int retval = 0;
b155725d 700 int stage = ce_stage(ce);
12676608
LT
701 const char *name = ce->name;
702 const char *slash = name + ce_namelen(ce);
0f1e4f04 703
12676608
LT
704 for (;;) {
705 int len;
0f1e4f04 706
12676608
LT
707 for (;;) {
708 if (*--slash == '/')
709 break;
710 if (slash <= ce->name)
711 return retval;
712 }
713 len = slash - name;
0f1e4f04 714
7a51ed66 715 pos = index_name_pos(istate, name, create_ce_flags(len, stage));
12676608 716 if (pos >= 0) {
21cd8d00
JH
717 /*
718 * Found one, but not so fast. This could
719 * be a marker that says "I was here, but
720 * I am being removed". Such an entry is
721 * not a part of the resulting tree, and
722 * it is Ok to have a directory at the same
723 * path.
724 */
077c48df 725 if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) {
21cd8d00
JH
726 retval = -1;
727 if (!ok_to_replace)
728 break;
4aab5b46 729 remove_index_entry_at(istate, pos);
21cd8d00
JH
730 continue;
731 }
12676608 732 }
21cd8d00
JH
733 else
734 pos = -pos-1;
12676608
LT
735
736 /*
737 * Trivial optimization: if we find an entry that
738 * already matches the sub-directory, then we know
b155725d 739 * we're ok, and we can exit.
12676608 740 */
4aab5b46
JH
741 while (pos < istate->cache_nr) {
742 struct cache_entry *p = istate->cache[pos];
b155725d
JH
743 if ((ce_namelen(p) <= len) ||
744 (p->name[len] != '/') ||
745 memcmp(p->name, name, len))
746 break; /* not our subdirectory */
077c48df
JH
747 if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))
748 /*
749 * p is at the same stage as our entry, and
b155725d
JH
750 * is a subdirectory of what we are looking
751 * at, so we cannot have conflicts at our
752 * level or anything shorter.
753 */
754 return retval;
755 pos++;
192268c1 756 }
0f1e4f04 757 }
12676608
LT
758 return retval;
759}
760
761/* We may be in a situation where we already have path/file and path
762 * is being added, or we already have path and path/file is being
763 * added. Either one would result in a nonsense tree that has path
764 * twice when git-write-tree tries to write it out. Prevent it.
a6080a0a 765 *
12676608
LT
766 * If ok-to-replace is specified, we remove the conflicting entries
767 * from the cache so the caller should recompute the insert position.
768 * When this happens, we return non-zero.
769 */
4aab5b46
JH
770static int check_file_directory_conflict(struct index_state *istate,
771 const struct cache_entry *ce,
772 int pos, int ok_to_replace)
12676608 773{
21cd8d00
JH
774 int retval;
775
776 /*
777 * When ce is an "I am going away" entry, we allow it to be added
778 */
7a51ed66 779 if (ce->ce_flags & CE_REMOVE)
21cd8d00
JH
780 return 0;
781
12676608
LT
782 /*
783 * We check if the path is a sub-path of a subsequent pathname
784 * first, since removing those will not change the position
21cd8d00 785 * in the array.
12676608 786 */
4aab5b46 787 retval = has_file_name(istate, ce, pos, ok_to_replace);
21cd8d00 788
12676608
LT
789 /*
790 * Then check if the path might have a clashing sub-directory
791 * before it.
792 */
4aab5b46 793 return retval + has_dir_name(istate, ce, pos, ok_to_replace);
0f1e4f04
JH
794}
795
af3785dc 796static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option)
197ee8c9
LT
797{
798 int pos;
192268c1
JH
799 int ok_to_add = option & ADD_CACHE_OK_TO_ADD;
800 int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;
b155725d 801 int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;
5f73076c 802
09d5dc32 803 cache_tree_invalidate_path(istate->cache_tree, ce->name);
7a51ed66 804 pos = index_name_pos(istate, ce->name, ce->ce_flags);
197ee8c9 805
3e09cdfd 806 /* existing match? Just replace it. */
76e7f4ec 807 if (pos >= 0) {
cf558704 808 replace_index_entry(istate, pos, ce);
197ee8c9
LT
809 return 0;
810 }
76e7f4ec 811 pos = -pos-1;
197ee8c9 812
7b937ca3
LT
813 /*
814 * Inserting a merged entry ("stage 0") into the index
815 * will always replace all non-merged entries..
816 */
4aab5b46
JH
817 if (pos < istate->cache_nr && ce_stage(ce) == 0) {
818 while (ce_same_name(istate->cache[pos], ce)) {
7b937ca3 819 ok_to_add = 1;
4aab5b46 820 if (!remove_index_entry_at(istate, pos))
7b937ca3
LT
821 break;
822 }
823 }
824
121481ab
LT
825 if (!ok_to_add)
826 return -1;
8dcf39c4
LT
827 if (!verify_path(ce->name))
828 return -1;
121481ab 829
3e09cdfd 830 if (!skip_df_check &&
4aab5b46 831 check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {
192268c1 832 if (!ok_to_replace)
4aab5b46
JH
833 return error("'%s' appears as both a file and as a directory",
834 ce->name);
7a51ed66 835 pos = index_name_pos(istate, ce->name, ce->ce_flags);
192268c1
JH
836 pos = -pos-1;
837 }
af3785dc
JH
838 return pos + 1;
839}
840
841int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option)
842{
843 int pos;
844
845 if (option & ADD_CACHE_JUST_APPEND)
846 pos = istate->cache_nr;
847 else {
848 int ret;
849 ret = add_index_entry_with_check(istate, ce, option);
850 if (ret <= 0)
851 return ret;
852 pos = ret - 1;
853 }
0f1e4f04 854
197ee8c9 855 /* Make sure the array is big enough .. */
4aab5b46
JH
856 if (istate->cache_nr == istate->cache_alloc) {
857 istate->cache_alloc = alloc_nr(istate->cache_alloc);
858 istate->cache = xrealloc(istate->cache,
859 istate->cache_alloc * sizeof(struct cache_entry *));
197ee8c9
LT
860 }
861
862 /* Add it in.. */
4aab5b46 863 istate->cache_nr++;
af3785dc 864 if (istate->cache_nr > pos + 1)
4aab5b46
JH
865 memmove(istate->cache + pos + 1,
866 istate->cache + pos,
867 (istate->cache_nr - pos - 1) * sizeof(ce));
cf558704 868 set_index_entry(istate, pos, ce);
4aab5b46 869 istate->cache_changed = 1;
197ee8c9
LT
870 return 0;
871}
872
405e5b2f
LT
873/*
874 * "refresh" does not calculate a new sha1 file or bring the
875 * cache up-to-date for mode/content changes. But what it
876 * _does_ do is to "re-match" the stat information of a file
877 * with the cache, so that you can refresh the cache for a
878 * file that hasn't been changed but where the stat entry is
879 * out of date.
880 *
881 * For example, you'd want to do this after doing a "git-read-tree",
882 * to link up the stat cache details with the proper files.
883 */
4aab5b46 884static struct cache_entry *refresh_cache_ent(struct index_state *istate,
4bd5b7da
JH
885 struct cache_entry *ce,
886 unsigned int options, int *err)
405e5b2f
LT
887{
888 struct stat st;
889 struct cache_entry *updated;
890 int changed, size;
4bd5b7da 891 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
405e5b2f 892
eadb5831
JH
893 if (ce_uptodate(ce))
894 return ce;
895
aa9349d4
MSO
896 /*
897 * CE_VALID means the user promised us that the change to
898 * the work tree does not matter and told us not to worry.
899 */
900 if (!ignore_valid && (ce->ce_flags & CE_VALID)) {
901 ce_mark_uptodate(ce);
902 return ce;
903 }
904
8fd2cb40 905 if (lstat(ce->name, &st) < 0) {
ec0cc704
JH
906 if (err)
907 *err = errno;
8fd2cb40
JS
908 return NULL;
909 }
405e5b2f 910
4bd5b7da 911 changed = ie_match_stat(istate, ce, &st, options);
405e5b2f 912 if (!changed) {
4bd5b7da
JH
913 /*
914 * The path is unchanged. If we were told to ignore
915 * valid bit, then we did the actual stat check and
916 * found that the entry is unmodified. If the entry
917 * is not marked VALID, this is the place to mark it
918 * valid again, under "assume unchanged" mode.
919 */
920 if (ignore_valid && assume_unchanged &&
7a51ed66 921 !(ce->ce_flags & CE_VALID))
405e5b2f 922 ; /* mark this one VALID again */
eadb5831
JH
923 else {
924 /*
925 * We do not mark the index itself "modified"
926 * because CE_UPTODATE flag is in-core only;
927 * we are not going to write this change out.
928 */
929 ce_mark_uptodate(ce);
8fd2cb40 930 return ce;
eadb5831 931 }
405e5b2f
LT
932 }
933
4bd5b7da 934 if (ie_modified(istate, ce, &st, options)) {
ec0cc704
JH
935 if (err)
936 *err = EINVAL;
8fd2cb40
JS
937 return NULL;
938 }
405e5b2f
LT
939
940 size = ce_size(ce);
941 updated = xmalloc(size);
942 memcpy(updated, ce, size);
943 fill_stat_cache_info(updated, &st);
4bd5b7da
JH
944 /*
945 * If ignore_valid is not set, we should leave CE_VALID bit
946 * alone. Otherwise, paths marked with --no-assume-unchanged
947 * (i.e. things to be edited) will reacquire CE_VALID bit
948 * automatically, which is not really what we want.
405e5b2f 949 */
4bd5b7da 950 if (!ignore_valid && assume_unchanged &&
7a51ed66
LT
951 !(ce->ce_flags & CE_VALID))
952 updated->ce_flags &= ~CE_VALID;
405e5b2f
LT
953
954 return updated;
955}
956
d616813d 957int refresh_index(struct index_state *istate, unsigned int flags, const char **pathspec, char *seen)
405e5b2f
LT
958{
959 int i;
960 int has_errors = 0;
961 int really = (flags & REFRESH_REALLY) != 0;
962 int allow_unmerged = (flags & REFRESH_UNMERGED) != 0;
963 int quiet = (flags & REFRESH_QUIET) != 0;
964 int not_new = (flags & REFRESH_IGNORE_MISSING) != 0;
5fdeacb0 965 int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0;
4bd5b7da 966 unsigned int options = really ? CE_MATCH_IGNORE_VALID : 0;
405e5b2f 967
4aab5b46 968 for (i = 0; i < istate->cache_nr; i++) {
405e5b2f 969 struct cache_entry *ce, *new;
ec0cc704
JH
970 int cache_errno = 0;
971
4aab5b46 972 ce = istate->cache[i];
5fdeacb0
JS
973 if (ignore_submodules && S_ISGITLINK(ce->ce_mode))
974 continue;
975
405e5b2f 976 if (ce_stage(ce)) {
4aab5b46
JH
977 while ((i < istate->cache_nr) &&
978 ! strcmp(istate->cache[i]->name, ce->name))
405e5b2f
LT
979 i++;
980 i--;
981 if (allow_unmerged)
982 continue;
983 printf("%s: needs merge\n", ce->name);
984 has_errors = 1;
985 continue;
986 }
987
d616813d
AJ
988 if (pathspec && !match_pathspec(pathspec, ce->name, strlen(ce->name), 0, seen))
989 continue;
990
4bd5b7da 991 new = refresh_cache_ent(istate, ce, options, &cache_errno);
8fd2cb40 992 if (new == ce)
405e5b2f 993 continue;
8fd2cb40
JS
994 if (!new) {
995 if (not_new && cache_errno == ENOENT)
405e5b2f 996 continue;
8fd2cb40 997 if (really && cache_errno == EINVAL) {
405e5b2f
LT
998 /* If we are doing --really-refresh that
999 * means the index is not valid anymore.
1000 */
7a51ed66 1001 ce->ce_flags &= ~CE_VALID;
4aab5b46 1002 istate->cache_changed = 1;
405e5b2f
LT
1003 }
1004 if (quiet)
1005 continue;
1006 printf("%s: needs update\n", ce->name);
1007 has_errors = 1;
1008 continue;
1009 }
cf558704
LT
1010
1011 replace_index_entry(istate, i, new);
405e5b2f
LT
1012 }
1013 return has_errors;
1014}
1015
ec0cc704
JH
1016struct cache_entry *refresh_cache_entry(struct cache_entry *ce, int really)
1017{
4aab5b46 1018 return refresh_cache_ent(&the_index, ce, really, NULL);
ec0cc704
JH
1019}
1020
bad68ec9 1021static int verify_hdr(struct cache_header *hdr, unsigned long size)
e83c5163
LT
1022{
1023 SHA_CTX c;
bad68ec9 1024 unsigned char sha1[20];
e83c5163 1025
ccc4feb5 1026 if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
e83c5163 1027 return error("bad signature");
ca9be054
LT
1028 if (hdr->hdr_version != htonl(2))
1029 return error("bad index version");
e83c5163 1030 SHA1_Init(&c);
ca9be054 1031 SHA1_Update(&c, hdr, size - 20);
e83c5163 1032 SHA1_Final(sha1, &c);
a89fccd2 1033 if (hashcmp(sha1, (unsigned char *)hdr + size - 20))
ca9be054 1034 return error("bad index file sha1 signature");
e83c5163
LT
1035 return 0;
1036}
1037
4aab5b46
JH
1038static int read_index_extension(struct index_state *istate,
1039 const char *ext, void *data, unsigned long sz)
bad68ec9
JH
1040{
1041 switch (CACHE_EXT(ext)) {
1042 case CACHE_EXT_TREE:
4aab5b46 1043 istate->cache_tree = cache_tree_read(data, sz);
bad68ec9
JH
1044 break;
1045 default:
1046 if (*ext < 'A' || 'Z' < *ext)
1047 return error("index uses %.4s extension, which we do not understand",
1048 ext);
1049 fprintf(stderr, "ignoring %.4s extension\n", ext);
1050 break;
1051 }
1052 return 0;
1053}
1054
4aab5b46 1055int read_index(struct index_state *istate)
8fd2cb40 1056{
4aab5b46 1057 return read_index_from(istate, get_index_file());
8fd2cb40
JS
1058}
1059
7a51ed66
LT
1060static void convert_from_disk(struct ondisk_cache_entry *ondisk, struct cache_entry *ce)
1061{
7fec10b7
JH
1062 size_t len;
1063
7a51ed66
LT
1064 ce->ce_ctime = ntohl(ondisk->ctime.sec);
1065 ce->ce_mtime = ntohl(ondisk->mtime.sec);
1066 ce->ce_dev = ntohl(ondisk->dev);
1067 ce->ce_ino = ntohl(ondisk->ino);
1068 ce->ce_mode = ntohl(ondisk->mode);
1069 ce->ce_uid = ntohl(ondisk->uid);
1070 ce->ce_gid = ntohl(ondisk->gid);
1071 ce->ce_size = ntohl(ondisk->size);
1072 /* On-disk flags are just 16 bits */
1073 ce->ce_flags = ntohs(ondisk->flags);
1074 hashcpy(ce->sha1, ondisk->sha1);
7fec10b7
JH
1075
1076 len = ce->ce_flags & CE_NAMEMASK;
1077 if (len == CE_NAMEMASK)
1078 len = strlen(ondisk->name);
1079 /*
1080 * NEEDSWORK: If the original index is crafted, this copy could
1081 * go unchecked.
1082 */
1083 memcpy(ce->name, ondisk->name, len + 1);
7a51ed66
LT
1084}
1085
cf558704
LT
1086static inline size_t estimate_cache_size(size_t ondisk_size, unsigned int entries)
1087{
1088 long per_entry;
1089
1090 per_entry = sizeof(struct cache_entry) - sizeof(struct ondisk_cache_entry);
1091
1092 /*
1093 * Alignment can cause differences. This should be "alignof", but
1094 * since that's a gcc'ism, just use the size of a pointer.
1095 */
1096 per_entry += sizeof(void *);
1097 return ondisk_size + entries*per_entry;
1098}
1099
8fd2cb40 1100/* remember to discard_cache() before reading a different cache! */
4aab5b46 1101int read_index_from(struct index_state *istate, const char *path)
e83c5163
LT
1102{
1103 int fd, i;
1104 struct stat st;
7a51ed66 1105 unsigned long src_offset, dst_offset;
e83c5163 1106 struct cache_header *hdr;
7a51ed66
LT
1107 void *mmap;
1108 size_t mmap_size;
e83c5163
LT
1109
1110 errno = EBUSY;
7a51ed66 1111 if (istate->alloc)
4aab5b46 1112 return istate->cache_nr;
5d1a5c02 1113
e83c5163 1114 errno = ENOENT;
4aab5b46 1115 istate->timestamp = 0;
8fd2cb40 1116 fd = open(path, O_RDONLY);
5d1a5c02
LT
1117 if (fd < 0) {
1118 if (errno == ENOENT)
1119 return 0;
1120 die("index file open failed (%s)", strerror(errno));
1121 }
e83c5163 1122
3511a377 1123 if (fstat(fd, &st))
5fe5c830 1124 die("cannot stat the open index (%s)", strerror(errno));
3511a377
LFC
1125
1126 errno = EINVAL;
7a51ed66
LT
1127 mmap_size = xsize_t(st.st_size);
1128 if (mmap_size < sizeof(struct cache_header) + 20)
3511a377
LFC
1129 die("index file smaller than expected");
1130
7a51ed66 1131 mmap = xmmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
e83c5163 1132 close(fd);
7a51ed66
LT
1133 if (mmap == MAP_FAILED)
1134 die("unable to map index file");
e83c5163 1135
7a51ed66
LT
1136 hdr = mmap;
1137 if (verify_hdr(hdr, mmap_size) < 0)
e83c5163
LT
1138 goto unmap;
1139
4aab5b46
JH
1140 istate->cache_nr = ntohl(hdr->hdr_entries);
1141 istate->cache_alloc = alloc_nr(istate->cache_nr);
1142 istate->cache = xcalloc(istate->cache_alloc, sizeof(struct cache_entry *));
e83c5163 1143
7a51ed66
LT
1144 /*
1145 * The disk format is actually larger than the in-memory format,
1146 * due to space for nsec etc, so even though the in-memory one
1147 * has room for a few more flags, we can allocate using the same
1148 * index size
1149 */
cf558704 1150 istate->alloc = xmalloc(estimate_cache_size(mmap_size, istate->cache_nr));
7a51ed66
LT
1151
1152 src_offset = sizeof(*hdr);
1153 dst_offset = 0;
4aab5b46 1154 for (i = 0; i < istate->cache_nr; i++) {
7a51ed66 1155 struct ondisk_cache_entry *disk_ce;
4aab5b46
JH
1156 struct cache_entry *ce;
1157
7a51ed66
LT
1158 disk_ce = (struct ondisk_cache_entry *)((char *)mmap + src_offset);
1159 ce = (struct cache_entry *)((char *)istate->alloc + dst_offset);
1160 convert_from_disk(disk_ce, ce);
cf558704 1161 set_index_entry(istate, i, ce);
7a51ed66
LT
1162
1163 src_offset += ondisk_ce_size(ce);
1164 dst_offset += ce_size(ce);
e83c5163 1165 }
4aab5b46 1166 istate->timestamp = st.st_mtime;
7a51ed66 1167 while (src_offset <= mmap_size - 20 - 8) {
bad68ec9
JH
1168 /* After an array of active_nr index entries,
1169 * there can be arbitrary number of extended
1170 * sections, each of which is prefixed with
1171 * extension name (4-byte) and section length
1172 * in 4-byte network byte order.
1173 */
1174 unsigned long extsize;
7a51ed66 1175 memcpy(&extsize, (char *)mmap + src_offset + 4, 4);
bad68ec9 1176 extsize = ntohl(extsize);
4aab5b46 1177 if (read_index_extension(istate,
7a51ed66
LT
1178 (const char *) mmap + src_offset,
1179 (char *) mmap + src_offset + 8,
1d7f171c 1180 extsize) < 0)
bad68ec9 1181 goto unmap;
7a51ed66
LT
1182 src_offset += 8;
1183 src_offset += extsize;
bad68ec9 1184 }
7a51ed66 1185 munmap(mmap, mmap_size);
4aab5b46 1186 return istate->cache_nr;
e83c5163
LT
1187
1188unmap:
7a51ed66 1189 munmap(mmap, mmap_size);
e83c5163 1190 errno = EINVAL;
5d1a5c02 1191 die("index file corrupt");
e83c5163
LT
1192}
1193
4aab5b46 1194int discard_index(struct index_state *istate)
6d297f81 1195{
4aab5b46
JH
1196 istate->cache_nr = 0;
1197 istate->cache_changed = 0;
1198 istate->timestamp = 0;
cf558704 1199 free_hash(&istate->name_hash);
4aab5b46 1200 cache_tree_free(&(istate->cache_tree));
7a51ed66
LT
1201 free(istate->alloc);
1202 istate->alloc = NULL;
6d297f81
JS
1203
1204 /* no need to throw away allocated active_cache */
7a51ed66 1205 return 0;
6d297f81
JS
1206}
1207
d1f128b0 1208int unmerged_index(const struct index_state *istate)
94a5728c
DB
1209{
1210 int i;
1211 for (i = 0; i < istate->cache_nr; i++) {
1212 if (ce_stage(istate->cache[i]))
1213 return 1;
1214 }
1215 return 0;
1216}
1217
4990aadc 1218#define WRITE_BUFFER_SIZE 8192
bf0f910d 1219static unsigned char write_buffer[WRITE_BUFFER_SIZE];
4990aadc
LT
1220static unsigned long write_buffer_len;
1221
6015c28b
JH
1222static int ce_write_flush(SHA_CTX *context, int fd)
1223{
1224 unsigned int buffered = write_buffer_len;
1225 if (buffered) {
1226 SHA1_Update(context, write_buffer, buffered);
93822c22 1227 if (write_in_full(fd, write_buffer, buffered) != buffered)
6015c28b
JH
1228 return -1;
1229 write_buffer_len = 0;
1230 }
1231 return 0;
1232}
1233
ca9be054 1234static int ce_write(SHA_CTX *context, int fd, void *data, unsigned int len)
4990aadc
LT
1235{
1236 while (len) {
1237 unsigned int buffered = write_buffer_len;
1238 unsigned int partial = WRITE_BUFFER_SIZE - buffered;
1239 if (partial > len)
1240 partial = len;
1241 memcpy(write_buffer + buffered, data, partial);
1242 buffered += partial;
1243 if (buffered == WRITE_BUFFER_SIZE) {
6015c28b
JH
1244 write_buffer_len = buffered;
1245 if (ce_write_flush(context, fd))
4990aadc
LT
1246 return -1;
1247 buffered = 0;
1248 }
1249 write_buffer_len = buffered;
1250 len -= partial;
1d7f171c 1251 data = (char *) data + partial;
a6080a0a
JH
1252 }
1253 return 0;
4990aadc
LT
1254}
1255
bad68ec9 1256static int write_index_ext_header(SHA_CTX *context, int fd,
ac58c7b1 1257 unsigned int ext, unsigned int sz)
bad68ec9
JH
1258{
1259 ext = htonl(ext);
1260 sz = htonl(sz);
968a1d65
DR
1261 return ((ce_write(context, fd, &ext, 4) < 0) ||
1262 (ce_write(context, fd, &sz, 4) < 0)) ? -1 : 0;
bad68ec9
JH
1263}
1264
1265static int ce_flush(SHA_CTX *context, int fd)
4990aadc
LT
1266{
1267 unsigned int left = write_buffer_len;
ca9be054 1268
4990aadc
LT
1269 if (left) {
1270 write_buffer_len = 0;
ca9be054 1271 SHA1_Update(context, write_buffer, left);
4990aadc 1272 }
ca9be054 1273
2c865d9a
QH
1274 /* Flush first if not enough space for SHA1 signature */
1275 if (left + 20 > WRITE_BUFFER_SIZE) {
93822c22 1276 if (write_in_full(fd, write_buffer, left) != left)
2c865d9a
QH
1277 return -1;
1278 left = 0;
1279 }
1280
ca9be054 1281 /* Append the SHA1 signature at the end */
bad68ec9 1282 SHA1_Final(write_buffer + left, context);
ca9be054 1283 left += 20;
93822c22 1284 return (write_in_full(fd, write_buffer, left) != left) ? -1 : 0;
4990aadc
LT
1285}
1286
407c8eb0
JH
1287static void ce_smudge_racily_clean_entry(struct cache_entry *ce)
1288{
1289 /*
1290 * The only thing we care about in this function is to smudge the
1291 * falsely clean entry due to touch-update-touch race, so we leave
1292 * everything else as they are. We are called for entries whose
1293 * ce_mtime match the index file mtime.
1294 */
1295 struct stat st;
1296
1297 if (lstat(ce->name, &st) < 0)
1298 return;
1299 if (ce_match_stat_basic(ce, &st))
1300 return;
1301 if (ce_modified_check_fs(ce, &st)) {
4b3511b0
JH
1302 /* This is "racily clean"; smudge it. Note that this
1303 * is a tricky code. At first glance, it may appear
1304 * that it can break with this sequence:
1305 *
1306 * $ echo xyzzy >frotz
1307 * $ git-update-index --add frotz
1308 * $ : >frotz
1309 * $ sleep 3
1310 * $ echo filfre >nitfol
1311 * $ git-update-index --add nitfol
1312 *
b7e58b17 1313 * but it does not. When the second update-index runs,
4b3511b0
JH
1314 * it notices that the entry "frotz" has the same timestamp
1315 * as index, and if we were to smudge it by resetting its
1316 * size to zero here, then the object name recorded
1317 * in index is the 6-byte file but the cached stat information
1318 * becomes zero --- which would then match what we would
a6080a0a 1319 * obtain from the filesystem next time we stat("frotz").
4b3511b0
JH
1320 *
1321 * However, the second update-index, before calling
1322 * this function, notices that the cached size is 6
1323 * bytes and what is on the filesystem is an empty
1324 * file, and never calls us, so the cached size information
1325 * for "frotz" stays 6 which does not match the filesystem.
1326 */
7a51ed66 1327 ce->ce_size = 0;
407c8eb0
JH
1328 }
1329}
1330
7a51ed66
LT
1331static int ce_write_entry(SHA_CTX *c, int fd, struct cache_entry *ce)
1332{
1333 int size = ondisk_ce_size(ce);
1334 struct ondisk_cache_entry *ondisk = xcalloc(1, size);
1335
1336 ondisk->ctime.sec = htonl(ce->ce_ctime);
1337 ondisk->ctime.nsec = 0;
1338 ondisk->mtime.sec = htonl(ce->ce_mtime);
1339 ondisk->mtime.nsec = 0;
1340 ondisk->dev = htonl(ce->ce_dev);
1341 ondisk->ino = htonl(ce->ce_ino);
1342 ondisk->mode = htonl(ce->ce_mode);
1343 ondisk->uid = htonl(ce->ce_uid);
1344 ondisk->gid = htonl(ce->ce_gid);
1345 ondisk->size = htonl(ce->ce_size);
1346 hashcpy(ondisk->sha1, ce->sha1);
1347 ondisk->flags = htons(ce->ce_flags);
1348 memcpy(ondisk->name, ce->name, ce_namelen(ce));
1349
1350 return ce_write(c, fd, ondisk, size);
1351}
1352
d1f128b0 1353int write_index(const struct index_state *istate, int newfd)
197ee8c9
LT
1354{
1355 SHA_CTX c;
1356 struct cache_header hdr;
1dffb8fa 1357 int i, err, removed;
4aab5b46
JH
1358 struct cache_entry **cache = istate->cache;
1359 int entries = istate->cache_nr;
025a0709
JH
1360
1361 for (i = removed = 0; i < entries; i++)
7a51ed66 1362 if (cache[i]->ce_flags & CE_REMOVE)
025a0709 1363 removed++;
197ee8c9 1364
ccc4feb5 1365 hdr.hdr_signature = htonl(CACHE_SIGNATURE);
ca9be054 1366 hdr.hdr_version = htonl(2);
025a0709 1367 hdr.hdr_entries = htonl(entries - removed);
197ee8c9
LT
1368
1369 SHA1_Init(&c);
ca9be054 1370 if (ce_write(&c, newfd, &hdr, sizeof(hdr)) < 0)
197ee8c9
LT
1371 return -1;
1372
1373 for (i = 0; i < entries; i++) {
1374 struct cache_entry *ce = cache[i];
7a51ed66 1375 if (ce->ce_flags & CE_REMOVE)
aa16021e 1376 continue;
e06c43c7 1377 if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce))
407c8eb0 1378 ce_smudge_racily_clean_entry(ce);
7a51ed66 1379 if (ce_write_entry(&c, newfd, ce) < 0)
197ee8c9
LT
1380 return -1;
1381 }
1af1c2b6 1382
bad68ec9 1383 /* Write extension data here */
4aab5b46 1384 if (istate->cache_tree) {
1dffb8fa
PH
1385 struct strbuf sb;
1386
1387 strbuf_init(&sb, 0);
1388 cache_tree_write(&sb, istate->cache_tree);
1389 err = write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sb.len) < 0
1390 || ce_write(&c, newfd, sb.buf, sb.len) < 0;
1391 strbuf_release(&sb);
1392 if (err)
bad68ec9 1393 return -1;
bad68ec9
JH
1394 }
1395 return ce_flush(&c, newfd);
197ee8c9 1396}