]> git.ipfire.org Git - thirdparty/git.git/blame - entry.c
Merge branch 'jt/t5500-unflake'
[thirdparty/git.git] / entry.c
CommitLineData
12dccc16 1#include "cache.h"
8e440259 2#include "blob.h"
cbd53a21 3#include "object-store.h"
8ca12c0d 4#include "dir.h"
dd8e9121 5#include "streaming.h"
6d14eac3 6#include "submodule.h"
52f1d62e 7#include "progress.h"
883e248b 8#include "fsmonitor.h"
12dccc16 9
81a9aa60
KB
10static void create_directories(const char *path, int path_len,
11 const struct checkout *state)
12dccc16 12{
3733e694 13 char *buf = xmallocz(path_len);
81a9aa60
KB
14 int len = 0;
15
16 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;
12dccc16 23 buf[len] = 0;
fa2e71c9 24
bad4a54f
KB
25 /*
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 */
57199892 32 if (has_dirs_only_path(buf, len, state->base_dir_len))
fa2e71c9
JH
33 continue; /* ok, it is already a directory. */
34
35 /*
bad4a54f
KB
36 * 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.
fa2e71c9 40 */
f312de01 41 if (mkdir(buf, 0777)) {
fa2e71c9 42 if (errno == EEXIST && state->force &&
691f1a28 43 !unlink_or_warn(buf) && !mkdir(buf, 0777))
fa2e71c9 44 continue;
0721c314 45 die_errno("cannot create directory at '%s'", buf);
12dccc16
LT
46 }
47 }
48 free(buf);
49}
50
2f29e0c6 51static void remove_subtree(struct strbuf *path)
12dccc16 52{
2f29e0c6 53 DIR *dir = opendir(path->buf);
12dccc16 54 struct dirent *de;
2f29e0c6 55 int origlen = path->len;
a6080a0a 56
12dccc16 57 if (!dir)
2f29e0c6 58 die_errno("cannot opendir '%s'", path->buf);
12dccc16
LT
59 while ((de = readdir(dir)) != NULL) {
60 struct stat st;
2f29e0c6 61
8ca12c0d 62 if (is_dot_or_dotdot(de->d_name))
12dccc16 63 continue;
2f29e0c6
MH
64
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);
12dccc16 69 if (S_ISDIR(st.st_mode))
2f29e0c6
MH
70 remove_subtree(path);
71 else if (unlink(path->buf))
72 die_errno("cannot unlink '%s'", path->buf);
73 strbuf_setlen(path, origlen);
12dccc16
LT
74 }
75 closedir(dir);
2f29e0c6
MH
76 if (rmdir(path->buf))
77 die_errno("cannot rmdir '%s'", path->buf);
12dccc16
LT
78}
79
d48a72f3 80static int create_file(const char *path, unsigned int mode)
12dccc16 81{
12dccc16 82 mode = (mode & 0100) ? 0777 : 0666;
781411ed 83 return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
12dccc16
LT
84}
85
9c5e6c80 86static void *read_blob_entry(const struct cache_entry *ce, unsigned long *size)
f0807e62
LT
87{
88 enum object_type type;
b4f5aca4 89 void *blob_data = read_object_file(&ce->oid, &type, size);
f0807e62 90
d8f71807 91 if (blob_data) {
f0807e62 92 if (type == OBJ_BLOB)
d8f71807
BW
93 return blob_data;
94 free(blob_data);
f0807e62
LT
95 }
96 return NULL;
97}
98
9c5e6c80 99static int open_output_fd(char *path, const struct cache_entry *ce, int to_tempfile)
fd5db55d
JH
100{
101 int symlink = (ce->ce_mode & S_IFMT) != S_IFREG;
102 if (to_tempfile) {
330c8e26
JK
103 xsnprintf(path, TEMPORARY_FILENAME_LENGTH, "%s",
104 symlink ? ".merge_link_XXXXXX" : ".merge_file_XXXXXX");
fd5db55d
JH
105 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
9c5e6c80 122static int streaming_write_entry(const struct cache_entry *ce, char *path,
b6691092 123 struct stream_filter *filter,
dd8e9121
JH
124 const struct checkout *state, int to_tempfile,
125 int *fstat_done, struct stat *statbuf)
126{
d9c31e14 127 int result = 0;
47a02ff2 128 int fd;
dd8e9121
JH
129
130 fd = open_output_fd(path, ce, to_tempfile);
d9c31e14
JK
131 if (fd < 0)
132 return -1;
133
7eda0e4f 134 result |= stream_blob_to_fd(fd, &ce->oid, filter, 1);
d9c31e14
JK
135 *fstat_done = fstat_output(fd, state, statbuf);
136 result |= close(fd);
137
138 if (result)
dd8e9121
JH
139 unlink(path);
140 return result;
141}
142
2841e8f8
LS
143void 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
0f086e6d 164int finish_delayed_checkout(struct checkout *state, int *nr_checkouts)
2841e8f8
LS
165{
166 int errs = 0;
52f1d62e
LS
167 unsigned delayed_object_count;
168 off_t filtered_bytes = 0;
2841e8f8 169 struct string_list_item *filter, *path;
52f1d62e 170 struct progress *progress;
2841e8f8
LS
171 struct delayed_checkout *dco = state->delayed_checkout;
172
173 if (!state->delayed_checkout)
174 return errs;
175
176 dco->state = CE_RETRY;
52f1d62e 177 delayed_object_count = dco->paths.nr;
7fbbd3ec 178 progress = start_delayed_progress(_("Filtering content"), delayed_object_count);
2841e8f8
LS
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;
52f1d62e 182 display_progress(progress, delayed_object_count - dco->paths.nr);
2841e8f8
LS
183
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);
52f1d62e 228 if (ce) {
0f086e6d 229 errs |= checkout_entry(ce, state, NULL, nr_checkouts);
52f1d62e
LS
230 filtered_bytes += ce->ce_stat_data.sd_size;
231 display_throughput(progress, filtered_bytes);
232 } else
233 errs = 1;
2841e8f8
LS
234 }
235 }
236 string_list_remove_empty_items(&dco->filters, 0);
237 }
52f1d62e 238 stop_progress(&progress);
2841e8f8
LS
239 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
9c5e6c80
NTND
254static int write_entry(struct cache_entry *ce,
255 char *path, const struct checkout *state, int to_tempfile)
12dccc16 256{
4857c761 257 unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
c602d3a9 258 struct delayed_checkout *dco = state->delayed_checkout;
e4c72923 259 int fd, ret, fstat_done = 0;
d8f71807 260 char *new_blob;
4857c761
KB
261 struct strbuf buf = STRBUF_INIT;
262 unsigned long size;
564bde9a
JK
263 ssize_t wrote;
264 size_t newsize = 0;
e4c72923 265 struct stat st;
6d14eac3 266 const struct submodule *sub;
c397aac0 267 struct checkout_metadata meta;
268
269 clone_checkout_metadata(&meta, &state->meta, &ce->oid);
4857c761 270
b6691092 271 if (ce_mode_s_ifmt == S_IFREG) {
74cfc0ee 272 struct stream_filter *filter = get_stream_filter(state->istate, ce->name,
1a750441 273 &ce->oid);
b6691092
JH
274 if (filter &&
275 !streaming_write_entry(ce, path, filter,
276 state, to_tempfile,
277 &fstat_done, &st))
278 goto finish;
279 }
dd8e9121 280
4857c761 281 switch (ce_mode_s_ifmt) {
4857c761 282 case S_IFLNK:
d8f71807
BW
283 new_blob = read_blob_entry(ce, &size);
284 if (!new_blob)
d43e9073 285 return error("unable to read sha1 file of %s (%s)",
7cbbf9d6 286 path, oid_to_hex(&ce->oid));
1a9d7e9b 287
7cbbf9d6
JK
288 /*
289 * We can't make a real symlink; write out a regular file entry
290 * with the symlink destination as its contents.
291 */
292 if (!has_symlinks || to_tempfile)
293 goto write_file_entry;
294
d8f71807
BW
295 ret = symlink(new_blob, path);
296 free(new_blob);
7cbbf9d6
JK
297 if (ret)
298 return error_errno("unable to create symlink %s", path);
299 break;
300
301 case S_IFREG:
c602d3a9
JK
302 /*
303 * We do not send the blob in case of a retry, so do not
304 * bother reading it at all.
305 */
7cbbf9d6 306 if (dco && dco->state == CE_RETRY) {
d8f71807 307 new_blob = NULL;
c602d3a9
JK
308 size = 0;
309 } else {
d8f71807
BW
310 new_blob = read_blob_entry(ce, &size);
311 if (!new_blob)
c602d3a9
JK
312 return error("unable to read sha1 file of %s (%s)",
313 path, oid_to_hex(&ce->oid));
4857c761
KB
314 }
315
1a9d7e9b
JH
316 /*
317 * Convert from git internal format to working tree format
318 */
7cbbf9d6 319 if (dco && dco->state != CE_NO_DELAY) {
74cfc0ee 320 ret = async_convert_to_working_tree(state->istate, ce->name, new_blob,
c397aac0 321 size, &buf, &meta, dco);
7cbbf9d6 322 if (ret && string_list_has_string(&dco->paths, ce->name)) {
d8f71807 323 free(new_blob);
7cbbf9d6 324 goto delayed;
2841e8f8 325 }
7cbbf9d6 326 } else
c397aac0 327 ret = convert_to_working_tree(state->istate, ce->name, new_blob, size, &buf, &meta);
7cbbf9d6
JK
328
329 if (ret) {
d8f71807
BW
330 free(new_blob);
331 new_blob = strbuf_detach(&buf, &newsize);
7cbbf9d6 332 size = newsize;
1a9d7e9b 333 }
7cbbf9d6
JK
334 /*
335 * No "else" here as errors from convert are OK at this
336 * point. If the error would have been fatal (e.g.
337 * filter is required), then we would have died already.
338 */
1a9d7e9b 339
7cbbf9d6 340 write_file_entry:
fd5db55d 341 fd = open_output_fd(path, ce, to_tempfile);
12dccc16 342 if (fd < 0) {
d8f71807 343 free(new_blob);
e1ebb3c2 344 return error_errno("unable to create file %s", path);
12dccc16 345 }
6c510bee 346
d8f71807 347 wrote = write_in_full(fd, new_blob, size);
fd5db55d
JH
348 if (!to_tempfile)
349 fstat_done = fstat_output(fd, state, &st);
12dccc16 350 close(fd);
d8f71807 351 free(new_blob);
564bde9a 352 if (wrote < 0)
d43e9073 353 return error("unable to write file %s", path);
12dccc16 354 break;
7cbbf9d6 355
302b9282 356 case S_IFGITLINK:
f0807e62 357 if (to_tempfile)
42063f95 358 return error("cannot create temporary submodule %s", path);
f0807e62 359 if (mkdir(path, 0777) < 0)
42063f95 360 return error("cannot create submodule directory %s", path);
6d14eac3
SB
361 sub = submodule_from_ce(ce);
362 if (sub)
363 return submodule_move_head(ce->name,
cd279e2e
SB
364 NULL, oid_to_hex(&ce->oid),
365 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
f0807e62 366 break;
7cbbf9d6 367
12dccc16 368 default:
d43e9073 369 return error("unknown file mode for %s in index", path);
12dccc16
LT
370 }
371
dd8e9121 372finish:
6ee67f26 373 if (state->refresh_cache) {
d4a2024a 374 assert(state->istate);
e4c72923 375 if (!fstat_done)
11179eb3
LS
376 if (lstat(ce->name, &st) < 0)
377 return error_errno("unable to stat just-written file %s",
378 ce->name);
d4c0a3ac 379 fill_stat_cache_info(state->istate, ce, &st);
078a58e8 380 ce->ce_flags |= CE_UPDATE_IN_BASE;
883e248b 381 mark_fsmonitor_invalid(state->istate, ce);
d4a2024a 382 state->istate->cache_changed |= CE_ENTRY_CHANGED;
12dccc16 383 }
03b95333 384delayed:
12dccc16
LT
385 return 0;
386}
387
b6986d8a
LT
388/*
389 * This is like 'lstat()', except it refuses to follow symlinks
da02ca50 390 * in the path, after skipping "skiplen".
b6986d8a 391 */
61b97df7 392static int check_path(const char *path, int len, struct stat *st, int skiplen)
b6986d8a 393{
da02ca50
JH
394 const char *slash = path + len;
395
396 while (path < slash && *slash != '/')
397 slash--;
398 if (!has_dirs_only_path(path, slash - path, skiplen)) {
b6986d8a
LT
399 errno = ENOENT;
400 return -1;
401 }
402 return lstat(path, st);
403}
404
b878579a
NTND
405static void mark_colliding_entries(const struct checkout *state,
406 struct cache_entry *ce, struct stat *st)
407{
408 int i, trust_ino = check_stat;
409
e66ceca9 410#if defined(GIT_WINDOWS_NATIVE) || defined(__CYGWIN__)
b878579a
NTND
411 trust_ino = 0;
412#endif
413
414 ce->ce_flags |= CE_MATCHED;
415
416 for (i = 0; i < state->istate->cache_nr; i++) {
417 struct cache_entry *dup = state->istate->cache[i];
418
419 if (dup == ce)
420 break;
421
422 if (dup->ce_flags & (CE_MATCHED | CE_VALID | CE_SKIP_WORKTREE))
423 continue;
424
e66ceca9 425 if ((trust_ino && !match_stat_data(&dup->ce_stat_data, st)) ||
b878579a
NTND
426 (!trust_ino && !fspathcmp(ce->name, dup->name))) {
427 dup->ce_flags |= CE_MATCHED;
428 break;
429 }
430 }
431}
432
af2a651d
JH
433/*
434 * Write the contents from ce out to the working tree.
435 *
436 * When topath[] is not NULL, instead of writing to the working tree
437 * file named by ce, a temporary file is created by this function and
438 * its name is returned in topath[], which must be able to hold at
439 * least TEMPORARY_FILENAME_LENGTH bytes long.
440 */
0f086e6d
NTND
441int checkout_entry(struct cache_entry *ce, const struct checkout *state,
442 char *topath, int *nr_checkouts)
12dccc16 443{
f63272a3 444 static struct strbuf path = STRBUF_INIT;
de84f99c 445 struct stat st;
12dccc16 446
536ec183
TG
447 if (ce->ce_flags & CE_WT_REMOVE) {
448 if (topath)
449 /*
450 * No content and thus no path to create, so we have
451 * no pathname to return.
452 */
453 BUG("Can't remove entry to a path");
454 unlink_entry(ce);
455 return 0;
456 }
457
de84f99c
SP
458 if (topath)
459 return write_entry(ce, topath, state, 1);
460
f63272a3
MH
461 strbuf_reset(&path);
462 strbuf_add(&path, state->base_dir, state->base_dir_len);
463 strbuf_add(&path, ce->name, ce_namelen(ce));
12dccc16 464
f63272a3 465 if (!check_path(path.buf, path.len, &st, state->base_dir_len)) {
6d14eac3 466 const struct submodule *sub;
74cfc0ee
NTND
467 unsigned changed = ie_match_stat(state->istate, ce, &st,
468 CE_MATCH_IGNORE_VALID | CE_MATCH_IGNORE_SKIP_WORKTREE);
6d14eac3
SB
469 /*
470 * Needs to be checked before !changed returns early,
471 * as the possibly empty directory was not changed
472 */
473 sub = submodule_from_ce(ce);
474 if (sub) {
475 int err;
476 if (!is_submodule_populated_gently(ce->name, &err)) {
477 struct stat sb;
478 if (lstat(ce->name, &sb))
479 die(_("could not stat file '%s'"), ce->name);
480 if (!(st.st_mode & S_IFDIR))
481 unlink_or_warn(ce->name);
482
483 return submodule_move_head(ce->name,
cd279e2e 484 NULL, oid_to_hex(&ce->oid), 0);
6d14eac3
SB
485 } else
486 return submodule_move_head(ce->name,
487 "HEAD", oid_to_hex(&ce->oid),
cd279e2e 488 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
6d14eac3
SB
489 }
490
12dccc16
LT
491 if (!changed)
492 return 0;
493 if (!state->force) {
494 if (!state->quiet)
f63272a3
MH
495 fprintf(stderr,
496 "%s already exists, no checkout\n",
497 path.buf);
4b12dae6 498 return -1;
12dccc16
LT
499 }
500
b878579a
NTND
501 if (state->clone)
502 mark_colliding_entries(state, ce, &st);
503
12dccc16
LT
504 /*
505 * We unlink the old file, to get the new one with the
506 * right permissions (including umask, which is nasty
507 * to emulate by hand - much easier to let the system
508 * just do the right thing)
509 */
d48a72f3 510 if (S_ISDIR(st.st_mode)) {
f0807e62 511 /* If it is a gitlink, leave it alone! */
7a51ed66 512 if (S_ISGITLINK(ce->ce_mode))
f0807e62 513 return 0;
d48a72f3 514 if (!state->force)
f63272a3 515 return error("%s is a directory", path.buf);
2f29e0c6 516 remove_subtree(&path);
f63272a3 517 } else if (unlink(path.buf))
e1ebb3c2 518 return error_errno("unable to unlink old '%s'", path.buf);
de84f99c 519 } else if (state->not_new)
12dccc16 520 return 0;
f63272a3
MH
521
522 create_directories(path.buf, path.len, state);
0f086e6d
NTND
523 if (nr_checkouts)
524 (*nr_checkouts)++;
f63272a3 525 return write_entry(ce, path.buf, state, 0);
12dccc16 526}
b702dd12
TG
527
528void unlink_entry(const struct cache_entry *ce)
529{
530 const struct submodule *sub = submodule_from_ce(ce);
531 if (sub) {
532 /* state.force is set at the caller. */
533 submodule_move_head(ce->name, "HEAD", NULL,
534 SUBMODULE_MOVE_HEAD_FORCE);
535 }
536 if (!check_leading_path(ce->name, ce_namelen(ce)))
537 return;
538 if (remove_or_warn(ce->ce_mode, ce->name))
539 return;
540 schedule_dir_for_removal(ce->name, ce_namelen(ce));
541}