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