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