]>
Commit | Line | Data |
---|---|---|
8bc9a0c7 LT |
1 | /* |
2 | * GIT - The information manager from hell | |
3 | * | |
4 | * Copyright (C) Linus Torvalds, 2005 | |
5 | */ | |
e7da9385 PS |
6 | |
7 | #define USE_THE_REPOSITORY_VARIABLE | |
41f43b82 | 8 | #define DISABLE_SIGN_COMPARE_WARNINGS |
e7da9385 | 9 | |
bc5c5ec0 | 10 | #include "git-compat-util.h" |
6cee5ebc | 11 | #include "bulk-checkin.h" |
b2141fc1 | 12 | #include "config.h" |
d4a4f929 | 13 | #include "date.h" |
cffbfad5 EN |
14 | #include "diff.h" |
15 | #include "diffcore.h" | |
41771fa4 | 16 | #include "hex.h" |
f6ecc62d | 17 | #include "tempfile.h" |
697cc8ef | 18 | #include "lockfile.h" |
bad68ec9 | 19 | #include "cache-tree.h" |
f35a6d3b | 20 | #include "refs.h" |
d616813d | 21 | #include "dir.h" |
87bed179 | 22 | #include "object-file.h" |
68cd492a | 23 | #include "object-store.h" |
6f2d7430 | 24 | #include "oid-array.h" |
041aee31 JH |
25 | #include "tree.h" |
26 | #include "commit.h" | |
32a8f510 | 27 | #include "environment.h" |
f394e093 | 28 | #include "gettext.h" |
5bc07225 | 29 | #include "mem-pool.h" |
f5653856 | 30 | #include "name-hash.h" |
dabab1d6 | 31 | #include "object-name.h" |
c339932b | 32 | #include "path.h" |
fbffdfb1 | 33 | #include "preload-index.h" |
08c46a49 | 34 | #include "read-cache.h" |
246deeac | 35 | #include "repository.h" |
cfc5789a | 36 | #include "resolve-undo.h" |
6cee5ebc | 37 | #include "revision.h" |
6c9cd161 | 38 | #include "strbuf.h" |
74ea5c95 | 39 | #include "trace2.h" |
6c9cd161 | 40 | #include "varint.h" |
5fc2fc8f | 41 | #include "split-index.h" |
cb2a5135 | 42 | #include "symlinks.h" |
a42643aa | 43 | #include "utf8.h" |
883e248b | 44 | #include "fsmonitor.h" |
abb4bb83 | 45 | #include "thread-utils.h" |
ae9af122 | 46 | #include "progress.h" |
6e773527 | 47 | #include "sparse-index.h" |
410334ed | 48 | #include "csum-file.h" |
b2896d27 | 49 | #include "promisor-remote.h" |
dbb1c613 | 50 | #include "hook.h" |
bad68ec9 | 51 | |
b60e188c TG |
52 | /* Mask for the name length in ce_flags in the on-disk index */ |
53 | ||
54 | #define CE_NAMEMASK (0x0fff) | |
55 | ||
bad68ec9 JH |
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" */ | |
b659b49b | 67 | #define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */ |
5fc2fc8f | 68 | #define CACHE_EXT_LINK 0x6c696e6b /* "link" */ |
83c094ad | 69 | #define CACHE_EXT_UNTRACKED 0x554E5452 /* "UNTR" */ |
883e248b | 70 | #define CACHE_EXT_FSMONITOR 0x46534D4E /* "FSMN" */ |
3b1d9e04 | 71 | #define CACHE_EXT_ENDOFINDEXENTRIES 0x454F4945 /* "EOIE" */ |
3255089a | 72 | #define CACHE_EXT_INDEXENTRYOFFSETTABLE 0x49454F54 /* "IEOT" */ |
cd42415f | 73 | #define CACHE_EXT_SPARSE_DIRECTORIES 0x73646972 /* "sdir" */ |
5fc2fc8f NTND |
74 | |
75 | /* changes that can be kept in $GIT_DIR/index (basically all extensions) */ | |
e0cf0d7d | 76 | #define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \ |
c18b80a0 | 77 | CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \ |
883e248b | 78 | SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED) |
e83c5163 | 79 | |
8e72d675 JM |
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 | ||
20ec2d03 VD |
91 | enum index_search_mode { |
92 | NO_EXPAND_SPARSE = 0, | |
93 | EXPAND_SPARSE = 1 | |
94 | }; | |
95 | ||
8e72d675 JM |
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 | ||
44c7e1a7 EN |
121 | if (!*pool_ptr) { |
122 | *pool_ptr = xmalloc(sizeof(**pool_ptr)); | |
123 | mem_pool_init(*pool_ptr, 0); | |
124 | } | |
8e72d675 JM |
125 | |
126 | return *pool_ptr; | |
127 | } | |
128 | ||
626f35c8 | 129 | static const char *alternate_index_output; |
8fd2cb40 | 130 | |
9cb76b8c JH |
131 | static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce) |
132 | { | |
4300f844 | 133 | if (S_ISSPARSEDIR(ce->ce_mode)) |
9fadb373 | 134 | istate->sparse_index = INDEX_COLLAPSED; |
4300f844 | 135 | |
9cb76b8c | 136 | istate->cache[nr] = ce; |
96872bc2 | 137 | add_name_hash(istate, ce); |
9cb76b8c JH |
138 | } |
139 | ||
cf558704 LT |
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 | ||
078a58e8 | 144 | replace_index_entry_in_base(istate, old, ce); |
2092678c | 145 | remove_name_hash(istate, old); |
a849735b | 146 | discard_cache_entry(old); |
0e267b7a | 147 | ce->ce_flags &= ~CE_HASHED; |
a22c6371 | 148 | set_index_entry(istate, nr, ce); |
078a58e8 | 149 | ce->ce_flags |= CE_UPDATE_IN_BASE; |
883e248b | 150 | mark_fsmonitor_invalid(istate, ce); |
e636a7b4 | 151 | istate->cache_changed |= CE_ENTRY_CHANGED; |
cf558704 LT |
152 | } |
153 | ||
81dc2307 PB |
154 | void rename_index_entry_at(struct index_state *istate, int nr, const char *new_name) |
155 | { | |
b7f9130a | 156 | struct cache_entry *old_entry = istate->cache[nr], *new_entry, *refreshed; |
81dc2307 PB |
157 | int namelen = strlen(new_name); |
158 | ||
a849735b | 159 | new_entry = make_empty_cache_entry(istate, namelen); |
285c2e25 BW |
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); | |
81dc2307 | 165 | |
285c2e25 BW |
166 | cache_tree_invalidate_path(istate, old_entry->name); |
167 | untracked_cache_remove_from_index(istate, old_entry->name); | |
81dc2307 | 168 | remove_index_entry_at(istate, nr); |
b7f9130a VD |
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); | |
81dc2307 PB |
183 | } |
184 | ||
415e96c8 JH |
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 | */ | |
d4c0a3ac | 190 | void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st) |
415e96c8 | 191 | { |
c21d39d7 | 192 | fill_stat_data(&ce->ce_stat_data, st); |
5f73076c JH |
193 | |
194 | if (assume_unchanged) | |
7a51ed66 | 195 | ce->ce_flags |= CE_VALID; |
eadb5831 | 196 | |
883e248b | 197 | if (S_ISREG(st->st_mode)) { |
eadb5831 | 198 | ce_mark_uptodate(ce); |
b5a81697 | 199 | mark_fsmonitor_valid(istate, ce); |
883e248b | 200 | } |
415e96c8 JH |
201 | } |
202 | ||
c33fa871 JH |
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 | ||
58bf2a4c NTND |
230 | static int ce_compare_data(struct index_state *istate, |
231 | const struct cache_entry *ce, | |
232 | struct stat *st) | |
29e4d363 JH |
233 | { |
234 | int match = -1; | |
1b8ac5ea | 235 | int fd = git_open_cloexec(ce->name, O_RDONLY); |
29e4d363 JH |
236 | |
237 | if (fd >= 0) { | |
bebfecb9 | 238 | struct object_id oid; |
58bf2a4c | 239 | if (!index_fd(istate, &oid, fd, st, OBJ_BLOB, ce->name, 0)) |
6a29d7b7 | 240 | match = !oideq(&oid, &ce->oid); |
7f8508e8 | 241 | /* index_fd() closed the file descriptor already */ |
29e4d363 JH |
242 | } |
243 | return match; | |
244 | } | |
245 | ||
21a6b9fa | 246 | static int ce_compare_link(const struct cache_entry *ce, size_t expected_size) |
29e4d363 JH |
247 | { |
248 | int match = -1; | |
29e4d363 JH |
249 | void *buffer; |
250 | unsigned long size; | |
21666f1a | 251 | enum object_type type; |
a60272b3 | 252 | struct strbuf sb = STRBUF_INIT; |
29e4d363 | 253 | |
a60272b3 | 254 | if (strbuf_readlink(&sb, ce->name, expected_size)) |
29e4d363 | 255 | return -1; |
a60272b3 | 256 | |
bc726bd0 | 257 | buffer = repo_read_object_file(the_repository, &ce->oid, &type, &size); |
a60272b3 LT |
258 | if (buffer) { |
259 | if (size == sb.len) | |
260 | match = memcmp(buffer, sb.buf, size); | |
261 | free(buffer); | |
29e4d363 | 262 | } |
a60272b3 | 263 | strbuf_release(&sb); |
29e4d363 JH |
264 | return match; |
265 | } | |
266 | ||
21a6b9fa | 267 | static int ce_compare_gitlink(const struct cache_entry *ce) |
f35a6d3b | 268 | { |
1053fe82 | 269 | struct object_id oid; |
f35a6d3b LT |
270 | |
271 | /* | |
272 | * We don't actually require that the .git directory | |
302b9282 | 273 | * under GITLINK directory be a valid git directory. It |
f35a6d3b LT |
274 | * might even be missing (in case nobody populated that |
275 | * sub-project). | |
276 | * | |
277 | * If so, we consider it always to match. | |
278 | */ | |
e19488a6 PS |
279 | if (repo_resolve_gitlink_ref(the_repository, ce->name, |
280 | "HEAD", &oid) < 0) | |
f35a6d3b | 281 | return 0; |
6a29d7b7 | 282 | return !oideq(&oid, &ce->oid); |
f35a6d3b LT |
283 | } |
284 | ||
58bf2a4c NTND |
285 | static int ce_modified_check_fs(struct index_state *istate, |
286 | const struct cache_entry *ce, | |
287 | struct stat *st) | |
29e4d363 JH |
288 | { |
289 | switch (st->st_mode & S_IFMT) { | |
290 | case S_IFREG: | |
58bf2a4c | 291 | if (ce_compare_data(istate, ce, st)) |
29e4d363 JH |
292 | return DATA_CHANGED; |
293 | break; | |
294 | case S_IFLNK: | |
dc49cd76 | 295 | if (ce_compare_link(ce, xsize_t(st->st_size))) |
29e4d363 JH |
296 | return DATA_CHANGED; |
297 | break; | |
a8ee75bc | 298 | case S_IFDIR: |
7a51ed66 | 299 | if (S_ISGITLINK(ce->ce_mode)) |
c70115b4 | 300 | return ce_compare_gitlink(ce) ? DATA_CHANGED : 0; |
1cf01a34 | 301 | /* else fallthrough */ |
29e4d363 JH |
302 | default: |
303 | return TYPE_CHANGED; | |
304 | } | |
305 | return 0; | |
306 | } | |
307 | ||
21a6b9fa | 308 | static int ce_match_stat_basic(const struct cache_entry *ce, struct stat *st) |
734aab75 LT |
309 | { |
310 | unsigned int changed = 0; | |
311 | ||
7a51ed66 LT |
312 | if (ce->ce_flags & CE_REMOVE) |
313 | return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED; | |
314 | ||
315 | switch (ce->ce_mode & S_IFMT) { | |
8ae0a8c5 KS |
316 | case S_IFREG: |
317 | changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0; | |
3e09cdfd JH |
318 | /* We consider only the owner x bit to be relevant for |
319 | * "mode changes" | |
320 | */ | |
321 | if (trust_executable_bit && | |
7a51ed66 | 322 | (0100 & (ce->ce_mode ^ st->st_mode))) |
ffbe1add | 323 | changed |= MODE_CHANGED; |
8ae0a8c5 KS |
324 | break; |
325 | case S_IFLNK: | |
78a8d641 JS |
326 | if (!S_ISLNK(st->st_mode) && |
327 | (has_symlinks || !S_ISREG(st->st_mode))) | |
328 | changed |= TYPE_CHANGED; | |
8ae0a8c5 | 329 | break; |
302b9282 | 330 | case S_IFGITLINK: |
c70115b4 | 331 | /* We ignore most of the st_xxx fields for gitlinks */ |
f35a6d3b LT |
332 | if (!S_ISDIR(st->st_mode)) |
333 | changed |= TYPE_CHANGED; | |
334 | else if (ce_compare_gitlink(ce)) | |
335 | changed |= DATA_CHANGED; | |
a8ee75bc | 336 | return changed; |
8ae0a8c5 | 337 | default: |
391408e5 | 338 | BUG("unsupported ce_mode: %o", ce->ce_mode); |
8ae0a8c5 | 339 | } |
2cb45e95 | 340 | |
c21d39d7 | 341 | changed |= match_stat_data(&ce->ce_stat_data, st); |
b0391890 | 342 | |
f49c2c22 | 343 | /* Racily smudged entry? */ |
c21d39d7 | 344 | if (!ce->ce_stat_data.sd_size) { |
9c34eb93 | 345 | if (!is_empty_blob_oid(&ce->oid, the_repository->hash_algo)) |
f49c2c22 LT |
346 | changed |= DATA_CHANGED; |
347 | } | |
348 | ||
407c8eb0 JH |
349 | return changed; |
350 | } | |
351 | ||
2bb4cda1 NTND |
352 | static int is_racy_stat(const struct index_state *istate, |
353 | const struct stat_data *sd) | |
6d91da6d | 354 | { |
2bb4cda1 | 355 | return (istate->timestamp.sec && |
fba2f38a KB |
356 | #ifdef USE_NSEC |
357 | /* nanosecond timestamped files can also be racy! */ | |
2bb4cda1 NTND |
358 | (istate->timestamp.sec < sd->sd_mtime.sec || |
359 | (istate->timestamp.sec == sd->sd_mtime.sec && | |
360 | istate->timestamp.nsec <= sd->sd_mtime.nsec)) | |
fba2f38a | 361 | #else |
2bb4cda1 | 362 | istate->timestamp.sec <= sd->sd_mtime.sec |
fba2f38a | 363 | #endif |
2bb4cda1 NTND |
364 | ); |
365 | } | |
366 | ||
5581a019 | 367 | int is_racy_timestamp(const struct index_state *istate, |
2bb4cda1 NTND |
368 | const struct cache_entry *ce) |
369 | { | |
370 | return (!S_ISGITLINK(ce->ce_mode) && | |
371 | is_racy_stat(istate, &ce->ce_stat_data)); | |
6d91da6d JH |
372 | } |
373 | ||
ed4efab1 NTND |
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); | |
6d91da6d JH |
380 | } |
381 | ||
883e248b | 382 | int ie_match_stat(struct index_state *istate, |
21a6b9fa | 383 | const struct cache_entry *ce, struct stat *st, |
4bd5b7da | 384 | unsigned int options) |
407c8eb0 | 385 | { |
5f73076c | 386 | unsigned int changed; |
4bd5b7da | 387 | int ignore_valid = options & CE_MATCH_IGNORE_VALID; |
56cac48c | 388 | int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; |
4bd5b7da | 389 | int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY; |
883e248b | 390 | int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR; |
5f73076c | 391 | |
883e248b BP |
392 | if (!ignore_fsmonitor) |
393 | refresh_fsmonitor(istate); | |
5f73076c JH |
394 | /* |
395 | * If it's marked as always valid in the index, it's | |
396 | * valid whatever the checked-out copy says. | |
56cac48c NTND |
397 | * |
398 | * skip-worktree has the same effect with higher precedence | |
5f73076c | 399 | */ |
56cac48c NTND |
400 | if (!ignore_skip_worktree && ce_skip_worktree(ce)) |
401 | return 0; | |
7a51ed66 | 402 | if (!ignore_valid && (ce->ce_flags & CE_VALID)) |
5f73076c | 403 | return 0; |
883e248b BP |
404 | if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) |
405 | return 0; | |
5f73076c | 406 | |
331fcb59 JH |
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 | */ | |
895ff3b2 | 412 | if (ce_intent_to_add(ce)) |
331fcb59 JH |
413 | return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED; |
414 | ||
5f73076c | 415 | changed = ce_match_stat_basic(ce, st); |
407c8eb0 | 416 | |
29e4d363 JH |
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 | |
5f73076c | 431 | * carefully than others. |
29e4d363 | 432 | */ |
6d91da6d | 433 | if (!changed && is_racy_timestamp(istate, ce)) { |
42f77406 JH |
434 | if (assume_racy_is_modified) |
435 | changed |= DATA_CHANGED; | |
436 | else | |
58bf2a4c | 437 | changed |= ce_modified_check_fs(istate, ce, st); |
42f77406 | 438 | } |
b0391890 | 439 | |
29e4d363 | 440 | return changed; |
b0391890 JH |
441 | } |
442 | ||
883e248b | 443 | int ie_modified(struct index_state *istate, |
21a6b9fa RS |
444 | const struct cache_entry *ce, |
445 | struct stat *st, unsigned int options) | |
b0391890 | 446 | { |
29e4d363 | 447 | int changed, changed_fs; |
4bd5b7da JH |
448 | |
449 | changed = ie_match_stat(istate, ce, st, options); | |
b0391890 JH |
450 | if (!changed) |
451 | return 0; | |
b0391890 JH |
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 | ||
c70115b4 JH |
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. | |
b0391890 | 472 | */ |
c70115b4 | 473 | if ((changed & DATA_CHANGED) && |
c21d39d7 | 474 | (S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size != 0)) |
b0391890 JH |
475 | return changed; |
476 | ||
58bf2a4c | 477 | changed_fs = ce_modified_check_fs(istate, ce, st); |
29e4d363 JH |
478 | if (changed_fs) |
479 | return changed | changed_fs; | |
b0391890 JH |
480 | return 0; |
481 | } | |
482 | ||
aabc5617 EN |
483 | static int cache_name_stage_compare(const char *name1, int len1, int stage1, |
484 | const char *name2, int len2, int stage2) | |
958ba6c9 | 485 | { |
958ba6c9 LT |
486 | int cmp; |
487 | ||
ccdd4a0f | 488 | cmp = name_compare(name1, len1, name2, len2); |
0ab9e1e8 LT |
489 | if (cmp) |
490 | return cmp; | |
0ab9e1e8 | 491 | |
b60e188c | 492 | if (stage1 < stage2) |
eb38c22f | 493 | return -1; |
b60e188c | 494 | if (stage1 > stage2) |
eb38c22f | 495 | return 1; |
ccdd4a0f JM |
496 | return 0; |
497 | } | |
498 | ||
aabc5617 | 499 | int cmp_cache_name_compare(const void *a_, const void *b_) |
ccdd4a0f | 500 | { |
aabc5617 | 501 | const struct cache_entry *ce1, *ce2; |
ccdd4a0f | 502 | |
aabc5617 EN |
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)); | |
eb38c22f LT |
507 | } |
508 | ||
20ec2d03 VD |
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) | |
eb38c22f LT |
513 | { |
514 | int first, last; | |
515 | ||
516 | first = 0; | |
4aab5b46 | 517 | last = istate->cache_nr; |
eb38c22f | 518 | while (last > first) { |
568a05c5 | 519 | int next = first + ((last - first) >> 1); |
4aab5b46 | 520 | struct cache_entry *ce = istate->cache[next]; |
b60e188c | 521 | int cmp = cache_name_stage_compare(name, namelen, stage, ce->name, ce_namelen(ce), ce_stage(ce)); |
eb38c22f | 522 | if (!cmp) |
76e7f4ec | 523 | return next; |
eb38c22f LT |
524 | if (cmp < 0) { |
525 | last = next; | |
526 | continue; | |
527 | } | |
528 | first = next+1; | |
529 | } | |
95e0321c | 530 | |
20ec2d03 | 531 | if (search_mode == EXPAND_SPARSE && istate->sparse_index && |
95e0321c DS |
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); | |
20ec2d03 | 547 | return index_name_stage_pos(istate, name, namelen, stage, search_mode); |
95e0321c DS |
548 | } |
549 | } | |
550 | ||
76e7f4ec | 551 | return -first-1; |
eb38c22f LT |
552 | } |
553 | ||
847a9e5d | 554 | int index_name_pos(struct index_state *istate, const char *name, int namelen) |
b60e188c | 555 | { |
20ec2d03 VD |
556 | return index_name_stage_pos(istate, name, namelen, 0, EXPAND_SPARSE); |
557 | } | |
558 | ||
9553aa0f VD |
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 | ||
20ec2d03 VD |
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; | |
b60e188c TG |
567 | } |
568 | ||
4aab5b46 | 569 | int remove_index_entry_at(struct index_state *istate, int pos) |
7b937ca3 | 570 | { |
cf558704 LT |
571 | struct cache_entry *ce = istate->cache[pos]; |
572 | ||
cfc5789a | 573 | record_resolve_undo(istate, ce); |
2092678c | 574 | remove_name_hash(istate, ce); |
045113a5 | 575 | save_or_free_index_entry(istate, ce); |
e636a7b4 | 576 | istate->cache_changed |= CE_ENTRY_REMOVED; |
4aab5b46 JH |
577 | istate->cache_nr--; |
578 | if (pos >= istate->cache_nr) | |
7b937ca3 | 579 | return 0; |
f331ab9d RS |
580 | MOVE_ARRAY(istate->cache + pos, istate->cache + pos + 1, |
581 | istate->cache_nr - pos); | |
7b937ca3 LT |
582 | return 1; |
583 | } | |
584 | ||
36419c8e | 585 | /* |
98e023de | 586 | * Remove all cache entries marked for removal, that is where |
36419c8e KB |
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 | */ | |
6fdc2057 | 590 | void remove_marked_cache_entries(struct index_state *istate, int invalidate) |
36419c8e KB |
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++) { | |
5699d17e | 596 | if (ce_array[i]->ce_flags & CE_REMOVE) { |
6fdc2057 TG |
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 | } | |
2092678c | 603 | remove_name_hash(istate, ce_array[i]); |
045113a5 | 604 | save_or_free_index_entry(istate, ce_array[i]); |
5699d17e | 605 | } |
36419c8e KB |
606 | else |
607 | ce_array[j++] = ce_array[i]; | |
608 | } | |
ad837d9e NTND |
609 | if (j == istate->cache_nr) |
610 | return; | |
e636a7b4 | 611 | istate->cache_changed |= CE_ENTRY_REMOVED; |
36419c8e KB |
612 | istate->cache_nr = j; |
613 | } | |
614 | ||
4aab5b46 | 615 | int remove_file_from_index(struct index_state *istate, const char *path) |
197ee8c9 | 616 | { |
4aab5b46 | 617 | int pos = index_name_pos(istate, path, strlen(path)); |
c4e3cca1 JH |
618 | if (pos < 0) |
619 | pos = -pos-1; | |
a5400efe | 620 | cache_tree_invalidate_path(istate, path); |
e931371a | 621 | untracked_cache_remove_from_index(istate, path); |
4aab5b46 JH |
622 | while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path)) |
623 | remove_index_entry_at(istate, pos); | |
197ee8c9 LT |
624 | return 0; |
625 | } | |
626 | ||
20314271 JS |
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 | ||
1102952b LT |
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 | */ | |
045113a5 NTND |
670 | static struct cache_entry *create_alias_ce(struct index_state *istate, |
671 | struct cache_entry *ce, | |
672 | struct cache_entry *alias) | |
1102952b LT |
673 | { |
674 | int len; | |
285c2e25 | 675 | struct cache_entry *new_entry; |
1102952b LT |
676 | |
677 | if (alias->ce_flags & CE_ADDED) | |
9d0a9e90 NTND |
678 | die(_("will not add file alias '%s' ('%s' already exists in index)"), |
679 | ce->name, alias->name); | |
1102952b LT |
680 | |
681 | /* Ok, create the new entry using the name of the existing alias */ | |
682 | len = ce_namelen(alias); | |
a849735b | 683 | new_entry = make_empty_cache_entry(istate, len); |
285c2e25 BW |
684 | memcpy(new_entry->name, alias->name, len); |
685 | copy_cache_entry(new_entry, ce); | |
045113a5 | 686 | save_or_free_index_entry(istate, ce); |
285c2e25 | 687 | return new_entry; |
1102952b LT |
688 | } |
689 | ||
b4b313f9 | 690 | void set_object_name_for_intent_to_add_entry(struct cache_entry *ce) |
39425819 | 691 | { |
a09c985e | 692 | struct object_id oid; |
c80d226a | 693 | if (write_object_file("", 0, OBJ_BLOB, &oid)) |
9d0a9e90 | 694 | die(_("cannot create an empty blob in the object database")); |
a09c985e | 695 | oidcpy(&ce->oid, &oid); |
39425819 JH |
696 | } |
697 | ||
610d55af | 698 | int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags) |
11be42a4 | 699 | { |
a849735b | 700 | int namelen, was_same; |
d177cab0 | 701 | mode_t st_mode = st->st_mode; |
9472935d | 702 | struct cache_entry *ce, *alias = NULL; |
56cac48c | 703 | unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY; |
38ed1d89 JH |
704 | int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND); |
705 | int pretend = flags & ADD_CACHE_PRETEND; | |
39425819 JH |
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)); | |
70c0f9db | 709 | unsigned hash_flags = pretend ? 0 : INDEX_WRITE_OBJECT; |
f937bc2f | 710 | struct object_id oid; |
9472935d | 711 | |
9e5da3d0 | 712 | if (flags & ADD_CACHE_RENORMALIZE) |
70c0f9db | 713 | hash_flags |= INDEX_RENORMALIZE; |
11be42a4 | 714 | |
d177cab0 | 715 | if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode)) |
9d0a9e90 | 716 | return error(_("%s: can only add regular files, symbolic links or git-directories"), path); |
11be42a4 JS |
717 | |
718 | namelen = strlen(path); | |
d177cab0 | 719 | if (S_ISDIR(st_mode)) { |
e19488a6 | 720 | if (repo_resolve_gitlink_ref(the_repository, path, "HEAD", &oid) < 0) |
f937bc2f | 721 | return error(_("'%s' does not have a commit checked out"), path); |
09595258 LT |
722 | while (namelen && path[namelen-1] == '/') |
723 | namelen--; | |
724 | } | |
a849735b | 725 | ce = make_empty_cache_entry(istate, namelen); |
11be42a4 | 726 | memcpy(ce->name, path, namelen); |
b60e188c | 727 | ce->ce_namelen = namelen; |
39425819 | 728 | if (!intent_only) |
d4c0a3ac | 729 | fill_stat_cache_info(istate, ce, st); |
388b2acd JH |
730 | else |
731 | ce->ce_flags |= CE_INTENT_TO_ADD; | |
11be42a4 | 732 | |
610d55af TG |
733 | |
734 | if (trust_executable_bit && has_symlinks) { | |
d177cab0 | 735 | ce->ce_mode = create_ce_mode(st_mode); |
610d55af | 736 | } else { |
78a8d641 JS |
737 | /* If there is an existing entry, pick the mode bits and type |
738 | * from it, otherwise assume unexecutable regular file. | |
11be42a4 | 739 | */ |
185c975f | 740 | struct cache_entry *ent; |
20314271 | 741 | int pos = index_name_pos_also_unmerged(istate, path, namelen); |
185c975f | 742 | |
4aab5b46 | 743 | ent = (0 <= pos) ? istate->cache[pos] : NULL; |
d177cab0 | 744 | ce->ce_mode = ce_mode_from_stat(ent, st_mode); |
11be42a4 JS |
745 | } |
746 | ||
dc1ae704 JJ |
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) { | |
41284eb0 | 753 | adjust_dirname_case(istate, ce->name); |
dc1ae704 | 754 | } |
e2c2a375 | 755 | if (!(flags & ADD_CACHE_RENORMALIZE)) { |
9472935d TB |
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; | |
dc1ae704 | 765 | |
a849735b | 766 | discard_cache_entry(ce); |
9472935d TB |
767 | return 0; |
768 | } | |
0781b8a9 | 769 | } |
39425819 | 770 | if (!intent_only) { |
1c418243 | 771 | if (index_path(istate, &ce->oid, path, st, hash_flags)) { |
a849735b | 772 | discard_cache_entry(ce); |
9d0a9e90 | 773 | return error(_("unable to index file '%s'"), path); |
2d9426b0 | 774 | } |
39425819 | 775 | } else |
b4b313f9 | 776 | set_object_name_for_intent_to_add_entry(ce); |
39425819 | 777 | |
1102952b | 778 | if (ignore_case && alias && different_name(ce, alias)) |
045113a5 | 779 | ce = create_alias_ce(istate, ce, alias); |
1102952b | 780 | ce->ce_flags |= CE_ADDED; |
38ed1d89 | 781 | |
3bf0dd1f | 782 | /* It was suspected to be racily clean, but it turns out to be Ok */ |
38ed1d89 JH |
783 | was_same = (alias && |
784 | !ce_stage(alias) && | |
4a7e27e9 | 785 | oideq(&alias->oid, &ce->oid) && |
38ed1d89 JH |
786 | ce->ce_mode == alias->ce_mode); |
787 | ||
788 | if (pretend) | |
a849735b | 789 | discard_cache_entry(ce); |
067178ed | 790 | else if (add_index_entry(istate, ce, add_option)) { |
a849735b | 791 | discard_cache_entry(ce); |
9d0a9e90 | 792 | return error(_("unable to add '%s' to index"), path); |
067178ed | 793 | } |
38ed1d89 | 794 | if (verbose && !was_same) |
11be42a4 | 795 | printf("add '%s'\n", path); |
11be42a4 JS |
796 | return 0; |
797 | } | |
798 | ||
610d55af | 799 | int add_file_to_index(struct index_state *istate, const char *path, int flags) |
d177cab0 LT |
800 | { |
801 | struct stat st; | |
802 | if (lstat(path, &st)) | |
9d0a9e90 | 803 | die_errno(_("unable to stat '%s'"), path); |
610d55af | 804 | return add_to_index(istate, path, &st, flags); |
d177cab0 LT |
805 | } |
806 | ||
a849735b JM |
807 | struct cache_entry *make_empty_cache_entry(struct index_state *istate, size_t len) |
808 | { | |
8e72d675 | 809 | return mem_pool__ce_calloc(find_mem_pool(istate), len); |
a849735b JM |
810 | } |
811 | ||
96168827 MT |
812 | struct cache_entry *make_empty_transient_cache_entry(size_t len, |
813 | struct mem_pool *ce_mem_pool) | |
a849735b | 814 | { |
96168827 MT |
815 | if (ce_mem_pool) |
816 | return mem_pool__ce_calloc(ce_mem_pool, len); | |
a849735b JM |
817 | return xcalloc(1, cache_entry_size(len)); |
818 | } | |
819 | ||
2a1ae649 RS |
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 | { | |
c8ad9d04 | 830 | return verify_path_internal(path, mode) == PATH_OK; |
2a1ae649 RS |
831 | } |
832 | ||
a849735b JM |
833 | struct cache_entry *make_cache_entry(struct index_state *istate, |
834 | unsigned int mode, | |
825ed4d9 JM |
835 | const struct object_id *oid, |
836 | const char *path, | |
837 | int stage, | |
838 | unsigned int refresh_options) | |
6640f881 | 839 | { |
bc1c2caa | 840 | struct cache_entry *ce, *ret; |
a849735b | 841 | int len; |
6640f881 | 842 | |
c8ad9d04 | 843 | if (verify_path_internal(path, mode) == PATH_INVALID) { |
9d0a9e90 | 844 | error(_("invalid path '%s'"), path); |
6640f881 | 845 | return NULL; |
7e7abea9 | 846 | } |
6640f881 CR |
847 | |
848 | len = strlen(path); | |
a849735b | 849 | ce = make_empty_cache_entry(istate, len); |
6640f881 | 850 | |
825ed4d9 | 851 | oidcpy(&ce->oid, oid); |
6640f881 | 852 | memcpy(ce->name, path, len); |
b60e188c TG |
853 | ce->ce_flags = create_ce_flags(stage); |
854 | ce->ce_namelen = len; | |
6640f881 CR |
855 | ce->ce_mode = create_ce_mode(mode); |
856 | ||
d7b665c3 | 857 | ret = refresh_cache_entry(istate, ce, refresh_options); |
915e44c6 | 858 | if (ret != ce) |
a849735b | 859 | discard_cache_entry(ce); |
915e44c6 | 860 | return ret; |
6640f881 CR |
861 | } |
862 | ||
96168827 MT |
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) | |
a849735b JM |
868 | { |
869 | struct cache_entry *ce; | |
870 | int len; | |
871 | ||
872 | if (!verify_path(path, mode)) { | |
9d0a9e90 | 873 | error(_("invalid path '%s'"), path); |
a849735b JM |
874 | return NULL; |
875 | } | |
876 | ||
877 | len = strlen(path); | |
96168827 | 878 | ce = make_empty_transient_cache_entry(len, ce_mem_pool); |
a849735b JM |
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 | ||
d9d70966 TG |
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; | |
883e248b | 913 | mark_fsmonitor_invalid(istate, ce); |
d9d70966 TG |
914 | istate->cache_changed |= CE_ENTRY_CHANGED; |
915 | ||
916 | return 0; | |
917 | } | |
918 | ||
9c5e6c80 | 919 | int ce_same_name(const struct cache_entry *a, const struct cache_entry *b) |
7b937ca3 LT |
920 | { |
921 | int len = ce_namelen(a); | |
922 | return ce_namelen(b) == len && !memcmp(a->name, b->name, len); | |
923 | } | |
924 | ||
8dcf39c4 LT |
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 | */ | |
10ecfa76 | 933 | static int verify_dotfile(const char *rest, unsigned mode) |
8dcf39c4 LT |
934 | { |
935 | /* | |
936 | * The first character was '.', but that | |
937 | * has already been discarded, we now test | |
938 | * the rest. | |
939 | */ | |
e0f530ff | 940 | |
8dcf39c4 | 941 | /* "." is not allowed */ |
e0f530ff | 942 | if (*rest == '\0' || is_dir_sep(*rest)) |
8dcf39c4 LT |
943 | return 0; |
944 | ||
e0f530ff | 945 | switch (*rest) { |
8dcf39c4 | 946 | /* |
641084b6 JK |
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. | |
10ecfa76 JK |
951 | * |
952 | * Once we've seen ".git", we can also find ".gitmodules", etc (also | |
953 | * case-insensitively). | |
8dcf39c4 LT |
954 | */ |
955 | case 'g': | |
cc2fc7c2 JK |
956 | case 'G': |
957 | if (rest[1] != 'i' && rest[1] != 'I') | |
8dcf39c4 | 958 | break; |
cc2fc7c2 | 959 | if (rest[2] != 't' && rest[2] != 'T') |
8dcf39c4 | 960 | break; |
e19e5e66 JK |
961 | if (rest[3] == '\0' || is_dir_sep(rest[3])) |
962 | return 0; | |
10ecfa76 JK |
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 | } | |
e19e5e66 | 969 | break; |
8dcf39c4 | 970 | case '.': |
e0f530ff | 971 | if (rest[1] == '\0' || is_dir_sep(rest[1])) |
8dcf39c4 LT |
972 | return 0; |
973 | } | |
974 | return 1; | |
975 | } | |
976 | ||
2a1ae649 RS |
977 | static enum verify_path_result verify_path_internal(const char *path, |
978 | unsigned mode) | |
8dcf39c4 | 979 | { |
49e268e2 | 980 | char c = 0; |
8dcf39c4 | 981 | |
56948cb6 | 982 | if (has_dos_drive_prefix(path)) |
2a1ae649 | 983 | return PATH_INVALID; |
56948cb6 | 984 | |
d2c84dad | 985 | if (!is_valid_path(path)) |
2a1ae649 | 986 | return PATH_INVALID; |
d2c84dad | 987 | |
8dcf39c4 LT |
988 | goto inside; |
989 | for (;;) { | |
990 | if (!c) | |
2a1ae649 | 991 | return PATH_OK; |
56948cb6 | 992 | if (is_dir_sep(c)) { |
8dcf39c4 | 993 | inside: |
10ecfa76 | 994 | if (protect_hfs) { |
49e268e2 | 995 | |
10ecfa76 | 996 | if (is_hfs_dotgit(path)) |
2a1ae649 | 997 | return PATH_INVALID; |
10ecfa76 JK |
998 | if (S_ISLNK(mode)) { |
999 | if (is_hfs_dotgitmodules(path)) | |
2a1ae649 | 1000 | return PATH_INVALID; |
10ecfa76 JK |
1001 | } |
1002 | } | |
1003 | if (protect_ntfs) { | |
bccc37fd | 1004 | #if defined GIT_WINDOWS_NATIVE || defined __CYGWIN__ |
49e268e2 | 1005 | if (c == '\\') |
2a1ae649 | 1006 | return PATH_INVALID; |
49e268e2 | 1007 | #endif |
10ecfa76 | 1008 | if (is_ntfs_dotgit(path)) |
2a1ae649 | 1009 | return PATH_INVALID; |
10ecfa76 JK |
1010 | if (S_ISLNK(mode)) { |
1011 | if (is_ntfs_dotgitmodules(path)) | |
2a1ae649 | 1012 | return PATH_INVALID; |
10ecfa76 JK |
1013 | } |
1014 | } | |
1015 | ||
8dcf39c4 | 1016 | c = *path++; |
10ecfa76 | 1017 | if ((c == '.' && !verify_dotfile(path, mode)) || |
6e773527 | 1018 | is_dir_sep(c)) |
2a1ae649 | 1019 | return PATH_INVALID; |
6e773527 DS |
1020 | /* |
1021 | * allow terminating directory separators for | |
1022 | * sparse directory entries. | |
1023 | */ | |
1024 | if (c == '\0') | |
2a1ae649 RS |
1025 | return S_ISDIR(mode) ? PATH_DIR_WITH_SEP : |
1026 | PATH_INVALID; | |
288a74bc JS |
1027 | } else if (c == '\\' && protect_ntfs) { |
1028 | if (is_ntfs_dotgit(path)) | |
2a1ae649 | 1029 | return PATH_INVALID; |
288a74bc JS |
1030 | if (S_ISLNK(mode)) { |
1031 | if (is_ntfs_dotgitmodules(path)) | |
2a1ae649 | 1032 | return PATH_INVALID; |
288a74bc | 1033 | } |
8dcf39c4 | 1034 | } |
288a74bc | 1035 | |
8dcf39c4 LT |
1036 | c = *path++; |
1037 | } | |
1038 | } | |
1039 | ||
12676608 LT |
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? | |
0f1e4f04 | 1043 | */ |
4aab5b46 JH |
1044 | static int has_file_name(struct index_state *istate, |
1045 | const struct cache_entry *ce, int pos, int ok_to_replace) | |
0f1e4f04 | 1046 | { |
12676608 LT |
1047 | int retval = 0; |
1048 | int len = ce_namelen(ce); | |
b155725d | 1049 | int stage = ce_stage(ce); |
12676608 | 1050 | const char *name = ce->name; |
0f1e4f04 | 1051 | |
4aab5b46 JH |
1052 | while (pos < istate->cache_nr) { |
1053 | struct cache_entry *p = istate->cache[pos++]; | |
0f1e4f04 | 1054 | |
12676608 | 1055 | if (len >= ce_namelen(p)) |
0f1e4f04 | 1056 | break; |
12676608 LT |
1057 | if (memcmp(name, p->name, len)) |
1058 | break; | |
b155725d JH |
1059 | if (ce_stage(p) != stage) |
1060 | continue; | |
12676608 LT |
1061 | if (p->name[len] != '/') |
1062 | continue; | |
7a51ed66 | 1063 | if (p->ce_flags & CE_REMOVE) |
21cd8d00 | 1064 | continue; |
12676608 LT |
1065 | retval = -1; |
1066 | if (!ok_to_replace) | |
1067 | break; | |
4aab5b46 | 1068 | remove_index_entry_at(istate, --pos); |
0f1e4f04 | 1069 | } |
12676608 LT |
1070 | return retval; |
1071 | } | |
0f1e4f04 | 1072 | |
a6db3fbb JH |
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 | ||
12676608 LT |
1093 | /* |
1094 | * Do we have another file with a pathname that is a proper | |
1095 | * subset of the name we're trying to add? | |
06b6d81b JH |
1096 | * |
1097 | * That is, is there another file in the index with a path | |
1098 | * that matches a sub-directory in the given entry? | |
12676608 | 1099 | */ |
4aab5b46 JH |
1100 | static int has_dir_name(struct index_state *istate, |
1101 | const struct cache_entry *ce, int pos, int ok_to_replace) | |
12676608 LT |
1102 | { |
1103 | int retval = 0; | |
b155725d | 1104 | int stage = ce_stage(ce); |
12676608 LT |
1105 | const char *name = ce->name; |
1106 | const char *slash = name + ce_namelen(ce); | |
06b6d81b JH |
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 | */ | |
65526845 JS |
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; | |
0f1e4f04 | 1133 | |
12676608 | 1134 | for (;;) { |
b986df5c | 1135 | size_t len; |
0f1e4f04 | 1136 | |
12676608 LT |
1137 | for (;;) { |
1138 | if (*--slash == '/') | |
1139 | break; | |
1140 | if (slash <= ce->name) | |
1141 | return retval; | |
1142 | } | |
1143 | len = slash - name; | |
0f1e4f04 | 1144 | |
20ec2d03 | 1145 | pos = index_name_stage_pos(istate, name, len, stage, EXPAND_SPARSE); |
12676608 | 1146 | if (pos >= 0) { |
21cd8d00 JH |
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 | */ | |
077c48df | 1155 | if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) { |
21cd8d00 JH |
1156 | retval = -1; |
1157 | if (!ok_to_replace) | |
1158 | break; | |
4aab5b46 | 1159 | remove_index_entry_at(istate, pos); |
21cd8d00 JH |
1160 | continue; |
1161 | } | |
12676608 | 1162 | } |
21cd8d00 JH |
1163 | else |
1164 | pos = -pos-1; | |
12676608 LT |
1165 | |
1166 | /* | |
1167 | * Trivial optimization: if we find an entry that | |
1168 | * already matches the sub-directory, then we know | |
b155725d | 1169 | * we're ok, and we can exit. |
12676608 | 1170 | */ |
4aab5b46 JH |
1171 | while (pos < istate->cache_nr) { |
1172 | struct cache_entry *p = istate->cache[pos]; | |
b155725d JH |
1173 | if ((ce_namelen(p) <= len) || |
1174 | (p->name[len] != '/') || | |
1175 | memcmp(p->name, name, len)) | |
1176 | break; /* not our subdirectory */ | |
077c48df JH |
1177 | if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE)) |
1178 | /* | |
1179 | * p is at the same stage as our entry, and | |
b155725d JH |
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++; | |
192268c1 | 1186 | } |
0f1e4f04 | 1187 | } |
12676608 LT |
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. | |
a6080a0a | 1195 | * |
12676608 LT |
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 | */ | |
4aab5b46 JH |
1200 | static int check_file_directory_conflict(struct index_state *istate, |
1201 | const struct cache_entry *ce, | |
1202 | int pos, int ok_to_replace) | |
12676608 | 1203 | { |
21cd8d00 JH |
1204 | int retval; |
1205 | ||
1206 | /* | |
1207 | * When ce is an "I am going away" entry, we allow it to be added | |
1208 | */ | |
7a51ed66 | 1209 | if (ce->ce_flags & CE_REMOVE) |
21cd8d00 JH |
1210 | return 0; |
1211 | ||
12676608 LT |
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 | |
21cd8d00 | 1215 | * in the array. |
12676608 | 1216 | */ |
4aab5b46 | 1217 | retval = has_file_name(istate, ce, pos, ok_to_replace); |
21cd8d00 | 1218 | |
12676608 LT |
1219 | /* |
1220 | * Then check if the path might have a clashing sub-directory | |
1221 | * before it. | |
1222 | */ | |
4aab5b46 | 1223 | return retval + has_dir_name(istate, ce, pos, ok_to_replace); |
0f1e4f04 JH |
1224 | } |
1225 | ||
af3785dc | 1226 | static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option) |
197ee8c9 LT |
1227 | { |
1228 | int pos; | |
192268c1 JH |
1229 | int ok_to_add = option & ADD_CACHE_OK_TO_ADD; |
1230 | int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE; | |
b155725d | 1231 | int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK; |
39425819 | 1232 | int new_only = option & ADD_CACHE_NEW_ONLY; |
5f73076c | 1233 | |
e5494631 JH |
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) | |
c097b95a | 1240 | pos = index_pos_to_insert_pos(istate->cache_nr); |
e5494631 | 1241 | else |
20ec2d03 | 1242 | pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE); |
197ee8c9 | 1243 | |
c35e9f5e VD |
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 | ||
3e09cdfd | 1251 | /* existing match? Just replace it. */ |
76e7f4ec | 1252 | if (pos >= 0) { |
39425819 JH |
1253 | if (!new_only) |
1254 | replace_index_entry(istate, pos, ce); | |
197ee8c9 LT |
1255 | return 0; |
1256 | } | |
76e7f4ec | 1257 | pos = -pos-1; |
197ee8c9 | 1258 | |
ffcc9ba7 NTND |
1259 | if (!(option & ADD_CACHE_KEEP_CACHE_TREE)) |
1260 | untracked_cache_add_to_index(istate, ce->name); | |
e931371a | 1261 | |
7b937ca3 LT |
1262 | /* |
1263 | * Inserting a merged entry ("stage 0") into the index | |
1264 | * will always replace all non-merged entries.. | |
1265 | */ | |
4aab5b46 JH |
1266 | if (pos < istate->cache_nr && ce_stage(ce) == 0) { |
1267 | while (ce_same_name(istate->cache[pos], ce)) { | |
7b937ca3 | 1268 | ok_to_add = 1; |
4aab5b46 | 1269 | if (!remove_index_entry_at(istate, pos)) |
7b937ca3 LT |
1270 | break; |
1271 | } | |
1272 | } | |
1273 | ||
121481ab LT |
1274 | if (!ok_to_add) |
1275 | return -1; | |
c8ad9d04 | 1276 | if (verify_path_internal(ce->name, ce->ce_mode) == PATH_INVALID) |
9d0a9e90 | 1277 | return error(_("invalid path '%s'"), ce->name); |
121481ab | 1278 | |
3e09cdfd | 1279 | if (!skip_df_check && |
4aab5b46 | 1280 | check_file_directory_conflict(istate, ce, pos, ok_to_replace)) { |
192268c1 | 1281 | if (!ok_to_replace) |
9d0a9e90 | 1282 | return error(_("'%s' appears as both a file and as a directory"), |
4aab5b46 | 1283 | ce->name); |
20ec2d03 | 1284 | pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE); |
192268c1 JH |
1285 | pos = -pos-1; |
1286 | } | |
af3785dc JH |
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 | } | |
0f1e4f04 | 1303 | |
197ee8c9 | 1304 | /* Make sure the array is big enough .. */ |
999f5660 | 1305 | ALLOC_GROW(istate->cache, istate->cache_nr + 1, istate->cache_alloc); |
197ee8c9 LT |
1306 | |
1307 | /* Add it in.. */ | |
4aab5b46 | 1308 | istate->cache_nr++; |
af3785dc | 1309 | if (istate->cache_nr > pos + 1) |
f919ffeb SG |
1310 | MOVE_ARRAY(istate->cache + pos + 1, istate->cache + pos, |
1311 | istate->cache_nr - pos - 1); | |
cf558704 | 1312 | set_index_entry(istate, pos, ce); |
e636a7b4 | 1313 | istate->cache_changed |= CE_ENTRY_ADDED; |
197ee8c9 LT |
1314 | return 0; |
1315 | } | |
1316 | ||
405e5b2f LT |
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 | */ | |
4aab5b46 | 1328 | static struct cache_entry *refresh_cache_ent(struct index_state *istate, |
4bd5b7da | 1329 | struct cache_entry *ce, |
d05e6970 | 1330 | unsigned int options, int *err, |
a98e0f2d | 1331 | int *changed_ret, |
15268d12 JH |
1332 | int *t2_did_lstat, |
1333 | int *t2_did_scan) | |
405e5b2f LT |
1334 | { |
1335 | struct stat st; | |
1336 | struct cache_entry *updated; | |
a849735b | 1337 | int changed; |
25762726 | 1338 | int refresh = options & CE_MATCH_REFRESH; |
4bd5b7da | 1339 | int ignore_valid = options & CE_MATCH_IGNORE_VALID; |
56cac48c | 1340 | int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; |
2e2e7ec1 | 1341 | int ignore_missing = options & CE_MATCH_IGNORE_MISSING; |
883e248b | 1342 | int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR; |
405e5b2f | 1343 | |
25762726 | 1344 | if (!refresh || ce_uptodate(ce)) |
eadb5831 JH |
1345 | return ce; |
1346 | ||
883e248b BP |
1347 | if (!ignore_fsmonitor) |
1348 | refresh_fsmonitor(istate); | |
aa9349d4 | 1349 | /* |
56cac48c NTND |
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. | |
aa9349d4 | 1353 | */ |
56cac48c NTND |
1354 | if (!ignore_skip_worktree && ce_skip_worktree(ce)) { |
1355 | ce_mark_uptodate(ce); | |
1356 | return ce; | |
1357 | } | |
aa9349d4 MSO |
1358 | if (!ignore_valid && (ce->ce_flags & CE_VALID)) { |
1359 | ce_mark_uptodate(ce); | |
1360 | return ce; | |
1361 | } | |
883e248b BP |
1362 | if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) { |
1363 | ce_mark_uptodate(ce); | |
1364 | return ce; | |
1365 | } | |
aa9349d4 | 1366 | |
ccad42d4 RS |
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 | ||
a98e0f2d JH |
1375 | if (t2_did_lstat) |
1376 | *t2_did_lstat = 1; | |
8fd2cb40 | 1377 | if (lstat(ce->name, &st) < 0) { |
2e2e7ec1 BK |
1378 | if (ignore_missing && errno == ENOENT) |
1379 | return ce; | |
ec0cc704 JH |
1380 | if (err) |
1381 | *err = errno; | |
8fd2cb40 JS |
1382 | return NULL; |
1383 | } | |
405e5b2f | 1384 | |
4bd5b7da | 1385 | changed = ie_match_stat(istate, ce, &st, options); |
d05e6970 JK |
1386 | if (changed_ret) |
1387 | *changed_ret = changed; | |
405e5b2f | 1388 | if (!changed) { |
4bd5b7da JH |
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 && | |
7a51ed66 | 1397 | !(ce->ce_flags & CE_VALID)) |
405e5b2f | 1398 | ; /* mark this one VALID again */ |
eadb5831 JH |
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 | */ | |
883e248b | 1405 | if (!S_ISGITLINK(ce->ce_mode)) { |
125fd984 | 1406 | ce_mark_uptodate(ce); |
b5a81697 | 1407 | mark_fsmonitor_valid(istate, ce); |
883e248b | 1408 | } |
8fd2cb40 | 1409 | return ce; |
eadb5831 | 1410 | } |
405e5b2f LT |
1411 | } |
1412 | ||
15268d12 JH |
1413 | if (t2_did_scan) |
1414 | *t2_did_scan = 1; | |
4bd5b7da | 1415 | if (ie_modified(istate, ce, &st, options)) { |
ec0cc704 JH |
1416 | if (err) |
1417 | *err = EINVAL; | |
8fd2cb40 JS |
1418 | return NULL; |
1419 | } | |
405e5b2f | 1420 | |
a849735b | 1421 | updated = make_empty_cache_entry(istate, ce_namelen(ce)); |
0e267b7a BP |
1422 | copy_cache_entry(updated, ce); |
1423 | memcpy(updated->name, ce->name, ce->ce_namelen + 1); | |
d4c0a3ac | 1424 | fill_stat_cache_info(istate, updated, &st); |
4bd5b7da JH |
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. | |
405e5b2f | 1430 | */ |
4bd5b7da | 1431 | if (!ignore_valid && assume_unchanged && |
7a51ed66 LT |
1432 | !(ce->ce_flags & CE_VALID)) |
1433 | updated->ce_flags &= ~CE_VALID; | |
405e5b2f | 1434 | |
e636a7b4 | 1435 | /* istate->cache_changed is updated in the caller */ |
405e5b2f LT |
1436 | return updated; |
1437 | } | |
1438 | ||
3deffc52 | 1439 | static void show_file(const char * fmt, const char * name, int in_porcelain, |
046613c5 | 1440 | int * first, const char *header_msg) |
3deffc52 MM |
1441 | { |
1442 | if (in_porcelain && *first && header_msg) { | |
1443 | printf("%s\n", header_msg); | |
cd2b8ae9 | 1444 | *first = 0; |
3deffc52 MM |
1445 | } |
1446 | printf(fmt, name); | |
1447 | } | |
1448 | ||
22184497 TG |
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 | ||
9b2d6149 NTND |
1470 | int refresh_index(struct index_state *istate, unsigned int flags, |
1471 | const struct pathspec *pathspec, | |
046613c5 | 1472 | char *seen, const char *header_msg) |
405e5b2f LT |
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; | |
5fdeacb0 | 1480 | int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0; |
b243012c | 1481 | int ignore_skip_worktree = (flags & REFRESH_IGNORE_SKIP_WORKTREE) != 0; |
3deffc52 MM |
1482 | int first = 1; |
1483 | int in_porcelain = (flags & REFRESH_IN_PORCELAIN); | |
25762726 BK |
1484 | unsigned int options = (CE_MATCH_REFRESH | |
1485 | (really ? CE_MATCH_IGNORE_VALID : 0) | | |
2e2e7ec1 | 1486 | (not_new ? CE_MATCH_IGNORE_MISSING : 0)); |
4bd4e730 | 1487 | const char *modified_fmt; |
73b7eae6 JK |
1488 | const char *deleted_fmt; |
1489 | const char *typechange_fmt; | |
1490 | const char *added_fmt; | |
4bd4e730 | 1491 | const char *unmerged_fmt; |
ae9af122 | 1492 | struct progress *progress = NULL; |
a98e0f2d | 1493 | int t2_sum_lstat = 0; |
15268d12 | 1494 | int t2_sum_scan = 0; |
ae9af122 NTND |
1495 | |
1496 | if (flags & REFRESH_PROGRESS && isatty(2)) | |
1f7e6478 PS |
1497 | progress = start_delayed_progress(the_repository, |
1498 | _("Refresh index"), | |
ae9af122 | 1499 | istate->cache_nr); |
405e5b2f | 1500 | |
c46c406a | 1501 | trace_performance_enter(); |
a71806a7 NTND |
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"; | |
99ce720c BP |
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); | |
a98e0f2d | 1513 | trace2_region_enter("index", "refresh", NULL); |
d76723ee | 1514 | |
4aab5b46 | 1515 | for (i = 0; i < istate->cache_nr; i++) { |
285c2e25 | 1516 | struct cache_entry *ce, *new_entry; |
ec0cc704 | 1517 | int cache_errno = 0; |
73b7eae6 | 1518 | int changed = 0; |
3d1f148c | 1519 | int filtered = 0; |
a98e0f2d | 1520 | int t2_did_lstat = 0; |
15268d12 | 1521 | int t2_did_scan = 0; |
ec0cc704 | 1522 | |
4aab5b46 | 1523 | ce = istate->cache[i]; |
5fdeacb0 JS |
1524 | if (ignore_submodules && S_ISGITLINK(ce->ce_mode)) |
1525 | continue; | |
b243012c MT |
1526 | if (ignore_skip_worktree && ce_skip_worktree(ce)) |
1527 | continue; | |
5fdeacb0 | 1528 | |
d76723ee DS |
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 | ||
d7b665c3 | 1536 | if (pathspec && !ce_path_match(istate, ce, pathspec, seen)) |
3d1f148c JH |
1537 | filtered = 1; |
1538 | ||
405e5b2f | 1539 | if (ce_stage(ce)) { |
4aab5b46 JH |
1540 | while ((i < istate->cache_nr) && |
1541 | ! strcmp(istate->cache[i]->name, ce->name)) | |
405e5b2f LT |
1542 | i++; |
1543 | i--; | |
1544 | if (allow_unmerged) | |
1545 | continue; | |
3d1f148c JH |
1546 | if (!filtered) |
1547 | show_file(unmerged_fmt, ce->name, in_porcelain, | |
1548 | &first, header_msg); | |
405e5b2f LT |
1549 | has_errors = 1; |
1550 | continue; | |
1551 | } | |
1552 | ||
3d1f148c | 1553 | if (filtered) |
d616813d AJ |
1554 | continue; |
1555 | ||
a98e0f2d JH |
1556 | new_entry = refresh_cache_ent(istate, ce, options, |
1557 | &cache_errno, &changed, | |
15268d12 | 1558 | &t2_did_lstat, &t2_did_scan); |
a98e0f2d | 1559 | t2_sum_lstat += t2_did_lstat; |
15268d12 | 1560 | t2_sum_scan += t2_did_scan; |
285c2e25 | 1561 | if (new_entry == ce) |
405e5b2f | 1562 | continue; |
b7b793d1 | 1563 | display_progress(progress, i); |
285c2e25 | 1564 | if (!new_entry) { |
73b7eae6 JK |
1565 | const char *fmt; |
1566 | ||
8fd2cb40 | 1567 | if (really && cache_errno == EINVAL) { |
405e5b2f LT |
1568 | /* If we are doing --really-refresh that |
1569 | * means the index is not valid anymore. | |
1570 | */ | |
7a51ed66 | 1571 | ce->ce_flags &= ~CE_VALID; |
078a58e8 | 1572 | ce->ce_flags |= CE_UPDATE_IN_BASE; |
883e248b | 1573 | mark_fsmonitor_invalid(istate, ce); |
e636a7b4 | 1574 | istate->cache_changed |= CE_ENTRY_CHANGED; |
405e5b2f LT |
1575 | } |
1576 | if (quiet) | |
1577 | continue; | |
73b7eae6 JK |
1578 | |
1579 | if (cache_errno == ENOENT) | |
1580 | fmt = deleted_fmt; | |
895ff3b2 | 1581 | else if (ce_intent_to_add(ce)) |
73b7eae6 JK |
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); | |
405e5b2f LT |
1589 | has_errors = 1; |
1590 | continue; | |
1591 | } | |
cf558704 | 1592 | |
285c2e25 | 1593 | replace_index_entry(istate, i, new_entry); |
405e5b2f | 1594 | } |
a98e0f2d | 1595 | trace2_data_intmax("index", NULL, "refresh/sum_lstat", t2_sum_lstat); |
15268d12 | 1596 | trace2_data_intmax("index", NULL, "refresh/sum_scan", t2_sum_scan); |
a98e0f2d | 1597 | trace2_region_leave("index", "refresh", NULL); |
b7b793d1 ÆAB |
1598 | display_progress(progress, istate->cache_nr); |
1599 | stop_progress(&progress); | |
c46c406a | 1600 | trace_performance_leave("refresh index"); |
405e5b2f LT |
1601 | return has_errors; |
1602 | } | |
1603 | ||
768d7965 JM |
1604 | struct cache_entry *refresh_cache_entry(struct index_state *istate, |
1605 | struct cache_entry *ce, | |
1606 | unsigned int options) | |
ec0cc704 | 1607 | { |
15268d12 | 1608 | return refresh_cache_ent(istate, ce, options, NULL, NULL, NULL, NULL); |
ec0cc704 JH |
1609 | } |
1610 | ||
db3b313c JH |
1611 | |
1612 | /***************************************************************** | |
1613 | * Index File I/O | |
1614 | *****************************************************************/ | |
1615 | ||
9d227781 JH |
1616 | #define INDEX_FORMAT_DEFAULT 3 |
1617 | ||
7211b9e7 | 1618 | static unsigned int get_index_format_default(struct repository *r) |
136347d7 TG |
1619 | { |
1620 | char *envversion = getenv("GIT_INDEX_VERSION"); | |
3c09d684 TG |
1621 | char *endp; |
1622 | unsigned int version = INDEX_FORMAT_DEFAULT; | |
1623 | ||
136347d7 | 1624 | if (!envversion) { |
7211b9e7 DS |
1625 | prepare_repo_settings(r); |
1626 | ||
1627 | if (r->settings.index_version >= 0) | |
1628 | version = r->settings.index_version; | |
3c09d684 TG |
1629 | if (version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) { |
1630 | warning(_("index.version set, but the value is invalid.\n" | |
136347d7 | 1631 | "Using version %i"), INDEX_FORMAT_DEFAULT); |
3c09d684 | 1632 | return INDEX_FORMAT_DEFAULT; |
136347d7 TG |
1633 | } |
1634 | return version; | |
1635 | } | |
3c09d684 TG |
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; | |
136347d7 TG |
1645 | } |
1646 | ||
db3b313c JH |
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; | |
7800c1eb TG |
1658 | uint32_t dev; |
1659 | uint32_t ino; | |
1660 | uint32_t mode; | |
1661 | uint32_t uid; | |
1662 | uint32_t gid; | |
1663 | uint32_t size; | |
575fa8a3 | 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]; | |
db3b313c JH |
1672 | }; |
1673 | ||
6c9cd161 | 1674 | /* These are only used for v3 or lower */ |
ce012deb | 1675 | #define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len) |
575fa8a3 | 1676 | #define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,data) + (len) + 8) & ~7) |
db3b313c | 1677 | #define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len) |
575fa8a3 | 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)))) | |
db3b313c | 1682 | |
a33fc72f JH |
1683 | /* Allow fsck to force verification of the index checksum. */ |
1684 | int verify_index_checksum; | |
1685 | ||
00ec50e5 BP |
1686 | /* Allow fsck to force verification of the cache entry order. */ |
1687 | int verify_ce_order; | |
1688 | ||
371ed0de | 1689 | static int verify_hdr(const struct cache_header *hdr, unsigned long size) |
e83c5163 | 1690 | { |
7346e340 | 1691 | struct git_hash_ctx c; |
aab61359 | 1692 | unsigned char hash[GIT_MAX_RAWSZ]; |
0136bac9 | 1693 | int hdr_version; |
ee1f0c24 DS |
1694 | unsigned char *start, *end; |
1695 | struct object_id oid; | |
e83c5163 | 1696 | |
ccc4feb5 | 1697 | if (hdr->hdr_signature != htonl(CACHE_SIGNATURE)) |
9d0a9e90 | 1698 | return error(_("bad signature 0x%08x"), hdr->hdr_signature); |
0136bac9 | 1699 | hdr_version = ntohl(hdr->hdr_version); |
b82a7b5b | 1700 | if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version) |
9d0a9e90 | 1701 | return error(_("bad index version %d"), hdr_version); |
a33fc72f JH |
1702 | |
1703 | if (!verify_index_checksum) | |
1704 | return 0; | |
1705 | ||
ee1f0c24 DS |
1706 | end = (unsigned char *)hdr + size; |
1707 | start = end - the_hash_algo->rawsz; | |
9da95bda | 1708 | oidread(&oid, start, the_repository->hash_algo); |
7d70b29c | 1709 | if (oideq(&oid, null_oid(the_hash_algo))) |
ee1f0c24 DS |
1710 | return 0; |
1711 | ||
aab61359 | 1712 | the_hash_algo->init_fn(&c); |
0578f1e6 PS |
1713 | git_hash_update(&c, hdr, size - the_hash_algo->rawsz); |
1714 | git_hash_final(hash, &c); | |
f4836570 | 1715 | if (!hasheq(hash, start, the_repository->hash_algo)) |
9d0a9e90 | 1716 | return error(_("bad index file sha1 signature")); |
e83c5163 LT |
1717 | return 0; |
1718 | } | |
1719 | ||
4aab5b46 | 1720 | static int read_index_extension(struct index_state *istate, |
371ed0de | 1721 | const char *ext, const char *data, unsigned long sz) |
bad68ec9 JH |
1722 | { |
1723 | switch (CACHE_EXT(ext)) { | |
1724 | case CACHE_EXT_TREE: | |
4aab5b46 | 1725 | istate->cache_tree = cache_tree_read(data, sz); |
bad68ec9 | 1726 | break; |
cfc5789a | 1727 | case CACHE_EXT_RESOLVE_UNDO: |
b81093ae | 1728 | istate->resolve_undo = resolve_undo_read(data, sz, the_hash_algo); |
cfc5789a | 1729 | break; |
5fc2fc8f NTND |
1730 | case CACHE_EXT_LINK: |
1731 | if (read_link_extension(istate, data, sz)) | |
1732 | return -1; | |
1733 | break; | |
f9e6c649 NTND |
1734 | case CACHE_EXT_UNTRACKED: |
1735 | istate->untracked = read_untracked_extension(data, sz); | |
1736 | break; | |
883e248b BP |
1737 | case CACHE_EXT_FSMONITOR: |
1738 | read_fsmonitor_extension(istate, data, sz); | |
1739 | break; | |
3b1d9e04 | 1740 | case CACHE_EXT_ENDOFINDEXENTRIES: |
3255089a | 1741 | case CACHE_EXT_INDEXENTRYOFFSETTABLE: |
3b1d9e04 BP |
1742 | /* already handled in do_read_index() */ |
1743 | break; | |
cd42415f DS |
1744 | case CACHE_EXT_SPARSE_DIRECTORIES: |
1745 | /* no content, only an indicator */ | |
9fadb373 | 1746 | istate->sparse_index = INDEX_COLLAPSED; |
cd42415f | 1747 | break; |
bad68ec9 JH |
1748 | default: |
1749 | if (*ext < 'A' || 'Z' < *ext) | |
9d0a9e90 | 1750 | return error(_("index uses %.4s extension, which we do not understand"), |
bad68ec9 | 1751 | ext); |
9d0a9e90 | 1752 | fprintf_ln(stderr, _("ignoring %.4s extension"), ext); |
bad68ec9 JH |
1753 | break; |
1754 | } | |
1755 | return 0; | |
1756 | } | |
1757 | ||
4a6ed30f VD |
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 | */ | |
77ff1127 BP |
1769 | static struct cache_entry *create_from_disk(struct mem_pool *ce_mem_pool, |
1770 | unsigned int version, | |
4a6ed30f | 1771 | const char *ondisk, |
6c9cd161 | 1772 | unsigned long *ent_size, |
252d079c | 1773 | const struct cache_entry *previous_ce) |
7a51ed66 | 1774 | { |
debed2a6 | 1775 | struct cache_entry *ce; |
7fec10b7 | 1776 | size_t len; |
06aaaa0b | 1777 | const char *name; |
575fa8a3 | 1778 | const unsigned hashsz = the_hash_algo->rawsz; |
4a6ed30f | 1779 | const char *flagsp = ondisk + offsetof(struct ondisk_cache_entry, data) + hashsz; |
debed2a6 | 1780 | unsigned int flags; |
f5c4a9af | 1781 | size_t copy_len = 0; |
252d079c NTND |
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 | */ | |
77ff1127 | 1789 | int expand_name_field = version == 4; |
7fec10b7 | 1790 | |
7a51ed66 | 1791 | /* On-disk flags are just 16 bits */ |
575fa8a3 | 1792 | flags = get_be16(flagsp); |
debed2a6 | 1793 | len = flags & CE_NAMEMASK; |
7fec10b7 | 1794 | |
debed2a6 | 1795 | if (flags & CE_EXTENDED) { |
06aaaa0b | 1796 | int extended_flags; |
4a6ed30f | 1797 | extended_flags = get_be16(flagsp + sizeof(uint16_t)) << 16; |
06aaaa0b NTND |
1798 | /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */ |
1799 | if (extended_flags & ~CE_EXTENDED_FLAGS) | |
9d0a9e90 | 1800 | die(_("unknown index entry format 0x%08x"), extended_flags); |
debed2a6 | 1801 | flags |= extended_flags; |
4a6ed30f | 1802 | name = (const char *)(flagsp + 2 * sizeof(uint16_t)); |
06aaaa0b NTND |
1803 | } |
1804 | else | |
4a6ed30f | 1805 | name = (const char *)(flagsp + sizeof(uint16_t)); |
06aaaa0b | 1806 | |
252d079c NTND |
1807 | if (expand_name_field) { |
1808 | const unsigned char *cp = (const unsigned char *)name; | |
1809 | size_t strip_len, previous_len; | |
6c9cd161 | 1810 | |
15beaaa3 | 1811 | /* If we're at the beginning of a block, ignore the previous name */ |
252d079c | 1812 | strip_len = decode_varint(&cp); |
77ff1127 BP |
1813 | if (previous_ce) { |
1814 | previous_len = previous_ce->ce_namelen; | |
1815 | if (previous_len < strip_len) | |
252d079c | 1816 | die(_("malformed name field in the index, near path '%s'"), |
77ff1127 BP |
1817 | previous_ce->name); |
1818 | copy_len = previous_len - strip_len; | |
252d079c | 1819 | } |
252d079c NTND |
1820 | name = (const char *)cp; |
1821 | } | |
6c9cd161 | 1822 | |
252d079c NTND |
1823 | if (len == CE_NAMEMASK) { |
1824 | len = strlen(name); | |
1825 | if (expand_name_field) | |
1826 | len += copy_len; | |
1827 | } | |
6c9cd161 | 1828 | |
77ff1127 | 1829 | ce = mem_pool__ce_alloc(ce_mem_pool, len); |
252d079c | 1830 | |
4a6ed30f VD |
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)); | |
252d079c NTND |
1853 | ce->ce_flags = flags & ~CE_NAMEMASK; |
1854 | ce->ce_namelen = len; | |
1855 | ce->index = 0; | |
9da95bda PS |
1856 | oidread(&ce->oid, (const unsigned char *)ondisk + offsetof(struct ondisk_cache_entry, data), |
1857 | the_repository->hash_algo); | |
6c9cd161 | 1858 | |
252d079c NTND |
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); | |
6c9cd161 | 1867 | } |
debed2a6 | 1868 | return ce; |
cf558704 LT |
1869 | } |
1870 | ||
03f15a79 | 1871 | static void check_ce_order(struct index_state *istate) |
15999d0b | 1872 | { |
03f15a79 TG |
1873 | unsigned int i; |
1874 | ||
00ec50e5 BP |
1875 | if (!verify_ce_order) |
1876 | return; | |
1877 | ||
03f15a79 TG |
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) | |
9d0a9e90 | 1884 | die(_("unordered stage entries in index")); |
03f15a79 TG |
1885 | if (!name_compare) { |
1886 | if (!ce_stage(ce)) | |
9d0a9e90 | 1887 | die(_("multiple stage entries for merged file '%s'"), |
03f15a79 TG |
1888 | ce->name); |
1889 | if (ce_stage(ce) > ce_stage(next_ce)) | |
9d0a9e90 | 1890 | die(_("unordered stage entries for '%s'"), |
03f15a79 TG |
1891 | ce->name); |
1892 | } | |
15999d0b JSP |
1893 | } |
1894 | } | |
1895 | ||
435ec090 CC |
1896 | static void tweak_untracked_cache(struct index_state *istate) |
1897 | { | |
ad0fb659 DS |
1898 | struct repository *r = the_repository; |
1899 | ||
1900 | prepare_repo_settings(r); | |
1901 | ||
f1bee828 ÆAB |
1902 | switch (r->settings.core_untracked_cache) { |
1903 | case UNTRACKED_CACHE_REMOVE: | |
435ec090 | 1904 | remove_untracked_cache(istate); |
f1bee828 ÆAB |
1905 | break; |
1906 | case UNTRACKED_CACHE_WRITE: | |
ad0fb659 | 1907 | add_untracked_cache(istate); |
f1bee828 ÆAB |
1908 | break; |
1909 | case UNTRACKED_CACHE_KEEP: | |
3050b6df ÆAB |
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 | */ | |
f1bee828 | 1916 | break; |
f1bee828 | 1917 | } |
435ec090 CC |
1918 | } |
1919 | ||
43925312 CC |
1920 | static void tweak_split_index(struct index_state *istate) |
1921 | { | |
be7537e6 | 1922 | switch (repo_config_get_split_index(the_repository)) { |
43925312 CC |
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 | ||
435ec090 CC |
1936 | static void post_read_index_from(struct index_state *istate) |
1937 | { | |
1938 | check_ce_order(istate); | |
1939 | tweak_untracked_cache(istate); | |
43925312 | 1940 | tweak_split_index(istate); |
883e248b | 1941 | tweak_fsmonitor(istate); |
435ec090 CC |
1942 | } |
1943 | ||
8e72d675 JM |
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 | */ | |
c097b95a | 1956 | per_entry += align_padding_size(per_entry, 0); |
8e72d675 JM |
1957 | return ondisk_size + entries * per_entry; |
1958 | } | |
1959 | ||
3255089a BP |
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 | ||
3255089a BP |
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); | |
3255089a | 1974 | |
3b1d9e04 | 1975 | static size_t read_eoie_extension(const char *mmap, size_t mmap_size); |
7346e340 | 1976 | static void write_eoie_extension(struct strbuf *sb, struct git_hash_ctx *eoie_context, size_t offset); |
3b1d9e04 | 1977 | |
abb4bb83 BP |
1978 | struct load_index_extensions |
1979 | { | |
abb4bb83 | 1980 | pthread_t pthread; |
abb4bb83 BP |
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 | ||
77ff1127 BP |
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++) { | |
77ff1127 BP |
2026 | struct cache_entry *ce; |
2027 | unsigned long consumed; | |
2028 | ||
4a6ed30f VD |
2029 | ce = create_from_disk(ce_mem_pool, istate->version, |
2030 | mmap + src_offset, | |
2031 | &consumed, previous_ce); | |
77ff1127 BP |
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 | ||
44c7e1a7 | 2045 | istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool)); |
77ff1127 | 2046 | if (istate->version == 4) { |
44c7e1a7 | 2047 | mem_pool_init(istate->ce_mem_pool, |
77ff1127 BP |
2048 | estimate_cache_size_from_compressed(istate->cache_nr)); |
2049 | } else { | |
44c7e1a7 | 2050 | mem_pool_init(istate->ce_mem_pool, |
77ff1127 BP |
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 | ||
3255089a BP |
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 | ||
77ff1127 BP |
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, | |
7bd9631b | 2100 | int nr_threads, struct index_entry_offset_table *ieot) |
77ff1127 BP |
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 | ||
44c7e1a7 EN |
2110 | istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool)); |
2111 | mem_pool_init(istate->ce_mem_pool, 0); | |
77ff1127 BP |
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; | |
ca56dadb | 2116 | CALLOC_ARRAY(data, nr_threads); |
77ff1127 BP |
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; | |
bcd2c5ee | 2138 | p->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool)); |
77ff1127 | 2139 | if (istate->version == 4) { |
44c7e1a7 | 2140 | mem_pool_init(p->ce_mem_pool, |
77ff1127 BP |
2141 | estimate_cache_size_from_compressed(nr)); |
2142 | } else { | |
44c7e1a7 | 2143 | mem_pool_init(p->ce_mem_pool, |
77ff1127 BP |
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); | |
5e6f359f | 2164 | free(p->ce_mem_pool); |
77ff1127 BP |
2165 | consumed += p->consumed; |
2166 | } | |
2167 | ||
2168 | free(data); | |
2169 | ||
2170 | return consumed; | |
2171 | } | |
77ff1127 | 2172 | |
491df5f6 VD |
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 | */ | |
5bdf6d4a ÆAB |
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; | |
491df5f6 VD |
2183 | } |
2184 | ||
8fd2cb40 | 2185 | /* remember to discard_cache() before reading a different cache! */ |
3e52f70b | 2186 | int do_read_index(struct index_state *istate, const char *path, int must_exist) |
e83c5163 | 2187 | { |
77ff1127 | 2188 | int fd; |
e83c5163 | 2189 | struct stat st; |
debed2a6 | 2190 | unsigned long src_offset; |
371ed0de BP |
2191 | const struct cache_header *hdr; |
2192 | const char *mmap; | |
7a51ed66 | 2193 | size_t mmap_size; |
abb4bb83 BP |
2194 | struct load_index_extensions p; |
2195 | size_t extension_offset = 0; | |
77ff1127 BP |
2196 | int nr_threads, cpus; |
2197 | struct index_entry_offset_table *ieot = NULL; | |
e83c5163 | 2198 | |
913e0e99 | 2199 | if (istate->initialized) |
4aab5b46 | 2200 | return istate->cache_nr; |
5d1a5c02 | 2201 | |
fba2f38a KB |
2202 | istate->timestamp.sec = 0; |
2203 | istate->timestamp.nsec = 0; | |
8fd2cb40 | 2204 | fd = open(path, O_RDONLY); |
5d1a5c02 | 2205 | if (fd < 0) { |
491df5f6 VD |
2206 | if (!must_exist && errno == ENOENT) { |
2207 | set_new_index_sparsity(istate); | |
866b43e6 | 2208 | istate->initialized = 1; |
5d1a5c02 | 2209 | return 0; |
491df5f6 | 2210 | } |
9d0a9e90 | 2211 | die_errno(_("%s: index file open failed"), path); |
5d1a5c02 | 2212 | } |
e83c5163 | 2213 | |
3511a377 | 2214 | if (fstat(fd, &st)) |
9d0a9e90 | 2215 | die_errno(_("%s: cannot stat the open index"), path); |
3511a377 | 2216 | |
7a51ed66 | 2217 | mmap_size = xsize_t(st.st_size); |
aab61359 | 2218 | if (mmap_size < sizeof(struct cache_header) + the_hash_algo->rawsz) |
9d0a9e90 | 2219 | die(_("%s: index file smaller than expected"), path); |
3511a377 | 2220 | |
02638d1e | 2221 | mmap = xmmap_gently(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0); |
7a51ed66 | 2222 | if (mmap == MAP_FAILED) |
dc059294 EW |
2223 | die_errno(_("%s: unable to map index file%s"), path, |
2224 | mmap_os_err()); | |
57d84f8d | 2225 | close(fd); |
e83c5163 | 2226 | |
371ed0de | 2227 | hdr = (const struct cache_header *)mmap; |
7a51ed66 | 2228 | if (verify_hdr(hdr, mmap_size) < 0) |
e83c5163 LT |
2229 | goto unmap; |
2230 | ||
9da95bda PS |
2231 | oidread(&istate->oid, (const unsigned char *)hdr + mmap_size - the_hash_algo->rawsz, |
2232 | the_repository->hash_algo); | |
9d227781 | 2233 | istate->version = ntohl(hdr->hdr_version); |
4aab5b46 JH |
2234 | istate->cache_nr = ntohl(hdr->hdr_entries); |
2235 | istate->cache_alloc = alloc_nr(istate->cache_nr); | |
ca56dadb | 2236 | CALLOC_ARRAY(istate->cache, istate->cache_alloc); |
913e0e99 | 2237 | istate->initialized = 1; |
7a51ed66 | 2238 | |
abb4bb83 BP |
2239 | p.istate = istate; |
2240 | p.mmap = mmap; | |
2241 | p.mmap_size = mmap_size; | |
6c9cd161 | 2242 | |
7a51ed66 | 2243 | src_offset = sizeof(*hdr); |
4aab5b46 | 2244 | |
1870cc30 | 2245 | if (repo_config_get_index_threads(the_repository, &nr_threads)) |
2a9dedef | 2246 | nr_threads = 1; |
7a51ed66 | 2247 | |
77ff1127 BP |
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; | |
e83c5163 | 2254 | } |
abb4bb83 | 2255 | |
88168b9b NTND |
2256 | if (!HAVE_THREADS) |
2257 | nr_threads = 1; | |
2258 | ||
abb4bb83 BP |
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 | } | |
abb4bb83 | 2272 | |
77ff1127 BP |
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) { | |
7bd9631b | 2281 | src_offset += load_cache_entries_threaded(istate, mmap, mmap_size, nr_threads, ieot); |
77ff1127 | 2282 | free(ieot); |
8e72d675 | 2283 | } else { |
77ff1127 | 2284 | src_offset += load_all_cache_entries(istate, mmap, mmap_size, src_offset); |
8e72d675 | 2285 | } |
6c9cd161 | 2286 | |
fba2f38a | 2287 | istate->timestamp.sec = st.st_mtime; |
c06ff490 | 2288 | istate->timestamp.nsec = ST_MTIME_NSEC(st); |
fba2f38a | 2289 | |
abb4bb83 | 2290 | /* if we created a thread, join it otherwise load the extensions on the primary thread */ |
abb4bb83 BP |
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)); | |
88168b9b | 2295 | } else { |
abb4bb83 BP |
2296 | p.src_offset = src_offset; |
2297 | load_index_extensions(&p); | |
bad68ec9 | 2298 | } |
371ed0de | 2299 | munmap((void *)mmap, mmap_size); |
42fee7a3 JH |
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 | ||
7ca4fc88 VD |
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 | */ | |
4300f844 DS |
2315 | prepare_repo_settings(istate->repo); |
2316 | if (istate->repo->settings.command_requires_full_index) | |
2317 | ensure_full_index(istate); | |
7ca4fc88 VD |
2318 | else |
2319 | ensure_correct_sparsity(istate); | |
4300f844 | 2320 | |
4aab5b46 | 2321 | return istate->cache_nr; |
e83c5163 LT |
2322 | |
2323 | unmap: | |
371ed0de | 2324 | munmap((void *)mmap, mmap_size); |
9d0a9e90 | 2325 | die(_("index file corrupt")); |
e83c5163 LT |
2326 | } |
2327 | ||
0d59ffb4 CC |
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 | */ | |
a125a223 | 2334 | static void freshen_shared_index(const char *shared_index, int warn) |
0d59ffb4 | 2335 | { |
0d59ffb4 | 2336 | if (!check_and_freshen_file(shared_index, 1) && warn) |
9d0a9e90 | 2337 | warning(_("could not freshen shared index '%s'"), shared_index); |
0d59ffb4 CC |
2338 | } |
2339 | ||
a125a223 TG |
2340 | int read_index_from(struct index_state *istate, const char *path, |
2341 | const char *gitdir) | |
5fc2fc8f NTND |
2342 | { |
2343 | struct split_index *split_index; | |
2344 | int ret; | |
2182abd9 | 2345 | char *base_oid_hex; |
a125a223 | 2346 | char *base_path; |
5fc2fc8f NTND |
2347 | |
2348 | /* istate->initialized covers both .git/index and .git/sharedindex.xxx */ | |
2349 | if (istate->initialized) | |
2350 | return istate->cache_nr; | |
2351 | ||
42fee7a3 JH |
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); | |
c46c406a | 2358 | trace_performance_enter(); |
5fc2fc8f | 2359 | ret = do_read_index(istate, path, 0); |
c46c406a | 2360 | trace_performance_leave("read cache %s", path); |
42fee7a3 JH |
2361 | trace2_region_leave_printf("index", "do_read_index", the_repository, |
2362 | "%s", path); | |
435ec090 | 2363 | |
5fc2fc8f | 2364 | split_index = istate->split_index; |
2182abd9 | 2365 | if (!split_index || is_null_oid(&split_index->base_oid)) { |
435ec090 | 2366 | post_read_index_from(istate); |
5fc2fc8f | 2367 | return ret; |
03f15a79 | 2368 | } |
5fc2fc8f | 2369 | |
c46c406a | 2370 | trace_performance_enter(); |
5fc2fc8f | 2371 | if (split_index->base) |
2f6b1eb7 | 2372 | release_index(split_index->base); |
5fc2fc8f | 2373 | else |
2f6b1eb7 | 2374 | ALLOC_ARRAY(split_index->base, 1); |
6269f8ea | 2375 | index_state_init(split_index->base, istate->repo); |
de6ae5f9 | 2376 | |
2182abd9 | 2377 | base_oid_hex = oid_to_hex(&split_index->base_oid); |
2378 | base_path = xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex); | |
7667f4f0 JS |
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 { | |
998330ac | 2387 | char *path_copy = xstrdup(path); |
652891de JS |
2388 | char *base_path2 = xstrfmt("%s/sharedindex.%s", |
2389 | dirname(path_copy), base_oid_hex); | |
998330ac SG |
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); | |
652891de | 2396 | free(base_path2); |
998330ac | 2397 | } |
9001dc2a | 2398 | if (!oideq(&split_index->base_oid, &split_index->base->oid)) |
9d0a9e90 | 2399 | die(_("broken index, expect %s in %s, got %s"), |
2182abd9 | 2400 | base_oid_hex, base_path, |
75691ea3 | 2401 | oid_to_hex(&split_index->base->oid)); |
de6ae5f9 | 2402 | |
a125a223 | 2403 | freshen_shared_index(base_path, 0); |
5fc2fc8f | 2404 | merge_base_index(istate); |
435ec090 | 2405 | post_read_index_from(istate); |
c46c406a | 2406 | trace_performance_leave("read cache %s", base_path); |
b42ad7d5 | 2407 | free(base_path); |
5fc2fc8f NTND |
2408 | return ret; |
2409 | } | |
2410 | ||
fa7b3c2f JH |
2411 | int is_index_unborn(struct index_state *istate) |
2412 | { | |
debed2a6 | 2413 | return (!istate->cache_nr && !istate->timestamp.sec); |
fa7b3c2f JH |
2414 | } |
2415 | ||
6269f8ea | 2416 | void index_state_init(struct index_state *istate, struct repository *r) |
2f6b1eb7 | 2417 | { |
6269f8ea | 2418 | struct index_state blank = INDEX_STATE_INIT(r); |
2f6b1eb7 ÆAB |
2419 | memcpy(istate, &blank, sizeof(*istate)); |
2420 | } | |
2421 | ||
2422 | void release_index(struct index_state *istate) | |
6d297f81 | 2423 | { |
8e72d675 JM |
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 | |
8616a2d0 JM |
2428 | * cache entries. validate_cache_entries can detect when this |
2429 | * assertion does not hold. | |
8e72d675 | 2430 | */ |
8616a2d0 | 2431 | validate_cache_entries(istate); |
debed2a6 | 2432 | |
cfc5789a | 2433 | resolve_undo_clear_index(istate); |
2092678c | 2434 | free_name_hash(istate); |
4aab5b46 | 2435 | cache_tree_free(&(istate->cache_tree)); |
2f6b1eb7 ÆAB |
2436 | free(istate->fsmonitor_last_update); |
2437 | free(istate->cache); | |
5fc2fc8f | 2438 | discard_split_index(istate); |
f9e6c649 | 2439 | free_untracked_cache(istate->untracked); |
8e72d675 | 2440 | |
b5fcb1c0 ÆAB |
2441 | if (istate->sparse_checkout_patterns) { |
2442 | clear_pattern_list(istate->sparse_checkout_patterns); | |
2443 | FREE_AND_NULL(istate->sparse_checkout_patterns); | |
2444 | } | |
2445 | ||
8e72d675 | 2446 | if (istate->ce_mem_pool) { |
8616a2d0 | 2447 | mem_pool_discard(istate->ce_mem_pool, should_validate_cache_entries()); |
44c7e1a7 | 2448 | FREE_AND_NULL(istate->ce_mem_pool); |
8e72d675 | 2449 | } |
6d297f81 JS |
2450 | } |
2451 | ||
2f6b1eb7 ÆAB |
2452 | void discard_index(struct index_state *istate) |
2453 | { | |
2454 | release_index(istate); | |
6269f8ea | 2455 | index_state_init(istate, istate->repo); |
2f6b1eb7 ÆAB |
2456 | } |
2457 | ||
8616a2d0 JM |
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) { | |
391408e5 | 2474 | BUG("cache entry is not allocated from expected memory pool"); |
8616a2d0 JM |
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])) { | |
391408e5 | 2481 | BUG("cache entry is not allocated from expected memory pool"); |
8616a2d0 JM |
2482 | } |
2483 | } | |
2484 | } | |
2485 | ||
2486 | if (istate->split_index) | |
2487 | validate_cache_entries(istate->split_index->base); | |
2488 | } | |
2489 | ||
d1f128b0 | 2490 | int unmerged_index(const struct index_state *istate) |
94a5728c DB |
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 | ||
150fe065 NTND |
2500 | int repo_index_has_changes(struct repository *repo, |
2501 | struct tree *tree, | |
2502 | struct strbuf *sb) | |
cffbfad5 | 2503 | { |
150fe065 | 2504 | struct index_state *istate = repo->index; |
e1f8694f | 2505 | struct object_id cmp; |
cffbfad5 EN |
2506 | int i; |
2507 | ||
e1f8694f EN |
2508 | if (tree) |
2509 | cmp = tree->object.oid; | |
4a93b899 | 2510 | if (tree || !repo_get_oid_tree(repo, "HEAD", &cmp)) { |
cffbfad5 EN |
2511 | struct diff_options opt; |
2512 | ||
150fe065 | 2513 | repo_diff_setup(repo, &opt); |
cffbfad5 EN |
2514 | opt.flags.exit_with_status = 1; |
2515 | if (!sb) | |
2516 | opt.flags.quick = 1; | |
8d833e93 | 2517 | diff_setup_done(&opt); |
e1f8694f | 2518 | do_diff_cache(&cmp, &opt); |
cffbfad5 EN |
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 { | |
0c18c059 DS |
2528 | /* TODO: audit for interaction with sparse-index. */ |
2529 | ensure_full_index(istate); | |
1b9fbefb | 2530 | for (i = 0; sb && i < istate->cache_nr; i++) { |
cffbfad5 EN |
2531 | if (i) |
2532 | strbuf_addch(sb, ' '); | |
1b9fbefb | 2533 | strbuf_addstr(sb, istate->cache[i]->name); |
cffbfad5 | 2534 | } |
1b9fbefb | 2535 | return !!istate->cache_nr; |
cffbfad5 EN |
2536 | } |
2537 | } | |
2538 | ||
410334ed | 2539 | static int write_index_ext_header(struct hashfile *f, |
7346e340 | 2540 | struct git_hash_ctx *eoie_f, |
410334ed DS |
2541 | unsigned int ext, |
2542 | unsigned int sz) | |
bad68ec9 | 2543 | { |
410334ed DS |
2544 | hashwrite_be32(f, ext); |
2545 | hashwrite_be32(f, sz); | |
2546 | ||
2547 | if (eoie_f) { | |
2548 | ext = htonl(ext); | |
2549 | sz = htonl(sz); | |
0578f1e6 PS |
2550 | git_hash_update(eoie_f, &ext, sizeof(ext)); |
2551 | git_hash_update(eoie_f, &sz, sizeof(sz)); | |
3b1d9e04 | 2552 | } |
410334ed | 2553 | return 0; |
bad68ec9 JH |
2554 | } |
2555 | ||
58bf2a4c NTND |
2556 | static void ce_smudge_racily_clean_entry(struct index_state *istate, |
2557 | struct cache_entry *ce) | |
407c8eb0 JH |
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 | |
c21d39d7 | 2563 | * ce_stat_data.sd_mtime match the index file mtime. |
c70115b4 JH |
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 ;-) | |
407c8eb0 JH |
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; | |
58bf2a4c | 2576 | if (ce_modified_check_fs(istate, ce, &st)) { |
4b3511b0 JH |
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 | * | |
b7e58b17 | 2588 | * but it does not. When the second update-index runs, |
4b3511b0 JH |
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 | |
a6080a0a | 2594 | * obtain from the filesystem next time we stat("frotz"). |
4b3511b0 JH |
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 | */ | |
c21d39d7 | 2602 | ce->ce_stat_data.sd_size = 0; |
407c8eb0 JH |
2603 | } |
2604 | } | |
2605 | ||
f136f7bf | 2606 | /* Copy miscellaneous fields but not the name */ |
ce012deb | 2607 | static void copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk, |
f136f7bf | 2608 | struct cache_entry *ce) |
7a51ed66 | 2609 | { |
b60e188c | 2610 | short flags; |
575fa8a3 | 2611 | const unsigned hashsz = the_hash_algo->rawsz; |
2612 | uint16_t *flagsp = (uint16_t *)(ondisk->data + hashsz); | |
b60e188c | 2613 | |
c21d39d7 MH |
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); | |
7a51ed66 | 2620 | ondisk->mode = htonl(ce->ce_mode); |
c21d39d7 MH |
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); | |
f4836570 | 2624 | hashcpy(ondisk->data, ce->oid.hash, the_repository->hash_algo); |
b60e188c | 2625 | |
ce51bf09 | 2626 | flags = ce->ce_flags & ~CE_NAMEMASK; |
b60e188c | 2627 | flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK : ce_namelen(ce)); |
575fa8a3 | 2628 | flagsp[0] = htons(flags); |
06aaaa0b | 2629 | if (ce->ce_flags & CE_EXTENDED) { |
575fa8a3 | 2630 | flagsp[1] = htons((ce->ce_flags & CE_EXTENDED_FLAGS) >> 16); |
f136f7bf JH |
2631 | } |
2632 | } | |
2633 | ||
410334ed | 2634 | static int ce_write_entry(struct hashfile *f, struct cache_entry *ce, |
ce012deb | 2635 | struct strbuf *previous_name, struct ondisk_cache_entry *ondisk) |
f136f7bf | 2636 | { |
9d227781 | 2637 | int size; |
00a4b035 RJ |
2638 | unsigned int saved_namelen; |
2639 | int stripped_name = 0; | |
ce012deb | 2640 | static unsigned char padding[8] = { 0x00 }; |
f136f7bf | 2641 | |
b3c96fb1 NTND |
2642 | if (ce->ce_flags & CE_STRIP_NAME) { |
2643 | saved_namelen = ce_namelen(ce); | |
2644 | ce->ce_namelen = 0; | |
00a4b035 | 2645 | stripped_name = 1; |
b3c96fb1 NTND |
2646 | } |
2647 | ||
575fa8a3 | 2648 | size = offsetof(struct ondisk_cache_entry,data) + ondisk_data_size(ce->ce_flags, 0); |
ce012deb | 2649 | |
9d227781 | 2650 | if (!previous_name) { |
ce012deb KW |
2651 | int len = ce_namelen(ce); |
2652 | copy_cache_entry_to_ondisk(ondisk, ce); | |
410334ed DS |
2653 | hashwrite(f, ondisk, size); |
2654 | hashwrite(f, ce->name, len); | |
2655 | hashwrite(f, padding, align_padding_size(size, len)); | |
9d227781 JH |
2656 | } else { |
2657 | int common, to_remove, prefix_size; | |
2658 | unsigned char to_remove_vi[16]; | |
2659 | for (common = 0; | |
0f558141 JS |
2660 | (common < previous_name->len && |
2661 | ce->name[common] && | |
9d227781 JH |
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 | ||
ce012deb | 2668 | copy_cache_entry_to_ondisk(ondisk, ce); |
410334ed DS |
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); | |
9d227781 JH |
2673 | |
2674 | strbuf_splice(previous_name, common, to_remove, | |
2675 | ce->name + common, ce_namelen(ce) - common); | |
06aaaa0b | 2676 | } |
00a4b035 | 2677 | if (stripped_name) { |
b3c96fb1 NTND |
2678 | ce->ce_namelen = saved_namelen; |
2679 | ce->ce_flags &= ~CE_STRIP_NAME; | |
2680 | } | |
7a51ed66 | 2681 | |
410334ed | 2682 | return 0; |
7a51ed66 LT |
2683 | } |
2684 | ||
426ddeea YM |
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; | |
aab61359 | 2694 | unsigned char hash[GIT_MAX_RAWSZ]; |
426ddeea YM |
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 | ||
aab61359 | 2706 | if (st.st_size < sizeof(struct cache_header) + the_hash_algo->rawsz) |
426ddeea YM |
2707 | goto out; |
2708 | ||
aab61359 | 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) | |
426ddeea YM |
2711 | goto out; |
2712 | ||
f4836570 | 2713 | if (!hasheq(istate->oid.hash, hash, the_repository->hash_algo)) |
426ddeea YM |
2714 | goto out; |
2715 | ||
2716 | close(fd); | |
2717 | return 1; | |
2718 | ||
2719 | out: | |
2720 | close(fd); | |
2721 | return 0; | |
2722 | } | |
2723 | ||
1b0d968b | 2724 | static int repo_verify_index(struct repository *repo) |
426ddeea | 2725 | { |
1b0d968b | 2726 | return verify_index_from(repo->index, repo->index_file); |
426ddeea YM |
2727 | } |
2728 | ||
2ede073f | 2729 | int has_racy_timestamp(struct index_state *istate) |
483fbe2b JH |
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 | ||
1b0d968b NTND |
2742 | void repo_update_index_if_able(struct repository *repo, |
2743 | struct lock_file *lockfile) | |
ccdc4ec3 | 2744 | { |
1b0d968b NTND |
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); | |
b74c90fb MÅ |
2749 | else |
2750 | rollback_lock_file(lockfile); | |
ccdc4ec3 JH |
2751 | } |
2752 | ||
d8465500 JN |
2753 | static int record_eoie(void) |
2754 | { | |
2755 | int val; | |
2756 | ||
2757 | if (!git_config_get_bool("index.recordendofindexentries", &val)) | |
2758 | return val; | |
2a9dedef JN |
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 | */ | |
1870cc30 | 2765 | return !repo_config_get_index_threads(the_repository, &val) && val != 1; |
d8465500 JN |
2766 | } |
2767 | ||
42916054 JN |
2768 | static int record_ieot(void) |
2769 | { | |
2770 | int val; | |
2771 | ||
2772 | if (!git_config_get_bool("index.recordoffsettable", &val)) | |
2773 | return val; | |
2a9dedef JN |
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 | */ | |
1870cc30 | 2780 | return !repo_config_get_index_threads(the_repository, &val) && val != 1; |
42916054 JN |
2781 | } |
2782 | ||
3b7a4475 JS |
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 | ||
812d6b00 MÅ |
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 | */ | |
9f41c7a6 | 2800 | static int do_write_index(struct index_state *istate, struct tempfile *tempfile, |
3b7a4475 | 2801 | enum write_extensions write_extensions, unsigned flags) |
197ee8c9 | 2802 | { |
ca54d9ba | 2803 | uint64_t start = getnanotime(); |
410334ed | 2804 | struct hashfile *f; |
7346e340 | 2805 | struct git_hash_ctx *eoie_c = NULL; |
197ee8c9 | 2806 | struct cache_header hdr; |
b50386c7 | 2807 | int i, err = 0, removed, extended, hdr_version; |
4aab5b46 JH |
2808 | struct cache_entry **cache = istate->cache; |
2809 | int entries = istate->cache_nr; | |
e1afca4f | 2810 | struct stat st; |
575fa8a3 | 2811 | struct ondisk_cache_entry ondisk; |
9d227781 | 2812 | struct strbuf previous_name_buf = STRBUF_INIT, *previous_name; |
4bddd983 | 2813 | int drop_cache_tree = istate->drop_cache_tree; |
3b1d9e04 | 2814 | off_t offset; |
ba95e96d | 2815 | int csum_fsync_flag; |
77ff1127 | 2816 | int ieot_entries = 1; |
3255089a | 2817 | struct index_entry_offset_table *ieot = NULL; |
6269f8ea | 2818 | struct repository *r = istate->repo; |
d1c53f67 PS |
2819 | struct strbuf sb = STRBUF_INIT; |
2820 | int nr, nr_threads, ret; | |
025a0709 | 2821 | |
228457c9 | 2822 | f = hashfd(the_repository->hash_algo, tempfile->fd, tempfile->filename.buf); |
410334ed | 2823 | |
17194b19 DS |
2824 | prepare_repo_settings(r); |
2825 | f->skip_hash = r->settings.index_skip_hash; | |
ee1f0c24 | 2826 | |
06aaaa0b | 2827 | for (i = removed = extended = 0; i < entries; i++) { |
7a51ed66 | 2828 | if (cache[i]->ce_flags & CE_REMOVE) |
025a0709 | 2829 | removed++; |
197ee8c9 | 2830 | |
06aaaa0b NTND |
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 | ||
e8ffd034 | 2839 | if (!istate->version) |
4a93b899 | 2840 | istate->version = get_index_format_default(r); |
9d227781 JH |
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 | ||
ccc4feb5 | 2848 | hdr.hdr_signature = htonl(CACHE_SIGNATURE); |
9d227781 | 2849 | hdr.hdr_version = htonl(hdr_version); |
025a0709 | 2850 | hdr.hdr_entries = htonl(entries - removed); |
197ee8c9 | 2851 | |
410334ed | 2852 | hashwrite(f, &hdr, sizeof(hdr)); |
197ee8c9 | 2853 | |
1870cc30 | 2854 | if (!HAVE_THREADS || repo_config_get_index_threads(the_repository, &nr_threads)) |
88168b9b | 2855 | nr_threads = 1; |
62e5ee81 | 2856 | |
42916054 | 2857 | if (nr_threads != 1 && record_ieot()) { |
3255089a BP |
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; | |
77ff1127 BP |
2872 | if (ieot_blocks > istate->cache_nr) |
2873 | ieot_blocks = istate->cache_nr; | |
3255089a BP |
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))); | |
77ff1127 | 2883 | ieot_entries = DIV_ROUND_UP(entries, ieot_blocks); |
3255089a BP |
2884 | } |
2885 | } | |
3255089a | 2886 | |
410334ed DS |
2887 | offset = hashfile_total(f); |
2888 | ||
3255089a | 2889 | nr = 0; |
9d227781 | 2890 | previous_name = (hdr_version == 4) ? &previous_name_buf : NULL; |
ce012deb | 2891 | |
197ee8c9 LT |
2892 | for (i = 0; i < entries; i++) { |
2893 | struct cache_entry *ce = cache[i]; | |
7a51ed66 | 2894 | if (ce->ce_flags & CE_REMOVE) |
aa16021e | 2895 | continue; |
e06c43c7 | 2896 | if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce)) |
58bf2a4c | 2897 | ce_smudge_racily_clean_entry(istate, ce); |
99d1a986 | 2898 | if (is_null_oid(&ce->oid)) { |
83bd7437 JK |
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 | |
b50386c7 | 2907 | err = error(msg, ce->name); |
a96d3cc3 JK |
2908 | |
2909 | drop_cache_tree = 1; | |
83bd7437 | 2910 | } |
77ff1127 | 2911 | if (ieot && i && (i % ieot_entries == 0)) { |
3255089a BP |
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; | |
410334ed DS |
2923 | |
2924 | offset = hashfile_total(f); | |
3255089a | 2925 | } |
410334ed | 2926 | if (ce_write_entry(f, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) < 0) |
b50386c7 KW |
2927 | err = -1; |
2928 | ||
2929 | if (err) | |
2930 | break; | |
3255089a BP |
2931 | nr++; |
2932 | } | |
2933 | if (ieot && nr) { | |
2934 | ieot->entries[ieot->nr].nr = nr; | |
2935 | ieot->entries[ieot->nr].offset = offset; | |
2936 | ieot->nr++; | |
197ee8c9 | 2937 | } |
9d227781 | 2938 | strbuf_release(&previous_name_buf); |
1af1c2b6 | 2939 | |
3255089a | 2940 | if (err) { |
d1c53f67 PS |
2941 | ret = err; |
2942 | goto out; | |
3255089a | 2943 | } |
b50386c7 | 2944 | |
410334ed DS |
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); | |
3255089a | 2954 | } |
3b1d9e04 | 2955 | |
3255089a BP |
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 | */ | |
3255089a | 2963 | if (ieot) { |
d1c53f67 | 2964 | strbuf_reset(&sb); |
3255089a BP |
2965 | |
2966 | write_ieot_extension(&sb, ieot); | |
410334ed DS |
2967 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_INDEXENTRYOFFSETTABLE, sb.len) < 0; |
2968 | hashwrite(f, sb.buf, sb.len); | |
d1c53f67 PS |
2969 | if (err) { |
2970 | ret = -1; | |
2971 | goto out; | |
2972 | } | |
3255089a | 2973 | } |
3255089a | 2974 | |
3b7a4475 JS |
2975 | if (write_extensions & WRITE_SPLIT_INDEX_EXTENSION && |
2976 | istate->split_index) { | |
d1c53f67 | 2977 | strbuf_reset(&sb); |
5fc2fc8f | 2978 | |
451b66c5 JS |
2979 | if (istate->sparse_index) |
2980 | die(_("cannot write split index for a sparse index")); | |
2981 | ||
5fc2fc8f | 2982 | err = write_link_extension(&sb, istate) < 0 || |
410334ed DS |
2983 | write_index_ext_header(f, eoie_c, CACHE_EXT_LINK, |
2984 | sb.len) < 0; | |
2985 | hashwrite(f, sb.buf, sb.len); | |
d1c53f67 PS |
2986 | if (err) { |
2987 | ret = -1; | |
2988 | goto out; | |
2989 | } | |
5fc2fc8f | 2990 | } |
3b7a4475 JS |
2991 | if (write_extensions & WRITE_CACHE_TREE_EXTENSION && |
2992 | !drop_cache_tree && istate->cache_tree) { | |
d1c53f67 | 2993 | strbuf_reset(&sb); |
1dffb8fa | 2994 | |
1dffb8fa | 2995 | cache_tree_write(&sb, istate->cache_tree); |
410334ed DS |
2996 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_TREE, sb.len) < 0; |
2997 | hashwrite(f, sb.buf, sb.len); | |
d1c53f67 PS |
2998 | if (err) { |
2999 | ret = -1; | |
3000 | goto out; | |
3001 | } | |
bad68ec9 | 3002 | } |
3b7a4475 JS |
3003 | if (write_extensions & WRITE_RESOLVE_UNDO_EXTENSION && |
3004 | istate->resolve_undo) { | |
d1c53f67 | 3005 | strbuf_reset(&sb); |
cfc5789a | 3006 | |
b81093ae | 3007 | resolve_undo_write(&sb, istate->resolve_undo, the_hash_algo); |
410334ed DS |
3008 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_RESOLVE_UNDO, |
3009 | sb.len) < 0; | |
3010 | hashwrite(f, sb.buf, sb.len); | |
d1c53f67 PS |
3011 | if (err) { |
3012 | ret = -1; | |
3013 | goto out; | |
3014 | } | |
cfc5789a | 3015 | } |
3b7a4475 JS |
3016 | if (write_extensions & WRITE_UNTRACKED_CACHE_EXTENSION && |
3017 | istate->untracked) { | |
d1c53f67 | 3018 | strbuf_reset(&sb); |
83c094ad NTND |
3019 | |
3020 | write_untracked_extension(&sb, istate->untracked); | |
410334ed DS |
3021 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_UNTRACKED, |
3022 | sb.len) < 0; | |
3023 | hashwrite(f, sb.buf, sb.len); | |
d1c53f67 PS |
3024 | if (err) { |
3025 | ret = -1; | |
3026 | goto out; | |
3027 | } | |
83c094ad | 3028 | } |
3b7a4475 JS |
3029 | if (write_extensions & WRITE_FSMONITOR_EXTENSION && |
3030 | istate->fsmonitor_last_update) { | |
d1c53f67 | 3031 | strbuf_reset(&sb); |
883e248b BP |
3032 | |
3033 | write_fsmonitor_extension(&sb, istate); | |
410334ed DS |
3034 | err = write_index_ext_header(f, eoie_c, CACHE_EXT_FSMONITOR, sb.len) < 0; |
3035 | hashwrite(f, sb.buf, sb.len); | |
d1c53f67 PS |
3036 | if (err) { |
3037 | ret = -1; | |
3038 | goto out; | |
3039 | } | |
3b1d9e04 | 3040 | } |
cd42415f | 3041 | if (istate->sparse_index) { |
d1c53f67 PS |
3042 | if (write_index_ext_header(f, eoie_c, CACHE_EXT_SPARSE_DIRECTORIES, 0) < 0) { |
3043 | ret = -1; | |
3044 | goto out; | |
3045 | } | |
cd42415f | 3046 | } |
3b1d9e04 BP |
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 | */ | |
410334ed | 3054 | if (eoie_c) { |
d1c53f67 | 3055 | strbuf_reset(&sb); |
3b1d9e04 | 3056 | |
410334ed DS |
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); | |
d1c53f67 PS |
3060 | if (err) { |
3061 | ret = -1; | |
3062 | goto out; | |
3063 | } | |
883e248b | 3064 | } |
e1afca4f | 3065 | |
ba95e96d NS |
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); | |
d1c53f67 | 3072 | f = NULL; |
ba95e96d | 3073 | |
49bd0fc2 | 3074 | if (close_tempfile_gently(tempfile)) { |
d1c53f67 PS |
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; | |
49bd0fc2 | 3081 | } |
5bcf109c KB |
3082 | istate->timestamp.sec = (unsigned int)st.st_mtime; |
3083 | istate->timestamp.nsec = ST_MTIME_NSEC(st); | |
ca54d9ba | 3084 | trace_performance_since(start, "write index, changed mask = %x", istate->cache_changed); |
42fee7a3 JH |
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 | ||
d1c53f67 PS |
3095 | ret = 0; |
3096 | ||
3097 | out: | |
3098 | if (f) | |
3099 | free_hashfile(f); | |
3100 | strbuf_release(&sb); | |
a69d120c | 3101 | free(eoie_c); |
d1c53f67 PS |
3102 | free(ieot); |
3103 | return ret; | |
197ee8c9 | 3104 | } |
e46bbcf6 | 3105 | |
626f35c8 NTND |
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 | { | |
751baced MH |
3113 | if (alternate_index_output) |
3114 | return commit_lock_file_to(lk, alternate_index_output); | |
3115 | else | |
626f35c8 | 3116 | return commit_lock_file(lk); |
626f35c8 NTND |
3117 | } |
3118 | ||
3b7a4475 JS |
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) | |
03b86647 | 3123 | { |
42fee7a3 | 3124 | int ret; |
9fadb373 | 3125 | int was_full = istate->sparse_index == INDEX_EXPANDED; |
6e773527 | 3126 | |
ce7a9f01 | 3127 | ret = convert_to_sparse(istate, 0); |
6e773527 DS |
3128 | |
3129 | if (ret) { | |
3130 | warning(_("failed to convert to a sparse-index")); | |
3131 | return ret; | |
3132 | } | |
42fee7a3 JH |
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, | |
6a8c89d0 | 3139 | "%s", get_lock_file_path(lock)); |
3b7a4475 | 3140 | ret = do_write_index(istate, lock->tempfile, write_extensions, flags); |
42fee7a3 | 3141 | trace2_region_leave_printf("index", "do_write_index", the_repository, |
6a8c89d0 | 3142 | "%s", get_lock_file_path(lock)); |
42fee7a3 | 3143 | |
6e773527 DS |
3144 | if (was_full) |
3145 | ensure_full_index(istate); | |
3146 | ||
03b86647 NTND |
3147 | if (ret) |
3148 | return ret; | |
03b86647 | 3149 | if (flags & COMMIT_LOCK) |
1956ecd0 BP |
3150 | ret = commit_locked_index(lock); |
3151 | else | |
3152 | ret = close_lock_file_gently(lock); | |
3153 | ||
169c9797 PS |
3154 | run_hooks_l(the_repository, "post-index-change", |
3155 | istate->updated_workdir ? "1" : "0", | |
3156 | istate->updated_skipworktree ? "1" : "0", NULL); | |
1956ecd0 BP |
3157 | istate->updated_workdir = 0; |
3158 | istate->updated_skipworktree = 0; | |
3159 | ||
3160 | return ret; | |
03b86647 NTND |
3161 | } |
3162 | ||
5fc2fc8f NTND |
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); | |
3b7a4475 | 3169 | ret = do_write_locked_index(istate, lock, flags, WRITE_ALL_EXTENSIONS); |
5fc2fc8f NTND |
3170 | finish_writing_split_index(istate); |
3171 | return ret; | |
3172 | } | |
3173 | ||
b9683722 CC |
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) { | |
a70a9bf6 PS |
3180 | const char *shared_index_expire = "2.weeks.ago"; |
3181 | char *value = NULL; | |
3182 | ||
87aace12 | 3183 | repo_config_get_expiry(the_repository, "splitindex.sharedindexexpire", |
1e8962ee | 3184 | &value); |
a70a9bf6 PS |
3185 | if (value) |
3186 | shared_index_expire = value; | |
3187 | ||
b9683722 CC |
3188 | shared_index_expire_date = approxidate(shared_index_expire); |
3189 | shared_index_expire_date_prepared = 1; | |
a70a9bf6 PS |
3190 | |
3191 | free(value); | |
b9683722 CC |
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)) | |
78bde923 | 3207 | return error_errno(_("could not stat '%s'"), shared_index_path); |
b9683722 CC |
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; | |
246deeac | 3217 | DIR *dir = opendir(repo_get_git_dir(the_repository)); |
b9683722 CC |
3218 | |
3219 | if (!dir) | |
246deeac PS |
3220 | return error_errno(_("unable to open git dir: %s"), |
3221 | repo_get_git_dir(the_repository)); | |
b9683722 CC |
3222 | |
3223 | while ((de = readdir(dir)) != NULL) { | |
3224 | const char *sha1_hex; | |
88dd321c | 3225 | char *shared_index_path; |
b9683722 CC |
3226 | if (!skip_prefix(de->d_name, "sharedindex.", &sha1_hex)) |
3227 | continue; | |
3228 | if (!strcmp(sha1_hex, current_hex)) | |
3229 | continue; | |
88dd321c PS |
3230 | |
3231 | shared_index_path = repo_git_path(the_repository, "%s", de->d_name); | |
b9683722 CC |
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); | |
88dd321c PS |
3235 | |
3236 | free(shared_index_path); | |
b9683722 CC |
3237 | } |
3238 | closedir(dir); | |
3239 | ||
3240 | return 0; | |
3241 | } | |
3242 | ||
a0a96756 | 3243 | static int write_shared_index(struct index_state *istate, |
ba95e96d | 3244 | struct tempfile **temp, unsigned flags) |
c18b80a0 NTND |
3245 | { |
3246 | struct split_index *si = istate->split_index; | |
6e773527 | 3247 | int ret, was_full = !istate->sparse_index; |
88dd321c | 3248 | char *path; |
c18b80a0 | 3249 | |
c18b80a0 | 3250 | move_cache_to_base_index(istate); |
ce7a9f01 | 3251 | convert_to_sparse(istate, 0); |
42fee7a3 JH |
3252 | |
3253 | trace2_region_enter_printf("index", "shared/do_write_index", | |
6a8c89d0 | 3254 | the_repository, "%s", get_tempfile_path(*temp)); |
3b7a4475 | 3255 | ret = do_write_index(si->base, *temp, WRITE_NO_EXTENSION, flags); |
c173542c | 3256 | trace2_region_leave_printf("index", "shared/do_write_index", |
6a8c89d0 | 3257 | the_repository, "%s", get_tempfile_path(*temp)); |
42fee7a3 | 3258 | |
6e773527 DS |
3259 | if (was_full) |
3260 | ensure_full_index(istate); | |
3261 | ||
59f9d2dd | 3262 | if (ret) |
c18b80a0 | 3263 | return ret; |
028f6186 | 3264 | ret = adjust_shared_perm(the_repository, get_tempfile_path(*temp)); |
df801f3f | 3265 | if (ret) { |
9d0a9e90 | 3266 | error(_("cannot fix permission bits on '%s'"), get_tempfile_path(*temp)); |
df801f3f CC |
3267 | return ret; |
3268 | } | |
88dd321c PS |
3269 | |
3270 | path = repo_git_path(the_repository, "sharedindex.%s", oid_to_hex(&si->base->oid)); | |
3271 | ret = rename_tempfile(temp, path); | |
b9683722 | 3272 | if (!ret) { |
75691ea3 | 3273 | oidcpy(&si->base_oid, &si->base->oid); |
3274 | clean_shared_index_files(oid_to_hex(&si->base->oid)); | |
b9683722 CC |
3275 | } |
3276 | ||
88dd321c | 3277 | free(path); |
c18b80a0 NTND |
3278 | return ret; |
3279 | } | |
3280 | ||
e6a1dd77 CC |
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; | |
d8b77218 | 3286 | int max_split = repo_config_get_max_percent_split_change(the_repository); |
e6a1dd77 CC |
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 | ||
03b86647 NTND |
3311 | int write_locked_index(struct index_state *istate, struct lock_file *lock, |
3312 | unsigned flags) | |
3313 | { | |
e8ffd034 | 3314 | int new_shared_index, ret, test_split_index_env; |
5fc2fc8f NTND |
3315 | struct split_index *si = istate->split_index; |
3316 | ||
9f119599 PS |
3317 | if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0) && |
3318 | cache_tree_verify(the_repository, istate) < 0) | |
3319 | return -1; | |
4592e608 | 3320 | |
61000814 MÅ |
3321 | if ((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) { |
3322 | if (flags & COMMIT_LOCK) | |
3323 | rollback_lock_file(lock); | |
3324 | return 0; | |
3325 | } | |
3326 | ||
3bd28eb2 AV |
3327 | if (istate->fsmonitor_last_update) |
3328 | fill_fsmonitor_bitmap(istate); | |
3329 | ||
e8ffd034 SG |
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 || | |
5165dd59 | 3334 | (istate->cache_changed & ~EXTMASK)) { |
3b7a4475 JS |
3335 | ret = do_write_locked_index(istate, lock, flags, |
3336 | ~WRITE_SPLIT_INDEX_EXTENSION); | |
df60cf57 | 3337 | goto out; |
5fc2fc8f NTND |
3338 | } |
3339 | ||
e8ffd034 SG |
3340 | if (test_split_index_env) { |
3341 | if (!si) { | |
3342 | si = init_split_index(istate); | |
d6e3c181 | 3343 | istate->cache_changed |= SPLIT_INDEX_ORDERED; |
e8ffd034 SG |
3344 | } else { |
3345 | int v = si->base_oid.hash[0]; | |
3346 | if ((v & 15) < 6) | |
3347 | istate->cache_changed |= SPLIT_INDEX_ORDERED; | |
3348 | } | |
d6e3c181 | 3349 | } |
e6a1dd77 CC |
3350 | if (too_many_not_shared_entries(istate)) |
3351 | istate->cache_changed |= SPLIT_INDEX_ORDERED; | |
0d59ffb4 CC |
3352 | |
3353 | new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED; | |
3354 | ||
3355 | if (new_shared_index) { | |
59f9d2dd NTND |
3356 | struct tempfile *temp; |
3357 | int saved_errno; | |
88dd321c | 3358 | char *path; |
59f9d2dd | 3359 | |
c9d6c788 | 3360 | /* Same initial permissions as the main .git/index file */ |
88dd321c PS |
3361 | path = repo_git_path(the_repository, "sharedindex_XXXXXX"); |
3362 | temp = mks_tempfile_sm(path, 0, 0666); | |
3363 | free(path); | |
59f9d2dd | 3364 | if (!temp) { |
3b7a4475 JS |
3365 | ret = do_write_locked_index(istate, lock, flags, |
3366 | ~WRITE_SPLIT_INDEX_EXTENSION); | |
ef5b3a6c NTND |
3367 | goto out; |
3368 | } | |
ba95e96d | 3369 | ret = write_shared_index(istate, &temp, flags); |
59f9d2dd NTND |
3370 | |
3371 | saved_errno = errno; | |
3372 | if (is_tempfile_active(temp)) | |
3373 | delete_tempfile(&temp); | |
3374 | errno = saved_errno; | |
3375 | ||
c18b80a0 | 3376 | if (ret) |
df60cf57 | 3377 | goto out; |
c18b80a0 NTND |
3378 | } |
3379 | ||
0d59ffb4 CC |
3380 | ret = write_split_index(istate, lock, flags); |
3381 | ||
3382 | /* Freshen the shared index only if the split-index was written */ | |
6e37c8ed | 3383 | if (!ret && !new_shared_index && !is_null_oid(&si->base_oid)) { |
88dd321c PS |
3384 | char *shared_index = repo_git_path(the_repository, "sharedindex.%s", |
3385 | oid_to_hex(&si->base_oid)); | |
a125a223 | 3386 | freshen_shared_index(shared_index, 1); |
88dd321c | 3387 | free(shared_index); |
a125a223 | 3388 | } |
0d59ffb4 | 3389 | |
df60cf57 MÅ |
3390 | out: |
3391 | if (flags & COMMIT_LOCK) | |
3392 | rollback_lock_file(lock); | |
0d59ffb4 | 3393 | return ret; |
03b86647 NTND |
3394 | } |
3395 | ||
e46bbcf6 MV |
3396 | /* |
3397 | * Read the index file that is potentially unmerged into given | |
ad376204 EN |
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(). | |
e46bbcf6 | 3405 | */ |
e1ff0a32 | 3406 | int repo_read_index_unmerged(struct repository *repo) |
e46bbcf6 | 3407 | { |
e1ff0a32 | 3408 | struct index_state *istate; |
e46bbcf6 | 3409 | int i; |
d1a43f2a | 3410 | int unmerged = 0; |
e46bbcf6 | 3411 | |
e1ff0a32 NTND |
3412 | repo_read_index(repo); |
3413 | istate = repo->index; | |
e46bbcf6 MV |
3414 | for (i = 0; i < istate->cache_nr; i++) { |
3415 | struct cache_entry *ce = istate->cache[i]; | |
d1a43f2a | 3416 | struct cache_entry *new_ce; |
a849735b | 3417 | int len; |
d1a43f2a JH |
3418 | |
3419 | if (!ce_stage(ce)) | |
e46bbcf6 | 3420 | continue; |
d1a43f2a | 3421 | unmerged = 1; |
68c4f6a5 | 3422 | len = ce_namelen(ce); |
a849735b | 3423 | new_ce = make_empty_cache_entry(istate, len); |
d1a43f2a | 3424 | memcpy(new_ce->name, ce->name, len); |
b60e188c TG |
3425 | new_ce->ce_flags = create_ce_flags(0) | CE_CONFLICTED; |
3426 | new_ce->ce_namelen = len; | |
d1a43f2a | 3427 | new_ce->ce_mode = ce->ce_mode; |
ad376204 | 3428 | if (add_index_entry(istate, new_ce, ADD_CACHE_SKIP_DFCHECK)) |
9d0a9e90 | 3429 | return error(_("%s: cannot drop to stage #0"), |
5699d17e | 3430 | new_ce->name); |
e46bbcf6 | 3431 | } |
d1a43f2a | 3432 | return unmerged; |
e46bbcf6 | 3433 | } |
041aee31 | 3434 | |
98fa4738 JK |
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 | */ | |
847a9e5d DS |
3444 | int index_name_is_other(struct index_state *istate, const char *name, |
3445 | int namelen) | |
98fa4738 JK |
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 | } | |
29fb37b2 | 3462 | |
847a9e5d | 3463 | void *read_blob_data_from_index(struct index_state *istate, |
87542508 | 3464 | const char *path, unsigned long *size) |
29fb37b2 LF |
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; | |
bc726bd0 ÆAB |
3488 | data = repo_read_object_file(the_repository, &istate->cache[pos]->oid, |
3489 | &type, &sz); | |
29fb37b2 LF |
3490 | if (!data || type != OBJ_BLOB) { |
3491 | free(data); | |
3492 | return NULL; | |
3493 | } | |
ff366825 LF |
3494 | if (size) |
3495 | *size = sz; | |
29fb37b2 LF |
3496 | return data; |
3497 | } | |
38612532 | 3498 | |
edf3b905 DT |
3499 | void move_index_extensions(struct index_state *dst, struct index_state *src) |
3500 | { | |
3501 | dst->untracked = src->untracked; | |
3502 | src->untracked = NULL; | |
836ef2b6 NTND |
3503 | dst->cache_tree = src->cache_tree; |
3504 | src->cache_tree = NULL; | |
edf3b905 | 3505 | } |
a849735b | 3506 | |
8e72d675 JM |
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 | ||
a849735b JM |
3520 | void discard_cache_entry(struct cache_entry *ce) |
3521 | { | |
8616a2d0 JM |
3522 | if (ce && should_validate_cache_entries()) |
3523 | memset(ce, 0xCD, cache_entry_size(ce->ce_namelen)); | |
3524 | ||
8e72d675 JM |
3525 | if (ce && ce->mem_pool_allocated) |
3526 | return; | |
3527 | ||
a849735b JM |
3528 | free(ce); |
3529 | } | |
8616a2d0 JM |
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 | } | |
3b1d9e04 BP |
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]; | |
7346e340 | 3563 | struct git_hash_ctx c; |
3b1d9e04 BP |
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 | ||
0578f1e6 | 3618 | git_hash_update(&c, mmap + src_offset, 8); |
3b1d9e04 BP |
3619 | |
3620 | src_offset += 8; | |
3621 | src_offset += extsize; | |
3622 | } | |
0578f1e6 | 3623 | git_hash_final(hash, &c); |
f4836570 | 3624 | if (!hasheq(hash, (const unsigned char *)index, the_repository->hash_algo)) |
3b1d9e04 BP |
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 | ||
7346e340 | 3634 | static void write_eoie_extension(struct strbuf *sb, struct git_hash_ctx *eoie_context, size_t offset) |
3b1d9e04 BP |
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 */ | |
0578f1e6 | 3644 | git_hash_final(hash, eoie_context); |
3b1d9e04 BP |
3645 | strbuf_add(sb, hash, the_hash_algo->rawsz); |
3646 | } | |
3255089a | 3647 | |
3255089a BP |
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 | { | |
ec36c42a NTND |
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; | |
3255089a BP |
3697 | } |
3698 | ||
3699 | static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot) | |
3700 | { | |
ec36c42a NTND |
3701 | uint32_t buffer; |
3702 | int i; | |
3255089a | 3703 | |
ec36c42a NTND |
3704 | /* version */ |
3705 | put_be32(&buffer, IEOT_VERSION); | |
3706 | strbuf_add(sb, &buffer, sizeof(uint32_t)); | |
3255089a | 3707 | |
ec36c42a NTND |
3708 | /* ieot */ |
3709 | for (i = 0; i < ieot->nr; i++) { | |
3255089a | 3710 | |
ec36c42a NTND |
3711 | /* offset */ |
3712 | put_be32(&buffer, ieot->entries[i].offset); | |
3713 | strbuf_add(sb, &buffer, sizeof(uint32_t)); | |
3255089a | 3714 | |
ec36c42a NTND |
3715 | /* count */ |
3716 | put_be32(&buffer, ieot->entries[i].nr); | |
3717 | strbuf_add(sb, &buffer, sizeof(uint32_t)); | |
3718 | } | |
3255089a | 3719 | } |
b2896d27 JT |
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 | } | |
1a40e7be EN |
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 | } | |
6cee5ebc EN |
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, | |
86829f3f JH |
3946 | const struct pathspec *pathspec, char *ps_matched, |
3947 | int include_sparse, int flags) | |
6cee5ebc EN |
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); | |
86829f3f | 3959 | if (pathspec) { |
6cee5ebc | 3960 | copy_pathspec(&rev.prune_data, pathspec); |
86829f3f JH |
3961 | rev.ps_matched = ps_matched; |
3962 | } | |
6cee5ebc EN |
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 | } |