Blame


1 86c3caaf 2018-03-09 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 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 6d9d28c3 2018-03-11 stsp #include <sys/limits.h>
19 9d31a1d8 2018-03-11 stsp #include <sys/queue.h>
20 133d2798 2019-01-08 stsp #include <sys/tree.h>
21 86c3caaf 2018-03-09 stsp
22 d1f6d47b 2019-02-04 stsp #include <dirent.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 86c3caaf 2018-03-09 stsp #include <fcntl.h>
28 86c3caaf 2018-03-09 stsp #include <errno.h>
29 86c3caaf 2018-03-09 stsp #include <unistd.h>
30 9d31a1d8 2018-03-11 stsp #include <sha1.h>
31 9d31a1d8 2018-03-11 stsp #include <zlib.h>
32 9d31a1d8 2018-03-11 stsp #include <fnmatch.h>
33 512f0d0e 2019-01-02 stsp #include <libgen.h>
34 ec22038e 2019-03-10 stsp #include <uuid.h>
35 7154f6ce 2019-03-27 stsp #include <util.h>
36 86c3caaf 2018-03-09 stsp
37 86c3caaf 2018-03-09 stsp #include "got_error.h"
38 86c3caaf 2018-03-09 stsp #include "got_repository.h"
39 5261c201 2018-04-01 stsp #include "got_reference.h"
40 9d31a1d8 2018-03-11 stsp #include "got_object.h"
41 1dd54920 2019-05-11 stsp #include "got_path.h"
42 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
43 511a516b 2018-05-19 stsp #include "got_opentemp.h"
44 234035bc 2019-06-01 stsp #include "got_diff.h"
45 86c3caaf 2018-03-09 stsp
46 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
47 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
48 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
49 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
50 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
51 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
52 ed175427 2019-05-09 stsp #include "got_lib_object_parse.h"
53 cf066bf8 2019-05-09 stsp #include "got_lib_object_create.h"
54 24519714 2019-05-09 stsp #include "got_lib_object_idset.h"
55 6353ad76 2019-02-08 stsp #include "got_lib_diff.h"
56 9d31a1d8 2018-03-11 stsp
57 9d31a1d8 2018-03-11 stsp #ifndef MIN
58 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
59 9d31a1d8 2018-03-11 stsp #endif
60 86c3caaf 2018-03-09 stsp
61 99724ed4 2018-03-10 stsp static const struct got_error *
62 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
63 99724ed4 2018-03-10 stsp {
64 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
65 99724ed4 2018-03-10 stsp char *path;
66 99724ed4 2018-03-10 stsp
67 2c7829a4 2019-06-17 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1)
68 2c7829a4 2019-06-17 stsp return got_error_from_errno("asprintf");
69 99724ed4 2018-03-10 stsp
70 2c7829a4 2019-06-17 stsp err = got_path_create_file(path, content);
71 99724ed4 2018-03-10 stsp free(path);
72 507dc3bb 2018-12-29 stsp return err;
73 507dc3bb 2018-12-29 stsp }
74 507dc3bb 2018-12-29 stsp
75 507dc3bb 2018-12-29 stsp static const struct got_error *
76 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
77 507dc3bb 2018-12-29 stsp {
78 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
79 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
80 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
81 507dc3bb 2018-12-29 stsp char *path = NULL;
82 507dc3bb 2018-12-29 stsp
83 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
84 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
85 507dc3bb 2018-12-29 stsp path = NULL;
86 507dc3bb 2018-12-29 stsp goto done;
87 507dc3bb 2018-12-29 stsp }
88 507dc3bb 2018-12-29 stsp
89 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
90 507dc3bb 2018-12-29 stsp if (err)
91 507dc3bb 2018-12-29 stsp goto done;
92 507dc3bb 2018-12-29 stsp
93 507dc3bb 2018-12-29 stsp if (content) {
94 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
95 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
96 638f9024 2019-05-13 stsp err = got_error_from_errno2("fprintf", tmppath);
97 507dc3bb 2018-12-29 stsp goto done;
98 507dc3bb 2018-12-29 stsp }
99 507dc3bb 2018-12-29 stsp }
100 507dc3bb 2018-12-29 stsp
101 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
102 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath, path);
103 2a57020b 2019-02-20 stsp unlink(tmppath);
104 507dc3bb 2018-12-29 stsp goto done;
105 507dc3bb 2018-12-29 stsp }
106 507dc3bb 2018-12-29 stsp
107 507dc3bb 2018-12-29 stsp done:
108 fb43ecf1 2019-02-11 stsp if (fclose(tmpfile) != 0 && err == NULL)
109 638f9024 2019-05-13 stsp err = got_error_from_errno2("fclose", tmppath);
110 230a42bd 2019-05-11 jcs free(tmppath);
111 99724ed4 2018-03-10 stsp return err;
112 99724ed4 2018-03-10 stsp }
113 99724ed4 2018-03-10 stsp
114 09fe317a 2018-03-11 stsp static const struct got_error *
115 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
116 09fe317a 2018-03-11 stsp {
117 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
118 09fe317a 2018-03-11 stsp char *path;
119 09fe317a 2018-03-11 stsp int fd = -1;
120 09fe317a 2018-03-11 stsp ssize_t n;
121 09fe317a 2018-03-11 stsp struct stat sb;
122 09fe317a 2018-03-11 stsp
123 09fe317a 2018-03-11 stsp *content = NULL;
124 09fe317a 2018-03-11 stsp
125 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
126 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
127 09fe317a 2018-03-11 stsp path = NULL;
128 09fe317a 2018-03-11 stsp goto done;
129 09fe317a 2018-03-11 stsp }
130 09fe317a 2018-03-11 stsp
131 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
132 09fe317a 2018-03-11 stsp if (fd == -1) {
133 f02eaa22 2019-03-11 stsp if (errno == ENOENT)
134 f02eaa22 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
135 f02eaa22 2019-03-11 stsp else
136 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", path);
137 ef99fdb1 2018-03-11 stsp goto done;
138 ef99fdb1 2018-03-11 stsp }
139 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
140 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
141 638f9024 2019-05-13 stsp : got_error_from_errno2("flock", path));
142 09fe317a 2018-03-11 stsp goto done;
143 09fe317a 2018-03-11 stsp }
144 09fe317a 2018-03-11 stsp
145 d10c9b58 2019-02-19 stsp if (lstat(path, &sb) != 0) {
146 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", path);
147 d10c9b58 2019-02-19 stsp goto done;
148 d10c9b58 2019-02-19 stsp }
149 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
150 09fe317a 2018-03-11 stsp if (*content == NULL) {
151 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
152 09fe317a 2018-03-11 stsp goto done;
153 09fe317a 2018-03-11 stsp }
154 09fe317a 2018-03-11 stsp
155 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
156 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
157 638f9024 2019-05-13 stsp err = (n == -1 ? got_error_from_errno2("read", path) :
158 0605801d 2018-03-11 stsp got_error(GOT_ERR_WORKTREE_META));
159 09fe317a 2018-03-11 stsp goto done;
160 09fe317a 2018-03-11 stsp }
161 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
162 09fe317a 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
163 09fe317a 2018-03-11 stsp goto done;
164 09fe317a 2018-03-11 stsp }
165 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
166 09fe317a 2018-03-11 stsp
167 09fe317a 2018-03-11 stsp done:
168 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
169 638f9024 2019-05-13 stsp err = got_error_from_errno2("close", path_got);
170 09fe317a 2018-03-11 stsp free(path);
171 09fe317a 2018-03-11 stsp if (err) {
172 09fe317a 2018-03-11 stsp free(*content);
173 09fe317a 2018-03-11 stsp *content = NULL;
174 09fe317a 2018-03-11 stsp }
175 09fe317a 2018-03-11 stsp return err;
176 09fe317a 2018-03-11 stsp }
177 09fe317a 2018-03-11 stsp
178 024e9686 2019-05-14 stsp static const struct got_error *
179 024e9686 2019-05-14 stsp write_head_ref(const char *path_got, struct got_reference *head_ref)
180 024e9686 2019-05-14 stsp {
181 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
182 024e9686 2019-05-14 stsp char *refstr = NULL;
183 024e9686 2019-05-14 stsp
184 024e9686 2019-05-14 stsp if (got_ref_is_symbolic(head_ref)) {
185 024e9686 2019-05-14 stsp refstr = got_ref_to_str(head_ref);
186 024e9686 2019-05-14 stsp if (refstr == NULL)
187 024e9686 2019-05-14 stsp return got_error_from_errno("got_ref_to_str");
188 024e9686 2019-05-14 stsp } else {
189 024e9686 2019-05-14 stsp refstr = strdup(got_ref_get_name(head_ref));
190 024e9686 2019-05-14 stsp if (refstr == NULL)
191 024e9686 2019-05-14 stsp return got_error_from_errno("strdup");
192 024e9686 2019-05-14 stsp }
193 024e9686 2019-05-14 stsp err = update_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
194 024e9686 2019-05-14 stsp free(refstr);
195 024e9686 2019-05-14 stsp return err;
196 024e9686 2019-05-14 stsp }
197 024e9686 2019-05-14 stsp
198 86c3caaf 2018-03-09 stsp const struct got_error *
199 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
200 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
201 86c3caaf 2018-03-09 stsp {
202 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
203 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
204 ec22038e 2019-03-10 stsp uuid_t uuid;
205 ec22038e 2019-03-10 stsp uint32_t uuid_status;
206 65596e15 2018-12-24 stsp int obj_type;
207 7ac97322 2018-03-11 stsp char *path_got = NULL;
208 1451e70d 2018-03-10 stsp char *formatstr = NULL;
209 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
210 65596e15 2018-12-24 stsp char *basestr = NULL;
211 ec22038e 2019-03-10 stsp char *uuidstr = NULL;
212 65596e15 2018-12-24 stsp
213 0c48fee2 2019-03-11 stsp if (strcmp(path, got_repo_get_path(repo)) == 0) {
214 0c48fee2 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_REPO);
215 0c48fee2 2019-03-11 stsp goto done;
216 0c48fee2 2019-03-11 stsp }
217 0c48fee2 2019-03-11 stsp
218 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
219 65596e15 2018-12-24 stsp if (err)
220 65596e15 2018-12-24 stsp return err;
221 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
222 65596e15 2018-12-24 stsp if (err)
223 65596e15 2018-12-24 stsp return err;
224 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
225 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
226 86c3caaf 2018-03-09 stsp
227 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
228 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
229 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
230 0bb8a95e 2018-03-12 stsp }
231 577ec78f 2018-03-11 stsp
232 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
233 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
234 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path);
235 86c3caaf 2018-03-09 stsp goto done;
236 86c3caaf 2018-03-09 stsp }
237 86c3caaf 2018-03-09 stsp
238 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
239 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
240 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
241 86c3caaf 2018-03-09 stsp goto done;
242 86c3caaf 2018-03-09 stsp }
243 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
244 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path_got);
245 86c3caaf 2018-03-09 stsp goto done;
246 86c3caaf 2018-03-09 stsp }
247 86c3caaf 2018-03-09 stsp
248 056e7441 2018-03-11 stsp /* Create an empty lock file. */
249 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
250 056e7441 2018-03-11 stsp if (err)
251 056e7441 2018-03-11 stsp goto done;
252 056e7441 2018-03-11 stsp
253 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
254 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
255 99724ed4 2018-03-10 stsp if (err)
256 86c3caaf 2018-03-09 stsp goto done;
257 86c3caaf 2018-03-09 stsp
258 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
259 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
260 65596e15 2018-12-24 stsp if (err)
261 65596e15 2018-12-24 stsp goto done;
262 65596e15 2018-12-24 stsp
263 65596e15 2018-12-24 stsp /* Record our base commit. */
264 65596e15 2018-12-24 stsp err = got_object_id_str(&basestr, commit_id);
265 65596e15 2018-12-24 stsp if (err)
266 65596e15 2018-12-24 stsp goto done;
267 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
268 99724ed4 2018-03-10 stsp if (err)
269 86c3caaf 2018-03-09 stsp goto done;
270 86c3caaf 2018-03-09 stsp
271 1451e70d 2018-03-10 stsp /* Store path to repository. */
272 7839bc15 2019-01-06 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
273 7839bc15 2019-01-06 stsp got_repo_get_path(repo));
274 99724ed4 2018-03-10 stsp if (err)
275 86c3caaf 2018-03-09 stsp goto done;
276 86c3caaf 2018-03-09 stsp
277 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
278 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
279 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
280 ec22038e 2019-03-10 stsp if (err)
281 ec22038e 2019-03-10 stsp goto done;
282 ec22038e 2019-03-10 stsp
283 ec22038e 2019-03-10 stsp /* Generate UUID. */
284 ec22038e 2019-03-10 stsp uuid_create(&uuid, &uuid_status);
285 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
286 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
287 ec22038e 2019-03-10 stsp goto done;
288 ec22038e 2019-03-10 stsp }
289 ec22038e 2019-03-10 stsp uuid_to_string(&uuid, &uuidstr, &uuid_status);
290 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
291 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
292 ec22038e 2019-03-10 stsp goto done;
293 ec22038e 2019-03-10 stsp }
294 ec22038e 2019-03-10 stsp err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
295 577ec78f 2018-03-11 stsp if (err)
296 577ec78f 2018-03-11 stsp goto done;
297 577ec78f 2018-03-11 stsp
298 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
299 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
300 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
301 1451e70d 2018-03-10 stsp goto done;
302 1451e70d 2018-03-10 stsp }
303 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
304 99724ed4 2018-03-10 stsp if (err)
305 1451e70d 2018-03-10 stsp goto done;
306 1451e70d 2018-03-10 stsp
307 86c3caaf 2018-03-09 stsp done:
308 65596e15 2018-12-24 stsp free(commit_id);
309 7ac97322 2018-03-11 stsp free(path_got);
310 1451e70d 2018-03-10 stsp free(formatstr);
311 0bb8a95e 2018-03-12 stsp free(absprefix);
312 65596e15 2018-12-24 stsp free(basestr);
313 ec22038e 2019-03-10 stsp free(uuidstr);
314 86c3caaf 2018-03-09 stsp return err;
315 86c3caaf 2018-03-09 stsp }
316 86c3caaf 2018-03-09 stsp
317 247140b2 2019-02-05 stsp static const struct got_error *
318 247140b2 2019-02-05 stsp open_worktree(struct got_worktree **worktree, const char *path)
319 86c3caaf 2018-03-09 stsp {
320 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
321 7ac97322 2018-03-11 stsp char *path_got;
322 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
323 c442a90d 2019-03-10 stsp char *uuidstr = NULL;
324 056e7441 2018-03-11 stsp char *path_lock = NULL;
325 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
326 6d9d28c3 2018-03-11 stsp int version, fd = -1;
327 6d9d28c3 2018-03-11 stsp const char *errstr;
328 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
329 c442a90d 2019-03-10 stsp uint32_t uuid_status;
330 6d9d28c3 2018-03-11 stsp
331 6d9d28c3 2018-03-11 stsp *worktree = NULL;
332 6d9d28c3 2018-03-11 stsp
333 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
334 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
335 7ac97322 2018-03-11 stsp path_got = NULL;
336 6d9d28c3 2018-03-11 stsp goto done;
337 6d9d28c3 2018-03-11 stsp }
338 6d9d28c3 2018-03-11 stsp
339 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
340 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
341 056e7441 2018-03-11 stsp path_lock = NULL;
342 6d9d28c3 2018-03-11 stsp goto done;
343 6d9d28c3 2018-03-11 stsp }
344 6d9d28c3 2018-03-11 stsp
345 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
346 6d9d28c3 2018-03-11 stsp if (fd == -1) {
347 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
348 638f9024 2019-05-13 stsp : got_error_from_errno2("open", path_lock));
349 6d9d28c3 2018-03-11 stsp goto done;
350 6d9d28c3 2018-03-11 stsp }
351 6d9d28c3 2018-03-11 stsp
352 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
353 6d9d28c3 2018-03-11 stsp if (err)
354 6d9d28c3 2018-03-11 stsp goto done;
355 6d9d28c3 2018-03-11 stsp
356 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
357 6d9d28c3 2018-03-11 stsp if (errstr) {
358 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
359 6d9d28c3 2018-03-11 stsp goto done;
360 6d9d28c3 2018-03-11 stsp }
361 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
362 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
363 6d9d28c3 2018-03-11 stsp goto done;
364 6d9d28c3 2018-03-11 stsp }
365 6d9d28c3 2018-03-11 stsp
366 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
367 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
368 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
369 6d9d28c3 2018-03-11 stsp goto done;
370 6d9d28c3 2018-03-11 stsp }
371 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
372 6d9d28c3 2018-03-11 stsp
373 0647c563 2019-03-11 stsp (*worktree)->root_path = strdup(path);
374 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
375 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
376 6d9d28c3 2018-03-11 stsp goto done;
377 6d9d28c3 2018-03-11 stsp }
378 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
379 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
380 6d9d28c3 2018-03-11 stsp if (err)
381 6d9d28c3 2018-03-11 stsp goto done;
382 eaccb85f 2018-12-25 stsp
383 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
384 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
385 93a30277 2018-12-24 stsp if (err)
386 93a30277 2018-12-24 stsp goto done;
387 93a30277 2018-12-24 stsp
388 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
389 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
390 c442a90d 2019-03-10 stsp if (err)
391 c442a90d 2019-03-10 stsp goto done;
392 c442a90d 2019-03-10 stsp
393 c442a90d 2019-03-10 stsp err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
394 eaccb85f 2018-12-25 stsp if (err)
395 c442a90d 2019-03-10 stsp goto done;
396 c442a90d 2019-03-10 stsp uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
397 c442a90d 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
398 c442a90d 2019-03-10 stsp err = got_error_uuid(uuid_status);
399 eaccb85f 2018-12-25 stsp goto done;
400 c442a90d 2019-03-10 stsp }
401 eaccb85f 2018-12-25 stsp
402 eaccb85f 2018-12-25 stsp err = got_repo_open(&repo, (*worktree)->repo_path);
403 eaccb85f 2018-12-25 stsp if (err)
404 eaccb85f 2018-12-25 stsp goto done;
405 eaccb85f 2018-12-25 stsp
406 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
407 eaccb85f 2018-12-25 stsp base_commit_id_str);
408 f5baf295 2018-03-11 stsp if (err)
409 6d9d28c3 2018-03-11 stsp goto done;
410 6d9d28c3 2018-03-11 stsp
411 36a38700 2019-05-10 stsp err = read_meta_file(&(*worktree)->head_ref_name, path_got,
412 36a38700 2019-05-10 stsp GOT_WORKTREE_HEAD_REF);
413 6d9d28c3 2018-03-11 stsp done:
414 eaccb85f 2018-12-25 stsp if (repo)
415 eaccb85f 2018-12-25 stsp got_repo_close(repo);
416 7ac97322 2018-03-11 stsp free(path_got);
417 056e7441 2018-03-11 stsp free(path_lock);
418 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
419 c442a90d 2019-03-10 stsp free(uuidstr);
420 bd165944 2019-03-10 stsp free(formatstr);
421 6d9d28c3 2018-03-11 stsp if (err) {
422 6d9d28c3 2018-03-11 stsp if (fd != -1)
423 6d9d28c3 2018-03-11 stsp close(fd);
424 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
425 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
426 6d9d28c3 2018-03-11 stsp *worktree = NULL;
427 6d9d28c3 2018-03-11 stsp } else
428 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
429 6d9d28c3 2018-03-11 stsp
430 6d9d28c3 2018-03-11 stsp return err;
431 86c3caaf 2018-03-09 stsp }
432 247140b2 2019-02-05 stsp
433 247140b2 2019-02-05 stsp const struct got_error *
434 247140b2 2019-02-05 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
435 247140b2 2019-02-05 stsp {
436 247140b2 2019-02-05 stsp const struct got_error *err = NULL;
437 86c3caaf 2018-03-09 stsp
438 247140b2 2019-02-05 stsp do {
439 247140b2 2019-02-05 stsp err = open_worktree(worktree, path);
440 f02eaa22 2019-03-11 stsp if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT))
441 247140b2 2019-02-05 stsp return err;
442 247140b2 2019-02-05 stsp if (*worktree)
443 247140b2 2019-02-05 stsp return NULL;
444 247140b2 2019-02-05 stsp path = dirname(path);
445 d1542a27 2019-02-05 stsp if (path == NULL)
446 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", path);
447 d1542a27 2019-02-05 stsp } while (!((path[0] == '.' || path[0] == '/') && path[1] == '\0'));
448 247140b2 2019-02-05 stsp
449 247140b2 2019-02-05 stsp return got_error(GOT_ERR_NOT_WORKTREE);
450 247140b2 2019-02-05 stsp }
451 247140b2 2019-02-05 stsp
452 3a6ce05a 2019-02-11 stsp const struct got_error *
453 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
454 86c3caaf 2018-03-09 stsp {
455 3a6ce05a 2019-02-11 stsp const struct got_error *err = NULL;
456 c88eb298 2018-03-11 stsp free(worktree->root_path);
457 cde76477 2018-03-11 stsp free(worktree->repo_path);
458 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
459 eaccb85f 2018-12-25 stsp free(worktree->base_commit_id);
460 36a38700 2019-05-10 stsp free(worktree->head_ref_name);
461 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
462 3a6ce05a 2019-02-11 stsp if (close(worktree->lockfd) != 0)
463 638f9024 2019-05-13 stsp err = got_error_from_errno2("close",
464 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree));
465 6d9d28c3 2018-03-11 stsp free(worktree);
466 3a6ce05a 2019-02-11 stsp return err;
467 86c3caaf 2018-03-09 stsp }
468 86c3caaf 2018-03-09 stsp
469 2fbdb5ae 2018-12-29 stsp const char *
470 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(struct got_worktree *worktree)
471 c7f4312f 2019-02-05 stsp {
472 c7f4312f 2019-02-05 stsp return worktree->root_path;
473 c7f4312f 2019-02-05 stsp }
474 c7f4312f 2019-02-05 stsp
475 c7f4312f 2019-02-05 stsp const char *
476 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
477 86c3caaf 2018-03-09 stsp {
478 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
479 49520a32 2018-12-29 stsp }
480 49520a32 2018-12-29 stsp
481 49520a32 2018-12-29 stsp const char *
482 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
483 49520a32 2018-12-29 stsp {
484 f609be2e 2018-12-29 stsp return worktree->path_prefix;
485 e5dc7198 2018-12-29 stsp }
486 e5dc7198 2018-12-29 stsp
487 e5dc7198 2018-12-29 stsp const struct got_error *
488 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
489 e5dc7198 2018-12-29 stsp const char *path_prefix)
490 e5dc7198 2018-12-29 stsp {
491 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
492 e5dc7198 2018-12-29 stsp
493 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
494 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
495 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
496 e5dc7198 2018-12-29 stsp }
497 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
498 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
499 e5dc7198 2018-12-29 stsp free(absprefix);
500 e5dc7198 2018-12-29 stsp return NULL;
501 86c3caaf 2018-03-09 stsp }
502 86c3caaf 2018-03-09 stsp
503 bc70eb79 2019-05-09 stsp const char *
504 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
505 86c3caaf 2018-03-09 stsp {
506 36a38700 2019-05-10 stsp return worktree->head_ref_name;
507 024e9686 2019-05-14 stsp }
508 024e9686 2019-05-14 stsp
509 024e9686 2019-05-14 stsp const struct got_error *
510 024e9686 2019-05-14 stsp got_worktree_set_head_ref(struct got_worktree *worktree,
511 024e9686 2019-05-14 stsp struct got_reference *head_ref)
512 024e9686 2019-05-14 stsp {
513 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
514 024e9686 2019-05-14 stsp char *path_got = NULL, *head_ref_name = NULL;
515 024e9686 2019-05-14 stsp
516 024e9686 2019-05-14 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
517 024e9686 2019-05-14 stsp GOT_WORKTREE_GOT_DIR) == -1) {
518 024e9686 2019-05-14 stsp err = got_error_from_errno("asprintf");
519 024e9686 2019-05-14 stsp path_got = NULL;
520 024e9686 2019-05-14 stsp goto done;
521 024e9686 2019-05-14 stsp }
522 024e9686 2019-05-14 stsp
523 024e9686 2019-05-14 stsp head_ref_name = strdup(got_ref_get_name(head_ref));
524 024e9686 2019-05-14 stsp if (head_ref_name == NULL) {
525 024e9686 2019-05-14 stsp err = got_error_from_errno("strdup");
526 024e9686 2019-05-14 stsp goto done;
527 024e9686 2019-05-14 stsp }
528 024e9686 2019-05-14 stsp
529 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
530 024e9686 2019-05-14 stsp if (err)
531 024e9686 2019-05-14 stsp goto done;
532 024e9686 2019-05-14 stsp
533 024e9686 2019-05-14 stsp free(worktree->head_ref_name);
534 024e9686 2019-05-14 stsp worktree->head_ref_name = head_ref_name;
535 024e9686 2019-05-14 stsp done:
536 024e9686 2019-05-14 stsp free(path_got);
537 024e9686 2019-05-14 stsp if (err)
538 024e9686 2019-05-14 stsp free(head_ref_name);
539 024e9686 2019-05-14 stsp return err;
540 507dc3bb 2018-12-29 stsp }
541 507dc3bb 2018-12-29 stsp
542 b72f483a 2019-02-05 stsp struct got_object_id *
543 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
544 507dc3bb 2018-12-29 stsp {
545 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
546 86c3caaf 2018-03-09 stsp }
547 86c3caaf 2018-03-09 stsp
548 507dc3bb 2018-12-29 stsp const struct got_error *
549 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
550 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
551 507dc3bb 2018-12-29 stsp {
552 507dc3bb 2018-12-29 stsp const struct got_error *err;
553 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
554 507dc3bb 2018-12-29 stsp char *id_str = NULL;
555 507dc3bb 2018-12-29 stsp char *path_got = NULL;
556 507dc3bb 2018-12-29 stsp
557 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
558 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
559 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
560 507dc3bb 2018-12-29 stsp path_got = NULL;
561 507dc3bb 2018-12-29 stsp goto done;
562 507dc3bb 2018-12-29 stsp }
563 507dc3bb 2018-12-29 stsp
564 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
565 507dc3bb 2018-12-29 stsp if (err)
566 507dc3bb 2018-12-29 stsp return err;
567 507dc3bb 2018-12-29 stsp
568 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
569 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
570 507dc3bb 2018-12-29 stsp goto done;
571 507dc3bb 2018-12-29 stsp }
572 507dc3bb 2018-12-29 stsp
573 507dc3bb 2018-12-29 stsp /* Record our base commit. */
574 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
575 507dc3bb 2018-12-29 stsp if (err)
576 507dc3bb 2018-12-29 stsp goto done;
577 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
578 507dc3bb 2018-12-29 stsp if (err)
579 507dc3bb 2018-12-29 stsp goto done;
580 507dc3bb 2018-12-29 stsp
581 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
582 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
583 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
584 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
585 507dc3bb 2018-12-29 stsp goto done;
586 507dc3bb 2018-12-29 stsp }
587 507dc3bb 2018-12-29 stsp done:
588 507dc3bb 2018-12-29 stsp if (obj)
589 507dc3bb 2018-12-29 stsp got_object_close(obj);
590 507dc3bb 2018-12-29 stsp free(id_str);
591 507dc3bb 2018-12-29 stsp free(path_got);
592 507dc3bb 2018-12-29 stsp return err;
593 507dc3bb 2018-12-29 stsp }
594 507dc3bb 2018-12-29 stsp
595 9d31a1d8 2018-03-11 stsp static const struct got_error *
596 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
597 86c3caaf 2018-03-09 stsp {
598 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
599 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
600 638f9024 2019-05-13 stsp : got_error_from_errno2("flock",
601 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree)));
602 86c3caaf 2018-03-09 stsp return NULL;
603 21908da4 2019-01-13 stsp }
604 21908da4 2019-01-13 stsp
605 21908da4 2019-01-13 stsp static const struct got_error *
606 4a1ddfc2 2019-01-12 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
607 4a1ddfc2 2019-01-12 stsp {
608 4a1ddfc2 2019-01-12 stsp const struct got_error *err = NULL;
609 4a1ddfc2 2019-01-12 stsp char *abspath;
610 4a1ddfc2 2019-01-12 stsp
611 4a1ddfc2 2019-01-12 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
612 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
613 4a1ddfc2 2019-01-12 stsp
614 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(abspath);
615 ddcd8544 2019-03-11 stsp if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
616 ddcd8544 2019-03-11 stsp struct stat sb;
617 ddcd8544 2019-03-11 stsp err = NULL;
618 ddcd8544 2019-03-11 stsp if (lstat(abspath, &sb) == -1) {
619 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
620 ddcd8544 2019-03-11 stsp } else if (!S_ISDIR(sb.st_mode)) {
621 ddcd8544 2019-03-11 stsp /* TODO directory is obstructed; do something */
622 ddcd8544 2019-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
623 ddcd8544 2019-03-11 stsp }
624 ddcd8544 2019-03-11 stsp }
625 4a1ddfc2 2019-01-12 stsp free(abspath);
626 68c76935 2019-02-19 stsp return err;
627 68c76935 2019-02-19 stsp }
628 68c76935 2019-02-19 stsp
629 68c76935 2019-02-19 stsp static const struct got_error *
630 68c76935 2019-02-19 stsp check_file_contents_equal(int *same, FILE *f1, FILE *f2)
631 68c76935 2019-02-19 stsp {
632 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
633 68c76935 2019-02-19 stsp uint8_t fbuf1[8192];
634 68c76935 2019-02-19 stsp uint8_t fbuf2[8192];
635 68c76935 2019-02-19 stsp size_t flen1 = 0, flen2 = 0;
636 68c76935 2019-02-19 stsp
637 68c76935 2019-02-19 stsp *same = 1;
638 68c76935 2019-02-19 stsp
639 230a42bd 2019-05-11 jcs for (;;) {
640 68c76935 2019-02-19 stsp flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
641 68c76935 2019-02-19 stsp if (flen1 == 0 && ferror(f1)) {
642 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
643 68c76935 2019-02-19 stsp break;
644 68c76935 2019-02-19 stsp }
645 68c76935 2019-02-19 stsp flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
646 68c76935 2019-02-19 stsp if (flen2 == 0 && ferror(f2)) {
647 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
648 68c76935 2019-02-19 stsp break;
649 68c76935 2019-02-19 stsp }
650 68c76935 2019-02-19 stsp if (flen1 == 0) {
651 68c76935 2019-02-19 stsp if (flen2 != 0)
652 68c76935 2019-02-19 stsp *same = 0;
653 68c76935 2019-02-19 stsp break;
654 68c76935 2019-02-19 stsp } else if (flen2 == 0) {
655 68c76935 2019-02-19 stsp if (flen1 != 0)
656 68c76935 2019-02-19 stsp *same = 0;
657 68c76935 2019-02-19 stsp break;
658 68c76935 2019-02-19 stsp } else if (flen1 == flen2) {
659 68c76935 2019-02-19 stsp if (memcmp(fbuf1, fbuf2, flen2) != 0) {
660 68c76935 2019-02-19 stsp *same = 0;
661 68c76935 2019-02-19 stsp break;
662 68c76935 2019-02-19 stsp }
663 68c76935 2019-02-19 stsp } else {
664 68c76935 2019-02-19 stsp *same = 0;
665 68c76935 2019-02-19 stsp break;
666 68c76935 2019-02-19 stsp }
667 68c76935 2019-02-19 stsp }
668 68c76935 2019-02-19 stsp
669 68c76935 2019-02-19 stsp return err;
670 68c76935 2019-02-19 stsp }
671 68c76935 2019-02-19 stsp
672 68c76935 2019-02-19 stsp static const struct got_error *
673 68c76935 2019-02-19 stsp check_files_equal(int *same, const char *f1_path, const char *f2_path)
674 68c76935 2019-02-19 stsp {
675 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
676 68c76935 2019-02-19 stsp struct stat sb;
677 68c76935 2019-02-19 stsp size_t size1, size2;
678 68c76935 2019-02-19 stsp FILE *f1 = NULL, *f2 = NULL;
679 68c76935 2019-02-19 stsp
680 68c76935 2019-02-19 stsp *same = 1;
681 68c76935 2019-02-19 stsp
682 68c76935 2019-02-19 stsp if (lstat(f1_path, &sb) != 0) {
683 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", f1_path);
684 68c76935 2019-02-19 stsp goto done;
685 68c76935 2019-02-19 stsp }
686 68c76935 2019-02-19 stsp size1 = sb.st_size;
687 68c76935 2019-02-19 stsp
688 68c76935 2019-02-19 stsp if (lstat(f2_path, &sb) != 0) {
689 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", f2_path);
690 68c76935 2019-02-19 stsp goto done;
691 68c76935 2019-02-19 stsp }
692 68c76935 2019-02-19 stsp size2 = sb.st_size;
693 68c76935 2019-02-19 stsp
694 68c76935 2019-02-19 stsp if (size1 != size2) {
695 68c76935 2019-02-19 stsp *same = 0;
696 68c76935 2019-02-19 stsp return NULL;
697 68c76935 2019-02-19 stsp }
698 68c76935 2019-02-19 stsp
699 68c76935 2019-02-19 stsp f1 = fopen(f1_path, "r");
700 68c76935 2019-02-19 stsp if (f1 == NULL)
701 638f9024 2019-05-13 stsp return got_error_from_errno2("open", f1_path);
702 68c76935 2019-02-19 stsp
703 68c76935 2019-02-19 stsp f2 = fopen(f2_path, "r");
704 68c76935 2019-02-19 stsp if (f2 == NULL) {
705 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", f2_path);
706 68c76935 2019-02-19 stsp goto done;
707 68c76935 2019-02-19 stsp }
708 68c76935 2019-02-19 stsp
709 68c76935 2019-02-19 stsp err = check_file_contents_equal(same, f1, f2);
710 68c76935 2019-02-19 stsp done:
711 68c76935 2019-02-19 stsp if (f1 && fclose(f1) != 0 && err == NULL)
712 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
713 68c76935 2019-02-19 stsp if (f2 && fclose(f2) != 0 && err == NULL)
714 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
715 68c76935 2019-02-19 stsp
716 6353ad76 2019-02-08 stsp return err;
717 6353ad76 2019-02-08 stsp }
718 6353ad76 2019-02-08 stsp
719 6353ad76 2019-02-08 stsp /*
720 46b6ee73 2019-06-04 stsp * Perform a 3-way merge where blob_orig acts as the common ancestor,
721 46b6ee73 2019-06-04 stsp * blob_deriv acts as the first derived version, and the file on disk
722 234035bc 2019-06-01 stsp * acts as the second derived version.
723 6353ad76 2019-02-08 stsp */
724 6353ad76 2019-02-08 stsp static const struct got_error *
725 234035bc 2019-06-01 stsp merge_blob(int *local_changes_subsumed, struct got_worktree *worktree,
726 46b6ee73 2019-06-04 stsp struct got_blob_object *blob_orig, const char *ondisk_path,
727 46b6ee73 2019-06-04 stsp const char *path, uint16_t st_mode, struct got_blob_object *blob_deriv,
728 818c7501 2019-07-11 stsp struct got_object_id *deriv_base_commit_id,
729 234035bc 2019-06-01 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
730 234035bc 2019-06-01 stsp void *progress_arg)
731 6353ad76 2019-02-08 stsp {
732 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
733 6353ad76 2019-02-08 stsp int merged_fd = -1;
734 46b6ee73 2019-06-04 stsp FILE *f_deriv = NULL, *f_orig = NULL;
735 46b6ee73 2019-06-04 stsp char *blob_deriv_path = NULL, *blob_orig_path = NULL;
736 af54ae4a 2019-02-19 stsp char *merged_path = NULL, *base_path = NULL;
737 6353ad76 2019-02-08 stsp char *id_str = NULL;
738 818c7501 2019-07-11 stsp char *label_deriv = NULL;
739 234035bc 2019-06-01 stsp int overlapcnt = 0;
740 af54ae4a 2019-02-19 stsp char *parent;
741 6353ad76 2019-02-08 stsp
742 234035bc 2019-06-01 stsp *local_changes_subsumed = 0;
743 234035bc 2019-06-01 stsp
744 af54ae4a 2019-02-19 stsp parent = dirname(ondisk_path);
745 af54ae4a 2019-02-19 stsp if (parent == NULL)
746 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", ondisk_path);
747 af54ae4a 2019-02-19 stsp
748 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merged", parent) == -1)
749 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
750 af54ae4a 2019-02-19 stsp
751 af54ae4a 2019-02-19 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
752 6353ad76 2019-02-08 stsp if (err)
753 af54ae4a 2019-02-19 stsp goto done;
754 af54ae4a 2019-02-19 stsp
755 af54ae4a 2019-02-19 stsp free(base_path);
756 46b6ee73 2019-06-04 stsp if (asprintf(&base_path, "%s/got-merge-blob-deriv", parent) == -1) {
757 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
758 af54ae4a 2019-02-19 stsp base_path = NULL;
759 af54ae4a 2019-02-19 stsp goto done;
760 af54ae4a 2019-02-19 stsp }
761 af54ae4a 2019-02-19 stsp
762 46b6ee73 2019-06-04 stsp err = got_opentemp_named(&blob_deriv_path, &f_deriv, base_path);
763 6353ad76 2019-02-08 stsp if (err)
764 6353ad76 2019-02-08 stsp goto done;
765 6c4c42e0 2019-06-24 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_deriv,
766 6c4c42e0 2019-06-24 stsp blob_deriv);
767 6353ad76 2019-02-08 stsp if (err)
768 6353ad76 2019-02-08 stsp goto done;
769 6353ad76 2019-02-08 stsp
770 af54ae4a 2019-02-19 stsp free(base_path);
771 46b6ee73 2019-06-04 stsp if (asprintf(&base_path, "%s/got-merge-blob-orig", parent) == -1) {
772 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
773 af54ae4a 2019-02-19 stsp base_path = NULL;
774 af54ae4a 2019-02-19 stsp goto done;
775 af54ae4a 2019-02-19 stsp }
776 af54ae4a 2019-02-19 stsp
777 46b6ee73 2019-06-04 stsp err = got_opentemp_named(&blob_orig_path, &f_orig, base_path);
778 6353ad76 2019-02-08 stsp if (err)
779 6353ad76 2019-02-08 stsp goto done;
780 46b6ee73 2019-06-04 stsp if (blob_orig) {
781 6c4c42e0 2019-06-24 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_orig,
782 46b6ee73 2019-06-04 stsp blob_orig);
783 1430b4e0 2019-03-27 stsp if (err)
784 1430b4e0 2019-03-27 stsp goto done;
785 1430b4e0 2019-03-27 stsp } else {
786 1430b4e0 2019-03-27 stsp /*
787 1430b4e0 2019-03-27 stsp * If the file has no blob, this is an "add vs add" conflict,
788 1430b4e0 2019-03-27 stsp * and we simply use an empty ancestor file to make both files
789 1430b4e0 2019-03-27 stsp * appear in the merged result in their entirety.
790 1430b4e0 2019-03-27 stsp */
791 1430b4e0 2019-03-27 stsp }
792 6353ad76 2019-02-08 stsp
793 818c7501 2019-07-11 stsp err = got_object_id_str(&id_str, deriv_base_commit_id);
794 6353ad76 2019-02-08 stsp if (err)
795 6353ad76 2019-02-08 stsp goto done;
796 818c7501 2019-07-11 stsp if (asprintf(&label_deriv, "commit %s", id_str) == -1) {
797 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
798 6353ad76 2019-02-08 stsp goto done;
799 6353ad76 2019-02-08 stsp }
800 6353ad76 2019-02-08 stsp
801 46b6ee73 2019-06-04 stsp err = got_merge_diff3(&overlapcnt, merged_fd, blob_deriv_path,
802 818c7501 2019-07-11 stsp blob_orig_path, ondisk_path, label_deriv, path);
803 6353ad76 2019-02-08 stsp if (err)
804 6353ad76 2019-02-08 stsp goto done;
805 6353ad76 2019-02-08 stsp
806 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg,
807 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
808 1ee397ad 2019-07-12 stsp if (err)
809 1ee397ad 2019-07-12 stsp goto done;
810 6353ad76 2019-02-08 stsp
811 816dc654 2019-02-16 stsp if (fsync(merged_fd) != 0) {
812 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
813 816dc654 2019-02-16 stsp goto done;
814 68c76935 2019-02-19 stsp }
815 68c76935 2019-02-19 stsp
816 68c76935 2019-02-19 stsp /* Check if a clean merge has subsumed all local changes. */
817 68c76935 2019-02-19 stsp if (overlapcnt == 0) {
818 46b6ee73 2019-06-04 stsp err = check_files_equal(local_changes_subsumed, blob_deriv_path,
819 68c76935 2019-02-19 stsp merged_path);
820 68c76935 2019-02-19 stsp if (err)
821 68c76935 2019-02-19 stsp goto done;
822 816dc654 2019-02-16 stsp }
823 6353ad76 2019-02-08 stsp
824 70a0c8ec 2019-02-20 stsp if (chmod(merged_path, st_mode) != 0) {
825 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", merged_path);
826 70a0c8ec 2019-02-20 stsp goto done;
827 70a0c8ec 2019-02-20 stsp }
828 70a0c8ec 2019-02-20 stsp
829 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
830 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", merged_path,
831 230a42bd 2019-05-11 jcs ondisk_path);
832 2a57020b 2019-02-20 stsp unlink(merged_path);
833 6353ad76 2019-02-08 stsp goto done;
834 6353ad76 2019-02-08 stsp }
835 6353ad76 2019-02-08 stsp
836 6353ad76 2019-02-08 stsp done:
837 3a6ce05a 2019-02-11 stsp if (merged_fd != -1 && close(merged_fd) != 0 && err == NULL)
838 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
839 46b6ee73 2019-06-04 stsp if (f_deriv && fclose(f_deriv) != 0 && err == NULL)
840 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
841 46b6ee73 2019-06-04 stsp if (f_orig && fclose(f_orig) != 0 && err == NULL)
842 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
843 6353ad76 2019-02-08 stsp free(merged_path);
844 af54ae4a 2019-02-19 stsp free(base_path);
845 46b6ee73 2019-06-04 stsp if (blob_deriv_path) {
846 46b6ee73 2019-06-04 stsp unlink(blob_deriv_path);
847 46b6ee73 2019-06-04 stsp free(blob_deriv_path);
848 6353ad76 2019-02-08 stsp }
849 46b6ee73 2019-06-04 stsp if (blob_orig_path) {
850 46b6ee73 2019-06-04 stsp unlink(blob_orig_path);
851 46b6ee73 2019-06-04 stsp free(blob_orig_path);
852 6353ad76 2019-02-08 stsp }
853 6353ad76 2019-02-08 stsp free(id_str);
854 818c7501 2019-07-11 stsp free(label_deriv);
855 4a1ddfc2 2019-01-12 stsp return err;
856 4a1ddfc2 2019-01-12 stsp }
857 4a1ddfc2 2019-01-12 stsp
858 4a1ddfc2 2019-01-12 stsp static const struct got_error *
859 13d9040b 2019-03-27 stsp update_blob_fileindex_entry(struct got_worktree *worktree,
860 13d9040b 2019-03-27 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
861 13d9040b 2019-03-27 stsp const char *ondisk_path, const char *path, struct got_blob_object *blob,
862 13d9040b 2019-03-27 stsp int update_timestamps)
863 13d9040b 2019-03-27 stsp {
864 13d9040b 2019-03-27 stsp const struct got_error *err = NULL;
865 13d9040b 2019-03-27 stsp
866 13d9040b 2019-03-27 stsp if (ie == NULL)
867 13d9040b 2019-03-27 stsp ie = got_fileindex_entry_get(fileindex, path);
868 13d9040b 2019-03-27 stsp if (ie)
869 13d9040b 2019-03-27 stsp err = got_fileindex_entry_update(ie, ondisk_path,
870 13d9040b 2019-03-27 stsp blob->id.sha1, worktree->base_commit_id->sha1,
871 13d9040b 2019-03-27 stsp update_timestamps);
872 13d9040b 2019-03-27 stsp else {
873 13d9040b 2019-03-27 stsp struct got_fileindex_entry *new_ie;
874 13d9040b 2019-03-27 stsp err = got_fileindex_entry_alloc(&new_ie, ondisk_path,
875 13d9040b 2019-03-27 stsp path, blob->id.sha1, worktree->base_commit_id->sha1);
876 13d9040b 2019-03-27 stsp if (!err)
877 13d9040b 2019-03-27 stsp err = got_fileindex_entry_add(fileindex, new_ie);
878 13d9040b 2019-03-27 stsp }
879 13d9040b 2019-03-27 stsp return err;
880 13d9040b 2019-03-27 stsp }
881 13d9040b 2019-03-27 stsp
882 13d9040b 2019-03-27 stsp static const struct got_error *
883 13d9040b 2019-03-27 stsp install_blob(struct got_worktree *worktree, const char *ondisk_path,
884 13d9040b 2019-03-27 stsp const char *path, uint16_t te_mode, uint16_t st_mode,
885 13d9040b 2019-03-27 stsp struct got_blob_object *blob, int restoring_missing_file,
886 a129376b 2019-03-28 stsp int reverting_versioned_file, struct got_repository *repo,
887 a129376b 2019-03-28 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
888 9d31a1d8 2018-03-11 stsp {
889 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
890 507dc3bb 2018-12-29 stsp int fd = -1;
891 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
892 507dc3bb 2018-12-29 stsp int update = 0;
893 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
894 9d31a1d8 2018-03-11 stsp
895 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
896 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
897 9d31a1d8 2018-03-11 stsp if (fd == -1) {
898 21908da4 2019-01-13 stsp if (errno == ENOENT) {
899 21908da4 2019-01-13 stsp char *parent = dirname(path);
900 21908da4 2019-01-13 stsp if (parent == NULL)
901 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", path);
902 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
903 21908da4 2019-01-13 stsp if (err)
904 21908da4 2019-01-13 stsp return err;
905 21908da4 2019-01-13 stsp fd = open(ondisk_path,
906 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
907 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
908 21908da4 2019-01-13 stsp if (fd == -1)
909 638f9024 2019-05-13 stsp return got_error_from_errno2("open",
910 230a42bd 2019-05-11 jcs ondisk_path);
911 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
912 b8f41171 2019-02-10 stsp if (!S_ISREG(st_mode)) {
913 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
914 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
915 507dc3bb 2018-12-29 stsp goto done;
916 d70b8e30 2018-12-27 stsp } else {
917 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
918 507dc3bb 2018-12-29 stsp ondisk_path);
919 507dc3bb 2018-12-29 stsp if (err)
920 507dc3bb 2018-12-29 stsp goto done;
921 507dc3bb 2018-12-29 stsp update = 1;
922 9d31a1d8 2018-03-11 stsp }
923 507dc3bb 2018-12-29 stsp } else
924 638f9024 2019-05-13 stsp return got_error_from_errno2("open", ondisk_path);
925 9d31a1d8 2018-03-11 stsp }
926 9d31a1d8 2018-03-11 stsp
927 a378724f 2019-02-10 stsp if (restoring_missing_file)
928 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MISSING, path);
929 a129376b 2019-03-28 stsp else if (reverting_versioned_file)
930 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_REVERT, path);
931 a378724f 2019-02-10 stsp else
932 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg,
933 a378724f 2019-02-10 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
934 1ee397ad 2019-07-12 stsp if (err)
935 1ee397ad 2019-07-12 stsp goto done;
936 d7b62c98 2018-12-27 stsp
937 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
938 9d31a1d8 2018-03-11 stsp do {
939 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
940 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
941 9d31a1d8 2018-03-11 stsp if (err)
942 9d31a1d8 2018-03-11 stsp break;
943 9d31a1d8 2018-03-11 stsp if (len > 0) {
944 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
945 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
946 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
947 638f9024 2019-05-13 stsp err = got_error_from_errno("write");
948 b87c6f83 2018-12-24 stsp goto done;
949 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
950 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
951 b87c6f83 2018-12-24 stsp goto done;
952 9d31a1d8 2018-03-11 stsp }
953 61d6eaa3 2018-12-24 stsp hdrlen = 0;
954 9d31a1d8 2018-03-11 stsp }
955 9d31a1d8 2018-03-11 stsp } while (len != 0);
956 9d31a1d8 2018-03-11 stsp
957 816dc654 2019-02-16 stsp if (fsync(fd) != 0) {
958 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
959 816dc654 2019-02-16 stsp goto done;
960 816dc654 2019-02-16 stsp }
961 9d31a1d8 2018-03-11 stsp
962 507dc3bb 2018-12-29 stsp if (update) {
963 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
964 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath,
965 230a42bd 2019-05-11 jcs ondisk_path);
966 2a57020b 2019-02-20 stsp unlink(tmppath);
967 68ed9ba5 2019-02-10 stsp goto done;
968 68ed9ba5 2019-02-10 stsp }
969 68ed9ba5 2019-02-10 stsp }
970 ba8a0d4d 2019-02-10 stsp
971 b8f41171 2019-02-10 stsp if (te_mode & S_IXUSR) {
972 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode | S_IXUSR) == -1) {
973 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", ondisk_path);
974 507dc3bb 2018-12-29 stsp goto done;
975 507dc3bb 2018-12-29 stsp }
976 ba8a0d4d 2019-02-10 stsp } else {
977 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode & ~S_IXUSR) == -1) {
978 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", ondisk_path);
979 68ed9ba5 2019-02-10 stsp goto done;
980 68ed9ba5 2019-02-10 stsp }
981 507dc3bb 2018-12-29 stsp }
982 507dc3bb 2018-12-29 stsp
983 9d31a1d8 2018-03-11 stsp done:
984 3a6ce05a 2019-02-11 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
985 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
986 507dc3bb 2018-12-29 stsp free(tmppath);
987 6353ad76 2019-02-08 stsp return err;
988 6353ad76 2019-02-08 stsp }
989 6353ad76 2019-02-08 stsp
990 7154f6ce 2019-03-27 stsp /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
991 6353ad76 2019-02-08 stsp static const struct got_error *
992 7154f6ce 2019-03-27 stsp get_modified_file_content_status(unsigned char *status, FILE *f)
993 7154f6ce 2019-03-27 stsp {
994 7154f6ce 2019-03-27 stsp const struct got_error *err = NULL;
995 7154f6ce 2019-03-27 stsp const char *markers[3] = {
996 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_BEGIN,
997 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_SEP,
998 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_END
999 7154f6ce 2019-03-27 stsp };
1000 7154f6ce 2019-03-27 stsp int i = 0;
1001 7154f6ce 2019-03-27 stsp char *line;
1002 7154f6ce 2019-03-27 stsp size_t len;
1003 7154f6ce 2019-03-27 stsp const char delim[3] = {'\0', '\0', '\0'};
1004 7154f6ce 2019-03-27 stsp
1005 7154f6ce 2019-03-27 stsp while (*status == GOT_STATUS_MODIFY) {
1006 7154f6ce 2019-03-27 stsp line = fparseln(f, &len, NULL, delim, 0);
1007 7154f6ce 2019-03-27 stsp if (line == NULL) {
1008 7154f6ce 2019-03-27 stsp if (feof(f))
1009 7154f6ce 2019-03-27 stsp break;
1010 7154f6ce 2019-03-27 stsp err = got_ferror(f, GOT_ERR_IO);
1011 7154f6ce 2019-03-27 stsp break;
1012 7154f6ce 2019-03-27 stsp }
1013 7154f6ce 2019-03-27 stsp
1014 7154f6ce 2019-03-27 stsp if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1015 19332e6d 2019-05-13 stsp if (strcmp(markers[i], GOT_DIFF_CONFLICT_MARKER_END)
1016 19332e6d 2019-05-13 stsp == 0)
1017 7154f6ce 2019-03-27 stsp *status = GOT_STATUS_CONFLICT;
1018 7154f6ce 2019-03-27 stsp else
1019 7154f6ce 2019-03-27 stsp i++;
1020 7154f6ce 2019-03-27 stsp }
1021 7154f6ce 2019-03-27 stsp }
1022 7154f6ce 2019-03-27 stsp
1023 7154f6ce 2019-03-27 stsp return err;
1024 e2b1e152 2019-07-13 stsp }
1025 e2b1e152 2019-07-13 stsp
1026 e2b1e152 2019-07-13 stsp static int
1027 e2b1e152 2019-07-13 stsp stat_info_differs(struct got_fileindex_entry *ie, struct stat *sb)
1028 e2b1e152 2019-07-13 stsp {
1029 e2b1e152 2019-07-13 stsp return !(ie->ctime_sec == sb->st_ctime &&
1030 e2b1e152 2019-07-13 stsp ie->ctime_nsec == sb->st_ctimensec &&
1031 e2b1e152 2019-07-13 stsp ie->mtime_sec == sb->st_mtime &&
1032 e2b1e152 2019-07-13 stsp ie->mtime_nsec == sb->st_mtimensec &&
1033 e2b1e152 2019-07-13 stsp ie->size == (sb->st_size & 0xffffffff));
1034 7154f6ce 2019-03-27 stsp }
1035 7154f6ce 2019-03-27 stsp
1036 7154f6ce 2019-03-27 stsp static const struct got_error *
1037 b8f41171 2019-02-10 stsp get_file_status(unsigned char *status, struct stat *sb,
1038 b8f41171 2019-02-10 stsp struct got_fileindex_entry *ie, const char *abspath,
1039 b8f41171 2019-02-10 stsp struct got_repository *repo)
1040 6353ad76 2019-02-08 stsp {
1041 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
1042 6353ad76 2019-02-08 stsp struct got_object_id id;
1043 6353ad76 2019-02-08 stsp size_t hdrlen;
1044 6353ad76 2019-02-08 stsp FILE *f = NULL;
1045 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
1046 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
1047 6353ad76 2019-02-08 stsp size_t flen, blen;
1048 6353ad76 2019-02-08 stsp
1049 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
1050 6353ad76 2019-02-08 stsp
1051 b8f41171 2019-02-10 stsp if (lstat(abspath, sb) == -1) {
1052 a378724f 2019-02-10 stsp if (errno == ENOENT) {
1053 b8f41171 2019-02-10 stsp if (ie) {
1054 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1055 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_MISSING;
1056 2ec1f75b 2019-03-26 stsp else
1057 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_DELETE;
1058 b8f41171 2019-02-10 stsp sb->st_mode =
1059 b8f41171 2019-02-10 stsp ((ie->mode >> GOT_FILEIDX_MODE_PERMS_SHIFT)
1060 b8f41171 2019-02-10 stsp & (S_IRWXU | S_IRWXG | S_IRWXO));
1061 b8f41171 2019-02-10 stsp } else
1062 b8f41171 2019-02-10 stsp sb->st_mode = GOT_DEFAULT_FILE_MODE;
1063 a378724f 2019-02-10 stsp return NULL;
1064 a378724f 2019-02-10 stsp }
1065 638f9024 2019-05-13 stsp return got_error_from_errno2("lstat", abspath);
1066 a378724f 2019-02-10 stsp }
1067 6353ad76 2019-02-08 stsp
1068 b8f41171 2019-02-10 stsp if (!S_ISREG(sb->st_mode)) {
1069 6353ad76 2019-02-08 stsp *status = GOT_STATUS_OBSTRUCTED;
1070 6353ad76 2019-02-08 stsp return NULL;
1071 6353ad76 2019-02-08 stsp }
1072 6353ad76 2019-02-08 stsp
1073 b8f41171 2019-02-10 stsp if (ie == NULL)
1074 d00136be 2019-03-26 stsp return NULL;
1075 d00136be 2019-03-26 stsp
1076 2ec1f75b 2019-03-26 stsp if (!got_fileindex_entry_has_file_on_disk(ie)) {
1077 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_DELETE;
1078 2ec1f75b 2019-03-26 stsp return NULL;
1079 2ec1f75b 2019-03-26 stsp } else if (!got_fileindex_entry_has_blob(ie)) {
1080 d00136be 2019-03-26 stsp *status = GOT_STATUS_ADD;
1081 b8f41171 2019-02-10 stsp return NULL;
1082 d00136be 2019-03-26 stsp }
1083 b8f41171 2019-02-10 stsp
1084 e2b1e152 2019-07-13 stsp if (!stat_info_differs(ie, sb))
1085 6353ad76 2019-02-08 stsp return NULL;
1086 6353ad76 2019-02-08 stsp
1087 6353ad76 2019-02-08 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1088 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1089 6353ad76 2019-02-08 stsp if (err)
1090 6353ad76 2019-02-08 stsp return err;
1091 6353ad76 2019-02-08 stsp
1092 6353ad76 2019-02-08 stsp f = fopen(abspath, "r");
1093 6353ad76 2019-02-08 stsp if (f == NULL) {
1094 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", abspath);
1095 6353ad76 2019-02-08 stsp goto done;
1096 6353ad76 2019-02-08 stsp }
1097 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1098 656b1f76 2019-05-11 jcs for (;;) {
1099 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1100 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
1101 6353ad76 2019-02-08 stsp if (err)
1102 7154f6ce 2019-03-27 stsp goto done;
1103 3cbbd752 2019-02-19 stsp /* Skip length of blob object header first time around. */
1104 3cbbd752 2019-02-19 stsp flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1105 80c5c120 2019-02-19 stsp if (flen == 0 && ferror(f)) {
1106 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
1107 7154f6ce 2019-03-27 stsp goto done;
1108 80c5c120 2019-02-19 stsp }
1109 6353ad76 2019-02-08 stsp if (blen == 0) {
1110 6353ad76 2019-02-08 stsp if (flen != 0)
1111 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1112 6353ad76 2019-02-08 stsp break;
1113 6353ad76 2019-02-08 stsp } else if (flen == 0) {
1114 6353ad76 2019-02-08 stsp if (blen != 0)
1115 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1116 6353ad76 2019-02-08 stsp break;
1117 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
1118 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
1119 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1120 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1121 6353ad76 2019-02-08 stsp break;
1122 6353ad76 2019-02-08 stsp }
1123 6353ad76 2019-02-08 stsp } else {
1124 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1125 6353ad76 2019-02-08 stsp break;
1126 6353ad76 2019-02-08 stsp }
1127 6353ad76 2019-02-08 stsp hdrlen = 0;
1128 6353ad76 2019-02-08 stsp }
1129 7154f6ce 2019-03-27 stsp
1130 7154f6ce 2019-03-27 stsp if (*status == GOT_STATUS_MODIFY) {
1131 7154f6ce 2019-03-27 stsp rewind(f);
1132 7154f6ce 2019-03-27 stsp err = get_modified_file_content_status(status, f);
1133 7154f6ce 2019-03-27 stsp }
1134 6353ad76 2019-02-08 stsp done:
1135 6353ad76 2019-02-08 stsp if (blob)
1136 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
1137 6353ad76 2019-02-08 stsp if (f)
1138 6353ad76 2019-02-08 stsp fclose(f);
1139 9d31a1d8 2018-03-11 stsp return err;
1140 e2b1e152 2019-07-13 stsp }
1141 e2b1e152 2019-07-13 stsp
1142 e2b1e152 2019-07-13 stsp /*
1143 e2b1e152 2019-07-13 stsp * Update timestamps in the file index if a file is unmodified and
1144 e2b1e152 2019-07-13 stsp * we had to run a full content comparison to find out.
1145 e2b1e152 2019-07-13 stsp */
1146 e2b1e152 2019-07-13 stsp static const struct got_error *
1147 e2b1e152 2019-07-13 stsp sync_timestamps(char *ondisk_path, unsigned char status,
1148 e2b1e152 2019-07-13 stsp struct got_fileindex_entry *ie, struct stat *sb)
1149 e2b1e152 2019-07-13 stsp {
1150 e2b1e152 2019-07-13 stsp if (status == GOT_STATUS_NO_CHANGE && stat_info_differs(ie, sb))
1151 e2b1e152 2019-07-13 stsp return got_fileindex_entry_update(ie, ondisk_path,
1152 e2b1e152 2019-07-13 stsp ie->blob_sha1, ie->commit_sha1, 1);
1153 e2b1e152 2019-07-13 stsp
1154 e2b1e152 2019-07-13 stsp return NULL;
1155 9d31a1d8 2018-03-11 stsp }
1156 9d31a1d8 2018-03-11 stsp
1157 9d31a1d8 2018-03-11 stsp static const struct got_error *
1158 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
1159 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1160 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
1161 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1162 0584f854 2019-04-06 stsp void *progress_arg)
1163 9d31a1d8 2018-03-11 stsp {
1164 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1165 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
1166 6353ad76 2019-02-08 stsp char *ondisk_path;
1167 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1168 b8f41171 2019-02-10 stsp struct stat sb;
1169 9d31a1d8 2018-03-11 stsp
1170 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1171 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1172 6353ad76 2019-02-08 stsp
1173 b8f41171 2019-02-10 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1174 b8f41171 2019-02-10 stsp if (err)
1175 b8f41171 2019-02-10 stsp goto done;
1176 6353ad76 2019-02-08 stsp
1177 b8f41171 2019-02-10 stsp if (status == GOT_STATUS_OBSTRUCTED) {
1178 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, status, path);
1179 b8f41171 2019-02-10 stsp goto done;
1180 b8f41171 2019-02-10 stsp }
1181 b8f41171 2019-02-10 stsp
1182 b8f41171 2019-02-10 stsp if (ie && status != GOT_STATUS_MISSING) {
1183 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_commit(ie) &&
1184 1430b4e0 2019-03-27 stsp memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1185 b8f41171 2019-02-10 stsp SHA1_DIGEST_LENGTH) == 0) {
1186 e2b1e152 2019-07-13 stsp err = sync_timestamps(ondisk_path, status, ie, &sb);
1187 e2b1e152 2019-07-13 stsp if (err)
1188 e2b1e152 2019-07-13 stsp goto done;
1189 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1190 b8f41171 2019-02-10 stsp path);
1191 6353ad76 2019-02-08 stsp goto done;
1192 a378724f 2019-02-10 stsp }
1193 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_blob(ie) &&
1194 1430b4e0 2019-03-27 stsp memcmp(ie->blob_sha1, te->id->sha1,
1195 e2b1e152 2019-07-13 stsp SHA1_DIGEST_LENGTH) == 0) {
1196 e2b1e152 2019-07-13 stsp err = sync_timestamps(ondisk_path, status, ie, &sb);
1197 b8f41171 2019-02-10 stsp goto done;
1198 e2b1e152 2019-07-13 stsp }
1199 9d31a1d8 2018-03-11 stsp }
1200 9d31a1d8 2018-03-11 stsp
1201 8da9e5f4 2019-01-12 stsp err = got_object_open_as_blob(&blob, repo, te->id, 8192);
1202 8da9e5f4 2019-01-12 stsp if (err)
1203 6353ad76 2019-02-08 stsp goto done;
1204 512f0d0e 2019-01-02 stsp
1205 234035bc 2019-06-01 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD) {
1206 234035bc 2019-06-01 stsp int update_timestamps;
1207 234035bc 2019-06-01 stsp struct got_blob_object *blob2 = NULL;
1208 234035bc 2019-06-01 stsp if (got_fileindex_entry_has_blob(ie)) {
1209 234035bc 2019-06-01 stsp struct got_object_id id2;
1210 234035bc 2019-06-01 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1211 234035bc 2019-06-01 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
1212 234035bc 2019-06-01 stsp if (err)
1213 234035bc 2019-06-01 stsp goto done;
1214 234035bc 2019-06-01 stsp }
1215 234035bc 2019-06-01 stsp err = merge_blob(&update_timestamps, worktree, blob2,
1216 818c7501 2019-07-11 stsp ondisk_path, path, sb.st_mode, blob,
1217 818c7501 2019-07-11 stsp worktree->base_commit_id, repo,
1218 234035bc 2019-06-01 stsp progress_cb, progress_arg);
1219 234035bc 2019-06-01 stsp if (blob2)
1220 234035bc 2019-06-01 stsp got_object_blob_close(blob2);
1221 234035bc 2019-06-01 stsp /*
1222 234035bc 2019-06-01 stsp * Do not update timestamps of files with local changes.
1223 234035bc 2019-06-01 stsp * Otherwise, a future status walk would treat them as
1224 234035bc 2019-06-01 stsp * unmodified files again.
1225 234035bc 2019-06-01 stsp */
1226 234035bc 2019-06-01 stsp err = got_fileindex_entry_update(ie, ondisk_path,
1227 234035bc 2019-06-01 stsp blob->id.sha1, worktree->base_commit_id->sha1,
1228 234035bc 2019-06-01 stsp update_timestamps);
1229 234035bc 2019-06-01 stsp } else if (status == GOT_STATUS_DELETE) {
1230 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1231 1ee397ad 2019-07-12 stsp if (err)
1232 1ee397ad 2019-07-12 stsp goto done;
1233 13d9040b 2019-03-27 stsp err = update_blob_fileindex_entry(worktree, fileindex, ie,
1234 13d9040b 2019-03-27 stsp ondisk_path, path, blob, 0);
1235 13d9040b 2019-03-27 stsp if (err)
1236 13d9040b 2019-03-27 stsp goto done;
1237 13d9040b 2019-03-27 stsp } else {
1238 13d9040b 2019-03-27 stsp err = install_blob(worktree, ondisk_path, path, te->mode,
1239 a129376b 2019-03-28 stsp sb.st_mode, blob, status == GOT_STATUS_MISSING, 0,
1240 a129376b 2019-03-28 stsp repo, progress_cb, progress_arg);
1241 13d9040b 2019-03-27 stsp if (err)
1242 13d9040b 2019-03-27 stsp goto done;
1243 13d9040b 2019-03-27 stsp err = update_blob_fileindex_entry(worktree, fileindex, ie,
1244 13d9040b 2019-03-27 stsp ondisk_path, path, blob, 1);
1245 13d9040b 2019-03-27 stsp if (err)
1246 13d9040b 2019-03-27 stsp goto done;
1247 13d9040b 2019-03-27 stsp }
1248 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
1249 6353ad76 2019-02-08 stsp done:
1250 6353ad76 2019-02-08 stsp free(ondisk_path);
1251 8da9e5f4 2019-01-12 stsp return err;
1252 90285c3b 2019-01-08 stsp }
1253 90285c3b 2019-01-08 stsp
1254 90285c3b 2019-01-08 stsp static const struct got_error *
1255 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
1256 90285c3b 2019-01-08 stsp {
1257 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
1258 90285c3b 2019-01-08 stsp char *ondisk_path = NULL;
1259 90285c3b 2019-01-08 stsp
1260 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
1261 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1262 90285c3b 2019-01-08 stsp
1263 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
1264 c97665ae 2019-01-13 stsp if (errno != ENOENT)
1265 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", ondisk_path);
1266 c97665ae 2019-01-13 stsp } else {
1267 90285c3b 2019-01-08 stsp char *parent = dirname(ondisk_path);
1268 7a9df742 2019-01-08 stsp while (parent && strcmp(parent, root_path) != 0) {
1269 26c4ac4d 2019-01-08 stsp if (rmdir(parent) == -1) {
1270 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
1271 638f9024 2019-05-13 stsp err = got_error_from_errno2("rmdir",
1272 230a42bd 2019-05-11 jcs parent);
1273 90285c3b 2019-01-08 stsp break;
1274 90285c3b 2019-01-08 stsp }
1275 90285c3b 2019-01-08 stsp parent = dirname(parent);
1276 90285c3b 2019-01-08 stsp }
1277 90285c3b 2019-01-08 stsp }
1278 90285c3b 2019-01-08 stsp free(ondisk_path);
1279 90285c3b 2019-01-08 stsp return err;
1280 512f0d0e 2019-01-02 stsp }
1281 512f0d0e 2019-01-02 stsp
1282 708d8e67 2019-03-27 stsp static const struct got_error *
1283 708d8e67 2019-03-27 stsp delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
1284 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie, struct got_repository *repo,
1285 0584f854 2019-04-06 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1286 708d8e67 2019-03-27 stsp {
1287 fc6346c4 2019-03-27 stsp const struct got_error *err = NULL;
1288 708d8e67 2019-03-27 stsp unsigned char status;
1289 708d8e67 2019-03-27 stsp struct stat sb;
1290 708d8e67 2019-03-27 stsp char *ondisk_path;
1291 708d8e67 2019-03-27 stsp
1292 708d8e67 2019-03-27 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
1293 708d8e67 2019-03-27 stsp == -1)
1294 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1295 708d8e67 2019-03-27 stsp
1296 708d8e67 2019-03-27 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1297 708d8e67 2019-03-27 stsp if (err)
1298 708d8e67 2019-03-27 stsp return err;
1299 708d8e67 2019-03-27 stsp
1300 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
1301 fc6346c4 2019-03-27 stsp status == GOT_STATUS_ADD) {
1302 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
1303 1ee397ad 2019-07-12 stsp if (err)
1304 1ee397ad 2019-07-12 stsp return err;
1305 fc6346c4 2019-03-27 stsp /*
1306 fc6346c4 2019-03-27 stsp * Preserve the working file and change the deleted blob's
1307 fc6346c4 2019-03-27 stsp * entry into a schedule-add entry.
1308 fc6346c4 2019-03-27 stsp */
1309 fc6346c4 2019-03-27 stsp err = got_fileindex_entry_update(ie, ondisk_path, NULL, NULL,
1310 fc6346c4 2019-03-27 stsp 0);
1311 708d8e67 2019-03-27 stsp if (err)
1312 708d8e67 2019-03-27 stsp return err;
1313 fc6346c4 2019-03-27 stsp } else {
1314 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
1315 1ee397ad 2019-07-12 stsp if (err)
1316 1ee397ad 2019-07-12 stsp return err;
1317 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_NO_CHANGE) {
1318 fc6346c4 2019-03-27 stsp err = remove_ondisk_file(worktree->root_path, ie->path);
1319 fc6346c4 2019-03-27 stsp if (err)
1320 fc6346c4 2019-03-27 stsp return err;
1321 fc6346c4 2019-03-27 stsp }
1322 fc6346c4 2019-03-27 stsp got_fileindex_entry_remove(fileindex, ie);
1323 708d8e67 2019-03-27 stsp }
1324 708d8e67 2019-03-27 stsp
1325 fc6346c4 2019-03-27 stsp return err;
1326 708d8e67 2019-03-27 stsp }
1327 708d8e67 2019-03-27 stsp
1328 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
1329 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
1330 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
1331 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
1332 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
1333 8da9e5f4 2019-01-12 stsp void *progress_arg;
1334 8da9e5f4 2019-01-12 stsp got_worktree_cancel_cb cancel_cb;
1335 8da9e5f4 2019-01-12 stsp void *cancel_arg;
1336 8da9e5f4 2019-01-12 stsp };
1337 8da9e5f4 2019-01-12 stsp
1338 512f0d0e 2019-01-02 stsp static const struct got_error *
1339 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
1340 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
1341 512f0d0e 2019-01-02 stsp {
1342 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1343 0584f854 2019-04-06 stsp
1344 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1345 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1346 512f0d0e 2019-01-02 stsp
1347 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
1348 0584f854 2019-04-06 stsp ie->path, a->repo, a->progress_cb, a->progress_arg);
1349 8da9e5f4 2019-01-12 stsp }
1350 512f0d0e 2019-01-02 stsp
1351 8da9e5f4 2019-01-12 stsp static const struct got_error *
1352 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1353 8da9e5f4 2019-01-12 stsp {
1354 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1355 7a9df742 2019-01-08 stsp
1356 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1357 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1358 0584f854 2019-04-06 stsp
1359 234035bc 2019-06-01 stsp return delete_blob(a->worktree, a->fileindex, ie,
1360 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
1361 9d31a1d8 2018-03-11 stsp }
1362 9d31a1d8 2018-03-11 stsp
1363 9d31a1d8 2018-03-11 stsp static const struct got_error *
1364 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
1365 9d31a1d8 2018-03-11 stsp {
1366 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1367 8da9e5f4 2019-01-12 stsp const struct got_error *err;
1368 8da9e5f4 2019-01-12 stsp char *path;
1369 9d31a1d8 2018-03-11 stsp
1370 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1371 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1372 0584f854 2019-04-06 stsp
1373 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
1374 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
1375 8da9e5f4 2019-01-12 stsp == -1)
1376 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1377 9d31a1d8 2018-03-11 stsp
1378 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
1379 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
1380 8da9e5f4 2019-01-12 stsp else
1381 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
1382 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
1383 9d31a1d8 2018-03-11 stsp
1384 8da9e5f4 2019-01-12 stsp free(path);
1385 0cd1c46a 2019-03-11 stsp return err;
1386 0cd1c46a 2019-03-11 stsp }
1387 0cd1c46a 2019-03-11 stsp
1388 818c7501 2019-07-11 stsp static const struct got_error *
1389 818c7501 2019-07-11 stsp get_ref_name(char **refname, struct got_worktree *worktree, const char *prefix)
1390 0cd1c46a 2019-03-11 stsp {
1391 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
1392 0647c563 2019-03-11 stsp char *uuidstr = NULL;
1393 0cd1c46a 2019-03-11 stsp uint32_t uuid_status;
1394 0cd1c46a 2019-03-11 stsp
1395 517bab73 2019-03-11 stsp *refname = NULL;
1396 517bab73 2019-03-11 stsp
1397 0cd1c46a 2019-03-11 stsp uuid_to_string(&worktree->uuid, &uuidstr, &uuid_status);
1398 0cd1c46a 2019-03-11 stsp if (uuid_status != uuid_s_ok)
1399 0cd1c46a 2019-03-11 stsp return got_error_uuid(uuid_status);
1400 0cd1c46a 2019-03-11 stsp
1401 818c7501 2019-07-11 stsp if (asprintf(refname, "%s-%s", prefix, uuidstr)
1402 0647c563 2019-03-11 stsp == -1) {
1403 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1404 0647c563 2019-03-11 stsp *refname = NULL;
1405 0cd1c46a 2019-03-11 stsp }
1406 517bab73 2019-03-11 stsp free(uuidstr);
1407 517bab73 2019-03-11 stsp return err;
1408 517bab73 2019-03-11 stsp }
1409 517bab73 2019-03-11 stsp
1410 818c7501 2019-07-11 stsp const struct got_error *
1411 818c7501 2019-07-11 stsp got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
1412 818c7501 2019-07-11 stsp {
1413 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree, GOT_WORKTREE_BASE_REF_PREFIX);
1414 818c7501 2019-07-11 stsp }
1415 818c7501 2019-07-11 stsp
1416 818c7501 2019-07-11 stsp static const struct got_error *
1417 818c7501 2019-07-11 stsp get_rebase_tmp_ref_name(char **refname, struct got_worktree *worktree)
1418 818c7501 2019-07-11 stsp {
1419 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
1420 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_TMP_REF_PREFIX);
1421 818c7501 2019-07-11 stsp }
1422 818c7501 2019-07-11 stsp
1423 818c7501 2019-07-11 stsp static const struct got_error *
1424 818c7501 2019-07-11 stsp get_newbase_symref_name(char **refname, struct got_worktree *worktree)
1425 818c7501 2019-07-11 stsp {
1426 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree, GOT_WORKTREE_NEWBASE_REF_PREFIX);
1427 818c7501 2019-07-11 stsp }
1428 818c7501 2019-07-11 stsp
1429 818c7501 2019-07-11 stsp static const struct got_error *
1430 818c7501 2019-07-11 stsp get_rebase_branch_symref_name(char **refname, struct got_worktree *worktree)
1431 818c7501 2019-07-11 stsp {
1432 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
1433 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_BRANCH_REF_PREFIX);
1434 818c7501 2019-07-11 stsp }
1435 818c7501 2019-07-11 stsp
1436 818c7501 2019-07-11 stsp static const struct got_error *
1437 818c7501 2019-07-11 stsp get_rebase_commit_ref_name(char **refname, struct got_worktree *worktree)
1438 818c7501 2019-07-11 stsp {
1439 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
1440 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_COMMIT_REF_PREFIX);
1441 0ebf8283 2019-07-24 stsp }
1442 0ebf8283 2019-07-24 stsp
1443 0ebf8283 2019-07-24 stsp static const struct got_error *
1444 0ebf8283 2019-07-24 stsp get_histedit_tmp_ref_name(char **refname, struct got_worktree *worktree)
1445 0ebf8283 2019-07-24 stsp {
1446 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
1447 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_TMP_REF_PREFIX);
1448 0ebf8283 2019-07-24 stsp }
1449 0ebf8283 2019-07-24 stsp
1450 0ebf8283 2019-07-24 stsp static const struct got_error *
1451 0ebf8283 2019-07-24 stsp get_histedit_branch_symref_name(char **refname, struct got_worktree *worktree)
1452 0ebf8283 2019-07-24 stsp {
1453 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
1454 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_BRANCH_REF_PREFIX);
1455 0ebf8283 2019-07-24 stsp }
1456 0ebf8283 2019-07-24 stsp
1457 0ebf8283 2019-07-24 stsp static const struct got_error *
1458 0ebf8283 2019-07-24 stsp get_histedit_base_commit_ref_name(char **refname, struct got_worktree *worktree)
1459 0ebf8283 2019-07-24 stsp {
1460 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
1461 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_BASE_COMMIT_REF_PREFIX);
1462 818c7501 2019-07-11 stsp }
1463 818c7501 2019-07-11 stsp
1464 0ebf8283 2019-07-24 stsp static const struct got_error *
1465 0ebf8283 2019-07-24 stsp get_histedit_commit_ref_name(char **refname, struct got_worktree *worktree)
1466 0ebf8283 2019-07-24 stsp {
1467 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
1468 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_COMMIT_REF_PREFIX);
1469 0ebf8283 2019-07-24 stsp }
1470 818c7501 2019-07-11 stsp
1471 0ebf8283 2019-07-24 stsp const struct got_error *
1472 0ebf8283 2019-07-24 stsp got_worktree_get_histedit_list_path(char **path, struct got_worktree *worktree)
1473 0ebf8283 2019-07-24 stsp {
1474 0ebf8283 2019-07-24 stsp if (asprintf(path, "%s/%s/%s", worktree->root_path,
1475 0ebf8283 2019-07-24 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_HISTEDIT_LIST) == -1) {
1476 0ebf8283 2019-07-24 stsp *path = NULL;
1477 0ebf8283 2019-07-24 stsp return got_error_from_errno("asprintf");
1478 0ebf8283 2019-07-24 stsp }
1479 0ebf8283 2019-07-24 stsp return NULL;
1480 0ebf8283 2019-07-24 stsp }
1481 0ebf8283 2019-07-24 stsp
1482 517bab73 2019-03-11 stsp /*
1483 517bab73 2019-03-11 stsp * Prevent Git's garbage collector from deleting our base commit by
1484 517bab73 2019-03-11 stsp * setting a reference to our base commit's ID.
1485 517bab73 2019-03-11 stsp */
1486 517bab73 2019-03-11 stsp static const struct got_error *
1487 517bab73 2019-03-11 stsp ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
1488 517bab73 2019-03-11 stsp {
1489 517bab73 2019-03-11 stsp const struct got_error *err = NULL;
1490 517bab73 2019-03-11 stsp struct got_reference *ref = NULL;
1491 517bab73 2019-03-11 stsp char *refname;
1492 517bab73 2019-03-11 stsp
1493 517bab73 2019-03-11 stsp err = got_worktree_get_base_ref_name(&refname, worktree);
1494 517bab73 2019-03-11 stsp if (err)
1495 517bab73 2019-03-11 stsp return err;
1496 0cd1c46a 2019-03-11 stsp
1497 0cd1c46a 2019-03-11 stsp err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
1498 0cd1c46a 2019-03-11 stsp if (err)
1499 0cd1c46a 2019-03-11 stsp goto done;
1500 0cd1c46a 2019-03-11 stsp
1501 0cd1c46a 2019-03-11 stsp err = got_ref_write(ref, repo);
1502 0cd1c46a 2019-03-11 stsp done:
1503 0cd1c46a 2019-03-11 stsp free(refname);
1504 0cd1c46a 2019-03-11 stsp if (ref)
1505 0cd1c46a 2019-03-11 stsp got_ref_close(ref);
1506 3e3a69f1 2019-07-25 stsp return err;
1507 3e3a69f1 2019-07-25 stsp }
1508 3e3a69f1 2019-07-25 stsp
1509 3e3a69f1 2019-07-25 stsp static const struct got_error *
1510 3e3a69f1 2019-07-25 stsp get_fileindex_path(char **fileindex_path, struct got_worktree *worktree)
1511 3e3a69f1 2019-07-25 stsp {
1512 3e3a69f1 2019-07-25 stsp const struct got_error *err = NULL;
1513 3e3a69f1 2019-07-25 stsp
1514 3e3a69f1 2019-07-25 stsp if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
1515 3e3a69f1 2019-07-25 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1516 3e3a69f1 2019-07-25 stsp err = got_error_from_errno("asprintf");
1517 3e3a69f1 2019-07-25 stsp *fileindex_path = NULL;
1518 3e3a69f1 2019-07-25 stsp }
1519 9d31a1d8 2018-03-11 stsp return err;
1520 9d31a1d8 2018-03-11 stsp }
1521 9d31a1d8 2018-03-11 stsp
1522 3e3a69f1 2019-07-25 stsp
1523 ebf99748 2019-05-09 stsp static const struct got_error *
1524 ebf99748 2019-05-09 stsp open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
1525 ebf99748 2019-05-09 stsp struct got_worktree *worktree)
1526 ebf99748 2019-05-09 stsp {
1527 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
1528 ebf99748 2019-05-09 stsp FILE *index = NULL;
1529 0cd1c46a 2019-03-11 stsp
1530 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1531 ebf99748 2019-05-09 stsp *fileindex = got_fileindex_alloc();
1532 ebf99748 2019-05-09 stsp if (*fileindex == NULL)
1533 638f9024 2019-05-13 stsp return got_error_from_errno("got_fileindex_alloc");
1534 ebf99748 2019-05-09 stsp
1535 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(fileindex_path, worktree);
1536 3e3a69f1 2019-07-25 stsp if (err)
1537 ebf99748 2019-05-09 stsp goto done;
1538 ebf99748 2019-05-09 stsp
1539 ebf99748 2019-05-09 stsp index = fopen(*fileindex_path, "rb");
1540 ebf99748 2019-05-09 stsp if (index == NULL) {
1541 ebf99748 2019-05-09 stsp if (errno != ENOENT)
1542 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", *fileindex_path);
1543 ebf99748 2019-05-09 stsp } else {
1544 ebf99748 2019-05-09 stsp err = got_fileindex_read(*fileindex, index);
1545 ebf99748 2019-05-09 stsp if (fclose(index) != 0 && err == NULL)
1546 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1547 ebf99748 2019-05-09 stsp }
1548 ebf99748 2019-05-09 stsp done:
1549 ebf99748 2019-05-09 stsp if (err) {
1550 ebf99748 2019-05-09 stsp free(*fileindex_path);
1551 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1552 950a4a90 2019-07-10 stsp got_fileindex_free(*fileindex);
1553 ebf99748 2019-05-09 stsp *fileindex = NULL;
1554 ebf99748 2019-05-09 stsp }
1555 ebf99748 2019-05-09 stsp return err;
1556 ebf99748 2019-05-09 stsp }
1557 c932eeeb 2019-05-22 stsp
1558 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg {
1559 c932eeeb 2019-05-22 stsp struct got_object_id *base_commit_id;
1560 c932eeeb 2019-05-22 stsp const char *path;
1561 c932eeeb 2019-05-22 stsp size_t path_len;
1562 c932eeeb 2019-05-22 stsp const char *entry_name;
1563 a484d721 2019-06-10 stsp got_worktree_checkout_cb progress_cb;
1564 a484d721 2019-06-10 stsp void *progress_arg;
1565 c932eeeb 2019-05-22 stsp };
1566 ebf99748 2019-05-09 stsp
1567 c932eeeb 2019-05-22 stsp /* Bump base commit ID of all files within an updated part of the work tree. */
1568 c932eeeb 2019-05-22 stsp static const struct got_error *
1569 c932eeeb 2019-05-22 stsp bump_base_commit_id(void *arg, struct got_fileindex_entry *ie)
1570 c932eeeb 2019-05-22 stsp {
1571 1ee397ad 2019-07-12 stsp const struct got_error *err;
1572 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg *a = arg;
1573 c932eeeb 2019-05-22 stsp
1574 c932eeeb 2019-05-22 stsp if (a->entry_name) {
1575 c932eeeb 2019-05-22 stsp if (strcmp(ie->path, a->path) != 0)
1576 c932eeeb 2019-05-22 stsp return NULL;
1577 c932eeeb 2019-05-22 stsp } else if (!got_path_is_child(ie->path, a->path, a->path_len))
1578 102ff934 2019-06-11 stsp return NULL;
1579 102ff934 2019-06-11 stsp
1580 102ff934 2019-06-11 stsp if (memcmp(ie->commit_sha1, a->base_commit_id->sha1,
1581 102ff934 2019-06-11 stsp SHA1_DIGEST_LENGTH) == 0)
1582 c932eeeb 2019-05-22 stsp return NULL;
1583 c932eeeb 2019-05-22 stsp
1584 1ee397ad 2019-07-12 stsp if (a->progress_cb) {
1585 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_BUMP_BASE,
1586 edd02c5e 2019-07-11 stsp ie->path);
1587 1ee397ad 2019-07-12 stsp if (err)
1588 1ee397ad 2019-07-12 stsp return err;
1589 1ee397ad 2019-07-12 stsp }
1590 c932eeeb 2019-05-22 stsp memcpy(ie->commit_sha1, a->base_commit_id->sha1, SHA1_DIGEST_LENGTH);
1591 c932eeeb 2019-05-22 stsp return NULL;
1592 9c6338c4 2019-06-02 stsp }
1593 9c6338c4 2019-06-02 stsp
1594 9c6338c4 2019-06-02 stsp static const struct got_error *
1595 9c6338c4 2019-06-02 stsp sync_fileindex(struct got_fileindex *fileindex, const char *fileindex_path)
1596 9c6338c4 2019-06-02 stsp {
1597 9c6338c4 2019-06-02 stsp const struct got_error *err = NULL;
1598 9c6338c4 2019-06-02 stsp char *new_fileindex_path = NULL;
1599 9c6338c4 2019-06-02 stsp FILE *new_index = NULL;
1600 9c6338c4 2019-06-02 stsp
1601 9c6338c4 2019-06-02 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
1602 9c6338c4 2019-06-02 stsp fileindex_path);
1603 9c6338c4 2019-06-02 stsp if (err)
1604 9c6338c4 2019-06-02 stsp goto done;
1605 9c6338c4 2019-06-02 stsp
1606 9c6338c4 2019-06-02 stsp err = got_fileindex_write(fileindex, new_index);
1607 9c6338c4 2019-06-02 stsp if (err)
1608 9c6338c4 2019-06-02 stsp goto done;
1609 9c6338c4 2019-06-02 stsp
1610 9c6338c4 2019-06-02 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
1611 9c6338c4 2019-06-02 stsp err = got_error_from_errno3("rename", new_fileindex_path,
1612 9c6338c4 2019-06-02 stsp fileindex_path);
1613 9c6338c4 2019-06-02 stsp unlink(new_fileindex_path);
1614 9c6338c4 2019-06-02 stsp }
1615 9c6338c4 2019-06-02 stsp done:
1616 9c6338c4 2019-06-02 stsp if (new_index)
1617 9c6338c4 2019-06-02 stsp fclose(new_index);
1618 9c6338c4 2019-06-02 stsp free(new_fileindex_path);
1619 9c6338c4 2019-06-02 stsp return err;
1620 c932eeeb 2019-05-22 stsp }
1621 6ced4176 2019-07-12 stsp
1622 6ced4176 2019-07-12 stsp static const struct got_error *
1623 6ced4176 2019-07-12 stsp find_tree_entry_for_checkout(int *entry_type, char **tree_relpath,
1624 6ced4176 2019-07-12 stsp struct got_object_id **tree_id, const char *wt_relpath,
1625 6ced4176 2019-07-12 stsp struct got_worktree *worktree, struct got_repository *repo)
1626 6ced4176 2019-07-12 stsp {
1627 6ced4176 2019-07-12 stsp const struct got_error *err = NULL;
1628 6ced4176 2019-07-12 stsp struct got_object_id *id = NULL;
1629 6ced4176 2019-07-12 stsp char *in_repo_path = NULL;
1630 6ced4176 2019-07-12 stsp int is_root_wt = got_path_is_root_dir(worktree->path_prefix);
1631 6ced4176 2019-07-12 stsp
1632 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_ANY;
1633 6ced4176 2019-07-12 stsp *tree_relpath = NULL;
1634 6ced4176 2019-07-12 stsp *tree_id = NULL;
1635 6ced4176 2019-07-12 stsp
1636 6ced4176 2019-07-12 stsp if (wt_relpath[0] == '\0') {
1637 6ced4176 2019-07-12 stsp /* Check out all files within the work tree. */
1638 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_TREE;
1639 6ced4176 2019-07-12 stsp *tree_relpath = strdup("");
1640 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
1641 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
1642 6ced4176 2019-07-12 stsp goto done;
1643 6ced4176 2019-07-12 stsp }
1644 6ced4176 2019-07-12 stsp err = got_object_id_by_path(tree_id, repo,
1645 6ced4176 2019-07-12 stsp worktree->base_commit_id, worktree->path_prefix);
1646 6ced4176 2019-07-12 stsp if (err)
1647 6ced4176 2019-07-12 stsp goto done;
1648 6ced4176 2019-07-12 stsp return NULL;
1649 6ced4176 2019-07-12 stsp }
1650 6ced4176 2019-07-12 stsp
1651 6ced4176 2019-07-12 stsp /* Check out a subset of files in the work tree. */
1652 6ced4176 2019-07-12 stsp
1653 6ced4176 2019-07-12 stsp if (asprintf(&in_repo_path, "%s%s%s", worktree->path_prefix,
1654 6ced4176 2019-07-12 stsp is_root_wt ? "" : "/", wt_relpath) == -1) {
1655 6ced4176 2019-07-12 stsp err = got_error_from_errno("asprintf");
1656 6ced4176 2019-07-12 stsp goto done;
1657 6ced4176 2019-07-12 stsp }
1658 6ced4176 2019-07-12 stsp
1659 6ced4176 2019-07-12 stsp err = got_object_id_by_path(&id, repo, worktree->base_commit_id,
1660 6ced4176 2019-07-12 stsp in_repo_path);
1661 6ced4176 2019-07-12 stsp if (err)
1662 6ced4176 2019-07-12 stsp goto done;
1663 6ced4176 2019-07-12 stsp
1664 6ced4176 2019-07-12 stsp free(in_repo_path);
1665 6ced4176 2019-07-12 stsp in_repo_path = NULL;
1666 6ced4176 2019-07-12 stsp
1667 6ced4176 2019-07-12 stsp err = got_object_get_type(entry_type, repo, id);
1668 6ced4176 2019-07-12 stsp if (err)
1669 6ced4176 2019-07-12 stsp goto done;
1670 c932eeeb 2019-05-22 stsp
1671 6ced4176 2019-07-12 stsp if (*entry_type == GOT_OBJ_TYPE_BLOB) {
1672 6ced4176 2019-07-12 stsp /* Check out a single file. */
1673 6ced4176 2019-07-12 stsp if (strchr(wt_relpath, '/') == NULL) {
1674 6ced4176 2019-07-12 stsp /* Check out a single file in work tree's root dir. */
1675 6ced4176 2019-07-12 stsp in_repo_path = strdup(worktree->path_prefix);
1676 6ced4176 2019-07-12 stsp if (in_repo_path == NULL) {
1677 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
1678 6ced4176 2019-07-12 stsp goto done;
1679 6ced4176 2019-07-12 stsp }
1680 6ced4176 2019-07-12 stsp *tree_relpath = strdup("");
1681 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
1682 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
1683 6ced4176 2019-07-12 stsp goto done;
1684 6ced4176 2019-07-12 stsp }
1685 6ced4176 2019-07-12 stsp } else {
1686 6ced4176 2019-07-12 stsp /* Check out a single file in a subdirectory. */
1687 6ced4176 2019-07-12 stsp err = got_path_dirname(tree_relpath, wt_relpath);
1688 6ced4176 2019-07-12 stsp if (err)
1689 6ced4176 2019-07-12 stsp return err;
1690 6ced4176 2019-07-12 stsp if (asprintf(&in_repo_path, "%s%s%s",
1691 6ced4176 2019-07-12 stsp worktree->path_prefix, is_root_wt ? "" : "/",
1692 6ced4176 2019-07-12 stsp *tree_relpath) == -1) {
1693 6ced4176 2019-07-12 stsp err = got_error_from_errno("asprintf");
1694 6ced4176 2019-07-12 stsp goto done;
1695 6ced4176 2019-07-12 stsp }
1696 6ced4176 2019-07-12 stsp }
1697 6ced4176 2019-07-12 stsp err = got_object_id_by_path(tree_id, repo,
1698 6ced4176 2019-07-12 stsp worktree->base_commit_id, in_repo_path);
1699 6ced4176 2019-07-12 stsp } else {
1700 6ced4176 2019-07-12 stsp /* Check out all files within a subdirectory. */
1701 6ced4176 2019-07-12 stsp *tree_id = got_object_id_dup(id);
1702 6ced4176 2019-07-12 stsp if (*tree_id == NULL) {
1703 6ced4176 2019-07-12 stsp err = got_error_from_errno("got_object_id_dup");
1704 6ced4176 2019-07-12 stsp goto done;
1705 6ced4176 2019-07-12 stsp }
1706 6ced4176 2019-07-12 stsp *tree_relpath = strdup(wt_relpath);
1707 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
1708 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
1709 6ced4176 2019-07-12 stsp goto done;
1710 6ced4176 2019-07-12 stsp }
1711 6ced4176 2019-07-12 stsp }
1712 6ced4176 2019-07-12 stsp done:
1713 6ced4176 2019-07-12 stsp free(id);
1714 6ced4176 2019-07-12 stsp free(in_repo_path);
1715 6ced4176 2019-07-12 stsp if (err) {
1716 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_ANY;
1717 6ced4176 2019-07-12 stsp free(*tree_relpath);
1718 6ced4176 2019-07-12 stsp *tree_relpath = NULL;
1719 6ced4176 2019-07-12 stsp free(*tree_id);
1720 6ced4176 2019-07-12 stsp *tree_id = NULL;
1721 6ced4176 2019-07-12 stsp }
1722 07ed472d 2019-07-12 stsp return err;
1723 07ed472d 2019-07-12 stsp }
1724 07ed472d 2019-07-12 stsp
1725 07ed472d 2019-07-12 stsp static const struct got_error *
1726 07ed472d 2019-07-12 stsp checkout_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
1727 07ed472d 2019-07-12 stsp const char *relpath, struct got_object_id *tree_id, const char *entry_name,
1728 07ed472d 2019-07-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1729 07ed472d 2019-07-12 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1730 07ed472d 2019-07-12 stsp {
1731 07ed472d 2019-07-12 stsp const struct got_error *err = NULL;
1732 07ed472d 2019-07-12 stsp struct got_commit_object *commit = NULL;
1733 07ed472d 2019-07-12 stsp struct got_tree_object *tree = NULL;
1734 07ed472d 2019-07-12 stsp struct got_fileindex_diff_tree_cb diff_cb;
1735 07ed472d 2019-07-12 stsp struct diff_cb_arg arg;
1736 07ed472d 2019-07-12 stsp
1737 07ed472d 2019-07-12 stsp err = ref_base_commit(worktree, repo);
1738 07ed472d 2019-07-12 stsp if (err)
1739 07ed472d 2019-07-12 stsp goto done;
1740 07ed472d 2019-07-12 stsp
1741 07ed472d 2019-07-12 stsp err = got_object_open_as_commit(&commit, repo,
1742 07ed472d 2019-07-12 stsp worktree->base_commit_id);
1743 07ed472d 2019-07-12 stsp if (err)
1744 07ed472d 2019-07-12 stsp goto done;
1745 07ed472d 2019-07-12 stsp
1746 07ed472d 2019-07-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1747 07ed472d 2019-07-12 stsp if (err)
1748 07ed472d 2019-07-12 stsp goto done;
1749 07ed472d 2019-07-12 stsp
1750 07ed472d 2019-07-12 stsp if (entry_name &&
1751 07ed472d 2019-07-12 stsp got_object_tree_find_entry(tree, entry_name) == NULL) {
1752 07ed472d 2019-07-12 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1753 07ed472d 2019-07-12 stsp goto done;
1754 07ed472d 2019-07-12 stsp }
1755 07ed472d 2019-07-12 stsp
1756 07ed472d 2019-07-12 stsp diff_cb.diff_old_new = diff_old_new;
1757 07ed472d 2019-07-12 stsp diff_cb.diff_old = diff_old;
1758 07ed472d 2019-07-12 stsp diff_cb.diff_new = diff_new;
1759 07ed472d 2019-07-12 stsp arg.fileindex = fileindex;
1760 07ed472d 2019-07-12 stsp arg.worktree = worktree;
1761 07ed472d 2019-07-12 stsp arg.repo = repo;
1762 07ed472d 2019-07-12 stsp arg.progress_cb = progress_cb;
1763 07ed472d 2019-07-12 stsp arg.progress_arg = progress_arg;
1764 07ed472d 2019-07-12 stsp arg.cancel_cb = cancel_cb;
1765 07ed472d 2019-07-12 stsp arg.cancel_arg = cancel_arg;
1766 07ed472d 2019-07-12 stsp err = got_fileindex_diff_tree(fileindex, tree, relpath,
1767 07ed472d 2019-07-12 stsp entry_name, repo, &diff_cb, &arg);
1768 07ed472d 2019-07-12 stsp done:
1769 07ed472d 2019-07-12 stsp if (tree)
1770 07ed472d 2019-07-12 stsp got_object_tree_close(tree);
1771 07ed472d 2019-07-12 stsp if (commit)
1772 07ed472d 2019-07-12 stsp got_object_commit_close(commit);
1773 6ced4176 2019-07-12 stsp return err;
1774 6ced4176 2019-07-12 stsp }
1775 6ced4176 2019-07-12 stsp
1776 9d31a1d8 2018-03-11 stsp const struct got_error *
1777 c4cdcb68 2019-04-03 stsp got_worktree_checkout_files(struct got_worktree *worktree, const char *path,
1778 93a30277 2018-12-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1779 93a30277 2018-12-24 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1780 9d31a1d8 2018-03-11 stsp {
1781 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
1782 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
1783 8da9e5f4 2019-01-12 stsp struct got_object_id *tree_id = NULL;
1784 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
1785 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
1786 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
1787 c4cdcb68 2019-04-03 stsp char *relpath = NULL, *entry_name = NULL;
1788 6ced4176 2019-07-12 stsp int entry_type;
1789 9d31a1d8 2018-03-11 stsp
1790 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
1791 9d31a1d8 2018-03-11 stsp if (err)
1792 9d31a1d8 2018-03-11 stsp return err;
1793 93a30277 2018-12-24 stsp
1794 6ced4176 2019-07-12 stsp err = find_tree_entry_for_checkout(&entry_type, &relpath, &tree_id,
1795 6ced4176 2019-07-12 stsp path, worktree, repo);
1796 6ced4176 2019-07-12 stsp if (err)
1797 6ced4176 2019-07-12 stsp goto done;
1798 6ced4176 2019-07-12 stsp
1799 6ced4176 2019-07-12 stsp if (entry_type == GOT_OBJ_TYPE_BLOB) {
1800 6ced4176 2019-07-12 stsp entry_name = basename(path);
1801 6ced4176 2019-07-12 stsp if (entry_name == NULL) {
1802 6ced4176 2019-07-12 stsp err = got_error_from_errno2("basename", path);
1803 6ced4176 2019-07-12 stsp goto done;
1804 6ced4176 2019-07-12 stsp }
1805 6ced4176 2019-07-12 stsp }
1806 6ced4176 2019-07-12 stsp
1807 51514078 2018-12-25 stsp /*
1808 51514078 2018-12-25 stsp * Read the file index.
1809 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
1810 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
1811 51514078 2018-12-25 stsp */
1812 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
1813 8da9e5f4 2019-01-12 stsp if (err)
1814 c4cdcb68 2019-04-03 stsp goto done;
1815 c4cdcb68 2019-04-03 stsp
1816 07ed472d 2019-07-12 stsp err = checkout_files(worktree, fileindex, relpath, tree_id, entry_name,
1817 07ed472d 2019-07-12 stsp repo, progress_cb, progress_arg, cancel_cb, cancel_arg);
1818 711d9cd9 2019-07-12 stsp if (err == NULL) {
1819 711d9cd9 2019-07-12 stsp struct bump_base_commit_id_arg bbc_arg;
1820 711d9cd9 2019-07-12 stsp bbc_arg.base_commit_id = worktree->base_commit_id;
1821 711d9cd9 2019-07-12 stsp bbc_arg.entry_name = entry_name;
1822 711d9cd9 2019-07-12 stsp bbc_arg.path = path;
1823 711d9cd9 2019-07-12 stsp bbc_arg.path_len = strlen(path);
1824 711d9cd9 2019-07-12 stsp bbc_arg.progress_cb = progress_cb;
1825 711d9cd9 2019-07-12 stsp bbc_arg.progress_arg = progress_arg;
1826 711d9cd9 2019-07-12 stsp err = got_fileindex_for_each_entry_safe(fileindex,
1827 711d9cd9 2019-07-12 stsp bump_base_commit_id, &bbc_arg);
1828 711d9cd9 2019-07-12 stsp }
1829 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
1830 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
1831 af12c6b9 2019-06-04 stsp err = sync_err;
1832 9d31a1d8 2018-03-11 stsp done:
1833 9c6338c4 2019-06-02 stsp free(fileindex_path);
1834 c4cdcb68 2019-04-03 stsp free(relpath);
1835 edfa7d7f 2018-09-11 stsp if (tree)
1836 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
1837 9d31a1d8 2018-03-11 stsp if (commit)
1838 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
1839 5ade8233 2019-07-12 stsp if (fileindex)
1840 5ade8233 2019-07-12 stsp got_fileindex_free(fileindex);
1841 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1842 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
1843 9d31a1d8 2018-03-11 stsp err = unlockerr;
1844 f8d1f275 2019-02-04 stsp return err;
1845 f8d1f275 2019-02-04 stsp }
1846 f8d1f275 2019-02-04 stsp
1847 234035bc 2019-06-01 stsp struct merge_file_cb_arg {
1848 234035bc 2019-06-01 stsp struct got_worktree *worktree;
1849 234035bc 2019-06-01 stsp struct got_fileindex *fileindex;
1850 234035bc 2019-06-01 stsp got_worktree_checkout_cb progress_cb;
1851 234035bc 2019-06-01 stsp void *progress_arg;
1852 234035bc 2019-06-01 stsp got_worktree_cancel_cb cancel_cb;
1853 234035bc 2019-06-01 stsp void *cancel_arg;
1854 818c7501 2019-07-11 stsp struct got_object_id *commit_id2;
1855 234035bc 2019-06-01 stsp };
1856 234035bc 2019-06-01 stsp
1857 234035bc 2019-06-01 stsp static const struct got_error *
1858 234035bc 2019-06-01 stsp merge_file_cb(void *arg, struct got_blob_object *blob1,
1859 234035bc 2019-06-01 stsp struct got_blob_object *blob2, struct got_object_id *id1,
1860 234035bc 2019-06-01 stsp struct got_object_id *id2, const char *path1, const char *path2,
1861 234035bc 2019-06-01 stsp struct got_repository *repo)
1862 234035bc 2019-06-01 stsp {
1863 234035bc 2019-06-01 stsp static const struct got_error *err = NULL;
1864 234035bc 2019-06-01 stsp struct merge_file_cb_arg *a = arg;
1865 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie;
1866 234035bc 2019-06-01 stsp char *ondisk_path = NULL;
1867 234035bc 2019-06-01 stsp struct stat sb;
1868 234035bc 2019-06-01 stsp unsigned char status;
1869 234035bc 2019-06-01 stsp int local_changes_subsumed;
1870 234035bc 2019-06-01 stsp
1871 234035bc 2019-06-01 stsp if (blob1 && blob2) {
1872 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path2);
1873 1ee397ad 2019-07-12 stsp if (ie == NULL)
1874 1ee397ad 2019-07-12 stsp return (*a->progress_cb)(a->progress_arg,
1875 1ee397ad 2019-07-12 stsp GOT_STATUS_MISSING, path2);
1876 234035bc 2019-06-01 stsp
1877 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1878 234035bc 2019-06-01 stsp path2) == -1)
1879 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1880 234035bc 2019-06-01 stsp
1881 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1882 234035bc 2019-06-01 stsp if (err)
1883 234035bc 2019-06-01 stsp goto done;
1884 234035bc 2019-06-01 stsp
1885 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
1886 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
1887 1ee397ad 2019-07-12 stsp GOT_STATUS_MERGE, path2);
1888 234035bc 2019-06-01 stsp goto done;
1889 234035bc 2019-06-01 stsp }
1890 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
1891 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
1892 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
1893 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
1894 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path2);
1895 234035bc 2019-06-01 stsp goto done;
1896 234035bc 2019-06-01 stsp }
1897 234035bc 2019-06-01 stsp
1898 234035bc 2019-06-01 stsp err = merge_blob(&local_changes_subsumed, a->worktree, blob1,
1899 818c7501 2019-07-11 stsp ondisk_path, path2, sb.st_mode, blob2, a->commit_id2, repo,
1900 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1901 234035bc 2019-06-01 stsp } else if (blob1) {
1902 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path1);
1903 1ee397ad 2019-07-12 stsp if (ie == NULL)
1904 1ee397ad 2019-07-12 stsp return (*a->progress_cb)(a->progress_arg,
1905 1ee397ad 2019-07-12 stsp GOT_STATUS_MISSING, path2);
1906 2b92fad7 2019-06-02 stsp
1907 2b92fad7 2019-06-02 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1908 2b92fad7 2019-06-02 stsp path1) == -1)
1909 2b92fad7 2019-06-02 stsp return got_error_from_errno("asprintf");
1910 2b92fad7 2019-06-02 stsp
1911 2b92fad7 2019-06-02 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1912 2b92fad7 2019-06-02 stsp if (err)
1913 2b92fad7 2019-06-02 stsp goto done;
1914 2b92fad7 2019-06-02 stsp
1915 2b92fad7 2019-06-02 stsp switch (status) {
1916 2b92fad7 2019-06-02 stsp case GOT_STATUS_NO_CHANGE:
1917 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
1918 1ee397ad 2019-07-12 stsp GOT_STATUS_DELETE, path1);
1919 1ee397ad 2019-07-12 stsp if (err)
1920 1ee397ad 2019-07-12 stsp goto done;
1921 2b92fad7 2019-06-02 stsp err = remove_ondisk_file(a->worktree->root_path, path1);
1922 2b92fad7 2019-06-02 stsp if (err)
1923 2b92fad7 2019-06-02 stsp goto done;
1924 2b92fad7 2019-06-02 stsp if (ie)
1925 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
1926 2b92fad7 2019-06-02 stsp break;
1927 2b92fad7 2019-06-02 stsp case GOT_STATUS_DELETE:
1928 2b92fad7 2019-06-02 stsp case GOT_STATUS_MISSING:
1929 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
1930 1ee397ad 2019-07-12 stsp GOT_STATUS_DELETE, path1);
1931 1ee397ad 2019-07-12 stsp if (err)
1932 1ee397ad 2019-07-12 stsp goto done;
1933 2b92fad7 2019-06-02 stsp if (ie)
1934 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
1935 2b92fad7 2019-06-02 stsp break;
1936 2b92fad7 2019-06-02 stsp case GOT_STATUS_ADD:
1937 2b92fad7 2019-06-02 stsp case GOT_STATUS_MODIFY:
1938 2b92fad7 2019-06-02 stsp case GOT_STATUS_CONFLICT:
1939 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
1940 2b92fad7 2019-06-02 stsp GOT_STATUS_CANNOT_DELETE, path1);
1941 1ee397ad 2019-07-12 stsp if (err)
1942 1ee397ad 2019-07-12 stsp goto done;
1943 2b92fad7 2019-06-02 stsp break;
1944 2b92fad7 2019-06-02 stsp case GOT_STATUS_OBSTRUCTED:
1945 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path1);
1946 1ee397ad 2019-07-12 stsp if (err)
1947 1ee397ad 2019-07-12 stsp goto done;
1948 2b92fad7 2019-06-02 stsp break;
1949 2b92fad7 2019-06-02 stsp default:
1950 2b92fad7 2019-06-02 stsp break;
1951 2b92fad7 2019-06-02 stsp }
1952 234035bc 2019-06-01 stsp } else if (blob2) {
1953 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1954 234035bc 2019-06-01 stsp path2) == -1)
1955 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1956 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path2);
1957 234035bc 2019-06-01 stsp if (ie) {
1958 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path,
1959 234035bc 2019-06-01 stsp repo);
1960 234035bc 2019-06-01 stsp if (err)
1961 234035bc 2019-06-01 stsp goto done;
1962 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
1963 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
1964 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
1965 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
1966 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
1967 1ee397ad 2019-07-12 stsp status, path2);
1968 234035bc 2019-06-01 stsp goto done;
1969 234035bc 2019-06-01 stsp }
1970 234035bc 2019-06-01 stsp err = merge_blob(&local_changes_subsumed, a->worktree,
1971 818c7501 2019-07-11 stsp NULL, ondisk_path, path2, sb.st_mode, blob2,
1972 818c7501 2019-07-11 stsp a->commit_id2, repo,
1973 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1974 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
1975 234035bc 2019-06-01 stsp err = update_blob_fileindex_entry(a->worktree,
1976 234035bc 2019-06-01 stsp a->fileindex, ie, ondisk_path, ie->path,
1977 234035bc 2019-06-01 stsp blob2, 0);
1978 234035bc 2019-06-01 stsp if (err)
1979 234035bc 2019-06-01 stsp goto done;
1980 234035bc 2019-06-01 stsp }
1981 234035bc 2019-06-01 stsp } else {
1982 234035bc 2019-06-01 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
1983 234035bc 2019-06-01 stsp err = install_blob(a->worktree, ondisk_path, path2,
1984 234035bc 2019-06-01 stsp /* XXX get this from parent tree! */
1985 234035bc 2019-06-01 stsp GOT_DEFAULT_FILE_MODE,
1986 234035bc 2019-06-01 stsp sb.st_mode, blob2, 0, 0, repo,
1987 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1988 234035bc 2019-06-01 stsp if (err)
1989 234035bc 2019-06-01 stsp goto done;
1990 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_alloc(&ie,
1991 2b92fad7 2019-06-02 stsp ondisk_path, path2, NULL, NULL);
1992 234035bc 2019-06-01 stsp if (err)
1993 234035bc 2019-06-01 stsp goto done;
1994 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_add(a->fileindex, ie);
1995 2b92fad7 2019-06-02 stsp if (err) {
1996 2b92fad7 2019-06-02 stsp got_fileindex_entry_free(ie);
1997 2b92fad7 2019-06-02 stsp goto done;
1998 2b92fad7 2019-06-02 stsp }
1999 234035bc 2019-06-01 stsp }
2000 234035bc 2019-06-01 stsp }
2001 234035bc 2019-06-01 stsp done:
2002 234035bc 2019-06-01 stsp free(ondisk_path);
2003 234035bc 2019-06-01 stsp return err;
2004 234035bc 2019-06-01 stsp }
2005 234035bc 2019-06-01 stsp
2006 234035bc 2019-06-01 stsp struct check_merge_ok_arg {
2007 234035bc 2019-06-01 stsp struct got_worktree *worktree;
2008 234035bc 2019-06-01 stsp struct got_repository *repo;
2009 234035bc 2019-06-01 stsp };
2010 234035bc 2019-06-01 stsp
2011 234035bc 2019-06-01 stsp static const struct got_error *
2012 234035bc 2019-06-01 stsp check_merge_ok(void *arg, struct got_fileindex_entry *ie)
2013 234035bc 2019-06-01 stsp {
2014 234035bc 2019-06-01 stsp const struct got_error *err = NULL;
2015 234035bc 2019-06-01 stsp struct check_merge_ok_arg *a = arg;
2016 234035bc 2019-06-01 stsp unsigned char status;
2017 234035bc 2019-06-01 stsp struct stat sb;
2018 234035bc 2019-06-01 stsp char *ondisk_path;
2019 234035bc 2019-06-01 stsp
2020 234035bc 2019-06-01 stsp /* Reject merges into a work tree with mixed base commits. */
2021 234035bc 2019-06-01 stsp if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
2022 234035bc 2019-06-01 stsp SHA1_DIGEST_LENGTH))
2023 234035bc 2019-06-01 stsp return got_error(GOT_ERR_MIXED_COMMITS);
2024 234035bc 2019-06-01 stsp
2025 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
2026 234035bc 2019-06-01 stsp == -1)
2027 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
2028 234035bc 2019-06-01 stsp
2029 234035bc 2019-06-01 stsp /* Reject merges into a work tree with conflicted files. */
2030 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path, a->repo);
2031 234035bc 2019-06-01 stsp if (err)
2032 234035bc 2019-06-01 stsp return err;
2033 234035bc 2019-06-01 stsp if (status == GOT_STATUS_CONFLICT)
2034 234035bc 2019-06-01 stsp return got_error(GOT_ERR_CONFLICTS);
2035 234035bc 2019-06-01 stsp
2036 234035bc 2019-06-01 stsp return NULL;
2037 234035bc 2019-06-01 stsp }
2038 234035bc 2019-06-01 stsp
2039 818c7501 2019-07-11 stsp static const struct got_error *
2040 818c7501 2019-07-11 stsp merge_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
2041 818c7501 2019-07-11 stsp const char *fileindex_path, struct got_object_id *commit_id1,
2042 818c7501 2019-07-11 stsp struct got_object_id *commit_id2, struct got_repository *repo,
2043 818c7501 2019-07-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2044 818c7501 2019-07-11 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
2045 234035bc 2019-06-01 stsp {
2046 818c7501 2019-07-11 stsp const struct got_error *err = NULL, *sync_err;
2047 234035bc 2019-06-01 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
2048 234035bc 2019-06-01 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
2049 234035bc 2019-06-01 stsp struct merge_file_cb_arg arg;
2050 234035bc 2019-06-01 stsp
2051 03415a1a 2019-06-02 stsp if (commit_id1) {
2052 03415a1a 2019-06-02 stsp err = got_object_id_by_path(&tree_id1, repo, commit_id1,
2053 03415a1a 2019-06-02 stsp worktree->path_prefix);
2054 03415a1a 2019-06-02 stsp if (err)
2055 03415a1a 2019-06-02 stsp goto done;
2056 03415a1a 2019-06-02 stsp
2057 03415a1a 2019-06-02 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
2058 03415a1a 2019-06-02 stsp if (err)
2059 03415a1a 2019-06-02 stsp goto done;
2060 03415a1a 2019-06-02 stsp }
2061 234035bc 2019-06-01 stsp
2062 234035bc 2019-06-01 stsp err = got_object_id_by_path(&tree_id2, repo, commit_id2,
2063 234035bc 2019-06-01 stsp worktree->path_prefix);
2064 234035bc 2019-06-01 stsp if (err)
2065 234035bc 2019-06-01 stsp goto done;
2066 234035bc 2019-06-01 stsp
2067 234035bc 2019-06-01 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
2068 234035bc 2019-06-01 stsp if (err)
2069 234035bc 2019-06-01 stsp goto done;
2070 234035bc 2019-06-01 stsp
2071 234035bc 2019-06-01 stsp arg.worktree = worktree;
2072 234035bc 2019-06-01 stsp arg.fileindex = fileindex;
2073 234035bc 2019-06-01 stsp arg.progress_cb = progress_cb;
2074 234035bc 2019-06-01 stsp arg.progress_arg = progress_arg;
2075 234035bc 2019-06-01 stsp arg.cancel_cb = cancel_cb;
2076 234035bc 2019-06-01 stsp arg.cancel_arg = cancel_arg;
2077 818c7501 2019-07-11 stsp arg.commit_id2 = commit_id2;
2078 234035bc 2019-06-01 stsp err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg);
2079 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
2080 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
2081 af12c6b9 2019-06-04 stsp err = sync_err;
2082 234035bc 2019-06-01 stsp done:
2083 234035bc 2019-06-01 stsp if (tree1)
2084 234035bc 2019-06-01 stsp got_object_tree_close(tree1);
2085 234035bc 2019-06-01 stsp if (tree2)
2086 234035bc 2019-06-01 stsp got_object_tree_close(tree2);
2087 818c7501 2019-07-11 stsp return err;
2088 818c7501 2019-07-11 stsp }
2089 234035bc 2019-06-01 stsp
2090 818c7501 2019-07-11 stsp const struct got_error *
2091 818c7501 2019-07-11 stsp got_worktree_merge_files(struct got_worktree *worktree,
2092 818c7501 2019-07-11 stsp struct got_object_id *commit_id1, struct got_object_id *commit_id2,
2093 818c7501 2019-07-11 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
2094 818c7501 2019-07-11 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
2095 818c7501 2019-07-11 stsp {
2096 818c7501 2019-07-11 stsp const struct got_error *err, *unlockerr;
2097 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
2098 818c7501 2019-07-11 stsp struct got_fileindex *fileindex = NULL;
2099 818c7501 2019-07-11 stsp struct check_merge_ok_arg mok_arg;
2100 818c7501 2019-07-11 stsp
2101 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
2102 818c7501 2019-07-11 stsp if (err)
2103 818c7501 2019-07-11 stsp return err;
2104 818c7501 2019-07-11 stsp
2105 818c7501 2019-07-11 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2106 818c7501 2019-07-11 stsp if (err)
2107 818c7501 2019-07-11 stsp goto done;
2108 818c7501 2019-07-11 stsp
2109 818c7501 2019-07-11 stsp mok_arg.worktree = worktree;
2110 818c7501 2019-07-11 stsp mok_arg.repo = repo;
2111 818c7501 2019-07-11 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_merge_ok,
2112 818c7501 2019-07-11 stsp &mok_arg);
2113 818c7501 2019-07-11 stsp if (err)
2114 818c7501 2019-07-11 stsp goto done;
2115 818c7501 2019-07-11 stsp
2116 818c7501 2019-07-11 stsp err = merge_files(worktree, fileindex, fileindex_path, commit_id1,
2117 818c7501 2019-07-11 stsp commit_id2, repo, progress_cb, progress_arg, cancel_cb, cancel_arg);
2118 818c7501 2019-07-11 stsp done:
2119 818c7501 2019-07-11 stsp if (fileindex)
2120 818c7501 2019-07-11 stsp got_fileindex_free(fileindex);
2121 818c7501 2019-07-11 stsp free(fileindex_path);
2122 234035bc 2019-06-01 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2123 234035bc 2019-06-01 stsp if (unlockerr && err == NULL)
2124 234035bc 2019-06-01 stsp err = unlockerr;
2125 234035bc 2019-06-01 stsp return err;
2126 234035bc 2019-06-01 stsp }
2127 234035bc 2019-06-01 stsp
2128 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
2129 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
2130 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
2131 927df6b7 2019-02-10 stsp const char *status_path;
2132 927df6b7 2019-02-10 stsp size_t status_path_len;
2133 f8d1f275 2019-02-04 stsp struct got_repository *repo;
2134 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
2135 f8d1f275 2019-02-04 stsp void *status_arg;
2136 f8d1f275 2019-02-04 stsp got_worktree_cancel_cb cancel_cb;
2137 f8d1f275 2019-02-04 stsp void *cancel_arg;
2138 f8d1f275 2019-02-04 stsp };
2139 f8d1f275 2019-02-04 stsp
2140 f8d1f275 2019-02-04 stsp static const struct got_error *
2141 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
2142 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
2143 927df6b7 2019-02-10 stsp struct got_repository *repo)
2144 927df6b7 2019-02-10 stsp {
2145 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
2146 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
2147 927df6b7 2019-02-10 stsp struct stat sb;
2148 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
2149 927df6b7 2019-02-10 stsp
2150 927df6b7 2019-02-10 stsp err = get_file_status(&status, &sb, ie, abspath, repo);
2151 927df6b7 2019-02-10 stsp if (err == NULL && status != GOT_STATUS_NO_CHANGE) {
2152 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2153 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
2154 016a88dd 2019-05-13 stsp err = (*status_cb)(status_arg, status, ie->path, &blob_id,
2155 016a88dd 2019-05-13 stsp &commit_id);
2156 927df6b7 2019-02-10 stsp }
2157 927df6b7 2019-02-10 stsp return err;
2158 927df6b7 2019-02-10 stsp }
2159 927df6b7 2019-02-10 stsp
2160 927df6b7 2019-02-10 stsp static const struct got_error *
2161 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
2162 f8d1f275 2019-02-04 stsp struct dirent *de, const char *parent_path)
2163 f8d1f275 2019-02-04 stsp {
2164 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
2165 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
2166 f8d1f275 2019-02-04 stsp char *abspath;
2167 f8d1f275 2019-02-04 stsp
2168 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2169 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2170 0584f854 2019-04-06 stsp
2171 927df6b7 2019-02-10 stsp if (got_path_cmp(parent_path, a->status_path) != 0 &&
2172 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
2173 927df6b7 2019-02-10 stsp return NULL;
2174 927df6b7 2019-02-10 stsp
2175 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
2176 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
2177 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
2178 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2179 f8d1f275 2019-02-04 stsp } else {
2180 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
2181 f8d1f275 2019-02-04 stsp de->d_name) == -1)
2182 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2183 f8d1f275 2019-02-04 stsp }
2184 f8d1f275 2019-02-04 stsp
2185 927df6b7 2019-02-10 stsp err = report_file_status(ie, abspath, a->status_cb, a->status_arg,
2186 927df6b7 2019-02-10 stsp a->repo);
2187 f8d1f275 2019-02-04 stsp free(abspath);
2188 9d31a1d8 2018-03-11 stsp return err;
2189 9d31a1d8 2018-03-11 stsp }
2190 f8d1f275 2019-02-04 stsp
2191 f8d1f275 2019-02-04 stsp static const struct got_error *
2192 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
2193 f8d1f275 2019-02-04 stsp {
2194 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
2195 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
2196 2ec1f75b 2019-03-26 stsp unsigned char status;
2197 927df6b7 2019-02-10 stsp
2198 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2199 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2200 0584f854 2019-04-06 stsp
2201 c577a9ce 2019-07-27 stsp if (!got_path_is_child(ie->path, a->status_path, a->status_path_len))
2202 927df6b7 2019-02-10 stsp return NULL;
2203 927df6b7 2019-02-10 stsp
2204 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2205 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
2206 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
2207 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_MISSING;
2208 2ec1f75b 2019-03-26 stsp else
2209 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_DELETE;
2210 016a88dd 2019-05-13 stsp return (*a->status_cb)(a->status_arg, status, ie->path, &blob_id,
2211 016a88dd 2019-05-13 stsp &commit_id);
2212 f8d1f275 2019-02-04 stsp }
2213 f8d1f275 2019-02-04 stsp
2214 f8d1f275 2019-02-04 stsp static const struct got_error *
2215 f8d1f275 2019-02-04 stsp status_new(void *arg, struct dirent *de, const char *parent_path)
2216 f8d1f275 2019-02-04 stsp {
2217 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
2218 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
2219 f8d1f275 2019-02-04 stsp char *path = NULL;
2220 f8d1f275 2019-02-04 stsp
2221 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2222 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2223 0584f854 2019-04-06 stsp
2224 f8d1f275 2019-02-04 stsp if (de->d_type == DT_DIR)
2225 2c201a36 2019-02-10 stsp return NULL;
2226 2c201a36 2019-02-10 stsp
2227 2c201a36 2019-02-10 stsp /* XXX ignore symlinks for now */
2228 2c201a36 2019-02-10 stsp if (de->d_type == DT_LNK)
2229 927df6b7 2019-02-10 stsp return NULL;
2230 927df6b7 2019-02-10 stsp
2231 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
2232 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
2233 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2234 f8d1f275 2019-02-04 stsp } else {
2235 f8d1f275 2019-02-04 stsp path = de->d_name;
2236 f8d1f275 2019-02-04 stsp }
2237 f8d1f275 2019-02-04 stsp
2238 c577a9ce 2019-07-27 stsp if (got_path_is_child(path, a->status_path, a->status_path_len))
2239 c577a9ce 2019-07-27 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED,
2240 c577a9ce 2019-07-27 stsp path, NULL, NULL);
2241 f8d1f275 2019-02-04 stsp if (parent_path[0])
2242 f8d1f275 2019-02-04 stsp free(path);
2243 b72f483a 2019-02-05 stsp return err;
2244 f8d1f275 2019-02-04 stsp }
2245 f8d1f275 2019-02-04 stsp
2246 347d1d3e 2019-07-12 stsp static const struct got_error *
2247 347d1d3e 2019-07-12 stsp worktree_status(struct got_worktree *worktree, const char *path,
2248 347d1d3e 2019-07-12 stsp struct got_fileindex *fileindex, struct got_repository *repo,
2249 347d1d3e 2019-07-12 stsp got_worktree_status_cb status_cb, void *status_arg,
2250 347d1d3e 2019-07-12 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
2251 f8d1f275 2019-02-04 stsp {
2252 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
2253 f8d1f275 2019-02-04 stsp DIR *workdir = NULL;
2254 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
2255 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
2256 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
2257 f8d1f275 2019-02-04 stsp
2258 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
2259 927df6b7 2019-02-10 stsp worktree->root_path, path[0] ? "/" : "", path) == -1) {
2260 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2261 c513d110 2019-02-05 stsp goto done;
2262 c513d110 2019-02-05 stsp }
2263 927df6b7 2019-02-10 stsp workdir = opendir(ondisk_path);
2264 927df6b7 2019-02-10 stsp if (workdir == NULL) {
2265 2ec1f75b 2019-03-26 stsp if (errno == ENOTDIR || errno == ENOENT) {
2266 927df6b7 2019-02-10 stsp struct got_fileindex_entry *ie;
2267 927df6b7 2019-02-10 stsp ie = got_fileindex_entry_get(fileindex, path);
2268 72ea6654 2019-07-27 stsp if (ie == NULL)
2269 72ea6654 2019-07-27 stsp err = (*status_cb)(status_arg,
2270 72ea6654 2019-07-27 stsp GOT_STATUS_UNVERSIONED, path, NULL, NULL);
2271 72ea6654 2019-07-27 stsp else
2272 72ea6654 2019-07-27 stsp err = report_file_status(ie, ondisk_path,
2273 72ea6654 2019-07-27 stsp status_cb, status_arg, repo);
2274 72ea6654 2019-07-27 stsp if (err)
2275 927df6b7 2019-02-10 stsp goto done;
2276 927df6b7 2019-02-10 stsp err = report_file_status(ie, ondisk_path,
2277 927df6b7 2019-02-10 stsp status_cb, status_arg, repo);
2278 927df6b7 2019-02-10 stsp goto done;
2279 927df6b7 2019-02-10 stsp } else {
2280 638f9024 2019-05-13 stsp err = got_error_from_errno2("opendir", ondisk_path);
2281 927df6b7 2019-02-10 stsp goto done;
2282 927df6b7 2019-02-10 stsp }
2283 927df6b7 2019-02-10 stsp }
2284 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old_new = status_old_new;
2285 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old = status_old;
2286 d43a8a88 2019-02-05 stsp fdiff_cb.diff_new = status_new;
2287 f8d1f275 2019-02-04 stsp arg.fileindex = fileindex;
2288 f8d1f275 2019-02-04 stsp arg.worktree = worktree;
2289 927df6b7 2019-02-10 stsp arg.status_path = path;
2290 927df6b7 2019-02-10 stsp arg.status_path_len = strlen(path);
2291 f8d1f275 2019-02-04 stsp arg.repo = repo;
2292 f8d1f275 2019-02-04 stsp arg.status_cb = status_cb;
2293 f8d1f275 2019-02-04 stsp arg.status_arg = status_arg;
2294 f8d1f275 2019-02-04 stsp arg.cancel_cb = cancel_cb;
2295 f8d1f275 2019-02-04 stsp arg.cancel_arg = cancel_arg;
2296 c7f4312f 2019-02-05 stsp err = got_fileindex_diff_dir(fileindex, workdir, worktree->root_path,
2297 927df6b7 2019-02-10 stsp path, repo, &fdiff_cb, &arg);
2298 f8d1f275 2019-02-04 stsp done:
2299 f8d1f275 2019-02-04 stsp if (workdir)
2300 f8d1f275 2019-02-04 stsp closedir(workdir);
2301 927df6b7 2019-02-10 stsp free(ondisk_path);
2302 347d1d3e 2019-07-12 stsp return err;
2303 347d1d3e 2019-07-12 stsp }
2304 347d1d3e 2019-07-12 stsp
2305 347d1d3e 2019-07-12 stsp const struct got_error *
2306 72ea6654 2019-07-27 stsp got_worktree_status(struct got_worktree *worktree,
2307 72ea6654 2019-07-27 stsp struct got_pathlist_head *paths, struct got_repository *repo,
2308 72ea6654 2019-07-27 stsp got_worktree_status_cb status_cb, void *status_arg,
2309 72ea6654 2019-07-27 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
2310 347d1d3e 2019-07-12 stsp {
2311 347d1d3e 2019-07-12 stsp const struct got_error *err = NULL;
2312 347d1d3e 2019-07-12 stsp char *fileindex_path = NULL;
2313 347d1d3e 2019-07-12 stsp struct got_fileindex *fileindex = NULL;
2314 72ea6654 2019-07-27 stsp struct got_pathlist_entry *pe;
2315 347d1d3e 2019-07-12 stsp
2316 347d1d3e 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2317 347d1d3e 2019-07-12 stsp if (err)
2318 347d1d3e 2019-07-12 stsp return err;
2319 347d1d3e 2019-07-12 stsp
2320 72ea6654 2019-07-27 stsp TAILQ_FOREACH(pe, paths, entry) {
2321 72ea6654 2019-07-27 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
2322 72ea6654 2019-07-27 stsp status_cb, status_arg, cancel_cb, cancel_arg);
2323 72ea6654 2019-07-27 stsp if (err)
2324 72ea6654 2019-07-27 stsp break;
2325 72ea6654 2019-07-27 stsp }
2326 f8d1f275 2019-02-04 stsp free(fileindex_path);
2327 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
2328 f8d1f275 2019-02-04 stsp return err;
2329 f8d1f275 2019-02-04 stsp }
2330 6c7ab921 2019-03-18 stsp
2331 6c7ab921 2019-03-18 stsp const struct got_error *
2332 6c7ab921 2019-03-18 stsp got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
2333 6c7ab921 2019-03-18 stsp const char *arg)
2334 6c7ab921 2019-03-18 stsp {
2335 6c7ab921 2019-03-18 stsp const struct got_error *err = NULL;
2336 d0710d08 2019-07-22 stsp char *resolved, *cwd = NULL, *path = NULL;
2337 6c7ab921 2019-03-18 stsp size_t len;
2338 6c7ab921 2019-03-18 stsp
2339 6c7ab921 2019-03-18 stsp *wt_path = NULL;
2340 6c7ab921 2019-03-18 stsp
2341 6c7ab921 2019-03-18 stsp resolved = realpath(arg, NULL);
2342 d0710d08 2019-07-22 stsp if (resolved == NULL) {
2343 d0710d08 2019-07-22 stsp if (errno != ENOENT)
2344 d0710d08 2019-07-22 stsp return got_error_from_errno2("realpath", arg);
2345 d0710d08 2019-07-22 stsp cwd = getcwd(NULL, 0);
2346 d0710d08 2019-07-22 stsp if (cwd == NULL)
2347 d0710d08 2019-07-22 stsp return got_error_from_errno("getcwd");
2348 d0710d08 2019-07-22 stsp if (asprintf(&resolved, "%s/%s", cwd, arg) == -1) {
2349 d0710d08 2019-07-22 stsp err = got_error_from_errno("asprintf");
2350 d0710d08 2019-07-22 stsp goto done;
2351 d0710d08 2019-07-22 stsp }
2352 d0710d08 2019-07-22 stsp }
2353 6c7ab921 2019-03-18 stsp
2354 6c7ab921 2019-03-18 stsp if (strncmp(got_worktree_get_root_path(worktree), resolved,
2355 6c7ab921 2019-03-18 stsp strlen(got_worktree_get_root_path(worktree)))) {
2356 6c7ab921 2019-03-18 stsp err = got_error(GOT_ERR_BAD_PATH);
2357 6c7ab921 2019-03-18 stsp goto done;
2358 6c7ab921 2019-03-18 stsp }
2359 6c7ab921 2019-03-18 stsp
2360 f6d88e1a 2019-05-29 stsp if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
2361 f6d88e1a 2019-05-29 stsp err = got_path_skip_common_ancestor(&path,
2362 f6d88e1a 2019-05-29 stsp got_worktree_get_root_path(worktree), resolved);
2363 f6d88e1a 2019-05-29 stsp if (err)
2364 f6d88e1a 2019-05-29 stsp goto done;
2365 f6d88e1a 2019-05-29 stsp } else {
2366 f6d88e1a 2019-05-29 stsp path = strdup("");
2367 f6d88e1a 2019-05-29 stsp if (path == NULL) {
2368 f6d88e1a 2019-05-29 stsp err = got_error_from_errno("strdup");
2369 f6d88e1a 2019-05-29 stsp goto done;
2370 f6d88e1a 2019-05-29 stsp }
2371 6c7ab921 2019-03-18 stsp }
2372 6c7ab921 2019-03-18 stsp
2373 6c7ab921 2019-03-18 stsp /* XXX status walk can't deal with trailing slash! */
2374 6c7ab921 2019-03-18 stsp len = strlen(path);
2375 3f17dee4 2019-07-27 stsp while (len > 0 && path[len - 1] == '/') {
2376 6c7ab921 2019-03-18 stsp path[len - 1] = '\0';
2377 6c7ab921 2019-03-18 stsp len--;
2378 6c7ab921 2019-03-18 stsp }
2379 6c7ab921 2019-03-18 stsp done:
2380 6c7ab921 2019-03-18 stsp free(resolved);
2381 d0710d08 2019-07-22 stsp free(cwd);
2382 6c7ab921 2019-03-18 stsp if (err == NULL)
2383 6c7ab921 2019-03-18 stsp *wt_path = path;
2384 6c7ab921 2019-03-18 stsp else
2385 6c7ab921 2019-03-18 stsp free(path);
2386 d00136be 2019-03-26 stsp return err;
2387 d00136be 2019-03-26 stsp }
2388 d00136be 2019-03-26 stsp
2389 07f5b47a 2019-06-02 stsp static const struct got_error *
2390 07f5b47a 2019-06-02 stsp schedule_addition(const char *ondisk_path, struct got_fileindex *fileindex,
2391 07f5b47a 2019-06-02 stsp const char *relpath, got_worktree_status_cb status_cb, void *status_arg,
2392 07f5b47a 2019-06-02 stsp struct got_repository *repo)
2393 07f5b47a 2019-06-02 stsp {
2394 07f5b47a 2019-06-02 stsp const struct got_error *err = NULL;
2395 07f5b47a 2019-06-02 stsp struct got_fileindex_entry *ie;
2396 07f5b47a 2019-06-02 stsp
2397 07f5b47a 2019-06-02 stsp /* Re-adding an existing entry is a no-op. */
2398 07f5b47a 2019-06-02 stsp if (got_fileindex_entry_get(fileindex, relpath) != NULL)
2399 07f5b47a 2019-06-02 stsp return NULL;
2400 07f5b47a 2019-06-02 stsp
2401 07f5b47a 2019-06-02 stsp err = got_fileindex_entry_alloc(&ie, ondisk_path, relpath, NULL, NULL);
2402 07f5b47a 2019-06-02 stsp if (err)
2403 07f5b47a 2019-06-02 stsp return err;
2404 07f5b47a 2019-06-02 stsp
2405 07f5b47a 2019-06-02 stsp err = got_fileindex_entry_add(fileindex, ie);
2406 07f5b47a 2019-06-02 stsp if (err) {
2407 07f5b47a 2019-06-02 stsp got_fileindex_entry_free(ie);
2408 07f5b47a 2019-06-02 stsp return err;
2409 07f5b47a 2019-06-02 stsp }
2410 07f5b47a 2019-06-02 stsp
2411 07f5b47a 2019-06-02 stsp return report_file_status(ie, relpath, status_cb, status_arg, repo);
2412 07f5b47a 2019-06-02 stsp }
2413 07f5b47a 2019-06-02 stsp
2414 d00136be 2019-03-26 stsp const struct got_error *
2415 031a5338 2019-03-26 stsp got_worktree_schedule_add(struct got_worktree *worktree,
2416 1dd54920 2019-05-11 stsp struct got_pathlist_head *ondisk_paths,
2417 1dd54920 2019-05-11 stsp got_worktree_status_cb status_cb, void *status_arg,
2418 031a5338 2019-03-26 stsp struct got_repository *repo)
2419 d00136be 2019-03-26 stsp {
2420 d00136be 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
2421 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
2422 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
2423 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
2424 d00136be 2019-03-26 stsp
2425 d00136be 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
2426 d00136be 2019-03-26 stsp if (err)
2427 d00136be 2019-03-26 stsp return err;
2428 d00136be 2019-03-26 stsp
2429 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2430 d00136be 2019-03-26 stsp if (err)
2431 d00136be 2019-03-26 stsp goto done;
2432 d00136be 2019-03-26 stsp
2433 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, ondisk_paths, entry) {
2434 1dd54920 2019-05-11 stsp char *relpath;
2435 1dd54920 2019-05-11 stsp err = got_path_skip_common_ancestor(&relpath,
2436 1dd54920 2019-05-11 stsp got_worktree_get_root_path(worktree), pe->path);
2437 1dd54920 2019-05-11 stsp if (err)
2438 af12c6b9 2019-06-04 stsp break;
2439 07f5b47a 2019-06-02 stsp err = schedule_addition(pe->path, fileindex, relpath,
2440 07f5b47a 2019-06-02 stsp status_cb, status_arg, repo);
2441 1dd54920 2019-05-11 stsp free(relpath);
2442 1dd54920 2019-05-11 stsp if (err)
2443 af12c6b9 2019-06-04 stsp break;
2444 1dd54920 2019-05-11 stsp }
2445 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
2446 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
2447 af12c6b9 2019-06-04 stsp err = sync_err;
2448 d00136be 2019-03-26 stsp done:
2449 fb399478 2019-07-12 stsp free(fileindex_path);
2450 d00136be 2019-03-26 stsp if (fileindex)
2451 d00136be 2019-03-26 stsp got_fileindex_free(fileindex);
2452 d00136be 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2453 d00136be 2019-03-26 stsp if (unlockerr && err == NULL)
2454 d00136be 2019-03-26 stsp err = unlockerr;
2455 6c7ab921 2019-03-18 stsp return err;
2456 6c7ab921 2019-03-18 stsp }
2457 17ed4618 2019-06-02 stsp
2458 17ed4618 2019-06-02 stsp static const struct got_error *
2459 17ed4618 2019-06-02 stsp schedule_for_deletion(const char *ondisk_path, struct got_fileindex *fileindex,
2460 17ed4618 2019-06-02 stsp const char *relpath, int delete_local_mods,
2461 17ed4618 2019-06-02 stsp got_worktree_status_cb status_cb, void *status_arg,
2462 17ed4618 2019-06-02 stsp struct got_repository *repo)
2463 17ed4618 2019-06-02 stsp {
2464 17ed4618 2019-06-02 stsp const struct got_error *err = NULL;
2465 17ed4618 2019-06-02 stsp struct got_fileindex_entry *ie = NULL;
2466 17ed4618 2019-06-02 stsp unsigned char status;
2467 17ed4618 2019-06-02 stsp struct stat sb;
2468 17ed4618 2019-06-02 stsp
2469 17ed4618 2019-06-02 stsp ie = got_fileindex_entry_get(fileindex, relpath);
2470 17ed4618 2019-06-02 stsp if (ie == NULL)
2471 17ed4618 2019-06-02 stsp return got_error(GOT_ERR_BAD_PATH);
2472 2ec1f75b 2019-03-26 stsp
2473 17ed4618 2019-06-02 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
2474 17ed4618 2019-06-02 stsp if (err)
2475 17ed4618 2019-06-02 stsp return err;
2476 17ed4618 2019-06-02 stsp
2477 17ed4618 2019-06-02 stsp if (status != GOT_STATUS_NO_CHANGE) {
2478 17ed4618 2019-06-02 stsp if (status == GOT_STATUS_DELETE)
2479 17ed4618 2019-06-02 stsp return got_error_set_errno(ENOENT, ondisk_path);
2480 17ed4618 2019-06-02 stsp if (status != GOT_STATUS_MODIFY)
2481 17ed4618 2019-06-02 stsp return got_error(GOT_ERR_FILE_STATUS);
2482 17ed4618 2019-06-02 stsp if (!delete_local_mods)
2483 17ed4618 2019-06-02 stsp return got_error(GOT_ERR_FILE_MODIFIED);
2484 17ed4618 2019-06-02 stsp }
2485 17ed4618 2019-06-02 stsp
2486 17ed4618 2019-06-02 stsp if (unlink(ondisk_path) != 0)
2487 17ed4618 2019-06-02 stsp return got_error_from_errno2("unlink", ondisk_path);
2488 17ed4618 2019-06-02 stsp
2489 17ed4618 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
2490 17ed4618 2019-06-02 stsp return report_file_status(ie, ondisk_path, status_cb, status_arg, repo);
2491 17ed4618 2019-06-02 stsp }
2492 17ed4618 2019-06-02 stsp
2493 2ec1f75b 2019-03-26 stsp const struct got_error *
2494 2ec1f75b 2019-03-26 stsp got_worktree_schedule_delete(struct got_worktree *worktree,
2495 17ed4618 2019-06-02 stsp struct got_pathlist_head *ondisk_paths, int delete_local_mods,
2496 2ec1f75b 2019-03-26 stsp got_worktree_status_cb status_cb, void *status_arg,
2497 2ec1f75b 2019-03-26 stsp struct got_repository *repo)
2498 2ec1f75b 2019-03-26 stsp {
2499 2ec1f75b 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
2500 17ed4618 2019-06-02 stsp char *fileindex_path = NULL;
2501 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
2502 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
2503 2ec1f75b 2019-03-26 stsp
2504 2ec1f75b 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
2505 2ec1f75b 2019-03-26 stsp if (err)
2506 2ec1f75b 2019-03-26 stsp return err;
2507 2ec1f75b 2019-03-26 stsp
2508 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2509 2ec1f75b 2019-03-26 stsp if (err)
2510 2ec1f75b 2019-03-26 stsp goto done;
2511 2ec1f75b 2019-03-26 stsp
2512 17ed4618 2019-06-02 stsp TAILQ_FOREACH(pe, ondisk_paths, entry) {
2513 17ed4618 2019-06-02 stsp char *relpath;
2514 17ed4618 2019-06-02 stsp err = got_path_skip_common_ancestor(&relpath,
2515 17ed4618 2019-06-02 stsp got_worktree_get_root_path(worktree), pe->path);
2516 17ed4618 2019-06-02 stsp if (err)
2517 af12c6b9 2019-06-04 stsp break;
2518 17ed4618 2019-06-02 stsp err = schedule_for_deletion(pe->path, fileindex, relpath,
2519 17ed4618 2019-06-02 stsp delete_local_mods, status_cb, status_arg, repo);
2520 17ed4618 2019-06-02 stsp free(relpath);
2521 17ed4618 2019-06-02 stsp if (err)
2522 af12c6b9 2019-06-04 stsp break;
2523 2ec1f75b 2019-03-26 stsp }
2524 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
2525 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
2526 af12c6b9 2019-06-04 stsp err = sync_err;
2527 2ec1f75b 2019-03-26 stsp done:
2528 fb399478 2019-07-12 stsp free(fileindex_path);
2529 2ec1f75b 2019-03-26 stsp if (fileindex)
2530 2ec1f75b 2019-03-26 stsp got_fileindex_free(fileindex);
2531 2ec1f75b 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2532 2ec1f75b 2019-03-26 stsp if (unlockerr && err == NULL)
2533 2ec1f75b 2019-03-26 stsp err = unlockerr;
2534 2ec1f75b 2019-03-26 stsp return err;
2535 2ec1f75b 2019-03-26 stsp }
2536 a129376b 2019-03-28 stsp
2537 e20a8b6f 2019-06-04 stsp static const struct got_error *
2538 e20a8b6f 2019-06-04 stsp revert_file(struct got_worktree *worktree, struct got_fileindex *fileindex,
2539 a129376b 2019-03-28 stsp const char *ondisk_path,
2540 a129376b 2019-03-28 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2541 a129376b 2019-03-28 stsp struct got_repository *repo)
2542 a129376b 2019-03-28 stsp {
2543 e20a8b6f 2019-06-04 stsp const struct got_error *err = NULL;
2544 e20a8b6f 2019-06-04 stsp char *relpath = NULL, *parent_path = NULL;
2545 e20a8b6f 2019-06-04 stsp struct got_fileindex_entry *ie;
2546 a129376b 2019-03-28 stsp struct got_tree_object *tree = NULL;
2547 e20a8b6f 2019-06-04 stsp struct got_object_id *tree_id = NULL;
2548 a129376b 2019-03-28 stsp const struct got_tree_entry *te;
2549 e20a8b6f 2019-06-04 stsp char *tree_path = NULL, *te_name;
2550 a129376b 2019-03-28 stsp struct got_blob_object *blob = NULL;
2551 a129376b 2019-03-28 stsp unsigned char status;
2552 a129376b 2019-03-28 stsp struct stat sb;
2553 a129376b 2019-03-28 stsp
2554 a129376b 2019-03-28 stsp err = got_path_skip_common_ancestor(&relpath,
2555 a129376b 2019-03-28 stsp got_worktree_get_root_path(worktree), ondisk_path);
2556 a129376b 2019-03-28 stsp if (err)
2557 a129376b 2019-03-28 stsp goto done;
2558 a129376b 2019-03-28 stsp
2559 a129376b 2019-03-28 stsp ie = got_fileindex_entry_get(fileindex, relpath);
2560 a129376b 2019-03-28 stsp if (ie == NULL) {
2561 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_BAD_PATH);
2562 a129376b 2019-03-28 stsp goto done;
2563 a129376b 2019-03-28 stsp }
2564 a129376b 2019-03-28 stsp
2565 a129376b 2019-03-28 stsp /* Construct in-repository path of tree which contains this blob. */
2566 a129376b 2019-03-28 stsp err = got_path_dirname(&parent_path, ie->path);
2567 a129376b 2019-03-28 stsp if (err) {
2568 a129376b 2019-03-28 stsp if (err->code != GOT_ERR_BAD_PATH)
2569 a129376b 2019-03-28 stsp goto done;
2570 e20a8b6f 2019-06-04 stsp parent_path = strdup("/");
2571 e20a8b6f 2019-06-04 stsp if (parent_path == NULL) {
2572 e20a8b6f 2019-06-04 stsp err = got_error_from_errno("strdup");
2573 e20a8b6f 2019-06-04 stsp goto done;
2574 e20a8b6f 2019-06-04 stsp }
2575 a129376b 2019-03-28 stsp }
2576 a129376b 2019-03-28 stsp if (got_path_is_root_dir(worktree->path_prefix)) {
2577 a129376b 2019-03-28 stsp tree_path = strdup(parent_path);
2578 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2579 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2580 a129376b 2019-03-28 stsp goto done;
2581 a129376b 2019-03-28 stsp }
2582 a129376b 2019-03-28 stsp } else {
2583 a129376b 2019-03-28 stsp if (got_path_is_root_dir(parent_path)) {
2584 a129376b 2019-03-28 stsp tree_path = strdup(worktree->path_prefix);
2585 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2586 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2587 a129376b 2019-03-28 stsp goto done;
2588 a129376b 2019-03-28 stsp }
2589 a129376b 2019-03-28 stsp } else {
2590 a129376b 2019-03-28 stsp if (asprintf(&tree_path, "%s/%s",
2591 a129376b 2019-03-28 stsp worktree->path_prefix, parent_path) == -1) {
2592 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2593 a129376b 2019-03-28 stsp goto done;
2594 a129376b 2019-03-28 stsp }
2595 a129376b 2019-03-28 stsp }
2596 a129376b 2019-03-28 stsp }
2597 a129376b 2019-03-28 stsp
2598 a129376b 2019-03-28 stsp err = got_object_id_by_path(&tree_id, repo, worktree->base_commit_id,
2599 a129376b 2019-03-28 stsp tree_path);
2600 a129376b 2019-03-28 stsp if (err)
2601 a129376b 2019-03-28 stsp goto done;
2602 a129376b 2019-03-28 stsp
2603 a129376b 2019-03-28 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
2604 a129376b 2019-03-28 stsp if (err)
2605 a129376b 2019-03-28 stsp goto done;
2606 a129376b 2019-03-28 stsp
2607 a129376b 2019-03-28 stsp te_name = basename(ie->path);
2608 a129376b 2019-03-28 stsp if (te_name == NULL) {
2609 638f9024 2019-05-13 stsp err = got_error_from_errno2("basename", ie->path);
2610 a129376b 2019-03-28 stsp goto done;
2611 a129376b 2019-03-28 stsp }
2612 a129376b 2019-03-28 stsp
2613 a129376b 2019-03-28 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
2614 a129376b 2019-03-28 stsp if (err)
2615 a129376b 2019-03-28 stsp goto done;
2616 a129376b 2019-03-28 stsp
2617 a129376b 2019-03-28 stsp te = got_object_tree_find_entry(tree, te_name);
2618 a129376b 2019-03-28 stsp if (te == NULL && status != GOT_STATUS_ADD) {
2619 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
2620 a129376b 2019-03-28 stsp goto done;
2621 a129376b 2019-03-28 stsp }
2622 a129376b 2019-03-28 stsp
2623 a129376b 2019-03-28 stsp switch (status) {
2624 a129376b 2019-03-28 stsp case GOT_STATUS_ADD:
2625 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_REVERT, ie->path);
2626 1ee397ad 2019-07-12 stsp if (err)
2627 1ee397ad 2019-07-12 stsp goto done;
2628 a129376b 2019-03-28 stsp got_fileindex_entry_remove(fileindex, ie);
2629 a129376b 2019-03-28 stsp break;
2630 a129376b 2019-03-28 stsp case GOT_STATUS_DELETE:
2631 a129376b 2019-03-28 stsp case GOT_STATUS_MODIFY:
2632 a129376b 2019-03-28 stsp case GOT_STATUS_CONFLICT:
2633 e20a8b6f 2019-06-04 stsp case GOT_STATUS_MISSING: {
2634 e20a8b6f 2019-06-04 stsp struct got_object_id id;
2635 a129376b 2019-03-28 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2636 a129376b 2019-03-28 stsp err = got_object_open_as_blob(&blob, repo, &id, 8192);
2637 a129376b 2019-03-28 stsp if (err)
2638 a129376b 2019-03-28 stsp goto done;
2639 a129376b 2019-03-28 stsp err = install_blob(worktree, ondisk_path, ie->path,
2640 a129376b 2019-03-28 stsp te->mode, sb.st_mode, blob, 0, 1, repo, progress_cb,
2641 a129376b 2019-03-28 stsp progress_arg);
2642 a129376b 2019-03-28 stsp if (err)
2643 a129376b 2019-03-28 stsp goto done;
2644 a129376b 2019-03-28 stsp if (status == GOT_STATUS_DELETE) {
2645 a129376b 2019-03-28 stsp err = update_blob_fileindex_entry(worktree,
2646 a129376b 2019-03-28 stsp fileindex, ie, ondisk_path, ie->path, blob, 1);
2647 a129376b 2019-03-28 stsp if (err)
2648 a129376b 2019-03-28 stsp goto done;
2649 a129376b 2019-03-28 stsp }
2650 a129376b 2019-03-28 stsp break;
2651 e20a8b6f 2019-06-04 stsp }
2652 a129376b 2019-03-28 stsp default:
2653 a129376b 2019-03-28 stsp goto done;
2654 a129376b 2019-03-28 stsp }
2655 a129376b 2019-03-28 stsp done:
2656 a129376b 2019-03-28 stsp free(relpath);
2657 e20a8b6f 2019-06-04 stsp free(parent_path);
2658 a129376b 2019-03-28 stsp free(tree_path);
2659 a129376b 2019-03-28 stsp if (blob)
2660 a129376b 2019-03-28 stsp got_object_blob_close(blob);
2661 a129376b 2019-03-28 stsp if (tree)
2662 a129376b 2019-03-28 stsp got_object_tree_close(tree);
2663 a129376b 2019-03-28 stsp free(tree_id);
2664 e20a8b6f 2019-06-04 stsp return err;
2665 e20a8b6f 2019-06-04 stsp }
2666 e20a8b6f 2019-06-04 stsp
2667 e20a8b6f 2019-06-04 stsp const struct got_error *
2668 e20a8b6f 2019-06-04 stsp got_worktree_revert(struct got_worktree *worktree,
2669 e20a8b6f 2019-06-04 stsp struct got_pathlist_head *ondisk_paths,
2670 e20a8b6f 2019-06-04 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2671 e20a8b6f 2019-06-04 stsp struct got_repository *repo)
2672 e20a8b6f 2019-06-04 stsp {
2673 e20a8b6f 2019-06-04 stsp struct got_fileindex *fileindex = NULL;
2674 e20a8b6f 2019-06-04 stsp char *fileindex_path = NULL;
2675 e20a8b6f 2019-06-04 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2676 e20a8b6f 2019-06-04 stsp const struct got_error *sync_err = NULL;
2677 e20a8b6f 2019-06-04 stsp struct got_pathlist_entry *pe;
2678 e20a8b6f 2019-06-04 stsp
2679 e20a8b6f 2019-06-04 stsp err = lock_worktree(worktree, LOCK_EX);
2680 e20a8b6f 2019-06-04 stsp if (err)
2681 e20a8b6f 2019-06-04 stsp return err;
2682 e20a8b6f 2019-06-04 stsp
2683 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2684 e20a8b6f 2019-06-04 stsp if (err)
2685 e20a8b6f 2019-06-04 stsp goto done;
2686 e20a8b6f 2019-06-04 stsp
2687 e20a8b6f 2019-06-04 stsp TAILQ_FOREACH(pe, ondisk_paths, entry) {
2688 e20a8b6f 2019-06-04 stsp err = revert_file(worktree, fileindex, pe->path,
2689 e20a8b6f 2019-06-04 stsp progress_cb, progress_arg, repo);
2690 e20a8b6f 2019-06-04 stsp if (err)
2691 af12c6b9 2019-06-04 stsp break;
2692 e20a8b6f 2019-06-04 stsp }
2693 e20a8b6f 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
2694 e20a8b6f 2019-06-04 stsp if (sync_err && err == NULL)
2695 e20a8b6f 2019-06-04 stsp err = sync_err;
2696 af12c6b9 2019-06-04 stsp done:
2697 fb399478 2019-07-12 stsp free(fileindex_path);
2698 a129376b 2019-03-28 stsp if (fileindex)
2699 a129376b 2019-03-28 stsp got_fileindex_free(fileindex);
2700 a129376b 2019-03-28 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2701 a129376b 2019-03-28 stsp if (unlockerr && err == NULL)
2702 a129376b 2019-03-28 stsp err = unlockerr;
2703 c4296144 2019-05-09 stsp return err;
2704 c4296144 2019-05-09 stsp }
2705 c4296144 2019-05-09 stsp
2706 cf066bf8 2019-05-09 stsp static void
2707 33ad4cbe 2019-05-12 jcs free_commitable(struct got_commitable *ct)
2708 cf066bf8 2019-05-09 stsp {
2709 24519714 2019-05-09 stsp free(ct->path);
2710 44d03001 2019-05-09 stsp free(ct->in_repo_path);
2711 768aea60 2019-05-09 stsp free(ct->ondisk_path);
2712 e75eb4da 2019-05-10 stsp free(ct->blob_id);
2713 c4e12a88 2019-05-13 stsp free(ct->base_blob_id);
2714 b416585c 2019-05-13 stsp free(ct->base_commit_id);
2715 cf066bf8 2019-05-09 stsp free(ct);
2716 cf066bf8 2019-05-09 stsp }
2717 24519714 2019-05-09 stsp
2718 ed175427 2019-05-09 stsp struct collect_commitables_arg {
2719 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths;
2720 24519714 2019-05-09 stsp struct got_repository *repo;
2721 24519714 2019-05-09 stsp struct got_worktree *worktree;
2722 24519714 2019-05-09 stsp };
2723 cf066bf8 2019-05-09 stsp
2724 c4296144 2019-05-09 stsp static const struct got_error *
2725 036813ee 2019-05-09 stsp collect_commitables(void *arg, unsigned char status, const char *relpath,
2726 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
2727 c4296144 2019-05-09 stsp {
2728 ed175427 2019-05-09 stsp struct collect_commitables_arg *a = arg;
2729 c4296144 2019-05-09 stsp const struct got_error *err = NULL;
2730 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
2731 c4296144 2019-05-09 stsp struct got_pathlist_entry *new = NULL;
2732 036813ee 2019-05-09 stsp char *parent_path = NULL, *path = NULL;
2733 768aea60 2019-05-09 stsp struct stat sb;
2734 c4296144 2019-05-09 stsp
2735 c4296144 2019-05-09 stsp if (status == GOT_STATUS_CONFLICT)
2736 c4296144 2019-05-09 stsp return got_error(GOT_ERR_COMMIT_CONFLICT);
2737 c4296144 2019-05-09 stsp
2738 c4296144 2019-05-09 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
2739 c4296144 2019-05-09 stsp status != GOT_STATUS_DELETE)
2740 c4296144 2019-05-09 stsp return NULL;
2741 0b5cc0d6 2019-05-09 stsp
2742 036813ee 2019-05-09 stsp if (asprintf(&path, "/%s", relpath) == -1) {
2743 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2744 036813ee 2019-05-09 stsp goto done;
2745 036813ee 2019-05-09 stsp }
2746 036813ee 2019-05-09 stsp if (strcmp(path, "/") == 0) {
2747 036813ee 2019-05-09 stsp parent_path = strdup("");
2748 69960a46 2019-05-09 stsp if (parent_path == NULL)
2749 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
2750 69960a46 2019-05-09 stsp } else {
2751 69960a46 2019-05-09 stsp err = got_path_dirname(&parent_path, path);
2752 69960a46 2019-05-09 stsp if (err)
2753 69960a46 2019-05-09 stsp return err;
2754 69960a46 2019-05-09 stsp }
2755 c4296144 2019-05-09 stsp
2756 036813ee 2019-05-09 stsp ct = calloc(1, sizeof(*ct));
2757 cf066bf8 2019-05-09 stsp if (ct == NULL) {
2758 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
2759 c4296144 2019-05-09 stsp goto done;
2760 768aea60 2019-05-09 stsp }
2761 768aea60 2019-05-09 stsp
2762 768aea60 2019-05-09 stsp if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
2763 768aea60 2019-05-09 stsp relpath) == -1) {
2764 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2765 768aea60 2019-05-09 stsp goto done;
2766 768aea60 2019-05-09 stsp }
2767 768aea60 2019-05-09 stsp if (status == GOT_STATUS_DELETE) {
2768 768aea60 2019-05-09 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
2769 768aea60 2019-05-09 stsp } else {
2770 768aea60 2019-05-09 stsp if (lstat(ct->ondisk_path, &sb) != 0) {
2771 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", ct->ondisk_path);
2772 768aea60 2019-05-09 stsp goto done;
2773 768aea60 2019-05-09 stsp }
2774 768aea60 2019-05-09 stsp ct->mode = sb.st_mode;
2775 c4296144 2019-05-09 stsp }
2776 c4296144 2019-05-09 stsp
2777 44d03001 2019-05-09 stsp if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
2778 44d03001 2019-05-09 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
2779 44d03001 2019-05-09 stsp relpath) == -1) {
2780 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2781 44d03001 2019-05-09 stsp goto done;
2782 44d03001 2019-05-09 stsp }
2783 44d03001 2019-05-09 stsp
2784 cf066bf8 2019-05-09 stsp ct->status = status;
2785 e75eb4da 2019-05-10 stsp ct->blob_id = NULL; /* will be filled in when blob gets created */
2786 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD) {
2787 016a88dd 2019-05-13 stsp ct->base_blob_id = got_object_id_dup(blob_id);
2788 c4e12a88 2019-05-13 stsp if (ct->base_blob_id == NULL) {
2789 b416585c 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2790 b416585c 2019-05-13 stsp goto done;
2791 b416585c 2019-05-13 stsp }
2792 b416585c 2019-05-13 stsp ct->base_commit_id = got_object_id_dup(commit_id);
2793 b416585c 2019-05-13 stsp if (ct->base_commit_id == NULL) {
2794 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2795 036813ee 2019-05-09 stsp goto done;
2796 036813ee 2019-05-09 stsp }
2797 ca2503ea 2019-05-09 stsp }
2798 24519714 2019-05-09 stsp ct->path = strdup(path);
2799 24519714 2019-05-09 stsp if (ct->path == NULL) {
2800 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2801 24519714 2019-05-09 stsp goto done;
2802 24519714 2019-05-09 stsp }
2803 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
2804 c4296144 2019-05-09 stsp done:
2805 c42269f6 2019-05-09 stsp if (ct && (err || new == NULL))
2806 ed175427 2019-05-09 stsp free_commitable(ct);
2807 24519714 2019-05-09 stsp free(parent_path);
2808 036813ee 2019-05-09 stsp free(path);
2809 a129376b 2019-03-28 stsp return err;
2810 a129376b 2019-03-28 stsp }
2811 c4296144 2019-05-09 stsp
2812 036813ee 2019-05-09 stsp static const struct got_error *write_tree(struct got_object_id **,
2813 036813ee 2019-05-09 stsp struct got_tree_object *, const char *, struct got_pathlist_head *,
2814 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2815 036813ee 2019-05-09 stsp struct got_repository *);
2816 ed175427 2019-05-09 stsp
2817 ed175427 2019-05-09 stsp static const struct got_error *
2818 036813ee 2019-05-09 stsp write_subtree(struct got_object_id **new_subtree_id,
2819 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *parent_path,
2820 afa376bf 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
2821 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2822 afa376bf 2019-05-09 stsp struct got_repository *repo)
2823 ed175427 2019-05-09 stsp {
2824 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
2825 036813ee 2019-05-09 stsp struct got_tree_object *subtree;
2826 036813ee 2019-05-09 stsp char *subpath;
2827 ed175427 2019-05-09 stsp
2828 036813ee 2019-05-09 stsp if (asprintf(&subpath, "%s%s%s", parent_path,
2829 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
2830 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2831 ed175427 2019-05-09 stsp
2832 036813ee 2019-05-09 stsp err = got_object_open_as_tree(&subtree, repo, te->id);
2833 ed175427 2019-05-09 stsp if (err)
2834 ed175427 2019-05-09 stsp return err;
2835 ed175427 2019-05-09 stsp
2836 036813ee 2019-05-09 stsp err = write_tree(new_subtree_id, subtree, subpath, commitable_paths,
2837 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
2838 036813ee 2019-05-09 stsp got_object_tree_close(subtree);
2839 036813ee 2019-05-09 stsp free(subpath);
2840 036813ee 2019-05-09 stsp return err;
2841 036813ee 2019-05-09 stsp }
2842 ed175427 2019-05-09 stsp
2843 036813ee 2019-05-09 stsp static const struct got_error *
2844 33ad4cbe 2019-05-12 jcs match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
2845 036813ee 2019-05-09 stsp {
2846 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2847 036813ee 2019-05-09 stsp char *ct_parent_path = NULL;
2848 ed175427 2019-05-09 stsp
2849 036813ee 2019-05-09 stsp *match = 0;
2850 ed175427 2019-05-09 stsp
2851 e0233cea 2019-07-25 stsp if (strchr(ct->in_repo_path, '/') == NULL) {
2852 0f63689d 2019-05-10 stsp *match = got_path_is_root_dir(path);
2853 0f63689d 2019-05-10 stsp return NULL;
2854 036813ee 2019-05-09 stsp }
2855 0b5cc0d6 2019-05-09 stsp
2856 e0233cea 2019-07-25 stsp err = got_path_dirname(&ct_parent_path, ct->in_repo_path);
2857 0f63689d 2019-05-10 stsp if (err)
2858 0f63689d 2019-05-10 stsp return err;
2859 036813ee 2019-05-09 stsp *match = (strcmp(path, ct_parent_path) == 0);
2860 036813ee 2019-05-09 stsp free(ct_parent_path);
2861 036813ee 2019-05-09 stsp return err;
2862 036813ee 2019-05-09 stsp }
2863 0b5cc0d6 2019-05-09 stsp
2864 768aea60 2019-05-09 stsp static mode_t
2865 33ad4cbe 2019-05-12 jcs get_ct_file_mode(struct got_commitable *ct)
2866 768aea60 2019-05-09 stsp {
2867 768aea60 2019-05-09 stsp return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
2868 768aea60 2019-05-09 stsp }
2869 768aea60 2019-05-09 stsp
2870 036813ee 2019-05-09 stsp static const struct got_error *
2871 036813ee 2019-05-09 stsp alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
2872 33ad4cbe 2019-05-12 jcs struct got_tree_entry *te, struct got_commitable *ct)
2873 036813ee 2019-05-09 stsp {
2874 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2875 ca2503ea 2019-05-09 stsp
2876 036813ee 2019-05-09 stsp *new_te = NULL;
2877 0b5cc0d6 2019-05-09 stsp
2878 036813ee 2019-05-09 stsp err = got_object_tree_entry_dup(new_te, te);
2879 036813ee 2019-05-09 stsp if (err)
2880 036813ee 2019-05-09 stsp goto done;
2881 0b5cc0d6 2019-05-09 stsp
2882 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2883 036813ee 2019-05-09 stsp
2884 036813ee 2019-05-09 stsp free((*new_te)->id);
2885 e75eb4da 2019-05-10 stsp (*new_te)->id = got_object_id_dup(ct->blob_id);
2886 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2887 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2888 036813ee 2019-05-09 stsp goto done;
2889 036813ee 2019-05-09 stsp }
2890 036813ee 2019-05-09 stsp done:
2891 036813ee 2019-05-09 stsp if (err && *new_te) {
2892 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2893 036813ee 2019-05-09 stsp *new_te = NULL;
2894 036813ee 2019-05-09 stsp }
2895 036813ee 2019-05-09 stsp return err;
2896 036813ee 2019-05-09 stsp }
2897 036813ee 2019-05-09 stsp
2898 036813ee 2019-05-09 stsp static const struct got_error *
2899 036813ee 2019-05-09 stsp alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
2900 33ad4cbe 2019-05-12 jcs struct got_commitable *ct)
2901 036813ee 2019-05-09 stsp {
2902 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2903 036813ee 2019-05-09 stsp char *ct_name;
2904 036813ee 2019-05-09 stsp
2905 036813ee 2019-05-09 stsp *new_te = NULL;
2906 036813ee 2019-05-09 stsp
2907 4229330b 2019-05-10 stsp *new_te = calloc(1, sizeof(**new_te));
2908 036813ee 2019-05-09 stsp if (*new_te == NULL)
2909 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
2910 036813ee 2019-05-09 stsp
2911 036813ee 2019-05-09 stsp ct_name = basename(ct->path);
2912 036813ee 2019-05-09 stsp if (ct_name == NULL) {
2913 638f9024 2019-05-13 stsp err = got_error_from_errno2("basename", ct->path);
2914 036813ee 2019-05-09 stsp goto done;
2915 036813ee 2019-05-09 stsp }
2916 036813ee 2019-05-09 stsp (*new_te)->name = strdup(ct_name);
2917 036813ee 2019-05-09 stsp if ((*new_te)->name == NULL) {
2918 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2919 036813ee 2019-05-09 stsp goto done;
2920 036813ee 2019-05-09 stsp }
2921 036813ee 2019-05-09 stsp
2922 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2923 036813ee 2019-05-09 stsp
2924 e75eb4da 2019-05-10 stsp (*new_te)->id = got_object_id_dup(ct->blob_id);
2925 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2926 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2927 036813ee 2019-05-09 stsp goto done;
2928 036813ee 2019-05-09 stsp }
2929 036813ee 2019-05-09 stsp done:
2930 036813ee 2019-05-09 stsp if (err && *new_te) {
2931 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2932 036813ee 2019-05-09 stsp *new_te = NULL;
2933 036813ee 2019-05-09 stsp }
2934 036813ee 2019-05-09 stsp return err;
2935 036813ee 2019-05-09 stsp }
2936 036813ee 2019-05-09 stsp
2937 036813ee 2019-05-09 stsp static const struct got_error *
2938 036813ee 2019-05-09 stsp insert_tree_entry(struct got_tree_entry *new_te,
2939 036813ee 2019-05-09 stsp struct got_pathlist_head *paths)
2940 036813ee 2019-05-09 stsp {
2941 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2942 036813ee 2019-05-09 stsp struct got_pathlist_entry *new_pe;
2943 036813ee 2019-05-09 stsp
2944 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
2945 036813ee 2019-05-09 stsp if (err)
2946 036813ee 2019-05-09 stsp return err;
2947 036813ee 2019-05-09 stsp if (new_pe == NULL)
2948 036813ee 2019-05-09 stsp return got_error(GOT_ERR_TREE_DUP_ENTRY);
2949 036813ee 2019-05-09 stsp return NULL;
2950 afa376bf 2019-05-09 stsp }
2951 afa376bf 2019-05-09 stsp
2952 afa376bf 2019-05-09 stsp static const struct got_error *
2953 33ad4cbe 2019-05-12 jcs report_ct_status(struct got_commitable *ct,
2954 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg)
2955 afa376bf 2019-05-09 stsp {
2956 afa376bf 2019-05-09 stsp const char *ct_path = ct->path;
2957 afa376bf 2019-05-09 stsp while (ct_path[0] == '/')
2958 afa376bf 2019-05-09 stsp ct_path++;
2959 016a88dd 2019-05-13 stsp return (*status_cb)(status_arg, ct->status, ct_path, ct->blob_id, NULL);
2960 036813ee 2019-05-09 stsp }
2961 036813ee 2019-05-09 stsp
2962 036813ee 2019-05-09 stsp static const struct got_error *
2963 44d03001 2019-05-09 stsp match_modified_subtree(int *modified, struct got_tree_entry *te,
2964 44d03001 2019-05-09 stsp const char *base_tree_path, struct got_pathlist_head *commitable_paths)
2965 44d03001 2019-05-09 stsp {
2966 44d03001 2019-05-09 stsp const struct got_error *err = NULL;
2967 44d03001 2019-05-09 stsp struct got_pathlist_entry *pe;
2968 44d03001 2019-05-09 stsp char *te_path;
2969 44d03001 2019-05-09 stsp
2970 44d03001 2019-05-09 stsp *modified = 0;
2971 44d03001 2019-05-09 stsp
2972 44d03001 2019-05-09 stsp if (asprintf(&te_path, "%s%s%s", base_tree_path,
2973 44d03001 2019-05-09 stsp got_path_is_root_dir(base_tree_path) ? "" : "/",
2974 44d03001 2019-05-09 stsp te->name) == -1)
2975 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2976 44d03001 2019-05-09 stsp
2977 44d03001 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2978 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2979 44d03001 2019-05-09 stsp *modified = got_path_is_child(ct->in_repo_path, te_path,
2980 44d03001 2019-05-09 stsp strlen(te_path));
2981 44d03001 2019-05-09 stsp if (*modified)
2982 44d03001 2019-05-09 stsp break;
2983 44d03001 2019-05-09 stsp }
2984 44d03001 2019-05-09 stsp
2985 44d03001 2019-05-09 stsp free(te_path);
2986 44d03001 2019-05-09 stsp return err;
2987 44d03001 2019-05-09 stsp }
2988 44d03001 2019-05-09 stsp
2989 44d03001 2019-05-09 stsp static const struct got_error *
2990 33ad4cbe 2019-05-12 jcs match_deleted_or_modified_ct(struct got_commitable **ctp,
2991 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *base_tree_path,
2992 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths)
2993 036813ee 2019-05-09 stsp {
2994 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2995 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
2996 036813ee 2019-05-09 stsp
2997 036813ee 2019-05-09 stsp *ctp = NULL;
2998 036813ee 2019-05-09 stsp
2999 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
3000 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3001 036813ee 2019-05-09 stsp char *ct_name = NULL;
3002 036813ee 2019-05-09 stsp int path_matches;
3003 036813ee 2019-05-09 stsp
3004 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_MODIFY &&
3005 036813ee 2019-05-09 stsp ct->status != GOT_STATUS_DELETE)
3006 036813ee 2019-05-09 stsp continue;
3007 036813ee 2019-05-09 stsp
3008 c4e12a88 2019-05-13 stsp if (got_object_id_cmp(ct->base_blob_id, te->id) != 0)
3009 036813ee 2019-05-09 stsp continue;
3010 036813ee 2019-05-09 stsp
3011 036813ee 2019-05-09 stsp err = match_ct_parent_path(&path_matches, ct, base_tree_path);
3012 036813ee 2019-05-09 stsp if (err)
3013 036813ee 2019-05-09 stsp return err;
3014 036813ee 2019-05-09 stsp if (!path_matches)
3015 036813ee 2019-05-09 stsp continue;
3016 036813ee 2019-05-09 stsp
3017 036813ee 2019-05-09 stsp ct_name = basename(pe->path);
3018 036813ee 2019-05-09 stsp if (ct_name == NULL)
3019 638f9024 2019-05-13 stsp return got_error_from_errno2("basename", pe->path);
3020 036813ee 2019-05-09 stsp
3021 036813ee 2019-05-09 stsp if (strcmp(te->name, ct_name) != 0)
3022 036813ee 2019-05-09 stsp continue;
3023 036813ee 2019-05-09 stsp
3024 036813ee 2019-05-09 stsp *ctp = ct;
3025 036813ee 2019-05-09 stsp break;
3026 036813ee 2019-05-09 stsp }
3027 2b496619 2019-07-10 stsp
3028 2b496619 2019-07-10 stsp return err;
3029 2b496619 2019-07-10 stsp }
3030 2b496619 2019-07-10 stsp
3031 2b496619 2019-07-10 stsp static const struct got_error *
3032 2b496619 2019-07-10 stsp make_subtree_for_added_blob(struct got_tree_entry **new_tep,
3033 2b496619 2019-07-10 stsp const char *child_path, const char *path_base_tree,
3034 2b496619 2019-07-10 stsp struct got_pathlist_head *commitable_paths,
3035 2b496619 2019-07-10 stsp got_worktree_status_cb status_cb, void *status_arg,
3036 2b496619 2019-07-10 stsp struct got_repository *repo)
3037 2b496619 2019-07-10 stsp {
3038 2b496619 2019-07-10 stsp const struct got_error *err = NULL;
3039 2b496619 2019-07-10 stsp struct got_tree_entry *new_te;
3040 2b496619 2019-07-10 stsp char *subtree_path;
3041 2b496619 2019-07-10 stsp
3042 2b496619 2019-07-10 stsp *new_tep = NULL;
3043 2b496619 2019-07-10 stsp
3044 2b496619 2019-07-10 stsp if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
3045 2b496619 2019-07-10 stsp got_path_is_root_dir(path_base_tree) ? "" : "/",
3046 2b496619 2019-07-10 stsp child_path) == -1)
3047 2b496619 2019-07-10 stsp return got_error_from_errno("asprintf");
3048 036813ee 2019-05-09 stsp
3049 2b496619 2019-07-10 stsp new_te = calloc(1, sizeof(*new_te));
3050 2b496619 2019-07-10 stsp new_te->mode = S_IFDIR;
3051 2b496619 2019-07-10 stsp new_te->name = strdup(child_path);
3052 2b496619 2019-07-10 stsp if (new_te->name == NULL) {
3053 2b496619 2019-07-10 stsp err = got_error_from_errno("strdup");
3054 2b496619 2019-07-10 stsp got_object_tree_entry_close(new_te);
3055 2b496619 2019-07-10 stsp goto done;
3056 2b496619 2019-07-10 stsp }
3057 2b496619 2019-07-10 stsp err = write_tree(&new_te->id, NULL, subtree_path,
3058 2b496619 2019-07-10 stsp commitable_paths, status_cb, status_arg, repo);
3059 2b496619 2019-07-10 stsp if (err) {
3060 2b496619 2019-07-10 stsp got_object_tree_entry_close(new_te);
3061 2b496619 2019-07-10 stsp goto done;
3062 2b496619 2019-07-10 stsp }
3063 2b496619 2019-07-10 stsp done:
3064 2b496619 2019-07-10 stsp free(subtree_path);
3065 2b496619 2019-07-10 stsp if (err == NULL)
3066 2b496619 2019-07-10 stsp *new_tep = new_te;
3067 036813ee 2019-05-09 stsp return err;
3068 036813ee 2019-05-09 stsp }
3069 036813ee 2019-05-09 stsp
3070 036813ee 2019-05-09 stsp static const struct got_error *
3071 036813ee 2019-05-09 stsp write_tree(struct got_object_id **new_tree_id,
3072 036813ee 2019-05-09 stsp struct got_tree_object *base_tree, const char *path_base_tree,
3073 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
3074 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
3075 036813ee 2019-05-09 stsp struct got_repository *repo)
3076 036813ee 2019-05-09 stsp {
3077 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
3078 036813ee 2019-05-09 stsp const struct got_tree_entries *base_entries = NULL;
3079 036813ee 2019-05-09 stsp struct got_pathlist_head paths;
3080 036813ee 2019-05-09 stsp struct got_tree_entries new_tree_entries;
3081 2f51b5b3 2019-05-09 stsp struct got_tree_entry *te, *new_te = NULL;
3082 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
3083 036813ee 2019-05-09 stsp
3084 036813ee 2019-05-09 stsp TAILQ_INIT(&paths);
3085 036813ee 2019-05-09 stsp new_tree_entries.nentries = 0;
3086 036813ee 2019-05-09 stsp SIMPLEQ_INIT(&new_tree_entries.head);
3087 036813ee 2019-05-09 stsp
3088 036813ee 2019-05-09 stsp /* Insert, and recurse into, newly added entries first. */
3089 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
3090 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3091 2f51b5b3 2019-05-09 stsp char *child_path = NULL, *slash;
3092 036813ee 2019-05-09 stsp
3093 a3df2849 2019-05-20 stsp if (ct->status != GOT_STATUS_ADD ||
3094 a3df2849 2019-05-20 stsp (ct->flags & GOT_COMMITABLE_ADDED))
3095 036813ee 2019-05-09 stsp continue;
3096 036813ee 2019-05-09 stsp
3097 036813ee 2019-05-09 stsp if (!got_path_is_child(pe->path, path_base_tree,
3098 2f51b5b3 2019-05-09 stsp strlen(path_base_tree)))
3099 036813ee 2019-05-09 stsp continue;
3100 036813ee 2019-05-09 stsp
3101 036813ee 2019-05-09 stsp err = got_path_skip_common_ancestor(&child_path, path_base_tree,
3102 036813ee 2019-05-09 stsp pe->path);
3103 036813ee 2019-05-09 stsp if (err)
3104 036813ee 2019-05-09 stsp goto done;
3105 036813ee 2019-05-09 stsp
3106 2f51b5b3 2019-05-09 stsp slash = strchr(child_path, '/');
3107 2f51b5b3 2019-05-09 stsp if (slash == NULL) {
3108 036813ee 2019-05-09 stsp err = alloc_added_blob_tree_entry(&new_te, ct);
3109 036813ee 2019-05-09 stsp if (err)
3110 036813ee 2019-05-09 stsp goto done;
3111 afa376bf 2019-05-09 stsp err = report_ct_status(ct, status_cb, status_arg);
3112 afa376bf 2019-05-09 stsp if (err)
3113 afa376bf 2019-05-09 stsp goto done;
3114 a3df2849 2019-05-20 stsp ct->flags |= GOT_COMMITABLE_ADDED;
3115 2b496619 2019-07-10 stsp err = insert_tree_entry(new_te, &paths);
3116 2b496619 2019-07-10 stsp if (err)
3117 2f51b5b3 2019-05-09 stsp goto done;
3118 2b496619 2019-07-10 stsp } else {
3119 2b496619 2019-07-10 stsp *slash = '\0'; /* trim trailing path components */
3120 2b496619 2019-07-10 stsp if (base_tree == NULL ||
3121 2b496619 2019-07-10 stsp got_object_tree_find_entry(base_tree, child_path)
3122 2b496619 2019-07-10 stsp == NULL) {
3123 2b496619 2019-07-10 stsp err = make_subtree_for_added_blob(&new_te,
3124 2b496619 2019-07-10 stsp child_path, path_base_tree,
3125 2b496619 2019-07-10 stsp commitable_paths, status_cb, status_arg,
3126 2b496619 2019-07-10 stsp repo);
3127 2b496619 2019-07-10 stsp if (err)
3128 2b496619 2019-07-10 stsp goto done;
3129 2b496619 2019-07-10 stsp err = insert_tree_entry(new_te, &paths);
3130 2b496619 2019-07-10 stsp if (err)
3131 2b496619 2019-07-10 stsp goto done;
3132 9ba0479c 2019-05-10 stsp }
3133 ed175427 2019-05-09 stsp }
3134 2f51b5b3 2019-05-09 stsp }
3135 2f51b5b3 2019-05-09 stsp
3136 2f51b5b3 2019-05-09 stsp if (base_tree) {
3137 2f51b5b3 2019-05-09 stsp /* Handle modified and deleted entries. */
3138 2f51b5b3 2019-05-09 stsp base_entries = got_object_tree_get_entries(base_tree);
3139 2f51b5b3 2019-05-09 stsp SIMPLEQ_FOREACH(te, &base_entries->head, entry) {
3140 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
3141 2f51b5b3 2019-05-09 stsp
3142 2f51b5b3 2019-05-09 stsp if (S_ISDIR(te->mode)) {
3143 44d03001 2019-05-09 stsp int modified;
3144 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
3145 036813ee 2019-05-09 stsp if (err)
3146 036813ee 2019-05-09 stsp goto done;
3147 44d03001 2019-05-09 stsp err = match_modified_subtree(&modified, te,
3148 44d03001 2019-05-09 stsp path_base_tree, commitable_paths);
3149 2f51b5b3 2019-05-09 stsp if (err)
3150 2f51b5b3 2019-05-09 stsp goto done;
3151 44d03001 2019-05-09 stsp /* Avoid recursion into unmodified subtrees. */
3152 44d03001 2019-05-09 stsp if (modified) {
3153 44d03001 2019-05-09 stsp free(new_te->id);
3154 44d03001 2019-05-09 stsp err = write_subtree(&new_te->id, te,
3155 44d03001 2019-05-09 stsp path_base_tree, commitable_paths,
3156 44d03001 2019-05-09 stsp status_cb, status_arg, repo);
3157 44d03001 2019-05-09 stsp if (err)
3158 44d03001 2019-05-09 stsp goto done;
3159 44d03001 2019-05-09 stsp }
3160 036813ee 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
3161 036813ee 2019-05-09 stsp if (err)
3162 036813ee 2019-05-09 stsp goto done;
3163 2f51b5b3 2019-05-09 stsp continue;
3164 036813ee 2019-05-09 stsp }
3165 2f51b5b3 2019-05-09 stsp
3166 2f51b5b3 2019-05-09 stsp err = match_deleted_or_modified_ct(&ct, te,
3167 2f51b5b3 2019-05-09 stsp path_base_tree, commitable_paths);
3168 2f51b5b3 2019-05-09 stsp if (ct) {
3169 2f51b5b3 2019-05-09 stsp /* NB: Deleted entries get dropped here. */
3170 2f51b5b3 2019-05-09 stsp if (ct->status == GOT_STATUS_MODIFY) {
3171 2f51b5b3 2019-05-09 stsp err = alloc_modified_blob_tree_entry(
3172 2f51b5b3 2019-05-09 stsp &new_te, te, ct);
3173 2f51b5b3 2019-05-09 stsp if (err)
3174 2f51b5b3 2019-05-09 stsp goto done;
3175 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
3176 2f51b5b3 2019-05-09 stsp if (err)
3177 2f51b5b3 2019-05-09 stsp goto done;
3178 2f51b5b3 2019-05-09 stsp }
3179 b416585c 2019-05-13 stsp err = report_ct_status(ct, status_cb,
3180 b416585c 2019-05-13 stsp status_arg);
3181 afa376bf 2019-05-09 stsp if (err)
3182 afa376bf 2019-05-09 stsp goto done;
3183 2f51b5b3 2019-05-09 stsp } else {
3184 2f51b5b3 2019-05-09 stsp /* Entry is unchanged; just copy it. */
3185 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
3186 2f51b5b3 2019-05-09 stsp if (err)
3187 2f51b5b3 2019-05-09 stsp goto done;
3188 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
3189 2f51b5b3 2019-05-09 stsp if (err)
3190 2f51b5b3 2019-05-09 stsp goto done;
3191 2f51b5b3 2019-05-09 stsp }
3192 ca2503ea 2019-05-09 stsp }
3193 ed175427 2019-05-09 stsp }
3194 0b5cc0d6 2019-05-09 stsp
3195 036813ee 2019-05-09 stsp /* Write new list of entries; deleted entries have been dropped. */
3196 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &paths, entry) {
3197 0b5cc0d6 2019-05-09 stsp struct got_tree_entry *te = pe->data;
3198 0b5cc0d6 2019-05-09 stsp new_tree_entries.nentries++;
3199 0b5cc0d6 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&new_tree_entries.head, te, entry);
3200 0b5cc0d6 2019-05-09 stsp }
3201 036813ee 2019-05-09 stsp err = got_object_tree_create(new_tree_id, &new_tree_entries, repo);
3202 ed175427 2019-05-09 stsp done:
3203 ca2503ea 2019-05-09 stsp got_object_tree_entries_close(&new_tree_entries);
3204 036813ee 2019-05-09 stsp got_pathlist_free(&paths);
3205 ed175427 2019-05-09 stsp return err;
3206 ed175427 2019-05-09 stsp }
3207 ed175427 2019-05-09 stsp
3208 ebf99748 2019-05-09 stsp static const struct got_error *
3209 ebf99748 2019-05-09 stsp update_fileindex_after_commit(struct got_pathlist_head *commitable_paths,
3210 93ec1b5f 2019-07-12 stsp struct got_object_id *new_base_commit_id, struct got_fileindex *fileindex)
3211 ebf99748 2019-05-09 stsp {
3212 8ec7bf54 2019-07-12 stsp const struct got_error *err = NULL;
3213 ebf99748 2019-05-09 stsp struct got_pathlist_entry *pe;
3214 ebf99748 2019-05-09 stsp
3215 ebf99748 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
3216 ebf99748 2019-05-09 stsp struct got_fileindex_entry *ie;
3217 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3218 ebf99748 2019-05-09 stsp
3219 ebf99748 2019-05-09 stsp ie = got_fileindex_entry_get(fileindex, pe->path);
3220 ebf99748 2019-05-09 stsp if (ie) {
3221 ebf99748 2019-05-09 stsp if (ct->status == GOT_STATUS_DELETE) {
3222 ebf99748 2019-05-09 stsp got_fileindex_entry_remove(fileindex, ie);
3223 ebf99748 2019-05-09 stsp got_fileindex_entry_free(ie);
3224 ebf99748 2019-05-09 stsp } else
3225 ebf99748 2019-05-09 stsp err = got_fileindex_entry_update(ie,
3226 e75eb4da 2019-05-10 stsp ct->ondisk_path, ct->blob_id->sha1,
3227 ebf99748 2019-05-09 stsp new_base_commit_id->sha1, 1);
3228 ebf99748 2019-05-09 stsp } else {
3229 ebf99748 2019-05-09 stsp err = got_fileindex_entry_alloc(&ie,
3230 e75eb4da 2019-05-10 stsp ct->ondisk_path, pe->path, ct->blob_id->sha1,
3231 ebf99748 2019-05-09 stsp new_base_commit_id->sha1);
3232 ebf99748 2019-05-09 stsp if (err)
3233 af12c6b9 2019-06-04 stsp break;
3234 ebf99748 2019-05-09 stsp err = got_fileindex_entry_add(fileindex, ie);
3235 ebf99748 2019-05-09 stsp if (err)
3236 af12c6b9 2019-06-04 stsp break;
3237 ebf99748 2019-05-09 stsp }
3238 ebf99748 2019-05-09 stsp }
3239 d56d26ce 2019-05-10 stsp return err;
3240 d56d26ce 2019-05-10 stsp }
3241 d56d26ce 2019-05-10 stsp
3242 d56d26ce 2019-05-10 stsp static const struct got_error *
3243 33ad4cbe 2019-05-12 jcs check_ct_out_of_date(struct got_commitable *ct, struct got_repository *repo,
3244 d56d26ce 2019-05-10 stsp struct got_object_id *head_commit_id)
3245 d56d26ce 2019-05-10 stsp {
3246 d56d26ce 2019-05-10 stsp const struct got_error *err = NULL;
3247 1a36436d 2019-06-10 stsp struct got_object_id *id_in_head = NULL, *id = NULL;
3248 1a36436d 2019-06-10 stsp struct got_commit_object *commit = NULL;
3249 1a36436d 2019-06-10 stsp char *path = NULL;
3250 1a36436d 2019-06-10 stsp const char *ct_path = ct->in_repo_path;
3251 1a36436d 2019-06-10 stsp
3252 1a36436d 2019-06-10 stsp while (ct_path[0] == '/')
3253 1a36436d 2019-06-10 stsp ct_path++;
3254 d56d26ce 2019-05-10 stsp
3255 1251a9e5 2019-05-10 stsp /*
3256 1a36436d 2019-06-10 stsp * Ensure that no modifications were made to files *and their parents*
3257 1a36436d 2019-06-10 stsp * in commits between the file's base commit and the branch head.
3258 b416585c 2019-05-13 stsp *
3259 1a36436d 2019-06-10 stsp * Checking the parents is important for detecting conflicting tree
3260 1a36436d 2019-06-10 stsp * configurations (files or parent folders might have been moved,
3261 1a36436d 2019-06-10 stsp * deleted, added again, etc.). Such changes need to be merged with
3262 1a36436d 2019-06-10 stsp * local changes before a commit can occur.
3263 1a36436d 2019-06-10 stsp *
3264 1a36436d 2019-06-10 stsp * The implication is that the file's (parent) entry in the root
3265 1a36436d 2019-06-10 stsp * directory must have the same ID in all relevant commits.
3266 b416585c 2019-05-13 stsp */
3267 b416585c 2019-05-13 stsp if (ct->status != GOT_STATUS_ADD) {
3268 1a36436d 2019-06-10 stsp struct got_object_qid *pid;
3269 1a36436d 2019-06-10 stsp char *slash;
3270 1a36436d 2019-06-10 stsp struct got_object_id *root_entry_id = NULL;
3271 d56d26ce 2019-05-10 stsp
3272 1a36436d 2019-06-10 stsp /* Trivial case: base commit == head commit */
3273 1a36436d 2019-06-10 stsp if (got_object_id_cmp(ct->base_commit_id, head_commit_id) == 0)
3274 1a36436d 2019-06-10 stsp return NULL;
3275 d56d26ce 2019-05-10 stsp
3276 1a36436d 2019-06-10 stsp /* Compute the path to the root directory's entry. */
3277 1a36436d 2019-06-10 stsp path = strdup(ct_path);
3278 1a36436d 2019-06-10 stsp if (path == NULL) {
3279 1a36436d 2019-06-10 stsp err = got_error_from_errno("strdup");
3280 1a36436d 2019-06-10 stsp goto done;
3281 1a36436d 2019-06-10 stsp }
3282 1a36436d 2019-06-10 stsp slash = strchr(path, '/');
3283 1a36436d 2019-06-10 stsp if (slash)
3284 1a36436d 2019-06-10 stsp *slash = '\0';
3285 1a36436d 2019-06-10 stsp
3286 1a36436d 2019-06-10 stsp err = got_object_open_as_commit(&commit, repo, head_commit_id);
3287 1a36436d 2019-06-10 stsp if (err)
3288 1a36436d 2019-06-10 stsp goto done;
3289 1a36436d 2019-06-10 stsp
3290 1a36436d 2019-06-10 stsp err = got_object_id_by_path(&root_entry_id, repo,
3291 1a36436d 2019-06-10 stsp head_commit_id, path);
3292 1a36436d 2019-06-10 stsp if (err)
3293 1a36436d 2019-06-10 stsp goto done;
3294 1a36436d 2019-06-10 stsp
3295 1a36436d 2019-06-10 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
3296 1a36436d 2019-06-10 stsp while (pid) {
3297 1a36436d 2019-06-10 stsp struct got_commit_object *pcommit;
3298 1a36436d 2019-06-10 stsp
3299 1a36436d 2019-06-10 stsp err = got_object_id_by_path(&id, repo, pid->id, path);
3300 1a36436d 2019-06-10 stsp if (err) {
3301 1a36436d 2019-06-10 stsp if (err->code != GOT_ERR_NO_TREE_ENTRY)
3302 1a36436d 2019-06-10 stsp goto done;
3303 1a36436d 2019-06-10 stsp err = NULL;
3304 1a36436d 2019-06-10 stsp break;
3305 1a36436d 2019-06-10 stsp }
3306 1a36436d 2019-06-10 stsp
3307 1a36436d 2019-06-10 stsp err = got_object_id_by_path(&id, repo, pid->id, path);
3308 1a36436d 2019-06-10 stsp if (err)
3309 1a36436d 2019-06-10 stsp goto done;
3310 1a36436d 2019-06-10 stsp
3311 1a36436d 2019-06-10 stsp if (got_object_id_cmp(id, root_entry_id) != 0) {
3312 1a36436d 2019-06-10 stsp err = got_error(GOT_ERR_COMMIT_OUT_OF_DATE);
3313 1a36436d 2019-06-10 stsp break;
3314 1a36436d 2019-06-10 stsp }
3315 1a36436d 2019-06-10 stsp
3316 1a36436d 2019-06-10 stsp if (got_object_id_cmp(pid->id, ct->base_commit_id) == 0)
3317 1a36436d 2019-06-10 stsp break; /* all relevant commits scanned */
3318 1a36436d 2019-06-10 stsp
3319 1a36436d 2019-06-10 stsp err = got_object_open_as_commit(&pcommit, repo,
3320 1a36436d 2019-06-10 stsp pid->id);
3321 1a36436d 2019-06-10 stsp if (err)
3322 1a36436d 2019-06-10 stsp goto done;
3323 1a36436d 2019-06-10 stsp
3324 1a36436d 2019-06-10 stsp got_object_commit_close(commit);
3325 1a36436d 2019-06-10 stsp commit = pcommit;
3326 1a36436d 2019-06-10 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(
3327 1a36436d 2019-06-10 stsp commit));
3328 1a36436d 2019-06-10 stsp }
3329 1a36436d 2019-06-10 stsp } else {
3330 1a36436d 2019-06-10 stsp /* Require that added files don't exist in the branch head. */
3331 1a36436d 2019-06-10 stsp err = got_object_id_by_path(&id_in_head, repo, head_commit_id,
3332 1a36436d 2019-06-10 stsp ct_path);
3333 1a36436d 2019-06-10 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
3334 1a36436d 2019-06-10 stsp goto done;
3335 1a36436d 2019-06-10 stsp err = id_in_head ? got_error(GOT_ERR_COMMIT_OUT_OF_DATE) : NULL;
3336 1a36436d 2019-06-10 stsp }
3337 1a36436d 2019-06-10 stsp done:
3338 1a36436d 2019-06-10 stsp if (commit)
3339 1a36436d 2019-06-10 stsp got_object_commit_close(commit);
3340 d56d26ce 2019-05-10 stsp free(id_in_head);
3341 1a36436d 2019-06-10 stsp free(id);
3342 1a36436d 2019-06-10 stsp free(path);
3343 1a36436d 2019-06-10 stsp return err;
3344 ebf99748 2019-05-09 stsp }
3345 ebf99748 2019-05-09 stsp
3346 c4296144 2019-05-09 stsp const struct got_error *
3347 39cd0ff6 2019-07-12 stsp commit_worktree(struct got_object_id **new_commit_id,
3348 39cd0ff6 2019-07-12 stsp struct got_pathlist_head *commitable_paths,
3349 39cd0ff6 2019-07-12 stsp struct got_object_id *head_commit_id, struct got_worktree *worktree,
3350 39cd0ff6 2019-07-12 stsp const char *ondisk_path, const char *author, const char *committer,
3351 33ad4cbe 2019-05-12 jcs got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
3352 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
3353 afa376bf 2019-05-09 stsp struct got_repository *repo)
3354 c4296144 2019-05-09 stsp {
3355 39cd0ff6 2019-07-12 stsp const struct got_error *err = NULL, *unlockerr = NULL;
3356 c4296144 2019-05-09 stsp struct got_pathlist_entry *pe;
3357 bc70eb79 2019-05-09 stsp const char *head_ref_name = NULL;
3358 588edf97 2019-05-10 stsp struct got_commit_object *head_commit = NULL;
3359 09f5bd90 2019-05-09 stsp struct got_reference *head_ref2 = NULL;
3360 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id2 = NULL;
3361 588edf97 2019-05-10 stsp struct got_tree_object *head_tree = NULL;
3362 036813ee 2019-05-09 stsp struct got_object_id *new_tree_id = NULL;
3363 de18fc63 2019-05-09 stsp struct got_object_id_queue parent_ids;
3364 de18fc63 2019-05-09 stsp struct got_object_qid *pid = NULL;
3365 33ad4cbe 2019-05-12 jcs char *logmsg = NULL;
3366 c4296144 2019-05-09 stsp
3367 c4296144 2019-05-09 stsp *new_commit_id = NULL;
3368 c4296144 2019-05-09 stsp
3369 de18fc63 2019-05-09 stsp SIMPLEQ_INIT(&parent_ids);
3370 675c7539 2019-05-09 stsp
3371 588edf97 2019-05-10 stsp err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
3372 588edf97 2019-05-10 stsp if (err)
3373 588edf97 2019-05-10 stsp goto done;
3374 de18fc63 2019-05-09 stsp
3375 588edf97 2019-05-10 stsp err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
3376 588edf97 2019-05-10 stsp if (err)
3377 588edf97 2019-05-10 stsp goto done;
3378 588edf97 2019-05-10 stsp
3379 33ad4cbe 2019-05-12 jcs if (commit_msg_cb != NULL) {
3380 39cd0ff6 2019-07-12 stsp err = commit_msg_cb(commitable_paths, &logmsg, commit_arg);
3381 33ad4cbe 2019-05-12 jcs if (err)
3382 33ad4cbe 2019-05-12 jcs goto done;
3383 33ad4cbe 2019-05-12 jcs }
3384 c4296144 2019-05-09 stsp
3385 33ad4cbe 2019-05-12 jcs if (logmsg == NULL || strlen(logmsg) == 0) {
3386 33ad4cbe 2019-05-12 jcs err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
3387 33ad4cbe 2019-05-12 jcs goto done;
3388 33ad4cbe 2019-05-12 jcs }
3389 33ad4cbe 2019-05-12 jcs
3390 cf066bf8 2019-05-09 stsp /* Create blobs from added and modified files and record their IDs. */
3391 39cd0ff6 2019-07-12 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
3392 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3393 cf066bf8 2019-05-09 stsp char *ondisk_path;
3394 cf066bf8 2019-05-09 stsp
3395 cf066bf8 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD &&
3396 cf066bf8 2019-05-09 stsp ct->status != GOT_STATUS_MODIFY)
3397 cf066bf8 2019-05-09 stsp continue;
3398 cf066bf8 2019-05-09 stsp
3399 cf066bf8 2019-05-09 stsp if (asprintf(&ondisk_path, "%s/%s",
3400 cf066bf8 2019-05-09 stsp worktree->root_path, pe->path) == -1) {
3401 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3402 cf066bf8 2019-05-09 stsp goto done;
3403 cf066bf8 2019-05-09 stsp }
3404 e75eb4da 2019-05-10 stsp err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
3405 a7055788 2019-05-09 stsp free(ondisk_path);
3406 cf066bf8 2019-05-09 stsp if (err)
3407 cf066bf8 2019-05-09 stsp goto done;
3408 cf066bf8 2019-05-09 stsp }
3409 036813ee 2019-05-09 stsp
3410 036813ee 2019-05-09 stsp /* Recursively write new tree objects. */
3411 39cd0ff6 2019-07-12 stsp err = write_tree(&new_tree_id, head_tree, "/", commitable_paths,
3412 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
3413 036813ee 2019-05-09 stsp if (err)
3414 036813ee 2019-05-09 stsp goto done;
3415 036813ee 2019-05-09 stsp
3416 de18fc63 2019-05-09 stsp err = got_object_qid_alloc(&pid, worktree->base_commit_id);
3417 de18fc63 2019-05-09 stsp if (err)
3418 de18fc63 2019-05-09 stsp goto done;
3419 de18fc63 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&parent_ids, pid, entry);
3420 de18fc63 2019-05-09 stsp err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
3421 de18fc63 2019-05-09 stsp 1, author, time(NULL), committer, time(NULL), logmsg, repo);
3422 de18fc63 2019-05-09 stsp got_object_qid_free(pid);
3423 33ad4cbe 2019-05-12 jcs if (logmsg != NULL)
3424 33ad4cbe 2019-05-12 jcs free(logmsg);
3425 9d40349a 2019-05-09 stsp if (err)
3426 9d40349a 2019-05-09 stsp goto done;
3427 9d40349a 2019-05-09 stsp
3428 09f5bd90 2019-05-09 stsp /* Check if a concurrent commit to our branch has occurred. */
3429 bc70eb79 2019-05-09 stsp head_ref_name = got_worktree_get_head_ref_name(worktree);
3430 bc70eb79 2019-05-09 stsp if (head_ref_name == NULL) {
3431 638f9024 2019-05-13 stsp err = got_error_from_errno("got_worktree_get_head_ref_name");
3432 09f5bd90 2019-05-09 stsp goto done;
3433 09f5bd90 2019-05-09 stsp }
3434 2f17228e 2019-05-12 stsp /* Lock the reference here to prevent concurrent modification. */
3435 2f17228e 2019-05-12 stsp err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
3436 09f5bd90 2019-05-09 stsp if (err)
3437 09f5bd90 2019-05-09 stsp goto done;
3438 09f5bd90 2019-05-09 stsp err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
3439 ebf99748 2019-05-09 stsp if (err)
3440 ebf99748 2019-05-09 stsp goto done;
3441 09f5bd90 2019-05-09 stsp if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
3442 09f5bd90 2019-05-09 stsp err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
3443 09f5bd90 2019-05-09 stsp goto done;
3444 09f5bd90 2019-05-09 stsp }
3445 09f5bd90 2019-05-09 stsp /* Update branch head in repository. */
3446 2f17228e 2019-05-12 stsp err = got_ref_change_ref(head_ref2, *new_commit_id);
3447 f2c16586 2019-05-09 stsp if (err)
3448 f2c16586 2019-05-09 stsp goto done;
3449 2f17228e 2019-05-12 stsp err = got_ref_write(head_ref2, repo);
3450 f2c16586 2019-05-09 stsp if (err)
3451 f2c16586 2019-05-09 stsp goto done;
3452 f2c16586 2019-05-09 stsp
3453 09f5bd90 2019-05-09 stsp err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
3454 09f5bd90 2019-05-09 stsp if (err)
3455 09f5bd90 2019-05-09 stsp goto done;
3456 09f5bd90 2019-05-09 stsp
3457 ebf99748 2019-05-09 stsp err = ref_base_commit(worktree, repo);
3458 ebf99748 2019-05-09 stsp if (err)
3459 ebf99748 2019-05-09 stsp goto done;
3460 c4296144 2019-05-09 stsp done:
3461 588edf97 2019-05-10 stsp if (head_tree)
3462 588edf97 2019-05-10 stsp got_object_tree_close(head_tree);
3463 588edf97 2019-05-10 stsp if (head_commit)
3464 588edf97 2019-05-10 stsp got_object_commit_close(head_commit);
3465 09f5bd90 2019-05-09 stsp free(head_commit_id2);
3466 2f17228e 2019-05-12 stsp if (head_ref2) {
3467 2f17228e 2019-05-12 stsp unlockerr = got_ref_unlock(head_ref2);
3468 2f17228e 2019-05-12 stsp if (unlockerr && err == NULL)
3469 2f17228e 2019-05-12 stsp err = unlockerr;
3470 09f5bd90 2019-05-09 stsp got_ref_close(head_ref2);
3471 39cd0ff6 2019-07-12 stsp }
3472 39cd0ff6 2019-07-12 stsp return err;
3473 39cd0ff6 2019-07-12 stsp }
3474 39cd0ff6 2019-07-12 stsp
3475 39cd0ff6 2019-07-12 stsp const struct got_error *
3476 39cd0ff6 2019-07-12 stsp got_worktree_commit(struct got_object_id **new_commit_id,
3477 39cd0ff6 2019-07-12 stsp struct got_worktree *worktree, const char *ondisk_path,
3478 39cd0ff6 2019-07-12 stsp const char *author, const char *committer,
3479 39cd0ff6 2019-07-12 stsp got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
3480 39cd0ff6 2019-07-12 stsp got_worktree_status_cb status_cb, void *status_arg,
3481 39cd0ff6 2019-07-12 stsp struct got_repository *repo)
3482 39cd0ff6 2019-07-12 stsp {
3483 39cd0ff6 2019-07-12 stsp const struct got_error *err = NULL, *unlockerr = NULL, *sync_err;
3484 39cd0ff6 2019-07-12 stsp struct got_fileindex *fileindex = NULL;
3485 39cd0ff6 2019-07-12 stsp char *fileindex_path = NULL, *relpath = NULL;
3486 39cd0ff6 2019-07-12 stsp struct got_pathlist_head commitable_paths;
3487 39cd0ff6 2019-07-12 stsp struct collect_commitables_arg cc_arg;
3488 39cd0ff6 2019-07-12 stsp struct got_pathlist_entry *pe;
3489 39cd0ff6 2019-07-12 stsp struct got_reference *head_ref = NULL;
3490 39cd0ff6 2019-07-12 stsp struct got_object_id *head_commit_id = NULL;
3491 39cd0ff6 2019-07-12 stsp
3492 39cd0ff6 2019-07-12 stsp *new_commit_id = NULL;
3493 39cd0ff6 2019-07-12 stsp
3494 39cd0ff6 2019-07-12 stsp TAILQ_INIT(&commitable_paths);
3495 39cd0ff6 2019-07-12 stsp
3496 39cd0ff6 2019-07-12 stsp err = lock_worktree(worktree, LOCK_EX);
3497 39cd0ff6 2019-07-12 stsp if (err)
3498 39cd0ff6 2019-07-12 stsp goto done;
3499 39cd0ff6 2019-07-12 stsp
3500 39cd0ff6 2019-07-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
3501 39cd0ff6 2019-07-12 stsp if (err)
3502 39cd0ff6 2019-07-12 stsp goto done;
3503 39cd0ff6 2019-07-12 stsp
3504 39cd0ff6 2019-07-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
3505 39cd0ff6 2019-07-12 stsp if (err)
3506 39cd0ff6 2019-07-12 stsp goto done;
3507 39cd0ff6 2019-07-12 stsp
3508 39cd0ff6 2019-07-12 stsp if (ondisk_path) {
3509 90e8619e 2019-07-25 stsp if (strcmp(ondisk_path, worktree->root_path) == 0) {
3510 90e8619e 2019-07-25 stsp relpath = strdup("");
3511 90e8619e 2019-07-25 stsp if (relpath == NULL) {
3512 90e8619e 2019-07-25 stsp err = got_error_from_errno("strdup");
3513 90e8619e 2019-07-25 stsp goto done;
3514 90e8619e 2019-07-25 stsp }
3515 90e8619e 2019-07-25 stsp } else {
3516 90e8619e 2019-07-25 stsp err = got_path_skip_common_ancestor(&relpath,
3517 90e8619e 2019-07-25 stsp worktree->root_path, ondisk_path);
3518 90e8619e 2019-07-25 stsp if (err)
3519 90e8619e 2019-07-25 stsp return err;
3520 90e8619e 2019-07-25 stsp }
3521 2f17228e 2019-05-12 stsp }
3522 39cd0ff6 2019-07-12 stsp
3523 39cd0ff6 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3524 39cd0ff6 2019-07-12 stsp if (err)
3525 39cd0ff6 2019-07-12 stsp goto done;
3526 39cd0ff6 2019-07-12 stsp
3527 39cd0ff6 2019-07-12 stsp cc_arg.commitable_paths = &commitable_paths;
3528 39cd0ff6 2019-07-12 stsp cc_arg.worktree = worktree;
3529 39cd0ff6 2019-07-12 stsp cc_arg.repo = repo;
3530 39cd0ff6 2019-07-12 stsp err = worktree_status(worktree, relpath ? relpath : "",
3531 39cd0ff6 2019-07-12 stsp fileindex, repo, collect_commitables, &cc_arg, NULL, NULL);
3532 39cd0ff6 2019-07-12 stsp if (err)
3533 39cd0ff6 2019-07-12 stsp goto done;
3534 39cd0ff6 2019-07-12 stsp
3535 39cd0ff6 2019-07-12 stsp if (TAILQ_EMPTY(&commitable_paths)) {
3536 39cd0ff6 2019-07-12 stsp err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
3537 39cd0ff6 2019-07-12 stsp goto done;
3538 39cd0ff6 2019-07-12 stsp }
3539 39cd0ff6 2019-07-12 stsp
3540 b50cabdf 2019-07-12 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3541 b50cabdf 2019-07-12 stsp struct got_commitable *ct = pe->data;
3542 b50cabdf 2019-07-12 stsp err = check_ct_out_of_date(ct, repo, head_commit_id);
3543 b50cabdf 2019-07-12 stsp if (err)
3544 b50cabdf 2019-07-12 stsp goto done;
3545 b50cabdf 2019-07-12 stsp }
3546 b50cabdf 2019-07-12 stsp
3547 39cd0ff6 2019-07-12 stsp err = commit_worktree(new_commit_id, &commitable_paths,
3548 39cd0ff6 2019-07-12 stsp head_commit_id, worktree, ondisk_path, author, committer,
3549 39cd0ff6 2019-07-12 stsp commit_msg_cb, commit_arg, status_cb, status_arg, repo);
3550 39cd0ff6 2019-07-12 stsp if (err)
3551 39cd0ff6 2019-07-12 stsp goto done;
3552 39cd0ff6 2019-07-12 stsp
3553 93ec1b5f 2019-07-12 stsp err = update_fileindex_after_commit(&commitable_paths, *new_commit_id,
3554 93ec1b5f 2019-07-12 stsp fileindex);
3555 39cd0ff6 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
3556 39cd0ff6 2019-07-12 stsp if (sync_err && err == NULL)
3557 39cd0ff6 2019-07-12 stsp err = sync_err;
3558 39cd0ff6 2019-07-12 stsp done:
3559 39cd0ff6 2019-07-12 stsp if (fileindex)
3560 39cd0ff6 2019-07-12 stsp got_fileindex_free(fileindex);
3561 39cd0ff6 2019-07-12 stsp free(fileindex_path);
3562 39cd0ff6 2019-07-12 stsp free(relpath);
3563 39cd0ff6 2019-07-12 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
3564 39cd0ff6 2019-07-12 stsp if (unlockerr && err == NULL)
3565 39cd0ff6 2019-07-12 stsp err = unlockerr;
3566 39cd0ff6 2019-07-12 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3567 39cd0ff6 2019-07-12 stsp struct got_commitable *ct = pe->data;
3568 39cd0ff6 2019-07-12 stsp free_commitable(ct);
3569 39cd0ff6 2019-07-12 stsp }
3570 39cd0ff6 2019-07-12 stsp got_pathlist_free(&commitable_paths);
3571 c4296144 2019-05-09 stsp return err;
3572 8656d6c4 2019-05-20 stsp }
3573 8656d6c4 2019-05-20 stsp
3574 8656d6c4 2019-05-20 stsp const char *
3575 8656d6c4 2019-05-20 stsp got_commitable_get_path(struct got_commitable *ct)
3576 8656d6c4 2019-05-20 stsp {
3577 8656d6c4 2019-05-20 stsp return ct->path;
3578 8656d6c4 2019-05-20 stsp }
3579 8656d6c4 2019-05-20 stsp
3580 8656d6c4 2019-05-20 stsp unsigned int
3581 8656d6c4 2019-05-20 stsp got_commitable_get_status(struct got_commitable *ct)
3582 8656d6c4 2019-05-20 stsp {
3583 8656d6c4 2019-05-20 stsp return ct->status;
3584 818c7501 2019-07-11 stsp }
3585 818c7501 2019-07-11 stsp
3586 818c7501 2019-07-11 stsp struct check_rebase_ok_arg {
3587 818c7501 2019-07-11 stsp struct got_worktree *worktree;
3588 818c7501 2019-07-11 stsp struct got_repository *repo;
3589 818c7501 2019-07-11 stsp int rebase_in_progress;
3590 818c7501 2019-07-11 stsp };
3591 818c7501 2019-07-11 stsp
3592 818c7501 2019-07-11 stsp static const struct got_error *
3593 818c7501 2019-07-11 stsp check_rebase_ok(void *arg, struct got_fileindex_entry *ie)
3594 818c7501 2019-07-11 stsp {
3595 818c7501 2019-07-11 stsp const struct got_error *err = NULL;
3596 818c7501 2019-07-11 stsp struct check_rebase_ok_arg *a = arg;
3597 818c7501 2019-07-11 stsp unsigned char status;
3598 818c7501 2019-07-11 stsp struct stat sb;
3599 818c7501 2019-07-11 stsp char *ondisk_path;
3600 818c7501 2019-07-11 stsp
3601 818c7501 2019-07-11 stsp if (!a->rebase_in_progress) {
3602 818c7501 2019-07-11 stsp /* Reject rebase of a work tree with mixed base commits. */
3603 818c7501 2019-07-11 stsp if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
3604 818c7501 2019-07-11 stsp SHA1_DIGEST_LENGTH))
3605 818c7501 2019-07-11 stsp return got_error(GOT_ERR_MIXED_COMMITS);
3606 818c7501 2019-07-11 stsp }
3607 818c7501 2019-07-11 stsp
3608 818c7501 2019-07-11 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
3609 818c7501 2019-07-11 stsp == -1)
3610 818c7501 2019-07-11 stsp return got_error_from_errno("asprintf");
3611 818c7501 2019-07-11 stsp
3612 818c7501 2019-07-11 stsp /* Reject rebase of a work tree with modified or conflicted files. */
3613 818c7501 2019-07-11 stsp err = get_file_status(&status, &sb, ie, ondisk_path, a->repo);
3614 818c7501 2019-07-11 stsp free(ondisk_path);
3615 818c7501 2019-07-11 stsp if (err)
3616 818c7501 2019-07-11 stsp return err;
3617 818c7501 2019-07-11 stsp
3618 818c7501 2019-07-11 stsp if (a->rebase_in_progress) {
3619 818c7501 2019-07-11 stsp if (status == GOT_STATUS_CONFLICT)
3620 818c7501 2019-07-11 stsp return got_error(GOT_ERR_CONFLICTS);
3621 818c7501 2019-07-11 stsp } else if (status != GOT_STATUS_NO_CHANGE)
3622 818c7501 2019-07-11 stsp return got_error(GOT_ERR_MODIFIED);
3623 818c7501 2019-07-11 stsp
3624 818c7501 2019-07-11 stsp return NULL;
3625 818c7501 2019-07-11 stsp }
3626 818c7501 2019-07-11 stsp
3627 818c7501 2019-07-11 stsp const struct got_error *
3628 818c7501 2019-07-11 stsp got_worktree_rebase_prepare(struct got_reference **new_base_branch_ref,
3629 3e3a69f1 2019-07-25 stsp struct got_reference **tmp_branch, struct got_fileindex **fileindex,
3630 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_reference *branch,
3631 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
3632 818c7501 2019-07-11 stsp {
3633 818c7501 2019-07-11 stsp const struct got_error *err = NULL;
3634 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
3635 818c7501 2019-07-11 stsp char *branch_ref_name = NULL;
3636 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
3637 818c7501 2019-07-11 stsp struct check_rebase_ok_arg ok_arg;
3638 818c7501 2019-07-11 stsp struct got_reference *wt_branch = NULL, *branch_ref = NULL;
3639 818c7501 2019-07-11 stsp
3640 818c7501 2019-07-11 stsp *new_base_branch_ref = NULL;
3641 818c7501 2019-07-11 stsp *tmp_branch = NULL;
3642 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
3643 818c7501 2019-07-11 stsp
3644 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
3645 818c7501 2019-07-11 stsp if (err)
3646 818c7501 2019-07-11 stsp return err;
3647 818c7501 2019-07-11 stsp
3648 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
3649 818c7501 2019-07-11 stsp if (err)
3650 818c7501 2019-07-11 stsp goto done;
3651 818c7501 2019-07-11 stsp
3652 818c7501 2019-07-11 stsp ok_arg.worktree = worktree;
3653 818c7501 2019-07-11 stsp ok_arg.repo = repo;
3654 818c7501 2019-07-11 stsp ok_arg.rebase_in_progress = 0;
3655 3e3a69f1 2019-07-25 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
3656 818c7501 2019-07-11 stsp &ok_arg);
3657 818c7501 2019-07-11 stsp if (err)
3658 818c7501 2019-07-11 stsp goto done;
3659 818c7501 2019-07-11 stsp
3660 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
3661 818c7501 2019-07-11 stsp if (err)
3662 818c7501 2019-07-11 stsp goto done;
3663 818c7501 2019-07-11 stsp
3664 818c7501 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
3665 818c7501 2019-07-11 stsp if (err)
3666 818c7501 2019-07-11 stsp goto done;
3667 818c7501 2019-07-11 stsp
3668 818c7501 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
3669 818c7501 2019-07-11 stsp if (err)
3670 818c7501 2019-07-11 stsp goto done;
3671 818c7501 2019-07-11 stsp
3672 818c7501 2019-07-11 stsp err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
3673 818c7501 2019-07-11 stsp 0);
3674 818c7501 2019-07-11 stsp if (err)
3675 818c7501 2019-07-11 stsp goto done;
3676 818c7501 2019-07-11 stsp
3677 818c7501 2019-07-11 stsp err = got_ref_alloc_symref(new_base_branch_ref,
3678 818c7501 2019-07-11 stsp new_base_branch_ref_name, wt_branch);
3679 818c7501 2019-07-11 stsp if (err)
3680 818c7501 2019-07-11 stsp goto done;
3681 818c7501 2019-07-11 stsp err = got_ref_write(*new_base_branch_ref, repo);
3682 818c7501 2019-07-11 stsp if (err)
3683 818c7501 2019-07-11 stsp goto done;
3684 818c7501 2019-07-11 stsp
3685 818c7501 2019-07-11 stsp /* TODO Lock original branch's ref while rebasing? */
3686 818c7501 2019-07-11 stsp
3687 818c7501 2019-07-11 stsp err = got_ref_alloc_symref(&branch_ref, branch_ref_name, branch);
3688 818c7501 2019-07-11 stsp if (err)
3689 818c7501 2019-07-11 stsp goto done;
3690 818c7501 2019-07-11 stsp
3691 818c7501 2019-07-11 stsp err = got_ref_write(branch_ref, repo);
3692 818c7501 2019-07-11 stsp if (err)
3693 818c7501 2019-07-11 stsp goto done;
3694 818c7501 2019-07-11 stsp
3695 818c7501 2019-07-11 stsp err = got_ref_alloc(tmp_branch, tmp_branch_name,
3696 818c7501 2019-07-11 stsp worktree->base_commit_id);
3697 818c7501 2019-07-11 stsp if (err)
3698 818c7501 2019-07-11 stsp goto done;
3699 818c7501 2019-07-11 stsp err = got_ref_write(*tmp_branch, repo);
3700 818c7501 2019-07-11 stsp if (err)
3701 818c7501 2019-07-11 stsp goto done;
3702 818c7501 2019-07-11 stsp
3703 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, *tmp_branch);
3704 818c7501 2019-07-11 stsp if (err)
3705 818c7501 2019-07-11 stsp goto done;
3706 818c7501 2019-07-11 stsp done:
3707 818c7501 2019-07-11 stsp free(fileindex_path);
3708 818c7501 2019-07-11 stsp free(tmp_branch_name);
3709 818c7501 2019-07-11 stsp free(new_base_branch_ref_name);
3710 818c7501 2019-07-11 stsp free(branch_ref_name);
3711 818c7501 2019-07-11 stsp if (branch_ref)
3712 818c7501 2019-07-11 stsp got_ref_close(branch_ref);
3713 818c7501 2019-07-11 stsp if (wt_branch)
3714 818c7501 2019-07-11 stsp got_ref_close(wt_branch);
3715 818c7501 2019-07-11 stsp if (err) {
3716 818c7501 2019-07-11 stsp if (*new_base_branch_ref) {
3717 818c7501 2019-07-11 stsp got_ref_close(*new_base_branch_ref);
3718 818c7501 2019-07-11 stsp *new_base_branch_ref = NULL;
3719 818c7501 2019-07-11 stsp }
3720 818c7501 2019-07-11 stsp if (*tmp_branch) {
3721 818c7501 2019-07-11 stsp got_ref_close(*tmp_branch);
3722 818c7501 2019-07-11 stsp *tmp_branch = NULL;
3723 818c7501 2019-07-11 stsp }
3724 3e3a69f1 2019-07-25 stsp if (*fileindex) {
3725 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
3726 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
3727 3e3a69f1 2019-07-25 stsp }
3728 818c7501 2019-07-11 stsp lock_worktree(worktree, LOCK_SH);
3729 818c7501 2019-07-11 stsp }
3730 818c7501 2019-07-11 stsp return err;
3731 818c7501 2019-07-11 stsp }
3732 818c7501 2019-07-11 stsp
3733 818c7501 2019-07-11 stsp const struct got_error *
3734 818c7501 2019-07-11 stsp got_worktree_rebase_continue(struct got_object_id **commit_id,
3735 818c7501 2019-07-11 stsp struct got_reference **new_base_branch, struct got_reference **tmp_branch,
3736 3e3a69f1 2019-07-25 stsp struct got_reference **branch, struct got_fileindex **fileindex,
3737 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_repository *repo)
3738 818c7501 2019-07-11 stsp {
3739 818c7501 2019-07-11 stsp const struct got_error *err;
3740 818c7501 2019-07-11 stsp char *commit_ref_name = NULL, *new_base_branch_ref_name = NULL;
3741 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL, *branch_ref_name = NULL;
3742 818c7501 2019-07-11 stsp struct got_reference *commit_ref = NULL, *branch_ref = NULL;
3743 3e3a69f1 2019-07-25 stsp char *fileindex_path = NULL;
3744 818c7501 2019-07-11 stsp
3745 818c7501 2019-07-11 stsp *commit_id = NULL;
3746 3e3a69f1 2019-07-25 stsp *new_base_branch = NULL;
3747 3e3a69f1 2019-07-25 stsp *tmp_branch = NULL;
3748 3e3a69f1 2019-07-25 stsp *branch = NULL;
3749 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
3750 3e3a69f1 2019-07-25 stsp
3751 3e3a69f1 2019-07-25 stsp err = lock_worktree(worktree, LOCK_EX);
3752 3e3a69f1 2019-07-25 stsp if (err)
3753 3e3a69f1 2019-07-25 stsp return err;
3754 818c7501 2019-07-11 stsp
3755 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
3756 3e3a69f1 2019-07-25 stsp if (err)
3757 3e3a69f1 2019-07-25 stsp goto done;
3758 3e3a69f1 2019-07-25 stsp
3759 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
3760 818c7501 2019-07-11 stsp if (err)
3761 818c7501 2019-07-11 stsp return err;
3762 818c7501 2019-07-11 stsp
3763 818c7501 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
3764 818c7501 2019-07-11 stsp if (err)
3765 818c7501 2019-07-11 stsp goto done;
3766 818c7501 2019-07-11 stsp
3767 818c7501 2019-07-11 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
3768 818c7501 2019-07-11 stsp if (err)
3769 818c7501 2019-07-11 stsp goto done;
3770 818c7501 2019-07-11 stsp
3771 818c7501 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
3772 818c7501 2019-07-11 stsp if (err)
3773 818c7501 2019-07-11 stsp goto done;
3774 818c7501 2019-07-11 stsp
3775 818c7501 2019-07-11 stsp err = got_ref_open(&branch_ref, repo, branch_ref_name, 0);
3776 818c7501 2019-07-11 stsp if (err)
3777 818c7501 2019-07-11 stsp goto done;
3778 818c7501 2019-07-11 stsp
3779 818c7501 2019-07-11 stsp err = got_ref_open(branch, repo,
3780 818c7501 2019-07-11 stsp got_ref_get_symref_target(branch_ref), 0);
3781 818c7501 2019-07-11 stsp if (err)
3782 818c7501 2019-07-11 stsp goto done;
3783 818c7501 2019-07-11 stsp
3784 818c7501 2019-07-11 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
3785 818c7501 2019-07-11 stsp if (err)
3786 818c7501 2019-07-11 stsp goto done;
3787 818c7501 2019-07-11 stsp
3788 818c7501 2019-07-11 stsp err = got_ref_resolve(commit_id, repo, commit_ref);
3789 818c7501 2019-07-11 stsp if (err)
3790 818c7501 2019-07-11 stsp goto done;
3791 818c7501 2019-07-11 stsp
3792 818c7501 2019-07-11 stsp err = got_ref_open(new_base_branch, repo,
3793 818c7501 2019-07-11 stsp new_base_branch_ref_name, 0);
3794 818c7501 2019-07-11 stsp if (err)
3795 818c7501 2019-07-11 stsp goto done;
3796 818c7501 2019-07-11 stsp
3797 818c7501 2019-07-11 stsp err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
3798 818c7501 2019-07-11 stsp if (err)
3799 818c7501 2019-07-11 stsp goto done;
3800 818c7501 2019-07-11 stsp done:
3801 818c7501 2019-07-11 stsp free(commit_ref_name);
3802 818c7501 2019-07-11 stsp free(branch_ref_name);
3803 3e3a69f1 2019-07-25 stsp free(fileindex_path);
3804 818c7501 2019-07-11 stsp if (commit_ref)
3805 818c7501 2019-07-11 stsp got_ref_close(commit_ref);
3806 818c7501 2019-07-11 stsp if (branch_ref)
3807 818c7501 2019-07-11 stsp got_ref_close(branch_ref);
3808 818c7501 2019-07-11 stsp if (err) {
3809 818c7501 2019-07-11 stsp free(*commit_id);
3810 818c7501 2019-07-11 stsp *commit_id = NULL;
3811 818c7501 2019-07-11 stsp if (*tmp_branch) {
3812 818c7501 2019-07-11 stsp got_ref_close(*tmp_branch);
3813 818c7501 2019-07-11 stsp *tmp_branch = NULL;
3814 818c7501 2019-07-11 stsp }
3815 818c7501 2019-07-11 stsp if (*new_base_branch) {
3816 818c7501 2019-07-11 stsp got_ref_close(*new_base_branch);
3817 818c7501 2019-07-11 stsp *new_base_branch = NULL;
3818 818c7501 2019-07-11 stsp }
3819 818c7501 2019-07-11 stsp if (*branch) {
3820 818c7501 2019-07-11 stsp got_ref_close(*branch);
3821 818c7501 2019-07-11 stsp *branch = NULL;
3822 818c7501 2019-07-11 stsp }
3823 3e3a69f1 2019-07-25 stsp if (*fileindex) {
3824 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
3825 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
3826 3e3a69f1 2019-07-25 stsp }
3827 3e3a69f1 2019-07-25 stsp lock_worktree(worktree, LOCK_SH);
3828 818c7501 2019-07-11 stsp }
3829 818c7501 2019-07-11 stsp return err;
3830 c4296144 2019-05-09 stsp }
3831 818c7501 2019-07-11 stsp
3832 818c7501 2019-07-11 stsp const struct got_error *
3833 818c7501 2019-07-11 stsp got_worktree_rebase_in_progress(int *in_progress, struct got_worktree *worktree)
3834 818c7501 2019-07-11 stsp {
3835 818c7501 2019-07-11 stsp const struct got_error *err;
3836 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL;
3837 818c7501 2019-07-11 stsp
3838 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
3839 818c7501 2019-07-11 stsp if (err)
3840 818c7501 2019-07-11 stsp return err;
3841 818c7501 2019-07-11 stsp
3842 818c7501 2019-07-11 stsp *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
3843 818c7501 2019-07-11 stsp free(tmp_branch_name);
3844 818c7501 2019-07-11 stsp return NULL;
3845 818c7501 2019-07-11 stsp }
3846 818c7501 2019-07-11 stsp
3847 818c7501 2019-07-11 stsp static const struct got_error *
3848 818c7501 2019-07-11 stsp collect_rebase_commit_msg(struct got_pathlist_head *commitable_paths,
3849 818c7501 2019-07-11 stsp char **logmsg, void *arg)
3850 818c7501 2019-07-11 stsp {
3851 0ebf8283 2019-07-24 stsp *logmsg = arg;
3852 818c7501 2019-07-11 stsp return NULL;
3853 818c7501 2019-07-11 stsp }
3854 818c7501 2019-07-11 stsp
3855 818c7501 2019-07-11 stsp static const struct got_error *
3856 818c7501 2019-07-11 stsp rebase_status(void *arg, unsigned char status, const char *path,
3857 818c7501 2019-07-11 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
3858 818c7501 2019-07-11 stsp {
3859 818c7501 2019-07-11 stsp return NULL;
3860 01757395 2019-07-12 stsp }
3861 01757395 2019-07-12 stsp
3862 01757395 2019-07-12 stsp struct collect_merged_paths_arg {
3863 01757395 2019-07-12 stsp got_worktree_checkout_cb progress_cb;
3864 01757395 2019-07-12 stsp void *progress_arg;
3865 01757395 2019-07-12 stsp struct got_pathlist_head *merged_paths;
3866 01757395 2019-07-12 stsp };
3867 01757395 2019-07-12 stsp
3868 01757395 2019-07-12 stsp static const struct got_error *
3869 01757395 2019-07-12 stsp collect_merged_paths(void *arg, unsigned char status, const char *path)
3870 01757395 2019-07-12 stsp {
3871 01757395 2019-07-12 stsp const struct got_error *err;
3872 01757395 2019-07-12 stsp struct collect_merged_paths_arg *a = arg;
3873 01757395 2019-07-12 stsp char *p;
3874 01757395 2019-07-12 stsp struct got_pathlist_entry *new;
3875 01757395 2019-07-12 stsp
3876 01757395 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path);
3877 01757395 2019-07-12 stsp if (err)
3878 01757395 2019-07-12 stsp return err;
3879 01757395 2019-07-12 stsp
3880 01757395 2019-07-12 stsp if (status != GOT_STATUS_MERGE &&
3881 01757395 2019-07-12 stsp status != GOT_STATUS_ADD &&
3882 01757395 2019-07-12 stsp status != GOT_STATUS_DELETE &&
3883 01757395 2019-07-12 stsp status != GOT_STATUS_CONFLICT)
3884 01757395 2019-07-12 stsp return NULL;
3885 01757395 2019-07-12 stsp
3886 01757395 2019-07-12 stsp p = strdup(path);
3887 01757395 2019-07-12 stsp if (p == NULL)
3888 01757395 2019-07-12 stsp return got_error_from_errno("strdup");
3889 01757395 2019-07-12 stsp
3890 01757395 2019-07-12 stsp err = got_pathlist_insert(&new, a->merged_paths, p, NULL);
3891 01757395 2019-07-12 stsp if (err || new == NULL)
3892 01757395 2019-07-12 stsp free(p);
3893 01757395 2019-07-12 stsp return err;
3894 01757395 2019-07-12 stsp }
3895 01757395 2019-07-12 stsp
3896 01757395 2019-07-12 stsp void
3897 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(struct got_pathlist_head *merged_paths)
3898 01757395 2019-07-12 stsp {
3899 01757395 2019-07-12 stsp struct got_pathlist_entry *pe;
3900 01757395 2019-07-12 stsp
3901 01757395 2019-07-12 stsp TAILQ_FOREACH(pe, merged_paths, entry)
3902 01757395 2019-07-12 stsp free((char *)pe->path);
3903 01757395 2019-07-12 stsp
3904 01757395 2019-07-12 stsp got_pathlist_free(merged_paths);
3905 818c7501 2019-07-11 stsp }
3906 818c7501 2019-07-11 stsp
3907 0ebf8283 2019-07-24 stsp static const struct got_error *
3908 0ebf8283 2019-07-24 stsp store_commit_id(const char *commit_ref_name, struct got_object_id *commit_id,
3909 0ebf8283 2019-07-24 stsp struct got_repository *repo)
3910 818c7501 2019-07-11 stsp {
3911 818c7501 2019-07-11 stsp const struct got_error *err;
3912 818c7501 2019-07-11 stsp struct got_reference *commit_ref = NULL;
3913 818c7501 2019-07-11 stsp
3914 818c7501 2019-07-11 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
3915 818c7501 2019-07-11 stsp if (err) {
3916 818c7501 2019-07-11 stsp if (err->code != GOT_ERR_NOT_REF)
3917 818c7501 2019-07-11 stsp goto done;
3918 818c7501 2019-07-11 stsp err = got_ref_alloc(&commit_ref, commit_ref_name, commit_id);
3919 818c7501 2019-07-11 stsp if (err)
3920 818c7501 2019-07-11 stsp goto done;
3921 818c7501 2019-07-11 stsp err = got_ref_write(commit_ref, repo);
3922 818c7501 2019-07-11 stsp if (err)
3923 818c7501 2019-07-11 stsp goto done;
3924 818c7501 2019-07-11 stsp } else {
3925 818c7501 2019-07-11 stsp struct got_object_id *stored_id;
3926 818c7501 2019-07-11 stsp int cmp;
3927 818c7501 2019-07-11 stsp
3928 818c7501 2019-07-11 stsp err = got_ref_resolve(&stored_id, repo, commit_ref);
3929 818c7501 2019-07-11 stsp if (err)
3930 818c7501 2019-07-11 stsp goto done;
3931 818c7501 2019-07-11 stsp cmp = got_object_id_cmp(commit_id, stored_id);
3932 818c7501 2019-07-11 stsp free(stored_id);
3933 818c7501 2019-07-11 stsp if (cmp != 0) {
3934 818c7501 2019-07-11 stsp err = got_error(GOT_ERR_REBASE_COMMITID);
3935 818c7501 2019-07-11 stsp goto done;
3936 818c7501 2019-07-11 stsp }
3937 818c7501 2019-07-11 stsp }
3938 0ebf8283 2019-07-24 stsp done:
3939 0ebf8283 2019-07-24 stsp if (commit_ref)
3940 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
3941 0ebf8283 2019-07-24 stsp return err;
3942 0ebf8283 2019-07-24 stsp }
3943 0ebf8283 2019-07-24 stsp
3944 0ebf8283 2019-07-24 stsp static const struct got_error *
3945 0ebf8283 2019-07-24 stsp rebase_merge_files(struct got_pathlist_head *merged_paths,
3946 0ebf8283 2019-07-24 stsp const char *commit_ref_name, struct got_worktree *worktree,
3947 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_object_id *parent_commit_id,
3948 3e3a69f1 2019-07-25 stsp struct got_object_id *commit_id, struct got_repository *repo,
3949 3e3a69f1 2019-07-25 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
3950 3e3a69f1 2019-07-25 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
3951 0ebf8283 2019-07-24 stsp {
3952 0ebf8283 2019-07-24 stsp const struct got_error *err;
3953 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
3954 0ebf8283 2019-07-24 stsp struct collect_merged_paths_arg cmp_arg;
3955 3e3a69f1 2019-07-25 stsp char *fileindex_path;
3956 818c7501 2019-07-11 stsp
3957 0ebf8283 2019-07-24 stsp /* Work tree is locked/unlocked during rebase preparation/teardown. */
3958 0ebf8283 2019-07-24 stsp
3959 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
3960 0ebf8283 2019-07-24 stsp if (err)
3961 0ebf8283 2019-07-24 stsp return err;
3962 0ebf8283 2019-07-24 stsp
3963 01757395 2019-07-12 stsp cmp_arg.progress_cb = progress_cb;
3964 01757395 2019-07-12 stsp cmp_arg.progress_arg = progress_arg;
3965 01757395 2019-07-12 stsp cmp_arg.merged_paths = merged_paths;
3966 818c7501 2019-07-11 stsp err = merge_files(worktree, fileindex, fileindex_path,
3967 01757395 2019-07-12 stsp parent_commit_id, commit_id, repo, collect_merged_paths,
3968 01757395 2019-07-12 stsp &cmp_arg, cancel_cb, cancel_arg);
3969 818c7501 2019-07-11 stsp if (commit_ref)
3970 818c7501 2019-07-11 stsp got_ref_close(commit_ref);
3971 818c7501 2019-07-11 stsp return err;
3972 818c7501 2019-07-11 stsp }
3973 818c7501 2019-07-11 stsp
3974 818c7501 2019-07-11 stsp const struct got_error *
3975 0ebf8283 2019-07-24 stsp got_worktree_rebase_merge_files(struct got_pathlist_head *merged_paths,
3976 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
3977 3e3a69f1 2019-07-25 stsp struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
3978 3e3a69f1 2019-07-25 stsp struct got_repository *repo,
3979 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
3980 0ebf8283 2019-07-24 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
3981 818c7501 2019-07-11 stsp {
3982 0ebf8283 2019-07-24 stsp const struct got_error *err;
3983 0ebf8283 2019-07-24 stsp char *commit_ref_name;
3984 0ebf8283 2019-07-24 stsp
3985 0ebf8283 2019-07-24 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
3986 0ebf8283 2019-07-24 stsp if (err)
3987 0ebf8283 2019-07-24 stsp return err;
3988 0ebf8283 2019-07-24 stsp
3989 0ebf8283 2019-07-24 stsp err = store_commit_id(commit_ref_name, commit_id, repo);
3990 0ebf8283 2019-07-24 stsp if (err)
3991 0ebf8283 2019-07-24 stsp goto done;
3992 0ebf8283 2019-07-24 stsp
3993 0ebf8283 2019-07-24 stsp err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
3994 3e3a69f1 2019-07-25 stsp fileindex, parent_commit_id, commit_id, repo, progress_cb,
3995 3e3a69f1 2019-07-25 stsp progress_arg, cancel_cb, cancel_arg);
3996 0ebf8283 2019-07-24 stsp done:
3997 0ebf8283 2019-07-24 stsp free(commit_ref_name);
3998 0ebf8283 2019-07-24 stsp return err;
3999 0ebf8283 2019-07-24 stsp }
4000 0ebf8283 2019-07-24 stsp
4001 0ebf8283 2019-07-24 stsp const struct got_error *
4002 0ebf8283 2019-07-24 stsp got_worktree_histedit_merge_files(struct got_pathlist_head *merged_paths,
4003 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
4004 3e3a69f1 2019-07-25 stsp struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
4005 3e3a69f1 2019-07-25 stsp struct got_repository *repo,
4006 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
4007 0ebf8283 2019-07-24 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
4008 0ebf8283 2019-07-24 stsp {
4009 0ebf8283 2019-07-24 stsp const struct got_error *err;
4010 0ebf8283 2019-07-24 stsp char *commit_ref_name;
4011 0ebf8283 2019-07-24 stsp
4012 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
4013 0ebf8283 2019-07-24 stsp if (err)
4014 0ebf8283 2019-07-24 stsp return err;
4015 0ebf8283 2019-07-24 stsp
4016 0ebf8283 2019-07-24 stsp err = store_commit_id(commit_ref_name, commit_id, repo);
4017 0ebf8283 2019-07-24 stsp if (err)
4018 0ebf8283 2019-07-24 stsp goto done;
4019 0ebf8283 2019-07-24 stsp
4020 0ebf8283 2019-07-24 stsp err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
4021 3e3a69f1 2019-07-25 stsp fileindex, parent_commit_id, commit_id, repo, progress_cb,
4022 3e3a69f1 2019-07-25 stsp progress_arg, cancel_cb, cancel_arg);
4023 0ebf8283 2019-07-24 stsp done:
4024 0ebf8283 2019-07-24 stsp free(commit_ref_name);
4025 0ebf8283 2019-07-24 stsp return err;
4026 0ebf8283 2019-07-24 stsp }
4027 0ebf8283 2019-07-24 stsp
4028 0ebf8283 2019-07-24 stsp static const struct got_error *
4029 0ebf8283 2019-07-24 stsp rebase_commit(struct got_object_id **new_commit_id,
4030 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_reference *commit_ref,
4031 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
4032 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_commit_object *orig_commit,
4033 3e3a69f1 2019-07-25 stsp const char *new_logmsg, struct got_repository *repo)
4034 0ebf8283 2019-07-24 stsp {
4035 a0e95631 2019-07-12 stsp const struct got_error *err, *sync_err;
4036 a0e95631 2019-07-12 stsp struct got_pathlist_head commitable_paths;
4037 a0e95631 2019-07-12 stsp struct collect_commitables_arg cc_arg;
4038 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
4039 a0e95631 2019-07-12 stsp struct got_reference *head_ref = NULL;
4040 a0e95631 2019-07-12 stsp struct got_object_id *head_commit_id = NULL;
4041 0ebf8283 2019-07-24 stsp char *logmsg = NULL;
4042 818c7501 2019-07-11 stsp
4043 a0e95631 2019-07-12 stsp TAILQ_INIT(&commitable_paths);
4044 eb3df2c4 2019-07-12 stsp *new_commit_id = NULL;
4045 a0e95631 2019-07-12 stsp
4046 877a927c 2019-07-12 stsp /* Work tree is locked/unlocked during rebase preparation/teardown. */
4047 818c7501 2019-07-11 stsp
4048 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
4049 a0e95631 2019-07-12 stsp if (err)
4050 3e3a69f1 2019-07-25 stsp return err;
4051 a0e95631 2019-07-12 stsp
4052 a0e95631 2019-07-12 stsp cc_arg.commitable_paths = &commitable_paths;
4053 a0e95631 2019-07-12 stsp cc_arg.worktree = worktree;
4054 a0e95631 2019-07-12 stsp cc_arg.repo = repo;
4055 01757395 2019-07-12 stsp /*
4056 01757395 2019-07-12 stsp * If possible get the status of individual files directly to
4057 01757395 2019-07-12 stsp * avoid crawling the entire work tree once per rebased commit.
4058 01757395 2019-07-12 stsp * TODO: Ideally, merged_paths would contain a list of commitables
4059 01757395 2019-07-12 stsp * we could use so we could skip worktree_status() entirely.
4060 01757395 2019-07-12 stsp */
4061 01757395 2019-07-12 stsp if (merged_paths) {
4062 01757395 2019-07-12 stsp struct got_pathlist_entry *pe;
4063 8f8646e5 2019-07-25 stsp if (TAILQ_EMPTY(merged_paths)) {
4064 8f8646e5 2019-07-25 stsp err = got_error(GOT_ERR_NO_MERGED_PATHS);
4065 8f8646e5 2019-07-25 stsp goto done;
4066 8f8646e5 2019-07-25 stsp }
4067 01757395 2019-07-12 stsp TAILQ_FOREACH(pe, merged_paths, entry) {
4068 01757395 2019-07-12 stsp err = worktree_status(worktree, pe->path, fileindex,
4069 01757395 2019-07-12 stsp repo, collect_commitables, &cc_arg, NULL, NULL);
4070 01757395 2019-07-12 stsp if (err)
4071 01757395 2019-07-12 stsp goto done;
4072 01757395 2019-07-12 stsp }
4073 01757395 2019-07-12 stsp } else {
4074 01757395 2019-07-12 stsp err = worktree_status(worktree, "", fileindex, repo,
4075 01757395 2019-07-12 stsp collect_commitables, &cc_arg, NULL, NULL);
4076 01757395 2019-07-12 stsp if (err)
4077 01757395 2019-07-12 stsp goto done;
4078 01757395 2019-07-12 stsp }
4079 a0e95631 2019-07-12 stsp
4080 a0e95631 2019-07-12 stsp if (TAILQ_EMPTY(&commitable_paths)) {
4081 a0e95631 2019-07-12 stsp /* No-op change; commit will be elided. */
4082 a0e95631 2019-07-12 stsp err = got_ref_delete(commit_ref, repo);
4083 a0e95631 2019-07-12 stsp if (err)
4084 a0e95631 2019-07-12 stsp goto done;
4085 a0e95631 2019-07-12 stsp err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
4086 a0e95631 2019-07-12 stsp goto done;
4087 ff0d2220 2019-07-11 stsp }
4088 818c7501 2019-07-11 stsp
4089 a0e95631 2019-07-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
4090 edd02c5e 2019-07-11 stsp if (err)
4091 edd02c5e 2019-07-11 stsp goto done;
4092 edd02c5e 2019-07-11 stsp
4093 a0e95631 2019-07-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
4094 818c7501 2019-07-11 stsp if (err)
4095 818c7501 2019-07-11 stsp goto done;
4096 818c7501 2019-07-11 stsp
4097 0ebf8283 2019-07-24 stsp if (new_logmsg)
4098 0ebf8283 2019-07-24 stsp logmsg = strdup(new_logmsg);
4099 0ebf8283 2019-07-24 stsp else
4100 0ebf8283 2019-07-24 stsp logmsg = strdup(got_object_commit_get_logmsg(orig_commit));
4101 0ebf8283 2019-07-24 stsp if (logmsg == NULL)
4102 0ebf8283 2019-07-24 stsp return got_error_from_errno("strdup");
4103 0ebf8283 2019-07-24 stsp
4104 a0e95631 2019-07-12 stsp err = commit_worktree(new_commit_id, &commitable_paths, head_commit_id,
4105 a0e95631 2019-07-12 stsp worktree, NULL, got_object_commit_get_author(orig_commit),
4106 a0e95631 2019-07-12 stsp got_object_commit_get_committer(orig_commit),
4107 0ebf8283 2019-07-24 stsp collect_rebase_commit_msg, logmsg, rebase_status, NULL, repo);
4108 a0e95631 2019-07-12 stsp if (err)
4109 a0e95631 2019-07-12 stsp goto done;
4110 a0e95631 2019-07-12 stsp
4111 818c7501 2019-07-11 stsp err = got_ref_change_ref(tmp_branch, *new_commit_id);
4112 a0e95631 2019-07-12 stsp if (err)
4113 a0e95631 2019-07-12 stsp goto done;
4114 a0e95631 2019-07-12 stsp
4115 a0e95631 2019-07-12 stsp err = got_ref_delete(commit_ref, repo);
4116 a0e95631 2019-07-12 stsp if (err)
4117 a0e95631 2019-07-12 stsp goto done;
4118 a0e95631 2019-07-12 stsp
4119 93ec1b5f 2019-07-12 stsp err = update_fileindex_after_commit(&commitable_paths, *new_commit_id,
4120 93ec1b5f 2019-07-12 stsp fileindex);
4121 a0e95631 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4122 a0e95631 2019-07-12 stsp if (sync_err && err == NULL)
4123 a0e95631 2019-07-12 stsp err = sync_err;
4124 818c7501 2019-07-11 stsp done:
4125 a0e95631 2019-07-12 stsp free(fileindex_path);
4126 a0e95631 2019-07-12 stsp free(head_commit_id);
4127 a0e95631 2019-07-12 stsp if (head_ref)
4128 a0e95631 2019-07-12 stsp got_ref_close(head_ref);
4129 818c7501 2019-07-11 stsp if (err) {
4130 818c7501 2019-07-11 stsp free(*new_commit_id);
4131 818c7501 2019-07-11 stsp *new_commit_id = NULL;
4132 818c7501 2019-07-11 stsp }
4133 818c7501 2019-07-11 stsp return err;
4134 818c7501 2019-07-11 stsp }
4135 818c7501 2019-07-11 stsp
4136 818c7501 2019-07-11 stsp const struct got_error *
4137 0ebf8283 2019-07-24 stsp got_worktree_rebase_commit(struct got_object_id **new_commit_id,
4138 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
4139 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
4140 3e3a69f1 2019-07-25 stsp struct got_commit_object *orig_commit,
4141 0ebf8283 2019-07-24 stsp struct got_object_id *orig_commit_id, struct got_repository *repo)
4142 0ebf8283 2019-07-24 stsp {
4143 0ebf8283 2019-07-24 stsp const struct got_error *err;
4144 0ebf8283 2019-07-24 stsp char *commit_ref_name;
4145 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
4146 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id = NULL;
4147 0ebf8283 2019-07-24 stsp
4148 0ebf8283 2019-07-24 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
4149 0ebf8283 2019-07-24 stsp if (err)
4150 0ebf8283 2019-07-24 stsp return err;
4151 0ebf8283 2019-07-24 stsp
4152 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
4153 0ebf8283 2019-07-24 stsp if (err)
4154 0ebf8283 2019-07-24 stsp goto done;
4155 0ebf8283 2019-07-24 stsp err = got_ref_resolve(&commit_id, repo, commit_ref);
4156 0ebf8283 2019-07-24 stsp if (err)
4157 0ebf8283 2019-07-24 stsp goto done;
4158 0ebf8283 2019-07-24 stsp if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
4159 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_REBASE_COMMITID);
4160 0ebf8283 2019-07-24 stsp goto done;
4161 0ebf8283 2019-07-24 stsp }
4162 0ebf8283 2019-07-24 stsp
4163 0ebf8283 2019-07-24 stsp err = rebase_commit(new_commit_id, merged_paths, commit_ref,
4164 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, orig_commit, NULL, repo);
4165 0ebf8283 2019-07-24 stsp done:
4166 0ebf8283 2019-07-24 stsp if (commit_ref)
4167 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
4168 0ebf8283 2019-07-24 stsp free(commit_ref_name);
4169 0ebf8283 2019-07-24 stsp free(commit_id);
4170 0ebf8283 2019-07-24 stsp return err;
4171 0ebf8283 2019-07-24 stsp }
4172 0ebf8283 2019-07-24 stsp
4173 0ebf8283 2019-07-24 stsp const struct got_error *
4174 0ebf8283 2019-07-24 stsp got_worktree_histedit_commit(struct got_object_id **new_commit_id,
4175 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
4176 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
4177 3e3a69f1 2019-07-25 stsp struct got_commit_object *orig_commit,
4178 0ebf8283 2019-07-24 stsp struct got_object_id *orig_commit_id, const char *new_logmsg,
4179 0ebf8283 2019-07-24 stsp struct got_repository *repo)
4180 0ebf8283 2019-07-24 stsp {
4181 0ebf8283 2019-07-24 stsp const struct got_error *err;
4182 0ebf8283 2019-07-24 stsp char *commit_ref_name;
4183 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
4184 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id = NULL;
4185 0ebf8283 2019-07-24 stsp
4186 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
4187 0ebf8283 2019-07-24 stsp if (err)
4188 0ebf8283 2019-07-24 stsp return err;
4189 0ebf8283 2019-07-24 stsp
4190 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
4191 0ebf8283 2019-07-24 stsp if (err)
4192 0ebf8283 2019-07-24 stsp goto done;
4193 0ebf8283 2019-07-24 stsp err = got_ref_resolve(&commit_id, repo, commit_ref);
4194 0ebf8283 2019-07-24 stsp if (err)
4195 0ebf8283 2019-07-24 stsp goto done;
4196 0ebf8283 2019-07-24 stsp if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
4197 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_HISTEDIT_COMMITID);
4198 0ebf8283 2019-07-24 stsp goto done;
4199 0ebf8283 2019-07-24 stsp }
4200 0ebf8283 2019-07-24 stsp
4201 0ebf8283 2019-07-24 stsp err = rebase_commit(new_commit_id, merged_paths, commit_ref,
4202 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, orig_commit, new_logmsg, repo);
4203 0ebf8283 2019-07-24 stsp done:
4204 0ebf8283 2019-07-24 stsp if (commit_ref)
4205 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
4206 0ebf8283 2019-07-24 stsp free(commit_ref_name);
4207 0ebf8283 2019-07-24 stsp free(commit_id);
4208 0ebf8283 2019-07-24 stsp return err;
4209 0ebf8283 2019-07-24 stsp }
4210 0ebf8283 2019-07-24 stsp
4211 0ebf8283 2019-07-24 stsp const struct got_error *
4212 3e3a69f1 2019-07-25 stsp got_worktree_rebase_postpone(struct got_worktree *worktree,
4213 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex)
4214 818c7501 2019-07-11 stsp {
4215 3e3a69f1 2019-07-25 stsp if (fileindex)
4216 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
4217 818c7501 2019-07-11 stsp return lock_worktree(worktree, LOCK_SH);
4218 69844fba 2019-07-11 stsp }
4219 69844fba 2019-07-11 stsp
4220 69844fba 2019-07-11 stsp static const struct got_error *
4221 69844fba 2019-07-11 stsp delete_ref(const char *name, struct got_repository *repo)
4222 69844fba 2019-07-11 stsp {
4223 69844fba 2019-07-11 stsp const struct got_error *err;
4224 69844fba 2019-07-11 stsp struct got_reference *ref;
4225 69844fba 2019-07-11 stsp
4226 69844fba 2019-07-11 stsp err = got_ref_open(&ref, repo, name, 0);
4227 69844fba 2019-07-11 stsp if (err) {
4228 69844fba 2019-07-11 stsp if (err->code == GOT_ERR_NOT_REF)
4229 69844fba 2019-07-11 stsp return NULL;
4230 69844fba 2019-07-11 stsp return err;
4231 69844fba 2019-07-11 stsp }
4232 69844fba 2019-07-11 stsp
4233 69844fba 2019-07-11 stsp err = got_ref_delete(ref, repo);
4234 69844fba 2019-07-11 stsp got_ref_close(ref);
4235 69844fba 2019-07-11 stsp return err;
4236 818c7501 2019-07-11 stsp }
4237 818c7501 2019-07-11 stsp
4238 69844fba 2019-07-11 stsp static const struct got_error *
4239 69844fba 2019-07-11 stsp delete_rebase_refs(struct got_worktree *worktree, struct got_repository *repo)
4240 69844fba 2019-07-11 stsp {
4241 69844fba 2019-07-11 stsp const struct got_error *err;
4242 69844fba 2019-07-11 stsp char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
4243 69844fba 2019-07-11 stsp char *branch_ref_name = NULL, *commit_ref_name = NULL;
4244 69844fba 2019-07-11 stsp
4245 69844fba 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
4246 69844fba 2019-07-11 stsp if (err)
4247 69844fba 2019-07-11 stsp goto done;
4248 69844fba 2019-07-11 stsp err = delete_ref(tmp_branch_name, repo);
4249 69844fba 2019-07-11 stsp if (err)
4250 69844fba 2019-07-11 stsp goto done;
4251 69844fba 2019-07-11 stsp
4252 69844fba 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
4253 69844fba 2019-07-11 stsp if (err)
4254 69844fba 2019-07-11 stsp goto done;
4255 69844fba 2019-07-11 stsp err = delete_ref(new_base_branch_ref_name, repo);
4256 69844fba 2019-07-11 stsp if (err)
4257 69844fba 2019-07-11 stsp goto done;
4258 69844fba 2019-07-11 stsp
4259 69844fba 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
4260 69844fba 2019-07-11 stsp if (err)
4261 69844fba 2019-07-11 stsp goto done;
4262 69844fba 2019-07-11 stsp err = delete_ref(branch_ref_name, repo);
4263 69844fba 2019-07-11 stsp if (err)
4264 69844fba 2019-07-11 stsp goto done;
4265 69844fba 2019-07-11 stsp
4266 69844fba 2019-07-11 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
4267 69844fba 2019-07-11 stsp if (err)
4268 69844fba 2019-07-11 stsp goto done;
4269 69844fba 2019-07-11 stsp err = delete_ref(commit_ref_name, repo);
4270 69844fba 2019-07-11 stsp if (err)
4271 69844fba 2019-07-11 stsp goto done;
4272 69844fba 2019-07-11 stsp
4273 69844fba 2019-07-11 stsp done:
4274 69844fba 2019-07-11 stsp free(tmp_branch_name);
4275 69844fba 2019-07-11 stsp free(new_base_branch_ref_name);
4276 69844fba 2019-07-11 stsp free(branch_ref_name);
4277 69844fba 2019-07-11 stsp free(commit_ref_name);
4278 69844fba 2019-07-11 stsp return err;
4279 69844fba 2019-07-11 stsp }
4280 69844fba 2019-07-11 stsp
4281 818c7501 2019-07-11 stsp const struct got_error *
4282 818c7501 2019-07-11 stsp got_worktree_rebase_complete(struct got_worktree *worktree,
4283 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *new_base_branch,
4284 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_reference *rebased_branch,
4285 818c7501 2019-07-11 stsp struct got_repository *repo)
4286 818c7501 2019-07-11 stsp {
4287 818c7501 2019-07-11 stsp const struct got_error *err, *unlockerr;
4288 818c7501 2019-07-11 stsp struct got_object_id *new_head_commit_id = NULL;
4289 818c7501 2019-07-11 stsp
4290 818c7501 2019-07-11 stsp err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
4291 818c7501 2019-07-11 stsp if (err)
4292 818c7501 2019-07-11 stsp return err;
4293 818c7501 2019-07-11 stsp
4294 818c7501 2019-07-11 stsp err = got_ref_change_ref(rebased_branch, new_head_commit_id);
4295 818c7501 2019-07-11 stsp if (err)
4296 818c7501 2019-07-11 stsp goto done;
4297 818c7501 2019-07-11 stsp
4298 818c7501 2019-07-11 stsp err = got_ref_write(rebased_branch, repo);
4299 818c7501 2019-07-11 stsp if (err)
4300 818c7501 2019-07-11 stsp goto done;
4301 818c7501 2019-07-11 stsp
4302 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, rebased_branch);
4303 818c7501 2019-07-11 stsp if (err)
4304 818c7501 2019-07-11 stsp goto done;
4305 818c7501 2019-07-11 stsp
4306 69844fba 2019-07-11 stsp err = delete_rebase_refs(worktree, repo);
4307 818c7501 2019-07-11 stsp done:
4308 3e3a69f1 2019-07-25 stsp if (fileindex)
4309 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
4310 818c7501 2019-07-11 stsp free(new_head_commit_id);
4311 818c7501 2019-07-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4312 818c7501 2019-07-11 stsp if (unlockerr && err == NULL)
4313 818c7501 2019-07-11 stsp err = unlockerr;
4314 818c7501 2019-07-11 stsp return err;
4315 818c7501 2019-07-11 stsp }
4316 818c7501 2019-07-11 stsp
4317 818c7501 2019-07-11 stsp struct collect_revertible_paths_arg {
4318 818c7501 2019-07-11 stsp struct got_pathlist_head *revertible_paths;
4319 818c7501 2019-07-11 stsp struct got_worktree *worktree;
4320 818c7501 2019-07-11 stsp };
4321 818c7501 2019-07-11 stsp
4322 818c7501 2019-07-11 stsp static const struct got_error *
4323 818c7501 2019-07-11 stsp collect_revertible_paths(void *arg, unsigned char status, const char *relpath,
4324 818c7501 2019-07-11 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
4325 818c7501 2019-07-11 stsp {
4326 818c7501 2019-07-11 stsp struct collect_revertible_paths_arg *a = arg;
4327 818c7501 2019-07-11 stsp const struct got_error *err = NULL;
4328 818c7501 2019-07-11 stsp struct got_pathlist_entry *new = NULL;
4329 818c7501 2019-07-11 stsp char *path = NULL;
4330 818c7501 2019-07-11 stsp
4331 818c7501 2019-07-11 stsp if (status != GOT_STATUS_ADD &&
4332 818c7501 2019-07-11 stsp status != GOT_STATUS_DELETE &&
4333 818c7501 2019-07-11 stsp status != GOT_STATUS_MODIFY &&
4334 818c7501 2019-07-11 stsp status != GOT_STATUS_CONFLICT &&
4335 818c7501 2019-07-11 stsp status != GOT_STATUS_MISSING)
4336 818c7501 2019-07-11 stsp return NULL;
4337 818c7501 2019-07-11 stsp
4338 818c7501 2019-07-11 stsp if (asprintf(&path, "%s/%s", a->worktree->root_path, relpath) == -1)
4339 818c7501 2019-07-11 stsp return got_error_from_errno("asprintf");
4340 818c7501 2019-07-11 stsp
4341 818c7501 2019-07-11 stsp err = got_pathlist_insert(&new, a->revertible_paths, path, NULL);
4342 818c7501 2019-07-11 stsp if (err || new == NULL)
4343 818c7501 2019-07-11 stsp free(path);
4344 818c7501 2019-07-11 stsp return err;
4345 818c7501 2019-07-11 stsp }
4346 818c7501 2019-07-11 stsp
4347 818c7501 2019-07-11 stsp const struct got_error *
4348 818c7501 2019-07-11 stsp got_worktree_rebase_abort(struct got_worktree *worktree,
4349 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_repository *repo,
4350 3e3a69f1 2019-07-25 stsp struct got_reference *new_base_branch,
4351 818c7501 2019-07-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
4352 818c7501 2019-07-11 stsp {
4353 ca355955 2019-07-12 stsp const struct got_error *err, *unlockerr, *sync_err;
4354 818c7501 2019-07-11 stsp struct got_reference *resolved = NULL;
4355 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL;
4356 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
4357 818c7501 2019-07-11 stsp struct got_pathlist_head revertible_paths;
4358 818c7501 2019-07-11 stsp struct got_pathlist_entry *pe;
4359 818c7501 2019-07-11 stsp struct collect_revertible_paths_arg crp_arg;
4360 a3a2faf2 2019-07-12 stsp struct got_object_id *tree_id = NULL;
4361 818c7501 2019-07-11 stsp
4362 818c7501 2019-07-11 stsp TAILQ_INIT(&revertible_paths);
4363 818c7501 2019-07-11 stsp
4364 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
4365 818c7501 2019-07-11 stsp if (err)
4366 818c7501 2019-07-11 stsp return err;
4367 818c7501 2019-07-11 stsp
4368 818c7501 2019-07-11 stsp err = got_ref_open(&resolved, repo,
4369 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch), 0);
4370 818c7501 2019-07-11 stsp if (err)
4371 818c7501 2019-07-11 stsp goto done;
4372 818c7501 2019-07-11 stsp
4373 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, resolved);
4374 818c7501 2019-07-11 stsp if (err)
4375 818c7501 2019-07-11 stsp goto done;
4376 818c7501 2019-07-11 stsp
4377 818c7501 2019-07-11 stsp /*
4378 818c7501 2019-07-11 stsp * XXX commits to the base branch could have happened while
4379 818c7501 2019-07-11 stsp * we were busy rebasing; should we store the original commit ID
4380 818c7501 2019-07-11 stsp * when rebase begins and read it back here?
4381 818c7501 2019-07-11 stsp */
4382 818c7501 2019-07-11 stsp err = got_ref_resolve(&commit_id, repo, resolved);
4383 818c7501 2019-07-11 stsp if (err)
4384 818c7501 2019-07-11 stsp goto done;
4385 818c7501 2019-07-11 stsp
4386 818c7501 2019-07-11 stsp err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
4387 818c7501 2019-07-11 stsp if (err)
4388 818c7501 2019-07-11 stsp goto done;
4389 818c7501 2019-07-11 stsp
4390 ca355955 2019-07-12 stsp err = got_object_id_by_path(&tree_id, repo,
4391 ca355955 2019-07-12 stsp worktree->base_commit_id, worktree->path_prefix);
4392 ca355955 2019-07-12 stsp if (err)
4393 ca355955 2019-07-12 stsp goto done;
4394 ca355955 2019-07-12 stsp
4395 ca355955 2019-07-12 stsp err = delete_rebase_refs(worktree, repo);
4396 ca355955 2019-07-12 stsp if (err)
4397 ca355955 2019-07-12 stsp goto done;
4398 ca355955 2019-07-12 stsp
4399 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
4400 818c7501 2019-07-11 stsp if (err)
4401 818c7501 2019-07-11 stsp goto done;
4402 818c7501 2019-07-11 stsp
4403 347d1d3e 2019-07-12 stsp crp_arg.revertible_paths = &revertible_paths;
4404 347d1d3e 2019-07-12 stsp crp_arg.worktree = worktree;
4405 347d1d3e 2019-07-12 stsp err = worktree_status(worktree, "", fileindex, repo,
4406 347d1d3e 2019-07-12 stsp collect_revertible_paths, &crp_arg, NULL, NULL);
4407 55bd499d 2019-07-12 stsp if (err)
4408 55bd499d 2019-07-12 stsp goto done;
4409 55bd499d 2019-07-12 stsp
4410 818c7501 2019-07-11 stsp TAILQ_FOREACH(pe, &revertible_paths, entry) {
4411 818c7501 2019-07-11 stsp err = revert_file(worktree, fileindex, pe->path,
4412 818c7501 2019-07-11 stsp progress_cb, progress_arg, repo);
4413 818c7501 2019-07-11 stsp if (err)
4414 ca355955 2019-07-12 stsp goto sync;
4415 818c7501 2019-07-11 stsp }
4416 69844fba 2019-07-11 stsp
4417 267fb255 2019-07-12 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL,
4418 267fb255 2019-07-12 stsp repo, progress_cb, progress_arg, NULL, NULL);
4419 ca355955 2019-07-12 stsp sync:
4420 ca355955 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4421 ca355955 2019-07-12 stsp if (sync_err && err == NULL)
4422 ca355955 2019-07-12 stsp err = sync_err;
4423 818c7501 2019-07-11 stsp done:
4424 818c7501 2019-07-11 stsp got_ref_close(resolved);
4425 a3a2faf2 2019-07-12 stsp free(tree_id);
4426 818c7501 2019-07-11 stsp free(commit_id);
4427 0ebf8283 2019-07-24 stsp if (fileindex)
4428 0ebf8283 2019-07-24 stsp got_fileindex_free(fileindex);
4429 0ebf8283 2019-07-24 stsp free(fileindex_path);
4430 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(pe, &revertible_paths, entry)
4431 0ebf8283 2019-07-24 stsp free((char *)pe->path);
4432 0ebf8283 2019-07-24 stsp got_pathlist_free(&revertible_paths);
4433 0ebf8283 2019-07-24 stsp
4434 0ebf8283 2019-07-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4435 0ebf8283 2019-07-24 stsp if (unlockerr && err == NULL)
4436 0ebf8283 2019-07-24 stsp err = unlockerr;
4437 0ebf8283 2019-07-24 stsp return err;
4438 0ebf8283 2019-07-24 stsp }
4439 0ebf8283 2019-07-24 stsp
4440 0ebf8283 2019-07-24 stsp const struct got_error *
4441 0ebf8283 2019-07-24 stsp got_worktree_histedit_prepare(struct got_reference **tmp_branch,
4442 0ebf8283 2019-07-24 stsp struct got_reference **branch_ref, struct got_object_id **base_commit_id,
4443 3e3a69f1 2019-07-25 stsp struct got_fileindex **fileindex, struct got_worktree *worktree,
4444 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
4445 0ebf8283 2019-07-24 stsp {
4446 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
4447 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL;
4448 0ebf8283 2019-07-24 stsp char *branch_ref_name = NULL;
4449 0ebf8283 2019-07-24 stsp char *base_commit_ref_name = NULL;
4450 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
4451 0ebf8283 2019-07-24 stsp struct check_rebase_ok_arg ok_arg;
4452 0ebf8283 2019-07-24 stsp struct got_reference *wt_branch = NULL;
4453 0ebf8283 2019-07-24 stsp struct got_reference *base_commit_ref = NULL;
4454 0ebf8283 2019-07-24 stsp
4455 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
4456 0ebf8283 2019-07-24 stsp *branch_ref = NULL;
4457 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
4458 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
4459 0ebf8283 2019-07-24 stsp
4460 0ebf8283 2019-07-24 stsp err = lock_worktree(worktree, LOCK_EX);
4461 0ebf8283 2019-07-24 stsp if (err)
4462 0ebf8283 2019-07-24 stsp return err;
4463 0ebf8283 2019-07-24 stsp
4464 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
4465 0ebf8283 2019-07-24 stsp if (err)
4466 0ebf8283 2019-07-24 stsp goto done;
4467 0ebf8283 2019-07-24 stsp
4468 0ebf8283 2019-07-24 stsp ok_arg.worktree = worktree;
4469 0ebf8283 2019-07-24 stsp ok_arg.repo = repo;
4470 0ebf8283 2019-07-24 stsp ok_arg.rebase_in_progress = 0;
4471 3e3a69f1 2019-07-25 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
4472 0ebf8283 2019-07-24 stsp &ok_arg);
4473 0ebf8283 2019-07-24 stsp if (err)
4474 0ebf8283 2019-07-24 stsp goto done;
4475 0ebf8283 2019-07-24 stsp
4476 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
4477 0ebf8283 2019-07-24 stsp if (err)
4478 0ebf8283 2019-07-24 stsp goto done;
4479 0ebf8283 2019-07-24 stsp
4480 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
4481 0ebf8283 2019-07-24 stsp if (err)
4482 0ebf8283 2019-07-24 stsp goto done;
4483 0ebf8283 2019-07-24 stsp
4484 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
4485 0ebf8283 2019-07-24 stsp worktree);
4486 0ebf8283 2019-07-24 stsp if (err)
4487 0ebf8283 2019-07-24 stsp goto done;
4488 0ebf8283 2019-07-24 stsp
4489 0ebf8283 2019-07-24 stsp err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
4490 0ebf8283 2019-07-24 stsp 0);
4491 0ebf8283 2019-07-24 stsp if (err)
4492 0ebf8283 2019-07-24 stsp goto done;
4493 0ebf8283 2019-07-24 stsp
4494 0ebf8283 2019-07-24 stsp err = got_ref_alloc_symref(branch_ref, branch_ref_name, wt_branch);
4495 0ebf8283 2019-07-24 stsp if (err)
4496 0ebf8283 2019-07-24 stsp goto done;
4497 0ebf8283 2019-07-24 stsp
4498 0ebf8283 2019-07-24 stsp err = got_ref_write(*branch_ref, repo);
4499 0ebf8283 2019-07-24 stsp if (err)
4500 0ebf8283 2019-07-24 stsp goto done;
4501 0ebf8283 2019-07-24 stsp
4502 0ebf8283 2019-07-24 stsp err = got_ref_alloc(&base_commit_ref, base_commit_ref_name,
4503 0ebf8283 2019-07-24 stsp worktree->base_commit_id);
4504 0ebf8283 2019-07-24 stsp if (err)
4505 0ebf8283 2019-07-24 stsp goto done;
4506 0ebf8283 2019-07-24 stsp err = got_ref_write(base_commit_ref, repo);
4507 0ebf8283 2019-07-24 stsp if (err)
4508 0ebf8283 2019-07-24 stsp goto done;
4509 0ebf8283 2019-07-24 stsp *base_commit_id = got_object_id_dup(worktree->base_commit_id);
4510 0ebf8283 2019-07-24 stsp if (*base_commit_id == NULL) {
4511 0ebf8283 2019-07-24 stsp err = got_error_from_errno("got_object_id_dup");
4512 0ebf8283 2019-07-24 stsp goto done;
4513 0ebf8283 2019-07-24 stsp }
4514 0ebf8283 2019-07-24 stsp
4515 0ebf8283 2019-07-24 stsp err = got_ref_alloc(tmp_branch, tmp_branch_name,
4516 0ebf8283 2019-07-24 stsp worktree->base_commit_id);
4517 0ebf8283 2019-07-24 stsp if (err)
4518 0ebf8283 2019-07-24 stsp goto done;
4519 0ebf8283 2019-07-24 stsp err = got_ref_write(*tmp_branch, repo);
4520 0ebf8283 2019-07-24 stsp if (err)
4521 0ebf8283 2019-07-24 stsp goto done;
4522 0ebf8283 2019-07-24 stsp
4523 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, *tmp_branch);
4524 0ebf8283 2019-07-24 stsp if (err)
4525 0ebf8283 2019-07-24 stsp goto done;
4526 0ebf8283 2019-07-24 stsp done:
4527 0ebf8283 2019-07-24 stsp free(fileindex_path);
4528 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
4529 0ebf8283 2019-07-24 stsp free(branch_ref_name);
4530 0ebf8283 2019-07-24 stsp free(base_commit_ref_name);
4531 0ebf8283 2019-07-24 stsp if (wt_branch)
4532 0ebf8283 2019-07-24 stsp got_ref_close(wt_branch);
4533 0ebf8283 2019-07-24 stsp if (err) {
4534 0ebf8283 2019-07-24 stsp if (*branch_ref) {
4535 0ebf8283 2019-07-24 stsp got_ref_close(*branch_ref);
4536 0ebf8283 2019-07-24 stsp *branch_ref = NULL;
4537 0ebf8283 2019-07-24 stsp }
4538 0ebf8283 2019-07-24 stsp if (*tmp_branch) {
4539 0ebf8283 2019-07-24 stsp got_ref_close(*tmp_branch);
4540 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
4541 0ebf8283 2019-07-24 stsp }
4542 0ebf8283 2019-07-24 stsp free(*base_commit_id);
4543 3e3a69f1 2019-07-25 stsp if (*fileindex) {
4544 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
4545 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
4546 3e3a69f1 2019-07-25 stsp }
4547 0ebf8283 2019-07-24 stsp lock_worktree(worktree, LOCK_SH);
4548 0ebf8283 2019-07-24 stsp }
4549 0ebf8283 2019-07-24 stsp return err;
4550 0ebf8283 2019-07-24 stsp }
4551 0ebf8283 2019-07-24 stsp
4552 0ebf8283 2019-07-24 stsp const struct got_error *
4553 3e3a69f1 2019-07-25 stsp got_worktree_histedit_postpone(struct got_worktree *worktree,
4554 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex)
4555 0ebf8283 2019-07-24 stsp {
4556 3e3a69f1 2019-07-25 stsp if (fileindex)
4557 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
4558 0ebf8283 2019-07-24 stsp return lock_worktree(worktree, LOCK_SH);
4559 0ebf8283 2019-07-24 stsp }
4560 0ebf8283 2019-07-24 stsp
4561 0ebf8283 2019-07-24 stsp const struct got_error *
4562 0ebf8283 2019-07-24 stsp got_worktree_histedit_in_progress(int *in_progress,
4563 0ebf8283 2019-07-24 stsp struct got_worktree *worktree)
4564 0ebf8283 2019-07-24 stsp {
4565 0ebf8283 2019-07-24 stsp const struct got_error *err;
4566 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL;
4567 0ebf8283 2019-07-24 stsp
4568 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
4569 0ebf8283 2019-07-24 stsp if (err)
4570 0ebf8283 2019-07-24 stsp return err;
4571 0ebf8283 2019-07-24 stsp
4572 0ebf8283 2019-07-24 stsp *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
4573 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
4574 0ebf8283 2019-07-24 stsp return NULL;
4575 0ebf8283 2019-07-24 stsp }
4576 0ebf8283 2019-07-24 stsp
4577 0ebf8283 2019-07-24 stsp const struct got_error *
4578 0ebf8283 2019-07-24 stsp got_worktree_histedit_continue(struct got_object_id **commit_id,
4579 0ebf8283 2019-07-24 stsp struct got_reference **tmp_branch, struct got_reference **branch_ref,
4580 3e3a69f1 2019-07-25 stsp struct got_object_id **base_commit_id, struct got_fileindex **fileindex,
4581 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
4582 0ebf8283 2019-07-24 stsp {
4583 0ebf8283 2019-07-24 stsp const struct got_error *err;
4584 0ebf8283 2019-07-24 stsp char *commit_ref_name = NULL, *base_commit_ref_name = NULL;
4585 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL, *branch_ref_name = NULL;
4586 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
4587 0ebf8283 2019-07-24 stsp struct got_reference *base_commit_ref = NULL;
4588 3e3a69f1 2019-07-25 stsp char *fileindex_path = NULL;
4589 0ebf8283 2019-07-24 stsp
4590 0ebf8283 2019-07-24 stsp *commit_id = NULL;
4591 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
4592 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
4593 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
4594 0ebf8283 2019-07-24 stsp
4595 3e3a69f1 2019-07-25 stsp err = lock_worktree(worktree, LOCK_EX);
4596 3e3a69f1 2019-07-25 stsp if (err)
4597 3e3a69f1 2019-07-25 stsp return err;
4598 3e3a69f1 2019-07-25 stsp
4599 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
4600 3e3a69f1 2019-07-25 stsp if (err)
4601 3e3a69f1 2019-07-25 stsp goto done;
4602 3e3a69f1 2019-07-25 stsp
4603 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
4604 0ebf8283 2019-07-24 stsp if (err)
4605 0ebf8283 2019-07-24 stsp return err;
4606 0ebf8283 2019-07-24 stsp
4607 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
4608 0ebf8283 2019-07-24 stsp if (err)
4609 0ebf8283 2019-07-24 stsp goto done;
4610 0ebf8283 2019-07-24 stsp
4611 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
4612 0ebf8283 2019-07-24 stsp if (err)
4613 0ebf8283 2019-07-24 stsp goto done;
4614 0ebf8283 2019-07-24 stsp
4615 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
4616 0ebf8283 2019-07-24 stsp worktree);
4617 0ebf8283 2019-07-24 stsp if (err)
4618 0ebf8283 2019-07-24 stsp goto done;
4619 0ebf8283 2019-07-24 stsp
4620 0ebf8283 2019-07-24 stsp err = got_ref_open(branch_ref, repo, branch_ref_name, 0);
4621 0ebf8283 2019-07-24 stsp if (err)
4622 0ebf8283 2019-07-24 stsp goto done;
4623 0ebf8283 2019-07-24 stsp
4624 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
4625 0ebf8283 2019-07-24 stsp if (err)
4626 0ebf8283 2019-07-24 stsp goto done;
4627 0ebf8283 2019-07-24 stsp err = got_ref_resolve(commit_id, repo, commit_ref);
4628 0ebf8283 2019-07-24 stsp if (err)
4629 0ebf8283 2019-07-24 stsp goto done;
4630 0ebf8283 2019-07-24 stsp
4631 0ebf8283 2019-07-24 stsp err = got_ref_open(&base_commit_ref, repo, base_commit_ref_name, 0);
4632 0ebf8283 2019-07-24 stsp if (err)
4633 0ebf8283 2019-07-24 stsp goto done;
4634 0ebf8283 2019-07-24 stsp err = got_ref_resolve(base_commit_id, repo, base_commit_ref);
4635 0ebf8283 2019-07-24 stsp if (err)
4636 0ebf8283 2019-07-24 stsp goto done;
4637 0ebf8283 2019-07-24 stsp
4638 0ebf8283 2019-07-24 stsp err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
4639 0ebf8283 2019-07-24 stsp if (err)
4640 0ebf8283 2019-07-24 stsp goto done;
4641 0ebf8283 2019-07-24 stsp done:
4642 0ebf8283 2019-07-24 stsp free(commit_ref_name);
4643 0ebf8283 2019-07-24 stsp free(branch_ref_name);
4644 3e3a69f1 2019-07-25 stsp free(fileindex_path);
4645 0ebf8283 2019-07-24 stsp if (commit_ref)
4646 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
4647 0ebf8283 2019-07-24 stsp if (base_commit_ref)
4648 0ebf8283 2019-07-24 stsp got_ref_close(base_commit_ref);
4649 0ebf8283 2019-07-24 stsp if (err) {
4650 0ebf8283 2019-07-24 stsp free(*commit_id);
4651 0ebf8283 2019-07-24 stsp *commit_id = NULL;
4652 0ebf8283 2019-07-24 stsp free(*base_commit_id);
4653 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
4654 0ebf8283 2019-07-24 stsp if (*tmp_branch) {
4655 0ebf8283 2019-07-24 stsp got_ref_close(*tmp_branch);
4656 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
4657 0ebf8283 2019-07-24 stsp }
4658 3e3a69f1 2019-07-25 stsp if (*fileindex) {
4659 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
4660 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
4661 3e3a69f1 2019-07-25 stsp }
4662 3e3a69f1 2019-07-25 stsp lock_worktree(worktree, LOCK_EX);
4663 0ebf8283 2019-07-24 stsp }
4664 0ebf8283 2019-07-24 stsp return err;
4665 0ebf8283 2019-07-24 stsp }
4666 0ebf8283 2019-07-24 stsp
4667 0ebf8283 2019-07-24 stsp static const struct got_error *
4668 0ebf8283 2019-07-24 stsp delete_histedit_refs(struct got_worktree *worktree, struct got_repository *repo)
4669 0ebf8283 2019-07-24 stsp {
4670 0ebf8283 2019-07-24 stsp const struct got_error *err;
4671 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL, *base_commit_ref_name = NULL;
4672 0ebf8283 2019-07-24 stsp char *branch_ref_name = NULL, *commit_ref_name = NULL;
4673 0ebf8283 2019-07-24 stsp
4674 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
4675 0ebf8283 2019-07-24 stsp if (err)
4676 0ebf8283 2019-07-24 stsp goto done;
4677 0ebf8283 2019-07-24 stsp err = delete_ref(tmp_branch_name, repo);
4678 0ebf8283 2019-07-24 stsp if (err)
4679 0ebf8283 2019-07-24 stsp goto done;
4680 0ebf8283 2019-07-24 stsp
4681 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
4682 0ebf8283 2019-07-24 stsp worktree);
4683 0ebf8283 2019-07-24 stsp if (err)
4684 0ebf8283 2019-07-24 stsp goto done;
4685 0ebf8283 2019-07-24 stsp err = delete_ref(base_commit_ref_name, repo);
4686 0ebf8283 2019-07-24 stsp if (err)
4687 0ebf8283 2019-07-24 stsp goto done;
4688 0ebf8283 2019-07-24 stsp
4689 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
4690 0ebf8283 2019-07-24 stsp if (err)
4691 0ebf8283 2019-07-24 stsp goto done;
4692 0ebf8283 2019-07-24 stsp err = delete_ref(branch_ref_name, repo);
4693 0ebf8283 2019-07-24 stsp if (err)
4694 0ebf8283 2019-07-24 stsp goto done;
4695 0ebf8283 2019-07-24 stsp
4696 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
4697 0ebf8283 2019-07-24 stsp if (err)
4698 0ebf8283 2019-07-24 stsp goto done;
4699 0ebf8283 2019-07-24 stsp err = delete_ref(commit_ref_name, repo);
4700 0ebf8283 2019-07-24 stsp if (err)
4701 0ebf8283 2019-07-24 stsp goto done;
4702 0ebf8283 2019-07-24 stsp done:
4703 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
4704 0ebf8283 2019-07-24 stsp free(base_commit_ref_name);
4705 0ebf8283 2019-07-24 stsp free(branch_ref_name);
4706 0ebf8283 2019-07-24 stsp free(commit_ref_name);
4707 0ebf8283 2019-07-24 stsp return err;
4708 0ebf8283 2019-07-24 stsp }
4709 0ebf8283 2019-07-24 stsp
4710 0ebf8283 2019-07-24 stsp const struct got_error *
4711 0ebf8283 2019-07-24 stsp got_worktree_histedit_abort(struct got_worktree *worktree,
4712 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_repository *repo,
4713 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_object_id *base_commit_id,
4714 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
4715 0ebf8283 2019-07-24 stsp {
4716 0ebf8283 2019-07-24 stsp const struct got_error *err, *unlockerr, *sync_err;
4717 0ebf8283 2019-07-24 stsp struct got_reference *resolved = NULL;
4718 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
4719 0ebf8283 2019-07-24 stsp struct got_pathlist_head revertible_paths;
4720 0ebf8283 2019-07-24 stsp struct got_pathlist_entry *pe;
4721 0ebf8283 2019-07-24 stsp struct collect_revertible_paths_arg crp_arg;
4722 0ebf8283 2019-07-24 stsp struct got_object_id *tree_id = NULL;
4723 0ebf8283 2019-07-24 stsp
4724 0ebf8283 2019-07-24 stsp TAILQ_INIT(&revertible_paths);
4725 0ebf8283 2019-07-24 stsp
4726 0ebf8283 2019-07-24 stsp err = lock_worktree(worktree, LOCK_EX);
4727 0ebf8283 2019-07-24 stsp if (err)
4728 0ebf8283 2019-07-24 stsp return err;
4729 0ebf8283 2019-07-24 stsp
4730 0ebf8283 2019-07-24 stsp err = got_ref_open(&resolved, repo,
4731 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch), 0);
4732 0ebf8283 2019-07-24 stsp if (err)
4733 0ebf8283 2019-07-24 stsp goto done;
4734 0ebf8283 2019-07-24 stsp
4735 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, resolved);
4736 0ebf8283 2019-07-24 stsp if (err)
4737 0ebf8283 2019-07-24 stsp goto done;
4738 0ebf8283 2019-07-24 stsp
4739 0ebf8283 2019-07-24 stsp err = got_worktree_set_base_commit_id(worktree, repo, base_commit_id);
4740 0ebf8283 2019-07-24 stsp if (err)
4741 0ebf8283 2019-07-24 stsp goto done;
4742 0ebf8283 2019-07-24 stsp
4743 0ebf8283 2019-07-24 stsp err = got_object_id_by_path(&tree_id, repo, base_commit_id,
4744 0ebf8283 2019-07-24 stsp worktree->path_prefix);
4745 0ebf8283 2019-07-24 stsp if (err)
4746 0ebf8283 2019-07-24 stsp goto done;
4747 0ebf8283 2019-07-24 stsp
4748 0ebf8283 2019-07-24 stsp err = delete_histedit_refs(worktree, repo);
4749 0ebf8283 2019-07-24 stsp if (err)
4750 0ebf8283 2019-07-24 stsp goto done;
4751 0ebf8283 2019-07-24 stsp
4752 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
4753 0ebf8283 2019-07-24 stsp if (err)
4754 0ebf8283 2019-07-24 stsp goto done;
4755 0ebf8283 2019-07-24 stsp
4756 0ebf8283 2019-07-24 stsp crp_arg.revertible_paths = &revertible_paths;
4757 0ebf8283 2019-07-24 stsp crp_arg.worktree = worktree;
4758 0ebf8283 2019-07-24 stsp err = worktree_status(worktree, "", fileindex, repo,
4759 0ebf8283 2019-07-24 stsp collect_revertible_paths, &crp_arg, NULL, NULL);
4760 0ebf8283 2019-07-24 stsp if (err)
4761 0ebf8283 2019-07-24 stsp goto done;
4762 0ebf8283 2019-07-24 stsp
4763 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(pe, &revertible_paths, entry) {
4764 0ebf8283 2019-07-24 stsp err = revert_file(worktree, fileindex, pe->path,
4765 0ebf8283 2019-07-24 stsp progress_cb, progress_arg, repo);
4766 0ebf8283 2019-07-24 stsp if (err)
4767 0ebf8283 2019-07-24 stsp goto sync;
4768 0ebf8283 2019-07-24 stsp }
4769 0ebf8283 2019-07-24 stsp
4770 0ebf8283 2019-07-24 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL,
4771 0ebf8283 2019-07-24 stsp repo, progress_cb, progress_arg, NULL, NULL);
4772 0ebf8283 2019-07-24 stsp sync:
4773 0ebf8283 2019-07-24 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4774 0ebf8283 2019-07-24 stsp if (sync_err && err == NULL)
4775 0ebf8283 2019-07-24 stsp err = sync_err;
4776 0ebf8283 2019-07-24 stsp done:
4777 0ebf8283 2019-07-24 stsp got_ref_close(resolved);
4778 0ebf8283 2019-07-24 stsp free(tree_id);
4779 818c7501 2019-07-11 stsp free(fileindex_path);
4780 818c7501 2019-07-11 stsp TAILQ_FOREACH(pe, &revertible_paths, entry)
4781 818c7501 2019-07-11 stsp free((char *)pe->path);
4782 818c7501 2019-07-11 stsp got_pathlist_free(&revertible_paths);
4783 818c7501 2019-07-11 stsp
4784 818c7501 2019-07-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4785 818c7501 2019-07-11 stsp if (unlockerr && err == NULL)
4786 818c7501 2019-07-11 stsp err = unlockerr;
4787 818c7501 2019-07-11 stsp return err;
4788 818c7501 2019-07-11 stsp }
4789 0ebf8283 2019-07-24 stsp
4790 0ebf8283 2019-07-24 stsp const struct got_error *
4791 0ebf8283 2019-07-24 stsp got_worktree_histedit_complete(struct got_worktree *worktree,
4792 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
4793 3e3a69f1 2019-07-25 stsp struct got_reference *edited_branch, struct got_repository *repo)
4794 0ebf8283 2019-07-24 stsp {
4795 0ebf8283 2019-07-24 stsp const struct got_error *err, *unlockerr;
4796 0ebf8283 2019-07-24 stsp struct got_object_id *new_head_commit_id = NULL;
4797 0ebf8283 2019-07-24 stsp struct got_reference *resolved = NULL;
4798 0ebf8283 2019-07-24 stsp
4799 0ebf8283 2019-07-24 stsp err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
4800 0ebf8283 2019-07-24 stsp if (err)
4801 0ebf8283 2019-07-24 stsp return err;
4802 0ebf8283 2019-07-24 stsp
4803 0ebf8283 2019-07-24 stsp err = got_ref_open(&resolved, repo,
4804 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(edited_branch), 0);
4805 0ebf8283 2019-07-24 stsp if (err)
4806 0ebf8283 2019-07-24 stsp goto done;
4807 0ebf8283 2019-07-24 stsp
4808 0ebf8283 2019-07-24 stsp err = got_ref_change_ref(resolved, new_head_commit_id);
4809 0ebf8283 2019-07-24 stsp if (err)
4810 0ebf8283 2019-07-24 stsp goto done;
4811 0ebf8283 2019-07-24 stsp
4812 0ebf8283 2019-07-24 stsp err = got_ref_write(resolved, repo);
4813 0ebf8283 2019-07-24 stsp if (err)
4814 0ebf8283 2019-07-24 stsp goto done;
4815 0ebf8283 2019-07-24 stsp
4816 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, resolved);
4817 0ebf8283 2019-07-24 stsp if (err)
4818 0ebf8283 2019-07-24 stsp goto done;
4819 0ebf8283 2019-07-24 stsp
4820 0ebf8283 2019-07-24 stsp err = delete_histedit_refs(worktree, repo);
4821 0ebf8283 2019-07-24 stsp done:
4822 3e3a69f1 2019-07-25 stsp if (fileindex)
4823 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
4824 0ebf8283 2019-07-24 stsp free(new_head_commit_id);
4825 0ebf8283 2019-07-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4826 0ebf8283 2019-07-24 stsp if (unlockerr && err == NULL)
4827 0ebf8283 2019-07-24 stsp err = unlockerr;
4828 0ebf8283 2019-07-24 stsp return err;
4829 0ebf8283 2019-07-24 stsp }
4830 0ebf8283 2019-07-24 stsp
4831 0ebf8283 2019-07-24 stsp const struct got_error *
4832 0ebf8283 2019-07-24 stsp got_worktree_histedit_skip_commit(struct got_worktree *worktree,
4833 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
4834 0ebf8283 2019-07-24 stsp {
4835 0ebf8283 2019-07-24 stsp const struct got_error *err;
4836 0ebf8283 2019-07-24 stsp char *commit_ref_name;
4837 0ebf8283 2019-07-24 stsp
4838 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
4839 0ebf8283 2019-07-24 stsp if (err)
4840 0ebf8283 2019-07-24 stsp return err;
4841 0ebf8283 2019-07-24 stsp
4842 0ebf8283 2019-07-24 stsp err = store_commit_id(commit_ref_name, commit_id, repo);
4843 0ebf8283 2019-07-24 stsp if (err)
4844 0ebf8283 2019-07-24 stsp goto done;
4845 0ebf8283 2019-07-24 stsp
4846 0ebf8283 2019-07-24 stsp err = delete_ref(commit_ref_name, repo);
4847 0ebf8283 2019-07-24 stsp done:
4848 0ebf8283 2019-07-24 stsp free(commit_ref_name);
4849 0ebf8283 2019-07-24 stsp return err;
4850 0ebf8283 2019-07-24 stsp }