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