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 int fd = -1;
67 99724ed4 2018-03-10 stsp
68 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
69 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
70 99724ed4 2018-03-10 stsp path = NULL;
71 99724ed4 2018-03-10 stsp goto done;
72 99724ed4 2018-03-10 stsp }
73 99724ed4 2018-03-10 stsp
74 73a5ef67 2018-03-11 stsp fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
75 99724ed4 2018-03-10 stsp GOT_DEFAULT_FILE_MODE);
76 99724ed4 2018-03-10 stsp if (fd == -1) {
77 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", path);
78 99724ed4 2018-03-10 stsp goto done;
79 99724ed4 2018-03-10 stsp }
80 99724ed4 2018-03-10 stsp
81 99724ed4 2018-03-10 stsp if (content) {
82 99724ed4 2018-03-10 stsp int len = dprintf(fd, "%s\n", content);
83 99724ed4 2018-03-10 stsp if (len != strlen(content) + 1) {
84 638f9024 2019-05-13 stsp err = got_error_from_errno("dprintf");
85 99724ed4 2018-03-10 stsp goto done;
86 99724ed4 2018-03-10 stsp }
87 99724ed4 2018-03-10 stsp }
88 99724ed4 2018-03-10 stsp
89 99724ed4 2018-03-10 stsp done:
90 99724ed4 2018-03-10 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
91 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
92 99724ed4 2018-03-10 stsp free(path);
93 507dc3bb 2018-12-29 stsp return err;
94 507dc3bb 2018-12-29 stsp }
95 507dc3bb 2018-12-29 stsp
96 507dc3bb 2018-12-29 stsp static const struct got_error *
97 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
98 507dc3bb 2018-12-29 stsp {
99 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
100 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
101 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
102 507dc3bb 2018-12-29 stsp char *path = NULL;
103 507dc3bb 2018-12-29 stsp
104 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
105 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
106 507dc3bb 2018-12-29 stsp path = NULL;
107 507dc3bb 2018-12-29 stsp goto done;
108 507dc3bb 2018-12-29 stsp }
109 507dc3bb 2018-12-29 stsp
110 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
111 507dc3bb 2018-12-29 stsp if (err)
112 507dc3bb 2018-12-29 stsp goto done;
113 507dc3bb 2018-12-29 stsp
114 507dc3bb 2018-12-29 stsp if (content) {
115 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
116 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
117 638f9024 2019-05-13 stsp err = got_error_from_errno2("fprintf", tmppath);
118 507dc3bb 2018-12-29 stsp goto done;
119 507dc3bb 2018-12-29 stsp }
120 507dc3bb 2018-12-29 stsp }
121 507dc3bb 2018-12-29 stsp
122 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
123 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath, path);
124 2a57020b 2019-02-20 stsp unlink(tmppath);
125 507dc3bb 2018-12-29 stsp goto done;
126 507dc3bb 2018-12-29 stsp }
127 507dc3bb 2018-12-29 stsp
128 507dc3bb 2018-12-29 stsp done:
129 fb43ecf1 2019-02-11 stsp if (fclose(tmpfile) != 0 && err == NULL)
130 638f9024 2019-05-13 stsp err = got_error_from_errno2("fclose", tmppath);
131 230a42bd 2019-05-11 jcs free(tmppath);
132 99724ed4 2018-03-10 stsp return err;
133 99724ed4 2018-03-10 stsp }
134 99724ed4 2018-03-10 stsp
135 09fe317a 2018-03-11 stsp static const struct got_error *
136 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
137 09fe317a 2018-03-11 stsp {
138 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
139 09fe317a 2018-03-11 stsp char *path;
140 09fe317a 2018-03-11 stsp int fd = -1;
141 09fe317a 2018-03-11 stsp ssize_t n;
142 09fe317a 2018-03-11 stsp struct stat sb;
143 09fe317a 2018-03-11 stsp
144 09fe317a 2018-03-11 stsp *content = NULL;
145 09fe317a 2018-03-11 stsp
146 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
147 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
148 09fe317a 2018-03-11 stsp path = NULL;
149 09fe317a 2018-03-11 stsp goto done;
150 09fe317a 2018-03-11 stsp }
151 09fe317a 2018-03-11 stsp
152 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
153 09fe317a 2018-03-11 stsp if (fd == -1) {
154 f02eaa22 2019-03-11 stsp if (errno == ENOENT)
155 f02eaa22 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
156 f02eaa22 2019-03-11 stsp else
157 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", path);
158 ef99fdb1 2018-03-11 stsp goto done;
159 ef99fdb1 2018-03-11 stsp }
160 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
161 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
162 638f9024 2019-05-13 stsp : got_error_from_errno2("flock", path));
163 09fe317a 2018-03-11 stsp goto done;
164 09fe317a 2018-03-11 stsp }
165 09fe317a 2018-03-11 stsp
166 d10c9b58 2019-02-19 stsp if (lstat(path, &sb) != 0) {
167 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", path);
168 d10c9b58 2019-02-19 stsp goto done;
169 d10c9b58 2019-02-19 stsp }
170 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
171 09fe317a 2018-03-11 stsp if (*content == NULL) {
172 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
173 09fe317a 2018-03-11 stsp goto done;
174 09fe317a 2018-03-11 stsp }
175 09fe317a 2018-03-11 stsp
176 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
177 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
178 638f9024 2019-05-13 stsp err = (n == -1 ? got_error_from_errno2("read", path) :
179 0605801d 2018-03-11 stsp got_error(GOT_ERR_WORKTREE_META));
180 09fe317a 2018-03-11 stsp goto done;
181 09fe317a 2018-03-11 stsp }
182 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
183 09fe317a 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
184 09fe317a 2018-03-11 stsp goto done;
185 09fe317a 2018-03-11 stsp }
186 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
187 09fe317a 2018-03-11 stsp
188 09fe317a 2018-03-11 stsp done:
189 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
190 638f9024 2019-05-13 stsp err = got_error_from_errno2("close", path_got);
191 09fe317a 2018-03-11 stsp free(path);
192 09fe317a 2018-03-11 stsp if (err) {
193 09fe317a 2018-03-11 stsp free(*content);
194 09fe317a 2018-03-11 stsp *content = NULL;
195 09fe317a 2018-03-11 stsp }
196 09fe317a 2018-03-11 stsp return err;
197 09fe317a 2018-03-11 stsp }
198 09fe317a 2018-03-11 stsp
199 024e9686 2019-05-14 stsp static const struct got_error *
200 024e9686 2019-05-14 stsp write_head_ref(const char *path_got, struct got_reference *head_ref)
201 024e9686 2019-05-14 stsp {
202 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
203 024e9686 2019-05-14 stsp char *refstr = NULL;
204 024e9686 2019-05-14 stsp
205 024e9686 2019-05-14 stsp if (got_ref_is_symbolic(head_ref)) {
206 024e9686 2019-05-14 stsp refstr = got_ref_to_str(head_ref);
207 024e9686 2019-05-14 stsp if (refstr == NULL)
208 024e9686 2019-05-14 stsp return got_error_from_errno("got_ref_to_str");
209 024e9686 2019-05-14 stsp } else {
210 024e9686 2019-05-14 stsp refstr = strdup(got_ref_get_name(head_ref));
211 024e9686 2019-05-14 stsp if (refstr == NULL)
212 024e9686 2019-05-14 stsp return got_error_from_errno("strdup");
213 024e9686 2019-05-14 stsp }
214 024e9686 2019-05-14 stsp err = update_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
215 024e9686 2019-05-14 stsp free(refstr);
216 024e9686 2019-05-14 stsp return err;
217 024e9686 2019-05-14 stsp }
218 024e9686 2019-05-14 stsp
219 86c3caaf 2018-03-09 stsp const struct got_error *
220 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
221 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
222 86c3caaf 2018-03-09 stsp {
223 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
224 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
225 ec22038e 2019-03-10 stsp uuid_t uuid;
226 ec22038e 2019-03-10 stsp uint32_t uuid_status;
227 65596e15 2018-12-24 stsp int obj_type;
228 7ac97322 2018-03-11 stsp char *path_got = NULL;
229 1451e70d 2018-03-10 stsp char *formatstr = NULL;
230 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
231 65596e15 2018-12-24 stsp char *basestr = NULL;
232 ec22038e 2019-03-10 stsp char *uuidstr = NULL;
233 65596e15 2018-12-24 stsp
234 0c48fee2 2019-03-11 stsp if (strcmp(path, got_repo_get_path(repo)) == 0) {
235 0c48fee2 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_REPO);
236 0c48fee2 2019-03-11 stsp goto done;
237 0c48fee2 2019-03-11 stsp }
238 0c48fee2 2019-03-11 stsp
239 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
240 65596e15 2018-12-24 stsp if (err)
241 65596e15 2018-12-24 stsp return err;
242 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
243 65596e15 2018-12-24 stsp if (err)
244 65596e15 2018-12-24 stsp return err;
245 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
246 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
247 86c3caaf 2018-03-09 stsp
248 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
249 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
250 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
251 0bb8a95e 2018-03-12 stsp }
252 577ec78f 2018-03-11 stsp
253 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
254 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
255 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path);
256 86c3caaf 2018-03-09 stsp goto done;
257 86c3caaf 2018-03-09 stsp }
258 86c3caaf 2018-03-09 stsp
259 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
260 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
261 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
262 86c3caaf 2018-03-09 stsp goto done;
263 86c3caaf 2018-03-09 stsp }
264 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
265 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path_got);
266 86c3caaf 2018-03-09 stsp goto done;
267 86c3caaf 2018-03-09 stsp }
268 86c3caaf 2018-03-09 stsp
269 056e7441 2018-03-11 stsp /* Create an empty lock file. */
270 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
271 056e7441 2018-03-11 stsp if (err)
272 056e7441 2018-03-11 stsp goto done;
273 056e7441 2018-03-11 stsp
274 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
275 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
276 99724ed4 2018-03-10 stsp if (err)
277 86c3caaf 2018-03-09 stsp goto done;
278 86c3caaf 2018-03-09 stsp
279 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
280 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
281 65596e15 2018-12-24 stsp if (err)
282 65596e15 2018-12-24 stsp goto done;
283 65596e15 2018-12-24 stsp
284 65596e15 2018-12-24 stsp /* Record our base commit. */
285 65596e15 2018-12-24 stsp err = got_object_id_str(&basestr, commit_id);
286 65596e15 2018-12-24 stsp if (err)
287 65596e15 2018-12-24 stsp goto done;
288 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
289 99724ed4 2018-03-10 stsp if (err)
290 86c3caaf 2018-03-09 stsp goto done;
291 86c3caaf 2018-03-09 stsp
292 1451e70d 2018-03-10 stsp /* Store path to repository. */
293 7839bc15 2019-01-06 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
294 7839bc15 2019-01-06 stsp got_repo_get_path(repo));
295 99724ed4 2018-03-10 stsp if (err)
296 86c3caaf 2018-03-09 stsp goto done;
297 86c3caaf 2018-03-09 stsp
298 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
299 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
300 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
301 ec22038e 2019-03-10 stsp if (err)
302 ec22038e 2019-03-10 stsp goto done;
303 ec22038e 2019-03-10 stsp
304 ec22038e 2019-03-10 stsp /* Generate UUID. */
305 ec22038e 2019-03-10 stsp uuid_create(&uuid, &uuid_status);
306 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
307 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
308 ec22038e 2019-03-10 stsp goto done;
309 ec22038e 2019-03-10 stsp }
310 ec22038e 2019-03-10 stsp uuid_to_string(&uuid, &uuidstr, &uuid_status);
311 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
312 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
313 ec22038e 2019-03-10 stsp goto done;
314 ec22038e 2019-03-10 stsp }
315 ec22038e 2019-03-10 stsp err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
316 577ec78f 2018-03-11 stsp if (err)
317 577ec78f 2018-03-11 stsp goto done;
318 577ec78f 2018-03-11 stsp
319 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
320 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
321 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
322 1451e70d 2018-03-10 stsp goto done;
323 1451e70d 2018-03-10 stsp }
324 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
325 99724ed4 2018-03-10 stsp if (err)
326 1451e70d 2018-03-10 stsp goto done;
327 1451e70d 2018-03-10 stsp
328 86c3caaf 2018-03-09 stsp done:
329 65596e15 2018-12-24 stsp free(commit_id);
330 7ac97322 2018-03-11 stsp free(path_got);
331 1451e70d 2018-03-10 stsp free(formatstr);
332 0bb8a95e 2018-03-12 stsp free(absprefix);
333 65596e15 2018-12-24 stsp free(basestr);
334 ec22038e 2019-03-10 stsp free(uuidstr);
335 86c3caaf 2018-03-09 stsp return err;
336 86c3caaf 2018-03-09 stsp }
337 86c3caaf 2018-03-09 stsp
338 247140b2 2019-02-05 stsp static const struct got_error *
339 247140b2 2019-02-05 stsp open_worktree(struct got_worktree **worktree, const char *path)
340 86c3caaf 2018-03-09 stsp {
341 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
342 7ac97322 2018-03-11 stsp char *path_got;
343 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
344 c442a90d 2019-03-10 stsp char *uuidstr = NULL;
345 056e7441 2018-03-11 stsp char *path_lock = NULL;
346 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
347 6d9d28c3 2018-03-11 stsp int version, fd = -1;
348 6d9d28c3 2018-03-11 stsp const char *errstr;
349 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
350 c442a90d 2019-03-10 stsp uint32_t uuid_status;
351 6d9d28c3 2018-03-11 stsp
352 6d9d28c3 2018-03-11 stsp *worktree = NULL;
353 6d9d28c3 2018-03-11 stsp
354 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
355 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
356 7ac97322 2018-03-11 stsp path_got = NULL;
357 6d9d28c3 2018-03-11 stsp goto done;
358 6d9d28c3 2018-03-11 stsp }
359 6d9d28c3 2018-03-11 stsp
360 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
361 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
362 056e7441 2018-03-11 stsp path_lock = NULL;
363 6d9d28c3 2018-03-11 stsp goto done;
364 6d9d28c3 2018-03-11 stsp }
365 6d9d28c3 2018-03-11 stsp
366 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
367 6d9d28c3 2018-03-11 stsp if (fd == -1) {
368 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
369 638f9024 2019-05-13 stsp : got_error_from_errno2("open", path_lock));
370 6d9d28c3 2018-03-11 stsp goto done;
371 6d9d28c3 2018-03-11 stsp }
372 6d9d28c3 2018-03-11 stsp
373 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
374 6d9d28c3 2018-03-11 stsp if (err)
375 6d9d28c3 2018-03-11 stsp goto done;
376 6d9d28c3 2018-03-11 stsp
377 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
378 6d9d28c3 2018-03-11 stsp if (errstr) {
379 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
380 6d9d28c3 2018-03-11 stsp goto done;
381 6d9d28c3 2018-03-11 stsp }
382 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
383 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
384 6d9d28c3 2018-03-11 stsp goto done;
385 6d9d28c3 2018-03-11 stsp }
386 6d9d28c3 2018-03-11 stsp
387 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
388 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
389 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
390 6d9d28c3 2018-03-11 stsp goto done;
391 6d9d28c3 2018-03-11 stsp }
392 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
393 6d9d28c3 2018-03-11 stsp
394 0647c563 2019-03-11 stsp (*worktree)->root_path = strdup(path);
395 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
396 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
397 6d9d28c3 2018-03-11 stsp goto done;
398 6d9d28c3 2018-03-11 stsp }
399 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
400 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
401 6d9d28c3 2018-03-11 stsp if (err)
402 6d9d28c3 2018-03-11 stsp goto done;
403 eaccb85f 2018-12-25 stsp
404 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
405 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
406 93a30277 2018-12-24 stsp if (err)
407 93a30277 2018-12-24 stsp goto done;
408 93a30277 2018-12-24 stsp
409 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
410 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
411 c442a90d 2019-03-10 stsp if (err)
412 c442a90d 2019-03-10 stsp goto done;
413 c442a90d 2019-03-10 stsp
414 c442a90d 2019-03-10 stsp err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
415 eaccb85f 2018-12-25 stsp if (err)
416 c442a90d 2019-03-10 stsp goto done;
417 c442a90d 2019-03-10 stsp uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
418 c442a90d 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
419 c442a90d 2019-03-10 stsp err = got_error_uuid(uuid_status);
420 eaccb85f 2018-12-25 stsp goto done;
421 c442a90d 2019-03-10 stsp }
422 eaccb85f 2018-12-25 stsp
423 eaccb85f 2018-12-25 stsp err = got_repo_open(&repo, (*worktree)->repo_path);
424 eaccb85f 2018-12-25 stsp if (err)
425 eaccb85f 2018-12-25 stsp goto done;
426 eaccb85f 2018-12-25 stsp
427 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
428 eaccb85f 2018-12-25 stsp base_commit_id_str);
429 f5baf295 2018-03-11 stsp if (err)
430 6d9d28c3 2018-03-11 stsp goto done;
431 6d9d28c3 2018-03-11 stsp
432 36a38700 2019-05-10 stsp err = read_meta_file(&(*worktree)->head_ref_name, path_got,
433 36a38700 2019-05-10 stsp GOT_WORKTREE_HEAD_REF);
434 6d9d28c3 2018-03-11 stsp done:
435 eaccb85f 2018-12-25 stsp if (repo)
436 eaccb85f 2018-12-25 stsp got_repo_close(repo);
437 7ac97322 2018-03-11 stsp free(path_got);
438 056e7441 2018-03-11 stsp free(path_lock);
439 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
440 c442a90d 2019-03-10 stsp free(uuidstr);
441 bd165944 2019-03-10 stsp free(formatstr);
442 6d9d28c3 2018-03-11 stsp if (err) {
443 6d9d28c3 2018-03-11 stsp if (fd != -1)
444 6d9d28c3 2018-03-11 stsp close(fd);
445 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
446 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
447 6d9d28c3 2018-03-11 stsp *worktree = NULL;
448 6d9d28c3 2018-03-11 stsp } else
449 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
450 6d9d28c3 2018-03-11 stsp
451 6d9d28c3 2018-03-11 stsp return err;
452 86c3caaf 2018-03-09 stsp }
453 247140b2 2019-02-05 stsp
454 247140b2 2019-02-05 stsp const struct got_error *
455 247140b2 2019-02-05 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
456 247140b2 2019-02-05 stsp {
457 247140b2 2019-02-05 stsp const struct got_error *err = NULL;
458 86c3caaf 2018-03-09 stsp
459 247140b2 2019-02-05 stsp do {
460 247140b2 2019-02-05 stsp err = open_worktree(worktree, path);
461 f02eaa22 2019-03-11 stsp if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT))
462 247140b2 2019-02-05 stsp return err;
463 247140b2 2019-02-05 stsp if (*worktree)
464 247140b2 2019-02-05 stsp return NULL;
465 247140b2 2019-02-05 stsp path = dirname(path);
466 d1542a27 2019-02-05 stsp if (path == NULL)
467 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", path);
468 d1542a27 2019-02-05 stsp } while (!((path[0] == '.' || path[0] == '/') && path[1] == '\0'));
469 247140b2 2019-02-05 stsp
470 247140b2 2019-02-05 stsp return got_error(GOT_ERR_NOT_WORKTREE);
471 247140b2 2019-02-05 stsp }
472 247140b2 2019-02-05 stsp
473 3a6ce05a 2019-02-11 stsp const struct got_error *
474 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
475 86c3caaf 2018-03-09 stsp {
476 3a6ce05a 2019-02-11 stsp const struct got_error *err = NULL;
477 c88eb298 2018-03-11 stsp free(worktree->root_path);
478 cde76477 2018-03-11 stsp free(worktree->repo_path);
479 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
480 eaccb85f 2018-12-25 stsp free(worktree->base_commit_id);
481 36a38700 2019-05-10 stsp free(worktree->head_ref_name);
482 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
483 3a6ce05a 2019-02-11 stsp if (close(worktree->lockfd) != 0)
484 638f9024 2019-05-13 stsp err = got_error_from_errno2("close",
485 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree));
486 6d9d28c3 2018-03-11 stsp free(worktree);
487 3a6ce05a 2019-02-11 stsp return err;
488 86c3caaf 2018-03-09 stsp }
489 86c3caaf 2018-03-09 stsp
490 2fbdb5ae 2018-12-29 stsp const char *
491 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(struct got_worktree *worktree)
492 c7f4312f 2019-02-05 stsp {
493 c7f4312f 2019-02-05 stsp return worktree->root_path;
494 c7f4312f 2019-02-05 stsp }
495 c7f4312f 2019-02-05 stsp
496 c7f4312f 2019-02-05 stsp const char *
497 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
498 86c3caaf 2018-03-09 stsp {
499 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
500 49520a32 2018-12-29 stsp }
501 49520a32 2018-12-29 stsp
502 49520a32 2018-12-29 stsp const char *
503 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
504 49520a32 2018-12-29 stsp {
505 f609be2e 2018-12-29 stsp return worktree->path_prefix;
506 e5dc7198 2018-12-29 stsp }
507 e5dc7198 2018-12-29 stsp
508 e5dc7198 2018-12-29 stsp const struct got_error *
509 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
510 e5dc7198 2018-12-29 stsp const char *path_prefix)
511 e5dc7198 2018-12-29 stsp {
512 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
513 e5dc7198 2018-12-29 stsp
514 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
515 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
516 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
517 e5dc7198 2018-12-29 stsp }
518 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
519 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
520 e5dc7198 2018-12-29 stsp free(absprefix);
521 e5dc7198 2018-12-29 stsp return NULL;
522 86c3caaf 2018-03-09 stsp }
523 86c3caaf 2018-03-09 stsp
524 bc70eb79 2019-05-09 stsp const char *
525 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
526 86c3caaf 2018-03-09 stsp {
527 36a38700 2019-05-10 stsp return worktree->head_ref_name;
528 024e9686 2019-05-14 stsp }
529 024e9686 2019-05-14 stsp
530 024e9686 2019-05-14 stsp const struct got_error *
531 024e9686 2019-05-14 stsp got_worktree_set_head_ref(struct got_worktree *worktree,
532 024e9686 2019-05-14 stsp struct got_reference *head_ref)
533 024e9686 2019-05-14 stsp {
534 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
535 024e9686 2019-05-14 stsp char *path_got = NULL, *head_ref_name = NULL;
536 024e9686 2019-05-14 stsp
537 024e9686 2019-05-14 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
538 024e9686 2019-05-14 stsp GOT_WORKTREE_GOT_DIR) == -1) {
539 024e9686 2019-05-14 stsp err = got_error_from_errno("asprintf");
540 024e9686 2019-05-14 stsp path_got = NULL;
541 024e9686 2019-05-14 stsp goto done;
542 024e9686 2019-05-14 stsp }
543 024e9686 2019-05-14 stsp
544 024e9686 2019-05-14 stsp head_ref_name = strdup(got_ref_get_name(head_ref));
545 024e9686 2019-05-14 stsp if (head_ref_name == NULL) {
546 024e9686 2019-05-14 stsp err = got_error_from_errno("strdup");
547 024e9686 2019-05-14 stsp goto done;
548 024e9686 2019-05-14 stsp }
549 024e9686 2019-05-14 stsp
550 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
551 024e9686 2019-05-14 stsp if (err)
552 024e9686 2019-05-14 stsp goto done;
553 024e9686 2019-05-14 stsp
554 024e9686 2019-05-14 stsp free(worktree->head_ref_name);
555 024e9686 2019-05-14 stsp worktree->head_ref_name = head_ref_name;
556 024e9686 2019-05-14 stsp done:
557 024e9686 2019-05-14 stsp free(path_got);
558 024e9686 2019-05-14 stsp if (err)
559 024e9686 2019-05-14 stsp free(head_ref_name);
560 024e9686 2019-05-14 stsp return err;
561 507dc3bb 2018-12-29 stsp }
562 507dc3bb 2018-12-29 stsp
563 b72f483a 2019-02-05 stsp struct got_object_id *
564 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
565 507dc3bb 2018-12-29 stsp {
566 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
567 86c3caaf 2018-03-09 stsp }
568 86c3caaf 2018-03-09 stsp
569 507dc3bb 2018-12-29 stsp const struct got_error *
570 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
571 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
572 507dc3bb 2018-12-29 stsp {
573 507dc3bb 2018-12-29 stsp const struct got_error *err;
574 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
575 507dc3bb 2018-12-29 stsp char *id_str = NULL;
576 507dc3bb 2018-12-29 stsp char *path_got = NULL;
577 507dc3bb 2018-12-29 stsp
578 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
579 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
580 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
581 507dc3bb 2018-12-29 stsp path_got = NULL;
582 507dc3bb 2018-12-29 stsp goto done;
583 507dc3bb 2018-12-29 stsp }
584 507dc3bb 2018-12-29 stsp
585 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
586 507dc3bb 2018-12-29 stsp if (err)
587 507dc3bb 2018-12-29 stsp return err;
588 507dc3bb 2018-12-29 stsp
589 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
590 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
591 507dc3bb 2018-12-29 stsp goto done;
592 507dc3bb 2018-12-29 stsp }
593 507dc3bb 2018-12-29 stsp
594 507dc3bb 2018-12-29 stsp /* Record our base commit. */
595 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
596 507dc3bb 2018-12-29 stsp if (err)
597 507dc3bb 2018-12-29 stsp goto done;
598 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
599 507dc3bb 2018-12-29 stsp if (err)
600 507dc3bb 2018-12-29 stsp goto done;
601 507dc3bb 2018-12-29 stsp
602 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
603 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
604 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
605 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
606 507dc3bb 2018-12-29 stsp goto done;
607 507dc3bb 2018-12-29 stsp }
608 507dc3bb 2018-12-29 stsp done:
609 507dc3bb 2018-12-29 stsp if (obj)
610 507dc3bb 2018-12-29 stsp got_object_close(obj);
611 507dc3bb 2018-12-29 stsp free(id_str);
612 507dc3bb 2018-12-29 stsp free(path_got);
613 507dc3bb 2018-12-29 stsp return err;
614 507dc3bb 2018-12-29 stsp }
615 507dc3bb 2018-12-29 stsp
616 9d31a1d8 2018-03-11 stsp static const struct got_error *
617 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
618 86c3caaf 2018-03-09 stsp {
619 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
620 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
621 638f9024 2019-05-13 stsp : got_error_from_errno2("flock",
622 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree)));
623 86c3caaf 2018-03-09 stsp return NULL;
624 21908da4 2019-01-13 stsp }
625 21908da4 2019-01-13 stsp
626 21908da4 2019-01-13 stsp static const struct got_error *
627 4a1ddfc2 2019-01-12 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
628 4a1ddfc2 2019-01-12 stsp {
629 4a1ddfc2 2019-01-12 stsp const struct got_error *err = NULL;
630 4a1ddfc2 2019-01-12 stsp char *abspath;
631 4a1ddfc2 2019-01-12 stsp
632 4a1ddfc2 2019-01-12 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
633 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
634 4a1ddfc2 2019-01-12 stsp
635 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(abspath);
636 ddcd8544 2019-03-11 stsp if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
637 ddcd8544 2019-03-11 stsp struct stat sb;
638 ddcd8544 2019-03-11 stsp err = NULL;
639 ddcd8544 2019-03-11 stsp if (lstat(abspath, &sb) == -1) {
640 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
641 ddcd8544 2019-03-11 stsp } else if (!S_ISDIR(sb.st_mode)) {
642 ddcd8544 2019-03-11 stsp /* TODO directory is obstructed; do something */
643 ddcd8544 2019-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
644 ddcd8544 2019-03-11 stsp }
645 ddcd8544 2019-03-11 stsp }
646 4a1ddfc2 2019-01-12 stsp free(abspath);
647 68c76935 2019-02-19 stsp return err;
648 68c76935 2019-02-19 stsp }
649 68c76935 2019-02-19 stsp
650 68c76935 2019-02-19 stsp static const struct got_error *
651 68c76935 2019-02-19 stsp check_file_contents_equal(int *same, FILE *f1, FILE *f2)
652 68c76935 2019-02-19 stsp {
653 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
654 68c76935 2019-02-19 stsp uint8_t fbuf1[8192];
655 68c76935 2019-02-19 stsp uint8_t fbuf2[8192];
656 68c76935 2019-02-19 stsp size_t flen1 = 0, flen2 = 0;
657 68c76935 2019-02-19 stsp
658 68c76935 2019-02-19 stsp *same = 1;
659 68c76935 2019-02-19 stsp
660 230a42bd 2019-05-11 jcs for (;;) {
661 68c76935 2019-02-19 stsp flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
662 68c76935 2019-02-19 stsp if (flen1 == 0 && ferror(f1)) {
663 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
664 68c76935 2019-02-19 stsp break;
665 68c76935 2019-02-19 stsp }
666 68c76935 2019-02-19 stsp flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
667 68c76935 2019-02-19 stsp if (flen2 == 0 && ferror(f2)) {
668 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
669 68c76935 2019-02-19 stsp break;
670 68c76935 2019-02-19 stsp }
671 68c76935 2019-02-19 stsp if (flen1 == 0) {
672 68c76935 2019-02-19 stsp if (flen2 != 0)
673 68c76935 2019-02-19 stsp *same = 0;
674 68c76935 2019-02-19 stsp break;
675 68c76935 2019-02-19 stsp } else if (flen2 == 0) {
676 68c76935 2019-02-19 stsp if (flen1 != 0)
677 68c76935 2019-02-19 stsp *same = 0;
678 68c76935 2019-02-19 stsp break;
679 68c76935 2019-02-19 stsp } else if (flen1 == flen2) {
680 68c76935 2019-02-19 stsp if (memcmp(fbuf1, fbuf2, flen2) != 0) {
681 68c76935 2019-02-19 stsp *same = 0;
682 68c76935 2019-02-19 stsp break;
683 68c76935 2019-02-19 stsp }
684 68c76935 2019-02-19 stsp } else {
685 68c76935 2019-02-19 stsp *same = 0;
686 68c76935 2019-02-19 stsp break;
687 68c76935 2019-02-19 stsp }
688 68c76935 2019-02-19 stsp }
689 68c76935 2019-02-19 stsp
690 68c76935 2019-02-19 stsp return err;
691 68c76935 2019-02-19 stsp }
692 68c76935 2019-02-19 stsp
693 68c76935 2019-02-19 stsp static const struct got_error *
694 68c76935 2019-02-19 stsp check_files_equal(int *same, const char *f1_path, const char *f2_path)
695 68c76935 2019-02-19 stsp {
696 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
697 68c76935 2019-02-19 stsp struct stat sb;
698 68c76935 2019-02-19 stsp size_t size1, size2;
699 68c76935 2019-02-19 stsp FILE *f1 = NULL, *f2 = NULL;
700 68c76935 2019-02-19 stsp
701 68c76935 2019-02-19 stsp *same = 1;
702 68c76935 2019-02-19 stsp
703 68c76935 2019-02-19 stsp if (lstat(f1_path, &sb) != 0) {
704 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", f1_path);
705 68c76935 2019-02-19 stsp goto done;
706 68c76935 2019-02-19 stsp }
707 68c76935 2019-02-19 stsp size1 = sb.st_size;
708 68c76935 2019-02-19 stsp
709 68c76935 2019-02-19 stsp if (lstat(f2_path, &sb) != 0) {
710 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", f2_path);
711 68c76935 2019-02-19 stsp goto done;
712 68c76935 2019-02-19 stsp }
713 68c76935 2019-02-19 stsp size2 = sb.st_size;
714 68c76935 2019-02-19 stsp
715 68c76935 2019-02-19 stsp if (size1 != size2) {
716 68c76935 2019-02-19 stsp *same = 0;
717 68c76935 2019-02-19 stsp return NULL;
718 68c76935 2019-02-19 stsp }
719 68c76935 2019-02-19 stsp
720 68c76935 2019-02-19 stsp f1 = fopen(f1_path, "r");
721 68c76935 2019-02-19 stsp if (f1 == NULL)
722 638f9024 2019-05-13 stsp return got_error_from_errno2("open", f1_path);
723 68c76935 2019-02-19 stsp
724 68c76935 2019-02-19 stsp f2 = fopen(f2_path, "r");
725 68c76935 2019-02-19 stsp if (f2 == NULL) {
726 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", f2_path);
727 68c76935 2019-02-19 stsp goto done;
728 68c76935 2019-02-19 stsp }
729 68c76935 2019-02-19 stsp
730 68c76935 2019-02-19 stsp err = check_file_contents_equal(same, f1, f2);
731 68c76935 2019-02-19 stsp done:
732 68c76935 2019-02-19 stsp if (f1 && fclose(f1) != 0 && err == NULL)
733 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
734 68c76935 2019-02-19 stsp if (f2 && fclose(f2) != 0 && err == NULL)
735 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
736 68c76935 2019-02-19 stsp
737 6353ad76 2019-02-08 stsp return err;
738 6353ad76 2019-02-08 stsp }
739 6353ad76 2019-02-08 stsp
740 6353ad76 2019-02-08 stsp /*
741 234035bc 2019-06-01 stsp * Perform a 3-way merge where blob2 acts as the common ancestor,
742 234035bc 2019-06-01 stsp * blob1 acts as the first derived version, and the file on disk
743 234035bc 2019-06-01 stsp * acts as the second derived version.
744 6353ad76 2019-02-08 stsp */
745 6353ad76 2019-02-08 stsp static const struct got_error *
746 234035bc 2019-06-01 stsp merge_blob(int *local_changes_subsumed, struct got_worktree *worktree,
747 234035bc 2019-06-01 stsp struct got_blob_object *blob2, const char *ondisk_path,
748 234035bc 2019-06-01 stsp const char *path, uint16_t st_mode, struct got_blob_object *blob1,
749 234035bc 2019-06-01 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
750 234035bc 2019-06-01 stsp void *progress_arg)
751 6353ad76 2019-02-08 stsp {
752 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
753 6353ad76 2019-02-08 stsp int merged_fd = -1;
754 6353ad76 2019-02-08 stsp FILE *f1 = NULL, *f2 = NULL;
755 6353ad76 2019-02-08 stsp char *blob1_path = NULL, *blob2_path = NULL;
756 af54ae4a 2019-02-19 stsp char *merged_path = NULL, *base_path = NULL;
757 6353ad76 2019-02-08 stsp char *id_str = NULL;
758 6353ad76 2019-02-08 stsp char *label1 = NULL;
759 234035bc 2019-06-01 stsp int overlapcnt = 0;
760 af54ae4a 2019-02-19 stsp char *parent;
761 6353ad76 2019-02-08 stsp
762 234035bc 2019-06-01 stsp *local_changes_subsumed = 0;
763 234035bc 2019-06-01 stsp
764 af54ae4a 2019-02-19 stsp parent = dirname(ondisk_path);
765 af54ae4a 2019-02-19 stsp if (parent == NULL)
766 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", ondisk_path);
767 af54ae4a 2019-02-19 stsp
768 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merged", parent) == -1)
769 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
770 af54ae4a 2019-02-19 stsp
771 af54ae4a 2019-02-19 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
772 6353ad76 2019-02-08 stsp if (err)
773 af54ae4a 2019-02-19 stsp goto done;
774 af54ae4a 2019-02-19 stsp
775 af54ae4a 2019-02-19 stsp free(base_path);
776 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob1", parent) == -1) {
777 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
778 af54ae4a 2019-02-19 stsp base_path = NULL;
779 af54ae4a 2019-02-19 stsp goto done;
780 af54ae4a 2019-02-19 stsp }
781 af54ae4a 2019-02-19 stsp
782 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob1_path, &f1, base_path);
783 6353ad76 2019-02-08 stsp if (err)
784 6353ad76 2019-02-08 stsp goto done;
785 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f1, blob1);
786 6353ad76 2019-02-08 stsp if (err)
787 6353ad76 2019-02-08 stsp goto done;
788 6353ad76 2019-02-08 stsp
789 af54ae4a 2019-02-19 stsp free(base_path);
790 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob2", parent) == -1) {
791 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
792 af54ae4a 2019-02-19 stsp base_path = NULL;
793 af54ae4a 2019-02-19 stsp goto done;
794 af54ae4a 2019-02-19 stsp }
795 af54ae4a 2019-02-19 stsp
796 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob2_path, &f2, base_path);
797 6353ad76 2019-02-08 stsp if (err)
798 6353ad76 2019-02-08 stsp goto done;
799 234035bc 2019-06-01 stsp if (blob2) {
800 1430b4e0 2019-03-27 stsp err = got_object_blob_dump_to_file(NULL, NULL, f2, blob2);
801 1430b4e0 2019-03-27 stsp if (err)
802 1430b4e0 2019-03-27 stsp goto done;
803 1430b4e0 2019-03-27 stsp } else {
804 1430b4e0 2019-03-27 stsp /*
805 1430b4e0 2019-03-27 stsp * If the file has no blob, this is an "add vs add" conflict,
806 1430b4e0 2019-03-27 stsp * and we simply use an empty ancestor file to make both files
807 1430b4e0 2019-03-27 stsp * appear in the merged result in their entirety.
808 1430b4e0 2019-03-27 stsp */
809 1430b4e0 2019-03-27 stsp }
810 6353ad76 2019-02-08 stsp
811 6353ad76 2019-02-08 stsp err = got_object_id_str(&id_str, worktree->base_commit_id);
812 6353ad76 2019-02-08 stsp if (err)
813 6353ad76 2019-02-08 stsp goto done;
814 6353ad76 2019-02-08 stsp if (asprintf(&label1, "commit %s", id_str) == -1) {
815 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
816 6353ad76 2019-02-08 stsp goto done;
817 6353ad76 2019-02-08 stsp }
818 6353ad76 2019-02-08 stsp
819 6353ad76 2019-02-08 stsp err = got_merge_diff3(&overlapcnt, merged_fd, blob1_path,
820 6353ad76 2019-02-08 stsp blob2_path, ondisk_path, label1, path);
821 6353ad76 2019-02-08 stsp if (err)
822 6353ad76 2019-02-08 stsp goto done;
823 6353ad76 2019-02-08 stsp
824 6353ad76 2019-02-08 stsp (*progress_cb)(progress_arg,
825 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
826 6353ad76 2019-02-08 stsp
827 816dc654 2019-02-16 stsp if (fsync(merged_fd) != 0) {
828 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
829 816dc654 2019-02-16 stsp goto done;
830 68c76935 2019-02-19 stsp }
831 68c76935 2019-02-19 stsp
832 68c76935 2019-02-19 stsp /* Check if a clean merge has subsumed all local changes. */
833 68c76935 2019-02-19 stsp if (overlapcnt == 0) {
834 234035bc 2019-06-01 stsp err = check_files_equal(local_changes_subsumed, blob1_path,
835 68c76935 2019-02-19 stsp merged_path);
836 68c76935 2019-02-19 stsp if (err)
837 68c76935 2019-02-19 stsp goto done;
838 816dc654 2019-02-16 stsp }
839 6353ad76 2019-02-08 stsp
840 70a0c8ec 2019-02-20 stsp if (chmod(merged_path, st_mode) != 0) {
841 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", merged_path);
842 70a0c8ec 2019-02-20 stsp goto done;
843 70a0c8ec 2019-02-20 stsp }
844 70a0c8ec 2019-02-20 stsp
845 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
846 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", merged_path,
847 230a42bd 2019-05-11 jcs ondisk_path);
848 2a57020b 2019-02-20 stsp unlink(merged_path);
849 6353ad76 2019-02-08 stsp goto done;
850 6353ad76 2019-02-08 stsp }
851 6353ad76 2019-02-08 stsp
852 6353ad76 2019-02-08 stsp done:
853 3a6ce05a 2019-02-11 stsp if (merged_fd != -1 && close(merged_fd) != 0 && err == NULL)
854 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
855 3a6ce05a 2019-02-11 stsp if (f1 && fclose(f1) != 0 && err == NULL)
856 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
857 3a6ce05a 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
858 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
859 6353ad76 2019-02-08 stsp free(merged_path);
860 af54ae4a 2019-02-19 stsp free(base_path);
861 6353ad76 2019-02-08 stsp if (blob1_path) {
862 6353ad76 2019-02-08 stsp unlink(blob1_path);
863 6353ad76 2019-02-08 stsp free(blob1_path);
864 6353ad76 2019-02-08 stsp }
865 6353ad76 2019-02-08 stsp if (blob2_path) {
866 6353ad76 2019-02-08 stsp unlink(blob2_path);
867 6353ad76 2019-02-08 stsp free(blob2_path);
868 6353ad76 2019-02-08 stsp }
869 6353ad76 2019-02-08 stsp free(id_str);
870 6353ad76 2019-02-08 stsp free(label1);
871 4a1ddfc2 2019-01-12 stsp return err;
872 4a1ddfc2 2019-01-12 stsp }
873 4a1ddfc2 2019-01-12 stsp
874 4a1ddfc2 2019-01-12 stsp static const struct got_error *
875 13d9040b 2019-03-27 stsp update_blob_fileindex_entry(struct got_worktree *worktree,
876 13d9040b 2019-03-27 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
877 13d9040b 2019-03-27 stsp const char *ondisk_path, const char *path, struct got_blob_object *blob,
878 13d9040b 2019-03-27 stsp int update_timestamps)
879 13d9040b 2019-03-27 stsp {
880 13d9040b 2019-03-27 stsp const struct got_error *err = NULL;
881 13d9040b 2019-03-27 stsp
882 13d9040b 2019-03-27 stsp if (ie == NULL)
883 13d9040b 2019-03-27 stsp ie = got_fileindex_entry_get(fileindex, path);
884 13d9040b 2019-03-27 stsp if (ie)
885 13d9040b 2019-03-27 stsp err = got_fileindex_entry_update(ie, ondisk_path,
886 13d9040b 2019-03-27 stsp blob->id.sha1, worktree->base_commit_id->sha1,
887 13d9040b 2019-03-27 stsp update_timestamps);
888 13d9040b 2019-03-27 stsp else {
889 13d9040b 2019-03-27 stsp struct got_fileindex_entry *new_ie;
890 13d9040b 2019-03-27 stsp err = got_fileindex_entry_alloc(&new_ie, ondisk_path,
891 13d9040b 2019-03-27 stsp path, blob->id.sha1, worktree->base_commit_id->sha1);
892 13d9040b 2019-03-27 stsp if (!err)
893 13d9040b 2019-03-27 stsp err = got_fileindex_entry_add(fileindex, new_ie);
894 13d9040b 2019-03-27 stsp }
895 13d9040b 2019-03-27 stsp return err;
896 13d9040b 2019-03-27 stsp }
897 13d9040b 2019-03-27 stsp
898 13d9040b 2019-03-27 stsp static const struct got_error *
899 13d9040b 2019-03-27 stsp install_blob(struct got_worktree *worktree, const char *ondisk_path,
900 13d9040b 2019-03-27 stsp const char *path, uint16_t te_mode, uint16_t st_mode,
901 13d9040b 2019-03-27 stsp struct got_blob_object *blob, int restoring_missing_file,
902 a129376b 2019-03-28 stsp int reverting_versioned_file, struct got_repository *repo,
903 a129376b 2019-03-28 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
904 9d31a1d8 2018-03-11 stsp {
905 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
906 507dc3bb 2018-12-29 stsp int fd = -1;
907 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
908 507dc3bb 2018-12-29 stsp int update = 0;
909 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
910 9d31a1d8 2018-03-11 stsp
911 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
912 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
913 9d31a1d8 2018-03-11 stsp if (fd == -1) {
914 21908da4 2019-01-13 stsp if (errno == ENOENT) {
915 21908da4 2019-01-13 stsp char *parent = dirname(path);
916 21908da4 2019-01-13 stsp if (parent == NULL)
917 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", path);
918 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
919 21908da4 2019-01-13 stsp if (err)
920 21908da4 2019-01-13 stsp return err;
921 21908da4 2019-01-13 stsp fd = open(ondisk_path,
922 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
923 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
924 21908da4 2019-01-13 stsp if (fd == -1)
925 638f9024 2019-05-13 stsp return got_error_from_errno2("open",
926 230a42bd 2019-05-11 jcs ondisk_path);
927 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
928 b8f41171 2019-02-10 stsp if (!S_ISREG(st_mode)) {
929 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
930 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
931 507dc3bb 2018-12-29 stsp goto done;
932 d70b8e30 2018-12-27 stsp } else {
933 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
934 507dc3bb 2018-12-29 stsp ondisk_path);
935 507dc3bb 2018-12-29 stsp if (err)
936 507dc3bb 2018-12-29 stsp goto done;
937 507dc3bb 2018-12-29 stsp update = 1;
938 9d31a1d8 2018-03-11 stsp }
939 507dc3bb 2018-12-29 stsp } else
940 638f9024 2019-05-13 stsp return got_error_from_errno2("open", ondisk_path);
941 9d31a1d8 2018-03-11 stsp }
942 9d31a1d8 2018-03-11 stsp
943 a378724f 2019-02-10 stsp if (restoring_missing_file)
944 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_MISSING, path);
945 a129376b 2019-03-28 stsp else if (reverting_versioned_file)
946 a129376b 2019-03-28 stsp (*progress_cb)(progress_arg, GOT_STATUS_REVERT, path);
947 a378724f 2019-02-10 stsp else
948 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg,
949 a378724f 2019-02-10 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
950 d7b62c98 2018-12-27 stsp
951 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
952 9d31a1d8 2018-03-11 stsp do {
953 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
954 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
955 9d31a1d8 2018-03-11 stsp if (err)
956 9d31a1d8 2018-03-11 stsp break;
957 9d31a1d8 2018-03-11 stsp if (len > 0) {
958 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
959 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
960 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
961 638f9024 2019-05-13 stsp err = got_error_from_errno("write");
962 b87c6f83 2018-12-24 stsp goto done;
963 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
964 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
965 b87c6f83 2018-12-24 stsp goto done;
966 9d31a1d8 2018-03-11 stsp }
967 61d6eaa3 2018-12-24 stsp hdrlen = 0;
968 9d31a1d8 2018-03-11 stsp }
969 9d31a1d8 2018-03-11 stsp } while (len != 0);
970 9d31a1d8 2018-03-11 stsp
971 816dc654 2019-02-16 stsp if (fsync(fd) != 0) {
972 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
973 816dc654 2019-02-16 stsp goto done;
974 816dc654 2019-02-16 stsp }
975 9d31a1d8 2018-03-11 stsp
976 507dc3bb 2018-12-29 stsp if (update) {
977 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
978 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath,
979 230a42bd 2019-05-11 jcs ondisk_path);
980 2a57020b 2019-02-20 stsp unlink(tmppath);
981 68ed9ba5 2019-02-10 stsp goto done;
982 68ed9ba5 2019-02-10 stsp }
983 68ed9ba5 2019-02-10 stsp }
984 ba8a0d4d 2019-02-10 stsp
985 b8f41171 2019-02-10 stsp if (te_mode & S_IXUSR) {
986 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode | S_IXUSR) == -1) {
987 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", ondisk_path);
988 507dc3bb 2018-12-29 stsp goto done;
989 507dc3bb 2018-12-29 stsp }
990 ba8a0d4d 2019-02-10 stsp } else {
991 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode & ~S_IXUSR) == -1) {
992 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", ondisk_path);
993 68ed9ba5 2019-02-10 stsp goto done;
994 68ed9ba5 2019-02-10 stsp }
995 507dc3bb 2018-12-29 stsp }
996 507dc3bb 2018-12-29 stsp
997 9d31a1d8 2018-03-11 stsp done:
998 3a6ce05a 2019-02-11 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
999 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
1000 507dc3bb 2018-12-29 stsp free(tmppath);
1001 6353ad76 2019-02-08 stsp return err;
1002 6353ad76 2019-02-08 stsp }
1003 6353ad76 2019-02-08 stsp
1004 7154f6ce 2019-03-27 stsp /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
1005 6353ad76 2019-02-08 stsp static const struct got_error *
1006 7154f6ce 2019-03-27 stsp get_modified_file_content_status(unsigned char *status, FILE *f)
1007 7154f6ce 2019-03-27 stsp {
1008 7154f6ce 2019-03-27 stsp const struct got_error *err = NULL;
1009 7154f6ce 2019-03-27 stsp const char *markers[3] = {
1010 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_BEGIN,
1011 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_SEP,
1012 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_END
1013 7154f6ce 2019-03-27 stsp };
1014 7154f6ce 2019-03-27 stsp int i = 0;
1015 7154f6ce 2019-03-27 stsp char *line;
1016 7154f6ce 2019-03-27 stsp size_t len;
1017 7154f6ce 2019-03-27 stsp const char delim[3] = {'\0', '\0', '\0'};
1018 7154f6ce 2019-03-27 stsp
1019 7154f6ce 2019-03-27 stsp while (*status == GOT_STATUS_MODIFY) {
1020 7154f6ce 2019-03-27 stsp line = fparseln(f, &len, NULL, delim, 0);
1021 7154f6ce 2019-03-27 stsp if (line == NULL) {
1022 7154f6ce 2019-03-27 stsp if (feof(f))
1023 7154f6ce 2019-03-27 stsp break;
1024 7154f6ce 2019-03-27 stsp err = got_ferror(f, GOT_ERR_IO);
1025 7154f6ce 2019-03-27 stsp break;
1026 7154f6ce 2019-03-27 stsp }
1027 7154f6ce 2019-03-27 stsp
1028 7154f6ce 2019-03-27 stsp if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1029 19332e6d 2019-05-13 stsp if (strcmp(markers[i], GOT_DIFF_CONFLICT_MARKER_END)
1030 19332e6d 2019-05-13 stsp == 0)
1031 7154f6ce 2019-03-27 stsp *status = GOT_STATUS_CONFLICT;
1032 7154f6ce 2019-03-27 stsp else
1033 7154f6ce 2019-03-27 stsp i++;
1034 7154f6ce 2019-03-27 stsp }
1035 7154f6ce 2019-03-27 stsp }
1036 7154f6ce 2019-03-27 stsp
1037 7154f6ce 2019-03-27 stsp return err;
1038 7154f6ce 2019-03-27 stsp }
1039 7154f6ce 2019-03-27 stsp
1040 7154f6ce 2019-03-27 stsp static const struct got_error *
1041 b8f41171 2019-02-10 stsp get_file_status(unsigned char *status, struct stat *sb,
1042 b8f41171 2019-02-10 stsp struct got_fileindex_entry *ie, const char *abspath,
1043 b8f41171 2019-02-10 stsp struct got_repository *repo)
1044 6353ad76 2019-02-08 stsp {
1045 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
1046 6353ad76 2019-02-08 stsp struct got_object_id id;
1047 6353ad76 2019-02-08 stsp size_t hdrlen;
1048 6353ad76 2019-02-08 stsp FILE *f = NULL;
1049 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
1050 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
1051 6353ad76 2019-02-08 stsp size_t flen, blen;
1052 6353ad76 2019-02-08 stsp
1053 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
1054 6353ad76 2019-02-08 stsp
1055 b8f41171 2019-02-10 stsp if (lstat(abspath, sb) == -1) {
1056 a378724f 2019-02-10 stsp if (errno == ENOENT) {
1057 b8f41171 2019-02-10 stsp if (ie) {
1058 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1059 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_MISSING;
1060 2ec1f75b 2019-03-26 stsp else
1061 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_DELETE;
1062 b8f41171 2019-02-10 stsp sb->st_mode =
1063 b8f41171 2019-02-10 stsp ((ie->mode >> GOT_FILEIDX_MODE_PERMS_SHIFT)
1064 b8f41171 2019-02-10 stsp & (S_IRWXU | S_IRWXG | S_IRWXO));
1065 b8f41171 2019-02-10 stsp } else
1066 b8f41171 2019-02-10 stsp sb->st_mode = GOT_DEFAULT_FILE_MODE;
1067 a378724f 2019-02-10 stsp return NULL;
1068 a378724f 2019-02-10 stsp }
1069 638f9024 2019-05-13 stsp return got_error_from_errno2("lstat", abspath);
1070 a378724f 2019-02-10 stsp }
1071 6353ad76 2019-02-08 stsp
1072 b8f41171 2019-02-10 stsp if (!S_ISREG(sb->st_mode)) {
1073 6353ad76 2019-02-08 stsp *status = GOT_STATUS_OBSTRUCTED;
1074 6353ad76 2019-02-08 stsp return NULL;
1075 6353ad76 2019-02-08 stsp }
1076 6353ad76 2019-02-08 stsp
1077 b8f41171 2019-02-10 stsp if (ie == NULL)
1078 d00136be 2019-03-26 stsp return NULL;
1079 d00136be 2019-03-26 stsp
1080 2ec1f75b 2019-03-26 stsp if (!got_fileindex_entry_has_file_on_disk(ie)) {
1081 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_DELETE;
1082 2ec1f75b 2019-03-26 stsp return NULL;
1083 2ec1f75b 2019-03-26 stsp } else if (!got_fileindex_entry_has_blob(ie)) {
1084 d00136be 2019-03-26 stsp *status = GOT_STATUS_ADD;
1085 b8f41171 2019-02-10 stsp return NULL;
1086 d00136be 2019-03-26 stsp }
1087 b8f41171 2019-02-10 stsp
1088 b8f41171 2019-02-10 stsp if (ie->ctime_sec == sb->st_ctime &&
1089 b8f41171 2019-02-10 stsp ie->ctime_nsec == sb->st_ctimensec &&
1090 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
1091 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
1092 b8f41171 2019-02-10 stsp ie->mtime_nsec == sb->st_mtimensec &&
1093 b8f41171 2019-02-10 stsp ie->size == (sb->st_size & 0xffffffff))
1094 6353ad76 2019-02-08 stsp return NULL;
1095 6353ad76 2019-02-08 stsp
1096 6353ad76 2019-02-08 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1097 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1098 6353ad76 2019-02-08 stsp if (err)
1099 6353ad76 2019-02-08 stsp return err;
1100 6353ad76 2019-02-08 stsp
1101 6353ad76 2019-02-08 stsp f = fopen(abspath, "r");
1102 6353ad76 2019-02-08 stsp if (f == NULL) {
1103 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", abspath);
1104 6353ad76 2019-02-08 stsp goto done;
1105 6353ad76 2019-02-08 stsp }
1106 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1107 656b1f76 2019-05-11 jcs for (;;) {
1108 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1109 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
1110 6353ad76 2019-02-08 stsp if (err)
1111 7154f6ce 2019-03-27 stsp goto done;
1112 3cbbd752 2019-02-19 stsp /* Skip length of blob object header first time around. */
1113 3cbbd752 2019-02-19 stsp flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1114 80c5c120 2019-02-19 stsp if (flen == 0 && ferror(f)) {
1115 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
1116 7154f6ce 2019-03-27 stsp goto done;
1117 80c5c120 2019-02-19 stsp }
1118 6353ad76 2019-02-08 stsp if (blen == 0) {
1119 6353ad76 2019-02-08 stsp if (flen != 0)
1120 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1121 6353ad76 2019-02-08 stsp break;
1122 6353ad76 2019-02-08 stsp } else if (flen == 0) {
1123 6353ad76 2019-02-08 stsp if (blen != 0)
1124 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1125 6353ad76 2019-02-08 stsp break;
1126 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
1127 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
1128 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1129 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1130 6353ad76 2019-02-08 stsp break;
1131 6353ad76 2019-02-08 stsp }
1132 6353ad76 2019-02-08 stsp } else {
1133 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1134 6353ad76 2019-02-08 stsp break;
1135 6353ad76 2019-02-08 stsp }
1136 6353ad76 2019-02-08 stsp hdrlen = 0;
1137 6353ad76 2019-02-08 stsp }
1138 7154f6ce 2019-03-27 stsp
1139 7154f6ce 2019-03-27 stsp if (*status == GOT_STATUS_MODIFY) {
1140 7154f6ce 2019-03-27 stsp rewind(f);
1141 7154f6ce 2019-03-27 stsp err = get_modified_file_content_status(status, f);
1142 7154f6ce 2019-03-27 stsp }
1143 6353ad76 2019-02-08 stsp done:
1144 6353ad76 2019-02-08 stsp if (blob)
1145 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
1146 6353ad76 2019-02-08 stsp if (f)
1147 6353ad76 2019-02-08 stsp fclose(f);
1148 9d31a1d8 2018-03-11 stsp return err;
1149 9d31a1d8 2018-03-11 stsp }
1150 9d31a1d8 2018-03-11 stsp
1151 9d31a1d8 2018-03-11 stsp static const struct got_error *
1152 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
1153 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1154 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
1155 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1156 0584f854 2019-04-06 stsp void *progress_arg)
1157 9d31a1d8 2018-03-11 stsp {
1158 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1159 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
1160 6353ad76 2019-02-08 stsp char *ondisk_path;
1161 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1162 b8f41171 2019-02-10 stsp struct stat sb;
1163 9d31a1d8 2018-03-11 stsp
1164 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1165 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1166 6353ad76 2019-02-08 stsp
1167 b8f41171 2019-02-10 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1168 b8f41171 2019-02-10 stsp if (err)
1169 b8f41171 2019-02-10 stsp goto done;
1170 6353ad76 2019-02-08 stsp
1171 b8f41171 2019-02-10 stsp if (status == GOT_STATUS_OBSTRUCTED) {
1172 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, status, path);
1173 b8f41171 2019-02-10 stsp goto done;
1174 b8f41171 2019-02-10 stsp }
1175 b8f41171 2019-02-10 stsp
1176 b8f41171 2019-02-10 stsp if (ie && status != GOT_STATUS_MISSING) {
1177 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_commit(ie) &&
1178 1430b4e0 2019-03-27 stsp memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1179 b8f41171 2019-02-10 stsp SHA1_DIGEST_LENGTH) == 0) {
1180 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1181 b8f41171 2019-02-10 stsp path);
1182 6353ad76 2019-02-08 stsp goto done;
1183 a378724f 2019-02-10 stsp }
1184 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_blob(ie) &&
1185 1430b4e0 2019-03-27 stsp memcmp(ie->blob_sha1, te->id->sha1,
1186 1430b4e0 2019-03-27 stsp SHA1_DIGEST_LENGTH) == 0)
1187 b8f41171 2019-02-10 stsp goto done;
1188 9d31a1d8 2018-03-11 stsp }
1189 9d31a1d8 2018-03-11 stsp
1190 8da9e5f4 2019-01-12 stsp err = got_object_open_as_blob(&blob, repo, te->id, 8192);
1191 8da9e5f4 2019-01-12 stsp if (err)
1192 6353ad76 2019-02-08 stsp goto done;
1193 512f0d0e 2019-01-02 stsp
1194 234035bc 2019-06-01 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD) {
1195 234035bc 2019-06-01 stsp int update_timestamps;
1196 234035bc 2019-06-01 stsp struct got_blob_object *blob2 = NULL;
1197 234035bc 2019-06-01 stsp if (got_fileindex_entry_has_blob(ie)) {
1198 234035bc 2019-06-01 stsp struct got_object_id id2;
1199 234035bc 2019-06-01 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1200 234035bc 2019-06-01 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
1201 234035bc 2019-06-01 stsp if (err)
1202 234035bc 2019-06-01 stsp goto done;
1203 234035bc 2019-06-01 stsp }
1204 234035bc 2019-06-01 stsp err = merge_blob(&update_timestamps, worktree, blob2,
1205 234035bc 2019-06-01 stsp ondisk_path, path, sb.st_mode, blob, repo,
1206 234035bc 2019-06-01 stsp progress_cb, progress_arg);
1207 234035bc 2019-06-01 stsp if (blob2)
1208 234035bc 2019-06-01 stsp got_object_blob_close(blob2);
1209 234035bc 2019-06-01 stsp /*
1210 234035bc 2019-06-01 stsp * Do not update timestamps of files with local changes.
1211 234035bc 2019-06-01 stsp * Otherwise, a future status walk would treat them as
1212 234035bc 2019-06-01 stsp * unmodified files again.
1213 234035bc 2019-06-01 stsp */
1214 234035bc 2019-06-01 stsp err = got_fileindex_entry_update(ie, ondisk_path,
1215 234035bc 2019-06-01 stsp blob->id.sha1, worktree->base_commit_id->sha1,
1216 234035bc 2019-06-01 stsp update_timestamps);
1217 234035bc 2019-06-01 stsp } else if (status == GOT_STATUS_DELETE) {
1218 13d9040b 2019-03-27 stsp (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1219 13d9040b 2019-03-27 stsp err = update_blob_fileindex_entry(worktree, fileindex, ie,
1220 13d9040b 2019-03-27 stsp ondisk_path, path, blob, 0);
1221 13d9040b 2019-03-27 stsp if (err)
1222 13d9040b 2019-03-27 stsp goto done;
1223 13d9040b 2019-03-27 stsp } else {
1224 13d9040b 2019-03-27 stsp err = install_blob(worktree, ondisk_path, path, te->mode,
1225 a129376b 2019-03-28 stsp sb.st_mode, blob, status == GOT_STATUS_MISSING, 0,
1226 a129376b 2019-03-28 stsp repo, progress_cb, progress_arg);
1227 13d9040b 2019-03-27 stsp if (err)
1228 13d9040b 2019-03-27 stsp goto done;
1229 13d9040b 2019-03-27 stsp err = update_blob_fileindex_entry(worktree, fileindex, ie,
1230 13d9040b 2019-03-27 stsp ondisk_path, path, blob, 1);
1231 13d9040b 2019-03-27 stsp if (err)
1232 13d9040b 2019-03-27 stsp goto done;
1233 13d9040b 2019-03-27 stsp }
1234 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
1235 6353ad76 2019-02-08 stsp done:
1236 6353ad76 2019-02-08 stsp free(ondisk_path);
1237 8da9e5f4 2019-01-12 stsp return err;
1238 90285c3b 2019-01-08 stsp }
1239 90285c3b 2019-01-08 stsp
1240 90285c3b 2019-01-08 stsp static const struct got_error *
1241 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
1242 90285c3b 2019-01-08 stsp {
1243 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
1244 90285c3b 2019-01-08 stsp char *ondisk_path = NULL;
1245 90285c3b 2019-01-08 stsp
1246 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
1247 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1248 90285c3b 2019-01-08 stsp
1249 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
1250 c97665ae 2019-01-13 stsp if (errno != ENOENT)
1251 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", ondisk_path);
1252 c97665ae 2019-01-13 stsp } else {
1253 90285c3b 2019-01-08 stsp char *parent = dirname(ondisk_path);
1254 7a9df742 2019-01-08 stsp while (parent && strcmp(parent, root_path) != 0) {
1255 26c4ac4d 2019-01-08 stsp if (rmdir(parent) == -1) {
1256 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
1257 638f9024 2019-05-13 stsp err = got_error_from_errno2("rmdir",
1258 230a42bd 2019-05-11 jcs parent);
1259 90285c3b 2019-01-08 stsp break;
1260 90285c3b 2019-01-08 stsp }
1261 90285c3b 2019-01-08 stsp parent = dirname(parent);
1262 90285c3b 2019-01-08 stsp }
1263 90285c3b 2019-01-08 stsp }
1264 90285c3b 2019-01-08 stsp free(ondisk_path);
1265 90285c3b 2019-01-08 stsp return err;
1266 512f0d0e 2019-01-02 stsp }
1267 512f0d0e 2019-01-02 stsp
1268 708d8e67 2019-03-27 stsp static const struct got_error *
1269 708d8e67 2019-03-27 stsp delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
1270 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie, struct got_repository *repo,
1271 0584f854 2019-04-06 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1272 708d8e67 2019-03-27 stsp {
1273 fc6346c4 2019-03-27 stsp const struct got_error *err = NULL;
1274 708d8e67 2019-03-27 stsp unsigned char status;
1275 708d8e67 2019-03-27 stsp struct stat sb;
1276 708d8e67 2019-03-27 stsp char *ondisk_path;
1277 708d8e67 2019-03-27 stsp
1278 708d8e67 2019-03-27 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
1279 708d8e67 2019-03-27 stsp == -1)
1280 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1281 708d8e67 2019-03-27 stsp
1282 708d8e67 2019-03-27 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1283 708d8e67 2019-03-27 stsp if (err)
1284 708d8e67 2019-03-27 stsp return err;
1285 708d8e67 2019-03-27 stsp
1286 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
1287 fc6346c4 2019-03-27 stsp status == GOT_STATUS_ADD) {
1288 fc6346c4 2019-03-27 stsp (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
1289 fc6346c4 2019-03-27 stsp /*
1290 fc6346c4 2019-03-27 stsp * Preserve the working file and change the deleted blob's
1291 fc6346c4 2019-03-27 stsp * entry into a schedule-add entry.
1292 fc6346c4 2019-03-27 stsp */
1293 fc6346c4 2019-03-27 stsp err = got_fileindex_entry_update(ie, ondisk_path, NULL, NULL,
1294 fc6346c4 2019-03-27 stsp 0);
1295 708d8e67 2019-03-27 stsp if (err)
1296 708d8e67 2019-03-27 stsp return err;
1297 fc6346c4 2019-03-27 stsp } else {
1298 fc6346c4 2019-03-27 stsp (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
1299 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_NO_CHANGE) {
1300 fc6346c4 2019-03-27 stsp err = remove_ondisk_file(worktree->root_path, ie->path);
1301 fc6346c4 2019-03-27 stsp if (err)
1302 fc6346c4 2019-03-27 stsp return err;
1303 fc6346c4 2019-03-27 stsp }
1304 fc6346c4 2019-03-27 stsp got_fileindex_entry_remove(fileindex, ie);
1305 708d8e67 2019-03-27 stsp }
1306 708d8e67 2019-03-27 stsp
1307 fc6346c4 2019-03-27 stsp return err;
1308 708d8e67 2019-03-27 stsp }
1309 708d8e67 2019-03-27 stsp
1310 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
1311 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
1312 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
1313 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
1314 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
1315 8da9e5f4 2019-01-12 stsp void *progress_arg;
1316 8da9e5f4 2019-01-12 stsp got_worktree_cancel_cb cancel_cb;
1317 8da9e5f4 2019-01-12 stsp void *cancel_arg;
1318 8da9e5f4 2019-01-12 stsp };
1319 8da9e5f4 2019-01-12 stsp
1320 512f0d0e 2019-01-02 stsp static const struct got_error *
1321 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
1322 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
1323 512f0d0e 2019-01-02 stsp {
1324 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1325 0584f854 2019-04-06 stsp
1326 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1327 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1328 512f0d0e 2019-01-02 stsp
1329 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
1330 0584f854 2019-04-06 stsp ie->path, a->repo, a->progress_cb, a->progress_arg);
1331 8da9e5f4 2019-01-12 stsp }
1332 512f0d0e 2019-01-02 stsp
1333 8da9e5f4 2019-01-12 stsp static const struct got_error *
1334 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1335 8da9e5f4 2019-01-12 stsp {
1336 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1337 7a9df742 2019-01-08 stsp
1338 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1339 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1340 0584f854 2019-04-06 stsp
1341 234035bc 2019-06-01 stsp return delete_blob(a->worktree, a->fileindex, ie,
1342 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
1343 9d31a1d8 2018-03-11 stsp }
1344 9d31a1d8 2018-03-11 stsp
1345 9d31a1d8 2018-03-11 stsp static const struct got_error *
1346 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
1347 9d31a1d8 2018-03-11 stsp {
1348 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1349 8da9e5f4 2019-01-12 stsp const struct got_error *err;
1350 8da9e5f4 2019-01-12 stsp char *path;
1351 9d31a1d8 2018-03-11 stsp
1352 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1353 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1354 0584f854 2019-04-06 stsp
1355 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
1356 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
1357 8da9e5f4 2019-01-12 stsp == -1)
1358 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1359 9d31a1d8 2018-03-11 stsp
1360 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
1361 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
1362 8da9e5f4 2019-01-12 stsp else
1363 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
1364 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
1365 9d31a1d8 2018-03-11 stsp
1366 8da9e5f4 2019-01-12 stsp free(path);
1367 0cd1c46a 2019-03-11 stsp return err;
1368 0cd1c46a 2019-03-11 stsp }
1369 0cd1c46a 2019-03-11 stsp
1370 517bab73 2019-03-11 stsp const struct got_error *
1371 517bab73 2019-03-11 stsp got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
1372 0cd1c46a 2019-03-11 stsp {
1373 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
1374 0647c563 2019-03-11 stsp char *uuidstr = NULL;
1375 0cd1c46a 2019-03-11 stsp uint32_t uuid_status;
1376 0cd1c46a 2019-03-11 stsp
1377 517bab73 2019-03-11 stsp *refname = NULL;
1378 517bab73 2019-03-11 stsp
1379 0cd1c46a 2019-03-11 stsp uuid_to_string(&worktree->uuid, &uuidstr, &uuid_status);
1380 0cd1c46a 2019-03-11 stsp if (uuid_status != uuid_s_ok)
1381 0cd1c46a 2019-03-11 stsp return got_error_uuid(uuid_status);
1382 0cd1c46a 2019-03-11 stsp
1383 0647c563 2019-03-11 stsp if (asprintf(refname, "%s-%s", GOT_WORKTREE_BASE_REF_PREFIX, uuidstr)
1384 0647c563 2019-03-11 stsp == -1) {
1385 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1386 0647c563 2019-03-11 stsp *refname = NULL;
1387 0cd1c46a 2019-03-11 stsp }
1388 517bab73 2019-03-11 stsp free(uuidstr);
1389 517bab73 2019-03-11 stsp return err;
1390 517bab73 2019-03-11 stsp }
1391 517bab73 2019-03-11 stsp
1392 517bab73 2019-03-11 stsp /*
1393 517bab73 2019-03-11 stsp * Prevent Git's garbage collector from deleting our base commit by
1394 517bab73 2019-03-11 stsp * setting a reference to our base commit's ID.
1395 517bab73 2019-03-11 stsp */
1396 517bab73 2019-03-11 stsp static const struct got_error *
1397 517bab73 2019-03-11 stsp ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
1398 517bab73 2019-03-11 stsp {
1399 517bab73 2019-03-11 stsp const struct got_error *err = NULL;
1400 517bab73 2019-03-11 stsp struct got_reference *ref = NULL;
1401 517bab73 2019-03-11 stsp char *refname;
1402 517bab73 2019-03-11 stsp
1403 517bab73 2019-03-11 stsp err = got_worktree_get_base_ref_name(&refname, worktree);
1404 517bab73 2019-03-11 stsp if (err)
1405 517bab73 2019-03-11 stsp return err;
1406 0cd1c46a 2019-03-11 stsp
1407 0cd1c46a 2019-03-11 stsp err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
1408 0cd1c46a 2019-03-11 stsp if (err)
1409 0cd1c46a 2019-03-11 stsp goto done;
1410 0cd1c46a 2019-03-11 stsp
1411 0cd1c46a 2019-03-11 stsp err = got_ref_write(ref, repo);
1412 0cd1c46a 2019-03-11 stsp done:
1413 0cd1c46a 2019-03-11 stsp free(refname);
1414 0cd1c46a 2019-03-11 stsp if (ref)
1415 0cd1c46a 2019-03-11 stsp got_ref_close(ref);
1416 9d31a1d8 2018-03-11 stsp return err;
1417 9d31a1d8 2018-03-11 stsp }
1418 9d31a1d8 2018-03-11 stsp
1419 ebf99748 2019-05-09 stsp static const struct got_error *
1420 ebf99748 2019-05-09 stsp open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
1421 ebf99748 2019-05-09 stsp struct got_worktree *worktree)
1422 ebf99748 2019-05-09 stsp {
1423 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
1424 ebf99748 2019-05-09 stsp FILE *index = NULL;
1425 0cd1c46a 2019-03-11 stsp
1426 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1427 ebf99748 2019-05-09 stsp *fileindex = got_fileindex_alloc();
1428 ebf99748 2019-05-09 stsp if (*fileindex == NULL)
1429 638f9024 2019-05-13 stsp return got_error_from_errno("got_fileindex_alloc");
1430 ebf99748 2019-05-09 stsp
1431 ebf99748 2019-05-09 stsp if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
1432 ebf99748 2019-05-09 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1433 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1434 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1435 ebf99748 2019-05-09 stsp goto done;
1436 ebf99748 2019-05-09 stsp }
1437 ebf99748 2019-05-09 stsp
1438 ebf99748 2019-05-09 stsp index = fopen(*fileindex_path, "rb");
1439 ebf99748 2019-05-09 stsp if (index == NULL) {
1440 ebf99748 2019-05-09 stsp if (errno != ENOENT)
1441 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", *fileindex_path);
1442 ebf99748 2019-05-09 stsp } else {
1443 ebf99748 2019-05-09 stsp err = got_fileindex_read(*fileindex, index);
1444 ebf99748 2019-05-09 stsp if (fclose(index) != 0 && err == NULL)
1445 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1446 ebf99748 2019-05-09 stsp }
1447 ebf99748 2019-05-09 stsp done:
1448 ebf99748 2019-05-09 stsp if (err) {
1449 ebf99748 2019-05-09 stsp free(*fileindex_path);
1450 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1451 ebf99748 2019-05-09 stsp free(*fileindex);
1452 ebf99748 2019-05-09 stsp *fileindex = NULL;
1453 ebf99748 2019-05-09 stsp }
1454 ebf99748 2019-05-09 stsp return err;
1455 ebf99748 2019-05-09 stsp }
1456 c932eeeb 2019-05-22 stsp
1457 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg {
1458 c932eeeb 2019-05-22 stsp struct got_object_id *base_commit_id;
1459 c932eeeb 2019-05-22 stsp const char *path;
1460 c932eeeb 2019-05-22 stsp size_t path_len;
1461 c932eeeb 2019-05-22 stsp const char *entry_name;
1462 c932eeeb 2019-05-22 stsp };
1463 ebf99748 2019-05-09 stsp
1464 c932eeeb 2019-05-22 stsp /* Bump base commit ID of all files within an updated part of the work tree. */
1465 c932eeeb 2019-05-22 stsp static const struct got_error *
1466 c932eeeb 2019-05-22 stsp bump_base_commit_id(void *arg, struct got_fileindex_entry *ie)
1467 c932eeeb 2019-05-22 stsp {
1468 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg *a = arg;
1469 c932eeeb 2019-05-22 stsp
1470 c932eeeb 2019-05-22 stsp if (a->entry_name) {
1471 c932eeeb 2019-05-22 stsp if (strcmp(ie->path, a->path) != 0)
1472 c932eeeb 2019-05-22 stsp return NULL;
1473 c932eeeb 2019-05-22 stsp } else if (!got_path_is_child(ie->path, a->path, a->path_len))
1474 c932eeeb 2019-05-22 stsp return NULL;
1475 c932eeeb 2019-05-22 stsp
1476 c932eeeb 2019-05-22 stsp memcpy(ie->commit_sha1, a->base_commit_id->sha1, SHA1_DIGEST_LENGTH);
1477 c932eeeb 2019-05-22 stsp return NULL;
1478 9c6338c4 2019-06-02 stsp }
1479 9c6338c4 2019-06-02 stsp
1480 9c6338c4 2019-06-02 stsp static const struct got_error *
1481 9c6338c4 2019-06-02 stsp sync_fileindex(struct got_fileindex *fileindex, const char *fileindex_path)
1482 9c6338c4 2019-06-02 stsp {
1483 9c6338c4 2019-06-02 stsp const struct got_error *err = NULL;
1484 9c6338c4 2019-06-02 stsp char *new_fileindex_path = NULL;
1485 9c6338c4 2019-06-02 stsp FILE *new_index = NULL;
1486 9c6338c4 2019-06-02 stsp
1487 9c6338c4 2019-06-02 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
1488 9c6338c4 2019-06-02 stsp fileindex_path);
1489 9c6338c4 2019-06-02 stsp if (err)
1490 9c6338c4 2019-06-02 stsp goto done;
1491 9c6338c4 2019-06-02 stsp
1492 9c6338c4 2019-06-02 stsp err = got_fileindex_write(fileindex, new_index);
1493 9c6338c4 2019-06-02 stsp if (err)
1494 9c6338c4 2019-06-02 stsp goto done;
1495 9c6338c4 2019-06-02 stsp
1496 9c6338c4 2019-06-02 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
1497 9c6338c4 2019-06-02 stsp err = got_error_from_errno3("rename", new_fileindex_path,
1498 9c6338c4 2019-06-02 stsp fileindex_path);
1499 9c6338c4 2019-06-02 stsp unlink(new_fileindex_path);
1500 9c6338c4 2019-06-02 stsp }
1501 9c6338c4 2019-06-02 stsp done:
1502 9c6338c4 2019-06-02 stsp if (new_index)
1503 9c6338c4 2019-06-02 stsp fclose(new_index);
1504 9c6338c4 2019-06-02 stsp free(new_fileindex_path);
1505 9c6338c4 2019-06-02 stsp return err;
1506 c932eeeb 2019-05-22 stsp }
1507 c932eeeb 2019-05-22 stsp
1508 9d31a1d8 2018-03-11 stsp const struct got_error *
1509 c4cdcb68 2019-04-03 stsp got_worktree_checkout_files(struct got_worktree *worktree, const char *path,
1510 93a30277 2018-12-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1511 93a30277 2018-12-24 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1512 9d31a1d8 2018-03-11 stsp {
1513 a143fb78 2018-12-25 stsp const struct got_error *err = NULL, *unlockerr, *checkout_err = NULL;
1514 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
1515 8da9e5f4 2019-01-12 stsp struct got_object_id *tree_id = NULL;
1516 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
1517 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
1518 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
1519 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb diff_cb;
1520 8da9e5f4 2019-01-12 stsp struct diff_cb_arg arg;
1521 c4cdcb68 2019-04-03 stsp char *relpath = NULL, *entry_name = NULL;
1522 9d31a1d8 2018-03-11 stsp
1523 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
1524 9d31a1d8 2018-03-11 stsp if (err)
1525 9d31a1d8 2018-03-11 stsp return err;
1526 93a30277 2018-12-24 stsp
1527 51514078 2018-12-25 stsp /*
1528 51514078 2018-12-25 stsp * Read the file index.
1529 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
1530 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
1531 51514078 2018-12-25 stsp */
1532 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
1533 ebf99748 2019-05-09 stsp if (err)
1534 ebf99748 2019-05-09 stsp goto done;
1535 51514078 2018-12-25 stsp
1536 0cd1c46a 2019-03-11 stsp err = ref_base_commit(worktree, repo);
1537 0cd1c46a 2019-03-11 stsp if (err)
1538 0cd1c46a 2019-03-11 stsp goto done;
1539 0cd1c46a 2019-03-11 stsp
1540 eaccb85f 2018-12-25 stsp err = got_object_open_as_commit(&commit, repo,
1541 eaccb85f 2018-12-25 stsp worktree->base_commit_id);
1542 9d31a1d8 2018-03-11 stsp if (err)
1543 9d31a1d8 2018-03-11 stsp goto done;
1544 9d31a1d8 2018-03-11 stsp
1545 c4cdcb68 2019-04-03 stsp if (path[0]) {
1546 c4cdcb68 2019-04-03 stsp char *tree_path;
1547 c4cdcb68 2019-04-03 stsp int obj_type;
1548 c4cdcb68 2019-04-03 stsp relpath = strdup(path);
1549 c4cdcb68 2019-04-03 stsp if (relpath == NULL) {
1550 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1551 c4cdcb68 2019-04-03 stsp goto done;
1552 c4cdcb68 2019-04-03 stsp }
1553 c4cdcb68 2019-04-03 stsp if (asprintf(&tree_path, "%s%s%s", worktree->path_prefix,
1554 c4cdcb68 2019-04-03 stsp got_path_is_root_dir(worktree->path_prefix) ? "" : "/",
1555 c4cdcb68 2019-04-03 stsp path) == -1) {
1556 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1557 c4cdcb68 2019-04-03 stsp goto done;
1558 c4cdcb68 2019-04-03 stsp }
1559 c4cdcb68 2019-04-03 stsp err = got_object_id_by_path(&tree_id, repo,
1560 c4cdcb68 2019-04-03 stsp worktree->base_commit_id, tree_path);
1561 c4cdcb68 2019-04-03 stsp free(tree_path);
1562 c4cdcb68 2019-04-03 stsp if (err)
1563 c4cdcb68 2019-04-03 stsp goto done;
1564 c4cdcb68 2019-04-03 stsp err = got_object_get_type(&obj_type, repo, tree_id);
1565 c4cdcb68 2019-04-03 stsp if (err)
1566 c4cdcb68 2019-04-03 stsp goto done;
1567 c4cdcb68 2019-04-03 stsp if (obj_type == GOT_OBJ_TYPE_BLOB) {
1568 c4cdcb68 2019-04-03 stsp /* Split provided path into parent dir + entry name. */
1569 c4cdcb68 2019-04-03 stsp if (strchr(path, '/') == NULL) {
1570 c4cdcb68 2019-04-03 stsp relpath = strdup("");
1571 c4cdcb68 2019-04-03 stsp if (relpath == NULL) {
1572 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1573 c4cdcb68 2019-04-03 stsp goto done;
1574 c4cdcb68 2019-04-03 stsp }
1575 c4cdcb68 2019-04-03 stsp tree_path = strdup(worktree->path_prefix);
1576 c4cdcb68 2019-04-03 stsp if (tree_path == NULL) {
1577 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1578 c4cdcb68 2019-04-03 stsp goto done;
1579 c4cdcb68 2019-04-03 stsp }
1580 c4cdcb68 2019-04-03 stsp } else {
1581 c4cdcb68 2019-04-03 stsp err = got_path_dirname(&relpath, path);
1582 c4cdcb68 2019-04-03 stsp if (err)
1583 c4cdcb68 2019-04-03 stsp goto done;
1584 c4cdcb68 2019-04-03 stsp if (asprintf(&tree_path, "%s%s%s",
1585 c4cdcb68 2019-04-03 stsp worktree->path_prefix,
1586 c4cdcb68 2019-04-03 stsp got_path_is_root_dir(
1587 c4cdcb68 2019-04-03 stsp worktree->path_prefix) ? "" : "/",
1588 c4cdcb68 2019-04-03 stsp relpath) == -1) {
1589 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1590 c4cdcb68 2019-04-03 stsp goto done;
1591 c4cdcb68 2019-04-03 stsp }
1592 c4cdcb68 2019-04-03 stsp }
1593 c4cdcb68 2019-04-03 stsp err = got_object_id_by_path(&tree_id, repo,
1594 c4cdcb68 2019-04-03 stsp worktree->base_commit_id, tree_path);
1595 c4cdcb68 2019-04-03 stsp free(tree_path);
1596 c4cdcb68 2019-04-03 stsp if (err)
1597 c4cdcb68 2019-04-03 stsp goto done;
1598 c4cdcb68 2019-04-03 stsp entry_name = basename(path);
1599 c4cdcb68 2019-04-03 stsp if (entry_name == NULL) {
1600 638f9024 2019-05-13 stsp err = got_error_from_errno2("basename", path);
1601 c4cdcb68 2019-04-03 stsp goto done;
1602 c4cdcb68 2019-04-03 stsp }
1603 c4cdcb68 2019-04-03 stsp }
1604 c4cdcb68 2019-04-03 stsp } else {
1605 c4cdcb68 2019-04-03 stsp relpath = strdup("");
1606 c4cdcb68 2019-04-03 stsp if (relpath == NULL) {
1607 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1608 c4cdcb68 2019-04-03 stsp goto done;
1609 c4cdcb68 2019-04-03 stsp }
1610 c4cdcb68 2019-04-03 stsp err = got_object_id_by_path(&tree_id, repo,
1611 c4cdcb68 2019-04-03 stsp worktree->base_commit_id, worktree->path_prefix);
1612 c4cdcb68 2019-04-03 stsp if (err)
1613 c4cdcb68 2019-04-03 stsp goto done;
1614 c4cdcb68 2019-04-03 stsp }
1615 9d31a1d8 2018-03-11 stsp
1616 8da9e5f4 2019-01-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1617 8da9e5f4 2019-01-12 stsp if (err)
1618 c4cdcb68 2019-04-03 stsp goto done;
1619 c4cdcb68 2019-04-03 stsp
1620 c4cdcb68 2019-04-03 stsp if (entry_name &&
1621 c4cdcb68 2019-04-03 stsp got_object_tree_find_entry(tree, entry_name) == NULL) {
1622 c4cdcb68 2019-04-03 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1623 8da9e5f4 2019-01-12 stsp goto done;
1624 c4cdcb68 2019-04-03 stsp }
1625 9d31a1d8 2018-03-11 stsp
1626 8da9e5f4 2019-01-12 stsp diff_cb.diff_old_new = diff_old_new;
1627 8da9e5f4 2019-01-12 stsp diff_cb.diff_old = diff_old;
1628 8da9e5f4 2019-01-12 stsp diff_cb.diff_new = diff_new;
1629 8da9e5f4 2019-01-12 stsp arg.fileindex = fileindex;
1630 8da9e5f4 2019-01-12 stsp arg.worktree = worktree;
1631 8da9e5f4 2019-01-12 stsp arg.repo = repo;
1632 8da9e5f4 2019-01-12 stsp arg.progress_cb = progress_cb;
1633 8da9e5f4 2019-01-12 stsp arg.progress_arg = progress_arg;
1634 8da9e5f4 2019-01-12 stsp arg.cancel_cb = cancel_cb;
1635 8da9e5f4 2019-01-12 stsp arg.cancel_arg = cancel_arg;
1636 c4cdcb68 2019-04-03 stsp checkout_err = got_fileindex_diff_tree(fileindex, tree, relpath,
1637 c4cdcb68 2019-04-03 stsp entry_name, repo, &diff_cb, &arg);
1638 8da9e5f4 2019-01-12 stsp
1639 c932eeeb 2019-05-22 stsp if (checkout_err == NULL) {
1640 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg bbc_arg;
1641 c932eeeb 2019-05-22 stsp bbc_arg.base_commit_id = worktree->base_commit_id;
1642 c932eeeb 2019-05-22 stsp bbc_arg.entry_name = entry_name;
1643 c932eeeb 2019-05-22 stsp bbc_arg.path = path;
1644 c932eeeb 2019-05-22 stsp bbc_arg.path_len = strlen(path);
1645 c932eeeb 2019-05-22 stsp err = got_fileindex_for_each_entry_safe(fileindex,
1646 c932eeeb 2019-05-22 stsp bump_base_commit_id, &bbc_arg);
1647 c932eeeb 2019-05-22 stsp if (err)
1648 c932eeeb 2019-05-22 stsp goto done;
1649 c932eeeb 2019-05-22 stsp }
1650 c932eeeb 2019-05-22 stsp
1651 a143fb78 2018-12-25 stsp /* Try to sync the fileindex back to disk in any case. */
1652 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
1653 9d31a1d8 2018-03-11 stsp done:
1654 9c6338c4 2019-06-02 stsp free(fileindex_path);
1655 c4cdcb68 2019-04-03 stsp free(relpath);
1656 edfa7d7f 2018-09-11 stsp if (tree)
1657 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
1658 9d31a1d8 2018-03-11 stsp if (commit)
1659 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
1660 7426bbfd 2018-12-24 stsp got_fileindex_free(fileindex);
1661 a143fb78 2018-12-25 stsp if (checkout_err)
1662 a143fb78 2018-12-25 stsp err = checkout_err;
1663 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1664 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
1665 9d31a1d8 2018-03-11 stsp err = unlockerr;
1666 f8d1f275 2019-02-04 stsp return err;
1667 f8d1f275 2019-02-04 stsp }
1668 f8d1f275 2019-02-04 stsp
1669 234035bc 2019-06-01 stsp struct merge_file_cb_arg {
1670 234035bc 2019-06-01 stsp struct got_worktree *worktree;
1671 234035bc 2019-06-01 stsp struct got_fileindex *fileindex;
1672 234035bc 2019-06-01 stsp struct got_object_id *commit_id1;
1673 234035bc 2019-06-01 stsp struct got_object_id *commit_id2;
1674 234035bc 2019-06-01 stsp got_worktree_checkout_cb progress_cb;
1675 234035bc 2019-06-01 stsp void *progress_arg;
1676 234035bc 2019-06-01 stsp got_worktree_cancel_cb cancel_cb;
1677 234035bc 2019-06-01 stsp void *cancel_arg;
1678 234035bc 2019-06-01 stsp };
1679 234035bc 2019-06-01 stsp
1680 234035bc 2019-06-01 stsp static const struct got_error *
1681 234035bc 2019-06-01 stsp merge_file_cb(void *arg, struct got_blob_object *blob1,
1682 234035bc 2019-06-01 stsp struct got_blob_object *blob2, struct got_object_id *id1,
1683 234035bc 2019-06-01 stsp struct got_object_id *id2, const char *path1, const char *path2,
1684 234035bc 2019-06-01 stsp struct got_repository *repo)
1685 234035bc 2019-06-01 stsp {
1686 234035bc 2019-06-01 stsp static const struct got_error *err = NULL;
1687 234035bc 2019-06-01 stsp struct merge_file_cb_arg *a = arg;
1688 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie;
1689 234035bc 2019-06-01 stsp char *ondisk_path = NULL;
1690 234035bc 2019-06-01 stsp struct stat sb;
1691 234035bc 2019-06-01 stsp unsigned char status;
1692 234035bc 2019-06-01 stsp int local_changes_subsumed;
1693 234035bc 2019-06-01 stsp
1694 234035bc 2019-06-01 stsp if (blob1 && blob2) {
1695 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path2);
1696 234035bc 2019-06-01 stsp if (ie == NULL) {
1697 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_MISSING,
1698 234035bc 2019-06-01 stsp path2);
1699 234035bc 2019-06-01 stsp return NULL;
1700 234035bc 2019-06-01 stsp }
1701 234035bc 2019-06-01 stsp
1702 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1703 234035bc 2019-06-01 stsp path2) == -1)
1704 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1705 234035bc 2019-06-01 stsp
1706 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1707 234035bc 2019-06-01 stsp if (err)
1708 234035bc 2019-06-01 stsp goto done;
1709 234035bc 2019-06-01 stsp
1710 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
1711 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_MERGE,
1712 234035bc 2019-06-01 stsp path2);
1713 234035bc 2019-06-01 stsp goto done;
1714 234035bc 2019-06-01 stsp }
1715 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
1716 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
1717 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
1718 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
1719 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, status, path2);
1720 234035bc 2019-06-01 stsp goto done;
1721 234035bc 2019-06-01 stsp }
1722 234035bc 2019-06-01 stsp
1723 234035bc 2019-06-01 stsp err = merge_blob(&local_changes_subsumed, a->worktree, blob1,
1724 234035bc 2019-06-01 stsp ondisk_path, path2, sb.st_mode, blob2, repo,
1725 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1726 234035bc 2019-06-01 stsp } else if (blob1) {
1727 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path1);
1728 234035bc 2019-06-01 stsp if (ie == NULL) {
1729 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_MISSING,
1730 234035bc 2019-06-01 stsp path2);
1731 234035bc 2019-06-01 stsp return NULL;
1732 234035bc 2019-06-01 stsp }
1733 2b92fad7 2019-06-02 stsp
1734 2b92fad7 2019-06-02 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1735 2b92fad7 2019-06-02 stsp path1) == -1)
1736 2b92fad7 2019-06-02 stsp return got_error_from_errno("asprintf");
1737 2b92fad7 2019-06-02 stsp
1738 2b92fad7 2019-06-02 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1739 2b92fad7 2019-06-02 stsp if (err)
1740 2b92fad7 2019-06-02 stsp goto done;
1741 2b92fad7 2019-06-02 stsp
1742 2b92fad7 2019-06-02 stsp switch (status) {
1743 2b92fad7 2019-06-02 stsp case GOT_STATUS_NO_CHANGE:
1744 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
1745 2b92fad7 2019-06-02 stsp path1);
1746 2b92fad7 2019-06-02 stsp err = remove_ondisk_file(a->worktree->root_path, path1);
1747 2b92fad7 2019-06-02 stsp if (err)
1748 2b92fad7 2019-06-02 stsp goto done;
1749 2b92fad7 2019-06-02 stsp if (ie)
1750 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
1751 2b92fad7 2019-06-02 stsp break;
1752 2b92fad7 2019-06-02 stsp case GOT_STATUS_DELETE:
1753 2b92fad7 2019-06-02 stsp case GOT_STATUS_MISSING:
1754 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
1755 2b92fad7 2019-06-02 stsp path1);
1756 2b92fad7 2019-06-02 stsp if (ie)
1757 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
1758 2b92fad7 2019-06-02 stsp break;
1759 2b92fad7 2019-06-02 stsp case GOT_STATUS_ADD:
1760 2b92fad7 2019-06-02 stsp case GOT_STATUS_MODIFY:
1761 2b92fad7 2019-06-02 stsp case GOT_STATUS_CONFLICT:
1762 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg,
1763 2b92fad7 2019-06-02 stsp GOT_STATUS_CANNOT_DELETE, path1);
1764 2b92fad7 2019-06-02 stsp break;
1765 2b92fad7 2019-06-02 stsp case GOT_STATUS_OBSTRUCTED:
1766 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg, status, path1);
1767 2b92fad7 2019-06-02 stsp break;
1768 2b92fad7 2019-06-02 stsp default:
1769 2b92fad7 2019-06-02 stsp break;
1770 2b92fad7 2019-06-02 stsp }
1771 234035bc 2019-06-01 stsp } else if (blob2) {
1772 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1773 234035bc 2019-06-01 stsp path2) == -1)
1774 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1775 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path2);
1776 234035bc 2019-06-01 stsp if (ie) {
1777 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path,
1778 234035bc 2019-06-01 stsp repo);
1779 234035bc 2019-06-01 stsp if (err)
1780 234035bc 2019-06-01 stsp goto done;
1781 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
1782 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
1783 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
1784 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
1785 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, status,
1786 234035bc 2019-06-01 stsp path2);
1787 234035bc 2019-06-01 stsp goto done;
1788 234035bc 2019-06-01 stsp }
1789 234035bc 2019-06-01 stsp err = merge_blob(&local_changes_subsumed, a->worktree,
1790 234035bc 2019-06-01 stsp NULL, ondisk_path, path2, sb.st_mode, blob2, repo,
1791 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1792 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
1793 234035bc 2019-06-01 stsp err = update_blob_fileindex_entry(a->worktree,
1794 234035bc 2019-06-01 stsp a->fileindex, ie, ondisk_path, ie->path,
1795 234035bc 2019-06-01 stsp blob2, 0);
1796 234035bc 2019-06-01 stsp if (err)
1797 234035bc 2019-06-01 stsp goto done;
1798 234035bc 2019-06-01 stsp }
1799 234035bc 2019-06-01 stsp } else {
1800 234035bc 2019-06-01 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
1801 234035bc 2019-06-01 stsp err = install_blob(a->worktree, ondisk_path, path2,
1802 234035bc 2019-06-01 stsp /* XXX get this from parent tree! */
1803 234035bc 2019-06-01 stsp GOT_DEFAULT_FILE_MODE,
1804 234035bc 2019-06-01 stsp sb.st_mode, blob2, 0, 0, repo,
1805 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1806 234035bc 2019-06-01 stsp if (err)
1807 234035bc 2019-06-01 stsp goto done;
1808 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_alloc(&ie,
1809 2b92fad7 2019-06-02 stsp ondisk_path, path2, NULL, NULL);
1810 234035bc 2019-06-01 stsp if (err)
1811 234035bc 2019-06-01 stsp goto done;
1812 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_add(a->fileindex, ie);
1813 2b92fad7 2019-06-02 stsp if (err) {
1814 2b92fad7 2019-06-02 stsp got_fileindex_entry_free(ie);
1815 2b92fad7 2019-06-02 stsp goto done;
1816 2b92fad7 2019-06-02 stsp }
1817 234035bc 2019-06-01 stsp }
1818 234035bc 2019-06-01 stsp }
1819 234035bc 2019-06-01 stsp done:
1820 234035bc 2019-06-01 stsp free(ondisk_path);
1821 234035bc 2019-06-01 stsp return err;
1822 234035bc 2019-06-01 stsp }
1823 234035bc 2019-06-01 stsp
1824 234035bc 2019-06-01 stsp struct check_merge_ok_arg {
1825 234035bc 2019-06-01 stsp struct got_worktree *worktree;
1826 234035bc 2019-06-01 stsp struct got_repository *repo;
1827 234035bc 2019-06-01 stsp };
1828 234035bc 2019-06-01 stsp
1829 234035bc 2019-06-01 stsp static const struct got_error *
1830 234035bc 2019-06-01 stsp check_merge_ok(void *arg, struct got_fileindex_entry *ie)
1831 234035bc 2019-06-01 stsp {
1832 234035bc 2019-06-01 stsp const struct got_error *err = NULL;
1833 234035bc 2019-06-01 stsp struct check_merge_ok_arg *a = arg;
1834 234035bc 2019-06-01 stsp unsigned char status;
1835 234035bc 2019-06-01 stsp struct stat sb;
1836 234035bc 2019-06-01 stsp char *ondisk_path;
1837 234035bc 2019-06-01 stsp
1838 234035bc 2019-06-01 stsp /* Reject merges into a work tree with mixed base commits. */
1839 234035bc 2019-06-01 stsp if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
1840 234035bc 2019-06-01 stsp SHA1_DIGEST_LENGTH))
1841 234035bc 2019-06-01 stsp return got_error(GOT_ERR_MIXED_COMMITS);
1842 234035bc 2019-06-01 stsp
1843 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
1844 234035bc 2019-06-01 stsp == -1)
1845 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1846 234035bc 2019-06-01 stsp
1847 234035bc 2019-06-01 stsp /* Reject merges into a work tree with conflicted files. */
1848 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path, a->repo);
1849 234035bc 2019-06-01 stsp if (err)
1850 234035bc 2019-06-01 stsp return err;
1851 234035bc 2019-06-01 stsp if (status == GOT_STATUS_CONFLICT)
1852 234035bc 2019-06-01 stsp return got_error(GOT_ERR_CONFLICTS);
1853 234035bc 2019-06-01 stsp
1854 234035bc 2019-06-01 stsp return NULL;
1855 234035bc 2019-06-01 stsp }
1856 234035bc 2019-06-01 stsp
1857 234035bc 2019-06-01 stsp const struct got_error *
1858 234035bc 2019-06-01 stsp got_worktree_merge_files(struct got_worktree *worktree,
1859 234035bc 2019-06-01 stsp struct got_object_id *commit_id1, struct got_object_id *commit_id2,
1860 234035bc 2019-06-01 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1861 234035bc 2019-06-01 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1862 234035bc 2019-06-01 stsp {
1863 234035bc 2019-06-01 stsp const struct got_error *err = NULL, *unlockerr;
1864 234035bc 2019-06-01 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
1865 234035bc 2019-06-01 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1866 234035bc 2019-06-01 stsp struct merge_file_cb_arg arg;
1867 234035bc 2019-06-01 stsp char *fileindex_path = NULL;
1868 234035bc 2019-06-01 stsp struct got_fileindex *fileindex = NULL;
1869 234035bc 2019-06-01 stsp struct check_merge_ok_arg mok_arg;
1870 234035bc 2019-06-01 stsp
1871 234035bc 2019-06-01 stsp err = lock_worktree(worktree, LOCK_EX);
1872 234035bc 2019-06-01 stsp if (err)
1873 234035bc 2019-06-01 stsp return err;
1874 234035bc 2019-06-01 stsp
1875 234035bc 2019-06-01 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
1876 234035bc 2019-06-01 stsp if (err)
1877 234035bc 2019-06-01 stsp goto done;
1878 234035bc 2019-06-01 stsp
1879 234035bc 2019-06-01 stsp mok_arg.worktree = worktree;
1880 234035bc 2019-06-01 stsp mok_arg.repo = repo;
1881 234035bc 2019-06-01 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_merge_ok,
1882 234035bc 2019-06-01 stsp &mok_arg);
1883 234035bc 2019-06-01 stsp if (err)
1884 234035bc 2019-06-01 stsp goto done;
1885 234035bc 2019-06-01 stsp
1886 234035bc 2019-06-01 stsp err = got_object_id_by_path(&tree_id1, repo, commit_id1,
1887 234035bc 2019-06-01 stsp worktree->path_prefix);
1888 234035bc 2019-06-01 stsp if (err)
1889 234035bc 2019-06-01 stsp goto done;
1890 234035bc 2019-06-01 stsp
1891 234035bc 2019-06-01 stsp err = got_object_id_by_path(&tree_id2, repo, commit_id2,
1892 234035bc 2019-06-01 stsp worktree->path_prefix);
1893 234035bc 2019-06-01 stsp if (err)
1894 234035bc 2019-06-01 stsp goto done;
1895 234035bc 2019-06-01 stsp
1896 234035bc 2019-06-01 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
1897 234035bc 2019-06-01 stsp if (err)
1898 234035bc 2019-06-01 stsp goto done;
1899 234035bc 2019-06-01 stsp
1900 234035bc 2019-06-01 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
1901 234035bc 2019-06-01 stsp if (err)
1902 234035bc 2019-06-01 stsp goto done;
1903 234035bc 2019-06-01 stsp
1904 234035bc 2019-06-01 stsp arg.worktree = worktree;
1905 234035bc 2019-06-01 stsp arg.fileindex = fileindex;
1906 234035bc 2019-06-01 stsp arg.commit_id1 = commit_id1;
1907 234035bc 2019-06-01 stsp arg.commit_id2 = commit_id2;
1908 234035bc 2019-06-01 stsp arg.progress_cb = progress_cb;
1909 234035bc 2019-06-01 stsp arg.progress_arg = progress_arg;
1910 234035bc 2019-06-01 stsp arg.cancel_cb = cancel_cb;
1911 234035bc 2019-06-01 stsp arg.cancel_arg = cancel_arg;
1912 234035bc 2019-06-01 stsp err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg);
1913 9c6338c4 2019-06-02 stsp if (err)
1914 9c6338c4 2019-06-02 stsp goto done;
1915 9c6338c4 2019-06-02 stsp
1916 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
1917 234035bc 2019-06-01 stsp done:
1918 234035bc 2019-06-01 stsp got_fileindex_free(fileindex);
1919 234035bc 2019-06-01 stsp if (tree1)
1920 234035bc 2019-06-01 stsp got_object_tree_close(tree1);
1921 234035bc 2019-06-01 stsp if (tree2)
1922 234035bc 2019-06-01 stsp got_object_tree_close(tree2);
1923 234035bc 2019-06-01 stsp
1924 234035bc 2019-06-01 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1925 234035bc 2019-06-01 stsp if (unlockerr && err == NULL)
1926 234035bc 2019-06-01 stsp err = unlockerr;
1927 234035bc 2019-06-01 stsp return err;
1928 234035bc 2019-06-01 stsp }
1929 234035bc 2019-06-01 stsp
1930 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
1931 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
1932 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
1933 927df6b7 2019-02-10 stsp const char *status_path;
1934 927df6b7 2019-02-10 stsp size_t status_path_len;
1935 f8d1f275 2019-02-04 stsp struct got_repository *repo;
1936 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
1937 f8d1f275 2019-02-04 stsp void *status_arg;
1938 f8d1f275 2019-02-04 stsp got_worktree_cancel_cb cancel_cb;
1939 f8d1f275 2019-02-04 stsp void *cancel_arg;
1940 f8d1f275 2019-02-04 stsp };
1941 f8d1f275 2019-02-04 stsp
1942 f8d1f275 2019-02-04 stsp static const struct got_error *
1943 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
1944 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
1945 927df6b7 2019-02-10 stsp struct got_repository *repo)
1946 927df6b7 2019-02-10 stsp {
1947 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
1948 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1949 927df6b7 2019-02-10 stsp struct stat sb;
1950 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
1951 927df6b7 2019-02-10 stsp
1952 927df6b7 2019-02-10 stsp err = get_file_status(&status, &sb, ie, abspath, repo);
1953 927df6b7 2019-02-10 stsp if (err == NULL && status != GOT_STATUS_NO_CHANGE) {
1954 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1955 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
1956 016a88dd 2019-05-13 stsp err = (*status_cb)(status_arg, status, ie->path, &blob_id,
1957 016a88dd 2019-05-13 stsp &commit_id);
1958 927df6b7 2019-02-10 stsp }
1959 927df6b7 2019-02-10 stsp return err;
1960 927df6b7 2019-02-10 stsp }
1961 927df6b7 2019-02-10 stsp
1962 927df6b7 2019-02-10 stsp static const struct got_error *
1963 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
1964 f8d1f275 2019-02-04 stsp struct dirent *de, const char *parent_path)
1965 f8d1f275 2019-02-04 stsp {
1966 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1967 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1968 f8d1f275 2019-02-04 stsp char *abspath;
1969 f8d1f275 2019-02-04 stsp
1970 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1971 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1972 0584f854 2019-04-06 stsp
1973 927df6b7 2019-02-10 stsp if (got_path_cmp(parent_path, a->status_path) != 0 &&
1974 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
1975 927df6b7 2019-02-10 stsp return NULL;
1976 927df6b7 2019-02-10 stsp
1977 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1978 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
1979 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
1980 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1981 f8d1f275 2019-02-04 stsp } else {
1982 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
1983 f8d1f275 2019-02-04 stsp de->d_name) == -1)
1984 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1985 f8d1f275 2019-02-04 stsp }
1986 f8d1f275 2019-02-04 stsp
1987 927df6b7 2019-02-10 stsp err = report_file_status(ie, abspath, a->status_cb, a->status_arg,
1988 927df6b7 2019-02-10 stsp a->repo);
1989 f8d1f275 2019-02-04 stsp free(abspath);
1990 9d31a1d8 2018-03-11 stsp return err;
1991 9d31a1d8 2018-03-11 stsp }
1992 f8d1f275 2019-02-04 stsp
1993 f8d1f275 2019-02-04 stsp static const struct got_error *
1994 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1995 f8d1f275 2019-02-04 stsp {
1996 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1997 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
1998 2ec1f75b 2019-03-26 stsp unsigned char status;
1999 927df6b7 2019-02-10 stsp
2000 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2001 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2002 0584f854 2019-04-06 stsp
2003 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
2004 927df6b7 2019-02-10 stsp return NULL;
2005 927df6b7 2019-02-10 stsp
2006 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2007 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
2008 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
2009 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_MISSING;
2010 2ec1f75b 2019-03-26 stsp else
2011 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_DELETE;
2012 016a88dd 2019-05-13 stsp return (*a->status_cb)(a->status_arg, status, ie->path, &blob_id,
2013 016a88dd 2019-05-13 stsp &commit_id);
2014 f8d1f275 2019-02-04 stsp }
2015 f8d1f275 2019-02-04 stsp
2016 f8d1f275 2019-02-04 stsp static const struct got_error *
2017 f8d1f275 2019-02-04 stsp status_new(void *arg, struct dirent *de, const char *parent_path)
2018 f8d1f275 2019-02-04 stsp {
2019 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
2020 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
2021 f8d1f275 2019-02-04 stsp char *path = NULL;
2022 f8d1f275 2019-02-04 stsp
2023 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2024 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2025 0584f854 2019-04-06 stsp
2026 f8d1f275 2019-02-04 stsp if (de->d_type == DT_DIR)
2027 2c201a36 2019-02-10 stsp return NULL;
2028 2c201a36 2019-02-10 stsp
2029 2c201a36 2019-02-10 stsp /* XXX ignore symlinks for now */
2030 2c201a36 2019-02-10 stsp if (de->d_type == DT_LNK)
2031 f8d1f275 2019-02-04 stsp return NULL;
2032 f8d1f275 2019-02-04 stsp
2033 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
2034 927df6b7 2019-02-10 stsp return NULL;
2035 927df6b7 2019-02-10 stsp
2036 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
2037 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
2038 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2039 f8d1f275 2019-02-04 stsp } else {
2040 f8d1f275 2019-02-04 stsp path = de->d_name;
2041 f8d1f275 2019-02-04 stsp }
2042 f8d1f275 2019-02-04 stsp
2043 b72f483a 2019-02-05 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED, path,
2044 016a88dd 2019-05-13 stsp NULL, NULL);
2045 f8d1f275 2019-02-04 stsp if (parent_path[0])
2046 f8d1f275 2019-02-04 stsp free(path);
2047 b72f483a 2019-02-05 stsp return err;
2048 f8d1f275 2019-02-04 stsp }
2049 f8d1f275 2019-02-04 stsp
2050 f8d1f275 2019-02-04 stsp const struct got_error *
2051 927df6b7 2019-02-10 stsp got_worktree_status(struct got_worktree *worktree, const char *path,
2052 f8d1f275 2019-02-04 stsp struct got_repository *repo, got_worktree_status_cb status_cb,
2053 f8d1f275 2019-02-04 stsp void *status_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
2054 f8d1f275 2019-02-04 stsp {
2055 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
2056 f8d1f275 2019-02-04 stsp DIR *workdir = NULL;
2057 f8d1f275 2019-02-04 stsp char *fileindex_path = NULL;
2058 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex = NULL;
2059 f8d1f275 2019-02-04 stsp FILE *index = NULL;
2060 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
2061 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
2062 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
2063 f8d1f275 2019-02-04 stsp
2064 f8d1f275 2019-02-04 stsp fileindex = got_fileindex_alloc();
2065 f8d1f275 2019-02-04 stsp if (fileindex == NULL) {
2066 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2067 f8d1f275 2019-02-04 stsp goto done;
2068 f8d1f275 2019-02-04 stsp }
2069 f8d1f275 2019-02-04 stsp
2070 f8d1f275 2019-02-04 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2071 f8d1f275 2019-02-04 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2072 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2073 f8d1f275 2019-02-04 stsp fileindex_path = NULL;
2074 f8d1f275 2019-02-04 stsp goto done;
2075 f8d1f275 2019-02-04 stsp }
2076 f8d1f275 2019-02-04 stsp
2077 f8d1f275 2019-02-04 stsp index = fopen(fileindex_path, "rb");
2078 f8d1f275 2019-02-04 stsp if (index == NULL) {
2079 f8d1f275 2019-02-04 stsp if (errno != ENOENT) {
2080 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2081 f8d1f275 2019-02-04 stsp goto done;
2082 f8d1f275 2019-02-04 stsp }
2083 f8d1f275 2019-02-04 stsp } else {
2084 f8d1f275 2019-02-04 stsp err = got_fileindex_read(fileindex, index);
2085 f8d1f275 2019-02-04 stsp fclose(index);
2086 f8d1f275 2019-02-04 stsp if (err)
2087 f8d1f275 2019-02-04 stsp goto done;
2088 f8d1f275 2019-02-04 stsp }
2089 f8d1f275 2019-02-04 stsp
2090 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
2091 927df6b7 2019-02-10 stsp worktree->root_path, path[0] ? "/" : "", path) == -1) {
2092 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2093 c513d110 2019-02-05 stsp goto done;
2094 c513d110 2019-02-05 stsp }
2095 927df6b7 2019-02-10 stsp workdir = opendir(ondisk_path);
2096 927df6b7 2019-02-10 stsp if (workdir == NULL) {
2097 2ec1f75b 2019-03-26 stsp if (errno == ENOTDIR || errno == ENOENT) {
2098 927df6b7 2019-02-10 stsp struct got_fileindex_entry *ie;
2099 927df6b7 2019-02-10 stsp ie = got_fileindex_entry_get(fileindex, path);
2100 927df6b7 2019-02-10 stsp if (ie == NULL) {
2101 927df6b7 2019-02-10 stsp err = got_error(GOT_ERR_BAD_PATH);
2102 927df6b7 2019-02-10 stsp goto done;
2103 927df6b7 2019-02-10 stsp }
2104 927df6b7 2019-02-10 stsp err = report_file_status(ie, ondisk_path,
2105 927df6b7 2019-02-10 stsp status_cb, status_arg, repo);
2106 927df6b7 2019-02-10 stsp goto done;
2107 927df6b7 2019-02-10 stsp } else {
2108 638f9024 2019-05-13 stsp err = got_error_from_errno2("opendir", ondisk_path);
2109 927df6b7 2019-02-10 stsp goto done;
2110 927df6b7 2019-02-10 stsp }
2111 927df6b7 2019-02-10 stsp }
2112 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old_new = status_old_new;
2113 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old = status_old;
2114 d43a8a88 2019-02-05 stsp fdiff_cb.diff_new = status_new;
2115 f8d1f275 2019-02-04 stsp arg.fileindex = fileindex;
2116 f8d1f275 2019-02-04 stsp arg.worktree = worktree;
2117 927df6b7 2019-02-10 stsp arg.status_path = path;
2118 927df6b7 2019-02-10 stsp arg.status_path_len = strlen(path);
2119 f8d1f275 2019-02-04 stsp arg.repo = repo;
2120 f8d1f275 2019-02-04 stsp arg.status_cb = status_cb;
2121 f8d1f275 2019-02-04 stsp arg.status_arg = status_arg;
2122 f8d1f275 2019-02-04 stsp arg.cancel_cb = cancel_cb;
2123 f8d1f275 2019-02-04 stsp arg.cancel_arg = cancel_arg;
2124 c7f4312f 2019-02-05 stsp err = got_fileindex_diff_dir(fileindex, workdir, worktree->root_path,
2125 927df6b7 2019-02-10 stsp path, repo, &fdiff_cb, &arg);
2126 f8d1f275 2019-02-04 stsp done:
2127 f8d1f275 2019-02-04 stsp if (workdir)
2128 f8d1f275 2019-02-04 stsp closedir(workdir);
2129 927df6b7 2019-02-10 stsp free(ondisk_path);
2130 f8d1f275 2019-02-04 stsp free(fileindex_path);
2131 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
2132 f8d1f275 2019-02-04 stsp return err;
2133 f8d1f275 2019-02-04 stsp }
2134 6c7ab921 2019-03-18 stsp
2135 6c7ab921 2019-03-18 stsp const struct got_error *
2136 6c7ab921 2019-03-18 stsp got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
2137 6c7ab921 2019-03-18 stsp const char *arg)
2138 6c7ab921 2019-03-18 stsp {
2139 6c7ab921 2019-03-18 stsp const struct got_error *err = NULL;
2140 6c7ab921 2019-03-18 stsp char *resolved, *path = NULL;
2141 6c7ab921 2019-03-18 stsp size_t len;
2142 6c7ab921 2019-03-18 stsp
2143 6c7ab921 2019-03-18 stsp *wt_path = NULL;
2144 6c7ab921 2019-03-18 stsp
2145 6c7ab921 2019-03-18 stsp resolved = realpath(arg, NULL);
2146 6c7ab921 2019-03-18 stsp if (resolved == NULL)
2147 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", arg);
2148 6c7ab921 2019-03-18 stsp
2149 6c7ab921 2019-03-18 stsp if (strncmp(got_worktree_get_root_path(worktree), resolved,
2150 6c7ab921 2019-03-18 stsp strlen(got_worktree_get_root_path(worktree)))) {
2151 6c7ab921 2019-03-18 stsp err = got_error(GOT_ERR_BAD_PATH);
2152 6c7ab921 2019-03-18 stsp goto done;
2153 6c7ab921 2019-03-18 stsp }
2154 6c7ab921 2019-03-18 stsp
2155 f6d88e1a 2019-05-29 stsp if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
2156 f6d88e1a 2019-05-29 stsp err = got_path_skip_common_ancestor(&path,
2157 f6d88e1a 2019-05-29 stsp got_worktree_get_root_path(worktree), resolved);
2158 f6d88e1a 2019-05-29 stsp if (err)
2159 f6d88e1a 2019-05-29 stsp goto done;
2160 f6d88e1a 2019-05-29 stsp } else {
2161 f6d88e1a 2019-05-29 stsp path = strdup("");
2162 f6d88e1a 2019-05-29 stsp if (path == NULL) {
2163 f6d88e1a 2019-05-29 stsp err = got_error_from_errno("strdup");
2164 f6d88e1a 2019-05-29 stsp goto done;
2165 f6d88e1a 2019-05-29 stsp }
2166 6c7ab921 2019-03-18 stsp }
2167 6c7ab921 2019-03-18 stsp
2168 6c7ab921 2019-03-18 stsp /* XXX status walk can't deal with trailing slash! */
2169 6c7ab921 2019-03-18 stsp len = strlen(path);
2170 6c7ab921 2019-03-18 stsp while (path[len - 1] == '/') {
2171 6c7ab921 2019-03-18 stsp path[len - 1] = '\0';
2172 6c7ab921 2019-03-18 stsp len--;
2173 6c7ab921 2019-03-18 stsp }
2174 6c7ab921 2019-03-18 stsp done:
2175 6c7ab921 2019-03-18 stsp free(resolved);
2176 6c7ab921 2019-03-18 stsp if (err == NULL)
2177 6c7ab921 2019-03-18 stsp *wt_path = path;
2178 6c7ab921 2019-03-18 stsp else
2179 6c7ab921 2019-03-18 stsp free(path);
2180 d00136be 2019-03-26 stsp return err;
2181 d00136be 2019-03-26 stsp }
2182 d00136be 2019-03-26 stsp
2183 d00136be 2019-03-26 stsp const struct got_error *
2184 031a5338 2019-03-26 stsp got_worktree_schedule_add(struct got_worktree *worktree,
2185 1dd54920 2019-05-11 stsp struct got_pathlist_head *ondisk_paths,
2186 1dd54920 2019-05-11 stsp got_worktree_status_cb status_cb, void *status_arg,
2187 031a5338 2019-03-26 stsp struct got_repository *repo)
2188 d00136be 2019-03-26 stsp {
2189 d00136be 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
2190 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
2191 9c6338c4 2019-06-02 stsp FILE *index = NULL;
2192 d00136be 2019-03-26 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2193 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
2194 d00136be 2019-03-26 stsp
2195 d00136be 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
2196 d00136be 2019-03-26 stsp if (err)
2197 d00136be 2019-03-26 stsp return err;
2198 d00136be 2019-03-26 stsp
2199 d00136be 2019-03-26 stsp
2200 d00136be 2019-03-26 stsp fileindex = got_fileindex_alloc();
2201 d00136be 2019-03-26 stsp if (fileindex == NULL) {
2202 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2203 d00136be 2019-03-26 stsp goto done;
2204 d00136be 2019-03-26 stsp }
2205 d00136be 2019-03-26 stsp
2206 d00136be 2019-03-26 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2207 d00136be 2019-03-26 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2208 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2209 d00136be 2019-03-26 stsp fileindex_path = NULL;
2210 d00136be 2019-03-26 stsp goto done;
2211 d00136be 2019-03-26 stsp }
2212 d00136be 2019-03-26 stsp
2213 d00136be 2019-03-26 stsp index = fopen(fileindex_path, "rb");
2214 d00136be 2019-03-26 stsp if (index == NULL) {
2215 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2216 d00136be 2019-03-26 stsp goto done;
2217 d00136be 2019-03-26 stsp }
2218 d00136be 2019-03-26 stsp
2219 d00136be 2019-03-26 stsp err = got_fileindex_read(fileindex, index);
2220 d00136be 2019-03-26 stsp if (err)
2221 d00136be 2019-03-26 stsp goto done;
2222 d00136be 2019-03-26 stsp
2223 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, ondisk_paths, entry) {
2224 1dd54920 2019-05-11 stsp struct got_fileindex_entry *ie = NULL;
2225 1dd54920 2019-05-11 stsp char *relpath;
2226 5c99ca9f 2019-03-27 stsp
2227 1dd54920 2019-05-11 stsp err = got_path_skip_common_ancestor(&relpath,
2228 1dd54920 2019-05-11 stsp got_worktree_get_root_path(worktree), pe->path);
2229 1dd54920 2019-05-11 stsp if (err)
2230 1dd54920 2019-05-11 stsp goto done;
2231 5c99ca9f 2019-03-27 stsp
2232 1dd54920 2019-05-11 stsp /* Re-adding an existing entry is a no-op. */
2233 1dd54920 2019-05-11 stsp if (got_fileindex_entry_get(fileindex, relpath) != NULL)
2234 1dd54920 2019-05-11 stsp continue;
2235 1dd54920 2019-05-11 stsp
2236 1dd54920 2019-05-11 stsp err = got_fileindex_entry_alloc(&ie, pe->path, relpath,
2237 1dd54920 2019-05-11 stsp NULL, NULL);
2238 1dd54920 2019-05-11 stsp free(relpath);
2239 1dd54920 2019-05-11 stsp if (err)
2240 1dd54920 2019-05-11 stsp goto done;
2241 1dd54920 2019-05-11 stsp
2242 1dd54920 2019-05-11 stsp err = got_fileindex_entry_add(fileindex, ie);
2243 1dd54920 2019-05-11 stsp if (err) {
2244 1dd54920 2019-05-11 stsp got_fileindex_entry_free(ie);
2245 1dd54920 2019-05-11 stsp goto done;
2246 1dd54920 2019-05-11 stsp }
2247 d00136be 2019-03-26 stsp
2248 1dd54920 2019-05-11 stsp err = report_file_status(ie, pe->path, status_cb, status_arg,
2249 1dd54920 2019-05-11 stsp repo);
2250 1dd54920 2019-05-11 stsp if (err)
2251 1dd54920 2019-05-11 stsp goto done;
2252 1dd54920 2019-05-11 stsp }
2253 1dd54920 2019-05-11 stsp
2254 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
2255 d00136be 2019-03-26 stsp done:
2256 d00136be 2019-03-26 stsp if (index) {
2257 d00136be 2019-03-26 stsp if (fclose(index) != 0 && err == NULL)
2258 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2259 d00136be 2019-03-26 stsp }
2260 d00136be 2019-03-26 stsp if (fileindex)
2261 d00136be 2019-03-26 stsp got_fileindex_free(fileindex);
2262 d00136be 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2263 d00136be 2019-03-26 stsp if (unlockerr && err == NULL)
2264 d00136be 2019-03-26 stsp err = unlockerr;
2265 6c7ab921 2019-03-18 stsp return err;
2266 6c7ab921 2019-03-18 stsp }
2267 2ec1f75b 2019-03-26 stsp
2268 2ec1f75b 2019-03-26 stsp const struct got_error *
2269 2ec1f75b 2019-03-26 stsp got_worktree_schedule_delete(struct got_worktree *worktree,
2270 2ec1f75b 2019-03-26 stsp const char *ondisk_path, int delete_local_mods,
2271 2ec1f75b 2019-03-26 stsp got_worktree_status_cb status_cb, void *status_arg,
2272 2ec1f75b 2019-03-26 stsp struct got_repository *repo)
2273 2ec1f75b 2019-03-26 stsp {
2274 2ec1f75b 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
2275 2ec1f75b 2019-03-26 stsp struct got_fileindex_entry *ie = NULL;
2276 9c6338c4 2019-06-02 stsp char *relpath, *fileindex_path ;
2277 9c6338c4 2019-06-02 stsp FILE *index = NULL;
2278 2ec1f75b 2019-03-26 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2279 2ec1f75b 2019-03-26 stsp unsigned char status;
2280 2ec1f75b 2019-03-26 stsp struct stat sb;
2281 2ec1f75b 2019-03-26 stsp
2282 2ec1f75b 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
2283 2ec1f75b 2019-03-26 stsp if (err)
2284 2ec1f75b 2019-03-26 stsp return err;
2285 2ec1f75b 2019-03-26 stsp
2286 2ec1f75b 2019-03-26 stsp err = got_path_skip_common_ancestor(&relpath,
2287 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(worktree), ondisk_path);
2288 2ec1f75b 2019-03-26 stsp if (err)
2289 2ec1f75b 2019-03-26 stsp goto done;
2290 2ec1f75b 2019-03-26 stsp
2291 2ec1f75b 2019-03-26 stsp fileindex = got_fileindex_alloc();
2292 2ec1f75b 2019-03-26 stsp if (fileindex == NULL) {
2293 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2294 2ec1f75b 2019-03-26 stsp goto done;
2295 2ec1f75b 2019-03-26 stsp }
2296 2ec1f75b 2019-03-26 stsp
2297 2ec1f75b 2019-03-26 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2298 2ec1f75b 2019-03-26 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2299 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2300 2ec1f75b 2019-03-26 stsp fileindex_path = NULL;
2301 2ec1f75b 2019-03-26 stsp goto done;
2302 2ec1f75b 2019-03-26 stsp }
2303 2ec1f75b 2019-03-26 stsp
2304 2ec1f75b 2019-03-26 stsp index = fopen(fileindex_path, "rb");
2305 2ec1f75b 2019-03-26 stsp if (index == NULL) {
2306 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2307 2ec1f75b 2019-03-26 stsp goto done;
2308 2ec1f75b 2019-03-26 stsp }
2309 2ec1f75b 2019-03-26 stsp
2310 2ec1f75b 2019-03-26 stsp err = got_fileindex_read(fileindex, index);
2311 2ec1f75b 2019-03-26 stsp if (err)
2312 2ec1f75b 2019-03-26 stsp goto done;
2313 2ec1f75b 2019-03-26 stsp
2314 2ec1f75b 2019-03-26 stsp ie = got_fileindex_entry_get(fileindex, relpath);
2315 2ec1f75b 2019-03-26 stsp if (ie == NULL) {
2316 2ec1f75b 2019-03-26 stsp err = got_error(GOT_ERR_BAD_PATH);
2317 2ec1f75b 2019-03-26 stsp goto done;
2318 2ec1f75b 2019-03-26 stsp }
2319 2ec1f75b 2019-03-26 stsp
2320 2ec1f75b 2019-03-26 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
2321 2ec1f75b 2019-03-26 stsp if (err)
2322 2ec1f75b 2019-03-26 stsp goto done;
2323 2ec1f75b 2019-03-26 stsp
2324 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_NO_CHANGE) {
2325 71a29355 2019-03-27 stsp if (status == GOT_STATUS_DELETE) {
2326 2af4a041 2019-05-11 jcs err = got_error_set_errno(ENOENT, ondisk_path);
2327 71a29355 2019-03-27 stsp goto done;
2328 71a29355 2019-03-27 stsp }
2329 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_MODIFY) {
2330 2ec1f75b 2019-03-26 stsp err = got_error(GOT_ERR_FILE_STATUS);
2331 2ec1f75b 2019-03-26 stsp goto done;
2332 2ec1f75b 2019-03-26 stsp }
2333 2ec1f75b 2019-03-26 stsp if (!delete_local_mods) {
2334 2ec1f75b 2019-03-26 stsp err = got_error(GOT_ERR_FILE_MODIFIED);
2335 2ec1f75b 2019-03-26 stsp goto done;
2336 2ec1f75b 2019-03-26 stsp }
2337 2ec1f75b 2019-03-26 stsp }
2338 2ec1f75b 2019-03-26 stsp
2339 2ec1f75b 2019-03-26 stsp if (unlink(ondisk_path) != 0) {
2340 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", ondisk_path);
2341 2ec1f75b 2019-03-26 stsp goto done;
2342 2ec1f75b 2019-03-26 stsp }
2343 2ec1f75b 2019-03-26 stsp
2344 2ec1f75b 2019-03-26 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
2345 2ec1f75b 2019-03-26 stsp
2346 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
2347 2ec1f75b 2019-03-26 stsp if (err)
2348 2ec1f75b 2019-03-26 stsp goto done;
2349 2ec1f75b 2019-03-26 stsp
2350 2ec1f75b 2019-03-26 stsp err = report_file_status(ie, ondisk_path, status_cb, status_arg, repo);
2351 2ec1f75b 2019-03-26 stsp done:
2352 2ec1f75b 2019-03-26 stsp free(relpath);
2353 2ec1f75b 2019-03-26 stsp if (index) {
2354 2ec1f75b 2019-03-26 stsp if (fclose(index) != 0 && err == NULL)
2355 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2356 2ec1f75b 2019-03-26 stsp }
2357 2ec1f75b 2019-03-26 stsp if (fileindex)
2358 2ec1f75b 2019-03-26 stsp got_fileindex_free(fileindex);
2359 2ec1f75b 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2360 2ec1f75b 2019-03-26 stsp if (unlockerr && err == NULL)
2361 2ec1f75b 2019-03-26 stsp err = unlockerr;
2362 2ec1f75b 2019-03-26 stsp return err;
2363 2ec1f75b 2019-03-26 stsp }
2364 a129376b 2019-03-28 stsp
2365 a129376b 2019-03-28 stsp const struct got_error *
2366 a129376b 2019-03-28 stsp got_worktree_revert(struct got_worktree *worktree,
2367 a129376b 2019-03-28 stsp const char *ondisk_path,
2368 a129376b 2019-03-28 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2369 a129376b 2019-03-28 stsp struct got_repository *repo)
2370 a129376b 2019-03-28 stsp {
2371 a129376b 2019-03-28 stsp struct got_fileindex *fileindex = NULL;
2372 a129376b 2019-03-28 stsp struct got_fileindex_entry *ie = NULL;
2373 9c6338c4 2019-06-02 stsp char *relpath, *fileindex_path = NULL;
2374 a129376b 2019-03-28 stsp char *tree_path = NULL, *parent_path, *te_name;
2375 9c6338c4 2019-06-02 stsp FILE *index = NULL;
2376 a129376b 2019-03-28 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2377 a129376b 2019-03-28 stsp struct got_tree_object *tree = NULL;
2378 a129376b 2019-03-28 stsp struct got_object_id id, *tree_id = NULL;
2379 a129376b 2019-03-28 stsp const struct got_tree_entry *te;
2380 a129376b 2019-03-28 stsp struct got_blob_object *blob = NULL;
2381 a129376b 2019-03-28 stsp unsigned char status;
2382 a129376b 2019-03-28 stsp struct stat sb;
2383 a129376b 2019-03-28 stsp
2384 a129376b 2019-03-28 stsp err = lock_worktree(worktree, LOCK_EX);
2385 a129376b 2019-03-28 stsp if (err)
2386 a129376b 2019-03-28 stsp return err;
2387 a129376b 2019-03-28 stsp
2388 a129376b 2019-03-28 stsp err = got_path_skip_common_ancestor(&relpath,
2389 a129376b 2019-03-28 stsp got_worktree_get_root_path(worktree), ondisk_path);
2390 a129376b 2019-03-28 stsp if (err)
2391 a129376b 2019-03-28 stsp goto done;
2392 a129376b 2019-03-28 stsp
2393 a129376b 2019-03-28 stsp fileindex = got_fileindex_alloc();
2394 a129376b 2019-03-28 stsp if (fileindex == NULL) {
2395 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2396 a129376b 2019-03-28 stsp goto done;
2397 a129376b 2019-03-28 stsp }
2398 a129376b 2019-03-28 stsp
2399 a129376b 2019-03-28 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2400 a129376b 2019-03-28 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2401 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2402 a129376b 2019-03-28 stsp fileindex_path = NULL;
2403 a129376b 2019-03-28 stsp goto done;
2404 a129376b 2019-03-28 stsp }
2405 a129376b 2019-03-28 stsp
2406 a129376b 2019-03-28 stsp index = fopen(fileindex_path, "rb");
2407 a129376b 2019-03-28 stsp if (index == NULL) {
2408 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2409 a129376b 2019-03-28 stsp goto done;
2410 a129376b 2019-03-28 stsp }
2411 a129376b 2019-03-28 stsp
2412 a129376b 2019-03-28 stsp err = got_fileindex_read(fileindex, index);
2413 a129376b 2019-03-28 stsp if (err)
2414 a129376b 2019-03-28 stsp goto done;
2415 a129376b 2019-03-28 stsp
2416 a129376b 2019-03-28 stsp ie = got_fileindex_entry_get(fileindex, relpath);
2417 a129376b 2019-03-28 stsp if (ie == NULL) {
2418 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_BAD_PATH);
2419 a129376b 2019-03-28 stsp goto done;
2420 a129376b 2019-03-28 stsp }
2421 a129376b 2019-03-28 stsp
2422 a129376b 2019-03-28 stsp /* Construct in-repository path of tree which contains this blob. */
2423 a129376b 2019-03-28 stsp err = got_path_dirname(&parent_path, ie->path);
2424 a129376b 2019-03-28 stsp if (err) {
2425 a129376b 2019-03-28 stsp if (err->code != GOT_ERR_BAD_PATH)
2426 a129376b 2019-03-28 stsp goto done;
2427 a129376b 2019-03-28 stsp parent_path = "/";
2428 a129376b 2019-03-28 stsp }
2429 a129376b 2019-03-28 stsp if (got_path_is_root_dir(worktree->path_prefix)) {
2430 a129376b 2019-03-28 stsp tree_path = strdup(parent_path);
2431 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2432 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2433 a129376b 2019-03-28 stsp goto done;
2434 a129376b 2019-03-28 stsp }
2435 a129376b 2019-03-28 stsp } else {
2436 a129376b 2019-03-28 stsp if (got_path_is_root_dir(parent_path)) {
2437 a129376b 2019-03-28 stsp tree_path = strdup(worktree->path_prefix);
2438 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2439 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2440 a129376b 2019-03-28 stsp goto done;
2441 a129376b 2019-03-28 stsp }
2442 a129376b 2019-03-28 stsp } else {
2443 a129376b 2019-03-28 stsp if (asprintf(&tree_path, "%s/%s",
2444 a129376b 2019-03-28 stsp worktree->path_prefix, parent_path) == -1) {
2445 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2446 a129376b 2019-03-28 stsp goto done;
2447 a129376b 2019-03-28 stsp }
2448 a129376b 2019-03-28 stsp }
2449 a129376b 2019-03-28 stsp }
2450 a129376b 2019-03-28 stsp
2451 a129376b 2019-03-28 stsp err = got_object_id_by_path(&tree_id, repo, worktree->base_commit_id,
2452 a129376b 2019-03-28 stsp tree_path);
2453 a129376b 2019-03-28 stsp if (err)
2454 a129376b 2019-03-28 stsp goto done;
2455 a129376b 2019-03-28 stsp
2456 a129376b 2019-03-28 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
2457 a129376b 2019-03-28 stsp if (err)
2458 a129376b 2019-03-28 stsp goto done;
2459 a129376b 2019-03-28 stsp
2460 a129376b 2019-03-28 stsp te_name = basename(ie->path);
2461 a129376b 2019-03-28 stsp if (te_name == NULL) {
2462 638f9024 2019-05-13 stsp err = got_error_from_errno2("basename", ie->path);
2463 a129376b 2019-03-28 stsp goto done;
2464 a129376b 2019-03-28 stsp }
2465 a129376b 2019-03-28 stsp
2466 a129376b 2019-03-28 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
2467 a129376b 2019-03-28 stsp if (err)
2468 a129376b 2019-03-28 stsp goto done;
2469 a129376b 2019-03-28 stsp
2470 a129376b 2019-03-28 stsp te = got_object_tree_find_entry(tree, te_name);
2471 a129376b 2019-03-28 stsp if (te == NULL && status != GOT_STATUS_ADD) {
2472 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
2473 a129376b 2019-03-28 stsp goto done;
2474 a129376b 2019-03-28 stsp }
2475 a129376b 2019-03-28 stsp
2476 a129376b 2019-03-28 stsp switch (status) {
2477 a129376b 2019-03-28 stsp case GOT_STATUS_ADD:
2478 a129376b 2019-03-28 stsp (*progress_cb)(progress_arg, GOT_STATUS_REVERT, ie->path);
2479 a129376b 2019-03-28 stsp got_fileindex_entry_remove(fileindex, ie);
2480 a129376b 2019-03-28 stsp break;
2481 a129376b 2019-03-28 stsp case GOT_STATUS_DELETE:
2482 a129376b 2019-03-28 stsp case GOT_STATUS_MODIFY:
2483 a129376b 2019-03-28 stsp case GOT_STATUS_CONFLICT:
2484 a129376b 2019-03-28 stsp case GOT_STATUS_MISSING:
2485 a129376b 2019-03-28 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2486 a129376b 2019-03-28 stsp err = got_object_open_as_blob(&blob, repo, &id, 8192);
2487 a129376b 2019-03-28 stsp if (err)
2488 a129376b 2019-03-28 stsp goto done;
2489 a129376b 2019-03-28 stsp err = install_blob(worktree, ondisk_path, ie->path,
2490 a129376b 2019-03-28 stsp te->mode, sb.st_mode, blob, 0, 1, repo, progress_cb,
2491 a129376b 2019-03-28 stsp progress_arg);
2492 a129376b 2019-03-28 stsp if (err)
2493 a129376b 2019-03-28 stsp goto done;
2494 a129376b 2019-03-28 stsp if (status == GOT_STATUS_DELETE) {
2495 a129376b 2019-03-28 stsp err = update_blob_fileindex_entry(worktree,
2496 a129376b 2019-03-28 stsp fileindex, ie, ondisk_path, ie->path, blob, 1);
2497 a129376b 2019-03-28 stsp if (err)
2498 a129376b 2019-03-28 stsp goto done;
2499 a129376b 2019-03-28 stsp }
2500 a129376b 2019-03-28 stsp break;
2501 a129376b 2019-03-28 stsp default:
2502 a129376b 2019-03-28 stsp goto done;
2503 a129376b 2019-03-28 stsp }
2504 a129376b 2019-03-28 stsp
2505 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
2506 a129376b 2019-03-28 stsp if (err)
2507 a129376b 2019-03-28 stsp goto done;
2508 a129376b 2019-03-28 stsp done:
2509 a129376b 2019-03-28 stsp free(relpath);
2510 a129376b 2019-03-28 stsp free(tree_path);
2511 a129376b 2019-03-28 stsp if (blob)
2512 a129376b 2019-03-28 stsp got_object_blob_close(blob);
2513 a129376b 2019-03-28 stsp if (tree)
2514 a129376b 2019-03-28 stsp got_object_tree_close(tree);
2515 a129376b 2019-03-28 stsp free(tree_id);
2516 a129376b 2019-03-28 stsp if (index) {
2517 a129376b 2019-03-28 stsp if (fclose(index) != 0 && err == NULL)
2518 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2519 a129376b 2019-03-28 stsp }
2520 a129376b 2019-03-28 stsp if (fileindex)
2521 a129376b 2019-03-28 stsp got_fileindex_free(fileindex);
2522 a129376b 2019-03-28 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2523 a129376b 2019-03-28 stsp if (unlockerr && err == NULL)
2524 a129376b 2019-03-28 stsp err = unlockerr;
2525 c4296144 2019-05-09 stsp return err;
2526 c4296144 2019-05-09 stsp }
2527 c4296144 2019-05-09 stsp
2528 cf066bf8 2019-05-09 stsp static void
2529 33ad4cbe 2019-05-12 jcs free_commitable(struct got_commitable *ct)
2530 cf066bf8 2019-05-09 stsp {
2531 24519714 2019-05-09 stsp free(ct->path);
2532 44d03001 2019-05-09 stsp free(ct->in_repo_path);
2533 768aea60 2019-05-09 stsp free(ct->ondisk_path);
2534 e75eb4da 2019-05-10 stsp free(ct->blob_id);
2535 c4e12a88 2019-05-13 stsp free(ct->base_blob_id);
2536 b416585c 2019-05-13 stsp free(ct->base_commit_id);
2537 cf066bf8 2019-05-09 stsp free(ct);
2538 cf066bf8 2019-05-09 stsp }
2539 24519714 2019-05-09 stsp
2540 ed175427 2019-05-09 stsp struct collect_commitables_arg {
2541 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths;
2542 24519714 2019-05-09 stsp struct got_repository *repo;
2543 24519714 2019-05-09 stsp struct got_worktree *worktree;
2544 24519714 2019-05-09 stsp };
2545 cf066bf8 2019-05-09 stsp
2546 c4296144 2019-05-09 stsp static const struct got_error *
2547 036813ee 2019-05-09 stsp collect_commitables(void *arg, unsigned char status, const char *relpath,
2548 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
2549 c4296144 2019-05-09 stsp {
2550 ed175427 2019-05-09 stsp struct collect_commitables_arg *a = arg;
2551 c4296144 2019-05-09 stsp const struct got_error *err = NULL;
2552 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
2553 c4296144 2019-05-09 stsp struct got_pathlist_entry *new = NULL;
2554 036813ee 2019-05-09 stsp char *parent_path = NULL, *path = NULL;
2555 768aea60 2019-05-09 stsp struct stat sb;
2556 c4296144 2019-05-09 stsp
2557 c4296144 2019-05-09 stsp if (status == GOT_STATUS_CONFLICT)
2558 c4296144 2019-05-09 stsp return got_error(GOT_ERR_COMMIT_CONFLICT);
2559 c4296144 2019-05-09 stsp
2560 c4296144 2019-05-09 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
2561 c4296144 2019-05-09 stsp status != GOT_STATUS_DELETE)
2562 c4296144 2019-05-09 stsp return NULL;
2563 0b5cc0d6 2019-05-09 stsp
2564 036813ee 2019-05-09 stsp if (asprintf(&path, "/%s", relpath) == -1) {
2565 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2566 036813ee 2019-05-09 stsp goto done;
2567 036813ee 2019-05-09 stsp }
2568 036813ee 2019-05-09 stsp if (strcmp(path, "/") == 0) {
2569 036813ee 2019-05-09 stsp parent_path = strdup("");
2570 69960a46 2019-05-09 stsp if (parent_path == NULL)
2571 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
2572 69960a46 2019-05-09 stsp } else {
2573 69960a46 2019-05-09 stsp err = got_path_dirname(&parent_path, path);
2574 69960a46 2019-05-09 stsp if (err)
2575 69960a46 2019-05-09 stsp return err;
2576 69960a46 2019-05-09 stsp }
2577 c4296144 2019-05-09 stsp
2578 036813ee 2019-05-09 stsp ct = calloc(1, sizeof(*ct));
2579 cf066bf8 2019-05-09 stsp if (ct == NULL) {
2580 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
2581 c4296144 2019-05-09 stsp goto done;
2582 768aea60 2019-05-09 stsp }
2583 768aea60 2019-05-09 stsp
2584 768aea60 2019-05-09 stsp if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
2585 768aea60 2019-05-09 stsp relpath) == -1) {
2586 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2587 768aea60 2019-05-09 stsp goto done;
2588 768aea60 2019-05-09 stsp }
2589 768aea60 2019-05-09 stsp if (status == GOT_STATUS_DELETE) {
2590 768aea60 2019-05-09 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
2591 768aea60 2019-05-09 stsp } else {
2592 768aea60 2019-05-09 stsp if (lstat(ct->ondisk_path, &sb) != 0) {
2593 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", ct->ondisk_path);
2594 768aea60 2019-05-09 stsp goto done;
2595 768aea60 2019-05-09 stsp }
2596 768aea60 2019-05-09 stsp ct->mode = sb.st_mode;
2597 c4296144 2019-05-09 stsp }
2598 c4296144 2019-05-09 stsp
2599 44d03001 2019-05-09 stsp if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
2600 44d03001 2019-05-09 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
2601 44d03001 2019-05-09 stsp relpath) == -1) {
2602 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2603 44d03001 2019-05-09 stsp goto done;
2604 44d03001 2019-05-09 stsp }
2605 44d03001 2019-05-09 stsp
2606 cf066bf8 2019-05-09 stsp ct->status = status;
2607 e75eb4da 2019-05-10 stsp ct->blob_id = NULL; /* will be filled in when blob gets created */
2608 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD) {
2609 016a88dd 2019-05-13 stsp ct->base_blob_id = got_object_id_dup(blob_id);
2610 c4e12a88 2019-05-13 stsp if (ct->base_blob_id == NULL) {
2611 b416585c 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2612 b416585c 2019-05-13 stsp goto done;
2613 b416585c 2019-05-13 stsp }
2614 b416585c 2019-05-13 stsp ct->base_commit_id = got_object_id_dup(commit_id);
2615 b416585c 2019-05-13 stsp if (ct->base_commit_id == NULL) {
2616 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2617 036813ee 2019-05-09 stsp goto done;
2618 036813ee 2019-05-09 stsp }
2619 ca2503ea 2019-05-09 stsp }
2620 24519714 2019-05-09 stsp ct->path = strdup(path);
2621 24519714 2019-05-09 stsp if (ct->path == NULL) {
2622 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2623 24519714 2019-05-09 stsp goto done;
2624 24519714 2019-05-09 stsp }
2625 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
2626 c4296144 2019-05-09 stsp done:
2627 c42269f6 2019-05-09 stsp if (ct && (err || new == NULL))
2628 ed175427 2019-05-09 stsp free_commitable(ct);
2629 24519714 2019-05-09 stsp free(parent_path);
2630 036813ee 2019-05-09 stsp free(path);
2631 a129376b 2019-03-28 stsp return err;
2632 a129376b 2019-03-28 stsp }
2633 c4296144 2019-05-09 stsp
2634 036813ee 2019-05-09 stsp static const struct got_error *write_tree(struct got_object_id **,
2635 036813ee 2019-05-09 stsp struct got_tree_object *, const char *, struct got_pathlist_head *,
2636 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2637 036813ee 2019-05-09 stsp struct got_repository *);
2638 ed175427 2019-05-09 stsp
2639 ed175427 2019-05-09 stsp static const struct got_error *
2640 036813ee 2019-05-09 stsp write_subtree(struct got_object_id **new_subtree_id,
2641 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *parent_path,
2642 afa376bf 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
2643 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2644 afa376bf 2019-05-09 stsp struct got_repository *repo)
2645 ed175427 2019-05-09 stsp {
2646 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
2647 036813ee 2019-05-09 stsp struct got_tree_object *subtree;
2648 036813ee 2019-05-09 stsp char *subpath;
2649 ed175427 2019-05-09 stsp
2650 036813ee 2019-05-09 stsp if (asprintf(&subpath, "%s%s%s", parent_path,
2651 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
2652 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2653 ed175427 2019-05-09 stsp
2654 036813ee 2019-05-09 stsp err = got_object_open_as_tree(&subtree, repo, te->id);
2655 ed175427 2019-05-09 stsp if (err)
2656 ed175427 2019-05-09 stsp return err;
2657 ed175427 2019-05-09 stsp
2658 036813ee 2019-05-09 stsp err = write_tree(new_subtree_id, subtree, subpath, commitable_paths,
2659 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
2660 036813ee 2019-05-09 stsp got_object_tree_close(subtree);
2661 036813ee 2019-05-09 stsp free(subpath);
2662 036813ee 2019-05-09 stsp return err;
2663 036813ee 2019-05-09 stsp }
2664 ed175427 2019-05-09 stsp
2665 036813ee 2019-05-09 stsp static const struct got_error *
2666 33ad4cbe 2019-05-12 jcs match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
2667 036813ee 2019-05-09 stsp {
2668 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2669 036813ee 2019-05-09 stsp char *ct_parent_path = NULL;
2670 ed175427 2019-05-09 stsp
2671 036813ee 2019-05-09 stsp *match = 0;
2672 ed175427 2019-05-09 stsp
2673 036813ee 2019-05-09 stsp if (strchr(ct->path, '/') == NULL) {
2674 0f63689d 2019-05-10 stsp *match = got_path_is_root_dir(path);
2675 0f63689d 2019-05-10 stsp return NULL;
2676 036813ee 2019-05-09 stsp }
2677 0b5cc0d6 2019-05-09 stsp
2678 0f63689d 2019-05-10 stsp err = got_path_dirname(&ct_parent_path, ct->path);
2679 0f63689d 2019-05-10 stsp if (err)
2680 0f63689d 2019-05-10 stsp return err;
2681 036813ee 2019-05-09 stsp *match = (strcmp(path, ct_parent_path) == 0);
2682 036813ee 2019-05-09 stsp free(ct_parent_path);
2683 036813ee 2019-05-09 stsp return err;
2684 036813ee 2019-05-09 stsp }
2685 0b5cc0d6 2019-05-09 stsp
2686 768aea60 2019-05-09 stsp static mode_t
2687 33ad4cbe 2019-05-12 jcs get_ct_file_mode(struct got_commitable *ct)
2688 768aea60 2019-05-09 stsp {
2689 768aea60 2019-05-09 stsp return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
2690 768aea60 2019-05-09 stsp }
2691 768aea60 2019-05-09 stsp
2692 036813ee 2019-05-09 stsp static const struct got_error *
2693 036813ee 2019-05-09 stsp alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
2694 33ad4cbe 2019-05-12 jcs struct got_tree_entry *te, struct got_commitable *ct)
2695 036813ee 2019-05-09 stsp {
2696 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2697 ca2503ea 2019-05-09 stsp
2698 036813ee 2019-05-09 stsp *new_te = NULL;
2699 0b5cc0d6 2019-05-09 stsp
2700 036813ee 2019-05-09 stsp err = got_object_tree_entry_dup(new_te, te);
2701 036813ee 2019-05-09 stsp if (err)
2702 036813ee 2019-05-09 stsp goto done;
2703 0b5cc0d6 2019-05-09 stsp
2704 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2705 036813ee 2019-05-09 stsp
2706 036813ee 2019-05-09 stsp free((*new_te)->id);
2707 e75eb4da 2019-05-10 stsp (*new_te)->id = got_object_id_dup(ct->blob_id);
2708 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2709 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2710 036813ee 2019-05-09 stsp goto done;
2711 036813ee 2019-05-09 stsp }
2712 036813ee 2019-05-09 stsp done:
2713 036813ee 2019-05-09 stsp if (err && *new_te) {
2714 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2715 036813ee 2019-05-09 stsp *new_te = NULL;
2716 036813ee 2019-05-09 stsp }
2717 036813ee 2019-05-09 stsp return err;
2718 036813ee 2019-05-09 stsp }
2719 036813ee 2019-05-09 stsp
2720 036813ee 2019-05-09 stsp static const struct got_error *
2721 036813ee 2019-05-09 stsp alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
2722 33ad4cbe 2019-05-12 jcs struct got_commitable *ct)
2723 036813ee 2019-05-09 stsp {
2724 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2725 036813ee 2019-05-09 stsp char *ct_name;
2726 036813ee 2019-05-09 stsp
2727 036813ee 2019-05-09 stsp *new_te = NULL;
2728 036813ee 2019-05-09 stsp
2729 4229330b 2019-05-10 stsp *new_te = calloc(1, sizeof(**new_te));
2730 036813ee 2019-05-09 stsp if (*new_te == NULL)
2731 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
2732 036813ee 2019-05-09 stsp
2733 036813ee 2019-05-09 stsp ct_name = basename(ct->path);
2734 036813ee 2019-05-09 stsp if (ct_name == NULL) {
2735 638f9024 2019-05-13 stsp err = got_error_from_errno2("basename", ct->path);
2736 036813ee 2019-05-09 stsp goto done;
2737 036813ee 2019-05-09 stsp }
2738 036813ee 2019-05-09 stsp (*new_te)->name = strdup(ct_name);
2739 036813ee 2019-05-09 stsp if ((*new_te)->name == NULL) {
2740 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2741 036813ee 2019-05-09 stsp goto done;
2742 036813ee 2019-05-09 stsp }
2743 036813ee 2019-05-09 stsp
2744 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2745 036813ee 2019-05-09 stsp
2746 e75eb4da 2019-05-10 stsp (*new_te)->id = got_object_id_dup(ct->blob_id);
2747 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2748 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2749 036813ee 2019-05-09 stsp goto done;
2750 036813ee 2019-05-09 stsp }
2751 036813ee 2019-05-09 stsp done:
2752 036813ee 2019-05-09 stsp if (err && *new_te) {
2753 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2754 036813ee 2019-05-09 stsp *new_te = NULL;
2755 036813ee 2019-05-09 stsp }
2756 036813ee 2019-05-09 stsp return err;
2757 036813ee 2019-05-09 stsp }
2758 036813ee 2019-05-09 stsp
2759 036813ee 2019-05-09 stsp static const struct got_error *
2760 036813ee 2019-05-09 stsp insert_tree_entry(struct got_tree_entry *new_te,
2761 036813ee 2019-05-09 stsp struct got_pathlist_head *paths)
2762 036813ee 2019-05-09 stsp {
2763 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2764 036813ee 2019-05-09 stsp struct got_pathlist_entry *new_pe;
2765 036813ee 2019-05-09 stsp
2766 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
2767 036813ee 2019-05-09 stsp if (err)
2768 036813ee 2019-05-09 stsp return err;
2769 036813ee 2019-05-09 stsp if (new_pe == NULL)
2770 036813ee 2019-05-09 stsp return got_error(GOT_ERR_TREE_DUP_ENTRY);
2771 036813ee 2019-05-09 stsp return NULL;
2772 afa376bf 2019-05-09 stsp }
2773 afa376bf 2019-05-09 stsp
2774 afa376bf 2019-05-09 stsp static const struct got_error *
2775 33ad4cbe 2019-05-12 jcs report_ct_status(struct got_commitable *ct,
2776 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg)
2777 afa376bf 2019-05-09 stsp {
2778 afa376bf 2019-05-09 stsp const char *ct_path = ct->path;
2779 afa376bf 2019-05-09 stsp while (ct_path[0] == '/')
2780 afa376bf 2019-05-09 stsp ct_path++;
2781 016a88dd 2019-05-13 stsp return (*status_cb)(status_arg, ct->status, ct_path, ct->blob_id, NULL);
2782 036813ee 2019-05-09 stsp }
2783 036813ee 2019-05-09 stsp
2784 036813ee 2019-05-09 stsp static const struct got_error *
2785 44d03001 2019-05-09 stsp match_modified_subtree(int *modified, struct got_tree_entry *te,
2786 44d03001 2019-05-09 stsp const char *base_tree_path, struct got_pathlist_head *commitable_paths)
2787 44d03001 2019-05-09 stsp {
2788 44d03001 2019-05-09 stsp const struct got_error *err = NULL;
2789 44d03001 2019-05-09 stsp struct got_pathlist_entry *pe;
2790 44d03001 2019-05-09 stsp char *te_path;
2791 44d03001 2019-05-09 stsp
2792 44d03001 2019-05-09 stsp *modified = 0;
2793 44d03001 2019-05-09 stsp
2794 44d03001 2019-05-09 stsp if (asprintf(&te_path, "%s%s%s", base_tree_path,
2795 44d03001 2019-05-09 stsp got_path_is_root_dir(base_tree_path) ? "" : "/",
2796 44d03001 2019-05-09 stsp te->name) == -1)
2797 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2798 44d03001 2019-05-09 stsp
2799 44d03001 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2800 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2801 44d03001 2019-05-09 stsp *modified = got_path_is_child(ct->in_repo_path, te_path,
2802 44d03001 2019-05-09 stsp strlen(te_path));
2803 44d03001 2019-05-09 stsp if (*modified)
2804 44d03001 2019-05-09 stsp break;
2805 44d03001 2019-05-09 stsp }
2806 44d03001 2019-05-09 stsp
2807 44d03001 2019-05-09 stsp free(te_path);
2808 44d03001 2019-05-09 stsp return err;
2809 44d03001 2019-05-09 stsp }
2810 44d03001 2019-05-09 stsp
2811 44d03001 2019-05-09 stsp static const struct got_error *
2812 33ad4cbe 2019-05-12 jcs match_deleted_or_modified_ct(struct got_commitable **ctp,
2813 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *base_tree_path,
2814 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths)
2815 036813ee 2019-05-09 stsp {
2816 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2817 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
2818 036813ee 2019-05-09 stsp
2819 036813ee 2019-05-09 stsp *ctp = NULL;
2820 036813ee 2019-05-09 stsp
2821 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2822 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2823 036813ee 2019-05-09 stsp char *ct_name = NULL;
2824 036813ee 2019-05-09 stsp int path_matches;
2825 036813ee 2019-05-09 stsp
2826 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_MODIFY &&
2827 036813ee 2019-05-09 stsp ct->status != GOT_STATUS_DELETE)
2828 036813ee 2019-05-09 stsp continue;
2829 036813ee 2019-05-09 stsp
2830 c4e12a88 2019-05-13 stsp if (got_object_id_cmp(ct->base_blob_id, te->id) != 0)
2831 036813ee 2019-05-09 stsp continue;
2832 036813ee 2019-05-09 stsp
2833 036813ee 2019-05-09 stsp err = match_ct_parent_path(&path_matches, ct, base_tree_path);
2834 036813ee 2019-05-09 stsp if (err)
2835 036813ee 2019-05-09 stsp return err;
2836 036813ee 2019-05-09 stsp if (!path_matches)
2837 036813ee 2019-05-09 stsp continue;
2838 036813ee 2019-05-09 stsp
2839 036813ee 2019-05-09 stsp ct_name = basename(pe->path);
2840 036813ee 2019-05-09 stsp if (ct_name == NULL)
2841 638f9024 2019-05-13 stsp return got_error_from_errno2("basename", pe->path);
2842 036813ee 2019-05-09 stsp
2843 036813ee 2019-05-09 stsp if (strcmp(te->name, ct_name) != 0)
2844 036813ee 2019-05-09 stsp continue;
2845 036813ee 2019-05-09 stsp
2846 036813ee 2019-05-09 stsp *ctp = ct;
2847 036813ee 2019-05-09 stsp break;
2848 036813ee 2019-05-09 stsp }
2849 036813ee 2019-05-09 stsp
2850 036813ee 2019-05-09 stsp return err;
2851 036813ee 2019-05-09 stsp }
2852 036813ee 2019-05-09 stsp
2853 036813ee 2019-05-09 stsp static const struct got_error *
2854 036813ee 2019-05-09 stsp write_tree(struct got_object_id **new_tree_id,
2855 036813ee 2019-05-09 stsp struct got_tree_object *base_tree, const char *path_base_tree,
2856 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
2857 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2858 036813ee 2019-05-09 stsp struct got_repository *repo)
2859 036813ee 2019-05-09 stsp {
2860 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2861 036813ee 2019-05-09 stsp const struct got_tree_entries *base_entries = NULL;
2862 036813ee 2019-05-09 stsp struct got_pathlist_head paths;
2863 036813ee 2019-05-09 stsp struct got_tree_entries new_tree_entries;
2864 2f51b5b3 2019-05-09 stsp struct got_tree_entry *te, *new_te = NULL;
2865 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
2866 036813ee 2019-05-09 stsp
2867 036813ee 2019-05-09 stsp TAILQ_INIT(&paths);
2868 036813ee 2019-05-09 stsp new_tree_entries.nentries = 0;
2869 036813ee 2019-05-09 stsp SIMPLEQ_INIT(&new_tree_entries.head);
2870 036813ee 2019-05-09 stsp
2871 036813ee 2019-05-09 stsp /* Insert, and recurse into, newly added entries first. */
2872 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2873 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2874 2f51b5b3 2019-05-09 stsp char *child_path = NULL, *slash;
2875 036813ee 2019-05-09 stsp
2876 a3df2849 2019-05-20 stsp if (ct->status != GOT_STATUS_ADD ||
2877 a3df2849 2019-05-20 stsp (ct->flags & GOT_COMMITABLE_ADDED))
2878 036813ee 2019-05-09 stsp continue;
2879 036813ee 2019-05-09 stsp
2880 036813ee 2019-05-09 stsp if (!got_path_is_child(pe->path, path_base_tree,
2881 2f51b5b3 2019-05-09 stsp strlen(path_base_tree)))
2882 036813ee 2019-05-09 stsp continue;
2883 036813ee 2019-05-09 stsp
2884 036813ee 2019-05-09 stsp err = got_path_skip_common_ancestor(&child_path, path_base_tree,
2885 036813ee 2019-05-09 stsp pe->path);
2886 036813ee 2019-05-09 stsp if (err)
2887 036813ee 2019-05-09 stsp goto done;
2888 036813ee 2019-05-09 stsp
2889 2f51b5b3 2019-05-09 stsp slash = strchr(child_path, '/');
2890 2f51b5b3 2019-05-09 stsp if (slash == NULL) {
2891 036813ee 2019-05-09 stsp err = alloc_added_blob_tree_entry(&new_te, ct);
2892 036813ee 2019-05-09 stsp if (err)
2893 036813ee 2019-05-09 stsp goto done;
2894 afa376bf 2019-05-09 stsp err = report_ct_status(ct, status_cb, status_arg);
2895 afa376bf 2019-05-09 stsp if (err)
2896 afa376bf 2019-05-09 stsp goto done;
2897 a3df2849 2019-05-20 stsp ct->flags |= GOT_COMMITABLE_ADDED;
2898 036813ee 2019-05-09 stsp } else {
2899 2f51b5b3 2019-05-09 stsp char *subtree_path;
2900 036813ee 2019-05-09 stsp
2901 2f51b5b3 2019-05-09 stsp *slash = '\0'; /* trim trailing path components */
2902 baa7dcfa 2019-05-09 stsp if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
2903 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(path_base_tree) ? "" : "/",
2904 2f51b5b3 2019-05-09 stsp child_path) == -1) {
2905 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2906 2f51b5b3 2019-05-09 stsp goto done;
2907 baa7dcfa 2019-05-09 stsp }
2908 baa7dcfa 2019-05-09 stsp
2909 9ba0479c 2019-05-10 stsp new_te = calloc(1, sizeof(*new_te));
2910 9ba0479c 2019-05-10 stsp new_te->mode = S_IFDIR;
2911 9ba0479c 2019-05-10 stsp new_te->name = strdup(child_path);
2912 9ba0479c 2019-05-10 stsp if (new_te->name == NULL) {
2913 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2914 9ba0479c 2019-05-10 stsp got_object_tree_entry_close(new_te);
2915 9ba0479c 2019-05-10 stsp new_te = NULL;
2916 9ba0479c 2019-05-10 stsp goto done;
2917 9ba0479c 2019-05-10 stsp }
2918 baa7dcfa 2019-05-09 stsp err = write_tree(&new_te->id, NULL, subtree_path,
2919 afa376bf 2019-05-09 stsp commitable_paths, status_cb, status_arg, repo);
2920 2f51b5b3 2019-05-09 stsp free(subtree_path);
2921 9ba0479c 2019-05-10 stsp if (err) {
2922 9ba0479c 2019-05-10 stsp got_object_tree_entry_close(new_te);
2923 9ba0479c 2019-05-10 stsp new_te = NULL;
2924 036813ee 2019-05-09 stsp goto done;
2925 9ba0479c 2019-05-10 stsp }
2926 ed175427 2019-05-09 stsp }
2927 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2928 2f51b5b3 2019-05-09 stsp if (err)
2929 2f51b5b3 2019-05-09 stsp goto done;
2930 2f51b5b3 2019-05-09 stsp }
2931 2f51b5b3 2019-05-09 stsp
2932 2f51b5b3 2019-05-09 stsp if (base_tree) {
2933 2f51b5b3 2019-05-09 stsp /* Handle modified and deleted entries. */
2934 2f51b5b3 2019-05-09 stsp base_entries = got_object_tree_get_entries(base_tree);
2935 2f51b5b3 2019-05-09 stsp SIMPLEQ_FOREACH(te, &base_entries->head, entry) {
2936 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
2937 2f51b5b3 2019-05-09 stsp
2938 2f51b5b3 2019-05-09 stsp if (S_ISDIR(te->mode)) {
2939 44d03001 2019-05-09 stsp int modified;
2940 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
2941 036813ee 2019-05-09 stsp if (err)
2942 036813ee 2019-05-09 stsp goto done;
2943 44d03001 2019-05-09 stsp err = match_modified_subtree(&modified, te,
2944 44d03001 2019-05-09 stsp path_base_tree, commitable_paths);
2945 2f51b5b3 2019-05-09 stsp if (err)
2946 2f51b5b3 2019-05-09 stsp goto done;
2947 44d03001 2019-05-09 stsp /* Avoid recursion into unmodified subtrees. */
2948 44d03001 2019-05-09 stsp if (modified) {
2949 44d03001 2019-05-09 stsp free(new_te->id);
2950 44d03001 2019-05-09 stsp err = write_subtree(&new_te->id, te,
2951 44d03001 2019-05-09 stsp path_base_tree, commitable_paths,
2952 44d03001 2019-05-09 stsp status_cb, status_arg, repo);
2953 44d03001 2019-05-09 stsp if (err)
2954 44d03001 2019-05-09 stsp goto done;
2955 44d03001 2019-05-09 stsp }
2956 036813ee 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2957 036813ee 2019-05-09 stsp if (err)
2958 036813ee 2019-05-09 stsp goto done;
2959 2f51b5b3 2019-05-09 stsp continue;
2960 036813ee 2019-05-09 stsp }
2961 2f51b5b3 2019-05-09 stsp
2962 2f51b5b3 2019-05-09 stsp err = match_deleted_or_modified_ct(&ct, te,
2963 2f51b5b3 2019-05-09 stsp path_base_tree, commitable_paths);
2964 2f51b5b3 2019-05-09 stsp if (ct) {
2965 2f51b5b3 2019-05-09 stsp /* NB: Deleted entries get dropped here. */
2966 2f51b5b3 2019-05-09 stsp if (ct->status == GOT_STATUS_MODIFY) {
2967 2f51b5b3 2019-05-09 stsp err = alloc_modified_blob_tree_entry(
2968 2f51b5b3 2019-05-09 stsp &new_te, te, ct);
2969 2f51b5b3 2019-05-09 stsp if (err)
2970 2f51b5b3 2019-05-09 stsp goto done;
2971 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2972 2f51b5b3 2019-05-09 stsp if (err)
2973 2f51b5b3 2019-05-09 stsp goto done;
2974 2f51b5b3 2019-05-09 stsp }
2975 b416585c 2019-05-13 stsp err = report_ct_status(ct, status_cb,
2976 b416585c 2019-05-13 stsp status_arg);
2977 afa376bf 2019-05-09 stsp if (err)
2978 afa376bf 2019-05-09 stsp goto done;
2979 2f51b5b3 2019-05-09 stsp } else {
2980 2f51b5b3 2019-05-09 stsp /* Entry is unchanged; just copy it. */
2981 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
2982 2f51b5b3 2019-05-09 stsp if (err)
2983 2f51b5b3 2019-05-09 stsp goto done;
2984 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2985 2f51b5b3 2019-05-09 stsp if (err)
2986 2f51b5b3 2019-05-09 stsp goto done;
2987 2f51b5b3 2019-05-09 stsp }
2988 ca2503ea 2019-05-09 stsp }
2989 ed175427 2019-05-09 stsp }
2990 0b5cc0d6 2019-05-09 stsp
2991 036813ee 2019-05-09 stsp /* Write new list of entries; deleted entries have been dropped. */
2992 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &paths, entry) {
2993 0b5cc0d6 2019-05-09 stsp struct got_tree_entry *te = pe->data;
2994 0b5cc0d6 2019-05-09 stsp new_tree_entries.nentries++;
2995 0b5cc0d6 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&new_tree_entries.head, te, entry);
2996 0b5cc0d6 2019-05-09 stsp }
2997 036813ee 2019-05-09 stsp err = got_object_tree_create(new_tree_id, &new_tree_entries, repo);
2998 ed175427 2019-05-09 stsp done:
2999 ca2503ea 2019-05-09 stsp got_object_tree_entries_close(&new_tree_entries);
3000 036813ee 2019-05-09 stsp got_pathlist_free(&paths);
3001 ed175427 2019-05-09 stsp return err;
3002 ed175427 2019-05-09 stsp }
3003 ed175427 2019-05-09 stsp
3004 ebf99748 2019-05-09 stsp static const struct got_error *
3005 ebf99748 2019-05-09 stsp update_fileindex_after_commit(struct got_pathlist_head *commitable_paths,
3006 ebf99748 2019-05-09 stsp struct got_object_id *new_base_commit_id, struct got_worktree *worktree)
3007 ebf99748 2019-05-09 stsp {
3008 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
3009 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
3010 ebf99748 2019-05-09 stsp struct got_fileindex *fileindex = NULL;
3011 ebf99748 2019-05-09 stsp struct got_pathlist_entry *pe;
3012 ebf99748 2019-05-09 stsp
3013 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3014 ebf99748 2019-05-09 stsp if (err)
3015 ebf99748 2019-05-09 stsp return err;
3016 ebf99748 2019-05-09 stsp
3017 ebf99748 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
3018 ebf99748 2019-05-09 stsp struct got_fileindex_entry *ie;
3019 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3020 ebf99748 2019-05-09 stsp
3021 ebf99748 2019-05-09 stsp ie = got_fileindex_entry_get(fileindex, pe->path);
3022 ebf99748 2019-05-09 stsp if (ie) {
3023 ebf99748 2019-05-09 stsp if (ct->status == GOT_STATUS_DELETE) {
3024 ebf99748 2019-05-09 stsp got_fileindex_entry_remove(fileindex, ie);
3025 ebf99748 2019-05-09 stsp got_fileindex_entry_free(ie);
3026 ebf99748 2019-05-09 stsp } else
3027 ebf99748 2019-05-09 stsp err = got_fileindex_entry_update(ie,
3028 e75eb4da 2019-05-10 stsp ct->ondisk_path, ct->blob_id->sha1,
3029 ebf99748 2019-05-09 stsp new_base_commit_id->sha1, 1);
3030 ebf99748 2019-05-09 stsp } else {
3031 ebf99748 2019-05-09 stsp err = got_fileindex_entry_alloc(&ie,
3032 e75eb4da 2019-05-10 stsp ct->ondisk_path, pe->path, ct->blob_id->sha1,
3033 ebf99748 2019-05-09 stsp new_base_commit_id->sha1);
3034 ebf99748 2019-05-09 stsp if (err)
3035 ebf99748 2019-05-09 stsp goto done;
3036 ebf99748 2019-05-09 stsp err = got_fileindex_entry_add(fileindex, ie);
3037 ebf99748 2019-05-09 stsp if (err)
3038 ebf99748 2019-05-09 stsp goto done;
3039 ebf99748 2019-05-09 stsp }
3040 ebf99748 2019-05-09 stsp }
3041 ebf99748 2019-05-09 stsp
3042 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
3043 ebf99748 2019-05-09 stsp done:
3044 ebf99748 2019-05-09 stsp free(fileindex_path);
3045 ebf99748 2019-05-09 stsp got_fileindex_free(fileindex);
3046 d56d26ce 2019-05-10 stsp return err;
3047 d56d26ce 2019-05-10 stsp }
3048 d56d26ce 2019-05-10 stsp
3049 d56d26ce 2019-05-10 stsp static const struct got_error *
3050 33ad4cbe 2019-05-12 jcs check_ct_out_of_date(struct got_commitable *ct, struct got_repository *repo,
3051 d56d26ce 2019-05-10 stsp struct got_object_id *head_commit_id)
3052 d56d26ce 2019-05-10 stsp {
3053 d56d26ce 2019-05-10 stsp const struct got_error *err = NULL;
3054 d56d26ce 2019-05-10 stsp struct got_object_id *id_in_head;
3055 d56d26ce 2019-05-10 stsp
3056 1251a9e5 2019-05-10 stsp /*
3057 b416585c 2019-05-13 stsp * Require that modified/deleted files are based on the branch head.
3058 b416585c 2019-05-13 stsp * This requirement could be relaxed to force less update operations
3059 b416585c 2019-05-13 stsp * on users but, for now, we want to play it safe and see how it goes.
3060 b416585c 2019-05-13 stsp *
3061 b416585c 2019-05-13 stsp * If this check is relaxed, it must still ensure that no modifications
3062 b416585c 2019-05-13 stsp * were made to files *and their parents* in commits between the file's
3063 b416585c 2019-05-13 stsp * base commit and the branch head. Otherwise, tree conflicts will not
3064 b416585c 2019-05-13 stsp * be detected reliably.
3065 b416585c 2019-05-13 stsp */
3066 b416585c 2019-05-13 stsp if (ct->status != GOT_STATUS_ADD) {
3067 b416585c 2019-05-13 stsp if (got_object_id_cmp(ct->base_commit_id, head_commit_id) != 0)
3068 b416585c 2019-05-13 stsp return got_error(GOT_ERR_COMMIT_OUT_OF_DATE);
3069 b416585c 2019-05-13 stsp return NULL;
3070 d56d26ce 2019-05-10 stsp }
3071 d56d26ce 2019-05-10 stsp
3072 b416585c 2019-05-13 stsp /* Require that added files don't exist in the branch head. */
3073 b416585c 2019-05-13 stsp err = got_object_id_by_path(&id_in_head, repo, head_commit_id,
3074 b416585c 2019-05-13 stsp ct->in_repo_path);
3075 b416585c 2019-05-13 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
3076 b416585c 2019-05-13 stsp return err;
3077 b416585c 2019-05-13 stsp if (id_in_head) {
3078 b416585c 2019-05-13 stsp free(id_in_head);
3079 b416585c 2019-05-13 stsp return got_error(GOT_ERR_COMMIT_OUT_OF_DATE);
3080 b416585c 2019-05-13 stsp }
3081 d56d26ce 2019-05-10 stsp
3082 d56d26ce 2019-05-10 stsp free(id_in_head);
3083 b416585c 2019-05-13 stsp return NULL;
3084 ebf99748 2019-05-09 stsp }
3085 ebf99748 2019-05-09 stsp
3086 c4296144 2019-05-09 stsp const struct got_error *
3087 c4296144 2019-05-09 stsp got_worktree_commit(struct got_object_id **new_commit_id,
3088 c4296144 2019-05-09 stsp struct got_worktree *worktree, const char *ondisk_path,
3089 33ad4cbe 2019-05-12 jcs const char *author, const char *committer,
3090 33ad4cbe 2019-05-12 jcs got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
3091 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
3092 afa376bf 2019-05-09 stsp struct got_repository *repo)
3093 c4296144 2019-05-09 stsp {
3094 c4296144 2019-05-09 stsp const struct got_error *err = NULL, *unlockerr = NULL;
3095 ed175427 2019-05-09 stsp struct collect_commitables_arg cc_arg;
3096 036813ee 2019-05-09 stsp struct got_pathlist_head commitable_paths;
3097 c4296144 2019-05-09 stsp struct got_pathlist_entry *pe;
3098 bc70eb79 2019-05-09 stsp char *relpath = NULL;
3099 bc70eb79 2019-05-09 stsp const char *head_ref_name = NULL;
3100 36a38700 2019-05-10 stsp struct got_reference *head_ref = NULL;
3101 588edf97 2019-05-10 stsp struct got_commit_object *head_commit = NULL;
3102 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id = NULL;
3103 09f5bd90 2019-05-09 stsp struct got_reference *head_ref2 = NULL;
3104 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id2 = NULL;
3105 588edf97 2019-05-10 stsp struct got_tree_object *head_tree = NULL;
3106 036813ee 2019-05-09 stsp struct got_object_id *new_tree_id = NULL;
3107 de18fc63 2019-05-09 stsp struct got_object_id_queue parent_ids;
3108 de18fc63 2019-05-09 stsp struct got_object_qid *pid = NULL;
3109 33ad4cbe 2019-05-12 jcs char *logmsg = NULL;
3110 c4296144 2019-05-09 stsp
3111 c4296144 2019-05-09 stsp *new_commit_id = NULL;
3112 c4296144 2019-05-09 stsp
3113 036813ee 2019-05-09 stsp TAILQ_INIT(&commitable_paths);
3114 de18fc63 2019-05-09 stsp SIMPLEQ_INIT(&parent_ids);
3115 c4296144 2019-05-09 stsp
3116 c4296144 2019-05-09 stsp if (ondisk_path) {
3117 c4296144 2019-05-09 stsp err = got_path_skip_common_ancestor(&relpath,
3118 c4296144 2019-05-09 stsp worktree->root_path, ondisk_path);
3119 c4296144 2019-05-09 stsp if (err)
3120 c4296144 2019-05-09 stsp return err;
3121 c4296144 2019-05-09 stsp }
3122 c4296144 2019-05-09 stsp
3123 c4296144 2019-05-09 stsp err = lock_worktree(worktree, LOCK_EX);
3124 c4296144 2019-05-09 stsp if (err)
3125 c4296144 2019-05-09 stsp goto done;
3126 675c7539 2019-05-09 stsp
3127 2f17228e 2019-05-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
3128 36a38700 2019-05-10 stsp if (err)
3129 36a38700 2019-05-10 stsp goto done;
3130 36a38700 2019-05-10 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
3131 09f5bd90 2019-05-09 stsp if (err)
3132 09f5bd90 2019-05-09 stsp goto done;
3133 09f5bd90 2019-05-09 stsp
3134 036813ee 2019-05-09 stsp cc_arg.commitable_paths = &commitable_paths;
3135 24519714 2019-05-09 stsp cc_arg.worktree = worktree;
3136 24519714 2019-05-09 stsp cc_arg.repo = repo;
3137 675c7539 2019-05-09 stsp err = got_worktree_status(worktree, relpath ? relpath : "",
3138 ed175427 2019-05-09 stsp repo, collect_commitables, &cc_arg, NULL, NULL);
3139 675c7539 2019-05-09 stsp if (err)
3140 675c7539 2019-05-09 stsp goto done;
3141 675c7539 2019-05-09 stsp
3142 33ad4cbe 2019-05-12 jcs if (TAILQ_EMPTY(&commitable_paths)) {
3143 33ad4cbe 2019-05-12 jcs err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
3144 33ad4cbe 2019-05-12 jcs goto done;
3145 33ad4cbe 2019-05-12 jcs }
3146 33ad4cbe 2019-05-12 jcs
3147 588edf97 2019-05-10 stsp err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
3148 588edf97 2019-05-10 stsp if (err)
3149 588edf97 2019-05-10 stsp goto done;
3150 588edf97 2019-05-10 stsp
3151 819f385b 2019-05-10 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3152 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3153 d56d26ce 2019-05-10 stsp err = check_ct_out_of_date(ct, repo, head_commit_id);
3154 d56d26ce 2019-05-10 stsp if (err)
3155 819f385b 2019-05-10 stsp goto done;
3156 819f385b 2019-05-10 stsp }
3157 de18fc63 2019-05-09 stsp
3158 588edf97 2019-05-10 stsp err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
3159 588edf97 2019-05-10 stsp if (err)
3160 588edf97 2019-05-10 stsp goto done;
3161 588edf97 2019-05-10 stsp
3162 33ad4cbe 2019-05-12 jcs if (commit_msg_cb != NULL) {
3163 33ad4cbe 2019-05-12 jcs err = commit_msg_cb(&commitable_paths, &logmsg, commit_arg);
3164 33ad4cbe 2019-05-12 jcs if (err)
3165 33ad4cbe 2019-05-12 jcs goto done;
3166 33ad4cbe 2019-05-12 jcs }
3167 c4296144 2019-05-09 stsp
3168 33ad4cbe 2019-05-12 jcs if (logmsg == NULL || strlen(logmsg) == 0) {
3169 33ad4cbe 2019-05-12 jcs err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
3170 33ad4cbe 2019-05-12 jcs goto done;
3171 33ad4cbe 2019-05-12 jcs }
3172 33ad4cbe 2019-05-12 jcs
3173 cf066bf8 2019-05-09 stsp /* Create blobs from added and modified files and record their IDs. */
3174 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3175 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3176 cf066bf8 2019-05-09 stsp char *ondisk_path;
3177 cf066bf8 2019-05-09 stsp
3178 cf066bf8 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD &&
3179 cf066bf8 2019-05-09 stsp ct->status != GOT_STATUS_MODIFY)
3180 cf066bf8 2019-05-09 stsp continue;
3181 cf066bf8 2019-05-09 stsp
3182 cf066bf8 2019-05-09 stsp if (asprintf(&ondisk_path, "%s/%s",
3183 cf066bf8 2019-05-09 stsp worktree->root_path, pe->path) == -1) {
3184 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3185 cf066bf8 2019-05-09 stsp goto done;
3186 cf066bf8 2019-05-09 stsp }
3187 e75eb4da 2019-05-10 stsp err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
3188 a7055788 2019-05-09 stsp free(ondisk_path);
3189 cf066bf8 2019-05-09 stsp if (err)
3190 cf066bf8 2019-05-09 stsp goto done;
3191 cf066bf8 2019-05-09 stsp }
3192 036813ee 2019-05-09 stsp
3193 036813ee 2019-05-09 stsp /* Recursively write new tree objects. */
3194 588edf97 2019-05-10 stsp err = write_tree(&new_tree_id, head_tree, "/", &commitable_paths,
3195 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
3196 036813ee 2019-05-09 stsp if (err)
3197 036813ee 2019-05-09 stsp goto done;
3198 036813ee 2019-05-09 stsp
3199 de18fc63 2019-05-09 stsp err = got_object_qid_alloc(&pid, worktree->base_commit_id);
3200 de18fc63 2019-05-09 stsp if (err)
3201 de18fc63 2019-05-09 stsp goto done;
3202 de18fc63 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&parent_ids, pid, entry);
3203 de18fc63 2019-05-09 stsp err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
3204 de18fc63 2019-05-09 stsp 1, author, time(NULL), committer, time(NULL), logmsg, repo);
3205 de18fc63 2019-05-09 stsp got_object_qid_free(pid);
3206 33ad4cbe 2019-05-12 jcs if (logmsg != NULL)
3207 33ad4cbe 2019-05-12 jcs free(logmsg);
3208 9d40349a 2019-05-09 stsp if (err)
3209 9d40349a 2019-05-09 stsp goto done;
3210 9d40349a 2019-05-09 stsp
3211 09f5bd90 2019-05-09 stsp /* Check if a concurrent commit to our branch has occurred. */
3212 bc70eb79 2019-05-09 stsp head_ref_name = got_worktree_get_head_ref_name(worktree);
3213 bc70eb79 2019-05-09 stsp if (head_ref_name == NULL) {
3214 638f9024 2019-05-13 stsp err = got_error_from_errno("got_worktree_get_head_ref_name");
3215 09f5bd90 2019-05-09 stsp goto done;
3216 09f5bd90 2019-05-09 stsp }
3217 2f17228e 2019-05-12 stsp /* Lock the reference here to prevent concurrent modification. */
3218 2f17228e 2019-05-12 stsp err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
3219 09f5bd90 2019-05-09 stsp if (err)
3220 09f5bd90 2019-05-09 stsp goto done;
3221 09f5bd90 2019-05-09 stsp err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
3222 ebf99748 2019-05-09 stsp if (err)
3223 ebf99748 2019-05-09 stsp goto done;
3224 09f5bd90 2019-05-09 stsp if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
3225 09f5bd90 2019-05-09 stsp err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
3226 09f5bd90 2019-05-09 stsp goto done;
3227 09f5bd90 2019-05-09 stsp }
3228 09f5bd90 2019-05-09 stsp /* Update branch head in repository. */
3229 2f17228e 2019-05-12 stsp err = got_ref_change_ref(head_ref2, *new_commit_id);
3230 f2c16586 2019-05-09 stsp if (err)
3231 f2c16586 2019-05-09 stsp goto done;
3232 2f17228e 2019-05-12 stsp err = got_ref_write(head_ref2, repo);
3233 f2c16586 2019-05-09 stsp if (err)
3234 f2c16586 2019-05-09 stsp goto done;
3235 f2c16586 2019-05-09 stsp
3236 09f5bd90 2019-05-09 stsp err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
3237 09f5bd90 2019-05-09 stsp if (err)
3238 09f5bd90 2019-05-09 stsp goto done;
3239 09f5bd90 2019-05-09 stsp
3240 ebf99748 2019-05-09 stsp err = ref_base_commit(worktree, repo);
3241 ebf99748 2019-05-09 stsp if (err)
3242 ebf99748 2019-05-09 stsp goto done;
3243 ebf99748 2019-05-09 stsp
3244 ebf99748 2019-05-09 stsp err = update_fileindex_after_commit(&commitable_paths,
3245 ebf99748 2019-05-09 stsp *new_commit_id, worktree);
3246 ebf99748 2019-05-09 stsp if (err)
3247 ebf99748 2019-05-09 stsp goto done;
3248 c4296144 2019-05-09 stsp done:
3249 c4296144 2019-05-09 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
3250 c4296144 2019-05-09 stsp if (unlockerr && err == NULL)
3251 c4296144 2019-05-09 stsp err = unlockerr;
3252 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3253 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3254 ed175427 2019-05-09 stsp free_commitable(ct);
3255 cf066bf8 2019-05-09 stsp }
3256 036813ee 2019-05-09 stsp got_pathlist_free(&commitable_paths);
3257 588edf97 2019-05-10 stsp if (head_tree)
3258 588edf97 2019-05-10 stsp got_object_tree_close(head_tree);
3259 588edf97 2019-05-10 stsp if (head_commit)
3260 588edf97 2019-05-10 stsp got_object_commit_close(head_commit);
3261 c4296144 2019-05-09 stsp free(relpath);
3262 09f5bd90 2019-05-09 stsp free(head_commit_id);
3263 09f5bd90 2019-05-09 stsp free(head_commit_id2);
3264 36a38700 2019-05-10 stsp if (head_ref)
3265 36a38700 2019-05-10 stsp got_ref_close(head_ref);
3266 2f17228e 2019-05-12 stsp if (head_ref2) {
3267 2f17228e 2019-05-12 stsp unlockerr = got_ref_unlock(head_ref2);
3268 2f17228e 2019-05-12 stsp if (unlockerr && err == NULL)
3269 2f17228e 2019-05-12 stsp err = unlockerr;
3270 09f5bd90 2019-05-09 stsp got_ref_close(head_ref2);
3271 2f17228e 2019-05-12 stsp }
3272 c4296144 2019-05-09 stsp return err;
3273 8656d6c4 2019-05-20 stsp }
3274 8656d6c4 2019-05-20 stsp
3275 8656d6c4 2019-05-20 stsp const char *
3276 8656d6c4 2019-05-20 stsp got_commitable_get_path(struct got_commitable *ct)
3277 8656d6c4 2019-05-20 stsp {
3278 8656d6c4 2019-05-20 stsp return ct->path;
3279 8656d6c4 2019-05-20 stsp }
3280 8656d6c4 2019-05-20 stsp
3281 8656d6c4 2019-05-20 stsp unsigned int
3282 8656d6c4 2019-05-20 stsp got_commitable_get_status(struct got_commitable *ct)
3283 8656d6c4 2019-05-20 stsp {
3284 8656d6c4 2019-05-20 stsp return ct->status;
3285 c4296144 2019-05-09 stsp }