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 86c3caaf 2018-03-09 stsp
35 86c3caaf 2018-03-09 stsp #include "got_error.h"
36 86c3caaf 2018-03-09 stsp #include "got_repository.h"
37 5261c201 2018-04-01 stsp #include "got_reference.h"
38 9d31a1d8 2018-03-11 stsp #include "got_object.h"
39 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
40 511a516b 2018-05-19 stsp #include "got_opentemp.h"
41 86c3caaf 2018-03-09 stsp
42 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
43 718b3ab0 2018-03-17 stsp #include "got_lib_path.h"
44 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
45 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
46 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
47 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
48 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
49 6353ad76 2019-02-08 stsp #include "got_lib_diff.h"
50 9d31a1d8 2018-03-11 stsp
51 9d31a1d8 2018-03-11 stsp #ifndef MIN
52 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
53 9d31a1d8 2018-03-11 stsp #endif
54 86c3caaf 2018-03-09 stsp
55 99724ed4 2018-03-10 stsp static const struct got_error *
56 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
57 99724ed4 2018-03-10 stsp {
58 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
59 99724ed4 2018-03-10 stsp char *path;
60 99724ed4 2018-03-10 stsp int fd = -1;
61 99724ed4 2018-03-10 stsp
62 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
63 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
64 99724ed4 2018-03-10 stsp path = NULL;
65 99724ed4 2018-03-10 stsp goto done;
66 99724ed4 2018-03-10 stsp }
67 99724ed4 2018-03-10 stsp
68 73a5ef67 2018-03-11 stsp fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
69 99724ed4 2018-03-10 stsp GOT_DEFAULT_FILE_MODE);
70 99724ed4 2018-03-10 stsp if (fd == -1) {
71 99724ed4 2018-03-10 stsp err = got_error_from_errno();
72 99724ed4 2018-03-10 stsp goto done;
73 99724ed4 2018-03-10 stsp }
74 99724ed4 2018-03-10 stsp
75 99724ed4 2018-03-10 stsp if (content) {
76 99724ed4 2018-03-10 stsp int len = dprintf(fd, "%s\n", content);
77 99724ed4 2018-03-10 stsp if (len != strlen(content) + 1) {
78 99724ed4 2018-03-10 stsp err = got_error_from_errno();
79 99724ed4 2018-03-10 stsp goto done;
80 99724ed4 2018-03-10 stsp }
81 99724ed4 2018-03-10 stsp }
82 99724ed4 2018-03-10 stsp
83 99724ed4 2018-03-10 stsp done:
84 99724ed4 2018-03-10 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
85 99724ed4 2018-03-10 stsp err = got_error_from_errno();
86 99724ed4 2018-03-10 stsp free(path);
87 507dc3bb 2018-12-29 stsp return err;
88 507dc3bb 2018-12-29 stsp }
89 507dc3bb 2018-12-29 stsp
90 507dc3bb 2018-12-29 stsp static const struct got_error *
91 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
92 507dc3bb 2018-12-29 stsp {
93 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
94 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
95 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
96 507dc3bb 2018-12-29 stsp char *path = NULL;
97 507dc3bb 2018-12-29 stsp
98 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
99 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
100 507dc3bb 2018-12-29 stsp path = NULL;
101 507dc3bb 2018-12-29 stsp goto done;
102 507dc3bb 2018-12-29 stsp }
103 507dc3bb 2018-12-29 stsp
104 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
105 507dc3bb 2018-12-29 stsp if (err)
106 507dc3bb 2018-12-29 stsp goto done;
107 507dc3bb 2018-12-29 stsp
108 507dc3bb 2018-12-29 stsp if (content) {
109 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
110 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
111 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
112 507dc3bb 2018-12-29 stsp goto done;
113 507dc3bb 2018-12-29 stsp }
114 507dc3bb 2018-12-29 stsp }
115 507dc3bb 2018-12-29 stsp
116 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
117 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
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 done:
122 507dc3bb 2018-12-29 stsp free(tmppath);
123 fb43ecf1 2019-02-11 stsp if (fclose(tmpfile) != 0 && err == NULL)
124 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
125 99724ed4 2018-03-10 stsp return err;
126 99724ed4 2018-03-10 stsp }
127 99724ed4 2018-03-10 stsp
128 09fe317a 2018-03-11 stsp static const struct got_error *
129 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
130 09fe317a 2018-03-11 stsp {
131 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
132 09fe317a 2018-03-11 stsp char *path;
133 09fe317a 2018-03-11 stsp int fd = -1;
134 09fe317a 2018-03-11 stsp ssize_t n;
135 09fe317a 2018-03-11 stsp struct stat sb;
136 09fe317a 2018-03-11 stsp
137 09fe317a 2018-03-11 stsp *content = NULL;
138 09fe317a 2018-03-11 stsp
139 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
140 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
141 09fe317a 2018-03-11 stsp path = NULL;
142 09fe317a 2018-03-11 stsp goto done;
143 09fe317a 2018-03-11 stsp }
144 09fe317a 2018-03-11 stsp
145 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
146 09fe317a 2018-03-11 stsp if (fd == -1) {
147 ef99fdb1 2018-03-11 stsp err = got_error_from_errno();
148 ef99fdb1 2018-03-11 stsp goto done;
149 ef99fdb1 2018-03-11 stsp }
150 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
151 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
152 73a5ef67 2018-03-11 stsp : got_error_from_errno());
153 09fe317a 2018-03-11 stsp goto done;
154 09fe317a 2018-03-11 stsp }
155 09fe317a 2018-03-11 stsp
156 d10c9b58 2019-02-19 stsp if (lstat(path, &sb) != 0) {
157 d10c9b58 2019-02-19 stsp err = got_error_from_errno();
158 d10c9b58 2019-02-19 stsp goto done;
159 d10c9b58 2019-02-19 stsp }
160 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
161 09fe317a 2018-03-11 stsp if (*content == NULL) {
162 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
163 09fe317a 2018-03-11 stsp goto done;
164 09fe317a 2018-03-11 stsp }
165 09fe317a 2018-03-11 stsp
166 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
167 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
168 0605801d 2018-03-11 stsp err = (n == -1 ? got_error_from_errno() :
169 0605801d 2018-03-11 stsp got_error(GOT_ERR_WORKTREE_META));
170 09fe317a 2018-03-11 stsp goto done;
171 09fe317a 2018-03-11 stsp }
172 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
173 09fe317a 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
174 09fe317a 2018-03-11 stsp goto done;
175 09fe317a 2018-03-11 stsp }
176 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
177 09fe317a 2018-03-11 stsp
178 09fe317a 2018-03-11 stsp done:
179 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
180 09fe317a 2018-03-11 stsp err = got_error_from_errno();
181 09fe317a 2018-03-11 stsp free(path);
182 09fe317a 2018-03-11 stsp if (err) {
183 09fe317a 2018-03-11 stsp free(*content);
184 09fe317a 2018-03-11 stsp *content = NULL;
185 09fe317a 2018-03-11 stsp }
186 09fe317a 2018-03-11 stsp return err;
187 09fe317a 2018-03-11 stsp }
188 09fe317a 2018-03-11 stsp
189 86c3caaf 2018-03-09 stsp const struct got_error *
190 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
191 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
192 86c3caaf 2018-03-09 stsp {
193 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
194 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
195 65596e15 2018-12-24 stsp int obj_type;
196 7ac97322 2018-03-11 stsp char *path_got = NULL;
197 08d425ea 2018-12-24 stsp char *refstr = NULL;
198 1451e70d 2018-03-10 stsp char *formatstr = NULL;
199 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
200 65596e15 2018-12-24 stsp char *basestr = NULL;
201 65596e15 2018-12-24 stsp
202 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
203 65596e15 2018-12-24 stsp if (err)
204 65596e15 2018-12-24 stsp return err;
205 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
206 65596e15 2018-12-24 stsp if (err)
207 65596e15 2018-12-24 stsp return err;
208 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
209 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
210 86c3caaf 2018-03-09 stsp
211 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
212 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
213 0a585a0d 2018-03-17 stsp return got_error_from_errno();
214 0bb8a95e 2018-03-12 stsp }
215 577ec78f 2018-03-11 stsp
216 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
217 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
218 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
219 86c3caaf 2018-03-09 stsp goto done;
220 86c3caaf 2018-03-09 stsp }
221 86c3caaf 2018-03-09 stsp
222 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
223 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
224 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
225 86c3caaf 2018-03-09 stsp goto done;
226 86c3caaf 2018-03-09 stsp }
227 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
228 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
229 86c3caaf 2018-03-09 stsp goto done;
230 86c3caaf 2018-03-09 stsp }
231 86c3caaf 2018-03-09 stsp
232 056e7441 2018-03-11 stsp /* Create an empty lock file. */
233 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
234 056e7441 2018-03-11 stsp if (err)
235 056e7441 2018-03-11 stsp goto done;
236 056e7441 2018-03-11 stsp
237 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
238 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
239 99724ed4 2018-03-10 stsp if (err)
240 86c3caaf 2018-03-09 stsp goto done;
241 86c3caaf 2018-03-09 stsp
242 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
243 08d425ea 2018-12-24 stsp refstr = got_ref_to_str(head_ref);
244 08d425ea 2018-12-24 stsp if (refstr == NULL) {
245 a1a7858a 2018-12-24 stsp err = got_error_from_errno();
246 a1a7858a 2018-12-24 stsp goto done;
247 a1a7858a 2018-12-24 stsp }
248 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
249 65596e15 2018-12-24 stsp if (err)
250 65596e15 2018-12-24 stsp goto done;
251 65596e15 2018-12-24 stsp
252 65596e15 2018-12-24 stsp /* Record our base commit. */
253 65596e15 2018-12-24 stsp err = got_object_id_str(&basestr, commit_id);
254 65596e15 2018-12-24 stsp if (err)
255 65596e15 2018-12-24 stsp goto done;
256 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
257 99724ed4 2018-03-10 stsp if (err)
258 86c3caaf 2018-03-09 stsp goto done;
259 86c3caaf 2018-03-09 stsp
260 1451e70d 2018-03-10 stsp /* Store path to repository. */
261 7839bc15 2019-01-06 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
262 7839bc15 2019-01-06 stsp got_repo_get_path(repo));
263 99724ed4 2018-03-10 stsp if (err)
264 86c3caaf 2018-03-09 stsp goto done;
265 86c3caaf 2018-03-09 stsp
266 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
267 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
268 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
269 577ec78f 2018-03-11 stsp if (err)
270 577ec78f 2018-03-11 stsp goto done;
271 577ec78f 2018-03-11 stsp
272 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
273 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
274 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
275 1451e70d 2018-03-10 stsp goto done;
276 1451e70d 2018-03-10 stsp }
277 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
278 99724ed4 2018-03-10 stsp if (err)
279 1451e70d 2018-03-10 stsp goto done;
280 1451e70d 2018-03-10 stsp
281 86c3caaf 2018-03-09 stsp done:
282 65596e15 2018-12-24 stsp free(commit_id);
283 7ac97322 2018-03-11 stsp free(path_got);
284 1451e70d 2018-03-10 stsp free(formatstr);
285 08d425ea 2018-12-24 stsp free(refstr);
286 0bb8a95e 2018-03-12 stsp free(absprefix);
287 65596e15 2018-12-24 stsp free(basestr);
288 86c3caaf 2018-03-09 stsp return err;
289 86c3caaf 2018-03-09 stsp }
290 86c3caaf 2018-03-09 stsp
291 247140b2 2019-02-05 stsp static const struct got_error *
292 247140b2 2019-02-05 stsp open_worktree(struct got_worktree **worktree, const char *path)
293 86c3caaf 2018-03-09 stsp {
294 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
295 7ac97322 2018-03-11 stsp char *path_got;
296 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
297 056e7441 2018-03-11 stsp char *path_lock = NULL;
298 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
299 271d2a38 2018-12-25 stsp char *head_ref_str = NULL;
300 6d9d28c3 2018-03-11 stsp int version, fd = -1;
301 6d9d28c3 2018-03-11 stsp const char *errstr;
302 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
303 6d9d28c3 2018-03-11 stsp
304 6d9d28c3 2018-03-11 stsp *worktree = NULL;
305 6d9d28c3 2018-03-11 stsp
306 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
307 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
308 7ac97322 2018-03-11 stsp path_got = NULL;
309 6d9d28c3 2018-03-11 stsp goto done;
310 6d9d28c3 2018-03-11 stsp }
311 6d9d28c3 2018-03-11 stsp
312 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
313 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
314 056e7441 2018-03-11 stsp path_lock = NULL;
315 6d9d28c3 2018-03-11 stsp goto done;
316 6d9d28c3 2018-03-11 stsp }
317 6d9d28c3 2018-03-11 stsp
318 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
319 6d9d28c3 2018-03-11 stsp if (fd == -1) {
320 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
321 73a5ef67 2018-03-11 stsp : got_error_from_errno());
322 6d9d28c3 2018-03-11 stsp goto done;
323 6d9d28c3 2018-03-11 stsp }
324 6d9d28c3 2018-03-11 stsp
325 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
326 6d9d28c3 2018-03-11 stsp if (err)
327 6d9d28c3 2018-03-11 stsp goto done;
328 6d9d28c3 2018-03-11 stsp
329 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
330 6d9d28c3 2018-03-11 stsp if (errstr) {
331 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
332 6d9d28c3 2018-03-11 stsp goto done;
333 6d9d28c3 2018-03-11 stsp }
334 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
335 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
336 6d9d28c3 2018-03-11 stsp goto done;
337 6d9d28c3 2018-03-11 stsp }
338 6d9d28c3 2018-03-11 stsp
339 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
340 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
341 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
342 6d9d28c3 2018-03-11 stsp goto done;
343 6d9d28c3 2018-03-11 stsp }
344 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
345 6d9d28c3 2018-03-11 stsp
346 c88eb298 2018-03-11 stsp (*worktree)->root_path = strdup(path);
347 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
348 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
349 6d9d28c3 2018-03-11 stsp goto done;
350 6d9d28c3 2018-03-11 stsp }
351 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
352 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
353 6d9d28c3 2018-03-11 stsp if (err)
354 6d9d28c3 2018-03-11 stsp goto done;
355 eaccb85f 2018-12-25 stsp
356 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
357 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
358 93a30277 2018-12-24 stsp if (err)
359 93a30277 2018-12-24 stsp goto done;
360 93a30277 2018-12-24 stsp
361 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
362 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
363 eaccb85f 2018-12-25 stsp if (err)
364 eaccb85f 2018-12-25 stsp goto done;
365 eaccb85f 2018-12-25 stsp
366 eaccb85f 2018-12-25 stsp err = got_repo_open(&repo, (*worktree)->repo_path);
367 eaccb85f 2018-12-25 stsp if (err)
368 eaccb85f 2018-12-25 stsp goto done;
369 eaccb85f 2018-12-25 stsp
370 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
371 eaccb85f 2018-12-25 stsp base_commit_id_str);
372 f5baf295 2018-03-11 stsp if (err)
373 f5baf295 2018-03-11 stsp goto done;
374 f5baf295 2018-03-11 stsp
375 271d2a38 2018-12-25 stsp err = read_meta_file(&head_ref_str, path_got, GOT_WORKTREE_HEAD_REF);
376 f5baf295 2018-03-11 stsp if (err)
377 6d9d28c3 2018-03-11 stsp goto done;
378 6d9d28c3 2018-03-11 stsp
379 271d2a38 2018-12-25 stsp err = got_ref_open(&(*worktree)->head_ref, repo, head_ref_str);
380 6d9d28c3 2018-03-11 stsp done:
381 eaccb85f 2018-12-25 stsp if (repo)
382 eaccb85f 2018-12-25 stsp got_repo_close(repo);
383 7ac97322 2018-03-11 stsp free(path_got);
384 056e7441 2018-03-11 stsp free(path_lock);
385 271d2a38 2018-12-25 stsp free(head_ref_str);
386 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
387 6d9d28c3 2018-03-11 stsp if (err) {
388 6d9d28c3 2018-03-11 stsp if (fd != -1)
389 6d9d28c3 2018-03-11 stsp close(fd);
390 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
391 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
392 6d9d28c3 2018-03-11 stsp *worktree = NULL;
393 6d9d28c3 2018-03-11 stsp } else
394 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
395 6d9d28c3 2018-03-11 stsp
396 6d9d28c3 2018-03-11 stsp return err;
397 86c3caaf 2018-03-09 stsp }
398 247140b2 2019-02-05 stsp
399 247140b2 2019-02-05 stsp const struct got_error *
400 247140b2 2019-02-05 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
401 247140b2 2019-02-05 stsp {
402 247140b2 2019-02-05 stsp const struct got_error *err = NULL;
403 86c3caaf 2018-03-09 stsp
404 247140b2 2019-02-05 stsp do {
405 247140b2 2019-02-05 stsp err = open_worktree(worktree, path);
406 247140b2 2019-02-05 stsp if (err && (err->code != GOT_ERR_ERRNO && errno != ENOENT))
407 247140b2 2019-02-05 stsp return err;
408 247140b2 2019-02-05 stsp if (*worktree)
409 247140b2 2019-02-05 stsp return NULL;
410 247140b2 2019-02-05 stsp path = dirname(path);
411 d1542a27 2019-02-05 stsp if (path == NULL)
412 d1542a27 2019-02-05 stsp return got_error_from_errno();
413 d1542a27 2019-02-05 stsp } while (!((path[0] == '.' || path[0] == '/') && path[1] == '\0'));
414 247140b2 2019-02-05 stsp
415 247140b2 2019-02-05 stsp return got_error(GOT_ERR_NOT_WORKTREE);
416 247140b2 2019-02-05 stsp }
417 247140b2 2019-02-05 stsp
418 3a6ce05a 2019-02-11 stsp const struct got_error *
419 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
420 86c3caaf 2018-03-09 stsp {
421 3a6ce05a 2019-02-11 stsp const struct got_error *err = NULL;
422 c88eb298 2018-03-11 stsp free(worktree->root_path);
423 cde76477 2018-03-11 stsp free(worktree->repo_path);
424 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
425 eaccb85f 2018-12-25 stsp free(worktree->base_commit_id);
426 271d2a38 2018-12-25 stsp if (worktree->head_ref)
427 271d2a38 2018-12-25 stsp got_ref_close(worktree->head_ref);
428 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
429 3a6ce05a 2019-02-11 stsp if (close(worktree->lockfd) != 0)
430 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
431 6d9d28c3 2018-03-11 stsp free(worktree);
432 3a6ce05a 2019-02-11 stsp return err;
433 86c3caaf 2018-03-09 stsp }
434 86c3caaf 2018-03-09 stsp
435 2fbdb5ae 2018-12-29 stsp const char *
436 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(struct got_worktree *worktree)
437 c7f4312f 2019-02-05 stsp {
438 c7f4312f 2019-02-05 stsp return worktree->root_path;
439 c7f4312f 2019-02-05 stsp }
440 c7f4312f 2019-02-05 stsp
441 c7f4312f 2019-02-05 stsp const char *
442 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
443 86c3caaf 2018-03-09 stsp {
444 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
445 49520a32 2018-12-29 stsp }
446 49520a32 2018-12-29 stsp
447 49520a32 2018-12-29 stsp const char *
448 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
449 49520a32 2018-12-29 stsp {
450 f609be2e 2018-12-29 stsp return worktree->path_prefix;
451 e5dc7198 2018-12-29 stsp }
452 e5dc7198 2018-12-29 stsp
453 e5dc7198 2018-12-29 stsp const struct got_error *
454 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
455 e5dc7198 2018-12-29 stsp const char *path_prefix)
456 e5dc7198 2018-12-29 stsp {
457 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
458 e5dc7198 2018-12-29 stsp
459 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
460 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
461 e5dc7198 2018-12-29 stsp return got_error_from_errno();
462 e5dc7198 2018-12-29 stsp }
463 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
464 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
465 e5dc7198 2018-12-29 stsp free(absprefix);
466 e5dc7198 2018-12-29 stsp return NULL;
467 86c3caaf 2018-03-09 stsp }
468 86c3caaf 2018-03-09 stsp
469 35be1456 2018-03-11 stsp char *
470 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
471 86c3caaf 2018-03-09 stsp {
472 271d2a38 2018-12-25 stsp return got_ref_to_str(worktree->head_ref);
473 be7061eb 2018-12-30 stsp }
474 be7061eb 2018-12-30 stsp
475 be7061eb 2018-12-30 stsp struct got_reference *
476 be7061eb 2018-12-30 stsp got_worktree_get_head_ref(struct got_worktree *worktree)
477 be7061eb 2018-12-30 stsp {
478 be7061eb 2018-12-30 stsp return got_ref_dup(worktree->head_ref);
479 507dc3bb 2018-12-29 stsp }
480 507dc3bb 2018-12-29 stsp
481 b72f483a 2019-02-05 stsp struct got_object_id *
482 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
483 507dc3bb 2018-12-29 stsp {
484 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
485 86c3caaf 2018-03-09 stsp }
486 86c3caaf 2018-03-09 stsp
487 507dc3bb 2018-12-29 stsp const struct got_error *
488 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
489 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
490 507dc3bb 2018-12-29 stsp {
491 507dc3bb 2018-12-29 stsp const struct got_error *err;
492 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
493 507dc3bb 2018-12-29 stsp char *id_str = NULL;
494 507dc3bb 2018-12-29 stsp char *path_got = NULL;
495 507dc3bb 2018-12-29 stsp
496 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
497 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
498 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
499 507dc3bb 2018-12-29 stsp path_got = NULL;
500 507dc3bb 2018-12-29 stsp goto done;
501 507dc3bb 2018-12-29 stsp }
502 507dc3bb 2018-12-29 stsp
503 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
504 507dc3bb 2018-12-29 stsp if (err)
505 507dc3bb 2018-12-29 stsp return err;
506 507dc3bb 2018-12-29 stsp
507 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
508 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
509 507dc3bb 2018-12-29 stsp goto done;
510 507dc3bb 2018-12-29 stsp }
511 507dc3bb 2018-12-29 stsp
512 507dc3bb 2018-12-29 stsp /* Record our base commit. */
513 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
514 507dc3bb 2018-12-29 stsp if (err)
515 507dc3bb 2018-12-29 stsp goto done;
516 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
517 507dc3bb 2018-12-29 stsp if (err)
518 507dc3bb 2018-12-29 stsp goto done;
519 507dc3bb 2018-12-29 stsp
520 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
521 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
522 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
523 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
524 507dc3bb 2018-12-29 stsp goto done;
525 507dc3bb 2018-12-29 stsp }
526 507dc3bb 2018-12-29 stsp done:
527 507dc3bb 2018-12-29 stsp if (obj)
528 507dc3bb 2018-12-29 stsp got_object_close(obj);
529 507dc3bb 2018-12-29 stsp free(id_str);
530 507dc3bb 2018-12-29 stsp free(path_got);
531 507dc3bb 2018-12-29 stsp return err;
532 507dc3bb 2018-12-29 stsp }
533 507dc3bb 2018-12-29 stsp
534 9d31a1d8 2018-03-11 stsp static const struct got_error *
535 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
536 86c3caaf 2018-03-09 stsp {
537 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
538 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
539 9d31a1d8 2018-03-11 stsp : got_error_from_errno());
540 86c3caaf 2018-03-09 stsp return NULL;
541 9d31a1d8 2018-03-11 stsp }
542 9d31a1d8 2018-03-11 stsp
543 9d31a1d8 2018-03-11 stsp static const struct got_error *
544 21908da4 2019-01-13 stsp make_parent_dirs(const char *abspath)
545 21908da4 2019-01-13 stsp {
546 21908da4 2019-01-13 stsp const struct got_error *err = NULL;
547 21908da4 2019-01-13 stsp
548 21908da4 2019-01-13 stsp char *parent = dirname(abspath);
549 21908da4 2019-01-13 stsp if (parent == NULL)
550 21908da4 2019-01-13 stsp return NULL;
551 21908da4 2019-01-13 stsp
552 21908da4 2019-01-13 stsp if (mkdir(parent, GOT_DEFAULT_DIR_MODE) == -1) {
553 21908da4 2019-01-13 stsp if (errno == ENOENT) {
554 21908da4 2019-01-13 stsp err = make_parent_dirs(parent);
555 21908da4 2019-01-13 stsp if (err)
556 21908da4 2019-01-13 stsp return err;
557 c65fcef2 2019-01-13 stsp if (mkdir(parent, GOT_DEFAULT_DIR_MODE) == -1)
558 c65fcef2 2019-01-13 stsp return got_error_from_errno();
559 21908da4 2019-01-13 stsp } else
560 c65fcef2 2019-01-13 stsp err = got_error_from_errno();
561 21908da4 2019-01-13 stsp }
562 21908da4 2019-01-13 stsp
563 c65fcef2 2019-01-13 stsp return err;
564 21908da4 2019-01-13 stsp }
565 21908da4 2019-01-13 stsp
566 21908da4 2019-01-13 stsp static const struct got_error *
567 4a1ddfc2 2019-01-12 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
568 4a1ddfc2 2019-01-12 stsp {
569 4a1ddfc2 2019-01-12 stsp const struct got_error *err = NULL;
570 4a1ddfc2 2019-01-12 stsp char *abspath;
571 4a1ddfc2 2019-01-12 stsp
572 4a1ddfc2 2019-01-12 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
573 4a1ddfc2 2019-01-12 stsp return got_error_from_errno();
574 4a1ddfc2 2019-01-12 stsp
575 4a1ddfc2 2019-01-12 stsp /* XXX queue work rather than editing disk directly? */
576 4a1ddfc2 2019-01-12 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1) {
577 4a1ddfc2 2019-01-12 stsp struct stat sb;
578 4a1ddfc2 2019-01-12 stsp
579 21908da4 2019-01-13 stsp if (errno == EEXIST) {
580 21908da4 2019-01-13 stsp if (lstat(abspath, &sb) == -1) {
581 21908da4 2019-01-13 stsp err = got_error_from_errno();
582 21908da4 2019-01-13 stsp goto done;
583 21908da4 2019-01-13 stsp }
584 21908da4 2019-01-13 stsp
585 21908da4 2019-01-13 stsp if (!S_ISDIR(sb.st_mode)) {
586 21908da4 2019-01-13 stsp /* TODO directory is obstructed; do something */
587 c65fcef2 2019-01-13 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
588 c65fcef2 2019-01-13 stsp goto done;
589 21908da4 2019-01-13 stsp }
590 21908da4 2019-01-13 stsp
591 21908da4 2019-01-13 stsp return NULL;
592 c65fcef2 2019-01-13 stsp } else if (errno == ENOENT) {
593 21908da4 2019-01-13 stsp err = make_parent_dirs(abspath);
594 21908da4 2019-01-13 stsp if (err)
595 c65fcef2 2019-01-13 stsp goto done;
596 c65fcef2 2019-01-13 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1)
597 c65fcef2 2019-01-13 stsp err = got_error_from_errno();
598 c65fcef2 2019-01-13 stsp } else
599 4a1ddfc2 2019-01-12 stsp err = got_error_from_errno();
600 4a1ddfc2 2019-01-12 stsp }
601 4a1ddfc2 2019-01-12 stsp
602 4a1ddfc2 2019-01-12 stsp done:
603 4a1ddfc2 2019-01-12 stsp free(abspath);
604 68c76935 2019-02-19 stsp return err;
605 68c76935 2019-02-19 stsp }
606 68c76935 2019-02-19 stsp
607 68c76935 2019-02-19 stsp static const struct got_error *
608 68c76935 2019-02-19 stsp check_file_contents_equal(int *same, FILE *f1, FILE *f2)
609 68c76935 2019-02-19 stsp {
610 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
611 68c76935 2019-02-19 stsp uint8_t fbuf1[8192];
612 68c76935 2019-02-19 stsp uint8_t fbuf2[8192];
613 68c76935 2019-02-19 stsp size_t flen1 = 0, flen2 = 0;
614 68c76935 2019-02-19 stsp
615 68c76935 2019-02-19 stsp *same = 1;
616 68c76935 2019-02-19 stsp
617 68c76935 2019-02-19 stsp while (1) {
618 68c76935 2019-02-19 stsp flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
619 68c76935 2019-02-19 stsp if (flen1 == 0 && ferror(f1)) {
620 68c76935 2019-02-19 stsp err = got_error_from_errno();
621 68c76935 2019-02-19 stsp break;
622 68c76935 2019-02-19 stsp }
623 68c76935 2019-02-19 stsp flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
624 68c76935 2019-02-19 stsp if (flen2 == 0 && ferror(f2)) {
625 68c76935 2019-02-19 stsp err = got_error_from_errno();
626 68c76935 2019-02-19 stsp break;
627 68c76935 2019-02-19 stsp }
628 68c76935 2019-02-19 stsp if (flen1 == 0) {
629 68c76935 2019-02-19 stsp if (flen2 != 0)
630 68c76935 2019-02-19 stsp *same = 0;
631 68c76935 2019-02-19 stsp break;
632 68c76935 2019-02-19 stsp } else if (flen2 == 0) {
633 68c76935 2019-02-19 stsp if (flen1 != 0)
634 68c76935 2019-02-19 stsp *same = 0;
635 68c76935 2019-02-19 stsp break;
636 68c76935 2019-02-19 stsp } else if (flen1 == flen2) {
637 68c76935 2019-02-19 stsp if (memcmp(fbuf1, fbuf2, flen2) != 0) {
638 68c76935 2019-02-19 stsp *same = 0;
639 68c76935 2019-02-19 stsp break;
640 68c76935 2019-02-19 stsp }
641 68c76935 2019-02-19 stsp } else {
642 68c76935 2019-02-19 stsp *same = 0;
643 68c76935 2019-02-19 stsp break;
644 68c76935 2019-02-19 stsp }
645 68c76935 2019-02-19 stsp }
646 68c76935 2019-02-19 stsp
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_files_equal(int *same, const char *f1_path, const char *f2_path)
652 68c76935 2019-02-19 stsp {
653 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
654 68c76935 2019-02-19 stsp struct stat sb;
655 68c76935 2019-02-19 stsp size_t size1, size2;
656 68c76935 2019-02-19 stsp FILE *f1 = NULL, *f2 = NULL;
657 68c76935 2019-02-19 stsp
658 68c76935 2019-02-19 stsp *same = 1;
659 68c76935 2019-02-19 stsp
660 68c76935 2019-02-19 stsp if (lstat(f1_path, &sb) != 0) {
661 68c76935 2019-02-19 stsp err = got_error_from_errno();
662 68c76935 2019-02-19 stsp goto done;
663 68c76935 2019-02-19 stsp }
664 68c76935 2019-02-19 stsp size1 = sb.st_size;
665 68c76935 2019-02-19 stsp
666 68c76935 2019-02-19 stsp if (lstat(f2_path, &sb) != 0) {
667 68c76935 2019-02-19 stsp err = got_error_from_errno();
668 68c76935 2019-02-19 stsp goto done;
669 68c76935 2019-02-19 stsp }
670 68c76935 2019-02-19 stsp size2 = sb.st_size;
671 68c76935 2019-02-19 stsp
672 68c76935 2019-02-19 stsp if (size1 != size2) {
673 68c76935 2019-02-19 stsp *same = 0;
674 68c76935 2019-02-19 stsp return NULL;
675 68c76935 2019-02-19 stsp }
676 68c76935 2019-02-19 stsp
677 68c76935 2019-02-19 stsp f1 = fopen(f1_path, "r");
678 68c76935 2019-02-19 stsp if (f1 == NULL)
679 68c76935 2019-02-19 stsp return got_error_from_errno();
680 68c76935 2019-02-19 stsp
681 68c76935 2019-02-19 stsp f2 = fopen(f2_path, "r");
682 68c76935 2019-02-19 stsp if (f2 == NULL) {
683 68c76935 2019-02-19 stsp err = got_error_from_errno();
684 68c76935 2019-02-19 stsp goto done;
685 68c76935 2019-02-19 stsp }
686 68c76935 2019-02-19 stsp
687 68c76935 2019-02-19 stsp err = check_file_contents_equal(same, f1, f2);
688 68c76935 2019-02-19 stsp done:
689 68c76935 2019-02-19 stsp if (f1 && fclose(f1) != 0 && err == NULL)
690 68c76935 2019-02-19 stsp err = got_error_from_errno();
691 68c76935 2019-02-19 stsp if (f2 && fclose(f2) != 0 && err == NULL)
692 68c76935 2019-02-19 stsp err = got_error_from_errno();
693 68c76935 2019-02-19 stsp
694 6353ad76 2019-02-08 stsp return err;
695 6353ad76 2019-02-08 stsp }
696 6353ad76 2019-02-08 stsp
697 6353ad76 2019-02-08 stsp /*
698 6353ad76 2019-02-08 stsp * Perform a 3-way merge where the file's version in the file index (blob2)
699 6353ad76 2019-02-08 stsp * acts as the common ancestor, the incoming blob (blob1) acts as the first
700 6353ad76 2019-02-08 stsp * derived version, and the file on disk acts as the second derived version.
701 6353ad76 2019-02-08 stsp */
702 6353ad76 2019-02-08 stsp static const struct got_error *
703 6353ad76 2019-02-08 stsp merge_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
704 6353ad76 2019-02-08 stsp struct got_fileindex_entry *ie, const char *ondisk_path, const char *path,
705 b8f41171 2019-02-10 stsp uint16_t te_mode, uint16_t st_mode, struct got_blob_object *blob1,
706 b8f41171 2019-02-10 stsp struct got_repository *repo,
707 6353ad76 2019-02-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
708 6353ad76 2019-02-08 stsp {
709 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
710 6353ad76 2019-02-08 stsp int merged_fd = -1;
711 6353ad76 2019-02-08 stsp struct got_blob_object *blob2 = NULL;
712 6353ad76 2019-02-08 stsp FILE *f1 = NULL, *f2 = NULL;
713 6353ad76 2019-02-08 stsp char *blob1_path = NULL, *blob2_path = NULL;
714 af54ae4a 2019-02-19 stsp char *merged_path = NULL, *base_path = NULL;
715 6353ad76 2019-02-08 stsp struct got_object_id id2;
716 6353ad76 2019-02-08 stsp char *id_str = NULL;
717 6353ad76 2019-02-08 stsp char *label1 = NULL;
718 68c76935 2019-02-19 stsp int overlapcnt = 0, update_timestamps = 0;
719 af54ae4a 2019-02-19 stsp char *parent;
720 6353ad76 2019-02-08 stsp
721 af54ae4a 2019-02-19 stsp parent = dirname(ondisk_path);
722 af54ae4a 2019-02-19 stsp if (parent == NULL)
723 af54ae4a 2019-02-19 stsp return got_error_from_errno();
724 af54ae4a 2019-02-19 stsp
725 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merged", parent) == -1)
726 af54ae4a 2019-02-19 stsp return got_error_from_errno();
727 af54ae4a 2019-02-19 stsp
728 af54ae4a 2019-02-19 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
729 6353ad76 2019-02-08 stsp if (err)
730 af54ae4a 2019-02-19 stsp goto done;
731 af54ae4a 2019-02-19 stsp
732 af54ae4a 2019-02-19 stsp free(base_path);
733 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob1", parent) == -1) {
734 af54ae4a 2019-02-19 stsp err = got_error_from_errno();
735 af54ae4a 2019-02-19 stsp base_path = NULL;
736 af54ae4a 2019-02-19 stsp goto done;
737 af54ae4a 2019-02-19 stsp }
738 af54ae4a 2019-02-19 stsp
739 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob1_path, &f1, base_path);
740 6353ad76 2019-02-08 stsp if (err)
741 6353ad76 2019-02-08 stsp goto done;
742 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f1, blob1);
743 6353ad76 2019-02-08 stsp if (err)
744 6353ad76 2019-02-08 stsp goto done;
745 6353ad76 2019-02-08 stsp
746 af54ae4a 2019-02-19 stsp free(base_path);
747 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob2", parent) == -1) {
748 af54ae4a 2019-02-19 stsp err = got_error_from_errno();
749 af54ae4a 2019-02-19 stsp base_path = NULL;
750 af54ae4a 2019-02-19 stsp goto done;
751 af54ae4a 2019-02-19 stsp }
752 af54ae4a 2019-02-19 stsp
753 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob2_path, &f2, base_path);
754 6353ad76 2019-02-08 stsp if (err)
755 6353ad76 2019-02-08 stsp goto done;
756 6353ad76 2019-02-08 stsp
757 6353ad76 2019-02-08 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
758 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
759 6353ad76 2019-02-08 stsp if (err)
760 6353ad76 2019-02-08 stsp goto done;
761 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f2, blob2);
762 6353ad76 2019-02-08 stsp if (err)
763 6353ad76 2019-02-08 stsp goto done;
764 6353ad76 2019-02-08 stsp
765 6353ad76 2019-02-08 stsp err = got_object_id_str(&id_str, worktree->base_commit_id);
766 6353ad76 2019-02-08 stsp if (err)
767 6353ad76 2019-02-08 stsp goto done;
768 6353ad76 2019-02-08 stsp if (asprintf(&label1, "commit %s", id_str) == -1) {
769 6353ad76 2019-02-08 stsp err = got_error_from_errno();
770 6353ad76 2019-02-08 stsp goto done;
771 6353ad76 2019-02-08 stsp }
772 6353ad76 2019-02-08 stsp
773 6353ad76 2019-02-08 stsp err = got_merge_diff3(&overlapcnt, merged_fd, blob1_path,
774 6353ad76 2019-02-08 stsp blob2_path, ondisk_path, label1, path);
775 6353ad76 2019-02-08 stsp if (err)
776 6353ad76 2019-02-08 stsp goto done;
777 6353ad76 2019-02-08 stsp
778 6353ad76 2019-02-08 stsp (*progress_cb)(progress_arg,
779 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
780 6353ad76 2019-02-08 stsp
781 6353ad76 2019-02-08 stsp
782 816dc654 2019-02-16 stsp if (fsync(merged_fd) != 0) {
783 816dc654 2019-02-16 stsp err = got_error_from_errno();
784 816dc654 2019-02-16 stsp goto done;
785 68c76935 2019-02-19 stsp }
786 68c76935 2019-02-19 stsp
787 68c76935 2019-02-19 stsp /* Check if a clean merge has subsumed all local changes. */
788 68c76935 2019-02-19 stsp if (overlapcnt == 0) {
789 68c76935 2019-02-19 stsp err = check_files_equal(&update_timestamps, blob1_path,
790 68c76935 2019-02-19 stsp merged_path);
791 68c76935 2019-02-19 stsp if (err)
792 68c76935 2019-02-19 stsp goto done;
793 816dc654 2019-02-16 stsp }
794 6353ad76 2019-02-08 stsp
795 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
796 6353ad76 2019-02-08 stsp err = got_error_from_errno();
797 6353ad76 2019-02-08 stsp goto done;
798 6353ad76 2019-02-08 stsp }
799 6353ad76 2019-02-08 stsp
800 02c07007 2019-02-10 stsp /*
801 02c07007 2019-02-10 stsp * Do not update timestamps of already modified files. Otherwise,
802 65ad4e61 2019-02-20 stsp * a future status walk would treat them as unmodified files again.
803 02c07007 2019-02-10 stsp */
804 6353ad76 2019-02-08 stsp err = got_fileindex_entry_update(ie, ondisk_path,
805 68c76935 2019-02-19 stsp blob1->id.sha1, worktree->base_commit_id->sha1, update_timestamps);
806 6353ad76 2019-02-08 stsp done:
807 3a6ce05a 2019-02-11 stsp if (merged_fd != -1 && close(merged_fd) != 0 && err == NULL)
808 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
809 3a6ce05a 2019-02-11 stsp if (f1 && fclose(f1) != 0 && err == NULL)
810 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
811 3a6ce05a 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
812 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
813 6353ad76 2019-02-08 stsp if (blob2)
814 6353ad76 2019-02-08 stsp got_object_blob_close(blob2);
815 6353ad76 2019-02-08 stsp free(merged_path);
816 af54ae4a 2019-02-19 stsp free(base_path);
817 6353ad76 2019-02-08 stsp if (blob1_path) {
818 6353ad76 2019-02-08 stsp unlink(blob1_path);
819 6353ad76 2019-02-08 stsp free(blob1_path);
820 6353ad76 2019-02-08 stsp }
821 6353ad76 2019-02-08 stsp if (blob2_path) {
822 6353ad76 2019-02-08 stsp unlink(blob2_path);
823 6353ad76 2019-02-08 stsp free(blob2_path);
824 6353ad76 2019-02-08 stsp }
825 6353ad76 2019-02-08 stsp free(id_str);
826 6353ad76 2019-02-08 stsp free(label1);
827 4a1ddfc2 2019-01-12 stsp return err;
828 4a1ddfc2 2019-01-12 stsp }
829 4a1ddfc2 2019-01-12 stsp
830 4a1ddfc2 2019-01-12 stsp static const struct got_error *
831 8da9e5f4 2019-01-12 stsp install_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
832 6353ad76 2019-02-08 stsp struct got_fileindex_entry *entry, const char *ondisk_path, const char *path,
833 b8f41171 2019-02-10 stsp uint16_t te_mode, uint16_t st_mode, struct got_blob_object *blob,
834 b8f41171 2019-02-10 stsp int restoring_missing_file, struct got_repository *repo,
835 b8f41171 2019-02-10 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
836 9d31a1d8 2018-03-11 stsp {
837 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
838 507dc3bb 2018-12-29 stsp int fd = -1;
839 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
840 507dc3bb 2018-12-29 stsp int update = 0;
841 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
842 9d31a1d8 2018-03-11 stsp
843 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
844 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
845 9d31a1d8 2018-03-11 stsp if (fd == -1) {
846 21908da4 2019-01-13 stsp if (errno == ENOENT) {
847 21908da4 2019-01-13 stsp char *parent = dirname(path);
848 21908da4 2019-01-13 stsp if (parent == NULL)
849 21908da4 2019-01-13 stsp return got_error_from_errno();
850 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
851 21908da4 2019-01-13 stsp if (err)
852 21908da4 2019-01-13 stsp return err;
853 21908da4 2019-01-13 stsp fd = open(ondisk_path,
854 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
855 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
856 21908da4 2019-01-13 stsp if (fd == -1)
857 21908da4 2019-01-13 stsp return got_error_from_errno();
858 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
859 b8f41171 2019-02-10 stsp if (!S_ISREG(st_mode)) {
860 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
861 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
862 507dc3bb 2018-12-29 stsp goto done;
863 d70b8e30 2018-12-27 stsp } else {
864 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
865 507dc3bb 2018-12-29 stsp ondisk_path);
866 507dc3bb 2018-12-29 stsp if (err)
867 507dc3bb 2018-12-29 stsp goto done;
868 507dc3bb 2018-12-29 stsp update = 1;
869 9d31a1d8 2018-03-11 stsp }
870 507dc3bb 2018-12-29 stsp } else
871 7e7c1e4c 2019-01-12 stsp return got_error_from_errno();
872 9d31a1d8 2018-03-11 stsp }
873 9d31a1d8 2018-03-11 stsp
874 a378724f 2019-02-10 stsp if (restoring_missing_file)
875 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_MISSING, path);
876 a378724f 2019-02-10 stsp else
877 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg,
878 a378724f 2019-02-10 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
879 d7b62c98 2018-12-27 stsp
880 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
881 9d31a1d8 2018-03-11 stsp do {
882 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
883 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
884 9d31a1d8 2018-03-11 stsp if (err)
885 9d31a1d8 2018-03-11 stsp break;
886 9d31a1d8 2018-03-11 stsp if (len > 0) {
887 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
888 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
889 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
890 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
891 b87c6f83 2018-12-24 stsp goto done;
892 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
893 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
894 b87c6f83 2018-12-24 stsp goto done;
895 9d31a1d8 2018-03-11 stsp }
896 61d6eaa3 2018-12-24 stsp hdrlen = 0;
897 9d31a1d8 2018-03-11 stsp }
898 9d31a1d8 2018-03-11 stsp } while (len != 0);
899 9d31a1d8 2018-03-11 stsp
900 816dc654 2019-02-16 stsp if (fsync(fd) != 0) {
901 816dc654 2019-02-16 stsp err = got_error_from_errno();
902 816dc654 2019-02-16 stsp goto done;
903 816dc654 2019-02-16 stsp }
904 9d31a1d8 2018-03-11 stsp
905 507dc3bb 2018-12-29 stsp if (update) {
906 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
907 68ed9ba5 2019-02-10 stsp err = got_error_from_errno();
908 68ed9ba5 2019-02-10 stsp goto done;
909 68ed9ba5 2019-02-10 stsp }
910 68ed9ba5 2019-02-10 stsp }
911 ba8a0d4d 2019-02-10 stsp
912 b8f41171 2019-02-10 stsp if (te_mode & S_IXUSR) {
913 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode | S_IXUSR) == -1) {
914 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
915 507dc3bb 2018-12-29 stsp goto done;
916 507dc3bb 2018-12-29 stsp }
917 ba8a0d4d 2019-02-10 stsp } else {
918 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode & ~S_IXUSR) == -1) {
919 68ed9ba5 2019-02-10 stsp err = got_error_from_errno();
920 68ed9ba5 2019-02-10 stsp goto done;
921 68ed9ba5 2019-02-10 stsp }
922 507dc3bb 2018-12-29 stsp }
923 507dc3bb 2018-12-29 stsp
924 5f9fef37 2019-01-13 stsp if (entry == NULL)
925 5f9fef37 2019-01-13 stsp entry = got_fileindex_entry_get(fileindex, path);
926 51514078 2018-12-25 stsp if (entry)
927 51514078 2018-12-25 stsp err = got_fileindex_entry_update(entry, ondisk_path,
928 02c07007 2019-02-10 stsp blob->id.sha1, worktree->base_commit_id->sha1, 1);
929 51514078 2018-12-25 stsp else {
930 51514078 2018-12-25 stsp err = got_fileindex_entry_alloc(&entry, ondisk_path,
931 8da9e5f4 2019-01-12 stsp path, blob->id.sha1, worktree->base_commit_id->sha1);
932 51514078 2018-12-25 stsp if (err)
933 51514078 2018-12-25 stsp goto done;
934 51514078 2018-12-25 stsp err = got_fileindex_entry_add(fileindex, entry);
935 51514078 2018-12-25 stsp }
936 9d31a1d8 2018-03-11 stsp done:
937 3a6ce05a 2019-02-11 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
938 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
939 507dc3bb 2018-12-29 stsp free(tmppath);
940 6353ad76 2019-02-08 stsp return err;
941 6353ad76 2019-02-08 stsp }
942 6353ad76 2019-02-08 stsp
943 6353ad76 2019-02-08 stsp static const struct got_error *
944 b8f41171 2019-02-10 stsp get_file_status(unsigned char *status, struct stat *sb,
945 b8f41171 2019-02-10 stsp struct got_fileindex_entry *ie, const char *abspath,
946 b8f41171 2019-02-10 stsp struct got_repository *repo)
947 6353ad76 2019-02-08 stsp {
948 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
949 6353ad76 2019-02-08 stsp struct got_object_id id;
950 6353ad76 2019-02-08 stsp size_t hdrlen;
951 6353ad76 2019-02-08 stsp FILE *f = NULL;
952 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
953 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
954 6353ad76 2019-02-08 stsp size_t flen, blen;
955 6353ad76 2019-02-08 stsp
956 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
957 6353ad76 2019-02-08 stsp
958 b8f41171 2019-02-10 stsp if (lstat(abspath, sb) == -1) {
959 a378724f 2019-02-10 stsp if (errno == ENOENT) {
960 b8f41171 2019-02-10 stsp if (ie) {
961 b8f41171 2019-02-10 stsp *status = GOT_STATUS_MISSING;
962 b8f41171 2019-02-10 stsp sb->st_mode =
963 b8f41171 2019-02-10 stsp ((ie->mode >> GOT_FILEIDX_MODE_PERMS_SHIFT)
964 b8f41171 2019-02-10 stsp & (S_IRWXU | S_IRWXG | S_IRWXO));
965 b8f41171 2019-02-10 stsp } else
966 b8f41171 2019-02-10 stsp sb->st_mode = GOT_DEFAULT_FILE_MODE;
967 a378724f 2019-02-10 stsp return NULL;
968 a378724f 2019-02-10 stsp }
969 6353ad76 2019-02-08 stsp return got_error_from_errno();
970 a378724f 2019-02-10 stsp }
971 6353ad76 2019-02-08 stsp
972 b8f41171 2019-02-10 stsp if (!S_ISREG(sb->st_mode)) {
973 6353ad76 2019-02-08 stsp *status = GOT_STATUS_OBSTRUCTED;
974 6353ad76 2019-02-08 stsp return NULL;
975 6353ad76 2019-02-08 stsp }
976 6353ad76 2019-02-08 stsp
977 b8f41171 2019-02-10 stsp if (ie == NULL)
978 b8f41171 2019-02-10 stsp return NULL;
979 b8f41171 2019-02-10 stsp
980 b8f41171 2019-02-10 stsp if (ie->ctime_sec == sb->st_ctime &&
981 b8f41171 2019-02-10 stsp ie->ctime_nsec == sb->st_ctimensec &&
982 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
983 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
984 b8f41171 2019-02-10 stsp ie->mtime_nsec == sb->st_mtimensec &&
985 b8f41171 2019-02-10 stsp ie->size == (sb->st_size & 0xffffffff))
986 6353ad76 2019-02-08 stsp return NULL;
987 6353ad76 2019-02-08 stsp
988 6353ad76 2019-02-08 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
989 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
990 6353ad76 2019-02-08 stsp if (err)
991 6353ad76 2019-02-08 stsp return err;
992 6353ad76 2019-02-08 stsp
993 6353ad76 2019-02-08 stsp f = fopen(abspath, "r");
994 6353ad76 2019-02-08 stsp if (f == NULL) {
995 6353ad76 2019-02-08 stsp err = got_error_from_errno();
996 6353ad76 2019-02-08 stsp goto done;
997 6353ad76 2019-02-08 stsp }
998 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
999 6353ad76 2019-02-08 stsp while (1) {
1000 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1001 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
1002 6353ad76 2019-02-08 stsp if (err)
1003 6353ad76 2019-02-08 stsp break;
1004 3cbbd752 2019-02-19 stsp /* Skip length of blob object header first time around. */
1005 3cbbd752 2019-02-19 stsp flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1006 80c5c120 2019-02-19 stsp if (flen == 0 && ferror(f)) {
1007 80c5c120 2019-02-19 stsp err = got_error_from_errno();
1008 80c5c120 2019-02-19 stsp break;
1009 80c5c120 2019-02-19 stsp }
1010 6353ad76 2019-02-08 stsp if (blen == 0) {
1011 6353ad76 2019-02-08 stsp if (flen != 0)
1012 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1013 6353ad76 2019-02-08 stsp break;
1014 6353ad76 2019-02-08 stsp } else if (flen == 0) {
1015 6353ad76 2019-02-08 stsp if (blen != 0)
1016 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1017 6353ad76 2019-02-08 stsp break;
1018 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
1019 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
1020 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1021 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1022 6353ad76 2019-02-08 stsp break;
1023 6353ad76 2019-02-08 stsp }
1024 6353ad76 2019-02-08 stsp } else {
1025 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1026 6353ad76 2019-02-08 stsp break;
1027 6353ad76 2019-02-08 stsp }
1028 6353ad76 2019-02-08 stsp hdrlen = 0;
1029 6353ad76 2019-02-08 stsp }
1030 6353ad76 2019-02-08 stsp done:
1031 6353ad76 2019-02-08 stsp if (blob)
1032 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
1033 6353ad76 2019-02-08 stsp if (f)
1034 6353ad76 2019-02-08 stsp fclose(f);
1035 9d31a1d8 2018-03-11 stsp return err;
1036 9d31a1d8 2018-03-11 stsp }
1037 9d31a1d8 2018-03-11 stsp
1038 9d31a1d8 2018-03-11 stsp static const struct got_error *
1039 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
1040 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1041 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
1042 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1043 8da9e5f4 2019-01-12 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1044 9d31a1d8 2018-03-11 stsp {
1045 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1046 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
1047 6353ad76 2019-02-08 stsp char *ondisk_path;
1048 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1049 b8f41171 2019-02-10 stsp struct stat sb;
1050 9d31a1d8 2018-03-11 stsp
1051 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1052 6353ad76 2019-02-08 stsp return got_error_from_errno();
1053 6353ad76 2019-02-08 stsp
1054 b8f41171 2019-02-10 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1055 b8f41171 2019-02-10 stsp if (err)
1056 b8f41171 2019-02-10 stsp goto done;
1057 6353ad76 2019-02-08 stsp
1058 b8f41171 2019-02-10 stsp if (status == GOT_STATUS_OBSTRUCTED) {
1059 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, status, path);
1060 b8f41171 2019-02-10 stsp goto done;
1061 b8f41171 2019-02-10 stsp }
1062 b8f41171 2019-02-10 stsp
1063 b8f41171 2019-02-10 stsp if (ie && status != GOT_STATUS_MISSING) {
1064 b8f41171 2019-02-10 stsp if (memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1065 b8f41171 2019-02-10 stsp SHA1_DIGEST_LENGTH) == 0) {
1066 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1067 b8f41171 2019-02-10 stsp path);
1068 6353ad76 2019-02-08 stsp goto done;
1069 a378724f 2019-02-10 stsp }
1070 b8f41171 2019-02-10 stsp if (memcmp(ie->blob_sha1,
1071 b8f41171 2019-02-10 stsp te->id->sha1, SHA1_DIGEST_LENGTH) == 0)
1072 b8f41171 2019-02-10 stsp goto done;
1073 9d31a1d8 2018-03-11 stsp }
1074 9d31a1d8 2018-03-11 stsp
1075 8da9e5f4 2019-01-12 stsp err = got_object_open_as_blob(&blob, repo, te->id, 8192);
1076 8da9e5f4 2019-01-12 stsp if (err)
1077 6353ad76 2019-02-08 stsp goto done;
1078 512f0d0e 2019-01-02 stsp
1079 276262e8 2019-02-08 stsp if (status == GOT_STATUS_MODIFY)
1080 6353ad76 2019-02-08 stsp err = merge_blob(worktree, fileindex, ie, ondisk_path, path,
1081 b8f41171 2019-02-10 stsp te->mode, sb.st_mode, blob, repo, progress_cb,
1082 b8f41171 2019-02-10 stsp progress_arg);
1083 6353ad76 2019-02-08 stsp else
1084 6353ad76 2019-02-08 stsp err = install_blob(worktree, fileindex, ie, ondisk_path, path,
1085 b8f41171 2019-02-10 stsp te->mode, sb.st_mode, blob, status == GOT_STATUS_MISSING,
1086 b8f41171 2019-02-10 stsp repo, progress_cb, progress_arg);
1087 6353ad76 2019-02-08 stsp
1088 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
1089 6353ad76 2019-02-08 stsp done:
1090 6353ad76 2019-02-08 stsp free(ondisk_path);
1091 8da9e5f4 2019-01-12 stsp return err;
1092 90285c3b 2019-01-08 stsp }
1093 90285c3b 2019-01-08 stsp
1094 90285c3b 2019-01-08 stsp static const struct got_error *
1095 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
1096 90285c3b 2019-01-08 stsp {
1097 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
1098 90285c3b 2019-01-08 stsp char *ondisk_path = NULL;
1099 90285c3b 2019-01-08 stsp
1100 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
1101 90285c3b 2019-01-08 stsp return got_error_from_errno();
1102 90285c3b 2019-01-08 stsp
1103 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
1104 c97665ae 2019-01-13 stsp if (errno != ENOENT)
1105 c97665ae 2019-01-13 stsp err = got_error_from_errno();
1106 c97665ae 2019-01-13 stsp } else {
1107 90285c3b 2019-01-08 stsp char *parent = dirname(ondisk_path);
1108 7a9df742 2019-01-08 stsp while (parent && strcmp(parent, root_path) != 0) {
1109 26c4ac4d 2019-01-08 stsp if (rmdir(parent) == -1) {
1110 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
1111 26c4ac4d 2019-01-08 stsp err = got_error_from_errno();
1112 90285c3b 2019-01-08 stsp break;
1113 90285c3b 2019-01-08 stsp }
1114 90285c3b 2019-01-08 stsp parent = dirname(parent);
1115 90285c3b 2019-01-08 stsp }
1116 90285c3b 2019-01-08 stsp }
1117 90285c3b 2019-01-08 stsp free(ondisk_path);
1118 90285c3b 2019-01-08 stsp return err;
1119 512f0d0e 2019-01-02 stsp }
1120 512f0d0e 2019-01-02 stsp
1121 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
1122 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
1123 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
1124 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
1125 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
1126 8da9e5f4 2019-01-12 stsp void *progress_arg;
1127 8da9e5f4 2019-01-12 stsp got_worktree_cancel_cb cancel_cb;
1128 8da9e5f4 2019-01-12 stsp void *cancel_arg;
1129 8da9e5f4 2019-01-12 stsp };
1130 8da9e5f4 2019-01-12 stsp
1131 512f0d0e 2019-01-02 stsp static const struct got_error *
1132 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
1133 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
1134 512f0d0e 2019-01-02 stsp {
1135 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1136 512f0d0e 2019-01-02 stsp
1137 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
1138 8da9e5f4 2019-01-12 stsp ie->path, a->repo, a->progress_cb, a->progress_arg,
1139 8da9e5f4 2019-01-12 stsp a->cancel_cb, a->cancel_arg);
1140 8da9e5f4 2019-01-12 stsp }
1141 512f0d0e 2019-01-02 stsp
1142 8da9e5f4 2019-01-12 stsp static const struct got_error *
1143 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1144 8da9e5f4 2019-01-12 stsp {
1145 8da9e5f4 2019-01-12 stsp const struct got_error *err;
1146 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1147 7a9df742 2019-01-08 stsp
1148 8da9e5f4 2019-01-12 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE, ie->path);
1149 7a9df742 2019-01-08 stsp
1150 8da9e5f4 2019-01-12 stsp err = remove_ondisk_file(a->worktree->root_path, ie->path);
1151 8da9e5f4 2019-01-12 stsp if (err)
1152 8da9e5f4 2019-01-12 stsp return err;
1153 8da9e5f4 2019-01-12 stsp got_fileindex_entry_remove(a->fileindex, ie);
1154 8da9e5f4 2019-01-12 stsp return NULL;
1155 9d31a1d8 2018-03-11 stsp }
1156 9d31a1d8 2018-03-11 stsp
1157 9d31a1d8 2018-03-11 stsp static const struct got_error *
1158 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
1159 9d31a1d8 2018-03-11 stsp {
1160 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1161 8da9e5f4 2019-01-12 stsp const struct got_error *err;
1162 8da9e5f4 2019-01-12 stsp char *path;
1163 9d31a1d8 2018-03-11 stsp
1164 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
1165 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
1166 8da9e5f4 2019-01-12 stsp == -1)
1167 8da9e5f4 2019-01-12 stsp return got_error_from_errno();
1168 9d31a1d8 2018-03-11 stsp
1169 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
1170 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
1171 8da9e5f4 2019-01-12 stsp else
1172 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
1173 8da9e5f4 2019-01-12 stsp a->repo, a->progress_cb, a->progress_arg,
1174 8da9e5f4 2019-01-12 stsp a->cancel_cb, a->cancel_arg);
1175 9d31a1d8 2018-03-11 stsp
1176 8da9e5f4 2019-01-12 stsp free(path);
1177 9d31a1d8 2018-03-11 stsp return err;
1178 9d31a1d8 2018-03-11 stsp }
1179 9d31a1d8 2018-03-11 stsp
1180 9d31a1d8 2018-03-11 stsp const struct got_error *
1181 9d31a1d8 2018-03-11 stsp got_worktree_checkout_files(struct got_worktree *worktree,
1182 93a30277 2018-12-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1183 93a30277 2018-12-24 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1184 9d31a1d8 2018-03-11 stsp {
1185 a143fb78 2018-12-25 stsp const struct got_error *err = NULL, *unlockerr, *checkout_err = NULL;
1186 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
1187 8da9e5f4 2019-01-12 stsp struct got_object_id *tree_id = NULL;
1188 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
1189 9d31a1d8 2018-03-11 stsp char *fileindex_path = NULL, *new_fileindex_path = NULL;
1190 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
1191 51514078 2018-12-25 stsp FILE *index = NULL, *new_index = NULL;
1192 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb diff_cb;
1193 8da9e5f4 2019-01-12 stsp struct diff_cb_arg arg;
1194 9d31a1d8 2018-03-11 stsp
1195 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
1196 9d31a1d8 2018-03-11 stsp if (err)
1197 9d31a1d8 2018-03-11 stsp return err;
1198 93a30277 2018-12-24 stsp
1199 133d2798 2019-01-08 stsp fileindex = got_fileindex_alloc();
1200 133d2798 2019-01-08 stsp if (fileindex == NULL) {
1201 133d2798 2019-01-08 stsp err = got_error_from_errno();
1202 9d31a1d8 2018-03-11 stsp goto done;
1203 133d2798 2019-01-08 stsp }
1204 9d31a1d8 2018-03-11 stsp
1205 9d31a1d8 2018-03-11 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1206 9d31a1d8 2018-03-11 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1207 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
1208 9d31a1d8 2018-03-11 stsp fileindex_path = NULL;
1209 9d31a1d8 2018-03-11 stsp goto done;
1210 9d31a1d8 2018-03-11 stsp }
1211 9d31a1d8 2018-03-11 stsp
1212 51514078 2018-12-25 stsp /*
1213 51514078 2018-12-25 stsp * Read the file index.
1214 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
1215 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
1216 51514078 2018-12-25 stsp */
1217 51514078 2018-12-25 stsp index = fopen(fileindex_path, "rb");
1218 51514078 2018-12-25 stsp if (index == NULL) {
1219 cf61d818 2019-01-12 stsp if (errno != ENOENT) {
1220 cf61d818 2019-01-12 stsp err = got_error_from_errno();
1221 cf61d818 2019-01-12 stsp goto done;
1222 cf61d818 2019-01-12 stsp }
1223 cf61d818 2019-01-12 stsp } else {
1224 cf61d818 2019-01-12 stsp err = got_fileindex_read(fileindex, index);
1225 cf61d818 2019-01-12 stsp fclose(index);
1226 cf61d818 2019-01-12 stsp if (err)
1227 cf61d818 2019-01-12 stsp goto done;
1228 51514078 2018-12-25 stsp }
1229 51514078 2018-12-25 stsp
1230 b8bdcc21 2018-12-24 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
1231 b8bdcc21 2018-12-24 stsp fileindex_path);
1232 51664889 2018-03-12 stsp if (err)
1233 51664889 2018-03-12 stsp goto done;
1234 51664889 2018-03-12 stsp
1235 eaccb85f 2018-12-25 stsp err = got_object_open_as_commit(&commit, repo,
1236 eaccb85f 2018-12-25 stsp worktree->base_commit_id);
1237 9d31a1d8 2018-03-11 stsp if (err)
1238 9d31a1d8 2018-03-11 stsp goto done;
1239 9d31a1d8 2018-03-11 stsp
1240 8da9e5f4 2019-01-12 stsp err = got_object_id_by_path(&tree_id, repo,
1241 8da9e5f4 2019-01-12 stsp worktree->base_commit_id, worktree->path_prefix);
1242 9d31a1d8 2018-03-11 stsp if (err)
1243 9d31a1d8 2018-03-11 stsp goto done;
1244 9d31a1d8 2018-03-11 stsp
1245 8da9e5f4 2019-01-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1246 8da9e5f4 2019-01-12 stsp if (err)
1247 8da9e5f4 2019-01-12 stsp goto done;
1248 9d31a1d8 2018-03-11 stsp
1249 8da9e5f4 2019-01-12 stsp diff_cb.diff_old_new = diff_old_new;
1250 8da9e5f4 2019-01-12 stsp diff_cb.diff_old = diff_old;
1251 8da9e5f4 2019-01-12 stsp diff_cb.diff_new = diff_new;
1252 8da9e5f4 2019-01-12 stsp arg.fileindex = fileindex;
1253 8da9e5f4 2019-01-12 stsp arg.worktree = worktree;
1254 8da9e5f4 2019-01-12 stsp arg.repo = repo;
1255 8da9e5f4 2019-01-12 stsp arg.progress_cb = progress_cb;
1256 8da9e5f4 2019-01-12 stsp arg.progress_arg = progress_arg;
1257 8da9e5f4 2019-01-12 stsp arg.cancel_cb = cancel_cb;
1258 8da9e5f4 2019-01-12 stsp arg.cancel_arg = cancel_arg;
1259 8da9e5f4 2019-01-12 stsp checkout_err = got_fileindex_diff_tree(fileindex, tree, repo,
1260 8da9e5f4 2019-01-12 stsp &diff_cb, &arg);
1261 8da9e5f4 2019-01-12 stsp
1262 a143fb78 2018-12-25 stsp /* Try to sync the fileindex back to disk in any case. */
1263 b8bdcc21 2018-12-24 stsp err = got_fileindex_write(fileindex, new_index);
1264 9d31a1d8 2018-03-11 stsp if (err)
1265 9d31a1d8 2018-03-11 stsp goto done;
1266 9d31a1d8 2018-03-11 stsp
1267 9d31a1d8 2018-03-11 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
1268 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
1269 9d31a1d8 2018-03-11 stsp goto done;
1270 9d31a1d8 2018-03-11 stsp }
1271 9d31a1d8 2018-03-11 stsp
1272 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1273 9d31a1d8 2018-03-11 stsp new_fileindex_path = NULL;
1274 9d31a1d8 2018-03-11 stsp
1275 9d31a1d8 2018-03-11 stsp done:
1276 edfa7d7f 2018-09-11 stsp if (tree)
1277 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
1278 9d31a1d8 2018-03-11 stsp if (commit)
1279 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
1280 9d31a1d8 2018-03-11 stsp if (new_fileindex_path)
1281 9d31a1d8 2018-03-11 stsp unlink(new_fileindex_path);
1282 b8bdcc21 2018-12-24 stsp if (new_index)
1283 b8bdcc21 2018-12-24 stsp fclose(new_index);
1284 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1285 9d31a1d8 2018-03-11 stsp free(fileindex_path);
1286 7426bbfd 2018-12-24 stsp got_fileindex_free(fileindex);
1287 a143fb78 2018-12-25 stsp if (checkout_err)
1288 a143fb78 2018-12-25 stsp err = checkout_err;
1289 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1290 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
1291 9d31a1d8 2018-03-11 stsp err = unlockerr;
1292 f8d1f275 2019-02-04 stsp return err;
1293 f8d1f275 2019-02-04 stsp }
1294 f8d1f275 2019-02-04 stsp
1295 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
1296 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
1297 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
1298 927df6b7 2019-02-10 stsp const char *status_path;
1299 927df6b7 2019-02-10 stsp size_t status_path_len;
1300 f8d1f275 2019-02-04 stsp struct got_repository *repo;
1301 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
1302 f8d1f275 2019-02-04 stsp void *status_arg;
1303 f8d1f275 2019-02-04 stsp got_worktree_cancel_cb cancel_cb;
1304 f8d1f275 2019-02-04 stsp void *cancel_arg;
1305 f8d1f275 2019-02-04 stsp };
1306 f8d1f275 2019-02-04 stsp
1307 f8d1f275 2019-02-04 stsp static const struct got_error *
1308 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
1309 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
1310 927df6b7 2019-02-10 stsp struct got_repository *repo)
1311 927df6b7 2019-02-10 stsp {
1312 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
1313 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1314 927df6b7 2019-02-10 stsp struct stat sb;
1315 927df6b7 2019-02-10 stsp struct got_object_id id;
1316 927df6b7 2019-02-10 stsp
1317 927df6b7 2019-02-10 stsp err = get_file_status(&status, &sb, ie, abspath, repo);
1318 927df6b7 2019-02-10 stsp if (err == NULL && status != GOT_STATUS_NO_CHANGE) {
1319 927df6b7 2019-02-10 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1320 927df6b7 2019-02-10 stsp err = (*status_cb)(status_arg, status, ie->path, &id);
1321 927df6b7 2019-02-10 stsp }
1322 927df6b7 2019-02-10 stsp return err;
1323 927df6b7 2019-02-10 stsp }
1324 927df6b7 2019-02-10 stsp
1325 927df6b7 2019-02-10 stsp static const struct got_error *
1326 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
1327 f8d1f275 2019-02-04 stsp struct dirent *de, const char *parent_path)
1328 f8d1f275 2019-02-04 stsp {
1329 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1330 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1331 f8d1f275 2019-02-04 stsp char *abspath;
1332 f8d1f275 2019-02-04 stsp
1333 927df6b7 2019-02-10 stsp if (got_path_cmp(parent_path, a->status_path) != 0 &&
1334 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
1335 927df6b7 2019-02-10 stsp return NULL;
1336 927df6b7 2019-02-10 stsp
1337 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1338 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
1339 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
1340 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1341 f8d1f275 2019-02-04 stsp } else {
1342 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
1343 f8d1f275 2019-02-04 stsp de->d_name) == -1)
1344 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1345 f8d1f275 2019-02-04 stsp }
1346 f8d1f275 2019-02-04 stsp
1347 927df6b7 2019-02-10 stsp err = report_file_status(ie, abspath, a->status_cb, a->status_arg,
1348 927df6b7 2019-02-10 stsp a->repo);
1349 f8d1f275 2019-02-04 stsp free(abspath);
1350 9d31a1d8 2018-03-11 stsp return err;
1351 9d31a1d8 2018-03-11 stsp }
1352 f8d1f275 2019-02-04 stsp
1353 f8d1f275 2019-02-04 stsp static const struct got_error *
1354 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1355 f8d1f275 2019-02-04 stsp {
1356 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1357 b72f483a 2019-02-05 stsp struct got_object_id id;
1358 927df6b7 2019-02-10 stsp
1359 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
1360 927df6b7 2019-02-10 stsp return NULL;
1361 927df6b7 2019-02-10 stsp
1362 b72f483a 2019-02-05 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1363 b72f483a 2019-02-05 stsp return (*a->status_cb)(a->status_arg, GOT_STATUS_MISSING, ie->path,
1364 b72f483a 2019-02-05 stsp &id);
1365 f8d1f275 2019-02-04 stsp }
1366 f8d1f275 2019-02-04 stsp
1367 f8d1f275 2019-02-04 stsp static const struct got_error *
1368 f8d1f275 2019-02-04 stsp status_new(void *arg, struct dirent *de, const char *parent_path)
1369 f8d1f275 2019-02-04 stsp {
1370 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1371 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1372 f8d1f275 2019-02-04 stsp char *path = NULL;
1373 f8d1f275 2019-02-04 stsp
1374 f8d1f275 2019-02-04 stsp if (de->d_type == DT_DIR)
1375 2c201a36 2019-02-10 stsp return NULL;
1376 2c201a36 2019-02-10 stsp
1377 2c201a36 2019-02-10 stsp /* XXX ignore symlinks for now */
1378 2c201a36 2019-02-10 stsp if (de->d_type == DT_LNK)
1379 f8d1f275 2019-02-04 stsp return NULL;
1380 f8d1f275 2019-02-04 stsp
1381 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
1382 927df6b7 2019-02-10 stsp return NULL;
1383 927df6b7 2019-02-10 stsp
1384 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1385 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
1386 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1387 f8d1f275 2019-02-04 stsp } else {
1388 f8d1f275 2019-02-04 stsp path = de->d_name;
1389 f8d1f275 2019-02-04 stsp }
1390 f8d1f275 2019-02-04 stsp
1391 b72f483a 2019-02-05 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED, path,
1392 b72f483a 2019-02-05 stsp NULL);
1393 f8d1f275 2019-02-04 stsp if (parent_path[0])
1394 f8d1f275 2019-02-04 stsp free(path);
1395 b72f483a 2019-02-05 stsp return err;
1396 f8d1f275 2019-02-04 stsp }
1397 f8d1f275 2019-02-04 stsp
1398 f8d1f275 2019-02-04 stsp const struct got_error *
1399 927df6b7 2019-02-10 stsp got_worktree_status(struct got_worktree *worktree, const char *path,
1400 f8d1f275 2019-02-04 stsp struct got_repository *repo, got_worktree_status_cb status_cb,
1401 f8d1f275 2019-02-04 stsp void *status_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1402 f8d1f275 2019-02-04 stsp {
1403 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1404 f8d1f275 2019-02-04 stsp DIR *workdir = NULL;
1405 f8d1f275 2019-02-04 stsp char *fileindex_path = NULL;
1406 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex = NULL;
1407 f8d1f275 2019-02-04 stsp FILE *index = NULL;
1408 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
1409 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
1410 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
1411 f8d1f275 2019-02-04 stsp
1412 f8d1f275 2019-02-04 stsp fileindex = got_fileindex_alloc();
1413 f8d1f275 2019-02-04 stsp if (fileindex == NULL) {
1414 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1415 f8d1f275 2019-02-04 stsp goto done;
1416 f8d1f275 2019-02-04 stsp }
1417 f8d1f275 2019-02-04 stsp
1418 f8d1f275 2019-02-04 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1419 f8d1f275 2019-02-04 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1420 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1421 f8d1f275 2019-02-04 stsp fileindex_path = NULL;
1422 f8d1f275 2019-02-04 stsp goto done;
1423 f8d1f275 2019-02-04 stsp }
1424 f8d1f275 2019-02-04 stsp
1425 f8d1f275 2019-02-04 stsp index = fopen(fileindex_path, "rb");
1426 f8d1f275 2019-02-04 stsp if (index == NULL) {
1427 f8d1f275 2019-02-04 stsp if (errno != ENOENT) {
1428 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1429 f8d1f275 2019-02-04 stsp goto done;
1430 f8d1f275 2019-02-04 stsp }
1431 f8d1f275 2019-02-04 stsp } else {
1432 f8d1f275 2019-02-04 stsp err = got_fileindex_read(fileindex, index);
1433 f8d1f275 2019-02-04 stsp fclose(index);
1434 f8d1f275 2019-02-04 stsp if (err)
1435 f8d1f275 2019-02-04 stsp goto done;
1436 f8d1f275 2019-02-04 stsp }
1437 f8d1f275 2019-02-04 stsp
1438 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
1439 927df6b7 2019-02-10 stsp worktree->root_path, path[0] ? "/" : "", path) == -1) {
1440 c513d110 2019-02-05 stsp err = got_error_from_errno();
1441 c513d110 2019-02-05 stsp goto done;
1442 c513d110 2019-02-05 stsp }
1443 927df6b7 2019-02-10 stsp workdir = opendir(ondisk_path);
1444 927df6b7 2019-02-10 stsp if (workdir == NULL) {
1445 927df6b7 2019-02-10 stsp if (errno == ENOTDIR) {
1446 927df6b7 2019-02-10 stsp struct got_fileindex_entry *ie;
1447 927df6b7 2019-02-10 stsp ie = got_fileindex_entry_get(fileindex, path);
1448 927df6b7 2019-02-10 stsp if (ie == NULL) {
1449 927df6b7 2019-02-10 stsp err = got_error(GOT_ERR_BAD_PATH);
1450 927df6b7 2019-02-10 stsp goto done;
1451 927df6b7 2019-02-10 stsp }
1452 927df6b7 2019-02-10 stsp err = report_file_status(ie, ondisk_path,
1453 927df6b7 2019-02-10 stsp status_cb, status_arg, repo);
1454 927df6b7 2019-02-10 stsp goto done;
1455 927df6b7 2019-02-10 stsp } else {
1456 927df6b7 2019-02-10 stsp err = got_error_from_errno();
1457 927df6b7 2019-02-10 stsp goto done;
1458 927df6b7 2019-02-10 stsp }
1459 927df6b7 2019-02-10 stsp }
1460 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old_new = status_old_new;
1461 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old = status_old;
1462 d43a8a88 2019-02-05 stsp fdiff_cb.diff_new = status_new;
1463 f8d1f275 2019-02-04 stsp arg.fileindex = fileindex;
1464 f8d1f275 2019-02-04 stsp arg.worktree = worktree;
1465 927df6b7 2019-02-10 stsp arg.status_path = path;
1466 927df6b7 2019-02-10 stsp arg.status_path_len = strlen(path);
1467 f8d1f275 2019-02-04 stsp arg.repo = repo;
1468 f8d1f275 2019-02-04 stsp arg.status_cb = status_cb;
1469 f8d1f275 2019-02-04 stsp arg.status_arg = status_arg;
1470 f8d1f275 2019-02-04 stsp arg.cancel_cb = cancel_cb;
1471 f8d1f275 2019-02-04 stsp arg.cancel_arg = cancel_arg;
1472 c7f4312f 2019-02-05 stsp err = got_fileindex_diff_dir(fileindex, workdir, worktree->root_path,
1473 927df6b7 2019-02-10 stsp path, repo, &fdiff_cb, &arg);
1474 f8d1f275 2019-02-04 stsp done:
1475 f8d1f275 2019-02-04 stsp if (workdir)
1476 f8d1f275 2019-02-04 stsp closedir(workdir);
1477 927df6b7 2019-02-10 stsp free(ondisk_path);
1478 f8d1f275 2019-02-04 stsp free(fileindex_path);
1479 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
1480 f8d1f275 2019-02-04 stsp return err;
1481 f8d1f275 2019-02-04 stsp }