]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * GIT - The information manager from hell | |
3 | * | |
4 | * Copyright (C) Linus Torvalds, 2005 | |
5 | */ | |
6 | ||
7 | #define USE_THE_REPOSITORY_VARIABLE | |
8 | #define DISABLE_SIGN_COMPARE_WARNINGS | |
9 | ||
10 | #include "git-compat-util.h" | |
11 | #include "bulk-checkin.h" | |
12 | #include "config.h" | |
13 | #include "date.h" | |
14 | #include "diff.h" | |
15 | #include "diffcore.h" | |
16 | #include "hex.h" | |
17 | #include "tempfile.h" | |
18 | #include "lockfile.h" | |
19 | #include "cache-tree.h" | |
20 | #include "refs.h" | |
21 | #include "dir.h" | |
22 | #include "object-file.h" | |
23 | #include "object-store.h" | |
24 | #include "oid-array.h" | |
25 | #include "tree.h" | |
26 | #include "commit.h" | |
27 | #include "environment.h" | |
28 | #include "gettext.h" | |
29 | #include "mem-pool.h" | |
30 | #include "name-hash.h" | |
31 | #include "object-name.h" | |
32 | #include "path.h" | |
33 | #include "preload-index.h" | |
34 | #include "read-cache.h" | |
35 | #include "repository.h" | |
36 | #include "resolve-undo.h" | |
37 | #include "revision.h" | |
38 | #include "strbuf.h" | |
39 | #include "trace2.h" | |
40 | #include "varint.h" | |
41 | #include "split-index.h" | |
42 | #include "symlinks.h" | |
43 | #include "utf8.h" | |
44 | #include "fsmonitor.h" | |
45 | #include "thread-utils.h" | |
46 | #include "progress.h" | |
47 | #include "sparse-index.h" | |
48 | #include "csum-file.h" | |
49 | #include "promisor-remote.h" | |
50 | #include "hook.h" | |
51 | ||
52 | /* Mask for the name length in ce_flags in the on-disk index */ | |
53 | ||
54 | #define CE_NAMEMASK (0x0fff) | |
55 | ||
56 | /* Index extensions. | |
57 | * | |
58 | * The first letter should be 'A'..'Z' for extensions that are not | |
59 | * necessary for a correct operation (i.e. optimization data). | |
60 | * When new extensions are added that _needs_ to be understood in | |
61 | * order to correctly interpret the index file, pick character that | |
62 | * is outside the range, to cause the reader to abort. | |
63 | */ | |
64 | ||
65 | #define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) ) | |
66 | #define CACHE_EXT_TREE 0x54524545 /* "TREE" */ | |
67 | #define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */ | |
68 | #define CACHE_EXT_LINK 0x6c696e6b /* "link" */ | |
69 | #define CACHE_EXT_UNTRACKED 0x554E5452 /* "UNTR" */ | |
70 | #define CACHE_EXT_FSMONITOR 0x46534D4E /* "FSMN" */ | |
71 | #define CACHE_EXT_ENDOFINDEXENTRIES 0x454F4945 /* "EOIE" */ | |
72 | #define CACHE_EXT_INDEXENTRYOFFSETTABLE 0x49454F54 /* "IEOT" */ | |
73 | #define CACHE_EXT_SPARSE_DIRECTORIES 0x73646972 /* "sdir" */ | |
74 | ||
75 | /* changes that can be kept in $GIT_DIR/index (basically all extensions) */ | |
76 | #define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \ | |
77 | CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \ | |
78 | SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED) | |
79 | ||
80 | ||
81 | /* | |
82 | * This is an estimate of the pathname length in the index. We use | |
83 | * this for V4 index files to guess the un-deltafied size of the index | |
84 | * in memory because of pathname deltafication. This is not required | |
85 | * for V2/V3 index formats because their pathnames are not compressed. | |
86 | * If the initial amount of memory set aside is not sufficient, the | |
87 | * mem pool will allocate extra memory. | |
88 | */ | |
89 | #define CACHE_ENTRY_PATH_LENGTH 80 | |
90 | ||
91 | enum index_search_mode { | |
92 | NO_EXPAND_SPARSE = 0, | |
93 | EXPAND_SPARSE = 1 | |
94 | }; | |
95 | ||
96 | static inline struct cache_entry *mem_pool__ce_alloc(struct mem_pool *mem_pool, size_t len) | |
97 | { | |
98 | struct cache_entry *ce; | |
99 | ce = mem_pool_alloc(mem_pool, cache_entry_size(len)); | |
100 | ce->mem_pool_allocated = 1; | |
101 | return ce; | |
102 | } | |
103 | ||
104 | static inline struct cache_entry *mem_pool__ce_calloc(struct mem_pool *mem_pool, size_t len) | |
105 | { | |
106 | struct cache_entry * ce; | |
107 | ce = mem_pool_calloc(mem_pool, 1, cache_entry_size(len)); | |
108 | ce->mem_pool_allocated = 1; | |
109 | return ce; | |
110 | } | |
111 | ||
112 | static struct mem_pool *find_mem_pool(struct index_state *istate) | |
113 | { | |
114 | struct mem_pool **pool_ptr; | |
115 | ||
116 | if (istate->split_index && istate->split_index->base) | |
117 | pool_ptr = &istate->split_index->base->ce_mem_pool; | |
118 | else | |
119 | pool_ptr = &istate->ce_mem_pool; | |
120 | ||
121 | if (!*pool_ptr) { | |
122 | *pool_ptr = xmalloc(sizeof(**pool_ptr)); | |
123 | mem_pool_init(*pool_ptr, 0); | |
124 | } | |
125 | ||
126 | return *pool_ptr; | |
127 | } | |
128 | ||
129 | static const char *alternate_index_output; | |
130 | ||
131 | static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce) | |
132 | { | |
133 | if (S_ISSPARSEDIR(ce->ce_mode)) | |
134 | istate->sparse_index = INDEX_COLLAPSED; | |
135 | ||
136 | istate->cache[nr] = ce; | |
137 | add_name_hash(istate, ce); | |
138 | } | |
139 | ||
140 | static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce) | |
141 | { | |
142 | struct cache_entry *old = istate->cache[nr]; | |
143 | ||
144 | replace_index_entry_in_base(istate, old, ce); | |
145 | remove_name_hash(istate, old); | |
146 | discard_cache_entry(old); | |
147 | ce->ce_flags &= ~CE_HASHED; | |
148 | set_index_entry(istate, nr, ce); | |
149 | ce->ce_flags |= CE_UPDATE_IN_BASE; | |
150 | mark_fsmonitor_invalid(istate, ce); | |
151 | istate->cache_changed |= CE_ENTRY_CHANGED; | |
152 | } | |
153 | ||
154 | void rename_index_entry_at(struct index_state *istate, int nr, const char *new_name) | |
155 | { | |
156 | struct cache_entry *old_entry = istate->cache[nr], *new_entry, *refreshed; | |
157 | int namelen = strlen(new_name); | |
158 | ||
159 | new_entry = make_empty_cache_entry(istate, namelen); | |
160 | copy_cache_entry(new_entry, old_entry); | |
161 | new_entry->ce_flags &= ~CE_HASHED; | |
162 | new_entry->ce_namelen = namelen; | |
163 | new_entry->index = 0; | |
164 | memcpy(new_entry->name, new_name, namelen + 1); | |
165 | ||
166 | cache_tree_invalidate_path(istate, old_entry->name); | |
167 | untracked_cache_remove_from_index(istate, old_entry->name); | |
168 | remove_index_entry_at(istate, nr); | |
169 | ||
170 | /* | |
171 | * Refresh the new index entry. Using 'refresh_cache_entry' ensures | |
172 | * we only update stat info if the entry is otherwise up-to-date (i.e., | |
173 | * the contents/mode haven't changed). This ensures that we reflect the | |
174 | * 'ctime' of the rename in the index without (incorrectly) updating | |
175 | * the cached stat info to reflect unstaged changes on disk. | |
176 | */ | |
177 | refreshed = refresh_cache_entry(istate, new_entry, CE_MATCH_REFRESH); | |
178 | if (refreshed && refreshed != new_entry) { | |
179 | add_index_entry(istate, refreshed, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE); | |
180 | discard_cache_entry(new_entry); | |
181 | } else | |
182 | add_index_entry(istate, new_entry, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE); | |
183 | } | |
184 | ||
185 | /* | |
186 | * This only updates the "non-critical" parts of the directory | |
187 | * cache, ie the parts that aren't tracked by GIT, and only used | |
188 | * to validate the cache. | |
189 | */ | |
190 | void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st) | |
191 | { | |
192 | fill_stat_data(&ce->ce_stat_data, st); | |
193 | ||
194 | if (assume_unchanged) | |
195 | ce->ce_flags |= CE_VALID; | |
196 | ||
197 | if (S_ISREG(st->st_mode)) { | |
198 | ce_mark_uptodate(ce); | |
199 | mark_fsmonitor_valid(istate, ce); | |
200 | } | |
201 | } | |
202 | ||
203 | static unsigned int st_mode_from_ce(const struct cache_entry *ce) | |
204 | { | |
205 | extern int trust_executable_bit, has_symlinks; | |
206 | ||
207 | switch (ce->ce_mode & S_IFMT) { | |
208 | case S_IFLNK: | |
209 | return has_symlinks ? S_IFLNK : (S_IFREG | 0644); | |
210 | case S_IFREG: | |
211 | return (ce->ce_mode & (trust_executable_bit ? 0755 : 0644)) | S_IFREG; | |
212 | case S_IFGITLINK: | |
213 | return S_IFDIR | 0755; | |
214 | case S_IFDIR: | |
215 | return ce->ce_mode; | |
216 | default: | |
217 | BUG("unsupported ce_mode: %o", ce->ce_mode); | |
218 | } | |
219 | } | |
220 | ||
221 | int fake_lstat(const struct cache_entry *ce, struct stat *st) | |
222 | { | |
223 | fake_lstat_data(&ce->ce_stat_data, st); | |
224 | st->st_mode = st_mode_from_ce(ce); | |
225 | ||
226 | /* always succeed as lstat() replacement */ | |
227 | return 0; | |
228 | } | |
229 | ||
230 | static int ce_compare_data(struct index_state *istate, | |
231 | const struct cache_entry *ce, | |
232 | struct stat *st) | |
233 | { | |
234 | int match = -1; | |
235 | int fd = git_open_cloexec(ce->name, O_RDONLY); | |
236 | ||
237 | if (fd >= 0) { | |
238 | struct object_id oid; | |
239 | if (!index_fd(istate, &oid, fd, st, OBJ_BLOB, ce->name, 0)) | |
240 | match = !oideq(&oid, &ce->oid); | |
241 | /* index_fd() closed the file descriptor already */ | |
242 | } | |
243 | return match; | |
244 | } | |
245 | ||
246 | static int ce_compare_link(const struct cache_entry *ce, size_t expected_size) | |
247 | { | |
248 | int match = -1; | |
249 | void *buffer; | |
250 | unsigned long size; | |
251 | enum object_type type; | |
252 | struct strbuf sb = STRBUF_INIT; | |
253 | ||
254 | if (strbuf_readlink(&sb, ce->name, expected_size)) | |
255 | return -1; | |
256 | ||
257 | buffer = repo_read_object_file(the_repository, &ce->oid, &type, &size); | |
258 | if (buffer) { | |
259 | if (size == sb.len) | |
260 | match = memcmp(buffer, sb.buf, size); | |
261 | free(buffer); | |
262 | } | |
263 | strbuf_release(&sb); | |
264 | return match; | |
265 | } | |
266 | ||
267 | static int ce_compare_gitlink(const struct cache_entry *ce) | |
268 | { | |
269 | struct object_id oid; | |
270 | ||
271 | /* | |
272 | * We don't actually require that the .git directory | |
273 | * under GITLINK directory be a valid git directory. It | |
274 | * might even be missing (in case nobody populated that | |
275 | * sub-project). | |
276 | * | |
277 | * If so, we consider it always to match. | |
278 | */ | |
279 | if (repo_resolve_gitlink_ref(the_repository, ce->name, | |
280 | "HEAD", &oid) < 0) | |
281 | return 0; | |
282 | return !oideq(&oid, &ce->oid); | |
283 | } | |
284 | ||
285 | static int ce_modified_check_fs(struct index_state *istate, | |
286 | const struct cache_entry *ce, | |
287 | struct stat *st) | |
288 | { | |
289 | switch (st->st_mode & S_IFMT) { | |
290 | case S_IFREG: | |
291 | if (ce_compare_data(istate, ce, st)) | |
292 | return DATA_CHANGED; | |
293 | break; | |
294 | case S_IFLNK: | |
295 | if (ce_compare_link(ce, xsize_t(st->st_size))) | |
296 | return DATA_CHANGED; | |
297 | break; | |
298 | case S_IFDIR: | |
299 | if (S_ISGITLINK(ce->ce_mode)) | |
300 | return ce_compare_gitlink(ce) ? DATA_CHANGED : 0; | |
301 | /* else fallthrough */ | |
302 | default: | |
303 | return TYPE_CHANGED; | |
304 | } | |
305 | return 0; | |
306 | } | |
307 | ||
308 | static int ce_match_stat_basic(const struct cache_entry *ce, struct stat *st) | |
309 | { | |
310 | unsigned int changed = 0; | |
311 | ||
312 | if (ce->ce_flags & CE_REMOVE) | |
313 | return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED; | |
314 | ||
315 | switch (ce->ce_mode & S_IFMT) { | |
316 | case S_IFREG: | |
317 | changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0; | |
318 | /* We consider only the owner x bit to be relevant for | |
319 | * "mode changes" | |
320 | */ | |
321 | if (trust_executable_bit && | |
322 | (0100 & (ce->ce_mode ^ st->st_mode))) | |
323 | changed |= MODE_CHANGED; | |
324 | break; | |
325 | case S_IFLNK: | |
326 | if (!S_ISLNK(st->st_mode) && | |
327 | (has_symlinks || !S_ISREG(st->st_mode))) | |
328 | changed |= TYPE_CHANGED; | |
329 | break; | |
330 | case S_IFGITLINK: | |
331 | /* We ignore most of the st_xxx fields for gitlinks */ | |
332 | if (!S_ISDIR(st->st_mode)) | |
333 | changed |= TYPE_CHANGED; | |
334 | else if (ce_compare_gitlink(ce)) | |
335 | changed |= DATA_CHANGED; | |
336 | return changed; | |
337 | default: | |
338 | BUG("unsupported ce_mode: %o", ce->ce_mode); | |
339 | } | |
340 | ||
341 | changed |= match_stat_data(&ce->ce_stat_data, st); | |
342 | ||
343 | /* Racily smudged entry? */ | |
344 | if (!ce->ce_stat_data.sd_size) { | |
345 | if (!is_empty_blob_oid(&ce->oid, the_repository->hash_algo)) | |
346 | changed |= DATA_CHANGED; | |
347 | } | |
348 | ||
349 | return changed; | |
350 | } | |
351 | ||
352 | static int is_racy_stat(const struct index_state *istate, | |
353 | const struct stat_data *sd) | |
354 | { | |
355 | return (istate->timestamp.sec && | |
356 | #ifdef USE_NSEC | |
357 | /* nanosecond timestamped files can also be racy! */ | |
358 | (istate->timestamp.sec < sd->sd_mtime.sec || | |
359 | (istate->timestamp.sec == sd->sd_mtime.sec && | |
360 | istate->timestamp.nsec <= sd->sd_mtime.nsec)) | |
361 | #else | |
362 | istate->timestamp.sec <= sd->sd_mtime.sec | |
363 | #endif | |
364 | ); | |
365 | } | |
366 | ||
367 | int is_racy_timestamp(const struct index_state *istate, | |
368 | const struct cache_entry *ce) | |
369 | { | |
370 | return (!S_ISGITLINK(ce->ce_mode) && | |
371 | is_racy_stat(istate, &ce->ce_stat_data)); | |
372 | } | |
373 | ||
374 | int match_stat_data_racy(const struct index_state *istate, | |
375 | const struct stat_data *sd, struct stat *st) | |
376 | { | |
377 | if (is_racy_stat(istate, sd)) | |
378 | return MTIME_CHANGED; | |
379 | return match_stat_data(sd, st); | |
380 | } | |
381 | ||
382 | int ie_match_stat(struct index_state *istate, | |
383 | const struct cache_entry *ce, struct stat *st, | |
384 | unsigned int options) | |
385 | { | |
386 | unsigned int changed; | |
387 | int ignore_valid = options & CE_MATCH_IGNORE_VALID; | |
388 | int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; | |
389 | int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY; | |
390 | int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR; | |
391 | ||
392 | if (!ignore_fsmonitor) | |
393 | refresh_fsmonitor(istate); | |
394 | /* | |
395 | * If it's marked as always valid in the index, it's | |
396 | * valid whatever the checked-out copy says. | |
397 | * | |
398 | * skip-worktree has the same effect with higher precedence | |
399 | */ | |
400 | if (!ignore_skip_worktree && ce_skip_worktree(ce)) | |
401 | return 0; | |
402 | if (!ignore_valid && (ce->ce_flags & CE_VALID)) | |
403 | return 0; | |
404 | if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) | |
405 | return 0; | |
406 | ||
407 | /* | |
408 | * Intent-to-add entries have not been added, so the index entry | |
409 | * by definition never matches what is in the work tree until it | |
410 | * actually gets added. | |
411 | */ | |
412 | if (ce_intent_to_add(ce)) | |
413 | return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED; | |
414 | ||
415 | changed = ce_match_stat_basic(ce, st); | |
416 | ||
417 | /* | |
418 | * Within 1 second of this sequence: | |
419 | * echo xyzzy >file && git-update-index --add file | |
420 | * running this command: | |
421 | * echo frotz >file | |
422 | * would give a falsely clean cache entry. The mtime and | |
423 | * length match the cache, and other stat fields do not change. | |
424 | * | |
425 | * We could detect this at update-index time (the cache entry | |
426 | * being registered/updated records the same time as "now") | |
427 | * and delay the return from git-update-index, but that would | |
428 | * effectively mean we can make at most one commit per second, | |
429 | * which is not acceptable. Instead, we check cache entries | |
430 | * whose mtime are the same as the index file timestamp more | |
431 | * carefully than others. | |
432 | */ | |
433 | if (!changed && is_racy_timestamp(istate, ce)) { | |
434 | if (assume_racy_is_modified) | |
435 | changed |= DATA_CHANGED; | |
436 | else | |
437 | changed |= ce_modified_check_fs(istate, ce, st); | |
438 | } | |
439 | ||
440 | return changed; | |
441 | } | |
442 | ||
443 | int ie_modified(struct index_state *istate, | |
444 | const struct cache_entry *ce, | |
445 | struct stat *st, unsigned int options) | |
446 | { | |
447 | int changed, changed_fs; | |
448 | ||
449 | changed = ie_match_stat(istate, ce, st, options); | |
450 | if (!changed) | |
451 | return 0; | |
452 | /* | |
453 | * If the mode or type has changed, there's no point in trying | |
454 | * to refresh the entry - it's not going to match | |
455 | */ | |
456 | if (changed & (MODE_CHANGED | TYPE_CHANGED)) | |
457 | return changed; | |
458 | ||
459 | /* | |
460 | * Immediately after read-tree or update-index --cacheinfo, | |
461 | * the length field is zero, as we have never even read the | |
462 | * lstat(2) information once, and we cannot trust DATA_CHANGED | |
463 | * returned by ie_match_stat() which in turn was returned by | |
464 | * ce_match_stat_basic() to signal that the filesize of the | |
465 | * blob changed. We have to actually go to the filesystem to | |
466 | * see if the contents match, and if so, should answer "unchanged". | |
467 | * | |
468 | * The logic does not apply to gitlinks, as ce_match_stat_basic() | |
469 | * already has checked the actual HEAD from the filesystem in the | |
470 | * subproject. If ie_match_stat() already said it is different, | |
471 | * then we know it is. | |
472 | */ | |
473 | if ((changed & DATA_CHANGED) && | |
474 | (S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size != 0)) | |
475 | return changed; | |
476 | ||
477 | changed_fs = ce_modified_check_fs(istate, ce, st); | |
478 | if (changed_fs) | |
479 | return changed | changed_fs; | |
480 | return 0; | |
481 | } | |
482 | ||
483 | static int cache_name_stage_compare(const char *name1, int len1, int stage1, | |
484 | const char *name2, int len2, int stage2) | |
485 | { | |
486 | int cmp; | |
487 | ||
488 | cmp = name_compare(name1, len1, name2, len2); | |
489 | if (cmp) | |
490 | return cmp; | |
491 | ||
492 | if (stage1 < stage2) | |
493 | return -1; | |
494 | if (stage1 > stage2) | |
495 | return 1; | |
496 | return 0; | |
497 | } | |
498 | ||
499 | int cmp_cache_name_compare(const void *a_, const void *b_) | |
500 | { | |
501 | const struct cache_entry *ce1, *ce2; | |
502 | ||
503 | ce1 = *((const struct cache_entry **)a_); | |
504 | ce2 = *((const struct cache_entry **)b_); | |
505 | return cache_name_stage_compare(ce1->name, ce1->ce_namelen, ce_stage(ce1), | |
506 | ce2->name, ce2->ce_namelen, ce_stage(ce2)); | |
507 | } | |
508 | ||
509 | static int index_name_stage_pos(struct index_state *istate, | |
510 | const char *name, int namelen, | |
511 | int stage, | |
512 | enum index_search_mode search_mode) | |
513 | { | |
514 | int first, last; | |
515 | ||
516 | first = 0; | |
517 | last = istate->cache_nr; | |
518 | while (last > first) { | |
519 | int next = first + ((last - first) >> 1); | |
520 | struct cache_entry *ce = istate->cache[next]; | |
521 | int cmp = cache_name_stage_compare(name, namelen, stage, ce->name, ce_namelen(ce), ce_stage(ce)); | |
522 | if (!cmp) | |
523 | return next; | |
524 | if (cmp < 0) { | |
525 | last = next; | |
526 | continue; | |
527 | } | |
528 | first = next+1; | |
529 | } | |
530 | ||
531 | if (search_mode == EXPAND_SPARSE && istate->sparse_index && | |
532 | first > 0) { | |
533 | /* Note: first <= istate->cache_nr */ | |
534 | struct cache_entry *ce = istate->cache[first - 1]; | |
535 | ||
536 | /* | |
537 | * If we are in a sparse-index _and_ the entry before the | |
538 | * insertion position is a sparse-directory entry that is | |
539 | * an ancestor of 'name', then we need to expand the index | |
540 | * and search again. This will only trigger once, because | |
541 | * thereafter the index is fully expanded. | |
542 | */ | |
543 | if (S_ISSPARSEDIR(ce->ce_mode) && | |
544 | ce_namelen(ce) < namelen && | |
545 | !strncmp(name, ce->name, ce_namelen(ce))) { | |
546 | ensure_full_index(istate); | |
547 | return index_name_stage_pos(istate, name, namelen, stage, search_mode); | |
548 | } | |
549 | } | |
550 | ||
551 | return -first-1; | |
552 | } | |
553 | ||
554 | int index_name_pos(struct index_state *istate, const char *name, int namelen) | |
555 | { | |
556 | return index_name_stage_pos(istate, name, namelen, 0, EXPAND_SPARSE); | |
557 | } | |
558 | ||
559 | int index_name_pos_sparse(struct index_state *istate, const char *name, int namelen) | |
560 | { | |
561 | return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE); | |
562 | } | |
563 | ||
564 | int index_entry_exists(struct index_state *istate, const char *name, int namelen) | |
565 | { | |
566 | return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE) >= 0; | |
567 | } | |
568 | ||
569 | int remove_index_entry_at(struct index_state *istate, int pos) | |
570 | { | |
571 | struct cache_entry *ce = istate->cache[pos]; | |
572 | ||
573 | record_resolve_undo(istate, ce); | |
574 | remove_name_hash(istate, ce); | |
575 | save_or_free_index_entry(istate, ce); | |
576 | istate->cache_changed |= CE_ENTRY_REMOVED; | |
577 | istate->cache_nr--; | |
578 | if (pos >= istate->cache_nr) | |
579 | return 0; | |
580 | MOVE_ARRAY(istate->cache + pos, istate->cache + pos + 1, | |
581 | istate->cache_nr - pos); | |
582 | return 1; | |
583 | } | |
584 | ||
585 | /* | |
586 | * Remove all cache entries marked for removal, that is where | |
587 | * CE_REMOVE is set in ce_flags. This is much more effective than | |
588 | * calling remove_index_entry_at() for each entry to be removed. | |
589 | */ | |
590 | void remove_marked_cache_entries(struct index_state *istate, int invalidate) | |
591 | { | |
592 | struct cache_entry **ce_array = istate->cache; | |
593 | unsigned int i, j; | |
594 | ||
595 | for (i = j = 0; i < istate->cache_nr; i++) { | |
596 | if (ce_array[i]->ce_flags & CE_REMOVE) { | |
597 | if (invalidate) { | |
598 | cache_tree_invalidate_path(istate, | |
599 | ce_array[i]->name); | |
600 | untracked_cache_remove_from_index(istate, | |
601 | ce_array[i]->name); | |
602 | } | |
603 | remove_name_hash(istate, ce_array[i]); | |
604 | save_or_free_index_entry(istate, ce_array[i]); | |
605 | } | |
606 | else | |
607 | ce_array[j++] = ce_array[i]; | |
608 | } | |
609 | if (j == istate->cache_nr) | |
610 | return; | |
611 | istate->cache_changed |= CE_ENTRY_REMOVED; | |
612 | istate->cache_nr = j; | |
613 | } | |
614 | ||
615 | int remove_file_from_index(struct index_state *istate, const char *path) | |
616 | { | |
617 | int pos = index_name_pos(istate, path, strlen(path)); | |
618 | if (pos < 0) | |
619 | pos = -pos-1; | |
620 | cache_tree_invalidate_path(istate, path); | |
621 | untracked_cache_remove_from_index(istate, path); | |
622 | while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path)) | |
623 | remove_index_entry_at(istate, pos); | |
624 | return 0; | |
625 | } | |
626 | ||
627 | static int compare_name(struct cache_entry *ce, const char *path, int namelen) | |
628 | { | |
629 | return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen); | |
630 | } | |
631 | ||
632 | static int index_name_pos_also_unmerged(struct index_state *istate, | |
633 | const char *path, int namelen) | |
634 | { | |
635 | int pos = index_name_pos(istate, path, namelen); | |
636 | struct cache_entry *ce; | |
637 | ||
638 | if (pos >= 0) | |
639 | return pos; | |
640 | ||
641 | /* maybe unmerged? */ | |
642 | pos = -1 - pos; | |
643 | if (pos >= istate->cache_nr || | |
644 | compare_name((ce = istate->cache[pos]), path, namelen)) | |
645 | return -1; | |
646 | ||
647 | /* order of preference: stage 2, 1, 3 */ | |
648 | if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr && | |
649 | ce_stage((ce = istate->cache[pos + 1])) == 2 && | |
650 | !compare_name(ce, path, namelen)) | |
651 | pos++; | |
652 | return pos; | |
653 | } | |
654 | ||
655 | static int different_name(struct cache_entry *ce, struct cache_entry *alias) | |
656 | { | |
657 | int len = ce_namelen(ce); | |
658 | return ce_namelen(alias) != len || memcmp(ce->name, alias->name, len); | |
659 | } | |
660 | ||
661 | /* | |
662 | * If we add a filename that aliases in the cache, we will use the | |
663 | * name that we already have - but we don't want to update the same | |
664 | * alias twice, because that implies that there were actually two | |
665 | * different files with aliasing names! | |
666 | * | |
667 | * So we use the CE_ADDED flag to verify that the alias was an old | |
668 | * one before we accept it as | |
669 | */ | |
670 | static struct cache_entry *create_alias_ce(struct index_state *istate, | |
671 | struct cache_entry *ce, | |
672 | struct cache_entry *alias) | |
673 | { | |
674 | int len; | |
675 | struct cache_entry *new_entry; | |
676 | ||
677 | if (alias->ce_flags & CE_ADDED) | |
678 | die(_("will not add file alias '%s' ('%s' already exists in index)"), | |
679 | ce->name, alias->name); | |
680 | ||
681 | /* Ok, create the new entry using the name of the existing alias */ | |
682 | len = ce_namelen(alias); | |
683 | new_entry = make_empty_cache_entry(istate, len); | |
684 | memcpy(new_entry->name, alias->name, len); | |
685 | copy_cache_entry(new_entry, ce); | |
686 | save_or_free_index_entry(istate, ce); | |
687 | return new_entry; | |
688 | } | |
689 | ||
690 | void set_object_name_for_intent_to_add_entry(struct cache_entry *ce) | |
691 | { | |
692 | struct object_id oid; | |
693 | if (write_object_file("", 0, OBJ_BLOB, &oid)) | |
694 | die(_("cannot create an empty blob in the object database")); | |
695 | oidcpy(&ce->oid, &oid); | |
696 | } | |
697 | ||
698 | int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags) | |
699 | { | |
700 | int namelen, was_same; | |
701 | mode_t st_mode = st->st_mode; | |
702 | struct cache_entry *ce, *alias = NULL; | |
703 | unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY; | |
704 | int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND); | |
705 | int pretend = flags & ADD_CACHE_PRETEND; | |
706 | int intent_only = flags & ADD_CACHE_INTENT; | |
707 | int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE| | |
708 | (intent_only ? ADD_CACHE_NEW_ONLY : 0)); | |
709 | unsigned hash_flags = pretend ? 0 : INDEX_WRITE_OBJECT; | |
710 | struct object_id oid; | |
711 | ||
712 | if (flags & ADD_CACHE_RENORMALIZE) | |
713 | hash_flags |= INDEX_RENORMALIZE; | |
714 | ||
715 | if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode)) | |
716 | return error(_("%s: can only add regular files, symbolic links or git-directories"), path); | |
717 | ||
718 | namelen = strlen(path); | |
719 | if (S_ISDIR(st_mode)) { | |
720 | if (repo_resolve_gitlink_ref(the_repository, path, "HEAD", &oid) < 0) | |
721 | return error(_("'%s' does not have a commit checked out"), path); | |
722 | while (namelen && path[namelen-1] == '/') | |
723 | namelen--; | |
724 | } | |
725 | ce = make_empty_cache_entry(istate, namelen); | |
726 | memcpy(ce->name, path, namelen); | |
727 | ce->ce_namelen = namelen; | |
728 | if (!intent_only) | |
729 | fill_stat_cache_info(istate, ce, st); | |
730 | else | |
731 | ce->ce_flags |= CE_INTENT_TO_ADD; | |
732 | ||
733 | ||
734 | if (trust_executable_bit && has_symlinks) { | |
735 | ce->ce_mode = create_ce_mode(st_mode); | |
736 | } else { | |
737 | /* If there is an existing entry, pick the mode bits and type | |
738 | * from it, otherwise assume unexecutable regular file. | |
739 | */ | |
740 | struct cache_entry *ent; | |
741 | int pos = index_name_pos_also_unmerged(istate, path, namelen); | |
742 | ||
743 | ent = (0 <= pos) ? istate->cache[pos] : NULL; | |
744 | ce->ce_mode = ce_mode_from_stat(ent, st_mode); | |
745 | } | |
746 | ||
747 | /* When core.ignorecase=true, determine if a directory of the same name but differing | |
748 | * case already exists within the Git repository. If it does, ensure the directory | |
749 | * case of the file being added to the repository matches (is folded into) the existing | |
750 | * entry's directory case. | |
751 | */ | |
752 | if (ignore_case) { | |
753 | adjust_dirname_case(istate, ce->name); | |
754 | } | |
755 | if (!(flags & ADD_CACHE_RENORMALIZE)) { | |
756 | alias = index_file_exists(istate, ce->name, | |
757 | ce_namelen(ce), ignore_case); | |
758 | if (alias && | |
759 | !ce_stage(alias) && | |
760 | !ie_match_stat(istate, alias, st, ce_option)) { | |
761 | /* Nothing changed, really */ | |
762 | if (!S_ISGITLINK(alias->ce_mode)) | |
763 | ce_mark_uptodate(alias); | |
764 | alias->ce_flags |= CE_ADDED; | |
765 | ||
766 | discard_cache_entry(ce); | |
767 | return 0; | |
768 | } | |
769 | } | |
770 | if (!intent_only) { | |
771 | if (index_path(istate, &ce->oid, path, st, hash_flags)) { | |
772 | discard_cache_entry(ce); | |
773 | return error(_("unable to index file '%s'"), path); | |
774 | } | |
775 | } else | |
776 | set_object_name_for_intent_to_add_entry(ce); | |
777 | ||
778 | if (ignore_case && alias && different_name(ce, alias)) | |
779 | ce = create_alias_ce(istate, ce, alias); | |
780 | ce->ce_flags |= CE_ADDED; | |
781 | ||
782 | /* It was suspected to be racily clean, but it turns out to be Ok */ | |
783 | was_same = (alias && | |
784 | !ce_stage(alias) && | |
785 | oideq(&alias->oid, &ce->oid) && | |
786 | ce->ce_mode == alias->ce_mode); | |
787 | ||
788 | if (pretend) | |
789 | discard_cache_entry(ce); | |
790 | else if (add_index_entry(istate, ce, add_option)) { | |
791 | discard_cache_entry(ce); | |
792 | return error(_("unable to add '%s' to index"), path); | |
793 | } | |
794 | if (verbose && !was_same) | |
795 | printf("add '%s'\n", path); | |
796 | return 0; | |
797 | } | |
798 | ||
799 | int add_file_to_index(struct index_state *istate, const char *path, int flags) | |
800 | { | |
801 | struct stat st; | |
802 | if (lstat(path, &st)) | |
803 | die_errno(_("unable to stat '%s'"), path); | |
804 | return add_to_index(istate, path, &st, flags); | |
805 | } | |
806 | ||
807 | struct cache_entry *make_empty_cache_entry(struct index_state *istate, size_t len) | |
808 | { | |
809 | return mem_pool__ce_calloc(find_mem_pool(istate), len); | |
810 | } | |
811 | ||
812 | struct cache_entry *make_empty_transient_cache_entry(size_t len, | |
813 | struct mem_pool *ce_mem_pool) | |
814 | { | |
815 | if (ce_mem_pool) | |
816 | return mem_pool__ce_calloc(ce_mem_pool, len); | |
817 | return xcalloc(1, cache_entry_size(len)); | |
818 | } | |
819 | ||
820 | enum verify_path_result { | |
821 | PATH_OK, | |
822 | PATH_INVALID, | |
823 | PATH_DIR_WITH_SEP, | |
824 | }; | |
825 | ||
826 | static enum verify_path_result verify_path_internal(const char *, unsigned); | |
827 | ||
828 | int verify_path(const char *path, unsigned mode) | |
829 | { | |
830 | return verify_path_internal(path, mode) == PATH_OK; | |
831 | } | |
832 | ||
833 | struct cache_entry *make_cache_entry(struct index_state *istate, | |
834 | unsigned int mode, | |
835 | const struct object_id *oid, | |
836 | const char *path, | |
837 | int stage, | |
838 | unsigned int refresh_options) | |
839 | { | |
840 | struct cache_entry *ce, *ret; | |
841 | int len; | |
842 | ||
843 | if (verify_path_internal(path, mode) == PATH_INVALID) { | |
844 | error(_("invalid path '%s'"), path); | |
845 | return NULL; | |
846 | } | |
847 | ||
848 | len = strlen(path); | |
849 | ce = make_empty_cache_entry(istate, len); | |
850 | ||
851 | oidcpy(&ce->oid, oid); | |
852 | memcpy(ce->name, path, len); | |
853 | ce->ce_flags = create_ce_flags(stage); | |
854 | ce->ce_namelen = len; | |
855 | ce->ce_mode = create_ce_mode(mode); | |
856 | ||
857 | ret = refresh_cache_entry(istate, ce, refresh_options); | |
858 | if (ret != ce) | |
859 | discard_cache_entry(ce); | |
860 | return ret; | |
861 | } | |
862 | ||
863 | struct cache_entry *make_transient_cache_entry(unsigned int mode, | |
864 | const struct object_id *oid, | |
865 | const char *path, | |
866 | int stage, | |
867 | struct mem_pool *ce_mem_pool) | |
868 | { | |
869 | struct cache_entry *ce; | |
870 | int len; | |
871 | ||
872 | if (!verify_path(path, mode)) { | |
873 | error(_("invalid path '%s'"), path); | |
874 | return NULL; | |
875 | } | |
876 | ||
877 | len = strlen(path); | |
878 | ce = make_empty_transient_cache_entry(len, ce_mem_pool); | |
879 | ||
880 | oidcpy(&ce->oid, oid); | |
881 | memcpy(ce->name, path, len); | |
882 | ce->ce_flags = create_ce_flags(stage); | |
883 | ce->ce_namelen = len; | |
884 | ce->ce_mode = create_ce_mode(mode); | |
885 | ||
886 | return ce; | |
887 | } | |
888 | ||
889 | /* | |
890 | * Chmod an index entry with either +x or -x. | |
891 | * | |
892 | * Returns -1 if the chmod for the particular cache entry failed (if it's | |
893 | * not a regular file), -2 if an invalid flip argument is passed in, 0 | |
894 | * otherwise. | |
895 | */ | |
896 | int chmod_index_entry(struct index_state *istate, struct cache_entry *ce, | |
897 | char flip) | |
898 | { | |
899 | if (!S_ISREG(ce->ce_mode)) | |
900 | return -1; | |
901 | switch (flip) { | |
902 | case '+': | |
903 | ce->ce_mode |= 0111; | |
904 | break; | |
905 | case '-': | |
906 | ce->ce_mode &= ~0111; | |
907 | break; | |
908 | default: | |
909 | return -2; | |
910 | } | |
911 | cache_tree_invalidate_path(istate, ce->name); | |
912 | ce->ce_flags |= CE_UPDATE_IN_BASE; | |
913 | mark_fsmonitor_invalid(istate, ce); | |
914 | istate->cache_changed |= CE_ENTRY_CHANGED; | |
915 | ||
916 | return 0; | |
917 | } | |
918 | ||
919 | int ce_same_name(const struct cache_entry *a, const struct cache_entry *b) | |
920 | { | |
921 | int len = ce_namelen(a); | |
922 | return ce_namelen(b) == len && !memcmp(a->name, b->name, len); | |
923 | } | |
924 | ||
925 | /* | |
926 | * We fundamentally don't like some paths: we don't want | |
927 | * dot or dot-dot anywhere, and for obvious reasons don't | |
928 | * want to recurse into ".git" either. | |
929 | * | |
930 | * Also, we don't want double slashes or slashes at the | |
931 | * end that can make pathnames ambiguous. | |
932 | */ | |
933 | static int verify_dotfile(const char *rest, unsigned mode) | |
934 | { | |
935 | /* | |
936 | * The first character was '.', but that | |
937 | * has already been discarded, we now test | |
938 | * the rest. | |
939 | */ | |
940 | ||
941 | /* "." is not allowed */ | |
942 | if (*rest == '\0' || is_dir_sep(*rest)) | |
943 | return 0; | |
944 | ||
945 | switch (*rest) { | |
946 | /* | |
947 | * ".git" followed by NUL or slash is bad. Note that we match | |
948 | * case-insensitively here, even if ignore_case is not set. | |
949 | * This outlaws ".GIT" everywhere out of an abundance of caution, | |
950 | * since there's really no good reason to allow it. | |
951 | * | |
952 | * Once we've seen ".git", we can also find ".gitmodules", etc (also | |
953 | * case-insensitively). | |
954 | */ | |
955 | case 'g': | |
956 | case 'G': | |
957 | if (rest[1] != 'i' && rest[1] != 'I') | |
958 | break; | |
959 | if (rest[2] != 't' && rest[2] != 'T') | |
960 | break; | |
961 | if (rest[3] == '\0' || is_dir_sep(rest[3])) | |
962 | return 0; | |
963 | if (S_ISLNK(mode)) { | |
964 | rest += 3; | |
965 | if (skip_iprefix(rest, "modules", &rest) && | |
966 | (*rest == '\0' || is_dir_sep(*rest))) | |
967 | return 0; | |
968 | } | |
969 | break; | |
970 | case '.': | |
971 | if (rest[1] == '\0' || is_dir_sep(rest[1])) | |
972 | return 0; | |
973 | } | |
974 | return 1; | |
975 | } | |
976 | ||
977 | static enum verify_path_result verify_path_internal(const char *path, | |
978 | unsigned mode) | |
979 | { | |
980 | char c = 0; | |
981 | ||
982 | if (has_dos_drive_prefix(path)) | |
983 | return PATH_INVALID; | |
984 | ||
985 | if (!is_valid_path(path)) | |
986 | return PATH_INVALID; | |
987 | ||
988 | goto inside; | |
989 | for (;;) { | |
990 | if (!c) | |
991 | return PATH_OK; | |
992 | if (is_dir_sep(c)) { | |
993 | inside: | |
994 | if (protect_hfs) { | |
995 | ||
996 | if (is_hfs_dotgit(path)) | |
997 | return PATH_INVALID; | |
998 | if (S_ISLNK(mode)) { | |
999 | if (is_hfs_dotgitmodules(path)) | |
1000 | return PATH_INVALID; | |
1001 | } | |
1002 | } | |
1003 | if (protect_ntfs) { | |
1004 | #if defined GIT_WINDOWS_NATIVE || defined __CYGWIN__ | |
1005 | if (c == '\\') | |
1006 | return PATH_INVALID; | |
1007 | #endif | |
1008 | if (is_ntfs_dotgit(path)) | |
1009 | return PATH_INVALID; | |
1010 | if (S_ISLNK(mode)) { | |
1011 | if (is_ntfs_dotgitmodules(path)) | |
1012 | return PATH_INVALID; | |
1013 | } | |
1014 | } | |
1015 | ||
1016 | c = *path++; | |
1017 | if ((c == '.' && !verify_dotfile(path, mode)) || | |
1018 | is_dir_sep(c)) | |
1019 | return PATH_INVALID; | |
1020 | /* | |
1021 | * allow terminating directory separators for | |
1022 | * sparse directory entries. | |
1023 | */ | |
1024 | if (c == '\0') | |
1025 | return S_ISDIR(mode) ? PATH_DIR_WITH_SEP : | |
1026 | PATH_INVALID; | |
1027 | } else if (c == '\\' && protect_ntfs) { | |
1028 | if (is_ntfs_dotgit(path)) | |
1029 | return PATH_INVALID; | |
1030 | if (S_ISLNK(mode)) { | |
1031 | if (is_ntfs_dotgitmodules(path)) | |
1032 | return PATH_INVALID; | |
1033 | } | |
1034 | } | |
1035 | ||
1036 | c = *path++; | |
1037 | } | |
1038 | } | |
1039 | ||
1040 | /* | |
1041 | * Do we have another file that has the beginning components being a | |
1042 | * proper superset of the name we're trying to add? | |
1043 | */ | |
1044 | static int has_file_name(struct index_state *istate, | |
1045 | const struct cache_entry *ce, int pos, int ok_to_replace) | |
1046 | { | |
1047 | int retval = 0; | |
1048 | int len = ce_namelen(ce); | |
1049 | int stage = ce_stage(ce); | |
1050 | const char *name = ce->name; | |
1051 | ||
1052 | while (pos < istate->cache_nr) { | |
1053 | struct cache_entry *p = istate->cache[pos++]; | |
1054 | ||
1055 | if (len >= ce_namelen(p)) | |
1056 | break; | |
1057 | if (memcmp(name, p->name, len)) | |
1058 | break; | |
1059 | if (ce_stage(p) != stage) | |
1060 | continue; | |
1061 | if (p->name[len] != '/') | |
1062 | continue; | |
1063 | if (p->ce_flags & CE_REMOVE) | |
1064 | continue; | |
1065 | retval = -1; | |
1066 | if (!ok_to_replace) | |
1067 | break; | |
1068 | remove_index_entry_at(istate, --pos); | |
1069 | } | |
1070 | return retval; | |
1071 | } | |
1072 | ||
1073 | ||
1074 | /* | |
1075 | * Like strcmp(), but also return the offset of the first change. | |
1076 | * If strings are equal, return the length. | |
1077 | */ | |
1078 | int strcmp_offset(const char *s1, const char *s2, size_t *first_change) | |
1079 | { | |
1080 | size_t k; | |
1081 | ||
1082 | if (!first_change) | |
1083 | return strcmp(s1, s2); | |
1084 | ||
1085 | for (k = 0; s1[k] == s2[k]; k++) | |
1086 | if (s1[k] == '\0') | |
1087 | break; | |
1088 | ||
1089 | *first_change = k; | |
1090 | return (unsigned char)s1[k] - (unsigned char)s2[k]; | |
1091 | } | |
1092 | ||
1093 | /* | |
1094 | * Do we have another file with a pathname that is a proper | |
1095 | * subset of the name we're trying to add? | |
1096 | * | |
1097 | * That is, is there another file in the index with a path | |
1098 | * that matches a sub-directory in the given entry? | |
1099 | */ | |
1100 | static int has_dir_name(struct index_state *istate, | |
1101 | const struct cache_entry *ce, int pos, int ok_to_replace) | |
1102 | { | |
1103 | int retval = 0; | |
1104 | int stage = ce_stage(ce); | |
1105 | const char *name = ce->name; | |
1106 | const char *slash = name + ce_namelen(ce); | |
1107 | size_t len_eq_last; | |
1108 | int cmp_last = 0; | |
1109 | ||
1110 | /* | |
1111 | * We are frequently called during an iteration on a sorted | |
1112 | * list of pathnames and while building a new index. Therefore, | |
1113 | * there is a high probability that this entry will eventually | |
1114 | * be appended to the index, rather than inserted in the middle. | |
1115 | * If we can confirm that, we can avoid binary searches on the | |
1116 | * components of the pathname. | |
1117 | * | |
1118 | * Compare the entry's full path with the last path in the index. | |
1119 | */ | |
1120 | if (!istate->cache_nr) | |
1121 | return 0; | |
1122 | ||
1123 | cmp_last = strcmp_offset(name, | |
1124 | istate->cache[istate->cache_nr - 1]->name, | |
1125 | &len_eq_last); | |
1126 | if (cmp_last > 0 && name[len_eq_last] != '/') | |
1127 | /* | |
1128 | * The entry sorts AFTER the last one in the | |
1129 | * index and their paths have no common prefix, | |
1130 | * so there cannot be a F/D conflict. | |
1131 | */ | |
1132 | return 0; | |
1133 | ||
1134 | for (;;) { | |
1135 | size_t len; | |
1136 | ||
1137 | for (;;) { | |
1138 | if (*--slash == '/') | |
1139 | break; | |
1140 | if (slash <= ce->name) | |
1141 | return retval; | |
1142 | } | |
1143 | len = slash - name; | |
1144 | ||
1145 | pos = index_name_stage_pos(istate, name, len, stage, EXPAND_SPARSE); | |
1146 | if (pos >= 0) { | |
1147 | /* | |
1148 | * Found one, but not so fast. This could | |
1149 | * be a marker that says "I was here, but | |
1150 | * I am being removed". Such an entry is | |
1151 | * not a part of the resulting tree, and | |
1152 | * it is Ok to have a directory at the same | |
1153 | * path. | |
1154 | */ | |
1155 | if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) { | |
1156 | retval = -1; | |
1157 | if (!ok_to_replace) | |
1158 | break; | |
1159 | remove_index_entry_at(istate, pos); | |
1160 | continue; | |
1161 | } | |
1162 | } | |
1163 | else | |
1164 | pos = -pos-1; | |
1165 | ||
1166 | /* | |
1167 | * Trivial optimization: if we find an entry that | |
1168 | * already matches the sub-directory, then we know | |
1169 | * we're ok, and we can exit. | |
1170 | */ | |
1171 | while (pos < istate->cache_nr) { | |
1172 | struct cache_entry *p = istate->cache[pos]; | |
1173 | if ((ce_namelen(p) <= len) || | |
1174 | (p->name[len] != '/') || | |
1175 | memcmp(p->name, name, len)) | |
1176 | break; /* not our subdirectory */ | |
1177 | if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE)) | |
1178 | /* | |
1179 | * p is at the same stage as our entry, and | |
1180 | * is a subdirectory of what we are looking | |
1181 | * at, so we cannot have conflicts at our | |
1182 | * level or anything shorter. | |
1183 | */ | |
1184 | return retval; | |
1185 | pos++; | |
1186 | } | |
1187 | } | |
1188 | return retval; | |
1189 | } | |
1190 | ||
1191 | /* We may be in a situation where we already have path/file and path | |
1192 | * is being added, or we already have path and path/file is being | |
1193 | * added. Either one would result in a nonsense tree that has path | |
1194 | * twice when git-write-tree tries to write it out. Prevent it. | |
1195 | * | |
1196 | * If ok-to-replace is specified, we remove the conflicting entries | |
1197 | * from the cache so the caller should recompute the insert position. | |
1198 | * When this happens, we return non-zero. | |
1199 | */ | |
1200 | static int check_file_directory_conflict(struct index_state *istate, | |
1201 | const struct cache_entry *ce, | |
1202 | int pos, int ok_to_replace) | |
1203 | { | |
1204 | int retval; | |
1205 | ||
1206 | /* | |
1207 | * When ce is an "I am going away" entry, we allow it to be added | |
1208 | */ | |
1209 | if (ce->ce_flags & CE_REMOVE) | |
1210 | return 0; | |
1211 | ||
1212 | /* | |
1213 | * We check if the path is a sub-path of a subsequent pathname | |
1214 | * first, since removing those will not change the position | |
1215 | * in the array. | |
1216 | */ | |
1217 | retval = has_file_name(istate, ce, pos, ok_to_replace); | |
1218 | ||
1219 | /* | |
1220 | * Then check if the path might have a clashing sub-directory | |
1221 | * before it. | |
1222 | */ | |
1223 | return retval + has_dir_name(istate, ce, pos, ok_to_replace); | |
1224 | } | |
1225 | ||
1226 | static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option) | |
1227 | { | |
1228 | int pos; | |
1229 | int ok_to_add = option & ADD_CACHE_OK_TO_ADD; | |
1230 | int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE; | |
1231 | int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK; | |
1232 | int new_only = option & ADD_CACHE_NEW_ONLY; | |
1233 | ||
1234 | /* | |
1235 | * If this entry's path sorts after the last entry in the index, | |
1236 | * we can avoid searching for it. | |
1237 | */ | |
1238 | if (istate->cache_nr > 0 && | |
1239 | strcmp(ce->name, istate->cache[istate->cache_nr - 1]->name) > 0) | |
1240 | pos = index_pos_to_insert_pos(istate->cache_nr); | |
1241 | else | |
1242 | pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE); | |
1243 | ||
1244 | /* | |
1245 | * Cache tree path should be invalidated only after index_name_stage_pos, | |
1246 | * in case it expands a sparse index. | |
1247 | */ | |
1248 | if (!(option & ADD_CACHE_KEEP_CACHE_TREE)) | |
1249 | cache_tree_invalidate_path(istate, ce->name); | |
1250 | ||
1251 | /* existing match? Just replace it. */ | |
1252 | if (pos >= 0) { | |
1253 | if (!new_only) | |
1254 | replace_index_entry(istate, pos, ce); | |
1255 | return 0; | |
1256 | } | |
1257 | pos = -pos-1; | |
1258 | ||
1259 | if (!(option & ADD_CACHE_KEEP_CACHE_TREE)) | |
1260 | untracked_cache_add_to_index(istate, ce->name); | |
1261 | ||
1262 | /* | |
1263 | * Inserting a merged entry ("stage 0") into the index | |
1264 | * will always replace all non-merged entries.. | |
1265 | */ | |
1266 | if (pos < istate->cache_nr && ce_stage(ce) == 0) { | |
1267 | while (ce_same_name(istate->cache[pos], ce)) { | |
1268 | ok_to_add = 1; | |
1269 | if (!remove_index_entry_at(istate, pos)) | |
1270 | break; | |
1271 | } | |
1272 | } | |
1273 | ||
1274 | if (!ok_to_add) | |
1275 | return -1; | |
1276 | if (verify_path_internal(ce->name, ce->ce_mode) == PATH_INVALID) | |
1277 | return error(_("invalid path '%s'"), ce->name); | |
1278 | ||
1279 | if (!skip_df_check && | |
1280 | check_file_directory_conflict(istate, ce, pos, ok_to_replace)) { | |
1281 | if (!ok_to_replace) | |
1282 | return error(_("'%s' appears as both a file and as a directory"), | |
1283 | ce->name); | |
1284 | pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE); | |
1285 | pos = -pos-1; | |
1286 | } | |
1287 | return pos + 1; | |
1288 | } | |
1289 | ||
1290 | int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option) | |
1291 | { | |
1292 | int pos; | |
1293 | ||
1294 | if (option & ADD_CACHE_JUST_APPEND) | |
1295 | pos = istate->cache_nr; | |
1296 | else { | |
1297 | int ret; | |
1298 | ret = add_index_entry_with_check(istate, ce, option); | |
1299 | if (ret <= 0) | |
1300 | return ret; | |
1301 | pos = ret - 1; | |
1302 | } | |
1303 | ||
1304 | /* Make sure the array is big enough .. */ | |
1305 | ALLOC_GROW(istate->cache, istate->cache_nr + 1, istate->cache_alloc); | |
1306 | ||
1307 | /* Add it in.. */ | |
1308 | istate->cache_nr++; | |
1309 | if (istate->cache_nr > pos + 1) | |
1310 | MOVE_ARRAY(istate->cache + pos + 1, istate->cache + pos, | |
1311 | istate->cache_nr - pos - 1); | |
1312 | set_index_entry(istate, pos, ce); | |
1313 | istate->cache_changed |= CE_ENTRY_ADDED; | |
1314 | return 0; | |
1315 | } | |
1316 | ||
1317 | /* | |
1318 | * "refresh" does not calculate a new sha1 file or bring the | |
1319 | * cache up-to-date for mode/content changes. But what it | |
1320 | * _does_ do is to "re-match" the stat information of a file | |
1321 | * with the cache, so that you can refresh the cache for a | |
1322 | * file that hasn't been changed but where the stat entry is | |
1323 | * out of date. | |
1324 | * | |
1325 | * For example, you'd want to do this after doing a "git-read-tree", | |
1326 | * to link up the stat cache details with the proper files. | |
1327 | */ | |
1328 | static struct cache_entry *refresh_cache_ent(struct index_state *istate, | |
1329 | struct cache_entry *ce, | |
1330 | unsigned int options, int *err, | |
1331 | int *changed_ret, | |
1332 | int *t2_did_lstat, | |
1333 | int *t2_did_scan) | |
1334 | { | |
1335 | struct stat st; | |
1336 | struct cache_entry *updated; | |
1337 | int changed; | |
1338 | int refresh = options & CE_MATCH_REFRESH; | |
1339 | int ignore_valid = options & CE_MATCH_IGNORE_VALID; | |
1340 | int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; | |
1341 | int ignore_missing = options & CE_MATCH_IGNORE_MISSING; | |
1342 | int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR; | |
1343 | ||
1344 | if (!refresh || ce_uptodate(ce)) | |
1345 | return ce; | |
1346 | ||
1347 | if (!ignore_fsmonitor) | |
1348 | refresh_fsmonitor(istate); | |
1349 | /* | |
1350 | * CE_VALID or CE_SKIP_WORKTREE means the user promised us | |
1351 | * that the change to the work tree does not matter and told | |
1352 | * us not to worry. | |
1353 | */ | |
1354 | if (!ignore_skip_worktree && ce_skip_worktree(ce)) { | |
1355 | ce_mark_uptodate(ce); | |
1356 | return ce; | |
1357 | } | |
1358 | if (!ignore_valid && (ce->ce_flags & CE_VALID)) { | |
1359 | ce_mark_uptodate(ce); | |
1360 | return ce; | |
1361 | } | |
1362 | if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) { | |
1363 | ce_mark_uptodate(ce); | |
1364 | return ce; | |
1365 | } | |
1366 | ||
1367 | if (has_symlink_leading_path(ce->name, ce_namelen(ce))) { | |
1368 | if (ignore_missing) | |
1369 | return ce; | |
1370 | if (err) | |
1371 | *err = ENOENT; | |
1372 | return NULL; | |
1373 | } | |
1374 | ||
1375 | if (t2_did_lstat) | |
1376 | *t2_did_lstat = 1; | |
1377 | if (lstat(ce->name, &st) < 0) { | |
1378 | if (ignore_missing && errno == ENOENT) | |
1379 | return ce; | |
1380 | if (err) | |
1381 | *err = errno; | |
1382 | return NULL; | |
1383 | } | |
1384 | ||
1385 | changed = ie_match_stat(istate, ce, &st, options); | |
1386 | if (changed_ret) | |
1387 | *changed_ret = changed; | |
1388 | if (!changed) { | |
1389 | /* | |
1390 | * The path is unchanged. If we were told to ignore | |
1391 | * valid bit, then we did the actual stat check and | |
1392 | * found that the entry is unmodified. If the entry | |
1393 | * is not marked VALID, this is the place to mark it | |
1394 | * valid again, under "assume unchanged" mode. | |
1395 | */ | |
1396 | if (ignore_valid && assume_unchanged && | |
1397 | !(ce->ce_flags & CE_VALID)) | |
1398 | ; /* mark this one VALID again */ | |
1399 | else { | |
1400 | /* | |
1401 | * We do not mark the index itself "modified" | |
1402 | * because CE_UPTODATE flag is in-core only; | |
1403 | * we are not going to write this change out. | |
1404 | */ | |
1405 | if (!S_ISGITLINK(ce->ce_mode)) { | |
1406 | ce_mark_uptodate(ce); | |
1407 | mark_fsmonitor_valid(istate, ce); | |
1408 | } | |
1409 | return ce; | |
1410 | } | |
1411 | } | |
1412 | ||
1413 | if (t2_did_scan) | |
1414 | *t2_did_scan = 1; | |
1415 | if (ie_modified(istate, ce, &st, options)) { | |
1416 | if (err) | |
1417 | *err = EINVAL; | |
1418 | return NULL; | |
1419 | } | |
1420 | ||
1421 | updated = make_empty_cache_entry(istate, ce_namelen(ce)); | |
1422 | copy_cache_entry(updated, ce); | |
1423 | memcpy(updated->name, ce->name, ce->ce_namelen + 1); | |
1424 | fill_stat_cache_info(istate, updated, &st); | |
1425 | /* | |
1426 | * If ignore_valid is not set, we should leave CE_VALID bit | |
1427 | * alone. Otherwise, paths marked with --no-assume-unchanged | |
1428 | * (i.e. things to be edited) will reacquire CE_VALID bit | |
1429 | * automatically, which is not really what we want. | |
1430 | */ | |
1431 | if (!ignore_valid && assume_unchanged && | |
1432 | !(ce->ce_flags & CE_VALID)) | |
1433 | updated->ce_flags &= ~CE_VALID; | |
1434 | ||
1435 | /* istate->cache_changed is updated in the caller */ | |
1436 | return updated; | |
1437 | } | |
1438 | ||
1439 | static void show_file(const char * fmt, const char * name, int in_porcelain, | |
1440 | int * first, const char *header_msg) | |
1441 | { | |
1442 | if (in_porcelain && *first && header_msg) { | |
1443 | printf("%s\n", header_msg); | |
1444 | *first = 0; | |
1445 | } | |
1446 | printf(fmt, name); | |
1447 | } | |
1448 | ||
1449 | int repo_refresh_and_write_index(struct repository *repo, | |
1450 | unsigned int refresh_flags, | |
1451 | unsigned int write_flags, | |
1452 | int gentle, | |
1453 | const struct pathspec *pathspec, | |
1454 | char *seen, const char *header_msg) | |
1455 | { | |
1456 | struct lock_file lock_file = LOCK_INIT; | |
1457 | int fd, ret = 0; | |
1458 | ||
1459 | fd = repo_hold_locked_index(repo, &lock_file, 0); | |
1460 | if (!gentle && fd < 0) | |
1461 | return -1; | |
1462 | if (refresh_index(repo->index, refresh_flags, pathspec, seen, header_msg)) | |
1463 | ret = 1; | |
1464 | if (0 <= fd && write_locked_index(repo->index, &lock_file, COMMIT_LOCK | write_flags)) | |
1465 | ret = -1; | |
1466 | return ret; | |
1467 | } | |
1468 | ||
1469 | ||
1470 | int refresh_index(struct index_state *istate, unsigned int flags, | |
1471 | const struct pathspec *pathspec, | |
1472 | char *seen, const char *header_msg) | |
1473 | { | |
1474 | int i; | |
1475 | int has_errors = 0; | |
1476 | int really = (flags & REFRESH_REALLY) != 0; | |
1477 | int allow_unmerged = (flags & REFRESH_UNMERGED) != 0; | |
1478 | int quiet = (flags & REFRESH_QUIET) != 0; | |
1479 | int not_new = (flags & REFRESH_IGNORE_MISSING) != 0; | |
1480 | int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0; | |
1481 | int ignore_skip_worktree = (flags & REFRESH_IGNORE_SKIP_WORKTREE) != 0; | |
1482 | int first = 1; | |
1483 | int in_porcelain = (flags & REFRESH_IN_PORCELAIN); | |
1484 | unsigned int options = (CE_MATCH_REFRESH | | |
1485 | (really ? CE_MATCH_IGNORE_VALID : 0) | | |
1486 | (not_new ? CE_MATCH_IGNORE_MISSING : 0)); | |
1487 | const char *modified_fmt; | |
1488 | const char *deleted_fmt; | |
1489 | const char *typechange_fmt; | |
1490 | const char *added_fmt; | |
1491 | const char *unmerged_fmt; | |
1492 | struct progress *progress = NULL; | |
1493 | int t2_sum_lstat = 0; | |
1494 | int t2_sum_scan = 0; | |
1495 | ||
1496 | if (flags & REFRESH_PROGRESS && isatty(2)) | |
1497 | progress = start_delayed_progress(the_repository, | |
1498 | _("Refresh index"), | |
1499 | istate->cache_nr); | |
1500 | ||
1501 | trace_performance_enter(); | |
1502 | modified_fmt = in_porcelain ? "M\t%s\n" : "%s: needs update\n"; | |
1503 | deleted_fmt = in_porcelain ? "D\t%s\n" : "%s: needs update\n"; | |
1504 | typechange_fmt = in_porcelain ? "T\t%s\n" : "%s: needs update\n"; | |
1505 | added_fmt = in_porcelain ? "A\t%s\n" : "%s: needs update\n"; | |
1506 | unmerged_fmt = in_porcelain ? "U\t%s\n" : "%s: needs merge\n"; | |
1507 | /* | |
1508 | * Use the multi-threaded preload_index() to refresh most of the | |
1509 | * cache entries quickly then in the single threaded loop below, | |
1510 | * we only have to do the special cases that are left. | |
1511 | */ | |
1512 | preload_index(istate, pathspec, 0); | |
1513 | trace2_region_enter("index", "refresh", NULL); | |
1514 | ||
1515 | for (i = 0; i < istate->cache_nr; i++) { | |
1516 | struct cache_entry *ce, *new_entry; | |
1517 | int cache_errno = 0; | |
1518 | int changed = 0; | |
1519 | int filtered = 0; | |
1520 | int t2_did_lstat = 0; | |
1521 | int t2_did_scan = 0; | |
1522 | ||
1523 | ce = istate->cache[i]; | |
1524 | if (ignore_submodules && S_ISGITLINK(ce->ce_mode)) | |
1525 | continue; | |
1526 | if (ignore_skip_worktree && ce_skip_worktree(ce)) | |
1527 | continue; | |
1528 | ||
1529 | /* | |
1530 | * If this entry is a sparse directory, then there isn't | |
1531 | * any stat() information to update. Ignore the entry. | |
1532 | */ | |
1533 | if (S_ISSPARSEDIR(ce->ce_mode)) | |
1534 | continue; | |
1535 | ||
1536 | if (pathspec && !ce_path_match(istate, ce, pathspec, seen)) | |
1537 | filtered = 1; | |
1538 | ||
1539 | if (ce_stage(ce)) { | |
1540 | while ((i < istate->cache_nr) && | |
1541 | ! strcmp(istate->cache[i]->name, ce->name)) | |
1542 | i++; | |
1543 | i--; | |
1544 | if (allow_unmerged) | |
1545 | continue; | |
1546 | if (!filtered) | |
1547 | show_file(unmerged_fmt, ce->name, in_porcelain, | |
1548 | &first, header_msg); | |
1549 | has_errors = 1; | |
1550 | continue; | |
1551 | } | |
1552 | ||
1553 | if (filtered) | |
1554 | continue; | |
1555 | ||
1556 | new_entry = refresh_cache_ent(istate, ce, options, | |
1557 | &cache_errno, &changed, | |
1558 | &t2_did_lstat, &t2_did_scan); | |
1559 | t2_sum_lstat += t2_did_lstat; | |
1560 | t2_sum_scan += t2_did_scan; | |
1561 | if (new_entry == ce) | |
1562 | continue; | |
1563 | display_progress(progress, i); | |
1564 | if (!new_entry) { | |
1565 | const char *fmt; | |
1566 | ||
1567 | if (really && cache_errno == EINVAL) { | |
1568 | /* If we are doing --really-refresh that | |
1569 | * means the index is not valid anymore. | |
1570 | */ | |
1571 | ce->ce_flags &= ~CE_VALID; | |
1572 | ce->ce_flags |= CE_UPDATE_IN_BASE; | |
1573 | mark_fsmonitor_invalid(istate, ce); | |
1574 | istate->cache_changed |= CE_ENTRY_CHANGED; | |
1575 | } | |
1576 | if (quiet) | |
1577 | continue; | |
1578 | ||
1579 | if (cache_errno == ENOENT) | |
1580 | fmt = deleted_fmt; | |
1581 | else if (ce_intent_to_add(ce)) | |
1582 | fmt = added_fmt; /* must be before other checks */ | |
1583 | else if (changed & TYPE_CHANGED) | |
1584 | fmt = typechange_fmt; | |
1585 | else | |
1586 | fmt = modified_fmt; | |
1587 | show_file(fmt, | |
1588 | ce->name, in_porcelain, &first, header_msg); | |
1589 | has_errors = 1; | |
1590 | continue; | |
1591 | } | |
1592 | ||
1593 | replace_index_entry(istate, i, new_entry); | |
1594 | } | |
1595 | trace2_data_intmax("index", NULL, "refresh/sum_lstat", t2_sum_lstat); | |
1596 | trace2_data_intmax("index", NULL, "refresh/sum_scan", t2_sum_scan); | |
1597 | trace2_region_leave("index", "refresh", NULL); | |
1598 | display_progress(progress, istate->cache_nr); | |
1599 | stop_progress(&progress); | |
1600 | trace_performance_leave("refresh index"); | |
1601 | return has_errors; | |
1602 | } | |
1603 | ||
1604 | struct cache_entry *refresh_cache_entry(struct index_state *istate, | |
1605 | struct cache_entry *ce, | |
1606 | unsigned int options) | |
1607 | { | |
1608 | return refresh_cache_ent(istate, ce, options, NULL, NULL, NULL, NULL); | |
1609 | } | |
1610 | ||
1611 | ||
1612 | /***************************************************************** | |
1613 | * Index File I/O | |
1614 | *****************************************************************/ | |
1615 | ||
1616 | #define INDEX_FORMAT_DEFAULT 3 | |
1617 | ||
1618 | static unsigned int get_index_format_default(struct repository *r) | |
1619 | { | |
1620 | char *envversion = getenv("GIT_INDEX_VERSION"); | |
1621 | char *endp; | |
1622 | unsigned int version = INDEX_FORMAT_DEFAULT; | |
1623 | ||
1624 | if (!envversion) { | |
1625 | prepare_repo_settings(r); | |
1626 | ||
1627 | if (r->settings.index_version >= 0) | |
1628 | version = r->settings.index_version; | |
1629 | if (version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) { | |
1630 | warning(_("index.version set, but the value is invalid.\n" | |
1631 | "Using version %i"), INDEX_FORMAT_DEFAULT); | |
1632 | return INDEX_FORMAT_DEFAULT; | |
1633 | } | |
1634 | return version; | |
1635 | } | |
1636 | ||
1637 | version = strtoul(envversion, &endp, 10); | |
1638 | if (*endp || | |
1639 | version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) { | |
1640 | warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n" | |
1641 | "Using version %i"), INDEX_FORMAT_DEFAULT); | |
1642 | version = INDEX_FORMAT_DEFAULT; | |
1643 | } | |
1644 | return version; | |
1645 | } | |
1646 | ||
1647 | /* | |
1648 | * dev/ino/uid/gid/size are also just tracked to the low 32 bits | |
1649 | * Again - this is just a (very strong in practice) heuristic that | |
1650 | * the inode hasn't changed. | |
1651 | * | |
1652 | * We save the fields in big-endian order to allow using the | |
1653 | * index file over NFS transparently. | |
1654 | */ | |
1655 | struct ondisk_cache_entry { | |
1656 | struct cache_time ctime; | |
1657 | struct cache_time mtime; | |
1658 | uint32_t dev; | |
1659 | uint32_t ino; | |
1660 | uint32_t mode; | |
1661 | uint32_t uid; | |
1662 | uint32_t gid; | |
1663 | uint32_t size; | |
1664 | /* | |
1665 | * unsigned char hash[hashsz]; | |
1666 | * uint16_t flags; | |
1667 | * if (flags & CE_EXTENDED) | |
1668 | * uint16_t flags2; | |
1669 | */ | |
1670 | unsigned char data[GIT_MAX_RAWSZ + 2 * sizeof(uint16_t)]; | |
1671 | char name[FLEX_ARRAY]; | |
1672 | }; | |
1673 | ||
1674 | /* These are only used for v3 or lower */ | |
1675 | #define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len) | |
1676 | #define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,data) + (len) + 8) & ~7) | |
1677 | #define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len) | |
1678 | #define ondisk_data_size(flags, len) (the_hash_algo->rawsz + \ | |
1679 | ((flags & CE_EXTENDED) ? 2 : 1) * sizeof(uint16_t) + len) | |
1680 | #define ondisk_data_size_max(len) (ondisk_data_size(CE_EXTENDED, len)) | |
1681 | #define ondisk_ce_size(ce) (ondisk_cache_entry_size(ondisk_data_size((ce)->ce_flags, ce_namelen(ce)))) | |
1682 | ||
1683 | /* Allow fsck to force verification of the index checksum. */ | |
1684 | int verify_index_checksum; | |
1685 | ||
1686 | /* Allow fsck to force verification of the cache entry order. */ | |
1687 | int verify_ce_order; | |
1688 | ||
1689 | static int verify_hdr(const struct cache_header *hdr, unsigned long size) | |
1690 | { | |
1691 | struct git_hash_ctx c; | |
1692 | unsigned char hash[GIT_MAX_RAWSZ]; | |
1693 | int hdr_version; | |
1694 | unsigned char *start, *end; | |
1695 | struct object_id oid; | |
1696 | ||
1697 | if (hdr->hdr_signature != htonl(CACHE_SIGNATURE)) | |
1698 | return error(_("bad signature 0x%08x"), hdr->hdr_signature); | |
1699 | hdr_version = ntohl(hdr->hdr_version); | |
1700 | if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version) | |
1701 | return error(_("bad index version %d"), hdr_version); | |
1702 | ||
1703 | if (!verify_index_checksum) | |
1704 | return 0; | |
1705 | ||
1706 | end = (unsigned char *)hdr + size; | |
1707 | start = end - the_hash_algo->rawsz; | |
1708 | oidread(&oid, start, the_repository->hash_algo); | |
1709 | if (oideq(&oid, null_oid(the_hash_algo))) | |
1710 | return 0; | |
1711 | ||
1712 | the_hash_algo->init_fn(&c); | |
1713 | git_hash_update(&c, hdr, size - the_hash_algo->rawsz); | |
1714 | git_hash_final(hash, &c); | |
1715 | if (!hasheq(hash, start, the_repository->hash_algo)) | |
1716 | return error(_("bad index file sha1 signature")); | |
1717 | return 0; | |
1718 | } | |
1719 | ||
1720 | static int read_index_extension(struct index_state *istate, | |
1721 | const char *ext, const char *data, unsigned long sz) | |
1722 | { | |
1723 | switch (CACHE_EXT(ext)) { | |
1724 | case CACHE_EXT_TREE: | |
1725 | istate->cache_tree = cache_tree_read(data, sz); | |
1726 | break; | |
1727 | case CACHE_EXT_RESOLVE_UNDO: | |
1728 | istate->resolve_undo = resolve_undo_read(data, sz, the_hash_algo); | |
1729 | break; | |
1730 | case CACHE_EXT_LINK: | |
1731 | if (read_link_extension(istate, data, sz)) | |
1732 | return -1; | |
1733 | break; | |
1734 | case CACHE_EXT_UNTRACKED: | |
1735 | istate->untracked = read_untracked_extension(data, sz); | |
1736 | break; | |
1737 | case CACHE_EXT_FSMONITOR: | |
1738 | read_fsmonitor_extension(istate, data, sz); | |
1739 | break; | |
1740 | case CACHE_EXT_ENDOFINDEXENTRIES: | |
1741 | case CACHE_EXT_INDEXENTRYOFFSETTABLE: | |
1742 | /* already handled in do_read_index() */ | |
1743 | break; | |
1744 | case CACHE_EXT_SPARSE_DIRECTORIES: | |
1745 | /* no content, only an indicator */ | |
1746 | istate->sparse_index = INDEX_COLLAPSED; | |
1747 | break; | |
1748 | default: | |
1749 | if (*ext < 'A' || 'Z' < *ext) | |
1750 | return error(_("index uses %.4s extension, which we do not understand"), | |
1751 | ext); | |
1752 | fprintf_ln(stderr, _("ignoring %.4s extension"), ext); | |
1753 | break; | |
1754 | } | |
1755 | return 0; | |
1756 | } | |
1757 | ||
1758 | /* | |
1759 | * Parses the contents of the cache entry contained within the 'ondisk' buffer | |
1760 | * into a new incore 'cache_entry'. | |
1761 | * | |
1762 | * Note that 'char *ondisk' may not be aligned to a 4-byte address interval in | |
1763 | * index v4, so we cannot cast it to 'struct ondisk_cache_entry *' and access | |
1764 | * its members. Instead, we use the byte offsets of members within the struct to | |
1765 | * identify where 'get_be16()', 'get_be32()', and 'oidread()' (which can all | |
1766 | * read from an unaligned memory buffer) should read from the 'ondisk' buffer | |
1767 | * into the corresponding incore 'cache_entry' members. | |
1768 | */ | |
1769 | static struct cache_entry *create_from_disk(struct mem_pool *ce_mem_pool, | |
1770 | unsigned int version, | |
1771 | const char *ondisk, | |
1772 | unsigned long *ent_size, | |
1773 | const struct cache_entry *previous_ce) | |
1774 | { | |
1775 | struct cache_entry *ce; | |
1776 | size_t len; | |
1777 | const char *name; | |
1778 | const unsigned hashsz = the_hash_algo->rawsz; | |
1779 | const char *flagsp = ondisk + offsetof(struct ondisk_cache_entry, data) + hashsz; | |
1780 | unsigned int flags; | |
1781 | size_t copy_len = 0; | |
1782 | /* | |
1783 | * Adjacent cache entries tend to share the leading paths, so it makes | |
1784 | * sense to only store the differences in later entries. In the v4 | |
1785 | * on-disk format of the index, each on-disk cache entry stores the | |
1786 | * number of bytes to be stripped from the end of the previous name, | |
1787 | * and the bytes to append to the result, to come up with its name. | |
1788 | */ | |
1789 | int expand_name_field = version == 4; | |
1790 | ||
1791 | /* On-disk flags are just 16 bits */ | |
1792 | flags = get_be16(flagsp); | |
1793 | len = flags & CE_NAMEMASK; | |
1794 | ||
1795 | if (flags & CE_EXTENDED) { | |
1796 | int extended_flags; | |
1797 | extended_flags = get_be16(flagsp + sizeof(uint16_t)) << 16; | |
1798 | /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */ | |
1799 | if (extended_flags & ~CE_EXTENDED_FLAGS) | |
1800 | die(_("unknown index entry format 0x%08x"), extended_flags); | |
1801 | flags |= extended_flags; | |
1802 | name = (const char *)(flagsp + 2 * sizeof(uint16_t)); | |
1803 | } | |
1804 | else | |
1805 | name = (const char *)(flagsp + sizeof(uint16_t)); | |
1806 | ||
1807 | if (expand_name_field) { | |
1808 | const unsigned char *cp = (const unsigned char *)name; | |
1809 | size_t strip_len, previous_len; | |
1810 | ||
1811 | /* If we're at the beginning of a block, ignore the previous name */ | |
1812 | strip_len = decode_varint(&cp); | |
1813 | if (previous_ce) { | |
1814 | previous_len = previous_ce->ce_namelen; | |
1815 | if (previous_len < strip_len) | |
1816 | die(_("malformed name field in the index, near path '%s'"), | |
1817 | previous_ce->name); | |
1818 | copy_len = previous_len - strip_len; | |
1819 | } | |
1820 | name = (const char *)cp; | |
1821 | } | |
1822 | ||
1823 | if (len == CE_NAMEMASK) { | |
1824 | len = strlen(name); | |
1825 | if (expand_name_field) | |
1826 | len += copy_len; | |
1827 | } | |
1828 | ||
1829 | ce = mem_pool__ce_alloc(ce_mem_pool, len); | |
1830 | ||
1831 | /* | |
1832 | * NEEDSWORK: using 'offsetof()' is cumbersome and should be replaced | |
1833 | * with something more akin to 'load_bitmap_entries_v1()'s use of | |
1834 | * 'read_be16'/'read_be32'. For consistency with the corresponding | |
1835 | * ondisk entry write function ('copy_cache_entry_to_ondisk()'), this | |
1836 | * should be done at the same time as removing references to | |
1837 | * 'ondisk_cache_entry' there. | |
1838 | */ | |
1839 | ce->ce_stat_data.sd_ctime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime) | |
1840 | + offsetof(struct cache_time, sec)); | |
1841 | ce->ce_stat_data.sd_mtime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime) | |
1842 | + offsetof(struct cache_time, sec)); | |
1843 | ce->ce_stat_data.sd_ctime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime) | |
1844 | + offsetof(struct cache_time, nsec)); | |
1845 | ce->ce_stat_data.sd_mtime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime) | |
1846 | + offsetof(struct cache_time, nsec)); | |
1847 | ce->ce_stat_data.sd_dev = get_be32(ondisk + offsetof(struct ondisk_cache_entry, dev)); | |
1848 | ce->ce_stat_data.sd_ino = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ino)); | |
1849 | ce->ce_mode = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mode)); | |
1850 | ce->ce_stat_data.sd_uid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, uid)); | |
1851 | ce->ce_stat_data.sd_gid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, gid)); | |
1852 | ce->ce_stat_data.sd_size = get_be32(ondisk + offsetof(struct ondisk_cache_entry, size)); | |
1853 | ce->ce_flags = flags & ~CE_NAMEMASK; | |
1854 | ce->ce_namelen = len; | |
1855 | ce->index = 0; | |
1856 | oidread(&ce->oid, (const unsigned char *)ondisk + offsetof(struct ondisk_cache_entry, data), | |
1857 | the_repository->hash_algo); | |
1858 | ||
1859 | if (expand_name_field) { | |
1860 | if (copy_len) | |
1861 | memcpy(ce->name, previous_ce->name, copy_len); | |
1862 | memcpy(ce->name + copy_len, name, len + 1 - copy_len); | |
1863 | *ent_size = (name - ((char *)ondisk)) + len + 1 - copy_len; | |
1864 | } else { | |
1865 | memcpy(ce->name, name, len + 1); | |
1866 | *ent_size = ondisk_ce_size(ce); | |
1867 | } | |
1868 | return ce; | |
1869 | } | |
1870 | ||
1871 | static void check_ce_order(struct index_state *istate) | |
1872 | { | |
1873 | unsigned int i; | |
1874 | ||
1875 | if (!verify_ce_order) | |
1876 | return; | |
1877 | ||
1878 | for (i = 1; i < istate->cache_nr; i++) { | |
1879 | struct cache_entry *ce = istate->cache[i - 1]; | |
1880 | struct cache_entry *next_ce = istate->cache[i]; | |
1881 | int name_compare = strcmp(ce->name, next_ce->name); | |
1882 | ||
1883 | if (0 < name_compare) | |
1884 | die(_("unordered stage entries in index")); | |
1885 | if (!name_compare) { | |
1886 | if (!ce_stage(ce)) | |
1887 | die(_("multiple stage entries for merged file '%s'"), | |
1888 | ce->name); | |
1889 | if (ce_stage(ce) > ce_stage(next_ce)) | |
1890 | die(_("unordered stage entries for '%s'"), | |
1891 | ce->name); | |
1892 | } | |
1893 | } | |
1894 | } | |
1895 | ||
1896 | static void tweak_untracked_cache(struct index_state *istate) | |
1897 | { | |
1898 | struct repository *r = the_repository; | |
1899 | ||
1900 | prepare_repo_settings(r); | |
1901 | ||
1902 | switch (r->settings.core_untracked_cache) { | |
1903 | case UNTRACKED_CACHE_REMOVE: | |
1904 | remove_untracked_cache(istate); | |
1905 | break; | |
1906 | case UNTRACKED_CACHE_WRITE: | |
1907 | add_untracked_cache(istate); | |
1908 | break; | |
1909 | case UNTRACKED_CACHE_KEEP: | |
1910 | /* | |
1911 | * Either an explicit "core.untrackedCache=keep", the | |
1912 | * default if "core.untrackedCache" isn't configured, | |
1913 | * or a fallback on an unknown "core.untrackedCache" | |
1914 | * value. | |
1915 | */ | |
1916 | break; | |
1917 | } | |
1918 | } | |
1919 | ||
1920 | static void tweak_split_index(struct index_state *istate) | |
1921 | { | |
1922 | switch (repo_config_get_split_index(the_repository)) { | |
1923 | case -1: /* unset: do nothing */ | |
1924 | break; | |
1925 | case 0: /* false */ | |
1926 | remove_split_index(istate); | |
1927 | break; | |
1928 | case 1: /* true */ | |
1929 | add_split_index(istate); | |
1930 | break; | |
1931 | default: /* unknown value: do nothing */ | |
1932 | break; | |
1933 | } | |
1934 | } | |
1935 | ||
1936 | static void post_read_index_from(struct index_state *istate) | |
1937 | { | |
1938 | check_ce_order(istate); | |
1939 | tweak_untracked_cache(istate); | |
1940 | tweak_split_index(istate); | |
1941 | tweak_fsmonitor(istate); | |
1942 | } | |
1943 | ||
1944 | static size_t estimate_cache_size_from_compressed(unsigned int entries) | |
1945 | { | |
1946 | return entries * (sizeof(struct cache_entry) + CACHE_ENTRY_PATH_LENGTH); | |
1947 | } | |
1948 | ||
1949 | static size_t estimate_cache_size(size_t ondisk_size, unsigned int entries) | |
1950 | { | |
1951 | long per_entry = sizeof(struct cache_entry) - sizeof(struct ondisk_cache_entry); | |
1952 | ||
1953 | /* | |
1954 | * Account for potential alignment differences. | |
1955 | */ | |
1956 | per_entry += align_padding_size(per_entry, 0); | |
1957 | return ondisk_size + entries * per_entry; | |
1958 | } | |
1959 | ||
1960 | struct index_entry_offset | |
1961 | { | |
1962 | /* starting byte offset into index file, count of index entries in this block */ | |
1963 | int offset, nr; | |
1964 | }; | |
1965 | ||
1966 | struct index_entry_offset_table | |
1967 | { | |
1968 | int nr; | |
1969 | struct index_entry_offset entries[FLEX_ARRAY]; | |
1970 | }; | |
1971 | ||
1972 | static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset); | |
1973 | static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot); | |
1974 | ||
1975 | static size_t read_eoie_extension(const char *mmap, size_t mmap_size); | |
1976 | static void write_eoie_extension(struct strbuf *sb, struct git_hash_ctx *eoie_context, size_t offset); | |
1977 | ||
1978 | struct load_index_extensions | |
1979 | { | |
1980 | pthread_t pthread; | |
1981 | struct index_state *istate; | |
1982 | const char *mmap; | |
1983 | size_t mmap_size; | |
1984 | unsigned long src_offset; | |
1985 | }; | |
1986 | ||
1987 | static void *load_index_extensions(void *_data) | |
1988 | { | |
1989 | struct load_index_extensions *p = _data; | |
1990 | unsigned long src_offset = p->src_offset; | |
1991 | ||
1992 | while (src_offset <= p->mmap_size - the_hash_algo->rawsz - 8) { | |
1993 | /* After an array of active_nr index entries, | |
1994 | * there can be arbitrary number of extended | |
1995 | * sections, each of which is prefixed with | |
1996 | * extension name (4-byte) and section length | |
1997 | * in 4-byte network byte order. | |
1998 | */ | |
1999 | uint32_t extsize = get_be32(p->mmap + src_offset + 4); | |
2000 | if (read_index_extension(p->istate, | |
2001 | p->mmap + src_offset, | |
2002 | p->mmap + src_offset + 8, | |
2003 | extsize) < 0) { | |
2004 | munmap((void *)p->mmap, p->mmap_size); | |
2005 | die(_("index file corrupt")); | |
2006 | } | |
2007 | src_offset += 8; | |
2008 | src_offset += extsize; | |
2009 | } | |
2010 | ||
2011 | return NULL; | |
2012 | } | |
2013 | ||
2014 | /* | |
2015 | * A helper function that will load the specified range of cache entries | |
2016 | * from the memory mapped file and add them to the given index. | |
2017 | */ | |
2018 | static unsigned long load_cache_entry_block(struct index_state *istate, | |
2019 | struct mem_pool *ce_mem_pool, int offset, int nr, const char *mmap, | |
2020 | unsigned long start_offset, const struct cache_entry *previous_ce) | |
2021 | { | |
2022 | int i; | |
2023 | unsigned long src_offset = start_offset; | |
2024 | ||
2025 | for (i = offset; i < offset + nr; i++) { | |
2026 | struct cache_entry *ce; | |
2027 | unsigned long consumed; | |
2028 | ||
2029 | ce = create_from_disk(ce_mem_pool, istate->version, | |
2030 | mmap + src_offset, | |
2031 | &consumed, previous_ce); | |
2032 | set_index_entry(istate, i, ce); | |
2033 | ||
2034 | src_offset += consumed; | |
2035 | previous_ce = ce; | |
2036 | } | |
2037 | return src_offset - start_offset; | |
2038 | } | |
2039 | ||
2040 | static unsigned long load_all_cache_entries(struct index_state *istate, | |
2041 | const char *mmap, size_t mmap_size, unsigned long src_offset) | |
2042 | { | |
2043 | unsigned long consumed; | |
2044 | ||
2045 | istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool)); | |
2046 | if (istate->version == 4) { | |
2047 | mem_pool_init(istate->ce_mem_pool, | |
2048 | estimate_cache_size_from_compressed(istate->cache_nr)); | |
2049 | } else { | |
2050 | mem_pool_init(istate->ce_mem_pool, | |
2051 | estimate_cache_size(mmap_size, istate->cache_nr)); | |
2052 | } | |
2053 | ||
2054 | consumed = load_cache_entry_block(istate, istate->ce_mem_pool, | |
2055 | 0, istate->cache_nr, mmap, src_offset, NULL); | |
2056 | return consumed; | |
2057 | } | |
2058 | ||
2059 | /* | |
2060 | * Mostly randomly chosen maximum thread counts: we | |
2061 | * cap the parallelism to online_cpus() threads, and we want | |
2062 | * to have at least 10000 cache entries per thread for it to | |
2063 | * be worth starting a thread. | |
2064 | */ | |
2065 | ||
2066 | #define THREAD_COST (10000) | |
2067 | ||
2068 | struct load_cache_entries_thread_data | |
2069 | { | |
2070 | pthread_t pthread; | |
2071 | struct index_state *istate; | |
2072 | struct mem_pool *ce_mem_pool; | |
2073 | int offset; | |
2074 | const char *mmap; | |
2075 | struct index_entry_offset_table *ieot; | |
2076 | int ieot_start; /* starting index into the ieot array */ | |
2077 | int ieot_blocks; /* count of ieot entries to process */ | |
2078 | unsigned long consumed; /* return # of bytes in index file processed */ | |
2079 | }; | |
2080 | ||
2081 | /* | |
2082 | * A thread proc to run the load_cache_entries() computation | |
2083 | * across multiple background threads. | |
2084 | */ | |
2085 | static void *load_cache_entries_thread(void *_data) | |
2086 | { | |
2087 | struct load_cache_entries_thread_data *p = _data; | |
2088 | int i; | |
2089 | ||
2090 | /* iterate across all ieot blocks assigned to this thread */ | |
2091 | for (i = p->ieot_start; i < p->ieot_start + p->ieot_blocks; i++) { | |
2092 | p->consumed += load_cache_entry_block(p->istate, p->ce_mem_pool, | |
2093 | p->offset, p->ieot->entries[i].nr, p->mmap, p->ieot->entries[i].offset, NULL); | |
2094 | p->offset += p->ieot->entries[i].nr; | |
2095 | } | |
2096 | return NULL; | |
2097 | } | |
2098 | ||
2099 | static unsigned long load_cache_entries_threaded(struct index_state *istate, const char *mmap, size_t mmap_size, | |
2100 | int nr_threads, struct index_entry_offset_table *ieot) | |
2101 | { | |
2102 | int i, offset, ieot_blocks, ieot_start, err; | |
2103 | struct load_cache_entries_thread_data *data; | |
2104 | unsigned long consumed = 0; | |
2105 | ||
2106 | /* a little sanity checking */ | |
2107 | if (istate->name_hash_initialized) | |
2108 | BUG("the name hash isn't thread safe"); | |
2109 | ||
2110 | istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool)); | |
2111 | mem_pool_init(istate->ce_mem_pool, 0); | |
2112 | ||
2113 | /* ensure we have no more threads than we have blocks to process */ | |
2114 | if (nr_threads > ieot->nr) | |
2115 | nr_threads = ieot->nr; | |
2116 | CALLOC_ARRAY(data, nr_threads); | |
2117 | ||
2118 | offset = ieot_start = 0; | |
2119 | ieot_blocks = DIV_ROUND_UP(ieot->nr, nr_threads); | |
2120 | for (i = 0; i < nr_threads; i++) { | |
2121 | struct load_cache_entries_thread_data *p = &data[i]; | |
2122 | int nr, j; | |
2123 | ||
2124 | if (ieot_start + ieot_blocks > ieot->nr) | |
2125 | ieot_blocks = ieot->nr - ieot_start; | |
2126 | ||
2127 | p->istate = istate; | |
2128 | p->offset = offset; | |
2129 | p->mmap = mmap; | |
2130 | p->ieot = ieot; | |
2131 | p->ieot_start = ieot_start; | |
2132 | p->ieot_blocks = ieot_blocks; | |
2133 | ||
2134 | /* create a mem_pool for each thread */ | |
2135 | nr = 0; | |
2136 | for (j = p->ieot_start; j < p->ieot_start + p->ieot_blocks; j++) | |
2137 | nr += p->ieot->entries[j].nr; | |
2138 | p->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool)); | |
2139 | if (istate->version == 4) { | |
2140 | mem_pool_init(p->ce_mem_pool, | |
2141 | estimate_cache_size_from_compressed(nr)); | |
2142 | } else { | |
2143 | mem_pool_init(p->ce_mem_pool, | |
2144 | estimate_cache_size(mmap_size, nr)); | |
2145 | } | |
2146 | ||
2147 | err = pthread_create(&p->pthread, NULL, load_cache_entries_thread, p); | |
2148 | if (err) | |
2149 | die(_("unable to create load_cache_entries thread: %s"), strerror(err)); | |
2150 | ||
2151 | /* increment by the number of cache entries in the ieot block being processed */ | |
2152 | for (j = 0; j < ieot_blocks; j++) | |
2153 | offset += ieot->entries[ieot_start + j].nr; | |
2154 | ieot_start += ieot_blocks; | |
2155 | } | |
2156 | ||
2157 | for (i = 0; i < nr_threads; i++) { | |
2158 | struct load_cache_entries_thread_data *p = &data[i]; | |
2159 | ||
2160 | err = pthread_join(p->pthread, NULL); | |
2161 | if (err) | |
2162 | die(_("unable to join load_cache_entries thread: %s"), strerror(err)); | |
2163 | mem_pool_combine(istate->ce_mem_pool, p->ce_mem_pool); | |
2164 | free(p->ce_mem_pool); | |
2165 | consumed += p->consumed; | |
2166 | } | |
2167 | ||
2168 | free(data); | |
2169 | ||
2170 | return consumed; | |
2171 | } | |
2172 | ||
2173 | static void set_new_index_sparsity(struct index_state *istate) | |
2174 | { | |
2175 | /* | |
2176 | * If the index's repo exists, mark it sparse according to | |
2177 | * repo settings. | |
2178 | */ | |
2179 | prepare_repo_settings(istate->repo); | |
2180 | if (!istate->repo->settings.command_requires_full_index && | |
2181 | is_sparse_index_allowed(istate, 0)) | |
2182 | istate->sparse_index = 1; | |
2183 | } | |
2184 | ||
2185 | /* remember to discard_cache() before reading a different cache! */ | |
2186 | int do_read_index(struct index_state *istate, const char *path, int must_exist) | |
2187 | { | |
2188 | int fd; | |
2189 | struct stat st; | |
2190 | unsigned long src_offset; | |
2191 | const struct cache_header *hdr; | |
2192 | const char *mmap; | |
2193 | size_t mmap_size; | |
2194 | struct load_index_extensions p; | |
2195 | size_t extension_offset = 0; | |
2196 | int nr_threads, cpus; | |
2197 | struct index_entry_offset_table *ieot = NULL; | |
2198 | ||
2199 | if (istate->initialized) | |
2200 | return istate->cache_nr; | |
2201 | ||
2202 | istate->timestamp.sec = 0; | |
2203 | istate->timestamp.nsec = 0; | |
2204 | fd = open(path, O_RDONLY); | |
2205 | if (fd < 0) { | |
2206 | if (!must_exist && errno == ENOENT) { | |
2207 | set_new_index_sparsity(istate); | |
2208 | istate->initialized = 1; | |
2209 | return 0; | |
2210 | } | |
2211 | die_errno(_("%s: index file open failed"), path); | |
2212 | } | |
2213 | ||
2214 | if (fstat(fd, &st)) | |
2215 | die_errno(_("%s: cannot stat the open index"), path); | |
2216 | ||
2217 | mmap_size = xsize_t(st.st_size); | |
2218 | if (mmap_size < sizeof(struct cache_header) + the_hash_algo->rawsz) | |
2219 | die(_("%s: index file smaller than expected"), path); | |
2220 | ||
2221 | mmap = xmmap_gently(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0); | |
2222 | if (mmap == MAP_FAILED) | |
2223 | die_errno(_("%s: unable to map index file%s"), path, | |
2224 | mmap_os_err()); | |
2225 | close(fd); | |
2226 | ||
2227 | hdr = (const struct cache_header *)mmap; | |
2228 | if (verify_hdr(hdr, mmap_size) < 0) | |
2229 | goto unmap; | |
2230 | ||
2231 | oidread(&istate->oid, (const unsigned char *)hdr + mmap_size - the_hash_algo->rawsz, | |
2232 | the_repository->hash_algo); | |
2233 | istate->version = ntohl(hdr->hdr_version); | |
2234 | istate->cache_nr = ntohl(hdr->hdr_entries); | |
2235 | istate->cache_alloc = alloc_nr(istate->cache_nr); | |
2236 | CALLOC_ARRAY(istate->cache, istate->cache_alloc); | |
2237 | istate->initialized = 1; | |
2238 | ||
2239 | p.istate = istate; | |
2240 | p.mmap = mmap; | |
2241 | p.mmap_size = mmap_size; | |
2242 | ||
2243 | src_offset = sizeof(*hdr); | |
2244 | ||
2245 | if (repo_config_get_index_threads(the_repository, &nr_threads)) | |
2246 | nr_threads = 1; | |
2247 | ||
2248 | /* TODO: does creating more threads than cores help? */ | |
2249 | if (!nr_threads) { | |
2250 | nr_threads = istate->cache_nr / THREAD_COST; | |
2251 | cpus = online_cpus(); | |
2252 | if (nr_threads > cpus) | |
2253 | nr_threads = cpus; | |
2254 | } | |
2255 | ||
2256 | if (!HAVE_THREADS) | |
2257 | nr_threads = 1; | |
2258 | ||
2259 | if (nr_threads > 1) { | |
2260 | extension_offset = read_eoie_extension(mmap, mmap_size); | |
2261 | if (extension_offset) { | |
2262 | int err; | |
2263 | ||
2264 | p.src_offset = extension_offset; | |
2265 | err = pthread_create(&p.pthread, NULL, load_index_extensions, &p); | |
2266 | if (err) | |
2267 | die(_("unable to create load_index_extensions thread: %s"), strerror(err)); | |
2268 | ||
2269 | nr_threads--; | |
2270 | } | |
2271 | } | |
2272 | ||
2273 | /* | |
2274 | * Locate and read the index entry offset table so that we can use it | |
2275 | * to multi-thread the reading of the cache entries. | |
2276 | */ | |
2277 | if (extension_offset && nr_threads > 1) | |
2278 | ieot = read_ieot_extension(mmap, mmap_size, extension_offset); | |
2279 | ||
2280 | if (ieot) { | |
2281 | src_offset += load_cache_entries_threaded(istate, mmap, mmap_size, nr_threads, ieot); | |
2282 | free(ieot); | |
2283 | } else { | |
2284 | src_offset += load_all_cache_entries(istate, mmap, mmap_size, src_offset); | |
2285 | } | |
2286 | ||
2287 | istate->timestamp.sec = st.st_mtime; | |
2288 | istate->timestamp.nsec = ST_MTIME_NSEC(st); | |
2289 | ||
2290 | /* if we created a thread, join it otherwise load the extensions on the primary thread */ | |
2291 | if (extension_offset) { | |
2292 | int ret = pthread_join(p.pthread, NULL); | |
2293 | if (ret) | |
2294 | die(_("unable to join load_index_extensions thread: %s"), strerror(ret)); | |
2295 | } else { | |
2296 | p.src_offset = src_offset; | |
2297 | load_index_extensions(&p); | |
2298 | } | |
2299 | munmap((void *)mmap, mmap_size); | |
2300 | ||
2301 | /* | |
2302 | * TODO trace2: replace "the_repository" with the actual repo instance | |
2303 | * that is associated with the given "istate". | |
2304 | */ | |
2305 | trace2_data_intmax("index", the_repository, "read/version", | |
2306 | istate->version); | |
2307 | trace2_data_intmax("index", the_repository, "read/cache_nr", | |
2308 | istate->cache_nr); | |
2309 | ||
2310 | /* | |
2311 | * If the command explicitly requires a full index, force it | |
2312 | * to be full. Otherwise, correct the sparsity based on repository | |
2313 | * settings and other properties of the index (if necessary). | |
2314 | */ | |
2315 | prepare_repo_settings(istate->repo); | |
2316 | if (istate->repo->settings.command_requires_full_index) | |
2317 | ensure_full_index(istate); | |
2318 | else | |
2319 | ensure_correct_sparsity(istate); | |
2320 | ||
2321 | return istate->cache_nr; | |
2322 | ||
2323 | unmap: | |
2324 | munmap((void *)mmap, mmap_size); | |
2325 | die(_("index file corrupt")); | |
2326 | } | |
2327 | ||
2328 | /* | |
2329 | * Signal that the shared index is used by updating its mtime. | |
2330 | * | |
2331 | * This way, shared index can be removed if they have not been used | |
2332 | * for some time. | |
2333 | */ | |
2334 | static void freshen_shared_index(const char *shared_index, int warn) | |
2335 | { | |
2336 | if (!check_and_freshen_file(shared_index, 1) && warn) | |
2337 | warning(_("could not freshen shared index '%s'"), shared_index); | |
2338 | } | |
2339 | ||
2340 | int read_index_from(struct index_state *istate, const char *path, | |
2341 | const char *gitdir) | |
2342 | { | |
2343 | struct split_index *split_index; | |
2344 | int ret; | |
2345 | char *base_oid_hex; | |
2346 | char *base_path; | |
2347 | ||
2348 | /* istate->initialized covers both .git/index and .git/sharedindex.xxx */ | |
2349 | if (istate->initialized) | |
2350 | return istate->cache_nr; | |
2351 | ||
2352 | /* | |
2353 | * TODO trace2: replace "the_repository" with the actual repo instance | |
2354 | * that is associated with the given "istate". | |
2355 | */ | |
2356 | trace2_region_enter_printf("index", "do_read_index", the_repository, | |
2357 | "%s", path); | |
2358 | trace_performance_enter(); | |
2359 | ret = do_read_index(istate, path, 0); | |
2360 | trace_performance_leave("read cache %s", path); | |
2361 | trace2_region_leave_printf("index", "do_read_index", the_repository, | |
2362 | "%s", path); | |
2363 | ||
2364 | split_index = istate->split_index; | |
2365 | if (!split_index || is_null_oid(&split_index->base_oid)) { | |
2366 | post_read_index_from(istate); | |
2367 | return ret; | |
2368 | } | |
2369 | ||
2370 | trace_performance_enter(); | |
2371 | if (split_index->base) | |
2372 | release_index(split_index->base); | |
2373 | else | |
2374 | ALLOC_ARRAY(split_index->base, 1); | |
2375 | index_state_init(split_index->base, istate->repo); | |
2376 | ||
2377 | base_oid_hex = oid_to_hex(&split_index->base_oid); | |
2378 | base_path = xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex); | |
2379 | if (file_exists(base_path)) { | |
2380 | trace2_region_enter_printf("index", "shared/do_read_index", | |
2381 | the_repository, "%s", base_path); | |
2382 | ||
2383 | ret = do_read_index(split_index->base, base_path, 0); | |
2384 | trace2_region_leave_printf("index", "shared/do_read_index", | |
2385 | the_repository, "%s", base_path); | |
2386 | } else { | |
2387 | char *path_copy = xstrdup(path); | |
2388 | char *base_path2 = xstrfmt("%s/sharedindex.%s", | |
2389 | dirname(path_copy), base_oid_hex); | |
2390 | free(path_copy); | |
2391 | trace2_region_enter_printf("index", "shared/do_read_index", | |
2392 | the_repository, "%s", base_path2); | |
2393 | ret = do_read_index(split_index->base, base_path2, 1); | |
2394 | trace2_region_leave_printf("index", "shared/do_read_index", | |
2395 | the_repository, "%s", base_path2); | |
2396 | free(base_path2); | |
2397 | } | |
2398 | if (!oideq(&split_index->base_oid, &split_index->base->oid)) | |
2399 | die(_("broken index, expect %s in %s, got %s"), | |
2400 | base_oid_hex, base_path, | |
2401 | oid_to_hex(&split_index->base->oid)); | |
2402 | ||
2403 | freshen_shared_index(base_path, 0); | |
2404 | merge_base_index(istate); | |
2405 | post_read_index_from(istate); | |
2406 | trace_performance_leave("read cache %s", base_path); | |
2407 | free(base_path); | |
2408 | return ret; | |
2409 | } | |
2410 | ||
2411 | int is_index_unborn(struct index_state *istate) | |
2412 | { | |
2413 | return (!istate->cache_nr && !istate->timestamp.sec); | |
2414 | } | |
2415 | ||
2416 | void index_state_init(struct index_state *istate, struct repository *r) | |
2417 | { | |
2418 | struct index_state blank = INDEX_STATE_INIT(r); | |
2419 | memcpy(istate, &blank, sizeof(*istate)); | |
2420 | } | |
2421 | ||
2422 | void release_index(struct index_state *istate) | |
2423 | { | |
2424 | /* | |
2425 | * Cache entries in istate->cache[] should have been allocated | |
2426 | * from the memory pool associated with this index, or from an | |
2427 | * associated split_index. There is no need to free individual | |
2428 | * cache entries. validate_cache_entries can detect when this | |
2429 | * assertion does not hold. | |
2430 | */ | |
2431 | validate_cache_entries(istate); | |
2432 | ||
2433 | resolve_undo_clear_index(istate); | |
2434 | free_name_hash(istate); | |
2435 | cache_tree_free(&(istate->cache_tree)); | |
2436 | free(istate->fsmonitor_last_update); | |
2437 | free(istate->cache); | |
2438 | discard_split_index(istate); | |
2439 | free_untracked_cache(istate->untracked); | |
2440 | ||
2441 | if (istate->sparse_checkout_patterns) { | |
2442 | clear_pattern_list(istate->sparse_checkout_patterns); | |
2443 | FREE_AND_NULL(istate->sparse_checkout_patterns); | |
2444 | } | |
2445 | ||
2446 | if (istate->ce_mem_pool) { | |
2447 | mem_pool_discard(istate->ce_mem_pool, should_validate_cache_entries()); | |
2448 | FREE_AND_NULL(istate->ce_mem_pool); | |
2449 | } | |
2450 | } | |
2451 | ||
2452 | void discard_index(struct index_state *istate) | |
2453 | { | |
2454 | release_index(istate); | |
2455 | index_state_init(istate, istate->repo); | |
2456 | } | |
2457 | ||
2458 | /* | |
2459 | * Validate the cache entries of this index. | |
2460 | * All cache entries associated with this index | |
2461 | * should have been allocated by the memory pool | |
2462 | * associated with this index, or by a referenced | |
2463 | * split index. | |
2464 | */ | |
2465 | void validate_cache_entries(const struct index_state *istate) | |
2466 | { | |
2467 | int i; | |
2468 | ||
2469 | if (!should_validate_cache_entries() ||!istate || !istate->initialized) | |
2470 | return; | |
2471 | ||
2472 | for (i = 0; i < istate->cache_nr; i++) { | |
2473 | if (!istate) { | |
2474 | BUG("cache entry is not allocated from expected memory pool"); | |
2475 | } else if (!istate->ce_mem_pool || | |
2476 | !mem_pool_contains(istate->ce_mem_pool, istate->cache[i])) { | |
2477 | if (!istate->split_index || | |
2478 | !istate->split_index->base || | |
2479 | !istate->split_index->base->ce_mem_pool || | |
2480 | !mem_pool_contains(istate->split_index->base->ce_mem_pool, istate->cache[i])) { | |
2481 | BUG("cache entry is not allocated from expected memory pool"); | |
2482 | } | |
2483 | } | |
2484 | } | |
2485 | ||
2486 | if (istate->split_index) | |
2487 | validate_cache_entries(istate->split_index->base); | |
2488 | } | |
2489 | ||
2490 | int unmerged_index(const struct index_state *istate) | |
2491 | { | |
2492 | int i; | |
2493 | for (i = 0; i < istate->cache_nr; i++) { | |
2494 | if (ce_stage(istate->cache[i])) | |
2495 | return 1; | |
2496 | } | |
2497 | return 0; | |
2498 | } | |
2499 | ||
2500 | int repo_index_has_changes(struct repository *repo, | |
2501 | struct tree *tree, | |
2502 | struct strbuf *sb) | |
2503 | { | |
2504 | struct index_state *istate = repo->index; | |
2505 | struct object_id cmp; | |
2506 | int i; | |
2507 | ||
2508 | if (tree) | |
2509 | cmp = tree->object.oid; | |
2510 | if (tree || !repo_get_oid_tree(repo, "HEAD", &cmp)) { | |
2511 | struct diff_options opt; | |
2512 | ||
2513 | repo_diff_setup(repo, &opt); | |
2514 | opt.flags.exit_with_status = 1; | |
2515 | if (!sb) | |
2516 | opt.flags.quick = 1; | |
2517 | diff_setup_done(&opt); | |
2518 | do_diff_cache(&cmp, &opt); | |
2519 | diffcore_std(&opt); | |
2520 | for (i = 0; sb && i < diff_queued_diff.nr; i++) { | |
2521 | if (i) | |
2522 | strbuf_addch(sb, ' '); | |
2523 | strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path); | |
2524 | } | |
2525 | diff_flush(&opt); | |
2526 | return opt.flags.has_changes != 0; | |
2527 | } else { | |
2528 | /* TODO: audit for interaction with sparse-index. */ | |
2529 | ensure_full_index(istate); | |
2530 | for (i = 0; sb && i < istate->cache_nr; i++) { | |
2531 | if (i) | |
2532 | strbuf_addch(sb, ' '); | |
2533 | strbuf_addstr(sb, istate->cache[i]->name); | |
2534 | } | |
2535 | return !!istate->cache_nr; | |
2536 | } | |
2537 | } | |
2538 | ||
2539 | static int write_index_ext_header(struct hashfile *f, | |
2540 | struct git_hash_ctx *eoie_f, | |
2541 | unsigned int ext, | |
2542 | unsigned int sz) | |
2543 | { | |
2544 | hashwrite_be32(f, ext); | |
2545 | hashwrite_be32(f, sz); | |
2546 | ||
2547 | if (eoie_f) { | |
2548 | ext = htonl(ext); | |
2549 | sz = htonl(sz); | |
2550 | git_hash_update(eoie_f, &ext, sizeof(ext)); | |
2551 | git_hash_update(eoie_f, &sz, sizeof(sz)); | |
2552 | } | |
2553 | return 0; | |
2554 | } | |
2555 | ||
2556 | static void ce_smudge_racily_clean_entry(struct index_state *istate, | |
2557 | struct cache_entry *ce) | |
2558 | { | |
2559 | /* | |
2560 | * The only thing we care about in this function is to smudge the | |
2561 | * falsely clean entry due to touch-update-touch race, so we leave | |
2562 | * everything else as they are. We are called for entries whose | |
2563 | * ce_stat_data.sd_mtime match the index file mtime. | |
2564 | * | |
2565 | * Note that this actually does not do much for gitlinks, for | |
2566 | * which ce_match_stat_basic() always goes to the actual | |
2567 | * contents. The caller checks with is_racy_timestamp() which | |
2568 | * always says "no" for gitlinks, so we are not called for them ;-) | |
2569 | */ | |
2570 | struct stat st; | |
2571 | ||
2572 | if (lstat(ce->name, &st) < 0) | |
2573 | return; | |
2574 | if (ce_match_stat_basic(ce, &st)) | |
2575 | return; | |
2576 | if (ce_modified_check_fs(istate, ce, &st)) { | |
2577 | /* This is "racily clean"; smudge it. Note that this | |
2578 | * is a tricky code. At first glance, it may appear | |
2579 | * that it can break with this sequence: | |
2580 | * | |
2581 | * $ echo xyzzy >frotz | |
2582 | * $ git-update-index --add frotz | |
2583 | * $ : >frotz | |
2584 | * $ sleep 3 | |
2585 | * $ echo filfre >nitfol | |
2586 | * $ git-update-index --add nitfol | |
2587 | * | |
2588 | * but it does not. When the second update-index runs, | |
2589 | * it notices that the entry "frotz" has the same timestamp | |
2590 | * as index, and if we were to smudge it by resetting its | |
2591 | * size to zero here, then the object name recorded | |
2592 | * in index is the 6-byte file but the cached stat information | |
2593 | * becomes zero --- which would then match what we would | |
2594 | * obtain from the filesystem next time we stat("frotz"). | |
2595 | * | |
2596 | * However, the second update-index, before calling | |
2597 | * this function, notices that the cached size is 6 | |
2598 | * bytes and what is on the filesystem is an empty | |
2599 | * file, and never calls us, so the cached size information | |
2600 | * for "frotz" stays 6 which does not match the filesystem. | |
2601 | */ | |
2602 | ce->ce_stat_data.sd_size = 0; | |
2603 | } | |
2604 | } | |
2605 | ||
2606 | /* Copy miscellaneous fields but not the name */ | |
2607 | static void copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk, | |
2608 | struct cache_entry *ce) | |
2609 | { | |
2610 | short flags; | |
2611 | const unsigned hashsz = the_hash_algo->rawsz; | |
2612 | uint16_t *flagsp = (uint16_t *)(ondisk->data + hashsz); | |
2613 | ||
2614 | ondisk->ctime.sec = htonl(ce->ce_stat_data.sd_ctime.sec); | |
2615 | ondisk->mtime.sec = htonl(ce->ce_stat_data.sd_mtime.sec); | |
2616 | ondisk->ctime.nsec = htonl(ce->ce_stat_data.sd_ctime.nsec); | |
2617 | ondisk->mtime.nsec = htonl(ce->ce_stat_data.sd_mtime.nsec); | |
2618 | ondisk->dev = htonl(ce->ce_stat_data.sd_dev); | |
2619 | ondisk->ino = htonl(ce->ce_stat_data.sd_ino); | |
2620 | ondisk->mode = htonl(ce->ce_mode); | |
2621 | ondisk->uid = htonl(ce->ce_stat_data.sd_uid); | |
2622 | ondisk->gid = htonl(ce->ce_stat_data.sd_gid); | |
2623 | ondisk->size = htonl(ce->ce_stat_data.sd_size); | |
2624 | hashcpy(ondisk->data, ce->oid.hash, the_repository->hash_algo); | |
2625 | ||
2626 | flags = ce->ce_flags & ~CE_NAMEMASK; | |
2627 | flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK : ce_namelen(ce)); | |
2628 | flagsp[0] = htons(flags); | |
2629 | if (ce->ce_flags & CE_EXTENDED) { | |
2630 | flagsp[1] = htons((ce->ce_flags & CE_EXTENDED_FLAGS) >> 16); | |
2631 | } | |
2632 | } | |
2633 | ||
2634 | static int ce_write_entry(struct hashfile *f, struct cache_entry *ce, | |
2635 | struct strbuf *previous_name, struct ondisk_cache_entry *ondisk) | |
2636 | { | |
2637 | int size; | |
2638 | unsigned int saved_namelen; | |
2639 | int stripped_name = 0; | |
2640 | static unsigned char padding[8] = { 0x00 }; | |
2641 | ||
2642 | if (ce->ce_flags & CE_STRIP_NAME) { | |
2643 | saved_namelen = ce_namelen(ce); | |
2644 | ce->ce_namelen = 0; | |
2645 | stripped_name = 1; | |
2646 | } | |
2647 | ||
2648 | size = offsetof(struct ondisk_cache_entry,data) + ondisk_data_size(ce->ce_flags, 0); | |
2649 | ||
2650 | if (!previous_name) { | |
2651 | int len = ce_namelen(ce); | |
2652 | copy_cache_entry_to_ondisk(ondisk, ce); | |
2653 | hashwrite(f, ondisk, size); | |
2654 | hashwrite(f, ce->name, len); | |
2655 | hashwrite(f, padding, align_padding_size(size, len)); | |
2656 | } else { | |
2657 | int common, to_remove, prefix_size; | |
2658 | unsigned char to_remove_vi[16]; | |
2659 | for (common = 0; | |
2660 | (common < previous_name->len && | |
2661 | ce->name[common] && | |
2662 | ce->name[common] == previous_name->buf[common]); | |
2663 | common++) | |
2664 | ; /* still matching */ | |
2665 | to_remove = previous_name->len - common; | |
2666 | prefix_size = encode_varint(to_remove, to_remove_vi); | |
2667 | ||
2668 | copy_cache_entry_to_ondisk(ondisk, ce); | |
2669 | hashwrite(f, ondisk, size); | |
2670 | hashwrite(f, to_remove_vi, prefix_size); | |
2671 | hashwrite(f, ce->name + common, ce_namelen(ce) - common); | |
2672 | hashwrite(f, padding, 1); | |
2673 | ||
2674 | strbuf_splice(previous_name, common, to_remove, | |
2675 | ce->name + common, ce_namelen(ce) - common); | |
2676 | } | |
2677 | if (stripped_name) { | |
2678 | ce->ce_namelen = saved_namelen; | |
2679 | ce->ce_flags &= ~CE_STRIP_NAME; | |
2680 | } | |
2681 | ||
2682 | return 0; | |
2683 | } | |
2684 | ||
2685 | /* | |
2686 | * This function verifies if index_state has the correct sha1 of the | |
2687 | * index file. Don't die if we have any other failure, just return 0. | |
2688 | */ | |
2689 | static int verify_index_from(const struct index_state *istate, const char *path) | |
2690 | { | |
2691 | int fd; | |
2692 | ssize_t n; | |
2693 | struct stat st; | |
2694 | unsigned char hash[GIT_MAX_RAWSZ]; | |
2695 | ||
2696 | if (!istate->initialized) | |
2697 | return 0; | |
2698 | ||
2699 | fd = open(path, O_RDONLY); | |
2700 | if (fd < 0) | |
2701 | return 0; | |
2702 | ||
2703 | if (fstat(fd, &st)) | |
2704 | goto out; | |
2705 | ||
2706 | if (st.st_size < sizeof(struct cache_header) + the_hash_algo->rawsz) | |
2707 | goto out; | |
2708 | ||
2709 | n = pread_in_full(fd, hash, the_hash_algo->rawsz, st.st_size - the_hash_algo->rawsz); | |
2710 | if (n != the_hash_algo->rawsz) | |
2711 | goto out; | |
2712 | ||
2713 | if (!hasheq(istate->oid.hash, hash, the_repository->hash_algo)) | |
2714 | goto out; | |
2715 | ||
2716 | close(fd); | |
2717 | return 1; | |
2718 | ||
2719 | out: | |
2720 | close(fd); | |
2721 | return 0; | |
2722 | } | |
2723 | ||
2724 | static int repo_verify_index(struct repository *repo) | |
2725 | { | |
2726 | return verify_index_from(repo->index, repo->index_file); | |
2727 | } | |
2728 | ||
2729 | int has_racy_timestamp(struct index_state *istate) | |
2730 | { | |
2731 | int entries = istate->cache_nr; | |
2732 | int i; | |
2733 | ||
2734 | for (i = 0; i < entries; i++) { | |
2735 | struct cache_entry *ce = istate->cache[i]; | |
2736 | if (is_racy_timestamp(istate, ce)) | |
2737 | return 1; | |
2738 | } | |
2739 | return 0; | |
2740 | } | |
2741 | ||
2742 | void repo_update_index_if_able(struct repository *repo, | |
2743 | struct lock_file *lockfile) | |
2744 | { | |
2745 | if ((repo->index->cache_changed || | |
2746 | has_racy_timestamp(repo->index)) && | |
2747 | repo_verify_index(repo)) | |
2748 | write_locked_index(repo->index, lockfile, COMMIT_LOCK); | |
2749 | else | |
2750 | rollback_lock_file(lockfile); | |
2751 | } | |
2752 | ||
2753 | static int record_eoie(void) | |
2754 | { | |
2755 | int val; | |
2756 | ||
2757 | if (!git_config_get_bool("index.recordendofindexentries", &val)) | |
2758 | return val; | |
2759 | ||
2760 | /* | |
2761 | * As a convenience, the end of index entries extension | |
2762 | * used for threading is written by default if the user | |
2763 | * explicitly requested threaded index reads. | |
2764 | */ | |
2765 | return !repo_config_get_index_threads(the_repository, &val) && val != 1; | |
2766 | } | |
2767 | ||
2768 | static int record_ieot(void) | |
2769 | { | |
2770 | int val; | |
2771 | ||
2772 | if (!git_config_get_bool("index.recordoffsettable", &val)) | |
2773 | return val; | |
2774 | ||
2775 | /* | |
2776 | * As a convenience, the offset table used for threading is | |
2777 | * written by default if the user explicitly requested | |
2778 | * threaded index reads. | |
2779 | */ | |
2780 | return !repo_config_get_index_threads(the_repository, &val) && val != 1; | |
2781 | } | |
2782 | ||
2783 | enum write_extensions { | |
2784 | WRITE_NO_EXTENSION = 0, | |
2785 | WRITE_SPLIT_INDEX_EXTENSION = 1<<0, | |
2786 | WRITE_CACHE_TREE_EXTENSION = 1<<1, | |
2787 | WRITE_RESOLVE_UNDO_EXTENSION = 1<<2, | |
2788 | WRITE_UNTRACKED_CACHE_EXTENSION = 1<<3, | |
2789 | WRITE_FSMONITOR_EXTENSION = 1<<4, | |
2790 | }; | |
2791 | #define WRITE_ALL_EXTENSIONS ((enum write_extensions)-1) | |
2792 | ||
2793 | /* | |
2794 | * On success, `tempfile` is closed. If it is the temporary file | |
2795 | * of a `struct lock_file`, we will therefore effectively perform | |
2796 | * a 'close_lock_file_gently()`. Since that is an implementation | |
2797 | * detail of lockfiles, callers of `do_write_index()` should not | |
2798 | * rely on it. | |
2799 | */ | |
2800 | static int do_write_index(struct index_state *istate, struct tempfile *tempfile, | |
2801 | enum write_extensions write_extensions, unsigned flags) | |
2802 | { | |
2803 | uint64_t start = getnanotime(); | |
2804 | struct hashfile *f; | |
2805 | struct git_hash_ctx *eoie_c = NULL; | |
2806 | struct cache_header hdr; | |
2807 | int i, err = 0, removed, extended, hdr_version; | |
2808 | struct cache_entry **cache = istate->cache; | |
2809 | int entries = istate->cache_nr; | |
2810 | struct stat st; | |
2811 | struct ondisk_cache_entry ondisk; | |
2812 | struct strbuf previous_name_buf = STRBUF_INIT, *previous_name; | |
2813 | int drop_cache_tree = istate->drop_cache_tree; | |
2814 | off_t offset; | |
2815 | int csum_fsync_flag; | |
2816 | int ieot_entries = 1; | |
2817 | struct index_entry_offset_table *ieot = NULL; | |
2818 | struct repository *r = istate->repo; | |
2819 | struct strbuf sb = STRBUF_INIT; | |
2820 | int nr, nr_threads, ret; | |
2821 | ||
2822 | f = hashfd(the_repository->hash_algo, tempfile->fd, tempfile->filename.buf); | |
2823 | ||
2824 | prepare_repo_settings(r); | |
2825 | f->skip_hash = r->settings.index_skip_hash; | |
2826 | ||
2827 | for (i = removed = extended = 0; i < entries; i++) { | |
2828 | if (cache[i]->ce_flags & CE_REMOVE) | |
2829 | removed++; | |
2830 | ||
2831 | /* reduce extended entries if possible */ | |
2832 | cache[i]->ce_flags &= ~CE_EXTENDED; | |
2833 | if (cache[i]->ce_flags & CE_EXTENDED_FLAGS) { | |
2834 | extended++; | |
2835 | cache[i]->ce_flags |= CE_EXTENDED; | |
2836 | } | |
2837 | } | |
2838 | ||
2839 | if (!istate->version) | |
2840 | istate->version = get_index_format_default(r); | |
2841 | ||
2842 | /* demote version 3 to version 2 when the latter suffices */ | |
2843 | if (istate->version == 3 || istate->version == 2) | |
2844 | istate->version = extended ? 3 : 2; | |
2845 | ||
2846 | hdr_version = istate->version; | |
2847 | ||
2848 | hdr.hdr_signature = htonl(CACHE_SIGNATURE); | |
2849 | hdr.hdr_version = htonl(hdr_version); | |
2850 | hdr.hdr_entries = htonl(entries - removed); | |
2851 | ||
2852 | hashwrite(f, &hdr, sizeof(hdr)); | |
2853 | ||
2854 | if (!HAVE_THREADS || repo_config_get_index_threads(the_repository, &nr_threads)) | |
2855 | nr_threads = 1; | |
2856 | ||
2857 | if (nr_threads != 1 && record_ieot()) { | |
2858 | int ieot_blocks, cpus; | |
2859 | ||
2860 | /* | |
2861 | * ensure default number of ieot blocks maps evenly to the | |
2862 | * default number of threads that will process them leaving | |
2863 | * room for the thread to load the index extensions. | |
2864 | */ | |
2865 | if (!nr_threads) { | |
2866 | ieot_blocks = istate->cache_nr / THREAD_COST; | |
2867 | cpus = online_cpus(); | |
2868 | if (ieot_blocks > cpus - 1) | |
2869 | ieot_blocks = cpus - 1; | |
2870 | } else { | |
2871 | ieot_blocks = nr_threads; | |
2872 | if (ieot_blocks > istate->cache_nr) | |
2873 | ieot_blocks = istate->cache_nr; | |
2874 | } | |
2875 | ||
2876 | /* | |
2877 | * no reason to write out the IEOT extension if we don't | |
2878 | * have enough blocks to utilize multi-threading | |
2879 | */ | |
2880 | if (ieot_blocks > 1) { | |
2881 | ieot = xcalloc(1, sizeof(struct index_entry_offset_table) | |
2882 | + (ieot_blocks * sizeof(struct index_entry_offset))); | |
2883 | ieot_entries = DIV_ROUND_UP(entries, ieot_blocks); | |
2884 | } | |
2885 | } | |
2886 | ||
2887 | offset = hashfile_total(f); | |
2888 | ||
2889 | nr = 0; | |
2890 | previous_name = (hdr_version == 4) ? &previous_name_buf : NULL; | |
2891 | ||
2892 | for (i = 0; i < entries; i++) { | |
2893 | struct cache_entry *ce = cache[i]; | |
2894 | if (ce->ce_flags & CE_REMOVE) | |
2895 | continue; | |
2896 | if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce)) | |
2897 | ce_smudge_racily_clean_entry(istate, ce); | |
2898 | if (is_null_oid(&ce->oid)) { | |
2899 | static const char msg[] = "cache entry has null sha1: %s"; | |
2900 | static int allow = -1; | |
2901 | ||
2902 | if (allow < 0) | |
2903 | allow = git_env_bool("GIT_ALLOW_NULL_SHA1", 0); | |
2904 | if (allow) | |
2905 | warning(msg, ce->name); | |
2906 | else | |
2907 | err = error(msg, ce->name); | |
2908 | ||
2909 | drop_cache_tree = 1; | |
2910 | } | |
2911 | if (ieot && i && (i % ieot_entries == 0)) { | |
2912 | ieot->entries[ieot->nr].nr = nr; | |
2913 | ieot->entries[ieot->nr].offset = offset; | |
2914 | ieot->nr++; | |
2915 | /* | |
2916 | * If we have a V4 index, set the first byte to an invalid | |
2917 | * character to ensure there is nothing common with the previous | |
2918 | * entry | |
2919 | */ | |
2920 | if (previous_name) | |
2921 | previous_name->buf[0] = 0; | |
2922 | nr = 0; | |
2923 | ||
2924 | offset = hashfile_total(f); | |
2925 | } | |
2926 | if (ce_write_entry(f, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) < 0) | |
2927 | err = -1; | |
2928 | ||
2929 | if (err) | |
2930 | break; | |
2931 | nr++; | |
2932 | } | |
2933 | if (ieot && nr) { | |
2934 | ieot->entries[ieot->nr].nr = nr; | |
2935 | ieot->entries[ieot->nr].offset = offset; | |
2936 | ieot->nr++; | |
2937 | } | |
2938 | strbuf_release(&previous_name_buf); | |
2939 | ||
2940 | if (err) { | |
2941 | ret = err; | |
2942 | goto out; | |
2943 | } | |
2944 | ||
2945 | offset = hashfile_total(f); | |
2946 | ||
2947 | /* | |
2948 | * The extension headers must be hashed on their own for the | |
2949 | * EOIE extension. Create a hashfile here to compute that hash. | |
2950 | */ | |
2951 | if (offset && record_eoie()) { | |
2952 | CALLOC_ARRAY(eoie_c, 1); | |
2953 | the_hash_algo->init_fn(eoie_c); | |
2954 | } | |
2955 | ||
2956 | /* | |
2957 | * Lets write out CACHE_EXT_INDEXENTRYOFFSETTABLE first so that we | |
2958 | * can minimize the number of extensions we have to scan through to | |
2959 | * find it during load. Write it out regardless of the | |
2960 | * strip_extensions parameter as we need it when loading the shared | |
2961 | * index. | |
2962 | */ | |
2963 | if (ieot) { | |
2964 | strbuf_reset(&sb); | |
2965 | ||
2966 | write_ieot_extension(&sb, ieot); | |
2967 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_INDEXENTRYOFFSETTABLE, sb.len) < 0; | |
2968 | hashwrite(f, sb.buf, sb.len); | |
2969 | if (err) { | |
2970 | ret = -1; | |
2971 | goto out; | |
2972 | } | |
2973 | } | |
2974 | ||
2975 | if (write_extensions & WRITE_SPLIT_INDEX_EXTENSION && | |
2976 | istate->split_index) { | |
2977 | strbuf_reset(&sb); | |
2978 | ||
2979 | if (istate->sparse_index) | |
2980 | die(_("cannot write split index for a sparse index")); | |
2981 | ||
2982 | err = write_link_extension(&sb, istate) < 0 || | |
2983 | write_index_ext_header(f, eoie_c, CACHE_EXT_LINK, | |
2984 | sb.len) < 0; | |
2985 | hashwrite(f, sb.buf, sb.len); | |
2986 | if (err) { | |
2987 | ret = -1; | |
2988 | goto out; | |
2989 | } | |
2990 | } | |
2991 | if (write_extensions & WRITE_CACHE_TREE_EXTENSION && | |
2992 | !drop_cache_tree && istate->cache_tree) { | |
2993 | strbuf_reset(&sb); | |
2994 | ||
2995 | cache_tree_write(&sb, istate->cache_tree); | |
2996 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_TREE, sb.len) < 0; | |
2997 | hashwrite(f, sb.buf, sb.len); | |
2998 | if (err) { | |
2999 | ret = -1; | |
3000 | goto out; | |
3001 | } | |
3002 | } | |
3003 | if (write_extensions & WRITE_RESOLVE_UNDO_EXTENSION && | |
3004 | istate->resolve_undo) { | |
3005 | strbuf_reset(&sb); | |
3006 | ||
3007 | resolve_undo_write(&sb, istate->resolve_undo, the_hash_algo); | |
3008 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_RESOLVE_UNDO, | |
3009 | sb.len) < 0; | |
3010 | hashwrite(f, sb.buf, sb.len); | |
3011 | if (err) { | |
3012 | ret = -1; | |
3013 | goto out; | |
3014 | } | |
3015 | } | |
3016 | if (write_extensions & WRITE_UNTRACKED_CACHE_EXTENSION && | |
3017 | istate->untracked) { | |
3018 | strbuf_reset(&sb); | |
3019 | ||
3020 | write_untracked_extension(&sb, istate->untracked); | |
3021 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_UNTRACKED, | |
3022 | sb.len) < 0; | |
3023 | hashwrite(f, sb.buf, sb.len); | |
3024 | if (err) { | |
3025 | ret = -1; | |
3026 | goto out; | |
3027 | } | |
3028 | } | |
3029 | if (write_extensions & WRITE_FSMONITOR_EXTENSION && | |
3030 | istate->fsmonitor_last_update) { | |
3031 | strbuf_reset(&sb); | |
3032 | ||
3033 | write_fsmonitor_extension(&sb, istate); | |
3034 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_FSMONITOR, sb.len) < 0; | |
3035 | hashwrite(f, sb.buf, sb.len); | |
3036 | if (err) { | |
3037 | ret = -1; | |
3038 | goto out; | |
3039 | } | |
3040 | } | |
3041 | if (istate->sparse_index) { | |
3042 | if (write_index_ext_header(f, eoie_c, CACHE_EXT_SPARSE_DIRECTORIES, 0) < 0) { | |
3043 | ret = -1; | |
3044 | goto out; | |
3045 | } | |
3046 | } | |
3047 | ||
3048 | /* | |
3049 | * CACHE_EXT_ENDOFINDEXENTRIES must be written as the last entry before the SHA1 | |
3050 | * so that it can be found and processed before all the index entries are | |
3051 | * read. Write it out regardless of the strip_extensions parameter as we need it | |
3052 | * when loading the shared index. | |
3053 | */ | |
3054 | if (eoie_c) { | |
3055 | strbuf_reset(&sb); | |
3056 | ||
3057 | write_eoie_extension(&sb, eoie_c, offset); | |
3058 | err = write_index_ext_header(f, NULL, CACHE_EXT_ENDOFINDEXENTRIES, sb.len) < 0; | |
3059 | hashwrite(f, sb.buf, sb.len); | |
3060 | if (err) { | |
3061 | ret = -1; | |
3062 | goto out; | |
3063 | } | |
3064 | } | |
3065 | ||
3066 | csum_fsync_flag = 0; | |
3067 | if (!alternate_index_output && (flags & COMMIT_LOCK)) | |
3068 | csum_fsync_flag = CSUM_FSYNC; | |
3069 | ||
3070 | finalize_hashfile(f, istate->oid.hash, FSYNC_COMPONENT_INDEX, | |
3071 | CSUM_HASH_IN_STREAM | csum_fsync_flag); | |
3072 | f = NULL; | |
3073 | ||
3074 | if (close_tempfile_gently(tempfile)) { | |
3075 | ret = error(_("could not close '%s'"), get_tempfile_path(tempfile)); | |
3076 | goto out; | |
3077 | } | |
3078 | if (stat(get_tempfile_path(tempfile), &st)) { | |
3079 | ret = -1; | |
3080 | goto out; | |
3081 | } | |
3082 | istate->timestamp.sec = (unsigned int)st.st_mtime; | |
3083 | istate->timestamp.nsec = ST_MTIME_NSEC(st); | |
3084 | trace_performance_since(start, "write index, changed mask = %x", istate->cache_changed); | |
3085 | ||
3086 | /* | |
3087 | * TODO trace2: replace "the_repository" with the actual repo instance | |
3088 | * that is associated with the given "istate". | |
3089 | */ | |
3090 | trace2_data_intmax("index", the_repository, "write/version", | |
3091 | istate->version); | |
3092 | trace2_data_intmax("index", the_repository, "write/cache_nr", | |
3093 | istate->cache_nr); | |
3094 | ||
3095 | ret = 0; | |
3096 | ||
3097 | out: | |
3098 | if (f) | |
3099 | free_hashfile(f); | |
3100 | strbuf_release(&sb); | |
3101 | free(eoie_c); | |
3102 | free(ieot); | |
3103 | return ret; | |
3104 | } | |
3105 | ||
3106 | void set_alternate_index_output(const char *name) | |
3107 | { | |
3108 | alternate_index_output = name; | |
3109 | } | |
3110 | ||
3111 | static int commit_locked_index(struct lock_file *lk) | |
3112 | { | |
3113 | if (alternate_index_output) | |
3114 | return commit_lock_file_to(lk, alternate_index_output); | |
3115 | else | |
3116 | return commit_lock_file(lk); | |
3117 | } | |
3118 | ||
3119 | static int do_write_locked_index(struct index_state *istate, | |
3120 | struct lock_file *lock, | |
3121 | unsigned flags, | |
3122 | enum write_extensions write_extensions) | |
3123 | { | |
3124 | int ret; | |
3125 | int was_full = istate->sparse_index == INDEX_EXPANDED; | |
3126 | ||
3127 | ret = convert_to_sparse(istate, 0); | |
3128 | ||
3129 | if (ret) { | |
3130 | warning(_("failed to convert to a sparse-index")); | |
3131 | return ret; | |
3132 | } | |
3133 | ||
3134 | /* | |
3135 | * TODO trace2: replace "the_repository" with the actual repo instance | |
3136 | * that is associated with the given "istate". | |
3137 | */ | |
3138 | trace2_region_enter_printf("index", "do_write_index", the_repository, | |
3139 | "%s", get_lock_file_path(lock)); | |
3140 | ret = do_write_index(istate, lock->tempfile, write_extensions, flags); | |
3141 | trace2_region_leave_printf("index", "do_write_index", the_repository, | |
3142 | "%s", get_lock_file_path(lock)); | |
3143 | ||
3144 | if (was_full) | |
3145 | ensure_full_index(istate); | |
3146 | ||
3147 | if (ret) | |
3148 | return ret; | |
3149 | if (flags & COMMIT_LOCK) | |
3150 | ret = commit_locked_index(lock); | |
3151 | else | |
3152 | ret = close_lock_file_gently(lock); | |
3153 | ||
3154 | run_hooks_l(the_repository, "post-index-change", | |
3155 | istate->updated_workdir ? "1" : "0", | |
3156 | istate->updated_skipworktree ? "1" : "0", NULL); | |
3157 | istate->updated_workdir = 0; | |
3158 | istate->updated_skipworktree = 0; | |
3159 | ||
3160 | return ret; | |
3161 | } | |
3162 | ||
3163 | static int write_split_index(struct index_state *istate, | |
3164 | struct lock_file *lock, | |
3165 | unsigned flags) | |
3166 | { | |
3167 | int ret; | |
3168 | prepare_to_write_split_index(istate); | |
3169 | ret = do_write_locked_index(istate, lock, flags, WRITE_ALL_EXTENSIONS); | |
3170 | finish_writing_split_index(istate); | |
3171 | return ret; | |
3172 | } | |
3173 | ||
3174 | static unsigned long get_shared_index_expire_date(void) | |
3175 | { | |
3176 | static unsigned long shared_index_expire_date; | |
3177 | static int shared_index_expire_date_prepared; | |
3178 | ||
3179 | if (!shared_index_expire_date_prepared) { | |
3180 | const char *shared_index_expire = "2.weeks.ago"; | |
3181 | char *value = NULL; | |
3182 | ||
3183 | repo_config_get_expiry(the_repository, "splitindex.sharedindexexpire", | |
3184 | &value); | |
3185 | if (value) | |
3186 | shared_index_expire = value; | |
3187 | ||
3188 | shared_index_expire_date = approxidate(shared_index_expire); | |
3189 | shared_index_expire_date_prepared = 1; | |
3190 | ||
3191 | free(value); | |
3192 | } | |
3193 | ||
3194 | return shared_index_expire_date; | |
3195 | } | |
3196 | ||
3197 | static int should_delete_shared_index(const char *shared_index_path) | |
3198 | { | |
3199 | struct stat st; | |
3200 | unsigned long expiration; | |
3201 | ||
3202 | /* Check timestamp */ | |
3203 | expiration = get_shared_index_expire_date(); | |
3204 | if (!expiration) | |
3205 | return 0; | |
3206 | if (stat(shared_index_path, &st)) | |
3207 | return error_errno(_("could not stat '%s'"), shared_index_path); | |
3208 | if (st.st_mtime > expiration) | |
3209 | return 0; | |
3210 | ||
3211 | return 1; | |
3212 | } | |
3213 | ||
3214 | static int clean_shared_index_files(const char *current_hex) | |
3215 | { | |
3216 | struct dirent *de; | |
3217 | DIR *dir = opendir(repo_get_git_dir(the_repository)); | |
3218 | ||
3219 | if (!dir) | |
3220 | return error_errno(_("unable to open git dir: %s"), | |
3221 | repo_get_git_dir(the_repository)); | |
3222 | ||
3223 | while ((de = readdir(dir)) != NULL) { | |
3224 | const char *sha1_hex; | |
3225 | char *shared_index_path; | |
3226 | if (!skip_prefix(de->d_name, "sharedindex.", &sha1_hex)) | |
3227 | continue; | |
3228 | if (!strcmp(sha1_hex, current_hex)) | |
3229 | continue; | |
3230 | ||
3231 | shared_index_path = repo_git_path(the_repository, "%s", de->d_name); | |
3232 | if (should_delete_shared_index(shared_index_path) > 0 && | |
3233 | unlink(shared_index_path)) | |
3234 | warning_errno(_("unable to unlink: %s"), shared_index_path); | |
3235 | ||
3236 | free(shared_index_path); | |
3237 | } | |
3238 | closedir(dir); | |
3239 | ||
3240 | return 0; | |
3241 | } | |
3242 | ||
3243 | static int write_shared_index(struct index_state *istate, | |
3244 | struct tempfile **temp, unsigned flags) | |
3245 | { | |
3246 | struct split_index *si = istate->split_index; | |
3247 | int ret, was_full = !istate->sparse_index; | |
3248 | char *path; | |
3249 | ||
3250 | move_cache_to_base_index(istate); | |
3251 | convert_to_sparse(istate, 0); | |
3252 | ||
3253 | trace2_region_enter_printf("index", "shared/do_write_index", | |
3254 | the_repository, "%s", get_tempfile_path(*temp)); | |
3255 | ret = do_write_index(si->base, *temp, WRITE_NO_EXTENSION, flags); | |
3256 | trace2_region_leave_printf("index", "shared/do_write_index", | |
3257 | the_repository, "%s", get_tempfile_path(*temp)); | |
3258 | ||
3259 | if (was_full) | |
3260 | ensure_full_index(istate); | |
3261 | ||
3262 | if (ret) | |
3263 | return ret; | |
3264 | ret = adjust_shared_perm(the_repository, get_tempfile_path(*temp)); | |
3265 | if (ret) { | |
3266 | error(_("cannot fix permission bits on '%s'"), get_tempfile_path(*temp)); | |
3267 | return ret; | |
3268 | } | |
3269 | ||
3270 | path = repo_git_path(the_repository, "sharedindex.%s", oid_to_hex(&si->base->oid)); | |
3271 | ret = rename_tempfile(temp, path); | |
3272 | if (!ret) { | |
3273 | oidcpy(&si->base_oid, &si->base->oid); | |
3274 | clean_shared_index_files(oid_to_hex(&si->base->oid)); | |
3275 | } | |
3276 | ||
3277 | free(path); | |
3278 | return ret; | |
3279 | } | |
3280 | ||
3281 | static const int default_max_percent_split_change = 20; | |
3282 | ||
3283 | static int too_many_not_shared_entries(struct index_state *istate) | |
3284 | { | |
3285 | int i, not_shared = 0; | |
3286 | int max_split = repo_config_get_max_percent_split_change(the_repository); | |
3287 | ||
3288 | switch (max_split) { | |
3289 | case -1: | |
3290 | /* not or badly configured: use the default value */ | |
3291 | max_split = default_max_percent_split_change; | |
3292 | break; | |
3293 | case 0: | |
3294 | return 1; /* 0% means always write a new shared index */ | |
3295 | case 100: | |
3296 | return 0; /* 100% means never write a new shared index */ | |
3297 | default: | |
3298 | break; /* just use the configured value */ | |
3299 | } | |
3300 | ||
3301 | /* Count not shared entries */ | |
3302 | for (i = 0; i < istate->cache_nr; i++) { | |
3303 | struct cache_entry *ce = istate->cache[i]; | |
3304 | if (!ce->index) | |
3305 | not_shared++; | |
3306 | } | |
3307 | ||
3308 | return (int64_t)istate->cache_nr * max_split < (int64_t)not_shared * 100; | |
3309 | } | |
3310 | ||
3311 | int write_locked_index(struct index_state *istate, struct lock_file *lock, | |
3312 | unsigned flags) | |
3313 | { | |
3314 | int new_shared_index, ret, test_split_index_env; | |
3315 | struct split_index *si = istate->split_index; | |
3316 | ||
3317 | if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0) && | |
3318 | cache_tree_verify(the_repository, istate) < 0) | |
3319 | return -1; | |
3320 | ||
3321 | if ((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) { | |
3322 | if (flags & COMMIT_LOCK) | |
3323 | rollback_lock_file(lock); | |
3324 | return 0; | |
3325 | } | |
3326 | ||
3327 | if (istate->fsmonitor_last_update) | |
3328 | fill_fsmonitor_bitmap(istate); | |
3329 | ||
3330 | test_split_index_env = git_env_bool("GIT_TEST_SPLIT_INDEX", 0); | |
3331 | ||
3332 | if ((!si && !test_split_index_env) || | |
3333 | alternate_index_output || | |
3334 | (istate->cache_changed & ~EXTMASK)) { | |
3335 | ret = do_write_locked_index(istate, lock, flags, | |
3336 | ~WRITE_SPLIT_INDEX_EXTENSION); | |
3337 | goto out; | |
3338 | } | |
3339 | ||
3340 | if (test_split_index_env) { | |
3341 | if (!si) { | |
3342 | si = init_split_index(istate); | |
3343 | istate->cache_changed |= SPLIT_INDEX_ORDERED; | |
3344 | } else { | |
3345 | int v = si->base_oid.hash[0]; | |
3346 | if ((v & 15) < 6) | |
3347 | istate->cache_changed |= SPLIT_INDEX_ORDERED; | |
3348 | } | |
3349 | } | |
3350 | if (too_many_not_shared_entries(istate)) | |
3351 | istate->cache_changed |= SPLIT_INDEX_ORDERED; | |
3352 | ||
3353 | new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED; | |
3354 | ||
3355 | if (new_shared_index) { | |
3356 | struct tempfile *temp; | |
3357 | int saved_errno; | |
3358 | char *path; | |
3359 | ||
3360 | /* Same initial permissions as the main .git/index file */ | |
3361 | path = repo_git_path(the_repository, "sharedindex_XXXXXX"); | |
3362 | temp = mks_tempfile_sm(path, 0, 0666); | |
3363 | free(path); | |
3364 | if (!temp) { | |
3365 | ret = do_write_locked_index(istate, lock, flags, | |
3366 | ~WRITE_SPLIT_INDEX_EXTENSION); | |
3367 | goto out; | |
3368 | } | |
3369 | ret = write_shared_index(istate, &temp, flags); | |
3370 | ||
3371 | saved_errno = errno; | |
3372 | if (is_tempfile_active(temp)) | |
3373 | delete_tempfile(&temp); | |
3374 | errno = saved_errno; | |
3375 | ||
3376 | if (ret) | |
3377 | goto out; | |
3378 | } | |
3379 | ||
3380 | ret = write_split_index(istate, lock, flags); | |
3381 | ||
3382 | /* Freshen the shared index only if the split-index was written */ | |
3383 | if (!ret && !new_shared_index && !is_null_oid(&si->base_oid)) { | |
3384 | char *shared_index = repo_git_path(the_repository, "sharedindex.%s", | |
3385 | oid_to_hex(&si->base_oid)); | |
3386 | freshen_shared_index(shared_index, 1); | |
3387 | free(shared_index); | |
3388 | } | |
3389 | ||
3390 | out: | |
3391 | if (flags & COMMIT_LOCK) | |
3392 | rollback_lock_file(lock); | |
3393 | return ret; | |
3394 | } | |
3395 | ||
3396 | /* | |
3397 | * Read the index file that is potentially unmerged into given | |
3398 | * index_state, dropping any unmerged entries to stage #0 (potentially | |
3399 | * resulting in a path appearing as both a file and a directory in the | |
3400 | * index; the caller is responsible to clear out the extra entries | |
3401 | * before writing the index to a tree). Returns true if the index is | |
3402 | * unmerged. Callers who want to refuse to work from an unmerged | |
3403 | * state can call this and check its return value, instead of calling | |
3404 | * read_cache(). | |
3405 | */ | |
3406 | int repo_read_index_unmerged(struct repository *repo) | |
3407 | { | |
3408 | struct index_state *istate; | |
3409 | int i; | |
3410 | int unmerged = 0; | |
3411 | ||
3412 | repo_read_index(repo); | |
3413 | istate = repo->index; | |
3414 | for (i = 0; i < istate->cache_nr; i++) { | |
3415 | struct cache_entry *ce = istate->cache[i]; | |
3416 | struct cache_entry *new_ce; | |
3417 | int len; | |
3418 | ||
3419 | if (!ce_stage(ce)) | |
3420 | continue; | |
3421 | unmerged = 1; | |
3422 | len = ce_namelen(ce); | |
3423 | new_ce = make_empty_cache_entry(istate, len); | |
3424 | memcpy(new_ce->name, ce->name, len); | |
3425 | new_ce->ce_flags = create_ce_flags(0) | CE_CONFLICTED; | |
3426 | new_ce->ce_namelen = len; | |
3427 | new_ce->ce_mode = ce->ce_mode; | |
3428 | if (add_index_entry(istate, new_ce, ADD_CACHE_SKIP_DFCHECK)) | |
3429 | return error(_("%s: cannot drop to stage #0"), | |
3430 | new_ce->name); | |
3431 | } | |
3432 | return unmerged; | |
3433 | } | |
3434 | ||
3435 | /* | |
3436 | * Returns 1 if the path is an "other" path with respect to | |
3437 | * the index; that is, the path is not mentioned in the index at all, | |
3438 | * either as a file, a directory with some files in the index, | |
3439 | * or as an unmerged entry. | |
3440 | * | |
3441 | * We helpfully remove a trailing "/" from directories so that | |
3442 | * the output of read_directory can be used as-is. | |
3443 | */ | |
3444 | int index_name_is_other(struct index_state *istate, const char *name, | |
3445 | int namelen) | |
3446 | { | |
3447 | int pos; | |
3448 | if (namelen && name[namelen - 1] == '/') | |
3449 | namelen--; | |
3450 | pos = index_name_pos(istate, name, namelen); | |
3451 | if (0 <= pos) | |
3452 | return 0; /* exact match */ | |
3453 | pos = -pos - 1; | |
3454 | if (pos < istate->cache_nr) { | |
3455 | struct cache_entry *ce = istate->cache[pos]; | |
3456 | if (ce_namelen(ce) == namelen && | |
3457 | !memcmp(ce->name, name, namelen)) | |
3458 | return 0; /* Yup, this one exists unmerged */ | |
3459 | } | |
3460 | return 1; | |
3461 | } | |
3462 | ||
3463 | void *read_blob_data_from_index(struct index_state *istate, | |
3464 | const char *path, unsigned long *size) | |
3465 | { | |
3466 | int pos, len; | |
3467 | unsigned long sz; | |
3468 | enum object_type type; | |
3469 | void *data; | |
3470 | ||
3471 | len = strlen(path); | |
3472 | pos = index_name_pos(istate, path, len); | |
3473 | if (pos < 0) { | |
3474 | /* | |
3475 | * We might be in the middle of a merge, in which | |
3476 | * case we would read stage #2 (ours). | |
3477 | */ | |
3478 | int i; | |
3479 | for (i = -pos - 1; | |
3480 | (pos < 0 && i < istate->cache_nr && | |
3481 | !strcmp(istate->cache[i]->name, path)); | |
3482 | i++) | |
3483 | if (ce_stage(istate->cache[i]) == 2) | |
3484 | pos = i; | |
3485 | } | |
3486 | if (pos < 0) | |
3487 | return NULL; | |
3488 | data = repo_read_object_file(the_repository, &istate->cache[pos]->oid, | |
3489 | &type, &sz); | |
3490 | if (!data || type != OBJ_BLOB) { | |
3491 | free(data); | |
3492 | return NULL; | |
3493 | } | |
3494 | if (size) | |
3495 | *size = sz; | |
3496 | return data; | |
3497 | } | |
3498 | ||
3499 | void move_index_extensions(struct index_state *dst, struct index_state *src) | |
3500 | { | |
3501 | dst->untracked = src->untracked; | |
3502 | src->untracked = NULL; | |
3503 | dst->cache_tree = src->cache_tree; | |
3504 | src->cache_tree = NULL; | |
3505 | } | |
3506 | ||
3507 | struct cache_entry *dup_cache_entry(const struct cache_entry *ce, | |
3508 | struct index_state *istate) | |
3509 | { | |
3510 | unsigned int size = ce_size(ce); | |
3511 | int mem_pool_allocated; | |
3512 | struct cache_entry *new_entry = make_empty_cache_entry(istate, ce_namelen(ce)); | |
3513 | mem_pool_allocated = new_entry->mem_pool_allocated; | |
3514 | ||
3515 | memcpy(new_entry, ce, size); | |
3516 | new_entry->mem_pool_allocated = mem_pool_allocated; | |
3517 | return new_entry; | |
3518 | } | |
3519 | ||
3520 | void discard_cache_entry(struct cache_entry *ce) | |
3521 | { | |
3522 | if (ce && should_validate_cache_entries()) | |
3523 | memset(ce, 0xCD, cache_entry_size(ce->ce_namelen)); | |
3524 | ||
3525 | if (ce && ce->mem_pool_allocated) | |
3526 | return; | |
3527 | ||
3528 | free(ce); | |
3529 | } | |
3530 | ||
3531 | int should_validate_cache_entries(void) | |
3532 | { | |
3533 | static int validate_index_cache_entries = -1; | |
3534 | ||
3535 | if (validate_index_cache_entries < 0) { | |
3536 | if (getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES")) | |
3537 | validate_index_cache_entries = 1; | |
3538 | else | |
3539 | validate_index_cache_entries = 0; | |
3540 | } | |
3541 | ||
3542 | return validate_index_cache_entries; | |
3543 | } | |
3544 | ||
3545 | #define EOIE_SIZE (4 + GIT_SHA1_RAWSZ) /* <4-byte offset> + <20-byte hash> */ | |
3546 | #define EOIE_SIZE_WITH_HEADER (4 + 4 + EOIE_SIZE) /* <4-byte signature> + <4-byte length> + EOIE_SIZE */ | |
3547 | ||
3548 | static size_t read_eoie_extension(const char *mmap, size_t mmap_size) | |
3549 | { | |
3550 | /* | |
3551 | * The end of index entries (EOIE) extension is guaranteed to be last | |
3552 | * so that it can be found by scanning backwards from the EOF. | |
3553 | * | |
3554 | * "EOIE" | |
3555 | * <4-byte length> | |
3556 | * <4-byte offset> | |
3557 | * <20-byte hash> | |
3558 | */ | |
3559 | const char *index, *eoie; | |
3560 | uint32_t extsize; | |
3561 | size_t offset, src_offset; | |
3562 | unsigned char hash[GIT_MAX_RAWSZ]; | |
3563 | struct git_hash_ctx c; | |
3564 | ||
3565 | /* ensure we have an index big enough to contain an EOIE extension */ | |
3566 | if (mmap_size < sizeof(struct cache_header) + EOIE_SIZE_WITH_HEADER + the_hash_algo->rawsz) | |
3567 | return 0; | |
3568 | ||
3569 | /* validate the extension signature */ | |
3570 | index = eoie = mmap + mmap_size - EOIE_SIZE_WITH_HEADER - the_hash_algo->rawsz; | |
3571 | if (CACHE_EXT(index) != CACHE_EXT_ENDOFINDEXENTRIES) | |
3572 | return 0; | |
3573 | index += sizeof(uint32_t); | |
3574 | ||
3575 | /* validate the extension size */ | |
3576 | extsize = get_be32(index); | |
3577 | if (extsize != EOIE_SIZE) | |
3578 | return 0; | |
3579 | index += sizeof(uint32_t); | |
3580 | ||
3581 | /* | |
3582 | * Validate the offset we're going to look for the first extension | |
3583 | * signature is after the index header and before the eoie extension. | |
3584 | */ | |
3585 | offset = get_be32(index); | |
3586 | if (mmap + offset < mmap + sizeof(struct cache_header)) | |
3587 | return 0; | |
3588 | if (mmap + offset >= eoie) | |
3589 | return 0; | |
3590 | index += sizeof(uint32_t); | |
3591 | ||
3592 | /* | |
3593 | * The hash is computed over extension types and their sizes (but not | |
3594 | * their contents). E.g. if we have "TREE" extension that is N-bytes | |
3595 | * long, "REUC" extension that is M-bytes long, followed by "EOIE", | |
3596 | * then the hash would be: | |
3597 | * | |
3598 | * SHA-1("TREE" + <binary representation of N> + | |
3599 | * "REUC" + <binary representation of M>) | |
3600 | */ | |
3601 | src_offset = offset; | |
3602 | the_hash_algo->init_fn(&c); | |
3603 | while (src_offset < mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER) { | |
3604 | /* After an array of active_nr index entries, | |
3605 | * there can be arbitrary number of extended | |
3606 | * sections, each of which is prefixed with | |
3607 | * extension name (4-byte) and section length | |
3608 | * in 4-byte network byte order. | |
3609 | */ | |
3610 | uint32_t extsize; | |
3611 | memcpy(&extsize, mmap + src_offset + 4, 4); | |
3612 | extsize = ntohl(extsize); | |
3613 | ||
3614 | /* verify the extension size isn't so large it will wrap around */ | |
3615 | if (src_offset + 8 + extsize < src_offset) | |
3616 | return 0; | |
3617 | ||
3618 | git_hash_update(&c, mmap + src_offset, 8); | |
3619 | ||
3620 | src_offset += 8; | |
3621 | src_offset += extsize; | |
3622 | } | |
3623 | git_hash_final(hash, &c); | |
3624 | if (!hasheq(hash, (const unsigned char *)index, the_repository->hash_algo)) | |
3625 | return 0; | |
3626 | ||
3627 | /* Validate that the extension offsets returned us back to the eoie extension. */ | |
3628 | if (src_offset != mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER) | |
3629 | return 0; | |
3630 | ||
3631 | return offset; | |
3632 | } | |
3633 | ||
3634 | static void write_eoie_extension(struct strbuf *sb, struct git_hash_ctx *eoie_context, size_t offset) | |
3635 | { | |
3636 | uint32_t buffer; | |
3637 | unsigned char hash[GIT_MAX_RAWSZ]; | |
3638 | ||
3639 | /* offset */ | |
3640 | put_be32(&buffer, offset); | |
3641 | strbuf_add(sb, &buffer, sizeof(uint32_t)); | |
3642 | ||
3643 | /* hash */ | |
3644 | git_hash_final(hash, eoie_context); | |
3645 | strbuf_add(sb, hash, the_hash_algo->rawsz); | |
3646 | } | |
3647 | ||
3648 | #define IEOT_VERSION (1) | |
3649 | ||
3650 | static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset) | |
3651 | { | |
3652 | const char *index = NULL; | |
3653 | uint32_t extsize, ext_version; | |
3654 | struct index_entry_offset_table *ieot; | |
3655 | int i, nr; | |
3656 | ||
3657 | /* find the IEOT extension */ | |
3658 | if (!offset) | |
3659 | return NULL; | |
3660 | while (offset <= mmap_size - the_hash_algo->rawsz - 8) { | |
3661 | extsize = get_be32(mmap + offset + 4); | |
3662 | if (CACHE_EXT((mmap + offset)) == CACHE_EXT_INDEXENTRYOFFSETTABLE) { | |
3663 | index = mmap + offset + 4 + 4; | |
3664 | break; | |
3665 | } | |
3666 | offset += 8; | |
3667 | offset += extsize; | |
3668 | } | |
3669 | if (!index) | |
3670 | return NULL; | |
3671 | ||
3672 | /* validate the version is IEOT_VERSION */ | |
3673 | ext_version = get_be32(index); | |
3674 | if (ext_version != IEOT_VERSION) { | |
3675 | error("invalid IEOT version %d", ext_version); | |
3676 | return NULL; | |
3677 | } | |
3678 | index += sizeof(uint32_t); | |
3679 | ||
3680 | /* extension size - version bytes / bytes per entry */ | |
3681 | nr = (extsize - sizeof(uint32_t)) / (sizeof(uint32_t) + sizeof(uint32_t)); | |
3682 | if (!nr) { | |
3683 | error("invalid number of IEOT entries %d", nr); | |
3684 | return NULL; | |
3685 | } | |
3686 | ieot = xmalloc(sizeof(struct index_entry_offset_table) | |
3687 | + (nr * sizeof(struct index_entry_offset))); | |
3688 | ieot->nr = nr; | |
3689 | for (i = 0; i < nr; i++) { | |
3690 | ieot->entries[i].offset = get_be32(index); | |
3691 | index += sizeof(uint32_t); | |
3692 | ieot->entries[i].nr = get_be32(index); | |
3693 | index += sizeof(uint32_t); | |
3694 | } | |
3695 | ||
3696 | return ieot; | |
3697 | } | |
3698 | ||
3699 | static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot) | |
3700 | { | |
3701 | uint32_t buffer; | |
3702 | int i; | |
3703 | ||
3704 | /* version */ | |
3705 | put_be32(&buffer, IEOT_VERSION); | |
3706 | strbuf_add(sb, &buffer, sizeof(uint32_t)); | |
3707 | ||
3708 | /* ieot */ | |
3709 | for (i = 0; i < ieot->nr; i++) { | |
3710 | ||
3711 | /* offset */ | |
3712 | put_be32(&buffer, ieot->entries[i].offset); | |
3713 | strbuf_add(sb, &buffer, sizeof(uint32_t)); | |
3714 | ||
3715 | /* count */ | |
3716 | put_be32(&buffer, ieot->entries[i].nr); | |
3717 | strbuf_add(sb, &buffer, sizeof(uint32_t)); | |
3718 | } | |
3719 | } | |
3720 | ||
3721 | void prefetch_cache_entries(const struct index_state *istate, | |
3722 | must_prefetch_predicate must_prefetch) | |
3723 | { | |
3724 | int i; | |
3725 | struct oid_array to_fetch = OID_ARRAY_INIT; | |
3726 | ||
3727 | for (i = 0; i < istate->cache_nr; i++) { | |
3728 | struct cache_entry *ce = istate->cache[i]; | |
3729 | ||
3730 | if (S_ISGITLINK(ce->ce_mode) || !must_prefetch(ce)) | |
3731 | continue; | |
3732 | if (!oid_object_info_extended(the_repository, &ce->oid, | |
3733 | NULL, | |
3734 | OBJECT_INFO_FOR_PREFETCH)) | |
3735 | continue; | |
3736 | oid_array_append(&to_fetch, &ce->oid); | |
3737 | } | |
3738 | promisor_remote_get_direct(the_repository, | |
3739 | to_fetch.oid, to_fetch.nr); | |
3740 | oid_array_clear(&to_fetch); | |
3741 | } | |
3742 | ||
3743 | static int read_one_entry_opt(struct index_state *istate, | |
3744 | const struct object_id *oid, | |
3745 | struct strbuf *base, | |
3746 | const char *pathname, | |
3747 | unsigned mode, int opt) | |
3748 | { | |
3749 | int len; | |
3750 | struct cache_entry *ce; | |
3751 | ||
3752 | if (S_ISDIR(mode)) | |
3753 | return READ_TREE_RECURSIVE; | |
3754 | ||
3755 | len = strlen(pathname); | |
3756 | ce = make_empty_cache_entry(istate, base->len + len); | |
3757 | ||
3758 | ce->ce_mode = create_ce_mode(mode); | |
3759 | ce->ce_flags = create_ce_flags(1); | |
3760 | ce->ce_namelen = base->len + len; | |
3761 | memcpy(ce->name, base->buf, base->len); | |
3762 | memcpy(ce->name + base->len, pathname, len+1); | |
3763 | oidcpy(&ce->oid, oid); | |
3764 | return add_index_entry(istate, ce, opt); | |
3765 | } | |
3766 | ||
3767 | static int read_one_entry(const struct object_id *oid, struct strbuf *base, | |
3768 | const char *pathname, unsigned mode, | |
3769 | void *context) | |
3770 | { | |
3771 | struct index_state *istate = context; | |
3772 | return read_one_entry_opt(istate, oid, base, pathname, | |
3773 | mode, | |
3774 | ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK); | |
3775 | } | |
3776 | ||
3777 | /* | |
3778 | * This is used when the caller knows there is no existing entries at | |
3779 | * the stage that will conflict with the entry being added. | |
3780 | */ | |
3781 | static int read_one_entry_quick(const struct object_id *oid, struct strbuf *base, | |
3782 | const char *pathname, unsigned mode, | |
3783 | void *context) | |
3784 | { | |
3785 | struct index_state *istate = context; | |
3786 | return read_one_entry_opt(istate, oid, base, pathname, | |
3787 | mode, ADD_CACHE_JUST_APPEND); | |
3788 | } | |
3789 | ||
3790 | /* | |
3791 | * Read the tree specified with --with-tree option | |
3792 | * (typically, HEAD) into stage #1 and then | |
3793 | * squash them down to stage #0. This is used for | |
3794 | * --error-unmatch to list and check the path patterns | |
3795 | * that were given from the command line. We are not | |
3796 | * going to write this index out. | |
3797 | */ | |
3798 | void overlay_tree_on_index(struct index_state *istate, | |
3799 | const char *tree_name, const char *prefix) | |
3800 | { | |
3801 | struct tree *tree; | |
3802 | struct object_id oid; | |
3803 | struct pathspec pathspec; | |
3804 | struct cache_entry *last_stage0 = NULL; | |
3805 | int i; | |
3806 | read_tree_fn_t fn = NULL; | |
3807 | int err; | |
3808 | ||
3809 | if (repo_get_oid(the_repository, tree_name, &oid)) | |
3810 | die("tree-ish %s not found.", tree_name); | |
3811 | tree = parse_tree_indirect(&oid); | |
3812 | if (!tree) | |
3813 | die("bad tree-ish %s", tree_name); | |
3814 | ||
3815 | /* Hoist the unmerged entries up to stage #3 to make room */ | |
3816 | /* TODO: audit for interaction with sparse-index. */ | |
3817 | ensure_full_index(istate); | |
3818 | for (i = 0; i < istate->cache_nr; i++) { | |
3819 | struct cache_entry *ce = istate->cache[i]; | |
3820 | if (!ce_stage(ce)) | |
3821 | continue; | |
3822 | ce->ce_flags |= CE_STAGEMASK; | |
3823 | } | |
3824 | ||
3825 | if (prefix) { | |
3826 | static const char *(matchbuf[1]); | |
3827 | matchbuf[0] = NULL; | |
3828 | parse_pathspec(&pathspec, PATHSPEC_ALL_MAGIC, | |
3829 | PATHSPEC_PREFER_CWD, prefix, matchbuf); | |
3830 | } else | |
3831 | memset(&pathspec, 0, sizeof(pathspec)); | |
3832 | ||
3833 | /* | |
3834 | * See if we have cache entry at the stage. If so, | |
3835 | * do it the original slow way, otherwise, append and then | |
3836 | * sort at the end. | |
3837 | */ | |
3838 | for (i = 0; !fn && i < istate->cache_nr; i++) { | |
3839 | const struct cache_entry *ce = istate->cache[i]; | |
3840 | if (ce_stage(ce) == 1) | |
3841 | fn = read_one_entry; | |
3842 | } | |
3843 | ||
3844 | if (!fn) | |
3845 | fn = read_one_entry_quick; | |
3846 | err = read_tree(the_repository, tree, &pathspec, fn, istate); | |
3847 | clear_pathspec(&pathspec); | |
3848 | if (err) | |
3849 | die("unable to read tree entries %s", tree_name); | |
3850 | ||
3851 | /* | |
3852 | * Sort the cache entry -- we need to nuke the cache tree, though. | |
3853 | */ | |
3854 | if (fn == read_one_entry_quick) { | |
3855 | cache_tree_free(&istate->cache_tree); | |
3856 | QSORT(istate->cache, istate->cache_nr, cmp_cache_name_compare); | |
3857 | } | |
3858 | ||
3859 | for (i = 0; i < istate->cache_nr; i++) { | |
3860 | struct cache_entry *ce = istate->cache[i]; | |
3861 | switch (ce_stage(ce)) { | |
3862 | case 0: | |
3863 | last_stage0 = ce; | |
3864 | /* fallthru */ | |
3865 | default: | |
3866 | continue; | |
3867 | case 1: | |
3868 | /* | |
3869 | * If there is stage #0 entry for this, we do not | |
3870 | * need to show it. We use CE_UPDATE bit to mark | |
3871 | * such an entry. | |
3872 | */ | |
3873 | if (last_stage0 && | |
3874 | !strcmp(last_stage0->name, ce->name)) | |
3875 | ce->ce_flags |= CE_UPDATE; | |
3876 | } | |
3877 | } | |
3878 | } | |
3879 | ||
3880 | struct update_callback_data { | |
3881 | struct index_state *index; | |
3882 | int include_sparse; | |
3883 | int flags; | |
3884 | int add_errors; | |
3885 | }; | |
3886 | ||
3887 | static int fix_unmerged_status(struct diff_filepair *p, | |
3888 | struct update_callback_data *data) | |
3889 | { | |
3890 | if (p->status != DIFF_STATUS_UNMERGED) | |
3891 | return p->status; | |
3892 | if (!(data->flags & ADD_CACHE_IGNORE_REMOVAL) && !p->two->mode) | |
3893 | /* | |
3894 | * This is not an explicit add request, and the | |
3895 | * path is missing from the working tree (deleted) | |
3896 | */ | |
3897 | return DIFF_STATUS_DELETED; | |
3898 | else | |
3899 | /* | |
3900 | * Either an explicit add request, or path exists | |
3901 | * in the working tree. An attempt to explicitly | |
3902 | * add a path that does not exist in the working tree | |
3903 | * will be caught as an error by the caller immediately. | |
3904 | */ | |
3905 | return DIFF_STATUS_MODIFIED; | |
3906 | } | |
3907 | ||
3908 | static void update_callback(struct diff_queue_struct *q, | |
3909 | struct diff_options *opt UNUSED, void *cbdata) | |
3910 | { | |
3911 | int i; | |
3912 | struct update_callback_data *data = cbdata; | |
3913 | ||
3914 | for (i = 0; i < q->nr; i++) { | |
3915 | struct diff_filepair *p = q->queue[i]; | |
3916 | const char *path = p->one->path; | |
3917 | ||
3918 | if (!data->include_sparse && | |
3919 | !path_in_sparse_checkout(path, data->index)) | |
3920 | continue; | |
3921 | ||
3922 | switch (fix_unmerged_status(p, data)) { | |
3923 | default: | |
3924 | die(_("unexpected diff status %c"), p->status); | |
3925 | case DIFF_STATUS_MODIFIED: | |
3926 | case DIFF_STATUS_TYPE_CHANGED: | |
3927 | if (add_file_to_index(data->index, path, data->flags)) { | |
3928 | if (!(data->flags & ADD_CACHE_IGNORE_ERRORS)) | |
3929 | die(_("updating files failed")); | |
3930 | data->add_errors++; | |
3931 | } | |
3932 | break; | |
3933 | case DIFF_STATUS_DELETED: | |
3934 | if (data->flags & ADD_CACHE_IGNORE_REMOVAL) | |
3935 | break; | |
3936 | if (!(data->flags & ADD_CACHE_PRETEND)) | |
3937 | remove_file_from_index(data->index, path); | |
3938 | if (data->flags & (ADD_CACHE_PRETEND|ADD_CACHE_VERBOSE)) | |
3939 | printf(_("remove '%s'\n"), path); | |
3940 | break; | |
3941 | } | |
3942 | } | |
3943 | } | |
3944 | ||
3945 | int add_files_to_cache(struct repository *repo, const char *prefix, | |
3946 | const struct pathspec *pathspec, char *ps_matched, | |
3947 | int include_sparse, int flags) | |
3948 | { | |
3949 | struct update_callback_data data; | |
3950 | struct rev_info rev; | |
3951 | ||
3952 | memset(&data, 0, sizeof(data)); | |
3953 | data.index = repo->index; | |
3954 | data.include_sparse = include_sparse; | |
3955 | data.flags = flags; | |
3956 | ||
3957 | repo_init_revisions(repo, &rev, prefix); | |
3958 | setup_revisions(0, NULL, &rev, NULL); | |
3959 | if (pathspec) { | |
3960 | copy_pathspec(&rev.prune_data, pathspec); | |
3961 | rev.ps_matched = ps_matched; | |
3962 | } | |
3963 | rev.diffopt.output_format = DIFF_FORMAT_CALLBACK; | |
3964 | rev.diffopt.format_callback = update_callback; | |
3965 | rev.diffopt.format_callback_data = &data; | |
3966 | rev.diffopt.flags.override_submodule_config = 1; | |
3967 | rev.max_count = 0; /* do not compare unmerged paths with stage #2 */ | |
3968 | ||
3969 | /* | |
3970 | * Use an ODB transaction to optimize adding multiple objects. | |
3971 | * This function is invoked from commands other than 'add', which | |
3972 | * may not have their own transaction active. | |
3973 | */ | |
3974 | begin_odb_transaction(); | |
3975 | run_diff_files(&rev, DIFF_RACY_IS_MODIFIED); | |
3976 | end_odb_transaction(); | |
3977 | ||
3978 | release_revisions(&rev); | |
3979 | return !!data.add_errors; | |
3980 | } |