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 got_worktree_checkout_cb progress_cb;
1673 234035bc 2019-06-01 stsp void *progress_arg;
1674 234035bc 2019-06-01 stsp got_worktree_cancel_cb cancel_cb;
1675 234035bc 2019-06-01 stsp void *cancel_arg;
1676 234035bc 2019-06-01 stsp };
1677 234035bc 2019-06-01 stsp
1678 234035bc 2019-06-01 stsp static const struct got_error *
1679 234035bc 2019-06-01 stsp merge_file_cb(void *arg, struct got_blob_object *blob1,
1680 234035bc 2019-06-01 stsp struct got_blob_object *blob2, struct got_object_id *id1,
1681 234035bc 2019-06-01 stsp struct got_object_id *id2, const char *path1, const char *path2,
1682 234035bc 2019-06-01 stsp struct got_repository *repo)
1683 234035bc 2019-06-01 stsp {
1684 234035bc 2019-06-01 stsp static const struct got_error *err = NULL;
1685 234035bc 2019-06-01 stsp struct merge_file_cb_arg *a = arg;
1686 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie;
1687 234035bc 2019-06-01 stsp char *ondisk_path = NULL;
1688 234035bc 2019-06-01 stsp struct stat sb;
1689 234035bc 2019-06-01 stsp unsigned char status;
1690 234035bc 2019-06-01 stsp int local_changes_subsumed;
1691 234035bc 2019-06-01 stsp
1692 234035bc 2019-06-01 stsp if (blob1 && blob2) {
1693 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path2);
1694 234035bc 2019-06-01 stsp if (ie == NULL) {
1695 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_MISSING,
1696 234035bc 2019-06-01 stsp path2);
1697 234035bc 2019-06-01 stsp return NULL;
1698 234035bc 2019-06-01 stsp }
1699 234035bc 2019-06-01 stsp
1700 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1701 234035bc 2019-06-01 stsp path2) == -1)
1702 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1703 234035bc 2019-06-01 stsp
1704 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1705 234035bc 2019-06-01 stsp if (err)
1706 234035bc 2019-06-01 stsp goto done;
1707 234035bc 2019-06-01 stsp
1708 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
1709 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_MERGE,
1710 234035bc 2019-06-01 stsp path2);
1711 234035bc 2019-06-01 stsp goto done;
1712 234035bc 2019-06-01 stsp }
1713 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
1714 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
1715 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
1716 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
1717 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, status, path2);
1718 234035bc 2019-06-01 stsp goto done;
1719 234035bc 2019-06-01 stsp }
1720 234035bc 2019-06-01 stsp
1721 234035bc 2019-06-01 stsp err = merge_blob(&local_changes_subsumed, a->worktree, blob1,
1722 234035bc 2019-06-01 stsp ondisk_path, path2, sb.st_mode, blob2, repo,
1723 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1724 234035bc 2019-06-01 stsp } else if (blob1) {
1725 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path1);
1726 234035bc 2019-06-01 stsp if (ie == NULL) {
1727 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_MISSING,
1728 234035bc 2019-06-01 stsp path2);
1729 234035bc 2019-06-01 stsp return NULL;
1730 234035bc 2019-06-01 stsp }
1731 2b92fad7 2019-06-02 stsp
1732 2b92fad7 2019-06-02 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1733 2b92fad7 2019-06-02 stsp path1) == -1)
1734 2b92fad7 2019-06-02 stsp return got_error_from_errno("asprintf");
1735 2b92fad7 2019-06-02 stsp
1736 2b92fad7 2019-06-02 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1737 2b92fad7 2019-06-02 stsp if (err)
1738 2b92fad7 2019-06-02 stsp goto done;
1739 2b92fad7 2019-06-02 stsp
1740 2b92fad7 2019-06-02 stsp switch (status) {
1741 2b92fad7 2019-06-02 stsp case GOT_STATUS_NO_CHANGE:
1742 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
1743 2b92fad7 2019-06-02 stsp path1);
1744 2b92fad7 2019-06-02 stsp err = remove_ondisk_file(a->worktree->root_path, path1);
1745 2b92fad7 2019-06-02 stsp if (err)
1746 2b92fad7 2019-06-02 stsp goto done;
1747 2b92fad7 2019-06-02 stsp if (ie)
1748 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
1749 2b92fad7 2019-06-02 stsp break;
1750 2b92fad7 2019-06-02 stsp case GOT_STATUS_DELETE:
1751 2b92fad7 2019-06-02 stsp case GOT_STATUS_MISSING:
1752 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
1753 2b92fad7 2019-06-02 stsp path1);
1754 2b92fad7 2019-06-02 stsp if (ie)
1755 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
1756 2b92fad7 2019-06-02 stsp break;
1757 2b92fad7 2019-06-02 stsp case GOT_STATUS_ADD:
1758 2b92fad7 2019-06-02 stsp case GOT_STATUS_MODIFY:
1759 2b92fad7 2019-06-02 stsp case GOT_STATUS_CONFLICT:
1760 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg,
1761 2b92fad7 2019-06-02 stsp GOT_STATUS_CANNOT_DELETE, path1);
1762 2b92fad7 2019-06-02 stsp break;
1763 2b92fad7 2019-06-02 stsp case GOT_STATUS_OBSTRUCTED:
1764 2b92fad7 2019-06-02 stsp (*a->progress_cb)(a->progress_arg, status, path1);
1765 2b92fad7 2019-06-02 stsp break;
1766 2b92fad7 2019-06-02 stsp default:
1767 2b92fad7 2019-06-02 stsp break;
1768 2b92fad7 2019-06-02 stsp }
1769 234035bc 2019-06-01 stsp } else if (blob2) {
1770 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
1771 234035bc 2019-06-01 stsp path2) == -1)
1772 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1773 234035bc 2019-06-01 stsp ie = got_fileindex_entry_get(a->fileindex, path2);
1774 234035bc 2019-06-01 stsp if (ie) {
1775 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path,
1776 234035bc 2019-06-01 stsp repo);
1777 234035bc 2019-06-01 stsp if (err)
1778 234035bc 2019-06-01 stsp goto done;
1779 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
1780 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
1781 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
1782 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
1783 234035bc 2019-06-01 stsp (*a->progress_cb)(a->progress_arg, status,
1784 234035bc 2019-06-01 stsp path2);
1785 234035bc 2019-06-01 stsp goto done;
1786 234035bc 2019-06-01 stsp }
1787 234035bc 2019-06-01 stsp err = merge_blob(&local_changes_subsumed, a->worktree,
1788 234035bc 2019-06-01 stsp NULL, ondisk_path, path2, sb.st_mode, blob2, repo,
1789 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1790 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
1791 234035bc 2019-06-01 stsp err = update_blob_fileindex_entry(a->worktree,
1792 234035bc 2019-06-01 stsp a->fileindex, ie, ondisk_path, ie->path,
1793 234035bc 2019-06-01 stsp blob2, 0);
1794 234035bc 2019-06-01 stsp if (err)
1795 234035bc 2019-06-01 stsp goto done;
1796 234035bc 2019-06-01 stsp }
1797 234035bc 2019-06-01 stsp } else {
1798 234035bc 2019-06-01 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
1799 234035bc 2019-06-01 stsp err = install_blob(a->worktree, ondisk_path, path2,
1800 234035bc 2019-06-01 stsp /* XXX get this from parent tree! */
1801 234035bc 2019-06-01 stsp GOT_DEFAULT_FILE_MODE,
1802 234035bc 2019-06-01 stsp sb.st_mode, blob2, 0, 0, repo,
1803 234035bc 2019-06-01 stsp a->progress_cb, a->progress_arg);
1804 234035bc 2019-06-01 stsp if (err)
1805 234035bc 2019-06-01 stsp goto done;
1806 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_alloc(&ie,
1807 2b92fad7 2019-06-02 stsp ondisk_path, path2, NULL, NULL);
1808 234035bc 2019-06-01 stsp if (err)
1809 234035bc 2019-06-01 stsp goto done;
1810 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_add(a->fileindex, ie);
1811 2b92fad7 2019-06-02 stsp if (err) {
1812 2b92fad7 2019-06-02 stsp got_fileindex_entry_free(ie);
1813 2b92fad7 2019-06-02 stsp goto done;
1814 2b92fad7 2019-06-02 stsp }
1815 234035bc 2019-06-01 stsp }
1816 234035bc 2019-06-01 stsp }
1817 234035bc 2019-06-01 stsp done:
1818 234035bc 2019-06-01 stsp free(ondisk_path);
1819 234035bc 2019-06-01 stsp return err;
1820 234035bc 2019-06-01 stsp }
1821 234035bc 2019-06-01 stsp
1822 234035bc 2019-06-01 stsp struct check_merge_ok_arg {
1823 234035bc 2019-06-01 stsp struct got_worktree *worktree;
1824 234035bc 2019-06-01 stsp struct got_repository *repo;
1825 234035bc 2019-06-01 stsp };
1826 234035bc 2019-06-01 stsp
1827 234035bc 2019-06-01 stsp static const struct got_error *
1828 234035bc 2019-06-01 stsp check_merge_ok(void *arg, struct got_fileindex_entry *ie)
1829 234035bc 2019-06-01 stsp {
1830 234035bc 2019-06-01 stsp const struct got_error *err = NULL;
1831 234035bc 2019-06-01 stsp struct check_merge_ok_arg *a = arg;
1832 234035bc 2019-06-01 stsp unsigned char status;
1833 234035bc 2019-06-01 stsp struct stat sb;
1834 234035bc 2019-06-01 stsp char *ondisk_path;
1835 234035bc 2019-06-01 stsp
1836 234035bc 2019-06-01 stsp /* Reject merges into a work tree with mixed base commits. */
1837 234035bc 2019-06-01 stsp if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
1838 234035bc 2019-06-01 stsp SHA1_DIGEST_LENGTH))
1839 234035bc 2019-06-01 stsp return got_error(GOT_ERR_MIXED_COMMITS);
1840 234035bc 2019-06-01 stsp
1841 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
1842 234035bc 2019-06-01 stsp == -1)
1843 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
1844 234035bc 2019-06-01 stsp
1845 234035bc 2019-06-01 stsp /* Reject merges into a work tree with conflicted files. */
1846 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path, a->repo);
1847 234035bc 2019-06-01 stsp if (err)
1848 234035bc 2019-06-01 stsp return err;
1849 234035bc 2019-06-01 stsp if (status == GOT_STATUS_CONFLICT)
1850 234035bc 2019-06-01 stsp return got_error(GOT_ERR_CONFLICTS);
1851 234035bc 2019-06-01 stsp
1852 234035bc 2019-06-01 stsp return NULL;
1853 234035bc 2019-06-01 stsp }
1854 234035bc 2019-06-01 stsp
1855 234035bc 2019-06-01 stsp const struct got_error *
1856 234035bc 2019-06-01 stsp got_worktree_merge_files(struct got_worktree *worktree,
1857 234035bc 2019-06-01 stsp struct got_object_id *commit_id1, struct got_object_id *commit_id2,
1858 234035bc 2019-06-01 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1859 234035bc 2019-06-01 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1860 234035bc 2019-06-01 stsp {
1861 234035bc 2019-06-01 stsp const struct got_error *err = NULL, *unlockerr;
1862 234035bc 2019-06-01 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
1863 234035bc 2019-06-01 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1864 234035bc 2019-06-01 stsp struct merge_file_cb_arg arg;
1865 234035bc 2019-06-01 stsp char *fileindex_path = NULL;
1866 234035bc 2019-06-01 stsp struct got_fileindex *fileindex = NULL;
1867 234035bc 2019-06-01 stsp struct check_merge_ok_arg mok_arg;
1868 234035bc 2019-06-01 stsp
1869 234035bc 2019-06-01 stsp err = lock_worktree(worktree, LOCK_EX);
1870 234035bc 2019-06-01 stsp if (err)
1871 234035bc 2019-06-01 stsp return err;
1872 234035bc 2019-06-01 stsp
1873 234035bc 2019-06-01 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
1874 234035bc 2019-06-01 stsp if (err)
1875 234035bc 2019-06-01 stsp goto done;
1876 234035bc 2019-06-01 stsp
1877 234035bc 2019-06-01 stsp mok_arg.worktree = worktree;
1878 234035bc 2019-06-01 stsp mok_arg.repo = repo;
1879 234035bc 2019-06-01 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_merge_ok,
1880 234035bc 2019-06-01 stsp &mok_arg);
1881 234035bc 2019-06-01 stsp if (err)
1882 234035bc 2019-06-01 stsp goto done;
1883 234035bc 2019-06-01 stsp
1884 03415a1a 2019-06-02 stsp if (commit_id1) {
1885 03415a1a 2019-06-02 stsp err = got_object_id_by_path(&tree_id1, repo, commit_id1,
1886 03415a1a 2019-06-02 stsp worktree->path_prefix);
1887 03415a1a 2019-06-02 stsp if (err)
1888 03415a1a 2019-06-02 stsp goto done;
1889 03415a1a 2019-06-02 stsp
1890 03415a1a 2019-06-02 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
1891 03415a1a 2019-06-02 stsp if (err)
1892 03415a1a 2019-06-02 stsp goto done;
1893 03415a1a 2019-06-02 stsp }
1894 234035bc 2019-06-01 stsp
1895 234035bc 2019-06-01 stsp err = got_object_id_by_path(&tree_id2, repo, commit_id2,
1896 234035bc 2019-06-01 stsp worktree->path_prefix);
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.progress_cb = progress_cb;
1907 234035bc 2019-06-01 stsp arg.progress_arg = progress_arg;
1908 234035bc 2019-06-01 stsp arg.cancel_cb = cancel_cb;
1909 234035bc 2019-06-01 stsp arg.cancel_arg = cancel_arg;
1910 234035bc 2019-06-01 stsp err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg);
1911 9c6338c4 2019-06-02 stsp if (err)
1912 9c6338c4 2019-06-02 stsp goto done;
1913 9c6338c4 2019-06-02 stsp
1914 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
1915 234035bc 2019-06-01 stsp done:
1916 234035bc 2019-06-01 stsp got_fileindex_free(fileindex);
1917 234035bc 2019-06-01 stsp if (tree1)
1918 234035bc 2019-06-01 stsp got_object_tree_close(tree1);
1919 234035bc 2019-06-01 stsp if (tree2)
1920 234035bc 2019-06-01 stsp got_object_tree_close(tree2);
1921 234035bc 2019-06-01 stsp
1922 234035bc 2019-06-01 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1923 234035bc 2019-06-01 stsp if (unlockerr && err == NULL)
1924 234035bc 2019-06-01 stsp err = unlockerr;
1925 234035bc 2019-06-01 stsp return err;
1926 234035bc 2019-06-01 stsp }
1927 234035bc 2019-06-01 stsp
1928 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
1929 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
1930 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
1931 927df6b7 2019-02-10 stsp const char *status_path;
1932 927df6b7 2019-02-10 stsp size_t status_path_len;
1933 f8d1f275 2019-02-04 stsp struct got_repository *repo;
1934 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
1935 f8d1f275 2019-02-04 stsp void *status_arg;
1936 f8d1f275 2019-02-04 stsp got_worktree_cancel_cb cancel_cb;
1937 f8d1f275 2019-02-04 stsp void *cancel_arg;
1938 f8d1f275 2019-02-04 stsp };
1939 f8d1f275 2019-02-04 stsp
1940 f8d1f275 2019-02-04 stsp static const struct got_error *
1941 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
1942 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
1943 927df6b7 2019-02-10 stsp struct got_repository *repo)
1944 927df6b7 2019-02-10 stsp {
1945 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
1946 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1947 927df6b7 2019-02-10 stsp struct stat sb;
1948 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
1949 927df6b7 2019-02-10 stsp
1950 927df6b7 2019-02-10 stsp err = get_file_status(&status, &sb, ie, abspath, repo);
1951 927df6b7 2019-02-10 stsp if (err == NULL && status != GOT_STATUS_NO_CHANGE) {
1952 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1953 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
1954 016a88dd 2019-05-13 stsp err = (*status_cb)(status_arg, status, ie->path, &blob_id,
1955 016a88dd 2019-05-13 stsp &commit_id);
1956 927df6b7 2019-02-10 stsp }
1957 927df6b7 2019-02-10 stsp return err;
1958 927df6b7 2019-02-10 stsp }
1959 927df6b7 2019-02-10 stsp
1960 927df6b7 2019-02-10 stsp static const struct got_error *
1961 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
1962 f8d1f275 2019-02-04 stsp struct dirent *de, const char *parent_path)
1963 f8d1f275 2019-02-04 stsp {
1964 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1965 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1966 f8d1f275 2019-02-04 stsp char *abspath;
1967 f8d1f275 2019-02-04 stsp
1968 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1969 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1970 0584f854 2019-04-06 stsp
1971 927df6b7 2019-02-10 stsp if (got_path_cmp(parent_path, a->status_path) != 0 &&
1972 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
1973 927df6b7 2019-02-10 stsp return NULL;
1974 927df6b7 2019-02-10 stsp
1975 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1976 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
1977 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
1978 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1979 f8d1f275 2019-02-04 stsp } else {
1980 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
1981 f8d1f275 2019-02-04 stsp de->d_name) == -1)
1982 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1983 f8d1f275 2019-02-04 stsp }
1984 f8d1f275 2019-02-04 stsp
1985 927df6b7 2019-02-10 stsp err = report_file_status(ie, abspath, a->status_cb, a->status_arg,
1986 927df6b7 2019-02-10 stsp a->repo);
1987 f8d1f275 2019-02-04 stsp free(abspath);
1988 9d31a1d8 2018-03-11 stsp return err;
1989 9d31a1d8 2018-03-11 stsp }
1990 f8d1f275 2019-02-04 stsp
1991 f8d1f275 2019-02-04 stsp static const struct got_error *
1992 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1993 f8d1f275 2019-02-04 stsp {
1994 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1995 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
1996 2ec1f75b 2019-03-26 stsp unsigned char status;
1997 927df6b7 2019-02-10 stsp
1998 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1999 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2000 0584f854 2019-04-06 stsp
2001 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
2002 927df6b7 2019-02-10 stsp return NULL;
2003 927df6b7 2019-02-10 stsp
2004 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2005 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
2006 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
2007 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_MISSING;
2008 2ec1f75b 2019-03-26 stsp else
2009 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_DELETE;
2010 016a88dd 2019-05-13 stsp return (*a->status_cb)(a->status_arg, status, ie->path, &blob_id,
2011 016a88dd 2019-05-13 stsp &commit_id);
2012 f8d1f275 2019-02-04 stsp }
2013 f8d1f275 2019-02-04 stsp
2014 f8d1f275 2019-02-04 stsp static const struct got_error *
2015 f8d1f275 2019-02-04 stsp status_new(void *arg, struct dirent *de, const char *parent_path)
2016 f8d1f275 2019-02-04 stsp {
2017 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
2018 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
2019 f8d1f275 2019-02-04 stsp char *path = NULL;
2020 f8d1f275 2019-02-04 stsp
2021 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2022 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2023 0584f854 2019-04-06 stsp
2024 f8d1f275 2019-02-04 stsp if (de->d_type == DT_DIR)
2025 2c201a36 2019-02-10 stsp return NULL;
2026 2c201a36 2019-02-10 stsp
2027 2c201a36 2019-02-10 stsp /* XXX ignore symlinks for now */
2028 2c201a36 2019-02-10 stsp if (de->d_type == DT_LNK)
2029 f8d1f275 2019-02-04 stsp return NULL;
2030 f8d1f275 2019-02-04 stsp
2031 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
2032 927df6b7 2019-02-10 stsp return NULL;
2033 927df6b7 2019-02-10 stsp
2034 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
2035 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
2036 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2037 f8d1f275 2019-02-04 stsp } else {
2038 f8d1f275 2019-02-04 stsp path = de->d_name;
2039 f8d1f275 2019-02-04 stsp }
2040 f8d1f275 2019-02-04 stsp
2041 b72f483a 2019-02-05 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED, path,
2042 016a88dd 2019-05-13 stsp NULL, NULL);
2043 f8d1f275 2019-02-04 stsp if (parent_path[0])
2044 f8d1f275 2019-02-04 stsp free(path);
2045 b72f483a 2019-02-05 stsp return err;
2046 f8d1f275 2019-02-04 stsp }
2047 f8d1f275 2019-02-04 stsp
2048 f8d1f275 2019-02-04 stsp const struct got_error *
2049 927df6b7 2019-02-10 stsp got_worktree_status(struct got_worktree *worktree, const char *path,
2050 f8d1f275 2019-02-04 stsp struct got_repository *repo, got_worktree_status_cb status_cb,
2051 f8d1f275 2019-02-04 stsp void *status_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
2052 f8d1f275 2019-02-04 stsp {
2053 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
2054 f8d1f275 2019-02-04 stsp DIR *workdir = NULL;
2055 f8d1f275 2019-02-04 stsp char *fileindex_path = NULL;
2056 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex = NULL;
2057 f8d1f275 2019-02-04 stsp FILE *index = NULL;
2058 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
2059 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
2060 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
2061 f8d1f275 2019-02-04 stsp
2062 f8d1f275 2019-02-04 stsp fileindex = got_fileindex_alloc();
2063 f8d1f275 2019-02-04 stsp if (fileindex == NULL) {
2064 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2065 f8d1f275 2019-02-04 stsp goto done;
2066 f8d1f275 2019-02-04 stsp }
2067 f8d1f275 2019-02-04 stsp
2068 f8d1f275 2019-02-04 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2069 f8d1f275 2019-02-04 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2070 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2071 f8d1f275 2019-02-04 stsp fileindex_path = NULL;
2072 f8d1f275 2019-02-04 stsp goto done;
2073 f8d1f275 2019-02-04 stsp }
2074 f8d1f275 2019-02-04 stsp
2075 f8d1f275 2019-02-04 stsp index = fopen(fileindex_path, "rb");
2076 f8d1f275 2019-02-04 stsp if (index == NULL) {
2077 f8d1f275 2019-02-04 stsp if (errno != ENOENT) {
2078 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2079 f8d1f275 2019-02-04 stsp goto done;
2080 f8d1f275 2019-02-04 stsp }
2081 f8d1f275 2019-02-04 stsp } else {
2082 f8d1f275 2019-02-04 stsp err = got_fileindex_read(fileindex, index);
2083 f8d1f275 2019-02-04 stsp fclose(index);
2084 f8d1f275 2019-02-04 stsp if (err)
2085 f8d1f275 2019-02-04 stsp goto done;
2086 f8d1f275 2019-02-04 stsp }
2087 f8d1f275 2019-02-04 stsp
2088 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
2089 927df6b7 2019-02-10 stsp worktree->root_path, path[0] ? "/" : "", path) == -1) {
2090 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2091 c513d110 2019-02-05 stsp goto done;
2092 c513d110 2019-02-05 stsp }
2093 927df6b7 2019-02-10 stsp workdir = opendir(ondisk_path);
2094 927df6b7 2019-02-10 stsp if (workdir == NULL) {
2095 2ec1f75b 2019-03-26 stsp if (errno == ENOTDIR || errno == ENOENT) {
2096 927df6b7 2019-02-10 stsp struct got_fileindex_entry *ie;
2097 927df6b7 2019-02-10 stsp ie = got_fileindex_entry_get(fileindex, path);
2098 927df6b7 2019-02-10 stsp if (ie == NULL) {
2099 927df6b7 2019-02-10 stsp err = got_error(GOT_ERR_BAD_PATH);
2100 927df6b7 2019-02-10 stsp goto done;
2101 927df6b7 2019-02-10 stsp }
2102 927df6b7 2019-02-10 stsp err = report_file_status(ie, ondisk_path,
2103 927df6b7 2019-02-10 stsp status_cb, status_arg, repo);
2104 927df6b7 2019-02-10 stsp goto done;
2105 927df6b7 2019-02-10 stsp } else {
2106 638f9024 2019-05-13 stsp err = got_error_from_errno2("opendir", ondisk_path);
2107 927df6b7 2019-02-10 stsp goto done;
2108 927df6b7 2019-02-10 stsp }
2109 927df6b7 2019-02-10 stsp }
2110 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old_new = status_old_new;
2111 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old = status_old;
2112 d43a8a88 2019-02-05 stsp fdiff_cb.diff_new = status_new;
2113 f8d1f275 2019-02-04 stsp arg.fileindex = fileindex;
2114 f8d1f275 2019-02-04 stsp arg.worktree = worktree;
2115 927df6b7 2019-02-10 stsp arg.status_path = path;
2116 927df6b7 2019-02-10 stsp arg.status_path_len = strlen(path);
2117 f8d1f275 2019-02-04 stsp arg.repo = repo;
2118 f8d1f275 2019-02-04 stsp arg.status_cb = status_cb;
2119 f8d1f275 2019-02-04 stsp arg.status_arg = status_arg;
2120 f8d1f275 2019-02-04 stsp arg.cancel_cb = cancel_cb;
2121 f8d1f275 2019-02-04 stsp arg.cancel_arg = cancel_arg;
2122 c7f4312f 2019-02-05 stsp err = got_fileindex_diff_dir(fileindex, workdir, worktree->root_path,
2123 927df6b7 2019-02-10 stsp path, repo, &fdiff_cb, &arg);
2124 f8d1f275 2019-02-04 stsp done:
2125 f8d1f275 2019-02-04 stsp if (workdir)
2126 f8d1f275 2019-02-04 stsp closedir(workdir);
2127 927df6b7 2019-02-10 stsp free(ondisk_path);
2128 f8d1f275 2019-02-04 stsp free(fileindex_path);
2129 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
2130 f8d1f275 2019-02-04 stsp return err;
2131 f8d1f275 2019-02-04 stsp }
2132 6c7ab921 2019-03-18 stsp
2133 6c7ab921 2019-03-18 stsp const struct got_error *
2134 6c7ab921 2019-03-18 stsp got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
2135 6c7ab921 2019-03-18 stsp const char *arg)
2136 6c7ab921 2019-03-18 stsp {
2137 6c7ab921 2019-03-18 stsp const struct got_error *err = NULL;
2138 6c7ab921 2019-03-18 stsp char *resolved, *path = NULL;
2139 6c7ab921 2019-03-18 stsp size_t len;
2140 6c7ab921 2019-03-18 stsp
2141 6c7ab921 2019-03-18 stsp *wt_path = NULL;
2142 6c7ab921 2019-03-18 stsp
2143 6c7ab921 2019-03-18 stsp resolved = realpath(arg, NULL);
2144 6c7ab921 2019-03-18 stsp if (resolved == NULL)
2145 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", arg);
2146 6c7ab921 2019-03-18 stsp
2147 6c7ab921 2019-03-18 stsp if (strncmp(got_worktree_get_root_path(worktree), resolved,
2148 6c7ab921 2019-03-18 stsp strlen(got_worktree_get_root_path(worktree)))) {
2149 6c7ab921 2019-03-18 stsp err = got_error(GOT_ERR_BAD_PATH);
2150 6c7ab921 2019-03-18 stsp goto done;
2151 6c7ab921 2019-03-18 stsp }
2152 6c7ab921 2019-03-18 stsp
2153 f6d88e1a 2019-05-29 stsp if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
2154 f6d88e1a 2019-05-29 stsp err = got_path_skip_common_ancestor(&path,
2155 f6d88e1a 2019-05-29 stsp got_worktree_get_root_path(worktree), resolved);
2156 f6d88e1a 2019-05-29 stsp if (err)
2157 f6d88e1a 2019-05-29 stsp goto done;
2158 f6d88e1a 2019-05-29 stsp } else {
2159 f6d88e1a 2019-05-29 stsp path = strdup("");
2160 f6d88e1a 2019-05-29 stsp if (path == NULL) {
2161 f6d88e1a 2019-05-29 stsp err = got_error_from_errno("strdup");
2162 f6d88e1a 2019-05-29 stsp goto done;
2163 f6d88e1a 2019-05-29 stsp }
2164 6c7ab921 2019-03-18 stsp }
2165 6c7ab921 2019-03-18 stsp
2166 6c7ab921 2019-03-18 stsp /* XXX status walk can't deal with trailing slash! */
2167 6c7ab921 2019-03-18 stsp len = strlen(path);
2168 6c7ab921 2019-03-18 stsp while (path[len - 1] == '/') {
2169 6c7ab921 2019-03-18 stsp path[len - 1] = '\0';
2170 6c7ab921 2019-03-18 stsp len--;
2171 6c7ab921 2019-03-18 stsp }
2172 6c7ab921 2019-03-18 stsp done:
2173 6c7ab921 2019-03-18 stsp free(resolved);
2174 6c7ab921 2019-03-18 stsp if (err == NULL)
2175 6c7ab921 2019-03-18 stsp *wt_path = path;
2176 6c7ab921 2019-03-18 stsp else
2177 6c7ab921 2019-03-18 stsp free(path);
2178 d00136be 2019-03-26 stsp return err;
2179 d00136be 2019-03-26 stsp }
2180 d00136be 2019-03-26 stsp
2181 07f5b47a 2019-06-02 stsp static const struct got_error *
2182 07f5b47a 2019-06-02 stsp schedule_addition(const char *ondisk_path, struct got_fileindex *fileindex,
2183 07f5b47a 2019-06-02 stsp const char *relpath, got_worktree_status_cb status_cb, void *status_arg,
2184 07f5b47a 2019-06-02 stsp struct got_repository *repo)
2185 07f5b47a 2019-06-02 stsp {
2186 07f5b47a 2019-06-02 stsp const struct got_error *err = NULL;
2187 07f5b47a 2019-06-02 stsp struct got_fileindex_entry *ie;
2188 07f5b47a 2019-06-02 stsp
2189 07f5b47a 2019-06-02 stsp /* Re-adding an existing entry is a no-op. */
2190 07f5b47a 2019-06-02 stsp if (got_fileindex_entry_get(fileindex, relpath) != NULL)
2191 07f5b47a 2019-06-02 stsp return NULL;
2192 07f5b47a 2019-06-02 stsp
2193 07f5b47a 2019-06-02 stsp err = got_fileindex_entry_alloc(&ie, ondisk_path, relpath, NULL, NULL);
2194 07f5b47a 2019-06-02 stsp if (err)
2195 07f5b47a 2019-06-02 stsp return err;
2196 07f5b47a 2019-06-02 stsp
2197 07f5b47a 2019-06-02 stsp err = got_fileindex_entry_add(fileindex, ie);
2198 07f5b47a 2019-06-02 stsp if (err) {
2199 07f5b47a 2019-06-02 stsp got_fileindex_entry_free(ie);
2200 07f5b47a 2019-06-02 stsp return err;
2201 07f5b47a 2019-06-02 stsp }
2202 07f5b47a 2019-06-02 stsp
2203 07f5b47a 2019-06-02 stsp return report_file_status(ie, relpath, status_cb, status_arg, repo);
2204 07f5b47a 2019-06-02 stsp }
2205 07f5b47a 2019-06-02 stsp
2206 d00136be 2019-03-26 stsp const struct got_error *
2207 031a5338 2019-03-26 stsp got_worktree_schedule_add(struct got_worktree *worktree,
2208 1dd54920 2019-05-11 stsp struct got_pathlist_head *ondisk_paths,
2209 1dd54920 2019-05-11 stsp got_worktree_status_cb status_cb, void *status_arg,
2210 031a5338 2019-03-26 stsp struct got_repository *repo)
2211 d00136be 2019-03-26 stsp {
2212 d00136be 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
2213 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
2214 9c6338c4 2019-06-02 stsp FILE *index = NULL;
2215 d00136be 2019-03-26 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2216 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
2217 d00136be 2019-03-26 stsp
2218 d00136be 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
2219 d00136be 2019-03-26 stsp if (err)
2220 d00136be 2019-03-26 stsp return err;
2221 d00136be 2019-03-26 stsp
2222 d00136be 2019-03-26 stsp
2223 d00136be 2019-03-26 stsp fileindex = got_fileindex_alloc();
2224 d00136be 2019-03-26 stsp if (fileindex == NULL) {
2225 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2226 d00136be 2019-03-26 stsp goto done;
2227 d00136be 2019-03-26 stsp }
2228 d00136be 2019-03-26 stsp
2229 d00136be 2019-03-26 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2230 d00136be 2019-03-26 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2231 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2232 d00136be 2019-03-26 stsp fileindex_path = NULL;
2233 d00136be 2019-03-26 stsp goto done;
2234 d00136be 2019-03-26 stsp }
2235 d00136be 2019-03-26 stsp
2236 d00136be 2019-03-26 stsp index = fopen(fileindex_path, "rb");
2237 d00136be 2019-03-26 stsp if (index == NULL) {
2238 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2239 d00136be 2019-03-26 stsp goto done;
2240 d00136be 2019-03-26 stsp }
2241 d00136be 2019-03-26 stsp
2242 d00136be 2019-03-26 stsp err = got_fileindex_read(fileindex, index);
2243 d00136be 2019-03-26 stsp if (err)
2244 d00136be 2019-03-26 stsp goto done;
2245 d00136be 2019-03-26 stsp
2246 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, ondisk_paths, entry) {
2247 1dd54920 2019-05-11 stsp char *relpath;
2248 1dd54920 2019-05-11 stsp err = got_path_skip_common_ancestor(&relpath,
2249 1dd54920 2019-05-11 stsp got_worktree_get_root_path(worktree), pe->path);
2250 1dd54920 2019-05-11 stsp if (err)
2251 1dd54920 2019-05-11 stsp goto done;
2252 07f5b47a 2019-06-02 stsp err = schedule_addition(pe->path, fileindex, relpath,
2253 07f5b47a 2019-06-02 stsp status_cb, status_arg, repo);
2254 1dd54920 2019-05-11 stsp free(relpath);
2255 1dd54920 2019-05-11 stsp if (err)
2256 1dd54920 2019-05-11 stsp goto done;
2257 1dd54920 2019-05-11 stsp }
2258 1dd54920 2019-05-11 stsp
2259 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
2260 d00136be 2019-03-26 stsp done:
2261 d00136be 2019-03-26 stsp if (index) {
2262 d00136be 2019-03-26 stsp if (fclose(index) != 0 && err == NULL)
2263 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2264 d00136be 2019-03-26 stsp }
2265 d00136be 2019-03-26 stsp if (fileindex)
2266 d00136be 2019-03-26 stsp got_fileindex_free(fileindex);
2267 d00136be 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2268 d00136be 2019-03-26 stsp if (unlockerr && err == NULL)
2269 d00136be 2019-03-26 stsp err = unlockerr;
2270 6c7ab921 2019-03-18 stsp return err;
2271 6c7ab921 2019-03-18 stsp }
2272 17ed4618 2019-06-02 stsp
2273 17ed4618 2019-06-02 stsp static const struct got_error *
2274 17ed4618 2019-06-02 stsp schedule_for_deletion(const char *ondisk_path, struct got_fileindex *fileindex,
2275 17ed4618 2019-06-02 stsp const char *relpath, int delete_local_mods,
2276 17ed4618 2019-06-02 stsp got_worktree_status_cb status_cb, void *status_arg,
2277 17ed4618 2019-06-02 stsp struct got_repository *repo)
2278 17ed4618 2019-06-02 stsp {
2279 17ed4618 2019-06-02 stsp const struct got_error *err = NULL;
2280 17ed4618 2019-06-02 stsp struct got_fileindex_entry *ie = NULL;
2281 17ed4618 2019-06-02 stsp unsigned char status;
2282 17ed4618 2019-06-02 stsp struct stat sb;
2283 17ed4618 2019-06-02 stsp
2284 17ed4618 2019-06-02 stsp ie = got_fileindex_entry_get(fileindex, relpath);
2285 17ed4618 2019-06-02 stsp if (ie == NULL)
2286 17ed4618 2019-06-02 stsp return got_error(GOT_ERR_BAD_PATH);
2287 2ec1f75b 2019-03-26 stsp
2288 17ed4618 2019-06-02 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
2289 17ed4618 2019-06-02 stsp if (err)
2290 17ed4618 2019-06-02 stsp return err;
2291 17ed4618 2019-06-02 stsp
2292 17ed4618 2019-06-02 stsp if (status != GOT_STATUS_NO_CHANGE) {
2293 17ed4618 2019-06-02 stsp if (status == GOT_STATUS_DELETE)
2294 17ed4618 2019-06-02 stsp return got_error_set_errno(ENOENT, ondisk_path);
2295 17ed4618 2019-06-02 stsp if (status != GOT_STATUS_MODIFY)
2296 17ed4618 2019-06-02 stsp return got_error(GOT_ERR_FILE_STATUS);
2297 17ed4618 2019-06-02 stsp if (!delete_local_mods)
2298 17ed4618 2019-06-02 stsp return got_error(GOT_ERR_FILE_MODIFIED);
2299 17ed4618 2019-06-02 stsp }
2300 17ed4618 2019-06-02 stsp
2301 17ed4618 2019-06-02 stsp if (unlink(ondisk_path) != 0)
2302 17ed4618 2019-06-02 stsp return got_error_from_errno2("unlink", ondisk_path);
2303 17ed4618 2019-06-02 stsp
2304 17ed4618 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
2305 17ed4618 2019-06-02 stsp return report_file_status(ie, ondisk_path, status_cb, status_arg, repo);
2306 17ed4618 2019-06-02 stsp }
2307 17ed4618 2019-06-02 stsp
2308 2ec1f75b 2019-03-26 stsp const struct got_error *
2309 2ec1f75b 2019-03-26 stsp got_worktree_schedule_delete(struct got_worktree *worktree,
2310 17ed4618 2019-06-02 stsp struct got_pathlist_head *ondisk_paths, int delete_local_mods,
2311 2ec1f75b 2019-03-26 stsp got_worktree_status_cb status_cb, void *status_arg,
2312 2ec1f75b 2019-03-26 stsp struct got_repository *repo)
2313 2ec1f75b 2019-03-26 stsp {
2314 2ec1f75b 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
2315 17ed4618 2019-06-02 stsp char *fileindex_path = NULL;
2316 9c6338c4 2019-06-02 stsp FILE *index = NULL;
2317 2ec1f75b 2019-03-26 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2318 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
2319 2ec1f75b 2019-03-26 stsp
2320 2ec1f75b 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
2321 2ec1f75b 2019-03-26 stsp if (err)
2322 2ec1f75b 2019-03-26 stsp return err;
2323 2ec1f75b 2019-03-26 stsp
2324 2ec1f75b 2019-03-26 stsp fileindex = got_fileindex_alloc();
2325 2ec1f75b 2019-03-26 stsp if (fileindex == NULL) {
2326 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2327 2ec1f75b 2019-03-26 stsp goto done;
2328 2ec1f75b 2019-03-26 stsp }
2329 2ec1f75b 2019-03-26 stsp
2330 2ec1f75b 2019-03-26 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2331 2ec1f75b 2019-03-26 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2332 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2333 2ec1f75b 2019-03-26 stsp fileindex_path = NULL;
2334 2ec1f75b 2019-03-26 stsp goto done;
2335 2ec1f75b 2019-03-26 stsp }
2336 2ec1f75b 2019-03-26 stsp
2337 2ec1f75b 2019-03-26 stsp index = fopen(fileindex_path, "rb");
2338 2ec1f75b 2019-03-26 stsp if (index == NULL) {
2339 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2340 2ec1f75b 2019-03-26 stsp goto done;
2341 2ec1f75b 2019-03-26 stsp }
2342 2ec1f75b 2019-03-26 stsp
2343 2ec1f75b 2019-03-26 stsp err = got_fileindex_read(fileindex, index);
2344 2ec1f75b 2019-03-26 stsp if (err)
2345 2ec1f75b 2019-03-26 stsp goto done;
2346 2ec1f75b 2019-03-26 stsp
2347 17ed4618 2019-06-02 stsp TAILQ_FOREACH(pe, ondisk_paths, entry) {
2348 17ed4618 2019-06-02 stsp char *relpath;
2349 17ed4618 2019-06-02 stsp err = got_path_skip_common_ancestor(&relpath,
2350 17ed4618 2019-06-02 stsp got_worktree_get_root_path(worktree), pe->path);
2351 17ed4618 2019-06-02 stsp if (err)
2352 2ec1f75b 2019-03-26 stsp goto done;
2353 17ed4618 2019-06-02 stsp err = schedule_for_deletion(pe->path, fileindex, relpath,
2354 17ed4618 2019-06-02 stsp delete_local_mods, status_cb, status_arg, repo);
2355 17ed4618 2019-06-02 stsp free(relpath);
2356 17ed4618 2019-06-02 stsp if (err)
2357 2ec1f75b 2019-03-26 stsp goto done;
2358 2ec1f75b 2019-03-26 stsp }
2359 2ec1f75b 2019-03-26 stsp
2360 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
2361 2ec1f75b 2019-03-26 stsp if (err)
2362 2ec1f75b 2019-03-26 stsp goto done;
2363 2ec1f75b 2019-03-26 stsp done:
2364 2ec1f75b 2019-03-26 stsp if (index) {
2365 2ec1f75b 2019-03-26 stsp if (fclose(index) != 0 && err == NULL)
2366 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2367 2ec1f75b 2019-03-26 stsp }
2368 2ec1f75b 2019-03-26 stsp if (fileindex)
2369 2ec1f75b 2019-03-26 stsp got_fileindex_free(fileindex);
2370 2ec1f75b 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2371 2ec1f75b 2019-03-26 stsp if (unlockerr && err == NULL)
2372 2ec1f75b 2019-03-26 stsp err = unlockerr;
2373 2ec1f75b 2019-03-26 stsp return err;
2374 2ec1f75b 2019-03-26 stsp }
2375 a129376b 2019-03-28 stsp
2376 a129376b 2019-03-28 stsp const struct got_error *
2377 a129376b 2019-03-28 stsp got_worktree_revert(struct got_worktree *worktree,
2378 a129376b 2019-03-28 stsp const char *ondisk_path,
2379 a129376b 2019-03-28 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2380 a129376b 2019-03-28 stsp struct got_repository *repo)
2381 a129376b 2019-03-28 stsp {
2382 a129376b 2019-03-28 stsp struct got_fileindex *fileindex = NULL;
2383 a129376b 2019-03-28 stsp struct got_fileindex_entry *ie = NULL;
2384 9c6338c4 2019-06-02 stsp char *relpath, *fileindex_path = NULL;
2385 a129376b 2019-03-28 stsp char *tree_path = NULL, *parent_path, *te_name;
2386 9c6338c4 2019-06-02 stsp FILE *index = NULL;
2387 a129376b 2019-03-28 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2388 a129376b 2019-03-28 stsp struct got_tree_object *tree = NULL;
2389 a129376b 2019-03-28 stsp struct got_object_id id, *tree_id = NULL;
2390 a129376b 2019-03-28 stsp const struct got_tree_entry *te;
2391 a129376b 2019-03-28 stsp struct got_blob_object *blob = NULL;
2392 a129376b 2019-03-28 stsp unsigned char status;
2393 a129376b 2019-03-28 stsp struct stat sb;
2394 a129376b 2019-03-28 stsp
2395 a129376b 2019-03-28 stsp err = lock_worktree(worktree, LOCK_EX);
2396 a129376b 2019-03-28 stsp if (err)
2397 a129376b 2019-03-28 stsp return err;
2398 a129376b 2019-03-28 stsp
2399 a129376b 2019-03-28 stsp err = got_path_skip_common_ancestor(&relpath,
2400 a129376b 2019-03-28 stsp got_worktree_get_root_path(worktree), ondisk_path);
2401 a129376b 2019-03-28 stsp if (err)
2402 a129376b 2019-03-28 stsp goto done;
2403 a129376b 2019-03-28 stsp
2404 a129376b 2019-03-28 stsp fileindex = got_fileindex_alloc();
2405 a129376b 2019-03-28 stsp if (fileindex == NULL) {
2406 638f9024 2019-05-13 stsp err = got_error_from_errno("got_fileindex_alloc");
2407 a129376b 2019-03-28 stsp goto done;
2408 a129376b 2019-03-28 stsp }
2409 a129376b 2019-03-28 stsp
2410 a129376b 2019-03-28 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2411 a129376b 2019-03-28 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2412 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2413 a129376b 2019-03-28 stsp fileindex_path = NULL;
2414 a129376b 2019-03-28 stsp goto done;
2415 a129376b 2019-03-28 stsp }
2416 a129376b 2019-03-28 stsp
2417 a129376b 2019-03-28 stsp index = fopen(fileindex_path, "rb");
2418 a129376b 2019-03-28 stsp if (index == NULL) {
2419 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", fileindex_path);
2420 a129376b 2019-03-28 stsp goto done;
2421 a129376b 2019-03-28 stsp }
2422 a129376b 2019-03-28 stsp
2423 a129376b 2019-03-28 stsp err = got_fileindex_read(fileindex, index);
2424 a129376b 2019-03-28 stsp if (err)
2425 a129376b 2019-03-28 stsp goto done;
2426 a129376b 2019-03-28 stsp
2427 a129376b 2019-03-28 stsp ie = got_fileindex_entry_get(fileindex, relpath);
2428 a129376b 2019-03-28 stsp if (ie == NULL) {
2429 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_BAD_PATH);
2430 a129376b 2019-03-28 stsp goto done;
2431 a129376b 2019-03-28 stsp }
2432 a129376b 2019-03-28 stsp
2433 a129376b 2019-03-28 stsp /* Construct in-repository path of tree which contains this blob. */
2434 a129376b 2019-03-28 stsp err = got_path_dirname(&parent_path, ie->path);
2435 a129376b 2019-03-28 stsp if (err) {
2436 a129376b 2019-03-28 stsp if (err->code != GOT_ERR_BAD_PATH)
2437 a129376b 2019-03-28 stsp goto done;
2438 a129376b 2019-03-28 stsp parent_path = "/";
2439 a129376b 2019-03-28 stsp }
2440 a129376b 2019-03-28 stsp if (got_path_is_root_dir(worktree->path_prefix)) {
2441 a129376b 2019-03-28 stsp tree_path = strdup(parent_path);
2442 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2443 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2444 a129376b 2019-03-28 stsp goto done;
2445 a129376b 2019-03-28 stsp }
2446 a129376b 2019-03-28 stsp } else {
2447 a129376b 2019-03-28 stsp if (got_path_is_root_dir(parent_path)) {
2448 a129376b 2019-03-28 stsp tree_path = strdup(worktree->path_prefix);
2449 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2450 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2451 a129376b 2019-03-28 stsp goto done;
2452 a129376b 2019-03-28 stsp }
2453 a129376b 2019-03-28 stsp } else {
2454 a129376b 2019-03-28 stsp if (asprintf(&tree_path, "%s/%s",
2455 a129376b 2019-03-28 stsp worktree->path_prefix, parent_path) == -1) {
2456 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2457 a129376b 2019-03-28 stsp goto done;
2458 a129376b 2019-03-28 stsp }
2459 a129376b 2019-03-28 stsp }
2460 a129376b 2019-03-28 stsp }
2461 a129376b 2019-03-28 stsp
2462 a129376b 2019-03-28 stsp err = got_object_id_by_path(&tree_id, repo, worktree->base_commit_id,
2463 a129376b 2019-03-28 stsp tree_path);
2464 a129376b 2019-03-28 stsp if (err)
2465 a129376b 2019-03-28 stsp goto done;
2466 a129376b 2019-03-28 stsp
2467 a129376b 2019-03-28 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
2468 a129376b 2019-03-28 stsp if (err)
2469 a129376b 2019-03-28 stsp goto done;
2470 a129376b 2019-03-28 stsp
2471 a129376b 2019-03-28 stsp te_name = basename(ie->path);
2472 a129376b 2019-03-28 stsp if (te_name == NULL) {
2473 638f9024 2019-05-13 stsp err = got_error_from_errno2("basename", ie->path);
2474 a129376b 2019-03-28 stsp goto done;
2475 a129376b 2019-03-28 stsp }
2476 a129376b 2019-03-28 stsp
2477 a129376b 2019-03-28 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
2478 a129376b 2019-03-28 stsp if (err)
2479 a129376b 2019-03-28 stsp goto done;
2480 a129376b 2019-03-28 stsp
2481 a129376b 2019-03-28 stsp te = got_object_tree_find_entry(tree, te_name);
2482 a129376b 2019-03-28 stsp if (te == NULL && status != GOT_STATUS_ADD) {
2483 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
2484 a129376b 2019-03-28 stsp goto done;
2485 a129376b 2019-03-28 stsp }
2486 a129376b 2019-03-28 stsp
2487 a129376b 2019-03-28 stsp switch (status) {
2488 a129376b 2019-03-28 stsp case GOT_STATUS_ADD:
2489 a129376b 2019-03-28 stsp (*progress_cb)(progress_arg, GOT_STATUS_REVERT, ie->path);
2490 a129376b 2019-03-28 stsp got_fileindex_entry_remove(fileindex, ie);
2491 a129376b 2019-03-28 stsp break;
2492 a129376b 2019-03-28 stsp case GOT_STATUS_DELETE:
2493 a129376b 2019-03-28 stsp case GOT_STATUS_MODIFY:
2494 a129376b 2019-03-28 stsp case GOT_STATUS_CONFLICT:
2495 a129376b 2019-03-28 stsp case GOT_STATUS_MISSING:
2496 a129376b 2019-03-28 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2497 a129376b 2019-03-28 stsp err = got_object_open_as_blob(&blob, repo, &id, 8192);
2498 a129376b 2019-03-28 stsp if (err)
2499 a129376b 2019-03-28 stsp goto done;
2500 a129376b 2019-03-28 stsp err = install_blob(worktree, ondisk_path, ie->path,
2501 a129376b 2019-03-28 stsp te->mode, sb.st_mode, blob, 0, 1, repo, progress_cb,
2502 a129376b 2019-03-28 stsp progress_arg);
2503 a129376b 2019-03-28 stsp if (err)
2504 a129376b 2019-03-28 stsp goto done;
2505 a129376b 2019-03-28 stsp if (status == GOT_STATUS_DELETE) {
2506 a129376b 2019-03-28 stsp err = update_blob_fileindex_entry(worktree,
2507 a129376b 2019-03-28 stsp fileindex, ie, ondisk_path, ie->path, blob, 1);
2508 a129376b 2019-03-28 stsp if (err)
2509 a129376b 2019-03-28 stsp goto done;
2510 a129376b 2019-03-28 stsp }
2511 a129376b 2019-03-28 stsp break;
2512 a129376b 2019-03-28 stsp default:
2513 a129376b 2019-03-28 stsp goto done;
2514 a129376b 2019-03-28 stsp }
2515 a129376b 2019-03-28 stsp
2516 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
2517 a129376b 2019-03-28 stsp if (err)
2518 a129376b 2019-03-28 stsp goto done;
2519 a129376b 2019-03-28 stsp done:
2520 a129376b 2019-03-28 stsp free(relpath);
2521 a129376b 2019-03-28 stsp free(tree_path);
2522 a129376b 2019-03-28 stsp if (blob)
2523 a129376b 2019-03-28 stsp got_object_blob_close(blob);
2524 a129376b 2019-03-28 stsp if (tree)
2525 a129376b 2019-03-28 stsp got_object_tree_close(tree);
2526 a129376b 2019-03-28 stsp free(tree_id);
2527 a129376b 2019-03-28 stsp if (index) {
2528 a129376b 2019-03-28 stsp if (fclose(index) != 0 && err == NULL)
2529 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2530 a129376b 2019-03-28 stsp }
2531 a129376b 2019-03-28 stsp if (fileindex)
2532 a129376b 2019-03-28 stsp got_fileindex_free(fileindex);
2533 a129376b 2019-03-28 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2534 a129376b 2019-03-28 stsp if (unlockerr && err == NULL)
2535 a129376b 2019-03-28 stsp err = unlockerr;
2536 c4296144 2019-05-09 stsp return err;
2537 c4296144 2019-05-09 stsp }
2538 c4296144 2019-05-09 stsp
2539 cf066bf8 2019-05-09 stsp static void
2540 33ad4cbe 2019-05-12 jcs free_commitable(struct got_commitable *ct)
2541 cf066bf8 2019-05-09 stsp {
2542 24519714 2019-05-09 stsp free(ct->path);
2543 44d03001 2019-05-09 stsp free(ct->in_repo_path);
2544 768aea60 2019-05-09 stsp free(ct->ondisk_path);
2545 e75eb4da 2019-05-10 stsp free(ct->blob_id);
2546 c4e12a88 2019-05-13 stsp free(ct->base_blob_id);
2547 b416585c 2019-05-13 stsp free(ct->base_commit_id);
2548 cf066bf8 2019-05-09 stsp free(ct);
2549 cf066bf8 2019-05-09 stsp }
2550 24519714 2019-05-09 stsp
2551 ed175427 2019-05-09 stsp struct collect_commitables_arg {
2552 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths;
2553 24519714 2019-05-09 stsp struct got_repository *repo;
2554 24519714 2019-05-09 stsp struct got_worktree *worktree;
2555 24519714 2019-05-09 stsp };
2556 cf066bf8 2019-05-09 stsp
2557 c4296144 2019-05-09 stsp static const struct got_error *
2558 036813ee 2019-05-09 stsp collect_commitables(void *arg, unsigned char status, const char *relpath,
2559 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
2560 c4296144 2019-05-09 stsp {
2561 ed175427 2019-05-09 stsp struct collect_commitables_arg *a = arg;
2562 c4296144 2019-05-09 stsp const struct got_error *err = NULL;
2563 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
2564 c4296144 2019-05-09 stsp struct got_pathlist_entry *new = NULL;
2565 036813ee 2019-05-09 stsp char *parent_path = NULL, *path = NULL;
2566 768aea60 2019-05-09 stsp struct stat sb;
2567 c4296144 2019-05-09 stsp
2568 c4296144 2019-05-09 stsp if (status == GOT_STATUS_CONFLICT)
2569 c4296144 2019-05-09 stsp return got_error(GOT_ERR_COMMIT_CONFLICT);
2570 c4296144 2019-05-09 stsp
2571 c4296144 2019-05-09 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
2572 c4296144 2019-05-09 stsp status != GOT_STATUS_DELETE)
2573 c4296144 2019-05-09 stsp return NULL;
2574 0b5cc0d6 2019-05-09 stsp
2575 036813ee 2019-05-09 stsp if (asprintf(&path, "/%s", relpath) == -1) {
2576 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2577 036813ee 2019-05-09 stsp goto done;
2578 036813ee 2019-05-09 stsp }
2579 036813ee 2019-05-09 stsp if (strcmp(path, "/") == 0) {
2580 036813ee 2019-05-09 stsp parent_path = strdup("");
2581 69960a46 2019-05-09 stsp if (parent_path == NULL)
2582 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
2583 69960a46 2019-05-09 stsp } else {
2584 69960a46 2019-05-09 stsp err = got_path_dirname(&parent_path, path);
2585 69960a46 2019-05-09 stsp if (err)
2586 69960a46 2019-05-09 stsp return err;
2587 69960a46 2019-05-09 stsp }
2588 c4296144 2019-05-09 stsp
2589 036813ee 2019-05-09 stsp ct = calloc(1, sizeof(*ct));
2590 cf066bf8 2019-05-09 stsp if (ct == NULL) {
2591 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
2592 c4296144 2019-05-09 stsp goto done;
2593 768aea60 2019-05-09 stsp }
2594 768aea60 2019-05-09 stsp
2595 768aea60 2019-05-09 stsp if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
2596 768aea60 2019-05-09 stsp relpath) == -1) {
2597 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2598 768aea60 2019-05-09 stsp goto done;
2599 768aea60 2019-05-09 stsp }
2600 768aea60 2019-05-09 stsp if (status == GOT_STATUS_DELETE) {
2601 768aea60 2019-05-09 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
2602 768aea60 2019-05-09 stsp } else {
2603 768aea60 2019-05-09 stsp if (lstat(ct->ondisk_path, &sb) != 0) {
2604 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", ct->ondisk_path);
2605 768aea60 2019-05-09 stsp goto done;
2606 768aea60 2019-05-09 stsp }
2607 768aea60 2019-05-09 stsp ct->mode = sb.st_mode;
2608 c4296144 2019-05-09 stsp }
2609 c4296144 2019-05-09 stsp
2610 44d03001 2019-05-09 stsp if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
2611 44d03001 2019-05-09 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
2612 44d03001 2019-05-09 stsp relpath) == -1) {
2613 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2614 44d03001 2019-05-09 stsp goto done;
2615 44d03001 2019-05-09 stsp }
2616 44d03001 2019-05-09 stsp
2617 cf066bf8 2019-05-09 stsp ct->status = status;
2618 e75eb4da 2019-05-10 stsp ct->blob_id = NULL; /* will be filled in when blob gets created */
2619 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD) {
2620 016a88dd 2019-05-13 stsp ct->base_blob_id = got_object_id_dup(blob_id);
2621 c4e12a88 2019-05-13 stsp if (ct->base_blob_id == NULL) {
2622 b416585c 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2623 b416585c 2019-05-13 stsp goto done;
2624 b416585c 2019-05-13 stsp }
2625 b416585c 2019-05-13 stsp ct->base_commit_id = got_object_id_dup(commit_id);
2626 b416585c 2019-05-13 stsp if (ct->base_commit_id == NULL) {
2627 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2628 036813ee 2019-05-09 stsp goto done;
2629 036813ee 2019-05-09 stsp }
2630 ca2503ea 2019-05-09 stsp }
2631 24519714 2019-05-09 stsp ct->path = strdup(path);
2632 24519714 2019-05-09 stsp if (ct->path == NULL) {
2633 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2634 24519714 2019-05-09 stsp goto done;
2635 24519714 2019-05-09 stsp }
2636 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
2637 c4296144 2019-05-09 stsp done:
2638 c42269f6 2019-05-09 stsp if (ct && (err || new == NULL))
2639 ed175427 2019-05-09 stsp free_commitable(ct);
2640 24519714 2019-05-09 stsp free(parent_path);
2641 036813ee 2019-05-09 stsp free(path);
2642 a129376b 2019-03-28 stsp return err;
2643 a129376b 2019-03-28 stsp }
2644 c4296144 2019-05-09 stsp
2645 036813ee 2019-05-09 stsp static const struct got_error *write_tree(struct got_object_id **,
2646 036813ee 2019-05-09 stsp struct got_tree_object *, const char *, struct got_pathlist_head *,
2647 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2648 036813ee 2019-05-09 stsp struct got_repository *);
2649 ed175427 2019-05-09 stsp
2650 ed175427 2019-05-09 stsp static const struct got_error *
2651 036813ee 2019-05-09 stsp write_subtree(struct got_object_id **new_subtree_id,
2652 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *parent_path,
2653 afa376bf 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
2654 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2655 afa376bf 2019-05-09 stsp struct got_repository *repo)
2656 ed175427 2019-05-09 stsp {
2657 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
2658 036813ee 2019-05-09 stsp struct got_tree_object *subtree;
2659 036813ee 2019-05-09 stsp char *subpath;
2660 ed175427 2019-05-09 stsp
2661 036813ee 2019-05-09 stsp if (asprintf(&subpath, "%s%s%s", parent_path,
2662 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
2663 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2664 ed175427 2019-05-09 stsp
2665 036813ee 2019-05-09 stsp err = got_object_open_as_tree(&subtree, repo, te->id);
2666 ed175427 2019-05-09 stsp if (err)
2667 ed175427 2019-05-09 stsp return err;
2668 ed175427 2019-05-09 stsp
2669 036813ee 2019-05-09 stsp err = write_tree(new_subtree_id, subtree, subpath, commitable_paths,
2670 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
2671 036813ee 2019-05-09 stsp got_object_tree_close(subtree);
2672 036813ee 2019-05-09 stsp free(subpath);
2673 036813ee 2019-05-09 stsp return err;
2674 036813ee 2019-05-09 stsp }
2675 ed175427 2019-05-09 stsp
2676 036813ee 2019-05-09 stsp static const struct got_error *
2677 33ad4cbe 2019-05-12 jcs match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
2678 036813ee 2019-05-09 stsp {
2679 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2680 036813ee 2019-05-09 stsp char *ct_parent_path = NULL;
2681 ed175427 2019-05-09 stsp
2682 036813ee 2019-05-09 stsp *match = 0;
2683 ed175427 2019-05-09 stsp
2684 036813ee 2019-05-09 stsp if (strchr(ct->path, '/') == NULL) {
2685 0f63689d 2019-05-10 stsp *match = got_path_is_root_dir(path);
2686 0f63689d 2019-05-10 stsp return NULL;
2687 036813ee 2019-05-09 stsp }
2688 0b5cc0d6 2019-05-09 stsp
2689 0f63689d 2019-05-10 stsp err = got_path_dirname(&ct_parent_path, ct->path);
2690 0f63689d 2019-05-10 stsp if (err)
2691 0f63689d 2019-05-10 stsp return err;
2692 036813ee 2019-05-09 stsp *match = (strcmp(path, ct_parent_path) == 0);
2693 036813ee 2019-05-09 stsp free(ct_parent_path);
2694 036813ee 2019-05-09 stsp return err;
2695 036813ee 2019-05-09 stsp }
2696 0b5cc0d6 2019-05-09 stsp
2697 768aea60 2019-05-09 stsp static mode_t
2698 33ad4cbe 2019-05-12 jcs get_ct_file_mode(struct got_commitable *ct)
2699 768aea60 2019-05-09 stsp {
2700 768aea60 2019-05-09 stsp return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
2701 768aea60 2019-05-09 stsp }
2702 768aea60 2019-05-09 stsp
2703 036813ee 2019-05-09 stsp static const struct got_error *
2704 036813ee 2019-05-09 stsp alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
2705 33ad4cbe 2019-05-12 jcs struct got_tree_entry *te, struct got_commitable *ct)
2706 036813ee 2019-05-09 stsp {
2707 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2708 ca2503ea 2019-05-09 stsp
2709 036813ee 2019-05-09 stsp *new_te = NULL;
2710 0b5cc0d6 2019-05-09 stsp
2711 036813ee 2019-05-09 stsp err = got_object_tree_entry_dup(new_te, te);
2712 036813ee 2019-05-09 stsp if (err)
2713 036813ee 2019-05-09 stsp goto done;
2714 0b5cc0d6 2019-05-09 stsp
2715 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2716 036813ee 2019-05-09 stsp
2717 036813ee 2019-05-09 stsp free((*new_te)->id);
2718 e75eb4da 2019-05-10 stsp (*new_te)->id = got_object_id_dup(ct->blob_id);
2719 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2720 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2721 036813ee 2019-05-09 stsp goto done;
2722 036813ee 2019-05-09 stsp }
2723 036813ee 2019-05-09 stsp done:
2724 036813ee 2019-05-09 stsp if (err && *new_te) {
2725 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2726 036813ee 2019-05-09 stsp *new_te = NULL;
2727 036813ee 2019-05-09 stsp }
2728 036813ee 2019-05-09 stsp return err;
2729 036813ee 2019-05-09 stsp }
2730 036813ee 2019-05-09 stsp
2731 036813ee 2019-05-09 stsp static const struct got_error *
2732 036813ee 2019-05-09 stsp alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
2733 33ad4cbe 2019-05-12 jcs struct got_commitable *ct)
2734 036813ee 2019-05-09 stsp {
2735 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2736 036813ee 2019-05-09 stsp char *ct_name;
2737 036813ee 2019-05-09 stsp
2738 036813ee 2019-05-09 stsp *new_te = NULL;
2739 036813ee 2019-05-09 stsp
2740 4229330b 2019-05-10 stsp *new_te = calloc(1, sizeof(**new_te));
2741 036813ee 2019-05-09 stsp if (*new_te == NULL)
2742 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
2743 036813ee 2019-05-09 stsp
2744 036813ee 2019-05-09 stsp ct_name = basename(ct->path);
2745 036813ee 2019-05-09 stsp if (ct_name == NULL) {
2746 638f9024 2019-05-13 stsp err = got_error_from_errno2("basename", ct->path);
2747 036813ee 2019-05-09 stsp goto done;
2748 036813ee 2019-05-09 stsp }
2749 036813ee 2019-05-09 stsp (*new_te)->name = strdup(ct_name);
2750 036813ee 2019-05-09 stsp if ((*new_te)->name == NULL) {
2751 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2752 036813ee 2019-05-09 stsp goto done;
2753 036813ee 2019-05-09 stsp }
2754 036813ee 2019-05-09 stsp
2755 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2756 036813ee 2019-05-09 stsp
2757 e75eb4da 2019-05-10 stsp (*new_te)->id = got_object_id_dup(ct->blob_id);
2758 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2759 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2760 036813ee 2019-05-09 stsp goto done;
2761 036813ee 2019-05-09 stsp }
2762 036813ee 2019-05-09 stsp done:
2763 036813ee 2019-05-09 stsp if (err && *new_te) {
2764 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2765 036813ee 2019-05-09 stsp *new_te = NULL;
2766 036813ee 2019-05-09 stsp }
2767 036813ee 2019-05-09 stsp return err;
2768 036813ee 2019-05-09 stsp }
2769 036813ee 2019-05-09 stsp
2770 036813ee 2019-05-09 stsp static const struct got_error *
2771 036813ee 2019-05-09 stsp insert_tree_entry(struct got_tree_entry *new_te,
2772 036813ee 2019-05-09 stsp struct got_pathlist_head *paths)
2773 036813ee 2019-05-09 stsp {
2774 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2775 036813ee 2019-05-09 stsp struct got_pathlist_entry *new_pe;
2776 036813ee 2019-05-09 stsp
2777 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
2778 036813ee 2019-05-09 stsp if (err)
2779 036813ee 2019-05-09 stsp return err;
2780 036813ee 2019-05-09 stsp if (new_pe == NULL)
2781 036813ee 2019-05-09 stsp return got_error(GOT_ERR_TREE_DUP_ENTRY);
2782 036813ee 2019-05-09 stsp return NULL;
2783 afa376bf 2019-05-09 stsp }
2784 afa376bf 2019-05-09 stsp
2785 afa376bf 2019-05-09 stsp static const struct got_error *
2786 33ad4cbe 2019-05-12 jcs report_ct_status(struct got_commitable *ct,
2787 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg)
2788 afa376bf 2019-05-09 stsp {
2789 afa376bf 2019-05-09 stsp const char *ct_path = ct->path;
2790 afa376bf 2019-05-09 stsp while (ct_path[0] == '/')
2791 afa376bf 2019-05-09 stsp ct_path++;
2792 016a88dd 2019-05-13 stsp return (*status_cb)(status_arg, ct->status, ct_path, ct->blob_id, NULL);
2793 036813ee 2019-05-09 stsp }
2794 036813ee 2019-05-09 stsp
2795 036813ee 2019-05-09 stsp static const struct got_error *
2796 44d03001 2019-05-09 stsp match_modified_subtree(int *modified, struct got_tree_entry *te,
2797 44d03001 2019-05-09 stsp const char *base_tree_path, struct got_pathlist_head *commitable_paths)
2798 44d03001 2019-05-09 stsp {
2799 44d03001 2019-05-09 stsp const struct got_error *err = NULL;
2800 44d03001 2019-05-09 stsp struct got_pathlist_entry *pe;
2801 44d03001 2019-05-09 stsp char *te_path;
2802 44d03001 2019-05-09 stsp
2803 44d03001 2019-05-09 stsp *modified = 0;
2804 44d03001 2019-05-09 stsp
2805 44d03001 2019-05-09 stsp if (asprintf(&te_path, "%s%s%s", base_tree_path,
2806 44d03001 2019-05-09 stsp got_path_is_root_dir(base_tree_path) ? "" : "/",
2807 44d03001 2019-05-09 stsp te->name) == -1)
2808 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2809 44d03001 2019-05-09 stsp
2810 44d03001 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2811 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2812 44d03001 2019-05-09 stsp *modified = got_path_is_child(ct->in_repo_path, te_path,
2813 44d03001 2019-05-09 stsp strlen(te_path));
2814 44d03001 2019-05-09 stsp if (*modified)
2815 44d03001 2019-05-09 stsp break;
2816 44d03001 2019-05-09 stsp }
2817 44d03001 2019-05-09 stsp
2818 44d03001 2019-05-09 stsp free(te_path);
2819 44d03001 2019-05-09 stsp return err;
2820 44d03001 2019-05-09 stsp }
2821 44d03001 2019-05-09 stsp
2822 44d03001 2019-05-09 stsp static const struct got_error *
2823 33ad4cbe 2019-05-12 jcs match_deleted_or_modified_ct(struct got_commitable **ctp,
2824 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *base_tree_path,
2825 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths)
2826 036813ee 2019-05-09 stsp {
2827 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2828 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
2829 036813ee 2019-05-09 stsp
2830 036813ee 2019-05-09 stsp *ctp = NULL;
2831 036813ee 2019-05-09 stsp
2832 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2833 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2834 036813ee 2019-05-09 stsp char *ct_name = NULL;
2835 036813ee 2019-05-09 stsp int path_matches;
2836 036813ee 2019-05-09 stsp
2837 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_MODIFY &&
2838 036813ee 2019-05-09 stsp ct->status != GOT_STATUS_DELETE)
2839 036813ee 2019-05-09 stsp continue;
2840 036813ee 2019-05-09 stsp
2841 c4e12a88 2019-05-13 stsp if (got_object_id_cmp(ct->base_blob_id, te->id) != 0)
2842 036813ee 2019-05-09 stsp continue;
2843 036813ee 2019-05-09 stsp
2844 036813ee 2019-05-09 stsp err = match_ct_parent_path(&path_matches, ct, base_tree_path);
2845 036813ee 2019-05-09 stsp if (err)
2846 036813ee 2019-05-09 stsp return err;
2847 036813ee 2019-05-09 stsp if (!path_matches)
2848 036813ee 2019-05-09 stsp continue;
2849 036813ee 2019-05-09 stsp
2850 036813ee 2019-05-09 stsp ct_name = basename(pe->path);
2851 036813ee 2019-05-09 stsp if (ct_name == NULL)
2852 638f9024 2019-05-13 stsp return got_error_from_errno2("basename", pe->path);
2853 036813ee 2019-05-09 stsp
2854 036813ee 2019-05-09 stsp if (strcmp(te->name, ct_name) != 0)
2855 036813ee 2019-05-09 stsp continue;
2856 036813ee 2019-05-09 stsp
2857 036813ee 2019-05-09 stsp *ctp = ct;
2858 036813ee 2019-05-09 stsp break;
2859 036813ee 2019-05-09 stsp }
2860 036813ee 2019-05-09 stsp
2861 036813ee 2019-05-09 stsp return err;
2862 036813ee 2019-05-09 stsp }
2863 036813ee 2019-05-09 stsp
2864 036813ee 2019-05-09 stsp static const struct got_error *
2865 036813ee 2019-05-09 stsp write_tree(struct got_object_id **new_tree_id,
2866 036813ee 2019-05-09 stsp struct got_tree_object *base_tree, const char *path_base_tree,
2867 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
2868 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2869 036813ee 2019-05-09 stsp struct got_repository *repo)
2870 036813ee 2019-05-09 stsp {
2871 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2872 036813ee 2019-05-09 stsp const struct got_tree_entries *base_entries = NULL;
2873 036813ee 2019-05-09 stsp struct got_pathlist_head paths;
2874 036813ee 2019-05-09 stsp struct got_tree_entries new_tree_entries;
2875 2f51b5b3 2019-05-09 stsp struct got_tree_entry *te, *new_te = NULL;
2876 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
2877 036813ee 2019-05-09 stsp
2878 036813ee 2019-05-09 stsp TAILQ_INIT(&paths);
2879 036813ee 2019-05-09 stsp new_tree_entries.nentries = 0;
2880 036813ee 2019-05-09 stsp SIMPLEQ_INIT(&new_tree_entries.head);
2881 036813ee 2019-05-09 stsp
2882 036813ee 2019-05-09 stsp /* Insert, and recurse into, newly added entries first. */
2883 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2884 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2885 2f51b5b3 2019-05-09 stsp char *child_path = NULL, *slash;
2886 036813ee 2019-05-09 stsp
2887 a3df2849 2019-05-20 stsp if (ct->status != GOT_STATUS_ADD ||
2888 a3df2849 2019-05-20 stsp (ct->flags & GOT_COMMITABLE_ADDED))
2889 036813ee 2019-05-09 stsp continue;
2890 036813ee 2019-05-09 stsp
2891 036813ee 2019-05-09 stsp if (!got_path_is_child(pe->path, path_base_tree,
2892 2f51b5b3 2019-05-09 stsp strlen(path_base_tree)))
2893 036813ee 2019-05-09 stsp continue;
2894 036813ee 2019-05-09 stsp
2895 036813ee 2019-05-09 stsp err = got_path_skip_common_ancestor(&child_path, path_base_tree,
2896 036813ee 2019-05-09 stsp pe->path);
2897 036813ee 2019-05-09 stsp if (err)
2898 036813ee 2019-05-09 stsp goto done;
2899 036813ee 2019-05-09 stsp
2900 2f51b5b3 2019-05-09 stsp slash = strchr(child_path, '/');
2901 2f51b5b3 2019-05-09 stsp if (slash == NULL) {
2902 036813ee 2019-05-09 stsp err = alloc_added_blob_tree_entry(&new_te, ct);
2903 036813ee 2019-05-09 stsp if (err)
2904 036813ee 2019-05-09 stsp goto done;
2905 afa376bf 2019-05-09 stsp err = report_ct_status(ct, status_cb, status_arg);
2906 afa376bf 2019-05-09 stsp if (err)
2907 afa376bf 2019-05-09 stsp goto done;
2908 a3df2849 2019-05-20 stsp ct->flags |= GOT_COMMITABLE_ADDED;
2909 036813ee 2019-05-09 stsp } else {
2910 2f51b5b3 2019-05-09 stsp char *subtree_path;
2911 036813ee 2019-05-09 stsp
2912 2f51b5b3 2019-05-09 stsp *slash = '\0'; /* trim trailing path components */
2913 baa7dcfa 2019-05-09 stsp if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
2914 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(path_base_tree) ? "" : "/",
2915 2f51b5b3 2019-05-09 stsp child_path) == -1) {
2916 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2917 2f51b5b3 2019-05-09 stsp goto done;
2918 baa7dcfa 2019-05-09 stsp }
2919 baa7dcfa 2019-05-09 stsp
2920 9ba0479c 2019-05-10 stsp new_te = calloc(1, sizeof(*new_te));
2921 9ba0479c 2019-05-10 stsp new_te->mode = S_IFDIR;
2922 9ba0479c 2019-05-10 stsp new_te->name = strdup(child_path);
2923 9ba0479c 2019-05-10 stsp if (new_te->name == NULL) {
2924 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2925 9ba0479c 2019-05-10 stsp got_object_tree_entry_close(new_te);
2926 9ba0479c 2019-05-10 stsp new_te = NULL;
2927 9ba0479c 2019-05-10 stsp goto done;
2928 9ba0479c 2019-05-10 stsp }
2929 baa7dcfa 2019-05-09 stsp err = write_tree(&new_te->id, NULL, subtree_path,
2930 afa376bf 2019-05-09 stsp commitable_paths, status_cb, status_arg, repo);
2931 2f51b5b3 2019-05-09 stsp free(subtree_path);
2932 9ba0479c 2019-05-10 stsp if (err) {
2933 9ba0479c 2019-05-10 stsp got_object_tree_entry_close(new_te);
2934 9ba0479c 2019-05-10 stsp new_te = NULL;
2935 036813ee 2019-05-09 stsp goto done;
2936 9ba0479c 2019-05-10 stsp }
2937 ed175427 2019-05-09 stsp }
2938 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2939 2f51b5b3 2019-05-09 stsp if (err)
2940 2f51b5b3 2019-05-09 stsp goto done;
2941 2f51b5b3 2019-05-09 stsp }
2942 2f51b5b3 2019-05-09 stsp
2943 2f51b5b3 2019-05-09 stsp if (base_tree) {
2944 2f51b5b3 2019-05-09 stsp /* Handle modified and deleted entries. */
2945 2f51b5b3 2019-05-09 stsp base_entries = got_object_tree_get_entries(base_tree);
2946 2f51b5b3 2019-05-09 stsp SIMPLEQ_FOREACH(te, &base_entries->head, entry) {
2947 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
2948 2f51b5b3 2019-05-09 stsp
2949 2f51b5b3 2019-05-09 stsp if (S_ISDIR(te->mode)) {
2950 44d03001 2019-05-09 stsp int modified;
2951 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
2952 036813ee 2019-05-09 stsp if (err)
2953 036813ee 2019-05-09 stsp goto done;
2954 44d03001 2019-05-09 stsp err = match_modified_subtree(&modified, te,
2955 44d03001 2019-05-09 stsp path_base_tree, commitable_paths);
2956 2f51b5b3 2019-05-09 stsp if (err)
2957 2f51b5b3 2019-05-09 stsp goto done;
2958 44d03001 2019-05-09 stsp /* Avoid recursion into unmodified subtrees. */
2959 44d03001 2019-05-09 stsp if (modified) {
2960 44d03001 2019-05-09 stsp free(new_te->id);
2961 44d03001 2019-05-09 stsp err = write_subtree(&new_te->id, te,
2962 44d03001 2019-05-09 stsp path_base_tree, commitable_paths,
2963 44d03001 2019-05-09 stsp status_cb, status_arg, repo);
2964 44d03001 2019-05-09 stsp if (err)
2965 44d03001 2019-05-09 stsp goto done;
2966 44d03001 2019-05-09 stsp }
2967 036813ee 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2968 036813ee 2019-05-09 stsp if (err)
2969 036813ee 2019-05-09 stsp goto done;
2970 2f51b5b3 2019-05-09 stsp continue;
2971 036813ee 2019-05-09 stsp }
2972 2f51b5b3 2019-05-09 stsp
2973 2f51b5b3 2019-05-09 stsp err = match_deleted_or_modified_ct(&ct, te,
2974 2f51b5b3 2019-05-09 stsp path_base_tree, commitable_paths);
2975 2f51b5b3 2019-05-09 stsp if (ct) {
2976 2f51b5b3 2019-05-09 stsp /* NB: Deleted entries get dropped here. */
2977 2f51b5b3 2019-05-09 stsp if (ct->status == GOT_STATUS_MODIFY) {
2978 2f51b5b3 2019-05-09 stsp err = alloc_modified_blob_tree_entry(
2979 2f51b5b3 2019-05-09 stsp &new_te, te, ct);
2980 2f51b5b3 2019-05-09 stsp if (err)
2981 2f51b5b3 2019-05-09 stsp goto done;
2982 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2983 2f51b5b3 2019-05-09 stsp if (err)
2984 2f51b5b3 2019-05-09 stsp goto done;
2985 2f51b5b3 2019-05-09 stsp }
2986 b416585c 2019-05-13 stsp err = report_ct_status(ct, status_cb,
2987 b416585c 2019-05-13 stsp status_arg);
2988 afa376bf 2019-05-09 stsp if (err)
2989 afa376bf 2019-05-09 stsp goto done;
2990 2f51b5b3 2019-05-09 stsp } else {
2991 2f51b5b3 2019-05-09 stsp /* Entry is unchanged; just copy it. */
2992 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
2993 2f51b5b3 2019-05-09 stsp if (err)
2994 2f51b5b3 2019-05-09 stsp goto done;
2995 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2996 2f51b5b3 2019-05-09 stsp if (err)
2997 2f51b5b3 2019-05-09 stsp goto done;
2998 2f51b5b3 2019-05-09 stsp }
2999 ca2503ea 2019-05-09 stsp }
3000 ed175427 2019-05-09 stsp }
3001 0b5cc0d6 2019-05-09 stsp
3002 036813ee 2019-05-09 stsp /* Write new list of entries; deleted entries have been dropped. */
3003 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &paths, entry) {
3004 0b5cc0d6 2019-05-09 stsp struct got_tree_entry *te = pe->data;
3005 0b5cc0d6 2019-05-09 stsp new_tree_entries.nentries++;
3006 0b5cc0d6 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&new_tree_entries.head, te, entry);
3007 0b5cc0d6 2019-05-09 stsp }
3008 036813ee 2019-05-09 stsp err = got_object_tree_create(new_tree_id, &new_tree_entries, repo);
3009 ed175427 2019-05-09 stsp done:
3010 ca2503ea 2019-05-09 stsp got_object_tree_entries_close(&new_tree_entries);
3011 036813ee 2019-05-09 stsp got_pathlist_free(&paths);
3012 ed175427 2019-05-09 stsp return err;
3013 ed175427 2019-05-09 stsp }
3014 ed175427 2019-05-09 stsp
3015 ebf99748 2019-05-09 stsp static const struct got_error *
3016 ebf99748 2019-05-09 stsp update_fileindex_after_commit(struct got_pathlist_head *commitable_paths,
3017 ebf99748 2019-05-09 stsp struct got_object_id *new_base_commit_id, struct got_worktree *worktree)
3018 ebf99748 2019-05-09 stsp {
3019 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
3020 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
3021 ebf99748 2019-05-09 stsp struct got_fileindex *fileindex = NULL;
3022 ebf99748 2019-05-09 stsp struct got_pathlist_entry *pe;
3023 ebf99748 2019-05-09 stsp
3024 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3025 ebf99748 2019-05-09 stsp if (err)
3026 ebf99748 2019-05-09 stsp return err;
3027 ebf99748 2019-05-09 stsp
3028 ebf99748 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
3029 ebf99748 2019-05-09 stsp struct got_fileindex_entry *ie;
3030 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3031 ebf99748 2019-05-09 stsp
3032 ebf99748 2019-05-09 stsp ie = got_fileindex_entry_get(fileindex, pe->path);
3033 ebf99748 2019-05-09 stsp if (ie) {
3034 ebf99748 2019-05-09 stsp if (ct->status == GOT_STATUS_DELETE) {
3035 ebf99748 2019-05-09 stsp got_fileindex_entry_remove(fileindex, ie);
3036 ebf99748 2019-05-09 stsp got_fileindex_entry_free(ie);
3037 ebf99748 2019-05-09 stsp } else
3038 ebf99748 2019-05-09 stsp err = got_fileindex_entry_update(ie,
3039 e75eb4da 2019-05-10 stsp ct->ondisk_path, ct->blob_id->sha1,
3040 ebf99748 2019-05-09 stsp new_base_commit_id->sha1, 1);
3041 ebf99748 2019-05-09 stsp } else {
3042 ebf99748 2019-05-09 stsp err = got_fileindex_entry_alloc(&ie,
3043 e75eb4da 2019-05-10 stsp ct->ondisk_path, pe->path, ct->blob_id->sha1,
3044 ebf99748 2019-05-09 stsp new_base_commit_id->sha1);
3045 ebf99748 2019-05-09 stsp if (err)
3046 ebf99748 2019-05-09 stsp goto done;
3047 ebf99748 2019-05-09 stsp err = got_fileindex_entry_add(fileindex, ie);
3048 ebf99748 2019-05-09 stsp if (err)
3049 ebf99748 2019-05-09 stsp goto done;
3050 ebf99748 2019-05-09 stsp }
3051 ebf99748 2019-05-09 stsp }
3052 ebf99748 2019-05-09 stsp
3053 9c6338c4 2019-06-02 stsp err = sync_fileindex(fileindex, fileindex_path);
3054 ebf99748 2019-05-09 stsp done:
3055 ebf99748 2019-05-09 stsp free(fileindex_path);
3056 ebf99748 2019-05-09 stsp got_fileindex_free(fileindex);
3057 d56d26ce 2019-05-10 stsp return err;
3058 d56d26ce 2019-05-10 stsp }
3059 d56d26ce 2019-05-10 stsp
3060 d56d26ce 2019-05-10 stsp static const struct got_error *
3061 33ad4cbe 2019-05-12 jcs check_ct_out_of_date(struct got_commitable *ct, struct got_repository *repo,
3062 d56d26ce 2019-05-10 stsp struct got_object_id *head_commit_id)
3063 d56d26ce 2019-05-10 stsp {
3064 d56d26ce 2019-05-10 stsp const struct got_error *err = NULL;
3065 d56d26ce 2019-05-10 stsp struct got_object_id *id_in_head;
3066 d56d26ce 2019-05-10 stsp
3067 1251a9e5 2019-05-10 stsp /*
3068 b416585c 2019-05-13 stsp * Require that modified/deleted files are based on the branch head.
3069 b416585c 2019-05-13 stsp * This requirement could be relaxed to force less update operations
3070 b416585c 2019-05-13 stsp * on users but, for now, we want to play it safe and see how it goes.
3071 b416585c 2019-05-13 stsp *
3072 b416585c 2019-05-13 stsp * If this check is relaxed, it must still ensure that no modifications
3073 b416585c 2019-05-13 stsp * were made to files *and their parents* in commits between the file's
3074 b416585c 2019-05-13 stsp * base commit and the branch head. Otherwise, tree conflicts will not
3075 b416585c 2019-05-13 stsp * be detected reliably.
3076 b416585c 2019-05-13 stsp */
3077 b416585c 2019-05-13 stsp if (ct->status != GOT_STATUS_ADD) {
3078 b416585c 2019-05-13 stsp if (got_object_id_cmp(ct->base_commit_id, head_commit_id) != 0)
3079 b416585c 2019-05-13 stsp return got_error(GOT_ERR_COMMIT_OUT_OF_DATE);
3080 b416585c 2019-05-13 stsp return NULL;
3081 d56d26ce 2019-05-10 stsp }
3082 d56d26ce 2019-05-10 stsp
3083 b416585c 2019-05-13 stsp /* Require that added files don't exist in the branch head. */
3084 b416585c 2019-05-13 stsp err = got_object_id_by_path(&id_in_head, repo, head_commit_id,
3085 b416585c 2019-05-13 stsp ct->in_repo_path);
3086 b416585c 2019-05-13 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
3087 b416585c 2019-05-13 stsp return err;
3088 b416585c 2019-05-13 stsp if (id_in_head) {
3089 b416585c 2019-05-13 stsp free(id_in_head);
3090 b416585c 2019-05-13 stsp return got_error(GOT_ERR_COMMIT_OUT_OF_DATE);
3091 b416585c 2019-05-13 stsp }
3092 d56d26ce 2019-05-10 stsp
3093 d56d26ce 2019-05-10 stsp free(id_in_head);
3094 b416585c 2019-05-13 stsp return NULL;
3095 ebf99748 2019-05-09 stsp }
3096 ebf99748 2019-05-09 stsp
3097 c4296144 2019-05-09 stsp const struct got_error *
3098 c4296144 2019-05-09 stsp got_worktree_commit(struct got_object_id **new_commit_id,
3099 c4296144 2019-05-09 stsp struct got_worktree *worktree, const char *ondisk_path,
3100 33ad4cbe 2019-05-12 jcs const char *author, const char *committer,
3101 33ad4cbe 2019-05-12 jcs got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
3102 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
3103 afa376bf 2019-05-09 stsp struct got_repository *repo)
3104 c4296144 2019-05-09 stsp {
3105 c4296144 2019-05-09 stsp const struct got_error *err = NULL, *unlockerr = NULL;
3106 ed175427 2019-05-09 stsp struct collect_commitables_arg cc_arg;
3107 036813ee 2019-05-09 stsp struct got_pathlist_head commitable_paths;
3108 c4296144 2019-05-09 stsp struct got_pathlist_entry *pe;
3109 bc70eb79 2019-05-09 stsp char *relpath = NULL;
3110 bc70eb79 2019-05-09 stsp const char *head_ref_name = NULL;
3111 36a38700 2019-05-10 stsp struct got_reference *head_ref = NULL;
3112 588edf97 2019-05-10 stsp struct got_commit_object *head_commit = NULL;
3113 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id = NULL;
3114 09f5bd90 2019-05-09 stsp struct got_reference *head_ref2 = NULL;
3115 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id2 = NULL;
3116 588edf97 2019-05-10 stsp struct got_tree_object *head_tree = NULL;
3117 036813ee 2019-05-09 stsp struct got_object_id *new_tree_id = NULL;
3118 de18fc63 2019-05-09 stsp struct got_object_id_queue parent_ids;
3119 de18fc63 2019-05-09 stsp struct got_object_qid *pid = NULL;
3120 33ad4cbe 2019-05-12 jcs char *logmsg = NULL;
3121 c4296144 2019-05-09 stsp
3122 c4296144 2019-05-09 stsp *new_commit_id = NULL;
3123 c4296144 2019-05-09 stsp
3124 036813ee 2019-05-09 stsp TAILQ_INIT(&commitable_paths);
3125 de18fc63 2019-05-09 stsp SIMPLEQ_INIT(&parent_ids);
3126 c4296144 2019-05-09 stsp
3127 c4296144 2019-05-09 stsp if (ondisk_path) {
3128 c4296144 2019-05-09 stsp err = got_path_skip_common_ancestor(&relpath,
3129 c4296144 2019-05-09 stsp worktree->root_path, ondisk_path);
3130 c4296144 2019-05-09 stsp if (err)
3131 c4296144 2019-05-09 stsp return err;
3132 c4296144 2019-05-09 stsp }
3133 c4296144 2019-05-09 stsp
3134 c4296144 2019-05-09 stsp err = lock_worktree(worktree, LOCK_EX);
3135 c4296144 2019-05-09 stsp if (err)
3136 c4296144 2019-05-09 stsp goto done;
3137 675c7539 2019-05-09 stsp
3138 2f17228e 2019-05-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
3139 36a38700 2019-05-10 stsp if (err)
3140 36a38700 2019-05-10 stsp goto done;
3141 36a38700 2019-05-10 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
3142 09f5bd90 2019-05-09 stsp if (err)
3143 09f5bd90 2019-05-09 stsp goto done;
3144 09f5bd90 2019-05-09 stsp
3145 036813ee 2019-05-09 stsp cc_arg.commitable_paths = &commitable_paths;
3146 24519714 2019-05-09 stsp cc_arg.worktree = worktree;
3147 24519714 2019-05-09 stsp cc_arg.repo = repo;
3148 675c7539 2019-05-09 stsp err = got_worktree_status(worktree, relpath ? relpath : "",
3149 ed175427 2019-05-09 stsp repo, collect_commitables, &cc_arg, NULL, NULL);
3150 675c7539 2019-05-09 stsp if (err)
3151 675c7539 2019-05-09 stsp goto done;
3152 675c7539 2019-05-09 stsp
3153 33ad4cbe 2019-05-12 jcs if (TAILQ_EMPTY(&commitable_paths)) {
3154 33ad4cbe 2019-05-12 jcs err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
3155 33ad4cbe 2019-05-12 jcs goto done;
3156 33ad4cbe 2019-05-12 jcs }
3157 33ad4cbe 2019-05-12 jcs
3158 588edf97 2019-05-10 stsp err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
3159 588edf97 2019-05-10 stsp if (err)
3160 588edf97 2019-05-10 stsp goto done;
3161 588edf97 2019-05-10 stsp
3162 819f385b 2019-05-10 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3163 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3164 d56d26ce 2019-05-10 stsp err = check_ct_out_of_date(ct, repo, head_commit_id);
3165 d56d26ce 2019-05-10 stsp if (err)
3166 819f385b 2019-05-10 stsp goto done;
3167 819f385b 2019-05-10 stsp }
3168 de18fc63 2019-05-09 stsp
3169 588edf97 2019-05-10 stsp err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
3170 588edf97 2019-05-10 stsp if (err)
3171 588edf97 2019-05-10 stsp goto done;
3172 588edf97 2019-05-10 stsp
3173 33ad4cbe 2019-05-12 jcs if (commit_msg_cb != NULL) {
3174 33ad4cbe 2019-05-12 jcs err = commit_msg_cb(&commitable_paths, &logmsg, commit_arg);
3175 33ad4cbe 2019-05-12 jcs if (err)
3176 33ad4cbe 2019-05-12 jcs goto done;
3177 33ad4cbe 2019-05-12 jcs }
3178 c4296144 2019-05-09 stsp
3179 33ad4cbe 2019-05-12 jcs if (logmsg == NULL || strlen(logmsg) == 0) {
3180 33ad4cbe 2019-05-12 jcs err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
3181 33ad4cbe 2019-05-12 jcs goto done;
3182 33ad4cbe 2019-05-12 jcs }
3183 33ad4cbe 2019-05-12 jcs
3184 cf066bf8 2019-05-09 stsp /* Create blobs from added and modified files and record their IDs. */
3185 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3186 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3187 cf066bf8 2019-05-09 stsp char *ondisk_path;
3188 cf066bf8 2019-05-09 stsp
3189 cf066bf8 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD &&
3190 cf066bf8 2019-05-09 stsp ct->status != GOT_STATUS_MODIFY)
3191 cf066bf8 2019-05-09 stsp continue;
3192 cf066bf8 2019-05-09 stsp
3193 cf066bf8 2019-05-09 stsp if (asprintf(&ondisk_path, "%s/%s",
3194 cf066bf8 2019-05-09 stsp worktree->root_path, pe->path) == -1) {
3195 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3196 cf066bf8 2019-05-09 stsp goto done;
3197 cf066bf8 2019-05-09 stsp }
3198 e75eb4da 2019-05-10 stsp err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
3199 a7055788 2019-05-09 stsp free(ondisk_path);
3200 cf066bf8 2019-05-09 stsp if (err)
3201 cf066bf8 2019-05-09 stsp goto done;
3202 cf066bf8 2019-05-09 stsp }
3203 036813ee 2019-05-09 stsp
3204 036813ee 2019-05-09 stsp /* Recursively write new tree objects. */
3205 588edf97 2019-05-10 stsp err = write_tree(&new_tree_id, head_tree, "/", &commitable_paths,
3206 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
3207 036813ee 2019-05-09 stsp if (err)
3208 036813ee 2019-05-09 stsp goto done;
3209 036813ee 2019-05-09 stsp
3210 de18fc63 2019-05-09 stsp err = got_object_qid_alloc(&pid, worktree->base_commit_id);
3211 de18fc63 2019-05-09 stsp if (err)
3212 de18fc63 2019-05-09 stsp goto done;
3213 de18fc63 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&parent_ids, pid, entry);
3214 de18fc63 2019-05-09 stsp err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
3215 de18fc63 2019-05-09 stsp 1, author, time(NULL), committer, time(NULL), logmsg, repo);
3216 de18fc63 2019-05-09 stsp got_object_qid_free(pid);
3217 33ad4cbe 2019-05-12 jcs if (logmsg != NULL)
3218 33ad4cbe 2019-05-12 jcs free(logmsg);
3219 9d40349a 2019-05-09 stsp if (err)
3220 9d40349a 2019-05-09 stsp goto done;
3221 9d40349a 2019-05-09 stsp
3222 09f5bd90 2019-05-09 stsp /* Check if a concurrent commit to our branch has occurred. */
3223 bc70eb79 2019-05-09 stsp head_ref_name = got_worktree_get_head_ref_name(worktree);
3224 bc70eb79 2019-05-09 stsp if (head_ref_name == NULL) {
3225 638f9024 2019-05-13 stsp err = got_error_from_errno("got_worktree_get_head_ref_name");
3226 09f5bd90 2019-05-09 stsp goto done;
3227 09f5bd90 2019-05-09 stsp }
3228 2f17228e 2019-05-12 stsp /* Lock the reference here to prevent concurrent modification. */
3229 2f17228e 2019-05-12 stsp err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
3230 09f5bd90 2019-05-09 stsp if (err)
3231 09f5bd90 2019-05-09 stsp goto done;
3232 09f5bd90 2019-05-09 stsp err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
3233 ebf99748 2019-05-09 stsp if (err)
3234 ebf99748 2019-05-09 stsp goto done;
3235 09f5bd90 2019-05-09 stsp if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
3236 09f5bd90 2019-05-09 stsp err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
3237 09f5bd90 2019-05-09 stsp goto done;
3238 09f5bd90 2019-05-09 stsp }
3239 09f5bd90 2019-05-09 stsp /* Update branch head in repository. */
3240 2f17228e 2019-05-12 stsp err = got_ref_change_ref(head_ref2, *new_commit_id);
3241 f2c16586 2019-05-09 stsp if (err)
3242 f2c16586 2019-05-09 stsp goto done;
3243 2f17228e 2019-05-12 stsp err = got_ref_write(head_ref2, repo);
3244 f2c16586 2019-05-09 stsp if (err)
3245 f2c16586 2019-05-09 stsp goto done;
3246 f2c16586 2019-05-09 stsp
3247 09f5bd90 2019-05-09 stsp err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
3248 09f5bd90 2019-05-09 stsp if (err)
3249 09f5bd90 2019-05-09 stsp goto done;
3250 09f5bd90 2019-05-09 stsp
3251 ebf99748 2019-05-09 stsp err = ref_base_commit(worktree, repo);
3252 ebf99748 2019-05-09 stsp if (err)
3253 ebf99748 2019-05-09 stsp goto done;
3254 ebf99748 2019-05-09 stsp
3255 ebf99748 2019-05-09 stsp err = update_fileindex_after_commit(&commitable_paths,
3256 ebf99748 2019-05-09 stsp *new_commit_id, worktree);
3257 ebf99748 2019-05-09 stsp if (err)
3258 ebf99748 2019-05-09 stsp goto done;
3259 c4296144 2019-05-09 stsp done:
3260 c4296144 2019-05-09 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
3261 c4296144 2019-05-09 stsp if (unlockerr && err == NULL)
3262 c4296144 2019-05-09 stsp err = unlockerr;
3263 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
3264 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
3265 ed175427 2019-05-09 stsp free_commitable(ct);
3266 cf066bf8 2019-05-09 stsp }
3267 036813ee 2019-05-09 stsp got_pathlist_free(&commitable_paths);
3268 588edf97 2019-05-10 stsp if (head_tree)
3269 588edf97 2019-05-10 stsp got_object_tree_close(head_tree);
3270 588edf97 2019-05-10 stsp if (head_commit)
3271 588edf97 2019-05-10 stsp got_object_commit_close(head_commit);
3272 c4296144 2019-05-09 stsp free(relpath);
3273 09f5bd90 2019-05-09 stsp free(head_commit_id);
3274 09f5bd90 2019-05-09 stsp free(head_commit_id2);
3275 36a38700 2019-05-10 stsp if (head_ref)
3276 36a38700 2019-05-10 stsp got_ref_close(head_ref);
3277 2f17228e 2019-05-12 stsp if (head_ref2) {
3278 2f17228e 2019-05-12 stsp unlockerr = got_ref_unlock(head_ref2);
3279 2f17228e 2019-05-12 stsp if (unlockerr && err == NULL)
3280 2f17228e 2019-05-12 stsp err = unlockerr;
3281 09f5bd90 2019-05-09 stsp got_ref_close(head_ref2);
3282 2f17228e 2019-05-12 stsp }
3283 c4296144 2019-05-09 stsp return err;
3284 8656d6c4 2019-05-20 stsp }
3285 8656d6c4 2019-05-20 stsp
3286 8656d6c4 2019-05-20 stsp const char *
3287 8656d6c4 2019-05-20 stsp got_commitable_get_path(struct got_commitable *ct)
3288 8656d6c4 2019-05-20 stsp {
3289 8656d6c4 2019-05-20 stsp return ct->path;
3290 8656d6c4 2019-05-20 stsp }
3291 8656d6c4 2019-05-20 stsp
3292 8656d6c4 2019-05-20 stsp unsigned int
3293 8656d6c4 2019-05-20 stsp got_commitable_get_status(struct got_commitable *ct)
3294 8656d6c4 2019-05-20 stsp {
3295 8656d6c4 2019-05-20 stsp return ct->status;
3296 c4296144 2019-05-09 stsp }