Blame


1 86c3caaf 2018-03-09 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 86c3caaf 2018-03-09 stsp *
4 86c3caaf 2018-03-09 stsp * Permission to use, copy, modify, and distribute this software for any
5 86c3caaf 2018-03-09 stsp * purpose with or without fee is hereby granted, provided that the above
6 86c3caaf 2018-03-09 stsp * copyright notice and this permission notice appear in all copies.
7 86c3caaf 2018-03-09 stsp *
8 86c3caaf 2018-03-09 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 86c3caaf 2018-03-09 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 86c3caaf 2018-03-09 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 86c3caaf 2018-03-09 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 86c3caaf 2018-03-09 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 86c3caaf 2018-03-09 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 86c3caaf 2018-03-09 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 86c3caaf 2018-03-09 stsp */
16 86c3caaf 2018-03-09 stsp
17 86c3caaf 2018-03-09 stsp #include <sys/stat.h>
18 9d31a1d8 2018-03-11 stsp #include <sys/queue.h>
19 133d2798 2019-01-08 stsp #include <sys/tree.h>
20 86c3caaf 2018-03-09 stsp
21 d1f6d47b 2019-02-04 stsp #include <dirent.h>
22 12ce7a6c 2019-08-12 stsp #include <limits.h>
23 f5c49f82 2019-01-06 stsp #include <stddef.h>
24 86c3caaf 2018-03-09 stsp #include <string.h>
25 86c3caaf 2018-03-09 stsp #include <stdio.h>
26 86c3caaf 2018-03-09 stsp #include <stdlib.h>
27 303e14b5 2019-09-23 stsp #include <time.h>
28 86c3caaf 2018-03-09 stsp #include <fcntl.h>
29 86c3caaf 2018-03-09 stsp #include <errno.h>
30 86c3caaf 2018-03-09 stsp #include <unistd.h>
31 9d31a1d8 2018-03-11 stsp #include <sha1.h>
32 9d31a1d8 2018-03-11 stsp #include <zlib.h>
33 9d31a1d8 2018-03-11 stsp #include <fnmatch.h>
34 512f0d0e 2019-01-02 stsp #include <libgen.h>
35 ec22038e 2019-03-10 stsp #include <uuid.h>
36 7154f6ce 2019-03-27 stsp #include <util.h>
37 86c3caaf 2018-03-09 stsp
38 86c3caaf 2018-03-09 stsp #include "got_error.h"
39 86c3caaf 2018-03-09 stsp #include "got_repository.h"
40 5261c201 2018-04-01 stsp #include "got_reference.h"
41 9d31a1d8 2018-03-11 stsp #include "got_object.h"
42 1dd54920 2019-05-11 stsp #include "got_path.h"
43 e6209546 2019-08-22 stsp #include "got_cancel.h"
44 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
45 511a516b 2018-05-19 stsp #include "got_opentemp.h"
46 234035bc 2019-06-01 stsp #include "got_diff.h"
47 86c3caaf 2018-03-09 stsp
48 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
49 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
50 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
51 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
52 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
53 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
54 ed175427 2019-05-09 stsp #include "got_lib_object_parse.h"
55 cf066bf8 2019-05-09 stsp #include "got_lib_object_create.h"
56 24519714 2019-05-09 stsp #include "got_lib_object_idset.h"
57 6353ad76 2019-02-08 stsp #include "got_lib_diff.h"
58 50b0790e 2020-09-11 stsp #include "got_lib_gotconfig.h"
59 9d31a1d8 2018-03-11 stsp
60 9d31a1d8 2018-03-11 stsp #ifndef MIN
61 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
62 9d31a1d8 2018-03-11 stsp #endif
63 f69721c3 2019-10-21 stsp
64 f69721c3 2019-10-21 stsp #define GOT_MERGE_LABEL_MERGED "merged change"
65 f69721c3 2019-10-21 stsp #define GOT_MERGE_LABEL_BASE "3-way merge base"
66 86c3caaf 2018-03-09 stsp
67 99724ed4 2018-03-10 stsp static const struct got_error *
68 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
69 99724ed4 2018-03-10 stsp {
70 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
71 99724ed4 2018-03-10 stsp char *path;
72 99724ed4 2018-03-10 stsp
73 2c7829a4 2019-06-17 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1)
74 2c7829a4 2019-06-17 stsp return got_error_from_errno("asprintf");
75 99724ed4 2018-03-10 stsp
76 2c7829a4 2019-06-17 stsp err = got_path_create_file(path, content);
77 99724ed4 2018-03-10 stsp free(path);
78 507dc3bb 2018-12-29 stsp return err;
79 507dc3bb 2018-12-29 stsp }
80 507dc3bb 2018-12-29 stsp
81 507dc3bb 2018-12-29 stsp static const struct got_error *
82 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
83 507dc3bb 2018-12-29 stsp {
84 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
85 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
86 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
87 507dc3bb 2018-12-29 stsp char *path = NULL;
88 507dc3bb 2018-12-29 stsp
89 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
90 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
91 507dc3bb 2018-12-29 stsp path = NULL;
92 507dc3bb 2018-12-29 stsp goto done;
93 507dc3bb 2018-12-29 stsp }
94 507dc3bb 2018-12-29 stsp
95 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
96 507dc3bb 2018-12-29 stsp if (err)
97 507dc3bb 2018-12-29 stsp goto done;
98 507dc3bb 2018-12-29 stsp
99 507dc3bb 2018-12-29 stsp if (content) {
100 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
101 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
102 638f9024 2019-05-13 stsp err = got_error_from_errno2("fprintf", tmppath);
103 507dc3bb 2018-12-29 stsp goto done;
104 507dc3bb 2018-12-29 stsp }
105 507dc3bb 2018-12-29 stsp }
106 507dc3bb 2018-12-29 stsp
107 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
108 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath, path);
109 2a57020b 2019-02-20 stsp unlink(tmppath);
110 507dc3bb 2018-12-29 stsp goto done;
111 507dc3bb 2018-12-29 stsp }
112 507dc3bb 2018-12-29 stsp
113 507dc3bb 2018-12-29 stsp done:
114 56b63ca4 2021-01-22 stsp if (fclose(tmpfile) == EOF && err == NULL)
115 638f9024 2019-05-13 stsp err = got_error_from_errno2("fclose", tmppath);
116 230a42bd 2019-05-11 jcs free(tmppath);
117 99724ed4 2018-03-10 stsp return err;
118 99724ed4 2018-03-10 stsp }
119 99724ed4 2018-03-10 stsp
120 09fe317a 2018-03-11 stsp static const struct got_error *
121 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
122 09fe317a 2018-03-11 stsp {
123 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
124 09fe317a 2018-03-11 stsp char *path;
125 09fe317a 2018-03-11 stsp int fd = -1;
126 09fe317a 2018-03-11 stsp ssize_t n;
127 09fe317a 2018-03-11 stsp struct stat sb;
128 09fe317a 2018-03-11 stsp
129 09fe317a 2018-03-11 stsp *content = NULL;
130 09fe317a 2018-03-11 stsp
131 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
132 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
133 09fe317a 2018-03-11 stsp path = NULL;
134 09fe317a 2018-03-11 stsp goto done;
135 09fe317a 2018-03-11 stsp }
136 09fe317a 2018-03-11 stsp
137 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
138 09fe317a 2018-03-11 stsp if (fd == -1) {
139 f02eaa22 2019-03-11 stsp if (errno == ENOENT)
140 a2e6d162 2019-07-27 stsp err = got_error_path(path, GOT_ERR_WORKTREE_META);
141 f02eaa22 2019-03-11 stsp else
142 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", path);
143 ef99fdb1 2018-03-11 stsp goto done;
144 ef99fdb1 2018-03-11 stsp }
145 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
146 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
147 638f9024 2019-05-13 stsp : got_error_from_errno2("flock", path));
148 09fe317a 2018-03-11 stsp goto done;
149 09fe317a 2018-03-11 stsp }
150 09fe317a 2018-03-11 stsp
151 e4b9a50c 2019-07-27 stsp if (fstat(fd, &sb) != 0) {
152 e4b9a50c 2019-07-27 stsp err = got_error_from_errno2("fstat", path);
153 d10c9b58 2019-02-19 stsp goto done;
154 d10c9b58 2019-02-19 stsp }
155 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
156 09fe317a 2018-03-11 stsp if (*content == NULL) {
157 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
158 09fe317a 2018-03-11 stsp goto done;
159 09fe317a 2018-03-11 stsp }
160 09fe317a 2018-03-11 stsp
161 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
162 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
163 638f9024 2019-05-13 stsp err = (n == -1 ? got_error_from_errno2("read", path) :
164 a2e6d162 2019-07-27 stsp got_error_path(path, GOT_ERR_WORKTREE_META));
165 09fe317a 2018-03-11 stsp goto done;
166 09fe317a 2018-03-11 stsp }
167 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
168 a2e6d162 2019-07-27 stsp err = got_error_path(path, GOT_ERR_WORKTREE_META);
169 09fe317a 2018-03-11 stsp goto done;
170 09fe317a 2018-03-11 stsp }
171 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
172 09fe317a 2018-03-11 stsp
173 09fe317a 2018-03-11 stsp done:
174 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
175 638f9024 2019-05-13 stsp err = got_error_from_errno2("close", path_got);
176 09fe317a 2018-03-11 stsp free(path);
177 09fe317a 2018-03-11 stsp if (err) {
178 09fe317a 2018-03-11 stsp free(*content);
179 09fe317a 2018-03-11 stsp *content = NULL;
180 09fe317a 2018-03-11 stsp }
181 09fe317a 2018-03-11 stsp return err;
182 09fe317a 2018-03-11 stsp }
183 09fe317a 2018-03-11 stsp
184 024e9686 2019-05-14 stsp static const struct got_error *
185 024e9686 2019-05-14 stsp write_head_ref(const char *path_got, struct got_reference *head_ref)
186 024e9686 2019-05-14 stsp {
187 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
188 024e9686 2019-05-14 stsp char *refstr = NULL;
189 024e9686 2019-05-14 stsp
190 024e9686 2019-05-14 stsp if (got_ref_is_symbolic(head_ref)) {
191 024e9686 2019-05-14 stsp refstr = got_ref_to_str(head_ref);
192 024e9686 2019-05-14 stsp if (refstr == NULL)
193 024e9686 2019-05-14 stsp return got_error_from_errno("got_ref_to_str");
194 024e9686 2019-05-14 stsp } else {
195 024e9686 2019-05-14 stsp refstr = strdup(got_ref_get_name(head_ref));
196 024e9686 2019-05-14 stsp if (refstr == NULL)
197 024e9686 2019-05-14 stsp return got_error_from_errno("strdup");
198 024e9686 2019-05-14 stsp }
199 024e9686 2019-05-14 stsp err = update_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
200 024e9686 2019-05-14 stsp free(refstr);
201 024e9686 2019-05-14 stsp return err;
202 024e9686 2019-05-14 stsp }
203 024e9686 2019-05-14 stsp
204 86c3caaf 2018-03-09 stsp const struct got_error *
205 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
206 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
207 86c3caaf 2018-03-09 stsp {
208 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
209 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
210 ec22038e 2019-03-10 stsp uuid_t uuid;
211 ec22038e 2019-03-10 stsp uint32_t uuid_status;
212 65596e15 2018-12-24 stsp int obj_type;
213 7ac97322 2018-03-11 stsp char *path_got = NULL;
214 1451e70d 2018-03-10 stsp char *formatstr = NULL;
215 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
216 65596e15 2018-12-24 stsp char *basestr = NULL;
217 ec22038e 2019-03-10 stsp char *uuidstr = NULL;
218 65596e15 2018-12-24 stsp
219 0c48fee2 2019-03-11 stsp if (strcmp(path, got_repo_get_path(repo)) == 0) {
220 0c48fee2 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_REPO);
221 0c48fee2 2019-03-11 stsp goto done;
222 0c48fee2 2019-03-11 stsp }
223 0c48fee2 2019-03-11 stsp
224 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
225 65596e15 2018-12-24 stsp if (err)
226 65596e15 2018-12-24 stsp return err;
227 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
228 65596e15 2018-12-24 stsp if (err)
229 65596e15 2018-12-24 stsp return err;
230 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
231 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
232 86c3caaf 2018-03-09 stsp
233 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
234 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
235 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
236 0bb8a95e 2018-03-12 stsp }
237 577ec78f 2018-03-11 stsp
238 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
239 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
240 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path);
241 86c3caaf 2018-03-09 stsp goto done;
242 86c3caaf 2018-03-09 stsp }
243 86c3caaf 2018-03-09 stsp
244 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
245 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
246 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
247 86c3caaf 2018-03-09 stsp goto done;
248 86c3caaf 2018-03-09 stsp }
249 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
250 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path_got);
251 86c3caaf 2018-03-09 stsp goto done;
252 86c3caaf 2018-03-09 stsp }
253 86c3caaf 2018-03-09 stsp
254 056e7441 2018-03-11 stsp /* Create an empty lock file. */
255 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
256 056e7441 2018-03-11 stsp if (err)
257 056e7441 2018-03-11 stsp goto done;
258 056e7441 2018-03-11 stsp
259 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
260 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
261 99724ed4 2018-03-10 stsp if (err)
262 86c3caaf 2018-03-09 stsp goto done;
263 86c3caaf 2018-03-09 stsp
264 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
265 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
266 65596e15 2018-12-24 stsp if (err)
267 65596e15 2018-12-24 stsp goto done;
268 65596e15 2018-12-24 stsp
269 65596e15 2018-12-24 stsp /* Record our base commit. */
270 65596e15 2018-12-24 stsp err = got_object_id_str(&basestr, commit_id);
271 65596e15 2018-12-24 stsp if (err)
272 65596e15 2018-12-24 stsp goto done;
273 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
274 99724ed4 2018-03-10 stsp if (err)
275 86c3caaf 2018-03-09 stsp goto done;
276 86c3caaf 2018-03-09 stsp
277 1451e70d 2018-03-10 stsp /* Store path to repository. */
278 7839bc15 2019-01-06 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
279 7839bc15 2019-01-06 stsp got_repo_get_path(repo));
280 99724ed4 2018-03-10 stsp if (err)
281 86c3caaf 2018-03-09 stsp goto done;
282 86c3caaf 2018-03-09 stsp
283 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
284 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
285 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
286 ec22038e 2019-03-10 stsp if (err)
287 ec22038e 2019-03-10 stsp goto done;
288 ec22038e 2019-03-10 stsp
289 ec22038e 2019-03-10 stsp /* Generate UUID. */
290 ec22038e 2019-03-10 stsp uuid_create(&uuid, &uuid_status);
291 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
292 cc483380 2019-09-01 stsp err = got_error_uuid(uuid_status, "uuid_create");
293 ec22038e 2019-03-10 stsp goto done;
294 ec22038e 2019-03-10 stsp }
295 ec22038e 2019-03-10 stsp uuid_to_string(&uuid, &uuidstr, &uuid_status);
296 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
297 cc483380 2019-09-01 stsp err = got_error_uuid(uuid_status, "uuid_to_string");
298 ec22038e 2019-03-10 stsp goto done;
299 ec22038e 2019-03-10 stsp }
300 ec22038e 2019-03-10 stsp err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
301 577ec78f 2018-03-11 stsp if (err)
302 577ec78f 2018-03-11 stsp goto done;
303 577ec78f 2018-03-11 stsp
304 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
305 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
306 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
307 1451e70d 2018-03-10 stsp goto done;
308 1451e70d 2018-03-10 stsp }
309 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
310 99724ed4 2018-03-10 stsp if (err)
311 1451e70d 2018-03-10 stsp goto done;
312 1451e70d 2018-03-10 stsp
313 86c3caaf 2018-03-09 stsp done:
314 65596e15 2018-12-24 stsp free(commit_id);
315 7ac97322 2018-03-11 stsp free(path_got);
316 1451e70d 2018-03-10 stsp free(formatstr);
317 0bb8a95e 2018-03-12 stsp free(absprefix);
318 65596e15 2018-12-24 stsp free(basestr);
319 ec22038e 2019-03-10 stsp free(uuidstr);
320 86c3caaf 2018-03-09 stsp return err;
321 86c3caaf 2018-03-09 stsp }
322 86c3caaf 2018-03-09 stsp
323 247140b2 2019-02-05 stsp static const struct got_error *
324 247140b2 2019-02-05 stsp open_worktree(struct got_worktree **worktree, const char *path)
325 86c3caaf 2018-03-09 stsp {
326 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
327 7ac97322 2018-03-11 stsp char *path_got;
328 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
329 c442a90d 2019-03-10 stsp char *uuidstr = NULL;
330 056e7441 2018-03-11 stsp char *path_lock = NULL;
331 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
332 6d9d28c3 2018-03-11 stsp int version, fd = -1;
333 6d9d28c3 2018-03-11 stsp const char *errstr;
334 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
335 c442a90d 2019-03-10 stsp uint32_t uuid_status;
336 6d9d28c3 2018-03-11 stsp
337 6d9d28c3 2018-03-11 stsp *worktree = NULL;
338 6d9d28c3 2018-03-11 stsp
339 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
340 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
341 7ac97322 2018-03-11 stsp path_got = NULL;
342 6d9d28c3 2018-03-11 stsp goto done;
343 6d9d28c3 2018-03-11 stsp }
344 6d9d28c3 2018-03-11 stsp
345 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
346 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
347 056e7441 2018-03-11 stsp path_lock = NULL;
348 6d9d28c3 2018-03-11 stsp goto done;
349 6d9d28c3 2018-03-11 stsp }
350 6d9d28c3 2018-03-11 stsp
351 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
352 6d9d28c3 2018-03-11 stsp if (fd == -1) {
353 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
354 638f9024 2019-05-13 stsp : got_error_from_errno2("open", path_lock));
355 6d9d28c3 2018-03-11 stsp goto done;
356 6d9d28c3 2018-03-11 stsp }
357 6d9d28c3 2018-03-11 stsp
358 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
359 6d9d28c3 2018-03-11 stsp if (err)
360 6d9d28c3 2018-03-11 stsp goto done;
361 6d9d28c3 2018-03-11 stsp
362 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
363 6d9d28c3 2018-03-11 stsp if (errstr) {
364 a2e6d162 2019-07-27 stsp err = got_error_msg(GOT_ERR_WORKTREE_META,
365 a2e6d162 2019-07-27 stsp "could not parse work tree format version number");
366 6d9d28c3 2018-03-11 stsp goto done;
367 6d9d28c3 2018-03-11 stsp }
368 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
369 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
370 6d9d28c3 2018-03-11 stsp goto done;
371 6d9d28c3 2018-03-11 stsp }
372 6d9d28c3 2018-03-11 stsp
373 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
374 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
375 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
376 6d9d28c3 2018-03-11 stsp goto done;
377 6d9d28c3 2018-03-11 stsp }
378 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
379 6d9d28c3 2018-03-11 stsp
380 7d61d891 2020-07-23 stsp (*worktree)->root_path = realpath(path, NULL);
381 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
382 7d61d891 2020-07-23 stsp err = got_error_from_errno2("realpath", path);
383 6d9d28c3 2018-03-11 stsp goto done;
384 6d9d28c3 2018-03-11 stsp }
385 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
386 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
387 6d9d28c3 2018-03-11 stsp if (err)
388 6d9d28c3 2018-03-11 stsp goto done;
389 eaccb85f 2018-12-25 stsp
390 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
391 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
392 93a30277 2018-12-24 stsp if (err)
393 93a30277 2018-12-24 stsp goto done;
394 93a30277 2018-12-24 stsp
395 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
396 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
397 c442a90d 2019-03-10 stsp if (err)
398 c442a90d 2019-03-10 stsp goto done;
399 c442a90d 2019-03-10 stsp
400 c442a90d 2019-03-10 stsp err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
401 eaccb85f 2018-12-25 stsp if (err)
402 c442a90d 2019-03-10 stsp goto done;
403 c442a90d 2019-03-10 stsp uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
404 c442a90d 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
405 cc483380 2019-09-01 stsp err = got_error_uuid(uuid_status, "uuid_from_string");
406 eaccb85f 2018-12-25 stsp goto done;
407 c442a90d 2019-03-10 stsp }
408 eaccb85f 2018-12-25 stsp
409 c9956ddf 2019-09-08 stsp err = got_repo_open(&repo, (*worktree)->repo_path, NULL);
410 eaccb85f 2018-12-25 stsp if (err)
411 eaccb85f 2018-12-25 stsp goto done;
412 eaccb85f 2018-12-25 stsp
413 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
414 eaccb85f 2018-12-25 stsp base_commit_id_str);
415 f5baf295 2018-03-11 stsp if (err)
416 6d9d28c3 2018-03-11 stsp goto done;
417 6d9d28c3 2018-03-11 stsp
418 36a38700 2019-05-10 stsp err = read_meta_file(&(*worktree)->head_ref_name, path_got,
419 36a38700 2019-05-10 stsp GOT_WORKTREE_HEAD_REF);
420 50b0790e 2020-09-11 stsp if (err)
421 50b0790e 2020-09-11 stsp goto done;
422 50b0790e 2020-09-11 stsp
423 50b0790e 2020-09-11 stsp if (asprintf(&(*worktree)->gotconfig_path, "%s/%s/%s",
424 50b0790e 2020-09-11 stsp (*worktree)->root_path,
425 50b0790e 2020-09-11 stsp GOT_WORKTREE_GOT_DIR, GOT_GOTCONFIG_FILENAME) == -1) {
426 50b0790e 2020-09-11 stsp err = got_error_from_errno("asprintf");
427 50b0790e 2020-09-11 stsp goto done;
428 50b0790e 2020-09-11 stsp }
429 50b0790e 2020-09-11 stsp
430 50b0790e 2020-09-11 stsp err = got_gotconfig_read(&(*worktree)->gotconfig,
431 50b0790e 2020-09-11 stsp (*worktree)->gotconfig_path);
432 437adc9d 2020-12-10 yzhong
433 437adc9d 2020-12-10 yzhong (*worktree)->root_fd = open((*worktree)->root_path, O_DIRECTORY);
434 437adc9d 2020-12-10 yzhong if ((*worktree)->root_fd == -1) {
435 437adc9d 2020-12-10 yzhong err = got_error_from_errno2("open", (*worktree)->root_path);
436 437adc9d 2020-12-10 yzhong goto done;
437 437adc9d 2020-12-10 yzhong }
438 6d9d28c3 2018-03-11 stsp done:
439 1d0f4054 2021-06-17 stsp if (repo) {
440 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
441 1d0f4054 2021-06-17 stsp if (err == NULL)
442 1d0f4054 2021-06-17 stsp err = close_err;
443 1d0f4054 2021-06-17 stsp }
444 7ac97322 2018-03-11 stsp free(path_got);
445 056e7441 2018-03-11 stsp free(path_lock);
446 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
447 c442a90d 2019-03-10 stsp free(uuidstr);
448 bd165944 2019-03-10 stsp free(formatstr);
449 6d9d28c3 2018-03-11 stsp if (err) {
450 6d9d28c3 2018-03-11 stsp if (fd != -1)
451 6d9d28c3 2018-03-11 stsp close(fd);
452 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
453 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
454 6d9d28c3 2018-03-11 stsp *worktree = NULL;
455 6d9d28c3 2018-03-11 stsp } else
456 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
457 6d9d28c3 2018-03-11 stsp
458 6d9d28c3 2018-03-11 stsp return err;
459 86c3caaf 2018-03-09 stsp }
460 247140b2 2019-02-05 stsp
461 247140b2 2019-02-05 stsp const struct got_error *
462 247140b2 2019-02-05 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
463 247140b2 2019-02-05 stsp {
464 247140b2 2019-02-05 stsp const struct got_error *err = NULL;
465 aedea96d 2020-10-20 stsp char *worktree_path;
466 86c3caaf 2018-03-09 stsp
467 aedea96d 2020-10-20 stsp worktree_path = strdup(path);
468 aedea96d 2020-10-20 stsp if (worktree_path == NULL)
469 aedea96d 2020-10-20 stsp return got_error_from_errno("strdup");
470 aedea96d 2020-10-20 stsp
471 aedea96d 2020-10-20 stsp for (;;) {
472 aedea96d 2020-10-20 stsp char *parent_path;
473 aedea96d 2020-10-20 stsp
474 aedea96d 2020-10-20 stsp err = open_worktree(worktree, worktree_path);
475 aedea96d 2020-10-20 stsp if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT)) {
476 aedea96d 2020-10-20 stsp free(worktree_path);
477 247140b2 2019-02-05 stsp return err;
478 aedea96d 2020-10-20 stsp }
479 aedea96d 2020-10-20 stsp if (*worktree) {
480 aedea96d 2020-10-20 stsp free(worktree_path);
481 aedea96d 2020-10-20 stsp return NULL;
482 aedea96d 2020-10-20 stsp }
483 aedea96d 2020-10-20 stsp if (worktree_path[0] == '/' && worktree_path[1] == '\0')
484 aedea96d 2020-10-20 stsp break;
485 aedea96d 2020-10-20 stsp err = got_path_dirname(&parent_path, worktree_path);
486 aedea96d 2020-10-20 stsp if (err) {
487 aedea96d 2020-10-20 stsp if (err->code != GOT_ERR_BAD_PATH) {
488 aedea96d 2020-10-20 stsp free(worktree_path);
489 aedea96d 2020-10-20 stsp return err;
490 aedea96d 2020-10-20 stsp }
491 aedea96d 2020-10-20 stsp break;
492 aedea96d 2020-10-20 stsp }
493 aedea96d 2020-10-20 stsp free(worktree_path);
494 aedea96d 2020-10-20 stsp worktree_path = parent_path;
495 aedea96d 2020-10-20 stsp }
496 247140b2 2019-02-05 stsp
497 aedea96d 2020-10-20 stsp free(worktree_path);
498 247140b2 2019-02-05 stsp return got_error(GOT_ERR_NOT_WORKTREE);
499 247140b2 2019-02-05 stsp }
500 247140b2 2019-02-05 stsp
501 3a6ce05a 2019-02-11 stsp const struct got_error *
502 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
503 86c3caaf 2018-03-09 stsp {
504 3a6ce05a 2019-02-11 stsp const struct got_error *err = NULL;
505 60e40e95 2021-01-22 stsp
506 a6b21eef 2021-01-21 stsp if (worktree->lockfd != -1) {
507 08578a35 2021-01-22 stsp if (close(worktree->lockfd) == -1)
508 638f9024 2019-05-13 stsp err = got_error_from_errno2("close",
509 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree));
510 a6b21eef 2021-01-21 stsp }
511 e7abd6b6 2021-01-22 stsp if (close(worktree->root_fd) == -1 && err == NULL)
512 e7abd6b6 2021-01-22 stsp err = got_error_from_errno2("close",
513 e7abd6b6 2021-01-22 stsp got_worktree_get_root_path(worktree));
514 60e40e95 2021-01-22 stsp free(worktree->repo_path);
515 60e40e95 2021-01-22 stsp free(worktree->path_prefix);
516 60e40e95 2021-01-22 stsp free(worktree->base_commit_id);
517 60e40e95 2021-01-22 stsp free(worktree->head_ref_name);
518 60e40e95 2021-01-22 stsp free(worktree->root_path);
519 60e40e95 2021-01-22 stsp free(worktree->gotconfig_path);
520 60e40e95 2021-01-22 stsp got_gotconfig_free(worktree->gotconfig);
521 a06ff56f 2021-01-21 naddy free(worktree);
522 3a6ce05a 2019-02-11 stsp return err;
523 86c3caaf 2018-03-09 stsp }
524 86c3caaf 2018-03-09 stsp
525 2fbdb5ae 2018-12-29 stsp const char *
526 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(struct got_worktree *worktree)
527 c7f4312f 2019-02-05 stsp {
528 c7f4312f 2019-02-05 stsp return worktree->root_path;
529 c7f4312f 2019-02-05 stsp }
530 c7f4312f 2019-02-05 stsp
531 c7f4312f 2019-02-05 stsp const char *
532 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
533 86c3caaf 2018-03-09 stsp {
534 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
535 49520a32 2018-12-29 stsp }
536 49520a32 2018-12-29 stsp const char *
537 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
538 49520a32 2018-12-29 stsp {
539 f609be2e 2018-12-29 stsp return worktree->path_prefix;
540 e5dc7198 2018-12-29 stsp }
541 e5dc7198 2018-12-29 stsp
542 e5dc7198 2018-12-29 stsp const struct got_error *
543 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
544 e5dc7198 2018-12-29 stsp const char *path_prefix)
545 e5dc7198 2018-12-29 stsp {
546 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
547 e5dc7198 2018-12-29 stsp
548 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
549 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
550 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
551 e5dc7198 2018-12-29 stsp }
552 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
553 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
554 e5dc7198 2018-12-29 stsp free(absprefix);
555 e5dc7198 2018-12-29 stsp return NULL;
556 86c3caaf 2018-03-09 stsp }
557 86c3caaf 2018-03-09 stsp
558 bc70eb79 2019-05-09 stsp const char *
559 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
560 86c3caaf 2018-03-09 stsp {
561 36a38700 2019-05-10 stsp return worktree->head_ref_name;
562 024e9686 2019-05-14 stsp }
563 024e9686 2019-05-14 stsp
564 024e9686 2019-05-14 stsp const struct got_error *
565 024e9686 2019-05-14 stsp got_worktree_set_head_ref(struct got_worktree *worktree,
566 024e9686 2019-05-14 stsp struct got_reference *head_ref)
567 024e9686 2019-05-14 stsp {
568 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
569 024e9686 2019-05-14 stsp char *path_got = NULL, *head_ref_name = NULL;
570 024e9686 2019-05-14 stsp
571 024e9686 2019-05-14 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
572 024e9686 2019-05-14 stsp GOT_WORKTREE_GOT_DIR) == -1) {
573 024e9686 2019-05-14 stsp err = got_error_from_errno("asprintf");
574 024e9686 2019-05-14 stsp path_got = NULL;
575 024e9686 2019-05-14 stsp goto done;
576 024e9686 2019-05-14 stsp }
577 024e9686 2019-05-14 stsp
578 024e9686 2019-05-14 stsp head_ref_name = strdup(got_ref_get_name(head_ref));
579 024e9686 2019-05-14 stsp if (head_ref_name == NULL) {
580 024e9686 2019-05-14 stsp err = got_error_from_errno("strdup");
581 024e9686 2019-05-14 stsp goto done;
582 024e9686 2019-05-14 stsp }
583 024e9686 2019-05-14 stsp
584 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
585 024e9686 2019-05-14 stsp if (err)
586 024e9686 2019-05-14 stsp goto done;
587 024e9686 2019-05-14 stsp
588 024e9686 2019-05-14 stsp free(worktree->head_ref_name);
589 024e9686 2019-05-14 stsp worktree->head_ref_name = head_ref_name;
590 024e9686 2019-05-14 stsp done:
591 024e9686 2019-05-14 stsp free(path_got);
592 024e9686 2019-05-14 stsp if (err)
593 024e9686 2019-05-14 stsp free(head_ref_name);
594 024e9686 2019-05-14 stsp return err;
595 507dc3bb 2018-12-29 stsp }
596 507dc3bb 2018-12-29 stsp
597 b72f483a 2019-02-05 stsp struct got_object_id *
598 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
599 507dc3bb 2018-12-29 stsp {
600 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
601 86c3caaf 2018-03-09 stsp }
602 86c3caaf 2018-03-09 stsp
603 507dc3bb 2018-12-29 stsp const struct got_error *
604 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
605 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
606 507dc3bb 2018-12-29 stsp {
607 507dc3bb 2018-12-29 stsp const struct got_error *err;
608 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
609 507dc3bb 2018-12-29 stsp char *id_str = NULL;
610 507dc3bb 2018-12-29 stsp char *path_got = NULL;
611 507dc3bb 2018-12-29 stsp
612 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
613 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
614 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
615 507dc3bb 2018-12-29 stsp path_got = NULL;
616 507dc3bb 2018-12-29 stsp goto done;
617 507dc3bb 2018-12-29 stsp }
618 507dc3bb 2018-12-29 stsp
619 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
620 507dc3bb 2018-12-29 stsp if (err)
621 507dc3bb 2018-12-29 stsp return err;
622 507dc3bb 2018-12-29 stsp
623 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
624 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
625 507dc3bb 2018-12-29 stsp goto done;
626 507dc3bb 2018-12-29 stsp }
627 507dc3bb 2018-12-29 stsp
628 507dc3bb 2018-12-29 stsp /* Record our base commit. */
629 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
630 507dc3bb 2018-12-29 stsp if (err)
631 507dc3bb 2018-12-29 stsp goto done;
632 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
633 507dc3bb 2018-12-29 stsp if (err)
634 507dc3bb 2018-12-29 stsp goto done;
635 507dc3bb 2018-12-29 stsp
636 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
637 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
638 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
639 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
640 507dc3bb 2018-12-29 stsp goto done;
641 507dc3bb 2018-12-29 stsp }
642 507dc3bb 2018-12-29 stsp done:
643 507dc3bb 2018-12-29 stsp if (obj)
644 507dc3bb 2018-12-29 stsp got_object_close(obj);
645 507dc3bb 2018-12-29 stsp free(id_str);
646 507dc3bb 2018-12-29 stsp free(path_got);
647 507dc3bb 2018-12-29 stsp return err;
648 50b0790e 2020-09-11 stsp }
649 50b0790e 2020-09-11 stsp
650 50b0790e 2020-09-11 stsp const struct got_gotconfig *
651 50b0790e 2020-09-11 stsp got_worktree_get_gotconfig(struct got_worktree *worktree)
652 50b0790e 2020-09-11 stsp {
653 50b0790e 2020-09-11 stsp return worktree->gotconfig;
654 507dc3bb 2018-12-29 stsp }
655 507dc3bb 2018-12-29 stsp
656 9d31a1d8 2018-03-11 stsp static const struct got_error *
657 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
658 86c3caaf 2018-03-09 stsp {
659 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
660 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
661 638f9024 2019-05-13 stsp : got_error_from_errno2("flock",
662 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree)));
663 86c3caaf 2018-03-09 stsp return NULL;
664 21908da4 2019-01-13 stsp }
665 21908da4 2019-01-13 stsp
666 21908da4 2019-01-13 stsp static const struct got_error *
667 4a1ddfc2 2019-01-12 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
668 4a1ddfc2 2019-01-12 stsp {
669 4a1ddfc2 2019-01-12 stsp const struct got_error *err = NULL;
670 4a1ddfc2 2019-01-12 stsp char *abspath;
671 4a1ddfc2 2019-01-12 stsp
672 4a1ddfc2 2019-01-12 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
673 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
674 4a1ddfc2 2019-01-12 stsp
675 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(abspath);
676 ddcd8544 2019-03-11 stsp if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
677 ddcd8544 2019-03-11 stsp struct stat sb;
678 ddcd8544 2019-03-11 stsp err = NULL;
679 ddcd8544 2019-03-11 stsp if (lstat(abspath, &sb) == -1) {
680 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
681 ddcd8544 2019-03-11 stsp } else if (!S_ISDIR(sb.st_mode)) {
682 ddcd8544 2019-03-11 stsp /* TODO directory is obstructed; do something */
683 3665fce0 2020-07-13 stsp err = got_error_path(abspath, GOT_ERR_FILE_OBSTRUCTED);
684 ddcd8544 2019-03-11 stsp }
685 ddcd8544 2019-03-11 stsp }
686 4a1ddfc2 2019-01-12 stsp free(abspath);
687 68c76935 2019-02-19 stsp return err;
688 68c76935 2019-02-19 stsp }
689 68c76935 2019-02-19 stsp
690 68c76935 2019-02-19 stsp static const struct got_error *
691 68c76935 2019-02-19 stsp check_file_contents_equal(int *same, FILE *f1, FILE *f2)
692 68c76935 2019-02-19 stsp {
693 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
694 68c76935 2019-02-19 stsp uint8_t fbuf1[8192];
695 68c76935 2019-02-19 stsp uint8_t fbuf2[8192];
696 68c76935 2019-02-19 stsp size_t flen1 = 0, flen2 = 0;
697 68c76935 2019-02-19 stsp
698 68c76935 2019-02-19 stsp *same = 1;
699 68c76935 2019-02-19 stsp
700 230a42bd 2019-05-11 jcs for (;;) {
701 68c76935 2019-02-19 stsp flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
702 68c76935 2019-02-19 stsp if (flen1 == 0 && ferror(f1)) {
703 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
704 68c76935 2019-02-19 stsp break;
705 68c76935 2019-02-19 stsp }
706 68c76935 2019-02-19 stsp flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
707 68c76935 2019-02-19 stsp if (flen2 == 0 && ferror(f2)) {
708 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
709 68c76935 2019-02-19 stsp break;
710 68c76935 2019-02-19 stsp }
711 68c76935 2019-02-19 stsp if (flen1 == 0) {
712 68c76935 2019-02-19 stsp if (flen2 != 0)
713 68c76935 2019-02-19 stsp *same = 0;
714 68c76935 2019-02-19 stsp break;
715 68c76935 2019-02-19 stsp } else if (flen2 == 0) {
716 68c76935 2019-02-19 stsp if (flen1 != 0)
717 68c76935 2019-02-19 stsp *same = 0;
718 68c76935 2019-02-19 stsp break;
719 68c76935 2019-02-19 stsp } else if (flen1 == flen2) {
720 68c76935 2019-02-19 stsp if (memcmp(fbuf1, fbuf2, flen2) != 0) {
721 68c76935 2019-02-19 stsp *same = 0;
722 68c76935 2019-02-19 stsp break;
723 68c76935 2019-02-19 stsp }
724 68c76935 2019-02-19 stsp } else {
725 68c76935 2019-02-19 stsp *same = 0;
726 68c76935 2019-02-19 stsp break;
727 68c76935 2019-02-19 stsp }
728 68c76935 2019-02-19 stsp }
729 68c76935 2019-02-19 stsp
730 68c76935 2019-02-19 stsp return err;
731 68c76935 2019-02-19 stsp }
732 68c76935 2019-02-19 stsp
733 68c76935 2019-02-19 stsp static const struct got_error *
734 db590691 2021-06-02 stsp check_files_equal(int *same, FILE *f1, FILE *f2)
735 68c76935 2019-02-19 stsp {
736 68c76935 2019-02-19 stsp struct stat sb;
737 68c76935 2019-02-19 stsp size_t size1, size2;
738 68c76935 2019-02-19 stsp
739 68c76935 2019-02-19 stsp *same = 1;
740 68c76935 2019-02-19 stsp
741 db590691 2021-06-02 stsp if (fstat(fileno(f1), &sb) != 0)
742 db590691 2021-06-02 stsp return got_error_from_errno("fstat");
743 68c76935 2019-02-19 stsp size1 = sb.st_size;
744 68c76935 2019-02-19 stsp
745 db590691 2021-06-02 stsp if (fstat(fileno(f2), &sb) != 0)
746 db590691 2021-06-02 stsp return got_error_from_errno("fstat");
747 68c76935 2019-02-19 stsp size2 = sb.st_size;
748 68c76935 2019-02-19 stsp
749 68c76935 2019-02-19 stsp if (size1 != size2) {
750 68c76935 2019-02-19 stsp *same = 0;
751 68c76935 2019-02-19 stsp return NULL;
752 68c76935 2019-02-19 stsp }
753 68c76935 2019-02-19 stsp
754 db590691 2021-06-02 stsp if (fseek(f1, 0L, SEEK_SET) == -1)
755 db590691 2021-06-02 stsp return got_ferror(f1, GOT_ERR_IO);
756 db590691 2021-06-02 stsp if (fseek(f2, 0L, SEEK_SET) == -1)
757 db590691 2021-06-02 stsp return got_ferror(f2, GOT_ERR_IO);
758 68c76935 2019-02-19 stsp
759 db590691 2021-06-02 stsp return check_file_contents_equal(same, f1, f2);
760 6353ad76 2019-02-08 stsp }
761 6353ad76 2019-02-08 stsp
762 6353ad76 2019-02-08 stsp /*
763 db590691 2021-06-02 stsp * Perform a 3-way merge where the file f_orig acts as the common
764 db590691 2021-06-02 stsp * ancestor, the file f_deriv acts as the first derived version,
765 eec2f5a9 2021-06-03 stsp * and the file f_deriv2 acts as the second derived version.
766 eec2f5a9 2021-06-03 stsp * The merge result will be written to a new file at ondisk_path; any
767 eec2f5a9 2021-06-03 stsp * existing file at this path will be replaced.
768 6353ad76 2019-02-08 stsp */
769 6353ad76 2019-02-08 stsp static const struct got_error *
770 14c901f1 2019-08-08 stsp merge_file(int *local_changes_subsumed, struct got_worktree *worktree,
771 eec2f5a9 2021-06-03 stsp FILE *f_orig, FILE *f_deriv, FILE *f_deriv2, const char *ondisk_path,
772 07bb0f93 2021-06-02 stsp const char *path, uint16_t st_mode,
773 54d5be07 2021-06-03 stsp const char *label_orig, const char *label_deriv, const char *label_deriv2,
774 fdf3c2d3 2021-06-17 stsp enum got_diff_algorithm diff_algo, struct got_repository *repo,
775 14c901f1 2019-08-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
776 6353ad76 2019-02-08 stsp {
777 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
778 6353ad76 2019-02-08 stsp int merged_fd = -1;
779 db590691 2021-06-02 stsp FILE *f_merged = NULL;
780 af54ae4a 2019-02-19 stsp char *merged_path = NULL, *base_path = NULL;
781 234035bc 2019-06-01 stsp int overlapcnt = 0;
782 3524bbf9 2020-10-20 stsp char *parent = NULL;
783 6353ad76 2019-02-08 stsp
784 234035bc 2019-06-01 stsp *local_changes_subsumed = 0;
785 234035bc 2019-06-01 stsp
786 3524bbf9 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
787 3524bbf9 2020-10-20 stsp if (err)
788 3524bbf9 2020-10-20 stsp return err;
789 af54ae4a 2019-02-19 stsp
790 3524bbf9 2020-10-20 stsp if (asprintf(&base_path, "%s/got-merged", parent) == -1) {
791 3524bbf9 2020-10-20 stsp err = got_error_from_errno("asprintf");
792 3524bbf9 2020-10-20 stsp goto done;
793 3524bbf9 2020-10-20 stsp }
794 af54ae4a 2019-02-19 stsp
795 af54ae4a 2019-02-19 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
796 6353ad76 2019-02-08 stsp if (err)
797 6353ad76 2019-02-08 stsp goto done;
798 3b9f0f87 2020-07-23 stsp
799 eec2f5a9 2021-06-03 stsp err = got_merge_diff3(&overlapcnt, merged_fd, f_deriv, f_orig,
800 fdf3c2d3 2021-06-17 stsp f_deriv2, label_deriv, label_orig, label_deriv2, diff_algo);
801 6353ad76 2019-02-08 stsp if (err)
802 6353ad76 2019-02-08 stsp goto done;
803 6353ad76 2019-02-08 stsp
804 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg,
805 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
806 1ee397ad 2019-07-12 stsp if (err)
807 1ee397ad 2019-07-12 stsp goto done;
808 6353ad76 2019-02-08 stsp
809 816dc654 2019-02-16 stsp if (fsync(merged_fd) != 0) {
810 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
811 816dc654 2019-02-16 stsp goto done;
812 68c76935 2019-02-19 stsp }
813 68c76935 2019-02-19 stsp
814 db590691 2021-06-02 stsp f_merged = fdopen(merged_fd, "r");
815 db590691 2021-06-02 stsp if (f_merged == NULL) {
816 db590691 2021-06-02 stsp err = got_error_from_errno("fdopen");
817 db590691 2021-06-02 stsp goto done;
818 db590691 2021-06-02 stsp }
819 db590691 2021-06-02 stsp merged_fd = -1;
820 db590691 2021-06-02 stsp
821 68c76935 2019-02-19 stsp /* Check if a clean merge has subsumed all local changes. */
822 68c76935 2019-02-19 stsp if (overlapcnt == 0) {
823 db590691 2021-06-02 stsp err = check_files_equal(local_changes_subsumed, f_deriv,
824 db590691 2021-06-02 stsp f_merged);
825 68c76935 2019-02-19 stsp if (err)
826 68c76935 2019-02-19 stsp goto done;
827 816dc654 2019-02-16 stsp }
828 6353ad76 2019-02-08 stsp
829 db590691 2021-06-02 stsp if (fchmod(fileno(f_merged), st_mode) != 0) {
830 2ad902c0 2019-12-15 stsp err = got_error_from_errno2("fchmod", merged_path);
831 70a0c8ec 2019-02-20 stsp goto done;
832 70a0c8ec 2019-02-20 stsp }
833 70a0c8ec 2019-02-20 stsp
834 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
835 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", merged_path,
836 230a42bd 2019-05-11 jcs ondisk_path);
837 6353ad76 2019-02-08 stsp goto done;
838 6353ad76 2019-02-08 stsp }
839 6353ad76 2019-02-08 stsp done:
840 fdcb7daf 2019-12-15 stsp if (err) {
841 fdcb7daf 2019-12-15 stsp if (merged_path)
842 fdcb7daf 2019-12-15 stsp unlink(merged_path);
843 3b9f0f87 2020-07-23 stsp }
844 08578a35 2021-01-22 stsp if (merged_fd != -1 && close(merged_fd) == -1 && err == NULL)
845 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
846 db590691 2021-06-02 stsp if (f_merged && fclose(f_merged) == EOF && err == NULL)
847 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
848 6353ad76 2019-02-08 stsp free(merged_path);
849 af54ae4a 2019-02-19 stsp free(base_path);
850 3524bbf9 2020-10-20 stsp free(parent);
851 af57b12a 2020-07-23 stsp return err;
852 af57b12a 2020-07-23 stsp }
853 af57b12a 2020-07-23 stsp
854 af57b12a 2020-07-23 stsp static const struct got_error *
855 af57b12a 2020-07-23 stsp update_symlink(const char *ondisk_path, const char *target_path,
856 af57b12a 2020-07-23 stsp size_t target_len)
857 af57b12a 2020-07-23 stsp {
858 af57b12a 2020-07-23 stsp /* This is not atomic but matches what 'ln -sf' does. */
859 af57b12a 2020-07-23 stsp if (unlink(ondisk_path) == -1)
860 af57b12a 2020-07-23 stsp return got_error_from_errno2("unlink", ondisk_path);
861 af57b12a 2020-07-23 stsp if (symlink(target_path, ondisk_path) == -1)
862 af57b12a 2020-07-23 stsp return got_error_from_errno3("symlink", target_path,
863 af57b12a 2020-07-23 stsp ondisk_path);
864 af57b12a 2020-07-23 stsp return NULL;
865 af57b12a 2020-07-23 stsp }
866 af57b12a 2020-07-23 stsp
867 af57b12a 2020-07-23 stsp /*
868 11cc08c1 2020-07-23 stsp * Overwrite a symlink (or a regular file in case there was a "bad" symlink)
869 11cc08c1 2020-07-23 stsp * in the work tree with a file that contains conflict markers and the
870 993e2a1b 2020-07-23 stsp * conflicting target paths of the original version, a "derived version"
871 993e2a1b 2020-07-23 stsp * of a symlink from an incoming change, and a local version of the symlink.
872 993e2a1b 2020-07-23 stsp *
873 993e2a1b 2020-07-23 stsp * The original versions's target path can be NULL if it is not available,
874 993e2a1b 2020-07-23 stsp * such as if both derived versions added a new symlink at the same path.
875 993e2a1b 2020-07-23 stsp *
876 993e2a1b 2020-07-23 stsp * The incoming derived symlink target is NULL in case the incoming change
877 993e2a1b 2020-07-23 stsp * has deleted this symlink.
878 11cc08c1 2020-07-23 stsp */
879 11cc08c1 2020-07-23 stsp static const struct got_error *
880 11cc08c1 2020-07-23 stsp install_symlink_conflict(const char *deriv_target,
881 11cc08c1 2020-07-23 stsp struct got_object_id *deriv_base_commit_id, const char *orig_target,
882 11cc08c1 2020-07-23 stsp const char *label_orig, const char *local_target, const char *ondisk_path)
883 11cc08c1 2020-07-23 stsp {
884 11cc08c1 2020-07-23 stsp const struct got_error *err;
885 11cc08c1 2020-07-23 stsp char *id_str = NULL, *label_deriv = NULL, *path = NULL;
886 11cc08c1 2020-07-23 stsp FILE *f = NULL;
887 11cc08c1 2020-07-23 stsp
888 11cc08c1 2020-07-23 stsp err = got_object_id_str(&id_str, deriv_base_commit_id);
889 11cc08c1 2020-07-23 stsp if (err)
890 11cc08c1 2020-07-23 stsp return got_error_from_errno("asprintf");
891 11cc08c1 2020-07-23 stsp
892 11cc08c1 2020-07-23 stsp if (asprintf(&label_deriv, "%s: commit %s",
893 11cc08c1 2020-07-23 stsp GOT_MERGE_LABEL_MERGED, id_str) == -1) {
894 11cc08c1 2020-07-23 stsp err = got_error_from_errno("asprintf");
895 11cc08c1 2020-07-23 stsp goto done;
896 11cc08c1 2020-07-23 stsp }
897 11cc08c1 2020-07-23 stsp
898 11cc08c1 2020-07-23 stsp err = got_opentemp_named(&path, &f, "got-symlink-conflict");
899 11cc08c1 2020-07-23 stsp if (err)
900 3818e3c4 2020-11-01 naddy goto done;
901 3818e3c4 2020-11-01 naddy
902 3818e3c4 2020-11-01 naddy if (fchmod(fileno(f), GOT_DEFAULT_FILE_MODE) == -1) {
903 3818e3c4 2020-11-01 naddy err = got_error_from_errno2("fchmod", path);
904 11cc08c1 2020-07-23 stsp goto done;
905 3818e3c4 2020-11-01 naddy }
906 11cc08c1 2020-07-23 stsp
907 283102fc 2020-07-23 stsp if (fprintf(f, "%s %s\n%s\n%s%s%s%s%s\n%s\n%s\n",
908 993e2a1b 2020-07-23 stsp GOT_DIFF_CONFLICT_MARKER_BEGIN, label_deriv,
909 993e2a1b 2020-07-23 stsp deriv_target ? deriv_target : "(symlink was deleted)",
910 11cc08c1 2020-07-23 stsp orig_target ? label_orig : "",
911 11cc08c1 2020-07-23 stsp orig_target ? "\n" : "",
912 11cc08c1 2020-07-23 stsp orig_target ? orig_target : "",
913 11cc08c1 2020-07-23 stsp orig_target ? "\n" : "",
914 11cc08c1 2020-07-23 stsp GOT_DIFF_CONFLICT_MARKER_SEP,
915 11cc08c1 2020-07-23 stsp local_target, GOT_DIFF_CONFLICT_MARKER_END) < 0) {
916 11cc08c1 2020-07-23 stsp err = got_error_from_errno2("fprintf", path);
917 11cc08c1 2020-07-23 stsp goto done;
918 11cc08c1 2020-07-23 stsp }
919 11cc08c1 2020-07-23 stsp
920 11cc08c1 2020-07-23 stsp if (unlink(ondisk_path) == -1) {
921 11cc08c1 2020-07-23 stsp err = got_error_from_errno2("unlink", ondisk_path);
922 11cc08c1 2020-07-23 stsp goto done;
923 11cc08c1 2020-07-23 stsp }
924 11cc08c1 2020-07-23 stsp if (rename(path, ondisk_path) == -1) {
925 11cc08c1 2020-07-23 stsp err = got_error_from_errno3("rename", path, ondisk_path);
926 11cc08c1 2020-07-23 stsp goto done;
927 11cc08c1 2020-07-23 stsp }
928 11cc08c1 2020-07-23 stsp done:
929 11cc08c1 2020-07-23 stsp if (f != NULL && fclose(f) == EOF && err == NULL)
930 11cc08c1 2020-07-23 stsp err = got_error_from_errno2("fclose", path);
931 11cc08c1 2020-07-23 stsp free(path);
932 11cc08c1 2020-07-23 stsp free(id_str);
933 11cc08c1 2020-07-23 stsp free(label_deriv);
934 11cc08c1 2020-07-23 stsp return err;
935 11cc08c1 2020-07-23 stsp }
936 d219f183 2020-07-23 stsp
937 d219f183 2020-07-23 stsp /* forward declaration */
938 d219f183 2020-07-23 stsp static const struct got_error *
939 d219f183 2020-07-23 stsp merge_blob(int *, struct got_worktree *, struct got_blob_object *,
940 d219f183 2020-07-23 stsp const char *, const char *, uint16_t, const char *,
941 d219f183 2020-07-23 stsp struct got_blob_object *, struct got_object_id *,
942 d219f183 2020-07-23 stsp struct got_repository *, got_worktree_checkout_cb, void *);
943 11cc08c1 2020-07-23 stsp
944 11cc08c1 2020-07-23 stsp /*
945 af57b12a 2020-07-23 stsp * Merge a symlink into the work tree, where blob_orig acts as the common
946 36bf999c 2020-07-23 stsp * ancestor, deriv_target is the link target of the first derived version,
947 36bf999c 2020-07-23 stsp * and the symlink on disk acts as the second derived version.
948 af57b12a 2020-07-23 stsp * Assume that contents of both blobs represent symlinks.
949 af57b12a 2020-07-23 stsp */
950 af57b12a 2020-07-23 stsp static const struct got_error *
951 af57b12a 2020-07-23 stsp merge_symlink(struct got_worktree *worktree,
952 af57b12a 2020-07-23 stsp struct got_blob_object *blob_orig, const char *ondisk_path,
953 36bf999c 2020-07-23 stsp const char *path, const char *label_orig, const char *deriv_target,
954 af57b12a 2020-07-23 stsp struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
955 af57b12a 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
956 af57b12a 2020-07-23 stsp {
957 af57b12a 2020-07-23 stsp const struct got_error *err = NULL;
958 36bf999c 2020-07-23 stsp char *ancestor_target = NULL;
959 af57b12a 2020-07-23 stsp struct stat sb;
960 11cc08c1 2020-07-23 stsp ssize_t ondisk_len, deriv_len;
961 af57b12a 2020-07-23 stsp char ondisk_target[PATH_MAX];
962 11cc08c1 2020-07-23 stsp int have_local_change = 0;
963 11cc08c1 2020-07-23 stsp int have_incoming_change = 0;
964 af57b12a 2020-07-23 stsp
965 af57b12a 2020-07-23 stsp if (lstat(ondisk_path, &sb) == -1)
966 af57b12a 2020-07-23 stsp return got_error_from_errno2("lstat", ondisk_path);
967 af57b12a 2020-07-23 stsp
968 af57b12a 2020-07-23 stsp ondisk_len = readlink(ondisk_path, ondisk_target,
969 af57b12a 2020-07-23 stsp sizeof(ondisk_target));
970 af57b12a 2020-07-23 stsp if (ondisk_len == -1) {
971 af57b12a 2020-07-23 stsp err = got_error_from_errno2("readlink",
972 af57b12a 2020-07-23 stsp ondisk_path);
973 af57b12a 2020-07-23 stsp goto done;
974 af57b12a 2020-07-23 stsp }
975 56d815a9 2020-07-23 stsp ondisk_target[ondisk_len] = '\0';
976 af57b12a 2020-07-23 stsp
977 526a746f 2020-07-23 stsp if (blob_orig) {
978 526a746f 2020-07-23 stsp err = got_object_blob_read_to_str(&ancestor_target, blob_orig);
979 526a746f 2020-07-23 stsp if (err)
980 526a746f 2020-07-23 stsp goto done;
981 526a746f 2020-07-23 stsp }
982 af57b12a 2020-07-23 stsp
983 11cc08c1 2020-07-23 stsp if (ancestor_target == NULL ||
984 11cc08c1 2020-07-23 stsp (ondisk_len != strlen(ancestor_target) ||
985 11cc08c1 2020-07-23 stsp memcmp(ondisk_target, ancestor_target, ondisk_len) != 0))
986 11cc08c1 2020-07-23 stsp have_local_change = 1;
987 11cc08c1 2020-07-23 stsp
988 11cc08c1 2020-07-23 stsp deriv_len = strlen(deriv_target);
989 11cc08c1 2020-07-23 stsp if (ancestor_target == NULL ||
990 11cc08c1 2020-07-23 stsp (deriv_len != strlen(ancestor_target) ||
991 11cc08c1 2020-07-23 stsp memcmp(deriv_target, ancestor_target, deriv_len) != 0))
992 11cc08c1 2020-07-23 stsp have_incoming_change = 1;
993 11cc08c1 2020-07-23 stsp
994 11cc08c1 2020-07-23 stsp if (!have_local_change && !have_incoming_change) {
995 11cc08c1 2020-07-23 stsp if (ancestor_target) {
996 11cc08c1 2020-07-23 stsp /* Both sides made the same change. */
997 11cc08c1 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
998 11cc08c1 2020-07-23 stsp path);
999 11cc08c1 2020-07-23 stsp } else if (deriv_len == ondisk_len &&
1000 11cc08c1 2020-07-23 stsp memcmp(ondisk_target, deriv_target, deriv_len) == 0) {
1001 11cc08c1 2020-07-23 stsp /* Both sides added the same symlink. */
1002 11cc08c1 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
1003 11cc08c1 2020-07-23 stsp path);
1004 11cc08c1 2020-07-23 stsp } else {
1005 11cc08c1 2020-07-23 stsp /* Both sides added symlinks which don't match. */
1006 11cc08c1 2020-07-23 stsp err = install_symlink_conflict(deriv_target,
1007 11cc08c1 2020-07-23 stsp deriv_base_commit_id, ancestor_target,
1008 11cc08c1 2020-07-23 stsp label_orig, ondisk_target, ondisk_path);
1009 11cc08c1 2020-07-23 stsp if (err)
1010 11cc08c1 2020-07-23 stsp goto done;
1011 11cc08c1 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
1012 11cc08c1 2020-07-23 stsp path);
1013 11cc08c1 2020-07-23 stsp }
1014 11cc08c1 2020-07-23 stsp } else if (!have_local_change && have_incoming_change) {
1015 af57b12a 2020-07-23 stsp /* Apply the incoming change. */
1016 af57b12a 2020-07-23 stsp err = update_symlink(ondisk_path, deriv_target,
1017 af57b12a 2020-07-23 stsp strlen(deriv_target));
1018 af57b12a 2020-07-23 stsp if (err)
1019 af57b12a 2020-07-23 stsp goto done;
1020 af57b12a 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1021 11cc08c1 2020-07-23 stsp } else if (have_local_change && have_incoming_change) {
1022 ea7786be 2020-07-23 stsp if (deriv_len == ondisk_len &&
1023 ea7786be 2020-07-23 stsp memcmp(deriv_target, ondisk_target, deriv_len) == 0) {
1024 ea7786be 2020-07-23 stsp /* Both sides made the same change. */
1025 ea7786be 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
1026 ea7786be 2020-07-23 stsp path);
1027 ea7786be 2020-07-23 stsp } else {
1028 ea7786be 2020-07-23 stsp err = install_symlink_conflict(deriv_target,
1029 ea7786be 2020-07-23 stsp deriv_base_commit_id, ancestor_target, label_orig,
1030 ea7786be 2020-07-23 stsp ondisk_target, ondisk_path);
1031 ea7786be 2020-07-23 stsp if (err)
1032 ea7786be 2020-07-23 stsp goto done;
1033 ea7786be 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
1034 ea7786be 2020-07-23 stsp path);
1035 ea7786be 2020-07-23 stsp }
1036 6353ad76 2019-02-08 stsp }
1037 11cc08c1 2020-07-23 stsp
1038 af57b12a 2020-07-23 stsp done:
1039 af57b12a 2020-07-23 stsp free(ancestor_target);
1040 eec2f5a9 2021-06-03 stsp return err;
1041 eec2f5a9 2021-06-03 stsp }
1042 eec2f5a9 2021-06-03 stsp
1043 eec2f5a9 2021-06-03 stsp static const struct got_error *
1044 eec2f5a9 2021-06-03 stsp dump_symlink_target_path_to_file(FILE **outfile, const char *ondisk_path)
1045 eec2f5a9 2021-06-03 stsp {
1046 eec2f5a9 2021-06-03 stsp const struct got_error *err = NULL;
1047 eec2f5a9 2021-06-03 stsp char target_path[PATH_MAX];
1048 eec2f5a9 2021-06-03 stsp ssize_t target_len;
1049 eec2f5a9 2021-06-03 stsp size_t n;
1050 eec2f5a9 2021-06-03 stsp FILE *f;
1051 eec2f5a9 2021-06-03 stsp
1052 eec2f5a9 2021-06-03 stsp *outfile = NULL;
1053 eec2f5a9 2021-06-03 stsp
1054 eec2f5a9 2021-06-03 stsp f = got_opentemp();
1055 eec2f5a9 2021-06-03 stsp if (f == NULL)
1056 eec2f5a9 2021-06-03 stsp return got_error_from_errno("got_opentemp");
1057 eec2f5a9 2021-06-03 stsp target_len = readlink(ondisk_path, target_path, sizeof(target_path));
1058 eec2f5a9 2021-06-03 stsp if (target_len == -1) {
1059 eec2f5a9 2021-06-03 stsp err = got_error_from_errno2("readlink", ondisk_path);
1060 eec2f5a9 2021-06-03 stsp goto done;
1061 eec2f5a9 2021-06-03 stsp }
1062 eec2f5a9 2021-06-03 stsp n = fwrite(target_path, 1, target_len, f);
1063 eec2f5a9 2021-06-03 stsp if (n != target_len) {
1064 eec2f5a9 2021-06-03 stsp err = got_ferror(f, GOT_ERR_IO);
1065 eec2f5a9 2021-06-03 stsp goto done;
1066 eec2f5a9 2021-06-03 stsp }
1067 eec2f5a9 2021-06-03 stsp if (fflush(f) == EOF) {
1068 eec2f5a9 2021-06-03 stsp err = got_error_from_errno("fflush");
1069 eec2f5a9 2021-06-03 stsp goto done;
1070 eec2f5a9 2021-06-03 stsp }
1071 eec2f5a9 2021-06-03 stsp if (fseek(f, 0L, SEEK_SET) == -1) {
1072 eec2f5a9 2021-06-03 stsp err = got_ferror(f, GOT_ERR_IO);
1073 eec2f5a9 2021-06-03 stsp goto done;
1074 eec2f5a9 2021-06-03 stsp }
1075 eec2f5a9 2021-06-03 stsp done:
1076 eec2f5a9 2021-06-03 stsp if (err)
1077 eec2f5a9 2021-06-03 stsp fclose(f);
1078 eec2f5a9 2021-06-03 stsp else
1079 eec2f5a9 2021-06-03 stsp *outfile = f;
1080 14c901f1 2019-08-08 stsp return err;
1081 14c901f1 2019-08-08 stsp }
1082 14c901f1 2019-08-08 stsp
1083 14c901f1 2019-08-08 stsp /*
1084 14c901f1 2019-08-08 stsp * Perform a 3-way merge where blob_orig acts as the common ancestor,
1085 14c901f1 2019-08-08 stsp * blob_deriv acts as the first derived version, and the file on disk
1086 14c901f1 2019-08-08 stsp * acts as the second derived version.
1087 14c901f1 2019-08-08 stsp */
1088 14c901f1 2019-08-08 stsp static const struct got_error *
1089 14c901f1 2019-08-08 stsp merge_blob(int *local_changes_subsumed, struct got_worktree *worktree,
1090 14c901f1 2019-08-08 stsp struct got_blob_object *blob_orig, const char *ondisk_path,
1091 f69721c3 2019-10-21 stsp const char *path, uint16_t st_mode, const char *label_orig,
1092 f69721c3 2019-10-21 stsp struct got_blob_object *blob_deriv,
1093 f69721c3 2019-10-21 stsp struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
1094 f69721c3 2019-10-21 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1095 14c901f1 2019-08-08 stsp {
1096 14c901f1 2019-08-08 stsp const struct got_error *err = NULL;
1097 eec2f5a9 2021-06-03 stsp FILE *f_orig = NULL, *f_deriv = NULL, *f_deriv2 = NULL;
1098 67a66647 2021-05-31 stsp char *blob_orig_path = NULL;
1099 14c901f1 2019-08-08 stsp char *blob_deriv_path = NULL, *base_path = NULL, *id_str = NULL;
1100 ed6b5030 2020-10-20 stsp char *label_deriv = NULL, *parent = NULL;
1101 14c901f1 2019-08-08 stsp
1102 14c901f1 2019-08-08 stsp *local_changes_subsumed = 0;
1103 14c901f1 2019-08-08 stsp
1104 ed6b5030 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
1105 ed6b5030 2020-10-20 stsp if (err)
1106 ed6b5030 2020-10-20 stsp return err;
1107 14c901f1 2019-08-08 stsp
1108 67a66647 2021-05-31 stsp if (blob_orig) {
1109 67a66647 2021-05-31 stsp if (asprintf(&base_path, "%s/got-merge-blob-orig",
1110 67a66647 2021-05-31 stsp parent) == -1) {
1111 67a66647 2021-05-31 stsp err = got_error_from_errno("asprintf");
1112 67a66647 2021-05-31 stsp base_path = NULL;
1113 67a66647 2021-05-31 stsp goto done;
1114 67a66647 2021-05-31 stsp }
1115 67a66647 2021-05-31 stsp
1116 67a66647 2021-05-31 stsp err = got_opentemp_named(&blob_orig_path, &f_orig, base_path);
1117 67a66647 2021-05-31 stsp if (err)
1118 67a66647 2021-05-31 stsp goto done;
1119 67a66647 2021-05-31 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_orig,
1120 67a66647 2021-05-31 stsp blob_orig);
1121 67a66647 2021-05-31 stsp if (err)
1122 67a66647 2021-05-31 stsp goto done;
1123 67a66647 2021-05-31 stsp free(base_path);
1124 db590691 2021-06-02 stsp } else {
1125 db590691 2021-06-02 stsp /*
1126 db590691 2021-06-02 stsp * No common ancestor exists. This is an "add vs add" conflict
1127 db590691 2021-06-02 stsp * and we simply use an empty ancestor file to make both files
1128 db590691 2021-06-02 stsp * appear in the merged result in their entirety.
1129 db590691 2021-06-02 stsp */
1130 db590691 2021-06-02 stsp f_orig = got_opentemp();
1131 db590691 2021-06-02 stsp if (f_orig == NULL) {
1132 db590691 2021-06-02 stsp err = got_error_from_errno("got_opentemp");
1133 db590691 2021-06-02 stsp goto done;
1134 db590691 2021-06-02 stsp }
1135 67a66647 2021-05-31 stsp }
1136 67a66647 2021-05-31 stsp
1137 14c901f1 2019-08-08 stsp if (asprintf(&base_path, "%s/got-merge-blob-deriv", parent) == -1) {
1138 14c901f1 2019-08-08 stsp err = got_error_from_errno("asprintf");
1139 14c901f1 2019-08-08 stsp base_path = NULL;
1140 14c901f1 2019-08-08 stsp goto done;
1141 14c901f1 2019-08-08 stsp }
1142 14c901f1 2019-08-08 stsp
1143 14c901f1 2019-08-08 stsp err = got_opentemp_named(&blob_deriv_path, &f_deriv, base_path);
1144 14c901f1 2019-08-08 stsp if (err)
1145 14c901f1 2019-08-08 stsp goto done;
1146 14c901f1 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_deriv,
1147 14c901f1 2019-08-08 stsp blob_deriv);
1148 14c901f1 2019-08-08 stsp if (err)
1149 14c901f1 2019-08-08 stsp goto done;
1150 14c901f1 2019-08-08 stsp
1151 14c901f1 2019-08-08 stsp err = got_object_id_str(&id_str, deriv_base_commit_id);
1152 14c901f1 2019-08-08 stsp if (err)
1153 14c901f1 2019-08-08 stsp goto done;
1154 f69721c3 2019-10-21 stsp if (asprintf(&label_deriv, "%s: commit %s",
1155 f69721c3 2019-10-21 stsp GOT_MERGE_LABEL_MERGED, id_str) == -1) {
1156 14c901f1 2019-08-08 stsp err = got_error_from_errno("asprintf");
1157 14c901f1 2019-08-08 stsp goto done;
1158 eec2f5a9 2021-06-03 stsp }
1159 eec2f5a9 2021-06-03 stsp
1160 eec2f5a9 2021-06-03 stsp /*
1161 eec2f5a9 2021-06-03 stsp * In order the run a 3-way merge with a symlink we copy the symlink's
1162 eec2f5a9 2021-06-03 stsp * target path into a temporary file and use that file with diff3.
1163 eec2f5a9 2021-06-03 stsp */
1164 eec2f5a9 2021-06-03 stsp if (S_ISLNK(st_mode)) {
1165 eec2f5a9 2021-06-03 stsp err = dump_symlink_target_path_to_file(&f_deriv2, ondisk_path);
1166 eec2f5a9 2021-06-03 stsp if (err)
1167 eec2f5a9 2021-06-03 stsp goto done;
1168 eec2f5a9 2021-06-03 stsp } else {
1169 eec2f5a9 2021-06-03 stsp int fd;
1170 eec2f5a9 2021-06-03 stsp fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW);
1171 eec2f5a9 2021-06-03 stsp if (fd == -1) {
1172 eec2f5a9 2021-06-03 stsp err = got_error_from_errno2("open", ondisk_path);
1173 eec2f5a9 2021-06-03 stsp goto done;
1174 eec2f5a9 2021-06-03 stsp }
1175 eec2f5a9 2021-06-03 stsp f_deriv2 = fdopen(fd, "r");
1176 eec2f5a9 2021-06-03 stsp if (f_deriv2 == NULL) {
1177 eec2f5a9 2021-06-03 stsp err = got_error_from_errno2("fdopen", ondisk_path);
1178 eec2f5a9 2021-06-03 stsp close(fd);
1179 eec2f5a9 2021-06-03 stsp goto done;
1180 eec2f5a9 2021-06-03 stsp }
1181 14c901f1 2019-08-08 stsp }
1182 14c901f1 2019-08-08 stsp
1183 07bb0f93 2021-06-02 stsp err = merge_file(local_changes_subsumed, worktree, f_orig, f_deriv,
1184 eec2f5a9 2021-06-03 stsp f_deriv2, ondisk_path, path, st_mode, label_orig, label_deriv,
1185 fdf3c2d3 2021-06-17 stsp NULL, GOT_DIFF_ALGORITHM_MYERS, repo, progress_cb, progress_arg);
1186 14c901f1 2019-08-08 stsp done:
1187 67a66647 2021-05-31 stsp if (f_orig && fclose(f_orig) == EOF && err == NULL)
1188 67a66647 2021-05-31 stsp err = got_error_from_errno("fclose");
1189 56b63ca4 2021-01-22 stsp if (f_deriv && fclose(f_deriv) == EOF && err == NULL)
1190 eec2f5a9 2021-06-03 stsp err = got_error_from_errno("fclose");
1191 eec2f5a9 2021-06-03 stsp if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
1192 14c901f1 2019-08-08 stsp err = got_error_from_errno("fclose");
1193 14c901f1 2019-08-08 stsp free(base_path);
1194 67a66647 2021-05-31 stsp if (blob_orig_path) {
1195 67a66647 2021-05-31 stsp unlink(blob_orig_path);
1196 67a66647 2021-05-31 stsp free(blob_orig_path);
1197 67a66647 2021-05-31 stsp }
1198 14c901f1 2019-08-08 stsp if (blob_deriv_path) {
1199 14c901f1 2019-08-08 stsp unlink(blob_deriv_path);
1200 14c901f1 2019-08-08 stsp free(blob_deriv_path);
1201 14c901f1 2019-08-08 stsp }
1202 6353ad76 2019-02-08 stsp free(id_str);
1203 818c7501 2019-07-11 stsp free(label_deriv);
1204 ed6b5030 2020-10-20 stsp free(parent);
1205 4a1ddfc2 2019-01-12 stsp return err;
1206 4a1ddfc2 2019-01-12 stsp }
1207 4a1ddfc2 2019-01-12 stsp
1208 4a1ddfc2 2019-01-12 stsp static const struct got_error *
1209 65b05cec 2020-07-23 stsp create_fileindex_entry(struct got_fileindex_entry **new_iep,
1210 65b05cec 2020-07-23 stsp struct got_fileindex *fileindex, struct got_object_id *base_commit_id,
1211 437adc9d 2020-12-10 yzhong int wt_fd, const char *path, struct got_object_id *blob_id)
1212 13d9040b 2019-03-27 stsp {
1213 13d9040b 2019-03-27 stsp const struct got_error *err = NULL;
1214 054041d0 2020-06-24 stsp struct got_fileindex_entry *new_ie;
1215 13d9040b 2019-03-27 stsp
1216 65b05cec 2020-07-23 stsp *new_iep = NULL;
1217 65b05cec 2020-07-23 stsp
1218 054041d0 2020-06-24 stsp err = got_fileindex_entry_alloc(&new_ie, path);
1219 054041d0 2020-06-24 stsp if (err)
1220 054041d0 2020-06-24 stsp return err;
1221 054041d0 2020-06-24 stsp
1222 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(new_ie, wt_fd, path,
1223 054041d0 2020-06-24 stsp blob_id->sha1, base_commit_id->sha1, 1);
1224 054041d0 2020-06-24 stsp if (err)
1225 054041d0 2020-06-24 stsp goto done;
1226 054041d0 2020-06-24 stsp
1227 054041d0 2020-06-24 stsp err = got_fileindex_entry_add(fileindex, new_ie);
1228 054041d0 2020-06-24 stsp done:
1229 054041d0 2020-06-24 stsp if (err)
1230 054041d0 2020-06-24 stsp got_fileindex_entry_free(new_ie);
1231 65b05cec 2020-07-23 stsp else
1232 65b05cec 2020-07-23 stsp *new_iep = new_ie;
1233 13d9040b 2019-03-27 stsp return err;
1234 1ebedb77 2019-10-19 stsp }
1235 1ebedb77 2019-10-19 stsp
1236 1ebedb77 2019-10-19 stsp static mode_t
1237 1ebedb77 2019-10-19 stsp get_ondisk_perms(int executable, mode_t st_mode)
1238 1ebedb77 2019-10-19 stsp {
1239 1ebedb77 2019-10-19 stsp mode_t xbits = S_IXUSR;
1240 1ebedb77 2019-10-19 stsp
1241 1ebedb77 2019-10-19 stsp if (executable) {
1242 1ebedb77 2019-10-19 stsp /* Map read bits to execute bits. */
1243 1ebedb77 2019-10-19 stsp if (st_mode & S_IRGRP)
1244 1ebedb77 2019-10-19 stsp xbits |= S_IXGRP;
1245 1ebedb77 2019-10-19 stsp if (st_mode & S_IROTH)
1246 1ebedb77 2019-10-19 stsp xbits |= S_IXOTH;
1247 1ebedb77 2019-10-19 stsp return st_mode | xbits;
1248 1ebedb77 2019-10-19 stsp }
1249 1ebedb77 2019-10-19 stsp
1250 1ebedb77 2019-10-19 stsp return (st_mode & ~(S_IXUSR | S_IXGRP | S_IXOTH));
1251 13d9040b 2019-03-27 stsp }
1252 13d9040b 2019-03-27 stsp
1253 8ba819a3 2020-07-23 stsp /* forward declaration */
1254 13d9040b 2019-03-27 stsp static const struct got_error *
1255 13d9040b 2019-03-27 stsp install_blob(struct got_worktree *worktree, const char *ondisk_path,
1256 bb51a5b4 2020-01-13 stsp const char *path, mode_t te_mode, mode_t st_mode,
1257 4b55f459 2019-09-08 stsp struct got_blob_object *blob, int restoring_missing_file,
1258 bd6aa359 2020-07-23 stsp int reverting_versioned_file, int installing_bad_symlink,
1259 3b9f0f87 2020-07-23 stsp int path_is_unversioned, struct got_repository *repo,
1260 8ba819a3 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg);
1261 8ba819a3 2020-07-23 stsp
1262 5a1fbc73 2020-07-23 stsp /*
1263 5a1fbc73 2020-07-23 stsp * This function assumes that the provided symlink target points at a
1264 5a1fbc73 2020-07-23 stsp * safe location in the work tree!
1265 5a1fbc73 2020-07-23 stsp */
1266 8ba819a3 2020-07-23 stsp static const struct got_error *
1267 c6e8a826 2021-04-05 stsp replace_existing_symlink(int *did_something, const char *ondisk_path,
1268 c6e8a826 2021-04-05 stsp const char *target_path, size_t target_len)
1269 5a1fbc73 2020-07-23 stsp {
1270 5a1fbc73 2020-07-23 stsp const struct got_error *err = NULL;
1271 5a1fbc73 2020-07-23 stsp ssize_t elen;
1272 5a1fbc73 2020-07-23 stsp char etarget[PATH_MAX];
1273 5a1fbc73 2020-07-23 stsp int fd;
1274 5a1fbc73 2020-07-23 stsp
1275 c6e8a826 2021-04-05 stsp *did_something = 0;
1276 c6e8a826 2021-04-05 stsp
1277 5a1fbc73 2020-07-23 stsp /*
1278 5a1fbc73 2020-07-23 stsp * "Bad" symlinks (those pointing outside the work tree or into the
1279 5a1fbc73 2020-07-23 stsp * .got directory) are installed in the work tree as a regular file
1280 5a1fbc73 2020-07-23 stsp * which contains the bad symlink target path.
1281 5a1fbc73 2020-07-23 stsp * The new symlink target has already been checked for safety by our
1282 5a1fbc73 2020-07-23 stsp * caller. If we can successfully open a regular file then we simply
1283 5a1fbc73 2020-07-23 stsp * replace this file with a symlink below.
1284 5a1fbc73 2020-07-23 stsp */
1285 5a1fbc73 2020-07-23 stsp fd = open(ondisk_path, O_RDWR | O_EXCL | O_NOFOLLOW);
1286 5a1fbc73 2020-07-23 stsp if (fd == -1) {
1287 5c02d2a5 2021-09-26 stsp if (!got_err_open_nofollow_on_symlink())
1288 5a1fbc73 2020-07-23 stsp return got_error_from_errno2("open", ondisk_path);
1289 5a1fbc73 2020-07-23 stsp
1290 5a1fbc73 2020-07-23 stsp /* We are updating an existing on-disk symlink. */
1291 5a1fbc73 2020-07-23 stsp elen = readlink(ondisk_path, etarget, sizeof(etarget));
1292 5a1fbc73 2020-07-23 stsp if (elen == -1)
1293 5a1fbc73 2020-07-23 stsp return got_error_from_errno2("readlink", ondisk_path);
1294 5a1fbc73 2020-07-23 stsp
1295 5a1fbc73 2020-07-23 stsp if (elen == target_len &&
1296 5a1fbc73 2020-07-23 stsp memcmp(etarget, target_path, target_len) == 0)
1297 5a1fbc73 2020-07-23 stsp return NULL; /* nothing to do */
1298 5a1fbc73 2020-07-23 stsp }
1299 5a1fbc73 2020-07-23 stsp
1300 c6e8a826 2021-04-05 stsp *did_something = 1;
1301 5a1fbc73 2020-07-23 stsp err = update_symlink(ondisk_path, target_path, target_len);
1302 5a1fbc73 2020-07-23 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
1303 5a1fbc73 2020-07-23 stsp err = got_error_from_errno2("close", ondisk_path);
1304 5a1fbc73 2020-07-23 stsp return err;
1305 3c1ec782 2020-07-23 stsp }
1306 3c1ec782 2020-07-23 stsp
1307 3c1ec782 2020-07-23 stsp static const struct got_error *
1308 3c1ec782 2020-07-23 stsp is_bad_symlink_target(int *is_bad_symlink, const char *target_path,
1309 3c1ec782 2020-07-23 stsp size_t target_len, const char *ondisk_path, const char *wtroot_path)
1310 3c1ec782 2020-07-23 stsp {
1311 3c1ec782 2020-07-23 stsp const struct got_error *err = NULL;
1312 3c1ec782 2020-07-23 stsp char canonpath[PATH_MAX];
1313 3c1ec782 2020-07-23 stsp char *path_got = NULL;
1314 3c1ec782 2020-07-23 stsp
1315 3c1ec782 2020-07-23 stsp *is_bad_symlink = 0;
1316 3c1ec782 2020-07-23 stsp
1317 3c1ec782 2020-07-23 stsp if (target_len >= sizeof(canonpath)) {
1318 3c1ec782 2020-07-23 stsp *is_bad_symlink = 1;
1319 3c1ec782 2020-07-23 stsp return NULL;
1320 3c1ec782 2020-07-23 stsp }
1321 3c1ec782 2020-07-23 stsp
1322 3c1ec782 2020-07-23 stsp /*
1323 3c1ec782 2020-07-23 stsp * We do not use realpath(3) to resolve the symlink's target
1324 3c1ec782 2020-07-23 stsp * path because we don't want to resolve symlinks recursively.
1325 3c1ec782 2020-07-23 stsp * Instead we make the path absolute and then canonicalize it.
1326 3c1ec782 2020-07-23 stsp * Relative symlink target lookup should begin at the directory
1327 3c1ec782 2020-07-23 stsp * in which the blob object is being installed.
1328 3c1ec782 2020-07-23 stsp */
1329 3c1ec782 2020-07-23 stsp if (!got_path_is_absolute(target_path)) {
1330 ce031e9e 2020-10-20 stsp char *abspath, *parent;
1331 ce031e9e 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
1332 ce031e9e 2020-10-20 stsp if (err)
1333 ce031e9e 2020-10-20 stsp return err;
1334 ce031e9e 2020-10-20 stsp if (asprintf(&abspath, "%s/%s", parent, target_path) == -1) {
1335 ce031e9e 2020-10-20 stsp free(parent);
1336 3c1ec782 2020-07-23 stsp return got_error_from_errno("asprintf");
1337 ce031e9e 2020-10-20 stsp }
1338 ce031e9e 2020-10-20 stsp free(parent);
1339 3c1ec782 2020-07-23 stsp if (strlen(abspath) >= sizeof(canonpath)) {
1340 3c1ec782 2020-07-23 stsp err = got_error_path(abspath, GOT_ERR_BAD_PATH);
1341 3c1ec782 2020-07-23 stsp free(abspath);
1342 3c1ec782 2020-07-23 stsp return err;
1343 3c1ec782 2020-07-23 stsp }
1344 3c1ec782 2020-07-23 stsp err = got_canonpath(abspath, canonpath, sizeof(canonpath));
1345 3c1ec782 2020-07-23 stsp free(abspath);
1346 3c1ec782 2020-07-23 stsp if (err)
1347 3c1ec782 2020-07-23 stsp return err;
1348 3c1ec782 2020-07-23 stsp } else {
1349 3c1ec782 2020-07-23 stsp err = got_canonpath(target_path, canonpath, sizeof(canonpath));
1350 3c1ec782 2020-07-23 stsp if (err)
1351 3c1ec782 2020-07-23 stsp return err;
1352 3c1ec782 2020-07-23 stsp }
1353 3c1ec782 2020-07-23 stsp
1354 3c1ec782 2020-07-23 stsp /* Only allow symlinks pointing at paths within the work tree. */
1355 3c1ec782 2020-07-23 stsp if (!got_path_is_child(canonpath, wtroot_path, strlen(wtroot_path))) {
1356 3c1ec782 2020-07-23 stsp *is_bad_symlink = 1;
1357 3c1ec782 2020-07-23 stsp return NULL;
1358 3c1ec782 2020-07-23 stsp }
1359 3c1ec782 2020-07-23 stsp
1360 3c1ec782 2020-07-23 stsp /* Do not allow symlinks pointing into the .got directory. */
1361 3c1ec782 2020-07-23 stsp if (asprintf(&path_got, "%s/%s", wtroot_path,
1362 3c1ec782 2020-07-23 stsp GOT_WORKTREE_GOT_DIR) == -1)
1363 3c1ec782 2020-07-23 stsp return got_error_from_errno("asprintf");
1364 3c1ec782 2020-07-23 stsp if (got_path_is_child(canonpath, path_got, strlen(path_got)))
1365 3c1ec782 2020-07-23 stsp *is_bad_symlink = 1;
1366 3c1ec782 2020-07-23 stsp
1367 3c1ec782 2020-07-23 stsp free(path_got);
1368 3c1ec782 2020-07-23 stsp return NULL;
1369 5a1fbc73 2020-07-23 stsp }
1370 5a1fbc73 2020-07-23 stsp
1371 5a1fbc73 2020-07-23 stsp static const struct got_error *
1372 2e1fa222 2020-07-23 stsp install_symlink(int *is_bad_symlink, struct got_worktree *worktree,
1373 2e1fa222 2020-07-23 stsp const char *ondisk_path, const char *path, struct got_blob_object *blob,
1374 2e1fa222 2020-07-23 stsp int restoring_missing_file, int reverting_versioned_file,
1375 5267b9e4 2021-09-26 stsp int path_is_unversioned, int allow_bad_symlinks,
1376 5267b9e4 2021-09-26 stsp struct got_repository *repo,
1377 4b55f459 2019-09-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1378 9d31a1d8 2018-03-11 stsp {
1379 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1380 8ba819a3 2020-07-23 stsp char target_path[PATH_MAX];
1381 8ba819a3 2020-07-23 stsp size_t len, target_len = 0;
1382 906c123b 2020-07-23 stsp char *path_got = NULL;
1383 8ba819a3 2020-07-23 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
1384 8ba819a3 2020-07-23 stsp size_t hdrlen = got_object_blob_get_hdrlen(blob);
1385 8ba819a3 2020-07-23 stsp
1386 2e1fa222 2020-07-23 stsp *is_bad_symlink = 0;
1387 2e1fa222 2020-07-23 stsp
1388 8ba819a3 2020-07-23 stsp /*
1389 8ba819a3 2020-07-23 stsp * Blob object content specifies the target path of the link.
1390 8ba819a3 2020-07-23 stsp * If a symbolic link cannot be installed we instead create
1391 8ba819a3 2020-07-23 stsp * a regular file which contains the link target path stored
1392 8ba819a3 2020-07-23 stsp * in the blob object.
1393 8ba819a3 2020-07-23 stsp */
1394 8ba819a3 2020-07-23 stsp do {
1395 8ba819a3 2020-07-23 stsp err = got_object_blob_read_block(&len, blob);
1396 8ba819a3 2020-07-23 stsp if (len + target_len >= sizeof(target_path)) {
1397 8ba819a3 2020-07-23 stsp /* Path too long; install as a regular file. */
1398 2e1fa222 2020-07-23 stsp *is_bad_symlink = 1;
1399 8ba819a3 2020-07-23 stsp got_object_blob_rewind(blob);
1400 8ba819a3 2020-07-23 stsp return install_blob(worktree, ondisk_path, path,
1401 b88d214a 2020-07-23 stsp GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1402 8ba819a3 2020-07-23 stsp restoring_missing_file, reverting_versioned_file,
1403 3b9f0f87 2020-07-23 stsp 1, path_is_unversioned, repo, progress_cb,
1404 3b9f0f87 2020-07-23 stsp progress_arg);
1405 8ba819a3 2020-07-23 stsp }
1406 8ba819a3 2020-07-23 stsp if (len > 0) {
1407 8ba819a3 2020-07-23 stsp /* Skip blob object header first time around. */
1408 8ba819a3 2020-07-23 stsp memcpy(target_path + target_len, buf + hdrlen,
1409 8ba819a3 2020-07-23 stsp len - hdrlen);
1410 8ba819a3 2020-07-23 stsp target_len += len - hdrlen;
1411 8ba819a3 2020-07-23 stsp hdrlen = 0;
1412 8ba819a3 2020-07-23 stsp }
1413 8ba819a3 2020-07-23 stsp } while (len != 0);
1414 8ba819a3 2020-07-23 stsp target_path[target_len] = '\0';
1415 8ba819a3 2020-07-23 stsp
1416 3c1ec782 2020-07-23 stsp err = is_bad_symlink_target(is_bad_symlink, target_path, target_len,
1417 3c1ec782 2020-07-23 stsp ondisk_path, worktree->root_path);
1418 3c1ec782 2020-07-23 stsp if (err)
1419 3c1ec782 2020-07-23 stsp return err;
1420 8ba819a3 2020-07-23 stsp
1421 5267b9e4 2021-09-26 stsp if (*is_bad_symlink && !allow_bad_symlinks) {
1422 906c123b 2020-07-23 stsp /* install as a regular file */
1423 906c123b 2020-07-23 stsp got_object_blob_rewind(blob);
1424 906c123b 2020-07-23 stsp err = install_blob(worktree, ondisk_path, path,
1425 b88d214a 2020-07-23 stsp GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1426 bd6aa359 2020-07-23 stsp restoring_missing_file, reverting_versioned_file, 1,
1427 3b9f0f87 2020-07-23 stsp path_is_unversioned, repo, progress_cb, progress_arg);
1428 906c123b 2020-07-23 stsp goto done;
1429 906c123b 2020-07-23 stsp }
1430 906c123b 2020-07-23 stsp
1431 8ba819a3 2020-07-23 stsp if (symlink(target_path, ondisk_path) == -1) {
1432 8ba819a3 2020-07-23 stsp if (errno == EEXIST) {
1433 c6e8a826 2021-04-05 stsp int symlink_replaced;
1434 c90c8ce3 2020-07-23 stsp if (path_is_unversioned) {
1435 c90c8ce3 2020-07-23 stsp err = (*progress_cb)(progress_arg,
1436 c90c8ce3 2020-07-23 stsp GOT_STATUS_UNVERSIONED, path);
1437 c90c8ce3 2020-07-23 stsp goto done;
1438 c90c8ce3 2020-07-23 stsp }
1439 c6e8a826 2021-04-05 stsp err = replace_existing_symlink(&symlink_replaced,
1440 c6e8a826 2021-04-05 stsp ondisk_path, target_path, target_len);
1441 5a1fbc73 2020-07-23 stsp if (err)
1442 f35fa46a 2020-07-23 stsp goto done;
1443 5a1fbc73 2020-07-23 stsp if (progress_cb) {
1444 c6e8a826 2021-04-05 stsp if (symlink_replaced) {
1445 c6e8a826 2021-04-05 stsp err = (*progress_cb)(progress_arg,
1446 c6e8a826 2021-04-05 stsp reverting_versioned_file ?
1447 c6e8a826 2021-04-05 stsp GOT_STATUS_REVERT :
1448 c6e8a826 2021-04-05 stsp GOT_STATUS_UPDATE, path);
1449 c6e8a826 2021-04-05 stsp } else {
1450 c6e8a826 2021-04-05 stsp err = (*progress_cb)(progress_arg,
1451 c6e8a826 2021-04-05 stsp GOT_STATUS_EXISTS, path);
1452 c6e8a826 2021-04-05 stsp }
1453 f35fa46a 2020-07-23 stsp }
1454 5a1fbc73 2020-07-23 stsp goto done; /* Nothing else to do. */
1455 f35fa46a 2020-07-23 stsp }
1456 f35fa46a 2020-07-23 stsp
1457 f35fa46a 2020-07-23 stsp if (errno == ENOENT) {
1458 f4994adc 2020-10-20 stsp char *parent;
1459 f4994adc 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
1460 f4994adc 2020-10-20 stsp if (err)
1461 f4994adc 2020-10-20 stsp goto done;
1462 f35fa46a 2020-07-23 stsp err = add_dir_on_disk(worktree, parent);
1463 f4994adc 2020-10-20 stsp free(parent);
1464 f35fa46a 2020-07-23 stsp if (err)
1465 f35fa46a 2020-07-23 stsp goto done;
1466 f35fa46a 2020-07-23 stsp /*
1467 f35fa46a 2020-07-23 stsp * Retry, and fall through to error handling
1468 f35fa46a 2020-07-23 stsp * below if this second attempt fails.
1469 f35fa46a 2020-07-23 stsp */
1470 f35fa46a 2020-07-23 stsp if (symlink(target_path, ondisk_path) != -1) {
1471 f35fa46a 2020-07-23 stsp err = NULL; /* success */
1472 f35fa46a 2020-07-23 stsp goto done;
1473 f35fa46a 2020-07-23 stsp }
1474 f35fa46a 2020-07-23 stsp }
1475 f35fa46a 2020-07-23 stsp
1476 f35fa46a 2020-07-23 stsp /* Handle errors from first or second creation attempt. */
1477 f35fa46a 2020-07-23 stsp if (errno == ENAMETOOLONG) {
1478 8ba819a3 2020-07-23 stsp /* bad target path; install as a regular file */
1479 2e1fa222 2020-07-23 stsp *is_bad_symlink = 1;
1480 8ba819a3 2020-07-23 stsp got_object_blob_rewind(blob);
1481 8ba819a3 2020-07-23 stsp err = install_blob(worktree, ondisk_path, path,
1482 b88d214a 2020-07-23 stsp GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1483 bd6aa359 2020-07-23 stsp restoring_missing_file, reverting_versioned_file, 1,
1484 3b9f0f87 2020-07-23 stsp path_is_unversioned, repo,
1485 3b9f0f87 2020-07-23 stsp progress_cb, progress_arg);
1486 8ba819a3 2020-07-23 stsp } else if (errno == ENOTDIR) {
1487 8ba819a3 2020-07-23 stsp err = got_error_path(ondisk_path,
1488 8ba819a3 2020-07-23 stsp GOT_ERR_FILE_OBSTRUCTED);
1489 8ba819a3 2020-07-23 stsp } else {
1490 8ba819a3 2020-07-23 stsp err = got_error_from_errno3("symlink",
1491 8ba819a3 2020-07-23 stsp target_path, ondisk_path);
1492 8ba819a3 2020-07-23 stsp }
1493 bd6aa359 2020-07-23 stsp } else if (progress_cb)
1494 6e1eade5 2020-07-23 stsp err = (*progress_cb)(progress_arg, reverting_versioned_file ?
1495 6e1eade5 2020-07-23 stsp GOT_STATUS_REVERT : GOT_STATUS_ADD, path);
1496 8ba819a3 2020-07-23 stsp done:
1497 906c123b 2020-07-23 stsp free(path_got);
1498 8ba819a3 2020-07-23 stsp return err;
1499 8ba819a3 2020-07-23 stsp }
1500 8ba819a3 2020-07-23 stsp
1501 8ba819a3 2020-07-23 stsp static const struct got_error *
1502 8ba819a3 2020-07-23 stsp install_blob(struct got_worktree *worktree, const char *ondisk_path,
1503 8ba819a3 2020-07-23 stsp const char *path, mode_t te_mode, mode_t st_mode,
1504 8ba819a3 2020-07-23 stsp struct got_blob_object *blob, int restoring_missing_file,
1505 bd6aa359 2020-07-23 stsp int reverting_versioned_file, int installing_bad_symlink,
1506 3b9f0f87 2020-07-23 stsp int path_is_unversioned, struct got_repository *repo,
1507 3b9f0f87 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1508 8ba819a3 2020-07-23 stsp {
1509 8ba819a3 2020-07-23 stsp const struct got_error *err = NULL;
1510 507dc3bb 2018-12-29 stsp int fd = -1;
1511 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
1512 507dc3bb 2018-12-29 stsp int update = 0;
1513 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
1514 8ba819a3 2020-07-23 stsp
1515 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
1516 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
1517 9d31a1d8 2018-03-11 stsp if (fd == -1) {
1518 21908da4 2019-01-13 stsp if (errno == ENOENT) {
1519 f5375317 2020-10-20 stsp char *parent;
1520 f5375317 2020-10-20 stsp err = got_path_dirname(&parent, path);
1521 f5375317 2020-10-20 stsp if (err)
1522 f5375317 2020-10-20 stsp return err;
1523 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
1524 f5375317 2020-10-20 stsp free(parent);
1525 21908da4 2019-01-13 stsp if (err)
1526 21908da4 2019-01-13 stsp return err;
1527 21908da4 2019-01-13 stsp fd = open(ondisk_path,
1528 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
1529 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
1530 21908da4 2019-01-13 stsp if (fd == -1)
1531 638f9024 2019-05-13 stsp return got_error_from_errno2("open",
1532 230a42bd 2019-05-11 jcs ondisk_path);
1533 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
1534 3b9f0f87 2020-07-23 stsp if (path_is_unversioned) {
1535 3b9f0f87 2020-07-23 stsp err = (*progress_cb)(progress_arg,
1536 3b9f0f87 2020-07-23 stsp GOT_STATUS_UNVERSIONED, path);
1537 3b9f0f87 2020-07-23 stsp goto done;
1538 3b9f0f87 2020-07-23 stsp }
1539 f6d8c0ac 2020-11-09 stsp if (!(S_ISLNK(st_mode) && S_ISREG(te_mode)) &&
1540 f6d8c0ac 2020-11-09 stsp !S_ISREG(st_mode) && !installing_bad_symlink) {
1541 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
1542 3665fce0 2020-07-13 stsp err = got_error_path(ondisk_path,
1543 3665fce0 2020-07-13 stsp GOT_ERR_FILE_OBSTRUCTED);
1544 507dc3bb 2018-12-29 stsp goto done;
1545 d70b8e30 2018-12-27 stsp } else {
1546 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
1547 507dc3bb 2018-12-29 stsp ondisk_path);
1548 507dc3bb 2018-12-29 stsp if (err)
1549 507dc3bb 2018-12-29 stsp goto done;
1550 507dc3bb 2018-12-29 stsp update = 1;
1551 9d31a1d8 2018-03-11 stsp }
1552 507dc3bb 2018-12-29 stsp } else
1553 638f9024 2019-05-13 stsp return got_error_from_errno2("open", ondisk_path);
1554 9d31a1d8 2018-03-11 stsp }
1555 9d31a1d8 2018-03-11 stsp
1556 3818e3c4 2020-11-01 naddy if (fchmod(fd, get_ondisk_perms(te_mode & S_IXUSR, st_mode)) == -1) {
1557 3818e3c4 2020-11-01 naddy err = got_error_from_errno2("fchmod",
1558 3818e3c4 2020-11-01 naddy update ? tmppath : ondisk_path);
1559 3818e3c4 2020-11-01 naddy goto done;
1560 3818e3c4 2020-11-01 naddy }
1561 3818e3c4 2020-11-01 naddy
1562 bd6aa359 2020-07-23 stsp if (progress_cb) {
1563 bd6aa359 2020-07-23 stsp if (restoring_missing_file)
1564 bd6aa359 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MISSING,
1565 bd6aa359 2020-07-23 stsp path);
1566 bd6aa359 2020-07-23 stsp else if (reverting_versioned_file)
1567 bd6aa359 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_REVERT,
1568 bd6aa359 2020-07-23 stsp path);
1569 bd6aa359 2020-07-23 stsp else
1570 bd6aa359 2020-07-23 stsp err = (*progress_cb)(progress_arg,
1571 bd6aa359 2020-07-23 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
1572 bd6aa359 2020-07-23 stsp if (err)
1573 bd6aa359 2020-07-23 stsp goto done;
1574 bd6aa359 2020-07-23 stsp }
1575 d7b62c98 2018-12-27 stsp
1576 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1577 9d31a1d8 2018-03-11 stsp do {
1578 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
1579 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
1580 9d31a1d8 2018-03-11 stsp if (err)
1581 9d31a1d8 2018-03-11 stsp break;
1582 9d31a1d8 2018-03-11 stsp if (len > 0) {
1583 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
1584 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
1585 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
1586 638f9024 2019-05-13 stsp err = got_error_from_errno("write");
1587 b87c6f83 2018-12-24 stsp goto done;
1588 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
1589 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
1590 b87c6f83 2018-12-24 stsp goto done;
1591 9d31a1d8 2018-03-11 stsp }
1592 61d6eaa3 2018-12-24 stsp hdrlen = 0;
1593 9d31a1d8 2018-03-11 stsp }
1594 9d31a1d8 2018-03-11 stsp } while (len != 0);
1595 9d31a1d8 2018-03-11 stsp
1596 816dc654 2019-02-16 stsp if (fsync(fd) != 0) {
1597 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
1598 816dc654 2019-02-16 stsp goto done;
1599 816dc654 2019-02-16 stsp }
1600 9d31a1d8 2018-03-11 stsp
1601 507dc3bb 2018-12-29 stsp if (update) {
1602 f6d8c0ac 2020-11-09 stsp if (S_ISLNK(st_mode) && unlink(ondisk_path) == -1) {
1603 f6d8c0ac 2020-11-09 stsp err = got_error_from_errno2("unlink", ondisk_path);
1604 f6d8c0ac 2020-11-09 stsp goto done;
1605 f6d8c0ac 2020-11-09 stsp }
1606 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
1607 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath,
1608 230a42bd 2019-05-11 jcs ondisk_path);
1609 68ed9ba5 2019-02-10 stsp goto done;
1610 68ed9ba5 2019-02-10 stsp }
1611 63df146d 2020-11-09 stsp free(tmppath);
1612 63df146d 2020-11-09 stsp tmppath = NULL;
1613 507dc3bb 2018-12-29 stsp }
1614 507dc3bb 2018-12-29 stsp
1615 9d31a1d8 2018-03-11 stsp done:
1616 08578a35 2021-01-22 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
1617 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
1618 63df146d 2020-11-09 stsp if (tmppath != NULL && unlink(tmppath) == -1 && err == NULL)
1619 63df146d 2020-11-09 stsp err = got_error_from_errno2("unlink", tmppath);
1620 507dc3bb 2018-12-29 stsp free(tmppath);
1621 6353ad76 2019-02-08 stsp return err;
1622 6353ad76 2019-02-08 stsp }
1623 6353ad76 2019-02-08 stsp
1624 7154f6ce 2019-03-27 stsp /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
1625 6353ad76 2019-02-08 stsp static const struct got_error *
1626 7154f6ce 2019-03-27 stsp get_modified_file_content_status(unsigned char *status, FILE *f)
1627 7154f6ce 2019-03-27 stsp {
1628 7154f6ce 2019-03-27 stsp const struct got_error *err = NULL;
1629 7154f6ce 2019-03-27 stsp const char *markers[3] = {
1630 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_BEGIN,
1631 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_SEP,
1632 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_END
1633 7154f6ce 2019-03-27 stsp };
1634 7154f6ce 2019-03-27 stsp int i = 0;
1635 9bdd68dd 2021-01-02 naddy char *line = NULL;
1636 9bdd68dd 2021-01-02 naddy size_t linesize = 0;
1637 9bdd68dd 2021-01-02 naddy ssize_t linelen;
1638 7154f6ce 2019-03-27 stsp
1639 7154f6ce 2019-03-27 stsp while (*status == GOT_STATUS_MODIFY) {
1640 9bdd68dd 2021-01-02 naddy linelen = getline(&line, &linesize, f);
1641 9bdd68dd 2021-01-02 naddy if (linelen == -1) {
1642 7154f6ce 2019-03-27 stsp if (feof(f))
1643 7154f6ce 2019-03-27 stsp break;
1644 7154f6ce 2019-03-27 stsp err = got_ferror(f, GOT_ERR_IO);
1645 7154f6ce 2019-03-27 stsp break;
1646 7154f6ce 2019-03-27 stsp }
1647 7154f6ce 2019-03-27 stsp
1648 7154f6ce 2019-03-27 stsp if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1649 19332e6d 2019-05-13 stsp if (strcmp(markers[i], GOT_DIFF_CONFLICT_MARKER_END)
1650 19332e6d 2019-05-13 stsp == 0)
1651 7154f6ce 2019-03-27 stsp *status = GOT_STATUS_CONFLICT;
1652 7154f6ce 2019-03-27 stsp else
1653 7154f6ce 2019-03-27 stsp i++;
1654 7154f6ce 2019-03-27 stsp }
1655 7154f6ce 2019-03-27 stsp }
1656 9bdd68dd 2021-01-02 naddy free(line);
1657 7154f6ce 2019-03-27 stsp
1658 7154f6ce 2019-03-27 stsp return err;
1659 e2b1e152 2019-07-13 stsp }
1660 e2b1e152 2019-07-13 stsp
1661 e2b1e152 2019-07-13 stsp static int
1662 1ebedb77 2019-10-19 stsp xbit_differs(struct got_fileindex_entry *ie, uint16_t st_mode)
1663 1ebedb77 2019-10-19 stsp {
1664 1ebedb77 2019-10-19 stsp mode_t ie_mode = got_fileindex_perms_to_st(ie);
1665 1ebedb77 2019-10-19 stsp return ((ie_mode & S_IXUSR) != (st_mode & S_IXUSR));
1666 1ebedb77 2019-10-19 stsp }
1667 1ebedb77 2019-10-19 stsp
1668 1ebedb77 2019-10-19 stsp static int
1669 e2b1e152 2019-07-13 stsp stat_info_differs(struct got_fileindex_entry *ie, struct stat *sb)
1670 e2b1e152 2019-07-13 stsp {
1671 0823ffc2 2020-09-10 naddy return !(ie->ctime_sec == sb->st_ctim.tv_sec &&
1672 0823ffc2 2020-09-10 naddy ie->ctime_nsec == sb->st_ctim.tv_nsec &&
1673 0823ffc2 2020-09-10 naddy ie->mtime_sec == sb->st_mtim.tv_sec &&
1674 0823ffc2 2020-09-10 naddy ie->mtime_nsec == sb->st_mtim.tv_nsec &&
1675 1ebedb77 2019-10-19 stsp ie->size == (sb->st_size & 0xffffffff) &&
1676 1ebedb77 2019-10-19 stsp !xbit_differs(ie, sb->st_mode));
1677 c363b2c1 2019-08-03 stsp }
1678 c363b2c1 2019-08-03 stsp
1679 c363b2c1 2019-08-03 stsp static unsigned char
1680 c363b2c1 2019-08-03 stsp get_staged_status(struct got_fileindex_entry *ie)
1681 c363b2c1 2019-08-03 stsp {
1682 c363b2c1 2019-08-03 stsp switch (got_fileindex_entry_stage_get(ie)) {
1683 c363b2c1 2019-08-03 stsp case GOT_FILEIDX_STAGE_ADD:
1684 c363b2c1 2019-08-03 stsp return GOT_STATUS_ADD;
1685 c363b2c1 2019-08-03 stsp case GOT_FILEIDX_STAGE_DELETE:
1686 c363b2c1 2019-08-03 stsp return GOT_STATUS_DELETE;
1687 c363b2c1 2019-08-03 stsp case GOT_FILEIDX_STAGE_MODIFY:
1688 c363b2c1 2019-08-03 stsp return GOT_STATUS_MODIFY;
1689 c363b2c1 2019-08-03 stsp default:
1690 c363b2c1 2019-08-03 stsp return GOT_STATUS_NO_CHANGE;
1691 a919d5c4 2020-07-23 stsp }
1692 a919d5c4 2020-07-23 stsp }
1693 a919d5c4 2020-07-23 stsp
1694 a919d5c4 2020-07-23 stsp static const struct got_error *
1695 f9eec9d5 2020-07-23 stsp get_symlink_modification_status(unsigned char *status,
1696 a919d5c4 2020-07-23 stsp struct got_fileindex_entry *ie, const char *abspath,
1697 a919d5c4 2020-07-23 stsp int dirfd, const char *de_name, struct got_blob_object *blob)
1698 a919d5c4 2020-07-23 stsp {
1699 a919d5c4 2020-07-23 stsp const struct got_error *err = NULL;
1700 a919d5c4 2020-07-23 stsp char target_path[PATH_MAX];
1701 a919d5c4 2020-07-23 stsp char etarget[PATH_MAX];
1702 a919d5c4 2020-07-23 stsp ssize_t elen;
1703 a919d5c4 2020-07-23 stsp size_t len, target_len = 0;
1704 a919d5c4 2020-07-23 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
1705 a919d5c4 2020-07-23 stsp size_t hdrlen = got_object_blob_get_hdrlen(blob);
1706 a919d5c4 2020-07-23 stsp
1707 a919d5c4 2020-07-23 stsp *status = GOT_STATUS_NO_CHANGE;
1708 a919d5c4 2020-07-23 stsp
1709 a919d5c4 2020-07-23 stsp /* Blob object content specifies the target path of the link. */
1710 a919d5c4 2020-07-23 stsp do {
1711 a919d5c4 2020-07-23 stsp err = got_object_blob_read_block(&len, blob);
1712 a919d5c4 2020-07-23 stsp if (err)
1713 a919d5c4 2020-07-23 stsp return err;
1714 a919d5c4 2020-07-23 stsp if (len + target_len >= sizeof(target_path)) {
1715 a919d5c4 2020-07-23 stsp /*
1716 a919d5c4 2020-07-23 stsp * Should not happen. The blob contents were OK
1717 a919d5c4 2020-07-23 stsp * when this symlink was installed.
1718 a919d5c4 2020-07-23 stsp */
1719 a919d5c4 2020-07-23 stsp return got_error(GOT_ERR_NO_SPACE);
1720 a919d5c4 2020-07-23 stsp }
1721 a919d5c4 2020-07-23 stsp if (len > 0) {
1722 a919d5c4 2020-07-23 stsp /* Skip blob object header first time around. */
1723 a919d5c4 2020-07-23 stsp memcpy(target_path + target_len, buf + hdrlen,
1724 a919d5c4 2020-07-23 stsp len - hdrlen);
1725 a919d5c4 2020-07-23 stsp target_len += len - hdrlen;
1726 a919d5c4 2020-07-23 stsp hdrlen = 0;
1727 a919d5c4 2020-07-23 stsp }
1728 a919d5c4 2020-07-23 stsp } while (len != 0);
1729 a919d5c4 2020-07-23 stsp target_path[target_len] = '\0';
1730 a919d5c4 2020-07-23 stsp
1731 a919d5c4 2020-07-23 stsp if (dirfd != -1) {
1732 a919d5c4 2020-07-23 stsp elen = readlinkat(dirfd, de_name, etarget, sizeof(etarget));
1733 a919d5c4 2020-07-23 stsp if (elen == -1)
1734 a919d5c4 2020-07-23 stsp return got_error_from_errno2("readlinkat", abspath);
1735 a919d5c4 2020-07-23 stsp } else {
1736 a919d5c4 2020-07-23 stsp elen = readlink(abspath, etarget, sizeof(etarget));
1737 a919d5c4 2020-07-23 stsp if (elen == -1)
1738 b448fd00 2020-07-23 stsp return got_error_from_errno2("readlink", abspath);
1739 c363b2c1 2019-08-03 stsp }
1740 a919d5c4 2020-07-23 stsp
1741 a919d5c4 2020-07-23 stsp if (elen != target_len || memcmp(etarget, target_path, target_len) != 0)
1742 a919d5c4 2020-07-23 stsp *status = GOT_STATUS_MODIFY;
1743 a919d5c4 2020-07-23 stsp
1744 a919d5c4 2020-07-23 stsp return NULL;
1745 7154f6ce 2019-03-27 stsp }
1746 7154f6ce 2019-03-27 stsp
1747 7154f6ce 2019-03-27 stsp static const struct got_error *
1748 b8f41171 2019-02-10 stsp get_file_status(unsigned char *status, struct stat *sb,
1749 b8f41171 2019-02-10 stsp struct got_fileindex_entry *ie, const char *abspath,
1750 7f91a133 2019-12-13 stsp int dirfd, const char *de_name, struct got_repository *repo)
1751 6353ad76 2019-02-08 stsp {
1752 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
1753 6353ad76 2019-02-08 stsp struct got_object_id id;
1754 6353ad76 2019-02-08 stsp size_t hdrlen;
1755 1338848f 2019-12-13 stsp int fd = -1;
1756 6353ad76 2019-02-08 stsp FILE *f = NULL;
1757 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
1758 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
1759 6353ad76 2019-02-08 stsp size_t flen, blen;
1760 c363b2c1 2019-08-03 stsp unsigned char staged_status = get_staged_status(ie);
1761 6353ad76 2019-02-08 stsp
1762 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
1763 4cc1f028 2021-03-23 stsp memset(sb, 0, sizeof(*sb));
1764 6353ad76 2019-02-08 stsp
1765 7f91a133 2019-12-13 stsp /*
1766 7f91a133 2019-12-13 stsp * Whenever the caller provides a directory descriptor and a
1767 7f91a133 2019-12-13 stsp * directory entry name for the file, use them! This prevents
1768 7f91a133 2019-12-13 stsp * race conditions if filesystem paths change beneath our feet.
1769 7f91a133 2019-12-13 stsp */
1770 7f91a133 2019-12-13 stsp if (dirfd != -1) {
1771 3d35a492 2019-12-13 stsp if (fstatat(dirfd, de_name, sb, AT_SYMLINK_NOFOLLOW) == -1) {
1772 882ef1b9 2019-12-13 stsp if (errno == ENOENT) {
1773 882ef1b9 2019-12-13 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1774 882ef1b9 2019-12-13 stsp *status = GOT_STATUS_MISSING;
1775 882ef1b9 2019-12-13 stsp else
1776 882ef1b9 2019-12-13 stsp *status = GOT_STATUS_DELETE;
1777 882ef1b9 2019-12-13 stsp goto done;
1778 882ef1b9 2019-12-13 stsp }
1779 3d35a492 2019-12-13 stsp err = got_error_from_errno2("fstatat", abspath);
1780 3d35a492 2019-12-13 stsp goto done;
1781 3d35a492 2019-12-13 stsp }
1782 7f91a133 2019-12-13 stsp } else {
1783 7f91a133 2019-12-13 stsp fd = open(abspath, O_RDONLY | O_NOFOLLOW);
1784 5c02d2a5 2021-09-26 stsp if (fd == -1 && errno != ENOENT &&
1785 5c02d2a5 2021-09-26 stsp !got_err_open_nofollow_on_symlink())
1786 7f91a133 2019-12-13 stsp return got_error_from_errno2("open", abspath);
1787 5c02d2a5 2021-09-26 stsp else if (fd == -1 && got_err_open_nofollow_on_symlink()) {
1788 a919d5c4 2020-07-23 stsp if (lstat(abspath, sb) == -1)
1789 a919d5c4 2020-07-23 stsp return got_error_from_errno2("lstat", abspath);
1790 a919d5c4 2020-07-23 stsp } else if (fd == -1 || fstat(fd, sb) == -1) {
1791 3d35a492 2019-12-13 stsp if (errno == ENOENT) {
1792 3d35a492 2019-12-13 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1793 3d35a492 2019-12-13 stsp *status = GOT_STATUS_MISSING;
1794 3d35a492 2019-12-13 stsp else
1795 3d35a492 2019-12-13 stsp *status = GOT_STATUS_DELETE;
1796 3d35a492 2019-12-13 stsp goto done;
1797 3d35a492 2019-12-13 stsp }
1798 3d35a492 2019-12-13 stsp err = got_error_from_errno2("fstat", abspath);
1799 1338848f 2019-12-13 stsp goto done;
1800 a378724f 2019-02-10 stsp }
1801 a378724f 2019-02-10 stsp }
1802 6353ad76 2019-02-08 stsp
1803 00bb5ea0 2020-07-23 stsp if (!S_ISREG(sb->st_mode) && !S_ISLNK(sb->st_mode)) {
1804 339c298e 2019-07-27 stsp *status = GOT_STATUS_OBSTRUCTED;
1805 1338848f 2019-12-13 stsp goto done;
1806 3f148bc6 2019-07-27 stsp }
1807 efdd40df 2019-07-27 stsp
1808 2ec1f75b 2019-03-26 stsp if (!got_fileindex_entry_has_file_on_disk(ie)) {
1809 339c298e 2019-07-27 stsp *status = GOT_STATUS_DELETE;
1810 1338848f 2019-12-13 stsp goto done;
1811 244725f2 2019-08-03 stsp } else if (!got_fileindex_entry_has_blob(ie) &&
1812 244725f2 2019-08-03 stsp staged_status != GOT_STATUS_ADD) {
1813 339c298e 2019-07-27 stsp *status = GOT_STATUS_ADD;
1814 1338848f 2019-12-13 stsp goto done;
1815 d00136be 2019-03-26 stsp }
1816 b8f41171 2019-02-10 stsp
1817 e2b1e152 2019-07-13 stsp if (!stat_info_differs(ie, sb))
1818 f179e66d 2020-07-23 stsp goto done;
1819 f179e66d 2020-07-23 stsp
1820 f179e66d 2020-07-23 stsp if (S_ISLNK(sb->st_mode) &&
1821 f179e66d 2020-07-23 stsp got_fileindex_entry_filetype_get(ie) != GOT_FILEIDX_MODE_SYMLINK) {
1822 f179e66d 2020-07-23 stsp *status = GOT_STATUS_MODIFY;
1823 1338848f 2019-12-13 stsp goto done;
1824 f179e66d 2020-07-23 stsp }
1825 6353ad76 2019-02-08 stsp
1826 c363b2c1 2019-08-03 stsp if (staged_status == GOT_STATUS_MODIFY ||
1827 c363b2c1 2019-08-03 stsp staged_status == GOT_STATUS_ADD)
1828 c363b2c1 2019-08-03 stsp memcpy(id.sha1, ie->staged_blob_sha1, sizeof(id.sha1));
1829 c363b2c1 2019-08-03 stsp else
1830 c363b2c1 2019-08-03 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1831 c363b2c1 2019-08-03 stsp
1832 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1833 6353ad76 2019-02-08 stsp if (err)
1834 1338848f 2019-12-13 stsp goto done;
1835 6353ad76 2019-02-08 stsp
1836 a919d5c4 2020-07-23 stsp if (S_ISLNK(sb->st_mode)) {
1837 f9eec9d5 2020-07-23 stsp err = get_symlink_modification_status(status, ie,
1838 f9eec9d5 2020-07-23 stsp abspath, dirfd, de_name, blob);
1839 a919d5c4 2020-07-23 stsp goto done;
1840 a919d5c4 2020-07-23 stsp }
1841 a919d5c4 2020-07-23 stsp
1842 3d35a492 2019-12-13 stsp if (dirfd != -1) {
1843 3d35a492 2019-12-13 stsp fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
1844 ab0d4361 2019-12-13 stsp if (fd == -1) {
1845 ab0d4361 2019-12-13 stsp err = got_error_from_errno2("openat", abspath);
1846 ab0d4361 2019-12-13 stsp goto done;
1847 ab0d4361 2019-12-13 stsp }
1848 3d35a492 2019-12-13 stsp }
1849 3d35a492 2019-12-13 stsp
1850 1338848f 2019-12-13 stsp f = fdopen(fd, "r");
1851 6353ad76 2019-02-08 stsp if (f == NULL) {
1852 60522982 2019-12-15 stsp err = got_error_from_errno2("fdopen", abspath);
1853 6353ad76 2019-02-08 stsp goto done;
1854 6353ad76 2019-02-08 stsp }
1855 1338848f 2019-12-13 stsp fd = -1;
1856 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1857 656b1f76 2019-05-11 jcs for (;;) {
1858 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1859 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
1860 6353ad76 2019-02-08 stsp if (err)
1861 7154f6ce 2019-03-27 stsp goto done;
1862 3cbbd752 2019-02-19 stsp /* Skip length of blob object header first time around. */
1863 3cbbd752 2019-02-19 stsp flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1864 80c5c120 2019-02-19 stsp if (flen == 0 && ferror(f)) {
1865 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
1866 7154f6ce 2019-03-27 stsp goto done;
1867 80c5c120 2019-02-19 stsp }
1868 4a26d3f8 2020-10-07 stsp if (blen - hdrlen == 0) {
1869 6353ad76 2019-02-08 stsp if (flen != 0)
1870 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1871 6353ad76 2019-02-08 stsp break;
1872 6353ad76 2019-02-08 stsp } else if (flen == 0) {
1873 4a26d3f8 2020-10-07 stsp if (blen - hdrlen != 0)
1874 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1875 6353ad76 2019-02-08 stsp break;
1876 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
1877 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
1878 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1879 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1880 6353ad76 2019-02-08 stsp break;
1881 6353ad76 2019-02-08 stsp }
1882 6353ad76 2019-02-08 stsp } else {
1883 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1884 6353ad76 2019-02-08 stsp break;
1885 6353ad76 2019-02-08 stsp }
1886 6353ad76 2019-02-08 stsp hdrlen = 0;
1887 6353ad76 2019-02-08 stsp }
1888 7154f6ce 2019-03-27 stsp
1889 7154f6ce 2019-03-27 stsp if (*status == GOT_STATUS_MODIFY) {
1890 7154f6ce 2019-03-27 stsp rewind(f);
1891 7154f6ce 2019-03-27 stsp err = get_modified_file_content_status(status, f);
1892 1ebedb77 2019-10-19 stsp } else if (xbit_differs(ie, sb->st_mode))
1893 1ebedb77 2019-10-19 stsp *status = GOT_STATUS_MODE_CHANGE;
1894 6353ad76 2019-02-08 stsp done:
1895 6353ad76 2019-02-08 stsp if (blob)
1896 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
1897 43ff8261 2019-12-13 stsp if (f != NULL && fclose(f) == EOF && err == NULL)
1898 f4d199c9 2019-12-13 stsp err = got_error_from_errno2("fclose", abspath);
1899 1338848f 2019-12-13 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
1900 1338848f 2019-12-13 stsp err = got_error_from_errno2("close", abspath);
1901 9d31a1d8 2018-03-11 stsp return err;
1902 e2b1e152 2019-07-13 stsp }
1903 e2b1e152 2019-07-13 stsp
1904 e2b1e152 2019-07-13 stsp /*
1905 e2b1e152 2019-07-13 stsp * Update timestamps in the file index if a file is unmodified and
1906 e2b1e152 2019-07-13 stsp * we had to run a full content comparison to find out.
1907 e2b1e152 2019-07-13 stsp */
1908 e2b1e152 2019-07-13 stsp static const struct got_error *
1909 437adc9d 2020-12-10 yzhong sync_timestamps(int wt_fd, const char *path, unsigned char status,
1910 e2b1e152 2019-07-13 stsp struct got_fileindex_entry *ie, struct stat *sb)
1911 e2b1e152 2019-07-13 stsp {
1912 e2b1e152 2019-07-13 stsp if (status == GOT_STATUS_NO_CHANGE && stat_info_differs(ie, sb))
1913 437adc9d 2020-12-10 yzhong return got_fileindex_entry_update(ie, wt_fd, path,
1914 e2b1e152 2019-07-13 stsp ie->blob_sha1, ie->commit_sha1, 1);
1915 e2b1e152 2019-07-13 stsp
1916 e2b1e152 2019-07-13 stsp return NULL;
1917 9d31a1d8 2018-03-11 stsp }
1918 9d31a1d8 2018-03-11 stsp
1919 9d31a1d8 2018-03-11 stsp static const struct got_error *
1920 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
1921 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1922 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
1923 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1924 0584f854 2019-04-06 stsp void *progress_arg)
1925 9d31a1d8 2018-03-11 stsp {
1926 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1927 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
1928 6353ad76 2019-02-08 stsp char *ondisk_path;
1929 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1930 b8f41171 2019-02-10 stsp struct stat sb;
1931 9d31a1d8 2018-03-11 stsp
1932 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1933 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1934 6353ad76 2019-02-08 stsp
1935 abb4604f 2019-07-27 stsp if (ie) {
1936 a76c42e6 2019-08-03 stsp if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE) {
1937 a76c42e6 2019-08-03 stsp err = got_error_path(ie->path, GOT_ERR_FILE_STAGED);
1938 a76c42e6 2019-08-03 stsp goto done;
1939 a76c42e6 2019-08-03 stsp }
1940 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
1941 7f91a133 2019-12-13 stsp repo);
1942 abb4604f 2019-07-27 stsp if (err)
1943 abb4604f 2019-07-27 stsp goto done;
1944 abb4604f 2019-07-27 stsp if (status == GOT_STATUS_MISSING || status == GOT_STATUS_DELETE)
1945 abb4604f 2019-07-27 stsp sb.st_mode = got_fileindex_perms_to_st(ie);
1946 c90c8ce3 2020-07-23 stsp } else {
1947 f6764181 2021-09-24 stsp if (stat(ondisk_path, &sb) == -1) {
1948 f6764181 2021-09-24 stsp if (errno != ENOENT) {
1949 f6764181 2021-09-24 stsp err = got_error_from_errno2("stat",
1950 f6764181 2021-09-24 stsp ondisk_path);
1951 f6764181 2021-09-24 stsp goto done;
1952 f6764181 2021-09-24 stsp }
1953 f6764181 2021-09-24 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
1954 f6764181 2021-09-24 stsp status = GOT_STATUS_UNVERSIONED;
1955 f6764181 2021-09-24 stsp } else {
1956 f6764181 2021-09-24 stsp if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode))
1957 f6764181 2021-09-24 stsp status = GOT_STATUS_UNVERSIONED;
1958 f6764181 2021-09-24 stsp else
1959 f6764181 2021-09-24 stsp status = GOT_STATUS_OBSTRUCTED;
1960 f6764181 2021-09-24 stsp }
1961 c90c8ce3 2020-07-23 stsp }
1962 6353ad76 2019-02-08 stsp
1963 b8f41171 2019-02-10 stsp if (status == GOT_STATUS_OBSTRUCTED) {
1964 2c41dce7 2021-06-27 stsp if (ie)
1965 2c41dce7 2021-06-27 stsp got_fileindex_entry_mark_skipped(ie);
1966 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, status, path);
1967 b8f41171 2019-02-10 stsp goto done;
1968 b8f41171 2019-02-10 stsp }
1969 5036ab18 2020-04-18 stsp if (status == GOT_STATUS_CONFLICT) {
1970 a769b60b 2021-06-27 stsp if (ie)
1971 a769b60b 2021-06-27 stsp got_fileindex_entry_mark_skipped(ie);
1972 5036ab18 2020-04-18 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CANNOT_UPDATE,
1973 5036ab18 2020-04-18 stsp path);
1974 5036ab18 2020-04-18 stsp goto done;
1975 5036ab18 2020-04-18 stsp }
1976 b8f41171 2019-02-10 stsp
1977 c6e8a826 2021-04-05 stsp if (ie && status != GOT_STATUS_MISSING && S_ISREG(sb.st_mode) &&
1978 c6e8a826 2021-04-05 stsp (S_ISLNK(te->mode) ||
1979 c6e8a826 2021-04-05 stsp (te->mode & S_IXUSR) == (sb.st_mode & S_IXUSR))) {
1980 c6e8a826 2021-04-05 stsp /*
1981 c6e8a826 2021-04-05 stsp * This is a regular file or an installed bad symlink.
1982 c6e8a826 2021-04-05 stsp * If the file index indicates that this file is already
1983 c6e8a826 2021-04-05 stsp * up-to-date with respect to the repository we can skip
1984 c6e8a826 2021-04-05 stsp * updating contents of this file.
1985 c6e8a826 2021-04-05 stsp */
1986 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_commit(ie) &&
1987 1430b4e0 2019-03-27 stsp memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1988 b8f41171 2019-02-10 stsp SHA1_DIGEST_LENGTH) == 0) {
1989 c6e8a826 2021-04-05 stsp /* Same commit. */
1990 437adc9d 2020-12-10 yzhong err = sync_timestamps(worktree->root_fd,
1991 437adc9d 2020-12-10 yzhong path, status, ie, &sb);
1992 e2b1e152 2019-07-13 stsp if (err)
1993 e2b1e152 2019-07-13 stsp goto done;
1994 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1995 b8f41171 2019-02-10 stsp path);
1996 6353ad76 2019-02-08 stsp goto done;
1997 a378724f 2019-02-10 stsp }
1998 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_blob(ie) &&
1999 56e0773d 2019-11-28 stsp memcmp(ie->blob_sha1, te->id.sha1,
2000 e2b1e152 2019-07-13 stsp SHA1_DIGEST_LENGTH) == 0) {
2001 c6e8a826 2021-04-05 stsp /* Different commit but the same blob. */
2002 437adc9d 2020-12-10 yzhong err = sync_timestamps(worktree->root_fd,
2003 437adc9d 2020-12-10 yzhong path, status, ie, &sb);
2004 0f58026f 2021-04-05 stsp if (err)
2005 0f58026f 2021-04-05 stsp goto done;
2006 0f58026f 2021-04-05 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
2007 0f58026f 2021-04-05 stsp path);
2008 b8f41171 2019-02-10 stsp goto done;
2009 e2b1e152 2019-07-13 stsp }
2010 9d31a1d8 2018-03-11 stsp }
2011 9d31a1d8 2018-03-11 stsp
2012 56e0773d 2019-11-28 stsp err = got_object_open_as_blob(&blob, repo, &te->id, 8192);
2013 8da9e5f4 2019-01-12 stsp if (err)
2014 6353ad76 2019-02-08 stsp goto done;
2015 512f0d0e 2019-01-02 stsp
2016 234035bc 2019-06-01 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD) {
2017 234035bc 2019-06-01 stsp int update_timestamps;
2018 234035bc 2019-06-01 stsp struct got_blob_object *blob2 = NULL;
2019 f69721c3 2019-10-21 stsp char *label_orig = NULL;
2020 234035bc 2019-06-01 stsp if (got_fileindex_entry_has_blob(ie)) {
2021 234035bc 2019-06-01 stsp struct got_object_id id2;
2022 234035bc 2019-06-01 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2023 234035bc 2019-06-01 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
2024 234035bc 2019-06-01 stsp if (err)
2025 f69721c3 2019-10-21 stsp goto done;
2026 f69721c3 2019-10-21 stsp }
2027 f69721c3 2019-10-21 stsp if (got_fileindex_entry_has_commit(ie)) {
2028 f69721c3 2019-10-21 stsp char id_str[SHA1_DIGEST_STRING_LENGTH];
2029 f69721c3 2019-10-21 stsp if (got_sha1_digest_to_str(ie->commit_sha1, id_str,
2030 f69721c3 2019-10-21 stsp sizeof(id_str)) == NULL) {
2031 6dd1ece6 2019-11-10 stsp err = got_error_path(id_str,
2032 6dd1ece6 2019-11-10 stsp GOT_ERR_BAD_OBJ_ID_STR);
2033 f69721c3 2019-10-21 stsp goto done;
2034 f69721c3 2019-10-21 stsp }
2035 f69721c3 2019-10-21 stsp if (asprintf(&label_orig, "%s: commit %s",
2036 f69721c3 2019-10-21 stsp GOT_MERGE_LABEL_BASE, id_str) == -1) {
2037 f69721c3 2019-10-21 stsp err = got_error_from_errno("asprintf");
2038 234035bc 2019-06-01 stsp goto done;
2039 f69721c3 2019-10-21 stsp }
2040 234035bc 2019-06-01 stsp }
2041 dfe9fba0 2020-07-23 stsp if (S_ISLNK(te->mode) && S_ISLNK(sb.st_mode)) {
2042 36bf999c 2020-07-23 stsp char *link_target;
2043 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(&link_target, blob);
2044 36bf999c 2020-07-23 stsp if (err)
2045 36bf999c 2020-07-23 stsp goto done;
2046 36bf999c 2020-07-23 stsp err = merge_symlink(worktree, blob2, ondisk_path, path,
2047 36bf999c 2020-07-23 stsp label_orig, link_target, worktree->base_commit_id,
2048 36bf999c 2020-07-23 stsp repo, progress_cb, progress_arg);
2049 36bf999c 2020-07-23 stsp free(link_target);
2050 993e2a1b 2020-07-23 stsp } else {
2051 993e2a1b 2020-07-23 stsp err = merge_blob(&update_timestamps, worktree, blob2,
2052 993e2a1b 2020-07-23 stsp ondisk_path, path, sb.st_mode, label_orig, blob,
2053 993e2a1b 2020-07-23 stsp worktree->base_commit_id, repo,
2054 993e2a1b 2020-07-23 stsp progress_cb, progress_arg);
2055 993e2a1b 2020-07-23 stsp }
2056 f69721c3 2019-10-21 stsp free(label_orig);
2057 234035bc 2019-06-01 stsp if (blob2)
2058 234035bc 2019-06-01 stsp got_object_blob_close(blob2);
2059 909d120e 2019-09-22 stsp if (err)
2060 909d120e 2019-09-22 stsp goto done;
2061 234035bc 2019-06-01 stsp /*
2062 234035bc 2019-06-01 stsp * Do not update timestamps of files with local changes.
2063 234035bc 2019-06-01 stsp * Otherwise, a future status walk would treat them as
2064 234035bc 2019-06-01 stsp * unmodified files again.
2065 234035bc 2019-06-01 stsp */
2066 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd, path,
2067 234035bc 2019-06-01 stsp blob->id.sha1, worktree->base_commit_id->sha1,
2068 234035bc 2019-06-01 stsp update_timestamps);
2069 1ebedb77 2019-10-19 stsp } else if (status == GOT_STATUS_MODE_CHANGE) {
2070 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd, path,
2071 1ebedb77 2019-10-19 stsp blob->id.sha1, worktree->base_commit_id->sha1, 0);
2072 234035bc 2019-06-01 stsp } else if (status == GOT_STATUS_DELETE) {
2073 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
2074 1ee397ad 2019-07-12 stsp if (err)
2075 1ee397ad 2019-07-12 stsp goto done;
2076 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd, path,
2077 054041d0 2020-06-24 stsp blob->id.sha1, worktree->base_commit_id->sha1, 0);
2078 13d9040b 2019-03-27 stsp if (err)
2079 13d9040b 2019-03-27 stsp goto done;
2080 13d9040b 2019-03-27 stsp } else {
2081 2e1fa222 2020-07-23 stsp int is_bad_symlink = 0;
2082 2e1fa222 2020-07-23 stsp if (S_ISLNK(te->mode)) {
2083 2e1fa222 2020-07-23 stsp err = install_symlink(&is_bad_symlink, worktree,
2084 2e1fa222 2020-07-23 stsp ondisk_path, path, blob,
2085 c90c8ce3 2020-07-23 stsp status == GOT_STATUS_MISSING, 0,
2086 5267b9e4 2021-09-26 stsp status == GOT_STATUS_UNVERSIONED, 0,
2087 5267b9e4 2021-09-26 stsp repo, progress_cb, progress_arg);
2088 2e1fa222 2020-07-23 stsp } else {
2089 2e1fa222 2020-07-23 stsp err = install_blob(worktree, ondisk_path, path,
2090 2e1fa222 2020-07-23 stsp te->mode, sb.st_mode, blob,
2091 3b9f0f87 2020-07-23 stsp status == GOT_STATUS_MISSING, 0, 0,
2092 3b9f0f87 2020-07-23 stsp status == GOT_STATUS_UNVERSIONED, repo,
2093 2e1fa222 2020-07-23 stsp progress_cb, progress_arg);
2094 2e1fa222 2020-07-23 stsp }
2095 13d9040b 2019-03-27 stsp if (err)
2096 13d9040b 2019-03-27 stsp goto done;
2097 65b05cec 2020-07-23 stsp
2098 054041d0 2020-06-24 stsp if (ie) {
2099 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie,
2100 437adc9d 2020-12-10 yzhong worktree->root_fd, path, blob->id.sha1,
2101 437adc9d 2020-12-10 yzhong worktree->base_commit_id->sha1, 1);
2102 054041d0 2020-06-24 stsp } else {
2103 65b05cec 2020-07-23 stsp err = create_fileindex_entry(&ie, fileindex,
2104 437adc9d 2020-12-10 yzhong worktree->base_commit_id, worktree->root_fd, path,
2105 054041d0 2020-06-24 stsp &blob->id);
2106 054041d0 2020-06-24 stsp }
2107 13d9040b 2019-03-27 stsp if (err)
2108 13d9040b 2019-03-27 stsp goto done;
2109 65b05cec 2020-07-23 stsp
2110 2e1fa222 2020-07-23 stsp if (is_bad_symlink) {
2111 6131ab45 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
2112 2e1fa222 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
2113 2e1fa222 2020-07-23 stsp }
2114 13d9040b 2019-03-27 stsp }
2115 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
2116 6353ad76 2019-02-08 stsp done:
2117 6353ad76 2019-02-08 stsp free(ondisk_path);
2118 8da9e5f4 2019-01-12 stsp return err;
2119 90285c3b 2019-01-08 stsp }
2120 90285c3b 2019-01-08 stsp
2121 90285c3b 2019-01-08 stsp static const struct got_error *
2122 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
2123 90285c3b 2019-01-08 stsp {
2124 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
2125 1c4cdd89 2021-06-20 stsp char *ondisk_path = NULL, *parent = NULL;
2126 90285c3b 2019-01-08 stsp
2127 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
2128 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2129 90285c3b 2019-01-08 stsp
2130 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
2131 c97665ae 2019-01-13 stsp if (errno != ENOENT)
2132 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", ondisk_path);
2133 c97665ae 2019-01-13 stsp } else {
2134 fddefe3b 2020-10-20 stsp size_t root_len = strlen(root_path);
2135 1c4cdd89 2021-06-20 stsp err = got_path_dirname(&parent, ondisk_path);
2136 1c4cdd89 2021-06-20 stsp if (err)
2137 1c4cdd89 2021-06-20 stsp goto done;
2138 1c4cdd89 2021-06-20 stsp while (got_path_cmp(parent, root_path,
2139 1c4cdd89 2021-06-20 stsp strlen(parent), root_len) != 0) {
2140 fddefe3b 2020-10-20 stsp free(ondisk_path);
2141 fddefe3b 2020-10-20 stsp ondisk_path = parent;
2142 1c4cdd89 2021-06-20 stsp parent = NULL;
2143 fddefe3b 2020-10-20 stsp if (rmdir(ondisk_path) == -1) {
2144 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
2145 638f9024 2019-05-13 stsp err = got_error_from_errno2("rmdir",
2146 fddefe3b 2020-10-20 stsp ondisk_path);
2147 90285c3b 2019-01-08 stsp break;
2148 90285c3b 2019-01-08 stsp }
2149 1c4cdd89 2021-06-20 stsp err = got_path_dirname(&parent, ondisk_path);
2150 1c4cdd89 2021-06-20 stsp if (err)
2151 1c4cdd89 2021-06-20 stsp break;
2152 1c4cdd89 2021-06-20 stsp }
2153 90285c3b 2019-01-08 stsp }
2154 1c4cdd89 2021-06-20 stsp done:
2155 90285c3b 2019-01-08 stsp free(ondisk_path);
2156 1c4cdd89 2021-06-20 stsp free(parent);
2157 90285c3b 2019-01-08 stsp return err;
2158 512f0d0e 2019-01-02 stsp }
2159 512f0d0e 2019-01-02 stsp
2160 708d8e67 2019-03-27 stsp static const struct got_error *
2161 708d8e67 2019-03-27 stsp delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
2162 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie, struct got_repository *repo,
2163 0584f854 2019-04-06 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
2164 708d8e67 2019-03-27 stsp {
2165 fc6346c4 2019-03-27 stsp const struct got_error *err = NULL;
2166 708d8e67 2019-03-27 stsp unsigned char status;
2167 708d8e67 2019-03-27 stsp struct stat sb;
2168 708d8e67 2019-03-27 stsp char *ondisk_path;
2169 708d8e67 2019-03-27 stsp
2170 a76c42e6 2019-08-03 stsp if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
2171 a76c42e6 2019-08-03 stsp return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
2172 a76c42e6 2019-08-03 stsp
2173 708d8e67 2019-03-27 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
2174 708d8e67 2019-03-27 stsp == -1)
2175 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2176 708d8e67 2019-03-27 stsp
2177 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, repo);
2178 708d8e67 2019-03-27 stsp if (err)
2179 5a58a424 2020-06-23 stsp goto done;
2180 708d8e67 2019-03-27 stsp
2181 993e2a1b 2020-07-23 stsp if (S_ISLNK(sb.st_mode) && status != GOT_STATUS_NO_CHANGE) {
2182 993e2a1b 2020-07-23 stsp char ondisk_target[PATH_MAX];
2183 993e2a1b 2020-07-23 stsp ssize_t ondisk_len = readlink(ondisk_path, ondisk_target,
2184 993e2a1b 2020-07-23 stsp sizeof(ondisk_target));
2185 993e2a1b 2020-07-23 stsp if (ondisk_len == -1) {
2186 993e2a1b 2020-07-23 stsp err = got_error_from_errno2("readlink", ondisk_path);
2187 993e2a1b 2020-07-23 stsp goto done;
2188 993e2a1b 2020-07-23 stsp }
2189 993e2a1b 2020-07-23 stsp ondisk_target[ondisk_len] = '\0';
2190 993e2a1b 2020-07-23 stsp err = install_symlink_conflict(NULL, worktree->base_commit_id,
2191 993e2a1b 2020-07-23 stsp NULL, NULL, /* XXX pass common ancestor info? */
2192 993e2a1b 2020-07-23 stsp ondisk_target, ondisk_path);
2193 993e2a1b 2020-07-23 stsp if (err)
2194 993e2a1b 2020-07-23 stsp goto done;
2195 993e2a1b 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
2196 993e2a1b 2020-07-23 stsp ie->path);
2197 993e2a1b 2020-07-23 stsp goto done;
2198 993e2a1b 2020-07-23 stsp }
2199 993e2a1b 2020-07-23 stsp
2200 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
2201 fc6346c4 2019-03-27 stsp status == GOT_STATUS_ADD) {
2202 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
2203 1ee397ad 2019-07-12 stsp if (err)
2204 5a58a424 2020-06-23 stsp goto done;
2205 fc6346c4 2019-03-27 stsp /*
2206 fc6346c4 2019-03-27 stsp * Preserve the working file and change the deleted blob's
2207 fc6346c4 2019-03-27 stsp * entry into a schedule-add entry.
2208 fc6346c4 2019-03-27 stsp */
2209 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd,
2210 437adc9d 2020-12-10 yzhong ie->path, NULL, NULL, 0);
2211 fc6346c4 2019-03-27 stsp } else {
2212 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
2213 1ee397ad 2019-07-12 stsp if (err)
2214 5a58a424 2020-06-23 stsp goto done;
2215 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_NO_CHANGE) {
2216 fc6346c4 2019-03-27 stsp err = remove_ondisk_file(worktree->root_path, ie->path);
2217 fc6346c4 2019-03-27 stsp if (err)
2218 5a58a424 2020-06-23 stsp goto done;
2219 fc6346c4 2019-03-27 stsp }
2220 fc6346c4 2019-03-27 stsp got_fileindex_entry_remove(fileindex, ie);
2221 708d8e67 2019-03-27 stsp }
2222 5a58a424 2020-06-23 stsp done:
2223 5a58a424 2020-06-23 stsp free(ondisk_path);
2224 fc6346c4 2019-03-27 stsp return err;
2225 708d8e67 2019-03-27 stsp }
2226 708d8e67 2019-03-27 stsp
2227 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
2228 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
2229 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
2230 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
2231 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
2232 8da9e5f4 2019-01-12 stsp void *progress_arg;
2233 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb;
2234 8da9e5f4 2019-01-12 stsp void *cancel_arg;
2235 8da9e5f4 2019-01-12 stsp };
2236 8da9e5f4 2019-01-12 stsp
2237 512f0d0e 2019-01-02 stsp static const struct got_error *
2238 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
2239 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
2240 512f0d0e 2019-01-02 stsp {
2241 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
2242 0584f854 2019-04-06 stsp
2243 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2244 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2245 512f0d0e 2019-01-02 stsp
2246 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
2247 0584f854 2019-04-06 stsp ie->path, a->repo, a->progress_cb, a->progress_arg);
2248 8da9e5f4 2019-01-12 stsp }
2249 512f0d0e 2019-01-02 stsp
2250 8da9e5f4 2019-01-12 stsp static const struct got_error *
2251 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
2252 8da9e5f4 2019-01-12 stsp {
2253 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
2254 7a9df742 2019-01-08 stsp
2255 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2256 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2257 0584f854 2019-04-06 stsp
2258 234035bc 2019-06-01 stsp return delete_blob(a->worktree, a->fileindex, ie,
2259 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
2260 9d31a1d8 2018-03-11 stsp }
2261 9d31a1d8 2018-03-11 stsp
2262 9d31a1d8 2018-03-11 stsp static const struct got_error *
2263 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
2264 9d31a1d8 2018-03-11 stsp {
2265 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
2266 8da9e5f4 2019-01-12 stsp const struct got_error *err;
2267 8da9e5f4 2019-01-12 stsp char *path;
2268 9d31a1d8 2018-03-11 stsp
2269 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2270 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2271 0584f854 2019-04-06 stsp
2272 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
2273 63c5ca5d 2019-08-24 stsp return NULL;
2274 63c5ca5d 2019-08-24 stsp
2275 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
2276 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
2277 8da9e5f4 2019-01-12 stsp == -1)
2278 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2279 9d31a1d8 2018-03-11 stsp
2280 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
2281 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
2282 8da9e5f4 2019-01-12 stsp else
2283 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
2284 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
2285 9d31a1d8 2018-03-11 stsp
2286 8da9e5f4 2019-01-12 stsp free(path);
2287 0cd1c46a 2019-03-11 stsp return err;
2288 0cd1c46a 2019-03-11 stsp }
2289 0cd1c46a 2019-03-11 stsp
2290 b2118c49 2020-07-28 stsp const struct got_error *
2291 b2118c49 2020-07-28 stsp got_worktree_get_uuid(char **uuidstr, struct got_worktree *worktree)
2292 b2118c49 2020-07-28 stsp {
2293 b2118c49 2020-07-28 stsp uint32_t uuid_status;
2294 b2118c49 2020-07-28 stsp
2295 b2118c49 2020-07-28 stsp uuid_to_string(&worktree->uuid, uuidstr, &uuid_status);
2296 b2118c49 2020-07-28 stsp if (uuid_status != uuid_s_ok) {
2297 b2118c49 2020-07-28 stsp *uuidstr = NULL;
2298 b2118c49 2020-07-28 stsp return got_error_uuid(uuid_status, "uuid_to_string");
2299 b2118c49 2020-07-28 stsp }
2300 b2118c49 2020-07-28 stsp
2301 b2118c49 2020-07-28 stsp return NULL;
2302 b2118c49 2020-07-28 stsp }
2303 b2118c49 2020-07-28 stsp
2304 818c7501 2019-07-11 stsp static const struct got_error *
2305 818c7501 2019-07-11 stsp get_ref_name(char **refname, struct got_worktree *worktree, const char *prefix)
2306 0cd1c46a 2019-03-11 stsp {
2307 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
2308 0647c563 2019-03-11 stsp char *uuidstr = NULL;
2309 0cd1c46a 2019-03-11 stsp
2310 517bab73 2019-03-11 stsp *refname = NULL;
2311 517bab73 2019-03-11 stsp
2312 b2118c49 2020-07-28 stsp err = got_worktree_get_uuid(&uuidstr, worktree);
2313 b2118c49 2020-07-28 stsp if (err)
2314 b2118c49 2020-07-28 stsp return err;
2315 0cd1c46a 2019-03-11 stsp
2316 b2118c49 2020-07-28 stsp if (asprintf(refname, "%s-%s", prefix, uuidstr) == -1) {
2317 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2318 0647c563 2019-03-11 stsp *refname = NULL;
2319 0cd1c46a 2019-03-11 stsp }
2320 517bab73 2019-03-11 stsp free(uuidstr);
2321 517bab73 2019-03-11 stsp return err;
2322 517bab73 2019-03-11 stsp }
2323 517bab73 2019-03-11 stsp
2324 818c7501 2019-07-11 stsp const struct got_error *
2325 818c7501 2019-07-11 stsp got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
2326 818c7501 2019-07-11 stsp {
2327 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree, GOT_WORKTREE_BASE_REF_PREFIX);
2328 818c7501 2019-07-11 stsp }
2329 818c7501 2019-07-11 stsp
2330 818c7501 2019-07-11 stsp static const struct got_error *
2331 818c7501 2019-07-11 stsp get_rebase_tmp_ref_name(char **refname, struct got_worktree *worktree)
2332 818c7501 2019-07-11 stsp {
2333 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
2334 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_TMP_REF_PREFIX);
2335 818c7501 2019-07-11 stsp }
2336 818c7501 2019-07-11 stsp
2337 818c7501 2019-07-11 stsp static const struct got_error *
2338 818c7501 2019-07-11 stsp get_newbase_symref_name(char **refname, struct got_worktree *worktree)
2339 818c7501 2019-07-11 stsp {
2340 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree, GOT_WORKTREE_NEWBASE_REF_PREFIX);
2341 818c7501 2019-07-11 stsp }
2342 818c7501 2019-07-11 stsp
2343 818c7501 2019-07-11 stsp static const struct got_error *
2344 818c7501 2019-07-11 stsp get_rebase_branch_symref_name(char **refname, struct got_worktree *worktree)
2345 818c7501 2019-07-11 stsp {
2346 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
2347 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_BRANCH_REF_PREFIX);
2348 818c7501 2019-07-11 stsp }
2349 818c7501 2019-07-11 stsp
2350 818c7501 2019-07-11 stsp static const struct got_error *
2351 818c7501 2019-07-11 stsp get_rebase_commit_ref_name(char **refname, struct got_worktree *worktree)
2352 818c7501 2019-07-11 stsp {
2353 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
2354 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_COMMIT_REF_PREFIX);
2355 0ebf8283 2019-07-24 stsp }
2356 0ebf8283 2019-07-24 stsp
2357 0ebf8283 2019-07-24 stsp static const struct got_error *
2358 0ebf8283 2019-07-24 stsp get_histedit_tmp_ref_name(char **refname, struct got_worktree *worktree)
2359 0ebf8283 2019-07-24 stsp {
2360 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2361 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_TMP_REF_PREFIX);
2362 0ebf8283 2019-07-24 stsp }
2363 0ebf8283 2019-07-24 stsp
2364 0ebf8283 2019-07-24 stsp static const struct got_error *
2365 0ebf8283 2019-07-24 stsp get_histedit_branch_symref_name(char **refname, struct got_worktree *worktree)
2366 0ebf8283 2019-07-24 stsp {
2367 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2368 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_BRANCH_REF_PREFIX);
2369 0ebf8283 2019-07-24 stsp }
2370 0ebf8283 2019-07-24 stsp
2371 0ebf8283 2019-07-24 stsp static const struct got_error *
2372 0ebf8283 2019-07-24 stsp get_histedit_base_commit_ref_name(char **refname, struct got_worktree *worktree)
2373 0ebf8283 2019-07-24 stsp {
2374 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2375 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_BASE_COMMIT_REF_PREFIX);
2376 818c7501 2019-07-11 stsp }
2377 818c7501 2019-07-11 stsp
2378 0ebf8283 2019-07-24 stsp static const struct got_error *
2379 0ebf8283 2019-07-24 stsp get_histedit_commit_ref_name(char **refname, struct got_worktree *worktree)
2380 0ebf8283 2019-07-24 stsp {
2381 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2382 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_COMMIT_REF_PREFIX);
2383 0ebf8283 2019-07-24 stsp }
2384 818c7501 2019-07-11 stsp
2385 0ebf8283 2019-07-24 stsp const struct got_error *
2386 c3022ba5 2019-07-27 stsp got_worktree_get_histedit_script_path(char **path,
2387 c3022ba5 2019-07-27 stsp struct got_worktree *worktree)
2388 0ebf8283 2019-07-24 stsp {
2389 0ebf8283 2019-07-24 stsp if (asprintf(path, "%s/%s/%s", worktree->root_path,
2390 c3022ba5 2019-07-27 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_HISTEDIT_SCRIPT) == -1) {
2391 0ebf8283 2019-07-24 stsp *path = NULL;
2392 0ebf8283 2019-07-24 stsp return got_error_from_errno("asprintf");
2393 0ebf8283 2019-07-24 stsp }
2394 0ebf8283 2019-07-24 stsp return NULL;
2395 f259c4c1 2021-09-24 stsp }
2396 f259c4c1 2021-09-24 stsp
2397 f259c4c1 2021-09-24 stsp static const struct got_error *
2398 f259c4c1 2021-09-24 stsp get_merge_branch_ref_name(char **refname, struct got_worktree *worktree)
2399 f259c4c1 2021-09-24 stsp {
2400 f259c4c1 2021-09-24 stsp return get_ref_name(refname, worktree,
2401 f259c4c1 2021-09-24 stsp GOT_WORKTREE_MERGE_BRANCH_REF_PREFIX);
2402 0ebf8283 2019-07-24 stsp }
2403 0ebf8283 2019-07-24 stsp
2404 f259c4c1 2021-09-24 stsp static const struct got_error *
2405 f259c4c1 2021-09-24 stsp get_merge_commit_ref_name(char **refname, struct got_worktree *worktree)
2406 f259c4c1 2021-09-24 stsp {
2407 f259c4c1 2021-09-24 stsp return get_ref_name(refname, worktree,
2408 f259c4c1 2021-09-24 stsp GOT_WORKTREE_MERGE_COMMIT_REF_PREFIX);
2409 f259c4c1 2021-09-24 stsp }
2410 f259c4c1 2021-09-24 stsp
2411 517bab73 2019-03-11 stsp /*
2412 517bab73 2019-03-11 stsp * Prevent Git's garbage collector from deleting our base commit by
2413 517bab73 2019-03-11 stsp * setting a reference to our base commit's ID.
2414 517bab73 2019-03-11 stsp */
2415 517bab73 2019-03-11 stsp static const struct got_error *
2416 517bab73 2019-03-11 stsp ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
2417 517bab73 2019-03-11 stsp {
2418 517bab73 2019-03-11 stsp const struct got_error *err = NULL;
2419 517bab73 2019-03-11 stsp struct got_reference *ref = NULL;
2420 517bab73 2019-03-11 stsp char *refname;
2421 517bab73 2019-03-11 stsp
2422 517bab73 2019-03-11 stsp err = got_worktree_get_base_ref_name(&refname, worktree);
2423 517bab73 2019-03-11 stsp if (err)
2424 517bab73 2019-03-11 stsp return err;
2425 0cd1c46a 2019-03-11 stsp
2426 0cd1c46a 2019-03-11 stsp err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
2427 0cd1c46a 2019-03-11 stsp if (err)
2428 0cd1c46a 2019-03-11 stsp goto done;
2429 0cd1c46a 2019-03-11 stsp
2430 0cd1c46a 2019-03-11 stsp err = got_ref_write(ref, repo);
2431 0cd1c46a 2019-03-11 stsp done:
2432 0cd1c46a 2019-03-11 stsp free(refname);
2433 0cd1c46a 2019-03-11 stsp if (ref)
2434 0cd1c46a 2019-03-11 stsp got_ref_close(ref);
2435 3e3a69f1 2019-07-25 stsp return err;
2436 3e3a69f1 2019-07-25 stsp }
2437 3e3a69f1 2019-07-25 stsp
2438 3e3a69f1 2019-07-25 stsp static const struct got_error *
2439 3e3a69f1 2019-07-25 stsp get_fileindex_path(char **fileindex_path, struct got_worktree *worktree)
2440 3e3a69f1 2019-07-25 stsp {
2441 3e3a69f1 2019-07-25 stsp const struct got_error *err = NULL;
2442 3e3a69f1 2019-07-25 stsp
2443 3e3a69f1 2019-07-25 stsp if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
2444 3e3a69f1 2019-07-25 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2445 3e3a69f1 2019-07-25 stsp err = got_error_from_errno("asprintf");
2446 3e3a69f1 2019-07-25 stsp *fileindex_path = NULL;
2447 3e3a69f1 2019-07-25 stsp }
2448 9d31a1d8 2018-03-11 stsp return err;
2449 9d31a1d8 2018-03-11 stsp }
2450 9d31a1d8 2018-03-11 stsp
2451 3e3a69f1 2019-07-25 stsp
2452 ebf99748 2019-05-09 stsp static const struct got_error *
2453 ebf99748 2019-05-09 stsp open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
2454 4b55f459 2019-09-08 stsp struct got_worktree *worktree)
2455 ebf99748 2019-05-09 stsp {
2456 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
2457 ebf99748 2019-05-09 stsp FILE *index = NULL;
2458 0cd1c46a 2019-03-11 stsp
2459 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
2460 ebf99748 2019-05-09 stsp *fileindex = got_fileindex_alloc();
2461 ebf99748 2019-05-09 stsp if (*fileindex == NULL)
2462 638f9024 2019-05-13 stsp return got_error_from_errno("got_fileindex_alloc");
2463 ebf99748 2019-05-09 stsp
2464 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(fileindex_path, worktree);
2465 3e3a69f1 2019-07-25 stsp if (err)
2466 ebf99748 2019-05-09 stsp goto done;
2467 ebf99748 2019-05-09 stsp
2468 ebf99748 2019-05-09 stsp index = fopen(*fileindex_path, "rb");
2469 ebf99748 2019-05-09 stsp if (index == NULL) {
2470 ebf99748 2019-05-09 stsp if (errno != ENOENT)
2471 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", *fileindex_path);
2472 ebf99748 2019-05-09 stsp } else {
2473 ebf99748 2019-05-09 stsp err = got_fileindex_read(*fileindex, index);
2474 56b63ca4 2021-01-22 stsp if (fclose(index) == EOF && err == NULL)
2475 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2476 ebf99748 2019-05-09 stsp }
2477 ebf99748 2019-05-09 stsp done:
2478 ebf99748 2019-05-09 stsp if (err) {
2479 ebf99748 2019-05-09 stsp free(*fileindex_path);
2480 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
2481 950a4a90 2019-07-10 stsp got_fileindex_free(*fileindex);
2482 ebf99748 2019-05-09 stsp *fileindex = NULL;
2483 ebf99748 2019-05-09 stsp }
2484 ebf99748 2019-05-09 stsp return err;
2485 ebf99748 2019-05-09 stsp }
2486 c932eeeb 2019-05-22 stsp
2487 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg {
2488 c932eeeb 2019-05-22 stsp struct got_object_id *base_commit_id;
2489 c932eeeb 2019-05-22 stsp const char *path;
2490 c932eeeb 2019-05-22 stsp size_t path_len;
2491 c932eeeb 2019-05-22 stsp const char *entry_name;
2492 a484d721 2019-06-10 stsp got_worktree_checkout_cb progress_cb;
2493 a484d721 2019-06-10 stsp void *progress_arg;
2494 c932eeeb 2019-05-22 stsp };
2495 ebf99748 2019-05-09 stsp
2496 c932eeeb 2019-05-22 stsp /* Bump base commit ID of all files within an updated part of the work tree. */
2497 c932eeeb 2019-05-22 stsp static const struct got_error *
2498 c932eeeb 2019-05-22 stsp bump_base_commit_id(void *arg, struct got_fileindex_entry *ie)
2499 c932eeeb 2019-05-22 stsp {
2500 1ee397ad 2019-07-12 stsp const struct got_error *err;
2501 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg *a = arg;
2502 c932eeeb 2019-05-22 stsp
2503 c932eeeb 2019-05-22 stsp if (a->entry_name) {
2504 c932eeeb 2019-05-22 stsp if (strcmp(ie->path, a->path) != 0)
2505 c932eeeb 2019-05-22 stsp return NULL;
2506 c932eeeb 2019-05-22 stsp } else if (!got_path_is_child(ie->path, a->path, a->path_len))
2507 102ff934 2019-06-11 stsp return NULL;
2508 102ff934 2019-06-11 stsp
2509 a769b60b 2021-06-27 stsp if (got_fileindex_entry_was_skipped(ie))
2510 a769b60b 2021-06-27 stsp return NULL;
2511 a769b60b 2021-06-27 stsp
2512 102ff934 2019-06-11 stsp if (memcmp(ie->commit_sha1, a->base_commit_id->sha1,
2513 102ff934 2019-06-11 stsp SHA1_DIGEST_LENGTH) == 0)
2514 c932eeeb 2019-05-22 stsp return NULL;
2515 c932eeeb 2019-05-22 stsp
2516 1ee397ad 2019-07-12 stsp if (a->progress_cb) {
2517 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_BUMP_BASE,
2518 edd02c5e 2019-07-11 stsp ie->path);
2519 1ee397ad 2019-07-12 stsp if (err)
2520 1ee397ad 2019-07-12 stsp return err;
2521 1ee397ad 2019-07-12 stsp }
2522 c932eeeb 2019-05-22 stsp memcpy(ie->commit_sha1, a->base_commit_id->sha1, SHA1_DIGEST_LENGTH);
2523 c932eeeb 2019-05-22 stsp return NULL;
2524 a615e0e7 2020-12-16 stsp }
2525 a615e0e7 2020-12-16 stsp
2526 a615e0e7 2020-12-16 stsp static const struct got_error *
2527 a615e0e7 2020-12-16 stsp bump_base_commit_id_everywhere(struct got_worktree *worktree,
2528 abc59930 2021-09-05 naddy struct got_fileindex *fileindex,
2529 abc59930 2021-09-05 naddy got_worktree_checkout_cb progress_cb, void *progress_arg)
2530 a615e0e7 2020-12-16 stsp {
2531 a615e0e7 2020-12-16 stsp struct bump_base_commit_id_arg bbc_arg;
2532 a615e0e7 2020-12-16 stsp
2533 a615e0e7 2020-12-16 stsp bbc_arg.base_commit_id = worktree->base_commit_id;
2534 a615e0e7 2020-12-16 stsp bbc_arg.entry_name = NULL;
2535 a615e0e7 2020-12-16 stsp bbc_arg.path = "";
2536 a615e0e7 2020-12-16 stsp bbc_arg.path_len = 0;
2537 a615e0e7 2020-12-16 stsp bbc_arg.progress_cb = progress_cb;
2538 a615e0e7 2020-12-16 stsp bbc_arg.progress_arg = progress_arg;
2539 a615e0e7 2020-12-16 stsp
2540 a615e0e7 2020-12-16 stsp return got_fileindex_for_each_entry_safe(fileindex,
2541 a615e0e7 2020-12-16 stsp bump_base_commit_id, &bbc_arg);
2542 9c6338c4 2019-06-02 stsp }
2543 9c6338c4 2019-06-02 stsp
2544 9c6338c4 2019-06-02 stsp static const struct got_error *
2545 9c6338c4 2019-06-02 stsp sync_fileindex(struct got_fileindex *fileindex, const char *fileindex_path)
2546 9c6338c4 2019-06-02 stsp {
2547 9c6338c4 2019-06-02 stsp const struct got_error *err = NULL;
2548 9c6338c4 2019-06-02 stsp char *new_fileindex_path = NULL;
2549 9c6338c4 2019-06-02 stsp FILE *new_index = NULL;
2550 867630bb 2020-01-17 stsp struct timespec timeout;
2551 9c6338c4 2019-06-02 stsp
2552 9c6338c4 2019-06-02 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
2553 9c6338c4 2019-06-02 stsp fileindex_path);
2554 9c6338c4 2019-06-02 stsp if (err)
2555 9c6338c4 2019-06-02 stsp goto done;
2556 9c6338c4 2019-06-02 stsp
2557 9c6338c4 2019-06-02 stsp err = got_fileindex_write(fileindex, new_index);
2558 9c6338c4 2019-06-02 stsp if (err)
2559 9c6338c4 2019-06-02 stsp goto done;
2560 9c6338c4 2019-06-02 stsp
2561 9c6338c4 2019-06-02 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
2562 9c6338c4 2019-06-02 stsp err = got_error_from_errno3("rename", new_fileindex_path,
2563 9c6338c4 2019-06-02 stsp fileindex_path);
2564 9c6338c4 2019-06-02 stsp unlink(new_fileindex_path);
2565 9c6338c4 2019-06-02 stsp }
2566 867630bb 2020-01-17 stsp
2567 867630bb 2020-01-17 stsp /*
2568 867630bb 2020-01-17 stsp * Sleep for a short amount of time to ensure that files modified after
2569 867630bb 2020-01-17 stsp * this program exits have a different time stamp from the one which
2570 867630bb 2020-01-17 stsp * was recorded in the file index.
2571 867630bb 2020-01-17 stsp */
2572 62d463ca 2020-10-20 naddy timeout.tv_sec = 0;
2573 62d463ca 2020-10-20 naddy timeout.tv_nsec = 1;
2574 62d463ca 2020-10-20 naddy nanosleep(&timeout, NULL);
2575 9c6338c4 2019-06-02 stsp done:
2576 9c6338c4 2019-06-02 stsp if (new_index)
2577 9c6338c4 2019-06-02 stsp fclose(new_index);
2578 9c6338c4 2019-06-02 stsp free(new_fileindex_path);
2579 9c6338c4 2019-06-02 stsp return err;
2580 c932eeeb 2019-05-22 stsp }
2581 6ced4176 2019-07-12 stsp
2582 6ced4176 2019-07-12 stsp static const struct got_error *
2583 6ced4176 2019-07-12 stsp find_tree_entry_for_checkout(int *entry_type, char **tree_relpath,
2584 6ced4176 2019-07-12 stsp struct got_object_id **tree_id, const char *wt_relpath,
2585 6ced4176 2019-07-12 stsp struct got_worktree *worktree, struct got_repository *repo)
2586 6ced4176 2019-07-12 stsp {
2587 6ced4176 2019-07-12 stsp const struct got_error *err = NULL;
2588 6ced4176 2019-07-12 stsp struct got_object_id *id = NULL;
2589 6ced4176 2019-07-12 stsp char *in_repo_path = NULL;
2590 6ced4176 2019-07-12 stsp int is_root_wt = got_path_is_root_dir(worktree->path_prefix);
2591 6ced4176 2019-07-12 stsp
2592 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_ANY;
2593 6ced4176 2019-07-12 stsp *tree_relpath = NULL;
2594 6ced4176 2019-07-12 stsp *tree_id = NULL;
2595 6ced4176 2019-07-12 stsp
2596 6ced4176 2019-07-12 stsp if (wt_relpath[0] == '\0') {
2597 6ced4176 2019-07-12 stsp /* Check out all files within the work tree. */
2598 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_TREE;
2599 6ced4176 2019-07-12 stsp *tree_relpath = strdup("");
2600 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
2601 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2602 6ced4176 2019-07-12 stsp goto done;
2603 6ced4176 2019-07-12 stsp }
2604 6ced4176 2019-07-12 stsp err = got_object_id_by_path(tree_id, repo,
2605 6ced4176 2019-07-12 stsp worktree->base_commit_id, worktree->path_prefix);
2606 6ced4176 2019-07-12 stsp if (err)
2607 6ced4176 2019-07-12 stsp goto done;
2608 6ced4176 2019-07-12 stsp return NULL;
2609 6ced4176 2019-07-12 stsp }
2610 6ced4176 2019-07-12 stsp
2611 6ced4176 2019-07-12 stsp /* Check out a subset of files in the work tree. */
2612 6ced4176 2019-07-12 stsp
2613 6ced4176 2019-07-12 stsp if (asprintf(&in_repo_path, "%s%s%s", worktree->path_prefix,
2614 6ced4176 2019-07-12 stsp is_root_wt ? "" : "/", wt_relpath) == -1) {
2615 6ced4176 2019-07-12 stsp err = got_error_from_errno("asprintf");
2616 6ced4176 2019-07-12 stsp goto done;
2617 6ced4176 2019-07-12 stsp }
2618 6ced4176 2019-07-12 stsp
2619 6ced4176 2019-07-12 stsp err = got_object_id_by_path(&id, repo, worktree->base_commit_id,
2620 6ced4176 2019-07-12 stsp in_repo_path);
2621 6ced4176 2019-07-12 stsp if (err)
2622 6ced4176 2019-07-12 stsp goto done;
2623 6ced4176 2019-07-12 stsp
2624 6ced4176 2019-07-12 stsp free(in_repo_path);
2625 6ced4176 2019-07-12 stsp in_repo_path = NULL;
2626 6ced4176 2019-07-12 stsp
2627 6ced4176 2019-07-12 stsp err = got_object_get_type(entry_type, repo, id);
2628 6ced4176 2019-07-12 stsp if (err)
2629 6ced4176 2019-07-12 stsp goto done;
2630 c932eeeb 2019-05-22 stsp
2631 6ced4176 2019-07-12 stsp if (*entry_type == GOT_OBJ_TYPE_BLOB) {
2632 6ced4176 2019-07-12 stsp /* Check out a single file. */
2633 6ced4176 2019-07-12 stsp if (strchr(wt_relpath, '/') == NULL) {
2634 6ced4176 2019-07-12 stsp /* Check out a single file in work tree's root dir. */
2635 6ced4176 2019-07-12 stsp in_repo_path = strdup(worktree->path_prefix);
2636 6ced4176 2019-07-12 stsp if (in_repo_path == NULL) {
2637 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2638 6ced4176 2019-07-12 stsp goto done;
2639 6ced4176 2019-07-12 stsp }
2640 6ced4176 2019-07-12 stsp *tree_relpath = strdup("");
2641 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
2642 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2643 6ced4176 2019-07-12 stsp goto done;
2644 6ced4176 2019-07-12 stsp }
2645 6ced4176 2019-07-12 stsp } else {
2646 6ced4176 2019-07-12 stsp /* Check out a single file in a subdirectory. */
2647 6ced4176 2019-07-12 stsp err = got_path_dirname(tree_relpath, wt_relpath);
2648 6ced4176 2019-07-12 stsp if (err)
2649 6ced4176 2019-07-12 stsp return err;
2650 6ced4176 2019-07-12 stsp if (asprintf(&in_repo_path, "%s%s%s",
2651 6ced4176 2019-07-12 stsp worktree->path_prefix, is_root_wt ? "" : "/",
2652 6ced4176 2019-07-12 stsp *tree_relpath) == -1) {
2653 6ced4176 2019-07-12 stsp err = got_error_from_errno("asprintf");
2654 6ced4176 2019-07-12 stsp goto done;
2655 6ced4176 2019-07-12 stsp }
2656 6ced4176 2019-07-12 stsp }
2657 6ced4176 2019-07-12 stsp err = got_object_id_by_path(tree_id, repo,
2658 6ced4176 2019-07-12 stsp worktree->base_commit_id, in_repo_path);
2659 6ced4176 2019-07-12 stsp } else {
2660 6ced4176 2019-07-12 stsp /* Check out all files within a subdirectory. */
2661 6ced4176 2019-07-12 stsp *tree_id = got_object_id_dup(id);
2662 6ced4176 2019-07-12 stsp if (*tree_id == NULL) {
2663 6ced4176 2019-07-12 stsp err = got_error_from_errno("got_object_id_dup");
2664 6ced4176 2019-07-12 stsp goto done;
2665 6ced4176 2019-07-12 stsp }
2666 6ced4176 2019-07-12 stsp *tree_relpath = strdup(wt_relpath);
2667 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
2668 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2669 6ced4176 2019-07-12 stsp goto done;
2670 6ced4176 2019-07-12 stsp }
2671 6ced4176 2019-07-12 stsp }
2672 6ced4176 2019-07-12 stsp done:
2673 6ced4176 2019-07-12 stsp free(id);
2674 6ced4176 2019-07-12 stsp free(in_repo_path);
2675 6ced4176 2019-07-12 stsp if (err) {
2676 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_ANY;
2677 6ced4176 2019-07-12 stsp free(*tree_relpath);
2678 6ced4176 2019-07-12 stsp *tree_relpath = NULL;
2679 6ced4176 2019-07-12 stsp free(*tree_id);
2680 6ced4176 2019-07-12 stsp *tree_id = NULL;
2681 6ced4176 2019-07-12 stsp }
2682 07ed472d 2019-07-12 stsp return err;
2683 07ed472d 2019-07-12 stsp }
2684 07ed472d 2019-07-12 stsp
2685 07ed472d 2019-07-12 stsp static const struct got_error *
2686 07ed472d 2019-07-12 stsp checkout_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
2687 07ed472d 2019-07-12 stsp const char *relpath, struct got_object_id *tree_id, const char *entry_name,
2688 07ed472d 2019-07-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
2689 e6209546 2019-08-22 stsp void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
2690 07ed472d 2019-07-12 stsp {
2691 07ed472d 2019-07-12 stsp const struct got_error *err = NULL;
2692 07ed472d 2019-07-12 stsp struct got_commit_object *commit = NULL;
2693 07ed472d 2019-07-12 stsp struct got_tree_object *tree = NULL;
2694 07ed472d 2019-07-12 stsp struct got_fileindex_diff_tree_cb diff_cb;
2695 07ed472d 2019-07-12 stsp struct diff_cb_arg arg;
2696 07ed472d 2019-07-12 stsp
2697 07ed472d 2019-07-12 stsp err = ref_base_commit(worktree, repo);
2698 7f47418f 2019-12-20 stsp if (err) {
2699 6201aef3 2020-02-02 stsp if (!(err->code == GOT_ERR_ERRNO &&
2700 6201aef3 2020-02-02 stsp (errno == EACCES || errno == EROFS)))
2701 7f47418f 2019-12-20 stsp goto done;
2702 7f47418f 2019-12-20 stsp err = (*progress_cb)(progress_arg,
2703 7f47418f 2019-12-20 stsp GOT_STATUS_BASE_REF_ERR, worktree->root_path);
2704 7f47418f 2019-12-20 stsp if (err)
2705 7f47418f 2019-12-20 stsp return err;
2706 7f47418f 2019-12-20 stsp }
2707 07ed472d 2019-07-12 stsp
2708 07ed472d 2019-07-12 stsp err = got_object_open_as_commit(&commit, repo,
2709 62d463ca 2020-10-20 naddy worktree->base_commit_id);
2710 07ed472d 2019-07-12 stsp if (err)
2711 07ed472d 2019-07-12 stsp goto done;
2712 07ed472d 2019-07-12 stsp
2713 07ed472d 2019-07-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
2714 07ed472d 2019-07-12 stsp if (err)
2715 07ed472d 2019-07-12 stsp goto done;
2716 07ed472d 2019-07-12 stsp
2717 07ed472d 2019-07-12 stsp if (entry_name &&
2718 07ed472d 2019-07-12 stsp got_object_tree_find_entry(tree, entry_name) == NULL) {
2719 b66cd6f3 2020-07-31 stsp err = got_error_path(entry_name, GOT_ERR_NO_TREE_ENTRY);
2720 07ed472d 2019-07-12 stsp goto done;
2721 07ed472d 2019-07-12 stsp }
2722 07ed472d 2019-07-12 stsp
2723 07ed472d 2019-07-12 stsp diff_cb.diff_old_new = diff_old_new;
2724 07ed472d 2019-07-12 stsp diff_cb.diff_old = diff_old;
2725 07ed472d 2019-07-12 stsp diff_cb.diff_new = diff_new;
2726 07ed472d 2019-07-12 stsp arg.fileindex = fileindex;
2727 07ed472d 2019-07-12 stsp arg.worktree = worktree;
2728 07ed472d 2019-07-12 stsp arg.repo = repo;
2729 07ed472d 2019-07-12 stsp arg.progress_cb = progress_cb;
2730 07ed472d 2019-07-12 stsp arg.progress_arg = progress_arg;
2731 07ed472d 2019-07-12 stsp arg.cancel_cb = cancel_cb;
2732 07ed472d 2019-07-12 stsp arg.cancel_arg = cancel_arg;
2733 07ed472d 2019-07-12 stsp err = got_fileindex_diff_tree(fileindex, tree, relpath,
2734 07ed472d 2019-07-12 stsp entry_name, repo, &diff_cb, &arg);
2735 07ed472d 2019-07-12 stsp done:
2736 07ed472d 2019-07-12 stsp if (tree)
2737 07ed472d 2019-07-12 stsp got_object_tree_close(tree);
2738 07ed472d 2019-07-12 stsp if (commit)
2739 07ed472d 2019-07-12 stsp got_object_commit_close(commit);
2740 6ced4176 2019-07-12 stsp return err;
2741 6ced4176 2019-07-12 stsp }
2742 6ced4176 2019-07-12 stsp
2743 9d31a1d8 2018-03-11 stsp const struct got_error *
2744 f2ea84fa 2019-07-27 stsp got_worktree_checkout_files(struct got_worktree *worktree,
2745 f2ea84fa 2019-07-27 stsp struct got_pathlist_head *paths, struct got_repository *repo,
2746 f2ea84fa 2019-07-27 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2747 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
2748 9d31a1d8 2018-03-11 stsp {
2749 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
2750 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
2751 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
2752 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
2753 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
2754 f2ea84fa 2019-07-27 stsp struct got_pathlist_entry *pe;
2755 f2ea84fa 2019-07-27 stsp struct tree_path_data {
2756 dbdddfee 2021-06-23 naddy STAILQ_ENTRY(tree_path_data) entry;
2757 f2ea84fa 2019-07-27 stsp struct got_object_id *tree_id;
2758 f2ea84fa 2019-07-27 stsp int entry_type;
2759 f2ea84fa 2019-07-27 stsp char *relpath;
2760 f2ea84fa 2019-07-27 stsp char *entry_name;
2761 f2ea84fa 2019-07-27 stsp } *tpd = NULL;
2762 dbdddfee 2021-06-23 naddy STAILQ_HEAD(tree_paths, tree_path_data) tree_paths;
2763 9d31a1d8 2018-03-11 stsp
2764 dbdddfee 2021-06-23 naddy STAILQ_INIT(&tree_paths);
2765 f2ea84fa 2019-07-27 stsp
2766 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
2767 9d31a1d8 2018-03-11 stsp if (err)
2768 9d31a1d8 2018-03-11 stsp return err;
2769 93a30277 2018-12-24 stsp
2770 f2ea84fa 2019-07-27 stsp /* Map all specified paths to in-repository trees. */
2771 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, paths, entry) {
2772 f2ea84fa 2019-07-27 stsp tpd = malloc(sizeof(*tpd));
2773 f2ea84fa 2019-07-27 stsp if (tpd == NULL) {
2774 f2ea84fa 2019-07-27 stsp err = got_error_from_errno("malloc");
2775 f2ea84fa 2019-07-27 stsp goto done;
2776 f2ea84fa 2019-07-27 stsp }
2777 6ced4176 2019-07-12 stsp
2778 f2ea84fa 2019-07-27 stsp err = find_tree_entry_for_checkout(&tpd->entry_type,
2779 f2ea84fa 2019-07-27 stsp &tpd->relpath, &tpd->tree_id, pe->path, worktree, repo);
2780 f2ea84fa 2019-07-27 stsp if (err) {
2781 f2ea84fa 2019-07-27 stsp free(tpd);
2782 6ced4176 2019-07-12 stsp goto done;
2783 6ced4176 2019-07-12 stsp }
2784 f2ea84fa 2019-07-27 stsp
2785 f2ea84fa 2019-07-27 stsp if (tpd->entry_type == GOT_OBJ_TYPE_BLOB) {
2786 f2ea84fa 2019-07-27 stsp err = got_path_basename(&tpd->entry_name, pe->path);
2787 f2ea84fa 2019-07-27 stsp if (err) {
2788 f2ea84fa 2019-07-27 stsp free(tpd->relpath);
2789 f2ea84fa 2019-07-27 stsp free(tpd->tree_id);
2790 f2ea84fa 2019-07-27 stsp free(tpd);
2791 f2ea84fa 2019-07-27 stsp goto done;
2792 f2ea84fa 2019-07-27 stsp }
2793 f2ea84fa 2019-07-27 stsp } else
2794 f2ea84fa 2019-07-27 stsp tpd->entry_name = NULL;
2795 f2ea84fa 2019-07-27 stsp
2796 dbdddfee 2021-06-23 naddy STAILQ_INSERT_TAIL(&tree_paths, tpd, entry);
2797 6ced4176 2019-07-12 stsp }
2798 6ced4176 2019-07-12 stsp
2799 51514078 2018-12-25 stsp /*
2800 51514078 2018-12-25 stsp * Read the file index.
2801 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
2802 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
2803 51514078 2018-12-25 stsp */
2804 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2805 8da9e5f4 2019-01-12 stsp if (err)
2806 c4cdcb68 2019-04-03 stsp goto done;
2807 c4cdcb68 2019-04-03 stsp
2808 dbdddfee 2021-06-23 naddy tpd = STAILQ_FIRST(&tree_paths);
2809 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, paths, entry) {
2810 711d9cd9 2019-07-12 stsp struct bump_base_commit_id_arg bbc_arg;
2811 f2ea84fa 2019-07-27 stsp
2812 f2ea84fa 2019-07-27 stsp err = checkout_files(worktree, fileindex, tpd->relpath,
2813 f2ea84fa 2019-07-27 stsp tpd->tree_id, tpd->entry_name, repo,
2814 f2ea84fa 2019-07-27 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
2815 f2ea84fa 2019-07-27 stsp if (err)
2816 f2ea84fa 2019-07-27 stsp break;
2817 f2ea84fa 2019-07-27 stsp
2818 711d9cd9 2019-07-12 stsp bbc_arg.base_commit_id = worktree->base_commit_id;
2819 f2ea84fa 2019-07-27 stsp bbc_arg.entry_name = tpd->entry_name;
2820 f2ea84fa 2019-07-27 stsp bbc_arg.path = pe->path;
2821 f2b16ada 2019-08-02 stsp bbc_arg.path_len = pe->path_len;
2822 711d9cd9 2019-07-12 stsp bbc_arg.progress_cb = progress_cb;
2823 711d9cd9 2019-07-12 stsp bbc_arg.progress_arg = progress_arg;
2824 711d9cd9 2019-07-12 stsp err = got_fileindex_for_each_entry_safe(fileindex,
2825 711d9cd9 2019-07-12 stsp bump_base_commit_id, &bbc_arg);
2826 f2ea84fa 2019-07-27 stsp if (err)
2827 f2ea84fa 2019-07-27 stsp break;
2828 f2ea84fa 2019-07-27 stsp
2829 dbdddfee 2021-06-23 naddy tpd = STAILQ_NEXT(tpd, entry);
2830 711d9cd9 2019-07-12 stsp }
2831 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
2832 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
2833 af12c6b9 2019-06-04 stsp err = sync_err;
2834 9d31a1d8 2018-03-11 stsp done:
2835 9c6338c4 2019-06-02 stsp free(fileindex_path);
2836 edfa7d7f 2018-09-11 stsp if (tree)
2837 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
2838 9d31a1d8 2018-03-11 stsp if (commit)
2839 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
2840 5ade8233 2019-07-12 stsp if (fileindex)
2841 5ade8233 2019-07-12 stsp got_fileindex_free(fileindex);
2842 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&tree_paths)) {
2843 dbdddfee 2021-06-23 naddy tpd = STAILQ_FIRST(&tree_paths);
2844 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&tree_paths, entry);
2845 f2ea84fa 2019-07-27 stsp free(tpd->relpath);
2846 f2ea84fa 2019-07-27 stsp free(tpd->tree_id);
2847 f2ea84fa 2019-07-27 stsp free(tpd);
2848 f2ea84fa 2019-07-27 stsp }
2849 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2850 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
2851 9d31a1d8 2018-03-11 stsp err = unlockerr;
2852 f8d1f275 2019-02-04 stsp return err;
2853 f8d1f275 2019-02-04 stsp }
2854 f8d1f275 2019-02-04 stsp
2855 234035bc 2019-06-01 stsp struct merge_file_cb_arg {
2856 234035bc 2019-06-01 stsp struct got_worktree *worktree;
2857 234035bc 2019-06-01 stsp struct got_fileindex *fileindex;
2858 234035bc 2019-06-01 stsp got_worktree_checkout_cb progress_cb;
2859 234035bc 2019-06-01 stsp void *progress_arg;
2860 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb;
2861 234035bc 2019-06-01 stsp void *cancel_arg;
2862 f69721c3 2019-10-21 stsp const char *label_orig;
2863 818c7501 2019-07-11 stsp struct got_object_id *commit_id2;
2864 5267b9e4 2021-09-26 stsp int allow_bad_symlinks;
2865 234035bc 2019-06-01 stsp };
2866 234035bc 2019-06-01 stsp
2867 234035bc 2019-06-01 stsp static const struct got_error *
2868 234035bc 2019-06-01 stsp merge_file_cb(void *arg, struct got_blob_object *blob1,
2869 234035bc 2019-06-01 stsp struct got_blob_object *blob2, struct got_object_id *id1,
2870 234035bc 2019-06-01 stsp struct got_object_id *id2, const char *path1, const char *path2,
2871 46f68b20 2019-10-19 stsp mode_t mode1, mode_t mode2, struct got_repository *repo)
2872 234035bc 2019-06-01 stsp {
2873 234035bc 2019-06-01 stsp static const struct got_error *err = NULL;
2874 234035bc 2019-06-01 stsp struct merge_file_cb_arg *a = arg;
2875 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie;
2876 234035bc 2019-06-01 stsp char *ondisk_path = NULL;
2877 234035bc 2019-06-01 stsp struct stat sb;
2878 234035bc 2019-06-01 stsp unsigned char status;
2879 234035bc 2019-06-01 stsp int local_changes_subsumed;
2880 1af628f4 2021-06-03 stsp FILE *f_orig = NULL, *f_deriv = NULL, *f_deriv2 = NULL;
2881 54d5be07 2021-06-03 stsp char *id_str = NULL, *label_deriv2 = NULL;
2882 234035bc 2019-06-01 stsp
2883 234035bc 2019-06-01 stsp if (blob1 && blob2) {
2884 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(a->fileindex, path2,
2885 d6c87207 2019-08-02 stsp strlen(path2));
2886 1ee397ad 2019-07-12 stsp if (ie == NULL)
2887 1ee397ad 2019-07-12 stsp return (*a->progress_cb)(a->progress_arg,
2888 1ee397ad 2019-07-12 stsp GOT_STATUS_MISSING, path2);
2889 234035bc 2019-06-01 stsp
2890 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2891 234035bc 2019-06-01 stsp path2) == -1)
2892 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
2893 234035bc 2019-06-01 stsp
2894 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2895 7f91a133 2019-12-13 stsp repo);
2896 234035bc 2019-06-01 stsp if (err)
2897 234035bc 2019-06-01 stsp goto done;
2898 234035bc 2019-06-01 stsp
2899 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
2900 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
2901 1ee397ad 2019-07-12 stsp GOT_STATUS_MERGE, path2);
2902 234035bc 2019-06-01 stsp goto done;
2903 234035bc 2019-06-01 stsp }
2904 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
2905 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
2906 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
2907 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
2908 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path2);
2909 234035bc 2019-06-01 stsp goto done;
2910 234035bc 2019-06-01 stsp }
2911 234035bc 2019-06-01 stsp
2912 af57b12a 2020-07-23 stsp if (S_ISLNK(mode1) && S_ISLNK(mode2)) {
2913 36bf999c 2020-07-23 stsp char *link_target2;
2914 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(&link_target2, blob2);
2915 36bf999c 2020-07-23 stsp if (err)
2916 36bf999c 2020-07-23 stsp goto done;
2917 dfe9fba0 2020-07-23 stsp err = merge_symlink(a->worktree, blob1, ondisk_path,
2918 36bf999c 2020-07-23 stsp path2, a->label_orig, link_target2, a->commit_id2,
2919 36bf999c 2020-07-23 stsp repo, a->progress_cb, a->progress_arg);
2920 36bf999c 2020-07-23 stsp free(link_target2);
2921 af57b12a 2020-07-23 stsp } else {
2922 1af628f4 2021-06-03 stsp int fd;
2923 1af628f4 2021-06-03 stsp
2924 1af628f4 2021-06-03 stsp f_orig = got_opentemp();
2925 1af628f4 2021-06-03 stsp if (f_orig == NULL) {
2926 1af628f4 2021-06-03 stsp err = got_error_from_errno("got_opentemp");
2927 1af628f4 2021-06-03 stsp goto done;
2928 1af628f4 2021-06-03 stsp }
2929 1af628f4 2021-06-03 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL,
2930 1af628f4 2021-06-03 stsp f_orig, blob1);
2931 1af628f4 2021-06-03 stsp if (err)
2932 1af628f4 2021-06-03 stsp goto done;
2933 1af628f4 2021-06-03 stsp
2934 54d5be07 2021-06-03 stsp f_deriv2 = got_opentemp();
2935 54d5be07 2021-06-03 stsp if (f_deriv2 == NULL)
2936 1af628f4 2021-06-03 stsp goto done;
2937 1af628f4 2021-06-03 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL,
2938 54d5be07 2021-06-03 stsp f_deriv2, blob2);
2939 1af628f4 2021-06-03 stsp if (err)
2940 1af628f4 2021-06-03 stsp goto done;
2941 1af628f4 2021-06-03 stsp
2942 1af628f4 2021-06-03 stsp fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW);
2943 1af628f4 2021-06-03 stsp if (fd == -1) {
2944 1af628f4 2021-06-03 stsp err = got_error_from_errno2("open",
2945 1af628f4 2021-06-03 stsp ondisk_path);
2946 1af628f4 2021-06-03 stsp goto done;
2947 1af628f4 2021-06-03 stsp }
2948 54d5be07 2021-06-03 stsp f_deriv = fdopen(fd, "r");
2949 54d5be07 2021-06-03 stsp if (f_deriv == NULL) {
2950 1af628f4 2021-06-03 stsp err = got_error_from_errno2("fdopen",
2951 1af628f4 2021-06-03 stsp ondisk_path);
2952 1af628f4 2021-06-03 stsp close(fd);
2953 1af628f4 2021-06-03 stsp goto done;
2954 1af628f4 2021-06-03 stsp }
2955 1af628f4 2021-06-03 stsp err = got_object_id_str(&id_str, a->commit_id2);
2956 1af628f4 2021-06-03 stsp if (err)
2957 1af628f4 2021-06-03 stsp goto done;
2958 54d5be07 2021-06-03 stsp if (asprintf(&label_deriv2, "%s: commit %s",
2959 1af628f4 2021-06-03 stsp GOT_MERGE_LABEL_MERGED, id_str) == -1) {
2960 1af628f4 2021-06-03 stsp err = got_error_from_errno("asprintf");
2961 1af628f4 2021-06-03 stsp goto done;
2962 1af628f4 2021-06-03 stsp }
2963 1af628f4 2021-06-03 stsp err = merge_file(&local_changes_subsumed, a->worktree,
2964 1af628f4 2021-06-03 stsp f_orig, f_deriv, f_deriv2, ondisk_path, path2,
2965 54d5be07 2021-06-03 stsp sb.st_mode, a->label_orig, NULL, label_deriv2,
2966 fdf3c2d3 2021-06-17 stsp GOT_DIFF_ALGORITHM_PATIENCE, repo,
2967 fdf3c2d3 2021-06-17 stsp a->progress_cb, a->progress_arg);
2968 af57b12a 2020-07-23 stsp }
2969 234035bc 2019-06-01 stsp } else if (blob1) {
2970 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(a->fileindex, path1,
2971 d6c87207 2019-08-02 stsp strlen(path1));
2972 1ee397ad 2019-07-12 stsp if (ie == NULL)
2973 1ee397ad 2019-07-12 stsp return (*a->progress_cb)(a->progress_arg,
2974 3c24af98 2020-02-07 tracey GOT_STATUS_MISSING, path1);
2975 2b92fad7 2019-06-02 stsp
2976 2b92fad7 2019-06-02 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2977 2b92fad7 2019-06-02 stsp path1) == -1)
2978 2b92fad7 2019-06-02 stsp return got_error_from_errno("asprintf");
2979 2b92fad7 2019-06-02 stsp
2980 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2981 7f91a133 2019-12-13 stsp repo);
2982 2b92fad7 2019-06-02 stsp if (err)
2983 2b92fad7 2019-06-02 stsp goto done;
2984 2b92fad7 2019-06-02 stsp
2985 2b92fad7 2019-06-02 stsp switch (status) {
2986 2b92fad7 2019-06-02 stsp case GOT_STATUS_NO_CHANGE:
2987 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
2988 1ee397ad 2019-07-12 stsp GOT_STATUS_DELETE, path1);
2989 1ee397ad 2019-07-12 stsp if (err)
2990 1ee397ad 2019-07-12 stsp goto done;
2991 2b92fad7 2019-06-02 stsp err = remove_ondisk_file(a->worktree->root_path, path1);
2992 2b92fad7 2019-06-02 stsp if (err)
2993 2b92fad7 2019-06-02 stsp goto done;
2994 2b92fad7 2019-06-02 stsp if (ie)
2995 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
2996 2b92fad7 2019-06-02 stsp break;
2997 2b92fad7 2019-06-02 stsp case GOT_STATUS_DELETE:
2998 2b92fad7 2019-06-02 stsp case GOT_STATUS_MISSING:
2999 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
3000 1ee397ad 2019-07-12 stsp GOT_STATUS_DELETE, path1);
3001 1ee397ad 2019-07-12 stsp if (err)
3002 1ee397ad 2019-07-12 stsp goto done;
3003 2b92fad7 2019-06-02 stsp if (ie)
3004 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
3005 2b92fad7 2019-06-02 stsp break;
3006 0a22ca1a 2020-09-23 stsp case GOT_STATUS_ADD: {
3007 0a22ca1a 2020-09-23 stsp struct got_object_id *id;
3008 0a22ca1a 2020-09-23 stsp FILE *blob1_f;
3009 0a22ca1a 2020-09-23 stsp /*
3010 0a22ca1a 2020-09-23 stsp * Delete the added file only if its content already
3011 0a22ca1a 2020-09-23 stsp * exists in the repository.
3012 0a22ca1a 2020-09-23 stsp */
3013 0a22ca1a 2020-09-23 stsp err = got_object_blob_file_create(&id, &blob1_f, path1);
3014 0a22ca1a 2020-09-23 stsp if (err)
3015 0a22ca1a 2020-09-23 stsp goto done;
3016 0a22ca1a 2020-09-23 stsp if (got_object_id_cmp(id, id1) == 0) {
3017 0a22ca1a 2020-09-23 stsp err = (*a->progress_cb)(a->progress_arg,
3018 0a22ca1a 2020-09-23 stsp GOT_STATUS_DELETE, path1);
3019 0a22ca1a 2020-09-23 stsp if (err)
3020 0a22ca1a 2020-09-23 stsp goto done;
3021 0a22ca1a 2020-09-23 stsp err = remove_ondisk_file(a->worktree->root_path,
3022 0a22ca1a 2020-09-23 stsp path1);
3023 0a22ca1a 2020-09-23 stsp if (err)
3024 0a22ca1a 2020-09-23 stsp goto done;
3025 0a22ca1a 2020-09-23 stsp if (ie)
3026 0a22ca1a 2020-09-23 stsp got_fileindex_entry_remove(a->fileindex,
3027 0a22ca1a 2020-09-23 stsp ie);
3028 0a22ca1a 2020-09-23 stsp } else {
3029 0a22ca1a 2020-09-23 stsp err = (*a->progress_cb)(a->progress_arg,
3030 0a22ca1a 2020-09-23 stsp GOT_STATUS_CANNOT_DELETE, path1);
3031 0a22ca1a 2020-09-23 stsp }
3032 0a22ca1a 2020-09-23 stsp if (fclose(blob1_f) == EOF && err == NULL)
3033 0a22ca1a 2020-09-23 stsp err = got_error_from_errno("fclose");
3034 0a22ca1a 2020-09-23 stsp free(id);
3035 0a22ca1a 2020-09-23 stsp if (err)
3036 0a22ca1a 2020-09-23 stsp goto done;
3037 0a22ca1a 2020-09-23 stsp break;
3038 0a22ca1a 2020-09-23 stsp }
3039 2b92fad7 2019-06-02 stsp case GOT_STATUS_MODIFY:
3040 2b92fad7 2019-06-02 stsp case GOT_STATUS_CONFLICT:
3041 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
3042 2b92fad7 2019-06-02 stsp GOT_STATUS_CANNOT_DELETE, path1);
3043 1ee397ad 2019-07-12 stsp if (err)
3044 1ee397ad 2019-07-12 stsp goto done;
3045 2b92fad7 2019-06-02 stsp break;
3046 2b92fad7 2019-06-02 stsp case GOT_STATUS_OBSTRUCTED:
3047 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path1);
3048 1ee397ad 2019-07-12 stsp if (err)
3049 1ee397ad 2019-07-12 stsp goto done;
3050 2b92fad7 2019-06-02 stsp break;
3051 2b92fad7 2019-06-02 stsp default:
3052 2b92fad7 2019-06-02 stsp break;
3053 2b92fad7 2019-06-02 stsp }
3054 234035bc 2019-06-01 stsp } else if (blob2) {
3055 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3056 234035bc 2019-06-01 stsp path2) == -1)
3057 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
3058 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(a->fileindex, path2,
3059 d6c87207 2019-08-02 stsp strlen(path2));
3060 234035bc 2019-06-01 stsp if (ie) {
3061 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path,
3062 7f91a133 2019-12-13 stsp -1, NULL, repo);
3063 234035bc 2019-06-01 stsp if (err)
3064 234035bc 2019-06-01 stsp goto done;
3065 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
3066 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
3067 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
3068 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
3069 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
3070 1ee397ad 2019-07-12 stsp status, path2);
3071 234035bc 2019-06-01 stsp goto done;
3072 234035bc 2019-06-01 stsp }
3073 dfe9fba0 2020-07-23 stsp if (S_ISLNK(mode2) && S_ISLNK(sb.st_mode)) {
3074 36bf999c 2020-07-23 stsp char *link_target2;
3075 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(&link_target2,
3076 36bf999c 2020-07-23 stsp blob2);
3077 36bf999c 2020-07-23 stsp if (err)
3078 36bf999c 2020-07-23 stsp goto done;
3079 526a746f 2020-07-23 stsp err = merge_symlink(a->worktree, NULL,
3080 dfe9fba0 2020-07-23 stsp ondisk_path, path2, a->label_orig,
3081 36bf999c 2020-07-23 stsp link_target2, a->commit_id2, repo,
3082 dfe9fba0 2020-07-23 stsp a->progress_cb, a->progress_arg);
3083 36bf999c 2020-07-23 stsp free(link_target2);
3084 dfe9fba0 2020-07-23 stsp } else if (S_ISREG(sb.st_mode)) {
3085 526a746f 2020-07-23 stsp err = merge_blob(&local_changes_subsumed,
3086 526a746f 2020-07-23 stsp a->worktree, NULL, ondisk_path, path2,
3087 526a746f 2020-07-23 stsp sb.st_mode, a->label_orig, blob2,
3088 526a746f 2020-07-23 stsp a->commit_id2, repo, a->progress_cb,
3089 526a746f 2020-07-23 stsp a->progress_arg);
3090 dfe9fba0 2020-07-23 stsp } else {
3091 dfe9fba0 2020-07-23 stsp err = got_error_path(ondisk_path,
3092 dfe9fba0 2020-07-23 stsp GOT_ERR_FILE_OBSTRUCTED);
3093 526a746f 2020-07-23 stsp }
3094 dfe9fba0 2020-07-23 stsp if (err)
3095 dfe9fba0 2020-07-23 stsp goto done;
3096 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
3097 054041d0 2020-06-24 stsp err = got_fileindex_entry_update(ie,
3098 437adc9d 2020-12-10 yzhong a->worktree->root_fd, path2, blob2->id.sha1,
3099 054041d0 2020-06-24 stsp a->worktree->base_commit_id->sha1, 0);
3100 234035bc 2019-06-01 stsp if (err)
3101 234035bc 2019-06-01 stsp goto done;
3102 234035bc 2019-06-01 stsp }
3103 234035bc 2019-06-01 stsp } else {
3104 2e1fa222 2020-07-23 stsp int is_bad_symlink = 0;
3105 234035bc 2019-06-01 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
3106 2e1fa222 2020-07-23 stsp if (S_ISLNK(mode2)) {
3107 2e1fa222 2020-07-23 stsp err = install_symlink(&is_bad_symlink,
3108 2e1fa222 2020-07-23 stsp a->worktree, ondisk_path, path2, blob2, 0,
3109 5267b9e4 2021-09-26 stsp 0, 1, a->allow_bad_symlinks, repo,
3110 5267b9e4 2021-09-26 stsp a->progress_cb, a->progress_arg);
3111 2e1fa222 2020-07-23 stsp } else {
3112 2e1fa222 2020-07-23 stsp err = install_blob(a->worktree, ondisk_path, path2,
3113 3b9f0f87 2020-07-23 stsp mode2, sb.st_mode, blob2, 0, 0, 0, 1, repo,
3114 2e1fa222 2020-07-23 stsp a->progress_cb, a->progress_arg);
3115 2e1fa222 2020-07-23 stsp }
3116 234035bc 2019-06-01 stsp if (err)
3117 234035bc 2019-06-01 stsp goto done;
3118 3969253a 2020-03-07 stsp err = got_fileindex_entry_alloc(&ie, path2);
3119 234035bc 2019-06-01 stsp if (err)
3120 234035bc 2019-06-01 stsp goto done;
3121 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie,
3122 437adc9d 2020-12-10 yzhong a->worktree->root_fd, path2, NULL, NULL, 1);
3123 3969253a 2020-03-07 stsp if (err) {
3124 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
3125 3969253a 2020-03-07 stsp goto done;
3126 3969253a 2020-03-07 stsp }
3127 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_add(a->fileindex, ie);
3128 2b92fad7 2019-06-02 stsp if (err) {
3129 2b92fad7 2019-06-02 stsp got_fileindex_entry_free(ie);
3130 2b92fad7 2019-06-02 stsp goto done;
3131 2b92fad7 2019-06-02 stsp }
3132 2e1fa222 2020-07-23 stsp if (is_bad_symlink) {
3133 6131ab45 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
3134 2e1fa222 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
3135 2e1fa222 2020-07-23 stsp }
3136 234035bc 2019-06-01 stsp }
3137 234035bc 2019-06-01 stsp }
3138 234035bc 2019-06-01 stsp done:
3139 1af628f4 2021-06-03 stsp if (f_orig && fclose(f_orig) == EOF && err == NULL)
3140 1af628f4 2021-06-03 stsp err = got_error_from_errno("fclose");
3141 1af628f4 2021-06-03 stsp if (f_deriv && fclose(f_deriv) == EOF && err == NULL)
3142 1af628f4 2021-06-03 stsp err = got_error_from_errno("fclose");
3143 1af628f4 2021-06-03 stsp if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
3144 1af628f4 2021-06-03 stsp err = got_error_from_errno("fclose");
3145 1af628f4 2021-06-03 stsp free(id_str);
3146 54d5be07 2021-06-03 stsp free(label_deriv2);
3147 234035bc 2019-06-01 stsp free(ondisk_path);
3148 234035bc 2019-06-01 stsp return err;
3149 234035bc 2019-06-01 stsp }
3150 234035bc 2019-06-01 stsp
3151 69de9dd4 2021-09-03 stsp static const struct got_error *
3152 69de9dd4 2021-09-03 stsp check_mixed_commits(void *arg, struct got_fileindex_entry *ie)
3153 69de9dd4 2021-09-03 stsp {
3154 69de9dd4 2021-09-03 stsp struct got_worktree *worktree = arg;
3155 69de9dd4 2021-09-03 stsp
3156 abc59930 2021-09-05 naddy /* Reject merges into a work tree with mixed base commits. */
3157 abc59930 2021-09-05 naddy if (got_fileindex_entry_has_commit(ie) &&
3158 69de9dd4 2021-09-03 stsp memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
3159 69de9dd4 2021-09-03 stsp SHA1_DIGEST_LENGTH) != 0)
3160 abc59930 2021-09-05 naddy return got_error(GOT_ERR_MIXED_COMMITS);
3161 69de9dd4 2021-09-03 stsp
3162 69de9dd4 2021-09-03 stsp return NULL;
3163 69de9dd4 2021-09-03 stsp }
3164 69de9dd4 2021-09-03 stsp
3165 69de9dd4 2021-09-03 stsp struct check_merge_conflicts_arg {
3166 234035bc 2019-06-01 stsp struct got_worktree *worktree;
3167 69de9dd4 2021-09-03 stsp struct got_fileindex *fileindex;
3168 234035bc 2019-06-01 stsp struct got_repository *repo;
3169 234035bc 2019-06-01 stsp };
3170 234035bc 2019-06-01 stsp
3171 234035bc 2019-06-01 stsp static const struct got_error *
3172 69de9dd4 2021-09-03 stsp check_merge_conflicts(void *arg, struct got_blob_object *blob1,
3173 69de9dd4 2021-09-03 stsp struct got_blob_object *blob2, struct got_object_id *id1,
3174 69de9dd4 2021-09-03 stsp struct got_object_id *id2, const char *path1, const char *path2,
3175 69de9dd4 2021-09-03 stsp mode_t mode1, mode_t mode2, struct got_repository *repo)
3176 234035bc 2019-06-01 stsp {
3177 234035bc 2019-06-01 stsp const struct got_error *err = NULL;
3178 69de9dd4 2021-09-03 stsp struct check_merge_conflicts_arg *a = arg;
3179 234035bc 2019-06-01 stsp unsigned char status;
3180 234035bc 2019-06-01 stsp struct stat sb;
3181 69de9dd4 2021-09-03 stsp struct got_fileindex_entry *ie;
3182 69de9dd4 2021-09-03 stsp const char *path = path2 ? path2 : path1;
3183 69de9dd4 2021-09-03 stsp struct got_object_id *id = id2 ? id2 : id1;
3184 234035bc 2019-06-01 stsp char *ondisk_path;
3185 234035bc 2019-06-01 stsp
3186 69de9dd4 2021-09-03 stsp if (id == NULL)
3187 69de9dd4 2021-09-03 stsp return NULL;
3188 234035bc 2019-06-01 stsp
3189 69de9dd4 2021-09-03 stsp ie = got_fileindex_entry_get(a->fileindex, path, strlen(path));
3190 69de9dd4 2021-09-03 stsp if (ie == NULL)
3191 69de9dd4 2021-09-03 stsp return NULL;
3192 69de9dd4 2021-09-03 stsp
3193 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
3194 234035bc 2019-06-01 stsp == -1)
3195 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
3196 234035bc 2019-06-01 stsp
3197 234035bc 2019-06-01 stsp /* Reject merges into a work tree with conflicted files. */
3198 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
3199 5546d466 2021-09-02 stsp free(ondisk_path);
3200 234035bc 2019-06-01 stsp if (err)
3201 234035bc 2019-06-01 stsp return err;
3202 234035bc 2019-06-01 stsp if (status == GOT_STATUS_CONFLICT)
3203 234035bc 2019-06-01 stsp return got_error(GOT_ERR_CONFLICTS);
3204 234035bc 2019-06-01 stsp
3205 234035bc 2019-06-01 stsp return NULL;
3206 234035bc 2019-06-01 stsp }
3207 234035bc 2019-06-01 stsp
3208 818c7501 2019-07-11 stsp static const struct got_error *
3209 818c7501 2019-07-11 stsp merge_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
3210 818c7501 2019-07-11 stsp const char *fileindex_path, struct got_object_id *commit_id1,
3211 818c7501 2019-07-11 stsp struct got_object_id *commit_id2, struct got_repository *repo,
3212 818c7501 2019-07-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
3213 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
3214 234035bc 2019-06-01 stsp {
3215 818c7501 2019-07-11 stsp const struct got_error *err = NULL, *sync_err;
3216 234035bc 2019-06-01 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
3217 234035bc 2019-06-01 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3218 69de9dd4 2021-09-03 stsp struct check_merge_conflicts_arg cmc_arg;
3219 234035bc 2019-06-01 stsp struct merge_file_cb_arg arg;
3220 f69721c3 2019-10-21 stsp char *label_orig = NULL;
3221 234035bc 2019-06-01 stsp
3222 03415a1a 2019-06-02 stsp if (commit_id1) {
3223 03415a1a 2019-06-02 stsp err = got_object_id_by_path(&tree_id1, repo, commit_id1,
3224 03415a1a 2019-06-02 stsp worktree->path_prefix);
3225 69d57f3d 2020-07-31 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
3226 03415a1a 2019-06-02 stsp goto done;
3227 69d57f3d 2020-07-31 stsp }
3228 69d57f3d 2020-07-31 stsp if (tree_id1) {
3229 69d57f3d 2020-07-31 stsp char *id_str;
3230 03415a1a 2019-06-02 stsp
3231 03415a1a 2019-06-02 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
3232 03415a1a 2019-06-02 stsp if (err)
3233 03415a1a 2019-06-02 stsp goto done;
3234 f69721c3 2019-10-21 stsp
3235 f69721c3 2019-10-21 stsp err = got_object_id_str(&id_str, commit_id1);
3236 f69721c3 2019-10-21 stsp if (err)
3237 f69721c3 2019-10-21 stsp goto done;
3238 f69721c3 2019-10-21 stsp
3239 f69721c3 2019-10-21 stsp if (asprintf(&label_orig, "%s: commit %s",
3240 f69721c3 2019-10-21 stsp GOT_MERGE_LABEL_BASE, id_str) == -1) {
3241 f69721c3 2019-10-21 stsp err = got_error_from_errno("asprintf");
3242 f69721c3 2019-10-21 stsp free(id_str);
3243 f69721c3 2019-10-21 stsp goto done;
3244 f69721c3 2019-10-21 stsp }
3245 f69721c3 2019-10-21 stsp free(id_str);
3246 03415a1a 2019-06-02 stsp }
3247 234035bc 2019-06-01 stsp
3248 234035bc 2019-06-01 stsp err = got_object_id_by_path(&tree_id2, repo, commit_id2,
3249 234035bc 2019-06-01 stsp worktree->path_prefix);
3250 234035bc 2019-06-01 stsp if (err)
3251 234035bc 2019-06-01 stsp goto done;
3252 234035bc 2019-06-01 stsp
3253 234035bc 2019-06-01 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
3254 234035bc 2019-06-01 stsp if (err)
3255 234035bc 2019-06-01 stsp goto done;
3256 234035bc 2019-06-01 stsp
3257 69de9dd4 2021-09-03 stsp cmc_arg.worktree = worktree;
3258 69de9dd4 2021-09-03 stsp cmc_arg.fileindex = fileindex;
3259 69de9dd4 2021-09-03 stsp cmc_arg.repo = repo;
3260 69de9dd4 2021-09-03 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
3261 69de9dd4 2021-09-03 stsp check_merge_conflicts, &cmc_arg, 0);
3262 69de9dd4 2021-09-03 stsp if (err)
3263 69de9dd4 2021-09-03 stsp goto done;
3264 69de9dd4 2021-09-03 stsp
3265 234035bc 2019-06-01 stsp arg.worktree = worktree;
3266 234035bc 2019-06-01 stsp arg.fileindex = fileindex;
3267 234035bc 2019-06-01 stsp arg.progress_cb = progress_cb;
3268 234035bc 2019-06-01 stsp arg.progress_arg = progress_arg;
3269 234035bc 2019-06-01 stsp arg.cancel_cb = cancel_cb;
3270 234035bc 2019-06-01 stsp arg.cancel_arg = cancel_arg;
3271 f69721c3 2019-10-21 stsp arg.label_orig = label_orig;
3272 818c7501 2019-07-11 stsp arg.commit_id2 = commit_id2;
3273 5267b9e4 2021-09-26 stsp arg.allow_bad_symlinks = 1; /* preserve bad symlinks across merges */
3274 31b4484f 2019-07-27 stsp err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg, 1);
3275 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
3276 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
3277 af12c6b9 2019-06-04 stsp err = sync_err;
3278 234035bc 2019-06-01 stsp done:
3279 234035bc 2019-06-01 stsp if (tree1)
3280 234035bc 2019-06-01 stsp got_object_tree_close(tree1);
3281 234035bc 2019-06-01 stsp if (tree2)
3282 234035bc 2019-06-01 stsp got_object_tree_close(tree2);
3283 f69721c3 2019-10-21 stsp free(label_orig);
3284 818c7501 2019-07-11 stsp return err;
3285 818c7501 2019-07-11 stsp }
3286 234035bc 2019-06-01 stsp
3287 818c7501 2019-07-11 stsp const struct got_error *
3288 818c7501 2019-07-11 stsp got_worktree_merge_files(struct got_worktree *worktree,
3289 818c7501 2019-07-11 stsp struct got_object_id *commit_id1, struct got_object_id *commit_id2,
3290 818c7501 2019-07-11 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
3291 e6209546 2019-08-22 stsp void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
3292 818c7501 2019-07-11 stsp {
3293 818c7501 2019-07-11 stsp const struct got_error *err, *unlockerr;
3294 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
3295 818c7501 2019-07-11 stsp struct got_fileindex *fileindex = NULL;
3296 818c7501 2019-07-11 stsp
3297 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
3298 818c7501 2019-07-11 stsp if (err)
3299 818c7501 2019-07-11 stsp return err;
3300 818c7501 2019-07-11 stsp
3301 818c7501 2019-07-11 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3302 818c7501 2019-07-11 stsp if (err)
3303 818c7501 2019-07-11 stsp goto done;
3304 818c7501 2019-07-11 stsp
3305 69de9dd4 2021-09-03 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_mixed_commits,
3306 69de9dd4 2021-09-03 stsp worktree);
3307 818c7501 2019-07-11 stsp if (err)
3308 818c7501 2019-07-11 stsp goto done;
3309 818c7501 2019-07-11 stsp
3310 818c7501 2019-07-11 stsp err = merge_files(worktree, fileindex, fileindex_path, commit_id1,
3311 f259c4c1 2021-09-24 stsp commit_id2, repo, progress_cb, progress_arg,
3312 f259c4c1 2021-09-24 stsp cancel_cb, cancel_arg);
3313 818c7501 2019-07-11 stsp done:
3314 818c7501 2019-07-11 stsp if (fileindex)
3315 818c7501 2019-07-11 stsp got_fileindex_free(fileindex);
3316 818c7501 2019-07-11 stsp free(fileindex_path);
3317 234035bc 2019-06-01 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
3318 234035bc 2019-06-01 stsp if (unlockerr && err == NULL)
3319 234035bc 2019-06-01 stsp err = unlockerr;
3320 234035bc 2019-06-01 stsp return err;
3321 234035bc 2019-06-01 stsp }
3322 234035bc 2019-06-01 stsp
3323 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
3324 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
3325 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
3326 927df6b7 2019-02-10 stsp const char *status_path;
3327 927df6b7 2019-02-10 stsp size_t status_path_len;
3328 f8d1f275 2019-02-04 stsp struct got_repository *repo;
3329 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
3330 f8d1f275 2019-02-04 stsp void *status_arg;
3331 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb;
3332 f8d1f275 2019-02-04 stsp void *cancel_arg;
3333 6841da00 2019-08-08 stsp /* A pathlist containing per-directory pathlists of ignore patterns. */
3334 ff56836b 2021-07-08 stsp struct got_pathlist_head *ignores;
3335 f2a9dc41 2019-12-13 tracey int report_unchanged;
3336 3143d852 2020-06-25 stsp int no_ignores;
3337 f8d1f275 2019-02-04 stsp };
3338 88d0e355 2019-08-03 stsp
3339 f8d1f275 2019-02-04 stsp static const struct got_error *
3340 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
3341 7f91a133 2019-12-13 stsp int dirfd, const char *de_name,
3342 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
3343 f2a9dc41 2019-12-13 tracey struct got_repository *repo, int report_unchanged)
3344 927df6b7 2019-02-10 stsp {
3345 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
3346 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
3347 c363b2c1 2019-08-03 stsp unsigned char staged_status = get_staged_status(ie);
3348 927df6b7 2019-02-10 stsp struct stat sb;
3349 537ac44b 2019-08-03 stsp struct got_object_id blob_id, commit_id, staged_blob_id;
3350 98eaaa12 2019-08-03 stsp struct got_object_id *blob_idp = NULL, *commit_idp = NULL;
3351 98eaaa12 2019-08-03 stsp struct got_object_id *staged_blob_idp = NULL;
3352 927df6b7 2019-02-10 stsp
3353 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, abspath, dirfd, de_name, repo);
3354 98eaaa12 2019-08-03 stsp if (err)
3355 98eaaa12 2019-08-03 stsp return err;
3356 98eaaa12 2019-08-03 stsp
3357 98eaaa12 2019-08-03 stsp if (status == GOT_STATUS_NO_CHANGE &&
3358 f2a9dc41 2019-12-13 tracey staged_status == GOT_STATUS_NO_CHANGE && !report_unchanged)
3359 98eaaa12 2019-08-03 stsp return NULL;
3360 98eaaa12 2019-08-03 stsp
3361 98eaaa12 2019-08-03 stsp if (got_fileindex_entry_has_blob(ie)) {
3362 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3363 98eaaa12 2019-08-03 stsp blob_idp = &blob_id;
3364 98eaaa12 2019-08-03 stsp }
3365 98eaaa12 2019-08-03 stsp if (got_fileindex_entry_has_commit(ie)) {
3366 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3367 98eaaa12 2019-08-03 stsp commit_idp = &commit_id;
3368 927df6b7 2019-02-10 stsp }
3369 98eaaa12 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
3370 98eaaa12 2019-08-03 stsp staged_status == GOT_STATUS_MODIFY) {
3371 98eaaa12 2019-08-03 stsp memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
3372 98eaaa12 2019-08-03 stsp SHA1_DIGEST_LENGTH);
3373 98eaaa12 2019-08-03 stsp staged_blob_idp = &staged_blob_id;
3374 98eaaa12 2019-08-03 stsp }
3375 98eaaa12 2019-08-03 stsp
3376 98eaaa12 2019-08-03 stsp return (*status_cb)(status_arg, status, staged_status,
3377 12463d8b 2019-12-13 stsp ie->path, blob_idp, staged_blob_idp, commit_idp, dirfd, de_name);
3378 927df6b7 2019-02-10 stsp }
3379 927df6b7 2019-02-10 stsp
3380 927df6b7 2019-02-10 stsp static const struct got_error *
3381 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
3382 7f91a133 2019-12-13 stsp struct dirent *de, const char *parent_path, int dirfd)
3383 f8d1f275 2019-02-04 stsp {
3384 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
3385 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
3386 f8d1f275 2019-02-04 stsp char *abspath;
3387 f8d1f275 2019-02-04 stsp
3388 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3389 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
3390 0584f854 2019-04-06 stsp
3391 d572f586 2019-08-02 stsp if (got_path_cmp(parent_path, a->status_path,
3392 d572f586 2019-08-02 stsp strlen(parent_path), a->status_path_len) != 0 &&
3393 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
3394 927df6b7 2019-02-10 stsp return NULL;
3395 927df6b7 2019-02-10 stsp
3396 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
3397 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
3398 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
3399 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3400 f8d1f275 2019-02-04 stsp } else {
3401 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
3402 f8d1f275 2019-02-04 stsp de->d_name) == -1)
3403 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3404 f8d1f275 2019-02-04 stsp }
3405 f8d1f275 2019-02-04 stsp
3406 7f91a133 2019-12-13 stsp err = report_file_status(ie, abspath, dirfd, de->d_name,
3407 7f91a133 2019-12-13 stsp a->status_cb, a->status_arg, a->repo, a->report_unchanged);
3408 f8d1f275 2019-02-04 stsp free(abspath);
3409 9d31a1d8 2018-03-11 stsp return err;
3410 9d31a1d8 2018-03-11 stsp }
3411 f8d1f275 2019-02-04 stsp
3412 f8d1f275 2019-02-04 stsp static const struct got_error *
3413 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
3414 f8d1f275 2019-02-04 stsp {
3415 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
3416 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
3417 2ec1f75b 2019-03-26 stsp unsigned char status;
3418 927df6b7 2019-02-10 stsp
3419 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3420 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
3421 0584f854 2019-04-06 stsp
3422 c577a9ce 2019-07-27 stsp if (!got_path_is_child(ie->path, a->status_path, a->status_path_len))
3423 927df6b7 2019-02-10 stsp return NULL;
3424 927df6b7 2019-02-10 stsp
3425 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3426 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3427 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
3428 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_MISSING;
3429 2ec1f75b 2019-03-26 stsp else
3430 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_DELETE;
3431 88d0e355 2019-08-03 stsp return (*a->status_cb)(a->status_arg, status, get_staged_status(ie),
3432 12463d8b 2019-12-13 stsp ie->path, &blob_id, NULL, &commit_id, -1, NULL);
3433 6841da00 2019-08-08 stsp }
3434 6841da00 2019-08-08 stsp
3435 6841da00 2019-08-08 stsp void
3436 6841da00 2019-08-08 stsp free_ignorelist(struct got_pathlist_head *ignorelist)
3437 6841da00 2019-08-08 stsp {
3438 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe;
3439 6841da00 2019-08-08 stsp
3440 6841da00 2019-08-08 stsp TAILQ_FOREACH(pe, ignorelist, entry)
3441 6841da00 2019-08-08 stsp free((char *)pe->path);
3442 6841da00 2019-08-08 stsp got_pathlist_free(ignorelist);
3443 6841da00 2019-08-08 stsp }
3444 6841da00 2019-08-08 stsp
3445 6841da00 2019-08-08 stsp void
3446 6841da00 2019-08-08 stsp free_ignores(struct got_pathlist_head *ignores)
3447 6841da00 2019-08-08 stsp {
3448 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe;
3449 6841da00 2019-08-08 stsp
3450 6841da00 2019-08-08 stsp TAILQ_FOREACH(pe, ignores, entry) {
3451 6841da00 2019-08-08 stsp struct got_pathlist_head *ignorelist = pe->data;
3452 6841da00 2019-08-08 stsp free_ignorelist(ignorelist);
3453 6841da00 2019-08-08 stsp free((char *)pe->path);
3454 6841da00 2019-08-08 stsp }
3455 6841da00 2019-08-08 stsp got_pathlist_free(ignores);
3456 6841da00 2019-08-08 stsp }
3457 6841da00 2019-08-08 stsp
3458 6841da00 2019-08-08 stsp static const struct got_error *
3459 6841da00 2019-08-08 stsp read_ignores(struct got_pathlist_head *ignores, const char *path, FILE *f)
3460 6841da00 2019-08-08 stsp {
3461 6841da00 2019-08-08 stsp const struct got_error *err = NULL;
3462 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe = NULL;
3463 6841da00 2019-08-08 stsp struct got_pathlist_head *ignorelist;
3464 a0de39f3 2019-08-09 stsp char *line = NULL, *pattern, *dirpath = NULL;
3465 6841da00 2019-08-08 stsp size_t linesize = 0;
3466 6841da00 2019-08-08 stsp ssize_t linelen;
3467 6841da00 2019-08-08 stsp
3468 6841da00 2019-08-08 stsp ignorelist = calloc(1, sizeof(*ignorelist));
3469 6841da00 2019-08-08 stsp if (ignorelist == NULL)
3470 6841da00 2019-08-08 stsp return got_error_from_errno("calloc");
3471 6841da00 2019-08-08 stsp TAILQ_INIT(ignorelist);
3472 6841da00 2019-08-08 stsp
3473 6841da00 2019-08-08 stsp while ((linelen = getline(&line, &linesize, f)) != -1) {
3474 6841da00 2019-08-08 stsp if (linelen > 0 && line[linelen - 1] == '\n')
3475 6841da00 2019-08-08 stsp line[linelen - 1] = '\0';
3476 bd8de430 2019-10-04 stsp
3477 bd8de430 2019-10-04 stsp /* Git's ignores may contain comments. */
3478 bd8de430 2019-10-04 stsp if (line[0] == '#')
3479 bd8de430 2019-10-04 stsp continue;
3480 bd8de430 2019-10-04 stsp
3481 bd8de430 2019-10-04 stsp /* Git's negated patterns are not (yet?) supported. */
3482 bd8de430 2019-10-04 stsp if (line[0] == '!')
3483 bd8de430 2019-10-04 stsp continue;
3484 bd8de430 2019-10-04 stsp
3485 6841da00 2019-08-08 stsp if (asprintf(&pattern, "%s%s%s", path, path[0] ? "/" : "",
3486 6841da00 2019-08-08 stsp line) == -1) {
3487 6841da00 2019-08-08 stsp err = got_error_from_errno("asprintf");
3488 6841da00 2019-08-08 stsp goto done;
3489 6841da00 2019-08-08 stsp }
3490 6841da00 2019-08-08 stsp err = got_pathlist_insert(NULL, ignorelist, pattern, NULL);
3491 6841da00 2019-08-08 stsp if (err)
3492 6841da00 2019-08-08 stsp goto done;
3493 6841da00 2019-08-08 stsp }
3494 6841da00 2019-08-08 stsp if (ferror(f)) {
3495 6841da00 2019-08-08 stsp err = got_error_from_errno("getline");
3496 6841da00 2019-08-08 stsp goto done;
3497 6841da00 2019-08-08 stsp }
3498 6841da00 2019-08-08 stsp
3499 6841da00 2019-08-08 stsp dirpath = strdup(path);
3500 6841da00 2019-08-08 stsp if (dirpath == NULL) {
3501 6841da00 2019-08-08 stsp err = got_error_from_errno("strdup");
3502 6841da00 2019-08-08 stsp goto done;
3503 6841da00 2019-08-08 stsp }
3504 6841da00 2019-08-08 stsp err = got_pathlist_insert(&pe, ignores, dirpath, ignorelist);
3505 6841da00 2019-08-08 stsp done:
3506 6841da00 2019-08-08 stsp free(line);
3507 6841da00 2019-08-08 stsp if (err || pe == NULL) {
3508 6841da00 2019-08-08 stsp free(dirpath);
3509 6841da00 2019-08-08 stsp free_ignorelist(ignorelist);
3510 6841da00 2019-08-08 stsp }
3511 6841da00 2019-08-08 stsp return err;
3512 6841da00 2019-08-08 stsp }
3513 6841da00 2019-08-08 stsp
3514 6841da00 2019-08-08 stsp int
3515 6841da00 2019-08-08 stsp match_ignores(struct got_pathlist_head *ignores, const char *path)
3516 6841da00 2019-08-08 stsp {
3517 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe;
3518 bd8de430 2019-10-04 stsp
3519 bd8de430 2019-10-04 stsp /* Handle patterns which match in all directories. */
3520 bd8de430 2019-10-04 stsp TAILQ_FOREACH(pe, ignores, entry) {
3521 bd8de430 2019-10-04 stsp struct got_pathlist_head *ignorelist = pe->data;
3522 bd8de430 2019-10-04 stsp struct got_pathlist_entry *pi;
3523 bd8de430 2019-10-04 stsp
3524 bd8de430 2019-10-04 stsp TAILQ_FOREACH(pi, ignorelist, entry) {
3525 bd8de430 2019-10-04 stsp const char *p, *pattern = pi->path;
3526 6841da00 2019-08-08 stsp
3527 bd8de430 2019-10-04 stsp if (strncmp(pattern, "**/", 3) != 0)
3528 bd8de430 2019-10-04 stsp continue;
3529 bd8de430 2019-10-04 stsp pattern += 3;
3530 bd8de430 2019-10-04 stsp p = path;
3531 bd8de430 2019-10-04 stsp while (*p) {
3532 bd8de430 2019-10-04 stsp if (fnmatch(pattern, p,
3533 bd8de430 2019-10-04 stsp FNM_PATHNAME | FNM_LEADING_DIR)) {
3534 bd8de430 2019-10-04 stsp /* Retry in next directory. */
3535 bd8de430 2019-10-04 stsp while (*p && *p != '/')
3536 bd8de430 2019-10-04 stsp p++;
3537 bd8de430 2019-10-04 stsp while (*p == '/')
3538 bd8de430 2019-10-04 stsp p++;
3539 bd8de430 2019-10-04 stsp continue;
3540 bd8de430 2019-10-04 stsp }
3541 bd8de430 2019-10-04 stsp return 1;
3542 bd8de430 2019-10-04 stsp }
3543 bd8de430 2019-10-04 stsp }
3544 bd8de430 2019-10-04 stsp }
3545 bd8de430 2019-10-04 stsp
3546 6841da00 2019-08-08 stsp /*
3547 6841da00 2019-08-08 stsp * The ignores pathlist contains ignore lists from children before
3548 6841da00 2019-08-08 stsp * parents, so we can find the most specific ignorelist by walking
3549 6841da00 2019-08-08 stsp * ignores backwards.
3550 6841da00 2019-08-08 stsp */
3551 6841da00 2019-08-08 stsp pe = TAILQ_LAST(ignores, got_pathlist_head);
3552 6841da00 2019-08-08 stsp while (pe) {
3553 6841da00 2019-08-08 stsp if (got_path_is_child(path, pe->path, pe->path_len)) {
3554 6841da00 2019-08-08 stsp struct got_pathlist_head *ignorelist = pe->data;
3555 6841da00 2019-08-08 stsp struct got_pathlist_entry *pi;
3556 6841da00 2019-08-08 stsp TAILQ_FOREACH(pi, ignorelist, entry) {
3557 bd8de430 2019-10-04 stsp const char *pattern = pi->path;
3558 bd8de430 2019-10-04 stsp int flags = FNM_LEADING_DIR;
3559 bd8de430 2019-10-04 stsp if (strstr(pattern, "/**/") == NULL)
3560 bd8de430 2019-10-04 stsp flags |= FNM_PATHNAME;
3561 bd8de430 2019-10-04 stsp if (fnmatch(pattern, path, flags))
3562 6841da00 2019-08-08 stsp continue;
3563 6841da00 2019-08-08 stsp return 1;
3564 6841da00 2019-08-08 stsp }
3565 6841da00 2019-08-08 stsp }
3566 6841da00 2019-08-08 stsp pe = TAILQ_PREV(pe, got_pathlist_head, entry);
3567 6841da00 2019-08-08 stsp }
3568 6841da00 2019-08-08 stsp
3569 6841da00 2019-08-08 stsp return 0;
3570 6841da00 2019-08-08 stsp }
3571 6841da00 2019-08-08 stsp
3572 6841da00 2019-08-08 stsp static const struct got_error *
3573 b80270a7 2019-08-08 stsp add_ignores(struct got_pathlist_head *ignores, const char *root_path,
3574 886cec17 2019-12-15 stsp const char *path, int dirfd, const char *ignores_filename)
3575 6841da00 2019-08-08 stsp {
3576 6841da00 2019-08-08 stsp const struct got_error *err = NULL;
3577 6841da00 2019-08-08 stsp char *ignorespath;
3578 886cec17 2019-12-15 stsp int fd = -1;
3579 6841da00 2019-08-08 stsp FILE *ignoresfile = NULL;
3580 6841da00 2019-08-08 stsp
3581 bd8de430 2019-10-04 stsp if (asprintf(&ignorespath, "%s/%s%s%s", root_path, path,
3582 bd8de430 2019-10-04 stsp path[0] ? "/" : "", ignores_filename) == -1)
3583 6841da00 2019-08-08 stsp return got_error_from_errno("asprintf");
3584 6841da00 2019-08-08 stsp
3585 886cec17 2019-12-15 stsp if (dirfd != -1) {
3586 886cec17 2019-12-15 stsp fd = openat(dirfd, ignores_filename, O_RDONLY | O_NOFOLLOW);
3587 886cec17 2019-12-15 stsp if (fd == -1) {
3588 886cec17 2019-12-15 stsp if (errno != ENOENT && errno != EACCES)
3589 886cec17 2019-12-15 stsp err = got_error_from_errno2("openat",
3590 886cec17 2019-12-15 stsp ignorespath);
3591 886cec17 2019-12-15 stsp } else {
3592 886cec17 2019-12-15 stsp ignoresfile = fdopen(fd, "r");
3593 886cec17 2019-12-15 stsp if (ignoresfile == NULL)
3594 886cec17 2019-12-15 stsp err = got_error_from_errno2("fdopen",
3595 886cec17 2019-12-15 stsp ignorespath);
3596 886cec17 2019-12-15 stsp else {
3597 886cec17 2019-12-15 stsp fd = -1;
3598 886cec17 2019-12-15 stsp err = read_ignores(ignores, path, ignoresfile);
3599 886cec17 2019-12-15 stsp }
3600 886cec17 2019-12-15 stsp }
3601 886cec17 2019-12-15 stsp } else {
3602 886cec17 2019-12-15 stsp ignoresfile = fopen(ignorespath, "r");
3603 886cec17 2019-12-15 stsp if (ignoresfile == NULL) {
3604 886cec17 2019-12-15 stsp if (errno != ENOENT && errno != EACCES)
3605 886cec17 2019-12-15 stsp err = got_error_from_errno2("fopen",
3606 886cec17 2019-12-15 stsp ignorespath);
3607 886cec17 2019-12-15 stsp } else
3608 886cec17 2019-12-15 stsp err = read_ignores(ignores, path, ignoresfile);
3609 886cec17 2019-12-15 stsp }
3610 6841da00 2019-08-08 stsp
3611 6841da00 2019-08-08 stsp if (ignoresfile && fclose(ignoresfile) == EOF && err == NULL)
3612 4e68cba3 2019-11-23 stsp err = got_error_from_errno2("fclose", path);
3613 886cec17 2019-12-15 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
3614 886cec17 2019-12-15 stsp err = got_error_from_errno2("close", path);
3615 6841da00 2019-08-08 stsp free(ignorespath);
3616 6841da00 2019-08-08 stsp return err;
3617 f8d1f275 2019-02-04 stsp }
3618 f8d1f275 2019-02-04 stsp
3619 f8d1f275 2019-02-04 stsp static const struct got_error *
3620 7f91a133 2019-12-13 stsp status_new(void *arg, struct dirent *de, const char *parent_path, int dirfd)
3621 f8d1f275 2019-02-04 stsp {
3622 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
3623 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
3624 f8d1f275 2019-02-04 stsp char *path = NULL;
3625 f8d1f275 2019-02-04 stsp
3626 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3627 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
3628 0584f854 2019-04-06 stsp
3629 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
3630 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
3631 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3632 f8d1f275 2019-02-04 stsp } else {
3633 f8d1f275 2019-02-04 stsp path = de->d_name;
3634 f8d1f275 2019-02-04 stsp }
3635 f8d1f275 2019-02-04 stsp
3636 3143d852 2020-06-25 stsp if (de->d_type != DT_DIR &&
3637 3143d852 2020-06-25 stsp got_path_is_child(path, a->status_path, a->status_path_len)
3638 ff56836b 2021-07-08 stsp && !match_ignores(a->ignores, path))
3639 c577a9ce 2019-07-27 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED,
3640 12463d8b 2019-12-13 stsp GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3641 f8d1f275 2019-02-04 stsp if (parent_path[0])
3642 f8d1f275 2019-02-04 stsp free(path);
3643 b72f483a 2019-02-05 stsp return err;
3644 f8d1f275 2019-02-04 stsp }
3645 f8d1f275 2019-02-04 stsp
3646 347d1d3e 2019-07-12 stsp static const struct got_error *
3647 3143d852 2020-06-25 stsp status_traverse(void *arg, const char *path, int dirfd)
3648 3143d852 2020-06-25 stsp {
3649 3143d852 2020-06-25 stsp const struct got_error *err = NULL;
3650 3143d852 2020-06-25 stsp struct diff_dir_cb_arg *a = arg;
3651 3143d852 2020-06-25 stsp
3652 3143d852 2020-06-25 stsp if (a->no_ignores)
3653 3143d852 2020-06-25 stsp return NULL;
3654 3143d852 2020-06-25 stsp
3655 ff56836b 2021-07-08 stsp err = add_ignores(a->ignores, a->worktree->root_path,
3656 3143d852 2020-06-25 stsp path, dirfd, ".cvsignore");
3657 3143d852 2020-06-25 stsp if (err)
3658 3143d852 2020-06-25 stsp return err;
3659 3143d852 2020-06-25 stsp
3660 ff56836b 2021-07-08 stsp err = add_ignores(a->ignores, a->worktree->root_path, path,
3661 3143d852 2020-06-25 stsp dirfd, ".gitignore");
3662 3143d852 2020-06-25 stsp
3663 3143d852 2020-06-25 stsp return err;
3664 3143d852 2020-06-25 stsp }
3665 3143d852 2020-06-25 stsp
3666 3143d852 2020-06-25 stsp static const struct got_error *
3667 abb4604f 2019-07-27 stsp report_single_file_status(const char *path, const char *ondisk_path,
3668 ff56836b 2021-07-08 stsp struct got_fileindex *fileindex, got_worktree_status_cb status_cb,
3669 ff56836b 2021-07-08 stsp void *status_arg, struct got_repository *repo, int report_unchanged,
3670 0e33f8e0 2021-09-01 stsp struct got_pathlist_head *ignores, int no_ignores)
3671 abb4604f 2019-07-27 stsp {
3672 abb4604f 2019-07-27 stsp struct got_fileindex_entry *ie;
3673 abb4604f 2019-07-27 stsp struct stat sb;
3674 abb4604f 2019-07-27 stsp
3675 0e33f8e0 2021-09-01 stsp if (!no_ignores && match_ignores(ignores, path))
3676 ff56836b 2021-07-08 stsp return NULL;
3677 ff56836b 2021-07-08 stsp
3678 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(fileindex, path, strlen(path));
3679 abb4604f 2019-07-27 stsp if (ie)
3680 7f91a133 2019-12-13 stsp return report_file_status(ie, ondisk_path, -1, NULL,
3681 7f91a133 2019-12-13 stsp status_cb, status_arg, repo, report_unchanged);
3682 abb4604f 2019-07-27 stsp
3683 abb4604f 2019-07-27 stsp if (lstat(ondisk_path, &sb) == -1) {
3684 abb4604f 2019-07-27 stsp if (errno != ENOENT)
3685 abb4604f 2019-07-27 stsp return got_error_from_errno2("lstat", ondisk_path);
3686 2a06fe5f 2019-08-24 stsp return (*status_cb)(status_arg, GOT_STATUS_NONEXISTENT,
3687 12463d8b 2019-12-13 stsp GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3688 abb4604f 2019-07-27 stsp return NULL;
3689 abb4604f 2019-07-27 stsp }
3690 abb4604f 2019-07-27 stsp
3691 00bb5ea0 2020-07-23 stsp if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode))
3692 88d0e355 2019-08-03 stsp return (*status_cb)(status_arg, GOT_STATUS_UNVERSIONED,
3693 12463d8b 2019-12-13 stsp GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3694 abb4604f 2019-07-27 stsp
3695 abb4604f 2019-07-27 stsp return NULL;
3696 3143d852 2020-06-25 stsp }
3697 3143d852 2020-06-25 stsp
3698 3143d852 2020-06-25 stsp static const struct got_error *
3699 3143d852 2020-06-25 stsp add_ignores_from_parent_paths(struct got_pathlist_head *ignores,
3700 3143d852 2020-06-25 stsp const char *root_path, const char *path)
3701 3143d852 2020-06-25 stsp {
3702 3143d852 2020-06-25 stsp const struct got_error *err;
3703 b737c85a 2020-06-26 stsp char *parent_path, *next_parent_path = NULL;
3704 3143d852 2020-06-25 stsp
3705 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, "", -1,
3706 3143d852 2020-06-25 stsp ".cvsignore");
3707 3143d852 2020-06-25 stsp if (err)
3708 3143d852 2020-06-25 stsp return err;
3709 3143d852 2020-06-25 stsp
3710 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, "", -1,
3711 3143d852 2020-06-25 stsp ".gitignore");
3712 3143d852 2020-06-25 stsp if (err)
3713 3143d852 2020-06-25 stsp return err;
3714 3143d852 2020-06-25 stsp
3715 3143d852 2020-06-25 stsp err = got_path_dirname(&parent_path, path);
3716 3143d852 2020-06-25 stsp if (err) {
3717 3143d852 2020-06-25 stsp if (err->code == GOT_ERR_BAD_PATH)
3718 3143d852 2020-06-25 stsp return NULL; /* cannot traverse parent */
3719 3143d852 2020-06-25 stsp return err;
3720 3143d852 2020-06-25 stsp }
3721 3143d852 2020-06-25 stsp for (;;) {
3722 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, parent_path, -1,
3723 3143d852 2020-06-25 stsp ".cvsignore");
3724 3143d852 2020-06-25 stsp if (err)
3725 3143d852 2020-06-25 stsp break;
3726 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, parent_path, -1,
3727 3143d852 2020-06-25 stsp ".gitignore");
3728 3143d852 2020-06-25 stsp if (err)
3729 3143d852 2020-06-25 stsp break;
3730 3143d852 2020-06-25 stsp err = got_path_dirname(&next_parent_path, parent_path);
3731 3143d852 2020-06-25 stsp if (err) {
3732 b737c85a 2020-06-26 stsp if (err->code == GOT_ERR_BAD_PATH)
3733 b737c85a 2020-06-26 stsp err = NULL; /* traversed everything */
3734 3143d852 2020-06-25 stsp break;
3735 3143d852 2020-06-25 stsp }
3736 ff56836b 2021-07-08 stsp if (got_path_is_root_dir(parent_path))
3737 ff56836b 2021-07-08 stsp break;
3738 b737c85a 2020-06-26 stsp free(parent_path);
3739 b737c85a 2020-06-26 stsp parent_path = next_parent_path;
3740 b737c85a 2020-06-26 stsp next_parent_path = NULL;
3741 3143d852 2020-06-25 stsp }
3742 3143d852 2020-06-25 stsp
3743 b737c85a 2020-06-26 stsp free(parent_path);
3744 b737c85a 2020-06-26 stsp free(next_parent_path);
3745 3143d852 2020-06-25 stsp return err;
3746 abb4604f 2019-07-27 stsp }
3747 abb4604f 2019-07-27 stsp
3748 abb4604f 2019-07-27 stsp static const struct got_error *
3749 347d1d3e 2019-07-12 stsp worktree_status(struct got_worktree *worktree, const char *path,
3750 347d1d3e 2019-07-12 stsp struct got_fileindex *fileindex, struct got_repository *repo,
3751 347d1d3e 2019-07-12 stsp got_worktree_status_cb status_cb, void *status_arg,
3752 f2a9dc41 2019-12-13 tracey got_cancel_cb cancel_cb, void *cancel_arg, int no_ignores,
3753 f2a9dc41 2019-12-13 tracey int report_unchanged)
3754 f8d1f275 2019-02-04 stsp {
3755 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
3756 6fc93f37 2019-12-13 stsp int fd = -1;
3757 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
3758 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
3759 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
3760 ff56836b 2021-07-08 stsp struct got_pathlist_head ignores;
3761 3143d852 2020-06-25 stsp
3762 ff56836b 2021-07-08 stsp TAILQ_INIT(&ignores);
3763 f8d1f275 2019-02-04 stsp
3764 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
3765 8dc303cc 2019-07-27 stsp worktree->root_path, path[0] ? "/" : "", path) == -1)
3766 8dc303cc 2019-07-27 stsp return got_error_from_errno("asprintf");
3767 8dc303cc 2019-07-27 stsp
3768 6fc93f37 2019-12-13 stsp fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_DIRECTORY);
3769 6fc93f37 2019-12-13 stsp if (fd == -1) {
3770 00bb5ea0 2020-07-23 stsp if (errno != ENOTDIR && errno != ENOENT && errno != EACCES &&
3771 5c02d2a5 2021-09-26 stsp !got_err_open_nofollow_on_symlink())
3772 6fc93f37 2019-12-13 stsp err = got_error_from_errno2("open", ondisk_path);
3773 ff56836b 2021-07-08 stsp else {
3774 ff56836b 2021-07-08 stsp if (!no_ignores) {
3775 ff56836b 2021-07-08 stsp err = add_ignores_from_parent_paths(&ignores,
3776 ff56836b 2021-07-08 stsp worktree->root_path, ondisk_path);
3777 ff56836b 2021-07-08 stsp if (err)
3778 ff56836b 2021-07-08 stsp goto done;
3779 ff56836b 2021-07-08 stsp }
3780 abb4604f 2019-07-27 stsp err = report_single_file_status(path, ondisk_path,
3781 f2a9dc41 2019-12-13 tracey fileindex, status_cb, status_arg, repo,
3782 0e33f8e0 2021-09-01 stsp report_unchanged, &ignores, no_ignores);
3783 ff56836b 2021-07-08 stsp }
3784 abb4604f 2019-07-27 stsp } else {
3785 abb4604f 2019-07-27 stsp fdiff_cb.diff_old_new = status_old_new;
3786 abb4604f 2019-07-27 stsp fdiff_cb.diff_old = status_old;
3787 abb4604f 2019-07-27 stsp fdiff_cb.diff_new = status_new;
3788 3143d852 2020-06-25 stsp fdiff_cb.diff_traverse = status_traverse;
3789 abb4604f 2019-07-27 stsp arg.fileindex = fileindex;
3790 abb4604f 2019-07-27 stsp arg.worktree = worktree;
3791 abb4604f 2019-07-27 stsp arg.status_path = path;
3792 abb4604f 2019-07-27 stsp arg.status_path_len = strlen(path);
3793 abb4604f 2019-07-27 stsp arg.repo = repo;
3794 abb4604f 2019-07-27 stsp arg.status_cb = status_cb;
3795 abb4604f 2019-07-27 stsp arg.status_arg = status_arg;
3796 abb4604f 2019-07-27 stsp arg.cancel_cb = cancel_cb;
3797 abb4604f 2019-07-27 stsp arg.cancel_arg = cancel_arg;
3798 f2a9dc41 2019-12-13 tracey arg.report_unchanged = report_unchanged;
3799 3143d852 2020-06-25 stsp arg.no_ignores = no_ignores;
3800 022fae89 2019-12-06 tracey if (!no_ignores) {
3801 ff56836b 2021-07-08 stsp err = add_ignores_from_parent_paths(&ignores,
3802 3143d852 2020-06-25 stsp worktree->root_path, path);
3803 3143d852 2020-06-25 stsp if (err)
3804 3143d852 2020-06-25 stsp goto done;
3805 022fae89 2019-12-06 tracey }
3806 ff56836b 2021-07-08 stsp arg.ignores = &ignores;
3807 3143d852 2020-06-25 stsp err = got_fileindex_diff_dir(fileindex, fd,
3808 3143d852 2020-06-25 stsp worktree->root_path, path, repo, &fdiff_cb, &arg);
3809 927df6b7 2019-02-10 stsp }
3810 3143d852 2020-06-25 stsp done:
3811 ff56836b 2021-07-08 stsp free_ignores(&ignores);
3812 08578a35 2021-01-22 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
3813 6fc93f37 2019-12-13 stsp err = got_error_from_errno("close");
3814 927df6b7 2019-02-10 stsp free(ondisk_path);
3815 347d1d3e 2019-07-12 stsp return err;
3816 347d1d3e 2019-07-12 stsp }
3817 347d1d3e 2019-07-12 stsp
3818 347d1d3e 2019-07-12 stsp const struct got_error *
3819 72ea6654 2019-07-27 stsp got_worktree_status(struct got_worktree *worktree,
3820 72ea6654 2019-07-27 stsp struct got_pathlist_head *paths, struct got_repository *repo,
3821 f6343036 2021-06-22 stsp int no_ignores, got_worktree_status_cb status_cb, void *status_arg,
3822 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
3823 347d1d3e 2019-07-12 stsp {
3824 347d1d3e 2019-07-12 stsp const struct got_error *err = NULL;
3825 347d1d3e 2019-07-12 stsp char *fileindex_path = NULL;
3826 347d1d3e 2019-07-12 stsp struct got_fileindex *fileindex = NULL;
3827 72ea6654 2019-07-27 stsp struct got_pathlist_entry *pe;
3828 347d1d3e 2019-07-12 stsp
3829 347d1d3e 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3830 347d1d3e 2019-07-12 stsp if (err)
3831 347d1d3e 2019-07-12 stsp return err;
3832 347d1d3e 2019-07-12 stsp
3833 72ea6654 2019-07-27 stsp TAILQ_FOREACH(pe, paths, entry) {
3834 72ea6654 2019-07-27 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
3835 f6343036 2021-06-22 stsp status_cb, status_arg, cancel_cb, cancel_arg,
3836 f6343036 2021-06-22 stsp no_ignores, 0);
3837 72ea6654 2019-07-27 stsp if (err)
3838 72ea6654 2019-07-27 stsp break;
3839 72ea6654 2019-07-27 stsp }
3840 f8d1f275 2019-02-04 stsp free(fileindex_path);
3841 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
3842 f8d1f275 2019-02-04 stsp return err;
3843 f8d1f275 2019-02-04 stsp }
3844 6c7ab921 2019-03-18 stsp
3845 6c7ab921 2019-03-18 stsp const struct got_error *
3846 6c7ab921 2019-03-18 stsp got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
3847 6c7ab921 2019-03-18 stsp const char *arg)
3848 6c7ab921 2019-03-18 stsp {
3849 6c7ab921 2019-03-18 stsp const struct got_error *err = NULL;
3850 00bb5ea0 2020-07-23 stsp char *resolved = NULL, *cwd = NULL, *path = NULL;
3851 6c7ab921 2019-03-18 stsp size_t len;
3852 00bb5ea0 2020-07-23 stsp struct stat sb;
3853 01740607 2020-11-04 stsp char *abspath = NULL;
3854 01740607 2020-11-04 stsp char canonpath[PATH_MAX];
3855 6c7ab921 2019-03-18 stsp
3856 6c7ab921 2019-03-18 stsp *wt_path = NULL;
3857 6c7ab921 2019-03-18 stsp
3858 00bb5ea0 2020-07-23 stsp cwd = getcwd(NULL, 0);
3859 00bb5ea0 2020-07-23 stsp if (cwd == NULL)
3860 00bb5ea0 2020-07-23 stsp return got_error_from_errno("getcwd");
3861 00bb5ea0 2020-07-23 stsp
3862 00bb5ea0 2020-07-23 stsp if (lstat(arg, &sb) == -1) {
3863 00bb5ea0 2020-07-23 stsp if (errno != ENOENT) {
3864 00bb5ea0 2020-07-23 stsp err = got_error_from_errno2("lstat", arg);
3865 00bb5ea0 2020-07-23 stsp goto done;
3866 00bb5ea0 2020-07-23 stsp }
3867 727173c3 2020-11-06 stsp sb.st_mode = 0;
3868 00bb5ea0 2020-07-23 stsp }
3869 00bb5ea0 2020-07-23 stsp if (S_ISLNK(sb.st_mode)) {
3870 00bb5ea0 2020-07-23 stsp /*
3871 00bb5ea0 2020-07-23 stsp * We cannot use realpath(3) with symlinks since we want to
3872 00bb5ea0 2020-07-23 stsp * operate on the symlink itself.
3873 00bb5ea0 2020-07-23 stsp * But we can make the path absolute, assuming it is relative
3874 00bb5ea0 2020-07-23 stsp * to the current working directory, and then canonicalize it.
3875 00bb5ea0 2020-07-23 stsp */
3876 00bb5ea0 2020-07-23 stsp if (!got_path_is_absolute(arg)) {
3877 00bb5ea0 2020-07-23 stsp if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3878 00bb5ea0 2020-07-23 stsp err = got_error_from_errno("asprintf");
3879 00bb5ea0 2020-07-23 stsp goto done;
3880 00bb5ea0 2020-07-23 stsp }
3881 00bb5ea0 2020-07-23 stsp
3882 00bb5ea0 2020-07-23 stsp }
3883 00bb5ea0 2020-07-23 stsp err = got_canonpath(abspath ? abspath : arg, canonpath,
3884 00bb5ea0 2020-07-23 stsp sizeof(canonpath));
3885 00bb5ea0 2020-07-23 stsp if (err)
3886 d0710d08 2019-07-22 stsp goto done;
3887 00bb5ea0 2020-07-23 stsp resolved = strdup(canonpath);
3888 00bb5ea0 2020-07-23 stsp if (resolved == NULL) {
3889 00bb5ea0 2020-07-23 stsp err = got_error_from_errno("strdup");
3890 00bb5ea0 2020-07-23 stsp goto done;
3891 00bb5ea0 2020-07-23 stsp }
3892 00bb5ea0 2020-07-23 stsp } else {
3893 00bb5ea0 2020-07-23 stsp resolved = realpath(arg, NULL);
3894 00bb5ea0 2020-07-23 stsp if (resolved == NULL) {
3895 00bb5ea0 2020-07-23 stsp if (errno != ENOENT) {
3896 00bb5ea0 2020-07-23 stsp err = got_error_from_errno2("realpath", arg);
3897 00bb5ea0 2020-07-23 stsp goto done;
3898 00bb5ea0 2020-07-23 stsp }
3899 01740607 2020-11-04 stsp if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3900 00bb5ea0 2020-07-23 stsp err = got_error_from_errno("asprintf");
3901 01740607 2020-11-04 stsp goto done;
3902 01740607 2020-11-04 stsp }
3903 01740607 2020-11-04 stsp err = got_canonpath(abspath, canonpath,
3904 01740607 2020-11-04 stsp sizeof(canonpath));
3905 01740607 2020-11-04 stsp if (err)
3906 00bb5ea0 2020-07-23 stsp goto done;
3907 01740607 2020-11-04 stsp resolved = strdup(canonpath);
3908 01740607 2020-11-04 stsp if (resolved == NULL) {
3909 01740607 2020-11-04 stsp err = got_error_from_errno("strdup");
3910 01740607 2020-11-04 stsp goto done;
3911 00bb5ea0 2020-07-23 stsp }
3912 d0710d08 2019-07-22 stsp }
3913 d0710d08 2019-07-22 stsp }
3914 6c7ab921 2019-03-18 stsp
3915 6c7ab921 2019-03-18 stsp if (strncmp(got_worktree_get_root_path(worktree), resolved,
3916 6c7ab921 2019-03-18 stsp strlen(got_worktree_get_root_path(worktree)))) {
3917 63f810e6 2020-02-29 stsp err = got_error_path(resolved, GOT_ERR_BAD_PATH);
3918 6c7ab921 2019-03-18 stsp goto done;
3919 6c7ab921 2019-03-18 stsp }
3920 6c7ab921 2019-03-18 stsp
3921 f6d88e1a 2019-05-29 stsp if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
3922 f6d88e1a 2019-05-29 stsp err = got_path_skip_common_ancestor(&path,
3923 f6d88e1a 2019-05-29 stsp got_worktree_get_root_path(worktree), resolved);
3924 f6d88e1a 2019-05-29 stsp if (err)
3925 f6d88e1a 2019-05-29 stsp goto done;
3926 f6d88e1a 2019-05-29 stsp } else {
3927 f6d88e1a 2019-05-29 stsp path = strdup("");
3928 f6d88e1a 2019-05-29 stsp if (path == NULL) {
3929 f6d88e1a 2019-05-29 stsp err = got_error_from_errno("strdup");
3930 f6d88e1a 2019-05-29 stsp goto done;
3931 f6d88e1a 2019-05-29 stsp }
3932 6c7ab921 2019-03-18 stsp }
3933 6c7ab921 2019-03-18 stsp
3934 6c7ab921 2019-03-18 stsp /* XXX status walk can't deal with trailing slash! */
3935 6c7ab921 2019-03-18 stsp len = strlen(path);
3936 3f17dee4 2019-07-27 stsp while (len > 0 && path[len - 1] == '/') {
3937 6c7ab921 2019-03-18 stsp path[len - 1] = '\0';
3938 6c7ab921 2019-03-18 stsp len--;
3939 6c7ab921 2019-03-18 stsp }
3940 6c7ab921 2019-03-18 stsp done:
3941 01740607 2020-11-04 stsp free(abspath);
3942 6c7ab921 2019-03-18 stsp free(resolved);
3943 d0710d08 2019-07-22 stsp free(cwd);
3944 6c7ab921 2019-03-18 stsp if (err == NULL)
3945 6c7ab921 2019-03-18 stsp *wt_path = path;
3946 6c7ab921 2019-03-18 stsp else
3947 6c7ab921 2019-03-18 stsp free(path);
3948 d00136be 2019-03-26 stsp return err;
3949 d00136be 2019-03-26 stsp }
3950 d00136be 2019-03-26 stsp
3951 4e68cba3 2019-11-23 stsp struct schedule_addition_args {
3952 4e68cba3 2019-11-23 stsp struct got_worktree *worktree;
3953 4e68cba3 2019-11-23 stsp struct got_fileindex *fileindex;
3954 4e68cba3 2019-11-23 stsp got_worktree_checkout_cb progress_cb;
3955 4e68cba3 2019-11-23 stsp void *progress_arg;
3956 4e68cba3 2019-11-23 stsp struct got_repository *repo;
3957 4e68cba3 2019-11-23 stsp };
3958 4e68cba3 2019-11-23 stsp
3959 4e68cba3 2019-11-23 stsp static const struct got_error *
3960 4e68cba3 2019-11-23 stsp schedule_addition(void *arg, unsigned char status, unsigned char staged_status,
3961 4e68cba3 2019-11-23 stsp const char *relpath, struct got_object_id *blob_id,
3962 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
3963 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
3964 07f5b47a 2019-06-02 stsp {
3965 4e68cba3 2019-11-23 stsp struct schedule_addition_args *a = arg;
3966 07f5b47a 2019-06-02 stsp const struct got_error *err = NULL;
3967 07f5b47a 2019-06-02 stsp struct got_fileindex_entry *ie;
3968 6d022e97 2019-08-04 stsp struct stat sb;
3969 dbb83fbd 2019-12-12 stsp char *ondisk_path;
3970 07f5b47a 2019-06-02 stsp
3971 dbb83fbd 2019-12-12 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3972 dbb83fbd 2019-12-12 stsp relpath) == -1)
3973 dbb83fbd 2019-12-12 stsp return got_error_from_errno("asprintf");
3974 dbb83fbd 2019-12-12 stsp
3975 4e68cba3 2019-11-23 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3976 6d022e97 2019-08-04 stsp if (ie) {
3977 12463d8b 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, dirfd,
3978 12463d8b 2019-12-13 stsp de_name, a->repo);
3979 6d022e97 2019-08-04 stsp if (err)
3980 dbb83fbd 2019-12-12 stsp goto done;
3981 6d022e97 2019-08-04 stsp /* Re-adding an existing entry is a no-op. */
3982 6d022e97 2019-08-04 stsp if (status == GOT_STATUS_ADD)
3983 dbb83fbd 2019-12-12 stsp goto done;
3984 dbb83fbd 2019-12-12 stsp err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
3985 dbb83fbd 2019-12-12 stsp if (err)
3986 dbb83fbd 2019-12-12 stsp goto done;
3987 6d022e97 2019-08-04 stsp }
3988 07f5b47a 2019-06-02 stsp
3989 dbb83fbd 2019-12-12 stsp if (status != GOT_STATUS_UNVERSIONED) {
3990 dbb83fbd 2019-12-12 stsp err = got_error_path(ondisk_path, GOT_ERR_FILE_STATUS);
3991 dbb83fbd 2019-12-12 stsp goto done;
3992 4e68cba3 2019-11-23 stsp }
3993 07f5b47a 2019-06-02 stsp
3994 3969253a 2020-03-07 stsp err = got_fileindex_entry_alloc(&ie, relpath);
3995 4e68cba3 2019-11-23 stsp if (err)
3996 4e68cba3 2019-11-23 stsp goto done;
3997 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, a->worktree->root_fd,
3998 437adc9d 2020-12-10 yzhong relpath, NULL, NULL, 1);
3999 3969253a 2020-03-07 stsp if (err) {
4000 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
4001 3969253a 2020-03-07 stsp goto done;
4002 3969253a 2020-03-07 stsp }
4003 4e68cba3 2019-11-23 stsp err = got_fileindex_entry_add(a->fileindex, ie);
4004 07f5b47a 2019-06-02 stsp if (err) {
4005 07f5b47a 2019-06-02 stsp got_fileindex_entry_free(ie);
4006 4e68cba3 2019-11-23 stsp goto done;
4007 07f5b47a 2019-06-02 stsp }
4008 4e68cba3 2019-11-23 stsp done:
4009 dbb83fbd 2019-12-12 stsp free(ondisk_path);
4010 dbb83fbd 2019-12-12 stsp if (err)
4011 dbb83fbd 2019-12-12 stsp return err;
4012 dbb83fbd 2019-12-12 stsp if (status == GOT_STATUS_ADD)
4013 dbb83fbd 2019-12-12 stsp return NULL;
4014 dbb83fbd 2019-12-12 stsp return (*a->progress_cb)(a->progress_arg, GOT_STATUS_ADD, relpath);
4015 07f5b47a 2019-06-02 stsp }
4016 07f5b47a 2019-06-02 stsp
4017 d00136be 2019-03-26 stsp const struct got_error *
4018 031a5338 2019-03-26 stsp got_worktree_schedule_add(struct got_worktree *worktree,
4019 6d022e97 2019-08-04 stsp struct got_pathlist_head *paths,
4020 4e68cba3 2019-11-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
4021 022fae89 2019-12-06 tracey struct got_repository *repo, int no_ignores)
4022 d00136be 2019-03-26 stsp {
4023 d00136be 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
4024 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
4025 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
4026 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
4027 4e68cba3 2019-11-23 stsp struct schedule_addition_args saa;
4028 d00136be 2019-03-26 stsp
4029 d00136be 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
4030 d00136be 2019-03-26 stsp if (err)
4031 d00136be 2019-03-26 stsp return err;
4032 d00136be 2019-03-26 stsp
4033 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
4034 d00136be 2019-03-26 stsp if (err)
4035 d00136be 2019-03-26 stsp goto done;
4036 d00136be 2019-03-26 stsp
4037 4e68cba3 2019-11-23 stsp saa.worktree = worktree;
4038 4e68cba3 2019-11-23 stsp saa.fileindex = fileindex;
4039 4e68cba3 2019-11-23 stsp saa.progress_cb = progress_cb;
4040 4e68cba3 2019-11-23 stsp saa.progress_arg = progress_arg;
4041 4e68cba3 2019-11-23 stsp saa.repo = repo;
4042 4e68cba3 2019-11-23 stsp
4043 6d022e97 2019-08-04 stsp TAILQ_FOREACH(pe, paths, entry) {
4044 4e68cba3 2019-11-23 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
4045 f2a9dc41 2019-12-13 tracey schedule_addition, &saa, NULL, NULL, no_ignores, 0);
4046 1dd54920 2019-05-11 stsp if (err)
4047 af12c6b9 2019-06-04 stsp break;
4048 1dd54920 2019-05-11 stsp }
4049 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4050 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
4051 af12c6b9 2019-06-04 stsp err = sync_err;
4052 d00136be 2019-03-26 stsp done:
4053 fb399478 2019-07-12 stsp free(fileindex_path);
4054 d00136be 2019-03-26 stsp if (fileindex)
4055 d00136be 2019-03-26 stsp got_fileindex_free(fileindex);
4056 d00136be 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4057 d00136be 2019-03-26 stsp if (unlockerr && err == NULL)
4058 d00136be 2019-03-26 stsp err = unlockerr;
4059 6c7ab921 2019-03-18 stsp return err;
4060 6c7ab921 2019-03-18 stsp }
4061 17ed4618 2019-06-02 stsp
4062 f2a9dc41 2019-12-13 tracey struct schedule_deletion_args {
4063 f2a9dc41 2019-12-13 tracey struct got_worktree *worktree;
4064 f2a9dc41 2019-12-13 tracey struct got_fileindex *fileindex;
4065 f2a9dc41 2019-12-13 tracey got_worktree_delete_cb progress_cb;
4066 f2a9dc41 2019-12-13 tracey void *progress_arg;
4067 f2a9dc41 2019-12-13 tracey struct got_repository *repo;
4068 f2a9dc41 2019-12-13 tracey int delete_local_mods;
4069 70e3e7f5 2019-12-13 tracey int keep_on_disk;
4070 766841c2 2020-08-13 stsp const char *status_codes;
4071 f2a9dc41 2019-12-13 tracey };
4072 f2a9dc41 2019-12-13 tracey
4073 f2a9dc41 2019-12-13 tracey static const struct got_error *
4074 f2a9dc41 2019-12-13 tracey schedule_for_deletion(void *arg, unsigned char status,
4075 f2a9dc41 2019-12-13 tracey unsigned char staged_status, const char *relpath,
4076 f2a9dc41 2019-12-13 tracey struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
4077 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
4078 17ed4618 2019-06-02 stsp {
4079 f2a9dc41 2019-12-13 tracey struct schedule_deletion_args *a = arg;
4080 17ed4618 2019-06-02 stsp const struct got_error *err = NULL;
4081 17ed4618 2019-06-02 stsp struct got_fileindex_entry *ie = NULL;
4082 17ed4618 2019-06-02 stsp struct stat sb;
4083 20a2ad1c 2020-10-20 stsp char *ondisk_path;
4084 17ed4618 2019-06-02 stsp
4085 f2a9dc41 2019-12-13 tracey ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
4086 17ed4618 2019-06-02 stsp if (ie == NULL)
4087 63f810e6 2020-02-29 stsp return got_error_path(relpath, GOT_ERR_BAD_PATH);
4088 2ec1f75b 2019-03-26 stsp
4089 9acbc4fa 2019-08-03 stsp staged_status = get_staged_status(ie);
4090 9acbc4fa 2019-08-03 stsp if (staged_status != GOT_STATUS_NO_CHANGE) {
4091 9acbc4fa 2019-08-03 stsp if (staged_status == GOT_STATUS_DELETE)
4092 9acbc4fa 2019-08-03 stsp return NULL;
4093 9acbc4fa 2019-08-03 stsp return got_error_path(relpath, GOT_ERR_FILE_STAGED);
4094 9acbc4fa 2019-08-03 stsp }
4095 9acbc4fa 2019-08-03 stsp
4096 f2a9dc41 2019-12-13 tracey if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
4097 f2a9dc41 2019-12-13 tracey relpath) == -1)
4098 f2a9dc41 2019-12-13 tracey return got_error_from_errno("asprintf");
4099 f2a9dc41 2019-12-13 tracey
4100 12463d8b 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, dirfd, de_name,
4101 12463d8b 2019-12-13 stsp a->repo);
4102 17ed4618 2019-06-02 stsp if (err)
4103 f2a9dc41 2019-12-13 tracey goto done;
4104 17ed4618 2019-06-02 stsp
4105 766841c2 2020-08-13 stsp if (a->status_codes) {
4106 766841c2 2020-08-13 stsp size_t ncodes = strlen(a->status_codes);
4107 766841c2 2020-08-13 stsp int i;
4108 766841c2 2020-08-13 stsp for (i = 0; i < ncodes ; i++) {
4109 766841c2 2020-08-13 stsp if (status == a->status_codes[i])
4110 766841c2 2020-08-13 stsp break;
4111 766841c2 2020-08-13 stsp }
4112 766841c2 2020-08-13 stsp if (i == ncodes) {
4113 766841c2 2020-08-13 stsp /* Do not delete files in non-matching status. */
4114 766841c2 2020-08-13 stsp free(ondisk_path);
4115 766841c2 2020-08-13 stsp return NULL;
4116 766841c2 2020-08-13 stsp }
4117 766841c2 2020-08-13 stsp if (a->status_codes[i] != GOT_STATUS_MODIFY &&
4118 766841c2 2020-08-13 stsp a->status_codes[i] != GOT_STATUS_MISSING) {
4119 766841c2 2020-08-13 stsp static char msg[64];
4120 766841c2 2020-08-13 stsp snprintf(msg, sizeof(msg),
4121 766841c2 2020-08-13 stsp "invalid status code '%c'", a->status_codes[i]);
4122 766841c2 2020-08-13 stsp err = got_error_msg(GOT_ERR_FILE_STATUS, msg);
4123 766841c2 2020-08-13 stsp goto done;
4124 766841c2 2020-08-13 stsp }
4125 766841c2 2020-08-13 stsp }
4126 766841c2 2020-08-13 stsp
4127 17ed4618 2019-06-02 stsp if (status != GOT_STATUS_NO_CHANGE) {
4128 17ed4618 2019-06-02 stsp if (status == GOT_STATUS_DELETE)
4129 f2a9dc41 2019-12-13 tracey goto done;
4130 f2a9dc41 2019-12-13 tracey if (status == GOT_STATUS_MODIFY && !a->delete_local_mods) {
4131 f2a9dc41 2019-12-13 tracey err = got_error_path(relpath, GOT_ERR_FILE_MODIFIED);
4132 f2a9dc41 2019-12-13 tracey goto done;
4133 f2a9dc41 2019-12-13 tracey }
4134 f2a9dc41 2019-12-13 tracey if (status != GOT_STATUS_MODIFY &&
4135 f2a9dc41 2019-12-13 tracey status != GOT_STATUS_MISSING) {
4136 f2a9dc41 2019-12-13 tracey err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
4137 f2a9dc41 2019-12-13 tracey goto done;
4138 f2a9dc41 2019-12-13 tracey }
4139 17ed4618 2019-06-02 stsp }
4140 17ed4618 2019-06-02 stsp
4141 70e3e7f5 2019-12-13 tracey if (!a->keep_on_disk && status != GOT_STATUS_MISSING) {
4142 20a2ad1c 2020-10-20 stsp size_t root_len;
4143 20a2ad1c 2020-10-20 stsp
4144 12463d8b 2019-12-13 stsp if (dirfd != -1) {
4145 12463d8b 2019-12-13 stsp if (unlinkat(dirfd, de_name, 0) != 0) {
4146 12463d8b 2019-12-13 stsp err = got_error_from_errno2("unlinkat",
4147 12463d8b 2019-12-13 stsp ondisk_path);
4148 12463d8b 2019-12-13 stsp goto done;
4149 12463d8b 2019-12-13 stsp }
4150 12463d8b 2019-12-13 stsp } else if (unlink(ondisk_path) != 0) {
4151 12463d8b 2019-12-13 stsp err = got_error_from_errno2("unlink", ondisk_path);
4152 12463d8b 2019-12-13 stsp goto done;
4153 15341bfd 2020-03-05 tracey }
4154 15341bfd 2020-03-05 tracey
4155 20a2ad1c 2020-10-20 stsp root_len = strlen(a->worktree->root_path);
4156 20a2ad1c 2020-10-20 stsp do {
4157 20a2ad1c 2020-10-20 stsp char *parent;
4158 20a2ad1c 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
4159 20a2ad1c 2020-10-20 stsp if (err)
4160 2513f20a 2020-10-20 stsp goto done;
4161 20a2ad1c 2020-10-20 stsp free(ondisk_path);
4162 20a2ad1c 2020-10-20 stsp ondisk_path = parent;
4163 20a2ad1c 2020-10-20 stsp if (rmdir(ondisk_path) == -1) {
4164 15341bfd 2020-03-05 tracey if (errno != ENOTEMPTY)
4165 15341bfd 2020-03-05 tracey err = got_error_from_errno2("rmdir",
4166 20a2ad1c 2020-10-20 stsp ondisk_path);
4167 15341bfd 2020-03-05 tracey break;
4168 15341bfd 2020-03-05 tracey }
4169 20a2ad1c 2020-10-20 stsp } while (got_path_cmp(ondisk_path, a->worktree->root_path,
4170 20a2ad1c 2020-10-20 stsp strlen(ondisk_path), root_len) != 0);
4171 f2a9dc41 2019-12-13 tracey }
4172 17ed4618 2019-06-02 stsp
4173 17ed4618 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
4174 f2a9dc41 2019-12-13 tracey done:
4175 f2a9dc41 2019-12-13 tracey free(ondisk_path);
4176 f2a9dc41 2019-12-13 tracey if (err)
4177 f2a9dc41 2019-12-13 tracey return err;
4178 f2a9dc41 2019-12-13 tracey if (status == GOT_STATUS_DELETE)
4179 f2a9dc41 2019-12-13 tracey return NULL;
4180 f2a9dc41 2019-12-13 tracey return (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
4181 f2a9dc41 2019-12-13 tracey staged_status, relpath);
4182 17ed4618 2019-06-02 stsp }
4183 17ed4618 2019-06-02 stsp
4184 2ec1f75b 2019-03-26 stsp const struct got_error *
4185 2ec1f75b 2019-03-26 stsp got_worktree_schedule_delete(struct got_worktree *worktree,
4186 6d022e97 2019-08-04 stsp struct got_pathlist_head *paths, int delete_local_mods,
4187 766841c2 2020-08-13 stsp const char *status_codes,
4188 f2a9dc41 2019-12-13 tracey got_worktree_delete_cb progress_cb, void *progress_arg,
4189 70e3e7f5 2019-12-13 tracey struct got_repository *repo, int keep_on_disk)
4190 2ec1f75b 2019-03-26 stsp {
4191 2ec1f75b 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
4192 17ed4618 2019-06-02 stsp char *fileindex_path = NULL;
4193 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
4194 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
4195 f2a9dc41 2019-12-13 tracey struct schedule_deletion_args sda;
4196 2ec1f75b 2019-03-26 stsp
4197 2ec1f75b 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
4198 2ec1f75b 2019-03-26 stsp if (err)
4199 2ec1f75b 2019-03-26 stsp return err;
4200 2ec1f75b 2019-03-26 stsp
4201 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
4202 2ec1f75b 2019-03-26 stsp if (err)
4203 2ec1f75b 2019-03-26 stsp goto done;
4204 f2a9dc41 2019-12-13 tracey
4205 f2a9dc41 2019-12-13 tracey sda.worktree = worktree;
4206 f2a9dc41 2019-12-13 tracey sda.fileindex = fileindex;
4207 f2a9dc41 2019-12-13 tracey sda.progress_cb = progress_cb;
4208 f2a9dc41 2019-12-13 tracey sda.progress_arg = progress_arg;
4209 f2a9dc41 2019-12-13 tracey sda.repo = repo;
4210 f2a9dc41 2019-12-13 tracey sda.delete_local_mods = delete_local_mods;
4211 70e3e7f5 2019-12-13 tracey sda.keep_on_disk = keep_on_disk;
4212 766841c2 2020-08-13 stsp sda.status_codes = status_codes;
4213 2ec1f75b 2019-03-26 stsp
4214 6d022e97 2019-08-04 stsp TAILQ_FOREACH(pe, paths, entry) {
4215 f2a9dc41 2019-12-13 tracey err = worktree_status(worktree, pe->path, fileindex, repo,
4216 f2a9dc41 2019-12-13 tracey schedule_for_deletion, &sda, NULL, NULL, 0, 1);
4217 17ed4618 2019-06-02 stsp if (err)
4218 af12c6b9 2019-06-04 stsp break;
4219 2ec1f75b 2019-03-26 stsp }
4220 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4221 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
4222 af12c6b9 2019-06-04 stsp err = sync_err;
4223 2ec1f75b 2019-03-26 stsp done:
4224 fb399478 2019-07-12 stsp free(fileindex_path);
4225 2ec1f75b 2019-03-26 stsp if (fileindex)
4226 2ec1f75b 2019-03-26 stsp got_fileindex_free(fileindex);
4227 2ec1f75b 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4228 2ec1f75b 2019-03-26 stsp if (unlockerr && err == NULL)
4229 2ec1f75b 2019-03-26 stsp err = unlockerr;
4230 33aa809d 2019-08-08 stsp return err;
4231 33aa809d 2019-08-08 stsp }
4232 33aa809d 2019-08-08 stsp
4233 33aa809d 2019-08-08 stsp static const struct got_error *
4234 33aa809d 2019-08-08 stsp copy_one_line(FILE *infile, FILE *outfile, FILE *rejectfile)
4235 33aa809d 2019-08-08 stsp {
4236 33aa809d 2019-08-08 stsp const struct got_error *err = NULL;
4237 33aa809d 2019-08-08 stsp char *line = NULL;
4238 33aa809d 2019-08-08 stsp size_t linesize = 0, n;
4239 33aa809d 2019-08-08 stsp ssize_t linelen;
4240 33aa809d 2019-08-08 stsp
4241 33aa809d 2019-08-08 stsp linelen = getline(&line, &linesize, infile);
4242 33aa809d 2019-08-08 stsp if (linelen == -1) {
4243 33aa809d 2019-08-08 stsp if (ferror(infile)) {
4244 33aa809d 2019-08-08 stsp err = got_error_from_errno("getline");
4245 33aa809d 2019-08-08 stsp goto done;
4246 33aa809d 2019-08-08 stsp }
4247 33aa809d 2019-08-08 stsp return NULL;
4248 33aa809d 2019-08-08 stsp }
4249 33aa809d 2019-08-08 stsp if (outfile) {
4250 33aa809d 2019-08-08 stsp n = fwrite(line, 1, linelen, outfile);
4251 33aa809d 2019-08-08 stsp if (n != linelen) {
4252 33aa809d 2019-08-08 stsp err = got_ferror(outfile, GOT_ERR_IO);
4253 33aa809d 2019-08-08 stsp goto done;
4254 33aa809d 2019-08-08 stsp }
4255 33aa809d 2019-08-08 stsp }
4256 33aa809d 2019-08-08 stsp if (rejectfile) {
4257 33aa809d 2019-08-08 stsp n = fwrite(line, 1, linelen, rejectfile);
4258 33aa809d 2019-08-08 stsp if (n != linelen)
4259 33aa809d 2019-08-08 stsp err = got_ferror(outfile, GOT_ERR_IO);
4260 33aa809d 2019-08-08 stsp }
4261 33aa809d 2019-08-08 stsp done:
4262 33aa809d 2019-08-08 stsp free(line);
4263 2ec1f75b 2019-03-26 stsp return err;
4264 2ec1f75b 2019-03-26 stsp }
4265 1f1abb7e 2019-08-08 stsp
4266 33aa809d 2019-08-08 stsp static const struct got_error *
4267 33aa809d 2019-08-08 stsp skip_one_line(FILE *f)
4268 33aa809d 2019-08-08 stsp {
4269 33aa809d 2019-08-08 stsp char *line = NULL;
4270 33aa809d 2019-08-08 stsp size_t linesize = 0;
4271 33aa809d 2019-08-08 stsp ssize_t linelen;
4272 33aa809d 2019-08-08 stsp
4273 33aa809d 2019-08-08 stsp linelen = getline(&line, &linesize, f);
4274 500467ff 2019-09-25 hiltjo if (linelen == -1) {
4275 500467ff 2019-09-25 hiltjo if (ferror(f))
4276 500467ff 2019-09-25 hiltjo return got_error_from_errno("getline");
4277 500467ff 2019-09-25 hiltjo return NULL;
4278 500467ff 2019-09-25 hiltjo }
4279 33aa809d 2019-08-08 stsp free(line);
4280 33aa809d 2019-08-08 stsp return NULL;
4281 33aa809d 2019-08-08 stsp }
4282 33aa809d 2019-08-08 stsp
4283 33aa809d 2019-08-08 stsp static const struct got_error *
4284 33aa809d 2019-08-08 stsp copy_change(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4285 33aa809d 2019-08-08 stsp int start_old, int end_old, int start_new, int end_new,
4286 33aa809d 2019-08-08 stsp FILE *outfile, FILE *rejectfile)
4287 abc59930 2021-09-05 naddy {
4288 33aa809d 2019-08-08 stsp const struct got_error *err;
4289 33aa809d 2019-08-08 stsp
4290 33aa809d 2019-08-08 stsp /* Copy old file's lines leading up to patch. */
4291 33aa809d 2019-08-08 stsp while (!feof(f1) && *line_cur1 < start_old) {
4292 33aa809d 2019-08-08 stsp err = copy_one_line(f1, outfile, NULL);
4293 33aa809d 2019-08-08 stsp if (err)
4294 33aa809d 2019-08-08 stsp return err;
4295 33aa809d 2019-08-08 stsp (*line_cur1)++;
4296 33aa809d 2019-08-08 stsp }
4297 33aa809d 2019-08-08 stsp /* Skip new file's lines leading up to patch. */
4298 33aa809d 2019-08-08 stsp while (!feof(f2) && *line_cur2 < start_new) {
4299 33aa809d 2019-08-08 stsp if (rejectfile)
4300 33aa809d 2019-08-08 stsp err = copy_one_line(f2, NULL, rejectfile);
4301 33aa809d 2019-08-08 stsp else
4302 33aa809d 2019-08-08 stsp err = skip_one_line(f2);
4303 33aa809d 2019-08-08 stsp if (err)
4304 33aa809d 2019-08-08 stsp return err;
4305 33aa809d 2019-08-08 stsp (*line_cur2)++;
4306 33aa809d 2019-08-08 stsp }
4307 33aa809d 2019-08-08 stsp /* Copy patched lines. */
4308 33aa809d 2019-08-08 stsp while (!feof(f2) && *line_cur2 <= end_new) {
4309 33aa809d 2019-08-08 stsp err = copy_one_line(f2, outfile, NULL);
4310 33aa809d 2019-08-08 stsp if (err)
4311 33aa809d 2019-08-08 stsp return err;
4312 33aa809d 2019-08-08 stsp (*line_cur2)++;
4313 33aa809d 2019-08-08 stsp }
4314 33aa809d 2019-08-08 stsp /* Skip over old file's replaced lines. */
4315 f1e81a05 2019-08-10 stsp while (!feof(f1) && *line_cur1 <= end_old) {
4316 33aa809d 2019-08-08 stsp if (rejectfile)
4317 33aa809d 2019-08-08 stsp err = copy_one_line(f1, NULL, rejectfile);
4318 33aa809d 2019-08-08 stsp else
4319 33aa809d 2019-08-08 stsp err = skip_one_line(f1);
4320 33aa809d 2019-08-08 stsp if (err)
4321 33aa809d 2019-08-08 stsp return err;
4322 33aa809d 2019-08-08 stsp (*line_cur1)++;
4323 33aa809d 2019-08-08 stsp }
4324 f1e81a05 2019-08-10 stsp
4325 f1e81a05 2019-08-10 stsp return NULL;
4326 f1e81a05 2019-08-10 stsp }
4327 f1e81a05 2019-08-10 stsp
4328 f1e81a05 2019-08-10 stsp static const struct got_error *
4329 f1e81a05 2019-08-10 stsp copy_remaining_content(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4330 f1e81a05 2019-08-10 stsp FILE *outfile, FILE *rejectfile)
4331 f1e81a05 2019-08-10 stsp {
4332 f1e81a05 2019-08-10 stsp const struct got_error *err;
4333 f1e81a05 2019-08-10 stsp
4334 f1e81a05 2019-08-10 stsp if (outfile) {
4335 f1e81a05 2019-08-10 stsp /* Copy old file's lines until EOF. */
4336 f1e81a05 2019-08-10 stsp while (!feof(f1)) {
4337 f1e81a05 2019-08-10 stsp err = copy_one_line(f1, outfile, NULL);
4338 f1e81a05 2019-08-10 stsp if (err)
4339 f1e81a05 2019-08-10 stsp return err;
4340 f1e81a05 2019-08-10 stsp (*line_cur1)++;
4341 f1e81a05 2019-08-10 stsp }
4342 f1e81a05 2019-08-10 stsp }
4343 f1e81a05 2019-08-10 stsp if (rejectfile) {
4344 f1e81a05 2019-08-10 stsp /* Copy new file's lines until EOF. */
4345 f1e81a05 2019-08-10 stsp while (!feof(f2)) {
4346 f1e81a05 2019-08-10 stsp err = copy_one_line(f2, NULL, rejectfile);
4347 f1e81a05 2019-08-10 stsp if (err)
4348 f1e81a05 2019-08-10 stsp return err;
4349 f1e81a05 2019-08-10 stsp (*line_cur2)++;
4350 f1e81a05 2019-08-10 stsp }
4351 33aa809d 2019-08-08 stsp }
4352 33aa809d 2019-08-08 stsp
4353 33aa809d 2019-08-08 stsp return NULL;
4354 33aa809d 2019-08-08 stsp }
4355 33aa809d 2019-08-08 stsp
4356 33aa809d 2019-08-08 stsp static const struct got_error *
4357 fe621944 2020-11-10 stsp apply_or_reject_change(int *choice, int *nchunks_used,
4358 fe621944 2020-11-10 stsp struct diff_result *diff_result, int n,
4359 fe621944 2020-11-10 stsp const char *relpath, FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4360 fe621944 2020-11-10 stsp FILE *outfile, FILE *rejectfile, int changeno, int nchanges,
4361 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg)
4362 33aa809d 2019-08-08 stsp {
4363 33aa809d 2019-08-08 stsp const struct got_error *err = NULL;
4364 fe621944 2020-11-10 stsp struct diff_chunk_context cc = {};
4365 fe621944 2020-11-10 stsp int start_old, end_old, start_new, end_new;
4366 33aa809d 2019-08-08 stsp FILE *hunkfile;
4367 fe621944 2020-11-10 stsp struct diff_output_unidiff_state *diff_state;
4368 fe621944 2020-11-10 stsp struct diff_input_info diff_info;
4369 fe621944 2020-11-10 stsp int rc;
4370 33aa809d 2019-08-08 stsp
4371 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NONE;
4372 33aa809d 2019-08-08 stsp
4373 fe621944 2020-11-10 stsp /* Get changed line numbers without context lines for copy_change(). */
4374 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, NULL, diff_result, n, 0);
4375 fe621944 2020-11-10 stsp start_old = cc.left.start;
4376 fe621944 2020-11-10 stsp end_old = cc.left.end;
4377 fe621944 2020-11-10 stsp start_new = cc.right.start;
4378 fe621944 2020-11-10 stsp end_new = cc.right.end;
4379 33aa809d 2019-08-08 stsp
4380 fe621944 2020-11-10 stsp /* Get the same change with context lines for display. */
4381 fe621944 2020-11-10 stsp memset(&cc, 0, sizeof(cc));
4382 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, nchunks_used, diff_result, n, 3);
4383 33aa809d 2019-08-08 stsp
4384 fe621944 2020-11-10 stsp memset(&diff_info, 0, sizeof(diff_info));
4385 fe621944 2020-11-10 stsp diff_info.left_path = relpath;
4386 fe621944 2020-11-10 stsp diff_info.right_path = relpath;
4387 33aa809d 2019-08-08 stsp
4388 fe621944 2020-11-10 stsp diff_state = diff_output_unidiff_state_alloc();
4389 fe621944 2020-11-10 stsp if (diff_state == NULL)
4390 fe621944 2020-11-10 stsp return got_error_set_errno(ENOMEM,
4391 fe621944 2020-11-10 stsp "diff_output_unidiff_state_alloc");
4392 fe621944 2020-11-10 stsp
4393 fe621944 2020-11-10 stsp hunkfile = got_opentemp();
4394 fe621944 2020-11-10 stsp if (hunkfile == NULL) {
4395 fe621944 2020-11-10 stsp err = got_error_from_errno("got_opentemp");
4396 33aa809d 2019-08-08 stsp goto done;
4397 33aa809d 2019-08-08 stsp }
4398 fe621944 2020-11-10 stsp
4399 fe621944 2020-11-10 stsp rc = diff_output_unidiff_chunk(NULL, hunkfile, diff_state, &diff_info,
4400 fe621944 2020-11-10 stsp diff_result, &cc);
4401 fe621944 2020-11-10 stsp if (rc != DIFF_RC_OK) {
4402 fe621944 2020-11-10 stsp err = got_error_set_errno(rc, "diff_output_unidiff_chunk");
4403 33aa809d 2019-08-08 stsp goto done;
4404 33aa809d 2019-08-08 stsp }
4405 fe621944 2020-11-10 stsp
4406 33aa809d 2019-08-08 stsp if (fseek(hunkfile, 0L, SEEK_SET) == -1) {
4407 33aa809d 2019-08-08 stsp err = got_ferror(hunkfile, GOT_ERR_IO);
4408 33aa809d 2019-08-08 stsp goto done;
4409 33aa809d 2019-08-08 stsp }
4410 33aa809d 2019-08-08 stsp
4411 33aa809d 2019-08-08 stsp err = (*patch_cb)(choice, patch_arg, GOT_STATUS_MODIFY, relpath,
4412 fe621944 2020-11-10 stsp hunkfile, changeno, nchanges);
4413 33aa809d 2019-08-08 stsp if (err)
4414 33aa809d 2019-08-08 stsp goto done;
4415 33aa809d 2019-08-08 stsp
4416 33aa809d 2019-08-08 stsp switch (*choice) {
4417 33aa809d 2019-08-08 stsp case GOT_PATCH_CHOICE_YES:
4418 33aa809d 2019-08-08 stsp err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4419 33aa809d 2019-08-08 stsp end_old, start_new, end_new, outfile, rejectfile);
4420 33aa809d 2019-08-08 stsp break;
4421 33aa809d 2019-08-08 stsp case GOT_PATCH_CHOICE_NO:
4422 33aa809d 2019-08-08 stsp err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4423 33aa809d 2019-08-08 stsp end_old, start_new, end_new, rejectfile, outfile);
4424 33aa809d 2019-08-08 stsp break;
4425 33aa809d 2019-08-08 stsp case GOT_PATCH_CHOICE_QUIT:
4426 33aa809d 2019-08-08 stsp break;
4427 33aa809d 2019-08-08 stsp default:
4428 33aa809d 2019-08-08 stsp err = got_error(GOT_ERR_PATCH_CHOICE);
4429 33aa809d 2019-08-08 stsp break;
4430 33aa809d 2019-08-08 stsp }
4431 33aa809d 2019-08-08 stsp done:
4432 fe621944 2020-11-10 stsp diff_output_unidiff_state_free(diff_state);
4433 33aa809d 2019-08-08 stsp if (hunkfile && fclose(hunkfile) == EOF && err == NULL)
4434 33aa809d 2019-08-08 stsp err = got_error_from_errno("fclose");
4435 33aa809d 2019-08-08 stsp return err;
4436 33aa809d 2019-08-08 stsp }
4437 33aa809d 2019-08-08 stsp
4438 1f1abb7e 2019-08-08 stsp struct revert_file_args {
4439 1f1abb7e 2019-08-08 stsp struct got_worktree *worktree;
4440 1f1abb7e 2019-08-08 stsp struct got_fileindex *fileindex;
4441 1f1abb7e 2019-08-08 stsp got_worktree_checkout_cb progress_cb;
4442 1f1abb7e 2019-08-08 stsp void *progress_arg;
4443 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb;
4444 33aa809d 2019-08-08 stsp void *patch_arg;
4445 1f1abb7e 2019-08-08 stsp struct got_repository *repo;
4446 f259c4c1 2021-09-24 stsp int unlink_added_files;
4447 1f1abb7e 2019-08-08 stsp };
4448 a129376b 2019-03-28 stsp
4449 e20a8b6f 2019-06-04 stsp static const struct got_error *
4450 e635744c 2019-08-08 stsp create_patched_content(char **path_outfile, int reverse_patch,
4451 e635744c 2019-08-08 stsp struct got_object_id *blob_id, const char *path2,
4452 12463d8b 2019-12-13 stsp int dirfd2, const char *de_name2,
4453 e635744c 2019-08-08 stsp const char *relpath, struct got_repository *repo,
4454 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg)
4455 33aa809d 2019-08-08 stsp {
4456 fe621944 2020-11-10 stsp const struct got_error *err, *free_err;
4457 33aa809d 2019-08-08 stsp struct got_blob_object *blob = NULL;
4458 33aa809d 2019-08-08 stsp FILE *f1 = NULL, *f2 = NULL, *outfile = NULL;
4459 1ebedb77 2019-10-19 stsp int fd2 = -1;
4460 fa3cef63 2020-07-23 stsp char link_target[PATH_MAX];
4461 fa3cef63 2020-07-23 stsp ssize_t link_len = 0;
4462 33aa809d 2019-08-08 stsp char *path1 = NULL, *id_str = NULL;
4463 fe621944 2020-11-10 stsp struct stat sb2;
4464 fe621944 2020-11-10 stsp struct got_diffreg_result *diffreg_result = NULL;
4465 fe621944 2020-11-10 stsp int line_cur1 = 1, line_cur2 = 1, have_content = 0;
4466 fe621944 2020-11-10 stsp int i = 0, n = 0, nchunks_used = 0, nchanges = 0;
4467 33aa809d 2019-08-08 stsp
4468 33aa809d 2019-08-08 stsp *path_outfile = NULL;
4469 33aa809d 2019-08-08 stsp
4470 33aa809d 2019-08-08 stsp err = got_object_id_str(&id_str, blob_id);
4471 33aa809d 2019-08-08 stsp if (err)
4472 33aa809d 2019-08-08 stsp return err;
4473 33aa809d 2019-08-08 stsp
4474 12463d8b 2019-12-13 stsp if (dirfd2 != -1) {
4475 12463d8b 2019-12-13 stsp fd2 = openat(dirfd2, de_name2, O_RDONLY | O_NOFOLLOW);
4476 12463d8b 2019-12-13 stsp if (fd2 == -1) {
4477 5c02d2a5 2021-09-26 stsp if (!got_err_open_nofollow_on_symlink()) {
4478 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("openat", path2);
4479 fa3cef63 2020-07-23 stsp goto done;
4480 fa3cef63 2020-07-23 stsp }
4481 fa3cef63 2020-07-23 stsp link_len = readlinkat(dirfd2, de_name2,
4482 fa3cef63 2020-07-23 stsp link_target, sizeof(link_target));
4483 fa3cef63 2020-07-23 stsp if (link_len == -1)
4484 fa3cef63 2020-07-23 stsp return got_error_from_errno2("readlinkat", path2);
4485 fa3cef63 2020-07-23 stsp sb2.st_mode = S_IFLNK;
4486 fa3cef63 2020-07-23 stsp sb2.st_size = link_len;
4487 12463d8b 2019-12-13 stsp }
4488 12463d8b 2019-12-13 stsp } else {
4489 12463d8b 2019-12-13 stsp fd2 = open(path2, O_RDONLY | O_NOFOLLOW);
4490 12463d8b 2019-12-13 stsp if (fd2 == -1) {
4491 5c02d2a5 2021-09-26 stsp if (!got_err_open_nofollow_on_symlink()) {
4492 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("open", path2);
4493 fa3cef63 2020-07-23 stsp goto done;
4494 fa3cef63 2020-07-23 stsp }
4495 fa3cef63 2020-07-23 stsp link_len = readlink(path2, link_target,
4496 fa3cef63 2020-07-23 stsp sizeof(link_target));
4497 fa3cef63 2020-07-23 stsp if (link_len == -1)
4498 fa3cef63 2020-07-23 stsp return got_error_from_errno2("readlink", path2);
4499 fa3cef63 2020-07-23 stsp sb2.st_mode = S_IFLNK;
4500 fa3cef63 2020-07-23 stsp sb2.st_size = link_len;
4501 12463d8b 2019-12-13 stsp }
4502 1ebedb77 2019-10-19 stsp }
4503 fa3cef63 2020-07-23 stsp if (fd2 != -1) {
4504 fa3cef63 2020-07-23 stsp if (fstat(fd2, &sb2) == -1) {
4505 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("fstat", path2);
4506 fa3cef63 2020-07-23 stsp goto done;
4507 fa3cef63 2020-07-23 stsp }
4508 1ebedb77 2019-10-19 stsp
4509 fa3cef63 2020-07-23 stsp f2 = fdopen(fd2, "r");
4510 fa3cef63 2020-07-23 stsp if (f2 == NULL) {
4511 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("fdopen", path2);
4512 fa3cef63 2020-07-23 stsp goto done;
4513 fa3cef63 2020-07-23 stsp }
4514 fa3cef63 2020-07-23 stsp fd2 = -1;
4515 fa3cef63 2020-07-23 stsp } else {
4516 fa3cef63 2020-07-23 stsp size_t n;
4517 fa3cef63 2020-07-23 stsp f2 = got_opentemp();
4518 fa3cef63 2020-07-23 stsp if (f2 == NULL) {
4519 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("got_opentemp", path2);
4520 fa3cef63 2020-07-23 stsp goto done;
4521 fa3cef63 2020-07-23 stsp }
4522 fa3cef63 2020-07-23 stsp n = fwrite(link_target, 1, link_len, f2);
4523 fa3cef63 2020-07-23 stsp if (n != link_len) {
4524 fa3cef63 2020-07-23 stsp err = got_ferror(f2, GOT_ERR_IO);
4525 fa3cef63 2020-07-23 stsp goto done;
4526 fa3cef63 2020-07-23 stsp }
4527 fa3cef63 2020-07-23 stsp if (fflush(f2) == EOF) {
4528 fa3cef63 2020-07-23 stsp err = got_error_from_errno("fflush");
4529 fa3cef63 2020-07-23 stsp goto done;
4530 fa3cef63 2020-07-23 stsp }
4531 fa3cef63 2020-07-23 stsp rewind(f2);
4532 33aa809d 2019-08-08 stsp }
4533 33aa809d 2019-08-08 stsp
4534 33aa809d 2019-08-08 stsp err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
4535 33aa809d 2019-08-08 stsp if (err)
4536 33aa809d 2019-08-08 stsp goto done;
4537 33aa809d 2019-08-08 stsp
4538 e635744c 2019-08-08 stsp err = got_opentemp_named(&path1, &f1, "got-patched-blob");
4539 33aa809d 2019-08-08 stsp if (err)
4540 33aa809d 2019-08-08 stsp goto done;
4541 33aa809d 2019-08-08 stsp
4542 33aa809d 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
4543 33aa809d 2019-08-08 stsp if (err)
4544 33aa809d 2019-08-08 stsp goto done;
4545 33aa809d 2019-08-08 stsp
4546 64453f7e 2020-11-21 stsp err = got_diff_files(&diffreg_result, f1, id_str, f2, path2, 3, 0, 1,
4547 fe621944 2020-11-10 stsp NULL);
4548 33aa809d 2019-08-08 stsp if (err)
4549 33aa809d 2019-08-08 stsp goto done;
4550 33aa809d 2019-08-08 stsp
4551 e635744c 2019-08-08 stsp err = got_opentemp_named(path_outfile, &outfile, "got-patched-content");
4552 33aa809d 2019-08-08 stsp if (err)
4553 33aa809d 2019-08-08 stsp goto done;
4554 33aa809d 2019-08-08 stsp
4555 33aa809d 2019-08-08 stsp if (fseek(f1, 0L, SEEK_SET) == -1)
4556 33aa809d 2019-08-08 stsp return got_ferror(f1, GOT_ERR_IO);
4557 33aa809d 2019-08-08 stsp if (fseek(f2, 0L, SEEK_SET) == -1)
4558 33aa809d 2019-08-08 stsp return got_ferror(f2, GOT_ERR_IO);
4559 fe621944 2020-11-10 stsp
4560 fe621944 2020-11-10 stsp /* Count the number of actual changes in the diff result. */
4561 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4562 fe621944 2020-11-10 stsp struct diff_chunk_context cc = {};
4563 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, &nchunks_used,
4564 fe621944 2020-11-10 stsp diffreg_result->result, n, 0);
4565 fe621944 2020-11-10 stsp nchanges++;
4566 fe621944 2020-11-10 stsp }
4567 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4568 33aa809d 2019-08-08 stsp int choice;
4569 fe621944 2020-11-10 stsp err = apply_or_reject_change(&choice, &nchunks_used,
4570 fe621944 2020-11-10 stsp diffreg_result->result, n, relpath, f1, f2,
4571 fe621944 2020-11-10 stsp &line_cur1, &line_cur2,
4572 e635744c 2019-08-08 stsp reverse_patch ? NULL : outfile,
4573 e635744c 2019-08-08 stsp reverse_patch ? outfile : NULL,
4574 fe621944 2020-11-10 stsp ++i, nchanges, patch_cb, patch_arg);
4575 33aa809d 2019-08-08 stsp if (err)
4576 33aa809d 2019-08-08 stsp goto done;
4577 33aa809d 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_YES)
4578 33aa809d 2019-08-08 stsp have_content = 1;
4579 33aa809d 2019-08-08 stsp else if (choice == GOT_PATCH_CHOICE_QUIT)
4580 33aa809d 2019-08-08 stsp break;
4581 33aa809d 2019-08-08 stsp }
4582 1ebedb77 2019-10-19 stsp if (have_content) {
4583 f1e81a05 2019-08-10 stsp err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
4584 f1e81a05 2019-08-10 stsp reverse_patch ? NULL : outfile,
4585 f1e81a05 2019-08-10 stsp reverse_patch ? outfile : NULL);
4586 1ebedb77 2019-10-19 stsp if (err)
4587 1ebedb77 2019-10-19 stsp goto done;
4588 1ebedb77 2019-10-19 stsp
4589 fa3cef63 2020-07-23 stsp if (!S_ISLNK(sb2.st_mode)) {
4590 3818e3c4 2020-11-01 naddy if (fchmod(fileno(outfile), sb2.st_mode) == -1) {
4591 3818e3c4 2020-11-01 naddy err = got_error_from_errno2("fchmod", path2);
4592 fa3cef63 2020-07-23 stsp goto done;
4593 fa3cef63 2020-07-23 stsp }
4594 1ebedb77 2019-10-19 stsp }
4595 1ebedb77 2019-10-19 stsp }
4596 33aa809d 2019-08-08 stsp done:
4597 33aa809d 2019-08-08 stsp free(id_str);
4598 33aa809d 2019-08-08 stsp if (blob)
4599 33aa809d 2019-08-08 stsp got_object_blob_close(blob);
4600 fe621944 2020-11-10 stsp free_err = got_diffreg_result_free(diffreg_result);
4601 fe621944 2020-11-10 stsp if (err == NULL)
4602 fe621944 2020-11-10 stsp err = free_err;
4603 33aa809d 2019-08-08 stsp if (f1 && fclose(f1) == EOF && err == NULL)
4604 33aa809d 2019-08-08 stsp err = got_error_from_errno2("fclose", path1);
4605 33aa809d 2019-08-08 stsp if (f2 && fclose(f2) == EOF && err == NULL)
4606 33aa809d 2019-08-08 stsp err = got_error_from_errno2("fclose", path2);
4607 1ebedb77 2019-10-19 stsp if (fd2 != -1 && close(fd2) == -1 && err == NULL)
4608 1ebedb77 2019-10-19 stsp err = got_error_from_errno2("close", path2);
4609 33aa809d 2019-08-08 stsp if (outfile && fclose(outfile) == EOF && err == NULL)
4610 33aa809d 2019-08-08 stsp err = got_error_from_errno2("fclose", *path_outfile);
4611 33aa809d 2019-08-08 stsp if (path1 && unlink(path1) == -1 && err == NULL)
4612 33aa809d 2019-08-08 stsp err = got_error_from_errno2("unlink", path1);
4613 33aa809d 2019-08-08 stsp if (err || !have_content) {
4614 33aa809d 2019-08-08 stsp if (*path_outfile && unlink(*path_outfile) == -1 && err == NULL)
4615 33aa809d 2019-08-08 stsp err = got_error_from_errno2("unlink", *path_outfile);
4616 33aa809d 2019-08-08 stsp free(*path_outfile);
4617 33aa809d 2019-08-08 stsp *path_outfile = NULL;
4618 33aa809d 2019-08-08 stsp }
4619 33aa809d 2019-08-08 stsp free(path1);
4620 33aa809d 2019-08-08 stsp return err;
4621 33aa809d 2019-08-08 stsp }
4622 33aa809d 2019-08-08 stsp
4623 33aa809d 2019-08-08 stsp static const struct got_error *
4624 1f1abb7e 2019-08-08 stsp revert_file(void *arg, unsigned char status, unsigned char staged_status,
4625 1f1abb7e 2019-08-08 stsp const char *relpath, struct got_object_id *blob_id,
4626 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4627 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
4628 a129376b 2019-03-28 stsp {
4629 1f1abb7e 2019-08-08 stsp struct revert_file_args *a = arg;
4630 e20a8b6f 2019-06-04 stsp const struct got_error *err = NULL;
4631 1f1abb7e 2019-08-08 stsp char *parent_path = NULL;
4632 e20a8b6f 2019-06-04 stsp struct got_fileindex_entry *ie;
4633 a129376b 2019-03-28 stsp struct got_tree_object *tree = NULL;
4634 e20a8b6f 2019-06-04 stsp struct got_object_id *tree_id = NULL;
4635 24278f30 2019-08-03 stsp const struct got_tree_entry *te = NULL;
4636 e20a8b6f 2019-06-04 stsp char *tree_path = NULL, *te_name;
4637 33aa809d 2019-08-08 stsp char *ondisk_path = NULL, *path_content = NULL;
4638 a129376b 2019-03-28 stsp struct got_blob_object *blob = NULL;
4639 a129376b 2019-03-28 stsp
4640 d3bcc3d1 2019-08-08 stsp /* Reverting a staged deletion is a no-op. */
4641 d3bcc3d1 2019-08-08 stsp if (status == GOT_STATUS_DELETE &&
4642 d3bcc3d1 2019-08-08 stsp staged_status != GOT_STATUS_NO_CHANGE)
4643 d3bcc3d1 2019-08-08 stsp return NULL;
4644 3d69ad8d 2019-08-17 semarie
4645 3d69ad8d 2019-08-17 semarie if (status == GOT_STATUS_UNVERSIONED)
4646 3d69ad8d 2019-08-17 semarie return (*a->progress_cb)(a->progress_arg,
4647 3d69ad8d 2019-08-17 semarie GOT_STATUS_UNVERSIONED, relpath);
4648 d3bcc3d1 2019-08-08 stsp
4649 1f1abb7e 2019-08-08 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
4650 65084dad 2019-08-08 stsp if (ie == NULL)
4651 63f810e6 2020-02-29 stsp return got_error_path(relpath, GOT_ERR_BAD_PATH);
4652 a129376b 2019-03-28 stsp
4653 a129376b 2019-03-28 stsp /* Construct in-repository path of tree which contains this blob. */
4654 a129376b 2019-03-28 stsp err = got_path_dirname(&parent_path, ie->path);
4655 a129376b 2019-03-28 stsp if (err) {
4656 a129376b 2019-03-28 stsp if (err->code != GOT_ERR_BAD_PATH)
4657 a129376b 2019-03-28 stsp goto done;
4658 e20a8b6f 2019-06-04 stsp parent_path = strdup("/");
4659 e20a8b6f 2019-06-04 stsp if (parent_path == NULL) {
4660 e20a8b6f 2019-06-04 stsp err = got_error_from_errno("strdup");
4661 e20a8b6f 2019-06-04 stsp goto done;
4662 e20a8b6f 2019-06-04 stsp }
4663 a129376b 2019-03-28 stsp }
4664 1f1abb7e 2019-08-08 stsp if (got_path_is_root_dir(a->worktree->path_prefix)) {
4665 a129376b 2019-03-28 stsp tree_path = strdup(parent_path);
4666 a129376b 2019-03-28 stsp if (tree_path == NULL) {
4667 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
4668 a129376b 2019-03-28 stsp goto done;
4669 a129376b 2019-03-28 stsp }
4670 a129376b 2019-03-28 stsp } else {
4671 a129376b 2019-03-28 stsp if (got_path_is_root_dir(parent_path)) {
4672 1f1abb7e 2019-08-08 stsp tree_path = strdup(a->worktree->path_prefix);
4673 a129376b 2019-03-28 stsp if (tree_path == NULL) {
4674 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
4675 a129376b 2019-03-28 stsp goto done;
4676 a129376b 2019-03-28 stsp }
4677 a129376b 2019-03-28 stsp } else {
4678 a129376b 2019-03-28 stsp if (asprintf(&tree_path, "%s/%s",
4679 1f1abb7e 2019-08-08 stsp a->worktree->path_prefix, parent_path) == -1) {
4680 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4681 a129376b 2019-03-28 stsp goto done;
4682 a129376b 2019-03-28 stsp }
4683 a129376b 2019-03-28 stsp }
4684 a129376b 2019-03-28 stsp }
4685 a129376b 2019-03-28 stsp
4686 1f1abb7e 2019-08-08 stsp err = got_object_id_by_path(&tree_id, a->repo,
4687 1f1abb7e 2019-08-08 stsp a->worktree->base_commit_id, tree_path);
4688 a9fa2909 2019-07-27 stsp if (err) {
4689 a9fa2909 2019-07-27 stsp if (!(err->code == GOT_ERR_NO_TREE_ENTRY &&
4690 24278f30 2019-08-03 stsp (status == GOT_STATUS_ADD ||
4691 24278f30 2019-08-03 stsp staged_status == GOT_STATUS_ADD)))
4692 a9fa2909 2019-07-27 stsp goto done;
4693 a9fa2909 2019-07-27 stsp } else {
4694 1f1abb7e 2019-08-08 stsp err = got_object_open_as_tree(&tree, a->repo, tree_id);
4695 a9fa2909 2019-07-27 stsp if (err)
4696 a9fa2909 2019-07-27 stsp goto done;
4697 a9fa2909 2019-07-27 stsp
4698 1233e6b6 2020-10-19 stsp err = got_path_basename(&te_name, ie->path);
4699 1233e6b6 2020-10-19 stsp if (err)
4700 a9fa2909 2019-07-27 stsp goto done;
4701 a9fa2909 2019-07-27 stsp
4702 a9fa2909 2019-07-27 stsp te = got_object_tree_find_entry(tree, te_name);
4703 1233e6b6 2020-10-19 stsp free(te_name);
4704 24278f30 2019-08-03 stsp if (te == NULL && status != GOT_STATUS_ADD &&
4705 24278f30 2019-08-03 stsp staged_status != GOT_STATUS_ADD) {
4706 b66cd6f3 2020-07-31 stsp err = got_error_path(ie->path, GOT_ERR_NO_TREE_ENTRY);
4707 a9fa2909 2019-07-27 stsp goto done;
4708 a9fa2909 2019-07-27 stsp }
4709 a129376b 2019-03-28 stsp }
4710 a129376b 2019-03-28 stsp
4711 a129376b 2019-03-28 stsp switch (status) {
4712 a129376b 2019-03-28 stsp case GOT_STATUS_ADD:
4713 33aa809d 2019-08-08 stsp if (a->patch_cb) {
4714 33aa809d 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
4715 33aa809d 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
4716 33aa809d 2019-08-08 stsp status, ie->path, NULL, 1, 1);
4717 33aa809d 2019-08-08 stsp if (err)
4718 33aa809d 2019-08-08 stsp goto done;
4719 33aa809d 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES)
4720 33aa809d 2019-08-08 stsp break;
4721 33aa809d 2019-08-08 stsp }
4722 1f1abb7e 2019-08-08 stsp err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_REVERT,
4723 1f1abb7e 2019-08-08 stsp ie->path);
4724 1ee397ad 2019-07-12 stsp if (err)
4725 1ee397ad 2019-07-12 stsp goto done;
4726 1f1abb7e 2019-08-08 stsp got_fileindex_entry_remove(a->fileindex, ie);
4727 f259c4c1 2021-09-24 stsp if (a->unlink_added_files) {
4728 f259c4c1 2021-09-24 stsp if (asprintf(&ondisk_path, "%s/%s",
4729 f259c4c1 2021-09-24 stsp got_worktree_get_root_path(a->worktree),
4730 f259c4c1 2021-09-24 stsp relpath) == -1) {
4731 f259c4c1 2021-09-24 stsp err = got_error_from_errno("asprintf");
4732 f259c4c1 2021-09-24 stsp goto done;
4733 f259c4c1 2021-09-24 stsp }
4734 f259c4c1 2021-09-24 stsp if (unlink(ondisk_path) == -1) {
4735 f259c4c1 2021-09-24 stsp err = got_error_from_errno2("unlink",
4736 f259c4c1 2021-09-24 stsp ondisk_path);
4737 f259c4c1 2021-09-24 stsp break;
4738 f259c4c1 2021-09-24 stsp }
4739 f259c4c1 2021-09-24 stsp }
4740 a129376b 2019-03-28 stsp break;
4741 a129376b 2019-03-28 stsp case GOT_STATUS_DELETE:
4742 33aa809d 2019-08-08 stsp if (a->patch_cb) {
4743 33aa809d 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
4744 33aa809d 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
4745 33aa809d 2019-08-08 stsp status, ie->path, NULL, 1, 1);
4746 33aa809d 2019-08-08 stsp if (err)
4747 33aa809d 2019-08-08 stsp goto done;
4748 33aa809d 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES)
4749 33aa809d 2019-08-08 stsp break;
4750 33aa809d 2019-08-08 stsp }
4751 33aa809d 2019-08-08 stsp /* fall through */
4752 a129376b 2019-03-28 stsp case GOT_STATUS_MODIFY:
4753 1ebedb77 2019-10-19 stsp case GOT_STATUS_MODE_CHANGE:
4754 a129376b 2019-03-28 stsp case GOT_STATUS_CONFLICT:
4755 e20a8b6f 2019-06-04 stsp case GOT_STATUS_MISSING: {
4756 e20a8b6f 2019-06-04 stsp struct got_object_id id;
4757 24278f30 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
4758 24278f30 2019-08-03 stsp staged_status == GOT_STATUS_MODIFY) {
4759 24278f30 2019-08-03 stsp memcpy(id.sha1, ie->staged_blob_sha1,
4760 24278f30 2019-08-03 stsp SHA1_DIGEST_LENGTH);
4761 24278f30 2019-08-03 stsp } else
4762 24278f30 2019-08-03 stsp memcpy(id.sha1, ie->blob_sha1,
4763 24278f30 2019-08-03 stsp SHA1_DIGEST_LENGTH);
4764 1f1abb7e 2019-08-08 stsp err = got_object_open_as_blob(&blob, a->repo, &id, 8192);
4765 a129376b 2019-03-28 stsp if (err)
4766 65084dad 2019-08-08 stsp goto done;
4767 65084dad 2019-08-08 stsp
4768 65084dad 2019-08-08 stsp if (asprintf(&ondisk_path, "%s/%s",
4769 65084dad 2019-08-08 stsp got_worktree_get_root_path(a->worktree), relpath) == -1) {
4770 65084dad 2019-08-08 stsp err = got_error_from_errno("asprintf");
4771 a129376b 2019-03-28 stsp goto done;
4772 65084dad 2019-08-08 stsp }
4773 65084dad 2019-08-08 stsp
4774 33aa809d 2019-08-08 stsp if (a->patch_cb && (status == GOT_STATUS_MODIFY ||
4775 33aa809d 2019-08-08 stsp status == GOT_STATUS_CONFLICT)) {
4776 369fd7e5 2020-07-23 stsp int is_bad_symlink = 0;
4777 e635744c 2019-08-08 stsp err = create_patched_content(&path_content, 1, &id,
4778 12463d8b 2019-12-13 stsp ondisk_path, dirfd, de_name, ie->path, a->repo,
4779 33aa809d 2019-08-08 stsp a->patch_cb, a->patch_arg);
4780 33aa809d 2019-08-08 stsp if (err || path_content == NULL)
4781 33aa809d 2019-08-08 stsp break;
4782 369fd7e5 2020-07-23 stsp if (te && S_ISLNK(te->mode)) {
4783 369fd7e5 2020-07-23 stsp if (unlink(path_content) == -1) {
4784 369fd7e5 2020-07-23 stsp err = got_error_from_errno2("unlink",
4785 369fd7e5 2020-07-23 stsp path_content);
4786 369fd7e5 2020-07-23 stsp break;
4787 369fd7e5 2020-07-23 stsp }
4788 369fd7e5 2020-07-23 stsp err = install_symlink(&is_bad_symlink,
4789 369fd7e5 2020-07-23 stsp a->worktree, ondisk_path, ie->path,
4790 5267b9e4 2021-09-26 stsp blob, 0, 1, 0, 0, a->repo,
4791 369fd7e5 2020-07-23 stsp a->progress_cb, a->progress_arg);
4792 369fd7e5 2020-07-23 stsp } else {
4793 369fd7e5 2020-07-23 stsp if (rename(path_content, ondisk_path) == -1) {
4794 369fd7e5 2020-07-23 stsp err = got_error_from_errno3("rename",
4795 369fd7e5 2020-07-23 stsp path_content, ondisk_path);
4796 369fd7e5 2020-07-23 stsp goto done;
4797 369fd7e5 2020-07-23 stsp }
4798 33aa809d 2019-08-08 stsp }
4799 33aa809d 2019-08-08 stsp } else {
4800 2e1fa222 2020-07-23 stsp int is_bad_symlink = 0;
4801 2e1fa222 2020-07-23 stsp if (te && S_ISLNK(te->mode)) {
4802 2e1fa222 2020-07-23 stsp err = install_symlink(&is_bad_symlink,
4803 2e1fa222 2020-07-23 stsp a->worktree, ondisk_path, ie->path,
4804 5267b9e4 2021-09-26 stsp blob, 0, 1, 0, 0, a->repo,
4805 2e1fa222 2020-07-23 stsp a->progress_cb, a->progress_arg);
4806 2e1fa222 2020-07-23 stsp } else {
4807 2e1fa222 2020-07-23 stsp err = install_blob(a->worktree, ondisk_path,
4808 2e1fa222 2020-07-23 stsp ie->path,
4809 2e1fa222 2020-07-23 stsp te ? te->mode : GOT_DEFAULT_FILE_MODE,
4810 3b9f0f87 2020-07-23 stsp got_fileindex_perms_to_st(ie), blob,
4811 3b9f0f87 2020-07-23 stsp 0, 1, 0, 0, a->repo,
4812 3b9f0f87 2020-07-23 stsp a->progress_cb, a->progress_arg);
4813 2e1fa222 2020-07-23 stsp }
4814 a129376b 2019-03-28 stsp if (err)
4815 a129376b 2019-03-28 stsp goto done;
4816 1ebedb77 2019-10-19 stsp if (status == GOT_STATUS_DELETE ||
4817 1ebedb77 2019-10-19 stsp status == GOT_STATUS_MODE_CHANGE) {
4818 054041d0 2020-06-24 stsp err = got_fileindex_entry_update(ie,
4819 437adc9d 2020-12-10 yzhong a->worktree->root_fd, relpath,
4820 437adc9d 2020-12-10 yzhong blob->id.sha1,
4821 054041d0 2020-06-24 stsp a->worktree->base_commit_id->sha1, 1);
4822 2e1fa222 2020-07-23 stsp if (err)
4823 2e1fa222 2020-07-23 stsp goto done;
4824 2e1fa222 2020-07-23 stsp }
4825 2e1fa222 2020-07-23 stsp if (is_bad_symlink) {
4826 6131ab45 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
4827 2e1fa222 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
4828 33aa809d 2019-08-08 stsp }
4829 a129376b 2019-03-28 stsp }
4830 a129376b 2019-03-28 stsp break;
4831 e20a8b6f 2019-06-04 stsp }
4832 a129376b 2019-03-28 stsp default:
4833 1f1abb7e 2019-08-08 stsp break;
4834 a129376b 2019-03-28 stsp }
4835 a129376b 2019-03-28 stsp done:
4836 1f1abb7e 2019-08-08 stsp free(ondisk_path);
4837 33aa809d 2019-08-08 stsp free(path_content);
4838 e20a8b6f 2019-06-04 stsp free(parent_path);
4839 a129376b 2019-03-28 stsp free(tree_path);
4840 a129376b 2019-03-28 stsp if (blob)
4841 a129376b 2019-03-28 stsp got_object_blob_close(blob);
4842 a129376b 2019-03-28 stsp if (tree)
4843 a129376b 2019-03-28 stsp got_object_tree_close(tree);
4844 a129376b 2019-03-28 stsp free(tree_id);
4845 e20a8b6f 2019-06-04 stsp return err;
4846 e20a8b6f 2019-06-04 stsp }
4847 e20a8b6f 2019-06-04 stsp
4848 e20a8b6f 2019-06-04 stsp const struct got_error *
4849 e20a8b6f 2019-06-04 stsp got_worktree_revert(struct got_worktree *worktree,
4850 2163d960 2019-08-08 stsp struct got_pathlist_head *paths,
4851 e20a8b6f 2019-06-04 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
4852 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
4853 e20a8b6f 2019-06-04 stsp struct got_repository *repo)
4854 e20a8b6f 2019-06-04 stsp {
4855 e20a8b6f 2019-06-04 stsp struct got_fileindex *fileindex = NULL;
4856 e20a8b6f 2019-06-04 stsp char *fileindex_path = NULL;
4857 e20a8b6f 2019-06-04 stsp const struct got_error *err = NULL, *unlockerr = NULL;
4858 e20a8b6f 2019-06-04 stsp const struct got_error *sync_err = NULL;
4859 e20a8b6f 2019-06-04 stsp struct got_pathlist_entry *pe;
4860 1f1abb7e 2019-08-08 stsp struct revert_file_args rfa;
4861 e20a8b6f 2019-06-04 stsp
4862 e20a8b6f 2019-06-04 stsp err = lock_worktree(worktree, LOCK_EX);
4863 e20a8b6f 2019-06-04 stsp if (err)
4864 e20a8b6f 2019-06-04 stsp return err;
4865 e20a8b6f 2019-06-04 stsp
4866 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
4867 e20a8b6f 2019-06-04 stsp if (err)
4868 e20a8b6f 2019-06-04 stsp goto done;
4869 e20a8b6f 2019-06-04 stsp
4870 1f1abb7e 2019-08-08 stsp rfa.worktree = worktree;
4871 1f1abb7e 2019-08-08 stsp rfa.fileindex = fileindex;
4872 1f1abb7e 2019-08-08 stsp rfa.progress_cb = progress_cb;
4873 1f1abb7e 2019-08-08 stsp rfa.progress_arg = progress_arg;
4874 33aa809d 2019-08-08 stsp rfa.patch_cb = patch_cb;
4875 33aa809d 2019-08-08 stsp rfa.patch_arg = patch_arg;
4876 1f1abb7e 2019-08-08 stsp rfa.repo = repo;
4877 f259c4c1 2021-09-24 stsp rfa.unlink_added_files = 0;
4878 2163d960 2019-08-08 stsp TAILQ_FOREACH(pe, paths, entry) {
4879 1f1abb7e 2019-08-08 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
4880 f2a9dc41 2019-12-13 tracey revert_file, &rfa, NULL, NULL, 0, 0);
4881 e20a8b6f 2019-06-04 stsp if (err)
4882 af12c6b9 2019-06-04 stsp break;
4883 e20a8b6f 2019-06-04 stsp }
4884 e20a8b6f 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4885 e20a8b6f 2019-06-04 stsp if (sync_err && err == NULL)
4886 e20a8b6f 2019-06-04 stsp err = sync_err;
4887 af12c6b9 2019-06-04 stsp done:
4888 fb399478 2019-07-12 stsp free(fileindex_path);
4889 a129376b 2019-03-28 stsp if (fileindex)
4890 a129376b 2019-03-28 stsp got_fileindex_free(fileindex);
4891 a129376b 2019-03-28 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4892 a129376b 2019-03-28 stsp if (unlockerr && err == NULL)
4893 a129376b 2019-03-28 stsp err = unlockerr;
4894 c4296144 2019-05-09 stsp return err;
4895 c4296144 2019-05-09 stsp }
4896 c4296144 2019-05-09 stsp
4897 cf066bf8 2019-05-09 stsp static void
4898 33ad4cbe 2019-05-12 jcs free_commitable(struct got_commitable *ct)
4899 cf066bf8 2019-05-09 stsp {
4900 24519714 2019-05-09 stsp free(ct->path);
4901 44d03001 2019-05-09 stsp free(ct->in_repo_path);
4902 768aea60 2019-05-09 stsp free(ct->ondisk_path);
4903 e75eb4da 2019-05-10 stsp free(ct->blob_id);
4904 c4e12a88 2019-05-13 stsp free(ct->base_blob_id);
4905 f0b75401 2019-08-03 stsp free(ct->staged_blob_id);
4906 b416585c 2019-05-13 stsp free(ct->base_commit_id);
4907 cf066bf8 2019-05-09 stsp free(ct);
4908 cf066bf8 2019-05-09 stsp }
4909 24519714 2019-05-09 stsp
4910 ed175427 2019-05-09 stsp struct collect_commitables_arg {
4911 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths;
4912 24519714 2019-05-09 stsp struct got_repository *repo;
4913 24519714 2019-05-09 stsp struct got_worktree *worktree;
4914 0aeb8099 2020-07-23 stsp struct got_fileindex *fileindex;
4915 5f8a88c6 2019-08-03 stsp int have_staged_files;
4916 35213c7c 2020-07-23 stsp int allow_bad_symlinks;
4917 24519714 2019-05-09 stsp };
4918 cf066bf8 2019-05-09 stsp
4919 c4296144 2019-05-09 stsp static const struct got_error *
4920 dae2a678 2021-09-01 stsp collect_commitables(void *arg, unsigned char status,
4921 dae2a678 2021-09-01 stsp unsigned char staged_status, const char *relpath,
4922 537ac44b 2019-08-03 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
4923 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
4924 c4296144 2019-05-09 stsp {
4925 dae2a678 2021-09-01 stsp struct collect_commitables_arg *a = arg;
4926 c4296144 2019-05-09 stsp const struct got_error *err = NULL;
4927 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
4928 c4296144 2019-05-09 stsp struct got_pathlist_entry *new = NULL;
4929 036813ee 2019-05-09 stsp char *parent_path = NULL, *path = NULL;
4930 768aea60 2019-05-09 stsp struct stat sb;
4931 c4296144 2019-05-09 stsp
4932 dae2a678 2021-09-01 stsp if (a->have_staged_files) {
4933 5f8a88c6 2019-08-03 stsp if (staged_status != GOT_STATUS_MODIFY &&
4934 5f8a88c6 2019-08-03 stsp staged_status != GOT_STATUS_ADD &&
4935 5f8a88c6 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
4936 5f8a88c6 2019-08-03 stsp return NULL;
4937 5f8a88c6 2019-08-03 stsp } else {
4938 5f8a88c6 2019-08-03 stsp if (status == GOT_STATUS_CONFLICT)
4939 5f8a88c6 2019-08-03 stsp return got_error(GOT_ERR_COMMIT_CONFLICT);
4940 c4296144 2019-05-09 stsp
4941 5f8a88c6 2019-08-03 stsp if (status != GOT_STATUS_MODIFY &&
4942 1ebedb77 2019-10-19 stsp status != GOT_STATUS_MODE_CHANGE &&
4943 5f8a88c6 2019-08-03 stsp status != GOT_STATUS_ADD &&
4944 5f8a88c6 2019-08-03 stsp status != GOT_STATUS_DELETE)
4945 5f8a88c6 2019-08-03 stsp return NULL;
4946 5f8a88c6 2019-08-03 stsp }
4947 0b5cc0d6 2019-05-09 stsp
4948 036813ee 2019-05-09 stsp if (asprintf(&path, "/%s", relpath) == -1) {
4949 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4950 036813ee 2019-05-09 stsp goto done;
4951 036813ee 2019-05-09 stsp }
4952 036813ee 2019-05-09 stsp if (strcmp(path, "/") == 0) {
4953 036813ee 2019-05-09 stsp parent_path = strdup("");
4954 69960a46 2019-05-09 stsp if (parent_path == NULL)
4955 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
4956 69960a46 2019-05-09 stsp } else {
4957 69960a46 2019-05-09 stsp err = got_path_dirname(&parent_path, path);
4958 69960a46 2019-05-09 stsp if (err)
4959 69960a46 2019-05-09 stsp return err;
4960 69960a46 2019-05-09 stsp }
4961 c4296144 2019-05-09 stsp
4962 036813ee 2019-05-09 stsp ct = calloc(1, sizeof(*ct));
4963 cf066bf8 2019-05-09 stsp if (ct == NULL) {
4964 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
4965 c4296144 2019-05-09 stsp goto done;
4966 768aea60 2019-05-09 stsp }
4967 768aea60 2019-05-09 stsp
4968 dae2a678 2021-09-01 stsp if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
4969 768aea60 2019-05-09 stsp relpath) == -1) {
4970 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4971 768aea60 2019-05-09 stsp goto done;
4972 768aea60 2019-05-09 stsp }
4973 0aeb8099 2020-07-23 stsp
4974 0aeb8099 2020-07-23 stsp if (staged_status == GOT_STATUS_ADD ||
4975 0aeb8099 2020-07-23 stsp staged_status == GOT_STATUS_MODIFY) {
4976 0aeb8099 2020-07-23 stsp struct got_fileindex_entry *ie;
4977 dae2a678 2021-09-01 stsp ie = got_fileindex_entry_get(a->fileindex, path, strlen(path));
4978 0aeb8099 2020-07-23 stsp switch (got_fileindex_entry_staged_filetype_get(ie)) {
4979 0aeb8099 2020-07-23 stsp case GOT_FILEIDX_MODE_REGULAR_FILE:
4980 0aeb8099 2020-07-23 stsp case GOT_FILEIDX_MODE_BAD_SYMLINK:
4981 0aeb8099 2020-07-23 stsp ct->mode = S_IFREG;
4982 0aeb8099 2020-07-23 stsp break;
4983 0aeb8099 2020-07-23 stsp case GOT_FILEIDX_MODE_SYMLINK:
4984 0aeb8099 2020-07-23 stsp ct->mode = S_IFLNK;
4985 0aeb8099 2020-07-23 stsp break;
4986 0aeb8099 2020-07-23 stsp default:
4987 0aeb8099 2020-07-23 stsp err = got_error_path(path, GOT_ERR_BAD_FILETYPE);
4988 0aeb8099 2020-07-23 stsp goto done;
4989 0aeb8099 2020-07-23 stsp }
4990 0aeb8099 2020-07-23 stsp ct->mode |= got_fileindex_entry_perms_get(ie);
4991 0aeb8099 2020-07-23 stsp } else if (status != GOT_STATUS_DELETE &&
4992 0aeb8099 2020-07-23 stsp staged_status != GOT_STATUS_DELETE) {
4993 12463d8b 2019-12-13 stsp if (dirfd != -1) {
4994 12463d8b 2019-12-13 stsp if (fstatat(dirfd, de_name, &sb,
4995 12463d8b 2019-12-13 stsp AT_SYMLINK_NOFOLLOW) == -1) {
4996 82223ffc 2019-12-13 stsp err = got_error_from_errno2("fstatat",
4997 12463d8b 2019-12-13 stsp ct->ondisk_path);
4998 12463d8b 2019-12-13 stsp goto done;
4999 12463d8b 2019-12-13 stsp }
5000 12463d8b 2019-12-13 stsp } else if (lstat(ct->ondisk_path, &sb) == -1) {
5001 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", ct->ondisk_path);
5002 768aea60 2019-05-09 stsp goto done;
5003 768aea60 2019-05-09 stsp }
5004 768aea60 2019-05-09 stsp ct->mode = sb.st_mode;
5005 c4296144 2019-05-09 stsp }
5006 c4296144 2019-05-09 stsp
5007 dae2a678 2021-09-01 stsp if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
5008 dae2a678 2021-09-01 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
5009 44d03001 2019-05-09 stsp relpath) == -1) {
5010 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5011 44d03001 2019-05-09 stsp goto done;
5012 44d03001 2019-05-09 stsp }
5013 44d03001 2019-05-09 stsp
5014 35213c7c 2020-07-23 stsp if (S_ISLNK(ct->mode) && staged_status == GOT_STATUS_NO_CHANGE &&
5015 dae2a678 2021-09-01 stsp status == GOT_STATUS_ADD && !a->allow_bad_symlinks) {
5016 35213c7c 2020-07-23 stsp int is_bad_symlink;
5017 35213c7c 2020-07-23 stsp char target_path[PATH_MAX];
5018 35213c7c 2020-07-23 stsp ssize_t target_len;
5019 35213c7c 2020-07-23 stsp target_len = readlink(ct->ondisk_path, target_path,
5020 35213c7c 2020-07-23 stsp sizeof(target_path));
5021 35213c7c 2020-07-23 stsp if (target_len == -1) {
5022 35213c7c 2020-07-23 stsp err = got_error_from_errno2("readlink",
5023 35213c7c 2020-07-23 stsp ct->ondisk_path);
5024 35213c7c 2020-07-23 stsp goto done;
5025 35213c7c 2020-07-23 stsp }
5026 35213c7c 2020-07-23 stsp err = is_bad_symlink_target(&is_bad_symlink, target_path,
5027 dae2a678 2021-09-01 stsp target_len, ct->ondisk_path, a->worktree->root_path);
5028 35213c7c 2020-07-23 stsp if (err)
5029 35213c7c 2020-07-23 stsp goto done;
5030 35213c7c 2020-07-23 stsp if (is_bad_symlink) {
5031 35213c7c 2020-07-23 stsp err = got_error_path(ct->ondisk_path,
5032 35213c7c 2020-07-23 stsp GOT_ERR_BAD_SYMLINK);
5033 35213c7c 2020-07-23 stsp goto done;
5034 35213c7c 2020-07-23 stsp }
5035 35213c7c 2020-07-23 stsp }
5036 35213c7c 2020-07-23 stsp
5037 35213c7c 2020-07-23 stsp
5038 cf066bf8 2019-05-09 stsp ct->status = status;
5039 5f8a88c6 2019-08-03 stsp ct->staged_status = staged_status;
5040 e75eb4da 2019-05-10 stsp ct->blob_id = NULL; /* will be filled in when blob gets created */
5041 5f8a88c6 2019-08-03 stsp if (ct->status != GOT_STATUS_ADD &&
5042 5f8a88c6 2019-08-03 stsp ct->staged_status != GOT_STATUS_ADD) {
5043 016a88dd 2019-05-13 stsp ct->base_blob_id = got_object_id_dup(blob_id);
5044 c4e12a88 2019-05-13 stsp if (ct->base_blob_id == NULL) {
5045 b416585c 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5046 b416585c 2019-05-13 stsp goto done;
5047 b416585c 2019-05-13 stsp }
5048 b416585c 2019-05-13 stsp ct->base_commit_id = got_object_id_dup(commit_id);
5049 b416585c 2019-05-13 stsp if (ct->base_commit_id == NULL) {
5050 f0b75401 2019-08-03 stsp err = got_error_from_errno("got_object_id_dup");
5051 f0b75401 2019-08-03 stsp goto done;
5052 f0b75401 2019-08-03 stsp }
5053 f0b75401 2019-08-03 stsp }
5054 f0b75401 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_ADD ||
5055 f0b75401 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY) {
5056 f0b75401 2019-08-03 stsp ct->staged_blob_id = got_object_id_dup(staged_blob_id);
5057 f0b75401 2019-08-03 stsp if (ct->staged_blob_id == NULL) {
5058 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5059 036813ee 2019-05-09 stsp goto done;
5060 036813ee 2019-05-09 stsp }
5061 ca2503ea 2019-05-09 stsp }
5062 24519714 2019-05-09 stsp ct->path = strdup(path);
5063 24519714 2019-05-09 stsp if (ct->path == NULL) {
5064 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
5065 24519714 2019-05-09 stsp goto done;
5066 24519714 2019-05-09 stsp }
5067 dae2a678 2021-09-01 stsp err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
5068 c4296144 2019-05-09 stsp done:
5069 c42269f6 2019-05-09 stsp if (ct && (err || new == NULL))
5070 ed175427 2019-05-09 stsp free_commitable(ct);
5071 24519714 2019-05-09 stsp free(parent_path);
5072 036813ee 2019-05-09 stsp free(path);
5073 a129376b 2019-03-28 stsp return err;
5074 a129376b 2019-03-28 stsp }
5075 c4296144 2019-05-09 stsp
5076 ba580f68 2020-03-22 stsp static const struct got_error *write_tree(struct got_object_id **, int *,
5077 036813ee 2019-05-09 stsp struct got_tree_object *, const char *, struct got_pathlist_head *,
5078 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
5079 036813ee 2019-05-09 stsp struct got_repository *);
5080 ed175427 2019-05-09 stsp
5081 ed175427 2019-05-09 stsp static const struct got_error *
5082 ba580f68 2020-03-22 stsp write_subtree(struct got_object_id **new_subtree_id, int *nentries,
5083 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *parent_path,
5084 afa376bf 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
5085 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
5086 afa376bf 2019-05-09 stsp struct got_repository *repo)
5087 ed175427 2019-05-09 stsp {
5088 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
5089 036813ee 2019-05-09 stsp struct got_tree_object *subtree;
5090 036813ee 2019-05-09 stsp char *subpath;
5091 ed175427 2019-05-09 stsp
5092 036813ee 2019-05-09 stsp if (asprintf(&subpath, "%s%s%s", parent_path,
5093 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
5094 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5095 ed175427 2019-05-09 stsp
5096 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, repo, &te->id);
5097 ed175427 2019-05-09 stsp if (err)
5098 ed175427 2019-05-09 stsp return err;
5099 ed175427 2019-05-09 stsp
5100 ba580f68 2020-03-22 stsp err = write_tree(new_subtree_id, nentries, subtree, subpath,
5101 ba580f68 2020-03-22 stsp commitable_paths, status_cb, status_arg, repo);
5102 036813ee 2019-05-09 stsp got_object_tree_close(subtree);
5103 036813ee 2019-05-09 stsp free(subpath);
5104 036813ee 2019-05-09 stsp return err;
5105 036813ee 2019-05-09 stsp }
5106 ed175427 2019-05-09 stsp
5107 036813ee 2019-05-09 stsp static const struct got_error *
5108 33ad4cbe 2019-05-12 jcs match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
5109 036813ee 2019-05-09 stsp {
5110 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5111 036813ee 2019-05-09 stsp char *ct_parent_path = NULL;
5112 ed175427 2019-05-09 stsp
5113 036813ee 2019-05-09 stsp *match = 0;
5114 ed175427 2019-05-09 stsp
5115 e0233cea 2019-07-25 stsp if (strchr(ct->in_repo_path, '/') == NULL) {
5116 0f63689d 2019-05-10 stsp *match = got_path_is_root_dir(path);
5117 0f63689d 2019-05-10 stsp return NULL;
5118 036813ee 2019-05-09 stsp }
5119 0b5cc0d6 2019-05-09 stsp
5120 e0233cea 2019-07-25 stsp err = got_path_dirname(&ct_parent_path, ct->in_repo_path);
5121 0f63689d 2019-05-10 stsp if (err)
5122 0f63689d 2019-05-10 stsp return err;
5123 036813ee 2019-05-09 stsp *match = (strcmp(path, ct_parent_path) == 0);
5124 036813ee 2019-05-09 stsp free(ct_parent_path);
5125 036813ee 2019-05-09 stsp return err;
5126 036813ee 2019-05-09 stsp }
5127 0b5cc0d6 2019-05-09 stsp
5128 768aea60 2019-05-09 stsp static mode_t
5129 33ad4cbe 2019-05-12 jcs get_ct_file_mode(struct got_commitable *ct)
5130 768aea60 2019-05-09 stsp {
5131 3d9a4ec4 2020-07-23 stsp if (S_ISLNK(ct->mode))
5132 3d9a4ec4 2020-07-23 stsp return S_IFLNK;
5133 3d9a4ec4 2020-07-23 stsp
5134 768aea60 2019-05-09 stsp return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
5135 768aea60 2019-05-09 stsp }
5136 768aea60 2019-05-09 stsp
5137 036813ee 2019-05-09 stsp static const struct got_error *
5138 036813ee 2019-05-09 stsp alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
5139 33ad4cbe 2019-05-12 jcs struct got_tree_entry *te, struct got_commitable *ct)
5140 036813ee 2019-05-09 stsp {
5141 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5142 ca2503ea 2019-05-09 stsp
5143 036813ee 2019-05-09 stsp *new_te = NULL;
5144 0b5cc0d6 2019-05-09 stsp
5145 036813ee 2019-05-09 stsp err = got_object_tree_entry_dup(new_te, te);
5146 036813ee 2019-05-09 stsp if (err)
5147 036813ee 2019-05-09 stsp goto done;
5148 0b5cc0d6 2019-05-09 stsp
5149 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
5150 036813ee 2019-05-09 stsp
5151 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_MODIFY)
5152 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->staged_blob_id,
5153 56e0773d 2019-11-28 stsp sizeof((*new_te)->id));
5154 5f8a88c6 2019-08-03 stsp else
5155 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
5156 036813ee 2019-05-09 stsp done:
5157 036813ee 2019-05-09 stsp if (err && *new_te) {
5158 56e0773d 2019-11-28 stsp free(*new_te);
5159 036813ee 2019-05-09 stsp *new_te = NULL;
5160 036813ee 2019-05-09 stsp }
5161 036813ee 2019-05-09 stsp return err;
5162 036813ee 2019-05-09 stsp }
5163 036813ee 2019-05-09 stsp
5164 036813ee 2019-05-09 stsp static const struct got_error *
5165 036813ee 2019-05-09 stsp alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
5166 33ad4cbe 2019-05-12 jcs struct got_commitable *ct)
5167 036813ee 2019-05-09 stsp {
5168 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5169 102b254e 2020-10-19 stsp char *ct_name = NULL;
5170 036813ee 2019-05-09 stsp
5171 036813ee 2019-05-09 stsp *new_te = NULL;
5172 036813ee 2019-05-09 stsp
5173 4229330b 2019-05-10 stsp *new_te = calloc(1, sizeof(**new_te));
5174 036813ee 2019-05-09 stsp if (*new_te == NULL)
5175 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
5176 036813ee 2019-05-09 stsp
5177 102b254e 2020-10-19 stsp err = got_path_basename(&ct_name, ct->path);
5178 102b254e 2020-10-19 stsp if (err)
5179 036813ee 2019-05-09 stsp goto done;
5180 56e0773d 2019-11-28 stsp if (strlcpy((*new_te)->name, ct_name, sizeof((*new_te)->name)) >=
5181 56e0773d 2019-11-28 stsp sizeof((*new_te)->name)) {
5182 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
5183 036813ee 2019-05-09 stsp goto done;
5184 036813ee 2019-05-09 stsp }
5185 036813ee 2019-05-09 stsp
5186 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
5187 036813ee 2019-05-09 stsp
5188 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_ADD)
5189 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->staged_blob_id,
5190 56e0773d 2019-11-28 stsp sizeof((*new_te)->id));
5191 5f8a88c6 2019-08-03 stsp else
5192 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
5193 036813ee 2019-05-09 stsp done:
5194 102b254e 2020-10-19 stsp free(ct_name);
5195 036813ee 2019-05-09 stsp if (err && *new_te) {
5196 56e0773d 2019-11-28 stsp free(*new_te);
5197 036813ee 2019-05-09 stsp *new_te = NULL;
5198 036813ee 2019-05-09 stsp }
5199 036813ee 2019-05-09 stsp return err;
5200 036813ee 2019-05-09 stsp }
5201 036813ee 2019-05-09 stsp
5202 036813ee 2019-05-09 stsp static const struct got_error *
5203 036813ee 2019-05-09 stsp insert_tree_entry(struct got_tree_entry *new_te,
5204 036813ee 2019-05-09 stsp struct got_pathlist_head *paths)
5205 036813ee 2019-05-09 stsp {
5206 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5207 036813ee 2019-05-09 stsp struct got_pathlist_entry *new_pe;
5208 036813ee 2019-05-09 stsp
5209 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
5210 036813ee 2019-05-09 stsp if (err)
5211 036813ee 2019-05-09 stsp return err;
5212 036813ee 2019-05-09 stsp if (new_pe == NULL)
5213 036813ee 2019-05-09 stsp return got_error(GOT_ERR_TREE_DUP_ENTRY);
5214 036813ee 2019-05-09 stsp return NULL;
5215 afa376bf 2019-05-09 stsp }
5216 afa376bf 2019-05-09 stsp
5217 afa376bf 2019-05-09 stsp static const struct got_error *
5218 33ad4cbe 2019-05-12 jcs report_ct_status(struct got_commitable *ct,
5219 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg)
5220 afa376bf 2019-05-09 stsp {
5221 afa376bf 2019-05-09 stsp const char *ct_path = ct->path;
5222 5f8a88c6 2019-08-03 stsp unsigned char status;
5223 5f8a88c6 2019-08-03 stsp
5224 afa376bf 2019-05-09 stsp while (ct_path[0] == '/')
5225 afa376bf 2019-05-09 stsp ct_path++;
5226 5f8a88c6 2019-08-03 stsp
5227 5f8a88c6 2019-08-03 stsp if (ct->staged_status != GOT_STATUS_NO_CHANGE)
5228 5f8a88c6 2019-08-03 stsp status = ct->staged_status;
5229 5f8a88c6 2019-08-03 stsp else
5230 5f8a88c6 2019-08-03 stsp status = ct->status;
5231 5f8a88c6 2019-08-03 stsp
5232 5f8a88c6 2019-08-03 stsp return (*status_cb)(status_arg, status, GOT_STATUS_NO_CHANGE,
5233 12463d8b 2019-12-13 stsp ct_path, ct->blob_id, NULL, NULL, -1, NULL);
5234 036813ee 2019-05-09 stsp }
5235 036813ee 2019-05-09 stsp
5236 036813ee 2019-05-09 stsp static const struct got_error *
5237 44d03001 2019-05-09 stsp match_modified_subtree(int *modified, struct got_tree_entry *te,
5238 44d03001 2019-05-09 stsp const char *base_tree_path, struct got_pathlist_head *commitable_paths)
5239 44d03001 2019-05-09 stsp {
5240 44d03001 2019-05-09 stsp const struct got_error *err = NULL;
5241 44d03001 2019-05-09 stsp struct got_pathlist_entry *pe;
5242 44d03001 2019-05-09 stsp char *te_path;
5243 44d03001 2019-05-09 stsp
5244 44d03001 2019-05-09 stsp *modified = 0;
5245 44d03001 2019-05-09 stsp
5246 44d03001 2019-05-09 stsp if (asprintf(&te_path, "%s%s%s", base_tree_path,
5247 44d03001 2019-05-09 stsp got_path_is_root_dir(base_tree_path) ? "" : "/",
5248 44d03001 2019-05-09 stsp te->name) == -1)
5249 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5250 44d03001 2019-05-09 stsp
5251 44d03001 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5252 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5253 44d03001 2019-05-09 stsp *modified = got_path_is_child(ct->in_repo_path, te_path,
5254 44d03001 2019-05-09 stsp strlen(te_path));
5255 62d463ca 2020-10-20 naddy if (*modified)
5256 44d03001 2019-05-09 stsp break;
5257 44d03001 2019-05-09 stsp }
5258 44d03001 2019-05-09 stsp
5259 44d03001 2019-05-09 stsp free(te_path);
5260 44d03001 2019-05-09 stsp return err;
5261 44d03001 2019-05-09 stsp }
5262 44d03001 2019-05-09 stsp
5263 44d03001 2019-05-09 stsp static const struct got_error *
5264 33ad4cbe 2019-05-12 jcs match_deleted_or_modified_ct(struct got_commitable **ctp,
5265 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *base_tree_path,
5266 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths)
5267 036813ee 2019-05-09 stsp {
5268 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5269 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
5270 036813ee 2019-05-09 stsp
5271 036813ee 2019-05-09 stsp *ctp = NULL;
5272 036813ee 2019-05-09 stsp
5273 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5274 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5275 036813ee 2019-05-09 stsp char *ct_name = NULL;
5276 036813ee 2019-05-09 stsp int path_matches;
5277 036813ee 2019-05-09 stsp
5278 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_NO_CHANGE) {
5279 5f8a88c6 2019-08-03 stsp if (ct->status != GOT_STATUS_MODIFY &&
5280 1ebedb77 2019-10-19 stsp ct->status != GOT_STATUS_MODE_CHANGE &&
5281 5f8a88c6 2019-08-03 stsp ct->status != GOT_STATUS_DELETE)
5282 5f8a88c6 2019-08-03 stsp continue;
5283 5f8a88c6 2019-08-03 stsp } else {
5284 5f8a88c6 2019-08-03 stsp if (ct->staged_status != GOT_STATUS_MODIFY &&
5285 5f8a88c6 2019-08-03 stsp ct->staged_status != GOT_STATUS_DELETE)
5286 5f8a88c6 2019-08-03 stsp continue;
5287 5f8a88c6 2019-08-03 stsp }
5288 036813ee 2019-05-09 stsp
5289 56e0773d 2019-11-28 stsp if (got_object_id_cmp(ct->base_blob_id, &te->id) != 0)
5290 036813ee 2019-05-09 stsp continue;
5291 036813ee 2019-05-09 stsp
5292 62d463ca 2020-10-20 naddy err = match_ct_parent_path(&path_matches, ct, base_tree_path);
5293 62d463ca 2020-10-20 naddy if (err)
5294 036813ee 2019-05-09 stsp return err;
5295 036813ee 2019-05-09 stsp if (!path_matches)
5296 036813ee 2019-05-09 stsp continue;
5297 036813ee 2019-05-09 stsp
5298 d34b633e 2020-10-19 stsp err = got_path_basename(&ct_name, pe->path);
5299 d34b633e 2020-10-19 stsp if (err)
5300 d34b633e 2020-10-19 stsp return err;
5301 d34b633e 2020-10-19 stsp
5302 d34b633e 2020-10-19 stsp if (strcmp(te->name, ct_name) != 0) {
5303 d34b633e 2020-10-19 stsp free(ct_name);
5304 036813ee 2019-05-09 stsp continue;
5305 d34b633e 2020-10-19 stsp }
5306 d34b633e 2020-10-19 stsp free(ct_name);
5307 036813ee 2019-05-09 stsp
5308 036813ee 2019-05-09 stsp *ctp = ct;
5309 036813ee 2019-05-09 stsp break;
5310 036813ee 2019-05-09 stsp }
5311 2b496619 2019-07-10 stsp
5312 2b496619 2019-07-10 stsp return err;
5313 2b496619 2019-07-10 stsp }
5314 2b496619 2019-07-10 stsp
5315 2b496619 2019-07-10 stsp static const struct got_error *
5316 2b496619 2019-07-10 stsp make_subtree_for_added_blob(struct got_tree_entry **new_tep,
5317 2b496619 2019-07-10 stsp const char *child_path, const char *path_base_tree,
5318 2b496619 2019-07-10 stsp struct got_pathlist_head *commitable_paths,
5319 2b496619 2019-07-10 stsp got_worktree_status_cb status_cb, void *status_arg,
5320 2b496619 2019-07-10 stsp struct got_repository *repo)
5321 2b496619 2019-07-10 stsp {
5322 2b496619 2019-07-10 stsp const struct got_error *err = NULL;
5323 2b496619 2019-07-10 stsp struct got_tree_entry *new_te;
5324 2b496619 2019-07-10 stsp char *subtree_path;
5325 56e0773d 2019-11-28 stsp struct got_object_id *id = NULL;
5326 ba580f68 2020-03-22 stsp int nentries;
5327 2b496619 2019-07-10 stsp
5328 2b496619 2019-07-10 stsp *new_tep = NULL;
5329 2b496619 2019-07-10 stsp
5330 2b496619 2019-07-10 stsp if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
5331 2b496619 2019-07-10 stsp got_path_is_root_dir(path_base_tree) ? "" : "/",
5332 2b496619 2019-07-10 stsp child_path) == -1)
5333 2b496619 2019-07-10 stsp return got_error_from_errno("asprintf");
5334 036813ee 2019-05-09 stsp
5335 2b496619 2019-07-10 stsp new_te = calloc(1, sizeof(*new_te));
5336 d6fca0ba 2019-09-15 hiltjo if (new_te == NULL)
5337 d6fca0ba 2019-09-15 hiltjo return got_error_from_errno("calloc");
5338 2b496619 2019-07-10 stsp new_te->mode = S_IFDIR;
5339 56e0773d 2019-11-28 stsp
5340 56e0773d 2019-11-28 stsp if (strlcpy(new_te->name, child_path, sizeof(new_te->name)) >=
5341 56e0773d 2019-11-28 stsp sizeof(new_te->name)) {
5342 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
5343 2b496619 2019-07-10 stsp goto done;
5344 2b496619 2019-07-10 stsp }
5345 ba580f68 2020-03-22 stsp err = write_tree(&id, &nentries, NULL, subtree_path,
5346 2b496619 2019-07-10 stsp commitable_paths, status_cb, status_arg, repo);
5347 2b496619 2019-07-10 stsp if (err) {
5348 56e0773d 2019-11-28 stsp free(new_te);
5349 2b496619 2019-07-10 stsp goto done;
5350 2b496619 2019-07-10 stsp }
5351 56e0773d 2019-11-28 stsp memcpy(&new_te->id, id, sizeof(new_te->id));
5352 2b496619 2019-07-10 stsp done:
5353 56e0773d 2019-11-28 stsp free(id);
5354 2b496619 2019-07-10 stsp free(subtree_path);
5355 2b496619 2019-07-10 stsp if (err == NULL)
5356 2b496619 2019-07-10 stsp *new_tep = new_te;
5357 036813ee 2019-05-09 stsp return err;
5358 036813ee 2019-05-09 stsp }
5359 036813ee 2019-05-09 stsp
5360 036813ee 2019-05-09 stsp static const struct got_error *
5361 ba580f68 2020-03-22 stsp write_tree(struct got_object_id **new_tree_id, int *nentries,
5362 036813ee 2019-05-09 stsp struct got_tree_object *base_tree, const char *path_base_tree,
5363 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
5364 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
5365 036813ee 2019-05-09 stsp struct got_repository *repo)
5366 036813ee 2019-05-09 stsp {
5367 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5368 036813ee 2019-05-09 stsp struct got_pathlist_head paths;
5369 2f51b5b3 2019-05-09 stsp struct got_tree_entry *te, *new_te = NULL;
5370 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
5371 036813ee 2019-05-09 stsp
5372 036813ee 2019-05-09 stsp TAILQ_INIT(&paths);
5373 ba580f68 2020-03-22 stsp *nentries = 0;
5374 036813ee 2019-05-09 stsp
5375 036813ee 2019-05-09 stsp /* Insert, and recurse into, newly added entries first. */
5376 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5377 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5378 2f51b5b3 2019-05-09 stsp char *child_path = NULL, *slash;
5379 036813ee 2019-05-09 stsp
5380 5f8a88c6 2019-08-03 stsp if ((ct->status != GOT_STATUS_ADD &&
5381 5f8a88c6 2019-08-03 stsp ct->staged_status != GOT_STATUS_ADD) ||
5382 a3df2849 2019-05-20 stsp (ct->flags & GOT_COMMITABLE_ADDED))
5383 036813ee 2019-05-09 stsp continue;
5384 036813ee 2019-05-09 stsp
5385 62d463ca 2020-10-20 naddy if (!got_path_is_child(ct->in_repo_path, path_base_tree,
5386 62d463ca 2020-10-20 naddy strlen(path_base_tree)))
5387 036813ee 2019-05-09 stsp continue;
5388 036813ee 2019-05-09 stsp
5389 036813ee 2019-05-09 stsp err = got_path_skip_common_ancestor(&child_path, path_base_tree,
5390 f2b0a8b0 2020-07-31 stsp ct->in_repo_path);
5391 036813ee 2019-05-09 stsp if (err)
5392 036813ee 2019-05-09 stsp goto done;
5393 036813ee 2019-05-09 stsp
5394 2f51b5b3 2019-05-09 stsp slash = strchr(child_path, '/');
5395 2f51b5b3 2019-05-09 stsp if (slash == NULL) {
5396 036813ee 2019-05-09 stsp err = alloc_added_blob_tree_entry(&new_te, ct);
5397 036813ee 2019-05-09 stsp if (err)
5398 036813ee 2019-05-09 stsp goto done;
5399 afa376bf 2019-05-09 stsp err = report_ct_status(ct, status_cb, status_arg);
5400 afa376bf 2019-05-09 stsp if (err)
5401 afa376bf 2019-05-09 stsp goto done;
5402 a3df2849 2019-05-20 stsp ct->flags |= GOT_COMMITABLE_ADDED;
5403 2b496619 2019-07-10 stsp err = insert_tree_entry(new_te, &paths);
5404 2b496619 2019-07-10 stsp if (err)
5405 2f51b5b3 2019-05-09 stsp goto done;
5406 ba580f68 2020-03-22 stsp (*nentries)++;
5407 2b496619 2019-07-10 stsp } else {
5408 2b496619 2019-07-10 stsp *slash = '\0'; /* trim trailing path components */
5409 2b496619 2019-07-10 stsp if (base_tree == NULL ||
5410 2b496619 2019-07-10 stsp got_object_tree_find_entry(base_tree, child_path)
5411 2b496619 2019-07-10 stsp == NULL) {
5412 2b496619 2019-07-10 stsp err = make_subtree_for_added_blob(&new_te,
5413 2b496619 2019-07-10 stsp child_path, path_base_tree,
5414 2b496619 2019-07-10 stsp commitable_paths, status_cb, status_arg,
5415 2b496619 2019-07-10 stsp repo);
5416 2b496619 2019-07-10 stsp if (err)
5417 2b496619 2019-07-10 stsp goto done;
5418 2b496619 2019-07-10 stsp err = insert_tree_entry(new_te, &paths);
5419 2b496619 2019-07-10 stsp if (err)
5420 2b496619 2019-07-10 stsp goto done;
5421 ba580f68 2020-03-22 stsp (*nentries)++;
5422 9ba0479c 2019-05-10 stsp }
5423 ed175427 2019-05-09 stsp }
5424 2f51b5b3 2019-05-09 stsp }
5425 2f51b5b3 2019-05-09 stsp
5426 2f51b5b3 2019-05-09 stsp if (base_tree) {
5427 56e0773d 2019-11-28 stsp int i, nbase_entries;
5428 2f51b5b3 2019-05-09 stsp /* Handle modified and deleted entries. */
5429 56e0773d 2019-11-28 stsp nbase_entries = got_object_tree_get_nentries(base_tree);
5430 56e0773d 2019-11-28 stsp for (i = 0; i < nbase_entries; i++) {
5431 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
5432 63c5ca5d 2019-08-24 stsp
5433 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(base_tree, i);
5434 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te)) {
5435 63c5ca5d 2019-08-24 stsp /* Entry is a submodule; just copy it. */
5436 63c5ca5d 2019-08-24 stsp err = got_object_tree_entry_dup(&new_te, te);
5437 63c5ca5d 2019-08-24 stsp if (err)
5438 63c5ca5d 2019-08-24 stsp goto done;
5439 63c5ca5d 2019-08-24 stsp err = insert_tree_entry(new_te, &paths);
5440 63c5ca5d 2019-08-24 stsp if (err)
5441 63c5ca5d 2019-08-24 stsp goto done;
5442 ba580f68 2020-03-22 stsp (*nentries)++;
5443 63c5ca5d 2019-08-24 stsp continue;
5444 63c5ca5d 2019-08-24 stsp }
5445 2f51b5b3 2019-05-09 stsp
5446 2f51b5b3 2019-05-09 stsp if (S_ISDIR(te->mode)) {
5447 44d03001 2019-05-09 stsp int modified;
5448 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
5449 036813ee 2019-05-09 stsp if (err)
5450 036813ee 2019-05-09 stsp goto done;
5451 44d03001 2019-05-09 stsp err = match_modified_subtree(&modified, te,
5452 44d03001 2019-05-09 stsp path_base_tree, commitable_paths);
5453 2f51b5b3 2019-05-09 stsp if (err)
5454 2f51b5b3 2019-05-09 stsp goto done;
5455 44d03001 2019-05-09 stsp /* Avoid recursion into unmodified subtrees. */
5456 44d03001 2019-05-09 stsp if (modified) {
5457 56e0773d 2019-11-28 stsp struct got_object_id *new_id;
5458 ba580f68 2020-03-22 stsp int nsubentries;
5459 ba580f68 2020-03-22 stsp err = write_subtree(&new_id,
5460 ba580f68 2020-03-22 stsp &nsubentries, te,
5461 44d03001 2019-05-09 stsp path_base_tree, commitable_paths,
5462 44d03001 2019-05-09 stsp status_cb, status_arg, repo);
5463 44d03001 2019-05-09 stsp if (err)
5464 44d03001 2019-05-09 stsp goto done;
5465 ba580f68 2020-03-22 stsp if (nsubentries == 0) {
5466 ba580f68 2020-03-22 stsp /* All entries were deleted. */
5467 ba580f68 2020-03-22 stsp free(new_id);
5468 ba580f68 2020-03-22 stsp continue;
5469 ba580f68 2020-03-22 stsp }
5470 56e0773d 2019-11-28 stsp memcpy(&new_te->id, new_id,
5471 56e0773d 2019-11-28 stsp sizeof(new_te->id));
5472 56e0773d 2019-11-28 stsp free(new_id);
5473 44d03001 2019-05-09 stsp }
5474 036813ee 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
5475 036813ee 2019-05-09 stsp if (err)
5476 036813ee 2019-05-09 stsp goto done;
5477 ba580f68 2020-03-22 stsp (*nentries)++;
5478 2f51b5b3 2019-05-09 stsp continue;
5479 036813ee 2019-05-09 stsp }
5480 2f51b5b3 2019-05-09 stsp
5481 2f51b5b3 2019-05-09 stsp err = match_deleted_or_modified_ct(&ct, te,
5482 2f51b5b3 2019-05-09 stsp path_base_tree, commitable_paths);
5483 f66c734c 2019-09-22 stsp if (err)
5484 f66c734c 2019-09-22 stsp goto done;
5485 2f51b5b3 2019-05-09 stsp if (ct) {
5486 2f51b5b3 2019-05-09 stsp /* NB: Deleted entries get dropped here. */
5487 5f8a88c6 2019-08-03 stsp if (ct->status == GOT_STATUS_MODIFY ||
5488 1ebedb77 2019-10-19 stsp ct->status == GOT_STATUS_MODE_CHANGE ||
5489 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY) {
5490 2f51b5b3 2019-05-09 stsp err = alloc_modified_blob_tree_entry(
5491 2f51b5b3 2019-05-09 stsp &new_te, te, ct);
5492 2f51b5b3 2019-05-09 stsp if (err)
5493 2f51b5b3 2019-05-09 stsp goto done;
5494 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
5495 2f51b5b3 2019-05-09 stsp if (err)
5496 2f51b5b3 2019-05-09 stsp goto done;
5497 ba580f68 2020-03-22 stsp (*nentries)++;
5498 2f51b5b3 2019-05-09 stsp }
5499 b416585c 2019-05-13 stsp err = report_ct_status(ct, status_cb,
5500 b416585c 2019-05-13 stsp status_arg);
5501 afa376bf 2019-05-09 stsp if (err)
5502 afa376bf 2019-05-09 stsp goto done;
5503 2f51b5b3 2019-05-09 stsp } else {
5504 2f51b5b3 2019-05-09 stsp /* Entry is unchanged; just copy it. */
5505 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
5506 2f51b5b3 2019-05-09 stsp if (err)
5507 2f51b5b3 2019-05-09 stsp goto done;
5508 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
5509 2f51b5b3 2019-05-09 stsp if (err)
5510 2f51b5b3 2019-05-09 stsp goto done;
5511 ba580f68 2020-03-22 stsp (*nentries)++;
5512 2f51b5b3 2019-05-09 stsp }
5513 ca2503ea 2019-05-09 stsp }
5514 ed175427 2019-05-09 stsp }
5515 0b5cc0d6 2019-05-09 stsp
5516 036813ee 2019-05-09 stsp /* Write new list of entries; deleted entries have been dropped. */
5517 ba580f68 2020-03-22 stsp err = got_object_tree_create(new_tree_id, &paths, *nentries, repo);
5518 ed175427 2019-05-09 stsp done:
5519 036813ee 2019-05-09 stsp got_pathlist_free(&paths);
5520 2e1fa222 2020-07-23 stsp return err;
5521 2e1fa222 2020-07-23 stsp }
5522 2e1fa222 2020-07-23 stsp
5523 2e1fa222 2020-07-23 stsp static const struct got_error *
5524 437adc9d 2020-12-10 yzhong update_fileindex_after_commit(struct got_worktree *worktree,
5525 437adc9d 2020-12-10 yzhong struct got_pathlist_head *commitable_paths,
5526 437adc9d 2020-12-10 yzhong struct got_object_id *new_base_commit_id,
5527 437adc9d 2020-12-10 yzhong struct got_fileindex *fileindex, int have_staged_files)
5528 ebf99748 2019-05-09 stsp {
5529 8ec7bf54 2019-07-12 stsp const struct got_error *err = NULL;
5530 ebf99748 2019-05-09 stsp struct got_pathlist_entry *pe;
5531 437adc9d 2020-12-10 yzhong char *relpath = NULL;
5532 ebf99748 2019-05-09 stsp
5533 ebf99748 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5534 ebf99748 2019-05-09 stsp struct got_fileindex_entry *ie;
5535 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5536 ebf99748 2019-05-09 stsp
5537 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5538 437adc9d 2020-12-10 yzhong
5539 437adc9d 2020-12-10 yzhong err = got_path_skip_common_ancestor(&relpath,
5540 437adc9d 2020-12-10 yzhong worktree->root_path, ct->ondisk_path);
5541 437adc9d 2020-12-10 yzhong if (err)
5542 437adc9d 2020-12-10 yzhong goto done;
5543 437adc9d 2020-12-10 yzhong
5544 ebf99748 2019-05-09 stsp if (ie) {
5545 5f8a88c6 2019-08-03 stsp if (ct->status == GOT_STATUS_DELETE ||
5546 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_DELETE) {
5547 ebf99748 2019-05-09 stsp got_fileindex_entry_remove(fileindex, ie);
5548 5f8a88c6 2019-08-03 stsp } else if (ct->staged_status == GOT_STATUS_ADD ||
5549 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY) {
5550 5f8a88c6 2019-08-03 stsp got_fileindex_entry_stage_set(ie,
5551 5f8a88c6 2019-08-03 stsp GOT_FILEIDX_STAGE_NONE);
5552 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
5553 437adc9d 2020-12-10 yzhong
5554 5f8a88c6 2019-08-03 stsp err = got_fileindex_entry_update(ie,
5555 437adc9d 2020-12-10 yzhong worktree->root_fd, relpath,
5556 437adc9d 2020-12-10 yzhong ct->staged_blob_id->sha1,
5557 72fd46fa 2019-09-06 stsp new_base_commit_id->sha1,
5558 72fd46fa 2019-09-06 stsp !have_staged_files);
5559 ebf99748 2019-05-09 stsp } else
5560 ebf99748 2019-05-09 stsp err = got_fileindex_entry_update(ie,
5561 437adc9d 2020-12-10 yzhong worktree->root_fd, relpath,
5562 437adc9d 2020-12-10 yzhong ct->blob_id->sha1,
5563 72fd46fa 2019-09-06 stsp new_base_commit_id->sha1,
5564 72fd46fa 2019-09-06 stsp !have_staged_files);
5565 ebf99748 2019-05-09 stsp } else {
5566 3969253a 2020-03-07 stsp err = got_fileindex_entry_alloc(&ie, pe->path);
5567 ebf99748 2019-05-09 stsp if (err)
5568 437adc9d 2020-12-10 yzhong goto done;
5569 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie,
5570 437adc9d 2020-12-10 yzhong worktree->root_fd, relpath, ct->blob_id->sha1,
5571 437adc9d 2020-12-10 yzhong new_base_commit_id->sha1, 1);
5572 3969253a 2020-03-07 stsp if (err) {
5573 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
5574 437adc9d 2020-12-10 yzhong goto done;
5575 3969253a 2020-03-07 stsp }
5576 3969253a 2020-03-07 stsp err = got_fileindex_entry_add(fileindex, ie);
5577 3969253a 2020-03-07 stsp if (err) {
5578 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
5579 437adc9d 2020-12-10 yzhong goto done;
5580 3969253a 2020-03-07 stsp }
5581 ebf99748 2019-05-09 stsp }
5582 437adc9d 2020-12-10 yzhong free(relpath);
5583 437adc9d 2020-12-10 yzhong relpath = NULL;
5584 ebf99748 2019-05-09 stsp }
5585 437adc9d 2020-12-10 yzhong done:
5586 437adc9d 2020-12-10 yzhong free(relpath);
5587 d56d26ce 2019-05-10 stsp return err;
5588 d56d26ce 2019-05-10 stsp }
5589 735ef5ac 2019-08-03 stsp
5590 d56d26ce 2019-05-10 stsp
5591 d56d26ce 2019-05-10 stsp static const struct got_error *
5592 735ef5ac 2019-08-03 stsp check_out_of_date(const char *in_repo_path, unsigned char status,
5593 5f8a88c6 2019-08-03 stsp unsigned char staged_status, struct got_object_id *base_blob_id,
5594 5f8a88c6 2019-08-03 stsp struct got_object_id *base_commit_id,
5595 735ef5ac 2019-08-03 stsp struct got_object_id *head_commit_id, struct got_repository *repo,
5596 735ef5ac 2019-08-03 stsp int ood_errcode)
5597 d56d26ce 2019-05-10 stsp {
5598 d56d26ce 2019-05-10 stsp const struct got_error *err = NULL;
5599 9bead371 2019-07-28 stsp struct got_object_id *id = NULL;
5600 1a36436d 2019-06-10 stsp
5601 5f8a88c6 2019-08-03 stsp if (status != GOT_STATUS_ADD && staged_status != GOT_STATUS_ADD) {
5602 1a36436d 2019-06-10 stsp /* Trivial case: base commit == head commit */
5603 735ef5ac 2019-08-03 stsp if (got_object_id_cmp(base_commit_id, head_commit_id) == 0)
5604 1a36436d 2019-06-10 stsp return NULL;
5605 9bead371 2019-07-28 stsp /*
5606 9bead371 2019-07-28 stsp * Ensure file content which local changes were based
5607 9bead371 2019-07-28 stsp * on matches file content in the branch head.
5608 9bead371 2019-07-28 stsp */
5609 735ef5ac 2019-08-03 stsp err = got_object_id_by_path(&id, repo, head_commit_id,
5610 735ef5ac 2019-08-03 stsp in_repo_path);
5611 9bead371 2019-07-28 stsp if (err) {
5612 aa9f8247 2019-08-05 stsp if (err->code == GOT_ERR_NO_TREE_ENTRY)
5613 aa9f8247 2019-08-05 stsp err = got_error(ood_errcode);
5614 1a36436d 2019-06-10 stsp goto done;
5615 735ef5ac 2019-08-03 stsp } else if (got_object_id_cmp(id, base_blob_id) != 0)
5616 735ef5ac 2019-08-03 stsp err = got_error(ood_errcode);
5617 1a36436d 2019-06-10 stsp } else {
5618 1a36436d 2019-06-10 stsp /* Require that added files don't exist in the branch head. */
5619 735ef5ac 2019-08-03 stsp err = got_object_id_by_path(&id, repo, head_commit_id,
5620 735ef5ac 2019-08-03 stsp in_repo_path);
5621 1a36436d 2019-06-10 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
5622 1a36436d 2019-06-10 stsp goto done;
5623 735ef5ac 2019-08-03 stsp err = id ? got_error(ood_errcode) : NULL;
5624 1a36436d 2019-06-10 stsp }
5625 1a36436d 2019-06-10 stsp done:
5626 1a36436d 2019-06-10 stsp free(id);
5627 1a36436d 2019-06-10 stsp return err;
5628 ebf99748 2019-05-09 stsp }
5629 ebf99748 2019-05-09 stsp
5630 c4296144 2019-05-09 stsp const struct got_error *
5631 39cd0ff6 2019-07-12 stsp commit_worktree(struct got_object_id **new_commit_id,
5632 39cd0ff6 2019-07-12 stsp struct got_pathlist_head *commitable_paths,
5633 f259c4c1 2021-09-24 stsp struct got_object_id *head_commit_id,
5634 f259c4c1 2021-09-24 stsp struct got_object_id *parent_id2,
5635 f259c4c1 2021-09-24 stsp struct got_worktree *worktree,
5636 5c1e53bc 2019-07-28 stsp const char *author, const char *committer,
5637 33ad4cbe 2019-05-12 jcs got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5638 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
5639 afa376bf 2019-05-09 stsp struct got_repository *repo)
5640 c4296144 2019-05-09 stsp {
5641 39cd0ff6 2019-07-12 stsp const struct got_error *err = NULL, *unlockerr = NULL;
5642 c4296144 2019-05-09 stsp struct got_pathlist_entry *pe;
5643 bc70eb79 2019-05-09 stsp const char *head_ref_name = NULL;
5644 588edf97 2019-05-10 stsp struct got_commit_object *head_commit = NULL;
5645 09f5bd90 2019-05-09 stsp struct got_reference *head_ref2 = NULL;
5646 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id2 = NULL;
5647 588edf97 2019-05-10 stsp struct got_tree_object *head_tree = NULL;
5648 036813ee 2019-05-09 stsp struct got_object_id *new_tree_id = NULL;
5649 f259c4c1 2021-09-24 stsp int nentries, nparents = 0;
5650 de18fc63 2019-05-09 stsp struct got_object_id_queue parent_ids;
5651 de18fc63 2019-05-09 stsp struct got_object_qid *pid = NULL;
5652 33ad4cbe 2019-05-12 jcs char *logmsg = NULL;
5653 c4296144 2019-05-09 stsp
5654 c4296144 2019-05-09 stsp *new_commit_id = NULL;
5655 c4296144 2019-05-09 stsp
5656 dbdddfee 2021-06-23 naddy STAILQ_INIT(&parent_ids);
5657 675c7539 2019-05-09 stsp
5658 588edf97 2019-05-10 stsp err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
5659 588edf97 2019-05-10 stsp if (err)
5660 588edf97 2019-05-10 stsp goto done;
5661 de18fc63 2019-05-09 stsp
5662 588edf97 2019-05-10 stsp err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
5663 588edf97 2019-05-10 stsp if (err)
5664 588edf97 2019-05-10 stsp goto done;
5665 588edf97 2019-05-10 stsp
5666 33ad4cbe 2019-05-12 jcs if (commit_msg_cb != NULL) {
5667 39cd0ff6 2019-07-12 stsp err = commit_msg_cb(commitable_paths, &logmsg, commit_arg);
5668 33ad4cbe 2019-05-12 jcs if (err)
5669 33ad4cbe 2019-05-12 jcs goto done;
5670 33ad4cbe 2019-05-12 jcs }
5671 c4296144 2019-05-09 stsp
5672 33ad4cbe 2019-05-12 jcs if (logmsg == NULL || strlen(logmsg) == 0) {
5673 33ad4cbe 2019-05-12 jcs err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
5674 33ad4cbe 2019-05-12 jcs goto done;
5675 33ad4cbe 2019-05-12 jcs }
5676 33ad4cbe 2019-05-12 jcs
5677 cf066bf8 2019-05-09 stsp /* Create blobs from added and modified files and record their IDs. */
5678 39cd0ff6 2019-07-12 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5679 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5680 cf066bf8 2019-05-09 stsp char *ondisk_path;
5681 cf066bf8 2019-05-09 stsp
5682 5f8a88c6 2019-08-03 stsp /* Blobs for staged files already exist. */
5683 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_ADD ||
5684 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY)
5685 5f8a88c6 2019-08-03 stsp continue;
5686 5f8a88c6 2019-08-03 stsp
5687 cf066bf8 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD &&
5688 1ebedb77 2019-10-19 stsp ct->status != GOT_STATUS_MODIFY &&
5689 1ebedb77 2019-10-19 stsp ct->status != GOT_STATUS_MODE_CHANGE)
5690 cf066bf8 2019-05-09 stsp continue;
5691 cf066bf8 2019-05-09 stsp
5692 cf066bf8 2019-05-09 stsp if (asprintf(&ondisk_path, "%s/%s",
5693 cf066bf8 2019-05-09 stsp worktree->root_path, pe->path) == -1) {
5694 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5695 cf066bf8 2019-05-09 stsp goto done;
5696 cf066bf8 2019-05-09 stsp }
5697 e75eb4da 2019-05-10 stsp err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
5698 2e1fa222 2020-07-23 stsp free(ondisk_path);
5699 2e1fa222 2020-07-23 stsp if (err)
5700 cf066bf8 2019-05-09 stsp goto done;
5701 cf066bf8 2019-05-09 stsp }
5702 036813ee 2019-05-09 stsp
5703 036813ee 2019-05-09 stsp /* Recursively write new tree objects. */
5704 ba580f68 2020-03-22 stsp err = write_tree(&new_tree_id, &nentries, head_tree, "/",
5705 ba580f68 2020-03-22 stsp commitable_paths, status_cb, status_arg, repo);
5706 036813ee 2019-05-09 stsp if (err)
5707 036813ee 2019-05-09 stsp goto done;
5708 036813ee 2019-05-09 stsp
5709 de18fc63 2019-05-09 stsp err = got_object_qid_alloc(&pid, worktree->base_commit_id);
5710 de18fc63 2019-05-09 stsp if (err)
5711 de18fc63 2019-05-09 stsp goto done;
5712 dbdddfee 2021-06-23 naddy STAILQ_INSERT_TAIL(&parent_ids, pid, entry);
5713 f259c4c1 2021-09-24 stsp nparents++;
5714 f259c4c1 2021-09-24 stsp if (parent_id2) {
5715 f259c4c1 2021-09-24 stsp err = got_object_qid_alloc(&pid, parent_id2);
5716 f259c4c1 2021-09-24 stsp if (err)
5717 f259c4c1 2021-09-24 stsp goto done;
5718 f259c4c1 2021-09-24 stsp STAILQ_INSERT_TAIL(&parent_ids, pid, entry);
5719 f259c4c1 2021-09-24 stsp nparents++;
5720 f259c4c1 2021-09-24 stsp }
5721 de18fc63 2019-05-09 stsp err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
5722 f259c4c1 2021-09-24 stsp nparents, author, time(NULL), committer, time(NULL), logmsg, repo);
5723 33ad4cbe 2019-05-12 jcs if (logmsg != NULL)
5724 33ad4cbe 2019-05-12 jcs free(logmsg);
5725 9d40349a 2019-05-09 stsp if (err)
5726 9d40349a 2019-05-09 stsp goto done;
5727 9d40349a 2019-05-09 stsp
5728 09f5bd90 2019-05-09 stsp /* Check if a concurrent commit to our branch has occurred. */
5729 bc70eb79 2019-05-09 stsp head_ref_name = got_worktree_get_head_ref_name(worktree);
5730 bc70eb79 2019-05-09 stsp if (head_ref_name == NULL) {
5731 638f9024 2019-05-13 stsp err = got_error_from_errno("got_worktree_get_head_ref_name");
5732 09f5bd90 2019-05-09 stsp goto done;
5733 09f5bd90 2019-05-09 stsp }
5734 2f17228e 2019-05-12 stsp /* Lock the reference here to prevent concurrent modification. */
5735 2f17228e 2019-05-12 stsp err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
5736 09f5bd90 2019-05-09 stsp if (err)
5737 09f5bd90 2019-05-09 stsp goto done;
5738 09f5bd90 2019-05-09 stsp err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
5739 ebf99748 2019-05-09 stsp if (err)
5740 ebf99748 2019-05-09 stsp goto done;
5741 09f5bd90 2019-05-09 stsp if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
5742 09f5bd90 2019-05-09 stsp err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
5743 09f5bd90 2019-05-09 stsp goto done;
5744 09f5bd90 2019-05-09 stsp }
5745 09f5bd90 2019-05-09 stsp /* Update branch head in repository. */
5746 2f17228e 2019-05-12 stsp err = got_ref_change_ref(head_ref2, *new_commit_id);
5747 f2c16586 2019-05-09 stsp if (err)
5748 f2c16586 2019-05-09 stsp goto done;
5749 2f17228e 2019-05-12 stsp err = got_ref_write(head_ref2, repo);
5750 f2c16586 2019-05-09 stsp if (err)
5751 f2c16586 2019-05-09 stsp goto done;
5752 f2c16586 2019-05-09 stsp
5753 09f5bd90 2019-05-09 stsp err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
5754 09f5bd90 2019-05-09 stsp if (err)
5755 09f5bd90 2019-05-09 stsp goto done;
5756 09f5bd90 2019-05-09 stsp
5757 ebf99748 2019-05-09 stsp err = ref_base_commit(worktree, repo);
5758 ebf99748 2019-05-09 stsp if (err)
5759 ebf99748 2019-05-09 stsp goto done;
5760 c4296144 2019-05-09 stsp done:
5761 f259c4c1 2021-09-24 stsp got_object_id_queue_free(&parent_ids);
5762 588edf97 2019-05-10 stsp if (head_tree)
5763 588edf97 2019-05-10 stsp got_object_tree_close(head_tree);
5764 588edf97 2019-05-10 stsp if (head_commit)
5765 588edf97 2019-05-10 stsp got_object_commit_close(head_commit);
5766 09f5bd90 2019-05-09 stsp free(head_commit_id2);
5767 2f17228e 2019-05-12 stsp if (head_ref2) {
5768 2f17228e 2019-05-12 stsp unlockerr = got_ref_unlock(head_ref2);
5769 2f17228e 2019-05-12 stsp if (unlockerr && err == NULL)
5770 2f17228e 2019-05-12 stsp err = unlockerr;
5771 09f5bd90 2019-05-09 stsp got_ref_close(head_ref2);
5772 39cd0ff6 2019-07-12 stsp }
5773 39cd0ff6 2019-07-12 stsp return err;
5774 39cd0ff6 2019-07-12 stsp }
5775 5c1e53bc 2019-07-28 stsp
5776 5c1e53bc 2019-07-28 stsp static const struct got_error *
5777 5c1e53bc 2019-07-28 stsp check_path_is_commitable(const char *path,
5778 5c1e53bc 2019-07-28 stsp struct got_pathlist_head *commitable_paths)
5779 5c1e53bc 2019-07-28 stsp {
5780 5c1e53bc 2019-07-28 stsp struct got_pathlist_entry *cpe = NULL;
5781 5c1e53bc 2019-07-28 stsp size_t path_len = strlen(path);
5782 39cd0ff6 2019-07-12 stsp
5783 5c1e53bc 2019-07-28 stsp TAILQ_FOREACH(cpe, commitable_paths, entry) {
5784 5c1e53bc 2019-07-28 stsp struct got_commitable *ct = cpe->data;
5785 5c1e53bc 2019-07-28 stsp const char *ct_path = ct->path;
5786 5c1e53bc 2019-07-28 stsp
5787 5c1e53bc 2019-07-28 stsp while (ct_path[0] == '/')
5788 5c1e53bc 2019-07-28 stsp ct_path++;
5789 5c1e53bc 2019-07-28 stsp
5790 5c1e53bc 2019-07-28 stsp if (strcmp(path, ct_path) == 0 ||
5791 5c1e53bc 2019-07-28 stsp got_path_is_child(ct_path, path, path_len))
5792 5c1e53bc 2019-07-28 stsp break;
5793 5c1e53bc 2019-07-28 stsp }
5794 5c1e53bc 2019-07-28 stsp
5795 5c1e53bc 2019-07-28 stsp if (cpe == NULL)
5796 5c1e53bc 2019-07-28 stsp return got_error_path(path, GOT_ERR_BAD_PATH);
5797 5c1e53bc 2019-07-28 stsp
5798 5c1e53bc 2019-07-28 stsp return NULL;
5799 5c1e53bc 2019-07-28 stsp }
5800 5c1e53bc 2019-07-28 stsp
5801 f0b75401 2019-08-03 stsp static const struct got_error *
5802 f0b75401 2019-08-03 stsp check_staged_file(void *arg, struct got_fileindex_entry *ie)
5803 f0b75401 2019-08-03 stsp {
5804 f0b75401 2019-08-03 stsp int *have_staged_files = arg;
5805 f0b75401 2019-08-03 stsp
5806 f0b75401 2019-08-03 stsp if (got_fileindex_entry_stage_get(ie) != GOT_FILEIDX_STAGE_NONE) {
5807 f0b75401 2019-08-03 stsp *have_staged_files = 1;
5808 f0b75401 2019-08-03 stsp return got_error(GOT_ERR_CANCELLED);
5809 f0b75401 2019-08-03 stsp }
5810 f0b75401 2019-08-03 stsp
5811 f0b75401 2019-08-03 stsp return NULL;
5812 f0b75401 2019-08-03 stsp }
5813 f0b75401 2019-08-03 stsp
5814 5f8a88c6 2019-08-03 stsp static const struct got_error *
5815 5f8a88c6 2019-08-03 stsp check_non_staged_files(struct got_fileindex *fileindex,
5816 5f8a88c6 2019-08-03 stsp struct got_pathlist_head *paths)
5817 5f8a88c6 2019-08-03 stsp {
5818 5f8a88c6 2019-08-03 stsp struct got_pathlist_entry *pe;
5819 5f8a88c6 2019-08-03 stsp struct got_fileindex_entry *ie;
5820 5f8a88c6 2019-08-03 stsp
5821 5f8a88c6 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
5822 5f8a88c6 2019-08-03 stsp if (pe->path[0] == '\0')
5823 5f8a88c6 2019-08-03 stsp continue;
5824 5f8a88c6 2019-08-03 stsp ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5825 5f8a88c6 2019-08-03 stsp if (ie == NULL)
5826 5f8a88c6 2019-08-03 stsp return got_error_path(pe->path, GOT_ERR_BAD_PATH);
5827 5f8a88c6 2019-08-03 stsp if (got_fileindex_entry_stage_get(ie) == GOT_FILEIDX_STAGE_NONE)
5828 5f8a88c6 2019-08-03 stsp return got_error_path(pe->path,
5829 5f8a88c6 2019-08-03 stsp GOT_ERR_FILE_NOT_STAGED);
5830 5f8a88c6 2019-08-03 stsp }
5831 5f8a88c6 2019-08-03 stsp
5832 5f8a88c6 2019-08-03 stsp return NULL;
5833 5f8a88c6 2019-08-03 stsp }
5834 5f8a88c6 2019-08-03 stsp
5835 39cd0ff6 2019-07-12 stsp const struct got_error *
5836 39cd0ff6 2019-07-12 stsp got_worktree_commit(struct got_object_id **new_commit_id,
5837 5c1e53bc 2019-07-28 stsp struct got_worktree *worktree, struct got_pathlist_head *paths,
5838 35213c7c 2020-07-23 stsp const char *author, const char *committer, int allow_bad_symlinks,
5839 39cd0ff6 2019-07-12 stsp got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5840 39cd0ff6 2019-07-12 stsp got_worktree_status_cb status_cb, void *status_arg,
5841 39cd0ff6 2019-07-12 stsp struct got_repository *repo)
5842 39cd0ff6 2019-07-12 stsp {
5843 39cd0ff6 2019-07-12 stsp const struct got_error *err = NULL, *unlockerr = NULL, *sync_err;
5844 39cd0ff6 2019-07-12 stsp struct got_fileindex *fileindex = NULL;
5845 5c1e53bc 2019-07-28 stsp char *fileindex_path = NULL;
5846 39cd0ff6 2019-07-12 stsp struct got_pathlist_head commitable_paths;
5847 39cd0ff6 2019-07-12 stsp struct collect_commitables_arg cc_arg;
5848 39cd0ff6 2019-07-12 stsp struct got_pathlist_entry *pe;
5849 39cd0ff6 2019-07-12 stsp struct got_reference *head_ref = NULL;
5850 39cd0ff6 2019-07-12 stsp struct got_object_id *head_commit_id = NULL;
5851 f0b75401 2019-08-03 stsp int have_staged_files = 0;
5852 39cd0ff6 2019-07-12 stsp
5853 39cd0ff6 2019-07-12 stsp *new_commit_id = NULL;
5854 39cd0ff6 2019-07-12 stsp
5855 39cd0ff6 2019-07-12 stsp TAILQ_INIT(&commitable_paths);
5856 39cd0ff6 2019-07-12 stsp
5857 39cd0ff6 2019-07-12 stsp err = lock_worktree(worktree, LOCK_EX);
5858 39cd0ff6 2019-07-12 stsp if (err)
5859 39cd0ff6 2019-07-12 stsp goto done;
5860 39cd0ff6 2019-07-12 stsp
5861 39cd0ff6 2019-07-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
5862 39cd0ff6 2019-07-12 stsp if (err)
5863 39cd0ff6 2019-07-12 stsp goto done;
5864 39cd0ff6 2019-07-12 stsp
5865 39cd0ff6 2019-07-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
5866 39cd0ff6 2019-07-12 stsp if (err)
5867 39cd0ff6 2019-07-12 stsp goto done;
5868 39cd0ff6 2019-07-12 stsp
5869 39cd0ff6 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
5870 39cd0ff6 2019-07-12 stsp if (err)
5871 39cd0ff6 2019-07-12 stsp goto done;
5872 39cd0ff6 2019-07-12 stsp
5873 5f8a88c6 2019-08-03 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
5874 5f8a88c6 2019-08-03 stsp &have_staged_files);
5875 5f8a88c6 2019-08-03 stsp if (err && err->code != GOT_ERR_CANCELLED)
5876 5f8a88c6 2019-08-03 stsp goto done;
5877 5f8a88c6 2019-08-03 stsp if (have_staged_files) {
5878 5f8a88c6 2019-08-03 stsp err = check_non_staged_files(fileindex, paths);
5879 5f8a88c6 2019-08-03 stsp if (err)
5880 5f8a88c6 2019-08-03 stsp goto done;
5881 5f8a88c6 2019-08-03 stsp }
5882 5f8a88c6 2019-08-03 stsp
5883 39cd0ff6 2019-07-12 stsp cc_arg.commitable_paths = &commitable_paths;
5884 39cd0ff6 2019-07-12 stsp cc_arg.worktree = worktree;
5885 0aeb8099 2020-07-23 stsp cc_arg.fileindex = fileindex;
5886 39cd0ff6 2019-07-12 stsp cc_arg.repo = repo;
5887 5f8a88c6 2019-08-03 stsp cc_arg.have_staged_files = have_staged_files;
5888 35213c7c 2020-07-23 stsp cc_arg.allow_bad_symlinks = allow_bad_symlinks;
5889 5c1e53bc 2019-07-28 stsp TAILQ_FOREACH(pe, paths, entry) {
5890 5c1e53bc 2019-07-28 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
5891 f2a9dc41 2019-12-13 tracey collect_commitables, &cc_arg, NULL, NULL, 0, 0);
5892 5c1e53bc 2019-07-28 stsp if (err)
5893 5c1e53bc 2019-07-28 stsp goto done;
5894 5c1e53bc 2019-07-28 stsp }
5895 39cd0ff6 2019-07-12 stsp
5896 39cd0ff6 2019-07-12 stsp if (TAILQ_EMPTY(&commitable_paths)) {
5897 39cd0ff6 2019-07-12 stsp err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
5898 39cd0ff6 2019-07-12 stsp goto done;
5899 5c1e53bc 2019-07-28 stsp }
5900 5c1e53bc 2019-07-28 stsp
5901 5c1e53bc 2019-07-28 stsp TAILQ_FOREACH(pe, paths, entry) {
5902 5c1e53bc 2019-07-28 stsp err = check_path_is_commitable(pe->path, &commitable_paths);
5903 5c1e53bc 2019-07-28 stsp if (err)
5904 5c1e53bc 2019-07-28 stsp goto done;
5905 39cd0ff6 2019-07-12 stsp }
5906 f0b75401 2019-08-03 stsp
5907 b50cabdf 2019-07-12 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
5908 b50cabdf 2019-07-12 stsp struct got_commitable *ct = pe->data;
5909 f0b75401 2019-08-03 stsp const char *ct_path = ct->in_repo_path;
5910 f0b75401 2019-08-03 stsp
5911 f0b75401 2019-08-03 stsp while (ct_path[0] == '/')
5912 f0b75401 2019-08-03 stsp ct_path++;
5913 f0b75401 2019-08-03 stsp err = check_out_of_date(ct_path, ct->status,
5914 5f8a88c6 2019-08-03 stsp ct->staged_status, ct->base_blob_id, ct->base_commit_id,
5915 5f8a88c6 2019-08-03 stsp head_commit_id, repo, GOT_ERR_COMMIT_OUT_OF_DATE);
5916 b50cabdf 2019-07-12 stsp if (err)
5917 b50cabdf 2019-07-12 stsp goto done;
5918 f0b75401 2019-08-03 stsp
5919 b50cabdf 2019-07-12 stsp }
5920 b50cabdf 2019-07-12 stsp
5921 39cd0ff6 2019-07-12 stsp err = commit_worktree(new_commit_id, &commitable_paths,
5922 f259c4c1 2021-09-24 stsp head_commit_id, NULL, worktree, author, committer,
5923 39cd0ff6 2019-07-12 stsp commit_msg_cb, commit_arg, status_cb, status_arg, repo);
5924 39cd0ff6 2019-07-12 stsp if (err)
5925 39cd0ff6 2019-07-12 stsp goto done;
5926 39cd0ff6 2019-07-12 stsp
5927 437adc9d 2020-12-10 yzhong err = update_fileindex_after_commit(worktree, &commitable_paths,
5928 437adc9d 2020-12-10 yzhong *new_commit_id, fileindex, have_staged_files);
5929 39cd0ff6 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
5930 39cd0ff6 2019-07-12 stsp if (sync_err && err == NULL)
5931 39cd0ff6 2019-07-12 stsp err = sync_err;
5932 39cd0ff6 2019-07-12 stsp done:
5933 39cd0ff6 2019-07-12 stsp if (fileindex)
5934 39cd0ff6 2019-07-12 stsp got_fileindex_free(fileindex);
5935 39cd0ff6 2019-07-12 stsp free(fileindex_path);
5936 39cd0ff6 2019-07-12 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
5937 39cd0ff6 2019-07-12 stsp if (unlockerr && err == NULL)
5938 39cd0ff6 2019-07-12 stsp err = unlockerr;
5939 39cd0ff6 2019-07-12 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
5940 39cd0ff6 2019-07-12 stsp struct got_commitable *ct = pe->data;
5941 39cd0ff6 2019-07-12 stsp free_commitable(ct);
5942 39cd0ff6 2019-07-12 stsp }
5943 39cd0ff6 2019-07-12 stsp got_pathlist_free(&commitable_paths);
5944 c4296144 2019-05-09 stsp return err;
5945 8656d6c4 2019-05-20 stsp }
5946 8656d6c4 2019-05-20 stsp
5947 8656d6c4 2019-05-20 stsp const char *
5948 8656d6c4 2019-05-20 stsp got_commitable_get_path(struct got_commitable *ct)
5949 8656d6c4 2019-05-20 stsp {
5950 8656d6c4 2019-05-20 stsp return ct->path;
5951 8656d6c4 2019-05-20 stsp }
5952 8656d6c4 2019-05-20 stsp
5953 8656d6c4 2019-05-20 stsp unsigned int
5954 8656d6c4 2019-05-20 stsp got_commitable_get_status(struct got_commitable *ct)
5955 8656d6c4 2019-05-20 stsp {
5956 8656d6c4 2019-05-20 stsp return ct->status;
5957 818c7501 2019-07-11 stsp }
5958 818c7501 2019-07-11 stsp
5959 818c7501 2019-07-11 stsp struct check_rebase_ok_arg {
5960 818c7501 2019-07-11 stsp struct got_worktree *worktree;
5961 818c7501 2019-07-11 stsp struct got_repository *repo;
5962 818c7501 2019-07-11 stsp };
5963 818c7501 2019-07-11 stsp
5964 818c7501 2019-07-11 stsp static const struct got_error *
5965 818c7501 2019-07-11 stsp check_rebase_ok(void *arg, struct got_fileindex_entry *ie)
5966 818c7501 2019-07-11 stsp {
5967 818c7501 2019-07-11 stsp const struct got_error *err = NULL;
5968 818c7501 2019-07-11 stsp struct check_rebase_ok_arg *a = arg;
5969 818c7501 2019-07-11 stsp unsigned char status;
5970 818c7501 2019-07-11 stsp struct stat sb;
5971 818c7501 2019-07-11 stsp char *ondisk_path;
5972 818c7501 2019-07-11 stsp
5973 6a263307 2019-07-27 stsp /* Reject rebase of a work tree with mixed base commits. */
5974 6a263307 2019-07-27 stsp if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
5975 6a263307 2019-07-27 stsp SHA1_DIGEST_LENGTH))
5976 6a263307 2019-07-27 stsp return got_error(GOT_ERR_MIXED_COMMITS);
5977 818c7501 2019-07-11 stsp
5978 818c7501 2019-07-11 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
5979 818c7501 2019-07-11 stsp == -1)
5980 818c7501 2019-07-11 stsp return got_error_from_errno("asprintf");
5981 818c7501 2019-07-11 stsp
5982 b9622844 2019-08-03 stsp /* Reject rebase of a work tree with modified or staged files. */
5983 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
5984 818c7501 2019-07-11 stsp free(ondisk_path);
5985 818c7501 2019-07-11 stsp if (err)
5986 818c7501 2019-07-11 stsp return err;
5987 818c7501 2019-07-11 stsp
5988 6a263307 2019-07-27 stsp if (status != GOT_STATUS_NO_CHANGE)
5989 818c7501 2019-07-11 stsp return got_error(GOT_ERR_MODIFIED);
5990 b9622844 2019-08-03 stsp if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
5991 b9622844 2019-08-03 stsp return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
5992 818c7501 2019-07-11 stsp
5993 818c7501 2019-07-11 stsp return NULL;
5994 818c7501 2019-07-11 stsp }
5995 818c7501 2019-07-11 stsp
5996 818c7501 2019-07-11 stsp const struct got_error *
5997 818c7501 2019-07-11 stsp got_worktree_rebase_prepare(struct got_reference **new_base_branch_ref,
5998 3e3a69f1 2019-07-25 stsp struct got_reference **tmp_branch, struct got_fileindex **fileindex,
5999 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_reference *branch,
6000 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
6001 818c7501 2019-07-11 stsp {
6002 818c7501 2019-07-11 stsp const struct got_error *err = NULL;
6003 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
6004 818c7501 2019-07-11 stsp char *branch_ref_name = NULL;
6005 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
6006 818c7501 2019-07-11 stsp struct check_rebase_ok_arg ok_arg;
6007 818c7501 2019-07-11 stsp struct got_reference *wt_branch = NULL, *branch_ref = NULL;
6008 e51d7b55 2020-01-04 stsp struct got_object_id *wt_branch_tip = NULL;
6009 818c7501 2019-07-11 stsp
6010 818c7501 2019-07-11 stsp *new_base_branch_ref = NULL;
6011 818c7501 2019-07-11 stsp *tmp_branch = NULL;
6012 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6013 818c7501 2019-07-11 stsp
6014 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
6015 818c7501 2019-07-11 stsp if (err)
6016 818c7501 2019-07-11 stsp return err;
6017 818c7501 2019-07-11 stsp
6018 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
6019 818c7501 2019-07-11 stsp if (err)
6020 818c7501 2019-07-11 stsp goto done;
6021 818c7501 2019-07-11 stsp
6022 818c7501 2019-07-11 stsp ok_arg.worktree = worktree;
6023 818c7501 2019-07-11 stsp ok_arg.repo = repo;
6024 3e3a69f1 2019-07-25 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
6025 818c7501 2019-07-11 stsp &ok_arg);
6026 818c7501 2019-07-11 stsp if (err)
6027 818c7501 2019-07-11 stsp goto done;
6028 818c7501 2019-07-11 stsp
6029 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6030 818c7501 2019-07-11 stsp if (err)
6031 818c7501 2019-07-11 stsp goto done;
6032 818c7501 2019-07-11 stsp
6033 818c7501 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6034 818c7501 2019-07-11 stsp if (err)
6035 818c7501 2019-07-11 stsp goto done;
6036 818c7501 2019-07-11 stsp
6037 818c7501 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6038 818c7501 2019-07-11 stsp if (err)
6039 818c7501 2019-07-11 stsp goto done;
6040 818c7501 2019-07-11 stsp
6041 818c7501 2019-07-11 stsp err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
6042 818c7501 2019-07-11 stsp 0);
6043 e51d7b55 2020-01-04 stsp if (err)
6044 e51d7b55 2020-01-04 stsp goto done;
6045 e51d7b55 2020-01-04 stsp
6046 e51d7b55 2020-01-04 stsp err = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
6047 818c7501 2019-07-11 stsp if (err)
6048 818c7501 2019-07-11 stsp goto done;
6049 e51d7b55 2020-01-04 stsp if (got_object_id_cmp(worktree->base_commit_id, wt_branch_tip) != 0) {
6050 e51d7b55 2020-01-04 stsp err = got_error(GOT_ERR_REBASE_OUT_OF_DATE);
6051 e51d7b55 2020-01-04 stsp goto done;
6052 e51d7b55 2020-01-04 stsp }
6053 818c7501 2019-07-11 stsp
6054 818c7501 2019-07-11 stsp err = got_ref_alloc_symref(new_base_branch_ref,
6055 818c7501 2019-07-11 stsp new_base_branch_ref_name, wt_branch);
6056 818c7501 2019-07-11 stsp if (err)
6057 818c7501 2019-07-11 stsp goto done;
6058 818c7501 2019-07-11 stsp err = got_ref_write(*new_base_branch_ref, repo);
6059 818c7501 2019-07-11 stsp if (err)
6060 818c7501 2019-07-11 stsp goto done;
6061 818c7501 2019-07-11 stsp
6062 818c7501 2019-07-11 stsp /* TODO Lock original branch's ref while rebasing? */
6063 818c7501 2019-07-11 stsp
6064 818c7501 2019-07-11 stsp err = got_ref_alloc_symref(&branch_ref, branch_ref_name, branch);
6065 818c7501 2019-07-11 stsp if (err)
6066 818c7501 2019-07-11 stsp goto done;
6067 818c7501 2019-07-11 stsp
6068 818c7501 2019-07-11 stsp err = got_ref_write(branch_ref, repo);
6069 818c7501 2019-07-11 stsp if (err)
6070 818c7501 2019-07-11 stsp goto done;
6071 818c7501 2019-07-11 stsp
6072 818c7501 2019-07-11 stsp err = got_ref_alloc(tmp_branch, tmp_branch_name,
6073 818c7501 2019-07-11 stsp worktree->base_commit_id);
6074 818c7501 2019-07-11 stsp if (err)
6075 818c7501 2019-07-11 stsp goto done;
6076 818c7501 2019-07-11 stsp err = got_ref_write(*tmp_branch, repo);
6077 818c7501 2019-07-11 stsp if (err)
6078 818c7501 2019-07-11 stsp goto done;
6079 818c7501 2019-07-11 stsp
6080 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, *tmp_branch);
6081 818c7501 2019-07-11 stsp if (err)
6082 818c7501 2019-07-11 stsp goto done;
6083 818c7501 2019-07-11 stsp done:
6084 818c7501 2019-07-11 stsp free(fileindex_path);
6085 818c7501 2019-07-11 stsp free(tmp_branch_name);
6086 818c7501 2019-07-11 stsp free(new_base_branch_ref_name);
6087 818c7501 2019-07-11 stsp free(branch_ref_name);
6088 818c7501 2019-07-11 stsp if (branch_ref)
6089 818c7501 2019-07-11 stsp got_ref_close(branch_ref);
6090 818c7501 2019-07-11 stsp if (wt_branch)
6091 818c7501 2019-07-11 stsp got_ref_close(wt_branch);
6092 e51d7b55 2020-01-04 stsp free(wt_branch_tip);
6093 818c7501 2019-07-11 stsp if (err) {
6094 818c7501 2019-07-11 stsp if (*new_base_branch_ref) {
6095 818c7501 2019-07-11 stsp got_ref_close(*new_base_branch_ref);
6096 818c7501 2019-07-11 stsp *new_base_branch_ref = NULL;
6097 818c7501 2019-07-11 stsp }
6098 818c7501 2019-07-11 stsp if (*tmp_branch) {
6099 818c7501 2019-07-11 stsp got_ref_close(*tmp_branch);
6100 818c7501 2019-07-11 stsp *tmp_branch = NULL;
6101 818c7501 2019-07-11 stsp }
6102 3e3a69f1 2019-07-25 stsp if (*fileindex) {
6103 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
6104 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6105 3e3a69f1 2019-07-25 stsp }
6106 818c7501 2019-07-11 stsp lock_worktree(worktree, LOCK_SH);
6107 818c7501 2019-07-11 stsp }
6108 818c7501 2019-07-11 stsp return err;
6109 818c7501 2019-07-11 stsp }
6110 818c7501 2019-07-11 stsp
6111 818c7501 2019-07-11 stsp const struct got_error *
6112 818c7501 2019-07-11 stsp got_worktree_rebase_continue(struct got_object_id **commit_id,
6113 818c7501 2019-07-11 stsp struct got_reference **new_base_branch, struct got_reference **tmp_branch,
6114 3e3a69f1 2019-07-25 stsp struct got_reference **branch, struct got_fileindex **fileindex,
6115 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_repository *repo)
6116 818c7501 2019-07-11 stsp {
6117 818c7501 2019-07-11 stsp const struct got_error *err;
6118 818c7501 2019-07-11 stsp char *commit_ref_name = NULL, *new_base_branch_ref_name = NULL;
6119 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL, *branch_ref_name = NULL;
6120 818c7501 2019-07-11 stsp struct got_reference *commit_ref = NULL, *branch_ref = NULL;
6121 3e3a69f1 2019-07-25 stsp char *fileindex_path = NULL;
6122 f032f1f7 2019-08-04 stsp int have_staged_files = 0;
6123 818c7501 2019-07-11 stsp
6124 818c7501 2019-07-11 stsp *commit_id = NULL;
6125 3e3a69f1 2019-07-25 stsp *new_base_branch = NULL;
6126 3e3a69f1 2019-07-25 stsp *tmp_branch = NULL;
6127 3e3a69f1 2019-07-25 stsp *branch = NULL;
6128 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6129 3e3a69f1 2019-07-25 stsp
6130 3e3a69f1 2019-07-25 stsp err = lock_worktree(worktree, LOCK_EX);
6131 3e3a69f1 2019-07-25 stsp if (err)
6132 3e3a69f1 2019-07-25 stsp return err;
6133 818c7501 2019-07-11 stsp
6134 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
6135 3e3a69f1 2019-07-25 stsp if (err)
6136 f032f1f7 2019-08-04 stsp goto done;
6137 f032f1f7 2019-08-04 stsp
6138 f032f1f7 2019-08-04 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
6139 f032f1f7 2019-08-04 stsp &have_staged_files);
6140 f032f1f7 2019-08-04 stsp if (err && err->code != GOT_ERR_CANCELLED)
6141 f032f1f7 2019-08-04 stsp goto done;
6142 f032f1f7 2019-08-04 stsp if (have_staged_files) {
6143 f032f1f7 2019-08-04 stsp err = got_error(GOT_ERR_STAGED_PATHS);
6144 3e3a69f1 2019-07-25 stsp goto done;
6145 f032f1f7 2019-08-04 stsp }
6146 3e3a69f1 2019-07-25 stsp
6147 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6148 818c7501 2019-07-11 stsp if (err)
6149 f032f1f7 2019-08-04 stsp goto done;
6150 818c7501 2019-07-11 stsp
6151 818c7501 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6152 818c7501 2019-07-11 stsp if (err)
6153 818c7501 2019-07-11 stsp goto done;
6154 818c7501 2019-07-11 stsp
6155 818c7501 2019-07-11 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6156 818c7501 2019-07-11 stsp if (err)
6157 818c7501 2019-07-11 stsp goto done;
6158 818c7501 2019-07-11 stsp
6159 818c7501 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6160 818c7501 2019-07-11 stsp if (err)
6161 818c7501 2019-07-11 stsp goto done;
6162 818c7501 2019-07-11 stsp
6163 818c7501 2019-07-11 stsp err = got_ref_open(&branch_ref, repo, branch_ref_name, 0);
6164 818c7501 2019-07-11 stsp if (err)
6165 818c7501 2019-07-11 stsp goto done;
6166 818c7501 2019-07-11 stsp
6167 818c7501 2019-07-11 stsp err = got_ref_open(branch, repo,
6168 818c7501 2019-07-11 stsp got_ref_get_symref_target(branch_ref), 0);
6169 818c7501 2019-07-11 stsp if (err)
6170 818c7501 2019-07-11 stsp goto done;
6171 818c7501 2019-07-11 stsp
6172 818c7501 2019-07-11 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6173 818c7501 2019-07-11 stsp if (err)
6174 818c7501 2019-07-11 stsp goto done;
6175 818c7501 2019-07-11 stsp
6176 818c7501 2019-07-11 stsp err = got_ref_resolve(commit_id, repo, commit_ref);
6177 818c7501 2019-07-11 stsp if (err)
6178 818c7501 2019-07-11 stsp goto done;
6179 818c7501 2019-07-11 stsp
6180 818c7501 2019-07-11 stsp err = got_ref_open(new_base_branch, repo,
6181 818c7501 2019-07-11 stsp new_base_branch_ref_name, 0);
6182 818c7501 2019-07-11 stsp if (err)
6183 818c7501 2019-07-11 stsp goto done;
6184 818c7501 2019-07-11 stsp
6185 818c7501 2019-07-11 stsp err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
6186 818c7501 2019-07-11 stsp if (err)
6187 818c7501 2019-07-11 stsp goto done;
6188 818c7501 2019-07-11 stsp done:
6189 818c7501 2019-07-11 stsp free(commit_ref_name);
6190 818c7501 2019-07-11 stsp free(branch_ref_name);
6191 3e3a69f1 2019-07-25 stsp free(fileindex_path);
6192 818c7501 2019-07-11 stsp if (commit_ref)
6193 818c7501 2019-07-11 stsp got_ref_close(commit_ref);
6194 818c7501 2019-07-11 stsp if (branch_ref)
6195 818c7501 2019-07-11 stsp got_ref_close(branch_ref);
6196 818c7501 2019-07-11 stsp if (err) {
6197 818c7501 2019-07-11 stsp free(*commit_id);
6198 818c7501 2019-07-11 stsp *commit_id = NULL;
6199 818c7501 2019-07-11 stsp if (*tmp_branch) {
6200 818c7501 2019-07-11 stsp got_ref_close(*tmp_branch);
6201 818c7501 2019-07-11 stsp *tmp_branch = NULL;
6202 818c7501 2019-07-11 stsp }
6203 818c7501 2019-07-11 stsp if (*new_base_branch) {
6204 818c7501 2019-07-11 stsp got_ref_close(*new_base_branch);
6205 818c7501 2019-07-11 stsp *new_base_branch = NULL;
6206 818c7501 2019-07-11 stsp }
6207 818c7501 2019-07-11 stsp if (*branch) {
6208 818c7501 2019-07-11 stsp got_ref_close(*branch);
6209 818c7501 2019-07-11 stsp *branch = NULL;
6210 818c7501 2019-07-11 stsp }
6211 3e3a69f1 2019-07-25 stsp if (*fileindex) {
6212 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
6213 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6214 3e3a69f1 2019-07-25 stsp }
6215 3e3a69f1 2019-07-25 stsp lock_worktree(worktree, LOCK_SH);
6216 818c7501 2019-07-11 stsp }
6217 818c7501 2019-07-11 stsp return err;
6218 c4296144 2019-05-09 stsp }
6219 818c7501 2019-07-11 stsp
6220 818c7501 2019-07-11 stsp const struct got_error *
6221 818c7501 2019-07-11 stsp got_worktree_rebase_in_progress(int *in_progress, struct got_worktree *worktree)
6222 818c7501 2019-07-11 stsp {
6223 818c7501 2019-07-11 stsp const struct got_error *err;
6224 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL;
6225 818c7501 2019-07-11 stsp
6226 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6227 818c7501 2019-07-11 stsp if (err)
6228 818c7501 2019-07-11 stsp return err;
6229 818c7501 2019-07-11 stsp
6230 818c7501 2019-07-11 stsp *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6231 818c7501 2019-07-11 stsp free(tmp_branch_name);
6232 818c7501 2019-07-11 stsp return NULL;
6233 818c7501 2019-07-11 stsp }
6234 818c7501 2019-07-11 stsp
6235 818c7501 2019-07-11 stsp static const struct got_error *
6236 818c7501 2019-07-11 stsp collect_rebase_commit_msg(struct got_pathlist_head *commitable_paths,
6237 818c7501 2019-07-11 stsp char **logmsg, void *arg)
6238 818c7501 2019-07-11 stsp {
6239 0ebf8283 2019-07-24 stsp *logmsg = arg;
6240 818c7501 2019-07-11 stsp return NULL;
6241 818c7501 2019-07-11 stsp }
6242 818c7501 2019-07-11 stsp
6243 818c7501 2019-07-11 stsp static const struct got_error *
6244 88d0e355 2019-08-03 stsp rebase_status(void *arg, unsigned char status, unsigned char staged_status,
6245 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
6246 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
6247 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
6248 818c7501 2019-07-11 stsp {
6249 818c7501 2019-07-11 stsp return NULL;
6250 01757395 2019-07-12 stsp }
6251 01757395 2019-07-12 stsp
6252 01757395 2019-07-12 stsp struct collect_merged_paths_arg {
6253 01757395 2019-07-12 stsp got_worktree_checkout_cb progress_cb;
6254 01757395 2019-07-12 stsp void *progress_arg;
6255 01757395 2019-07-12 stsp struct got_pathlist_head *merged_paths;
6256 01757395 2019-07-12 stsp };
6257 01757395 2019-07-12 stsp
6258 01757395 2019-07-12 stsp static const struct got_error *
6259 01757395 2019-07-12 stsp collect_merged_paths(void *arg, unsigned char status, const char *path)
6260 01757395 2019-07-12 stsp {
6261 01757395 2019-07-12 stsp const struct got_error *err;
6262 01757395 2019-07-12 stsp struct collect_merged_paths_arg *a = arg;
6263 01757395 2019-07-12 stsp char *p;
6264 01757395 2019-07-12 stsp struct got_pathlist_entry *new;
6265 01757395 2019-07-12 stsp
6266 01757395 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path);
6267 01757395 2019-07-12 stsp if (err)
6268 01757395 2019-07-12 stsp return err;
6269 01757395 2019-07-12 stsp
6270 01757395 2019-07-12 stsp if (status != GOT_STATUS_MERGE &&
6271 01757395 2019-07-12 stsp status != GOT_STATUS_ADD &&
6272 01757395 2019-07-12 stsp status != GOT_STATUS_DELETE &&
6273 01757395 2019-07-12 stsp status != GOT_STATUS_CONFLICT)
6274 01757395 2019-07-12 stsp return NULL;
6275 01757395 2019-07-12 stsp
6276 01757395 2019-07-12 stsp p = strdup(path);
6277 01757395 2019-07-12 stsp if (p == NULL)
6278 01757395 2019-07-12 stsp return got_error_from_errno("strdup");
6279 01757395 2019-07-12 stsp
6280 01757395 2019-07-12 stsp err = got_pathlist_insert(&new, a->merged_paths, p, NULL);
6281 01757395 2019-07-12 stsp if (err || new == NULL)
6282 01757395 2019-07-12 stsp free(p);
6283 01757395 2019-07-12 stsp return err;
6284 01757395 2019-07-12 stsp }
6285 01757395 2019-07-12 stsp
6286 01757395 2019-07-12 stsp void
6287 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(struct got_pathlist_head *merged_paths)
6288 01757395 2019-07-12 stsp {
6289 01757395 2019-07-12 stsp struct got_pathlist_entry *pe;
6290 01757395 2019-07-12 stsp
6291 01757395 2019-07-12 stsp TAILQ_FOREACH(pe, merged_paths, entry)
6292 01757395 2019-07-12 stsp free((char *)pe->path);
6293 01757395 2019-07-12 stsp
6294 01757395 2019-07-12 stsp got_pathlist_free(merged_paths);
6295 818c7501 2019-07-11 stsp }
6296 818c7501 2019-07-11 stsp
6297 0ebf8283 2019-07-24 stsp static const struct got_error *
6298 0ebf8283 2019-07-24 stsp store_commit_id(const char *commit_ref_name, struct got_object_id *commit_id,
6299 de05890f 2020-03-05 stsp int is_rebase, struct got_repository *repo)
6300 818c7501 2019-07-11 stsp {
6301 818c7501 2019-07-11 stsp const struct got_error *err;
6302 818c7501 2019-07-11 stsp struct got_reference *commit_ref = NULL;
6303 818c7501 2019-07-11 stsp
6304 818c7501 2019-07-11 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6305 818c7501 2019-07-11 stsp if (err) {
6306 818c7501 2019-07-11 stsp if (err->code != GOT_ERR_NOT_REF)
6307 818c7501 2019-07-11 stsp goto done;
6308 818c7501 2019-07-11 stsp err = got_ref_alloc(&commit_ref, commit_ref_name, commit_id);
6309 818c7501 2019-07-11 stsp if (err)
6310 818c7501 2019-07-11 stsp goto done;
6311 818c7501 2019-07-11 stsp err = got_ref_write(commit_ref, repo);
6312 818c7501 2019-07-11 stsp if (err)
6313 818c7501 2019-07-11 stsp goto done;
6314 de05890f 2020-03-05 stsp } else if (is_rebase) {
6315 818c7501 2019-07-11 stsp struct got_object_id *stored_id;
6316 818c7501 2019-07-11 stsp int cmp;
6317 818c7501 2019-07-11 stsp
6318 818c7501 2019-07-11 stsp err = got_ref_resolve(&stored_id, repo, commit_ref);
6319 818c7501 2019-07-11 stsp if (err)
6320 818c7501 2019-07-11 stsp goto done;
6321 818c7501 2019-07-11 stsp cmp = got_object_id_cmp(commit_id, stored_id);
6322 818c7501 2019-07-11 stsp free(stored_id);
6323 818c7501 2019-07-11 stsp if (cmp != 0) {
6324 818c7501 2019-07-11 stsp err = got_error(GOT_ERR_REBASE_COMMITID);
6325 818c7501 2019-07-11 stsp goto done;
6326 818c7501 2019-07-11 stsp }
6327 818c7501 2019-07-11 stsp }
6328 0ebf8283 2019-07-24 stsp done:
6329 0ebf8283 2019-07-24 stsp if (commit_ref)
6330 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
6331 0ebf8283 2019-07-24 stsp return err;
6332 0ebf8283 2019-07-24 stsp }
6333 0ebf8283 2019-07-24 stsp
6334 0ebf8283 2019-07-24 stsp static const struct got_error *
6335 0ebf8283 2019-07-24 stsp rebase_merge_files(struct got_pathlist_head *merged_paths,
6336 0ebf8283 2019-07-24 stsp const char *commit_ref_name, struct got_worktree *worktree,
6337 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_object_id *parent_commit_id,
6338 3e3a69f1 2019-07-25 stsp struct got_object_id *commit_id, struct got_repository *repo,
6339 3e3a69f1 2019-07-25 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
6340 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
6341 0ebf8283 2019-07-24 stsp {
6342 0ebf8283 2019-07-24 stsp const struct got_error *err;
6343 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
6344 0ebf8283 2019-07-24 stsp struct collect_merged_paths_arg cmp_arg;
6345 3e3a69f1 2019-07-25 stsp char *fileindex_path;
6346 818c7501 2019-07-11 stsp
6347 0ebf8283 2019-07-24 stsp /* Work tree is locked/unlocked during rebase preparation/teardown. */
6348 0ebf8283 2019-07-24 stsp
6349 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
6350 0ebf8283 2019-07-24 stsp if (err)
6351 0ebf8283 2019-07-24 stsp return err;
6352 0ebf8283 2019-07-24 stsp
6353 01757395 2019-07-12 stsp cmp_arg.progress_cb = progress_cb;
6354 01757395 2019-07-12 stsp cmp_arg.progress_arg = progress_arg;
6355 01757395 2019-07-12 stsp cmp_arg.merged_paths = merged_paths;
6356 818c7501 2019-07-11 stsp err = merge_files(worktree, fileindex, fileindex_path,
6357 01757395 2019-07-12 stsp parent_commit_id, commit_id, repo, collect_merged_paths,
6358 01757395 2019-07-12 stsp &cmp_arg, cancel_cb, cancel_arg);
6359 818c7501 2019-07-11 stsp if (commit_ref)
6360 818c7501 2019-07-11 stsp got_ref_close(commit_ref);
6361 818c7501 2019-07-11 stsp return err;
6362 818c7501 2019-07-11 stsp }
6363 818c7501 2019-07-11 stsp
6364 818c7501 2019-07-11 stsp const struct got_error *
6365 0ebf8283 2019-07-24 stsp got_worktree_rebase_merge_files(struct got_pathlist_head *merged_paths,
6366 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6367 3e3a69f1 2019-07-25 stsp struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6368 3e3a69f1 2019-07-25 stsp struct got_repository *repo,
6369 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
6370 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
6371 818c7501 2019-07-11 stsp {
6372 0ebf8283 2019-07-24 stsp const struct got_error *err;
6373 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6374 0ebf8283 2019-07-24 stsp
6375 0ebf8283 2019-07-24 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6376 0ebf8283 2019-07-24 stsp if (err)
6377 0ebf8283 2019-07-24 stsp return err;
6378 0ebf8283 2019-07-24 stsp
6379 de05890f 2020-03-05 stsp err = store_commit_id(commit_ref_name, commit_id, 1, repo);
6380 0ebf8283 2019-07-24 stsp if (err)
6381 0ebf8283 2019-07-24 stsp goto done;
6382 0ebf8283 2019-07-24 stsp
6383 0ebf8283 2019-07-24 stsp err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6384 3e3a69f1 2019-07-25 stsp fileindex, parent_commit_id, commit_id, repo, progress_cb,
6385 3e3a69f1 2019-07-25 stsp progress_arg, cancel_cb, cancel_arg);
6386 0ebf8283 2019-07-24 stsp done:
6387 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6388 0ebf8283 2019-07-24 stsp return err;
6389 0ebf8283 2019-07-24 stsp }
6390 0ebf8283 2019-07-24 stsp
6391 0ebf8283 2019-07-24 stsp const struct got_error *
6392 0ebf8283 2019-07-24 stsp got_worktree_histedit_merge_files(struct got_pathlist_head *merged_paths,
6393 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6394 3e3a69f1 2019-07-25 stsp struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6395 3e3a69f1 2019-07-25 stsp struct got_repository *repo,
6396 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
6397 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
6398 0ebf8283 2019-07-24 stsp {
6399 0ebf8283 2019-07-24 stsp const struct got_error *err;
6400 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6401 0ebf8283 2019-07-24 stsp
6402 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6403 0ebf8283 2019-07-24 stsp if (err)
6404 0ebf8283 2019-07-24 stsp return err;
6405 0ebf8283 2019-07-24 stsp
6406 de05890f 2020-03-05 stsp err = store_commit_id(commit_ref_name, commit_id, 0, repo);
6407 0ebf8283 2019-07-24 stsp if (err)
6408 0ebf8283 2019-07-24 stsp goto done;
6409 0ebf8283 2019-07-24 stsp
6410 0ebf8283 2019-07-24 stsp err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6411 3e3a69f1 2019-07-25 stsp fileindex, parent_commit_id, commit_id, repo, progress_cb,
6412 3e3a69f1 2019-07-25 stsp progress_arg, cancel_cb, cancel_arg);
6413 0ebf8283 2019-07-24 stsp done:
6414 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6415 0ebf8283 2019-07-24 stsp return err;
6416 0ebf8283 2019-07-24 stsp }
6417 0ebf8283 2019-07-24 stsp
6418 0ebf8283 2019-07-24 stsp static const struct got_error *
6419 0ebf8283 2019-07-24 stsp rebase_commit(struct got_object_id **new_commit_id,
6420 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_reference *commit_ref,
6421 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6422 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_commit_object *orig_commit,
6423 3e3a69f1 2019-07-25 stsp const char *new_logmsg, struct got_repository *repo)
6424 0ebf8283 2019-07-24 stsp {
6425 a0e95631 2019-07-12 stsp const struct got_error *err, *sync_err;
6426 a0e95631 2019-07-12 stsp struct got_pathlist_head commitable_paths;
6427 a0e95631 2019-07-12 stsp struct collect_commitables_arg cc_arg;
6428 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
6429 a0e95631 2019-07-12 stsp struct got_reference *head_ref = NULL;
6430 a0e95631 2019-07-12 stsp struct got_object_id *head_commit_id = NULL;
6431 0ebf8283 2019-07-24 stsp char *logmsg = NULL;
6432 818c7501 2019-07-11 stsp
6433 a0e95631 2019-07-12 stsp TAILQ_INIT(&commitable_paths);
6434 eb3df2c4 2019-07-12 stsp *new_commit_id = NULL;
6435 a0e95631 2019-07-12 stsp
6436 877a927c 2019-07-12 stsp /* Work tree is locked/unlocked during rebase preparation/teardown. */
6437 818c7501 2019-07-11 stsp
6438 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
6439 a0e95631 2019-07-12 stsp if (err)
6440 3e3a69f1 2019-07-25 stsp return err;
6441 a0e95631 2019-07-12 stsp
6442 a0e95631 2019-07-12 stsp cc_arg.commitable_paths = &commitable_paths;
6443 a0e95631 2019-07-12 stsp cc_arg.worktree = worktree;
6444 a0e95631 2019-07-12 stsp cc_arg.repo = repo;
6445 5f8a88c6 2019-08-03 stsp cc_arg.have_staged_files = 0;
6446 01757395 2019-07-12 stsp /*
6447 01757395 2019-07-12 stsp * If possible get the status of individual files directly to
6448 01757395 2019-07-12 stsp * avoid crawling the entire work tree once per rebased commit.
6449 6c13b005 2021-09-02 stsp *
6450 6c13b005 2021-09-02 stsp * Ideally, merged_paths would contain a list of commitables
6451 01757395 2019-07-12 stsp * we could use so we could skip worktree_status() entirely.
6452 6c13b005 2021-09-02 stsp * However, we would then need carefully keep track of cumulative
6453 6c13b005 2021-09-02 stsp * effects of operations such as file additions and deletions
6454 6c13b005 2021-09-02 stsp * in 'got histedit -f' (folding multiple commits into one),
6455 6c13b005 2021-09-02 stsp * and this extra complexity is not really worth it.
6456 01757395 2019-07-12 stsp */
6457 01757395 2019-07-12 stsp if (merged_paths) {
6458 01757395 2019-07-12 stsp struct got_pathlist_entry *pe;
6459 01757395 2019-07-12 stsp TAILQ_FOREACH(pe, merged_paths, entry) {
6460 01757395 2019-07-12 stsp err = worktree_status(worktree, pe->path, fileindex,
6461 0e33f8e0 2021-09-01 stsp repo, collect_commitables, &cc_arg, NULL, NULL, 1,
6462 f2a9dc41 2019-12-13 tracey 0);
6463 01757395 2019-07-12 stsp if (err)
6464 01757395 2019-07-12 stsp goto done;
6465 01757395 2019-07-12 stsp }
6466 01757395 2019-07-12 stsp } else {
6467 01757395 2019-07-12 stsp err = worktree_status(worktree, "", fileindex, repo,
6468 0e33f8e0 2021-09-01 stsp collect_commitables, &cc_arg, NULL, NULL, 1, 0);
6469 01757395 2019-07-12 stsp if (err)
6470 01757395 2019-07-12 stsp goto done;
6471 01757395 2019-07-12 stsp }
6472 a0e95631 2019-07-12 stsp
6473 a0e95631 2019-07-12 stsp if (TAILQ_EMPTY(&commitable_paths)) {
6474 a0e95631 2019-07-12 stsp /* No-op change; commit will be elided. */
6475 a0e95631 2019-07-12 stsp err = got_ref_delete(commit_ref, repo);
6476 a0e95631 2019-07-12 stsp if (err)
6477 a0e95631 2019-07-12 stsp goto done;
6478 a0e95631 2019-07-12 stsp err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
6479 a0e95631 2019-07-12 stsp goto done;
6480 ff0d2220 2019-07-11 stsp }
6481 818c7501 2019-07-11 stsp
6482 a0e95631 2019-07-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
6483 edd02c5e 2019-07-11 stsp if (err)
6484 edd02c5e 2019-07-11 stsp goto done;
6485 edd02c5e 2019-07-11 stsp
6486 a0e95631 2019-07-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
6487 818c7501 2019-07-11 stsp if (err)
6488 818c7501 2019-07-11 stsp goto done;
6489 818c7501 2019-07-11 stsp
6490 5943eee2 2019-08-13 stsp if (new_logmsg) {
6491 0ebf8283 2019-07-24 stsp logmsg = strdup(new_logmsg);
6492 5943eee2 2019-08-13 stsp if (logmsg == NULL) {
6493 5943eee2 2019-08-13 stsp err = got_error_from_errno("strdup");
6494 5943eee2 2019-08-13 stsp goto done;
6495 5943eee2 2019-08-13 stsp }
6496 5943eee2 2019-08-13 stsp } else {
6497 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, orig_commit);
6498 5943eee2 2019-08-13 stsp if (err)
6499 5943eee2 2019-08-13 stsp goto done;
6500 5943eee2 2019-08-13 stsp }
6501 0ebf8283 2019-07-24 stsp
6502 5943eee2 2019-08-13 stsp /* NB: commit_worktree will call free(logmsg) */
6503 a0e95631 2019-07-12 stsp err = commit_worktree(new_commit_id, &commitable_paths, head_commit_id,
6504 f259c4c1 2021-09-24 stsp NULL, worktree, got_object_commit_get_author(orig_commit),
6505 a0e95631 2019-07-12 stsp got_object_commit_get_committer(orig_commit),
6506 0ebf8283 2019-07-24 stsp collect_rebase_commit_msg, logmsg, rebase_status, NULL, repo);
6507 a0e95631 2019-07-12 stsp if (err)
6508 a0e95631 2019-07-12 stsp goto done;
6509 a0e95631 2019-07-12 stsp
6510 818c7501 2019-07-11 stsp err = got_ref_change_ref(tmp_branch, *new_commit_id);
6511 a0e95631 2019-07-12 stsp if (err)
6512 a0e95631 2019-07-12 stsp goto done;
6513 a0e95631 2019-07-12 stsp
6514 a0e95631 2019-07-12 stsp err = got_ref_delete(commit_ref, repo);
6515 a0e95631 2019-07-12 stsp if (err)
6516 a0e95631 2019-07-12 stsp goto done;
6517 a0e95631 2019-07-12 stsp
6518 437adc9d 2020-12-10 yzhong err = update_fileindex_after_commit(worktree, &commitable_paths,
6519 437adc9d 2020-12-10 yzhong *new_commit_id, fileindex, 0);
6520 a0e95631 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6521 a0e95631 2019-07-12 stsp if (sync_err && err == NULL)
6522 a0e95631 2019-07-12 stsp err = sync_err;
6523 818c7501 2019-07-11 stsp done:
6524 a0e95631 2019-07-12 stsp free(fileindex_path);
6525 a0e95631 2019-07-12 stsp free(head_commit_id);
6526 a0e95631 2019-07-12 stsp if (head_ref)
6527 a0e95631 2019-07-12 stsp got_ref_close(head_ref);
6528 818c7501 2019-07-11 stsp if (err) {
6529 818c7501 2019-07-11 stsp free(*new_commit_id);
6530 818c7501 2019-07-11 stsp *new_commit_id = NULL;
6531 818c7501 2019-07-11 stsp }
6532 818c7501 2019-07-11 stsp return err;
6533 818c7501 2019-07-11 stsp }
6534 818c7501 2019-07-11 stsp
6535 818c7501 2019-07-11 stsp const struct got_error *
6536 0ebf8283 2019-07-24 stsp got_worktree_rebase_commit(struct got_object_id **new_commit_id,
6537 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6538 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6539 3e3a69f1 2019-07-25 stsp struct got_commit_object *orig_commit,
6540 0ebf8283 2019-07-24 stsp struct got_object_id *orig_commit_id, struct got_repository *repo)
6541 0ebf8283 2019-07-24 stsp {
6542 0ebf8283 2019-07-24 stsp const struct got_error *err;
6543 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6544 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
6545 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id = NULL;
6546 0ebf8283 2019-07-24 stsp
6547 0ebf8283 2019-07-24 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6548 0ebf8283 2019-07-24 stsp if (err)
6549 0ebf8283 2019-07-24 stsp return err;
6550 0ebf8283 2019-07-24 stsp
6551 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6552 0ebf8283 2019-07-24 stsp if (err)
6553 0ebf8283 2019-07-24 stsp goto done;
6554 0ebf8283 2019-07-24 stsp err = got_ref_resolve(&commit_id, repo, commit_ref);
6555 0ebf8283 2019-07-24 stsp if (err)
6556 0ebf8283 2019-07-24 stsp goto done;
6557 0ebf8283 2019-07-24 stsp if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
6558 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_REBASE_COMMITID);
6559 0ebf8283 2019-07-24 stsp goto done;
6560 0ebf8283 2019-07-24 stsp }
6561 0ebf8283 2019-07-24 stsp
6562 0ebf8283 2019-07-24 stsp err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6563 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, orig_commit, NULL, repo);
6564 0ebf8283 2019-07-24 stsp done:
6565 0ebf8283 2019-07-24 stsp if (commit_ref)
6566 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
6567 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6568 0ebf8283 2019-07-24 stsp free(commit_id);
6569 0ebf8283 2019-07-24 stsp return err;
6570 0ebf8283 2019-07-24 stsp }
6571 0ebf8283 2019-07-24 stsp
6572 0ebf8283 2019-07-24 stsp const struct got_error *
6573 0ebf8283 2019-07-24 stsp got_worktree_histedit_commit(struct got_object_id **new_commit_id,
6574 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6575 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6576 3e3a69f1 2019-07-25 stsp struct got_commit_object *orig_commit,
6577 0ebf8283 2019-07-24 stsp struct got_object_id *orig_commit_id, const char *new_logmsg,
6578 0ebf8283 2019-07-24 stsp struct got_repository *repo)
6579 0ebf8283 2019-07-24 stsp {
6580 0ebf8283 2019-07-24 stsp const struct got_error *err;
6581 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6582 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
6583 0ebf8283 2019-07-24 stsp
6584 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6585 0ebf8283 2019-07-24 stsp if (err)
6586 0ebf8283 2019-07-24 stsp return err;
6587 0ebf8283 2019-07-24 stsp
6588 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6589 0ebf8283 2019-07-24 stsp if (err)
6590 0ebf8283 2019-07-24 stsp goto done;
6591 0ebf8283 2019-07-24 stsp
6592 0ebf8283 2019-07-24 stsp err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6593 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, orig_commit, new_logmsg, repo);
6594 0ebf8283 2019-07-24 stsp done:
6595 0ebf8283 2019-07-24 stsp if (commit_ref)
6596 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
6597 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6598 0ebf8283 2019-07-24 stsp return err;
6599 0ebf8283 2019-07-24 stsp }
6600 0ebf8283 2019-07-24 stsp
6601 0ebf8283 2019-07-24 stsp const struct got_error *
6602 3e3a69f1 2019-07-25 stsp got_worktree_rebase_postpone(struct got_worktree *worktree,
6603 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex)
6604 818c7501 2019-07-11 stsp {
6605 3e3a69f1 2019-07-25 stsp if (fileindex)
6606 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
6607 818c7501 2019-07-11 stsp return lock_worktree(worktree, LOCK_SH);
6608 69844fba 2019-07-11 stsp }
6609 69844fba 2019-07-11 stsp
6610 69844fba 2019-07-11 stsp static const struct got_error *
6611 69844fba 2019-07-11 stsp delete_ref(const char *name, struct got_repository *repo)
6612 69844fba 2019-07-11 stsp {
6613 69844fba 2019-07-11 stsp const struct got_error *err;
6614 69844fba 2019-07-11 stsp struct got_reference *ref;
6615 69844fba 2019-07-11 stsp
6616 69844fba 2019-07-11 stsp err = got_ref_open(&ref, repo, name, 0);
6617 69844fba 2019-07-11 stsp if (err) {
6618 69844fba 2019-07-11 stsp if (err->code == GOT_ERR_NOT_REF)
6619 69844fba 2019-07-11 stsp return NULL;
6620 69844fba 2019-07-11 stsp return err;
6621 69844fba 2019-07-11 stsp }
6622 69844fba 2019-07-11 stsp
6623 69844fba 2019-07-11 stsp err = got_ref_delete(ref, repo);
6624 69844fba 2019-07-11 stsp got_ref_close(ref);
6625 69844fba 2019-07-11 stsp return err;
6626 818c7501 2019-07-11 stsp }
6627 818c7501 2019-07-11 stsp
6628 69844fba 2019-07-11 stsp static const struct got_error *
6629 69844fba 2019-07-11 stsp delete_rebase_refs(struct got_worktree *worktree, struct got_repository *repo)
6630 69844fba 2019-07-11 stsp {
6631 69844fba 2019-07-11 stsp const struct got_error *err;
6632 69844fba 2019-07-11 stsp char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
6633 69844fba 2019-07-11 stsp char *branch_ref_name = NULL, *commit_ref_name = NULL;
6634 69844fba 2019-07-11 stsp
6635 69844fba 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6636 69844fba 2019-07-11 stsp if (err)
6637 69844fba 2019-07-11 stsp goto done;
6638 69844fba 2019-07-11 stsp err = delete_ref(tmp_branch_name, repo);
6639 69844fba 2019-07-11 stsp if (err)
6640 69844fba 2019-07-11 stsp goto done;
6641 69844fba 2019-07-11 stsp
6642 69844fba 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6643 69844fba 2019-07-11 stsp if (err)
6644 69844fba 2019-07-11 stsp goto done;
6645 69844fba 2019-07-11 stsp err = delete_ref(new_base_branch_ref_name, repo);
6646 69844fba 2019-07-11 stsp if (err)
6647 69844fba 2019-07-11 stsp goto done;
6648 69844fba 2019-07-11 stsp
6649 69844fba 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6650 69844fba 2019-07-11 stsp if (err)
6651 69844fba 2019-07-11 stsp goto done;
6652 69844fba 2019-07-11 stsp err = delete_ref(branch_ref_name, repo);
6653 69844fba 2019-07-11 stsp if (err)
6654 69844fba 2019-07-11 stsp goto done;
6655 69844fba 2019-07-11 stsp
6656 69844fba 2019-07-11 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6657 69844fba 2019-07-11 stsp if (err)
6658 69844fba 2019-07-11 stsp goto done;
6659 69844fba 2019-07-11 stsp err = delete_ref(commit_ref_name, repo);
6660 69844fba 2019-07-11 stsp if (err)
6661 69844fba 2019-07-11 stsp goto done;
6662 69844fba 2019-07-11 stsp
6663 69844fba 2019-07-11 stsp done:
6664 69844fba 2019-07-11 stsp free(tmp_branch_name);
6665 69844fba 2019-07-11 stsp free(new_base_branch_ref_name);
6666 69844fba 2019-07-11 stsp free(branch_ref_name);
6667 69844fba 2019-07-11 stsp free(commit_ref_name);
6668 e600f124 2021-03-21 stsp return err;
6669 e600f124 2021-03-21 stsp }
6670 e600f124 2021-03-21 stsp
6671 e600f124 2021-03-21 stsp const struct got_error *
6672 e600f124 2021-03-21 stsp create_backup_ref(const char *backup_ref_prefix, struct got_reference *branch,
6673 e600f124 2021-03-21 stsp struct got_object_id *new_commit_id, struct got_repository *repo)
6674 e600f124 2021-03-21 stsp {
6675 e600f124 2021-03-21 stsp const struct got_error *err;
6676 e600f124 2021-03-21 stsp struct got_reference *ref = NULL;
6677 e600f124 2021-03-21 stsp struct got_object_id *old_commit_id = NULL;
6678 e600f124 2021-03-21 stsp const char *branch_name = NULL;
6679 e600f124 2021-03-21 stsp char *new_id_str = NULL;
6680 e600f124 2021-03-21 stsp char *refname = NULL;
6681 e600f124 2021-03-21 stsp
6682 e600f124 2021-03-21 stsp branch_name = got_ref_get_name(branch);
6683 e600f124 2021-03-21 stsp if (strncmp(branch_name, "refs/heads/", 11) != 0)
6684 e600f124 2021-03-21 stsp return got_error(GOT_ERR_BAD_REF_NAME); /* should not happen */
6685 e600f124 2021-03-21 stsp branch_name += 11;
6686 e600f124 2021-03-21 stsp
6687 e600f124 2021-03-21 stsp err = got_object_id_str(&new_id_str, new_commit_id);
6688 e600f124 2021-03-21 stsp if (err)
6689 e600f124 2021-03-21 stsp return err;
6690 e600f124 2021-03-21 stsp
6691 e600f124 2021-03-21 stsp if (asprintf(&refname, "%s/%s/%s", backup_ref_prefix, branch_name,
6692 e600f124 2021-03-21 stsp new_id_str) == -1) {
6693 e600f124 2021-03-21 stsp err = got_error_from_errno("asprintf");
6694 e600f124 2021-03-21 stsp goto done;
6695 e600f124 2021-03-21 stsp }
6696 e600f124 2021-03-21 stsp
6697 e600f124 2021-03-21 stsp err = got_ref_resolve(&old_commit_id, repo, branch);
6698 e600f124 2021-03-21 stsp if (err)
6699 e600f124 2021-03-21 stsp goto done;
6700 e600f124 2021-03-21 stsp
6701 e600f124 2021-03-21 stsp err = got_ref_alloc(&ref, refname, old_commit_id);
6702 e600f124 2021-03-21 stsp if (err)
6703 e600f124 2021-03-21 stsp goto done;
6704 e600f124 2021-03-21 stsp
6705 e600f124 2021-03-21 stsp err = got_ref_write(ref, repo);
6706 e600f124 2021-03-21 stsp done:
6707 e600f124 2021-03-21 stsp free(new_id_str);
6708 e600f124 2021-03-21 stsp free(refname);
6709 e600f124 2021-03-21 stsp free(old_commit_id);
6710 e600f124 2021-03-21 stsp if (ref)
6711 e600f124 2021-03-21 stsp got_ref_close(ref);
6712 69844fba 2019-07-11 stsp return err;
6713 69844fba 2019-07-11 stsp }
6714 69844fba 2019-07-11 stsp
6715 818c7501 2019-07-11 stsp const struct got_error *
6716 818c7501 2019-07-11 stsp got_worktree_rebase_complete(struct got_worktree *worktree,
6717 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *new_base_branch,
6718 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_reference *rebased_branch,
6719 e600f124 2021-03-21 stsp struct got_repository *repo, int create_backup)
6720 818c7501 2019-07-11 stsp {
6721 a615e0e7 2020-12-16 stsp const struct got_error *err, *unlockerr, *sync_err;
6722 818c7501 2019-07-11 stsp struct got_object_id *new_head_commit_id = NULL;
6723 a615e0e7 2020-12-16 stsp char *fileindex_path = NULL;
6724 818c7501 2019-07-11 stsp
6725 818c7501 2019-07-11 stsp err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
6726 818c7501 2019-07-11 stsp if (err)
6727 818c7501 2019-07-11 stsp return err;
6728 e600f124 2021-03-21 stsp
6729 e600f124 2021-03-21 stsp if (create_backup) {
6730 e600f124 2021-03-21 stsp err = create_backup_ref(GOT_WORKTREE_REBASE_BACKUP_REF_PREFIX,
6731 e600f124 2021-03-21 stsp rebased_branch, new_head_commit_id, repo);
6732 e600f124 2021-03-21 stsp if (err)
6733 e600f124 2021-03-21 stsp goto done;
6734 e600f124 2021-03-21 stsp }
6735 818c7501 2019-07-11 stsp
6736 818c7501 2019-07-11 stsp err = got_ref_change_ref(rebased_branch, new_head_commit_id);
6737 818c7501 2019-07-11 stsp if (err)
6738 818c7501 2019-07-11 stsp goto done;
6739 818c7501 2019-07-11 stsp
6740 818c7501 2019-07-11 stsp err = got_ref_write(rebased_branch, repo);
6741 818c7501 2019-07-11 stsp if (err)
6742 818c7501 2019-07-11 stsp goto done;
6743 818c7501 2019-07-11 stsp
6744 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, rebased_branch);
6745 818c7501 2019-07-11 stsp if (err)
6746 818c7501 2019-07-11 stsp goto done;
6747 818c7501 2019-07-11 stsp
6748 69844fba 2019-07-11 stsp err = delete_rebase_refs(worktree, repo);
6749 a615e0e7 2020-12-16 stsp if (err)
6750 a615e0e7 2020-12-16 stsp goto done;
6751 a615e0e7 2020-12-16 stsp
6752 a615e0e7 2020-12-16 stsp err = get_fileindex_path(&fileindex_path, worktree);
6753 a615e0e7 2020-12-16 stsp if (err)
6754 a615e0e7 2020-12-16 stsp goto done;
6755 a615e0e7 2020-12-16 stsp err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
6756 a615e0e7 2020-12-16 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6757 a615e0e7 2020-12-16 stsp if (sync_err && err == NULL)
6758 a615e0e7 2020-12-16 stsp err = sync_err;
6759 818c7501 2019-07-11 stsp done:
6760 a615e0e7 2020-12-16 stsp got_fileindex_free(fileindex);
6761 a615e0e7 2020-12-16 stsp free(fileindex_path);
6762 818c7501 2019-07-11 stsp free(new_head_commit_id);
6763 818c7501 2019-07-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
6764 818c7501 2019-07-11 stsp if (unlockerr && err == NULL)
6765 818c7501 2019-07-11 stsp err = unlockerr;
6766 818c7501 2019-07-11 stsp return err;
6767 818c7501 2019-07-11 stsp }
6768 818c7501 2019-07-11 stsp
6769 818c7501 2019-07-11 stsp const struct got_error *
6770 818c7501 2019-07-11 stsp got_worktree_rebase_abort(struct got_worktree *worktree,
6771 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_repository *repo,
6772 3e3a69f1 2019-07-25 stsp struct got_reference *new_base_branch,
6773 abc59930 2021-09-05 naddy got_worktree_checkout_cb progress_cb, void *progress_arg)
6774 818c7501 2019-07-11 stsp {
6775 ca355955 2019-07-12 stsp const struct got_error *err, *unlockerr, *sync_err;
6776 818c7501 2019-07-11 stsp struct got_reference *resolved = NULL;
6777 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL;
6778 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
6779 1f1abb7e 2019-08-08 stsp struct revert_file_args rfa;
6780 a3a2faf2 2019-07-12 stsp struct got_object_id *tree_id = NULL;
6781 818c7501 2019-07-11 stsp
6782 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
6783 818c7501 2019-07-11 stsp if (err)
6784 818c7501 2019-07-11 stsp return err;
6785 818c7501 2019-07-11 stsp
6786 818c7501 2019-07-11 stsp err = got_ref_open(&resolved, repo,
6787 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch), 0);
6788 818c7501 2019-07-11 stsp if (err)
6789 818c7501 2019-07-11 stsp goto done;
6790 818c7501 2019-07-11 stsp
6791 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, resolved);
6792 818c7501 2019-07-11 stsp if (err)
6793 818c7501 2019-07-11 stsp goto done;
6794 818c7501 2019-07-11 stsp
6795 818c7501 2019-07-11 stsp /*
6796 818c7501 2019-07-11 stsp * XXX commits to the base branch could have happened while
6797 818c7501 2019-07-11 stsp * we were busy rebasing; should we store the original commit ID
6798 818c7501 2019-07-11 stsp * when rebase begins and read it back here?
6799 818c7501 2019-07-11 stsp */
6800 818c7501 2019-07-11 stsp err = got_ref_resolve(&commit_id, repo, resolved);
6801 818c7501 2019-07-11 stsp if (err)
6802 818c7501 2019-07-11 stsp goto done;
6803 818c7501 2019-07-11 stsp
6804 818c7501 2019-07-11 stsp err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
6805 818c7501 2019-07-11 stsp if (err)
6806 818c7501 2019-07-11 stsp goto done;
6807 818c7501 2019-07-11 stsp
6808 ca355955 2019-07-12 stsp err = got_object_id_by_path(&tree_id, repo,
6809 ca355955 2019-07-12 stsp worktree->base_commit_id, worktree->path_prefix);
6810 ca355955 2019-07-12 stsp if (err)
6811 ca355955 2019-07-12 stsp goto done;
6812 ca355955 2019-07-12 stsp
6813 ca355955 2019-07-12 stsp err = delete_rebase_refs(worktree, repo);
6814 ca355955 2019-07-12 stsp if (err)
6815 ca355955 2019-07-12 stsp goto done;
6816 ca355955 2019-07-12 stsp
6817 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
6818 818c7501 2019-07-11 stsp if (err)
6819 818c7501 2019-07-11 stsp goto done;
6820 818c7501 2019-07-11 stsp
6821 1f1abb7e 2019-08-08 stsp rfa.worktree = worktree;
6822 1f1abb7e 2019-08-08 stsp rfa.fileindex = fileindex;
6823 1f1abb7e 2019-08-08 stsp rfa.progress_cb = progress_cb;
6824 1f1abb7e 2019-08-08 stsp rfa.progress_arg = progress_arg;
6825 33aa809d 2019-08-08 stsp rfa.patch_cb = NULL;
6826 33aa809d 2019-08-08 stsp rfa.patch_arg = NULL;
6827 1f1abb7e 2019-08-08 stsp rfa.repo = repo;
6828 f259c4c1 2021-09-24 stsp rfa.unlink_added_files = 0;
6829 347d1d3e 2019-07-12 stsp err = worktree_status(worktree, "", fileindex, repo,
6830 f2a9dc41 2019-12-13 tracey revert_file, &rfa, NULL, NULL, 0, 0);
6831 55bd499d 2019-07-12 stsp if (err)
6832 1f1abb7e 2019-08-08 stsp goto sync;
6833 55bd499d 2019-07-12 stsp
6834 267fb255 2019-07-12 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL,
6835 267fb255 2019-07-12 stsp repo, progress_cb, progress_arg, NULL, NULL);
6836 ca355955 2019-07-12 stsp sync:
6837 ca355955 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6838 ca355955 2019-07-12 stsp if (sync_err && err == NULL)
6839 ca355955 2019-07-12 stsp err = sync_err;
6840 818c7501 2019-07-11 stsp done:
6841 818c7501 2019-07-11 stsp got_ref_close(resolved);
6842 a3a2faf2 2019-07-12 stsp free(tree_id);
6843 818c7501 2019-07-11 stsp free(commit_id);
6844 0ebf8283 2019-07-24 stsp if (fileindex)
6845 0ebf8283 2019-07-24 stsp got_fileindex_free(fileindex);
6846 0ebf8283 2019-07-24 stsp free(fileindex_path);
6847 0ebf8283 2019-07-24 stsp
6848 0ebf8283 2019-07-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
6849 0ebf8283 2019-07-24 stsp if (unlockerr && err == NULL)
6850 0ebf8283 2019-07-24 stsp err = unlockerr;
6851 0ebf8283 2019-07-24 stsp return err;
6852 0ebf8283 2019-07-24 stsp }
6853 0ebf8283 2019-07-24 stsp
6854 0ebf8283 2019-07-24 stsp const struct got_error *
6855 0ebf8283 2019-07-24 stsp got_worktree_histedit_prepare(struct got_reference **tmp_branch,
6856 0ebf8283 2019-07-24 stsp struct got_reference **branch_ref, struct got_object_id **base_commit_id,
6857 3e3a69f1 2019-07-25 stsp struct got_fileindex **fileindex, struct got_worktree *worktree,
6858 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
6859 0ebf8283 2019-07-24 stsp {
6860 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
6861 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL;
6862 0ebf8283 2019-07-24 stsp char *branch_ref_name = NULL;
6863 0ebf8283 2019-07-24 stsp char *base_commit_ref_name = NULL;
6864 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
6865 0ebf8283 2019-07-24 stsp struct check_rebase_ok_arg ok_arg;
6866 0ebf8283 2019-07-24 stsp struct got_reference *wt_branch = NULL;
6867 0ebf8283 2019-07-24 stsp struct got_reference *base_commit_ref = NULL;
6868 0ebf8283 2019-07-24 stsp
6869 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
6870 0ebf8283 2019-07-24 stsp *branch_ref = NULL;
6871 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
6872 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6873 0ebf8283 2019-07-24 stsp
6874 0ebf8283 2019-07-24 stsp err = lock_worktree(worktree, LOCK_EX);
6875 0ebf8283 2019-07-24 stsp if (err)
6876 0ebf8283 2019-07-24 stsp return err;
6877 0ebf8283 2019-07-24 stsp
6878 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
6879 0ebf8283 2019-07-24 stsp if (err)
6880 0ebf8283 2019-07-24 stsp goto done;
6881 0ebf8283 2019-07-24 stsp
6882 0ebf8283 2019-07-24 stsp ok_arg.worktree = worktree;
6883 0ebf8283 2019-07-24 stsp ok_arg.repo = repo;
6884 3e3a69f1 2019-07-25 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
6885 0ebf8283 2019-07-24 stsp &ok_arg);
6886 0ebf8283 2019-07-24 stsp if (err)
6887 0ebf8283 2019-07-24 stsp goto done;
6888 0ebf8283 2019-07-24 stsp
6889 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6890 0ebf8283 2019-07-24 stsp if (err)
6891 0ebf8283 2019-07-24 stsp goto done;
6892 0ebf8283 2019-07-24 stsp
6893 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6894 0ebf8283 2019-07-24 stsp if (err)
6895 0ebf8283 2019-07-24 stsp goto done;
6896 0ebf8283 2019-07-24 stsp
6897 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6898 0ebf8283 2019-07-24 stsp worktree);
6899 0ebf8283 2019-07-24 stsp if (err)
6900 0ebf8283 2019-07-24 stsp goto done;
6901 0ebf8283 2019-07-24 stsp
6902 0ebf8283 2019-07-24 stsp err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
6903 0ebf8283 2019-07-24 stsp 0);
6904 0ebf8283 2019-07-24 stsp if (err)
6905 0ebf8283 2019-07-24 stsp goto done;
6906 0ebf8283 2019-07-24 stsp
6907 0ebf8283 2019-07-24 stsp err = got_ref_alloc_symref(branch_ref, branch_ref_name, wt_branch);
6908 0ebf8283 2019-07-24 stsp if (err)
6909 0ebf8283 2019-07-24 stsp goto done;
6910 0ebf8283 2019-07-24 stsp
6911 0ebf8283 2019-07-24 stsp err = got_ref_write(*branch_ref, repo);
6912 0ebf8283 2019-07-24 stsp if (err)
6913 0ebf8283 2019-07-24 stsp goto done;
6914 0ebf8283 2019-07-24 stsp
6915 0ebf8283 2019-07-24 stsp err = got_ref_alloc(&base_commit_ref, base_commit_ref_name,
6916 0ebf8283 2019-07-24 stsp worktree->base_commit_id);
6917 0ebf8283 2019-07-24 stsp if (err)
6918 0ebf8283 2019-07-24 stsp goto done;
6919 0ebf8283 2019-07-24 stsp err = got_ref_write(base_commit_ref, repo);
6920 0ebf8283 2019-07-24 stsp if (err)
6921 0ebf8283 2019-07-24 stsp goto done;
6922 0ebf8283 2019-07-24 stsp *base_commit_id = got_object_id_dup(worktree->base_commit_id);
6923 0ebf8283 2019-07-24 stsp if (*base_commit_id == NULL) {
6924 0ebf8283 2019-07-24 stsp err = got_error_from_errno("got_object_id_dup");
6925 0ebf8283 2019-07-24 stsp goto done;
6926 0ebf8283 2019-07-24 stsp }
6927 0ebf8283 2019-07-24 stsp
6928 0ebf8283 2019-07-24 stsp err = got_ref_alloc(tmp_branch, tmp_branch_name,
6929 0ebf8283 2019-07-24 stsp worktree->base_commit_id);
6930 0ebf8283 2019-07-24 stsp if (err)
6931 0ebf8283 2019-07-24 stsp goto done;
6932 0ebf8283 2019-07-24 stsp err = got_ref_write(*tmp_branch, repo);
6933 0ebf8283 2019-07-24 stsp if (err)
6934 0ebf8283 2019-07-24 stsp goto done;
6935 0ebf8283 2019-07-24 stsp
6936 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, *tmp_branch);
6937 0ebf8283 2019-07-24 stsp if (err)
6938 0ebf8283 2019-07-24 stsp goto done;
6939 0ebf8283 2019-07-24 stsp done:
6940 0ebf8283 2019-07-24 stsp free(fileindex_path);
6941 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
6942 0ebf8283 2019-07-24 stsp free(branch_ref_name);
6943 0ebf8283 2019-07-24 stsp free(base_commit_ref_name);
6944 0ebf8283 2019-07-24 stsp if (wt_branch)
6945 0ebf8283 2019-07-24 stsp got_ref_close(wt_branch);
6946 0ebf8283 2019-07-24 stsp if (err) {
6947 0ebf8283 2019-07-24 stsp if (*branch_ref) {
6948 0ebf8283 2019-07-24 stsp got_ref_close(*branch_ref);
6949 0ebf8283 2019-07-24 stsp *branch_ref = NULL;
6950 0ebf8283 2019-07-24 stsp }
6951 0ebf8283 2019-07-24 stsp if (*tmp_branch) {
6952 0ebf8283 2019-07-24 stsp got_ref_close(*tmp_branch);
6953 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
6954 0ebf8283 2019-07-24 stsp }
6955 0ebf8283 2019-07-24 stsp free(*base_commit_id);
6956 3e3a69f1 2019-07-25 stsp if (*fileindex) {
6957 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
6958 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6959 3e3a69f1 2019-07-25 stsp }
6960 0ebf8283 2019-07-24 stsp lock_worktree(worktree, LOCK_SH);
6961 0ebf8283 2019-07-24 stsp }
6962 0ebf8283 2019-07-24 stsp return err;
6963 0ebf8283 2019-07-24 stsp }
6964 0ebf8283 2019-07-24 stsp
6965 0ebf8283 2019-07-24 stsp const struct got_error *
6966 3e3a69f1 2019-07-25 stsp got_worktree_histedit_postpone(struct got_worktree *worktree,
6967 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex)
6968 0ebf8283 2019-07-24 stsp {
6969 3e3a69f1 2019-07-25 stsp if (fileindex)
6970 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
6971 0ebf8283 2019-07-24 stsp return lock_worktree(worktree, LOCK_SH);
6972 0ebf8283 2019-07-24 stsp }
6973 0ebf8283 2019-07-24 stsp
6974 0ebf8283 2019-07-24 stsp const struct got_error *
6975 0ebf8283 2019-07-24 stsp got_worktree_histedit_in_progress(int *in_progress,
6976 0ebf8283 2019-07-24 stsp struct got_worktree *worktree)
6977 0ebf8283 2019-07-24 stsp {
6978 0ebf8283 2019-07-24 stsp const struct got_error *err;
6979 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL;
6980 0ebf8283 2019-07-24 stsp
6981 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6982 0ebf8283 2019-07-24 stsp if (err)
6983 0ebf8283 2019-07-24 stsp return err;
6984 0ebf8283 2019-07-24 stsp
6985 0ebf8283 2019-07-24 stsp *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6986 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
6987 0ebf8283 2019-07-24 stsp return NULL;
6988 0ebf8283 2019-07-24 stsp }
6989 0ebf8283 2019-07-24 stsp
6990 0ebf8283 2019-07-24 stsp const struct got_error *
6991 0ebf8283 2019-07-24 stsp got_worktree_histedit_continue(struct got_object_id **commit_id,
6992 0ebf8283 2019-07-24 stsp struct got_reference **tmp_branch, struct got_reference **branch_ref,
6993 3e3a69f1 2019-07-25 stsp struct got_object_id **base_commit_id, struct got_fileindex **fileindex,
6994 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
6995 0ebf8283 2019-07-24 stsp {
6996 0ebf8283 2019-07-24 stsp const struct got_error *err;
6997 0ebf8283 2019-07-24 stsp char *commit_ref_name = NULL, *base_commit_ref_name = NULL;
6998 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL, *branch_ref_name = NULL;
6999 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
7000 0ebf8283 2019-07-24 stsp struct got_reference *base_commit_ref = NULL;
7001 3e3a69f1 2019-07-25 stsp char *fileindex_path = NULL;
7002 f032f1f7 2019-08-04 stsp int have_staged_files = 0;
7003 0ebf8283 2019-07-24 stsp
7004 0ebf8283 2019-07-24 stsp *commit_id = NULL;
7005 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
7006 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
7007 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
7008 0ebf8283 2019-07-24 stsp
7009 3e3a69f1 2019-07-25 stsp err = lock_worktree(worktree, LOCK_EX);
7010 3e3a69f1 2019-07-25 stsp if (err)
7011 3e3a69f1 2019-07-25 stsp return err;
7012 3e3a69f1 2019-07-25 stsp
7013 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
7014 3e3a69f1 2019-07-25 stsp if (err)
7015 f032f1f7 2019-08-04 stsp goto done;
7016 f032f1f7 2019-08-04 stsp
7017 f032f1f7 2019-08-04 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
7018 f032f1f7 2019-08-04 stsp &have_staged_files);
7019 f032f1f7 2019-08-04 stsp if (err && err->code != GOT_ERR_CANCELLED)
7020 f032f1f7 2019-08-04 stsp goto done;
7021 f032f1f7 2019-08-04 stsp if (have_staged_files) {
7022 f032f1f7 2019-08-04 stsp err = got_error(GOT_ERR_STAGED_PATHS);
7023 3e3a69f1 2019-07-25 stsp goto done;
7024 f032f1f7 2019-08-04 stsp }
7025 3e3a69f1 2019-07-25 stsp
7026 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
7027 0ebf8283 2019-07-24 stsp if (err)
7028 f032f1f7 2019-08-04 stsp goto done;
7029 0ebf8283 2019-07-24 stsp
7030 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
7031 0ebf8283 2019-07-24 stsp if (err)
7032 0ebf8283 2019-07-24 stsp goto done;
7033 0ebf8283 2019-07-24 stsp
7034 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
7035 0ebf8283 2019-07-24 stsp if (err)
7036 0ebf8283 2019-07-24 stsp goto done;
7037 0ebf8283 2019-07-24 stsp
7038 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
7039 0ebf8283 2019-07-24 stsp worktree);
7040 0ebf8283 2019-07-24 stsp if (err)
7041 0ebf8283 2019-07-24 stsp goto done;
7042 0ebf8283 2019-07-24 stsp
7043 0ebf8283 2019-07-24 stsp err = got_ref_open(branch_ref, repo, branch_ref_name, 0);
7044 0ebf8283 2019-07-24 stsp if (err)
7045 0ebf8283 2019-07-24 stsp goto done;
7046 0ebf8283 2019-07-24 stsp
7047 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
7048 0ebf8283 2019-07-24 stsp if (err)
7049 0ebf8283 2019-07-24 stsp goto done;
7050 0ebf8283 2019-07-24 stsp err = got_ref_resolve(commit_id, repo, commit_ref);
7051 0ebf8283 2019-07-24 stsp if (err)
7052 0ebf8283 2019-07-24 stsp goto done;
7053 0ebf8283 2019-07-24 stsp
7054 0ebf8283 2019-07-24 stsp err = got_ref_open(&base_commit_ref, repo, base_commit_ref_name, 0);
7055 0ebf8283 2019-07-24 stsp if (err)
7056 0ebf8283 2019-07-24 stsp goto done;
7057 0ebf8283 2019-07-24 stsp err = got_ref_resolve(base_commit_id, repo, base_commit_ref);
7058 0ebf8283 2019-07-24 stsp if (err)
7059 0ebf8283 2019-07-24 stsp goto done;
7060 0ebf8283 2019-07-24 stsp
7061 0ebf8283 2019-07-24 stsp err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
7062 0ebf8283 2019-07-24 stsp if (err)
7063 0ebf8283 2019-07-24 stsp goto done;
7064 0ebf8283 2019-07-24 stsp done:
7065 0ebf8283 2019-07-24 stsp free(commit_ref_name);
7066 0ebf8283 2019-07-24 stsp free(branch_ref_name);
7067 3e3a69f1 2019-07-25 stsp free(fileindex_path);
7068 0ebf8283 2019-07-24 stsp if (commit_ref)
7069 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
7070 0ebf8283 2019-07-24 stsp if (base_commit_ref)
7071 0ebf8283 2019-07-24 stsp got_ref_close(base_commit_ref);
7072 0ebf8283 2019-07-24 stsp if (err) {
7073 0ebf8283 2019-07-24 stsp free(*commit_id);
7074 0ebf8283 2019-07-24 stsp *commit_id = NULL;
7075 0ebf8283 2019-07-24 stsp free(*base_commit_id);
7076 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
7077 0ebf8283 2019-07-24 stsp if (*tmp_branch) {
7078 0ebf8283 2019-07-24 stsp got_ref_close(*tmp_branch);
7079 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
7080 0ebf8283 2019-07-24 stsp }
7081 3e3a69f1 2019-07-25 stsp if (*fileindex) {
7082 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
7083 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
7084 3e3a69f1 2019-07-25 stsp }
7085 3e3a69f1 2019-07-25 stsp lock_worktree(worktree, LOCK_EX);
7086 0ebf8283 2019-07-24 stsp }
7087 0ebf8283 2019-07-24 stsp return err;
7088 0ebf8283 2019-07-24 stsp }
7089 0ebf8283 2019-07-24 stsp
7090 0ebf8283 2019-07-24 stsp static const struct got_error *
7091 0ebf8283 2019-07-24 stsp delete_histedit_refs(struct got_worktree *worktree, struct got_repository *repo)
7092 0ebf8283 2019-07-24 stsp {
7093 0ebf8283 2019-07-24 stsp const struct got_error *err;
7094 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL, *base_commit_ref_name = NULL;
7095 0ebf8283 2019-07-24 stsp char *branch_ref_name = NULL, *commit_ref_name = NULL;
7096 0ebf8283 2019-07-24 stsp
7097 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
7098 0ebf8283 2019-07-24 stsp if (err)
7099 0ebf8283 2019-07-24 stsp goto done;
7100 0ebf8283 2019-07-24 stsp err = delete_ref(tmp_branch_name, repo);
7101 0ebf8283 2019-07-24 stsp if (err)
7102 0ebf8283 2019-07-24 stsp goto done;
7103 0ebf8283 2019-07-24 stsp
7104 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
7105 0ebf8283 2019-07-24 stsp worktree);
7106 0ebf8283 2019-07-24 stsp if (err)
7107 0ebf8283 2019-07-24 stsp goto done;
7108 0ebf8283 2019-07-24 stsp err = delete_ref(base_commit_ref_name, repo);
7109 0ebf8283 2019-07-24 stsp if (err)
7110 0ebf8283 2019-07-24 stsp goto done;
7111 0ebf8283 2019-07-24 stsp
7112 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
7113 0ebf8283 2019-07-24 stsp if (err)
7114 0ebf8283 2019-07-24 stsp goto done;
7115 0ebf8283 2019-07-24 stsp err = delete_ref(branch_ref_name, repo);
7116 0ebf8283 2019-07-24 stsp if (err)
7117 0ebf8283 2019-07-24 stsp goto done;
7118 0ebf8283 2019-07-24 stsp
7119 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
7120 0ebf8283 2019-07-24 stsp if (err)
7121 0ebf8283 2019-07-24 stsp goto done;
7122 0ebf8283 2019-07-24 stsp err = delete_ref(commit_ref_name, repo);
7123 0ebf8283 2019-07-24 stsp if (err)
7124 0ebf8283 2019-07-24 stsp goto done;
7125 0ebf8283 2019-07-24 stsp done:
7126 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
7127 0ebf8283 2019-07-24 stsp free(base_commit_ref_name);
7128 0ebf8283 2019-07-24 stsp free(branch_ref_name);
7129 0ebf8283 2019-07-24 stsp free(commit_ref_name);
7130 0ebf8283 2019-07-24 stsp return err;
7131 0ebf8283 2019-07-24 stsp }
7132 0ebf8283 2019-07-24 stsp
7133 0ebf8283 2019-07-24 stsp const struct got_error *
7134 0ebf8283 2019-07-24 stsp got_worktree_histedit_abort(struct got_worktree *worktree,
7135 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_repository *repo,
7136 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_object_id *base_commit_id,
7137 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
7138 0ebf8283 2019-07-24 stsp {
7139 0ebf8283 2019-07-24 stsp const struct got_error *err, *unlockerr, *sync_err;
7140 0ebf8283 2019-07-24 stsp struct got_reference *resolved = NULL;
7141 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
7142 0ebf8283 2019-07-24 stsp struct got_object_id *tree_id = NULL;
7143 1f1abb7e 2019-08-08 stsp struct revert_file_args rfa;
7144 0ebf8283 2019-07-24 stsp
7145 0ebf8283 2019-07-24 stsp err = lock_worktree(worktree, LOCK_EX);
7146 0ebf8283 2019-07-24 stsp if (err)
7147 0ebf8283 2019-07-24 stsp return err;
7148 0ebf8283 2019-07-24 stsp
7149 0ebf8283 2019-07-24 stsp err = got_ref_open(&resolved, repo,
7150 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch), 0);
7151 0ebf8283 2019-07-24 stsp if (err)
7152 0ebf8283 2019-07-24 stsp goto done;
7153 0ebf8283 2019-07-24 stsp
7154 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, resolved);
7155 0ebf8283 2019-07-24 stsp if (err)
7156 0ebf8283 2019-07-24 stsp goto done;
7157 0ebf8283 2019-07-24 stsp
7158 0ebf8283 2019-07-24 stsp err = got_worktree_set_base_commit_id(worktree, repo, base_commit_id);
7159 0ebf8283 2019-07-24 stsp if (err)
7160 0ebf8283 2019-07-24 stsp goto done;
7161 0ebf8283 2019-07-24 stsp
7162 0ebf8283 2019-07-24 stsp err = got_object_id_by_path(&tree_id, repo, base_commit_id,
7163 0ebf8283 2019-07-24 stsp worktree->path_prefix);
7164 0ebf8283 2019-07-24 stsp if (err)
7165 0ebf8283 2019-07-24 stsp goto done;
7166 0ebf8283 2019-07-24 stsp
7167 0ebf8283 2019-07-24 stsp err = delete_histedit_refs(worktree, repo);
7168 0ebf8283 2019-07-24 stsp if (err)
7169 0ebf8283 2019-07-24 stsp goto done;
7170 0ebf8283 2019-07-24 stsp
7171 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
7172 0ebf8283 2019-07-24 stsp if (err)
7173 0ebf8283 2019-07-24 stsp goto done;
7174 0ebf8283 2019-07-24 stsp
7175 1f1abb7e 2019-08-08 stsp rfa.worktree = worktree;
7176 1f1abb7e 2019-08-08 stsp rfa.fileindex = fileindex;
7177 1f1abb7e 2019-08-08 stsp rfa.progress_cb = progress_cb;
7178 1f1abb7e 2019-08-08 stsp rfa.progress_arg = progress_arg;
7179 33aa809d 2019-08-08 stsp rfa.patch_cb = NULL;
7180 33aa809d 2019-08-08 stsp rfa.patch_arg = NULL;
7181 1f1abb7e 2019-08-08 stsp rfa.repo = repo;
7182 f259c4c1 2021-09-24 stsp rfa.unlink_added_files = 0;
7183 0ebf8283 2019-07-24 stsp err = worktree_status(worktree, "", fileindex, repo,
7184 f2a9dc41 2019-12-13 tracey revert_file, &rfa, NULL, NULL, 0, 0);
7185 0ebf8283 2019-07-24 stsp if (err)
7186 1f1abb7e 2019-08-08 stsp goto sync;
7187 0ebf8283 2019-07-24 stsp
7188 0ebf8283 2019-07-24 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL,
7189 0ebf8283 2019-07-24 stsp repo, progress_cb, progress_arg, NULL, NULL);
7190 0ebf8283 2019-07-24 stsp sync:
7191 0ebf8283 2019-07-24 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7192 0ebf8283 2019-07-24 stsp if (sync_err && err == NULL)
7193 0ebf8283 2019-07-24 stsp err = sync_err;
7194 0ebf8283 2019-07-24 stsp done:
7195 0ebf8283 2019-07-24 stsp got_ref_close(resolved);
7196 0ebf8283 2019-07-24 stsp free(tree_id);
7197 818c7501 2019-07-11 stsp free(fileindex_path);
7198 818c7501 2019-07-11 stsp
7199 818c7501 2019-07-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7200 818c7501 2019-07-11 stsp if (unlockerr && err == NULL)
7201 818c7501 2019-07-11 stsp err = unlockerr;
7202 818c7501 2019-07-11 stsp return err;
7203 818c7501 2019-07-11 stsp }
7204 0ebf8283 2019-07-24 stsp
7205 0ebf8283 2019-07-24 stsp const struct got_error *
7206 0ebf8283 2019-07-24 stsp got_worktree_histedit_complete(struct got_worktree *worktree,
7207 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
7208 3e3a69f1 2019-07-25 stsp struct got_reference *edited_branch, struct got_repository *repo)
7209 0ebf8283 2019-07-24 stsp {
7210 a615e0e7 2020-12-16 stsp const struct got_error *err, *unlockerr, *sync_err;
7211 0ebf8283 2019-07-24 stsp struct got_object_id *new_head_commit_id = NULL;
7212 0ebf8283 2019-07-24 stsp struct got_reference *resolved = NULL;
7213 a615e0e7 2020-12-16 stsp char *fileindex_path = NULL;
7214 0ebf8283 2019-07-24 stsp
7215 0ebf8283 2019-07-24 stsp err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
7216 0ebf8283 2019-07-24 stsp if (err)
7217 0ebf8283 2019-07-24 stsp return err;
7218 0ebf8283 2019-07-24 stsp
7219 0ebf8283 2019-07-24 stsp err = got_ref_open(&resolved, repo,
7220 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(edited_branch), 0);
7221 e600f124 2021-03-21 stsp if (err)
7222 e600f124 2021-03-21 stsp goto done;
7223 e600f124 2021-03-21 stsp
7224 e600f124 2021-03-21 stsp err = create_backup_ref(GOT_WORKTREE_HISTEDIT_BACKUP_REF_PREFIX,
7225 e600f124 2021-03-21 stsp resolved, new_head_commit_id, repo);
7226 0ebf8283 2019-07-24 stsp if (err)
7227 0ebf8283 2019-07-24 stsp goto done;
7228 0ebf8283 2019-07-24 stsp
7229 0ebf8283 2019-07-24 stsp err = got_ref_change_ref(resolved, new_head_commit_id);
7230 0ebf8283 2019-07-24 stsp if (err)
7231 0ebf8283 2019-07-24 stsp goto done;
7232 0ebf8283 2019-07-24 stsp
7233 0ebf8283 2019-07-24 stsp err = got_ref_write(resolved, repo);
7234 0ebf8283 2019-07-24 stsp if (err)
7235 0ebf8283 2019-07-24 stsp goto done;
7236 0ebf8283 2019-07-24 stsp
7237 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, resolved);
7238 0ebf8283 2019-07-24 stsp if (err)
7239 0ebf8283 2019-07-24 stsp goto done;
7240 0ebf8283 2019-07-24 stsp
7241 0ebf8283 2019-07-24 stsp err = delete_histedit_refs(worktree, repo);
7242 a615e0e7 2020-12-16 stsp if (err)
7243 a615e0e7 2020-12-16 stsp goto done;
7244 a615e0e7 2020-12-16 stsp
7245 a615e0e7 2020-12-16 stsp err = get_fileindex_path(&fileindex_path, worktree);
7246 a615e0e7 2020-12-16 stsp if (err)
7247 a615e0e7 2020-12-16 stsp goto done;
7248 a615e0e7 2020-12-16 stsp err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7249 a615e0e7 2020-12-16 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7250 a615e0e7 2020-12-16 stsp if (sync_err && err == NULL)
7251 a615e0e7 2020-12-16 stsp err = sync_err;
7252 0ebf8283 2019-07-24 stsp done:
7253 a615e0e7 2020-12-16 stsp got_fileindex_free(fileindex);
7254 a615e0e7 2020-12-16 stsp free(fileindex_path);
7255 0ebf8283 2019-07-24 stsp free(new_head_commit_id);
7256 0ebf8283 2019-07-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7257 0ebf8283 2019-07-24 stsp if (unlockerr && err == NULL)
7258 0ebf8283 2019-07-24 stsp err = unlockerr;
7259 0ebf8283 2019-07-24 stsp return err;
7260 0ebf8283 2019-07-24 stsp }
7261 0ebf8283 2019-07-24 stsp
7262 0ebf8283 2019-07-24 stsp const struct got_error *
7263 0ebf8283 2019-07-24 stsp got_worktree_histedit_skip_commit(struct got_worktree *worktree,
7264 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
7265 0ebf8283 2019-07-24 stsp {
7266 0ebf8283 2019-07-24 stsp const struct got_error *err;
7267 0ebf8283 2019-07-24 stsp char *commit_ref_name;
7268 0ebf8283 2019-07-24 stsp
7269 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
7270 0ebf8283 2019-07-24 stsp if (err)
7271 0ebf8283 2019-07-24 stsp return err;
7272 0ebf8283 2019-07-24 stsp
7273 de05890f 2020-03-05 stsp err = store_commit_id(commit_ref_name, commit_id, 0, repo);
7274 0ebf8283 2019-07-24 stsp if (err)
7275 0ebf8283 2019-07-24 stsp goto done;
7276 0ebf8283 2019-07-24 stsp
7277 0ebf8283 2019-07-24 stsp err = delete_ref(commit_ref_name, repo);
7278 0ebf8283 2019-07-24 stsp done:
7279 0ebf8283 2019-07-24 stsp free(commit_ref_name);
7280 2822a352 2019-10-15 stsp return err;
7281 2822a352 2019-10-15 stsp }
7282 2822a352 2019-10-15 stsp
7283 2822a352 2019-10-15 stsp const struct got_error *
7284 2822a352 2019-10-15 stsp got_worktree_integrate_prepare(struct got_fileindex **fileindex,
7285 2822a352 2019-10-15 stsp struct got_reference **branch_ref, struct got_reference **base_branch_ref,
7286 2822a352 2019-10-15 stsp struct got_worktree *worktree, const char *refname,
7287 2822a352 2019-10-15 stsp struct got_repository *repo)
7288 2822a352 2019-10-15 stsp {
7289 2822a352 2019-10-15 stsp const struct got_error *err = NULL;
7290 2822a352 2019-10-15 stsp char *fileindex_path = NULL;
7291 2822a352 2019-10-15 stsp struct check_rebase_ok_arg ok_arg;
7292 2822a352 2019-10-15 stsp
7293 2822a352 2019-10-15 stsp *fileindex = NULL;
7294 2822a352 2019-10-15 stsp *branch_ref = NULL;
7295 2822a352 2019-10-15 stsp *base_branch_ref = NULL;
7296 2822a352 2019-10-15 stsp
7297 2822a352 2019-10-15 stsp err = lock_worktree(worktree, LOCK_EX);
7298 2822a352 2019-10-15 stsp if (err)
7299 2822a352 2019-10-15 stsp return err;
7300 2822a352 2019-10-15 stsp
7301 2822a352 2019-10-15 stsp if (strcmp(refname, got_worktree_get_head_ref_name(worktree)) == 0) {
7302 2822a352 2019-10-15 stsp err = got_error_msg(GOT_ERR_SAME_BRANCH,
7303 2822a352 2019-10-15 stsp "cannot integrate a branch into itself; "
7304 2822a352 2019-10-15 stsp "update -b or different branch name required");
7305 2822a352 2019-10-15 stsp goto done;
7306 2822a352 2019-10-15 stsp }
7307 2822a352 2019-10-15 stsp
7308 2822a352 2019-10-15 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
7309 2822a352 2019-10-15 stsp if (err)
7310 2822a352 2019-10-15 stsp goto done;
7311 2822a352 2019-10-15 stsp
7312 2822a352 2019-10-15 stsp /* Preconditions are the same as for rebase. */
7313 2822a352 2019-10-15 stsp ok_arg.worktree = worktree;
7314 2822a352 2019-10-15 stsp ok_arg.repo = repo;
7315 2822a352 2019-10-15 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
7316 2822a352 2019-10-15 stsp &ok_arg);
7317 2822a352 2019-10-15 stsp if (err)
7318 2822a352 2019-10-15 stsp goto done;
7319 2822a352 2019-10-15 stsp
7320 2822a352 2019-10-15 stsp err = got_ref_open(branch_ref, repo, refname, 1);
7321 2822a352 2019-10-15 stsp if (err)
7322 2822a352 2019-10-15 stsp goto done;
7323 2822a352 2019-10-15 stsp
7324 2822a352 2019-10-15 stsp err = got_ref_open(base_branch_ref, repo,
7325 2822a352 2019-10-15 stsp got_worktree_get_head_ref_name(worktree), 1);
7326 2822a352 2019-10-15 stsp done:
7327 2822a352 2019-10-15 stsp if (err) {
7328 2822a352 2019-10-15 stsp if (*branch_ref) {
7329 2822a352 2019-10-15 stsp got_ref_close(*branch_ref);
7330 2822a352 2019-10-15 stsp *branch_ref = NULL;
7331 2822a352 2019-10-15 stsp }
7332 2822a352 2019-10-15 stsp if (*base_branch_ref) {
7333 2822a352 2019-10-15 stsp got_ref_close(*base_branch_ref);
7334 2822a352 2019-10-15 stsp *base_branch_ref = NULL;
7335 2822a352 2019-10-15 stsp }
7336 2822a352 2019-10-15 stsp if (*fileindex) {
7337 2822a352 2019-10-15 stsp got_fileindex_free(*fileindex);
7338 2822a352 2019-10-15 stsp *fileindex = NULL;
7339 2822a352 2019-10-15 stsp }
7340 2822a352 2019-10-15 stsp lock_worktree(worktree, LOCK_SH);
7341 2822a352 2019-10-15 stsp }
7342 0cb83759 2019-08-03 stsp return err;
7343 0cb83759 2019-08-03 stsp }
7344 0cb83759 2019-08-03 stsp
7345 2822a352 2019-10-15 stsp const struct got_error *
7346 2822a352 2019-10-15 stsp got_worktree_integrate_continue(struct got_worktree *worktree,
7347 2822a352 2019-10-15 stsp struct got_fileindex *fileindex, struct got_repository *repo,
7348 2822a352 2019-10-15 stsp struct got_reference *branch_ref, struct got_reference *base_branch_ref,
7349 2822a352 2019-10-15 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
7350 2822a352 2019-10-15 stsp got_cancel_cb cancel_cb, void *cancel_arg)
7351 2822a352 2019-10-15 stsp {
7352 2822a352 2019-10-15 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
7353 2822a352 2019-10-15 stsp char *fileindex_path = NULL;
7354 2822a352 2019-10-15 stsp struct got_object_id *tree_id = NULL, *commit_id = NULL;
7355 2822a352 2019-10-15 stsp
7356 2822a352 2019-10-15 stsp err = get_fileindex_path(&fileindex_path, worktree);
7357 2822a352 2019-10-15 stsp if (err)
7358 2822a352 2019-10-15 stsp goto done;
7359 2822a352 2019-10-15 stsp
7360 2822a352 2019-10-15 stsp err = got_ref_resolve(&commit_id, repo, branch_ref);
7361 2822a352 2019-10-15 stsp if (err)
7362 2822a352 2019-10-15 stsp goto done;
7363 2822a352 2019-10-15 stsp
7364 2822a352 2019-10-15 stsp err = got_object_id_by_path(&tree_id, repo, commit_id,
7365 2822a352 2019-10-15 stsp worktree->path_prefix);
7366 2822a352 2019-10-15 stsp if (err)
7367 2822a352 2019-10-15 stsp goto done;
7368 2822a352 2019-10-15 stsp
7369 2822a352 2019-10-15 stsp err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
7370 2822a352 2019-10-15 stsp if (err)
7371 2822a352 2019-10-15 stsp goto done;
7372 2822a352 2019-10-15 stsp
7373 2822a352 2019-10-15 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL, repo,
7374 2822a352 2019-10-15 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
7375 2822a352 2019-10-15 stsp if (err)
7376 2822a352 2019-10-15 stsp goto sync;
7377 2822a352 2019-10-15 stsp
7378 2822a352 2019-10-15 stsp err = got_ref_change_ref(base_branch_ref, commit_id);
7379 2822a352 2019-10-15 stsp if (err)
7380 2822a352 2019-10-15 stsp goto sync;
7381 2822a352 2019-10-15 stsp
7382 2822a352 2019-10-15 stsp err = got_ref_write(base_branch_ref, repo);
7383 6e210706 2021-01-22 stsp if (err)
7384 6e210706 2021-01-22 stsp goto sync;
7385 6e210706 2021-01-22 stsp
7386 6e210706 2021-01-22 stsp err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7387 2822a352 2019-10-15 stsp sync:
7388 2822a352 2019-10-15 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7389 2822a352 2019-10-15 stsp if (sync_err && err == NULL)
7390 2822a352 2019-10-15 stsp err = sync_err;
7391 2822a352 2019-10-15 stsp
7392 2822a352 2019-10-15 stsp done:
7393 2822a352 2019-10-15 stsp unlockerr = got_ref_unlock(branch_ref);
7394 2822a352 2019-10-15 stsp if (unlockerr && err == NULL)
7395 2822a352 2019-10-15 stsp err = unlockerr;
7396 2822a352 2019-10-15 stsp got_ref_close(branch_ref);
7397 2822a352 2019-10-15 stsp
7398 2822a352 2019-10-15 stsp unlockerr = got_ref_unlock(base_branch_ref);
7399 2822a352 2019-10-15 stsp if (unlockerr && err == NULL)
7400 2822a352 2019-10-15 stsp err = unlockerr;
7401 2822a352 2019-10-15 stsp got_ref_close(base_branch_ref);
7402 2822a352 2019-10-15 stsp
7403 2822a352 2019-10-15 stsp got_fileindex_free(fileindex);
7404 2822a352 2019-10-15 stsp free(fileindex_path);
7405 2822a352 2019-10-15 stsp free(tree_id);
7406 2822a352 2019-10-15 stsp
7407 2822a352 2019-10-15 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7408 2822a352 2019-10-15 stsp if (unlockerr && err == NULL)
7409 2822a352 2019-10-15 stsp err = unlockerr;
7410 2822a352 2019-10-15 stsp return err;
7411 2822a352 2019-10-15 stsp }
7412 2822a352 2019-10-15 stsp
7413 2822a352 2019-10-15 stsp const struct got_error *
7414 2822a352 2019-10-15 stsp got_worktree_integrate_abort(struct got_worktree *worktree,
7415 2822a352 2019-10-15 stsp struct got_fileindex *fileindex, struct got_repository *repo,
7416 2822a352 2019-10-15 stsp struct got_reference *branch_ref, struct got_reference *base_branch_ref)
7417 2822a352 2019-10-15 stsp {
7418 8b692cd0 2019-10-21 stsp const struct got_error *err = NULL, *unlockerr = NULL;
7419 8b692cd0 2019-10-21 stsp
7420 8b692cd0 2019-10-21 stsp got_fileindex_free(fileindex);
7421 8b692cd0 2019-10-21 stsp
7422 8b692cd0 2019-10-21 stsp err = lock_worktree(worktree, LOCK_SH);
7423 8b692cd0 2019-10-21 stsp
7424 8b692cd0 2019-10-21 stsp unlockerr = got_ref_unlock(branch_ref);
7425 8b692cd0 2019-10-21 stsp if (unlockerr && err == NULL)
7426 8b692cd0 2019-10-21 stsp err = unlockerr;
7427 2822a352 2019-10-15 stsp got_ref_close(branch_ref);
7428 8b692cd0 2019-10-21 stsp
7429 8b692cd0 2019-10-21 stsp unlockerr = got_ref_unlock(base_branch_ref);
7430 8b692cd0 2019-10-21 stsp if (unlockerr && err == NULL)
7431 8b692cd0 2019-10-21 stsp err = unlockerr;
7432 2822a352 2019-10-15 stsp got_ref_close(base_branch_ref);
7433 f259c4c1 2021-09-24 stsp
7434 f259c4c1 2021-09-24 stsp return err;
7435 f259c4c1 2021-09-24 stsp }
7436 f259c4c1 2021-09-24 stsp
7437 f259c4c1 2021-09-24 stsp const struct got_error *
7438 f259c4c1 2021-09-24 stsp got_worktree_merge_postpone(struct got_worktree *worktree,
7439 f259c4c1 2021-09-24 stsp struct got_fileindex *fileindex)
7440 f259c4c1 2021-09-24 stsp {
7441 f259c4c1 2021-09-24 stsp const struct got_error *err, *sync_err;
7442 f259c4c1 2021-09-24 stsp char *fileindex_path = NULL;
7443 f259c4c1 2021-09-24 stsp
7444 f259c4c1 2021-09-24 stsp err = get_fileindex_path(&fileindex_path, worktree);
7445 f259c4c1 2021-09-24 stsp if (err)
7446 f259c4c1 2021-09-24 stsp goto done;
7447 8b692cd0 2019-10-21 stsp
7448 f259c4c1 2021-09-24 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7449 f259c4c1 2021-09-24 stsp
7450 f259c4c1 2021-09-24 stsp err = lock_worktree(worktree, LOCK_SH);
7451 f259c4c1 2021-09-24 stsp if (sync_err && err == NULL)
7452 f259c4c1 2021-09-24 stsp err = sync_err;
7453 f259c4c1 2021-09-24 stsp done:
7454 f259c4c1 2021-09-24 stsp got_fileindex_free(fileindex);
7455 f259c4c1 2021-09-24 stsp free(fileindex_path);
7456 8b692cd0 2019-10-21 stsp return err;
7457 2822a352 2019-10-15 stsp }
7458 2822a352 2019-10-15 stsp
7459 f259c4c1 2021-09-24 stsp static const struct got_error *
7460 f259c4c1 2021-09-24 stsp delete_merge_refs(struct got_worktree *worktree, struct got_repository *repo)
7461 f259c4c1 2021-09-24 stsp {
7462 f259c4c1 2021-09-24 stsp const struct got_error *err;
7463 f259c4c1 2021-09-24 stsp char *branch_refname = NULL, *commit_refname = NULL;
7464 f259c4c1 2021-09-24 stsp
7465 f259c4c1 2021-09-24 stsp err = get_merge_branch_ref_name(&branch_refname, worktree);
7466 f259c4c1 2021-09-24 stsp if (err)
7467 f259c4c1 2021-09-24 stsp goto done;
7468 f259c4c1 2021-09-24 stsp err = delete_ref(branch_refname, repo);
7469 f259c4c1 2021-09-24 stsp if (err)
7470 f259c4c1 2021-09-24 stsp goto done;
7471 f259c4c1 2021-09-24 stsp
7472 f259c4c1 2021-09-24 stsp err = get_merge_commit_ref_name(&commit_refname, worktree);
7473 f259c4c1 2021-09-24 stsp if (err)
7474 f259c4c1 2021-09-24 stsp goto done;
7475 f259c4c1 2021-09-24 stsp err = delete_ref(commit_refname, repo);
7476 f259c4c1 2021-09-24 stsp if (err)
7477 f259c4c1 2021-09-24 stsp goto done;
7478 f259c4c1 2021-09-24 stsp
7479 f259c4c1 2021-09-24 stsp done:
7480 f259c4c1 2021-09-24 stsp free(branch_refname);
7481 f259c4c1 2021-09-24 stsp free(commit_refname);
7482 f259c4c1 2021-09-24 stsp return err;
7483 f259c4c1 2021-09-24 stsp }
7484 f259c4c1 2021-09-24 stsp
7485 f259c4c1 2021-09-24 stsp struct merge_commit_msg_arg {
7486 f259c4c1 2021-09-24 stsp struct got_worktree *worktree;
7487 f259c4c1 2021-09-24 stsp const char *branch_name;
7488 f259c4c1 2021-09-24 stsp };
7489 f259c4c1 2021-09-24 stsp
7490 f259c4c1 2021-09-24 stsp static const struct got_error *
7491 f259c4c1 2021-09-24 stsp merge_commit_msg_cb(struct got_pathlist_head *commitable_paths, char **logmsg,
7492 f259c4c1 2021-09-24 stsp void *arg)
7493 f259c4c1 2021-09-24 stsp {
7494 f259c4c1 2021-09-24 stsp struct merge_commit_msg_arg *a = arg;
7495 f259c4c1 2021-09-24 stsp
7496 f259c4c1 2021-09-24 stsp if (asprintf(logmsg, "merge %s into %s\n", a->branch_name,
7497 f259c4c1 2021-09-24 stsp got_worktree_get_head_ref_name(a->worktree)) == -1)
7498 f259c4c1 2021-09-24 stsp return got_error_from_errno("asprintf");
7499 f259c4c1 2021-09-24 stsp
7500 f259c4c1 2021-09-24 stsp return NULL;
7501 f259c4c1 2021-09-24 stsp }
7502 f259c4c1 2021-09-24 stsp
7503 f259c4c1 2021-09-24 stsp static const struct got_error *
7504 f259c4c1 2021-09-24 stsp merge_status_cb(void *arg, unsigned char status, unsigned char staged_status,
7505 f259c4c1 2021-09-24 stsp const char *path, struct got_object_id *blob_id,
7506 f259c4c1 2021-09-24 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
7507 f259c4c1 2021-09-24 stsp int dirfd, const char *de_name)
7508 f259c4c1 2021-09-24 stsp {
7509 f259c4c1 2021-09-24 stsp return NULL;
7510 f259c4c1 2021-09-24 stsp }
7511 f259c4c1 2021-09-24 stsp
7512 f259c4c1 2021-09-24 stsp const struct got_error *
7513 f259c4c1 2021-09-24 stsp got_worktree_merge_branch(struct got_worktree *worktree,
7514 f259c4c1 2021-09-24 stsp struct got_fileindex *fileindex,
7515 f259c4c1 2021-09-24 stsp struct got_object_id *yca_commit_id,
7516 f259c4c1 2021-09-24 stsp struct got_object_id *branch_tip,
7517 f259c4c1 2021-09-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
7518 f259c4c1 2021-09-24 stsp void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
7519 f259c4c1 2021-09-24 stsp {
7520 f259c4c1 2021-09-24 stsp const struct got_error *err;
7521 f259c4c1 2021-09-24 stsp char *fileindex_path = NULL;
7522 f259c4c1 2021-09-24 stsp
7523 f259c4c1 2021-09-24 stsp err = get_fileindex_path(&fileindex_path, worktree);
7524 f259c4c1 2021-09-24 stsp if (err)
7525 f259c4c1 2021-09-24 stsp goto done;
7526 f259c4c1 2021-09-24 stsp
7527 f259c4c1 2021-09-24 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_mixed_commits,
7528 f259c4c1 2021-09-24 stsp worktree);
7529 f259c4c1 2021-09-24 stsp if (err)
7530 f259c4c1 2021-09-24 stsp goto done;
7531 f259c4c1 2021-09-24 stsp
7532 f259c4c1 2021-09-24 stsp err = merge_files(worktree, fileindex, fileindex_path, yca_commit_id,
7533 f259c4c1 2021-09-24 stsp branch_tip, repo, progress_cb, progress_arg,
7534 f259c4c1 2021-09-24 stsp cancel_cb, cancel_arg);
7535 f259c4c1 2021-09-24 stsp done:
7536 f259c4c1 2021-09-24 stsp free(fileindex_path);
7537 f259c4c1 2021-09-24 stsp return err;
7538 f259c4c1 2021-09-24 stsp }
7539 f259c4c1 2021-09-24 stsp
7540 f259c4c1 2021-09-24 stsp const struct got_error *
7541 f259c4c1 2021-09-24 stsp got_worktree_merge_commit(struct got_object_id **new_commit_id,
7542 f259c4c1 2021-09-24 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
7543 f259c4c1 2021-09-24 stsp const char *author, const char *committer, int allow_bad_symlinks,
7544 f259c4c1 2021-09-24 stsp struct got_object_id *branch_tip, const char *branch_name,
7545 f259c4c1 2021-09-24 stsp struct got_repository *repo)
7546 f259c4c1 2021-09-24 stsp {
7547 f259c4c1 2021-09-24 stsp const struct got_error *err = NULL, *sync_err;
7548 f259c4c1 2021-09-24 stsp struct got_pathlist_head commitable_paths;
7549 f259c4c1 2021-09-24 stsp struct collect_commitables_arg cc_arg;
7550 f259c4c1 2021-09-24 stsp struct got_pathlist_entry *pe;
7551 f259c4c1 2021-09-24 stsp struct got_reference *head_ref = NULL;
7552 f259c4c1 2021-09-24 stsp struct got_object_id *head_commit_id = NULL;
7553 f259c4c1 2021-09-24 stsp int have_staged_files = 0;
7554 f259c4c1 2021-09-24 stsp struct merge_commit_msg_arg mcm_arg;
7555 f259c4c1 2021-09-24 stsp char *fileindex_path = NULL;
7556 f259c4c1 2021-09-24 stsp
7557 f259c4c1 2021-09-24 stsp *new_commit_id = NULL;
7558 f259c4c1 2021-09-24 stsp
7559 f259c4c1 2021-09-24 stsp TAILQ_INIT(&commitable_paths);
7560 f259c4c1 2021-09-24 stsp
7561 f259c4c1 2021-09-24 stsp err = get_fileindex_path(&fileindex_path, worktree);
7562 f259c4c1 2021-09-24 stsp if (err)
7563 f259c4c1 2021-09-24 stsp goto done;
7564 f259c4c1 2021-09-24 stsp
7565 f259c4c1 2021-09-24 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
7566 f259c4c1 2021-09-24 stsp if (err)
7567 f259c4c1 2021-09-24 stsp goto done;
7568 f259c4c1 2021-09-24 stsp
7569 f259c4c1 2021-09-24 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
7570 f259c4c1 2021-09-24 stsp if (err)
7571 f259c4c1 2021-09-24 stsp goto done;
7572 f259c4c1 2021-09-24 stsp
7573 f259c4c1 2021-09-24 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
7574 f259c4c1 2021-09-24 stsp &have_staged_files);
7575 f259c4c1 2021-09-24 stsp if (err && err->code != GOT_ERR_CANCELLED)
7576 f259c4c1 2021-09-24 stsp goto done;
7577 f259c4c1 2021-09-24 stsp if (have_staged_files) {
7578 f259c4c1 2021-09-24 stsp err = got_error(GOT_ERR_MERGE_STAGED_PATHS);
7579 f259c4c1 2021-09-24 stsp goto done;
7580 f259c4c1 2021-09-24 stsp }
7581 f259c4c1 2021-09-24 stsp
7582 f259c4c1 2021-09-24 stsp cc_arg.commitable_paths = &commitable_paths;
7583 f259c4c1 2021-09-24 stsp cc_arg.worktree = worktree;
7584 f259c4c1 2021-09-24 stsp cc_arg.fileindex = fileindex;
7585 f259c4c1 2021-09-24 stsp cc_arg.repo = repo;
7586 f259c4c1 2021-09-24 stsp cc_arg.have_staged_files = have_staged_files;
7587 f259c4c1 2021-09-24 stsp cc_arg.allow_bad_symlinks = allow_bad_symlinks;
7588 f259c4c1 2021-09-24 stsp err = worktree_status(worktree, "", fileindex, repo,
7589 f259c4c1 2021-09-24 stsp collect_commitables, &cc_arg, NULL, NULL, 0, 0);
7590 f259c4c1 2021-09-24 stsp if (err)
7591 f259c4c1 2021-09-24 stsp goto done;
7592 f259c4c1 2021-09-24 stsp
7593 f259c4c1 2021-09-24 stsp if (TAILQ_EMPTY(&commitable_paths)) {
7594 f259c4c1 2021-09-24 stsp err = got_error_fmt(GOT_ERR_COMMIT_NO_CHANGES,
7595 f259c4c1 2021-09-24 stsp "merge of %s cannot proceed", branch_name);
7596 f259c4c1 2021-09-24 stsp goto done;
7597 f259c4c1 2021-09-24 stsp }
7598 f259c4c1 2021-09-24 stsp
7599 f259c4c1 2021-09-24 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
7600 f259c4c1 2021-09-24 stsp struct got_commitable *ct = pe->data;
7601 f259c4c1 2021-09-24 stsp const char *ct_path = ct->in_repo_path;
7602 f259c4c1 2021-09-24 stsp
7603 f259c4c1 2021-09-24 stsp while (ct_path[0] == '/')
7604 f259c4c1 2021-09-24 stsp ct_path++;
7605 f259c4c1 2021-09-24 stsp err = check_out_of_date(ct_path, ct->status,
7606 f259c4c1 2021-09-24 stsp ct->staged_status, ct->base_blob_id, ct->base_commit_id,
7607 f259c4c1 2021-09-24 stsp head_commit_id, repo, GOT_ERR_MERGE_COMMIT_OUT_OF_DATE);
7608 f259c4c1 2021-09-24 stsp if (err)
7609 f259c4c1 2021-09-24 stsp goto done;
7610 f259c4c1 2021-09-24 stsp
7611 f259c4c1 2021-09-24 stsp }
7612 f259c4c1 2021-09-24 stsp
7613 f259c4c1 2021-09-24 stsp mcm_arg.worktree = worktree;
7614 f259c4c1 2021-09-24 stsp mcm_arg.branch_name = branch_name;
7615 f259c4c1 2021-09-24 stsp err = commit_worktree(new_commit_id, &commitable_paths,
7616 f259c4c1 2021-09-24 stsp head_commit_id, branch_tip, worktree, author, committer,
7617 f259c4c1 2021-09-24 stsp merge_commit_msg_cb, &mcm_arg, merge_status_cb, NULL, repo);
7618 f259c4c1 2021-09-24 stsp if (err)
7619 f259c4c1 2021-09-24 stsp goto done;
7620 f259c4c1 2021-09-24 stsp
7621 f259c4c1 2021-09-24 stsp err = update_fileindex_after_commit(worktree, &commitable_paths,
7622 f259c4c1 2021-09-24 stsp *new_commit_id, fileindex, have_staged_files);
7623 f259c4c1 2021-09-24 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7624 f259c4c1 2021-09-24 stsp if (sync_err && err == NULL)
7625 f259c4c1 2021-09-24 stsp err = sync_err;
7626 f259c4c1 2021-09-24 stsp done:
7627 f259c4c1 2021-09-24 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
7628 f259c4c1 2021-09-24 stsp struct got_commitable *ct = pe->data;
7629 f259c4c1 2021-09-24 stsp free_commitable(ct);
7630 f259c4c1 2021-09-24 stsp }
7631 f259c4c1 2021-09-24 stsp got_pathlist_free(&commitable_paths);
7632 f259c4c1 2021-09-24 stsp free(fileindex_path);
7633 f259c4c1 2021-09-24 stsp return err;
7634 f259c4c1 2021-09-24 stsp }
7635 f259c4c1 2021-09-24 stsp
7636 f259c4c1 2021-09-24 stsp const struct got_error *
7637 f259c4c1 2021-09-24 stsp got_worktree_merge_complete(struct got_worktree *worktree,
7638 f259c4c1 2021-09-24 stsp struct got_fileindex *fileindex, struct got_repository *repo)
7639 f259c4c1 2021-09-24 stsp {
7640 f259c4c1 2021-09-24 stsp const struct got_error *err, *unlockerr, *sync_err;
7641 f259c4c1 2021-09-24 stsp char *fileindex_path = NULL;
7642 f259c4c1 2021-09-24 stsp
7643 f259c4c1 2021-09-24 stsp err = delete_merge_refs(worktree, repo);
7644 f259c4c1 2021-09-24 stsp if (err)
7645 f259c4c1 2021-09-24 stsp goto done;
7646 f259c4c1 2021-09-24 stsp
7647 f259c4c1 2021-09-24 stsp err = get_fileindex_path(&fileindex_path, worktree);
7648 f259c4c1 2021-09-24 stsp if (err)
7649 f259c4c1 2021-09-24 stsp goto done;
7650 f259c4c1 2021-09-24 stsp err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7651 f259c4c1 2021-09-24 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7652 f259c4c1 2021-09-24 stsp if (sync_err && err == NULL)
7653 f259c4c1 2021-09-24 stsp err = sync_err;
7654 f259c4c1 2021-09-24 stsp done:
7655 f259c4c1 2021-09-24 stsp got_fileindex_free(fileindex);
7656 f259c4c1 2021-09-24 stsp free(fileindex_path);
7657 f259c4c1 2021-09-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7658 f259c4c1 2021-09-24 stsp if (unlockerr && err == NULL)
7659 f259c4c1 2021-09-24 stsp err = unlockerr;
7660 f259c4c1 2021-09-24 stsp return err;
7661 f259c4c1 2021-09-24 stsp }
7662 f259c4c1 2021-09-24 stsp
7663 f259c4c1 2021-09-24 stsp const struct got_error *
7664 f259c4c1 2021-09-24 stsp got_worktree_merge_in_progress(int *in_progress, struct got_worktree *worktree,
7665 f259c4c1 2021-09-24 stsp struct got_repository *repo)
7666 f259c4c1 2021-09-24 stsp {
7667 f259c4c1 2021-09-24 stsp const struct got_error *err;
7668 f259c4c1 2021-09-24 stsp char *branch_refname = NULL;
7669 f259c4c1 2021-09-24 stsp struct got_reference *branch_ref = NULL;
7670 f259c4c1 2021-09-24 stsp
7671 f259c4c1 2021-09-24 stsp *in_progress = 0;
7672 f259c4c1 2021-09-24 stsp
7673 f259c4c1 2021-09-24 stsp err = get_merge_branch_ref_name(&branch_refname, worktree);
7674 f259c4c1 2021-09-24 stsp if (err)
7675 f259c4c1 2021-09-24 stsp return err;
7676 f259c4c1 2021-09-24 stsp err = got_ref_open(&branch_ref, repo, branch_refname, 0);
7677 793fcac3 2021-09-24 stsp free(branch_refname);
7678 f259c4c1 2021-09-24 stsp if (err) {
7679 f259c4c1 2021-09-24 stsp if (err->code != GOT_ERR_NOT_REF)
7680 f259c4c1 2021-09-24 stsp return err;
7681 f259c4c1 2021-09-24 stsp } else
7682 f259c4c1 2021-09-24 stsp *in_progress = 1;
7683 f259c4c1 2021-09-24 stsp
7684 f259c4c1 2021-09-24 stsp return NULL;
7685 f259c4c1 2021-09-24 stsp }
7686 f259c4c1 2021-09-24 stsp
7687 f259c4c1 2021-09-24 stsp const struct got_error *got_worktree_merge_prepare(
7688 f259c4c1 2021-09-24 stsp struct got_fileindex **fileindex, struct got_worktree *worktree,
7689 f259c4c1 2021-09-24 stsp struct got_reference *branch, struct got_repository *repo)
7690 f259c4c1 2021-09-24 stsp {
7691 f259c4c1 2021-09-24 stsp const struct got_error *err = NULL;
7692 f259c4c1 2021-09-24 stsp char *fileindex_path = NULL;
7693 f259c4c1 2021-09-24 stsp char *branch_refname = NULL, *commit_refname = NULL;
7694 f259c4c1 2021-09-24 stsp struct got_reference *wt_branch = NULL, *branch_ref = NULL;
7695 f259c4c1 2021-09-24 stsp struct got_reference *commit_ref = NULL;
7696 f259c4c1 2021-09-24 stsp struct got_object_id *branch_tip = NULL, *wt_branch_tip = NULL;
7697 f259c4c1 2021-09-24 stsp struct check_rebase_ok_arg ok_arg;
7698 f259c4c1 2021-09-24 stsp
7699 f259c4c1 2021-09-24 stsp *fileindex = NULL;
7700 f259c4c1 2021-09-24 stsp
7701 f259c4c1 2021-09-24 stsp err = lock_worktree(worktree, LOCK_EX);
7702 f259c4c1 2021-09-24 stsp if (err)
7703 f259c4c1 2021-09-24 stsp return err;
7704 f259c4c1 2021-09-24 stsp
7705 f259c4c1 2021-09-24 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
7706 f259c4c1 2021-09-24 stsp if (err)
7707 f259c4c1 2021-09-24 stsp goto done;
7708 f259c4c1 2021-09-24 stsp
7709 f259c4c1 2021-09-24 stsp /* Preconditions are the same as for rebase. */
7710 f259c4c1 2021-09-24 stsp ok_arg.worktree = worktree;
7711 f259c4c1 2021-09-24 stsp ok_arg.repo = repo;
7712 f259c4c1 2021-09-24 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
7713 f259c4c1 2021-09-24 stsp &ok_arg);
7714 f259c4c1 2021-09-24 stsp if (err)
7715 f259c4c1 2021-09-24 stsp goto done;
7716 f259c4c1 2021-09-24 stsp
7717 f259c4c1 2021-09-24 stsp err = get_merge_branch_ref_name(&branch_refname, worktree);
7718 f259c4c1 2021-09-24 stsp if (err)
7719 f259c4c1 2021-09-24 stsp return err;
7720 f259c4c1 2021-09-24 stsp
7721 f259c4c1 2021-09-24 stsp err = get_merge_commit_ref_name(&commit_refname, worktree);
7722 f259c4c1 2021-09-24 stsp if (err)
7723 f259c4c1 2021-09-24 stsp return err;
7724 f259c4c1 2021-09-24 stsp
7725 f259c4c1 2021-09-24 stsp err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
7726 f259c4c1 2021-09-24 stsp 0);
7727 f259c4c1 2021-09-24 stsp if (err)
7728 f259c4c1 2021-09-24 stsp goto done;
7729 f259c4c1 2021-09-24 stsp
7730 f259c4c1 2021-09-24 stsp err = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
7731 f259c4c1 2021-09-24 stsp if (err)
7732 f259c4c1 2021-09-24 stsp goto done;
7733 f259c4c1 2021-09-24 stsp
7734 f259c4c1 2021-09-24 stsp if (got_object_id_cmp(worktree->base_commit_id, wt_branch_tip) != 0) {
7735 f259c4c1 2021-09-24 stsp err = got_error(GOT_ERR_MERGE_OUT_OF_DATE);
7736 f259c4c1 2021-09-24 stsp goto done;
7737 f259c4c1 2021-09-24 stsp }
7738 f259c4c1 2021-09-24 stsp
7739 f259c4c1 2021-09-24 stsp err = got_ref_resolve(&branch_tip, repo, branch);
7740 f259c4c1 2021-09-24 stsp if (err)
7741 f259c4c1 2021-09-24 stsp goto done;
7742 f259c4c1 2021-09-24 stsp
7743 f259c4c1 2021-09-24 stsp err = got_ref_alloc_symref(&branch_ref, branch_refname, branch);
7744 f259c4c1 2021-09-24 stsp if (err)
7745 f259c4c1 2021-09-24 stsp goto done;
7746 f259c4c1 2021-09-24 stsp err = got_ref_write(branch_ref, repo);
7747 f259c4c1 2021-09-24 stsp if (err)
7748 f259c4c1 2021-09-24 stsp goto done;
7749 f259c4c1 2021-09-24 stsp
7750 f259c4c1 2021-09-24 stsp err = got_ref_alloc(&commit_ref, commit_refname, branch_tip);
7751 f259c4c1 2021-09-24 stsp if (err)
7752 f259c4c1 2021-09-24 stsp goto done;
7753 f259c4c1 2021-09-24 stsp err = got_ref_write(commit_ref, repo);
7754 f259c4c1 2021-09-24 stsp if (err)
7755 f259c4c1 2021-09-24 stsp goto done;
7756 f259c4c1 2021-09-24 stsp
7757 f259c4c1 2021-09-24 stsp done:
7758 f259c4c1 2021-09-24 stsp free(branch_refname);
7759 f259c4c1 2021-09-24 stsp free(commit_refname);
7760 f259c4c1 2021-09-24 stsp free(fileindex_path);
7761 f259c4c1 2021-09-24 stsp if (branch_ref)
7762 f259c4c1 2021-09-24 stsp got_ref_close(branch_ref);
7763 f259c4c1 2021-09-24 stsp if (commit_ref)
7764 f259c4c1 2021-09-24 stsp got_ref_close(commit_ref);
7765 f259c4c1 2021-09-24 stsp if (wt_branch)
7766 f259c4c1 2021-09-24 stsp got_ref_close(wt_branch);
7767 f259c4c1 2021-09-24 stsp free(wt_branch_tip);
7768 f259c4c1 2021-09-24 stsp if (err) {
7769 f259c4c1 2021-09-24 stsp if (*fileindex) {
7770 f259c4c1 2021-09-24 stsp got_fileindex_free(*fileindex);
7771 f259c4c1 2021-09-24 stsp *fileindex = NULL;
7772 f259c4c1 2021-09-24 stsp }
7773 f259c4c1 2021-09-24 stsp lock_worktree(worktree, LOCK_SH);
7774 f259c4c1 2021-09-24 stsp }
7775 f259c4c1 2021-09-24 stsp return err;
7776 f259c4c1 2021-09-24 stsp }
7777 f259c4c1 2021-09-24 stsp
7778 f259c4c1 2021-09-24 stsp const struct got_error *
7779 f259c4c1 2021-09-24 stsp got_worktree_merge_continue(char **branch_name,
7780 f259c4c1 2021-09-24 stsp struct got_object_id **branch_tip, struct got_fileindex **fileindex,
7781 f259c4c1 2021-09-24 stsp struct got_worktree *worktree, struct got_repository *repo)
7782 f259c4c1 2021-09-24 stsp {
7783 f259c4c1 2021-09-24 stsp const struct got_error *err;
7784 f259c4c1 2021-09-24 stsp char *commit_refname = NULL, *branch_refname = NULL;
7785 f259c4c1 2021-09-24 stsp struct got_reference *commit_ref = NULL, *branch_ref = NULL;
7786 f259c4c1 2021-09-24 stsp char *fileindex_path = NULL;
7787 f259c4c1 2021-09-24 stsp int have_staged_files = 0;
7788 f259c4c1 2021-09-24 stsp
7789 f259c4c1 2021-09-24 stsp *branch_name = NULL;
7790 f259c4c1 2021-09-24 stsp *branch_tip = NULL;
7791 f259c4c1 2021-09-24 stsp *fileindex = NULL;
7792 f259c4c1 2021-09-24 stsp
7793 f259c4c1 2021-09-24 stsp err = lock_worktree(worktree, LOCK_EX);
7794 f259c4c1 2021-09-24 stsp if (err)
7795 f259c4c1 2021-09-24 stsp return err;
7796 f259c4c1 2021-09-24 stsp
7797 f259c4c1 2021-09-24 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
7798 f259c4c1 2021-09-24 stsp if (err)
7799 f259c4c1 2021-09-24 stsp goto done;
7800 f259c4c1 2021-09-24 stsp
7801 f259c4c1 2021-09-24 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
7802 f259c4c1 2021-09-24 stsp &have_staged_files);
7803 f259c4c1 2021-09-24 stsp if (err && err->code != GOT_ERR_CANCELLED)
7804 f259c4c1 2021-09-24 stsp goto done;
7805 f259c4c1 2021-09-24 stsp if (have_staged_files) {
7806 f259c4c1 2021-09-24 stsp err = got_error(GOT_ERR_STAGED_PATHS);
7807 f259c4c1 2021-09-24 stsp goto done;
7808 f259c4c1 2021-09-24 stsp }
7809 f259c4c1 2021-09-24 stsp
7810 f259c4c1 2021-09-24 stsp err = get_merge_branch_ref_name(&branch_refname, worktree);
7811 f259c4c1 2021-09-24 stsp if (err)
7812 f259c4c1 2021-09-24 stsp goto done;
7813 f259c4c1 2021-09-24 stsp
7814 f259c4c1 2021-09-24 stsp err = get_merge_commit_ref_name(&commit_refname, worktree);
7815 f259c4c1 2021-09-24 stsp if (err)
7816 f259c4c1 2021-09-24 stsp goto done;
7817 f259c4c1 2021-09-24 stsp
7818 f259c4c1 2021-09-24 stsp err = got_ref_open(&branch_ref, repo, branch_refname, 0);
7819 f259c4c1 2021-09-24 stsp if (err)
7820 f259c4c1 2021-09-24 stsp goto done;
7821 f259c4c1 2021-09-24 stsp
7822 f259c4c1 2021-09-24 stsp if (!got_ref_is_symbolic(branch_ref)) {
7823 f259c4c1 2021-09-24 stsp err = got_error_fmt(GOT_ERR_BAD_REF_TYPE,
7824 f259c4c1 2021-09-24 stsp "%s is not a symbolic reference",
7825 f259c4c1 2021-09-24 stsp got_ref_get_name(branch_ref));
7826 f259c4c1 2021-09-24 stsp goto done;
7827 f259c4c1 2021-09-24 stsp }
7828 f259c4c1 2021-09-24 stsp *branch_name = strdup(got_ref_get_symref_target(branch_ref));
7829 f259c4c1 2021-09-24 stsp if (*branch_name == NULL) {
7830 f259c4c1 2021-09-24 stsp err = got_error_from_errno("strdup");
7831 f259c4c1 2021-09-24 stsp goto done;
7832 f259c4c1 2021-09-24 stsp }
7833 f259c4c1 2021-09-24 stsp
7834 f259c4c1 2021-09-24 stsp err = got_ref_open(&commit_ref, repo, commit_refname, 0);
7835 f259c4c1 2021-09-24 stsp if (err)
7836 f259c4c1 2021-09-24 stsp goto done;
7837 f259c4c1 2021-09-24 stsp
7838 f259c4c1 2021-09-24 stsp err = got_ref_resolve(branch_tip, repo, commit_ref);
7839 f259c4c1 2021-09-24 stsp if (err)
7840 f259c4c1 2021-09-24 stsp goto done;
7841 f259c4c1 2021-09-24 stsp done:
7842 f259c4c1 2021-09-24 stsp free(commit_refname);
7843 f259c4c1 2021-09-24 stsp free(branch_refname);
7844 f259c4c1 2021-09-24 stsp free(fileindex_path);
7845 f259c4c1 2021-09-24 stsp if (commit_ref)
7846 f259c4c1 2021-09-24 stsp got_ref_close(commit_ref);
7847 f259c4c1 2021-09-24 stsp if (branch_ref)
7848 f259c4c1 2021-09-24 stsp got_ref_close(branch_ref);
7849 f259c4c1 2021-09-24 stsp if (err) {
7850 f259c4c1 2021-09-24 stsp if (*branch_name) {
7851 f259c4c1 2021-09-24 stsp free(*branch_name);
7852 f259c4c1 2021-09-24 stsp *branch_name = NULL;
7853 f259c4c1 2021-09-24 stsp }
7854 f259c4c1 2021-09-24 stsp free(*branch_tip);
7855 f259c4c1 2021-09-24 stsp *branch_tip = NULL;
7856 f259c4c1 2021-09-24 stsp if (*fileindex) {
7857 f259c4c1 2021-09-24 stsp got_fileindex_free(*fileindex);
7858 f259c4c1 2021-09-24 stsp *fileindex = NULL;
7859 f259c4c1 2021-09-24 stsp }
7860 f259c4c1 2021-09-24 stsp lock_worktree(worktree, LOCK_SH);
7861 f259c4c1 2021-09-24 stsp }
7862 f259c4c1 2021-09-24 stsp return err;
7863 f259c4c1 2021-09-24 stsp }
7864 f259c4c1 2021-09-24 stsp
7865 f259c4c1 2021-09-24 stsp const struct got_error *
7866 f259c4c1 2021-09-24 stsp got_worktree_merge_abort(struct got_worktree *worktree,
7867 f259c4c1 2021-09-24 stsp struct got_fileindex *fileindex, struct got_repository *repo,
7868 f259c4c1 2021-09-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
7869 f259c4c1 2021-09-24 stsp {
7870 f259c4c1 2021-09-24 stsp const struct got_error *err, *unlockerr, *sync_err;
7871 f259c4c1 2021-09-24 stsp struct got_object_id *commit_id = NULL;
7872 f259c4c1 2021-09-24 stsp char *fileindex_path = NULL;
7873 f259c4c1 2021-09-24 stsp struct revert_file_args rfa;
7874 f259c4c1 2021-09-24 stsp struct got_object_id *tree_id = NULL;
7875 f259c4c1 2021-09-24 stsp
7876 f259c4c1 2021-09-24 stsp err = got_object_id_by_path(&tree_id, repo,
7877 f259c4c1 2021-09-24 stsp worktree->base_commit_id, worktree->path_prefix);
7878 f259c4c1 2021-09-24 stsp if (err)
7879 f259c4c1 2021-09-24 stsp goto done;
7880 f259c4c1 2021-09-24 stsp
7881 f259c4c1 2021-09-24 stsp err = delete_merge_refs(worktree, repo);
7882 f259c4c1 2021-09-24 stsp if (err)
7883 f259c4c1 2021-09-24 stsp goto done;
7884 f259c4c1 2021-09-24 stsp
7885 f259c4c1 2021-09-24 stsp err = get_fileindex_path(&fileindex_path, worktree);
7886 f259c4c1 2021-09-24 stsp if (err)
7887 f259c4c1 2021-09-24 stsp goto done;
7888 f259c4c1 2021-09-24 stsp
7889 f259c4c1 2021-09-24 stsp rfa.worktree = worktree;
7890 f259c4c1 2021-09-24 stsp rfa.fileindex = fileindex;
7891 f259c4c1 2021-09-24 stsp rfa.progress_cb = progress_cb;
7892 f259c4c1 2021-09-24 stsp rfa.progress_arg = progress_arg;
7893 f259c4c1 2021-09-24 stsp rfa.patch_cb = NULL;
7894 f259c4c1 2021-09-24 stsp rfa.patch_arg = NULL;
7895 f259c4c1 2021-09-24 stsp rfa.repo = repo;
7896 f259c4c1 2021-09-24 stsp rfa.unlink_added_files = 1;
7897 f259c4c1 2021-09-24 stsp err = worktree_status(worktree, "", fileindex, repo,
7898 f259c4c1 2021-09-24 stsp revert_file, &rfa, NULL, NULL, 0, 0);
7899 f259c4c1 2021-09-24 stsp if (err)
7900 f259c4c1 2021-09-24 stsp goto sync;
7901 f259c4c1 2021-09-24 stsp
7902 f259c4c1 2021-09-24 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL,
7903 f259c4c1 2021-09-24 stsp repo, progress_cb, progress_arg, NULL, NULL);
7904 f259c4c1 2021-09-24 stsp sync:
7905 f259c4c1 2021-09-24 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7906 f259c4c1 2021-09-24 stsp if (sync_err && err == NULL)
7907 f259c4c1 2021-09-24 stsp err = sync_err;
7908 f259c4c1 2021-09-24 stsp done:
7909 f259c4c1 2021-09-24 stsp free(tree_id);
7910 f259c4c1 2021-09-24 stsp free(commit_id);
7911 f259c4c1 2021-09-24 stsp if (fileindex)
7912 f259c4c1 2021-09-24 stsp got_fileindex_free(fileindex);
7913 f259c4c1 2021-09-24 stsp free(fileindex_path);
7914 f259c4c1 2021-09-24 stsp
7915 f259c4c1 2021-09-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7916 f259c4c1 2021-09-24 stsp if (unlockerr && err == NULL)
7917 f259c4c1 2021-09-24 stsp err = unlockerr;
7918 f259c4c1 2021-09-24 stsp return err;
7919 f259c4c1 2021-09-24 stsp }
7920 f259c4c1 2021-09-24 stsp
7921 2db2652d 2019-08-07 stsp struct check_stage_ok_arg {
7922 2db2652d 2019-08-07 stsp struct got_object_id *head_commit_id;
7923 2db2652d 2019-08-07 stsp struct got_worktree *worktree;
7924 2db2652d 2019-08-07 stsp struct got_fileindex *fileindex;
7925 2db2652d 2019-08-07 stsp struct got_repository *repo;
7926 2db2652d 2019-08-07 stsp int have_changes;
7927 2db2652d 2019-08-07 stsp };
7928 2db2652d 2019-08-07 stsp
7929 2db2652d 2019-08-07 stsp const struct got_error *
7930 2db2652d 2019-08-07 stsp check_stage_ok(void *arg, unsigned char status,
7931 2db2652d 2019-08-07 stsp unsigned char staged_status, const char *relpath,
7932 2db2652d 2019-08-07 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7933 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
7934 735ef5ac 2019-08-03 stsp {
7935 2db2652d 2019-08-07 stsp struct check_stage_ok_arg *a = arg;
7936 735ef5ac 2019-08-03 stsp const struct got_error *err = NULL;
7937 735ef5ac 2019-08-03 stsp struct got_fileindex_entry *ie;
7938 2db2652d 2019-08-07 stsp struct got_object_id base_commit_id;
7939 2db2652d 2019-08-07 stsp struct got_object_id *base_commit_idp = NULL;
7940 735ef5ac 2019-08-03 stsp char *in_repo_path = NULL, *p;
7941 8b13ce36 2019-08-08 stsp
7942 7b5dc508 2019-10-28 stsp if (status == GOT_STATUS_UNVERSIONED ||
7943 7b5dc508 2019-10-28 stsp status == GOT_STATUS_NO_CHANGE)
7944 8b13ce36 2019-08-08 stsp return NULL;
7945 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
7946 2a06fe5f 2019-08-24 stsp return got_error_set_errno(ENOENT, relpath);
7947 735ef5ac 2019-08-03 stsp
7948 2db2652d 2019-08-07 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7949 735ef5ac 2019-08-03 stsp if (ie == NULL)
7950 735ef5ac 2019-08-03 stsp return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7951 735ef5ac 2019-08-03 stsp
7952 2db2652d 2019-08-07 stsp if (asprintf(&in_repo_path, "%s%s%s", a->worktree->path_prefix,
7953 2db2652d 2019-08-07 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
7954 735ef5ac 2019-08-03 stsp relpath) == -1)
7955 735ef5ac 2019-08-03 stsp return got_error_from_errno("asprintf");
7956 735ef5ac 2019-08-03 stsp
7957 735ef5ac 2019-08-03 stsp if (got_fileindex_entry_has_commit(ie)) {
7958 735ef5ac 2019-08-03 stsp memcpy(base_commit_id.sha1, ie->commit_sha1,
7959 735ef5ac 2019-08-03 stsp SHA1_DIGEST_LENGTH);
7960 735ef5ac 2019-08-03 stsp base_commit_idp = &base_commit_id;
7961 735ef5ac 2019-08-03 stsp }
7962 735ef5ac 2019-08-03 stsp
7963 7b5dc508 2019-10-28 stsp if (status == GOT_STATUS_CONFLICT) {
7964 3aa5969e 2019-08-06 stsp err = got_error_path(ie->path, GOT_ERR_STAGE_CONFLICT);
7965 3aa5969e 2019-08-06 stsp goto done;
7966 3aa5969e 2019-08-06 stsp } else if (status != GOT_STATUS_ADD &&
7967 3aa5969e 2019-08-06 stsp status != GOT_STATUS_MODIFY &&
7968 3aa5969e 2019-08-06 stsp status != GOT_STATUS_DELETE) {
7969 3aa5969e 2019-08-06 stsp err = got_error_path(ie->path, GOT_ERR_FILE_STATUS);
7970 735ef5ac 2019-08-03 stsp goto done;
7971 3aa5969e 2019-08-06 stsp }
7972 735ef5ac 2019-08-03 stsp
7973 2db2652d 2019-08-07 stsp a->have_changes = 1;
7974 2db2652d 2019-08-07 stsp
7975 735ef5ac 2019-08-03 stsp p = in_repo_path;
7976 735ef5ac 2019-08-03 stsp while (p[0] == '/')
7977 735ef5ac 2019-08-03 stsp p++;
7978 2db2652d 2019-08-07 stsp err = check_out_of_date(p, status, staged_status,
7979 2db2652d 2019-08-07 stsp blob_id, base_commit_idp, a->head_commit_id, a->repo,
7980 5f8a88c6 2019-08-03 stsp GOT_ERR_STAGE_OUT_OF_DATE);
7981 735ef5ac 2019-08-03 stsp done:
7982 735ef5ac 2019-08-03 stsp free(in_repo_path);
7983 dc424a06 2019-08-07 stsp return err;
7984 dc424a06 2019-08-07 stsp }
7985 dc424a06 2019-08-07 stsp
7986 2db2652d 2019-08-07 stsp struct stage_path_arg {
7987 2db2652d 2019-08-07 stsp struct got_worktree *worktree;
7988 2db2652d 2019-08-07 stsp struct got_fileindex *fileindex;
7989 2db2652d 2019-08-07 stsp struct got_repository *repo;
7990 2db2652d 2019-08-07 stsp got_worktree_status_cb status_cb;
7991 2db2652d 2019-08-07 stsp void *status_arg;
7992 2db2652d 2019-08-07 stsp got_worktree_patch_cb patch_cb;
7993 2db2652d 2019-08-07 stsp void *patch_arg;
7994 7b5dc508 2019-10-28 stsp int staged_something;
7995 35213c7c 2020-07-23 stsp int allow_bad_symlinks;
7996 2db2652d 2019-08-07 stsp };
7997 2db2652d 2019-08-07 stsp
7998 2db2652d 2019-08-07 stsp static const struct got_error *
7999 2db2652d 2019-08-07 stsp stage_path(void *arg, unsigned char status,
8000 2db2652d 2019-08-07 stsp unsigned char staged_status, const char *relpath,
8001 2db2652d 2019-08-07 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
8002 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
8003 0cb83759 2019-08-03 stsp {
8004 2db2652d 2019-08-07 stsp struct stage_path_arg *a = arg;
8005 0cb83759 2019-08-03 stsp const struct got_error *err = NULL;
8006 0cb83759 2019-08-03 stsp struct got_fileindex_entry *ie;
8007 2db2652d 2019-08-07 stsp char *ondisk_path = NULL, *path_content = NULL;
8008 0cb83759 2019-08-03 stsp uint32_t stage;
8009 af5a81b2 2019-08-08 stsp struct got_object_id *new_staged_blob_id = NULL;
8010 0aeb8099 2020-07-23 stsp struct stat sb;
8011 8b13ce36 2019-08-08 stsp
8012 8b13ce36 2019-08-08 stsp if (status == GOT_STATUS_UNVERSIONED)
8013 8b13ce36 2019-08-08 stsp return NULL;
8014 0cb83759 2019-08-03 stsp
8015 2db2652d 2019-08-07 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
8016 d3e7c587 2019-08-03 stsp if (ie == NULL)
8017 d3e7c587 2019-08-03 stsp return got_error_path(relpath, GOT_ERR_FILE_STATUS);
8018 0cb83759 2019-08-03 stsp
8019 2db2652d 2019-08-07 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
8020 2db2652d 2019-08-07 stsp relpath)== -1)
8021 2db2652d 2019-08-07 stsp return got_error_from_errno("asprintf");
8022 0cb83759 2019-08-03 stsp
8023 0cb83759 2019-08-03 stsp switch (status) {
8024 0cb83759 2019-08-03 stsp case GOT_STATUS_ADD:
8025 0cb83759 2019-08-03 stsp case GOT_STATUS_MODIFY:
8026 0aeb8099 2020-07-23 stsp /* XXX could sb.st_mode be passed in by our caller? */
8027 0aeb8099 2020-07-23 stsp if (lstat(ondisk_path, &sb) == -1) {
8028 0aeb8099 2020-07-23 stsp err = got_error_from_errno2("lstat", ondisk_path);
8029 0aeb8099 2020-07-23 stsp break;
8030 0aeb8099 2020-07-23 stsp }
8031 2db2652d 2019-08-07 stsp if (a->patch_cb) {
8032 dc424a06 2019-08-07 stsp if (status == GOT_STATUS_ADD) {
8033 dc424a06 2019-08-07 stsp int choice = GOT_PATCH_CHOICE_NONE;
8034 2db2652d 2019-08-07 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
8035 a7c9878d 2019-08-08 stsp status, ie->path, NULL, 1, 1);
8036 dc424a06 2019-08-07 stsp if (err)
8037 dc424a06 2019-08-07 stsp break;
8038 dc424a06 2019-08-07 stsp if (choice != GOT_PATCH_CHOICE_YES)
8039 dc424a06 2019-08-07 stsp break;
8040 dc424a06 2019-08-07 stsp } else {
8041 e635744c 2019-08-08 stsp err = create_patched_content(&path_content, 0,
8042 af5a81b2 2019-08-08 stsp staged_blob_id ? staged_blob_id : blob_id,
8043 12463d8b 2019-12-13 stsp ondisk_path, dirfd, de_name, ie->path,
8044 12463d8b 2019-12-13 stsp a->repo, a->patch_cb, a->patch_arg);
8045 dc424a06 2019-08-07 stsp if (err || path_content == NULL)
8046 dc424a06 2019-08-07 stsp break;
8047 dc424a06 2019-08-07 stsp }
8048 dc424a06 2019-08-07 stsp }
8049 af5a81b2 2019-08-08 stsp err = got_object_blob_create(&new_staged_blob_id,
8050 2db2652d 2019-08-07 stsp path_content ? path_content : ondisk_path, a->repo);
8051 0cb83759 2019-08-03 stsp if (err)
8052 dc424a06 2019-08-07 stsp break;
8053 af5a81b2 2019-08-08 stsp memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
8054 0cb83759 2019-08-03 stsp SHA1_DIGEST_LENGTH);
8055 d3e7c587 2019-08-03 stsp if (status == GOT_STATUS_ADD || staged_status == GOT_STATUS_ADD)
8056 0cb83759 2019-08-03 stsp stage = GOT_FILEIDX_STAGE_ADD;
8057 0cb83759 2019-08-03 stsp else
8058 0cb83759 2019-08-03 stsp stage = GOT_FILEIDX_STAGE_MODIFY;
8059 537ac44b 2019-08-03 stsp got_fileindex_entry_stage_set(ie, stage);
8060 0aeb8099 2020-07-23 stsp if (S_ISLNK(sb.st_mode)) {
8061 35213c7c 2020-07-23 stsp int is_bad_symlink = 0;
8062 35213c7c 2020-07-23 stsp if (!a->allow_bad_symlinks) {
8063 35213c7c 2020-07-23 stsp char target_path[PATH_MAX];
8064 35213c7c 2020-07-23 stsp ssize_t target_len;
8065 35213c7c 2020-07-23 stsp target_len = readlink(ondisk_path, target_path,
8066 35213c7c 2020-07-23 stsp sizeof(target_path));
8067 35213c7c 2020-07-23 stsp if (target_len == -1) {
8068 35213c7c 2020-07-23 stsp err = got_error_from_errno2("readlink",
8069 35213c7c 2020-07-23 stsp ondisk_path);
8070 35213c7c 2020-07-23 stsp break;
8071 35213c7c 2020-07-23 stsp }
8072 35213c7c 2020-07-23 stsp err = is_bad_symlink_target(&is_bad_symlink,
8073 35213c7c 2020-07-23 stsp target_path, target_len, ondisk_path,
8074 35213c7c 2020-07-23 stsp a->worktree->root_path);
8075 35213c7c 2020-07-23 stsp if (err)
8076 35213c7c 2020-07-23 stsp break;
8077 35213c7c 2020-07-23 stsp if (is_bad_symlink) {
8078 35213c7c 2020-07-23 stsp err = got_error_path(ondisk_path,
8079 35213c7c 2020-07-23 stsp GOT_ERR_BAD_SYMLINK);
8080 35213c7c 2020-07-23 stsp break;
8081 35213c7c 2020-07-23 stsp }
8082 35213c7c 2020-07-23 stsp }
8083 35213c7c 2020-07-23 stsp if (is_bad_symlink)
8084 35213c7c 2020-07-23 stsp got_fileindex_entry_staged_filetype_set(ie,
8085 35213c7c 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
8086 35213c7c 2020-07-23 stsp else
8087 35213c7c 2020-07-23 stsp got_fileindex_entry_staged_filetype_set(ie,
8088 35213c7c 2020-07-23 stsp GOT_FILEIDX_MODE_SYMLINK);
8089 0aeb8099 2020-07-23 stsp } else {
8090 0aeb8099 2020-07-23 stsp got_fileindex_entry_staged_filetype_set(ie,
8091 0aeb8099 2020-07-23 stsp GOT_FILEIDX_MODE_REGULAR_FILE);
8092 0aeb8099 2020-07-23 stsp }
8093 7b5dc508 2019-10-28 stsp a->staged_something = 1;
8094 2db2652d 2019-08-07 stsp if (a->status_cb == NULL)
8095 dc424a06 2019-08-07 stsp break;
8096 2db2652d 2019-08-07 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
8097 2db2652d 2019-08-07 stsp get_staged_status(ie), relpath, blob_id,
8098 12463d8b 2019-12-13 stsp new_staged_blob_id, NULL, dirfd, de_name);
8099 0cb83759 2019-08-03 stsp break;
8100 0cb83759 2019-08-03 stsp case GOT_STATUS_DELETE:
8101 d3e7c587 2019-08-03 stsp if (staged_status == GOT_STATUS_DELETE)
8102 d3e7c587 2019-08-03 stsp break;
8103 2db2652d 2019-08-07 stsp if (a->patch_cb) {
8104 dc424a06 2019-08-07 stsp int choice = GOT_PATCH_CHOICE_NONE;
8105 2db2652d 2019-08-07 stsp err = (*a->patch_cb)(&choice, a->patch_arg, status,
8106 a7c9878d 2019-08-08 stsp ie->path, NULL, 1, 1);
8107 dc424a06 2019-08-07 stsp if (err)
8108 dc424a06 2019-08-07 stsp break;
8109 88f33a19 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_NO)
8110 88f33a19 2019-08-08 stsp break;
8111 88f33a19 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES) {
8112 88f33a19 2019-08-08 stsp err = got_error(GOT_ERR_PATCH_CHOICE);
8113 dc424a06 2019-08-07 stsp break;
8114 88f33a19 2019-08-08 stsp }
8115 dc424a06 2019-08-07 stsp }
8116 0cb83759 2019-08-03 stsp stage = GOT_FILEIDX_STAGE_DELETE;
8117 537ac44b 2019-08-03 stsp got_fileindex_entry_stage_set(ie, stage);
8118 7b5dc508 2019-10-28 stsp a->staged_something = 1;
8119 2db2652d 2019-08-07 stsp if (a->status_cb == NULL)
8120 dc424a06 2019-08-07 stsp break;
8121 2db2652d 2019-08-07 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
8122 12463d8b 2019-12-13 stsp get_staged_status(ie), relpath, NULL, NULL, NULL, dirfd,
8123 12463d8b 2019-12-13 stsp de_name);
8124 0cb83759 2019-08-03 stsp break;
8125 d3e7c587 2019-08-03 stsp case GOT_STATUS_NO_CHANGE:
8126 d3e7c587 2019-08-03 stsp break;
8127 ebf48fd5 2019-08-03 stsp case GOT_STATUS_CONFLICT:
8128 ebf48fd5 2019-08-03 stsp err = got_error_path(relpath, GOT_ERR_STAGE_CONFLICT);
8129 ebf48fd5 2019-08-03 stsp break;
8130 2a06fe5f 2019-08-24 stsp case GOT_STATUS_NONEXISTENT:
8131 2a06fe5f 2019-08-24 stsp err = got_error_set_errno(ENOENT, relpath);
8132 2a06fe5f 2019-08-24 stsp break;
8133 0cb83759 2019-08-03 stsp default:
8134 42005733 2019-08-03 stsp err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
8135 537ac44b 2019-08-03 stsp break;
8136 0cb83759 2019-08-03 stsp }
8137 dc424a06 2019-08-07 stsp
8138 dc424a06 2019-08-07 stsp if (path_content && unlink(path_content) == -1 && err == NULL)
8139 dc424a06 2019-08-07 stsp err = got_error_from_errno2("unlink", path_content);
8140 dc424a06 2019-08-07 stsp free(path_content);
8141 2db2652d 2019-08-07 stsp free(ondisk_path);
8142 af5a81b2 2019-08-08 stsp free(new_staged_blob_id);
8143 0ebf8283 2019-07-24 stsp return err;
8144 0ebf8283 2019-07-24 stsp }
8145 0cb83759 2019-08-03 stsp
8146 0cb83759 2019-08-03 stsp const struct got_error *
8147 1e71573e 2019-08-03 stsp got_worktree_stage(struct got_worktree *worktree,
8148 1e71573e 2019-08-03 stsp struct got_pathlist_head *paths,
8149 0cb83759 2019-08-03 stsp got_worktree_status_cb status_cb, void *status_arg,
8150 dc424a06 2019-08-07 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
8151 35213c7c 2020-07-23 stsp int allow_bad_symlinks, struct got_repository *repo)
8152 0cb83759 2019-08-03 stsp {
8153 0cb83759 2019-08-03 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
8154 0cb83759 2019-08-03 stsp struct got_pathlist_entry *pe;
8155 0cb83759 2019-08-03 stsp struct got_fileindex *fileindex = NULL;
8156 0cb83759 2019-08-03 stsp char *fileindex_path = NULL;
8157 735ef5ac 2019-08-03 stsp struct got_reference *head_ref = NULL;
8158 735ef5ac 2019-08-03 stsp struct got_object_id *head_commit_id = NULL;
8159 2db2652d 2019-08-07 stsp struct check_stage_ok_arg oka;
8160 2db2652d 2019-08-07 stsp struct stage_path_arg spa;
8161 0cb83759 2019-08-03 stsp
8162 0cb83759 2019-08-03 stsp err = lock_worktree(worktree, LOCK_EX);
8163 0cb83759 2019-08-03 stsp if (err)
8164 0cb83759 2019-08-03 stsp return err;
8165 0cb83759 2019-08-03 stsp
8166 735ef5ac 2019-08-03 stsp err = got_ref_open(&head_ref, repo,
8167 735ef5ac 2019-08-03 stsp got_worktree_get_head_ref_name(worktree), 0);
8168 735ef5ac 2019-08-03 stsp if (err)
8169 735ef5ac 2019-08-03 stsp goto done;
8170 735ef5ac 2019-08-03 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
8171 735ef5ac 2019-08-03 stsp if (err)
8172 735ef5ac 2019-08-03 stsp goto done;
8173 0cb83759 2019-08-03 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
8174 0cb83759 2019-08-03 stsp if (err)
8175 0cb83759 2019-08-03 stsp goto done;
8176 0cb83759 2019-08-03 stsp
8177 3aa5969e 2019-08-06 stsp /* Check pre-conditions before staging anything. */
8178 2db2652d 2019-08-07 stsp oka.head_commit_id = head_commit_id;
8179 2db2652d 2019-08-07 stsp oka.worktree = worktree;
8180 2db2652d 2019-08-07 stsp oka.fileindex = fileindex;
8181 2db2652d 2019-08-07 stsp oka.repo = repo;
8182 2db2652d 2019-08-07 stsp oka.have_changes = 0;
8183 0cb83759 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
8184 2db2652d 2019-08-07 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
8185 f2a9dc41 2019-12-13 tracey check_stage_ok, &oka, NULL, NULL, 0, 0);
8186 735ef5ac 2019-08-03 stsp if (err)
8187 735ef5ac 2019-08-03 stsp goto done;
8188 735ef5ac 2019-08-03 stsp }
8189 2db2652d 2019-08-07 stsp if (!oka.have_changes) {
8190 2db2652d 2019-08-07 stsp err = got_error(GOT_ERR_STAGE_NO_CHANGE);
8191 2db2652d 2019-08-07 stsp goto done;
8192 2db2652d 2019-08-07 stsp }
8193 735ef5ac 2019-08-03 stsp
8194 2db2652d 2019-08-07 stsp spa.worktree = worktree;
8195 2db2652d 2019-08-07 stsp spa.fileindex = fileindex;
8196 2db2652d 2019-08-07 stsp spa.repo = repo;
8197 2db2652d 2019-08-07 stsp spa.patch_cb = patch_cb;
8198 2db2652d 2019-08-07 stsp spa.patch_arg = patch_arg;
8199 2db2652d 2019-08-07 stsp spa.status_cb = status_cb;
8200 2db2652d 2019-08-07 stsp spa.status_arg = status_arg;
8201 7b5dc508 2019-10-28 stsp spa.staged_something = 0;
8202 35213c7c 2020-07-23 stsp spa.allow_bad_symlinks = allow_bad_symlinks;
8203 735ef5ac 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
8204 2db2652d 2019-08-07 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
8205 f2a9dc41 2019-12-13 tracey stage_path, &spa, NULL, NULL, 0, 0);
8206 42005733 2019-08-03 stsp if (err)
8207 2db2652d 2019-08-07 stsp goto done;
8208 7b5dc508 2019-10-28 stsp }
8209 7b5dc508 2019-10-28 stsp if (!spa.staged_something) {
8210 7b5dc508 2019-10-28 stsp err = got_error(GOT_ERR_STAGE_NO_CHANGE);
8211 7b5dc508 2019-10-28 stsp goto done;
8212 0cb83759 2019-08-03 stsp }
8213 0cb83759 2019-08-03 stsp
8214 0cb83759 2019-08-03 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
8215 0cb83759 2019-08-03 stsp if (sync_err && err == NULL)
8216 0cb83759 2019-08-03 stsp err = sync_err;
8217 0cb83759 2019-08-03 stsp done:
8218 735ef5ac 2019-08-03 stsp if (head_ref)
8219 735ef5ac 2019-08-03 stsp got_ref_close(head_ref);
8220 735ef5ac 2019-08-03 stsp free(head_commit_id);
8221 0cb83759 2019-08-03 stsp free(fileindex_path);
8222 0cb83759 2019-08-03 stsp if (fileindex)
8223 0cb83759 2019-08-03 stsp got_fileindex_free(fileindex);
8224 0cb83759 2019-08-03 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
8225 0cb83759 2019-08-03 stsp if (unlockerr && err == NULL)
8226 0cb83759 2019-08-03 stsp err = unlockerr;
8227 0cb83759 2019-08-03 stsp return err;
8228 0cb83759 2019-08-03 stsp }
8229 ad493afc 2019-08-03 stsp
8230 ad493afc 2019-08-03 stsp struct unstage_path_arg {
8231 ad493afc 2019-08-03 stsp struct got_worktree *worktree;
8232 ad493afc 2019-08-03 stsp struct got_fileindex *fileindex;
8233 ad493afc 2019-08-03 stsp struct got_repository *repo;
8234 ad493afc 2019-08-03 stsp got_worktree_checkout_cb progress_cb;
8235 ad493afc 2019-08-03 stsp void *progress_arg;
8236 2e1f37b0 2019-08-08 stsp got_worktree_patch_cb patch_cb;
8237 2e1f37b0 2019-08-08 stsp void *patch_arg;
8238 ad493afc 2019-08-03 stsp };
8239 2e1f37b0 2019-08-08 stsp
8240 2e1f37b0 2019-08-08 stsp static const struct got_error *
8241 2e1f37b0 2019-08-08 stsp create_unstaged_content(char **path_unstaged_content,
8242 2e1f37b0 2019-08-08 stsp char **path_new_staged_content, struct got_object_id *blob_id,
8243 2e1f37b0 2019-08-08 stsp struct got_object_id *staged_blob_id, const char *relpath,
8244 2e1f37b0 2019-08-08 stsp struct got_repository *repo,
8245 2e1f37b0 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg)
8246 2e1f37b0 2019-08-08 stsp {
8247 fe621944 2020-11-10 stsp const struct got_error *err, *free_err;
8248 2e1f37b0 2019-08-08 stsp struct got_blob_object *blob = NULL, *staged_blob = NULL;
8249 2e1f37b0 2019-08-08 stsp FILE *f1 = NULL, *f2 = NULL, *outfile = NULL, *rejectfile = NULL;
8250 2e1f37b0 2019-08-08 stsp char *path1 = NULL, *path2 = NULL, *label1 = NULL;
8251 fe621944 2020-11-10 stsp struct got_diffreg_result *diffreg_result = NULL;
8252 fe621944 2020-11-10 stsp int line_cur1 = 1, line_cur2 = 1, n = 0, nchunks_used = 0;
8253 fe621944 2020-11-10 stsp int have_content = 0, have_rejected_content = 0, i = 0, nchanges = 0;
8254 2e1f37b0 2019-08-08 stsp
8255 2e1f37b0 2019-08-08 stsp *path_unstaged_content = NULL;
8256 2e1f37b0 2019-08-08 stsp *path_new_staged_content = NULL;
8257 2e1f37b0 2019-08-08 stsp
8258 2e1f37b0 2019-08-08 stsp err = got_object_id_str(&label1, blob_id);
8259 2e1f37b0 2019-08-08 stsp if (err)
8260 2e1f37b0 2019-08-08 stsp return err;
8261 2e1f37b0 2019-08-08 stsp err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
8262 2e1f37b0 2019-08-08 stsp if (err)
8263 2e1f37b0 2019-08-08 stsp goto done;
8264 2e1f37b0 2019-08-08 stsp
8265 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(&path1, &f1, "got-unstage-blob-base");
8266 2e1f37b0 2019-08-08 stsp if (err)
8267 2e1f37b0 2019-08-08 stsp goto done;
8268 2e1f37b0 2019-08-08 stsp
8269 2e1f37b0 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
8270 2e1f37b0 2019-08-08 stsp if (err)
8271 2e1f37b0 2019-08-08 stsp goto done;
8272 2e1f37b0 2019-08-08 stsp
8273 2e1f37b0 2019-08-08 stsp err = got_object_open_as_blob(&staged_blob, repo, staged_blob_id, 8192);
8274 2e1f37b0 2019-08-08 stsp if (err)
8275 2e1f37b0 2019-08-08 stsp goto done;
8276 2e1f37b0 2019-08-08 stsp
8277 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(&path2, &f2, "got-unstage-blob-staged");
8278 2e1f37b0 2019-08-08 stsp if (err)
8279 2e1f37b0 2019-08-08 stsp goto done;
8280 ad493afc 2019-08-03 stsp
8281 2e1f37b0 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f2, staged_blob);
8282 2e1f37b0 2019-08-08 stsp if (err)
8283 2e1f37b0 2019-08-08 stsp goto done;
8284 2e1f37b0 2019-08-08 stsp
8285 fe621944 2020-11-10 stsp err = got_diff_files(&diffreg_result, f1, label1, f2,
8286 64453f7e 2020-11-21 stsp path2, 3, 0, 1, NULL);
8287 2e1f37b0 2019-08-08 stsp if (err)
8288 2e1f37b0 2019-08-08 stsp goto done;
8289 2e1f37b0 2019-08-08 stsp
8290 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(path_unstaged_content, &outfile,
8291 2e1f37b0 2019-08-08 stsp "got-unstaged-content");
8292 2e1f37b0 2019-08-08 stsp if (err)
8293 2e1f37b0 2019-08-08 stsp goto done;
8294 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(path_new_staged_content, &rejectfile,
8295 2e1f37b0 2019-08-08 stsp "got-new-staged-content");
8296 2e1f37b0 2019-08-08 stsp if (err)
8297 2e1f37b0 2019-08-08 stsp goto done;
8298 2e1f37b0 2019-08-08 stsp
8299 2e1f37b0 2019-08-08 stsp if (fseek(f1, 0L, SEEK_SET) == -1) {
8300 2e1f37b0 2019-08-08 stsp err = got_ferror(f1, GOT_ERR_IO);
8301 2e1f37b0 2019-08-08 stsp goto done;
8302 2e1f37b0 2019-08-08 stsp }
8303 2e1f37b0 2019-08-08 stsp if (fseek(f2, 0L, SEEK_SET) == -1) {
8304 2e1f37b0 2019-08-08 stsp err = got_ferror(f2, GOT_ERR_IO);
8305 2e1f37b0 2019-08-08 stsp goto done;
8306 2e1f37b0 2019-08-08 stsp }
8307 fe621944 2020-11-10 stsp /* Count the number of actual changes in the diff result. */
8308 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
8309 fe621944 2020-11-10 stsp struct diff_chunk_context cc = {};
8310 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, &nchunks_used,
8311 fe621944 2020-11-10 stsp diffreg_result->result, n, 0);
8312 fe621944 2020-11-10 stsp nchanges++;
8313 fe621944 2020-11-10 stsp }
8314 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
8315 2e1f37b0 2019-08-08 stsp int choice;
8316 fe621944 2020-11-10 stsp err = apply_or_reject_change(&choice, &nchunks_used,
8317 fe621944 2020-11-10 stsp diffreg_result->result, n, relpath, f1, f2,
8318 fe621944 2020-11-10 stsp &line_cur1, &line_cur2,
8319 fe621944 2020-11-10 stsp outfile, rejectfile, ++i, nchanges, patch_cb, patch_arg);
8320 2e1f37b0 2019-08-08 stsp if (err)
8321 2e1f37b0 2019-08-08 stsp goto done;
8322 2e1f37b0 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_YES)
8323 2e1f37b0 2019-08-08 stsp have_content = 1;
8324 19e4b907 2019-08-08 stsp else
8325 2e1f37b0 2019-08-08 stsp have_rejected_content = 1;
8326 2e1f37b0 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_QUIT)
8327 2e1f37b0 2019-08-08 stsp break;
8328 2e1f37b0 2019-08-08 stsp }
8329 f1e81a05 2019-08-10 stsp if (have_content || have_rejected_content)
8330 f1e81a05 2019-08-10 stsp err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
8331 f1e81a05 2019-08-10 stsp outfile, rejectfile);
8332 2e1f37b0 2019-08-08 stsp done:
8333 2e1f37b0 2019-08-08 stsp free(label1);
8334 2e1f37b0 2019-08-08 stsp if (blob)
8335 2e1f37b0 2019-08-08 stsp got_object_blob_close(blob);
8336 2e1f37b0 2019-08-08 stsp if (staged_blob)
8337 2e1f37b0 2019-08-08 stsp got_object_blob_close(staged_blob);
8338 fe621944 2020-11-10 stsp free_err = got_diffreg_result_free(diffreg_result);
8339 fe621944 2020-11-10 stsp if (free_err && err == NULL)
8340 fe621944 2020-11-10 stsp err = free_err;
8341 2e1f37b0 2019-08-08 stsp if (f1 && fclose(f1) == EOF && err == NULL)
8342 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", path1);
8343 2e1f37b0 2019-08-08 stsp if (f2 && fclose(f2) == EOF && err == NULL)
8344 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", path2);
8345 2e1f37b0 2019-08-08 stsp if (outfile && fclose(outfile) == EOF && err == NULL)
8346 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", *path_unstaged_content);
8347 2e1f37b0 2019-08-08 stsp if (rejectfile && fclose(rejectfile) == EOF && err == NULL)
8348 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", *path_new_staged_content);
8349 2e1f37b0 2019-08-08 stsp if (path1 && unlink(path1) == -1 && err == NULL)
8350 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink", path1);
8351 2e1f37b0 2019-08-08 stsp if (path2 && unlink(path2) == -1 && err == NULL)
8352 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink", path2);
8353 2e1f37b0 2019-08-08 stsp if (err || !have_content) {
8354 2e1f37b0 2019-08-08 stsp if (*path_unstaged_content &&
8355 2e1f37b0 2019-08-08 stsp unlink(*path_unstaged_content) == -1 && err == NULL)
8356 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink",
8357 2e1f37b0 2019-08-08 stsp *path_unstaged_content);
8358 2e1f37b0 2019-08-08 stsp free(*path_unstaged_content);
8359 2e1f37b0 2019-08-08 stsp *path_unstaged_content = NULL;
8360 2e1f37b0 2019-08-08 stsp }
8361 fda8017d 2020-07-23 stsp if (err || !have_content || !have_rejected_content) {
8362 2e1f37b0 2019-08-08 stsp if (*path_new_staged_content &&
8363 2e1f37b0 2019-08-08 stsp unlink(*path_new_staged_content) == -1 && err == NULL)
8364 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink",
8365 2e1f37b0 2019-08-08 stsp *path_new_staged_content);
8366 2e1f37b0 2019-08-08 stsp free(*path_new_staged_content);
8367 2e1f37b0 2019-08-08 stsp *path_new_staged_content = NULL;
8368 2e1f37b0 2019-08-08 stsp }
8369 2e1f37b0 2019-08-08 stsp free(path1);
8370 2e1f37b0 2019-08-08 stsp free(path2);
8371 fda8017d 2020-07-23 stsp return err;
8372 fda8017d 2020-07-23 stsp }
8373 fda8017d 2020-07-23 stsp
8374 fda8017d 2020-07-23 stsp static const struct got_error *
8375 fda8017d 2020-07-23 stsp unstage_hunks(struct got_object_id *staged_blob_id,
8376 fda8017d 2020-07-23 stsp struct got_blob_object *blob_base,
8377 fda8017d 2020-07-23 stsp struct got_object_id *blob_id, struct got_fileindex_entry *ie,
8378 fda8017d 2020-07-23 stsp const char *ondisk_path, const char *label_orig,
8379 fda8017d 2020-07-23 stsp struct got_worktree *worktree, struct got_repository *repo,
8380 fda8017d 2020-07-23 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
8381 fda8017d 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
8382 fda8017d 2020-07-23 stsp {
8383 fda8017d 2020-07-23 stsp const struct got_error *err = NULL;
8384 fda8017d 2020-07-23 stsp char *path_unstaged_content = NULL;
8385 fda8017d 2020-07-23 stsp char *path_new_staged_content = NULL;
8386 67a66647 2021-05-31 stsp char *parent = NULL, *base_path = NULL;
8387 67a66647 2021-05-31 stsp char *blob_base_path = NULL;
8388 fda8017d 2020-07-23 stsp struct got_object_id *new_staged_blob_id = NULL;
8389 eec2f5a9 2021-06-03 stsp FILE *f = NULL, *f_base = NULL, *f_deriv2 = NULL;
8390 fda8017d 2020-07-23 stsp struct stat sb;
8391 fda8017d 2020-07-23 stsp
8392 fda8017d 2020-07-23 stsp err = create_unstaged_content(&path_unstaged_content,
8393 fda8017d 2020-07-23 stsp &path_new_staged_content, blob_id, staged_blob_id,
8394 fda8017d 2020-07-23 stsp ie->path, repo, patch_cb, patch_arg);
8395 fda8017d 2020-07-23 stsp if (err)
8396 fda8017d 2020-07-23 stsp return err;
8397 fda8017d 2020-07-23 stsp
8398 fda8017d 2020-07-23 stsp if (path_unstaged_content == NULL)
8399 fda8017d 2020-07-23 stsp return NULL;
8400 fda8017d 2020-07-23 stsp
8401 fda8017d 2020-07-23 stsp if (path_new_staged_content) {
8402 fda8017d 2020-07-23 stsp err = got_object_blob_create(&new_staged_blob_id,
8403 fda8017d 2020-07-23 stsp path_new_staged_content, repo);
8404 fda8017d 2020-07-23 stsp if (err)
8405 fda8017d 2020-07-23 stsp goto done;
8406 fda8017d 2020-07-23 stsp }
8407 fda8017d 2020-07-23 stsp
8408 fda8017d 2020-07-23 stsp f = fopen(path_unstaged_content, "r");
8409 fda8017d 2020-07-23 stsp if (f == NULL) {
8410 fda8017d 2020-07-23 stsp err = got_error_from_errno2("fopen",
8411 fda8017d 2020-07-23 stsp path_unstaged_content);
8412 fda8017d 2020-07-23 stsp goto done;
8413 fda8017d 2020-07-23 stsp }
8414 fda8017d 2020-07-23 stsp if (fstat(fileno(f), &sb) == -1) {
8415 fda8017d 2020-07-23 stsp err = got_error_from_errno2("fstat", path_unstaged_content);
8416 fda8017d 2020-07-23 stsp goto done;
8417 fda8017d 2020-07-23 stsp }
8418 fda8017d 2020-07-23 stsp if (got_fileindex_entry_staged_filetype_get(ie) ==
8419 fda8017d 2020-07-23 stsp GOT_FILEIDX_MODE_SYMLINK && sb.st_size < PATH_MAX) {
8420 fda8017d 2020-07-23 stsp char link_target[PATH_MAX];
8421 fda8017d 2020-07-23 stsp size_t r;
8422 fda8017d 2020-07-23 stsp r = fread(link_target, 1, sizeof(link_target), f);
8423 fda8017d 2020-07-23 stsp if (r == 0 && ferror(f)) {
8424 fda8017d 2020-07-23 stsp err = got_error_from_errno("fread");
8425 fda8017d 2020-07-23 stsp goto done;
8426 fda8017d 2020-07-23 stsp }
8427 fda8017d 2020-07-23 stsp if (r >= sizeof(link_target)) { /* should not happen */
8428 fda8017d 2020-07-23 stsp err = got_error(GOT_ERR_NO_SPACE);
8429 fda8017d 2020-07-23 stsp goto done;
8430 fda8017d 2020-07-23 stsp }
8431 fda8017d 2020-07-23 stsp link_target[r] = '\0';
8432 fda8017d 2020-07-23 stsp err = merge_symlink(worktree, blob_base,
8433 fda8017d 2020-07-23 stsp ondisk_path, ie->path, label_orig, link_target,
8434 fda8017d 2020-07-23 stsp worktree->base_commit_id, repo, progress_cb,
8435 fda8017d 2020-07-23 stsp progress_arg);
8436 fda8017d 2020-07-23 stsp } else {
8437 fda8017d 2020-07-23 stsp int local_changes_subsumed;
8438 67a66647 2021-05-31 stsp
8439 67a66647 2021-05-31 stsp err = got_path_dirname(&parent, ondisk_path);
8440 67a66647 2021-05-31 stsp if (err)
8441 67a66647 2021-05-31 stsp return err;
8442 67a66647 2021-05-31 stsp
8443 67a66647 2021-05-31 stsp if (asprintf(&base_path, "%s/got-unstage-blob-orig",
8444 67a66647 2021-05-31 stsp parent) == -1) {
8445 67a66647 2021-05-31 stsp err = got_error_from_errno("asprintf");
8446 67a66647 2021-05-31 stsp base_path = NULL;
8447 67a66647 2021-05-31 stsp goto done;
8448 67a66647 2021-05-31 stsp }
8449 67a66647 2021-05-31 stsp
8450 67a66647 2021-05-31 stsp err = got_opentemp_named(&blob_base_path, &f_base, base_path);
8451 67a66647 2021-05-31 stsp if (err)
8452 67a66647 2021-05-31 stsp goto done;
8453 67a66647 2021-05-31 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_base,
8454 67a66647 2021-05-31 stsp blob_base);
8455 67a66647 2021-05-31 stsp if (err)
8456 67a66647 2021-05-31 stsp goto done;
8457 67a66647 2021-05-31 stsp
8458 eec2f5a9 2021-06-03 stsp /*
8459 eec2f5a9 2021-06-03 stsp * In order the run a 3-way merge with a symlink we copy the symlink's
8460 eec2f5a9 2021-06-03 stsp * target path into a temporary file and use that file with diff3.
8461 eec2f5a9 2021-06-03 stsp */
8462 eec2f5a9 2021-06-03 stsp if (S_ISLNK(got_fileindex_perms_to_st(ie))) {
8463 eec2f5a9 2021-06-03 stsp err = dump_symlink_target_path_to_file(&f_deriv2,
8464 eec2f5a9 2021-06-03 stsp ondisk_path);
8465 eec2f5a9 2021-06-03 stsp if (err)
8466 eec2f5a9 2021-06-03 stsp goto done;
8467 eec2f5a9 2021-06-03 stsp } else {
8468 eec2f5a9 2021-06-03 stsp int fd;
8469 eec2f5a9 2021-06-03 stsp fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW);
8470 eec2f5a9 2021-06-03 stsp if (fd == -1) {
8471 eec2f5a9 2021-06-03 stsp err = got_error_from_errno2("open", ondisk_path);
8472 eec2f5a9 2021-06-03 stsp goto done;
8473 eec2f5a9 2021-06-03 stsp }
8474 eec2f5a9 2021-06-03 stsp f_deriv2 = fdopen(fd, "r");
8475 eec2f5a9 2021-06-03 stsp if (f_deriv2 == NULL) {
8476 eec2f5a9 2021-06-03 stsp err = got_error_from_errno2("fdopen", ondisk_path);
8477 eec2f5a9 2021-06-03 stsp close(fd);
8478 eec2f5a9 2021-06-03 stsp goto done;
8479 eec2f5a9 2021-06-03 stsp }
8480 eec2f5a9 2021-06-03 stsp }
8481 eec2f5a9 2021-06-03 stsp
8482 fda8017d 2020-07-23 stsp err = merge_file(&local_changes_subsumed, worktree,
8483 eec2f5a9 2021-06-03 stsp f_base, f, f_deriv2, ondisk_path, ie->path,
8484 fda8017d 2020-07-23 stsp got_fileindex_perms_to_st(ie),
8485 fdf3c2d3 2021-06-17 stsp label_orig, "unstaged", NULL, GOT_DIFF_ALGORITHM_MYERS,
8486 fda8017d 2020-07-23 stsp repo, progress_cb, progress_arg);
8487 fda8017d 2020-07-23 stsp }
8488 fda8017d 2020-07-23 stsp if (err)
8489 fda8017d 2020-07-23 stsp goto done;
8490 fda8017d 2020-07-23 stsp
8491 fda8017d 2020-07-23 stsp if (new_staged_blob_id) {
8492 fda8017d 2020-07-23 stsp memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
8493 fda8017d 2020-07-23 stsp SHA1_DIGEST_LENGTH);
8494 2ac8aa02 2020-11-09 stsp } else {
8495 fda8017d 2020-07-23 stsp got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
8496 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
8497 2ac8aa02 2020-11-09 stsp }
8498 fda8017d 2020-07-23 stsp done:
8499 fda8017d 2020-07-23 stsp free(new_staged_blob_id);
8500 fda8017d 2020-07-23 stsp if (path_unstaged_content &&
8501 fda8017d 2020-07-23 stsp unlink(path_unstaged_content) == -1 && err == NULL)
8502 fda8017d 2020-07-23 stsp err = got_error_from_errno2("unlink", path_unstaged_content);
8503 fda8017d 2020-07-23 stsp if (path_new_staged_content &&
8504 fda8017d 2020-07-23 stsp unlink(path_new_staged_content) == -1 && err == NULL)
8505 fda8017d 2020-07-23 stsp err = got_error_from_errno2("unlink", path_new_staged_content);
8506 67a66647 2021-05-31 stsp if (blob_base_path && unlink(blob_base_path) == -1 && err == NULL)
8507 67a66647 2021-05-31 stsp err = got_error_from_errno2("unlink", blob_base_path);
8508 67a66647 2021-05-31 stsp if (f_base && fclose(f_base) == EOF && err == NULL)
8509 67a66647 2021-05-31 stsp err = got_error_from_errno2("fclose", path_unstaged_content);
8510 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && err == NULL)
8511 fda8017d 2020-07-23 stsp err = got_error_from_errno2("fclose", path_unstaged_content);
8512 eec2f5a9 2021-06-03 stsp if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
8513 eec2f5a9 2021-06-03 stsp err = got_error_from_errno2("fclose", ondisk_path);
8514 fda8017d 2020-07-23 stsp free(path_unstaged_content);
8515 fda8017d 2020-07-23 stsp free(path_new_staged_content);
8516 67a66647 2021-05-31 stsp free(blob_base_path);
8517 67a66647 2021-05-31 stsp free(parent);
8518 67a66647 2021-05-31 stsp free(base_path);
8519 2e1f37b0 2019-08-08 stsp return err;
8520 2e1f37b0 2019-08-08 stsp }
8521 2e1f37b0 2019-08-08 stsp
8522 ad493afc 2019-08-03 stsp static const struct got_error *
8523 ad493afc 2019-08-03 stsp unstage_path(void *arg, unsigned char status,
8524 ad493afc 2019-08-03 stsp unsigned char staged_status, const char *relpath,
8525 ad493afc 2019-08-03 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
8526 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
8527 ad493afc 2019-08-03 stsp {
8528 ad493afc 2019-08-03 stsp const struct got_error *err = NULL;
8529 ad493afc 2019-08-03 stsp struct unstage_path_arg *a = arg;
8530 ad493afc 2019-08-03 stsp struct got_fileindex_entry *ie;
8531 ad493afc 2019-08-03 stsp struct got_blob_object *blob_base = NULL, *blob_staged = NULL;
8532 fda8017d 2020-07-23 stsp char *ondisk_path = NULL;
8533 f69721c3 2019-10-21 stsp char *id_str = NULL, *label_orig = NULL;
8534 ad493afc 2019-08-03 stsp int local_changes_subsumed;
8535 9bc94a15 2019-08-03 stsp struct stat sb;
8536 ad493afc 2019-08-03 stsp
8537 2e1f37b0 2019-08-08 stsp if (staged_status != GOT_STATUS_ADD &&
8538 2e1f37b0 2019-08-08 stsp staged_status != GOT_STATUS_MODIFY &&
8539 2e1f37b0 2019-08-08 stsp staged_status != GOT_STATUS_DELETE)
8540 2e1f37b0 2019-08-08 stsp return NULL;
8541 2e1f37b0 2019-08-08 stsp
8542 ad493afc 2019-08-03 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
8543 ad493afc 2019-08-03 stsp if (ie == NULL)
8544 8b13ce36 2019-08-08 stsp return got_error_path(relpath, GOT_ERR_FILE_STATUS);
8545 9bc94a15 2019-08-03 stsp
8546 9bc94a15 2019-08-03 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, relpath)
8547 9bc94a15 2019-08-03 stsp == -1)
8548 9bc94a15 2019-08-03 stsp return got_error_from_errno("asprintf");
8549 ad493afc 2019-08-03 stsp
8550 f69721c3 2019-10-21 stsp err = got_object_id_str(&id_str,
8551 f69721c3 2019-10-21 stsp commit_id ? commit_id : a->worktree->base_commit_id);
8552 f69721c3 2019-10-21 stsp if (err)
8553 f69721c3 2019-10-21 stsp goto done;
8554 f69721c3 2019-10-21 stsp if (asprintf(&label_orig, "%s: commit %s", GOT_MERGE_LABEL_BASE,
8555 f69721c3 2019-10-21 stsp id_str) == -1) {
8556 f69721c3 2019-10-21 stsp err = got_error_from_errno("asprintf");
8557 f69721c3 2019-10-21 stsp goto done;
8558 f69721c3 2019-10-21 stsp }
8559 f69721c3 2019-10-21 stsp
8560 ad493afc 2019-08-03 stsp switch (staged_status) {
8561 ad493afc 2019-08-03 stsp case GOT_STATUS_MODIFY:
8562 ad493afc 2019-08-03 stsp err = got_object_open_as_blob(&blob_base, a->repo,
8563 ad493afc 2019-08-03 stsp blob_id, 8192);
8564 ad493afc 2019-08-03 stsp if (err)
8565 ad493afc 2019-08-03 stsp break;
8566 ad493afc 2019-08-03 stsp /* fall through */
8567 ad493afc 2019-08-03 stsp case GOT_STATUS_ADD:
8568 2e1f37b0 2019-08-08 stsp if (a->patch_cb) {
8569 2e1f37b0 2019-08-08 stsp if (staged_status == GOT_STATUS_ADD) {
8570 2e1f37b0 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
8571 2e1f37b0 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
8572 2e1f37b0 2019-08-08 stsp staged_status, ie->path, NULL, 1, 1);
8573 2e1f37b0 2019-08-08 stsp if (err)
8574 2e1f37b0 2019-08-08 stsp break;
8575 2e1f37b0 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES)
8576 2e1f37b0 2019-08-08 stsp break;
8577 2e1f37b0 2019-08-08 stsp } else {
8578 fda8017d 2020-07-23 stsp err = unstage_hunks(staged_blob_id,
8579 fda8017d 2020-07-23 stsp blob_base, blob_id, ie, ondisk_path,
8580 fda8017d 2020-07-23 stsp label_orig, a->worktree, a->repo,
8581 fda8017d 2020-07-23 stsp a->patch_cb, a->patch_arg,
8582 fda8017d 2020-07-23 stsp a->progress_cb, a->progress_arg);
8583 2e1f37b0 2019-08-08 stsp break; /* Done with this file. */
8584 2e1f37b0 2019-08-08 stsp }
8585 2e1f37b0 2019-08-08 stsp }
8586 ad493afc 2019-08-03 stsp err = got_object_open_as_blob(&blob_staged, a->repo,
8587 ad493afc 2019-08-03 stsp staged_blob_id, 8192);
8588 ad493afc 2019-08-03 stsp if (err)
8589 ad493afc 2019-08-03 stsp break;
8590 ea7786be 2020-07-23 stsp switch (got_fileindex_entry_staged_filetype_get(ie)) {
8591 ea7786be 2020-07-23 stsp case GOT_FILEIDX_MODE_BAD_SYMLINK:
8592 ea7786be 2020-07-23 stsp case GOT_FILEIDX_MODE_REGULAR_FILE:
8593 ea7786be 2020-07-23 stsp err = merge_blob(&local_changes_subsumed, a->worktree,
8594 ea7786be 2020-07-23 stsp blob_base, ondisk_path, relpath,
8595 ea7786be 2020-07-23 stsp got_fileindex_perms_to_st(ie), label_orig,
8596 ea7786be 2020-07-23 stsp blob_staged, commit_id ? commit_id :
8597 ea7786be 2020-07-23 stsp a->worktree->base_commit_id, a->repo,
8598 ea7786be 2020-07-23 stsp a->progress_cb, a->progress_arg);
8599 ea7786be 2020-07-23 stsp break;
8600 ea7786be 2020-07-23 stsp case GOT_FILEIDX_MODE_SYMLINK:
8601 dfe9fba0 2020-07-23 stsp if (S_ISLNK(got_fileindex_perms_to_st(ie))) {
8602 36bf999c 2020-07-23 stsp char *staged_target;
8603 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(
8604 36bf999c 2020-07-23 stsp &staged_target, blob_staged);
8605 36bf999c 2020-07-23 stsp if (err)
8606 36bf999c 2020-07-23 stsp goto done;
8607 dfe9fba0 2020-07-23 stsp err = merge_symlink(a->worktree, blob_base,
8608 dfe9fba0 2020-07-23 stsp ondisk_path, relpath, label_orig,
8609 36bf999c 2020-07-23 stsp staged_target, commit_id ? commit_id :
8610 dfe9fba0 2020-07-23 stsp a->worktree->base_commit_id,
8611 dfe9fba0 2020-07-23 stsp a->repo, a->progress_cb, a->progress_arg);
8612 36bf999c 2020-07-23 stsp free(staged_target);
8613 dfe9fba0 2020-07-23 stsp } else {
8614 dfe9fba0 2020-07-23 stsp err = merge_blob(&local_changes_subsumed,
8615 dfe9fba0 2020-07-23 stsp a->worktree, blob_base, ondisk_path,
8616 dfe9fba0 2020-07-23 stsp relpath, got_fileindex_perms_to_st(ie),
8617 dfe9fba0 2020-07-23 stsp label_orig, blob_staged,
8618 dfe9fba0 2020-07-23 stsp commit_id ? commit_id :
8619 dfe9fba0 2020-07-23 stsp a->worktree->base_commit_id, a->repo,
8620 dfe9fba0 2020-07-23 stsp a->progress_cb, a->progress_arg);
8621 dfe9fba0 2020-07-23 stsp }
8622 ea7786be 2020-07-23 stsp break;
8623 ea7786be 2020-07-23 stsp default:
8624 ea7786be 2020-07-23 stsp err = got_error_path(relpath, GOT_ERR_BAD_FILETYPE);
8625 ea7786be 2020-07-23 stsp break;
8626 ea7786be 2020-07-23 stsp }
8627 2ac8aa02 2020-11-09 stsp if (err == NULL) {
8628 ad493afc 2019-08-03 stsp got_fileindex_entry_stage_set(ie,
8629 ad493afc 2019-08-03 stsp GOT_FILEIDX_STAGE_NONE);
8630 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
8631 2ac8aa02 2020-11-09 stsp }
8632 ad493afc 2019-08-03 stsp break;
8633 ad493afc 2019-08-03 stsp case GOT_STATUS_DELETE:
8634 2e1f37b0 2019-08-08 stsp if (a->patch_cb) {
8635 2e1f37b0 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
8636 2e1f37b0 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
8637 2e1f37b0 2019-08-08 stsp staged_status, ie->path, NULL, 1, 1);
8638 2e1f37b0 2019-08-08 stsp if (err)
8639 2e1f37b0 2019-08-08 stsp break;
8640 2e1f37b0 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_NO)
8641 2e1f37b0 2019-08-08 stsp break;
8642 2e1f37b0 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES) {
8643 2e1f37b0 2019-08-08 stsp err = got_error(GOT_ERR_PATCH_CHOICE);
8644 2e1f37b0 2019-08-08 stsp break;
8645 2e1f37b0 2019-08-08 stsp }
8646 2e1f37b0 2019-08-08 stsp }
8647 ad493afc 2019-08-03 stsp got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
8648 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
8649 12463d8b 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path,
8650 12463d8b 2019-12-13 stsp dirfd, de_name, a->repo);
8651 9bc94a15 2019-08-03 stsp if (err)
8652 9bc94a15 2019-08-03 stsp break;
8653 9bc94a15 2019-08-03 stsp err = (*a->progress_cb)(a->progress_arg, status, relpath);
8654 ad493afc 2019-08-03 stsp break;
8655 ad493afc 2019-08-03 stsp }
8656 f69721c3 2019-10-21 stsp done:
8657 ad493afc 2019-08-03 stsp free(ondisk_path);
8658 ad493afc 2019-08-03 stsp if (blob_base)
8659 ad493afc 2019-08-03 stsp got_object_blob_close(blob_base);
8660 ad493afc 2019-08-03 stsp if (blob_staged)
8661 ad493afc 2019-08-03 stsp got_object_blob_close(blob_staged);
8662 f69721c3 2019-10-21 stsp free(id_str);
8663 f69721c3 2019-10-21 stsp free(label_orig);
8664 ad493afc 2019-08-03 stsp return err;
8665 ad493afc 2019-08-03 stsp }
8666 ad493afc 2019-08-03 stsp
8667 ad493afc 2019-08-03 stsp const struct got_error *
8668 ad493afc 2019-08-03 stsp got_worktree_unstage(struct got_worktree *worktree,
8669 ad493afc 2019-08-03 stsp struct got_pathlist_head *paths,
8670 ad493afc 2019-08-03 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
8671 2e1f37b0 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
8672 ad493afc 2019-08-03 stsp struct got_repository *repo)
8673 ad493afc 2019-08-03 stsp {
8674 ad493afc 2019-08-03 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
8675 ad493afc 2019-08-03 stsp struct got_pathlist_entry *pe;
8676 ad493afc 2019-08-03 stsp struct got_fileindex *fileindex = NULL;
8677 ad493afc 2019-08-03 stsp char *fileindex_path = NULL;
8678 ad493afc 2019-08-03 stsp struct unstage_path_arg upa;
8679 ad493afc 2019-08-03 stsp
8680 ad493afc 2019-08-03 stsp err = lock_worktree(worktree, LOCK_EX);
8681 ad493afc 2019-08-03 stsp if (err)
8682 ad493afc 2019-08-03 stsp return err;
8683 ad493afc 2019-08-03 stsp
8684 ad493afc 2019-08-03 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
8685 ad493afc 2019-08-03 stsp if (err)
8686 ad493afc 2019-08-03 stsp goto done;
8687 ad493afc 2019-08-03 stsp
8688 ad493afc 2019-08-03 stsp upa.worktree = worktree;
8689 ad493afc 2019-08-03 stsp upa.fileindex = fileindex;
8690 ad493afc 2019-08-03 stsp upa.repo = repo;
8691 ad493afc 2019-08-03 stsp upa.progress_cb = progress_cb;
8692 ad493afc 2019-08-03 stsp upa.progress_arg = progress_arg;
8693 2e1f37b0 2019-08-08 stsp upa.patch_cb = patch_cb;
8694 2e1f37b0 2019-08-08 stsp upa.patch_arg = patch_arg;
8695 ad493afc 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
8696 ad493afc 2019-08-03 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
8697 f2a9dc41 2019-12-13 tracey unstage_path, &upa, NULL, NULL, 0, 0);
8698 ad493afc 2019-08-03 stsp if (err)
8699 ad493afc 2019-08-03 stsp goto done;
8700 ad493afc 2019-08-03 stsp }
8701 ad493afc 2019-08-03 stsp
8702 ad493afc 2019-08-03 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
8703 ad493afc 2019-08-03 stsp if (sync_err && err == NULL)
8704 ad493afc 2019-08-03 stsp err = sync_err;
8705 ad493afc 2019-08-03 stsp done:
8706 ad493afc 2019-08-03 stsp free(fileindex_path);
8707 ad493afc 2019-08-03 stsp if (fileindex)
8708 ad493afc 2019-08-03 stsp got_fileindex_free(fileindex);
8709 ad493afc 2019-08-03 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
8710 ad493afc 2019-08-03 stsp if (unlockerr && err == NULL)
8711 ad493afc 2019-08-03 stsp err = unlockerr;
8712 ad493afc 2019-08-03 stsp return err;
8713 ad493afc 2019-08-03 stsp }
8714 b2118c49 2020-07-28 stsp
8715 b2118c49 2020-07-28 stsp struct report_file_info_arg {
8716 b2118c49 2020-07-28 stsp struct got_worktree *worktree;
8717 b2118c49 2020-07-28 stsp got_worktree_path_info_cb info_cb;
8718 b2118c49 2020-07-28 stsp void *info_arg;
8719 b2118c49 2020-07-28 stsp struct got_pathlist_head *paths;
8720 b2118c49 2020-07-28 stsp got_cancel_cb cancel_cb;
8721 b2118c49 2020-07-28 stsp void *cancel_arg;
8722 b2118c49 2020-07-28 stsp };
8723 b2118c49 2020-07-28 stsp
8724 b2118c49 2020-07-28 stsp static const struct got_error *
8725 b2118c49 2020-07-28 stsp report_file_info(void *arg, struct got_fileindex_entry *ie)
8726 b2118c49 2020-07-28 stsp {
8727 b2118c49 2020-07-28 stsp struct report_file_info_arg *a = arg;
8728 b2118c49 2020-07-28 stsp struct got_pathlist_entry *pe;
8729 b2118c49 2020-07-28 stsp struct got_object_id blob_id, staged_blob_id, commit_id;
8730 b2118c49 2020-07-28 stsp struct got_object_id *blob_idp = NULL, *staged_blob_idp = NULL;
8731 b2118c49 2020-07-28 stsp struct got_object_id *commit_idp = NULL;
8732 b2118c49 2020-07-28 stsp int stage;
8733 b2118c49 2020-07-28 stsp
8734 b2118c49 2020-07-28 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
8735 b2118c49 2020-07-28 stsp return got_error(GOT_ERR_CANCELLED);
8736 b2118c49 2020-07-28 stsp
8737 b2118c49 2020-07-28 stsp TAILQ_FOREACH(pe, a->paths, entry) {
8738 b2118c49 2020-07-28 stsp if (pe->path_len == 0 || strcmp(pe->path, ie->path) == 0 ||
8739 b2118c49 2020-07-28 stsp got_path_is_child(ie->path, pe->path, pe->path_len))
8740 b2118c49 2020-07-28 stsp break;
8741 b2118c49 2020-07-28 stsp }
8742 b2118c49 2020-07-28 stsp if (pe == NULL) /* not found */
8743 b2118c49 2020-07-28 stsp return NULL;
8744 b2118c49 2020-07-28 stsp
8745 b2118c49 2020-07-28 stsp if (got_fileindex_entry_has_blob(ie)) {
8746 b2118c49 2020-07-28 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
8747 b2118c49 2020-07-28 stsp blob_idp = &blob_id;
8748 b2118c49 2020-07-28 stsp }
8749 b2118c49 2020-07-28 stsp stage = got_fileindex_entry_stage_get(ie);
8750 b2118c49 2020-07-28 stsp if (stage == GOT_FILEIDX_STAGE_MODIFY ||
8751 b2118c49 2020-07-28 stsp stage == GOT_FILEIDX_STAGE_ADD) {
8752 b2118c49 2020-07-28 stsp memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
8753 b2118c49 2020-07-28 stsp SHA1_DIGEST_LENGTH);
8754 b2118c49 2020-07-28 stsp staged_blob_idp = &staged_blob_id;
8755 b2118c49 2020-07-28 stsp }
8756 b2118c49 2020-07-28 stsp
8757 b2118c49 2020-07-28 stsp if (got_fileindex_entry_has_commit(ie)) {
8758 b2118c49 2020-07-28 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
8759 b2118c49 2020-07-28 stsp commit_idp = &commit_id;
8760 b2118c49 2020-07-28 stsp }
8761 b2118c49 2020-07-28 stsp
8762 b2118c49 2020-07-28 stsp return a->info_cb(a->info_arg, ie->path, got_fileindex_perms_to_st(ie),
8763 b2118c49 2020-07-28 stsp (time_t)ie->mtime_sec, blob_idp, staged_blob_idp, commit_idp);
8764 b2118c49 2020-07-28 stsp }
8765 b2118c49 2020-07-28 stsp
8766 b2118c49 2020-07-28 stsp const struct got_error *
8767 b2118c49 2020-07-28 stsp got_worktree_path_info(struct got_worktree *worktree,
8768 b2118c49 2020-07-28 stsp struct got_pathlist_head *paths,
8769 b2118c49 2020-07-28 stsp got_worktree_path_info_cb info_cb, void *info_arg,
8770 b2118c49 2020-07-28 stsp got_cancel_cb cancel_cb, void *cancel_arg)
8771 b2118c49 2020-07-28 stsp
8772 b2118c49 2020-07-28 stsp {
8773 b2118c49 2020-07-28 stsp const struct got_error *err = NULL, *unlockerr;
8774 b2118c49 2020-07-28 stsp struct got_fileindex *fileindex = NULL;
8775 b2118c49 2020-07-28 stsp char *fileindex_path = NULL;
8776 b2118c49 2020-07-28 stsp struct report_file_info_arg arg;
8777 b2118c49 2020-07-28 stsp
8778 b2118c49 2020-07-28 stsp err = lock_worktree(worktree, LOCK_SH);
8779 b2118c49 2020-07-28 stsp if (err)
8780 b2118c49 2020-07-28 stsp return err;
8781 b2118c49 2020-07-28 stsp
8782 b2118c49 2020-07-28 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
8783 b2118c49 2020-07-28 stsp if (err)
8784 b2118c49 2020-07-28 stsp goto done;
8785 b2118c49 2020-07-28 stsp
8786 b2118c49 2020-07-28 stsp arg.worktree = worktree;
8787 b2118c49 2020-07-28 stsp arg.info_cb = info_cb;
8788 b2118c49 2020-07-28 stsp arg.info_arg = info_arg;
8789 b2118c49 2020-07-28 stsp arg.paths = paths;
8790 b2118c49 2020-07-28 stsp arg.cancel_cb = cancel_cb;
8791 b2118c49 2020-07-28 stsp arg.cancel_arg = cancel_arg;
8792 b2118c49 2020-07-28 stsp err = got_fileindex_for_each_entry_safe(fileindex, report_file_info,
8793 b2118c49 2020-07-28 stsp &arg);
8794 b2118c49 2020-07-28 stsp done:
8795 b2118c49 2020-07-28 stsp free(fileindex_path);
8796 b2118c49 2020-07-28 stsp if (fileindex)
8797 b2118c49 2020-07-28 stsp got_fileindex_free(fileindex);
8798 b2118c49 2020-07-28 stsp unlockerr = lock_worktree(worktree, LOCK_UN);
8799 b2118c49 2020-07-28 stsp if (unlockerr && err == NULL)
8800 b2118c49 2020-07-28 stsp err = unlockerr;
8801 b2118c49 2020-07-28 stsp return err;
8802 b2118c49 2020-07-28 stsp }