3 #include "object-store.h"
10 #include "parallel-checkout.h"
12 static void create_directories(const char *path
, int path_len
,
13 const struct checkout
*state
)
15 char *buf
= xmallocz(path_len
);
18 while (len
< path_len
) {
22 } while (len
< path_len
&& path
[len
] != '/');
28 * For 'checkout-index --prefix=<dir>', <dir> is
29 * allowed to be a symlink to an existing directory,
30 * and we set 'state->base_dir_len' below, such that
31 * we test the path components of the prefix with the
32 * stat() function instead of the lstat() function.
34 if (has_dirs_only_path(buf
, len
, state
->base_dir_len
))
35 continue; /* ok, it is already a directory. */
38 * If this mkdir() would fail, it could be that there
39 * is already a symlink or something else exists
40 * there, therefore we then try to unlink it and try
41 * one more time to create the directory.
43 if (mkdir(buf
, 0777)) {
44 if (errno
== EEXIST
&& state
->force
&&
45 !unlink_or_warn(buf
) && !mkdir(buf
, 0777))
47 die_errno("cannot create directory at '%s'", buf
);
53 static void remove_subtree(struct strbuf
*path
)
55 DIR *dir
= opendir(path
->buf
);
57 int origlen
= path
->len
;
60 die_errno("cannot opendir '%s'", path
->buf
);
61 while ((de
= readdir_skip_dot_and_dotdot(dir
)) != NULL
) {
64 strbuf_addch(path
, '/');
65 strbuf_addstr(path
, de
->d_name
);
66 if (lstat(path
->buf
, &st
))
67 die_errno("cannot lstat '%s'", path
->buf
);
68 if (S_ISDIR(st
.st_mode
))
70 else if (unlink(path
->buf
))
71 die_errno("cannot unlink '%s'", path
->buf
);
72 strbuf_setlen(path
, origlen
);
76 die_errno("cannot rmdir '%s'", path
->buf
);
79 static int create_file(const char *path
, unsigned int mode
)
81 mode
= (mode
& 0100) ? 0777 : 0666;
82 return open(path
, O_WRONLY
| O_CREAT
| O_EXCL
, mode
);
85 void *read_blob_entry(const struct cache_entry
*ce
, size_t *size
)
87 enum object_type type
;
89 void *blob_data
= read_object_file(&ce
->oid
, &type
, &ul
);
100 static int open_output_fd(char *path
, const struct cache_entry
*ce
, int to_tempfile
)
102 int symlink
= (ce
->ce_mode
& S_IFMT
) != S_IFREG
;
104 xsnprintf(path
, TEMPORARY_FILENAME_LENGTH
, "%s",
105 symlink
? ".merge_link_XXXXXX" : ".merge_file_XXXXXX");
106 return mkstemp(path
);
108 return create_file(path
, !symlink
? ce
->ce_mode
: 0666);
112 int fstat_checkout_output(int fd
, const struct checkout
*state
, struct stat
*st
)
114 /* use fstat() only when path == ce->name */
115 if (fstat_is_reliable() &&
116 state
->refresh_cache
&& !state
->base_dir_len
) {
117 return !fstat(fd
, st
);
122 static int streaming_write_entry(const struct cache_entry
*ce
, char *path
,
123 struct stream_filter
*filter
,
124 const struct checkout
*state
, int to_tempfile
,
125 int *fstat_done
, struct stat
*statbuf
)
130 fd
= open_output_fd(path
, ce
, to_tempfile
);
134 result
|= stream_blob_to_fd(fd
, &ce
->oid
, filter
, 1);
135 *fstat_done
= fstat_checkout_output(fd
, state
, statbuf
);
143 void enable_delayed_checkout(struct checkout
*state
)
145 if (!state
->delayed_checkout
) {
146 state
->delayed_checkout
= xmalloc(sizeof(*state
->delayed_checkout
));
147 state
->delayed_checkout
->state
= CE_CAN_DELAY
;
148 string_list_init_nodup(&state
->delayed_checkout
->filters
);
149 string_list_init_nodup(&state
->delayed_checkout
->paths
);
153 static int remove_available_paths(struct string_list_item
*item
, void *cb_data
)
155 struct string_list
*available_paths
= cb_data
;
156 struct string_list_item
*available
;
158 available
= string_list_lookup(available_paths
, item
->string
);
160 available
->util
= item
->util
;
164 int finish_delayed_checkout(struct checkout
*state
, int show_progress
)
167 unsigned processed_paths
= 0;
168 off_t filtered_bytes
= 0;
169 struct string_list_item
*filter
, *path
;
170 struct progress
*progress
= NULL
;
171 struct delayed_checkout
*dco
= state
->delayed_checkout
;
173 if (!state
->delayed_checkout
)
176 dco
->state
= CE_RETRY
;
178 progress
= start_delayed_progress(_("Filtering content"), dco
->paths
.nr
);
179 while (dco
->filters
.nr
> 0) {
180 for_each_string_list_item(filter
, &dco
->filters
) {
181 struct string_list available_paths
= STRING_LIST_INIT_NODUP
;
183 if (!async_query_available_blobs(filter
->string
, &available_paths
)) {
184 /* Filter reported an error */
189 if (available_paths
.nr
<= 0) {
191 * Filter responded with no entries. That means
192 * the filter is done and we can remove the
193 * filter from the list (see
194 * "string_list_remove_empty_items" call below).
201 * In dco->paths we store a list of all delayed paths.
202 * The filter just send us a list of available paths.
203 * Remove them from the list.
205 filter_string_list(&dco
->paths
, 0,
206 &remove_available_paths
, &available_paths
);
208 for_each_string_list_item(path
, &available_paths
) {
209 struct cache_entry
* ce
;
212 error("external filter '%s' signaled that '%s' "
213 "is now available although it has not been "
215 filter
->string
, path
->string
);
219 * Do not ask the filter for available blobs,
220 * again, as the filter is likely buggy.
225 ce
= index_file_exists(state
->istate
, path
->string
,
226 strlen(path
->string
), 0);
228 display_progress(progress
, ++processed_paths
);
229 errs
|= checkout_entry(ce
, state
, NULL
, path
->util
);
230 filtered_bytes
+= ce
->ce_stat_data
.sd_size
;
231 display_throughput(progress
, filtered_bytes
);
236 string_list_remove_empty_items(&dco
->filters
, 0);
238 stop_progress(&progress
);
239 string_list_clear(&dco
->filters
, 0);
241 /* At this point we should not have any delayed paths anymore. */
242 errs
|= dco
->paths
.nr
;
243 for_each_string_list_item(path
, &dco
->paths
) {
244 error("'%s' was not filtered properly", path
->string
);
246 string_list_clear(&dco
->paths
, 0);
249 state
->delayed_checkout
= NULL
;
254 void update_ce_after_write(const struct checkout
*state
, struct cache_entry
*ce
,
257 if (state
->refresh_cache
) {
258 assert(state
->istate
);
259 fill_stat_cache_info(state
->istate
, ce
, st
);
260 ce
->ce_flags
|= CE_UPDATE_IN_BASE
;
261 mark_fsmonitor_invalid(state
->istate
, ce
);
262 state
->istate
->cache_changed
|= CE_ENTRY_CHANGED
;
266 /* Note: ca is used (and required) iff the entry refers to a regular file. */
267 static int write_entry(struct cache_entry
*ce
, char *path
, struct conv_attrs
*ca
,
268 const struct checkout
*state
, int to_tempfile
,
271 unsigned int ce_mode_s_ifmt
= ce
->ce_mode
& S_IFMT
;
272 struct delayed_checkout
*dco
= state
->delayed_checkout
;
273 int fd
, ret
, fstat_done
= 0;
275 struct strbuf buf
= STRBUF_INIT
;
280 const struct submodule
*sub
;
281 struct checkout_metadata meta
;
282 static int scratch_nr_checkouts
;
284 clone_checkout_metadata(&meta
, &state
->meta
, &ce
->oid
);
286 if (ce_mode_s_ifmt
== S_IFREG
) {
287 struct stream_filter
*filter
= get_stream_filter_ca(ca
, &ce
->oid
);
289 !streaming_write_entry(ce
, path
, filter
,
295 switch (ce_mode_s_ifmt
) {
297 new_blob
= read_blob_entry(ce
, &size
);
299 return error("unable to read sha1 file of %s (%s)",
300 ce
->name
, oid_to_hex(&ce
->oid
));
303 * We can't make a real symlink; write out a regular file entry
304 * with the symlink destination as its contents.
306 if (!has_symlinks
|| to_tempfile
)
307 goto write_file_entry
;
309 ret
= symlink(new_blob
, path
);
312 return error_errno("unable to create symlink %s", path
);
317 * We do not send the blob in case of a retry, so do not
318 * bother reading it at all.
320 if (dco
&& dco
->state
== CE_RETRY
) {
324 new_blob
= read_blob_entry(ce
, &size
);
326 return error("unable to read sha1 file of %s (%s)",
327 ce
->name
, oid_to_hex(&ce
->oid
));
331 * Convert from git internal format to working tree format
333 if (dco
&& dco
->state
!= CE_NO_DELAY
) {
334 ret
= async_convert_to_working_tree_ca(ca
, ce
->name
,
338 struct string_list_item
*item
=
339 string_list_lookup(&dco
->paths
, ce
->name
);
341 item
->util
= nr_checkouts
? nr_checkouts
342 : &scratch_nr_checkouts
;
348 ret
= convert_to_working_tree_ca(ca
, ce
->name
, new_blob
,
354 new_blob
= strbuf_detach(&buf
, &newsize
);
358 * No "else" here as errors from convert are OK at this
359 * point. If the error would have been fatal (e.g.
360 * filter is required), then we would have died already.
364 fd
= open_output_fd(path
, ce
, to_tempfile
);
367 return error_errno("unable to create file %s", path
);
370 wrote
= write_in_full(fd
, new_blob
, size
);
372 fstat_done
= fstat_checkout_output(fd
, state
, &st
);
376 return error("unable to write file %s", path
);
381 return error("cannot create temporary submodule %s", ce
->name
);
382 if (mkdir(path
, 0777) < 0)
383 return error("cannot create submodule directory %s", path
);
384 sub
= submodule_from_ce(ce
);
386 return submodule_move_head(ce
->name
,
387 NULL
, oid_to_hex(&ce
->oid
),
388 state
->force
? SUBMODULE_MOVE_HEAD_FORCE
: 0);
392 return error("unknown file mode for %s in index", ce
->name
);
396 if (state
->refresh_cache
) {
397 if (!fstat_done
&& lstat(ce
->name
, &st
) < 0)
398 return error_errno("unable to stat just-written file %s",
400 update_ce_after_write(state
, ce
, &st
);
409 * This is like 'lstat()', except it refuses to follow symlinks
410 * in the path, after skipping "skiplen".
412 static int check_path(const char *path
, int len
, struct stat
*st
, int skiplen
)
414 const char *slash
= path
+ len
;
416 while (path
< slash
&& *slash
!= '/')
418 if (!has_dirs_only_path(path
, slash
- path
, skiplen
)) {
422 return lstat(path
, st
);
425 static void mark_colliding_entries(const struct checkout
*state
,
426 struct cache_entry
*ce
, struct stat
*st
)
428 int i
, trust_ino
= check_stat
;
430 #if defined(GIT_WINDOWS_NATIVE) || defined(__CYGWIN__)
434 ce
->ce_flags
|= CE_MATCHED
;
436 /* TODO: audit for interaction with sparse-index. */
437 ensure_full_index(state
->istate
);
438 for (i
= 0; i
< state
->istate
->cache_nr
; i
++) {
439 struct cache_entry
*dup
= state
->istate
->cache
[i
];
443 * Parallel checkout doesn't create the files in index
444 * order. So the other side of the collision may appear
445 * after the given cache_entry in the array.
447 if (parallel_checkout_status() == PC_RUNNING
)
453 if (dup
->ce_flags
& (CE_MATCHED
| CE_VALID
| CE_SKIP_WORKTREE
))
456 if ((trust_ino
&& !match_stat_data(&dup
->ce_stat_data
, st
)) ||
457 (!trust_ino
&& !fspathcmp(ce
->name
, dup
->name
))) {
458 dup
->ce_flags
|= CE_MATCHED
;
464 int checkout_entry_ca(struct cache_entry
*ce
, struct conv_attrs
*ca
,
465 const struct checkout
*state
, char *topath
,
468 static struct strbuf path
= STRBUF_INIT
;
470 struct conv_attrs ca_buf
;
472 if (ce
->ce_flags
& CE_WT_REMOVE
) {
475 * No content and thus no path to create, so we have
476 * no pathname to return.
478 BUG("Can't remove entry to a path");
484 if (S_ISREG(ce
->ce_mode
) && !ca
) {
485 convert_attrs(state
->istate
, &ca_buf
, ce
->name
);
488 return write_entry(ce
, topath
, ca
, state
, 1, nr_checkouts
);
492 strbuf_add(&path
, state
->base_dir
, state
->base_dir_len
);
493 strbuf_add(&path
, ce
->name
, ce_namelen(ce
));
495 if (!check_path(path
.buf
, path
.len
, &st
, state
->base_dir_len
)) {
496 const struct submodule
*sub
;
497 unsigned changed
= ie_match_stat(state
->istate
, ce
, &st
,
498 CE_MATCH_IGNORE_VALID
| CE_MATCH_IGNORE_SKIP_WORKTREE
);
500 * Needs to be checked before !changed returns early,
501 * as the possibly empty directory was not changed
503 sub
= submodule_from_ce(ce
);
506 if (!is_submodule_populated_gently(ce
->name
, &err
)) {
508 if (lstat(ce
->name
, &sb
))
509 die(_("could not stat file '%s'"), ce
->name
);
510 if (!(st
.st_mode
& S_IFDIR
))
511 unlink_or_warn(ce
->name
);
513 return submodule_move_head(ce
->name
,
514 NULL
, oid_to_hex(&ce
->oid
), 0);
516 return submodule_move_head(ce
->name
,
517 "HEAD", oid_to_hex(&ce
->oid
),
518 state
->force
? SUBMODULE_MOVE_HEAD_FORCE
: 0);
526 "%s already exists, no checkout\n",
532 mark_colliding_entries(state
, ce
, &st
);
535 * We unlink the old file, to get the new one with the
536 * right permissions (including umask, which is nasty
537 * to emulate by hand - much easier to let the system
538 * just do the right thing)
540 if (S_ISDIR(st
.st_mode
)) {
541 /* If it is a gitlink, leave it alone! */
542 if (S_ISGITLINK(ce
->ce_mode
))
544 remove_subtree(&path
);
545 } else if (unlink(path
.buf
))
546 return error_errno("unable to unlink old '%s'", path
.buf
);
547 } else if (state
->not_new
)
550 create_directories(path
.buf
, path
.len
, state
);
552 if (S_ISREG(ce
->ce_mode
) && !ca
) {
553 convert_attrs(state
->istate
, &ca_buf
, ce
->name
);
557 if (!enqueue_checkout(ce
, ca
, nr_checkouts
))
560 return write_entry(ce
, path
.buf
, ca
, state
, 0, nr_checkouts
);
563 void unlink_entry(const struct cache_entry
*ce
)
565 const struct submodule
*sub
= submodule_from_ce(ce
);
567 /* state.force is set at the caller. */
568 submodule_move_head(ce
->name
, "HEAD", NULL
,
569 SUBMODULE_MOVE_HEAD_FORCE
);
571 if (check_leading_path(ce
->name
, ce_namelen(ce
), 1) >= 0)
573 if (remove_or_warn(ce
->ce_mode
, ce
->name
))
575 schedule_dir_for_removal(ce
->name
, ce_namelen(ce
));