/src/git/builtin/update-index.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * GIT - The information manager from hell |
3 | | * |
4 | | * Copyright (C) Linus Torvalds, 2005 |
5 | | */ |
6 | | #define USE_THE_INDEX_VARIABLE |
7 | | #include "builtin.h" |
8 | | #include "bulk-checkin.h" |
9 | | #include "config.h" |
10 | | #include "environment.h" |
11 | | #include "gettext.h" |
12 | | #include "hash.h" |
13 | | #include "hex.h" |
14 | | #include "lockfile.h" |
15 | | #include "quote.h" |
16 | | #include "cache-tree.h" |
17 | | #include "tree-walk.h" |
18 | | #include "object-file.h" |
19 | | #include "refs.h" |
20 | | #include "resolve-undo.h" |
21 | | #include "parse-options.h" |
22 | | #include "pathspec.h" |
23 | | #include "dir.h" |
24 | | #include "read-cache.h" |
25 | | #include "repository.h" |
26 | | #include "setup.h" |
27 | | #include "sparse-index.h" |
28 | | #include "split-index.h" |
29 | | #include "symlinks.h" |
30 | | #include "fsmonitor.h" |
31 | | #include "write-or-die.h" |
32 | | |
33 | | /* |
34 | | * Default to not allowing changes to the list of files. The |
35 | | * tool doesn't actually care, but this makes it harder to add |
36 | | * files to the revision control by mistake by doing something |
37 | | * like "git update-index *" and suddenly having all the object |
38 | | * files be revision controlled. |
39 | | */ |
40 | | static int allow_add; |
41 | | static int allow_remove; |
42 | | static int allow_replace; |
43 | | static int info_only; |
44 | | static int force_remove; |
45 | | static int verbose; |
46 | | static int mark_valid_only; |
47 | | static int mark_skip_worktree_only; |
48 | | static int mark_fsmonitor_only; |
49 | | static int ignore_skip_worktree_entries; |
50 | 0 | #define MARK_FLAG 1 |
51 | 0 | #define UNMARK_FLAG 2 |
52 | | static struct strbuf mtime_dir = STRBUF_INIT; |
53 | | |
54 | | /* Untracked cache mode */ |
55 | | enum uc_mode { |
56 | | UC_UNSPECIFIED = -1, |
57 | | UC_DISABLE = 0, |
58 | | UC_ENABLE, |
59 | | UC_TEST, |
60 | | UC_FORCE |
61 | | }; |
62 | | |
63 | | __attribute__((format (printf, 1, 2))) |
64 | | static void report(const char *fmt, ...) |
65 | 0 | { |
66 | 0 | va_list vp; |
67 | |
|
68 | 0 | if (!verbose) |
69 | 0 | return; |
70 | | |
71 | | /* |
72 | | * It is possible, though unlikely, that a caller could use the verbose |
73 | | * output to synchronize with addition of objects to the object |
74 | | * database. The current implementation of ODB transactions leaves |
75 | | * objects invisible while a transaction is active, so flush the |
76 | | * transaction here before reporting a change made by update-index. |
77 | | */ |
78 | 0 | flush_odb_transaction(); |
79 | 0 | va_start(vp, fmt); |
80 | 0 | vprintf(fmt, vp); |
81 | 0 | putchar('\n'); |
82 | 0 | va_end(vp); |
83 | 0 | } |
84 | | |
85 | | static void remove_test_directory(void) |
86 | 0 | { |
87 | 0 | if (mtime_dir.len) |
88 | 0 | remove_dir_recursively(&mtime_dir, 0); |
89 | 0 | } |
90 | | |
91 | | static const char *get_mtime_path(const char *path) |
92 | 0 | { |
93 | 0 | static struct strbuf sb = STRBUF_INIT; |
94 | 0 | strbuf_reset(&sb); |
95 | 0 | strbuf_addf(&sb, "%s/%s", mtime_dir.buf, path); |
96 | 0 | return sb.buf; |
97 | 0 | } |
98 | | |
99 | | static void xmkdir(const char *path) |
100 | 0 | { |
101 | 0 | path = get_mtime_path(path); |
102 | 0 | if (mkdir(path, 0700)) |
103 | 0 | die_errno(_("failed to create directory %s"), path); |
104 | 0 | } |
105 | | |
106 | | static int xstat_mtime_dir(struct stat *st) |
107 | 0 | { |
108 | 0 | if (stat(mtime_dir.buf, st)) |
109 | 0 | die_errno(_("failed to stat %s"), mtime_dir.buf); |
110 | 0 | return 0; |
111 | 0 | } |
112 | | |
113 | | static int create_file(const char *path) |
114 | 0 | { |
115 | 0 | int fd; |
116 | 0 | path = get_mtime_path(path); |
117 | 0 | fd = xopen(path, O_CREAT | O_RDWR, 0644); |
118 | 0 | return fd; |
119 | 0 | } |
120 | | |
121 | | static void xunlink(const char *path) |
122 | 0 | { |
123 | 0 | path = get_mtime_path(path); |
124 | 0 | if (unlink(path)) |
125 | 0 | die_errno(_("failed to delete file %s"), path); |
126 | 0 | } |
127 | | |
128 | | static void xrmdir(const char *path) |
129 | 0 | { |
130 | 0 | path = get_mtime_path(path); |
131 | 0 | if (rmdir(path)) |
132 | 0 | die_errno(_("failed to delete directory %s"), path); |
133 | 0 | } |
134 | | |
135 | | static void avoid_racy(void) |
136 | 0 | { |
137 | | /* |
138 | | * not use if we could usleep(10) if USE_NSEC is defined. The |
139 | | * field nsec could be there, but the OS could choose to |
140 | | * ignore it? |
141 | | */ |
142 | 0 | sleep(1); |
143 | 0 | } |
144 | | |
145 | | static int test_if_untracked_cache_is_supported(void) |
146 | 0 | { |
147 | 0 | struct stat st; |
148 | 0 | struct stat_data base; |
149 | 0 | int fd, ret = 0; |
150 | 0 | char *cwd; |
151 | |
|
152 | 0 | strbuf_addstr(&mtime_dir, "mtime-test-XXXXXX"); |
153 | 0 | if (!mkdtemp(mtime_dir.buf)) |
154 | 0 | die_errno("Could not make temporary directory"); |
155 | | |
156 | 0 | cwd = xgetcwd(); |
157 | 0 | fprintf(stderr, _("Testing mtime in '%s' "), cwd); |
158 | 0 | free(cwd); |
159 | |
|
160 | 0 | atexit(remove_test_directory); |
161 | 0 | xstat_mtime_dir(&st); |
162 | 0 | fill_stat_data(&base, &st); |
163 | 0 | fputc('.', stderr); |
164 | |
|
165 | 0 | avoid_racy(); |
166 | 0 | fd = create_file("newfile"); |
167 | 0 | xstat_mtime_dir(&st); |
168 | 0 | if (!match_stat_data(&base, &st)) { |
169 | 0 | close(fd); |
170 | 0 | fputc('\n', stderr); |
171 | 0 | fprintf_ln(stderr,_("directory stat info does not " |
172 | 0 | "change after adding a new file")); |
173 | 0 | goto done; |
174 | 0 | } |
175 | 0 | fill_stat_data(&base, &st); |
176 | 0 | fputc('.', stderr); |
177 | |
|
178 | 0 | avoid_racy(); |
179 | 0 | xmkdir("new-dir"); |
180 | 0 | xstat_mtime_dir(&st); |
181 | 0 | if (!match_stat_data(&base, &st)) { |
182 | 0 | close(fd); |
183 | 0 | fputc('\n', stderr); |
184 | 0 | fprintf_ln(stderr, _("directory stat info does not change " |
185 | 0 | "after adding a new directory")); |
186 | 0 | goto done; |
187 | 0 | } |
188 | 0 | fill_stat_data(&base, &st); |
189 | 0 | fputc('.', stderr); |
190 | |
|
191 | 0 | avoid_racy(); |
192 | 0 | write_or_die(fd, "data", 4); |
193 | 0 | close(fd); |
194 | 0 | xstat_mtime_dir(&st); |
195 | 0 | if (match_stat_data(&base, &st)) { |
196 | 0 | fputc('\n', stderr); |
197 | 0 | fprintf_ln(stderr, _("directory stat info changes " |
198 | 0 | "after updating a file")); |
199 | 0 | goto done; |
200 | 0 | } |
201 | 0 | fputc('.', stderr); |
202 | |
|
203 | 0 | avoid_racy(); |
204 | 0 | close(create_file("new-dir/new")); |
205 | 0 | xstat_mtime_dir(&st); |
206 | 0 | if (match_stat_data(&base, &st)) { |
207 | 0 | fputc('\n', stderr); |
208 | 0 | fprintf_ln(stderr, _("directory stat info changes after " |
209 | 0 | "adding a file inside subdirectory")); |
210 | 0 | goto done; |
211 | 0 | } |
212 | 0 | fputc('.', stderr); |
213 | |
|
214 | 0 | avoid_racy(); |
215 | 0 | xunlink("newfile"); |
216 | 0 | xstat_mtime_dir(&st); |
217 | 0 | if (!match_stat_data(&base, &st)) { |
218 | 0 | fputc('\n', stderr); |
219 | 0 | fprintf_ln(stderr, _("directory stat info does not " |
220 | 0 | "change after deleting a file")); |
221 | 0 | goto done; |
222 | 0 | } |
223 | 0 | fill_stat_data(&base, &st); |
224 | 0 | fputc('.', stderr); |
225 | |
|
226 | 0 | avoid_racy(); |
227 | 0 | xunlink("new-dir/new"); |
228 | 0 | xrmdir("new-dir"); |
229 | 0 | xstat_mtime_dir(&st); |
230 | 0 | if (!match_stat_data(&base, &st)) { |
231 | 0 | fputc('\n', stderr); |
232 | 0 | fprintf_ln(stderr, _("directory stat info does not " |
233 | 0 | "change after deleting a directory")); |
234 | 0 | goto done; |
235 | 0 | } |
236 | | |
237 | 0 | if (rmdir(mtime_dir.buf)) |
238 | 0 | die_errno(_("failed to delete directory %s"), mtime_dir.buf); |
239 | 0 | fprintf_ln(stderr, _(" OK")); |
240 | 0 | ret = 1; |
241 | |
|
242 | 0 | done: |
243 | 0 | strbuf_release(&mtime_dir); |
244 | 0 | return ret; |
245 | 0 | } |
246 | | |
247 | | static int mark_ce_flags(const char *path, int flag, int mark) |
248 | 0 | { |
249 | 0 | int namelen = strlen(path); |
250 | 0 | int pos = index_name_pos(&the_index, path, namelen); |
251 | 0 | if (0 <= pos) { |
252 | 0 | mark_fsmonitor_invalid(&the_index, the_index.cache[pos]); |
253 | 0 | if (mark) |
254 | 0 | the_index.cache[pos]->ce_flags |= flag; |
255 | 0 | else |
256 | 0 | the_index.cache[pos]->ce_flags &= ~flag; |
257 | 0 | the_index.cache[pos]->ce_flags |= CE_UPDATE_IN_BASE; |
258 | 0 | cache_tree_invalidate_path(&the_index, path); |
259 | 0 | the_index.cache_changed |= CE_ENTRY_CHANGED; |
260 | 0 | return 0; |
261 | 0 | } |
262 | 0 | return -1; |
263 | 0 | } |
264 | | |
265 | | static int remove_one_path(const char *path) |
266 | 0 | { |
267 | 0 | if (!allow_remove) |
268 | 0 | return error("%s: does not exist and --remove not passed", path); |
269 | 0 | if (remove_file_from_index(&the_index, path)) |
270 | 0 | return error("%s: cannot remove from the index", path); |
271 | 0 | return 0; |
272 | 0 | } |
273 | | |
274 | | /* |
275 | | * Handle a path that couldn't be lstat'ed. It's either: |
276 | | * - missing file (ENOENT or ENOTDIR). That's ok if we're |
277 | | * supposed to be removing it and the removal actually |
278 | | * succeeds. |
279 | | * - permission error. That's never ok. |
280 | | */ |
281 | | static int process_lstat_error(const char *path, int err) |
282 | 0 | { |
283 | 0 | if (is_missing_file_error(err)) |
284 | 0 | return remove_one_path(path); |
285 | 0 | return error("lstat(\"%s\"): %s", path, strerror(err)); |
286 | 0 | } |
287 | | |
288 | | static int add_one_path(const struct cache_entry *old, const char *path, int len, struct stat *st) |
289 | 0 | { |
290 | 0 | int option; |
291 | 0 | struct cache_entry *ce; |
292 | | |
293 | | /* Was the old index entry already up-to-date? */ |
294 | 0 | if (old && !ce_stage(old) && !ie_match_stat(&the_index, old, st, 0)) |
295 | 0 | return 0; |
296 | | |
297 | 0 | ce = make_empty_cache_entry(&the_index, len); |
298 | 0 | memcpy(ce->name, path, len); |
299 | 0 | ce->ce_flags = create_ce_flags(0); |
300 | 0 | ce->ce_namelen = len; |
301 | 0 | fill_stat_cache_info(&the_index, ce, st); |
302 | 0 | ce->ce_mode = ce_mode_from_stat(old, st->st_mode); |
303 | |
|
304 | 0 | if (index_path(&the_index, &ce->oid, path, st, |
305 | 0 | info_only ? 0 : HASH_WRITE_OBJECT)) { |
306 | 0 | discard_cache_entry(ce); |
307 | 0 | return -1; |
308 | 0 | } |
309 | 0 | option = allow_add ? ADD_CACHE_OK_TO_ADD : 0; |
310 | 0 | option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0; |
311 | 0 | if (add_index_entry(&the_index, ce, option)) { |
312 | 0 | discard_cache_entry(ce); |
313 | 0 | return error("%s: cannot add to the index - missing --add option?", path); |
314 | 0 | } |
315 | 0 | return 0; |
316 | 0 | } |
317 | | |
318 | | /* |
319 | | * Handle a path that was a directory. Four cases: |
320 | | * |
321 | | * - it's already a gitlink in the index, and we keep it that |
322 | | * way, and update it if we can (if we cannot find the HEAD, |
323 | | * we're going to keep it unchanged in the index!) |
324 | | * |
325 | | * - it's a *file* in the index, in which case it should be |
326 | | * removed as a file if removal is allowed, since it doesn't |
327 | | * exist as such any more. If removal isn't allowed, it's |
328 | | * an error. |
329 | | * |
330 | | * (NOTE! This is old and arguably fairly strange behaviour. |
331 | | * We might want to make this an error unconditionally, and |
332 | | * use "--force-remove" if you actually want to force removal). |
333 | | * |
334 | | * - it used to exist as a subdirectory (ie multiple files with |
335 | | * this particular prefix) in the index, in which case it's wrong |
336 | | * to try to update it as a directory. |
337 | | * |
338 | | * - it doesn't exist at all in the index, but it is a valid |
339 | | * git directory, and it should be *added* as a gitlink. |
340 | | */ |
341 | | static int process_directory(const char *path, int len, struct stat *st) |
342 | 0 | { |
343 | 0 | struct object_id oid; |
344 | 0 | int pos = index_name_pos(&the_index, path, len); |
345 | | |
346 | | /* Exact match: file or existing gitlink */ |
347 | 0 | if (pos >= 0) { |
348 | 0 | const struct cache_entry *ce = the_index.cache[pos]; |
349 | 0 | if (S_ISGITLINK(ce->ce_mode)) { |
350 | | |
351 | | /* Do nothing to the index if there is no HEAD! */ |
352 | 0 | if (resolve_gitlink_ref(path, "HEAD", &oid) < 0) |
353 | 0 | return 0; |
354 | | |
355 | 0 | return add_one_path(ce, path, len, st); |
356 | 0 | } |
357 | | /* Should this be an unconditional error? */ |
358 | 0 | return remove_one_path(path); |
359 | 0 | } |
360 | | |
361 | | /* Inexact match: is there perhaps a subdirectory match? */ |
362 | 0 | pos = -pos-1; |
363 | 0 | while (pos < the_index.cache_nr) { |
364 | 0 | const struct cache_entry *ce = the_index.cache[pos++]; |
365 | |
|
366 | 0 | if (strncmp(ce->name, path, len)) |
367 | 0 | break; |
368 | 0 | if (ce->name[len] > '/') |
369 | 0 | break; |
370 | 0 | if (ce->name[len] < '/') |
371 | 0 | continue; |
372 | | |
373 | | /* Subdirectory match - error out */ |
374 | 0 | return error("%s: is a directory - add individual files instead", path); |
375 | 0 | } |
376 | | |
377 | | /* No match - should we add it as a gitlink? */ |
378 | 0 | if (!resolve_gitlink_ref(path, "HEAD", &oid)) |
379 | 0 | return add_one_path(NULL, path, len, st); |
380 | | |
381 | | /* Error out. */ |
382 | 0 | return error("%s: is a directory - add files inside instead", path); |
383 | 0 | } |
384 | | |
385 | | static int process_path(const char *path, struct stat *st, int stat_errno) |
386 | 0 | { |
387 | 0 | int pos, len; |
388 | 0 | const struct cache_entry *ce; |
389 | |
|
390 | 0 | len = strlen(path); |
391 | 0 | if (has_symlink_leading_path(path, len)) |
392 | 0 | return error("'%s' is beyond a symbolic link", path); |
393 | | |
394 | 0 | pos = index_name_pos(&the_index, path, len); |
395 | 0 | ce = pos < 0 ? NULL : the_index.cache[pos]; |
396 | 0 | if (ce && ce_skip_worktree(ce)) { |
397 | | /* |
398 | | * working directory version is assumed "good" |
399 | | * so updating it does not make sense. |
400 | | * On the other hand, removing it from index should work |
401 | | */ |
402 | 0 | if (!ignore_skip_worktree_entries && allow_remove && |
403 | 0 | remove_file_from_index(&the_index, path)) |
404 | 0 | return error("%s: cannot remove from the index", path); |
405 | 0 | return 0; |
406 | 0 | } |
407 | | |
408 | | /* |
409 | | * First things first: get the stat information, to decide |
410 | | * what to do about the pathname! |
411 | | */ |
412 | 0 | if (stat_errno) |
413 | 0 | return process_lstat_error(path, stat_errno); |
414 | | |
415 | 0 | if (S_ISDIR(st->st_mode)) |
416 | 0 | return process_directory(path, len, st); |
417 | | |
418 | 0 | return add_one_path(ce, path, len, st); |
419 | 0 | } |
420 | | |
421 | | static int add_cacheinfo(unsigned int mode, const struct object_id *oid, |
422 | | const char *path, int stage) |
423 | 0 | { |
424 | 0 | int len, option; |
425 | 0 | struct cache_entry *ce; |
426 | |
|
427 | 0 | if (!verify_path(path, mode)) |
428 | 0 | return error("Invalid path '%s'", path); |
429 | | |
430 | 0 | len = strlen(path); |
431 | 0 | ce = make_empty_cache_entry(&the_index, len); |
432 | |
|
433 | 0 | oidcpy(&ce->oid, oid); |
434 | 0 | memcpy(ce->name, path, len); |
435 | 0 | ce->ce_flags = create_ce_flags(stage); |
436 | 0 | ce->ce_namelen = len; |
437 | 0 | ce->ce_mode = create_ce_mode(mode); |
438 | 0 | if (assume_unchanged) |
439 | 0 | ce->ce_flags |= CE_VALID; |
440 | 0 | option = allow_add ? ADD_CACHE_OK_TO_ADD : 0; |
441 | 0 | option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0; |
442 | 0 | if (add_index_entry(&the_index, ce, option)) |
443 | 0 | return error("%s: cannot add to the index - missing --add option?", |
444 | 0 | path); |
445 | 0 | report("add '%s'", path); |
446 | 0 | return 0; |
447 | 0 | } |
448 | | |
449 | | static void chmod_path(char flip, const char *path) |
450 | 0 | { |
451 | 0 | int pos; |
452 | 0 | struct cache_entry *ce; |
453 | |
|
454 | 0 | pos = index_name_pos(&the_index, path, strlen(path)); |
455 | 0 | if (pos < 0) |
456 | 0 | goto fail; |
457 | 0 | ce = the_index.cache[pos]; |
458 | 0 | if (chmod_index_entry(&the_index, ce, flip) < 0) |
459 | 0 | goto fail; |
460 | | |
461 | 0 | report("chmod %cx '%s'", flip, path); |
462 | 0 | return; |
463 | 0 | fail: |
464 | 0 | die("git update-index: cannot chmod %cx '%s'", flip, path); |
465 | 0 | } |
466 | | |
467 | | static void update_one(const char *path) |
468 | 0 | { |
469 | 0 | int stat_errno = 0; |
470 | 0 | struct stat st; |
471 | |
|
472 | 0 | if (mark_valid_only || mark_skip_worktree_only || force_remove || |
473 | 0 | mark_fsmonitor_only) |
474 | 0 | st.st_mode = 0; |
475 | 0 | else if (lstat(path, &st) < 0) { |
476 | 0 | st.st_mode = 0; |
477 | 0 | stat_errno = errno; |
478 | 0 | } /* else stat is valid */ |
479 | |
|
480 | 0 | if (!verify_path(path, st.st_mode)) { |
481 | 0 | fprintf(stderr, "Ignoring path %s\n", path); |
482 | 0 | return; |
483 | 0 | } |
484 | 0 | if (mark_valid_only) { |
485 | 0 | if (mark_ce_flags(path, CE_VALID, mark_valid_only == MARK_FLAG)) |
486 | 0 | die("Unable to mark file %s", path); |
487 | 0 | return; |
488 | 0 | } |
489 | 0 | if (mark_skip_worktree_only) { |
490 | 0 | if (mark_ce_flags(path, CE_SKIP_WORKTREE, mark_skip_worktree_only == MARK_FLAG)) |
491 | 0 | die("Unable to mark file %s", path); |
492 | 0 | return; |
493 | 0 | } |
494 | 0 | if (mark_fsmonitor_only) { |
495 | 0 | if (mark_ce_flags(path, CE_FSMONITOR_VALID, mark_fsmonitor_only == MARK_FLAG)) |
496 | 0 | die("Unable to mark file %s", path); |
497 | 0 | return; |
498 | 0 | } |
499 | | |
500 | 0 | if (force_remove) { |
501 | 0 | if (remove_file_from_index(&the_index, path)) |
502 | 0 | die("git update-index: unable to remove %s", path); |
503 | 0 | report("remove '%s'", path); |
504 | 0 | return; |
505 | 0 | } |
506 | 0 | if (process_path(path, &st, stat_errno)) |
507 | 0 | die("Unable to process path %s", path); |
508 | 0 | report("add '%s'", path); |
509 | 0 | } |
510 | | |
511 | | static void read_index_info(int nul_term_line) |
512 | 0 | { |
513 | 0 | const int hexsz = the_hash_algo->hexsz; |
514 | 0 | struct strbuf buf = STRBUF_INIT; |
515 | 0 | struct strbuf uq = STRBUF_INIT; |
516 | 0 | strbuf_getline_fn getline_fn; |
517 | |
|
518 | 0 | getline_fn = nul_term_line ? strbuf_getline_nul : strbuf_getline_lf; |
519 | 0 | while (getline_fn(&buf, stdin) != EOF) { |
520 | 0 | char *ptr, *tab; |
521 | 0 | char *path_name; |
522 | 0 | struct object_id oid; |
523 | 0 | unsigned int mode; |
524 | 0 | unsigned long ul; |
525 | 0 | int stage; |
526 | | |
527 | | /* This reads lines formatted in one of three formats: |
528 | | * |
529 | | * (1) mode SP sha1 TAB path |
530 | | * The first format is what "git apply --index-info" |
531 | | * reports, and used to reconstruct a partial tree |
532 | | * that is used for phony merge base tree when falling |
533 | | * back on 3-way merge. |
534 | | * |
535 | | * (2) mode SP type SP sha1 TAB path |
536 | | * The second format is to stuff "git ls-tree" output |
537 | | * into the index file. |
538 | | * |
539 | | * (3) mode SP sha1 SP stage TAB path |
540 | | * This format is to put higher order stages into the |
541 | | * index file and matches "git ls-files --stage" output. |
542 | | */ |
543 | 0 | errno = 0; |
544 | 0 | ul = strtoul(buf.buf, &ptr, 8); |
545 | 0 | if (ptr == buf.buf || *ptr != ' ' |
546 | 0 | || errno || (unsigned int) ul != ul) |
547 | 0 | goto bad_line; |
548 | 0 | mode = ul; |
549 | |
|
550 | 0 | tab = strchr(ptr, '\t'); |
551 | 0 | if (!tab || tab - ptr < hexsz + 1) |
552 | 0 | goto bad_line; |
553 | | |
554 | 0 | if (tab[-2] == ' ' && '0' <= tab[-1] && tab[-1] <= '3') { |
555 | 0 | stage = tab[-1] - '0'; |
556 | 0 | ptr = tab + 1; /* point at the head of path */ |
557 | 0 | tab = tab - 2; /* point at tail of sha1 */ |
558 | 0 | } |
559 | 0 | else { |
560 | 0 | stage = 0; |
561 | 0 | ptr = tab + 1; /* point at the head of path */ |
562 | 0 | } |
563 | |
|
564 | 0 | if (get_oid_hex(tab - hexsz, &oid) || |
565 | 0 | tab[-(hexsz + 1)] != ' ') |
566 | 0 | goto bad_line; |
567 | | |
568 | 0 | path_name = ptr; |
569 | 0 | if (!nul_term_line && path_name[0] == '"') { |
570 | 0 | strbuf_reset(&uq); |
571 | 0 | if (unquote_c_style(&uq, path_name, NULL)) { |
572 | 0 | die("git update-index: bad quoting of path name"); |
573 | 0 | } |
574 | 0 | path_name = uq.buf; |
575 | 0 | } |
576 | | |
577 | 0 | if (!verify_path(path_name, mode)) { |
578 | 0 | fprintf(stderr, "Ignoring path %s\n", path_name); |
579 | 0 | continue; |
580 | 0 | } |
581 | | |
582 | 0 | if (!mode) { |
583 | | /* mode == 0 means there is no such path -- remove */ |
584 | 0 | if (remove_file_from_index(&the_index, path_name)) |
585 | 0 | die("git update-index: unable to remove %s", |
586 | 0 | ptr); |
587 | 0 | } |
588 | 0 | else { |
589 | | /* mode ' ' sha1 '\t' name |
590 | | * ptr[-1] points at tab, |
591 | | * ptr[-41] is at the beginning of sha1 |
592 | | */ |
593 | 0 | ptr[-(hexsz + 2)] = ptr[-1] = 0; |
594 | 0 | if (add_cacheinfo(mode, &oid, path_name, stage)) |
595 | 0 | die("git update-index: unable to update %s", |
596 | 0 | path_name); |
597 | 0 | } |
598 | 0 | continue; |
599 | | |
600 | 0 | bad_line: |
601 | 0 | die("malformed index info %s", buf.buf); |
602 | 0 | } |
603 | 0 | strbuf_release(&buf); |
604 | 0 | strbuf_release(&uq); |
605 | 0 | } |
606 | | |
607 | | static const char * const update_index_usage[] = { |
608 | | N_("git update-index [<options>] [--] [<file>...]"), |
609 | | NULL |
610 | | }; |
611 | | |
612 | | static struct cache_entry *read_one_ent(const char *which, |
613 | | struct object_id *ent, const char *path, |
614 | | int namelen, int stage) |
615 | 0 | { |
616 | 0 | unsigned short mode; |
617 | 0 | struct object_id oid; |
618 | 0 | struct cache_entry *ce; |
619 | |
|
620 | 0 | if (get_tree_entry(the_repository, ent, path, &oid, &mode)) { |
621 | 0 | if (which) |
622 | 0 | error("%s: not in %s branch.", path, which); |
623 | 0 | return NULL; |
624 | 0 | } |
625 | 0 | if (!the_index.sparse_index && mode == S_IFDIR) { |
626 | 0 | if (which) |
627 | 0 | error("%s: not a blob in %s branch.", path, which); |
628 | 0 | return NULL; |
629 | 0 | } |
630 | 0 | ce = make_empty_cache_entry(&the_index, namelen); |
631 | |
|
632 | 0 | oidcpy(&ce->oid, &oid); |
633 | 0 | memcpy(ce->name, path, namelen); |
634 | 0 | ce->ce_flags = create_ce_flags(stage); |
635 | 0 | ce->ce_namelen = namelen; |
636 | 0 | ce->ce_mode = create_ce_mode(mode); |
637 | 0 | return ce; |
638 | 0 | } |
639 | | |
640 | | static int unresolve_one(const char *path) |
641 | 0 | { |
642 | 0 | struct string_list_item *item; |
643 | 0 | int res = 0; |
644 | |
|
645 | 0 | if (!the_index.resolve_undo) |
646 | 0 | return res; |
647 | 0 | item = string_list_lookup(the_index.resolve_undo, path); |
648 | 0 | if (!item) |
649 | 0 | return res; /* no resolve-undo record for the path */ |
650 | 0 | res = unmerge_index_entry(&the_index, path, item->util, 0); |
651 | 0 | FREE_AND_NULL(item->util); |
652 | 0 | return res; |
653 | 0 | } |
654 | | |
655 | | static int do_unresolve(int ac, const char **av, |
656 | | const char *prefix, int prefix_length) |
657 | 0 | { |
658 | 0 | int i; |
659 | 0 | int err = 0; |
660 | |
|
661 | 0 | for (i = 1; i < ac; i++) { |
662 | 0 | const char *arg = av[i]; |
663 | 0 | char *p = prefix_path(prefix, prefix_length, arg); |
664 | 0 | err |= unresolve_one(p); |
665 | 0 | free(p); |
666 | 0 | } |
667 | 0 | return err; |
668 | 0 | } |
669 | | |
670 | | static int do_reupdate(const char **paths, |
671 | | const char *prefix) |
672 | 0 | { |
673 | | /* Read HEAD and run update-index on paths that are |
674 | | * merged and already different between index and HEAD. |
675 | | */ |
676 | 0 | int pos; |
677 | 0 | int has_head = 1; |
678 | 0 | struct pathspec pathspec; |
679 | 0 | struct object_id head_oid; |
680 | |
|
681 | 0 | parse_pathspec(&pathspec, 0, |
682 | 0 | PATHSPEC_PREFER_CWD, |
683 | 0 | prefix, paths); |
684 | |
|
685 | 0 | if (read_ref("HEAD", &head_oid)) |
686 | | /* If there is no HEAD, that means it is an initial |
687 | | * commit. Update everything in the index. |
688 | | */ |
689 | 0 | has_head = 0; |
690 | 0 | redo: |
691 | 0 | for (pos = 0; pos < the_index.cache_nr; pos++) { |
692 | 0 | const struct cache_entry *ce = the_index.cache[pos]; |
693 | 0 | struct cache_entry *old = NULL; |
694 | 0 | int save_nr; |
695 | 0 | char *path; |
696 | |
|
697 | 0 | if (ce_stage(ce) || !ce_path_match(&the_index, ce, &pathspec, NULL)) |
698 | 0 | continue; |
699 | 0 | if (has_head) |
700 | 0 | old = read_one_ent(NULL, &head_oid, |
701 | 0 | ce->name, ce_namelen(ce), 0); |
702 | 0 | if (old && ce->ce_mode == old->ce_mode && |
703 | 0 | oideq(&ce->oid, &old->oid)) { |
704 | 0 | discard_cache_entry(old); |
705 | 0 | continue; /* unchanged */ |
706 | 0 | } |
707 | | |
708 | | /* At this point, we know the contents of the sparse directory are |
709 | | * modified with respect to HEAD, so we expand the index and restart |
710 | | * to process each path individually |
711 | | */ |
712 | 0 | if (S_ISSPARSEDIR(ce->ce_mode)) { |
713 | 0 | ensure_full_index(&the_index); |
714 | 0 | goto redo; |
715 | 0 | } |
716 | | |
717 | | /* Be careful. The working tree may not have the |
718 | | * path anymore, in which case, under 'allow_remove', |
719 | | * or worse yet 'allow_replace', active_nr may decrease. |
720 | | */ |
721 | 0 | save_nr = the_index.cache_nr; |
722 | 0 | path = xstrdup(ce->name); |
723 | 0 | update_one(path); |
724 | 0 | free(path); |
725 | 0 | discard_cache_entry(old); |
726 | 0 | if (save_nr != the_index.cache_nr) |
727 | 0 | goto redo; |
728 | 0 | } |
729 | 0 | clear_pathspec(&pathspec); |
730 | 0 | return 0; |
731 | 0 | } |
732 | | |
733 | | struct refresh_params { |
734 | | unsigned int flags; |
735 | | int *has_errors; |
736 | | }; |
737 | | |
738 | | static int refresh(struct refresh_params *o, unsigned int flag) |
739 | 0 | { |
740 | 0 | setup_work_tree(); |
741 | 0 | repo_read_index(the_repository); |
742 | 0 | *o->has_errors |= refresh_index(&the_index, o->flags | flag, NULL, |
743 | 0 | NULL, NULL); |
744 | 0 | if (has_racy_timestamp(&the_index)) { |
745 | | /* |
746 | | * Even if nothing else has changed, updating the file |
747 | | * increases the chance that racy timestamps become |
748 | | * non-racy, helping future run-time performance. |
749 | | * We do that even in case of "errors" returned by |
750 | | * refresh_index() as these are no actual errors. |
751 | | * cmd_status() does the same. |
752 | | */ |
753 | 0 | the_index.cache_changed |= SOMETHING_CHANGED; |
754 | 0 | } |
755 | 0 | return 0; |
756 | 0 | } |
757 | | |
758 | | static int refresh_callback(const struct option *opt, |
759 | | const char *arg, int unset) |
760 | 0 | { |
761 | 0 | BUG_ON_OPT_NEG(unset); |
762 | 0 | BUG_ON_OPT_ARG(arg); |
763 | 0 | return refresh(opt->value, 0); |
764 | 0 | } |
765 | | |
766 | | static int really_refresh_callback(const struct option *opt, |
767 | | const char *arg, int unset) |
768 | 0 | { |
769 | 0 | BUG_ON_OPT_NEG(unset); |
770 | 0 | BUG_ON_OPT_ARG(arg); |
771 | 0 | return refresh(opt->value, REFRESH_REALLY); |
772 | 0 | } |
773 | | |
774 | | static int chmod_callback(const struct option *opt, |
775 | | const char *arg, int unset) |
776 | 0 | { |
777 | 0 | char *flip = opt->value; |
778 | 0 | BUG_ON_OPT_NEG(unset); |
779 | 0 | if ((arg[0] != '-' && arg[0] != '+') || arg[1] != 'x' || arg[2]) |
780 | 0 | return error("option 'chmod' expects \"+x\" or \"-x\""); |
781 | 0 | *flip = arg[0]; |
782 | 0 | return 0; |
783 | 0 | } |
784 | | |
785 | | static int resolve_undo_clear_callback(const struct option *opt UNUSED, |
786 | | const char *arg, int unset) |
787 | 0 | { |
788 | 0 | BUG_ON_OPT_NEG(unset); |
789 | 0 | BUG_ON_OPT_ARG(arg); |
790 | 0 | resolve_undo_clear_index(&the_index); |
791 | 0 | return 0; |
792 | 0 | } |
793 | | |
794 | | static int parse_new_style_cacheinfo(const char *arg, |
795 | | unsigned int *mode, |
796 | | struct object_id *oid, |
797 | | const char **path) |
798 | 0 | { |
799 | 0 | unsigned long ul; |
800 | 0 | char *endp; |
801 | 0 | const char *p; |
802 | |
|
803 | 0 | if (!arg) |
804 | 0 | return -1; |
805 | | |
806 | 0 | errno = 0; |
807 | 0 | ul = strtoul(arg, &endp, 8); |
808 | 0 | if (errno || endp == arg || *endp != ',' || (unsigned int) ul != ul) |
809 | 0 | return -1; /* not a new-style cacheinfo */ |
810 | 0 | *mode = ul; |
811 | 0 | endp++; |
812 | 0 | if (parse_oid_hex(endp, oid, &p) || *p != ',') |
813 | 0 | return -1; |
814 | 0 | *path = p + 1; |
815 | 0 | return 0; |
816 | 0 | } |
817 | | |
818 | | static enum parse_opt_result cacheinfo_callback( |
819 | | struct parse_opt_ctx_t *ctx, const struct option *opt UNUSED, |
820 | | const char *arg, int unset) |
821 | 0 | { |
822 | 0 | struct object_id oid; |
823 | 0 | unsigned int mode; |
824 | 0 | const char *path; |
825 | |
|
826 | 0 | BUG_ON_OPT_NEG(unset); |
827 | 0 | BUG_ON_OPT_ARG(arg); |
828 | | |
829 | 0 | if (!parse_new_style_cacheinfo(ctx->argv[1], &mode, &oid, &path)) { |
830 | 0 | if (add_cacheinfo(mode, &oid, path, 0)) |
831 | 0 | die("git update-index: --cacheinfo cannot add %s", path); |
832 | 0 | ctx->argv++; |
833 | 0 | ctx->argc--; |
834 | 0 | return 0; |
835 | 0 | } |
836 | 0 | if (ctx->argc <= 3) |
837 | 0 | return error("option 'cacheinfo' expects <mode>,<sha1>,<path>"); |
838 | 0 | if (strtoul_ui(*++ctx->argv, 8, &mode) || |
839 | 0 | get_oid_hex(*++ctx->argv, &oid) || |
840 | 0 | add_cacheinfo(mode, &oid, *++ctx->argv, 0)) |
841 | 0 | die("git update-index: --cacheinfo cannot add %s", *ctx->argv); |
842 | 0 | ctx->argc -= 3; |
843 | 0 | return 0; |
844 | 0 | } |
845 | | |
846 | | static enum parse_opt_result stdin_cacheinfo_callback( |
847 | | struct parse_opt_ctx_t *ctx, const struct option *opt, |
848 | | const char *arg, int unset) |
849 | 0 | { |
850 | 0 | int *nul_term_line = opt->value; |
851 | |
|
852 | 0 | BUG_ON_OPT_NEG(unset); |
853 | 0 | BUG_ON_OPT_ARG(arg); |
854 | | |
855 | 0 | if (ctx->argc != 1) |
856 | 0 | return error("option '%s' must be the last argument", opt->long_name); |
857 | 0 | allow_add = allow_replace = allow_remove = 1; |
858 | 0 | read_index_info(*nul_term_line); |
859 | 0 | return 0; |
860 | 0 | } |
861 | | |
862 | | static enum parse_opt_result stdin_callback( |
863 | | struct parse_opt_ctx_t *ctx, const struct option *opt, |
864 | | const char *arg, int unset) |
865 | 0 | { |
866 | 0 | int *read_from_stdin = opt->value; |
867 | |
|
868 | 0 | BUG_ON_OPT_NEG(unset); |
869 | 0 | BUG_ON_OPT_ARG(arg); |
870 | | |
871 | 0 | if (ctx->argc != 1) |
872 | 0 | return error("option '%s' must be the last argument", opt->long_name); |
873 | 0 | *read_from_stdin = 1; |
874 | 0 | return 0; |
875 | 0 | } |
876 | | |
877 | | static enum parse_opt_result unresolve_callback( |
878 | | struct parse_opt_ctx_t *ctx, const struct option *opt, |
879 | | const char *arg, int unset) |
880 | 0 | { |
881 | 0 | int *has_errors = opt->value; |
882 | 0 | const char *prefix = startup_info->prefix; |
883 | |
|
884 | 0 | BUG_ON_OPT_NEG(unset); |
885 | 0 | BUG_ON_OPT_ARG(arg); |
886 | | |
887 | | /* consume remaining arguments. */ |
888 | 0 | *has_errors = do_unresolve(ctx->argc, ctx->argv, |
889 | 0 | prefix, prefix ? strlen(prefix) : 0); |
890 | 0 | if (*has_errors) |
891 | 0 | the_index.cache_changed = 0; |
892 | |
|
893 | 0 | ctx->argv += ctx->argc - 1; |
894 | 0 | ctx->argc = 1; |
895 | 0 | return 0; |
896 | 0 | } |
897 | | |
898 | | static enum parse_opt_result reupdate_callback( |
899 | | struct parse_opt_ctx_t *ctx, const struct option *opt, |
900 | | const char *arg, int unset) |
901 | 0 | { |
902 | 0 | int *has_errors = opt->value; |
903 | 0 | const char *prefix = startup_info->prefix; |
904 | |
|
905 | 0 | BUG_ON_OPT_NEG(unset); |
906 | 0 | BUG_ON_OPT_ARG(arg); |
907 | | |
908 | | /* consume remaining arguments. */ |
909 | 0 | setup_work_tree(); |
910 | 0 | *has_errors = do_reupdate(ctx->argv + 1, prefix); |
911 | 0 | if (*has_errors) |
912 | 0 | the_index.cache_changed = 0; |
913 | |
|
914 | 0 | ctx->argv += ctx->argc - 1; |
915 | 0 | ctx->argc = 1; |
916 | 0 | return 0; |
917 | 0 | } |
918 | | |
919 | | int cmd_update_index(int argc, const char **argv, const char *prefix) |
920 | 0 | { |
921 | 0 | int newfd, entries, has_errors = 0, nul_term_line = 0; |
922 | 0 | enum uc_mode untracked_cache = UC_UNSPECIFIED; |
923 | 0 | int read_from_stdin = 0; |
924 | 0 | int prefix_length = prefix ? strlen(prefix) : 0; |
925 | 0 | int preferred_index_format = 0; |
926 | 0 | char set_executable_bit = 0; |
927 | 0 | struct refresh_params refresh_args = {0, &has_errors}; |
928 | 0 | int lock_error = 0; |
929 | 0 | int split_index = -1; |
930 | 0 | int force_write = 0; |
931 | 0 | int fsmonitor = -1; |
932 | 0 | struct lock_file lock_file = LOCK_INIT; |
933 | 0 | struct parse_opt_ctx_t ctx; |
934 | 0 | strbuf_getline_fn getline_fn; |
935 | 0 | int parseopt_state = PARSE_OPT_UNKNOWN; |
936 | 0 | struct repository *r = the_repository; |
937 | 0 | struct option options[] = { |
938 | 0 | OPT_BIT('q', NULL, &refresh_args.flags, |
939 | 0 | N_("continue refresh even when index needs update"), |
940 | 0 | REFRESH_QUIET), |
941 | 0 | OPT_BIT(0, "ignore-submodules", &refresh_args.flags, |
942 | 0 | N_("refresh: ignore submodules"), |
943 | 0 | REFRESH_IGNORE_SUBMODULES), |
944 | 0 | OPT_SET_INT(0, "add", &allow_add, |
945 | 0 | N_("do not ignore new files"), 1), |
946 | 0 | OPT_SET_INT(0, "replace", &allow_replace, |
947 | 0 | N_("let files replace directories and vice-versa"), 1), |
948 | 0 | OPT_SET_INT(0, "remove", &allow_remove, |
949 | 0 | N_("notice files missing from worktree"), 1), |
950 | 0 | OPT_BIT(0, "unmerged", &refresh_args.flags, |
951 | 0 | N_("refresh even if index contains unmerged entries"), |
952 | 0 | REFRESH_UNMERGED), |
953 | 0 | OPT_CALLBACK_F(0, "refresh", &refresh_args, NULL, |
954 | 0 | N_("refresh stat information"), |
955 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, |
956 | 0 | refresh_callback), |
957 | 0 | OPT_CALLBACK_F(0, "really-refresh", &refresh_args, NULL, |
958 | 0 | N_("like --refresh, but ignore assume-unchanged setting"), |
959 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, |
960 | 0 | really_refresh_callback), |
961 | 0 | {OPTION_LOWLEVEL_CALLBACK, 0, "cacheinfo", NULL, |
962 | 0 | N_("<mode>,<object>,<path>"), |
963 | 0 | N_("add the specified entry to the index"), |
964 | 0 | PARSE_OPT_NOARG | /* disallow --cacheinfo=<mode> form */ |
965 | 0 | PARSE_OPT_NONEG | PARSE_OPT_LITERAL_ARGHELP, |
966 | 0 | NULL, 0, |
967 | 0 | cacheinfo_callback}, |
968 | 0 | OPT_CALLBACK_F(0, "chmod", &set_executable_bit, "(+|-)x", |
969 | 0 | N_("override the executable bit of the listed files"), |
970 | 0 | PARSE_OPT_NONEG, |
971 | 0 | chmod_callback), |
972 | 0 | {OPTION_SET_INT, 0, "assume-unchanged", &mark_valid_only, NULL, |
973 | 0 | N_("mark files as \"not changing\""), |
974 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, MARK_FLAG}, |
975 | 0 | {OPTION_SET_INT, 0, "no-assume-unchanged", &mark_valid_only, NULL, |
976 | 0 | N_("clear assumed-unchanged bit"), |
977 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, UNMARK_FLAG}, |
978 | 0 | {OPTION_SET_INT, 0, "skip-worktree", &mark_skip_worktree_only, NULL, |
979 | 0 | N_("mark files as \"index-only\""), |
980 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, MARK_FLAG}, |
981 | 0 | {OPTION_SET_INT, 0, "no-skip-worktree", &mark_skip_worktree_only, NULL, |
982 | 0 | N_("clear skip-worktree bit"), |
983 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, UNMARK_FLAG}, |
984 | 0 | OPT_BOOL(0, "ignore-skip-worktree-entries", &ignore_skip_worktree_entries, |
985 | 0 | N_("do not touch index-only entries")), |
986 | 0 | OPT_SET_INT(0, "info-only", &info_only, |
987 | 0 | N_("add to index only; do not add content to object database"), 1), |
988 | 0 | OPT_SET_INT(0, "force-remove", &force_remove, |
989 | 0 | N_("remove named paths even if present in worktree"), 1), |
990 | 0 | OPT_BOOL('z', NULL, &nul_term_line, |
991 | 0 | N_("with --stdin: input lines are terminated by null bytes")), |
992 | 0 | {OPTION_LOWLEVEL_CALLBACK, 0, "stdin", &read_from_stdin, NULL, |
993 | 0 | N_("read list of paths to be updated from standard input"), |
994 | 0 | PARSE_OPT_NONEG | PARSE_OPT_NOARG, |
995 | 0 | NULL, 0, stdin_callback}, |
996 | 0 | {OPTION_LOWLEVEL_CALLBACK, 0, "index-info", &nul_term_line, NULL, |
997 | 0 | N_("add entries from standard input to the index"), |
998 | 0 | PARSE_OPT_NONEG | PARSE_OPT_NOARG, |
999 | 0 | NULL, 0, stdin_cacheinfo_callback}, |
1000 | 0 | {OPTION_LOWLEVEL_CALLBACK, 0, "unresolve", &has_errors, NULL, |
1001 | 0 | N_("repopulate stages #2 and #3 for the listed paths"), |
1002 | 0 | PARSE_OPT_NONEG | PARSE_OPT_NOARG, |
1003 | 0 | NULL, 0, unresolve_callback}, |
1004 | 0 | {OPTION_LOWLEVEL_CALLBACK, 'g', "again", &has_errors, NULL, |
1005 | 0 | N_("only update entries that differ from HEAD"), |
1006 | 0 | PARSE_OPT_NONEG | PARSE_OPT_NOARG, |
1007 | 0 | NULL, 0, reupdate_callback}, |
1008 | 0 | OPT_BIT(0, "ignore-missing", &refresh_args.flags, |
1009 | 0 | N_("ignore files missing from worktree"), |
1010 | 0 | REFRESH_IGNORE_MISSING), |
1011 | 0 | OPT_SET_INT(0, "verbose", &verbose, |
1012 | 0 | N_("report actions to standard output"), 1), |
1013 | 0 | OPT_CALLBACK_F(0, "clear-resolve-undo", NULL, NULL, |
1014 | 0 | N_("(for porcelains) forget saved unresolved conflicts"), |
1015 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, |
1016 | 0 | resolve_undo_clear_callback), |
1017 | 0 | OPT_INTEGER(0, "index-version", &preferred_index_format, |
1018 | 0 | N_("write index in this format")), |
1019 | 0 | OPT_SET_INT(0, "show-index-version", &preferred_index_format, |
1020 | 0 | N_("report on-disk index format version"), -1), |
1021 | 0 | OPT_BOOL(0, "split-index", &split_index, |
1022 | 0 | N_("enable or disable split index")), |
1023 | 0 | OPT_BOOL(0, "untracked-cache", &untracked_cache, |
1024 | 0 | N_("enable/disable untracked cache")), |
1025 | 0 | OPT_SET_INT(0, "test-untracked-cache", &untracked_cache, |
1026 | 0 | N_("test if the filesystem supports untracked cache"), UC_TEST), |
1027 | 0 | OPT_SET_INT(0, "force-untracked-cache", &untracked_cache, |
1028 | 0 | N_("enable untracked cache without testing the filesystem"), UC_FORCE), |
1029 | 0 | OPT_SET_INT(0, "force-write-index", &force_write, |
1030 | 0 | N_("write out the index even if is not flagged as changed"), 1), |
1031 | 0 | OPT_BOOL(0, "fsmonitor", &fsmonitor, |
1032 | 0 | N_("enable or disable file system monitor")), |
1033 | 0 | {OPTION_SET_INT, 0, "fsmonitor-valid", &mark_fsmonitor_only, NULL, |
1034 | 0 | N_("mark files as fsmonitor valid"), |
1035 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, MARK_FLAG}, |
1036 | 0 | {OPTION_SET_INT, 0, "no-fsmonitor-valid", &mark_fsmonitor_only, NULL, |
1037 | 0 | N_("clear fsmonitor valid bit"), |
1038 | 0 | PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, UNMARK_FLAG}, |
1039 | 0 | OPT_END() |
1040 | 0 | }; |
1041 | |
|
1042 | 0 | if (argc == 2 && !strcmp(argv[1], "-h")) |
1043 | 0 | usage_with_options(update_index_usage, options); |
1044 | | |
1045 | 0 | git_config(git_default_config, NULL); |
1046 | |
|
1047 | 0 | prepare_repo_settings(r); |
1048 | 0 | the_repository->settings.command_requires_full_index = 0; |
1049 | | |
1050 | | /* we will diagnose later if it turns out that we need to update it */ |
1051 | 0 | newfd = repo_hold_locked_index(the_repository, &lock_file, 0); |
1052 | 0 | if (newfd < 0) |
1053 | 0 | lock_error = errno; |
1054 | |
|
1055 | 0 | entries = repo_read_index(the_repository); |
1056 | 0 | if (entries < 0) |
1057 | 0 | die("cache corrupted"); |
1058 | | |
1059 | 0 | the_index.updated_skipworktree = 1; |
1060 | | |
1061 | | /* |
1062 | | * Custom copy of parse_options() because we want to handle |
1063 | | * filename arguments as they come. |
1064 | | */ |
1065 | 0 | parse_options_start(&ctx, argc, argv, prefix, |
1066 | 0 | options, PARSE_OPT_STOP_AT_NON_OPTION); |
1067 | | |
1068 | | /* |
1069 | | * Allow the object layer to optimize adding multiple objects in |
1070 | | * a batch. |
1071 | | */ |
1072 | 0 | begin_odb_transaction(); |
1073 | 0 | while (ctx.argc) { |
1074 | 0 | if (parseopt_state != PARSE_OPT_DONE) |
1075 | 0 | parseopt_state = parse_options_step(&ctx, options, |
1076 | 0 | update_index_usage); |
1077 | 0 | if (!ctx.argc) |
1078 | 0 | break; |
1079 | 0 | switch (parseopt_state) { |
1080 | 0 | case PARSE_OPT_HELP: |
1081 | 0 | case PARSE_OPT_ERROR: |
1082 | 0 | exit(129); |
1083 | 0 | case PARSE_OPT_COMPLETE: |
1084 | 0 | exit(0); |
1085 | 0 | case PARSE_OPT_NON_OPTION: |
1086 | 0 | case PARSE_OPT_DONE: |
1087 | 0 | { |
1088 | 0 | const char *path = ctx.argv[0]; |
1089 | 0 | char *p; |
1090 | |
|
1091 | 0 | setup_work_tree(); |
1092 | 0 | p = prefix_path(prefix, prefix_length, path); |
1093 | 0 | update_one(p); |
1094 | 0 | if (set_executable_bit) |
1095 | 0 | chmod_path(set_executable_bit, p); |
1096 | 0 | free(p); |
1097 | 0 | ctx.argc--; |
1098 | 0 | ctx.argv++; |
1099 | 0 | break; |
1100 | 0 | } |
1101 | 0 | case PARSE_OPT_UNKNOWN: |
1102 | 0 | if (ctx.argv[0][1] == '-') |
1103 | 0 | error("unknown option '%s'", ctx.argv[0] + 2); |
1104 | 0 | else |
1105 | 0 | error("unknown switch '%c'", *ctx.opt); |
1106 | 0 | usage_with_options(update_index_usage, options); |
1107 | 0 | } |
1108 | 0 | } |
1109 | 0 | argc = parse_options_end(&ctx); |
1110 | |
|
1111 | 0 | getline_fn = nul_term_line ? strbuf_getline_nul : strbuf_getline_lf; |
1112 | 0 | if (preferred_index_format) { |
1113 | 0 | if (preferred_index_format < 0) { |
1114 | 0 | printf(_("%d\n"), the_index.version); |
1115 | 0 | } else if (preferred_index_format < INDEX_FORMAT_LB || |
1116 | 0 | INDEX_FORMAT_UB < preferred_index_format) { |
1117 | 0 | die("index-version %d not in range: %d..%d", |
1118 | 0 | preferred_index_format, |
1119 | 0 | INDEX_FORMAT_LB, INDEX_FORMAT_UB); |
1120 | 0 | } else { |
1121 | 0 | if (the_index.version != preferred_index_format) |
1122 | 0 | the_index.cache_changed |= SOMETHING_CHANGED; |
1123 | 0 | report(_("index-version: was %d, set to %d"), |
1124 | 0 | the_index.version, preferred_index_format); |
1125 | 0 | the_index.version = preferred_index_format; |
1126 | 0 | } |
1127 | 0 | } |
1128 | | |
1129 | 0 | if (read_from_stdin) { |
1130 | 0 | struct strbuf buf = STRBUF_INIT; |
1131 | 0 | struct strbuf unquoted = STRBUF_INIT; |
1132 | |
|
1133 | 0 | setup_work_tree(); |
1134 | 0 | while (getline_fn(&buf, stdin) != EOF) { |
1135 | 0 | char *p; |
1136 | 0 | if (!nul_term_line && buf.buf[0] == '"') { |
1137 | 0 | strbuf_reset(&unquoted); |
1138 | 0 | if (unquote_c_style(&unquoted, buf.buf, NULL)) |
1139 | 0 | die("line is badly quoted"); |
1140 | 0 | strbuf_swap(&buf, &unquoted); |
1141 | 0 | } |
1142 | 0 | p = prefix_path(prefix, prefix_length, buf.buf); |
1143 | 0 | update_one(p); |
1144 | 0 | if (set_executable_bit) |
1145 | 0 | chmod_path(set_executable_bit, p); |
1146 | 0 | free(p); |
1147 | 0 | } |
1148 | 0 | strbuf_release(&unquoted); |
1149 | 0 | strbuf_release(&buf); |
1150 | 0 | } |
1151 | | |
1152 | | /* |
1153 | | * By now we have added all of the new objects |
1154 | | */ |
1155 | 0 | end_odb_transaction(); |
1156 | |
|
1157 | 0 | if (split_index > 0) { |
1158 | 0 | if (git_config_get_split_index() == 0) |
1159 | 0 | warning(_("core.splitIndex is set to false; " |
1160 | 0 | "remove or change it, if you really want to " |
1161 | 0 | "enable split index")); |
1162 | 0 | if (the_index.split_index) |
1163 | 0 | the_index.cache_changed |= SPLIT_INDEX_ORDERED; |
1164 | 0 | else |
1165 | 0 | add_split_index(&the_index); |
1166 | 0 | } else if (!split_index) { |
1167 | 0 | if (git_config_get_split_index() == 1) |
1168 | 0 | warning(_("core.splitIndex is set to true; " |
1169 | 0 | "remove or change it, if you really want to " |
1170 | 0 | "disable split index")); |
1171 | 0 | remove_split_index(&the_index); |
1172 | 0 | } |
1173 | |
|
1174 | 0 | prepare_repo_settings(r); |
1175 | 0 | switch (untracked_cache) { |
1176 | 0 | case UC_UNSPECIFIED: |
1177 | 0 | break; |
1178 | 0 | case UC_DISABLE: |
1179 | 0 | if (r->settings.core_untracked_cache == UNTRACKED_CACHE_WRITE) |
1180 | 0 | warning(_("core.untrackedCache is set to true; " |
1181 | 0 | "remove or change it, if you really want to " |
1182 | 0 | "disable the untracked cache")); |
1183 | 0 | remove_untracked_cache(&the_index); |
1184 | 0 | report(_("Untracked cache disabled")); |
1185 | 0 | break; |
1186 | 0 | case UC_TEST: |
1187 | 0 | setup_work_tree(); |
1188 | 0 | return !test_if_untracked_cache_is_supported(); |
1189 | 0 | case UC_ENABLE: |
1190 | 0 | case UC_FORCE: |
1191 | 0 | if (r->settings.core_untracked_cache == UNTRACKED_CACHE_REMOVE) |
1192 | 0 | warning(_("core.untrackedCache is set to false; " |
1193 | 0 | "remove or change it, if you really want to " |
1194 | 0 | "enable the untracked cache")); |
1195 | 0 | add_untracked_cache(&the_index); |
1196 | 0 | report(_("Untracked cache enabled for '%s'"), get_git_work_tree()); |
1197 | 0 | break; |
1198 | 0 | default: |
1199 | 0 | BUG("bad untracked_cache value: %d", untracked_cache); |
1200 | 0 | } |
1201 | | |
1202 | 0 | if (fsmonitor > 0) { |
1203 | 0 | enum fsmonitor_mode fsm_mode = fsm_settings__get_mode(r); |
1204 | 0 | enum fsmonitor_reason reason = fsm_settings__get_reason(r); |
1205 | | |
1206 | | /* |
1207 | | * The user wants to turn on FSMonitor using the command |
1208 | | * line argument. (We don't know (or care) whether that |
1209 | | * is the IPC or HOOK version.) |
1210 | | * |
1211 | | * Use one of the __get routines to force load the FSMonitor |
1212 | | * config settings into the repo-settings. That will detect |
1213 | | * whether the file system is compatible so that we can stop |
1214 | | * here with a nice error message. |
1215 | | */ |
1216 | 0 | if (reason > FSMONITOR_REASON_OK) |
1217 | 0 | die("%s", |
1218 | 0 | fsm_settings__get_incompatible_msg(r, reason)); |
1219 | | |
1220 | 0 | if (fsm_mode == FSMONITOR_MODE_DISABLED) { |
1221 | 0 | warning(_("core.fsmonitor is unset; " |
1222 | 0 | "set it if you really want to " |
1223 | 0 | "enable fsmonitor")); |
1224 | 0 | } |
1225 | 0 | add_fsmonitor(&the_index); |
1226 | 0 | report(_("fsmonitor enabled")); |
1227 | 0 | } else if (!fsmonitor) { |
1228 | 0 | enum fsmonitor_mode fsm_mode = fsm_settings__get_mode(r); |
1229 | 0 | if (fsm_mode > FSMONITOR_MODE_DISABLED) |
1230 | 0 | warning(_("core.fsmonitor is set; " |
1231 | 0 | "remove it if you really want to " |
1232 | 0 | "disable fsmonitor")); |
1233 | 0 | remove_fsmonitor(&the_index); |
1234 | 0 | report(_("fsmonitor disabled")); |
1235 | 0 | } |
1236 | | |
1237 | 0 | if (the_index.cache_changed || force_write) { |
1238 | 0 | if (newfd < 0) { |
1239 | 0 | if (refresh_args.flags & REFRESH_QUIET) |
1240 | 0 | exit(128); |
1241 | 0 | unable_to_lock_die(get_index_file(), lock_error); |
1242 | 0 | } |
1243 | 0 | if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK)) |
1244 | 0 | die("Unable to write new index file"); |
1245 | 0 | } |
1246 | | |
1247 | 0 | rollback_lock_file(&lock_file); |
1248 | |
|
1249 | 0 | return has_errors ? 1 : 0; |
1250 | 0 | } |