Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 1 | #include "cache.h" |
Peter Eriksen | 8e44025 | 2006-04-02 14:44:09 +0200 | [diff] [blame] | 2 | #include "blob.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 3 | #include "object-store.h" |
Alexander Potashev | 8ca12c0 | 2009-01-10 15:07:50 +0300 | [diff] [blame] | 4 | #include "dir.h" |
Elijah Newren | f394e09 | 2023-03-21 06:25:54 +0000 | [diff] [blame] | 5 | #include "gettext.h" |
Elijah Newren | 41771fa | 2023-02-24 00:09:27 +0000 | [diff] [blame] | 6 | #include "hex.h" |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 7 | #include "streaming.h" |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 8 | #include "submodule.h" |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 9 | #include "progress.h" |
Ben Peart | 883e248 | 2017-09-22 12:35:40 -0400 | [diff] [blame] | 10 | #include "fsmonitor.h" |
Matheus Tavares | d052cc0 | 2021-03-23 11:19:32 -0300 | [diff] [blame] | 11 | #include "entry.h" |
Matheus Tavares | 04155bd | 2021-04-18 21:14:53 -0300 | [diff] [blame] | 12 | #include "parallel-checkout.h" |
Elijah Newren | d5ebb50 | 2023-03-21 06:26:01 +0000 | [diff] [blame^] | 13 | #include "wrapper.h" |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 14 | |
Kjetil Barvik | 81a9aa6 | 2009-02-09 21:54:08 +0100 | [diff] [blame] | 15 | static void create_directories(const char *path, int path_len, |
| 16 | const struct checkout *state) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 17 | { |
Jeff King | 3733e69 | 2016-02-22 17:44:28 -0500 | [diff] [blame] | 18 | char *buf = xmallocz(path_len); |
Kjetil Barvik | 81a9aa6 | 2009-02-09 21:54:08 +0100 | [diff] [blame] | 19 | int len = 0; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 20 | |
Kjetil Barvik | 81a9aa6 | 2009-02-09 21:54:08 +0100 | [diff] [blame] | 21 | while (len < path_len) { |
| 22 | do { |
| 23 | buf[len] = path[len]; |
| 24 | len++; |
| 25 | } while (len < path_len && path[len] != '/'); |
| 26 | if (len >= path_len) |
| 27 | break; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 28 | buf[len] = 0; |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 29 | |
Kjetil Barvik | bad4a54 | 2009-01-18 16:14:52 +0100 | [diff] [blame] | 30 | /* |
| 31 | * For 'checkout-index --prefix=<dir>', <dir> is |
| 32 | * allowed to be a symlink to an existing directory, |
| 33 | * and we set 'state->base_dir_len' below, such that |
| 34 | * we test the path components of the prefix with the |
| 35 | * stat() function instead of the lstat() function. |
| 36 | */ |
Kjetil Barvik | 5719989 | 2009-02-09 21:54:06 +0100 | [diff] [blame] | 37 | if (has_dirs_only_path(buf, len, state->base_dir_len)) |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 38 | continue; /* ok, it is already a directory. */ |
| 39 | |
| 40 | /* |
Kjetil Barvik | bad4a54 | 2009-01-18 16:14:52 +0100 | [diff] [blame] | 41 | * If this mkdir() would fail, it could be that there |
| 42 | * is already a symlink or something else exists |
| 43 | * there, therefore we then try to unlink it and try |
| 44 | * one more time to create the directory. |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 45 | */ |
Junio C Hamano | f312de0 | 2005-07-06 01:21:46 -0700 | [diff] [blame] | 46 | if (mkdir(buf, 0777)) { |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 47 | if (errno == EEXIST && state->force && |
Alex Riesen | 691f1a2 | 2009-04-29 23:22:56 +0200 | [diff] [blame] | 48 | !unlink_or_warn(buf) && !mkdir(buf, 0777)) |
Junio C Hamano | fa2e71c | 2007-07-17 22:58:28 -0700 | [diff] [blame] | 49 | continue; |
Thomas Rast | 0721c31 | 2009-06-27 17:58:47 +0200 | [diff] [blame] | 50 | die_errno("cannot create directory at '%s'", buf); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 51 | } |
| 52 | } |
| 53 | free(buf); |
| 54 | } |
| 55 | |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 56 | static void remove_subtree(struct strbuf *path) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 57 | { |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 58 | DIR *dir = opendir(path->buf); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 59 | struct dirent *de; |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 60 | int origlen = path->len; |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 61 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 62 | if (!dir) |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 63 | die_errno("cannot opendir '%s'", path->buf); |
Elijah Newren | b548f0f | 2021-05-12 17:28:22 +0000 | [diff] [blame] | 64 | while ((de = readdir_skip_dot_and_dotdot(dir)) != NULL) { |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 65 | struct stat st; |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 66 | |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 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 Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 71 | if (S_ISDIR(st.st_mode)) |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 72 | remove_subtree(path); |
| 73 | else if (unlink(path->buf)) |
| 74 | die_errno("cannot unlink '%s'", path->buf); |
| 75 | strbuf_setlen(path, origlen); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 76 | } |
| 77 | closedir(dir); |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 78 | if (rmdir(path->buf)) |
| 79 | die_errno("cannot rmdir '%s'", path->buf); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Linus Torvalds | d48a72f | 2005-07-14 09:58:45 -0700 | [diff] [blame] | 82 | static int create_file(const char *path, unsigned int mode) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 83 | { |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 84 | mode = (mode & 0100) ? 0777 : 0666; |
Alex Riesen | 781411e | 2006-01-05 09:58:06 +0100 | [diff] [blame] | 85 | return open(path, O_WRONLY | O_CREAT | O_EXCL, mode); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 86 | } |
| 87 | |
Matt Cooper | e9aa762 | 2021-11-02 15:46:08 +0000 | [diff] [blame] | 88 | void *read_blob_entry(const struct cache_entry *ce, size_t *size) |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 89 | { |
| 90 | enum object_type type; |
Matt Cooper | e9aa762 | 2021-11-02 15:46:08 +0000 | [diff] [blame] | 91 | unsigned long ul; |
| 92 | void *blob_data = read_object_file(&ce->oid, &type, &ul); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 93 | |
Matt Cooper | e9aa762 | 2021-11-02 15:46:08 +0000 | [diff] [blame] | 94 | *size = ul; |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 95 | if (blob_data) { |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 96 | if (type == OBJ_BLOB) |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 97 | return blob_data; |
| 98 | free(blob_data); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 99 | } |
| 100 | return NULL; |
| 101 | } |
| 102 | |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 103 | static int open_output_fd(char *path, const struct cache_entry *ce, int to_tempfile) |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 104 | { |
| 105 | int symlink = (ce->ce_mode & S_IFMT) != S_IFREG; |
| 106 | if (to_tempfile) { |
Jeff King | 330c8e2 | 2015-09-24 17:06:53 -0400 | [diff] [blame] | 107 | xsnprintf(path, TEMPORARY_FILENAME_LENGTH, "%s", |
| 108 | symlink ? ".merge_link_XXXXXX" : ".merge_file_XXXXXX"); |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 109 | return mkstemp(path); |
| 110 | } else { |
| 111 | return create_file(path, !symlink ? ce->ce_mode : 0666); |
| 112 | } |
| 113 | } |
| 114 | |
Matheus Tavares | 49cfd90 | 2021-03-23 11:19:33 -0300 | [diff] [blame] | 115 | int fstat_checkout_output(int fd, const struct checkout *state, struct stat *st) |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 116 | { |
| 117 | /* use fstat() only when path == ce->name */ |
| 118 | if (fstat_is_reliable() && |
| 119 | state->refresh_cache && !state->base_dir_len) { |
Matheus Tavares | 35e6e21 | 2020-07-08 23:10:39 -0300 | [diff] [blame] | 120 | return !fstat(fd, st); |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 121 | } |
| 122 | return 0; |
| 123 | } |
| 124 | |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 125 | static int streaming_write_entry(const struct cache_entry *ce, char *path, |
Junio C Hamano | b669109 | 2011-05-20 14:33:31 -0700 | [diff] [blame] | 126 | struct stream_filter *filter, |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 127 | const struct checkout *state, int to_tempfile, |
| 128 | int *fstat_done, struct stat *statbuf) |
| 129 | { |
Jeff King | d9c31e1 | 2013-03-25 17:49:36 -0400 | [diff] [blame] | 130 | int result = 0; |
Junio C Hamano | 47a02ff | 2012-03-07 17:54:15 +0700 | [diff] [blame] | 131 | int fd; |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 132 | |
| 133 | fd = open_output_fd(path, ce, to_tempfile); |
Jeff King | d9c31e1 | 2013-03-25 17:49:36 -0400 | [diff] [blame] | 134 | if (fd < 0) |
| 135 | return -1; |
| 136 | |
brian m. carlson | 7eda0e4 | 2016-09-05 20:07:59 +0000 | [diff] [blame] | 137 | result |= stream_blob_to_fd(fd, &ce->oid, filter, 1); |
Matheus Tavares | 49cfd90 | 2021-03-23 11:19:33 -0300 | [diff] [blame] | 138 | *fstat_done = fstat_checkout_output(fd, state, statbuf); |
Jeff King | d9c31e1 | 2013-03-25 17:49:36 -0400 | [diff] [blame] | 139 | result |= close(fd); |
| 140 | |
| 141 | if (result) |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 142 | unlink(path); |
| 143 | return result; |
| 144 | } |
| 145 | |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 146 | void enable_delayed_checkout(struct checkout *state) |
| 147 | { |
| 148 | if (!state->delayed_checkout) { |
| 149 | state->delayed_checkout = xmalloc(sizeof(*state->delayed_checkout)); |
| 150 | state->delayed_checkout->state = CE_CAN_DELAY; |
Ævar Arnfjörð Bjarmason | bc40dfb | 2021-07-01 12:51:29 +0200 | [diff] [blame] | 151 | string_list_init_nodup(&state->delayed_checkout->filters); |
| 152 | string_list_init_nodup(&state->delayed_checkout->paths); |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 153 | } |
| 154 | } |
| 155 | |
| 156 | static int remove_available_paths(struct string_list_item *item, void *cb_data) |
| 157 | { |
| 158 | struct string_list *available_paths = cb_data; |
| 159 | struct string_list_item *available; |
| 160 | |
| 161 | available = string_list_lookup(available_paths, item->string); |
| 162 | if (available) |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 163 | available->util = item->util; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 164 | return !available; |
| 165 | } |
| 166 | |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 167 | int finish_delayed_checkout(struct checkout *state, int show_progress) |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 168 | { |
| 169 | int errs = 0; |
SZEDER Gábor | bf6d819 | 2021-09-09 03:10:12 +0200 | [diff] [blame] | 170 | unsigned processed_paths = 0; |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 171 | off_t filtered_bytes = 0; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 172 | struct string_list_item *filter, *path; |
SZEDER Gábor | bf6d819 | 2021-09-09 03:10:12 +0200 | [diff] [blame] | 173 | struct progress *progress = NULL; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 174 | struct delayed_checkout *dco = state->delayed_checkout; |
| 175 | |
| 176 | if (!state->delayed_checkout) |
| 177 | return errs; |
| 178 | |
| 179 | dco->state = CE_RETRY; |
SZEDER Gábor | bf6d819 | 2021-09-09 03:10:12 +0200 | [diff] [blame] | 180 | if (show_progress) |
| 181 | progress = start_delayed_progress(_("Filtering content"), dco->paths.nr); |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 182 | while (dco->filters.nr > 0) { |
| 183 | for_each_string_list_item(filter, &dco->filters) { |
| 184 | struct string_list available_paths = STRING_LIST_INIT_NODUP; |
| 185 | |
| 186 | if (!async_query_available_blobs(filter->string, &available_paths)) { |
| 187 | /* Filter reported an error */ |
| 188 | errs = 1; |
| 189 | filter->string = ""; |
| 190 | continue; |
| 191 | } |
| 192 | if (available_paths.nr <= 0) { |
| 193 | /* |
| 194 | * Filter responded with no entries. That means |
| 195 | * the filter is done and we can remove the |
| 196 | * filter from the list (see |
| 197 | * "string_list_remove_empty_items" call below). |
| 198 | */ |
| 199 | filter->string = ""; |
| 200 | continue; |
| 201 | } |
| 202 | |
| 203 | /* |
| 204 | * In dco->paths we store a list of all delayed paths. |
| 205 | * The filter just send us a list of available paths. |
| 206 | * Remove them from the list. |
| 207 | */ |
| 208 | filter_string_list(&dco->paths, 0, |
| 209 | &remove_available_paths, &available_paths); |
| 210 | |
| 211 | for_each_string_list_item(path, &available_paths) { |
| 212 | struct cache_entry* ce; |
| 213 | |
| 214 | if (!path->util) { |
| 215 | error("external filter '%s' signaled that '%s' " |
| 216 | "is now available although it has not been " |
| 217 | "delayed earlier", |
| 218 | filter->string, path->string); |
| 219 | errs |= 1; |
| 220 | |
| 221 | /* |
| 222 | * Do not ask the filter for available blobs, |
| 223 | * again, as the filter is likely buggy. |
| 224 | */ |
| 225 | filter->string = ""; |
| 226 | continue; |
| 227 | } |
| 228 | ce = index_file_exists(state->istate, path->string, |
| 229 | strlen(path->string), 0); |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 230 | if (ce) { |
SZEDER Gábor | bf6d819 | 2021-09-09 03:10:12 +0200 | [diff] [blame] | 231 | display_progress(progress, ++processed_paths); |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 232 | errs |= checkout_entry(ce, state, NULL, path->util); |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 233 | filtered_bytes += ce->ce_stat_data.sd_size; |
| 234 | display_throughput(progress, filtered_bytes); |
| 235 | } else |
| 236 | errs = 1; |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 237 | } |
| 238 | } |
| 239 | string_list_remove_empty_items(&dco->filters, 0); |
| 240 | } |
Lars Schneider | 52f1d62 | 2017-08-20 17:47:20 +0200 | [diff] [blame] | 241 | stop_progress(&progress); |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 242 | string_list_clear(&dco->filters, 0); |
| 243 | |
| 244 | /* At this point we should not have any delayed paths anymore. */ |
| 245 | errs |= dco->paths.nr; |
| 246 | for_each_string_list_item(path, &dco->paths) { |
| 247 | error("'%s' was not filtered properly", path->string); |
| 248 | } |
| 249 | string_list_clear(&dco->paths, 0); |
| 250 | |
| 251 | free(dco); |
| 252 | state->delayed_checkout = NULL; |
| 253 | |
| 254 | return errs; |
| 255 | } |
| 256 | |
Matheus Tavares | 584a0d1 | 2021-03-23 11:19:34 -0300 | [diff] [blame] | 257 | void update_ce_after_write(const struct checkout *state, struct cache_entry *ce, |
| 258 | struct stat *st) |
| 259 | { |
| 260 | if (state->refresh_cache) { |
| 261 | assert(state->istate); |
| 262 | fill_stat_cache_info(state->istate, ce, st); |
| 263 | ce->ce_flags |= CE_UPDATE_IN_BASE; |
| 264 | mark_fsmonitor_invalid(state->istate, ce); |
| 265 | state->istate->cache_changed |= CE_ENTRY_CHANGED; |
| 266 | } |
| 267 | } |
| 268 | |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 269 | /* Note: ca is used (and required) iff the entry refers to a regular file. */ |
| 270 | static int write_entry(struct cache_entry *ce, char *path, struct conv_attrs *ca, |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 271 | const struct checkout *state, int to_tempfile, |
| 272 | int *nr_checkouts) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 273 | { |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 274 | unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT; |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 275 | struct delayed_checkout *dco = state->delayed_checkout; |
Kjetil Barvik | e4c7292 | 2009-02-09 21:54:51 +0100 | [diff] [blame] | 276 | int fd, ret, fstat_done = 0; |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 277 | char *new_blob; |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 278 | struct strbuf buf = STRBUF_INIT; |
Matt Cooper | e9aa762 | 2021-11-02 15:46:08 +0000 | [diff] [blame] | 279 | size_t size; |
Jeff King | 564bde9 | 2017-09-13 13:16:28 -0400 | [diff] [blame] | 280 | ssize_t wrote; |
| 281 | size_t newsize = 0; |
Kjetil Barvik | e4c7292 | 2009-02-09 21:54:51 +0100 | [diff] [blame] | 282 | struct stat st; |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 283 | const struct submodule *sub; |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 284 | struct checkout_metadata meta; |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 285 | static int scratch_nr_checkouts; |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 286 | |
| 287 | clone_checkout_metadata(&meta, &state->meta, &ce->oid); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 288 | |
Junio C Hamano | b669109 | 2011-05-20 14:33:31 -0700 | [diff] [blame] | 289 | if (ce_mode_s_ifmt == S_IFREG) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 290 | struct stream_filter *filter = get_stream_filter_ca(ca, &ce->oid); |
Junio C Hamano | b669109 | 2011-05-20 14:33:31 -0700 | [diff] [blame] | 291 | if (filter && |
| 292 | !streaming_write_entry(ce, path, filter, |
| 293 | state, to_tempfile, |
| 294 | &fstat_done, &st)) |
| 295 | goto finish; |
| 296 | } |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 297 | |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 298 | switch (ce_mode_s_ifmt) { |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 299 | case S_IFLNK: |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 300 | new_blob = read_blob_entry(ce, &size); |
| 301 | if (!new_blob) |
Nguyễn Thái Ngọc Duy | d43e907 | 2010-11-28 11:36:38 +0700 | [diff] [blame] | 302 | return error("unable to read sha1 file of %s (%s)", |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 303 | ce->name, oid_to_hex(&ce->oid)); |
Junio C Hamano | 1a9d7e9 | 2007-08-14 01:41:02 -0700 | [diff] [blame] | 304 | |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 305 | /* |
| 306 | * We can't make a real symlink; write out a regular file entry |
| 307 | * with the symlink destination as its contents. |
| 308 | */ |
| 309 | if (!has_symlinks || to_tempfile) |
| 310 | goto write_file_entry; |
| 311 | |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 312 | ret = symlink(new_blob, path); |
| 313 | free(new_blob); |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 314 | if (ret) |
| 315 | return error_errno("unable to create symlink %s", path); |
| 316 | break; |
| 317 | |
| 318 | case S_IFREG: |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 319 | /* |
| 320 | * We do not send the blob in case of a retry, so do not |
| 321 | * bother reading it at all. |
| 322 | */ |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 323 | if (dco && dco->state == CE_RETRY) { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 324 | new_blob = NULL; |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 325 | size = 0; |
| 326 | } else { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 327 | new_blob = read_blob_entry(ce, &size); |
| 328 | if (!new_blob) |
Jeff King | c602d3a | 2017-10-09 13:48:52 -0400 | [diff] [blame] | 329 | return error("unable to read sha1 file of %s (%s)", |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 330 | ce->name, oid_to_hex(&ce->oid)); |
Kjetil Barvik | 4857c76 | 2009-02-09 21:54:50 +0100 | [diff] [blame] | 331 | } |
| 332 | |
Junio C Hamano | 1a9d7e9 | 2007-08-14 01:41:02 -0700 | [diff] [blame] | 333 | /* |
| 334 | * Convert from git internal format to working tree format |
| 335 | */ |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 336 | if (dco && dco->state != CE_NO_DELAY) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 337 | ret = async_convert_to_working_tree_ca(ca, ce->name, |
| 338 | new_blob, size, |
| 339 | &buf, &meta, dco); |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 340 | if (ret) { |
| 341 | struct string_list_item *item = |
| 342 | string_list_lookup(&dco->paths, ce->name); |
| 343 | if (item) { |
| 344 | item->util = nr_checkouts ? nr_checkouts |
| 345 | : &scratch_nr_checkouts; |
| 346 | free(new_blob); |
| 347 | goto delayed; |
| 348 | } |
Lars Schneider | 2841e8f | 2017-06-30 22:41:28 +0200 | [diff] [blame] | 349 | } |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 350 | } else { |
| 351 | ret = convert_to_working_tree_ca(ca, ce->name, new_blob, |
| 352 | size, &buf, &meta); |
| 353 | } |
Junio C Hamano | 1a9d7e9 | 2007-08-14 01:41:02 -0700 | [diff] [blame] | 354 | |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 355 | if (ret) { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 356 | free(new_blob); |
| 357 | new_blob = strbuf_detach(&buf, &newsize); |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 358 | size = newsize; |
| 359 | } |
| 360 | /* |
| 361 | * No "else" here as errors from convert are OK at this |
| 362 | * point. If the error would have been fatal (e.g. |
| 363 | * filter is required), then we would have died already. |
| 364 | */ |
| 365 | |
| 366 | write_file_entry: |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 367 | fd = open_output_fd(path, ce, to_tempfile); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 368 | if (fd < 0) { |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 369 | free(new_blob); |
Nguyễn Thái Ngọc Duy | e1ebb3c | 2016-05-08 16:47:44 +0700 | [diff] [blame] | 370 | return error_errno("unable to create file %s", path); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 371 | } |
Linus Torvalds | 6c510be | 2007-02-13 11:07:23 -0800 | [diff] [blame] | 372 | |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 373 | wrote = write_in_full(fd, new_blob, size); |
Junio C Hamano | fd5db55 | 2011-05-12 21:36:42 -0700 | [diff] [blame] | 374 | if (!to_tempfile) |
Matheus Tavares | 49cfd90 | 2021-03-23 11:19:33 -0300 | [diff] [blame] | 375 | fstat_done = fstat_checkout_output(fd, state, &st); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 376 | close(fd); |
Brandon Williams | d8f7180 | 2018-02-14 10:59:41 -0800 | [diff] [blame] | 377 | free(new_blob); |
Jeff King | 564bde9 | 2017-09-13 13:16:28 -0400 | [diff] [blame] | 378 | if (wrote < 0) |
Nguyễn Thái Ngọc Duy | d43e907 | 2010-11-28 11:36:38 +0700 | [diff] [blame] | 379 | return error("unable to write file %s", path); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 380 | break; |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 381 | |
Martin Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 382 | case S_IFGITLINK: |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 383 | if (to_tempfile) |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 384 | return error("cannot create temporary submodule %s", ce->name); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 385 | if (mkdir(path, 0777) < 0) |
Thomas Rast | 42063f9 | 2013-07-18 14:26:55 +0200 | [diff] [blame] | 386 | return error("cannot create submodule directory %s", path); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 387 | sub = submodule_from_ce(ce); |
| 388 | if (sub) |
Ævar Arnfjörð Bjarmason | 4002ec3 | 2022-12-20 13:39:56 +0100 | [diff] [blame] | 389 | return submodule_move_head(ce->name, state->super_prefix, |
Stefan Beller | cd279e2 | 2017-04-18 14:37:22 -0700 | [diff] [blame] | 390 | NULL, oid_to_hex(&ce->oid), |
| 391 | state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0); |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 392 | break; |
Jeff King | 7cbbf9d | 2017-10-09 13:50:05 -0400 | [diff] [blame] | 393 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 394 | default: |
Matheus Tavares | 9334ea8 | 2021-02-16 11:06:51 -0300 | [diff] [blame] | 395 | return error("unknown file mode for %s in index", ce->name); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Junio C Hamano | dd8e912 | 2011-05-12 14:31:08 -0700 | [diff] [blame] | 398 | finish: |
Linus Torvalds | 6ee67f2 | 2005-06-05 23:15:40 -0700 | [diff] [blame] | 399 | if (state->refresh_cache) { |
Matheus Tavares | 584a0d1 | 2021-03-23 11:19:34 -0300 | [diff] [blame] | 400 | if (!fstat_done && lstat(ce->name, &st) < 0) |
| 401 | return error_errno("unable to stat just-written file %s", |
| 402 | ce->name); |
| 403 | update_ce_after_write(state, ce , &st); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 404 | } |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 405 | if (nr_checkouts) |
| 406 | (*nr_checkouts)++; |
Lars Schneider | 03b9533 | 2017-10-05 12:44:06 +0200 | [diff] [blame] | 407 | delayed: |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 411 | /* |
| 412 | * This is like 'lstat()', except it refuses to follow symlinks |
Junio C Hamano | da02ca5 | 2009-08-16 23:53:12 -0700 | [diff] [blame] | 413 | * in the path, after skipping "skiplen". |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 414 | */ |
Junio C Hamano | 61b97df | 2010-01-11 22:27:31 -0800 | [diff] [blame] | 415 | static int check_path(const char *path, int len, struct stat *st, int skiplen) |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 416 | { |
Junio C Hamano | da02ca5 | 2009-08-16 23:53:12 -0700 | [diff] [blame] | 417 | const char *slash = path + len; |
| 418 | |
| 419 | while (path < slash && *slash != '/') |
| 420 | slash--; |
| 421 | if (!has_dirs_only_path(path, slash - path, skiplen)) { |
Linus Torvalds | b6986d8 | 2009-07-29 20:22:25 -0700 | [diff] [blame] | 422 | errno = ENOENT; |
| 423 | return -1; |
| 424 | } |
| 425 | return lstat(path, st); |
| 426 | } |
| 427 | |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 428 | static void mark_colliding_entries(const struct checkout *state, |
| 429 | struct cache_entry *ce, struct stat *st) |
| 430 | { |
| 431 | int i, trust_ino = check_stat; |
| 432 | |
Nguyễn Thái Ngọc Duy | e66ceca | 2018-11-20 17:28:53 +0100 | [diff] [blame] | 433 | #if defined(GIT_WINDOWS_NATIVE) || defined(__CYGWIN__) |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 434 | trust_ino = 0; |
| 435 | #endif |
| 436 | |
| 437 | ce->ce_flags |= CE_MATCHED; |
| 438 | |
Derrick Stolee | 3450a30 | 2021-04-01 01:49:55 +0000 | [diff] [blame] | 439 | /* TODO: audit for interaction with sparse-index. */ |
| 440 | ensure_full_index(state->istate); |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 441 | for (i = 0; i < state->istate->cache_nr; i++) { |
| 442 | struct cache_entry *dup = state->istate->cache[i]; |
| 443 | |
Matheus Tavares | 04155bd | 2021-04-18 21:14:53 -0300 | [diff] [blame] | 444 | if (dup == ce) { |
| 445 | /* |
| 446 | * Parallel checkout doesn't create the files in index |
| 447 | * order. So the other side of the collision may appear |
| 448 | * after the given cache_entry in the array. |
| 449 | */ |
| 450 | if (parallel_checkout_status() == PC_RUNNING) |
| 451 | continue; |
| 452 | else |
| 453 | break; |
| 454 | } |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 455 | |
| 456 | if (dup->ce_flags & (CE_MATCHED | CE_VALID | CE_SKIP_WORKTREE)) |
| 457 | continue; |
| 458 | |
Nguyễn Thái Ngọc Duy | e66ceca | 2018-11-20 17:28:53 +0100 | [diff] [blame] | 459 | if ((trust_ino && !match_stat_data(&dup->ce_stat_data, st)) || |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 460 | (!trust_ino && !fspathcmp(ce->name, dup->name))) { |
| 461 | dup->ce_flags |= CE_MATCHED; |
| 462 | break; |
| 463 | } |
| 464 | } |
| 465 | } |
| 466 | |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 467 | int checkout_entry_ca(struct cache_entry *ce, struct conv_attrs *ca, |
| 468 | const struct checkout *state, char *topath, |
| 469 | int *nr_checkouts) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 470 | { |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 471 | static struct strbuf path = STRBUF_INIT; |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 472 | struct stat st; |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 473 | struct conv_attrs ca_buf; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 474 | |
Thomas Gummerer | 536ec18 | 2018-12-20 13:48:15 +0000 | [diff] [blame] | 475 | if (ce->ce_flags & CE_WT_REMOVE) { |
| 476 | if (topath) |
| 477 | /* |
| 478 | * No content and thus no path to create, so we have |
| 479 | * no pathname to return. |
| 480 | */ |
| 481 | BUG("Can't remove entry to a path"); |
Ævar Arnfjörð Bjarmason | 4002ec3 | 2022-12-20 13:39:56 +0100 | [diff] [blame] | 482 | unlink_entry(ce, state->super_prefix); |
Thomas Gummerer | 536ec18 | 2018-12-20 13:48:15 +0000 | [diff] [blame] | 483 | return 0; |
| 484 | } |
| 485 | |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 486 | if (topath) { |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 487 | if (S_ISREG(ce->ce_mode) && !ca) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 488 | convert_attrs(state->istate, &ca_buf, ce->name); |
| 489 | ca = &ca_buf; |
| 490 | } |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 491 | return write_entry(ce, topath, ca, state, 1, nr_checkouts); |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 492 | } |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 493 | |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 494 | strbuf_reset(&path); |
| 495 | strbuf_add(&path, state->base_dir, state->base_dir_len); |
| 496 | strbuf_add(&path, ce->name, ce_namelen(ce)); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 497 | |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 498 | if (!check_path(path.buf, path.len, &st, state->base_dir_len)) { |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 499 | const struct submodule *sub; |
Nguyễn Thái Ngọc Duy | 74cfc0e | 2018-08-13 18:14:32 +0200 | [diff] [blame] | 500 | unsigned changed = ie_match_stat(state->istate, ce, &st, |
| 501 | CE_MATCH_IGNORE_VALID | CE_MATCH_IGNORE_SKIP_WORKTREE); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 502 | /* |
| 503 | * Needs to be checked before !changed returns early, |
| 504 | * as the possibly empty directory was not changed |
| 505 | */ |
| 506 | sub = submodule_from_ce(ce); |
| 507 | if (sub) { |
| 508 | int err; |
| 509 | if (!is_submodule_populated_gently(ce->name, &err)) { |
| 510 | struct stat sb; |
| 511 | if (lstat(ce->name, &sb)) |
| 512 | die(_("could not stat file '%s'"), ce->name); |
| 513 | if (!(st.st_mode & S_IFDIR)) |
| 514 | unlink_or_warn(ce->name); |
| 515 | |
Ævar Arnfjörð Bjarmason | 4002ec3 | 2022-12-20 13:39:56 +0100 | [diff] [blame] | 516 | return submodule_move_head(ce->name, state->super_prefix, |
Stefan Beller | cd279e2 | 2017-04-18 14:37:22 -0700 | [diff] [blame] | 517 | NULL, oid_to_hex(&ce->oid), 0); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 518 | } else |
Ævar Arnfjörð Bjarmason | 4002ec3 | 2022-12-20 13:39:56 +0100 | [diff] [blame] | 519 | return submodule_move_head(ce->name, state->super_prefix, |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 520 | "HEAD", oid_to_hex(&ce->oid), |
Stefan Beller | cd279e2 | 2017-04-18 14:37:22 -0700 | [diff] [blame] | 521 | state->force ? SUBMODULE_MOVE_HEAD_FORCE : 0); |
Stefan Beller | 6d14eac | 2017-03-14 14:46:40 -0700 | [diff] [blame] | 522 | } |
| 523 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 524 | if (!changed) |
| 525 | return 0; |
| 526 | if (!state->force) { |
| 527 | if (!state->quiet) |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 528 | fprintf(stderr, |
| 529 | "%s already exists, no checkout\n", |
| 530 | path.buf); |
Junio C Hamano | 4b12dae | 2005-10-03 12:44:48 -0700 | [diff] [blame] | 531 | return -1; |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 532 | } |
| 533 | |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 534 | if (state->clone) |
| 535 | mark_colliding_entries(state, ce, &st); |
| 536 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 537 | /* |
| 538 | * We unlink the old file, to get the new one with the |
| 539 | * right permissions (including umask, which is nasty |
| 540 | * to emulate by hand - much easier to let the system |
| 541 | * just do the right thing) |
| 542 | */ |
Linus Torvalds | d48a72f | 2005-07-14 09:58:45 -0700 | [diff] [blame] | 543 | if (S_ISDIR(st.st_mode)) { |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 544 | /* If it is a gitlink, leave it alone! */ |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 545 | if (S_ISGITLINK(ce->ce_mode)) |
Linus Torvalds | f0807e6 | 2007-04-13 09:26:04 -0700 | [diff] [blame] | 546 | return 0; |
Michael Haggerty | 2f29e0c | 2014-03-13 10:19:08 +0100 | [diff] [blame] | 547 | remove_subtree(&path); |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 548 | } else if (unlink(path.buf)) |
Nguyễn Thái Ngọc Duy | e1ebb3c | 2016-05-08 16:47:44 +0700 | [diff] [blame] | 549 | return error_errno("unable to unlink old '%s'", path.buf); |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 550 | } else if (state->not_new) |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 551 | return 0; |
Michael Haggerty | f63272a | 2014-03-13 10:19:07 +0100 | [diff] [blame] | 552 | |
| 553 | create_directories(path.buf, path.len, state); |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 554 | |
Matheus Tavares | ae22751 | 2021-03-23 11:19:36 -0300 | [diff] [blame] | 555 | if (S_ISREG(ce->ce_mode) && !ca) { |
Matheus Tavares | 30419e7 | 2021-03-23 11:19:35 -0300 | [diff] [blame] | 556 | convert_attrs(state->istate, &ca_buf, ce->name); |
| 557 | ca = &ca_buf; |
| 558 | } |
| 559 | |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 560 | if (!enqueue_checkout(ce, ca, nr_checkouts)) |
Matheus Tavares | 04155bd | 2021-04-18 21:14:53 -0300 | [diff] [blame] | 561 | return 0; |
| 562 | |
Matheus Tavares | 611c778 | 2022-07-14 08:49:12 -0300 | [diff] [blame] | 563 | return write_entry(ce, path.buf, ca, state, 0, nr_checkouts); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 564 | } |
Thomas Gummerer | b702dd1 | 2018-12-20 13:48:14 +0000 | [diff] [blame] | 565 | |
Ævar Arnfjörð Bjarmason | 4002ec3 | 2022-12-20 13:39:56 +0100 | [diff] [blame] | 566 | void unlink_entry(const struct cache_entry *ce, const char *super_prefix) |
Thomas Gummerer | b702dd1 | 2018-12-20 13:48:14 +0000 | [diff] [blame] | 567 | { |
| 568 | const struct submodule *sub = submodule_from_ce(ce); |
| 569 | if (sub) { |
| 570 | /* state.force is set at the caller. */ |
Ævar Arnfjörð Bjarmason | 4002ec3 | 2022-12-20 13:39:56 +0100 | [diff] [blame] | 571 | submodule_move_head(ce->name, super_prefix, "HEAD", NULL, |
Thomas Gummerer | b702dd1 | 2018-12-20 13:48:14 +0000 | [diff] [blame] | 572 | SUBMODULE_MOVE_HEAD_FORCE); |
| 573 | } |
Matheus Tavares | fab78a0 | 2021-03-18 15:43:47 -0300 | [diff] [blame] | 574 | if (check_leading_path(ce->name, ce_namelen(ce), 1) >= 0) |
Thomas Gummerer | b702dd1 | 2018-12-20 13:48:14 +0000 | [diff] [blame] | 575 | return; |
| 576 | if (remove_or_warn(ce->ce_mode, ce->name)) |
| 577 | return; |
| 578 | schedule_dir_for_removal(ce->name, ce_namelen(ce)); |
| 579 | } |