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