blob: 53380bb614c19e82edfb45049f1703b4a3b9c8a3 [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"
Linus Torvalds12dccc12005-06-05 21:59:54 -07009
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010010static void create_directories(const char *path, int path_len,
11 const struct checkout *state)
Linus Torvalds12dccc12005-06-05 21:59:54 -070012{
Jeff King3733e692016-02-22 17:44:28 -050013 char *buf = xmallocz(path_len);
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010014 int len = 0;
Linus Torvalds12dccc12005-06-05 21:59:54 -070015
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010016 while (len < path_len) {
17 do {
18 buf[len] = path[len];
19 len++;
20 } while (len < path_len && path[len] != '/');
21 if (len >= path_len)
22 break;
Linus Torvalds12dccc12005-06-05 21:59:54 -070023 buf[len] = 0;
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070024
Kjetil Barvikbad4a542009-01-18 16:14:52 +010025 /*
26 * For 'checkout-index --prefix=<dir>', <dir> is
27 * allowed to be a symlink to an existing directory,
28 * and we set 'state->base_dir_len' below, such that
29 * we test the path components of the prefix with the
30 * stat() function instead of the lstat() function.
31 */
Kjetil Barvik57199892009-02-09 21:54:06 +010032 if (has_dirs_only_path(buf, len, state->base_dir_len))
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070033 continue; /* ok, it is already a directory. */
34
35 /*
Kjetil Barvikbad4a542009-01-18 16:14:52 +010036 * If this mkdir() would fail, it could be that there
37 * is already a symlink or something else exists
38 * there, therefore we then try to unlink it and try
39 * one more time to create the directory.
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070040 */
Junio C Hamanof312de02005-07-06 01:21:46 -070041 if (mkdir(buf, 0777)) {
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070042 if (errno == EEXIST && state->force &&
Alex Riesen691f1a22009-04-29 23:22:56 +020043 !unlink_or_warn(buf) && !mkdir(buf, 0777))
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070044 continue;
Thomas Rast0721c312009-06-27 17:58:47 +020045 die_errno("cannot create directory at '%s'", buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070046 }
47 }
48 free(buf);
49}
50
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010051static void remove_subtree(struct strbuf *path)
Linus Torvalds12dccc12005-06-05 21:59:54 -070052{
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010053 DIR *dir = opendir(path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070054 struct dirent *de;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010055 int origlen = path->len;
Junio C Hamanoa6080a02007-06-07 00:04:01 -070056
Linus Torvalds12dccc12005-06-05 21:59:54 -070057 if (!dir)
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010058 die_errno("cannot opendir '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070059 while ((de = readdir(dir)) != NULL) {
60 struct stat st;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010061
Alexander Potashev8ca12c02009-01-10 15:07:50 +030062 if (is_dot_or_dotdot(de->d_name))
Linus Torvalds12dccc12005-06-05 21:59:54 -070063 continue;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010064
65 strbuf_addch(path, '/');
66 strbuf_addstr(path, de->d_name);
67 if (lstat(path->buf, &st))
68 die_errno("cannot lstat '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070069 if (S_ISDIR(st.st_mode))
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010070 remove_subtree(path);
71 else if (unlink(path->buf))
72 die_errno("cannot unlink '%s'", path->buf);
73 strbuf_setlen(path, origlen);
Linus Torvalds12dccc12005-06-05 21:59:54 -070074 }
75 closedir(dir);
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010076 if (rmdir(path->buf))
77 die_errno("cannot rmdir '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070078}
79
Linus Torvaldsd48a72f2005-07-14 09:58:45 -070080static int create_file(const char *path, unsigned int mode)
Linus Torvalds12dccc12005-06-05 21:59:54 -070081{
Linus Torvalds12dccc12005-06-05 21:59:54 -070082 mode = (mode & 0100) ? 0777 : 0666;
Alex Riesen781411e2006-01-05 09:58:06 +010083 return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
Linus Torvalds12dccc12005-06-05 21:59:54 -070084}
85
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +070086static void *read_blob_entry(const struct cache_entry *ce, unsigned long *size)
Linus Torvaldsf0807e62007-04-13 09:26:04 -070087{
88 enum object_type type;
brian m. carlsonb4f5aca2018-03-12 02:27:53 +000089 void *blob_data = read_object_file(&ce->oid, &type, size);
Linus Torvaldsf0807e62007-04-13 09:26:04 -070090
Brandon Williamsd8f71802018-02-14 10:59:41 -080091 if (blob_data) {
Linus Torvaldsf0807e62007-04-13 09:26:04 -070092 if (type == OBJ_BLOB)
Brandon Williamsd8f71802018-02-14 10:59:41 -080093 return blob_data;
94 free(blob_data);
Linus Torvaldsf0807e62007-04-13 09:26:04 -070095 }
96 return NULL;
97}
98
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +070099static int open_output_fd(char *path, const struct cache_entry *ce, int to_tempfile)
Junio C Hamanofd5db552011-05-12 21:36:42 -0700100{
101 int symlink = (ce->ce_mode & S_IFMT) != S_IFREG;
102 if (to_tempfile) {
Jeff King330c8e22015-09-24 17:06:53 -0400103 xsnprintf(path, TEMPORARY_FILENAME_LENGTH, "%s",
104 symlink ? ".merge_link_XXXXXX" : ".merge_file_XXXXXX");
Junio C Hamanofd5db552011-05-12 21:36:42 -0700105 return mkstemp(path);
106 } else {
107 return create_file(path, !symlink ? ce->ce_mode : 0666);
108 }
109}
110
111static int fstat_output(int fd, const struct checkout *state, struct stat *st)
112{
113 /* use fstat() only when path == ce->name */
114 if (fstat_is_reliable() &&
115 state->refresh_cache && !state->base_dir_len) {
116 fstat(fd, st);
117 return 1;
118 }
119 return 0;
120}
121
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700122static int streaming_write_entry(const struct cache_entry *ce, char *path,
Junio C Hamanob6691092011-05-20 14:33:31 -0700123 struct stream_filter *filter,
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700124 const struct checkout *state, int to_tempfile,
125 int *fstat_done, struct stat *statbuf)
126{
Jeff Kingd9c31e12013-03-25 17:49:36 -0400127 int result = 0;
Junio C Hamano47a02ff2012-03-07 17:54:15 +0700128 int fd;
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700129
130 fd = open_output_fd(path, ce, to_tempfile);
Jeff Kingd9c31e12013-03-25 17:49:36 -0400131 if (fd < 0)
132 return -1;
133
brian m. carlson7eda0e42016-09-05 20:07:59 +0000134 result |= stream_blob_to_fd(fd, &ce->oid, filter, 1);
Jeff Kingd9c31e12013-03-25 17:49:36 -0400135 *fstat_done = fstat_output(fd, state, statbuf);
136 result |= close(fd);
137
138 if (result)
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700139 unlink(path);
140 return result;
141}
142
Lars Schneider2841e8f2017-06-30 22:41:28 +0200143void enable_delayed_checkout(struct checkout *state)
144{
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(&state->delayed_checkout->filters, 0);
149 string_list_init(&state->delayed_checkout->paths, 0);
150 }
151}
152
153static int remove_available_paths(struct string_list_item *item, void *cb_data)
154{
155 struct string_list *available_paths = cb_data;
156 struct string_list_item *available;
157
158 available = string_list_lookup(available_paths, item->string);
159 if (available)
160 available->util = (void *)item->string;
161 return !available;
162}
163
Nguyễn Thái Ngọc Duy0f086e62018-11-13 19:28:00 +0100164int finish_delayed_checkout(struct checkout *state, int *nr_checkouts)
Lars Schneider2841e8f2017-06-30 22:41:28 +0200165{
166 int errs = 0;
Lars Schneider52f1d622017-08-20 17:47:20 +0200167 unsigned delayed_object_count;
168 off_t filtered_bytes = 0;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200169 struct string_list_item *filter, *path;
Lars Schneider52f1d622017-08-20 17:47:20 +0200170 struct progress *progress;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200171 struct delayed_checkout *dco = state->delayed_checkout;
172
173 if (!state->delayed_checkout)
174 return errs;
175
176 dco->state = CE_RETRY;
Lars Schneider52f1d622017-08-20 17:47:20 +0200177 delayed_object_count = dco->paths.nr;
Junio C Hamano7fbbd3e2017-09-10 17:08:22 +0900178 progress = start_delayed_progress(_("Filtering content"), delayed_object_count);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200179 while (dco->filters.nr > 0) {
180 for_each_string_list_item(filter, &dco->filters) {
181 struct string_list available_paths = STRING_LIST_INIT_NODUP;
Lars Schneider52f1d622017-08-20 17:47:20 +0200182 display_progress(progress, delayed_object_count - dco->paths.nr);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200183
184 if (!async_query_available_blobs(filter->string, &available_paths)) {
185 /* Filter reported an error */
186 errs = 1;
187 filter->string = "";
188 continue;
189 }
190 if (available_paths.nr <= 0) {
191 /*
192 * Filter responded with no entries. That means
193 * the filter is done and we can remove the
194 * filter from the list (see
195 * "string_list_remove_empty_items" call below).
196 */
197 filter->string = "";
198 continue;
199 }
200
201 /*
202 * In dco->paths we store a list of all delayed paths.
203 * The filter just send us a list of available paths.
204 * Remove them from the list.
205 */
206 filter_string_list(&dco->paths, 0,
207 &remove_available_paths, &available_paths);
208
209 for_each_string_list_item(path, &available_paths) {
210 struct cache_entry* ce;
211
212 if (!path->util) {
213 error("external filter '%s' signaled that '%s' "
214 "is now available although it has not been "
215 "delayed earlier",
216 filter->string, path->string);
217 errs |= 1;
218
219 /*
220 * Do not ask the filter for available blobs,
221 * again, as the filter is likely buggy.
222 */
223 filter->string = "";
224 continue;
225 }
226 ce = index_file_exists(state->istate, path->string,
227 strlen(path->string), 0);
Lars Schneider52f1d622017-08-20 17:47:20 +0200228 if (ce) {
Nguyễn Thái Ngọc Duy0f086e62018-11-13 19:28:00 +0100229 errs |= checkout_entry(ce, state, NULL, nr_checkouts);
Lars Schneider52f1d622017-08-20 17:47:20 +0200230 filtered_bytes += ce->ce_stat_data.sd_size;
231 display_throughput(progress, filtered_bytes);
232 } else
233 errs = 1;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200234 }
235 }
236 string_list_remove_empty_items(&dco->filters, 0);
237 }
Lars Schneider52f1d622017-08-20 17:47:20 +0200238 stop_progress(&progress);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200239 string_list_clear(&dco->filters, 0);
240
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);
245 }
246 string_list_clear(&dco->paths, 0);
247
248 free(dco);
249 state->delayed_checkout = NULL;
250
251 return errs;
252}
253
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700254static int write_entry(struct cache_entry *ce,
255 char *path, const struct checkout *state, int to_tempfile)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700256{
Kjetil Barvik4857c762009-02-09 21:54:50 +0100257 unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
Jeff Kingc602d3a2017-10-09 13:48:52 -0400258 struct delayed_checkout *dco = state->delayed_checkout;
Kjetil Barvike4c72922009-02-09 21:54:51 +0100259 int fd, ret, fstat_done = 0;
Brandon Williamsd8f71802018-02-14 10:59:41 -0800260 char *new_blob;
Kjetil Barvik4857c762009-02-09 21:54:50 +0100261 struct strbuf buf = STRBUF_INIT;
262 unsigned long size;
Jeff King564bde92017-09-13 13:16:28 -0400263 ssize_t wrote;
264 size_t newsize = 0;
Kjetil Barvike4c72922009-02-09 21:54:51 +0100265 struct stat st;
Stefan Beller6d14eac2017-03-14 14:46:40 -0700266 const struct submodule *sub;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700267
Junio C Hamanob6691092011-05-20 14:33:31 -0700268 if (ce_mode_s_ifmt == S_IFREG) {
Nguyễn Thái Ngọc Duy74cfc0e2018-08-13 18:14:32 +0200269 struct stream_filter *filter = get_stream_filter(state->istate, ce->name,
brian m. carlson1a750442018-03-12 02:27:56 +0000270 &ce->oid);
Junio C Hamanob6691092011-05-20 14:33:31 -0700271 if (filter &&
272 !streaming_write_entry(ce, path, filter,
273 state, to_tempfile,
274 &fstat_done, &st))
275 goto finish;
276 }
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700277
Kjetil Barvik4857c762009-02-09 21:54:50 +0100278 switch (ce_mode_s_ifmt) {
Kjetil Barvik4857c762009-02-09 21:54:50 +0100279 case S_IFLNK:
Brandon Williamsd8f71802018-02-14 10:59:41 -0800280 new_blob = read_blob_entry(ce, &size);
281 if (!new_blob)
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700282 return error("unable to read sha1 file of %s (%s)",
Jeff King7cbbf9d2017-10-09 13:50:05 -0400283 path, oid_to_hex(&ce->oid));
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700284
Jeff King7cbbf9d2017-10-09 13:50:05 -0400285 /*
286 * We can't make a real symlink; write out a regular file entry
287 * with the symlink destination as its contents.
288 */
289 if (!has_symlinks || to_tempfile)
290 goto write_file_entry;
291
Brandon Williamsd8f71802018-02-14 10:59:41 -0800292 ret = symlink(new_blob, path);
293 free(new_blob);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400294 if (ret)
295 return error_errno("unable to create symlink %s", path);
296 break;
297
298 case S_IFREG:
Jeff Kingc602d3a2017-10-09 13:48:52 -0400299 /*
300 * We do not send the blob in case of a retry, so do not
301 * bother reading it at all.
302 */
Jeff King7cbbf9d2017-10-09 13:50:05 -0400303 if (dco && dco->state == CE_RETRY) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800304 new_blob = NULL;
Jeff Kingc602d3a2017-10-09 13:48:52 -0400305 size = 0;
306 } else {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800307 new_blob = read_blob_entry(ce, &size);
308 if (!new_blob)
Jeff Kingc602d3a2017-10-09 13:48:52 -0400309 return error("unable to read sha1 file of %s (%s)",
310 path, oid_to_hex(&ce->oid));
Kjetil Barvik4857c762009-02-09 21:54:50 +0100311 }
312
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700313 /*
314 * Convert from git internal format to working tree format
315 */
Jeff King7cbbf9d2017-10-09 13:50:05 -0400316 if (dco && dco->state != CE_NO_DELAY) {
Nguyễn Thái Ngọc Duy74cfc0e2018-08-13 18:14:32 +0200317 ret = async_convert_to_working_tree(state->istate, ce->name, new_blob,
Jeff King7cbbf9d2017-10-09 13:50:05 -0400318 size, &buf, dco);
319 if (ret && string_list_has_string(&dco->paths, ce->name)) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800320 free(new_blob);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400321 goto delayed;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200322 }
Jeff King7cbbf9d2017-10-09 13:50:05 -0400323 } else
Nguyễn Thái Ngọc Duy74cfc0e2018-08-13 18:14:32 +0200324 ret = convert_to_working_tree(state->istate, ce->name, new_blob, size, &buf);
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700325
Jeff King7cbbf9d2017-10-09 13:50:05 -0400326 if (ret) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800327 free(new_blob);
328 new_blob = strbuf_detach(&buf, &newsize);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400329 size = newsize;
330 }
331 /*
332 * No "else" here as errors from convert are OK at this
333 * point. If the error would have been fatal (e.g.
334 * filter is required), then we would have died already.
335 */
336
337 write_file_entry:
Junio C Hamanofd5db552011-05-12 21:36:42 -0700338 fd = open_output_fd(path, ce, to_tempfile);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700339 if (fd < 0) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800340 free(new_blob);
Nguyễn Thái Ngọc Duye1ebb3c2016-05-08 16:47:44 +0700341 return error_errno("unable to create file %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700342 }
Linus Torvalds6c510be2007-02-13 11:07:23 -0800343
Brandon Williamsd8f71802018-02-14 10:59:41 -0800344 wrote = write_in_full(fd, new_blob, size);
Junio C Hamanofd5db552011-05-12 21:36:42 -0700345 if (!to_tempfile)
346 fstat_done = fstat_output(fd, state, &st);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700347 close(fd);
Brandon Williamsd8f71802018-02-14 10:59:41 -0800348 free(new_blob);
Jeff King564bde92017-09-13 13:16:28 -0400349 if (wrote < 0)
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700350 return error("unable to write file %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700351 break;
Jeff King7cbbf9d2017-10-09 13:50:05 -0400352
Martin Waitz302b9282007-05-21 22:08:28 +0200353 case S_IFGITLINK:
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700354 if (to_tempfile)
Thomas Rast42063f92013-07-18 14:26:55 +0200355 return error("cannot create temporary submodule %s", path);
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700356 if (mkdir(path, 0777) < 0)
Thomas Rast42063f92013-07-18 14:26:55 +0200357 return error("cannot create submodule directory %s", path);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700358 sub = submodule_from_ce(ce);
359 if (sub)
360 return submodule_move_head(ce->name,
Stefan Bellercd279e22017-04-18 14:37:22 -0700361 NULL, oid_to_hex(&ce->oid),
362 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700363 break;
Jeff King7cbbf9d2017-10-09 13:50:05 -0400364
Linus Torvalds12dccc12005-06-05 21:59:54 -0700365 default:
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700366 return error("unknown file mode for %s in index", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700367 }
368
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700369finish:
Linus Torvalds6ee67f22005-06-05 23:15:40 -0700370 if (state->refresh_cache) {
Nguyễn Thái Ngọc Duyd4a20242014-06-13 19:19:34 +0700371 assert(state->istate);
Kjetil Barvike4c72922009-02-09 21:54:51 +0100372 if (!fstat_done)
Lars Schneider11179eb2017-10-05 12:44:07 +0200373 if (lstat(ce->name, &st) < 0)
374 return error_errno("unable to stat just-written file %s",
375 ce->name);
Johannes Schindelind4c0a3a2019-05-24 05:23:47 -0700376 fill_stat_cache_info(state->istate, ce, &st);
Nguyễn Thái Ngọc Duy078a58e2014-06-13 19:19:39 +0700377 ce->ce_flags |= CE_UPDATE_IN_BASE;
Ben Peart883e2482017-09-22 12:35:40 -0400378 mark_fsmonitor_invalid(state->istate, ce);
Nguyễn Thái Ngọc Duyd4a20242014-06-13 19:19:34 +0700379 state->istate->cache_changed |= CE_ENTRY_CHANGED;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700380 }
Lars Schneider03b95332017-10-05 12:44:06 +0200381delayed:
Linus Torvalds12dccc12005-06-05 21:59:54 -0700382 return 0;
383}
384
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700385/*
386 * This is like 'lstat()', except it refuses to follow symlinks
Junio C Hamanoda02ca52009-08-16 23:53:12 -0700387 * in the path, after skipping "skiplen".
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700388 */
Junio C Hamano61b97df2010-01-11 22:27:31 -0800389static int check_path(const char *path, int len, struct stat *st, int skiplen)
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700390{
Junio C Hamanoda02ca52009-08-16 23:53:12 -0700391 const char *slash = path + len;
392
393 while (path < slash && *slash != '/')
394 slash--;
395 if (!has_dirs_only_path(path, slash - path, skiplen)) {
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700396 errno = ENOENT;
397 return -1;
398 }
399 return lstat(path, st);
400}
401
Duy Nguyenb8785792018-08-17 20:00:39 +0200402static void mark_colliding_entries(const struct checkout *state,
403 struct cache_entry *ce, struct stat *st)
404{
405 int i, trust_ino = check_stat;
406
Nguyễn Thái Ngọc Duye66ceca2018-11-20 17:28:53 +0100407#if defined(GIT_WINDOWS_NATIVE) || defined(__CYGWIN__)
Duy Nguyenb8785792018-08-17 20:00:39 +0200408 trust_ino = 0;
409#endif
410
411 ce->ce_flags |= CE_MATCHED;
412
413 for (i = 0; i < state->istate->cache_nr; i++) {
414 struct cache_entry *dup = state->istate->cache[i];
415
416 if (dup == ce)
417 break;
418
419 if (dup->ce_flags & (CE_MATCHED | CE_VALID | CE_SKIP_WORKTREE))
420 continue;
421
Nguyễn Thái Ngọc Duye66ceca2018-11-20 17:28:53 +0100422 if ((trust_ino && !match_stat_data(&dup->ce_stat_data, st)) ||
Duy Nguyenb8785792018-08-17 20:00:39 +0200423 (!trust_ino && !fspathcmp(ce->name, dup->name))) {
424 dup->ce_flags |= CE_MATCHED;
425 break;
426 }
427 }
428}
429
Junio C Hamanoaf2a6512013-10-23 10:52:42 -0700430/*
431 * Write the contents from ce out to the working tree.
432 *
433 * When topath[] is not NULL, instead of writing to the working tree
434 * file named by ce, a temporary file is created by this function and
435 * its name is returned in topath[], which must be able to hold at
436 * least TEMPORARY_FILENAME_LENGTH bytes long.
437 */
Nguyễn Thái Ngọc Duy0f086e62018-11-13 19:28:00 +0100438int checkout_entry(struct cache_entry *ce, const struct checkout *state,
439 char *topath, int *nr_checkouts)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700440{
Michael Haggertyf63272a2014-03-13 10:19:07 +0100441 static struct strbuf path = STRBUF_INIT;
Shawn Pearcede84f992006-03-05 03:24:15 -0500442 struct stat st;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700443
Thomas Gummerer536ec182018-12-20 13:48:15 +0000444 if (ce->ce_flags & CE_WT_REMOVE) {
445 if (topath)
446 /*
447 * No content and thus no path to create, so we have
448 * no pathname to return.
449 */
450 BUG("Can't remove entry to a path");
451 unlink_entry(ce);
452 return 0;
453 }
454
Shawn Pearcede84f992006-03-05 03:24:15 -0500455 if (topath)
456 return write_entry(ce, topath, state, 1);
457
Michael Haggertyf63272a2014-03-13 10:19:07 +0100458 strbuf_reset(&path);
459 strbuf_add(&path, state->base_dir, state->base_dir_len);
460 strbuf_add(&path, ce->name, ce_namelen(ce));
Linus Torvalds12dccc12005-06-05 21:59:54 -0700461
Michael Haggertyf63272a2014-03-13 10:19:07 +0100462 if (!check_path(path.buf, path.len, &st, state->base_dir_len)) {
Stefan Beller6d14eac2017-03-14 14:46:40 -0700463 const struct submodule *sub;
Nguyễn Thái Ngọc Duy74cfc0e2018-08-13 18:14:32 +0200464 unsigned changed = ie_match_stat(state->istate, ce, &st,
465 CE_MATCH_IGNORE_VALID | CE_MATCH_IGNORE_SKIP_WORKTREE);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700466 /*
467 * Needs to be checked before !changed returns early,
468 * as the possibly empty directory was not changed
469 */
470 sub = submodule_from_ce(ce);
471 if (sub) {
472 int err;
473 if (!is_submodule_populated_gently(ce->name, &err)) {
474 struct stat sb;
475 if (lstat(ce->name, &sb))
476 die(_("could not stat file '%s'"), ce->name);
477 if (!(st.st_mode & S_IFDIR))
478 unlink_or_warn(ce->name);
479
480 return submodule_move_head(ce->name,
Stefan Bellercd279e22017-04-18 14:37:22 -0700481 NULL, oid_to_hex(&ce->oid), 0);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700482 } else
483 return submodule_move_head(ce->name,
484 "HEAD", oid_to_hex(&ce->oid),
Stefan Bellercd279e22017-04-18 14:37:22 -0700485 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700486 }
487
Linus Torvalds12dccc12005-06-05 21:59:54 -0700488 if (!changed)
489 return 0;
490 if (!state->force) {
491 if (!state->quiet)
Michael Haggertyf63272a2014-03-13 10:19:07 +0100492 fprintf(stderr,
493 "%s already exists, no checkout\n",
494 path.buf);
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700495 return -1;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700496 }
497
Duy Nguyenb8785792018-08-17 20:00:39 +0200498 if (state->clone)
499 mark_colliding_entries(state, ce, &st);
500
Linus Torvalds12dccc12005-06-05 21:59:54 -0700501 /*
502 * We unlink the old file, to get the new one with the
503 * right permissions (including umask, which is nasty
504 * to emulate by hand - much easier to let the system
505 * just do the right thing)
506 */
Linus Torvaldsd48a72f2005-07-14 09:58:45 -0700507 if (S_ISDIR(st.st_mode)) {
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700508 /* If it is a gitlink, leave it alone! */
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800509 if (S_ISGITLINK(ce->ce_mode))
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700510 return 0;
Linus Torvaldsd48a72f2005-07-14 09:58:45 -0700511 if (!state->force)
Michael Haggertyf63272a2014-03-13 10:19:07 +0100512 return error("%s is a directory", path.buf);
Michael Haggerty2f29e0c2014-03-13 10:19:08 +0100513 remove_subtree(&path);
Michael Haggertyf63272a2014-03-13 10:19:07 +0100514 } else if (unlink(path.buf))
Nguyễn Thái Ngọc Duye1ebb3c2016-05-08 16:47:44 +0700515 return error_errno("unable to unlink old '%s'", path.buf);
Shawn Pearcede84f992006-03-05 03:24:15 -0500516 } else if (state->not_new)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700517 return 0;
Michael Haggertyf63272a2014-03-13 10:19:07 +0100518
519 create_directories(path.buf, path.len, state);
Nguyễn Thái Ngọc Duy0f086e62018-11-13 19:28:00 +0100520 if (nr_checkouts)
521 (*nr_checkouts)++;
Michael Haggertyf63272a2014-03-13 10:19:07 +0100522 return write_entry(ce, path.buf, state, 0);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700523}
Thomas Gummererb702dd12018-12-20 13:48:14 +0000524
525void unlink_entry(const struct cache_entry *ce)
526{
527 const struct submodule *sub = submodule_from_ce(ce);
528 if (sub) {
529 /* state.force is set at the caller. */
530 submodule_move_head(ce->name, "HEAD", NULL,
531 SUBMODULE_MOVE_HEAD_FORCE);
532 }
533 if (!check_leading_path(ce->name, ce_namelen(ce)))
534 return;
535 if (remove_or_warn(ce->ce_mode, ce->name))
536 return;
537 schedule_dir_for_removal(ce->name, ce_namelen(ce));
538}