Blame


1 86c3caaf 2018-03-09 stsp /*
2 86c3caaf 2018-03-09 stsp * Copyright (c) 2018 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 86c3caaf 2018-03-09 stsp
21 86c3caaf 2018-03-09 stsp #include <string.h>
22 86c3caaf 2018-03-09 stsp #include <stdio.h>
23 86c3caaf 2018-03-09 stsp #include <stdlib.h>
24 86c3caaf 2018-03-09 stsp #include <fcntl.h>
25 86c3caaf 2018-03-09 stsp #include <errno.h>
26 86c3caaf 2018-03-09 stsp #include <unistd.h>
27 9d31a1d8 2018-03-11 stsp #include <sha1.h>
28 9d31a1d8 2018-03-11 stsp #include <zlib.h>
29 9d31a1d8 2018-03-11 stsp #include <fnmatch.h>
30 512f0d0e 2019-01-02 stsp #include <libgen.h>
31 86c3caaf 2018-03-09 stsp
32 86c3caaf 2018-03-09 stsp #include "got_error.h"
33 86c3caaf 2018-03-09 stsp #include "got_repository.h"
34 5261c201 2018-04-01 stsp #include "got_reference.h"
35 9d31a1d8 2018-03-11 stsp #include "got_object.h"
36 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
37 511a516b 2018-05-19 stsp #include "got_opentemp.h"
38 86c3caaf 2018-03-09 stsp
39 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
40 718b3ab0 2018-03-17 stsp #include "got_lib_path.h"
41 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
42 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
43 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
44 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
45 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
46 9d31a1d8 2018-03-11 stsp
47 9d31a1d8 2018-03-11 stsp #ifndef MIN
48 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
49 9d31a1d8 2018-03-11 stsp #endif
50 86c3caaf 2018-03-09 stsp
51 99724ed4 2018-03-10 stsp static const struct got_error *
52 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
53 99724ed4 2018-03-10 stsp {
54 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
55 99724ed4 2018-03-10 stsp char *path;
56 99724ed4 2018-03-10 stsp int fd = -1;
57 99724ed4 2018-03-10 stsp
58 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
59 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
60 99724ed4 2018-03-10 stsp path = NULL;
61 99724ed4 2018-03-10 stsp goto done;
62 99724ed4 2018-03-10 stsp }
63 99724ed4 2018-03-10 stsp
64 73a5ef67 2018-03-11 stsp fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
65 99724ed4 2018-03-10 stsp GOT_DEFAULT_FILE_MODE);
66 99724ed4 2018-03-10 stsp if (fd == -1) {
67 99724ed4 2018-03-10 stsp err = got_error_from_errno();
68 99724ed4 2018-03-10 stsp goto done;
69 99724ed4 2018-03-10 stsp }
70 99724ed4 2018-03-10 stsp
71 99724ed4 2018-03-10 stsp if (content) {
72 99724ed4 2018-03-10 stsp int len = dprintf(fd, "%s\n", content);
73 99724ed4 2018-03-10 stsp if (len != strlen(content) + 1) {
74 99724ed4 2018-03-10 stsp err = got_error_from_errno();
75 99724ed4 2018-03-10 stsp goto done;
76 99724ed4 2018-03-10 stsp }
77 99724ed4 2018-03-10 stsp }
78 99724ed4 2018-03-10 stsp
79 99724ed4 2018-03-10 stsp done:
80 99724ed4 2018-03-10 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
81 99724ed4 2018-03-10 stsp err = got_error_from_errno();
82 99724ed4 2018-03-10 stsp free(path);
83 507dc3bb 2018-12-29 stsp return err;
84 507dc3bb 2018-12-29 stsp }
85 507dc3bb 2018-12-29 stsp
86 507dc3bb 2018-12-29 stsp static const struct got_error *
87 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
88 507dc3bb 2018-12-29 stsp {
89 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
90 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
91 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
92 507dc3bb 2018-12-29 stsp char *path = NULL;
93 507dc3bb 2018-12-29 stsp
94 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
95 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
96 507dc3bb 2018-12-29 stsp path = NULL;
97 507dc3bb 2018-12-29 stsp goto done;
98 507dc3bb 2018-12-29 stsp }
99 507dc3bb 2018-12-29 stsp
100 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
101 507dc3bb 2018-12-29 stsp if (err)
102 507dc3bb 2018-12-29 stsp goto done;
103 507dc3bb 2018-12-29 stsp
104 507dc3bb 2018-12-29 stsp if (content) {
105 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
106 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
107 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
108 507dc3bb 2018-12-29 stsp goto done;
109 507dc3bb 2018-12-29 stsp }
110 507dc3bb 2018-12-29 stsp }
111 507dc3bb 2018-12-29 stsp
112 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
113 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
114 507dc3bb 2018-12-29 stsp goto done;
115 507dc3bb 2018-12-29 stsp }
116 507dc3bb 2018-12-29 stsp
117 507dc3bb 2018-12-29 stsp done:
118 507dc3bb 2018-12-29 stsp free(tmppath);
119 507dc3bb 2018-12-29 stsp fclose(tmpfile);
120 99724ed4 2018-03-10 stsp return err;
121 99724ed4 2018-03-10 stsp }
122 99724ed4 2018-03-10 stsp
123 09fe317a 2018-03-11 stsp static const struct got_error *
124 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
125 09fe317a 2018-03-11 stsp {
126 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
127 09fe317a 2018-03-11 stsp char *path;
128 09fe317a 2018-03-11 stsp int fd = -1;
129 09fe317a 2018-03-11 stsp ssize_t n;
130 09fe317a 2018-03-11 stsp struct stat sb;
131 09fe317a 2018-03-11 stsp
132 09fe317a 2018-03-11 stsp *content = NULL;
133 09fe317a 2018-03-11 stsp
134 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
135 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
136 09fe317a 2018-03-11 stsp path = NULL;
137 09fe317a 2018-03-11 stsp goto done;
138 09fe317a 2018-03-11 stsp }
139 09fe317a 2018-03-11 stsp
140 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
141 09fe317a 2018-03-11 stsp if (fd == -1) {
142 ef99fdb1 2018-03-11 stsp err = got_error_from_errno();
143 ef99fdb1 2018-03-11 stsp goto done;
144 ef99fdb1 2018-03-11 stsp }
145 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
146 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
147 73a5ef67 2018-03-11 stsp : got_error_from_errno());
148 09fe317a 2018-03-11 stsp goto done;
149 09fe317a 2018-03-11 stsp }
150 09fe317a 2018-03-11 stsp
151 09fe317a 2018-03-11 stsp stat(path, &sb);
152 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
153 09fe317a 2018-03-11 stsp if (*content == NULL) {
154 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
155 09fe317a 2018-03-11 stsp goto done;
156 09fe317a 2018-03-11 stsp }
157 09fe317a 2018-03-11 stsp
158 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
159 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
160 0605801d 2018-03-11 stsp err = (n == -1 ? got_error_from_errno() :
161 0605801d 2018-03-11 stsp got_error(GOT_ERR_WORKTREE_META));
162 09fe317a 2018-03-11 stsp goto done;
163 09fe317a 2018-03-11 stsp }
164 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
165 09fe317a 2018-03-11 stsp err = 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 (*content)[sb.st_size - 1] = '\0';
169 09fe317a 2018-03-11 stsp
170 09fe317a 2018-03-11 stsp done:
171 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
172 09fe317a 2018-03-11 stsp err = got_error_from_errno();
173 09fe317a 2018-03-11 stsp free(path);
174 09fe317a 2018-03-11 stsp if (err) {
175 09fe317a 2018-03-11 stsp free(*content);
176 09fe317a 2018-03-11 stsp *content = NULL;
177 09fe317a 2018-03-11 stsp }
178 09fe317a 2018-03-11 stsp return err;
179 09fe317a 2018-03-11 stsp }
180 09fe317a 2018-03-11 stsp
181 86c3caaf 2018-03-09 stsp const struct got_error *
182 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
183 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
184 86c3caaf 2018-03-09 stsp {
185 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
186 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
187 65596e15 2018-12-24 stsp int obj_type;
188 7ac97322 2018-03-11 stsp char *path_got = NULL;
189 08d425ea 2018-12-24 stsp char *refstr = NULL;
190 cde76477 2018-03-11 stsp char *repo_path = NULL;
191 1451e70d 2018-03-10 stsp char *formatstr = NULL;
192 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
193 65596e15 2018-12-24 stsp char *basestr = NULL;
194 65596e15 2018-12-24 stsp
195 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
196 65596e15 2018-12-24 stsp if (err)
197 65596e15 2018-12-24 stsp return err;
198 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
199 65596e15 2018-12-24 stsp if (err)
200 65596e15 2018-12-24 stsp return err;
201 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
202 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
203 86c3caaf 2018-03-09 stsp
204 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
205 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
206 0a585a0d 2018-03-17 stsp return got_error_from_errno();
207 0bb8a95e 2018-03-12 stsp }
208 577ec78f 2018-03-11 stsp
209 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
210 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
211 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
212 86c3caaf 2018-03-09 stsp goto done;
213 86c3caaf 2018-03-09 stsp }
214 86c3caaf 2018-03-09 stsp
215 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
216 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
217 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
218 86c3caaf 2018-03-09 stsp goto done;
219 86c3caaf 2018-03-09 stsp }
220 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
221 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
222 86c3caaf 2018-03-09 stsp goto done;
223 86c3caaf 2018-03-09 stsp }
224 86c3caaf 2018-03-09 stsp
225 056e7441 2018-03-11 stsp /* Create an empty lock file. */
226 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
227 056e7441 2018-03-11 stsp if (err)
228 056e7441 2018-03-11 stsp goto done;
229 056e7441 2018-03-11 stsp
230 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
231 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
232 99724ed4 2018-03-10 stsp if (err)
233 86c3caaf 2018-03-09 stsp goto done;
234 86c3caaf 2018-03-09 stsp
235 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
236 08d425ea 2018-12-24 stsp refstr = got_ref_to_str(head_ref);
237 08d425ea 2018-12-24 stsp if (refstr == NULL) {
238 a1a7858a 2018-12-24 stsp err = got_error_from_errno();
239 a1a7858a 2018-12-24 stsp goto done;
240 a1a7858a 2018-12-24 stsp }
241 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
242 65596e15 2018-12-24 stsp if (err)
243 65596e15 2018-12-24 stsp goto done;
244 65596e15 2018-12-24 stsp
245 65596e15 2018-12-24 stsp /* Record our base commit. */
246 65596e15 2018-12-24 stsp err = got_object_id_str(&basestr, commit_id);
247 65596e15 2018-12-24 stsp if (err)
248 65596e15 2018-12-24 stsp goto done;
249 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
250 99724ed4 2018-03-10 stsp if (err)
251 86c3caaf 2018-03-09 stsp goto done;
252 86c3caaf 2018-03-09 stsp
253 1451e70d 2018-03-10 stsp /* Store path to repository. */
254 cde76477 2018-03-11 stsp repo_path = got_repo_get_path(repo);
255 cde76477 2018-03-11 stsp if (repo_path == NULL) {
256 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
257 86c3caaf 2018-03-09 stsp goto done;
258 86c3caaf 2018-03-09 stsp }
259 cde76477 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY, repo_path);
260 99724ed4 2018-03-10 stsp if (err)
261 86c3caaf 2018-03-09 stsp goto done;
262 86c3caaf 2018-03-09 stsp
263 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
264 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
265 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
266 577ec78f 2018-03-11 stsp if (err)
267 577ec78f 2018-03-11 stsp goto done;
268 577ec78f 2018-03-11 stsp
269 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
270 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
271 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
272 1451e70d 2018-03-10 stsp goto done;
273 1451e70d 2018-03-10 stsp }
274 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
275 99724ed4 2018-03-10 stsp if (err)
276 1451e70d 2018-03-10 stsp goto done;
277 1451e70d 2018-03-10 stsp
278 86c3caaf 2018-03-09 stsp done:
279 65596e15 2018-12-24 stsp free(commit_id);
280 7ac97322 2018-03-11 stsp free(path_got);
281 1451e70d 2018-03-10 stsp free(formatstr);
282 08d425ea 2018-12-24 stsp free(refstr);
283 cde76477 2018-03-11 stsp free(repo_path);
284 0bb8a95e 2018-03-12 stsp free(absprefix);
285 65596e15 2018-12-24 stsp free(basestr);
286 86c3caaf 2018-03-09 stsp return err;
287 86c3caaf 2018-03-09 stsp }
288 86c3caaf 2018-03-09 stsp
289 86c3caaf 2018-03-09 stsp const struct got_error *
290 86c3caaf 2018-03-09 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
291 86c3caaf 2018-03-09 stsp {
292 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
293 7ac97322 2018-03-11 stsp char *path_got;
294 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
295 056e7441 2018-03-11 stsp char *path_lock = NULL;
296 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
297 271d2a38 2018-12-25 stsp char *head_ref_str = NULL;
298 6d9d28c3 2018-03-11 stsp int version, fd = -1;
299 6d9d28c3 2018-03-11 stsp const char *errstr;
300 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
301 6d9d28c3 2018-03-11 stsp
302 6d9d28c3 2018-03-11 stsp *worktree = NULL;
303 6d9d28c3 2018-03-11 stsp
304 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
305 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
306 7ac97322 2018-03-11 stsp path_got = NULL;
307 6d9d28c3 2018-03-11 stsp goto done;
308 6d9d28c3 2018-03-11 stsp }
309 6d9d28c3 2018-03-11 stsp
310 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
311 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
312 056e7441 2018-03-11 stsp path_lock = NULL;
313 6d9d28c3 2018-03-11 stsp goto done;
314 6d9d28c3 2018-03-11 stsp }
315 6d9d28c3 2018-03-11 stsp
316 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
317 6d9d28c3 2018-03-11 stsp if (fd == -1) {
318 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
319 73a5ef67 2018-03-11 stsp : got_error_from_errno());
320 6d9d28c3 2018-03-11 stsp goto done;
321 6d9d28c3 2018-03-11 stsp }
322 6d9d28c3 2018-03-11 stsp
323 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
324 6d9d28c3 2018-03-11 stsp if (err)
325 6d9d28c3 2018-03-11 stsp goto done;
326 6d9d28c3 2018-03-11 stsp
327 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
328 6d9d28c3 2018-03-11 stsp if (errstr) {
329 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
330 6d9d28c3 2018-03-11 stsp goto done;
331 6d9d28c3 2018-03-11 stsp }
332 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
333 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
334 6d9d28c3 2018-03-11 stsp goto done;
335 6d9d28c3 2018-03-11 stsp }
336 6d9d28c3 2018-03-11 stsp
337 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
338 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
339 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
340 6d9d28c3 2018-03-11 stsp goto done;
341 6d9d28c3 2018-03-11 stsp }
342 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
343 6d9d28c3 2018-03-11 stsp
344 c88eb298 2018-03-11 stsp (*worktree)->root_path = strdup(path);
345 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
346 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
347 6d9d28c3 2018-03-11 stsp goto done;
348 6d9d28c3 2018-03-11 stsp }
349 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
350 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
351 6d9d28c3 2018-03-11 stsp if (err)
352 6d9d28c3 2018-03-11 stsp goto done;
353 eaccb85f 2018-12-25 stsp
354 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
355 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
356 93a30277 2018-12-24 stsp if (err)
357 93a30277 2018-12-24 stsp goto done;
358 93a30277 2018-12-24 stsp
359 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
360 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
361 eaccb85f 2018-12-25 stsp if (err)
362 eaccb85f 2018-12-25 stsp goto done;
363 eaccb85f 2018-12-25 stsp
364 eaccb85f 2018-12-25 stsp err = got_repo_open(&repo, (*worktree)->repo_path);
365 eaccb85f 2018-12-25 stsp if (err)
366 eaccb85f 2018-12-25 stsp goto done;
367 eaccb85f 2018-12-25 stsp
368 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
369 eaccb85f 2018-12-25 stsp base_commit_id_str);
370 f5baf295 2018-03-11 stsp if (err)
371 f5baf295 2018-03-11 stsp goto done;
372 f5baf295 2018-03-11 stsp
373 271d2a38 2018-12-25 stsp err = read_meta_file(&head_ref_str, path_got, GOT_WORKTREE_HEAD_REF);
374 f5baf295 2018-03-11 stsp if (err)
375 6d9d28c3 2018-03-11 stsp goto done;
376 6d9d28c3 2018-03-11 stsp
377 271d2a38 2018-12-25 stsp err = got_ref_open(&(*worktree)->head_ref, repo, head_ref_str);
378 6d9d28c3 2018-03-11 stsp done:
379 eaccb85f 2018-12-25 stsp if (repo)
380 eaccb85f 2018-12-25 stsp got_repo_close(repo);
381 7ac97322 2018-03-11 stsp free(path_got);
382 056e7441 2018-03-11 stsp free(path_lock);
383 271d2a38 2018-12-25 stsp free(head_ref_str);
384 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
385 6d9d28c3 2018-03-11 stsp if (err) {
386 6d9d28c3 2018-03-11 stsp if (fd != -1)
387 6d9d28c3 2018-03-11 stsp close(fd);
388 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
389 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
390 6d9d28c3 2018-03-11 stsp *worktree = NULL;
391 6d9d28c3 2018-03-11 stsp } else
392 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
393 6d9d28c3 2018-03-11 stsp
394 6d9d28c3 2018-03-11 stsp return err;
395 86c3caaf 2018-03-09 stsp }
396 86c3caaf 2018-03-09 stsp
397 86c3caaf 2018-03-09 stsp void
398 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
399 86c3caaf 2018-03-09 stsp {
400 c88eb298 2018-03-11 stsp free(worktree->root_path);
401 cde76477 2018-03-11 stsp free(worktree->repo_path);
402 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
403 eaccb85f 2018-12-25 stsp free(worktree->base_commit_id);
404 271d2a38 2018-12-25 stsp if (worktree->head_ref)
405 271d2a38 2018-12-25 stsp got_ref_close(worktree->head_ref);
406 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
407 056e7441 2018-03-11 stsp close(worktree->lockfd);
408 6d9d28c3 2018-03-11 stsp free(worktree);
409 86c3caaf 2018-03-09 stsp }
410 86c3caaf 2018-03-09 stsp
411 2fbdb5ae 2018-12-29 stsp const char *
412 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
413 86c3caaf 2018-03-09 stsp {
414 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
415 49520a32 2018-12-29 stsp }
416 49520a32 2018-12-29 stsp
417 49520a32 2018-12-29 stsp const char *
418 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
419 49520a32 2018-12-29 stsp {
420 f609be2e 2018-12-29 stsp return worktree->path_prefix;
421 e5dc7198 2018-12-29 stsp }
422 e5dc7198 2018-12-29 stsp
423 e5dc7198 2018-12-29 stsp const struct got_error *
424 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
425 e5dc7198 2018-12-29 stsp const char *path_prefix)
426 e5dc7198 2018-12-29 stsp {
427 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
428 e5dc7198 2018-12-29 stsp
429 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
430 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
431 e5dc7198 2018-12-29 stsp return got_error_from_errno();
432 e5dc7198 2018-12-29 stsp }
433 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
434 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
435 e5dc7198 2018-12-29 stsp free(absprefix);
436 e5dc7198 2018-12-29 stsp return NULL;
437 86c3caaf 2018-03-09 stsp }
438 86c3caaf 2018-03-09 stsp
439 35be1456 2018-03-11 stsp char *
440 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
441 86c3caaf 2018-03-09 stsp {
442 271d2a38 2018-12-25 stsp return got_ref_to_str(worktree->head_ref);
443 be7061eb 2018-12-30 stsp }
444 be7061eb 2018-12-30 stsp
445 be7061eb 2018-12-30 stsp struct got_reference *
446 be7061eb 2018-12-30 stsp got_worktree_get_head_ref(struct got_worktree *worktree)
447 be7061eb 2018-12-30 stsp {
448 be7061eb 2018-12-30 stsp return got_ref_dup(worktree->head_ref);
449 507dc3bb 2018-12-29 stsp }
450 507dc3bb 2018-12-29 stsp
451 507dc3bb 2018-12-29 stsp const struct got_object_id *
452 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
453 507dc3bb 2018-12-29 stsp {
454 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
455 86c3caaf 2018-03-09 stsp }
456 86c3caaf 2018-03-09 stsp
457 507dc3bb 2018-12-29 stsp const struct got_error *
458 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
459 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
460 507dc3bb 2018-12-29 stsp {
461 507dc3bb 2018-12-29 stsp const struct got_error *err;
462 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
463 507dc3bb 2018-12-29 stsp char *id_str = NULL;
464 507dc3bb 2018-12-29 stsp char *path_got = NULL;
465 507dc3bb 2018-12-29 stsp
466 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
467 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
468 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
469 507dc3bb 2018-12-29 stsp path_got = NULL;
470 507dc3bb 2018-12-29 stsp goto done;
471 507dc3bb 2018-12-29 stsp }
472 507dc3bb 2018-12-29 stsp
473 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
474 507dc3bb 2018-12-29 stsp if (err)
475 507dc3bb 2018-12-29 stsp return err;
476 507dc3bb 2018-12-29 stsp
477 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
478 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
479 507dc3bb 2018-12-29 stsp goto done;
480 507dc3bb 2018-12-29 stsp }
481 507dc3bb 2018-12-29 stsp
482 507dc3bb 2018-12-29 stsp /* Record our base commit. */
483 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
484 507dc3bb 2018-12-29 stsp if (err)
485 507dc3bb 2018-12-29 stsp goto done;
486 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
487 507dc3bb 2018-12-29 stsp if (err)
488 507dc3bb 2018-12-29 stsp goto done;
489 507dc3bb 2018-12-29 stsp
490 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
491 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
492 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
493 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
494 507dc3bb 2018-12-29 stsp goto done;
495 507dc3bb 2018-12-29 stsp }
496 507dc3bb 2018-12-29 stsp done:
497 507dc3bb 2018-12-29 stsp if (obj)
498 507dc3bb 2018-12-29 stsp got_object_close(obj);
499 507dc3bb 2018-12-29 stsp free(id_str);
500 507dc3bb 2018-12-29 stsp free(path_got);
501 507dc3bb 2018-12-29 stsp return err;
502 507dc3bb 2018-12-29 stsp }
503 507dc3bb 2018-12-29 stsp
504 9d31a1d8 2018-03-11 stsp static const struct got_error *
505 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
506 86c3caaf 2018-03-09 stsp {
507 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
508 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
509 9d31a1d8 2018-03-11 stsp : got_error_from_errno());
510 86c3caaf 2018-03-09 stsp return NULL;
511 86c3caaf 2018-03-09 stsp }
512 9d31a1d8 2018-03-11 stsp
513 9d31a1d8 2018-03-11 stsp static const char *
514 9d31a1d8 2018-03-11 stsp apply_path_prefix(struct got_worktree *worktree, const char *path)
515 9d31a1d8 2018-03-11 stsp {
516 9d31a1d8 2018-03-11 stsp const char *p = path;
517 9d31a1d8 2018-03-11 stsp p += strlen(worktree->path_prefix);
518 9d31a1d8 2018-03-11 stsp if (*p == '/')
519 9d31a1d8 2018-03-11 stsp p++;
520 9d31a1d8 2018-03-11 stsp return p;
521 9d31a1d8 2018-03-11 stsp }
522 9d31a1d8 2018-03-11 stsp
523 9d31a1d8 2018-03-11 stsp static const struct got_error *
524 a207cf0a 2018-12-29 stsp blob_checkout(struct got_worktree *worktree, struct got_fileindex *fileindex,
525 eac9755f 2018-12-29 stsp struct got_fileindex_entry *entry, const char *path,
526 eac9755f 2018-12-29 stsp struct got_blob_object *blob, struct got_repository *repo,
527 d7b62c98 2018-12-27 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
528 d7b62c98 2018-12-27 stsp const char *progress_path)
529 9d31a1d8 2018-03-11 stsp {
530 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
531 c34b20a2 2018-03-12 stsp char *ondisk_path;
532 507dc3bb 2018-12-29 stsp int fd = -1;
533 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
534 507dc3bb 2018-12-29 stsp int update = 0;
535 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
536 9d31a1d8 2018-03-11 stsp
537 c34b20a2 2018-03-12 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path,
538 9d31a1d8 2018-03-11 stsp apply_path_prefix(worktree, path)) == -1)
539 0a585a0d 2018-03-17 stsp return got_error_from_errno();
540 144ad43a 2018-12-29 stsp
541 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
542 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
543 9d31a1d8 2018-03-11 stsp if (fd == -1) {
544 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
545 9d31a1d8 2018-03-11 stsp if (errno == EEXIST) {
546 9d31a1d8 2018-03-11 stsp struct stat sb;
547 c34b20a2 2018-03-12 stsp if (lstat(ondisk_path, &sb) == -1) {
548 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
549 507dc3bb 2018-12-29 stsp goto done;
550 9d31a1d8 2018-03-11 stsp } else if (!S_ISREG(sb.st_mode)) {
551 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
552 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
553 507dc3bb 2018-12-29 stsp goto done;
554 d70b8e30 2018-12-27 stsp } else {
555 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
556 507dc3bb 2018-12-29 stsp ondisk_path);
557 507dc3bb 2018-12-29 stsp if (err)
558 507dc3bb 2018-12-29 stsp goto done;
559 507dc3bb 2018-12-29 stsp update = 1;
560 9d31a1d8 2018-03-11 stsp }
561 507dc3bb 2018-12-29 stsp } else
562 507dc3bb 2018-12-29 stsp return err;
563 9d31a1d8 2018-03-11 stsp }
564 9d31a1d8 2018-03-11 stsp
565 507dc3bb 2018-12-29 stsp (*progress_cb)(progress_arg,
566 507dc3bb 2018-12-29 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, progress_path);
567 d7b62c98 2018-12-27 stsp
568 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
569 9d31a1d8 2018-03-11 stsp do {
570 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
571 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
572 9d31a1d8 2018-03-11 stsp if (err)
573 9d31a1d8 2018-03-11 stsp break;
574 9d31a1d8 2018-03-11 stsp if (len > 0) {
575 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
576 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
577 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
578 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
579 b87c6f83 2018-12-24 stsp goto done;
580 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
581 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
582 b87c6f83 2018-12-24 stsp goto done;
583 9d31a1d8 2018-03-11 stsp }
584 61d6eaa3 2018-12-24 stsp hdrlen = 0;
585 9d31a1d8 2018-03-11 stsp }
586 9d31a1d8 2018-03-11 stsp } while (len != 0);
587 9d31a1d8 2018-03-11 stsp
588 9d31a1d8 2018-03-11 stsp fsync(fd);
589 9d31a1d8 2018-03-11 stsp
590 507dc3bb 2018-12-29 stsp if (update) {
591 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
592 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
593 507dc3bb 2018-12-29 stsp goto done;
594 507dc3bb 2018-12-29 stsp }
595 507dc3bb 2018-12-29 stsp }
596 507dc3bb 2018-12-29 stsp
597 51514078 2018-12-25 stsp if (entry)
598 51514078 2018-12-25 stsp err = got_fileindex_entry_update(entry, ondisk_path,
599 51514078 2018-12-25 stsp blob->id.sha1, worktree->base_commit_id->sha1);
600 51514078 2018-12-25 stsp else {
601 51514078 2018-12-25 stsp err = got_fileindex_entry_alloc(&entry, ondisk_path,
602 51514078 2018-12-25 stsp apply_path_prefix(worktree, path), blob->id.sha1,
603 51514078 2018-12-25 stsp worktree->base_commit_id->sha1);
604 51514078 2018-12-25 stsp if (err)
605 51514078 2018-12-25 stsp goto done;
606 51514078 2018-12-25 stsp err = got_fileindex_entry_add(fileindex, entry);
607 51514078 2018-12-25 stsp }
608 9d31a1d8 2018-03-11 stsp if (err)
609 9d31a1d8 2018-03-11 stsp goto done;
610 9d31a1d8 2018-03-11 stsp done:
611 507dc3bb 2018-12-29 stsp if (fd != -1)
612 507dc3bb 2018-12-29 stsp close(fd);
613 c34b20a2 2018-03-12 stsp free(ondisk_path);
614 507dc3bb 2018-12-29 stsp free(tmppath);
615 9d31a1d8 2018-03-11 stsp return err;
616 9d31a1d8 2018-03-11 stsp }
617 9d31a1d8 2018-03-11 stsp
618 9d31a1d8 2018-03-11 stsp static const struct got_error *
619 9d31a1d8 2018-03-11 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
620 9d31a1d8 2018-03-11 stsp {
621 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
622 9d31a1d8 2018-03-11 stsp char *abspath;
623 9d31a1d8 2018-03-11 stsp
624 9d31a1d8 2018-03-11 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path,
625 9d31a1d8 2018-03-11 stsp apply_path_prefix(worktree, path)) == -1)
626 0a585a0d 2018-03-17 stsp return got_error_from_errno();
627 9d31a1d8 2018-03-11 stsp
628 9d31a1d8 2018-03-11 stsp /* XXX queue work rather than editing disk directly? */
629 9d31a1d8 2018-03-11 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1) {
630 9d31a1d8 2018-03-11 stsp struct stat sb;
631 9d31a1d8 2018-03-11 stsp
632 9d31a1d8 2018-03-11 stsp if (errno != EEXIST) {
633 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
634 9d31a1d8 2018-03-11 stsp goto done;
635 9d31a1d8 2018-03-11 stsp }
636 9d31a1d8 2018-03-11 stsp
637 9d31a1d8 2018-03-11 stsp if (lstat(abspath, &sb) == -1) {
638 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
639 9d31a1d8 2018-03-11 stsp goto done;
640 9d31a1d8 2018-03-11 stsp }
641 9d31a1d8 2018-03-11 stsp
642 9d31a1d8 2018-03-11 stsp if (!S_ISDIR(sb.st_mode)) {
643 9d31a1d8 2018-03-11 stsp /* TODO directory is obstructed; do something */
644 9d31a1d8 2018-03-11 stsp return got_error(GOT_ERR_FILE_OBSTRUCTED);
645 9d31a1d8 2018-03-11 stsp }
646 9d31a1d8 2018-03-11 stsp }
647 9d31a1d8 2018-03-11 stsp
648 9d31a1d8 2018-03-11 stsp done:
649 9d31a1d8 2018-03-11 stsp free(abspath);
650 9d31a1d8 2018-03-11 stsp return err;
651 9d31a1d8 2018-03-11 stsp }
652 9d31a1d8 2018-03-11 stsp
653 9d31a1d8 2018-03-11 stsp static const struct got_error *
654 9d31a1d8 2018-03-11 stsp tree_checkout(struct got_worktree *, struct got_fileindex *,
655 92a684f4 2018-03-12 stsp struct got_tree_object *, const char *, struct got_repository *,
656 99437157 2018-11-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
657 99437157 2018-11-11 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg);
658 9d31a1d8 2018-03-11 stsp
659 9d31a1d8 2018-03-11 stsp static const struct got_error *
660 9d31a1d8 2018-03-11 stsp tree_checkout_entry(struct got_worktree *worktree,
661 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex, struct got_tree_entry *te,
662 92a684f4 2018-03-12 stsp const char *parent, struct got_repository *repo,
663 99437157 2018-11-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
664 99437157 2018-11-11 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
665 9d31a1d8 2018-03-11 stsp {
666 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
667 9d31a1d8 2018-03-11 stsp struct got_object *obj = NULL;
668 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
669 eac9755f 2018-12-29 stsp struct got_fileindex_entry *entry = NULL;
670 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
671 9d31a1d8 2018-03-11 stsp char *path = NULL;
672 f7b38925 2018-04-01 stsp char *progress_path = NULL;
673 9d31a1d8 2018-03-11 stsp size_t len;
674 9d31a1d8 2018-03-11 stsp
675 9d31a1d8 2018-03-11 stsp if (parent[0] == '/' && parent[1] == '\0')
676 9d31a1d8 2018-03-11 stsp parent = "";
677 9d31a1d8 2018-03-11 stsp if (asprintf(&path, "%s/%s", parent, te->name) == -1)
678 0a585a0d 2018-03-17 stsp return got_error_from_errno();
679 9d31a1d8 2018-03-11 stsp
680 9d31a1d8 2018-03-11 stsp /* Skip this entry if it is outside of our path prefix. */
681 9d31a1d8 2018-03-11 stsp len = MIN(strlen(worktree->path_prefix), strlen(path));
682 9d31a1d8 2018-03-11 stsp if (strncmp(path, worktree->path_prefix, len) != 0) {
683 9d31a1d8 2018-03-11 stsp free(path);
684 9d31a1d8 2018-03-11 stsp return NULL;
685 9d31a1d8 2018-03-11 stsp }
686 9d31a1d8 2018-03-11 stsp
687 9d31a1d8 2018-03-11 stsp err = got_object_open(&obj, repo, te->id);
688 9d31a1d8 2018-03-11 stsp if (err)
689 9d31a1d8 2018-03-11 stsp goto done;
690 9d31a1d8 2018-03-11 stsp
691 f7b38925 2018-04-01 stsp progress_path = path;
692 f7b38925 2018-04-01 stsp if (strncmp(progress_path, worktree->path_prefix, len) == 0)
693 f7b38925 2018-04-01 stsp progress_path += len;
694 92a684f4 2018-03-12 stsp
695 15a94983 2018-12-23 stsp switch (obj->type) {
696 9d31a1d8 2018-03-11 stsp case GOT_OBJ_TYPE_BLOB:
697 9d31a1d8 2018-03-11 stsp if (strlen(worktree->path_prefix) >= strlen(path))
698 9d31a1d8 2018-03-11 stsp break;
699 eac9755f 2018-12-29 stsp entry = got_fileindex_entry_get(fileindex,
700 eac9755f 2018-12-29 stsp apply_path_prefix(worktree, path));
701 eac9755f 2018-12-29 stsp if (entry &&
702 eac9755f 2018-12-29 stsp memcmp(entry->commit_sha1, worktree->base_commit_id->sha1,
703 507dc3bb 2018-12-29 stsp SHA1_DIGEST_LENGTH) == 0) {
704 507dc3bb 2018-12-29 stsp (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
705 507dc3bb 2018-12-29 stsp progress_path);
706 507dc3bb 2018-12-29 stsp break;
707 507dc3bb 2018-12-29 stsp }
708 507dc3bb 2018-12-29 stsp if (entry && memcmp(entry->blob_sha1, obj->id.sha1,
709 eac9755f 2018-12-29 stsp SHA1_DIGEST_LENGTH) == 0)
710 507dc3bb 2018-12-29 stsp break;
711 9d31a1d8 2018-03-11 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
712 9d31a1d8 2018-03-11 stsp if (err)
713 9d31a1d8 2018-03-11 stsp goto done;
714 eac9755f 2018-12-29 stsp err = blob_checkout(worktree, fileindex, entry, path, blob,
715 eac9755f 2018-12-29 stsp repo, progress_cb, progress_arg, progress_path);
716 9d31a1d8 2018-03-11 stsp break;
717 9d31a1d8 2018-03-11 stsp case GOT_OBJ_TYPE_TREE:
718 9d31a1d8 2018-03-11 stsp if (strlen(worktree->path_prefix) < strlen(path)) {
719 9d31a1d8 2018-03-11 stsp err = add_dir_on_disk(worktree, path);
720 9d31a1d8 2018-03-11 stsp if (err)
721 9d31a1d8 2018-03-11 stsp break;
722 9d31a1d8 2018-03-11 stsp }
723 381be7cc 2018-12-29 stsp err = got_object_tree_open(&tree, repo, obj);
724 381be7cc 2018-12-29 stsp if (err)
725 381be7cc 2018-12-29 stsp goto done;
726 99437157 2018-11-11 stsp /* XXX infinite recursion possible */
727 92a684f4 2018-03-12 stsp err = tree_checkout(worktree, fileindex, tree, path, repo,
728 99437157 2018-11-11 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
729 9d31a1d8 2018-03-11 stsp break;
730 9d31a1d8 2018-03-11 stsp default:
731 9d31a1d8 2018-03-11 stsp break;
732 9d31a1d8 2018-03-11 stsp }
733 9d31a1d8 2018-03-11 stsp
734 9d31a1d8 2018-03-11 stsp done:
735 9d31a1d8 2018-03-11 stsp if (blob)
736 9d31a1d8 2018-03-11 stsp got_object_blob_close(blob);
737 9d31a1d8 2018-03-11 stsp if (tree)
738 9d31a1d8 2018-03-11 stsp got_object_tree_close(tree);
739 9d31a1d8 2018-03-11 stsp if (obj)
740 9d31a1d8 2018-03-11 stsp got_object_close(obj);
741 9d31a1d8 2018-03-11 stsp free(path);
742 512f0d0e 2019-01-02 stsp return err;
743 512f0d0e 2019-01-02 stsp }
744 512f0d0e 2019-01-02 stsp
745 512f0d0e 2019-01-02 stsp struct collect_missing_entry_args {
746 512f0d0e 2019-01-02 stsp struct got_fileindex *fileindex;
747 512f0d0e 2019-01-02 stsp const struct got_tree_entries *entries;
748 512f0d0e 2019-01-02 stsp struct got_fileindex missing_entries;
749 512f0d0e 2019-01-02 stsp const char *path_prefix;
750 512f0d0e 2019-01-02 stsp };
751 512f0d0e 2019-01-02 stsp
752 512f0d0e 2019-01-02 stsp static const struct got_error *
753 512f0d0e 2019-01-02 stsp collect_missing_file(void *args, struct got_fileindex_entry *entry)
754 512f0d0e 2019-01-02 stsp {
755 512f0d0e 2019-01-02 stsp struct collect_missing_entry_args *a = args;
756 512f0d0e 2019-01-02 stsp char *name;
757 512f0d0e 2019-01-02 stsp struct got_tree_entry *te;
758 512f0d0e 2019-01-02 stsp int found = 0;
759 512f0d0e 2019-01-02 stsp
760 512f0d0e 2019-01-02 stsp if (a->path_prefix[0] == '\0' && strchr(entry->path, '/') != NULL)
761 512f0d0e 2019-01-02 stsp return NULL;
762 512f0d0e 2019-01-02 stsp if (a->path_prefix[0] != '\0' &&
763 512f0d0e 2019-01-02 stsp strncmp(a->path_prefix, entry->path, strlen(a->path_prefix)) != 0)
764 512f0d0e 2019-01-02 stsp return NULL;
765 512f0d0e 2019-01-02 stsp
766 512f0d0e 2019-01-02 stsp name = basename(entry->path);
767 512f0d0e 2019-01-02 stsp if (name == NULL)
768 512f0d0e 2019-01-02 stsp return got_error_from_errno();
769 512f0d0e 2019-01-02 stsp
770 512f0d0e 2019-01-02 stsp SIMPLEQ_FOREACH(te, &a->entries->head, entry) {
771 512f0d0e 2019-01-02 stsp if (strcmp(te->name, name) == 0) {
772 512f0d0e 2019-01-02 stsp found = 1;
773 512f0d0e 2019-01-02 stsp break;
774 512f0d0e 2019-01-02 stsp }
775 512f0d0e 2019-01-02 stsp }
776 512f0d0e 2019-01-02 stsp
777 512f0d0e 2019-01-02 stsp if (found)
778 512f0d0e 2019-01-02 stsp return NULL;
779 512f0d0e 2019-01-02 stsp
780 512f0d0e 2019-01-02 stsp got_fileindex_entry_remove(a->fileindex, entry);
781 512f0d0e 2019-01-02 stsp return got_fileindex_entry_add(&a->missing_entries, entry);
782 512f0d0e 2019-01-02 stsp }
783 512f0d0e 2019-01-02 stsp
784 512f0d0e 2019-01-02 stsp /* Remove files which exist in the file index but not in the tree. */
785 512f0d0e 2019-01-02 stsp static const struct got_error *
786 512f0d0e 2019-01-02 stsp remove_missing_files(struct got_worktree *worktree, const char *path,
787 512f0d0e 2019-01-02 stsp struct got_fileindex *fileindex, const struct got_tree_entries *entries,
788 512f0d0e 2019-01-02 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
789 512f0d0e 2019-01-02 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
790 512f0d0e 2019-01-02 stsp {
791 512f0d0e 2019-01-02 stsp const struct got_error *err = NULL;
792 512f0d0e 2019-01-02 stsp struct collect_missing_entry_args a;
793 512f0d0e 2019-01-02 stsp struct got_fileindex_entry *entry, *tmp;
794 512f0d0e 2019-01-02 stsp
795 512f0d0e 2019-01-02 stsp a.fileindex = fileindex;
796 512f0d0e 2019-01-02 stsp a.entries = entries;
797 512f0d0e 2019-01-02 stsp a.missing_entries.nentries = 0;
798 512f0d0e 2019-01-02 stsp a.path_prefix = path;
799 512f0d0e 2019-01-02 stsp while (a.path_prefix[0] == '/')
800 512f0d0e 2019-01-02 stsp a.path_prefix++;
801 512f0d0e 2019-01-02 stsp TAILQ_INIT(&a.missing_entries.entries);
802 512f0d0e 2019-01-02 stsp err = got_fileindex_for_each_entry(fileindex, collect_missing_file, &a);
803 512f0d0e 2019-01-02 stsp if (err)
804 512f0d0e 2019-01-02 stsp return err;
805 512f0d0e 2019-01-02 stsp
806 512f0d0e 2019-01-02 stsp TAILQ_FOREACH_SAFE(entry, &a.missing_entries.entries, entry, tmp) {
807 512f0d0e 2019-01-02 stsp char *ondisk_path = NULL;
808 512f0d0e 2019-01-02 stsp
809 512f0d0e 2019-01-02 stsp if (cancel_cb) {
810 512f0d0e 2019-01-02 stsp err = (*cancel_cb)(cancel_arg);
811 512f0d0e 2019-01-02 stsp if (err)
812 512f0d0e 2019-01-02 stsp break;
813 512f0d0e 2019-01-02 stsp }
814 512f0d0e 2019-01-02 stsp
815 512f0d0e 2019-01-02 stsp (*progress_cb)(progress_arg, GOT_STATUS_DELETE, entry->path);
816 512f0d0e 2019-01-02 stsp
817 512f0d0e 2019-01-02 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path,
818 512f0d0e 2019-01-02 stsp entry->path) == -1) {
819 512f0d0e 2019-01-02 stsp err = got_error_from_errno();
820 512f0d0e 2019-01-02 stsp break;
821 512f0d0e 2019-01-02 stsp }
822 512f0d0e 2019-01-02 stsp
823 512f0d0e 2019-01-02 stsp if (unlink(ondisk_path) == -1)
824 512f0d0e 2019-01-02 stsp err = got_error_from_errno();
825 512f0d0e 2019-01-02 stsp free(ondisk_path);
826 512f0d0e 2019-01-02 stsp if (err)
827 512f0d0e 2019-01-02 stsp break;
828 512f0d0e 2019-01-02 stsp
829 512f0d0e 2019-01-02 stsp TAILQ_REMOVE(&a.missing_entries.entries, entry, entry);
830 512f0d0e 2019-01-02 stsp got_fileindex_entry_free(entry);
831 512f0d0e 2019-01-02 stsp }
832 512f0d0e 2019-01-02 stsp
833 512f0d0e 2019-01-02 stsp if (err) {
834 512f0d0e 2019-01-02 stsp while (!TAILQ_EMPTY(&a.missing_entries.entries)) {
835 512f0d0e 2019-01-02 stsp entry = TAILQ_FIRST(&a.missing_entries.entries);
836 512f0d0e 2019-01-02 stsp TAILQ_REMOVE(&a.missing_entries.entries, entry, entry);
837 512f0d0e 2019-01-02 stsp got_fileindex_entry_free(entry);
838 512f0d0e 2019-01-02 stsp }
839 512f0d0e 2019-01-02 stsp }
840 512f0d0e 2019-01-02 stsp
841 9d31a1d8 2018-03-11 stsp return err;
842 9d31a1d8 2018-03-11 stsp }
843 9d31a1d8 2018-03-11 stsp
844 9d31a1d8 2018-03-11 stsp static const struct got_error *
845 9d31a1d8 2018-03-11 stsp tree_checkout(struct got_worktree *worktree,
846 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex, struct got_tree_object *tree,
847 92a684f4 2018-03-12 stsp const char *path, struct got_repository *repo,
848 99437157 2018-11-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
849 99437157 2018-11-11 stsp got_worktree_cancel_cb cancel_cb, void *cancel_arg)
850 9d31a1d8 2018-03-11 stsp {
851 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
852 883f0469 2018-06-23 stsp const struct got_tree_entries *entries;
853 9d31a1d8 2018-03-11 stsp struct got_tree_entry *te;
854 9d31a1d8 2018-03-11 stsp size_t len;
855 9d31a1d8 2018-03-11 stsp
856 9d31a1d8 2018-03-11 stsp /* Skip this tree if it is outside of our path prefix. */
857 9d31a1d8 2018-03-11 stsp len = MIN(strlen(worktree->path_prefix), strlen(path));
858 9d31a1d8 2018-03-11 stsp if (strncmp(path, worktree->path_prefix, len) != 0)
859 9d31a1d8 2018-03-11 stsp return NULL;
860 9d31a1d8 2018-03-11 stsp
861 883f0469 2018-06-23 stsp entries = got_object_tree_get_entries(tree);
862 883f0469 2018-06-23 stsp SIMPLEQ_FOREACH(te, &entries->head, entry) {
863 99437157 2018-11-11 stsp if (cancel_cb) {
864 99437157 2018-11-11 stsp err = (*cancel_cb)(cancel_arg);
865 99437157 2018-11-11 stsp if (err)
866 512f0d0e 2019-01-02 stsp return err;
867 99437157 2018-11-11 stsp }
868 92a684f4 2018-03-12 stsp err = tree_checkout_entry(worktree, fileindex, te, path, repo,
869 99437157 2018-11-11 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
870 9d31a1d8 2018-03-11 stsp if (err)
871 512f0d0e 2019-01-02 stsp return err;
872 9d31a1d8 2018-03-11 stsp }
873 9d31a1d8 2018-03-11 stsp
874 512f0d0e 2019-01-02 stsp len = strlen(worktree->path_prefix);
875 512f0d0e 2019-01-02 stsp if (strncmp(worktree->path_prefix, path, len) == 0) {
876 512f0d0e 2019-01-02 stsp err = remove_missing_files(worktree, path, fileindex, entries,
877 512f0d0e 2019-01-02 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
878 512f0d0e 2019-01-02 stsp if (err)
879 512f0d0e 2019-01-02 stsp return err;
880 512f0d0e 2019-01-02 stsp }
881 512f0d0e 2019-01-02 stsp
882 9d31a1d8 2018-03-11 stsp return err;
883 9d31a1d8 2018-03-11 stsp }
884 9d31a1d8 2018-03-11 stsp
885 9d31a1d8 2018-03-11 stsp const struct got_error *
886 9d31a1d8 2018-03-11 stsp got_worktree_checkout_files(struct got_worktree *worktree,
887 93a30277 2018-12-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
888 93a30277 2018-12-24 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
889 9d31a1d8 2018-03-11 stsp {
890 a143fb78 2018-12-25 stsp const struct got_error *err = NULL, *unlockerr, *checkout_err = NULL;
891 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
892 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
893 9d31a1d8 2018-03-11 stsp char *fileindex_path = NULL, *new_fileindex_path = NULL;
894 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
895 51514078 2018-12-25 stsp FILE *index = NULL, *new_index = NULL;
896 9d31a1d8 2018-03-11 stsp
897 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
898 9d31a1d8 2018-03-11 stsp if (err)
899 9d31a1d8 2018-03-11 stsp return err;
900 93a30277 2018-12-24 stsp
901 7426bbfd 2018-12-24 stsp fileindex = got_fileindex_alloc();
902 9d31a1d8 2018-03-11 stsp if (fileindex == NULL) {
903 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
904 9d31a1d8 2018-03-11 stsp goto done;
905 9d31a1d8 2018-03-11 stsp }
906 9d31a1d8 2018-03-11 stsp
907 9d31a1d8 2018-03-11 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
908 9d31a1d8 2018-03-11 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
909 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
910 9d31a1d8 2018-03-11 stsp fileindex_path = NULL;
911 9d31a1d8 2018-03-11 stsp goto done;
912 9d31a1d8 2018-03-11 stsp }
913 9d31a1d8 2018-03-11 stsp
914 51514078 2018-12-25 stsp /*
915 51514078 2018-12-25 stsp * Read the file index.
916 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
917 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
918 51514078 2018-12-25 stsp */
919 51514078 2018-12-25 stsp index = fopen(fileindex_path, "rb");
920 51514078 2018-12-25 stsp if (index == NULL) {
921 51514078 2018-12-25 stsp err = got_error_from_errno();
922 51514078 2018-12-25 stsp goto done;
923 51514078 2018-12-25 stsp }
924 51514078 2018-12-25 stsp err = got_fileindex_read(fileindex, index);
925 51514078 2018-12-25 stsp fclose(index);
926 51514078 2018-12-25 stsp if (err)
927 51514078 2018-12-25 stsp goto done;
928 51514078 2018-12-25 stsp
929 b8bdcc21 2018-12-24 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
930 b8bdcc21 2018-12-24 stsp fileindex_path);
931 51664889 2018-03-12 stsp if (err)
932 51664889 2018-03-12 stsp goto done;
933 51664889 2018-03-12 stsp
934 eaccb85f 2018-12-25 stsp err = got_object_open_as_commit(&commit, repo,
935 eaccb85f 2018-12-25 stsp worktree->base_commit_id);
936 9d31a1d8 2018-03-11 stsp if (err)
937 9d31a1d8 2018-03-11 stsp goto done;
938 9d31a1d8 2018-03-11 stsp
939 93a30277 2018-12-24 stsp err = got_object_open_as_tree(&tree, repo, commit->tree_id);
940 9d31a1d8 2018-03-11 stsp if (err)
941 9d31a1d8 2018-03-11 stsp goto done;
942 9d31a1d8 2018-03-11 stsp
943 a143fb78 2018-12-25 stsp checkout_err = tree_checkout(worktree, fileindex, tree, "/", repo,
944 a143fb78 2018-12-25 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
945 9d31a1d8 2018-03-11 stsp
946 a143fb78 2018-12-25 stsp /* Try to sync the fileindex back to disk in any case. */
947 b8bdcc21 2018-12-24 stsp err = got_fileindex_write(fileindex, new_index);
948 9d31a1d8 2018-03-11 stsp if (err)
949 9d31a1d8 2018-03-11 stsp goto done;
950 9d31a1d8 2018-03-11 stsp
951 9d31a1d8 2018-03-11 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
952 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
953 9d31a1d8 2018-03-11 stsp goto done;
954 9d31a1d8 2018-03-11 stsp }
955 9d31a1d8 2018-03-11 stsp
956 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
957 9d31a1d8 2018-03-11 stsp new_fileindex_path = NULL;
958 9d31a1d8 2018-03-11 stsp
959 9d31a1d8 2018-03-11 stsp done:
960 edfa7d7f 2018-09-11 stsp if (tree)
961 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
962 9d31a1d8 2018-03-11 stsp if (commit)
963 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
964 9d31a1d8 2018-03-11 stsp if (new_fileindex_path)
965 9d31a1d8 2018-03-11 stsp unlink(new_fileindex_path);
966 b8bdcc21 2018-12-24 stsp if (new_index)
967 b8bdcc21 2018-12-24 stsp fclose(new_index);
968 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
969 9d31a1d8 2018-03-11 stsp free(fileindex_path);
970 7426bbfd 2018-12-24 stsp got_fileindex_free(fileindex);
971 a143fb78 2018-12-25 stsp if (checkout_err)
972 a143fb78 2018-12-25 stsp err = checkout_err;
973 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
974 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
975 9d31a1d8 2018-03-11 stsp err = unlockerr;
976 9d31a1d8 2018-03-11 stsp return err;
977 9d31a1d8 2018-03-11 stsp }