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