]> git.ipfire.org Git - thirdparty/git.git/blame - entry.c
hex.h: move some hex-related declarations from cache.h
[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"
d052cc03 9#include "entry.h"
04155bda 10#include "parallel-checkout.h"
12dccc16 11
81a9aa60
KB
12static void create_directories(const char *path, int path_len,
13 const struct checkout *state)
12dccc16 14{
3733e694 15 char *buf = xmallocz(path_len);
81a9aa60
KB
16 int len = 0;
17
18 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;
12dccc16 25 buf[len] = 0;
fa2e71c9 26
bad4a54f
KB
27 /*
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 */
57199892 34 if (has_dirs_only_path(buf, len, state->base_dir_len))
fa2e71c9
JH
35 continue; /* ok, it is already a directory. */
36
37 /*
bad4a54f
KB
38 * If this mkdir() would fail, it could be that there
39 * is already a symlink or something else exists
40 * there, therefore we then try to unlink it and try
41 * one more time to create the directory.
fa2e71c9 42 */
f312de01 43 if (mkdir(buf, 0777)) {
fa2e71c9 44 if (errno == EEXIST && state->force &&
691f1a28 45 !unlink_or_warn(buf) && !mkdir(buf, 0777))
fa2e71c9 46 continue;
0721c314 47 die_errno("cannot create directory at '%s'", buf);
12dccc16
LT
48 }
49 }
50 free(buf);
51}
52
2f29e0c6 53static void remove_subtree(struct strbuf *path)
12dccc16 54{
2f29e0c6 55 DIR *dir = opendir(path->buf);
12dccc16 56 struct dirent *de;
2f29e0c6 57 int origlen = path->len;
a6080a0a 58
12dccc16 59 if (!dir)
2f29e0c6 60 die_errno("cannot opendir '%s'", path->buf);
b548f0f1 61 while ((de = readdir_skip_dot_and_dotdot(dir)) != NULL) {
12dccc16 62 struct stat st;
2f29e0c6 63
2f29e0c6
MH
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);
12dccc16 68 if (S_ISDIR(st.st_mode))
2f29e0c6
MH
69 remove_subtree(path);
70 else if (unlink(path->buf))
71 die_errno("cannot unlink '%s'", path->buf);
72 strbuf_setlen(path, origlen);
12dccc16
LT
73 }
74 closedir(dir);
2f29e0c6
MH
75 if (rmdir(path->buf))
76 die_errno("cannot rmdir '%s'", path->buf);
12dccc16
LT
77}
78
d48a72f3 79static int create_file(const char *path, unsigned int mode)
12dccc16 80{
12dccc16 81 mode = (mode & 0100) ? 0777 : 0666;
781411ed 82 return open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
12dccc16
LT
83}
84
e9aa762c 85void *read_blob_entry(const struct cache_entry *ce, size_t *size)
f0807e62
LT
86{
87 enum object_type type;
e9aa762c
MC
88 unsigned long ul;
89 void *blob_data = read_object_file(&ce->oid, &type, &ul);
f0807e62 90
e9aa762c 91 *size = ul;
d8f71807 92 if (blob_data) {
f0807e62 93 if (type == OBJ_BLOB)
d8f71807
BW
94 return blob_data;
95 free(blob_data);
f0807e62
LT
96 }
97 return NULL;
98}
99
9c5e6c80 100static int open_output_fd(char *path, const struct cache_entry *ce, int to_tempfile)
fd5db55d
JH
101{
102 int symlink = (ce->ce_mode & S_IFMT) != S_IFREG;
103 if (to_tempfile) {
330c8e26
JK
104 xsnprintf(path, TEMPORARY_FILENAME_LENGTH, "%s",
105 symlink ? ".merge_link_XXXXXX" : ".merge_file_XXXXXX");
fd5db55d
JH
106 return mkstemp(path);
107 } else {
108 return create_file(path, !symlink ? ce->ce_mode : 0666);
109 }
110}
111
49cfd903 112int fstat_checkout_output(int fd, const struct checkout *state, struct stat *st)
fd5db55d
JH
113{
114 /* use fstat() only when path == ce->name */
115 if (fstat_is_reliable() &&
116 state->refresh_cache && !state->base_dir_len) {
35e6e212 117 return !fstat(fd, st);
fd5db55d
JH
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);
49cfd903 135 *fstat_done = fstat_checkout_output(fd, state, statbuf);
d9c31e14
JK
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;
bc40dfb1
ÆAB
148 string_list_init_nodup(&state->delayed_checkout->filters);
149 string_list_init_nodup(&state->delayed_checkout->paths);
2841e8f8
LS
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)
611c7785 160 available->util = item->util;
2841e8f8
LS
161 return !available;
162}
163
611c7785 164int finish_delayed_checkout(struct checkout *state, int show_progress)
2841e8f8
LS
165{
166 int errs = 0;
bf6d819b 167 unsigned processed_paths = 0;
52f1d62e 168 off_t filtered_bytes = 0;
2841e8f8 169 struct string_list_item *filter, *path;
bf6d819b 170 struct progress *progress = NULL;
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;
bf6d819b
SG
177 if (show_progress)
178 progress = start_delayed_progress(_("Filtering content"), dco->paths.nr);
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;
182
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);
52f1d62e 227 if (ce) {
bf6d819b 228 display_progress(progress, ++processed_paths);
611c7785 229 errs |= checkout_entry(ce, state, NULL, path->util);
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
584a0d13
MT
254void update_ce_after_write(const struct checkout *state, struct cache_entry *ce,
255 struct stat *st)
256{
257 if (state->refresh_cache) {
258 assert(state->istate);
259 fill_stat_cache_info(state->istate, ce, st);
260 ce->ce_flags |= CE_UPDATE_IN_BASE;
261 mark_fsmonitor_invalid(state->istate, ce);
262 state->istate->cache_changed |= CE_ENTRY_CHANGED;
263 }
264}
265
30419e7e
MT
266/* Note: ca is used (and required) iff the entry refers to a regular file. */
267static int write_entry(struct cache_entry *ce, char *path, struct conv_attrs *ca,
611c7785
MT
268 const struct checkout *state, int to_tempfile,
269 int *nr_checkouts)
12dccc16 270{
4857c761 271 unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
c602d3a9 272 struct delayed_checkout *dco = state->delayed_checkout;
e4c72923 273 int fd, ret, fstat_done = 0;
d8f71807 274 char *new_blob;
4857c761 275 struct strbuf buf = STRBUF_INIT;
e9aa762c 276 size_t size;
564bde9a
JK
277 ssize_t wrote;
278 size_t newsize = 0;
e4c72923 279 struct stat st;
6d14eac3 280 const struct submodule *sub;
c397aac0 281 struct checkout_metadata meta;
611c7785 282 static int scratch_nr_checkouts;
c397aac0 283
284 clone_checkout_metadata(&meta, &state->meta, &ce->oid);
4857c761 285
b6691092 286 if (ce_mode_s_ifmt == S_IFREG) {
30419e7e 287 struct stream_filter *filter = get_stream_filter_ca(ca, &ce->oid);
b6691092
JH
288 if (filter &&
289 !streaming_write_entry(ce, path, filter,
290 state, to_tempfile,
291 &fstat_done, &st))
292 goto finish;
293 }
dd8e9121 294
4857c761 295 switch (ce_mode_s_ifmt) {
4857c761 296 case S_IFLNK:
d8f71807
BW
297 new_blob = read_blob_entry(ce, &size);
298 if (!new_blob)
d43e9073 299 return error("unable to read sha1 file of %s (%s)",
9334ea8e 300 ce->name, oid_to_hex(&ce->oid));
1a9d7e9b 301
7cbbf9d6
JK
302 /*
303 * We can't make a real symlink; write out a regular file entry
304 * with the symlink destination as its contents.
305 */
306 if (!has_symlinks || to_tempfile)
307 goto write_file_entry;
308
d8f71807
BW
309 ret = symlink(new_blob, path);
310 free(new_blob);
7cbbf9d6
JK
311 if (ret)
312 return error_errno("unable to create symlink %s", path);
313 break;
314
315 case S_IFREG:
c602d3a9
JK
316 /*
317 * We do not send the blob in case of a retry, so do not
318 * bother reading it at all.
319 */
7cbbf9d6 320 if (dco && dco->state == CE_RETRY) {
d8f71807 321 new_blob = NULL;
c602d3a9
JK
322 size = 0;
323 } else {
d8f71807
BW
324 new_blob = read_blob_entry(ce, &size);
325 if (!new_blob)
c602d3a9 326 return error("unable to read sha1 file of %s (%s)",
9334ea8e 327 ce->name, oid_to_hex(&ce->oid));
4857c761
KB
328 }
329
1a9d7e9b
JH
330 /*
331 * Convert from git internal format to working tree format
332 */
7cbbf9d6 333 if (dco && dco->state != CE_NO_DELAY) {
30419e7e
MT
334 ret = async_convert_to_working_tree_ca(ca, ce->name,
335 new_blob, size,
336 &buf, &meta, dco);
611c7785
MT
337 if (ret) {
338 struct string_list_item *item =
339 string_list_lookup(&dco->paths, ce->name);
340 if (item) {
341 item->util = nr_checkouts ? nr_checkouts
342 : &scratch_nr_checkouts;
343 free(new_blob);
344 goto delayed;
345 }
2841e8f8 346 }
30419e7e
MT
347 } else {
348 ret = convert_to_working_tree_ca(ca, ce->name, new_blob,
349 size, &buf, &meta);
350 }
7cbbf9d6
JK
351
352 if (ret) {
d8f71807
BW
353 free(new_blob);
354 new_blob = strbuf_detach(&buf, &newsize);
7cbbf9d6 355 size = newsize;
1a9d7e9b 356 }
7cbbf9d6
JK
357 /*
358 * No "else" here as errors from convert are OK at this
359 * point. If the error would have been fatal (e.g.
360 * filter is required), then we would have died already.
361 */
1a9d7e9b 362
7cbbf9d6 363 write_file_entry:
fd5db55d 364 fd = open_output_fd(path, ce, to_tempfile);
12dccc16 365 if (fd < 0) {
d8f71807 366 free(new_blob);
e1ebb3c2 367 return error_errno("unable to create file %s", path);
12dccc16 368 }
6c510bee 369
d8f71807 370 wrote = write_in_full(fd, new_blob, size);
fd5db55d 371 if (!to_tempfile)
49cfd903 372 fstat_done = fstat_checkout_output(fd, state, &st);
12dccc16 373 close(fd);
d8f71807 374 free(new_blob);
564bde9a 375 if (wrote < 0)
d43e9073 376 return error("unable to write file %s", path);
12dccc16 377 break;
7cbbf9d6 378
302b9282 379 case S_IFGITLINK:
f0807e62 380 if (to_tempfile)
9334ea8e 381 return error("cannot create temporary submodule %s", ce->name);
f0807e62 382 if (mkdir(path, 0777) < 0)
42063f95 383 return error("cannot create submodule directory %s", path);
6d14eac3
SB
384 sub = submodule_from_ce(ce);
385 if (sub)
4002ec3d 386 return submodule_move_head(ce->name, state->super_prefix,
cd279e2e
SB
387 NULL, oid_to_hex(&ce->oid),
388 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
f0807e62 389 break;
7cbbf9d6 390
12dccc16 391 default:
9334ea8e 392 return error("unknown file mode for %s in index", ce->name);
12dccc16
LT
393 }
394
dd8e9121 395finish:
6ee67f26 396 if (state->refresh_cache) {
584a0d13
MT
397 if (!fstat_done && lstat(ce->name, &st) < 0)
398 return error_errno("unable to stat just-written file %s",
399 ce->name);
400 update_ce_after_write(state, ce , &st);
12dccc16 401 }
611c7785
MT
402 if (nr_checkouts)
403 (*nr_checkouts)++;
03b95333 404delayed:
12dccc16
LT
405 return 0;
406}
407
b6986d8a
LT
408/*
409 * This is like 'lstat()', except it refuses to follow symlinks
da02ca50 410 * in the path, after skipping "skiplen".
b6986d8a 411 */
61b97df7 412static int check_path(const char *path, int len, struct stat *st, int skiplen)
b6986d8a 413{
da02ca50
JH
414 const char *slash = path + len;
415
416 while (path < slash && *slash != '/')
417 slash--;
418 if (!has_dirs_only_path(path, slash - path, skiplen)) {
b6986d8a
LT
419 errno = ENOENT;
420 return -1;
421 }
422 return lstat(path, st);
423}
424
b878579a
NTND
425static void mark_colliding_entries(const struct checkout *state,
426 struct cache_entry *ce, struct stat *st)
427{
428 int i, trust_ino = check_stat;
429
e66ceca9 430#if defined(GIT_WINDOWS_NATIVE) || defined(__CYGWIN__)
b878579a
NTND
431 trust_ino = 0;
432#endif
433
434 ce->ce_flags |= CE_MATCHED;
435
3450a304
DS
436 /* TODO: audit for interaction with sparse-index. */
437 ensure_full_index(state->istate);
b878579a
NTND
438 for (i = 0; i < state->istate->cache_nr; i++) {
439 struct cache_entry *dup = state->istate->cache[i];
440
04155bda
MT
441 if (dup == ce) {
442 /*
443 * Parallel checkout doesn't create the files in index
444 * order. So the other side of the collision may appear
445 * after the given cache_entry in the array.
446 */
447 if (parallel_checkout_status() == PC_RUNNING)
448 continue;
449 else
450 break;
451 }
b878579a
NTND
452
453 if (dup->ce_flags & (CE_MATCHED | CE_VALID | CE_SKIP_WORKTREE))
454 continue;
455
e66ceca9 456 if ((trust_ino && !match_stat_data(&dup->ce_stat_data, st)) ||
b878579a
NTND
457 (!trust_ino && !fspathcmp(ce->name, dup->name))) {
458 dup->ce_flags |= CE_MATCHED;
459 break;
460 }
461 }
462}
463
ae22751f
MT
464int checkout_entry_ca(struct cache_entry *ce, struct conv_attrs *ca,
465 const struct checkout *state, char *topath,
466 int *nr_checkouts)
12dccc16 467{
f63272a3 468 static struct strbuf path = STRBUF_INIT;
de84f99c 469 struct stat st;
ae22751f 470 struct conv_attrs ca_buf;
12dccc16 471
536ec183
TG
472 if (ce->ce_flags & CE_WT_REMOVE) {
473 if (topath)
474 /*
475 * No content and thus no path to create, so we have
476 * no pathname to return.
477 */
478 BUG("Can't remove entry to a path");
4002ec3d 479 unlink_entry(ce, state->super_prefix);
536ec183
TG
480 return 0;
481 }
482
30419e7e 483 if (topath) {
ae22751f 484 if (S_ISREG(ce->ce_mode) && !ca) {
30419e7e
MT
485 convert_attrs(state->istate, &ca_buf, ce->name);
486 ca = &ca_buf;
487 }
611c7785 488 return write_entry(ce, topath, ca, state, 1, nr_checkouts);
30419e7e 489 }
de84f99c 490
f63272a3
MH
491 strbuf_reset(&path);
492 strbuf_add(&path, state->base_dir, state->base_dir_len);
493 strbuf_add(&path, ce->name, ce_namelen(ce));
12dccc16 494
f63272a3 495 if (!check_path(path.buf, path.len, &st, state->base_dir_len)) {
6d14eac3 496 const struct submodule *sub;
74cfc0ee
NTND
497 unsigned changed = ie_match_stat(state->istate, ce, &st,
498 CE_MATCH_IGNORE_VALID | CE_MATCH_IGNORE_SKIP_WORKTREE);
6d14eac3
SB
499 /*
500 * Needs to be checked before !changed returns early,
501 * as the possibly empty directory was not changed
502 */
503 sub = submodule_from_ce(ce);
504 if (sub) {
505 int err;
506 if (!is_submodule_populated_gently(ce->name, &err)) {
507 struct stat sb;
508 if (lstat(ce->name, &sb))
509 die(_("could not stat file '%s'"), ce->name);
510 if (!(st.st_mode & S_IFDIR))
511 unlink_or_warn(ce->name);
512
4002ec3d 513 return submodule_move_head(ce->name, state->super_prefix,
cd279e2e 514 NULL, oid_to_hex(&ce->oid), 0);
6d14eac3 515 } else
4002ec3d 516 return submodule_move_head(ce->name, state->super_prefix,
6d14eac3 517 "HEAD", oid_to_hex(&ce->oid),
cd279e2e 518 state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0);
6d14eac3
SB
519 }
520
12dccc16
LT
521 if (!changed)
522 return 0;
523 if (!state->force) {
524 if (!state->quiet)
f63272a3
MH
525 fprintf(stderr,
526 "%s already exists, no checkout\n",
527 path.buf);
4b12dae6 528 return -1;
12dccc16
LT
529 }
530
b878579a
NTND
531 if (state->clone)
532 mark_colliding_entries(state, ce, &st);
533
12dccc16
LT
534 /*
535 * We unlink the old file, to get the new one with the
536 * right permissions (including umask, which is nasty
537 * to emulate by hand - much easier to let the system
538 * just do the right thing)
539 */
d48a72f3 540 if (S_ISDIR(st.st_mode)) {
f0807e62 541 /* If it is a gitlink, leave it alone! */
7a51ed66 542 if (S_ISGITLINK(ce->ce_mode))
f0807e62 543 return 0;
2f29e0c6 544 remove_subtree(&path);
f63272a3 545 } else if (unlink(path.buf))
e1ebb3c2 546 return error_errno("unable to unlink old '%s'", path.buf);
de84f99c 547 } else if (state->not_new)
12dccc16 548 return 0;
f63272a3
MH
549
550 create_directories(path.buf, path.len, state);
30419e7e 551
ae22751f 552 if (S_ISREG(ce->ce_mode) && !ca) {
30419e7e
MT
553 convert_attrs(state->istate, &ca_buf, ce->name);
554 ca = &ca_buf;
555 }
556
611c7785 557 if (!enqueue_checkout(ce, ca, nr_checkouts))
04155bda
MT
558 return 0;
559
611c7785 560 return write_entry(ce, path.buf, ca, state, 0, nr_checkouts);
12dccc16 561}
b702dd12 562
4002ec3d 563void unlink_entry(const struct cache_entry *ce, const char *super_prefix)
b702dd12
TG
564{
565 const struct submodule *sub = submodule_from_ce(ce);
566 if (sub) {
567 /* state.force is set at the caller. */
4002ec3d 568 submodule_move_head(ce->name, super_prefix, "HEAD", NULL,
b702dd12
TG
569 SUBMODULE_MOVE_HEAD_FORCE);
570 }
fab78a0c 571 if (check_leading_path(ce->name, ce_namelen(ce), 1) >= 0)
b702dd12
TG
572 return;
573 if (remove_or_warn(ce->ce_mode, ce->name))
574 return;
575 schedule_dir_for_removal(ce->name, ce_namelen(ce));
576}