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 86c3caaf 2018-03-09 stsp
31 86c3caaf 2018-03-09 stsp #include "got_error.h"
32 86c3caaf 2018-03-09 stsp #include "got_repository.h"
33 5261c201 2018-04-01 stsp #include "got_reference.h"
34 9d31a1d8 2018-03-11 stsp #include "got_object.h"
35 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
36 511a516b 2018-05-19 stsp #include "got_opentemp.h"
37 86c3caaf 2018-03-09 stsp
38 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
39 718b3ab0 2018-03-17 stsp #include "got_lib_path.h"
40 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
41 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
42 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
43 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
44 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
45 9d31a1d8 2018-03-11 stsp
46 9d31a1d8 2018-03-11 stsp #ifndef MIN
47 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
48 9d31a1d8 2018-03-11 stsp #endif
49 86c3caaf 2018-03-09 stsp
50 99724ed4 2018-03-10 stsp static const struct got_error *
51 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
52 99724ed4 2018-03-10 stsp {
53 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
54 99724ed4 2018-03-10 stsp char *path;
55 99724ed4 2018-03-10 stsp int fd = -1;
56 99724ed4 2018-03-10 stsp char buf[4];
57 99724ed4 2018-03-10 stsp ssize_t n;
58 99724ed4 2018-03-10 stsp
59 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
60 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
61 99724ed4 2018-03-10 stsp path = NULL;
62 99724ed4 2018-03-10 stsp goto done;
63 99724ed4 2018-03-10 stsp }
64 99724ed4 2018-03-10 stsp
65 73a5ef67 2018-03-11 stsp fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
66 99724ed4 2018-03-10 stsp GOT_DEFAULT_FILE_MODE);
67 99724ed4 2018-03-10 stsp if (fd == -1) {
68 99724ed4 2018-03-10 stsp err = got_error_from_errno();
69 99724ed4 2018-03-10 stsp goto done;
70 99724ed4 2018-03-10 stsp }
71 99724ed4 2018-03-10 stsp
72 99724ed4 2018-03-10 stsp /* The file should be empty. */
73 99724ed4 2018-03-10 stsp n = read(fd, buf, sizeof(buf));
74 99724ed4 2018-03-10 stsp if (n != 0) {
75 99724ed4 2018-03-10 stsp err = (n == -1 ? got_error_from_errno() :
76 99724ed4 2018-03-10 stsp got_error(GOT_ERR_WORKTREE_EXISTS));
77 99724ed4 2018-03-10 stsp goto done;
78 99724ed4 2018-03-10 stsp }
79 99724ed4 2018-03-10 stsp
80 99724ed4 2018-03-10 stsp if (content) {
81 99724ed4 2018-03-10 stsp int len = dprintf(fd, "%s\n", content);
82 99724ed4 2018-03-10 stsp if (len != strlen(content) + 1) {
83 99724ed4 2018-03-10 stsp err = got_error_from_errno();
84 99724ed4 2018-03-10 stsp goto done;
85 99724ed4 2018-03-10 stsp }
86 99724ed4 2018-03-10 stsp }
87 99724ed4 2018-03-10 stsp
88 99724ed4 2018-03-10 stsp done:
89 99724ed4 2018-03-10 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
90 99724ed4 2018-03-10 stsp err = got_error_from_errno();
91 99724ed4 2018-03-10 stsp free(path);
92 99724ed4 2018-03-10 stsp return err;
93 99724ed4 2018-03-10 stsp }
94 99724ed4 2018-03-10 stsp
95 09fe317a 2018-03-11 stsp static const struct got_error *
96 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
97 09fe317a 2018-03-11 stsp {
98 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
99 09fe317a 2018-03-11 stsp char *path;
100 09fe317a 2018-03-11 stsp int fd = -1;
101 09fe317a 2018-03-11 stsp ssize_t n;
102 09fe317a 2018-03-11 stsp struct stat sb;
103 09fe317a 2018-03-11 stsp
104 09fe317a 2018-03-11 stsp *content = NULL;
105 09fe317a 2018-03-11 stsp
106 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
107 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
108 09fe317a 2018-03-11 stsp path = NULL;
109 09fe317a 2018-03-11 stsp goto done;
110 09fe317a 2018-03-11 stsp }
111 09fe317a 2018-03-11 stsp
112 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
113 09fe317a 2018-03-11 stsp if (fd == -1) {
114 ef99fdb1 2018-03-11 stsp err = got_error_from_errno();
115 ef99fdb1 2018-03-11 stsp goto done;
116 ef99fdb1 2018-03-11 stsp }
117 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
118 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
119 73a5ef67 2018-03-11 stsp : got_error_from_errno());
120 09fe317a 2018-03-11 stsp goto done;
121 09fe317a 2018-03-11 stsp }
122 09fe317a 2018-03-11 stsp
123 09fe317a 2018-03-11 stsp stat(path, &sb);
124 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
125 09fe317a 2018-03-11 stsp if (*content == NULL) {
126 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
127 09fe317a 2018-03-11 stsp goto done;
128 09fe317a 2018-03-11 stsp }
129 09fe317a 2018-03-11 stsp
130 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
131 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
132 0605801d 2018-03-11 stsp err = (n == -1 ? got_error_from_errno() :
133 0605801d 2018-03-11 stsp got_error(GOT_ERR_WORKTREE_META));
134 09fe317a 2018-03-11 stsp goto done;
135 09fe317a 2018-03-11 stsp }
136 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
137 09fe317a 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
138 09fe317a 2018-03-11 stsp goto done;
139 09fe317a 2018-03-11 stsp }
140 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
141 09fe317a 2018-03-11 stsp
142 09fe317a 2018-03-11 stsp done:
143 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
144 09fe317a 2018-03-11 stsp err = got_error_from_errno();
145 09fe317a 2018-03-11 stsp free(path);
146 09fe317a 2018-03-11 stsp if (err) {
147 09fe317a 2018-03-11 stsp free(*content);
148 09fe317a 2018-03-11 stsp *content = NULL;
149 09fe317a 2018-03-11 stsp }
150 09fe317a 2018-03-11 stsp return err;
151 09fe317a 2018-03-11 stsp }
152 09fe317a 2018-03-11 stsp
153 86c3caaf 2018-03-09 stsp const struct got_error *
154 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
155 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
156 86c3caaf 2018-03-09 stsp {
157 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
158 7ac97322 2018-03-11 stsp char *path_got = NULL;
159 86c3caaf 2018-03-09 stsp char *refstr = NULL;
160 cde76477 2018-03-11 stsp char *repo_path = NULL;
161 1451e70d 2018-03-10 stsp char *formatstr = NULL;
162 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
163 86c3caaf 2018-03-09 stsp
164 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
165 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
166 0a585a0d 2018-03-17 stsp return got_error_from_errno();
167 0bb8a95e 2018-03-12 stsp }
168 577ec78f 2018-03-11 stsp
169 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
170 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
171 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
172 86c3caaf 2018-03-09 stsp goto done;
173 86c3caaf 2018-03-09 stsp }
174 86c3caaf 2018-03-09 stsp
175 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
176 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
177 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
178 86c3caaf 2018-03-09 stsp goto done;
179 86c3caaf 2018-03-09 stsp }
180 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
181 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
182 86c3caaf 2018-03-09 stsp goto done;
183 86c3caaf 2018-03-09 stsp }
184 86c3caaf 2018-03-09 stsp
185 056e7441 2018-03-11 stsp /* Create an empty lock file. */
186 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
187 056e7441 2018-03-11 stsp if (err)
188 056e7441 2018-03-11 stsp goto done;
189 056e7441 2018-03-11 stsp
190 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
191 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
192 99724ed4 2018-03-10 stsp if (err)
193 86c3caaf 2018-03-09 stsp goto done;
194 86c3caaf 2018-03-09 stsp
195 86c3caaf 2018-03-09 stsp /* Write the HEAD reference. */
196 86c3caaf 2018-03-09 stsp refstr = got_ref_to_str(head_ref);
197 86c3caaf 2018-03-09 stsp if (refstr == NULL) {
198 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
199 86c3caaf 2018-03-09 stsp goto done;
200 86c3caaf 2018-03-09 stsp }
201 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_HEAD, refstr);
202 99724ed4 2018-03-10 stsp if (err)
203 86c3caaf 2018-03-09 stsp goto done;
204 86c3caaf 2018-03-09 stsp
205 1451e70d 2018-03-10 stsp /* Store path to repository. */
206 cde76477 2018-03-11 stsp repo_path = got_repo_get_path(repo);
207 cde76477 2018-03-11 stsp if (repo_path == NULL) {
208 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
209 86c3caaf 2018-03-09 stsp goto done;
210 86c3caaf 2018-03-09 stsp }
211 cde76477 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY, repo_path);
212 99724ed4 2018-03-10 stsp if (err)
213 86c3caaf 2018-03-09 stsp goto done;
214 86c3caaf 2018-03-09 stsp
215 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
216 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
217 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
218 577ec78f 2018-03-11 stsp if (err)
219 577ec78f 2018-03-11 stsp goto done;
220 577ec78f 2018-03-11 stsp
221 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
222 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
223 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
224 1451e70d 2018-03-10 stsp goto done;
225 1451e70d 2018-03-10 stsp }
226 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
227 99724ed4 2018-03-10 stsp if (err)
228 1451e70d 2018-03-10 stsp goto done;
229 1451e70d 2018-03-10 stsp
230 86c3caaf 2018-03-09 stsp done:
231 7ac97322 2018-03-11 stsp free(path_got);
232 1451e70d 2018-03-10 stsp free(formatstr);
233 86c3caaf 2018-03-09 stsp free(refstr);
234 cde76477 2018-03-11 stsp free(repo_path);
235 0bb8a95e 2018-03-12 stsp free(absprefix);
236 86c3caaf 2018-03-09 stsp return err;
237 86c3caaf 2018-03-09 stsp }
238 86c3caaf 2018-03-09 stsp
239 86c3caaf 2018-03-09 stsp const struct got_error *
240 86c3caaf 2018-03-09 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
241 86c3caaf 2018-03-09 stsp {
242 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
243 7ac97322 2018-03-11 stsp char *path_got;
244 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
245 056e7441 2018-03-11 stsp char *path_lock = NULL;
246 6d9d28c3 2018-03-11 stsp int version, fd = -1;
247 6d9d28c3 2018-03-11 stsp const char *errstr;
248 6d9d28c3 2018-03-11 stsp
249 6d9d28c3 2018-03-11 stsp *worktree = NULL;
250 6d9d28c3 2018-03-11 stsp
251 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
252 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
253 7ac97322 2018-03-11 stsp path_got = NULL;
254 6d9d28c3 2018-03-11 stsp goto done;
255 6d9d28c3 2018-03-11 stsp }
256 6d9d28c3 2018-03-11 stsp
257 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
258 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
259 056e7441 2018-03-11 stsp path_lock = NULL;
260 6d9d28c3 2018-03-11 stsp goto done;
261 6d9d28c3 2018-03-11 stsp }
262 6d9d28c3 2018-03-11 stsp
263 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
264 6d9d28c3 2018-03-11 stsp if (fd == -1) {
265 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
266 73a5ef67 2018-03-11 stsp : got_error_from_errno());
267 6d9d28c3 2018-03-11 stsp goto done;
268 6d9d28c3 2018-03-11 stsp }
269 6d9d28c3 2018-03-11 stsp
270 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
271 6d9d28c3 2018-03-11 stsp if (err)
272 6d9d28c3 2018-03-11 stsp goto done;
273 6d9d28c3 2018-03-11 stsp
274 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
275 6d9d28c3 2018-03-11 stsp if (errstr) {
276 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
277 6d9d28c3 2018-03-11 stsp goto done;
278 6d9d28c3 2018-03-11 stsp }
279 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
280 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
281 6d9d28c3 2018-03-11 stsp goto done;
282 6d9d28c3 2018-03-11 stsp }
283 6d9d28c3 2018-03-11 stsp
284 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
285 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
286 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
287 6d9d28c3 2018-03-11 stsp goto done;
288 6d9d28c3 2018-03-11 stsp }
289 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
290 6d9d28c3 2018-03-11 stsp
291 c88eb298 2018-03-11 stsp (*worktree)->root_path = strdup(path);
292 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
293 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
294 6d9d28c3 2018-03-11 stsp goto done;
295 6d9d28c3 2018-03-11 stsp }
296 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
297 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
298 6d9d28c3 2018-03-11 stsp if (err)
299 6d9d28c3 2018-03-11 stsp goto done;
300 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
301 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
302 f5baf295 2018-03-11 stsp if (err)
303 f5baf295 2018-03-11 stsp goto done;
304 f5baf295 2018-03-11 stsp
305 e8f36958 2018-03-11 stsp err = read_meta_file(&(*worktree)->head_ref, path_got,
306 e8f36958 2018-03-11 stsp GOT_WORKTREE_HEAD);
307 f5baf295 2018-03-11 stsp if (err)
308 6d9d28c3 2018-03-11 stsp goto done;
309 6d9d28c3 2018-03-11 stsp
310 6d9d28c3 2018-03-11 stsp done:
311 7ac97322 2018-03-11 stsp free(path_got);
312 056e7441 2018-03-11 stsp free(path_lock);
313 6d9d28c3 2018-03-11 stsp if (err) {
314 6d9d28c3 2018-03-11 stsp if (fd != -1)
315 6d9d28c3 2018-03-11 stsp close(fd);
316 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
317 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
318 6d9d28c3 2018-03-11 stsp *worktree = NULL;
319 6d9d28c3 2018-03-11 stsp } else
320 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
321 6d9d28c3 2018-03-11 stsp
322 6d9d28c3 2018-03-11 stsp return err;
323 86c3caaf 2018-03-09 stsp }
324 86c3caaf 2018-03-09 stsp
325 86c3caaf 2018-03-09 stsp void
326 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
327 86c3caaf 2018-03-09 stsp {
328 c88eb298 2018-03-11 stsp free(worktree->root_path);
329 cde76477 2018-03-11 stsp free(worktree->repo_path);
330 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
331 d6c38e0d 2018-03-11 stsp free(worktree->base_commit);
332 e8f36958 2018-03-11 stsp free(worktree->head_ref);
333 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
334 056e7441 2018-03-11 stsp close(worktree->lockfd);
335 6d9d28c3 2018-03-11 stsp free(worktree);
336 86c3caaf 2018-03-09 stsp }
337 86c3caaf 2018-03-09 stsp
338 86c3caaf 2018-03-09 stsp char *
339 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
340 86c3caaf 2018-03-09 stsp {
341 cde76477 2018-03-11 stsp return strdup(worktree->repo_path);
342 86c3caaf 2018-03-09 stsp }
343 86c3caaf 2018-03-09 stsp
344 35be1456 2018-03-11 stsp char *
345 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
346 86c3caaf 2018-03-09 stsp {
347 35be1456 2018-03-11 stsp return strdup(worktree->head_ref);
348 86c3caaf 2018-03-09 stsp }
349 86c3caaf 2018-03-09 stsp
350 9d31a1d8 2018-03-11 stsp static const struct got_error *
351 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
352 86c3caaf 2018-03-09 stsp {
353 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
354 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
355 9d31a1d8 2018-03-11 stsp : got_error_from_errno());
356 86c3caaf 2018-03-09 stsp return NULL;
357 86c3caaf 2018-03-09 stsp }
358 9d31a1d8 2018-03-11 stsp
359 9d31a1d8 2018-03-11 stsp static const char *
360 9d31a1d8 2018-03-11 stsp apply_path_prefix(struct got_worktree *worktree, const char *path)
361 9d31a1d8 2018-03-11 stsp {
362 9d31a1d8 2018-03-11 stsp const char *p = path;
363 9d31a1d8 2018-03-11 stsp p += strlen(worktree->path_prefix);
364 9d31a1d8 2018-03-11 stsp if (*p == '/')
365 9d31a1d8 2018-03-11 stsp p++;
366 9d31a1d8 2018-03-11 stsp return p;
367 9d31a1d8 2018-03-11 stsp }
368 9d31a1d8 2018-03-11 stsp
369 9d31a1d8 2018-03-11 stsp static const struct got_error *
370 9d31a1d8 2018-03-11 stsp add_file_on_disk(struct got_worktree *worktree, struct got_fileindex *fileindex,
371 9d31a1d8 2018-03-11 stsp const char *path, struct got_blob_object *blob, struct got_repository *repo)
372 9d31a1d8 2018-03-11 stsp {
373 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
374 c34b20a2 2018-03-12 stsp char *ondisk_path;
375 9d31a1d8 2018-03-11 stsp int fd;
376 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
377 9d31a1d8 2018-03-11 stsp struct got_fileindex_entry *entry;
378 9d31a1d8 2018-03-11 stsp
379 c34b20a2 2018-03-12 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path,
380 9d31a1d8 2018-03-11 stsp apply_path_prefix(worktree, path)) == -1)
381 0a585a0d 2018-03-17 stsp return got_error_from_errno();
382 9d31a1d8 2018-03-11 stsp
383 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
384 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
385 9d31a1d8 2018-03-11 stsp if (fd == -1) {
386 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
387 9d31a1d8 2018-03-11 stsp if (errno == EEXIST) {
388 9d31a1d8 2018-03-11 stsp struct stat sb;
389 c34b20a2 2018-03-12 stsp if (lstat(ondisk_path, &sb) == -1) {
390 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
391 9d31a1d8 2018-03-11 stsp } else if (!S_ISREG(sb.st_mode)) {
392 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
393 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
394 9d31a1d8 2018-03-11 stsp }
395 9d31a1d8 2018-03-11 stsp }
396 9d31a1d8 2018-03-11 stsp return err;
397 9d31a1d8 2018-03-11 stsp }
398 9d31a1d8 2018-03-11 stsp
399 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
400 9d31a1d8 2018-03-11 stsp do {
401 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
402 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
403 9d31a1d8 2018-03-11 stsp if (err)
404 9d31a1d8 2018-03-11 stsp break;
405 9d31a1d8 2018-03-11 stsp if (len > 0) {
406 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
407 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
408 9d31a1d8 2018-03-11 stsp hdrlen = 0;
409 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
410 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
411 9d31a1d8 2018-03-11 stsp break;
412 9d31a1d8 2018-03-11 stsp } else if (outlen != len) {
413 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
414 9d31a1d8 2018-03-11 stsp break;
415 9d31a1d8 2018-03-11 stsp }
416 9d31a1d8 2018-03-11 stsp }
417 9d31a1d8 2018-03-11 stsp } while (len != 0);
418 9d31a1d8 2018-03-11 stsp
419 9d31a1d8 2018-03-11 stsp fsync(fd);
420 9d31a1d8 2018-03-11 stsp
421 c34b20a2 2018-03-12 stsp err = got_fileindex_entry_open(&entry, ondisk_path,
422 c34b20a2 2018-03-12 stsp apply_path_prefix(worktree, path), blob->id.sha1);
423 9d31a1d8 2018-03-11 stsp if (err)
424 9d31a1d8 2018-03-11 stsp goto done;
425 9d31a1d8 2018-03-11 stsp
426 9d31a1d8 2018-03-11 stsp err = got_fileindex_entry_add(fileindex, entry);
427 9d31a1d8 2018-03-11 stsp if (err)
428 9d31a1d8 2018-03-11 stsp goto done;
429 9d31a1d8 2018-03-11 stsp done:
430 9d31a1d8 2018-03-11 stsp close(fd);
431 c34b20a2 2018-03-12 stsp free(ondisk_path);
432 9d31a1d8 2018-03-11 stsp return err;
433 9d31a1d8 2018-03-11 stsp }
434 9d31a1d8 2018-03-11 stsp
435 9d31a1d8 2018-03-11 stsp static const struct got_error *
436 9d31a1d8 2018-03-11 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
437 9d31a1d8 2018-03-11 stsp {
438 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
439 9d31a1d8 2018-03-11 stsp char *abspath;
440 9d31a1d8 2018-03-11 stsp
441 9d31a1d8 2018-03-11 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path,
442 9d31a1d8 2018-03-11 stsp apply_path_prefix(worktree, path)) == -1)
443 0a585a0d 2018-03-17 stsp return got_error_from_errno();
444 9d31a1d8 2018-03-11 stsp
445 9d31a1d8 2018-03-11 stsp /* XXX queue work rather than editing disk directly? */
446 9d31a1d8 2018-03-11 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1) {
447 9d31a1d8 2018-03-11 stsp struct stat sb;
448 9d31a1d8 2018-03-11 stsp
449 9d31a1d8 2018-03-11 stsp if (errno != EEXIST) {
450 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
451 9d31a1d8 2018-03-11 stsp goto done;
452 9d31a1d8 2018-03-11 stsp }
453 9d31a1d8 2018-03-11 stsp
454 9d31a1d8 2018-03-11 stsp if (lstat(abspath, &sb) == -1) {
455 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
456 9d31a1d8 2018-03-11 stsp goto done;
457 9d31a1d8 2018-03-11 stsp }
458 9d31a1d8 2018-03-11 stsp
459 9d31a1d8 2018-03-11 stsp if (!S_ISDIR(sb.st_mode)) {
460 9d31a1d8 2018-03-11 stsp /* TODO directory is obstructed; do something */
461 9d31a1d8 2018-03-11 stsp return got_error(GOT_ERR_FILE_OBSTRUCTED);
462 9d31a1d8 2018-03-11 stsp }
463 9d31a1d8 2018-03-11 stsp }
464 9d31a1d8 2018-03-11 stsp
465 9d31a1d8 2018-03-11 stsp done:
466 9d31a1d8 2018-03-11 stsp free(abspath);
467 9d31a1d8 2018-03-11 stsp return err;
468 9d31a1d8 2018-03-11 stsp }
469 9d31a1d8 2018-03-11 stsp
470 9d31a1d8 2018-03-11 stsp static const struct got_error *
471 9d31a1d8 2018-03-11 stsp tree_checkout(struct got_worktree *, struct got_fileindex *,
472 92a684f4 2018-03-12 stsp struct got_tree_object *, const char *, struct got_repository *,
473 92a684f4 2018-03-12 stsp got_worktree_checkout_cb progress_cb, void *progress_arg);
474 9d31a1d8 2018-03-11 stsp
475 9d31a1d8 2018-03-11 stsp static const struct got_error *
476 9d31a1d8 2018-03-11 stsp tree_checkout_entry(struct got_worktree *worktree,
477 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex, struct got_tree_entry *te,
478 92a684f4 2018-03-12 stsp const char *parent, struct got_repository *repo,
479 92a684f4 2018-03-12 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
480 9d31a1d8 2018-03-11 stsp {
481 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
482 9d31a1d8 2018-03-11 stsp struct got_object *obj = NULL;
483 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
484 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
485 9d31a1d8 2018-03-11 stsp char *path = NULL;
486 f7b38925 2018-04-01 stsp char *progress_path = NULL;
487 9d31a1d8 2018-03-11 stsp size_t len;
488 9d31a1d8 2018-03-11 stsp
489 9d31a1d8 2018-03-11 stsp if (parent[0] == '/' && parent[1] == '\0')
490 9d31a1d8 2018-03-11 stsp parent = "";
491 9d31a1d8 2018-03-11 stsp if (asprintf(&path, "%s/%s", parent, te->name) == -1)
492 0a585a0d 2018-03-17 stsp return got_error_from_errno();
493 9d31a1d8 2018-03-11 stsp
494 9d31a1d8 2018-03-11 stsp /* Skip this entry if it is outside of our path prefix. */
495 9d31a1d8 2018-03-11 stsp len = MIN(strlen(worktree->path_prefix), strlen(path));
496 9d31a1d8 2018-03-11 stsp if (strncmp(path, worktree->path_prefix, len) != 0) {
497 9d31a1d8 2018-03-11 stsp free(path);
498 9d31a1d8 2018-03-11 stsp return NULL;
499 9d31a1d8 2018-03-11 stsp }
500 9d31a1d8 2018-03-11 stsp
501 9d31a1d8 2018-03-11 stsp err = got_object_open(&obj, repo, te->id);
502 9d31a1d8 2018-03-11 stsp if (err)
503 9d31a1d8 2018-03-11 stsp goto done;
504 9d31a1d8 2018-03-11 stsp
505 f7b38925 2018-04-01 stsp progress_path = path;
506 f7b38925 2018-04-01 stsp if (strncmp(progress_path, worktree->path_prefix, len) == 0)
507 f7b38925 2018-04-01 stsp progress_path += len;
508 f7b38925 2018-04-01 stsp (*progress_cb)(progress_arg, progress_path);
509 92a684f4 2018-03-12 stsp
510 9d31a1d8 2018-03-11 stsp switch (got_object_get_type(obj)) {
511 9d31a1d8 2018-03-11 stsp case GOT_OBJ_TYPE_BLOB:
512 9d31a1d8 2018-03-11 stsp if (strlen(worktree->path_prefix) >= strlen(path))
513 9d31a1d8 2018-03-11 stsp break;
514 9d31a1d8 2018-03-11 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
515 9d31a1d8 2018-03-11 stsp if (err)
516 9d31a1d8 2018-03-11 stsp goto done;
517 9d31a1d8 2018-03-11 stsp err = add_file_on_disk(worktree, fileindex, path, blob, repo);
518 9d31a1d8 2018-03-11 stsp break;
519 9d31a1d8 2018-03-11 stsp case GOT_OBJ_TYPE_TREE:
520 9d31a1d8 2018-03-11 stsp err = got_object_tree_open(&tree, repo, obj);
521 9d31a1d8 2018-03-11 stsp if (err)
522 9d31a1d8 2018-03-11 stsp goto done;
523 9d31a1d8 2018-03-11 stsp if (strlen(worktree->path_prefix) < strlen(path)) {
524 9d31a1d8 2018-03-11 stsp err = add_dir_on_disk(worktree, path);
525 9d31a1d8 2018-03-11 stsp if (err)
526 9d31a1d8 2018-03-11 stsp break;
527 9d31a1d8 2018-03-11 stsp }
528 92a684f4 2018-03-12 stsp err = tree_checkout(worktree, fileindex, tree, path, repo,
529 92a684f4 2018-03-12 stsp progress_cb, progress_arg);
530 9d31a1d8 2018-03-11 stsp break;
531 9d31a1d8 2018-03-11 stsp default:
532 9d31a1d8 2018-03-11 stsp break;
533 9d31a1d8 2018-03-11 stsp }
534 9d31a1d8 2018-03-11 stsp
535 9d31a1d8 2018-03-11 stsp done:
536 9d31a1d8 2018-03-11 stsp if (blob)
537 9d31a1d8 2018-03-11 stsp got_object_blob_close(blob);
538 9d31a1d8 2018-03-11 stsp if (tree)
539 9d31a1d8 2018-03-11 stsp got_object_tree_close(tree);
540 9d31a1d8 2018-03-11 stsp if (obj)
541 9d31a1d8 2018-03-11 stsp got_object_close(obj);
542 9d31a1d8 2018-03-11 stsp free(path);
543 9d31a1d8 2018-03-11 stsp return err;
544 9d31a1d8 2018-03-11 stsp }
545 9d31a1d8 2018-03-11 stsp
546 9d31a1d8 2018-03-11 stsp static const struct got_error *
547 9d31a1d8 2018-03-11 stsp tree_checkout(struct got_worktree *worktree,
548 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex, struct got_tree_object *tree,
549 92a684f4 2018-03-12 stsp const char *path, struct got_repository *repo,
550 92a684f4 2018-03-12 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
551 9d31a1d8 2018-03-11 stsp {
552 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
553 883f0469 2018-06-23 stsp const struct got_tree_entries *entries;
554 9d31a1d8 2018-03-11 stsp struct got_tree_entry *te;
555 9d31a1d8 2018-03-11 stsp size_t len;
556 9d31a1d8 2018-03-11 stsp
557 9d31a1d8 2018-03-11 stsp /* Skip this tree if it is outside of our path prefix. */
558 9d31a1d8 2018-03-11 stsp len = MIN(strlen(worktree->path_prefix), strlen(path));
559 9d31a1d8 2018-03-11 stsp if (strncmp(path, worktree->path_prefix, len) != 0)
560 9d31a1d8 2018-03-11 stsp return NULL;
561 9d31a1d8 2018-03-11 stsp
562 883f0469 2018-06-23 stsp entries = got_object_tree_get_entries(tree);
563 883f0469 2018-06-23 stsp SIMPLEQ_FOREACH(te, &entries->head, entry) {
564 92a684f4 2018-03-12 stsp err = tree_checkout_entry(worktree, fileindex, te, path, repo,
565 92a684f4 2018-03-12 stsp progress_cb, progress_arg);
566 9d31a1d8 2018-03-11 stsp if (err)
567 9d31a1d8 2018-03-11 stsp break;
568 9d31a1d8 2018-03-11 stsp }
569 9d31a1d8 2018-03-11 stsp
570 9d31a1d8 2018-03-11 stsp return err;
571 9d31a1d8 2018-03-11 stsp }
572 9d31a1d8 2018-03-11 stsp
573 9d31a1d8 2018-03-11 stsp const struct got_error *
574 9d31a1d8 2018-03-11 stsp got_worktree_checkout_files(struct got_worktree *worktree,
575 92a684f4 2018-03-12 stsp struct got_reference *head_ref, struct got_repository *repo,
576 92a684f4 2018-03-12 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
577 9d31a1d8 2018-03-11 stsp {
578 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL, *unlockerr;
579 9d31a1d8 2018-03-11 stsp struct got_object_id *commit_id = NULL;
580 9d31a1d8 2018-03-11 stsp struct got_object *obj = NULL;
581 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
582 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
583 9d31a1d8 2018-03-11 stsp char *fileindex_path = NULL, *new_fileindex_path = NULL;
584 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
585 9d31a1d8 2018-03-11 stsp FILE *findex = NULL;
586 9d31a1d8 2018-03-11 stsp
587 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
588 9d31a1d8 2018-03-11 stsp if (err)
589 9d31a1d8 2018-03-11 stsp return err;
590 9d31a1d8 2018-03-11 stsp
591 9d31a1d8 2018-03-11 stsp fileindex = got_fileindex_open();
592 9d31a1d8 2018-03-11 stsp if (fileindex == NULL) {
593 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
594 9d31a1d8 2018-03-11 stsp goto done;
595 9d31a1d8 2018-03-11 stsp }
596 9d31a1d8 2018-03-11 stsp
597 9d31a1d8 2018-03-11 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
598 9d31a1d8 2018-03-11 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
599 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
600 9d31a1d8 2018-03-11 stsp fileindex_path = NULL;
601 9d31a1d8 2018-03-11 stsp goto done;
602 9d31a1d8 2018-03-11 stsp }
603 9d31a1d8 2018-03-11 stsp
604 51664889 2018-03-12 stsp err = got_opentemp_named(&new_fileindex_path, &findex, fileindex_path);
605 51664889 2018-03-12 stsp if (err)
606 51664889 2018-03-12 stsp goto done;
607 51664889 2018-03-12 stsp
608 9d31a1d8 2018-03-11 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
609 9d31a1d8 2018-03-11 stsp if (err)
610 9d31a1d8 2018-03-11 stsp goto done;
611 9d31a1d8 2018-03-11 stsp
612 9d31a1d8 2018-03-11 stsp err = got_object_open(&obj, repo, commit_id);
613 9d31a1d8 2018-03-11 stsp if (err)
614 9d31a1d8 2018-03-11 stsp goto done;
615 9d31a1d8 2018-03-11 stsp
616 9d31a1d8 2018-03-11 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
617 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_OBJ_TYPE);
618 9d31a1d8 2018-03-11 stsp goto done;
619 9d31a1d8 2018-03-11 stsp }
620 9d31a1d8 2018-03-11 stsp
621 9d31a1d8 2018-03-11 stsp err = got_object_commit_open(&commit, repo, obj);
622 9d31a1d8 2018-03-11 stsp if (err)
623 9d31a1d8 2018-03-11 stsp goto done;
624 9d31a1d8 2018-03-11 stsp
625 9d31a1d8 2018-03-11 stsp got_object_close(obj);
626 9d31a1d8 2018-03-11 stsp err = got_object_open(&obj, repo, commit->tree_id);
627 9d31a1d8 2018-03-11 stsp if (err)
628 9d31a1d8 2018-03-11 stsp goto done;
629 9d31a1d8 2018-03-11 stsp
630 9d31a1d8 2018-03-11 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_TREE) {
631 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_OBJ_TYPE);
632 9d31a1d8 2018-03-11 stsp goto done;
633 9d31a1d8 2018-03-11 stsp }
634 9d31a1d8 2018-03-11 stsp
635 9d31a1d8 2018-03-11 stsp err = got_object_tree_open(&tree, repo, obj);
636 9d31a1d8 2018-03-11 stsp if (err)
637 9d31a1d8 2018-03-11 stsp goto done;
638 9d31a1d8 2018-03-11 stsp
639 92a684f4 2018-03-12 stsp err = tree_checkout(worktree, fileindex, tree, "/", repo,
640 92a684f4 2018-03-12 stsp progress_cb, progress_arg);
641 9d31a1d8 2018-03-11 stsp if (err)
642 9d31a1d8 2018-03-11 stsp goto done;
643 9d31a1d8 2018-03-11 stsp
644 9d31a1d8 2018-03-11 stsp err = got_fileindex_write(fileindex, findex);
645 9d31a1d8 2018-03-11 stsp if (err)
646 9d31a1d8 2018-03-11 stsp goto done;
647 9d31a1d8 2018-03-11 stsp
648 9d31a1d8 2018-03-11 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
649 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
650 9d31a1d8 2018-03-11 stsp goto done;
651 9d31a1d8 2018-03-11 stsp }
652 9d31a1d8 2018-03-11 stsp
653 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
654 9d31a1d8 2018-03-11 stsp new_fileindex_path = NULL;
655 9d31a1d8 2018-03-11 stsp
656 9d31a1d8 2018-03-11 stsp done:
657 9d31a1d8 2018-03-11 stsp if (commit)
658 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
659 9d31a1d8 2018-03-11 stsp if (obj)
660 9d31a1d8 2018-03-11 stsp got_object_close(obj);
661 9d31a1d8 2018-03-11 stsp free(commit_id);
662 9d31a1d8 2018-03-11 stsp if (new_fileindex_path)
663 9d31a1d8 2018-03-11 stsp unlink(new_fileindex_path);
664 9d31a1d8 2018-03-11 stsp if (findex)
665 9d31a1d8 2018-03-11 stsp fclose(findex);
666 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
667 9d31a1d8 2018-03-11 stsp free(fileindex_path);
668 9d31a1d8 2018-03-11 stsp got_fileindex_close(fileindex);
669 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
670 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
671 9d31a1d8 2018-03-11 stsp err = unlockerr;
672 9d31a1d8 2018-03-11 stsp return err;
673 9d31a1d8 2018-03-11 stsp }