blob: 3f376b9fdf2ad795d0e0929bed93c73c910ce85d [file] [log] [blame]
Linus Torvalds12dccc12005-06-05 21:59:54 -07001#include "cache.h"
Peter Eriksen8e440252006-04-02 14:44:09 +02002#include "blob.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -07003#include "object-store.h"
Alexander Potashev8ca12c02009-01-10 15:07:50 +03004#include "dir.h"
Junio C Hamanodd8e9122011-05-12 14:31:08 -07005#include "streaming.h"
Stefan Beller6d14eac2017-03-14 14:46:40 -07006#include "submodule.h"
Lars Schneider52f1d622017-08-20 17:47:20 +02007#include "progress.h"
Ben Peart883e2482017-09-22 12:35:40 -04008#include "fsmonitor.h"
Matheus Tavaresd052cc02021-03-23 11:19:32 -03009#include "entry.h"
Matheus Tavares04155bd2021-04-18 21:14:53 -030010#include "parallel-checkout.h"
Linus Torvalds12dccc12005-06-05 21:59:54 -070011
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010012static void create_directories(const char *path, int path_len,
13 const struct checkout *state)
Linus Torvalds12dccc12005-06-05 21:59:54 -070014{
Jeff King3733e692016-02-22 17:44:28 -050015 char *buf = xmallocz(path_len);
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010016 int len = 0;
Linus Torvalds12dccc12005-06-05 21:59:54 -070017
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010018 while (len < path_len) {
19 do {
20 buf[len] = path[len];
21 len++;
22 } while (len < path_len && path[len] != '/');
23 if (len >= path_len)
24 break;
Linus Torvalds12dccc12005-06-05 21:59:54 -070025 buf[len] = 0;
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070026
Kjetil Barvikbad4a542009-01-18 16:14:52 +010027 /*
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.
33 */
Kjetil Barvik57199892009-02-09 21:54:06 +010034 if (has_dirs_only_path(buf, len, state->base_dir_len))
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070035 continue; /* ok, it is already a directory. */
36
37 /*
Kjetil Barvikbad4a542009-01-18 16:14:52 +010038 * 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.
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070042 */
Junio C Hamanof312de02005-07-06 01:21:46 -070043 if (mkdir(buf, 0777)) {
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070044 if (errno == EEXIST && state->force &&
Alex Riesen691f1a22009-04-29 23:22:56 +020045 !unlink_or_warn(buf) && !mkdir(buf, 0777))
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070046 continue;
Thomas Rast0721c312009-06-27 17:58:47 +020047 die_errno("cannot create directory at '%s'", buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070048 }
49 }
50 free(buf);
51}
52
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010053static void remove_subtree(struct strbuf *path)
Linus Torvalds12dccc12005-06-05 21:59:54 -070054{
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010055 DIR *dir = opendir(path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070056 struct dirent *de;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010057 int origlen = path->len;
Junio C Hamanoa6080a02007-06-07 00:04:01 -070058
Linus Torvalds12dccc12005-06-05 21:59:54 -070059 if (!dir)
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010060 die_errno("cannot opendir '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070061 while ((de = readdir(dir)) != NULL) {
62 struct stat st;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010063
Alexander Potashev8ca12c02009-01-10 15:07:50 +030064 if (is_dot_or_dotdot(de->d_name))
Linus Torvalds12dccc12005-06-05 21:59:54 -070065 continue;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010066
67 strbuf_addch(path, '/');
68 strbuf_addstr(path, de->d_name);
69 if (lstat(path->buf, &st))
70 die_errno("cannot lstat '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070071 if (S_ISDIR(st.st_mode))
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010072 remove_subtree(path);
73 else if (unlink(path->buf))
74 die_errno("cannot unlink '%s'", path->buf);
75 strbuf_setlen(path, origlen);
Linus Torvalds12dccc12005-06-05 21:59:54 -070076 }
77 closedir(dir);
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010078 if (rmdir(path->buf))
79 die_errno("cannot rmdir '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070080}
81
Linus Torvaldsd48a72f2005-07-14 09:58:45 -070082static int create_file(const char *path, unsigned int mode)
Linus Torvalds12dccc12005-06-05 21:59:54 -070083{
Linus Torvalds12dccc12005-06-05 21:59:54 -070084 mode = (mode & 0100) ? 0777 : 0666;
Alex Riesen781411e2006-01-05 09:58:06 +010085 return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
Linus Torvalds12dccc12005-06-05 21:59:54 -070086}
87
Matheus Tavares49cfd902021-03-23 11:19:33 -030088void *read_blob_entry(const struct cache_entry *ce, unsigned long *size)
Linus Torvaldsf0807e62007-04-13 09:26:04 -070089{
90 enum object_type type;
brian m. carlsonb4f5aca2018-03-12 02:27:53 +000091 void *blob_data = read_object_file(&ce->oid, &type, size);
Linus Torvaldsf0807e62007-04-13 09:26:04 -070092
Brandon Williamsd8f71802018-02-14 10:59:41 -080093 if (blob_data) {
Linus Torvaldsf0807e62007-04-13 09:26:04 -070094 if (type == OBJ_BLOB)
Brandon Williamsd8f71802018-02-14 10:59:41 -080095 return blob_data;
96 free(blob_data);
Linus Torvaldsf0807e62007-04-13 09:26:04 -070097 }
98 return NULL;
99}
100
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700101static int open_output_fd(char *path, const struct cache_entry *ce, int to_tempfile)
Junio C Hamanofd5db552011-05-12 21:36:42 -0700102{
103 int symlink = (ce->ce_mode & S_IFMT) != S_IFREG;
104 if (to_tempfile) {
Jeff King330c8e22015-09-24 17:06:53 -0400105 xsnprintf(path, TEMPORARY_FILENAME_LENGTH, "%s",
106 symlink ? ".merge_link_XXXXXX" : ".merge_file_XXXXXX");
Junio C Hamanofd5db552011-05-12 21:36:42 -0700107 return mkstemp(path);
108 } else {
109 return create_file(path, !symlink ? ce->ce_mode : 0666);
110 }
111}
112
Matheus Tavares49cfd902021-03-23 11:19:33 -0300113int fstat_checkout_output(int fd, const struct checkout *state, struct stat *st)
Junio C Hamanofd5db552011-05-12 21:36:42 -0700114{
115 /* use fstat() only when path == ce->name */
116 if (fstat_is_reliable() &&
117 state->refresh_cache && !state->base_dir_len) {
Matheus Tavares35e6e212020-07-08 23:10:39 -0300118 return !fstat(fd, st);
Junio C Hamanofd5db552011-05-12 21:36:42 -0700119 }
120 return 0;
121}
122
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700123static int streaming_write_entry(const struct cache_entry *ce, char *path,
Junio C Hamanob6691092011-05-20 14:33:31 -0700124 struct stream_filter *filter,
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700125 const struct checkout *state, int to_tempfile,
126 int *fstat_done, struct stat *statbuf)
127{
Jeff Kingd9c31e12013-03-25 17:49:36 -0400128 int result = 0;
Junio C Hamano47a02ff2012-03-07 17:54:15 +0700129 int fd;
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700130
131 fd = open_output_fd(path, ce, to_tempfile);
Jeff Kingd9c31e12013-03-25 17:49:36 -0400132 if (fd < 0)
133 return -1;
134
brian m. carlson7eda0e42016-09-05 20:07:59 +0000135 result |= stream_blob_to_fd(fd, &ce->oid, filter, 1);
Matheus Tavares49cfd902021-03-23 11:19:33 -0300136 *fstat_done = fstat_checkout_output(fd, state, statbuf);
Jeff Kingd9c31e12013-03-25 17:49:36 -0400137 result |= close(fd);
138
139 if (result)
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700140 unlink(path);
141 return result;
142}
143
Lars Schneider2841e8f2017-06-30 22:41:28 +0200144void enable_delayed_checkout(struct checkout *state)
145{
146 if (!state->delayed_checkout) {
147 state->delayed_checkout = xmalloc(sizeof(*state->delayed_checkout));
148 state->delayed_checkout->state = CE_CAN_DELAY;
149 string_list_init(&state->delayed_checkout->filters, 0);
150 string_list_init(&state->delayed_checkout->paths, 0);
151 }
152}
153
154static int remove_available_paths(struct string_list_item *item, void *cb_data)
155{
156 struct string_list *available_paths = cb_data;
157 struct string_list_item *available;
158
159 available = string_list_lookup(available_paths, item->string);
160 if (available)
161 available->util = (void *)item->string;
162 return !available;
163}
164
Nguyễn Thái Ngọc Duy0f086e62018-11-13 19:28:00 +0100165int finish_delayed_checkout(struct checkout *state, int *nr_checkouts)
Lars Schneider2841e8f2017-06-30 22:41:28 +0200166{
167 int errs = 0;
Lars Schneider52f1d622017-08-20 17:47:20 +0200168 unsigned delayed_object_count;
169 off_t filtered_bytes = 0;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200170 struct string_list_item *filter, *path;
Lars Schneider52f1d622017-08-20 17:47:20 +0200171 struct progress *progress;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200172 struct delayed_checkout *dco = state->delayed_checkout;
173
174 if (!state->delayed_checkout)
175 return errs;
176
177 dco->state = CE_RETRY;
Lars Schneider52f1d622017-08-20 17:47:20 +0200178 delayed_object_count = dco->paths.nr;
Junio C Hamano7fbbd3e2017-09-10 17:08:22 +0900179 progress = start_delayed_progress(_("Filtering content"), delayed_object_count);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200180 while (dco->filters.nr > 0) {
181 for_each_string_list_item(filter, &dco->filters) {
182 struct string_list available_paths = STRING_LIST_INIT_NODUP;
Lars Schneider52f1d622017-08-20 17:47:20 +0200183 display_progress(progress, delayed_object_count - dco->paths.nr);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200184
185 if (!async_query_available_blobs(filter->string, &available_paths)) {
186 /* Filter reported an error */
187 errs = 1;
188 filter->string = "";
189 continue;
190 }
191 if (available_paths.nr <= 0) {
192 /*
193 * Filter responded with no entries. That means
194 * the filter is done and we can remove the
195 * filter from the list (see
196 * "string_list_remove_empty_items" call below).
197 */
198 filter->string = "";
199 continue;
200 }
201
202 /*
203 * In dco->paths we store a list of all delayed paths.
204 * The filter just send us a list of available paths.
205 * Remove them from the list.
206 */
207 filter_string_list(&dco->paths, 0,
208 &remove_available_paths, &available_paths);
209
210 for_each_string_list_item(path, &available_paths) {
211 struct cache_entry* ce;
212
213 if (!path->util) {
214 error("external filter '%s' signaled that '%s' "
215 "is now available although it has not been "
216 "delayed earlier",
217 filter->string, path->string);
218 errs |= 1;
219
220 /*
221 * Do not ask the filter for available blobs,
222 * again, as the filter is likely buggy.
223 */
224 filter->string = "";
225 continue;
226 }
227 ce = index_file_exists(state->istate, path->string,
228 strlen(path->string), 0);
Lars Schneider52f1d622017-08-20 17:47:20 +0200229 if (ce) {
Nguyễn Thái Ngọc Duy0f086e62018-11-13 19:28:00 +0100230 errs |= checkout_entry(ce, state, NULL, nr_checkouts);
Lars Schneider52f1d622017-08-20 17:47:20 +0200231 filtered_bytes += ce->ce_stat_data.sd_size;
232 display_throughput(progress, filtered_bytes);
233 } else
234 errs = 1;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200235 }
236 }
237 string_list_remove_empty_items(&dco->filters, 0);
238 }
Lars Schneider52f1d622017-08-20 17:47:20 +0200239 stop_progress(&progress);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200240 string_list_clear(&dco->filters, 0);
241
242 /* At this point we should not have any delayed paths anymore. */
243 errs |= dco->paths.nr;
244 for_each_string_list_item(path, &dco->paths) {
245 error("'%s' was not filtered properly", path->string);
246 }
247 string_list_clear(&dco->paths, 0);
248
249 free(dco);
250 state->delayed_checkout = NULL;
251
252 return errs;
253}
254
Matheus Tavares584a0d12021-03-23 11:19:34 -0300255void update_ce_after_write(const struct checkout *state, struct cache_entry *ce,
256 struct stat *st)
257{
258 if (state->refresh_cache) {
259 assert(state->istate);
260 fill_stat_cache_info(state->istate, ce, st);
261 ce->ce_flags |= CE_UPDATE_IN_BASE;
262 mark_fsmonitor_invalid(state->istate, ce);
263 state->istate->cache_changed |= CE_ENTRY_CHANGED;
264 }
265}
266
Matheus Tavares30419e72021-03-23 11:19:35 -0300267/* Note: ca is used (and required) iff the entry refers to a regular file. */
268static int write_entry(struct cache_entry *ce, char *path, struct conv_attrs *ca,
269 const struct checkout *state, int to_tempfile)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700270{
Kjetil Barvik4857c762009-02-09 21:54:50 +0100271 unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
Jeff Kingc602d3a2017-10-09 13:48:52 -0400272 struct delayed_checkout *dco = state->delayed_checkout;
Kjetil Barvike4c72922009-02-09 21:54:51 +0100273 int fd, ret, fstat_done = 0;
Brandon Williamsd8f71802018-02-14 10:59:41 -0800274 char *new_blob;
Kjetil Barvik4857c762009-02-09 21:54:50 +0100275 struct strbuf buf = STRBUF_INIT;
276 unsigned long size;
Jeff King564bde92017-09-13 13:16:28 -0400277 ssize_t wrote;
278 size_t newsize = 0;
Kjetil Barvike4c72922009-02-09 21:54:51 +0100279 struct stat st;
Stefan Beller6d14eac2017-03-14 14:46:40 -0700280 const struct submodule *sub;
brian m. carlsonc397aac2020-03-16 18:05:03 +0000281 struct checkout_metadata meta;
282
283 clone_checkout_metadata(&meta, &state->meta, &ce->oid);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700284
Junio C Hamanob6691092011-05-20 14:33:31 -0700285 if (ce_mode_s_ifmt == S_IFREG) {
Matheus Tavares30419e72021-03-23 11:19:35 -0300286 struct stream_filter *filter = get_stream_filter_ca(ca, &ce->oid);
Junio C Hamanob6691092011-05-20 14:33:31 -0700287 if (filter &&
288 !streaming_write_entry(ce, path, filter,
289 state, to_tempfile,
290 &fstat_done, &st))
291 goto finish;
292 }
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700293
Kjetil Barvik4857c762009-02-09 21:54:50 +0100294 switch (ce_mode_s_ifmt) {
Kjetil Barvik4857c762009-02-09 21:54:50 +0100295 case S_IFLNK:
Brandon Williamsd8f71802018-02-14 10:59:41 -0800296 new_blob = read_blob_entry(ce, &size);
297 if (!new_blob)
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700298 return error("unable to read sha1 file of %s (%s)",
Matheus Tavares9334ea82021-02-16 11:06:51 -0300299 ce->name, oid_to_hex(&ce->oid));
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700300
Jeff King7cbbf9d2017-10-09 13:50:05 -0400301 /*
302 * We can't make a real symlink; write out a regular file entry
303 * with the symlink destination as its contents.
304 */
305 if (!has_symlinks || to_tempfile)
306 goto write_file_entry;
307
Brandon Williamsd8f71802018-02-14 10:59:41 -0800308 ret = symlink(new_blob, path);
309 free(new_blob);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400310 if (ret)
311 return error_errno("unable to create symlink %s", path);
312 break;
313
314 case S_IFREG:
Jeff Kingc602d3a2017-10-09 13:48:52 -0400315 /*
316 * We do not send the blob in case of a retry, so do not
317 * bother reading it at all.
318 */
Jeff King7cbbf9d2017-10-09 13:50:05 -0400319 if (dco && dco->state == CE_RETRY) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800320 new_blob = NULL;
Jeff Kingc602d3a2017-10-09 13:48:52 -0400321 size = 0;
322 } else {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800323 new_blob = read_blob_entry(ce, &size);
324 if (!new_blob)
Jeff Kingc602d3a2017-10-09 13:48:52 -0400325 return error("unable to read sha1 file of %s (%s)",
Matheus Tavares9334ea82021-02-16 11:06:51 -0300326 ce->name, oid_to_hex(&ce->oid));
Kjetil Barvik4857c762009-02-09 21:54:50 +0100327 }
328
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700329 /*
330 * Convert from git internal format to working tree format
331 */
Jeff King7cbbf9d2017-10-09 13:50:05 -0400332 if (dco && dco->state != CE_NO_DELAY) {
Matheus Tavares30419e72021-03-23 11:19:35 -0300333 ret = async_convert_to_working_tree_ca(ca, ce->name,
334 new_blob, size,
335 &buf, &meta, dco);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400336 if (ret && string_list_has_string(&dco->paths, ce->name)) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800337 free(new_blob);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400338 goto delayed;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200339 }
Matheus Tavares30419e72021-03-23 11:19:35 -0300340 } else {
341 ret = convert_to_working_tree_ca(ca, ce->name, new_blob,
342 size, &buf, &meta);
343 }
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700344
Jeff King7cbbf9d2017-10-09 13:50:05 -0400345 if (ret) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800346 free(new_blob);
347 new_blob = strbuf_detach(&buf, &newsize);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400348 size = newsize;
349 }
350 /*
351 * No "else" here as errors from convert are OK at this
352 * point. If the error would have been fatal (e.g.
353 * filter is required), then we would have died already.
354 */
355
356 write_file_entry:
Junio C Hamanofd5db552011-05-12 21:36:42 -0700357 fd = open_output_fd(path, ce, to_tempfile);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700358 if (fd < 0) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800359 free(new_blob);
Nguyễn Thái Ngọc Duye1ebb3c2016-05-08 16:47:44 +0700360 return error_errno("unable to create file %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700361 }
Linus Torvalds6c510be2007-02-13 11:07:23 -0800362
Brandon Williamsd8f71802018-02-14 10:59:41 -0800363 wrote = write_in_full(fd, new_blob, size);
Junio C Hamanofd5db552011-05-12 21:36:42 -0700364 if (!to_tempfile)
Matheus Tavares49cfd902021-03-23 11:19:33 -0300365 fstat_done = fstat_checkout_output(fd, state, &st);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700366 close(fd);
Brandon Williamsd8f71802018-02-14 10:59:41 -0800367 free(new_blob);
Jeff King564bde92017-09-13 13:16:28 -0400368 if (wrote < 0)
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700369 return error("unable to write file %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700370 break;
Jeff King7cbbf9d2017-10-09 13:50:05 -0400371
Martin Waitz302b9282007-05-21 22:08:28 +0200372 case S_IFGITLINK:
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700373 if (to_tempfile)
Matheus Tavares9334ea82021-02-16 11:06:51 -0300374 return error("cannot create temporary submodule %s", ce->name);
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700375 if (mkdir(path, 0777) < 0)
Thomas Rast42063f92013-07-18 14:26:55 +0200376 return error("cannot create submodule directory %s", path);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700377 sub = submodule_from_ce(ce);
378 if (sub)
379 return submodule_move_head(ce->name,
Stefan Bellercd279e22017-04-18 14:37:22 -0700380 NULL, oid_to_hex(&ce->oid),
381 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700382 break;
Jeff King7cbbf9d2017-10-09 13:50:05 -0400383
Linus Torvalds12dccc12005-06-05 21:59:54 -0700384 default:
Matheus Tavares9334ea82021-02-16 11:06:51 -0300385 return error("unknown file mode for %s in index", ce->name);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700386 }
387
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700388finish:
Linus Torvalds6ee67f22005-06-05 23:15:40 -0700389 if (state->refresh_cache) {
Matheus Tavares584a0d12021-03-23 11:19:34 -0300390 if (!fstat_done && lstat(ce->name, &st) < 0)
391 return error_errno("unable to stat just-written file %s",
392 ce->name);
393 update_ce_after_write(state, ce , &st);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700394 }
Lars Schneider03b95332017-10-05 12:44:06 +0200395delayed:
Linus Torvalds12dccc12005-06-05 21:59:54 -0700396 return 0;
397}
398
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700399/*
400 * This is like 'lstat()', except it refuses to follow symlinks
Junio C Hamanoda02ca52009-08-16 23:53:12 -0700401 * in the path, after skipping "skiplen".
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700402 */
Junio C Hamano61b97df2010-01-11 22:27:31 -0800403static int check_path(const char *path, int len, struct stat *st, int skiplen)
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700404{
Junio C Hamanoda02ca52009-08-16 23:53:12 -0700405 const char *slash = path + len;
406
407 while (path < slash && *slash != '/')
408 slash--;
409 if (!has_dirs_only_path(path, slash - path, skiplen)) {
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700410 errno = ENOENT;
411 return -1;
412 }
413 return lstat(path, st);
414}
415
Duy Nguyenb8785792018-08-17 20:00:39 +0200416static void mark_colliding_entries(const struct checkout *state,
417 struct cache_entry *ce, struct stat *st)
418{
419 int i, trust_ino = check_stat;
420
Nguyễn Thái Ngọc Duye66ceca2018-11-20 17:28:53 +0100421#if defined(GIT_WINDOWS_NATIVE) || defined(__CYGWIN__)
Duy Nguyenb8785792018-08-17 20:00:39 +0200422 trust_ino = 0;
423#endif
424
425 ce->ce_flags |= CE_MATCHED;
426
Derrick Stolee3450a302021-04-01 01:49:55 +0000427 /* TODO: audit for interaction with sparse-index. */
428 ensure_full_index(state->istate);
Duy Nguyenb8785792018-08-17 20:00:39 +0200429 for (i = 0; i < state->istate->cache_nr; i++) {
430 struct cache_entry *dup = state->istate->cache[i];
431
Matheus Tavares04155bd2021-04-18 21:14:53 -0300432 if (dup == ce) {
433 /*
434 * Parallel checkout doesn't create the files in index
435 * order. So the other side of the collision may appear
436 * after the given cache_entry in the array.
437 */
438 if (parallel_checkout_status() == PC_RUNNING)
439 continue;
440 else
441 break;
442 }
Duy Nguyenb8785792018-08-17 20:00:39 +0200443
444 if (dup->ce_flags & (CE_MATCHED | CE_VALID | CE_SKIP_WORKTREE))
445 continue;
446
Nguyễn Thái Ngọc Duye66ceca2018-11-20 17:28:53 +0100447 if ((trust_ino && !match_stat_data(&dup->ce_stat_data, st)) ||
Duy Nguyenb8785792018-08-17 20:00:39 +0200448 (!trust_ino && !fspathcmp(ce->name, dup->name))) {
449 dup->ce_flags |= CE_MATCHED;
450 break;
451 }
452 }
453}
454
Matheus Tavaresae227512021-03-23 11:19:36 -0300455int checkout_entry_ca(struct cache_entry *ce, struct conv_attrs *ca,
456 const struct checkout *state, char *topath,
457 int *nr_checkouts)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700458{
Michael Haggertyf63272a2014-03-13 10:19:07 +0100459 static struct strbuf path = STRBUF_INIT;
Shawn Pearcede84f992006-03-05 03:24:15 -0500460 struct stat st;
Matheus Tavaresae227512021-03-23 11:19:36 -0300461 struct conv_attrs ca_buf;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700462
Thomas Gummerer536ec182018-12-20 13:48:15 +0000463 if (ce->ce_flags & CE_WT_REMOVE) {
464 if (topath)
465 /*
466 * No content and thus no path to create, so we have
467 * no pathname to return.
468 */
469 BUG("Can't remove entry to a path");
470 unlink_entry(ce);
471 return 0;
472 }
473
Matheus Tavares30419e72021-03-23 11:19:35 -0300474 if (topath) {
Matheus Tavaresae227512021-03-23 11:19:36 -0300475 if (S_ISREG(ce->ce_mode) && !ca) {
Matheus Tavares30419e72021-03-23 11:19:35 -0300476 convert_attrs(state->istate, &ca_buf, ce->name);
477 ca = &ca_buf;
478 }
479 return write_entry(ce, topath, ca, state, 1);
480 }
Shawn Pearcede84f992006-03-05 03:24:15 -0500481
Michael Haggertyf63272a2014-03-13 10:19:07 +0100482 strbuf_reset(&path);
483 strbuf_add(&path, state->base_dir, state->base_dir_len);
484 strbuf_add(&path, ce->name, ce_namelen(ce));
Linus Torvalds12dccc12005-06-05 21:59:54 -0700485
Michael Haggertyf63272a2014-03-13 10:19:07 +0100486 if (!check_path(path.buf, path.len, &st, state->base_dir_len)) {
Stefan Beller6d14eac2017-03-14 14:46:40 -0700487 const struct submodule *sub;
Nguyễn Thái Ngọc Duy74cfc0e2018-08-13 18:14:32 +0200488 unsigned changed = ie_match_stat(state->istate, ce, &st,
489 CE_MATCH_IGNORE_VALID | CE_MATCH_IGNORE_SKIP_WORKTREE);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700490 /*
491 * Needs to be checked before !changed returns early,
492 * as the possibly empty directory was not changed
493 */
494 sub = submodule_from_ce(ce);
495 if (sub) {
496 int err;
497 if (!is_submodule_populated_gently(ce->name, &err)) {
498 struct stat sb;
499 if (lstat(ce->name, &sb))
500 die(_("could not stat file '%s'"), ce->name);
501 if (!(st.st_mode & S_IFDIR))
502 unlink_or_warn(ce->name);
503
504 return submodule_move_head(ce->name,
Stefan Bellercd279e22017-04-18 14:37:22 -0700505 NULL, oid_to_hex(&ce->oid), 0);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700506 } else
507 return submodule_move_head(ce->name,
508 "HEAD", oid_to_hex(&ce->oid),
Stefan Bellercd279e22017-04-18 14:37:22 -0700509 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700510 }
511
Linus Torvalds12dccc12005-06-05 21:59:54 -0700512 if (!changed)
513 return 0;
514 if (!state->force) {
515 if (!state->quiet)
Michael Haggertyf63272a2014-03-13 10:19:07 +0100516 fprintf(stderr,
517 "%s already exists, no checkout\n",
518 path.buf);
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700519 return -1;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700520 }
521
Duy Nguyenb8785792018-08-17 20:00:39 +0200522 if (state->clone)
523 mark_colliding_entries(state, ce, &st);
524
Linus Torvalds12dccc12005-06-05 21:59:54 -0700525 /*
526 * We unlink the old file, to get the new one with the
527 * right permissions (including umask, which is nasty
528 * to emulate by hand - much easier to let the system
529 * just do the right thing)
530 */
Linus Torvaldsd48a72f2005-07-14 09:58:45 -0700531 if (S_ISDIR(st.st_mode)) {
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700532 /* If it is a gitlink, leave it alone! */
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800533 if (S_ISGITLINK(ce->ce_mode))
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700534 return 0;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +0100535 remove_subtree(&path);
Michael Haggertyf63272a2014-03-13 10:19:07 +0100536 } else if (unlink(path.buf))
Nguyễn Thái Ngọc Duye1ebb3c2016-05-08 16:47:44 +0700537 return error_errno("unable to unlink old '%s'", path.buf);
Shawn Pearcede84f992006-03-05 03:24:15 -0500538 } else if (state->not_new)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700539 return 0;
Michael Haggertyf63272a2014-03-13 10:19:07 +0100540
541 create_directories(path.buf, path.len, state);
Matheus Tavares30419e72021-03-23 11:19:35 -0300542
Nguyễn Thái Ngọc Duy0f086e62018-11-13 19:28:00 +0100543 if (nr_checkouts)
544 (*nr_checkouts)++;
Matheus Tavares30419e72021-03-23 11:19:35 -0300545
Matheus Tavaresae227512021-03-23 11:19:36 -0300546 if (S_ISREG(ce->ce_mode) && !ca) {
Matheus Tavares30419e72021-03-23 11:19:35 -0300547 convert_attrs(state->istate, &ca_buf, ce->name);
548 ca = &ca_buf;
549 }
550
Matheus Tavares04155bd2021-04-18 21:14:53 -0300551 if (!enqueue_checkout(ce, ca))
552 return 0;
553
Matheus Tavares30419e72021-03-23 11:19:35 -0300554 return write_entry(ce, path.buf, ca, state, 0);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700555}
Thomas Gummererb702dd12018-12-20 13:48:14 +0000556
557void unlink_entry(const struct cache_entry *ce)
558{
559 const struct submodule *sub = submodule_from_ce(ce);
560 if (sub) {
561 /* state.force is set at the caller. */
562 submodule_move_head(ce->name, "HEAD", NULL,
563 SUBMODULE_MOVE_HEAD_FORCE);
564 }
Matheus Tavaresfab78a02021-03-18 15:43:47 -0300565 if (check_leading_path(ce->name, ce_namelen(ce), 1) >= 0)
Thomas Gummererb702dd12018-12-20 13:48:14 +0000566 return;
567 if (remove_or_warn(ce->ce_mode, ce->name))
568 return;
569 schedule_dir_for_removal(ce->name, ce_namelen(ce));
570}