blob: 2101201a111785f449a65e785e9ed5b57b7aa196 [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"
Alexander Potashev8ca12c02009-01-10 15:07:50 +03003#include "dir.h"
Junio C Hamanodd8e9122011-05-12 14:31:08 -07004#include "streaming.h"
Stefan Beller6d14eac2017-03-14 14:46:40 -07005#include "submodule.h"
Lars Schneider52f1d622017-08-20 17:47:20 +02006#include "progress.h"
Ben Peart883e2482017-09-22 12:35:40 -04007#include "fsmonitor.h"
Linus Torvalds12dccc12005-06-05 21:59:54 -07008
Kjetil Barvik81a9aa62009-02-09 21:54:08 +01009static void create_directories(const char *path, int path_len,
10 const struct checkout *state)
Linus Torvalds12dccc12005-06-05 21:59:54 -070011{
Jeff King3733e692016-02-22 17:44:28 -050012 char *buf = xmallocz(path_len);
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010013 int len = 0;
Linus Torvalds12dccc12005-06-05 21:59:54 -070014
Kjetil Barvik81a9aa62009-02-09 21:54:08 +010015 while (len < path_len) {
16 do {
17 buf[len] = path[len];
18 len++;
19 } while (len < path_len && path[len] != '/');
20 if (len >= path_len)
21 break;
Linus Torvalds12dccc12005-06-05 21:59:54 -070022 buf[len] = 0;
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070023
Kjetil Barvikbad4a542009-01-18 16:14:52 +010024 /*
25 * For 'checkout-index --prefix=<dir>', <dir> is
26 * allowed to be a symlink to an existing directory,
27 * and we set 'state->base_dir_len' below, such that
28 * we test the path components of the prefix with the
29 * stat() function instead of the lstat() function.
30 */
Kjetil Barvik57199892009-02-09 21:54:06 +010031 if (has_dirs_only_path(buf, len, state->base_dir_len))
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070032 continue; /* ok, it is already a directory. */
33
34 /*
Kjetil Barvikbad4a542009-01-18 16:14:52 +010035 * If this mkdir() would fail, it could be that there
36 * is already a symlink or something else exists
37 * there, therefore we then try to unlink it and try
38 * one more time to create the directory.
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070039 */
Junio C Hamanof312de02005-07-06 01:21:46 -070040 if (mkdir(buf, 0777)) {
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070041 if (errno == EEXIST && state->force &&
Alex Riesen691f1a22009-04-29 23:22:56 +020042 !unlink_or_warn(buf) && !mkdir(buf, 0777))
Junio C Hamanofa2e71c2007-07-17 22:58:28 -070043 continue;
Thomas Rast0721c312009-06-27 17:58:47 +020044 die_errno("cannot create directory at '%s'", buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070045 }
46 }
47 free(buf);
48}
49
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010050static void remove_subtree(struct strbuf *path)
Linus Torvalds12dccc12005-06-05 21:59:54 -070051{
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010052 DIR *dir = opendir(path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070053 struct dirent *de;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010054 int origlen = path->len;
Junio C Hamanoa6080a02007-06-07 00:04:01 -070055
Linus Torvalds12dccc12005-06-05 21:59:54 -070056 if (!dir)
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010057 die_errno("cannot opendir '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070058 while ((de = readdir(dir)) != NULL) {
59 struct stat st;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010060
Alexander Potashev8ca12c02009-01-10 15:07:50 +030061 if (is_dot_or_dotdot(de->d_name))
Linus Torvalds12dccc12005-06-05 21:59:54 -070062 continue;
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010063
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);
Linus Torvalds12dccc12005-06-05 21:59:54 -070068 if (S_ISDIR(st.st_mode))
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010069 remove_subtree(path);
70 else if (unlink(path->buf))
71 die_errno("cannot unlink '%s'", path->buf);
72 strbuf_setlen(path, origlen);
Linus Torvalds12dccc12005-06-05 21:59:54 -070073 }
74 closedir(dir);
Michael Haggerty2f29e0c2014-03-13 10:19:08 +010075 if (rmdir(path->buf))
76 die_errno("cannot rmdir '%s'", path->buf);
Linus Torvalds12dccc12005-06-05 21:59:54 -070077}
78
Linus Torvaldsd48a72f2005-07-14 09:58:45 -070079static int create_file(const char *path, unsigned int mode)
Linus Torvalds12dccc12005-06-05 21:59:54 -070080{
Linus Torvalds12dccc12005-06-05 21:59:54 -070081 mode = (mode & 0100) ? 0777 : 0666;
Alex Riesen781411e2006-01-05 09:58:06 +010082 return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
Linus Torvalds12dccc12005-06-05 21:59:54 -070083}
84
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +070085static void *read_blob_entry(const struct cache_entry *ce, unsigned long *size)
Linus Torvaldsf0807e62007-04-13 09:26:04 -070086{
87 enum object_type type;
brian m. carlsonb4f5aca2018-03-12 02:27:53 +000088 void *blob_data = read_object_file(&ce->oid, &type, size);
Linus Torvaldsf0807e62007-04-13 09:26:04 -070089
Brandon Williamsd8f71802018-02-14 10:59:41 -080090 if (blob_data) {
Linus Torvaldsf0807e62007-04-13 09:26:04 -070091 if (type == OBJ_BLOB)
Brandon Williamsd8f71802018-02-14 10:59:41 -080092 return blob_data;
93 free(blob_data);
Linus Torvaldsf0807e62007-04-13 09:26:04 -070094 }
95 return NULL;
96}
97
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +070098static int open_output_fd(char *path, const struct cache_entry *ce, int to_tempfile)
Junio C Hamanofd5db552011-05-12 21:36:42 -070099{
100 int symlink = (ce->ce_mode & S_IFMT) != S_IFREG;
101 if (to_tempfile) {
Jeff King330c8e22015-09-24 17:06:53 -0400102 xsnprintf(path, TEMPORARY_FILENAME_LENGTH, "%s",
103 symlink ? ".merge_link_XXXXXX" : ".merge_file_XXXXXX");
Junio C Hamanofd5db552011-05-12 21:36:42 -0700104 return mkstemp(path);
105 } else {
106 return create_file(path, !symlink ? ce->ce_mode : 0666);
107 }
108}
109
110static int fstat_output(int fd, const struct checkout *state, struct stat *st)
111{
112 /* use fstat() only when path == ce->name */
113 if (fstat_is_reliable() &&
114 state->refresh_cache && !state->base_dir_len) {
115 fstat(fd, st);
116 return 1;
117 }
118 return 0;
119}
120
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700121static int streaming_write_entry(const struct cache_entry *ce, char *path,
Junio C Hamanob6691092011-05-20 14:33:31 -0700122 struct stream_filter *filter,
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700123 const struct checkout *state, int to_tempfile,
124 int *fstat_done, struct stat *statbuf)
125{
Jeff Kingd9c31e12013-03-25 17:49:36 -0400126 int result = 0;
Junio C Hamano47a02ff2012-03-07 17:54:15 +0700127 int fd;
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700128
129 fd = open_output_fd(path, ce, to_tempfile);
Jeff Kingd9c31e12013-03-25 17:49:36 -0400130 if (fd < 0)
131 return -1;
132
brian m. carlson7eda0e42016-09-05 20:07:59 +0000133 result |= stream_blob_to_fd(fd, &ce->oid, filter, 1);
Jeff Kingd9c31e12013-03-25 17:49:36 -0400134 *fstat_done = fstat_output(fd, state, statbuf);
135 result |= close(fd);
136
137 if (result)
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700138 unlink(path);
139 return result;
140}
141
Lars Schneider2841e8f2017-06-30 22:41:28 +0200142void enable_delayed_checkout(struct checkout *state)
143{
144 if (!state->delayed_checkout) {
145 state->delayed_checkout = xmalloc(sizeof(*state->delayed_checkout));
146 state->delayed_checkout->state = CE_CAN_DELAY;
147 string_list_init(&state->delayed_checkout->filters, 0);
148 string_list_init(&state->delayed_checkout->paths, 0);
149 }
150}
151
152static int remove_available_paths(struct string_list_item *item, void *cb_data)
153{
154 struct string_list *available_paths = cb_data;
155 struct string_list_item *available;
156
157 available = string_list_lookup(available_paths, item->string);
158 if (available)
159 available->util = (void *)item->string;
160 return !available;
161}
162
163int finish_delayed_checkout(struct checkout *state)
164{
165 int errs = 0;
Lars Schneider52f1d622017-08-20 17:47:20 +0200166 unsigned delayed_object_count;
167 off_t filtered_bytes = 0;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200168 struct string_list_item *filter, *path;
Lars Schneider52f1d622017-08-20 17:47:20 +0200169 struct progress *progress;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200170 struct delayed_checkout *dco = state->delayed_checkout;
171
172 if (!state->delayed_checkout)
173 return errs;
174
175 dco->state = CE_RETRY;
Lars Schneider52f1d622017-08-20 17:47:20 +0200176 delayed_object_count = dco->paths.nr;
Junio C Hamano7fbbd3e2017-09-10 17:08:22 +0900177 progress = start_delayed_progress(_("Filtering content"), delayed_object_count);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200178 while (dco->filters.nr > 0) {
179 for_each_string_list_item(filter, &dco->filters) {
180 struct string_list available_paths = STRING_LIST_INIT_NODUP;
Lars Schneider52f1d622017-08-20 17:47:20 +0200181 display_progress(progress, delayed_object_count - dco->paths.nr);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200182
183 if (!async_query_available_blobs(filter->string, &available_paths)) {
184 /* Filter reported an error */
185 errs = 1;
186 filter->string = "";
187 continue;
188 }
189 if (available_paths.nr <= 0) {
190 /*
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).
195 */
196 filter->string = "";
197 continue;
198 }
199
200 /*
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.
204 */
205 filter_string_list(&dco->paths, 0,
206 &remove_available_paths, &available_paths);
207
208 for_each_string_list_item(path, &available_paths) {
209 struct cache_entry* ce;
210
211 if (!path->util) {
212 error("external filter '%s' signaled that '%s' "
213 "is now available although it has not been "
214 "delayed earlier",
215 filter->string, path->string);
216 errs |= 1;
217
218 /*
219 * Do not ask the filter for available blobs,
220 * again, as the filter is likely buggy.
221 */
222 filter->string = "";
223 continue;
224 }
225 ce = index_file_exists(state->istate, path->string,
226 strlen(path->string), 0);
Lars Schneider52f1d622017-08-20 17:47:20 +0200227 if (ce) {
228 errs |= checkout_entry(ce, state, NULL);
229 filtered_bytes += ce->ce_stat_data.sd_size;
230 display_throughput(progress, filtered_bytes);
231 } else
232 errs = 1;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200233 }
234 }
235 string_list_remove_empty_items(&dco->filters, 0);
236 }
Lars Schneider52f1d622017-08-20 17:47:20 +0200237 stop_progress(&progress);
Lars Schneider2841e8f2017-06-30 22:41:28 +0200238 string_list_clear(&dco->filters, 0);
239
240 /* At this point we should not have any delayed paths anymore. */
241 errs |= dco->paths.nr;
242 for_each_string_list_item(path, &dco->paths) {
243 error("'%s' was not filtered properly", path->string);
244 }
245 string_list_clear(&dco->paths, 0);
246
247 free(dco);
248 state->delayed_checkout = NULL;
249
250 return errs;
251}
252
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700253static int write_entry(struct cache_entry *ce,
254 char *path, const struct checkout *state, int to_tempfile)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700255{
Kjetil Barvik4857c762009-02-09 21:54:50 +0100256 unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
Jeff Kingc602d3a2017-10-09 13:48:52 -0400257 struct delayed_checkout *dco = state->delayed_checkout;
Kjetil Barvike4c72922009-02-09 21:54:51 +0100258 int fd, ret, fstat_done = 0;
Brandon Williamsd8f71802018-02-14 10:59:41 -0800259 char *new_blob;
Kjetil Barvik4857c762009-02-09 21:54:50 +0100260 struct strbuf buf = STRBUF_INIT;
261 unsigned long size;
Jeff King564bde92017-09-13 13:16:28 -0400262 ssize_t wrote;
263 size_t newsize = 0;
Kjetil Barvike4c72922009-02-09 21:54:51 +0100264 struct stat st;
Stefan Beller6d14eac2017-03-14 14:46:40 -0700265 const struct submodule *sub;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700266
Junio C Hamanob6691092011-05-20 14:33:31 -0700267 if (ce_mode_s_ifmt == S_IFREG) {
brian m. carlson99d1a982016-09-05 20:07:52 +0000268 struct stream_filter *filter = get_stream_filter(ce->name,
brian m. carlson1a750442018-03-12 02:27:56 +0000269 &ce->oid);
Junio C Hamanob6691092011-05-20 14:33:31 -0700270 if (filter &&
271 !streaming_write_entry(ce, path, filter,
272 state, to_tempfile,
273 &fstat_done, &st))
274 goto finish;
275 }
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700276
Kjetil Barvik4857c762009-02-09 21:54:50 +0100277 switch (ce_mode_s_ifmt) {
Kjetil Barvik4857c762009-02-09 21:54:50 +0100278 case S_IFLNK:
Brandon Williamsd8f71802018-02-14 10:59:41 -0800279 new_blob = read_blob_entry(ce, &size);
280 if (!new_blob)
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700281 return error("unable to read sha1 file of %s (%s)",
Jeff King7cbbf9d2017-10-09 13:50:05 -0400282 path, oid_to_hex(&ce->oid));
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700283
Jeff King7cbbf9d2017-10-09 13:50:05 -0400284 /*
285 * We can't make a real symlink; write out a regular file entry
286 * with the symlink destination as its contents.
287 */
288 if (!has_symlinks || to_tempfile)
289 goto write_file_entry;
290
Brandon Williamsd8f71802018-02-14 10:59:41 -0800291 ret = symlink(new_blob, path);
292 free(new_blob);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400293 if (ret)
294 return error_errno("unable to create symlink %s", path);
295 break;
296
297 case S_IFREG:
Jeff Kingc602d3a2017-10-09 13:48:52 -0400298 /*
299 * We do not send the blob in case of a retry, so do not
300 * bother reading it at all.
301 */
Jeff King7cbbf9d2017-10-09 13:50:05 -0400302 if (dco && dco->state == CE_RETRY) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800303 new_blob = NULL;
Jeff Kingc602d3a2017-10-09 13:48:52 -0400304 size = 0;
305 } else {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800306 new_blob = read_blob_entry(ce, &size);
307 if (!new_blob)
Jeff Kingc602d3a2017-10-09 13:48:52 -0400308 return error("unable to read sha1 file of %s (%s)",
309 path, oid_to_hex(&ce->oid));
Kjetil Barvik4857c762009-02-09 21:54:50 +0100310 }
311
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700312 /*
313 * Convert from git internal format to working tree format
314 */
Jeff King7cbbf9d2017-10-09 13:50:05 -0400315 if (dco && dco->state != CE_NO_DELAY) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800316 ret = async_convert_to_working_tree(ce->name, new_blob,
Jeff King7cbbf9d2017-10-09 13:50:05 -0400317 size, &buf, dco);
318 if (ret && string_list_has_string(&dco->paths, ce->name)) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800319 free(new_blob);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400320 goto delayed;
Lars Schneider2841e8f2017-06-30 22:41:28 +0200321 }
Jeff King7cbbf9d2017-10-09 13:50:05 -0400322 } else
Brandon Williamsd8f71802018-02-14 10:59:41 -0800323 ret = convert_to_working_tree(ce->name, new_blob, size, &buf);
Junio C Hamano1a9d7e92007-08-14 01:41:02 -0700324
Jeff King7cbbf9d2017-10-09 13:50:05 -0400325 if (ret) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800326 free(new_blob);
327 new_blob = strbuf_detach(&buf, &newsize);
Jeff King7cbbf9d2017-10-09 13:50:05 -0400328 size = newsize;
329 }
330 /*
331 * No "else" here as errors from convert are OK at this
332 * point. If the error would have been fatal (e.g.
333 * filter is required), then we would have died already.
334 */
335
336 write_file_entry:
Junio C Hamanofd5db552011-05-12 21:36:42 -0700337 fd = open_output_fd(path, ce, to_tempfile);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700338 if (fd < 0) {
Brandon Williamsd8f71802018-02-14 10:59:41 -0800339 free(new_blob);
Nguyễn Thái Ngọc Duye1ebb3c2016-05-08 16:47:44 +0700340 return error_errno("unable to create file %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700341 }
Linus Torvalds6c510be2007-02-13 11:07:23 -0800342
Brandon Williamsd8f71802018-02-14 10:59:41 -0800343 wrote = write_in_full(fd, new_blob, size);
Junio C Hamanofd5db552011-05-12 21:36:42 -0700344 if (!to_tempfile)
345 fstat_done = fstat_output(fd, state, &st);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700346 close(fd);
Brandon Williamsd8f71802018-02-14 10:59:41 -0800347 free(new_blob);
Jeff King564bde92017-09-13 13:16:28 -0400348 if (wrote < 0)
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700349 return error("unable to write file %s", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700350 break;
Jeff King7cbbf9d2017-10-09 13:50:05 -0400351
Martin Waitz302b9282007-05-21 22:08:28 +0200352 case S_IFGITLINK:
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700353 if (to_tempfile)
Thomas Rast42063f92013-07-18 14:26:55 +0200354 return error("cannot create temporary submodule %s", path);
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700355 if (mkdir(path, 0777) < 0)
Thomas Rast42063f92013-07-18 14:26:55 +0200356 return error("cannot create submodule directory %s", path);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700357 sub = submodule_from_ce(ce);
358 if (sub)
359 return submodule_move_head(ce->name,
Stefan Bellercd279e22017-04-18 14:37:22 -0700360 NULL, oid_to_hex(&ce->oid),
361 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700362 break;
Jeff King7cbbf9d2017-10-09 13:50:05 -0400363
Linus Torvalds12dccc12005-06-05 21:59:54 -0700364 default:
Nguyễn Thái Ngọc Duyd43e9072010-11-28 11:36:38 +0700365 return error("unknown file mode for %s in index", path);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700366 }
367
Junio C Hamanodd8e9122011-05-12 14:31:08 -0700368finish:
Linus Torvalds6ee67f22005-06-05 23:15:40 -0700369 if (state->refresh_cache) {
Nguyễn Thái Ngọc Duyd4a20242014-06-13 19:19:34 +0700370 assert(state->istate);
Kjetil Barvike4c72922009-02-09 21:54:51 +0100371 if (!fstat_done)
Lars Schneider11179eb2017-10-05 12:44:07 +0200372 if (lstat(ce->name, &st) < 0)
373 return error_errno("unable to stat just-written file %s",
374 ce->name);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700375 fill_stat_cache_info(ce, &st);
Nguyễn Thái Ngọc Duy078a58e2014-06-13 19:19:39 +0700376 ce->ce_flags |= CE_UPDATE_IN_BASE;
Ben Peart883e2482017-09-22 12:35:40 -0400377 mark_fsmonitor_invalid(state->istate, ce);
Nguyễn Thái Ngọc Duyd4a20242014-06-13 19:19:34 +0700378 state->istate->cache_changed |= CE_ENTRY_CHANGED;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700379 }
Lars Schneider03b95332017-10-05 12:44:06 +0200380delayed:
Linus Torvalds12dccc12005-06-05 21:59:54 -0700381 return 0;
382}
383
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700384/*
385 * This is like 'lstat()', except it refuses to follow symlinks
Junio C Hamanoda02ca52009-08-16 23:53:12 -0700386 * in the path, after skipping "skiplen".
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700387 */
Junio C Hamano61b97df2010-01-11 22:27:31 -0800388static int check_path(const char *path, int len, struct stat *st, int skiplen)
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700389{
Junio C Hamanoda02ca52009-08-16 23:53:12 -0700390 const char *slash = path + len;
391
392 while (path < slash && *slash != '/')
393 slash--;
394 if (!has_dirs_only_path(path, slash - path, skiplen)) {
Linus Torvaldsb6986d82009-07-29 20:22:25 -0700395 errno = ENOENT;
396 return -1;
397 }
398 return lstat(path, st);
399}
400
Junio C Hamanoaf2a6512013-10-23 10:52:42 -0700401/*
402 * Write the contents from ce out to the working tree.
403 *
404 * When topath[] is not NULL, instead of writing to the working tree
405 * file named by ce, a temporary file is created by this function and
406 * its name is returned in topath[], which must be able to hold at
407 * least TEMPORARY_FILENAME_LENGTH bytes long.
408 */
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700409int checkout_entry(struct cache_entry *ce,
410 const struct checkout *state, char *topath)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700411{
Michael Haggertyf63272a2014-03-13 10:19:07 +0100412 static struct strbuf path = STRBUF_INIT;
Shawn Pearcede84f992006-03-05 03:24:15 -0500413 struct stat st;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700414
Shawn Pearcede84f992006-03-05 03:24:15 -0500415 if (topath)
416 return write_entry(ce, topath, state, 1);
417
Michael Haggertyf63272a2014-03-13 10:19:07 +0100418 strbuf_reset(&path);
419 strbuf_add(&path, state->base_dir, state->base_dir_len);
420 strbuf_add(&path, ce->name, ce_namelen(ce));
Linus Torvalds12dccc12005-06-05 21:59:54 -0700421
Michael Haggertyf63272a2014-03-13 10:19:07 +0100422 if (!check_path(path.buf, path.len, &st, state->base_dir_len)) {
Stefan Beller6d14eac2017-03-14 14:46:40 -0700423 const struct submodule *sub;
Nguyễn Thái Ngọc Duy56cac482009-12-14 18:43:58 +0700424 unsigned changed = ce_match_stat(ce, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700425 /*
426 * Needs to be checked before !changed returns early,
427 * as the possibly empty directory was not changed
428 */
429 sub = submodule_from_ce(ce);
430 if (sub) {
431 int err;
432 if (!is_submodule_populated_gently(ce->name, &err)) {
433 struct stat sb;
434 if (lstat(ce->name, &sb))
435 die(_("could not stat file '%s'"), ce->name);
436 if (!(st.st_mode & S_IFDIR))
437 unlink_or_warn(ce->name);
438
439 return submodule_move_head(ce->name,
Stefan Bellercd279e22017-04-18 14:37:22 -0700440 NULL, oid_to_hex(&ce->oid), 0);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700441 } else
442 return submodule_move_head(ce->name,
443 "HEAD", oid_to_hex(&ce->oid),
Stefan Bellercd279e22017-04-18 14:37:22 -0700444 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
Stefan Beller6d14eac2017-03-14 14:46:40 -0700445 }
446
Linus Torvalds12dccc12005-06-05 21:59:54 -0700447 if (!changed)
448 return 0;
449 if (!state->force) {
450 if (!state->quiet)
Michael Haggertyf63272a2014-03-13 10:19:07 +0100451 fprintf(stderr,
452 "%s already exists, no checkout\n",
453 path.buf);
Junio C Hamano4b12dae2005-10-03 12:44:48 -0700454 return -1;
Linus Torvalds12dccc12005-06-05 21:59:54 -0700455 }
456
457 /*
458 * We unlink the old file, to get the new one with the
459 * right permissions (including umask, which is nasty
460 * to emulate by hand - much easier to let the system
461 * just do the right thing)
462 */
Linus Torvaldsd48a72f2005-07-14 09:58:45 -0700463 if (S_ISDIR(st.st_mode)) {
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700464 /* If it is a gitlink, leave it alone! */
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800465 if (S_ISGITLINK(ce->ce_mode))
Linus Torvaldsf0807e62007-04-13 09:26:04 -0700466 return 0;
Linus Torvaldsd48a72f2005-07-14 09:58:45 -0700467 if (!state->force)
Michael Haggertyf63272a2014-03-13 10:19:07 +0100468 return error("%s is a directory", path.buf);
Michael Haggerty2f29e0c2014-03-13 10:19:08 +0100469 remove_subtree(&path);
Michael Haggertyf63272a2014-03-13 10:19:07 +0100470 } else if (unlink(path.buf))
Nguyễn Thái Ngọc Duye1ebb3c2016-05-08 16:47:44 +0700471 return error_errno("unable to unlink old '%s'", path.buf);
Shawn Pearcede84f992006-03-05 03:24:15 -0500472 } else if (state->not_new)
Linus Torvalds12dccc12005-06-05 21:59:54 -0700473 return 0;
Michael Haggertyf63272a2014-03-13 10:19:07 +0100474
475 create_directories(path.buf, path.len, state);
476 return write_entry(ce, path.buf, state, 0);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700477}