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 6353ad76 2019-02-08 stsp struct got_blob_object *blob1, struct got_repository *repo,
609 6353ad76 2019-02-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
610 6353ad76 2019-02-08 stsp {
611 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
612 6353ad76 2019-02-08 stsp int merged_fd = -1;
613 6353ad76 2019-02-08 stsp struct got_blob_object *blob2 = NULL;
614 6353ad76 2019-02-08 stsp FILE *f1 = NULL, *f2 = NULL;
615 6353ad76 2019-02-08 stsp char *blob1_path = NULL, *blob2_path = NULL;
616 6353ad76 2019-02-08 stsp char *merged_path = NULL;
617 6353ad76 2019-02-08 stsp struct got_object_id id2;
618 6353ad76 2019-02-08 stsp char *id_str = NULL;
619 6353ad76 2019-02-08 stsp char *label1 = NULL;
620 6353ad76 2019-02-08 stsp int overlapcnt = 0;
621 6353ad76 2019-02-08 stsp
622 6353ad76 2019-02-08 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, "/tmp/got-merged");
623 6353ad76 2019-02-08 stsp if (err)
624 6353ad76 2019-02-08 stsp return err;
625 6353ad76 2019-02-08 stsp err = got_opentemp_named(&blob1_path, &f1, "/tmp/got-merge-blob1");
626 6353ad76 2019-02-08 stsp if (err)
627 6353ad76 2019-02-08 stsp goto done;
628 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f1, blob1);
629 6353ad76 2019-02-08 stsp if (err)
630 6353ad76 2019-02-08 stsp goto done;
631 6353ad76 2019-02-08 stsp
632 6353ad76 2019-02-08 stsp err = got_opentemp_named(&blob2_path, &f2, "/tmp/got-merge-blob2");
633 6353ad76 2019-02-08 stsp if (err)
634 6353ad76 2019-02-08 stsp goto done;
635 6353ad76 2019-02-08 stsp
636 6353ad76 2019-02-08 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
637 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
638 6353ad76 2019-02-08 stsp if (err)
639 6353ad76 2019-02-08 stsp goto done;
640 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f2, blob2);
641 6353ad76 2019-02-08 stsp if (err)
642 6353ad76 2019-02-08 stsp goto done;
643 6353ad76 2019-02-08 stsp
644 6353ad76 2019-02-08 stsp err = got_object_id_str(&id_str, worktree->base_commit_id);
645 6353ad76 2019-02-08 stsp if (err)
646 6353ad76 2019-02-08 stsp goto done;
647 6353ad76 2019-02-08 stsp if (asprintf(&label1, "commit %s", id_str) == -1) {
648 6353ad76 2019-02-08 stsp err = got_error_from_errno();
649 6353ad76 2019-02-08 stsp goto done;
650 6353ad76 2019-02-08 stsp }
651 6353ad76 2019-02-08 stsp
652 6353ad76 2019-02-08 stsp err = got_merge_diff3(&overlapcnt, merged_fd, blob1_path,
653 6353ad76 2019-02-08 stsp blob2_path, ondisk_path, label1, path);
654 6353ad76 2019-02-08 stsp if (err)
655 6353ad76 2019-02-08 stsp goto done;
656 6353ad76 2019-02-08 stsp
657 6353ad76 2019-02-08 stsp (*progress_cb)(progress_arg,
658 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
659 6353ad76 2019-02-08 stsp
660 6353ad76 2019-02-08 stsp
661 6353ad76 2019-02-08 stsp fsync(merged_fd);
662 6353ad76 2019-02-08 stsp
663 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
664 6353ad76 2019-02-08 stsp err = got_error_from_errno();
665 6353ad76 2019-02-08 stsp goto done;
666 6353ad76 2019-02-08 stsp }
667 6353ad76 2019-02-08 stsp
668 6353ad76 2019-02-08 stsp err = got_fileindex_entry_update(ie, ondisk_path,
669 6353ad76 2019-02-08 stsp blob1->id.sha1, worktree->base_commit_id->sha1);
670 6353ad76 2019-02-08 stsp done:
671 6353ad76 2019-02-08 stsp if (merged_fd != -1)
672 6353ad76 2019-02-08 stsp close(merged_fd);
673 6353ad76 2019-02-08 stsp if (f1)
674 6353ad76 2019-02-08 stsp fclose(f1);
675 6353ad76 2019-02-08 stsp if (f2)
676 6353ad76 2019-02-08 stsp fclose(f2);
677 6353ad76 2019-02-08 stsp if (blob2)
678 6353ad76 2019-02-08 stsp got_object_blob_close(blob2);
679 6353ad76 2019-02-08 stsp free(merged_path);
680 6353ad76 2019-02-08 stsp if (blob1_path) {
681 6353ad76 2019-02-08 stsp unlink(blob1_path);
682 6353ad76 2019-02-08 stsp free(blob1_path);
683 6353ad76 2019-02-08 stsp }
684 6353ad76 2019-02-08 stsp if (blob2_path) {
685 6353ad76 2019-02-08 stsp unlink(blob2_path);
686 6353ad76 2019-02-08 stsp free(blob2_path);
687 6353ad76 2019-02-08 stsp }
688 6353ad76 2019-02-08 stsp free(id_str);
689 6353ad76 2019-02-08 stsp free(label1);
690 4a1ddfc2 2019-01-12 stsp return err;
691 4a1ddfc2 2019-01-12 stsp }
692 4a1ddfc2 2019-01-12 stsp
693 4a1ddfc2 2019-01-12 stsp static const struct got_error *
694 8da9e5f4 2019-01-12 stsp install_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
695 6353ad76 2019-02-08 stsp struct got_fileindex_entry *entry, const char *ondisk_path, const char *path,
696 8da9e5f4 2019-01-12 stsp struct got_blob_object *blob,
697 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
698 8da9e5f4 2019-01-12 stsp void *progress_arg)
699 9d31a1d8 2018-03-11 stsp {
700 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
701 507dc3bb 2018-12-29 stsp int fd = -1;
702 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
703 507dc3bb 2018-12-29 stsp int update = 0;
704 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
705 9d31a1d8 2018-03-11 stsp
706 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
707 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
708 9d31a1d8 2018-03-11 stsp if (fd == -1) {
709 21908da4 2019-01-13 stsp if (errno == ENOENT) {
710 21908da4 2019-01-13 stsp char *parent = dirname(path);
711 21908da4 2019-01-13 stsp if (parent == NULL)
712 21908da4 2019-01-13 stsp return got_error_from_errno();
713 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
714 21908da4 2019-01-13 stsp if (err)
715 21908da4 2019-01-13 stsp return err;
716 21908da4 2019-01-13 stsp fd = open(ondisk_path,
717 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
718 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
719 21908da4 2019-01-13 stsp if (fd == -1)
720 21908da4 2019-01-13 stsp return got_error_from_errno();
721 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
722 9d31a1d8 2018-03-11 stsp struct stat sb;
723 c34b20a2 2018-03-12 stsp if (lstat(ondisk_path, &sb) == -1) {
724 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
725 507dc3bb 2018-12-29 stsp goto done;
726 9d31a1d8 2018-03-11 stsp } else if (!S_ISREG(sb.st_mode)) {
727 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
728 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
729 507dc3bb 2018-12-29 stsp goto done;
730 d70b8e30 2018-12-27 stsp } else {
731 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
732 507dc3bb 2018-12-29 stsp ondisk_path);
733 507dc3bb 2018-12-29 stsp if (err)
734 507dc3bb 2018-12-29 stsp goto done;
735 507dc3bb 2018-12-29 stsp update = 1;
736 9d31a1d8 2018-03-11 stsp }
737 507dc3bb 2018-12-29 stsp } else
738 7e7c1e4c 2019-01-12 stsp return got_error_from_errno();
739 9d31a1d8 2018-03-11 stsp }
740 9d31a1d8 2018-03-11 stsp
741 507dc3bb 2018-12-29 stsp (*progress_cb)(progress_arg,
742 8da9e5f4 2019-01-12 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
743 d7b62c98 2018-12-27 stsp
744 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
745 9d31a1d8 2018-03-11 stsp do {
746 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
747 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
748 9d31a1d8 2018-03-11 stsp if (err)
749 9d31a1d8 2018-03-11 stsp break;
750 9d31a1d8 2018-03-11 stsp if (len > 0) {
751 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
752 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
753 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
754 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
755 b87c6f83 2018-12-24 stsp goto done;
756 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
757 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
758 b87c6f83 2018-12-24 stsp goto done;
759 9d31a1d8 2018-03-11 stsp }
760 61d6eaa3 2018-12-24 stsp hdrlen = 0;
761 9d31a1d8 2018-03-11 stsp }
762 9d31a1d8 2018-03-11 stsp } while (len != 0);
763 9d31a1d8 2018-03-11 stsp
764 9d31a1d8 2018-03-11 stsp fsync(fd);
765 9d31a1d8 2018-03-11 stsp
766 507dc3bb 2018-12-29 stsp if (update) {
767 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
768 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
769 507dc3bb 2018-12-29 stsp goto done;
770 507dc3bb 2018-12-29 stsp }
771 507dc3bb 2018-12-29 stsp }
772 507dc3bb 2018-12-29 stsp
773 5f9fef37 2019-01-13 stsp if (entry == NULL)
774 5f9fef37 2019-01-13 stsp entry = got_fileindex_entry_get(fileindex, path);
775 51514078 2018-12-25 stsp if (entry)
776 51514078 2018-12-25 stsp err = got_fileindex_entry_update(entry, ondisk_path,
777 51514078 2018-12-25 stsp blob->id.sha1, worktree->base_commit_id->sha1);
778 51514078 2018-12-25 stsp else {
779 51514078 2018-12-25 stsp err = got_fileindex_entry_alloc(&entry, ondisk_path,
780 8da9e5f4 2019-01-12 stsp path, blob->id.sha1, worktree->base_commit_id->sha1);
781 51514078 2018-12-25 stsp if (err)
782 51514078 2018-12-25 stsp goto done;
783 51514078 2018-12-25 stsp err = got_fileindex_entry_add(fileindex, entry);
784 51514078 2018-12-25 stsp }
785 9d31a1d8 2018-03-11 stsp done:
786 507dc3bb 2018-12-29 stsp if (fd != -1)
787 507dc3bb 2018-12-29 stsp close(fd);
788 507dc3bb 2018-12-29 stsp free(tmppath);
789 6353ad76 2019-02-08 stsp return err;
790 6353ad76 2019-02-08 stsp }
791 6353ad76 2019-02-08 stsp
792 6353ad76 2019-02-08 stsp static const struct got_error *
793 6353ad76 2019-02-08 stsp get_file_status(unsigned char *status, struct got_fileindex_entry *ie,
794 6353ad76 2019-02-08 stsp const char *abspath, struct got_repository *repo)
795 6353ad76 2019-02-08 stsp {
796 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
797 6353ad76 2019-02-08 stsp struct got_object_id id;
798 6353ad76 2019-02-08 stsp size_t hdrlen;
799 6353ad76 2019-02-08 stsp FILE *f = NULL;
800 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
801 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
802 6353ad76 2019-02-08 stsp size_t flen, blen;
803 6353ad76 2019-02-08 stsp struct stat sb;
804 6353ad76 2019-02-08 stsp
805 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
806 6353ad76 2019-02-08 stsp
807 6353ad76 2019-02-08 stsp if (lstat(abspath, &sb) == -1)
808 6353ad76 2019-02-08 stsp return got_error_from_errno();
809 6353ad76 2019-02-08 stsp
810 6353ad76 2019-02-08 stsp if (!S_ISREG(sb.st_mode)) {
811 6353ad76 2019-02-08 stsp *status = GOT_STATUS_OBSTRUCTED;
812 6353ad76 2019-02-08 stsp return NULL;
813 6353ad76 2019-02-08 stsp }
814 6353ad76 2019-02-08 stsp
815 6353ad76 2019-02-08 stsp if (ie->ctime_sec == sb.st_ctime &&
816 6353ad76 2019-02-08 stsp ie->ctime_nsec == sb.st_ctimensec &&
817 6353ad76 2019-02-08 stsp ie->mtime_sec == sb.st_mtime &&
818 6353ad76 2019-02-08 stsp ie->mtime_sec == sb.st_mtime &&
819 6353ad76 2019-02-08 stsp ie->mtime_nsec == sb.st_mtimensec &&
820 6353ad76 2019-02-08 stsp ie->size == (sb.st_size & 0xffffffff))
821 6353ad76 2019-02-08 stsp return NULL;
822 6353ad76 2019-02-08 stsp
823 6353ad76 2019-02-08 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
824 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
825 6353ad76 2019-02-08 stsp if (err)
826 6353ad76 2019-02-08 stsp return err;
827 6353ad76 2019-02-08 stsp
828 6353ad76 2019-02-08 stsp f = fopen(abspath, "r");
829 6353ad76 2019-02-08 stsp if (f == NULL) {
830 6353ad76 2019-02-08 stsp err = got_error_from_errno();
831 6353ad76 2019-02-08 stsp goto done;
832 6353ad76 2019-02-08 stsp }
833 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
834 6353ad76 2019-02-08 stsp while (1) {
835 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
836 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
837 6353ad76 2019-02-08 stsp if (err)
838 6353ad76 2019-02-08 stsp break;
839 6353ad76 2019-02-08 stsp flen = fread(fbuf, 1, sizeof(fbuf), f);
840 6353ad76 2019-02-08 stsp if (blen == 0) {
841 6353ad76 2019-02-08 stsp if (flen != 0)
842 6353ad76 2019-02-08 stsp *status = GOT_STATUS_MODIFIY;
843 6353ad76 2019-02-08 stsp break;
844 6353ad76 2019-02-08 stsp } else if (flen == 0) {
845 6353ad76 2019-02-08 stsp if (blen != 0)
846 6353ad76 2019-02-08 stsp *status = GOT_STATUS_MODIFIY;
847 6353ad76 2019-02-08 stsp break;
848 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
849 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
850 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
851 6353ad76 2019-02-08 stsp *status = GOT_STATUS_MODIFIY;
852 6353ad76 2019-02-08 stsp break;
853 6353ad76 2019-02-08 stsp }
854 6353ad76 2019-02-08 stsp } else {
855 6353ad76 2019-02-08 stsp *status = GOT_STATUS_MODIFIY;
856 6353ad76 2019-02-08 stsp break;
857 6353ad76 2019-02-08 stsp }
858 6353ad76 2019-02-08 stsp hdrlen = 0;
859 6353ad76 2019-02-08 stsp }
860 6353ad76 2019-02-08 stsp done:
861 6353ad76 2019-02-08 stsp if (blob)
862 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
863 6353ad76 2019-02-08 stsp if (f)
864 6353ad76 2019-02-08 stsp fclose(f);
865 9d31a1d8 2018-03-11 stsp return err;
866 9d31a1d8 2018-03-11 stsp }
867 9d31a1d8 2018-03-11 stsp
868 9d31a1d8 2018-03-11 stsp static const struct got_error *
869 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
870 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
871 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
872 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
873 8da9e5f4 2019-01-12 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
874 9d31a1d8 2018-03-11 stsp {
875 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
876 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
877 6353ad76 2019-02-08 stsp char *ondisk_path;
878 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
879 9d31a1d8 2018-03-11 stsp
880 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
881 6353ad76 2019-02-08 stsp return got_error_from_errno();
882 6353ad76 2019-02-08 stsp
883 8da9e5f4 2019-01-12 stsp if (ie) {
884 8da9e5f4 2019-01-12 stsp if (memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
885 507dc3bb 2018-12-29 stsp SHA1_DIGEST_LENGTH) == 0) {
886 507dc3bb 2018-12-29 stsp (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
887 8da9e5f4 2019-01-12 stsp path);
888 6353ad76 2019-02-08 stsp goto done;
889 507dc3bb 2018-12-29 stsp }
890 8da9e5f4 2019-01-12 stsp if (memcmp(ie->blob_sha1,
891 8da9e5f4 2019-01-12 stsp te->id->sha1, SHA1_DIGEST_LENGTH) == 0)
892 6353ad76 2019-02-08 stsp goto done;
893 6353ad76 2019-02-08 stsp
894 6353ad76 2019-02-08 stsp err = get_file_status(&status, ie, ondisk_path, repo);
895 6353ad76 2019-02-08 stsp if (err)
896 6353ad76 2019-02-08 stsp goto done;
897 6353ad76 2019-02-08 stsp
898 6353ad76 2019-02-08 stsp if (status == GOT_STATUS_OBSTRUCTED) {
899 6353ad76 2019-02-08 stsp (*progress_cb)(progress_arg, status, path);
900 6353ad76 2019-02-08 stsp goto done;
901 6353ad76 2019-02-08 stsp }
902 9d31a1d8 2018-03-11 stsp }
903 9d31a1d8 2018-03-11 stsp
904 8da9e5f4 2019-01-12 stsp err = got_object_open_as_blob(&blob, repo, te->id, 8192);
905 8da9e5f4 2019-01-12 stsp if (err)
906 6353ad76 2019-02-08 stsp goto done;
907 512f0d0e 2019-01-02 stsp
908 6353ad76 2019-02-08 stsp if (status == GOT_STATUS_MODIFIY)
909 6353ad76 2019-02-08 stsp err = merge_blob(worktree, fileindex, ie, ondisk_path, path,
910 6353ad76 2019-02-08 stsp blob, repo, progress_cb, progress_arg);
911 6353ad76 2019-02-08 stsp else
912 6353ad76 2019-02-08 stsp err = install_blob(worktree, fileindex, ie, ondisk_path, path,
913 6353ad76 2019-02-08 stsp blob, repo, progress_cb, progress_arg);
914 6353ad76 2019-02-08 stsp
915 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
916 6353ad76 2019-02-08 stsp done:
917 6353ad76 2019-02-08 stsp free(ondisk_path);
918 8da9e5f4 2019-01-12 stsp return err;
919 90285c3b 2019-01-08 stsp }
920 90285c3b 2019-01-08 stsp
921 90285c3b 2019-01-08 stsp static const struct got_error *
922 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
923 90285c3b 2019-01-08 stsp {
924 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
925 90285c3b 2019-01-08 stsp char *ondisk_path = NULL;
926 90285c3b 2019-01-08 stsp
927 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
928 90285c3b 2019-01-08 stsp return got_error_from_errno();
929 90285c3b 2019-01-08 stsp
930 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
931 c97665ae 2019-01-13 stsp if (errno != ENOENT)
932 c97665ae 2019-01-13 stsp err = got_error_from_errno();
933 c97665ae 2019-01-13 stsp } else {
934 90285c3b 2019-01-08 stsp char *parent = dirname(ondisk_path);
935 7a9df742 2019-01-08 stsp while (parent && strcmp(parent, root_path) != 0) {
936 26c4ac4d 2019-01-08 stsp if (rmdir(parent) == -1) {
937 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
938 26c4ac4d 2019-01-08 stsp err = got_error_from_errno();
939 90285c3b 2019-01-08 stsp break;
940 90285c3b 2019-01-08 stsp }
941 90285c3b 2019-01-08 stsp parent = dirname(parent);
942 90285c3b 2019-01-08 stsp }
943 90285c3b 2019-01-08 stsp }
944 90285c3b 2019-01-08 stsp free(ondisk_path);
945 90285c3b 2019-01-08 stsp return err;
946 512f0d0e 2019-01-02 stsp }
947 512f0d0e 2019-01-02 stsp
948 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
949 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
950 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
951 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
952 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
953 8da9e5f4 2019-01-12 stsp void *progress_arg;
954 8da9e5f4 2019-01-12 stsp got_worktree_cancel_cb cancel_cb;
955 8da9e5f4 2019-01-12 stsp void *cancel_arg;
956 8da9e5f4 2019-01-12 stsp };
957 8da9e5f4 2019-01-12 stsp
958 512f0d0e 2019-01-02 stsp static const struct got_error *
959 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
960 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
961 512f0d0e 2019-01-02 stsp {
962 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
963 512f0d0e 2019-01-02 stsp
964 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
965 8da9e5f4 2019-01-12 stsp ie->path, a->repo, a->progress_cb, a->progress_arg,
966 8da9e5f4 2019-01-12 stsp a->cancel_cb, a->cancel_arg);
967 8da9e5f4 2019-01-12 stsp }
968 512f0d0e 2019-01-02 stsp
969 8da9e5f4 2019-01-12 stsp static const struct got_error *
970 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
971 8da9e5f4 2019-01-12 stsp {
972 8da9e5f4 2019-01-12 stsp const struct got_error *err;
973 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
974 7a9df742 2019-01-08 stsp
975 8da9e5f4 2019-01-12 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE, ie->path);
976 7a9df742 2019-01-08 stsp
977 8da9e5f4 2019-01-12 stsp err = remove_ondisk_file(a->worktree->root_path, ie->path);
978 8da9e5f4 2019-01-12 stsp if (err)
979 8da9e5f4 2019-01-12 stsp return err;
980 8da9e5f4 2019-01-12 stsp got_fileindex_entry_remove(a->fileindex, ie);
981 8da9e5f4 2019-01-12 stsp return NULL;
982 9d31a1d8 2018-03-11 stsp }
983 9d31a1d8 2018-03-11 stsp
984 9d31a1d8 2018-03-11 stsp static const struct got_error *
985 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
986 9d31a1d8 2018-03-11 stsp {
987 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
988 8da9e5f4 2019-01-12 stsp const struct got_error *err;
989 8da9e5f4 2019-01-12 stsp char *path;
990 9d31a1d8 2018-03-11 stsp
991 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
992 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
993 8da9e5f4 2019-01-12 stsp == -1)
994 8da9e5f4 2019-01-12 stsp return got_error_from_errno();
995 9d31a1d8 2018-03-11 stsp
996 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
997 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
998 8da9e5f4 2019-01-12 stsp else
999 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
1000 8da9e5f4 2019-01-12 stsp a->repo, a->progress_cb, a->progress_arg,
1001 8da9e5f4 2019-01-12 stsp a->cancel_cb, a->cancel_arg);
1002 9d31a1d8 2018-03-11 stsp
1003 8da9e5f4 2019-01-12 stsp free(path);
1004 9d31a1d8 2018-03-11 stsp return err;
1005 9d31a1d8 2018-03-11 stsp }
1006 9d31a1d8 2018-03-11 stsp
1007 9d31a1d8 2018-03-11 stsp const struct got_error *
1008 9d31a1d8 2018-03-11 stsp got_worktree_checkout_files(struct got_worktree *worktree,
1009 93a30277 2018-12-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1010 93a30277 2018-12-24 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1011 9d31a1d8 2018-03-11 stsp {
1012 a143fb78 2018-12-25 stsp const struct got_error *err = NULL, *unlockerr, *checkout_err = NULL;
1013 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
1014 8da9e5f4 2019-01-12 stsp struct got_object_id *tree_id = NULL;
1015 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
1016 9d31a1d8 2018-03-11 stsp char *fileindex_path = NULL, *new_fileindex_path = NULL;
1017 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
1018 51514078 2018-12-25 stsp FILE *index = NULL, *new_index = NULL;
1019 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb diff_cb;
1020 8da9e5f4 2019-01-12 stsp struct diff_cb_arg arg;
1021 9d31a1d8 2018-03-11 stsp
1022 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
1023 9d31a1d8 2018-03-11 stsp if (err)
1024 9d31a1d8 2018-03-11 stsp return err;
1025 93a30277 2018-12-24 stsp
1026 133d2798 2019-01-08 stsp fileindex = got_fileindex_alloc();
1027 133d2798 2019-01-08 stsp if (fileindex == NULL) {
1028 133d2798 2019-01-08 stsp err = got_error_from_errno();
1029 9d31a1d8 2018-03-11 stsp goto done;
1030 133d2798 2019-01-08 stsp }
1031 9d31a1d8 2018-03-11 stsp
1032 9d31a1d8 2018-03-11 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1033 9d31a1d8 2018-03-11 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1034 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
1035 9d31a1d8 2018-03-11 stsp fileindex_path = NULL;
1036 9d31a1d8 2018-03-11 stsp goto done;
1037 9d31a1d8 2018-03-11 stsp }
1038 9d31a1d8 2018-03-11 stsp
1039 51514078 2018-12-25 stsp /*
1040 51514078 2018-12-25 stsp * Read the file index.
1041 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
1042 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
1043 51514078 2018-12-25 stsp */
1044 51514078 2018-12-25 stsp index = fopen(fileindex_path, "rb");
1045 51514078 2018-12-25 stsp if (index == NULL) {
1046 cf61d818 2019-01-12 stsp if (errno != ENOENT) {
1047 cf61d818 2019-01-12 stsp err = got_error_from_errno();
1048 cf61d818 2019-01-12 stsp goto done;
1049 cf61d818 2019-01-12 stsp }
1050 cf61d818 2019-01-12 stsp } else {
1051 cf61d818 2019-01-12 stsp err = got_fileindex_read(fileindex, index);
1052 cf61d818 2019-01-12 stsp fclose(index);
1053 cf61d818 2019-01-12 stsp if (err)
1054 cf61d818 2019-01-12 stsp goto done;
1055 51514078 2018-12-25 stsp }
1056 51514078 2018-12-25 stsp
1057 b8bdcc21 2018-12-24 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
1058 b8bdcc21 2018-12-24 stsp fileindex_path);
1059 51664889 2018-03-12 stsp if (err)
1060 51664889 2018-03-12 stsp goto done;
1061 51664889 2018-03-12 stsp
1062 eaccb85f 2018-12-25 stsp err = got_object_open_as_commit(&commit, repo,
1063 eaccb85f 2018-12-25 stsp worktree->base_commit_id);
1064 9d31a1d8 2018-03-11 stsp if (err)
1065 9d31a1d8 2018-03-11 stsp goto done;
1066 9d31a1d8 2018-03-11 stsp
1067 8da9e5f4 2019-01-12 stsp err = got_object_id_by_path(&tree_id, repo,
1068 8da9e5f4 2019-01-12 stsp worktree->base_commit_id, worktree->path_prefix);
1069 9d31a1d8 2018-03-11 stsp if (err)
1070 9d31a1d8 2018-03-11 stsp goto done;
1071 9d31a1d8 2018-03-11 stsp
1072 8da9e5f4 2019-01-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1073 8da9e5f4 2019-01-12 stsp if (err)
1074 8da9e5f4 2019-01-12 stsp goto done;
1075 9d31a1d8 2018-03-11 stsp
1076 8da9e5f4 2019-01-12 stsp diff_cb.diff_old_new = diff_old_new;
1077 8da9e5f4 2019-01-12 stsp diff_cb.diff_old = diff_old;
1078 8da9e5f4 2019-01-12 stsp diff_cb.diff_new = diff_new;
1079 8da9e5f4 2019-01-12 stsp arg.fileindex = fileindex;
1080 8da9e5f4 2019-01-12 stsp arg.worktree = worktree;
1081 8da9e5f4 2019-01-12 stsp arg.repo = repo;
1082 8da9e5f4 2019-01-12 stsp arg.progress_cb = progress_cb;
1083 8da9e5f4 2019-01-12 stsp arg.progress_arg = progress_arg;
1084 8da9e5f4 2019-01-12 stsp arg.cancel_cb = cancel_cb;
1085 8da9e5f4 2019-01-12 stsp arg.cancel_arg = cancel_arg;
1086 8da9e5f4 2019-01-12 stsp checkout_err = got_fileindex_diff_tree(fileindex, tree, repo,
1087 8da9e5f4 2019-01-12 stsp &diff_cb, &arg);
1088 8da9e5f4 2019-01-12 stsp
1089 a143fb78 2018-12-25 stsp /* Try to sync the fileindex back to disk in any case. */
1090 b8bdcc21 2018-12-24 stsp err = got_fileindex_write(fileindex, new_index);
1091 9d31a1d8 2018-03-11 stsp if (err)
1092 9d31a1d8 2018-03-11 stsp goto done;
1093 9d31a1d8 2018-03-11 stsp
1094 9d31a1d8 2018-03-11 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
1095 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
1096 9d31a1d8 2018-03-11 stsp goto done;
1097 9d31a1d8 2018-03-11 stsp }
1098 9d31a1d8 2018-03-11 stsp
1099 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1100 9d31a1d8 2018-03-11 stsp new_fileindex_path = NULL;
1101 9d31a1d8 2018-03-11 stsp
1102 9d31a1d8 2018-03-11 stsp done:
1103 edfa7d7f 2018-09-11 stsp if (tree)
1104 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
1105 9d31a1d8 2018-03-11 stsp if (commit)
1106 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
1107 9d31a1d8 2018-03-11 stsp if (new_fileindex_path)
1108 9d31a1d8 2018-03-11 stsp unlink(new_fileindex_path);
1109 b8bdcc21 2018-12-24 stsp if (new_index)
1110 b8bdcc21 2018-12-24 stsp fclose(new_index);
1111 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1112 9d31a1d8 2018-03-11 stsp free(fileindex_path);
1113 7426bbfd 2018-12-24 stsp got_fileindex_free(fileindex);
1114 a143fb78 2018-12-25 stsp if (checkout_err)
1115 a143fb78 2018-12-25 stsp err = checkout_err;
1116 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1117 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
1118 9d31a1d8 2018-03-11 stsp err = unlockerr;
1119 f8d1f275 2019-02-04 stsp return err;
1120 f8d1f275 2019-02-04 stsp }
1121 f8d1f275 2019-02-04 stsp
1122 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
1123 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
1124 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
1125 f8d1f275 2019-02-04 stsp struct got_repository *repo;
1126 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
1127 f8d1f275 2019-02-04 stsp void *status_arg;
1128 f8d1f275 2019-02-04 stsp got_worktree_cancel_cb cancel_cb;
1129 f8d1f275 2019-02-04 stsp void *cancel_arg;
1130 f8d1f275 2019-02-04 stsp };
1131 f8d1f275 2019-02-04 stsp
1132 f8d1f275 2019-02-04 stsp static const struct got_error *
1133 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
1134 f8d1f275 2019-02-04 stsp struct dirent *de, const char *parent_path)
1135 f8d1f275 2019-02-04 stsp {
1136 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1137 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1138 f8d1f275 2019-02-04 stsp char *abspath;
1139 f8d1f275 2019-02-04 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1140 f8d1f275 2019-02-04 stsp
1141 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1142 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
1143 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
1144 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1145 f8d1f275 2019-02-04 stsp } else {
1146 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
1147 f8d1f275 2019-02-04 stsp de->d_name) == -1)
1148 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1149 f8d1f275 2019-02-04 stsp }
1150 f8d1f275 2019-02-04 stsp
1151 bf96b38c 2019-02-05 stsp err = get_file_status(&status, ie, abspath, a->repo);
1152 b72f483a 2019-02-05 stsp if (err == NULL && status != GOT_STATUS_NO_CHANGE) {
1153 b72f483a 2019-02-05 stsp struct got_object_id id;
1154 b72f483a 2019-02-05 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1155 b72f483a 2019-02-05 stsp err = (*a->status_cb)(a->status_arg, status, ie->path, &id);
1156 b72f483a 2019-02-05 stsp }
1157 f8d1f275 2019-02-04 stsp free(abspath);
1158 9d31a1d8 2018-03-11 stsp return err;
1159 9d31a1d8 2018-03-11 stsp }
1160 f8d1f275 2019-02-04 stsp
1161 f8d1f275 2019-02-04 stsp static const struct got_error *
1162 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1163 f8d1f275 2019-02-04 stsp {
1164 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1165 b72f483a 2019-02-05 stsp struct got_object_id id;
1166 b72f483a 2019-02-05 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1167 b72f483a 2019-02-05 stsp return (*a->status_cb)(a->status_arg, GOT_STATUS_MISSING, ie->path,
1168 b72f483a 2019-02-05 stsp &id);
1169 f8d1f275 2019-02-04 stsp }
1170 f8d1f275 2019-02-04 stsp
1171 f8d1f275 2019-02-04 stsp static const struct got_error *
1172 f8d1f275 2019-02-04 stsp status_new(void *arg, struct dirent *de, const char *parent_path)
1173 f8d1f275 2019-02-04 stsp {
1174 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1175 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1176 f8d1f275 2019-02-04 stsp char *path = NULL;
1177 f8d1f275 2019-02-04 stsp
1178 f8d1f275 2019-02-04 stsp if (de->d_type == DT_DIR)
1179 f8d1f275 2019-02-04 stsp return NULL;
1180 f8d1f275 2019-02-04 stsp
1181 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1182 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
1183 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1184 f8d1f275 2019-02-04 stsp } else {
1185 f8d1f275 2019-02-04 stsp path = de->d_name;
1186 f8d1f275 2019-02-04 stsp }
1187 f8d1f275 2019-02-04 stsp
1188 b72f483a 2019-02-05 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED, path,
1189 b72f483a 2019-02-05 stsp NULL);
1190 f8d1f275 2019-02-04 stsp if (parent_path[0])
1191 f8d1f275 2019-02-04 stsp free(path);
1192 b72f483a 2019-02-05 stsp return err;
1193 f8d1f275 2019-02-04 stsp }
1194 f8d1f275 2019-02-04 stsp
1195 f8d1f275 2019-02-04 stsp const struct got_error *
1196 f8d1f275 2019-02-04 stsp got_worktree_status(struct got_worktree *worktree,
1197 f8d1f275 2019-02-04 stsp struct got_repository *repo, got_worktree_status_cb status_cb,
1198 f8d1f275 2019-02-04 stsp void *status_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1199 f8d1f275 2019-02-04 stsp {
1200 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1201 f8d1f275 2019-02-04 stsp DIR *workdir = NULL;
1202 f8d1f275 2019-02-04 stsp char *fileindex_path = NULL;
1203 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex = NULL;
1204 f8d1f275 2019-02-04 stsp FILE *index = NULL;
1205 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
1206 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
1207 f8d1f275 2019-02-04 stsp
1208 f8d1f275 2019-02-04 stsp fileindex = got_fileindex_alloc();
1209 f8d1f275 2019-02-04 stsp if (fileindex == NULL) {
1210 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1211 f8d1f275 2019-02-04 stsp goto done;
1212 f8d1f275 2019-02-04 stsp }
1213 f8d1f275 2019-02-04 stsp
1214 f8d1f275 2019-02-04 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1215 f8d1f275 2019-02-04 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1216 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1217 f8d1f275 2019-02-04 stsp fileindex_path = NULL;
1218 f8d1f275 2019-02-04 stsp goto done;
1219 f8d1f275 2019-02-04 stsp }
1220 f8d1f275 2019-02-04 stsp
1221 f8d1f275 2019-02-04 stsp index = fopen(fileindex_path, "rb");
1222 f8d1f275 2019-02-04 stsp if (index == NULL) {
1223 f8d1f275 2019-02-04 stsp if (errno != ENOENT) {
1224 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1225 f8d1f275 2019-02-04 stsp goto done;
1226 f8d1f275 2019-02-04 stsp }
1227 f8d1f275 2019-02-04 stsp } else {
1228 f8d1f275 2019-02-04 stsp err = got_fileindex_read(fileindex, index);
1229 f8d1f275 2019-02-04 stsp fclose(index);
1230 f8d1f275 2019-02-04 stsp if (err)
1231 f8d1f275 2019-02-04 stsp goto done;
1232 f8d1f275 2019-02-04 stsp }
1233 f8d1f275 2019-02-04 stsp
1234 f8d1f275 2019-02-04 stsp workdir = opendir(worktree->root_path);
1235 c513d110 2019-02-05 stsp if (workdir == NULL) {
1236 c513d110 2019-02-05 stsp err = got_error_from_errno();
1237 c513d110 2019-02-05 stsp goto done;
1238 c513d110 2019-02-05 stsp }
1239 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old_new = status_old_new;
1240 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old = status_old;
1241 d43a8a88 2019-02-05 stsp fdiff_cb.diff_new = status_new;
1242 f8d1f275 2019-02-04 stsp arg.fileindex = fileindex;
1243 f8d1f275 2019-02-04 stsp arg.worktree = worktree;
1244 f8d1f275 2019-02-04 stsp arg.repo = repo;
1245 f8d1f275 2019-02-04 stsp arg.status_cb = status_cb;
1246 f8d1f275 2019-02-04 stsp arg.status_arg = status_arg;
1247 f8d1f275 2019-02-04 stsp arg.cancel_cb = cancel_cb;
1248 f8d1f275 2019-02-04 stsp arg.cancel_arg = cancel_arg;
1249 c7f4312f 2019-02-05 stsp err = got_fileindex_diff_dir(fileindex, workdir, worktree->root_path,
1250 c7f4312f 2019-02-05 stsp repo, &fdiff_cb, &arg);
1251 f8d1f275 2019-02-04 stsp done:
1252 f8d1f275 2019-02-04 stsp if (workdir)
1253 f8d1f275 2019-02-04 stsp closedir(workdir);
1254 f8d1f275 2019-02-04 stsp free(fileindex_path);
1255 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
1256 f8d1f275 2019-02-04 stsp return err;
1257 f8d1f275 2019-02-04 stsp }