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 ec22038e 2019-03-10 stsp #include <uuid.h>
35 86c3caaf 2018-03-09 stsp
36 86c3caaf 2018-03-09 stsp #include "got_error.h"
37 86c3caaf 2018-03-09 stsp #include "got_repository.h"
38 5261c201 2018-04-01 stsp #include "got_reference.h"
39 9d31a1d8 2018-03-11 stsp #include "got_object.h"
40 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
41 511a516b 2018-05-19 stsp #include "got_opentemp.h"
42 86c3caaf 2018-03-09 stsp
43 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
44 718b3ab0 2018-03-17 stsp #include "got_lib_path.h"
45 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
46 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
47 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
48 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
49 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
50 6353ad76 2019-02-08 stsp #include "got_lib_diff.h"
51 9d31a1d8 2018-03-11 stsp
52 9d31a1d8 2018-03-11 stsp #ifndef MIN
53 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
54 9d31a1d8 2018-03-11 stsp #endif
55 86c3caaf 2018-03-09 stsp
56 99724ed4 2018-03-10 stsp static const struct got_error *
57 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
58 99724ed4 2018-03-10 stsp {
59 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
60 99724ed4 2018-03-10 stsp char *path;
61 99724ed4 2018-03-10 stsp int fd = -1;
62 99724ed4 2018-03-10 stsp
63 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
64 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
65 99724ed4 2018-03-10 stsp path = NULL;
66 99724ed4 2018-03-10 stsp goto done;
67 99724ed4 2018-03-10 stsp }
68 99724ed4 2018-03-10 stsp
69 73a5ef67 2018-03-11 stsp fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
70 99724ed4 2018-03-10 stsp GOT_DEFAULT_FILE_MODE);
71 99724ed4 2018-03-10 stsp if (fd == -1) {
72 99724ed4 2018-03-10 stsp err = got_error_from_errno();
73 99724ed4 2018-03-10 stsp goto done;
74 99724ed4 2018-03-10 stsp }
75 99724ed4 2018-03-10 stsp
76 99724ed4 2018-03-10 stsp if (content) {
77 99724ed4 2018-03-10 stsp int len = dprintf(fd, "%s\n", content);
78 99724ed4 2018-03-10 stsp if (len != strlen(content) + 1) {
79 99724ed4 2018-03-10 stsp err = got_error_from_errno();
80 99724ed4 2018-03-10 stsp goto done;
81 99724ed4 2018-03-10 stsp }
82 99724ed4 2018-03-10 stsp }
83 99724ed4 2018-03-10 stsp
84 99724ed4 2018-03-10 stsp done:
85 99724ed4 2018-03-10 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
86 99724ed4 2018-03-10 stsp err = got_error_from_errno();
87 99724ed4 2018-03-10 stsp free(path);
88 507dc3bb 2018-12-29 stsp return err;
89 507dc3bb 2018-12-29 stsp }
90 507dc3bb 2018-12-29 stsp
91 507dc3bb 2018-12-29 stsp static const struct got_error *
92 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
93 507dc3bb 2018-12-29 stsp {
94 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
95 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
96 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
97 507dc3bb 2018-12-29 stsp char *path = NULL;
98 507dc3bb 2018-12-29 stsp
99 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
100 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
101 507dc3bb 2018-12-29 stsp path = NULL;
102 507dc3bb 2018-12-29 stsp goto done;
103 507dc3bb 2018-12-29 stsp }
104 507dc3bb 2018-12-29 stsp
105 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
106 507dc3bb 2018-12-29 stsp if (err)
107 507dc3bb 2018-12-29 stsp goto done;
108 507dc3bb 2018-12-29 stsp
109 507dc3bb 2018-12-29 stsp if (content) {
110 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
111 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
112 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
113 507dc3bb 2018-12-29 stsp goto done;
114 507dc3bb 2018-12-29 stsp }
115 507dc3bb 2018-12-29 stsp }
116 507dc3bb 2018-12-29 stsp
117 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
118 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
119 2a57020b 2019-02-20 stsp unlink(tmppath);
120 507dc3bb 2018-12-29 stsp goto done;
121 507dc3bb 2018-12-29 stsp }
122 507dc3bb 2018-12-29 stsp
123 507dc3bb 2018-12-29 stsp done:
124 507dc3bb 2018-12-29 stsp free(tmppath);
125 fb43ecf1 2019-02-11 stsp if (fclose(tmpfile) != 0 && err == NULL)
126 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
127 99724ed4 2018-03-10 stsp return err;
128 99724ed4 2018-03-10 stsp }
129 99724ed4 2018-03-10 stsp
130 09fe317a 2018-03-11 stsp static const struct got_error *
131 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
132 09fe317a 2018-03-11 stsp {
133 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
134 09fe317a 2018-03-11 stsp char *path;
135 09fe317a 2018-03-11 stsp int fd = -1;
136 09fe317a 2018-03-11 stsp ssize_t n;
137 09fe317a 2018-03-11 stsp struct stat sb;
138 09fe317a 2018-03-11 stsp
139 09fe317a 2018-03-11 stsp *content = NULL;
140 09fe317a 2018-03-11 stsp
141 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
142 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
143 09fe317a 2018-03-11 stsp path = NULL;
144 09fe317a 2018-03-11 stsp goto done;
145 09fe317a 2018-03-11 stsp }
146 09fe317a 2018-03-11 stsp
147 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
148 09fe317a 2018-03-11 stsp if (fd == -1) {
149 f02eaa22 2019-03-11 stsp if (errno == ENOENT)
150 f02eaa22 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
151 f02eaa22 2019-03-11 stsp else
152 f02eaa22 2019-03-11 stsp err = got_error_from_errno();
153 ef99fdb1 2018-03-11 stsp goto done;
154 ef99fdb1 2018-03-11 stsp }
155 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
156 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
157 73a5ef67 2018-03-11 stsp : 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 d10c9b58 2019-02-19 stsp if (lstat(path, &sb) != 0) {
162 d10c9b58 2019-02-19 stsp err = got_error_from_errno();
163 d10c9b58 2019-02-19 stsp goto done;
164 d10c9b58 2019-02-19 stsp }
165 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
166 09fe317a 2018-03-11 stsp if (*content == NULL) {
167 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
168 09fe317a 2018-03-11 stsp goto done;
169 09fe317a 2018-03-11 stsp }
170 09fe317a 2018-03-11 stsp
171 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
172 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
173 0605801d 2018-03-11 stsp err = (n == -1 ? got_error_from_errno() :
174 0605801d 2018-03-11 stsp got_error(GOT_ERR_WORKTREE_META));
175 09fe317a 2018-03-11 stsp goto done;
176 09fe317a 2018-03-11 stsp }
177 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
178 09fe317a 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
179 09fe317a 2018-03-11 stsp goto done;
180 09fe317a 2018-03-11 stsp }
181 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
182 09fe317a 2018-03-11 stsp
183 09fe317a 2018-03-11 stsp done:
184 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
185 09fe317a 2018-03-11 stsp err = got_error_from_errno();
186 09fe317a 2018-03-11 stsp free(path);
187 09fe317a 2018-03-11 stsp if (err) {
188 09fe317a 2018-03-11 stsp free(*content);
189 09fe317a 2018-03-11 stsp *content = NULL;
190 09fe317a 2018-03-11 stsp }
191 09fe317a 2018-03-11 stsp return err;
192 09fe317a 2018-03-11 stsp }
193 09fe317a 2018-03-11 stsp
194 86c3caaf 2018-03-09 stsp const struct got_error *
195 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
196 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
197 86c3caaf 2018-03-09 stsp {
198 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
199 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
200 ec22038e 2019-03-10 stsp uuid_t uuid;
201 ec22038e 2019-03-10 stsp uint32_t uuid_status;
202 65596e15 2018-12-24 stsp int obj_type;
203 7ac97322 2018-03-11 stsp char *path_got = NULL;
204 08d425ea 2018-12-24 stsp char *refstr = NULL;
205 1451e70d 2018-03-10 stsp char *formatstr = NULL;
206 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
207 65596e15 2018-12-24 stsp char *basestr = NULL;
208 ec22038e 2019-03-10 stsp char *uuidstr = NULL;
209 65596e15 2018-12-24 stsp
210 0c48fee2 2019-03-11 stsp if (strcmp(path, got_repo_get_path(repo)) == 0) {
211 0c48fee2 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_REPO);
212 0c48fee2 2019-03-11 stsp goto done;
213 0c48fee2 2019-03-11 stsp }
214 0c48fee2 2019-03-11 stsp
215 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
216 65596e15 2018-12-24 stsp if (err)
217 65596e15 2018-12-24 stsp return err;
218 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
219 65596e15 2018-12-24 stsp if (err)
220 65596e15 2018-12-24 stsp return err;
221 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
222 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
223 86c3caaf 2018-03-09 stsp
224 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
225 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
226 0a585a0d 2018-03-17 stsp return got_error_from_errno();
227 0bb8a95e 2018-03-12 stsp }
228 577ec78f 2018-03-11 stsp
229 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
230 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
231 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
232 86c3caaf 2018-03-09 stsp goto done;
233 86c3caaf 2018-03-09 stsp }
234 86c3caaf 2018-03-09 stsp
235 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
236 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
237 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
238 86c3caaf 2018-03-09 stsp goto done;
239 86c3caaf 2018-03-09 stsp }
240 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
241 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
242 86c3caaf 2018-03-09 stsp goto done;
243 86c3caaf 2018-03-09 stsp }
244 86c3caaf 2018-03-09 stsp
245 056e7441 2018-03-11 stsp /* Create an empty lock file. */
246 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
247 056e7441 2018-03-11 stsp if (err)
248 056e7441 2018-03-11 stsp goto done;
249 056e7441 2018-03-11 stsp
250 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
251 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
252 99724ed4 2018-03-10 stsp if (err)
253 86c3caaf 2018-03-09 stsp goto done;
254 86c3caaf 2018-03-09 stsp
255 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
256 08d425ea 2018-12-24 stsp refstr = got_ref_to_str(head_ref);
257 08d425ea 2018-12-24 stsp if (refstr == NULL) {
258 a1a7858a 2018-12-24 stsp err = got_error_from_errno();
259 a1a7858a 2018-12-24 stsp goto done;
260 a1a7858a 2018-12-24 stsp }
261 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
262 65596e15 2018-12-24 stsp if (err)
263 65596e15 2018-12-24 stsp goto done;
264 65596e15 2018-12-24 stsp
265 65596e15 2018-12-24 stsp /* Record our base commit. */
266 65596e15 2018-12-24 stsp err = got_object_id_str(&basestr, commit_id);
267 65596e15 2018-12-24 stsp if (err)
268 65596e15 2018-12-24 stsp goto done;
269 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
270 99724ed4 2018-03-10 stsp if (err)
271 86c3caaf 2018-03-09 stsp goto done;
272 86c3caaf 2018-03-09 stsp
273 1451e70d 2018-03-10 stsp /* Store path to repository. */
274 7839bc15 2019-01-06 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
275 7839bc15 2019-01-06 stsp got_repo_get_path(repo));
276 99724ed4 2018-03-10 stsp if (err)
277 86c3caaf 2018-03-09 stsp goto done;
278 86c3caaf 2018-03-09 stsp
279 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
280 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
281 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
282 ec22038e 2019-03-10 stsp if (err)
283 ec22038e 2019-03-10 stsp goto done;
284 ec22038e 2019-03-10 stsp
285 ec22038e 2019-03-10 stsp /* Generate UUID. */
286 ec22038e 2019-03-10 stsp uuid_create(&uuid, &uuid_status);
287 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
288 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
289 ec22038e 2019-03-10 stsp goto done;
290 ec22038e 2019-03-10 stsp }
291 ec22038e 2019-03-10 stsp uuid_to_string(&uuid, &uuidstr, &uuid_status);
292 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
293 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
294 ec22038e 2019-03-10 stsp goto done;
295 ec22038e 2019-03-10 stsp }
296 ec22038e 2019-03-10 stsp err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
297 577ec78f 2018-03-11 stsp if (err)
298 577ec78f 2018-03-11 stsp goto done;
299 577ec78f 2018-03-11 stsp
300 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
301 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
302 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
303 1451e70d 2018-03-10 stsp goto done;
304 1451e70d 2018-03-10 stsp }
305 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
306 99724ed4 2018-03-10 stsp if (err)
307 1451e70d 2018-03-10 stsp goto done;
308 1451e70d 2018-03-10 stsp
309 86c3caaf 2018-03-09 stsp done:
310 65596e15 2018-12-24 stsp free(commit_id);
311 7ac97322 2018-03-11 stsp free(path_got);
312 1451e70d 2018-03-10 stsp free(formatstr);
313 08d425ea 2018-12-24 stsp free(refstr);
314 0bb8a95e 2018-03-12 stsp free(absprefix);
315 65596e15 2018-12-24 stsp free(basestr);
316 ec22038e 2019-03-10 stsp free(uuidstr);
317 86c3caaf 2018-03-09 stsp return err;
318 86c3caaf 2018-03-09 stsp }
319 86c3caaf 2018-03-09 stsp
320 247140b2 2019-02-05 stsp static const struct got_error *
321 247140b2 2019-02-05 stsp open_worktree(struct got_worktree **worktree, const char *path)
322 86c3caaf 2018-03-09 stsp {
323 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
324 7ac97322 2018-03-11 stsp char *path_got;
325 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
326 c442a90d 2019-03-10 stsp char *uuidstr = NULL;
327 056e7441 2018-03-11 stsp char *path_lock = NULL;
328 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
329 271d2a38 2018-12-25 stsp char *head_ref_str = NULL;
330 6d9d28c3 2018-03-11 stsp int version, fd = -1;
331 6d9d28c3 2018-03-11 stsp const char *errstr;
332 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
333 c442a90d 2019-03-10 stsp uint32_t uuid_status;
334 6d9d28c3 2018-03-11 stsp
335 6d9d28c3 2018-03-11 stsp *worktree = NULL;
336 6d9d28c3 2018-03-11 stsp
337 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
338 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
339 7ac97322 2018-03-11 stsp path_got = NULL;
340 6d9d28c3 2018-03-11 stsp goto done;
341 6d9d28c3 2018-03-11 stsp }
342 6d9d28c3 2018-03-11 stsp
343 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
344 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
345 056e7441 2018-03-11 stsp path_lock = NULL;
346 6d9d28c3 2018-03-11 stsp goto done;
347 6d9d28c3 2018-03-11 stsp }
348 6d9d28c3 2018-03-11 stsp
349 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
350 6d9d28c3 2018-03-11 stsp if (fd == -1) {
351 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
352 73a5ef67 2018-03-11 stsp : got_error_from_errno());
353 6d9d28c3 2018-03-11 stsp goto done;
354 6d9d28c3 2018-03-11 stsp }
355 6d9d28c3 2018-03-11 stsp
356 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
357 6d9d28c3 2018-03-11 stsp if (err)
358 6d9d28c3 2018-03-11 stsp goto done;
359 6d9d28c3 2018-03-11 stsp
360 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
361 6d9d28c3 2018-03-11 stsp if (errstr) {
362 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
363 6d9d28c3 2018-03-11 stsp goto done;
364 6d9d28c3 2018-03-11 stsp }
365 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
366 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
367 6d9d28c3 2018-03-11 stsp goto done;
368 6d9d28c3 2018-03-11 stsp }
369 6d9d28c3 2018-03-11 stsp
370 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
371 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
372 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
373 6d9d28c3 2018-03-11 stsp goto done;
374 6d9d28c3 2018-03-11 stsp }
375 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
376 6d9d28c3 2018-03-11 stsp
377 0647c563 2019-03-11 stsp (*worktree)->root_path = strdup(path);
378 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
379 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
380 6d9d28c3 2018-03-11 stsp goto done;
381 6d9d28c3 2018-03-11 stsp }
382 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
383 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
384 6d9d28c3 2018-03-11 stsp if (err)
385 6d9d28c3 2018-03-11 stsp goto done;
386 eaccb85f 2018-12-25 stsp
387 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
388 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
389 93a30277 2018-12-24 stsp if (err)
390 93a30277 2018-12-24 stsp goto done;
391 93a30277 2018-12-24 stsp
392 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
393 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
394 c442a90d 2019-03-10 stsp if (err)
395 c442a90d 2019-03-10 stsp goto done;
396 c442a90d 2019-03-10 stsp
397 c442a90d 2019-03-10 stsp err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
398 eaccb85f 2018-12-25 stsp if (err)
399 c442a90d 2019-03-10 stsp goto done;
400 c442a90d 2019-03-10 stsp uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
401 c442a90d 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
402 c442a90d 2019-03-10 stsp err = got_error_uuid(uuid_status);
403 eaccb85f 2018-12-25 stsp goto done;
404 c442a90d 2019-03-10 stsp }
405 eaccb85f 2018-12-25 stsp
406 eaccb85f 2018-12-25 stsp err = got_repo_open(&repo, (*worktree)->repo_path);
407 eaccb85f 2018-12-25 stsp if (err)
408 eaccb85f 2018-12-25 stsp goto done;
409 eaccb85f 2018-12-25 stsp
410 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
411 eaccb85f 2018-12-25 stsp base_commit_id_str);
412 f5baf295 2018-03-11 stsp if (err)
413 f5baf295 2018-03-11 stsp goto done;
414 f5baf295 2018-03-11 stsp
415 271d2a38 2018-12-25 stsp err = read_meta_file(&head_ref_str, path_got, GOT_WORKTREE_HEAD_REF);
416 f5baf295 2018-03-11 stsp if (err)
417 6d9d28c3 2018-03-11 stsp goto done;
418 6d9d28c3 2018-03-11 stsp
419 271d2a38 2018-12-25 stsp err = got_ref_open(&(*worktree)->head_ref, repo, head_ref_str);
420 6d9d28c3 2018-03-11 stsp done:
421 eaccb85f 2018-12-25 stsp if (repo)
422 eaccb85f 2018-12-25 stsp got_repo_close(repo);
423 7ac97322 2018-03-11 stsp free(path_got);
424 056e7441 2018-03-11 stsp free(path_lock);
425 271d2a38 2018-12-25 stsp free(head_ref_str);
426 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
427 c442a90d 2019-03-10 stsp free(uuidstr);
428 bd165944 2019-03-10 stsp free(formatstr);
429 6d9d28c3 2018-03-11 stsp if (err) {
430 6d9d28c3 2018-03-11 stsp if (fd != -1)
431 6d9d28c3 2018-03-11 stsp close(fd);
432 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
433 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
434 6d9d28c3 2018-03-11 stsp *worktree = NULL;
435 6d9d28c3 2018-03-11 stsp } else
436 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
437 6d9d28c3 2018-03-11 stsp
438 6d9d28c3 2018-03-11 stsp return err;
439 86c3caaf 2018-03-09 stsp }
440 247140b2 2019-02-05 stsp
441 247140b2 2019-02-05 stsp const struct got_error *
442 247140b2 2019-02-05 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
443 247140b2 2019-02-05 stsp {
444 247140b2 2019-02-05 stsp const struct got_error *err = NULL;
445 86c3caaf 2018-03-09 stsp
446 247140b2 2019-02-05 stsp do {
447 247140b2 2019-02-05 stsp err = open_worktree(worktree, path);
448 f02eaa22 2019-03-11 stsp if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT))
449 247140b2 2019-02-05 stsp return err;
450 247140b2 2019-02-05 stsp if (*worktree)
451 247140b2 2019-02-05 stsp return NULL;
452 247140b2 2019-02-05 stsp path = dirname(path);
453 d1542a27 2019-02-05 stsp if (path == NULL)
454 d1542a27 2019-02-05 stsp return got_error_from_errno();
455 d1542a27 2019-02-05 stsp } while (!((path[0] == '.' || path[0] == '/') && path[1] == '\0'));
456 247140b2 2019-02-05 stsp
457 247140b2 2019-02-05 stsp return got_error(GOT_ERR_NOT_WORKTREE);
458 247140b2 2019-02-05 stsp }
459 247140b2 2019-02-05 stsp
460 3a6ce05a 2019-02-11 stsp const struct got_error *
461 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
462 86c3caaf 2018-03-09 stsp {
463 3a6ce05a 2019-02-11 stsp const struct got_error *err = NULL;
464 c88eb298 2018-03-11 stsp free(worktree->root_path);
465 cde76477 2018-03-11 stsp free(worktree->repo_path);
466 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
467 eaccb85f 2018-12-25 stsp free(worktree->base_commit_id);
468 271d2a38 2018-12-25 stsp if (worktree->head_ref)
469 271d2a38 2018-12-25 stsp got_ref_close(worktree->head_ref);
470 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
471 3a6ce05a 2019-02-11 stsp if (close(worktree->lockfd) != 0)
472 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
473 6d9d28c3 2018-03-11 stsp free(worktree);
474 3a6ce05a 2019-02-11 stsp return err;
475 86c3caaf 2018-03-09 stsp }
476 86c3caaf 2018-03-09 stsp
477 2fbdb5ae 2018-12-29 stsp const char *
478 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(struct got_worktree *worktree)
479 c7f4312f 2019-02-05 stsp {
480 c7f4312f 2019-02-05 stsp return worktree->root_path;
481 c7f4312f 2019-02-05 stsp }
482 c7f4312f 2019-02-05 stsp
483 c7f4312f 2019-02-05 stsp const char *
484 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
485 86c3caaf 2018-03-09 stsp {
486 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
487 49520a32 2018-12-29 stsp }
488 49520a32 2018-12-29 stsp
489 49520a32 2018-12-29 stsp const char *
490 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
491 49520a32 2018-12-29 stsp {
492 f609be2e 2018-12-29 stsp return worktree->path_prefix;
493 e5dc7198 2018-12-29 stsp }
494 e5dc7198 2018-12-29 stsp
495 e5dc7198 2018-12-29 stsp const struct got_error *
496 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
497 e5dc7198 2018-12-29 stsp const char *path_prefix)
498 e5dc7198 2018-12-29 stsp {
499 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
500 e5dc7198 2018-12-29 stsp
501 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
502 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
503 e5dc7198 2018-12-29 stsp return got_error_from_errno();
504 e5dc7198 2018-12-29 stsp }
505 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
506 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
507 e5dc7198 2018-12-29 stsp free(absprefix);
508 e5dc7198 2018-12-29 stsp return NULL;
509 86c3caaf 2018-03-09 stsp }
510 86c3caaf 2018-03-09 stsp
511 35be1456 2018-03-11 stsp char *
512 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
513 86c3caaf 2018-03-09 stsp {
514 271d2a38 2018-12-25 stsp return got_ref_to_str(worktree->head_ref);
515 be7061eb 2018-12-30 stsp }
516 be7061eb 2018-12-30 stsp
517 be7061eb 2018-12-30 stsp struct got_reference *
518 be7061eb 2018-12-30 stsp got_worktree_get_head_ref(struct got_worktree *worktree)
519 be7061eb 2018-12-30 stsp {
520 be7061eb 2018-12-30 stsp return got_ref_dup(worktree->head_ref);
521 507dc3bb 2018-12-29 stsp }
522 507dc3bb 2018-12-29 stsp
523 b72f483a 2019-02-05 stsp struct got_object_id *
524 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
525 507dc3bb 2018-12-29 stsp {
526 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
527 86c3caaf 2018-03-09 stsp }
528 86c3caaf 2018-03-09 stsp
529 507dc3bb 2018-12-29 stsp const struct got_error *
530 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
531 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
532 507dc3bb 2018-12-29 stsp {
533 507dc3bb 2018-12-29 stsp const struct got_error *err;
534 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
535 507dc3bb 2018-12-29 stsp char *id_str = NULL;
536 507dc3bb 2018-12-29 stsp char *path_got = NULL;
537 507dc3bb 2018-12-29 stsp
538 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
539 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
540 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
541 507dc3bb 2018-12-29 stsp path_got = NULL;
542 507dc3bb 2018-12-29 stsp goto done;
543 507dc3bb 2018-12-29 stsp }
544 507dc3bb 2018-12-29 stsp
545 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
546 507dc3bb 2018-12-29 stsp if (err)
547 507dc3bb 2018-12-29 stsp return err;
548 507dc3bb 2018-12-29 stsp
549 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
550 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
551 507dc3bb 2018-12-29 stsp goto done;
552 507dc3bb 2018-12-29 stsp }
553 507dc3bb 2018-12-29 stsp
554 507dc3bb 2018-12-29 stsp /* Record our base commit. */
555 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
556 507dc3bb 2018-12-29 stsp if (err)
557 507dc3bb 2018-12-29 stsp goto done;
558 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
559 507dc3bb 2018-12-29 stsp if (err)
560 507dc3bb 2018-12-29 stsp goto done;
561 507dc3bb 2018-12-29 stsp
562 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
563 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
564 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
565 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
566 507dc3bb 2018-12-29 stsp goto done;
567 507dc3bb 2018-12-29 stsp }
568 507dc3bb 2018-12-29 stsp done:
569 507dc3bb 2018-12-29 stsp if (obj)
570 507dc3bb 2018-12-29 stsp got_object_close(obj);
571 507dc3bb 2018-12-29 stsp free(id_str);
572 507dc3bb 2018-12-29 stsp free(path_got);
573 507dc3bb 2018-12-29 stsp return err;
574 507dc3bb 2018-12-29 stsp }
575 507dc3bb 2018-12-29 stsp
576 9d31a1d8 2018-03-11 stsp static const struct got_error *
577 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
578 86c3caaf 2018-03-09 stsp {
579 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
580 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
581 9d31a1d8 2018-03-11 stsp : got_error_from_errno());
582 86c3caaf 2018-03-09 stsp return NULL;
583 21908da4 2019-01-13 stsp }
584 21908da4 2019-01-13 stsp
585 21908da4 2019-01-13 stsp static const struct got_error *
586 4a1ddfc2 2019-01-12 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
587 4a1ddfc2 2019-01-12 stsp {
588 4a1ddfc2 2019-01-12 stsp const struct got_error *err = NULL;
589 4a1ddfc2 2019-01-12 stsp char *abspath;
590 4a1ddfc2 2019-01-12 stsp
591 4a1ddfc2 2019-01-12 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
592 4a1ddfc2 2019-01-12 stsp return got_error_from_errno();
593 4a1ddfc2 2019-01-12 stsp
594 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(abspath);
595 ddcd8544 2019-03-11 stsp if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
596 ddcd8544 2019-03-11 stsp struct stat sb;
597 ddcd8544 2019-03-11 stsp err = NULL;
598 ddcd8544 2019-03-11 stsp if (lstat(abspath, &sb) == -1) {
599 ddcd8544 2019-03-11 stsp err = got_error_from_errno();
600 ddcd8544 2019-03-11 stsp } else if (!S_ISDIR(sb.st_mode)) {
601 ddcd8544 2019-03-11 stsp /* TODO directory is obstructed; do something */
602 ddcd8544 2019-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
603 ddcd8544 2019-03-11 stsp }
604 ddcd8544 2019-03-11 stsp }
605 4a1ddfc2 2019-01-12 stsp free(abspath);
606 68c76935 2019-02-19 stsp return err;
607 68c76935 2019-02-19 stsp }
608 68c76935 2019-02-19 stsp
609 68c76935 2019-02-19 stsp static const struct got_error *
610 68c76935 2019-02-19 stsp check_file_contents_equal(int *same, FILE *f1, FILE *f2)
611 68c76935 2019-02-19 stsp {
612 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
613 68c76935 2019-02-19 stsp uint8_t fbuf1[8192];
614 68c76935 2019-02-19 stsp uint8_t fbuf2[8192];
615 68c76935 2019-02-19 stsp size_t flen1 = 0, flen2 = 0;
616 68c76935 2019-02-19 stsp
617 68c76935 2019-02-19 stsp *same = 1;
618 68c76935 2019-02-19 stsp
619 68c76935 2019-02-19 stsp while (1) {
620 68c76935 2019-02-19 stsp flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
621 68c76935 2019-02-19 stsp if (flen1 == 0 && ferror(f1)) {
622 68c76935 2019-02-19 stsp err = got_error_from_errno();
623 68c76935 2019-02-19 stsp break;
624 68c76935 2019-02-19 stsp }
625 68c76935 2019-02-19 stsp flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
626 68c76935 2019-02-19 stsp if (flen2 == 0 && ferror(f2)) {
627 68c76935 2019-02-19 stsp err = got_error_from_errno();
628 68c76935 2019-02-19 stsp break;
629 68c76935 2019-02-19 stsp }
630 68c76935 2019-02-19 stsp if (flen1 == 0) {
631 68c76935 2019-02-19 stsp if (flen2 != 0)
632 68c76935 2019-02-19 stsp *same = 0;
633 68c76935 2019-02-19 stsp break;
634 68c76935 2019-02-19 stsp } else if (flen2 == 0) {
635 68c76935 2019-02-19 stsp if (flen1 != 0)
636 68c76935 2019-02-19 stsp *same = 0;
637 68c76935 2019-02-19 stsp break;
638 68c76935 2019-02-19 stsp } else if (flen1 == flen2) {
639 68c76935 2019-02-19 stsp if (memcmp(fbuf1, fbuf2, flen2) != 0) {
640 68c76935 2019-02-19 stsp *same = 0;
641 68c76935 2019-02-19 stsp break;
642 68c76935 2019-02-19 stsp }
643 68c76935 2019-02-19 stsp } else {
644 68c76935 2019-02-19 stsp *same = 0;
645 68c76935 2019-02-19 stsp break;
646 68c76935 2019-02-19 stsp }
647 68c76935 2019-02-19 stsp }
648 68c76935 2019-02-19 stsp
649 68c76935 2019-02-19 stsp return err;
650 68c76935 2019-02-19 stsp }
651 68c76935 2019-02-19 stsp
652 68c76935 2019-02-19 stsp static const struct got_error *
653 68c76935 2019-02-19 stsp check_files_equal(int *same, const char *f1_path, const char *f2_path)
654 68c76935 2019-02-19 stsp {
655 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
656 68c76935 2019-02-19 stsp struct stat sb;
657 68c76935 2019-02-19 stsp size_t size1, size2;
658 68c76935 2019-02-19 stsp FILE *f1 = NULL, *f2 = NULL;
659 68c76935 2019-02-19 stsp
660 68c76935 2019-02-19 stsp *same = 1;
661 68c76935 2019-02-19 stsp
662 68c76935 2019-02-19 stsp if (lstat(f1_path, &sb) != 0) {
663 68c76935 2019-02-19 stsp err = got_error_from_errno();
664 68c76935 2019-02-19 stsp goto done;
665 68c76935 2019-02-19 stsp }
666 68c76935 2019-02-19 stsp size1 = sb.st_size;
667 68c76935 2019-02-19 stsp
668 68c76935 2019-02-19 stsp if (lstat(f2_path, &sb) != 0) {
669 68c76935 2019-02-19 stsp err = got_error_from_errno();
670 68c76935 2019-02-19 stsp goto done;
671 68c76935 2019-02-19 stsp }
672 68c76935 2019-02-19 stsp size2 = sb.st_size;
673 68c76935 2019-02-19 stsp
674 68c76935 2019-02-19 stsp if (size1 != size2) {
675 68c76935 2019-02-19 stsp *same = 0;
676 68c76935 2019-02-19 stsp return NULL;
677 68c76935 2019-02-19 stsp }
678 68c76935 2019-02-19 stsp
679 68c76935 2019-02-19 stsp f1 = fopen(f1_path, "r");
680 68c76935 2019-02-19 stsp if (f1 == NULL)
681 68c76935 2019-02-19 stsp return got_error_from_errno();
682 68c76935 2019-02-19 stsp
683 68c76935 2019-02-19 stsp f2 = fopen(f2_path, "r");
684 68c76935 2019-02-19 stsp if (f2 == NULL) {
685 68c76935 2019-02-19 stsp err = got_error_from_errno();
686 68c76935 2019-02-19 stsp goto done;
687 68c76935 2019-02-19 stsp }
688 68c76935 2019-02-19 stsp
689 68c76935 2019-02-19 stsp err = check_file_contents_equal(same, f1, f2);
690 68c76935 2019-02-19 stsp done:
691 68c76935 2019-02-19 stsp if (f1 && fclose(f1) != 0 && err == NULL)
692 68c76935 2019-02-19 stsp err = got_error_from_errno();
693 68c76935 2019-02-19 stsp if (f2 && fclose(f2) != 0 && err == NULL)
694 68c76935 2019-02-19 stsp err = got_error_from_errno();
695 68c76935 2019-02-19 stsp
696 6353ad76 2019-02-08 stsp return err;
697 6353ad76 2019-02-08 stsp }
698 6353ad76 2019-02-08 stsp
699 6353ad76 2019-02-08 stsp /*
700 6353ad76 2019-02-08 stsp * Perform a 3-way merge where the file's version in the file index (blob2)
701 6353ad76 2019-02-08 stsp * acts as the common ancestor, the incoming blob (blob1) acts as the first
702 6353ad76 2019-02-08 stsp * derived version, and the file on disk acts as the second derived version.
703 6353ad76 2019-02-08 stsp */
704 6353ad76 2019-02-08 stsp static const struct got_error *
705 6353ad76 2019-02-08 stsp merge_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
706 6353ad76 2019-02-08 stsp struct got_fileindex_entry *ie, const char *ondisk_path, const char *path,
707 b8f41171 2019-02-10 stsp uint16_t te_mode, uint16_t st_mode, struct got_blob_object *blob1,
708 b8f41171 2019-02-10 stsp struct got_repository *repo,
709 6353ad76 2019-02-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
710 6353ad76 2019-02-08 stsp {
711 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
712 6353ad76 2019-02-08 stsp int merged_fd = -1;
713 6353ad76 2019-02-08 stsp struct got_blob_object *blob2 = NULL;
714 6353ad76 2019-02-08 stsp FILE *f1 = NULL, *f2 = NULL;
715 6353ad76 2019-02-08 stsp char *blob1_path = NULL, *blob2_path = NULL;
716 af54ae4a 2019-02-19 stsp char *merged_path = NULL, *base_path = NULL;
717 6353ad76 2019-02-08 stsp struct got_object_id id2;
718 6353ad76 2019-02-08 stsp char *id_str = NULL;
719 6353ad76 2019-02-08 stsp char *label1 = NULL;
720 68c76935 2019-02-19 stsp int overlapcnt = 0, update_timestamps = 0;
721 af54ae4a 2019-02-19 stsp char *parent;
722 6353ad76 2019-02-08 stsp
723 af54ae4a 2019-02-19 stsp parent = dirname(ondisk_path);
724 af54ae4a 2019-02-19 stsp if (parent == NULL)
725 af54ae4a 2019-02-19 stsp return got_error_from_errno();
726 af54ae4a 2019-02-19 stsp
727 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merged", parent) == -1)
728 af54ae4a 2019-02-19 stsp return got_error_from_errno();
729 af54ae4a 2019-02-19 stsp
730 af54ae4a 2019-02-19 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
731 6353ad76 2019-02-08 stsp if (err)
732 af54ae4a 2019-02-19 stsp goto done;
733 af54ae4a 2019-02-19 stsp
734 af54ae4a 2019-02-19 stsp free(base_path);
735 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob1", parent) == -1) {
736 af54ae4a 2019-02-19 stsp err = got_error_from_errno();
737 af54ae4a 2019-02-19 stsp base_path = NULL;
738 af54ae4a 2019-02-19 stsp goto done;
739 af54ae4a 2019-02-19 stsp }
740 af54ae4a 2019-02-19 stsp
741 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob1_path, &f1, base_path);
742 6353ad76 2019-02-08 stsp if (err)
743 6353ad76 2019-02-08 stsp goto done;
744 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f1, blob1);
745 6353ad76 2019-02-08 stsp if (err)
746 6353ad76 2019-02-08 stsp goto done;
747 6353ad76 2019-02-08 stsp
748 af54ae4a 2019-02-19 stsp free(base_path);
749 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob2", parent) == -1) {
750 af54ae4a 2019-02-19 stsp err = got_error_from_errno();
751 af54ae4a 2019-02-19 stsp base_path = NULL;
752 af54ae4a 2019-02-19 stsp goto done;
753 af54ae4a 2019-02-19 stsp }
754 af54ae4a 2019-02-19 stsp
755 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob2_path, &f2, base_path);
756 6353ad76 2019-02-08 stsp if (err)
757 6353ad76 2019-02-08 stsp goto done;
758 6353ad76 2019-02-08 stsp
759 6353ad76 2019-02-08 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
760 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
761 6353ad76 2019-02-08 stsp if (err)
762 6353ad76 2019-02-08 stsp goto done;
763 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f2, blob2);
764 6353ad76 2019-02-08 stsp if (err)
765 6353ad76 2019-02-08 stsp goto done;
766 6353ad76 2019-02-08 stsp
767 6353ad76 2019-02-08 stsp err = got_object_id_str(&id_str, worktree->base_commit_id);
768 6353ad76 2019-02-08 stsp if (err)
769 6353ad76 2019-02-08 stsp goto done;
770 6353ad76 2019-02-08 stsp if (asprintf(&label1, "commit %s", id_str) == -1) {
771 6353ad76 2019-02-08 stsp err = got_error_from_errno();
772 6353ad76 2019-02-08 stsp goto done;
773 6353ad76 2019-02-08 stsp }
774 6353ad76 2019-02-08 stsp
775 6353ad76 2019-02-08 stsp err = got_merge_diff3(&overlapcnt, merged_fd, blob1_path,
776 6353ad76 2019-02-08 stsp blob2_path, ondisk_path, label1, path);
777 6353ad76 2019-02-08 stsp if (err)
778 6353ad76 2019-02-08 stsp goto done;
779 6353ad76 2019-02-08 stsp
780 6353ad76 2019-02-08 stsp (*progress_cb)(progress_arg,
781 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
782 6353ad76 2019-02-08 stsp
783 6353ad76 2019-02-08 stsp
784 816dc654 2019-02-16 stsp if (fsync(merged_fd) != 0) {
785 816dc654 2019-02-16 stsp err = got_error_from_errno();
786 816dc654 2019-02-16 stsp goto done;
787 68c76935 2019-02-19 stsp }
788 68c76935 2019-02-19 stsp
789 68c76935 2019-02-19 stsp /* Check if a clean merge has subsumed all local changes. */
790 68c76935 2019-02-19 stsp if (overlapcnt == 0) {
791 68c76935 2019-02-19 stsp err = check_files_equal(&update_timestamps, blob1_path,
792 68c76935 2019-02-19 stsp merged_path);
793 68c76935 2019-02-19 stsp if (err)
794 68c76935 2019-02-19 stsp goto done;
795 816dc654 2019-02-16 stsp }
796 6353ad76 2019-02-08 stsp
797 70a0c8ec 2019-02-20 stsp if (chmod(merged_path, st_mode) != 0) {
798 70a0c8ec 2019-02-20 stsp err = got_error_from_errno();
799 70a0c8ec 2019-02-20 stsp goto done;
800 70a0c8ec 2019-02-20 stsp }
801 70a0c8ec 2019-02-20 stsp
802 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
803 6353ad76 2019-02-08 stsp err = got_error_from_errno();
804 2a57020b 2019-02-20 stsp unlink(merged_path);
805 6353ad76 2019-02-08 stsp goto done;
806 6353ad76 2019-02-08 stsp }
807 6353ad76 2019-02-08 stsp
808 02c07007 2019-02-10 stsp /*
809 02c07007 2019-02-10 stsp * Do not update timestamps of already modified files. Otherwise,
810 65ad4e61 2019-02-20 stsp * a future status walk would treat them as unmodified files again.
811 02c07007 2019-02-10 stsp */
812 6353ad76 2019-02-08 stsp err = got_fileindex_entry_update(ie, ondisk_path,
813 68c76935 2019-02-19 stsp blob1->id.sha1, worktree->base_commit_id->sha1, update_timestamps);
814 6353ad76 2019-02-08 stsp done:
815 3a6ce05a 2019-02-11 stsp if (merged_fd != -1 && close(merged_fd) != 0 && err == NULL)
816 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
817 3a6ce05a 2019-02-11 stsp if (f1 && fclose(f1) != 0 && err == NULL)
818 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
819 3a6ce05a 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
820 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
821 6353ad76 2019-02-08 stsp if (blob2)
822 6353ad76 2019-02-08 stsp got_object_blob_close(blob2);
823 6353ad76 2019-02-08 stsp free(merged_path);
824 af54ae4a 2019-02-19 stsp free(base_path);
825 6353ad76 2019-02-08 stsp if (blob1_path) {
826 6353ad76 2019-02-08 stsp unlink(blob1_path);
827 6353ad76 2019-02-08 stsp free(blob1_path);
828 6353ad76 2019-02-08 stsp }
829 6353ad76 2019-02-08 stsp if (blob2_path) {
830 6353ad76 2019-02-08 stsp unlink(blob2_path);
831 6353ad76 2019-02-08 stsp free(blob2_path);
832 6353ad76 2019-02-08 stsp }
833 6353ad76 2019-02-08 stsp free(id_str);
834 6353ad76 2019-02-08 stsp free(label1);
835 4a1ddfc2 2019-01-12 stsp return err;
836 4a1ddfc2 2019-01-12 stsp }
837 4a1ddfc2 2019-01-12 stsp
838 4a1ddfc2 2019-01-12 stsp static const struct got_error *
839 8da9e5f4 2019-01-12 stsp install_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
840 6353ad76 2019-02-08 stsp struct got_fileindex_entry *entry, const char *ondisk_path, const char *path,
841 b8f41171 2019-02-10 stsp uint16_t te_mode, uint16_t st_mode, struct got_blob_object *blob,
842 b8f41171 2019-02-10 stsp int restoring_missing_file, struct got_repository *repo,
843 b8f41171 2019-02-10 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
844 9d31a1d8 2018-03-11 stsp {
845 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
846 507dc3bb 2018-12-29 stsp int fd = -1;
847 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
848 507dc3bb 2018-12-29 stsp int update = 0;
849 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
850 9d31a1d8 2018-03-11 stsp
851 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
852 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
853 9d31a1d8 2018-03-11 stsp if (fd == -1) {
854 21908da4 2019-01-13 stsp if (errno == ENOENT) {
855 21908da4 2019-01-13 stsp char *parent = dirname(path);
856 21908da4 2019-01-13 stsp if (parent == NULL)
857 21908da4 2019-01-13 stsp return got_error_from_errno();
858 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
859 21908da4 2019-01-13 stsp if (err)
860 21908da4 2019-01-13 stsp return err;
861 21908da4 2019-01-13 stsp fd = open(ondisk_path,
862 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
863 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
864 21908da4 2019-01-13 stsp if (fd == -1)
865 21908da4 2019-01-13 stsp return got_error_from_errno();
866 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
867 b8f41171 2019-02-10 stsp if (!S_ISREG(st_mode)) {
868 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
869 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
870 507dc3bb 2018-12-29 stsp goto done;
871 d70b8e30 2018-12-27 stsp } else {
872 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
873 507dc3bb 2018-12-29 stsp ondisk_path);
874 507dc3bb 2018-12-29 stsp if (err)
875 507dc3bb 2018-12-29 stsp goto done;
876 507dc3bb 2018-12-29 stsp update = 1;
877 9d31a1d8 2018-03-11 stsp }
878 507dc3bb 2018-12-29 stsp } else
879 7e7c1e4c 2019-01-12 stsp return got_error_from_errno();
880 9d31a1d8 2018-03-11 stsp }
881 9d31a1d8 2018-03-11 stsp
882 a378724f 2019-02-10 stsp if (restoring_missing_file)
883 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_MISSING, path);
884 a378724f 2019-02-10 stsp else
885 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg,
886 a378724f 2019-02-10 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
887 d7b62c98 2018-12-27 stsp
888 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
889 9d31a1d8 2018-03-11 stsp do {
890 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
891 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
892 9d31a1d8 2018-03-11 stsp if (err)
893 9d31a1d8 2018-03-11 stsp break;
894 9d31a1d8 2018-03-11 stsp if (len > 0) {
895 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
896 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
897 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
898 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
899 b87c6f83 2018-12-24 stsp goto done;
900 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
901 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
902 b87c6f83 2018-12-24 stsp goto done;
903 9d31a1d8 2018-03-11 stsp }
904 61d6eaa3 2018-12-24 stsp hdrlen = 0;
905 9d31a1d8 2018-03-11 stsp }
906 9d31a1d8 2018-03-11 stsp } while (len != 0);
907 9d31a1d8 2018-03-11 stsp
908 816dc654 2019-02-16 stsp if (fsync(fd) != 0) {
909 816dc654 2019-02-16 stsp err = got_error_from_errno();
910 816dc654 2019-02-16 stsp goto done;
911 816dc654 2019-02-16 stsp }
912 9d31a1d8 2018-03-11 stsp
913 507dc3bb 2018-12-29 stsp if (update) {
914 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
915 68ed9ba5 2019-02-10 stsp err = got_error_from_errno();
916 2a57020b 2019-02-20 stsp unlink(tmppath);
917 68ed9ba5 2019-02-10 stsp goto done;
918 68ed9ba5 2019-02-10 stsp }
919 68ed9ba5 2019-02-10 stsp }
920 ba8a0d4d 2019-02-10 stsp
921 b8f41171 2019-02-10 stsp if (te_mode & S_IXUSR) {
922 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode | S_IXUSR) == -1) {
923 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
924 507dc3bb 2018-12-29 stsp goto done;
925 507dc3bb 2018-12-29 stsp }
926 ba8a0d4d 2019-02-10 stsp } else {
927 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode & ~S_IXUSR) == -1) {
928 68ed9ba5 2019-02-10 stsp err = got_error_from_errno();
929 68ed9ba5 2019-02-10 stsp goto done;
930 68ed9ba5 2019-02-10 stsp }
931 507dc3bb 2018-12-29 stsp }
932 507dc3bb 2018-12-29 stsp
933 5f9fef37 2019-01-13 stsp if (entry == NULL)
934 5f9fef37 2019-01-13 stsp entry = got_fileindex_entry_get(fileindex, path);
935 51514078 2018-12-25 stsp if (entry)
936 51514078 2018-12-25 stsp err = got_fileindex_entry_update(entry, ondisk_path,
937 02c07007 2019-02-10 stsp blob->id.sha1, worktree->base_commit_id->sha1, 1);
938 51514078 2018-12-25 stsp else {
939 51514078 2018-12-25 stsp err = got_fileindex_entry_alloc(&entry, ondisk_path,
940 8da9e5f4 2019-01-12 stsp path, blob->id.sha1, worktree->base_commit_id->sha1);
941 51514078 2018-12-25 stsp if (err)
942 51514078 2018-12-25 stsp goto done;
943 51514078 2018-12-25 stsp err = got_fileindex_entry_add(fileindex, entry);
944 51514078 2018-12-25 stsp }
945 9d31a1d8 2018-03-11 stsp done:
946 3a6ce05a 2019-02-11 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
947 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
948 507dc3bb 2018-12-29 stsp free(tmppath);
949 6353ad76 2019-02-08 stsp return err;
950 6353ad76 2019-02-08 stsp }
951 6353ad76 2019-02-08 stsp
952 6353ad76 2019-02-08 stsp static const struct got_error *
953 b8f41171 2019-02-10 stsp get_file_status(unsigned char *status, struct stat *sb,
954 b8f41171 2019-02-10 stsp struct got_fileindex_entry *ie, const char *abspath,
955 b8f41171 2019-02-10 stsp struct got_repository *repo)
956 6353ad76 2019-02-08 stsp {
957 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
958 6353ad76 2019-02-08 stsp struct got_object_id id;
959 6353ad76 2019-02-08 stsp size_t hdrlen;
960 6353ad76 2019-02-08 stsp FILE *f = NULL;
961 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
962 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
963 6353ad76 2019-02-08 stsp size_t flen, blen;
964 6353ad76 2019-02-08 stsp
965 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
966 6353ad76 2019-02-08 stsp
967 b8f41171 2019-02-10 stsp if (lstat(abspath, sb) == -1) {
968 a378724f 2019-02-10 stsp if (errno == ENOENT) {
969 b8f41171 2019-02-10 stsp if (ie) {
970 b8f41171 2019-02-10 stsp *status = GOT_STATUS_MISSING;
971 b8f41171 2019-02-10 stsp sb->st_mode =
972 b8f41171 2019-02-10 stsp ((ie->mode >> GOT_FILEIDX_MODE_PERMS_SHIFT)
973 b8f41171 2019-02-10 stsp & (S_IRWXU | S_IRWXG | S_IRWXO));
974 b8f41171 2019-02-10 stsp } else
975 b8f41171 2019-02-10 stsp sb->st_mode = GOT_DEFAULT_FILE_MODE;
976 a378724f 2019-02-10 stsp return NULL;
977 a378724f 2019-02-10 stsp }
978 6353ad76 2019-02-08 stsp return got_error_from_errno();
979 a378724f 2019-02-10 stsp }
980 6353ad76 2019-02-08 stsp
981 b8f41171 2019-02-10 stsp if (!S_ISREG(sb->st_mode)) {
982 6353ad76 2019-02-08 stsp *status = GOT_STATUS_OBSTRUCTED;
983 6353ad76 2019-02-08 stsp return NULL;
984 6353ad76 2019-02-08 stsp }
985 6353ad76 2019-02-08 stsp
986 b8f41171 2019-02-10 stsp if (ie == NULL)
987 b8f41171 2019-02-10 stsp return NULL;
988 b8f41171 2019-02-10 stsp
989 b8f41171 2019-02-10 stsp if (ie->ctime_sec == sb->st_ctime &&
990 b8f41171 2019-02-10 stsp ie->ctime_nsec == sb->st_ctimensec &&
991 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
992 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
993 b8f41171 2019-02-10 stsp ie->mtime_nsec == sb->st_mtimensec &&
994 b8f41171 2019-02-10 stsp ie->size == (sb->st_size & 0xffffffff))
995 6353ad76 2019-02-08 stsp return NULL;
996 6353ad76 2019-02-08 stsp
997 6353ad76 2019-02-08 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
998 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
999 6353ad76 2019-02-08 stsp if (err)
1000 6353ad76 2019-02-08 stsp return err;
1001 6353ad76 2019-02-08 stsp
1002 6353ad76 2019-02-08 stsp f = fopen(abspath, "r");
1003 6353ad76 2019-02-08 stsp if (f == NULL) {
1004 6353ad76 2019-02-08 stsp err = got_error_from_errno();
1005 6353ad76 2019-02-08 stsp goto done;
1006 6353ad76 2019-02-08 stsp }
1007 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1008 6353ad76 2019-02-08 stsp while (1) {
1009 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1010 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
1011 6353ad76 2019-02-08 stsp if (err)
1012 6353ad76 2019-02-08 stsp break;
1013 3cbbd752 2019-02-19 stsp /* Skip length of blob object header first time around. */
1014 3cbbd752 2019-02-19 stsp flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1015 80c5c120 2019-02-19 stsp if (flen == 0 && ferror(f)) {
1016 80c5c120 2019-02-19 stsp err = got_error_from_errno();
1017 80c5c120 2019-02-19 stsp break;
1018 80c5c120 2019-02-19 stsp }
1019 6353ad76 2019-02-08 stsp if (blen == 0) {
1020 6353ad76 2019-02-08 stsp if (flen != 0)
1021 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1022 6353ad76 2019-02-08 stsp break;
1023 6353ad76 2019-02-08 stsp } else if (flen == 0) {
1024 6353ad76 2019-02-08 stsp if (blen != 0)
1025 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1026 6353ad76 2019-02-08 stsp break;
1027 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
1028 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
1029 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1030 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1031 6353ad76 2019-02-08 stsp break;
1032 6353ad76 2019-02-08 stsp }
1033 6353ad76 2019-02-08 stsp } else {
1034 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1035 6353ad76 2019-02-08 stsp break;
1036 6353ad76 2019-02-08 stsp }
1037 6353ad76 2019-02-08 stsp hdrlen = 0;
1038 6353ad76 2019-02-08 stsp }
1039 6353ad76 2019-02-08 stsp done:
1040 6353ad76 2019-02-08 stsp if (blob)
1041 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
1042 6353ad76 2019-02-08 stsp if (f)
1043 6353ad76 2019-02-08 stsp fclose(f);
1044 9d31a1d8 2018-03-11 stsp return err;
1045 9d31a1d8 2018-03-11 stsp }
1046 9d31a1d8 2018-03-11 stsp
1047 9d31a1d8 2018-03-11 stsp static const struct got_error *
1048 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
1049 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1050 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
1051 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1052 8da9e5f4 2019-01-12 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1053 9d31a1d8 2018-03-11 stsp {
1054 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1055 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
1056 6353ad76 2019-02-08 stsp char *ondisk_path;
1057 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1058 b8f41171 2019-02-10 stsp struct stat sb;
1059 9d31a1d8 2018-03-11 stsp
1060 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1061 6353ad76 2019-02-08 stsp return got_error_from_errno();
1062 6353ad76 2019-02-08 stsp
1063 b8f41171 2019-02-10 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1064 b8f41171 2019-02-10 stsp if (err)
1065 b8f41171 2019-02-10 stsp goto done;
1066 6353ad76 2019-02-08 stsp
1067 b8f41171 2019-02-10 stsp if (status == GOT_STATUS_OBSTRUCTED) {
1068 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, status, path);
1069 b8f41171 2019-02-10 stsp goto done;
1070 b8f41171 2019-02-10 stsp }
1071 b8f41171 2019-02-10 stsp
1072 b8f41171 2019-02-10 stsp if (ie && status != GOT_STATUS_MISSING) {
1073 b8f41171 2019-02-10 stsp if (memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1074 b8f41171 2019-02-10 stsp SHA1_DIGEST_LENGTH) == 0) {
1075 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1076 b8f41171 2019-02-10 stsp path);
1077 6353ad76 2019-02-08 stsp goto done;
1078 a378724f 2019-02-10 stsp }
1079 b8f41171 2019-02-10 stsp if (memcmp(ie->blob_sha1,
1080 b8f41171 2019-02-10 stsp te->id->sha1, SHA1_DIGEST_LENGTH) == 0)
1081 b8f41171 2019-02-10 stsp goto done;
1082 9d31a1d8 2018-03-11 stsp }
1083 9d31a1d8 2018-03-11 stsp
1084 8da9e5f4 2019-01-12 stsp err = got_object_open_as_blob(&blob, repo, te->id, 8192);
1085 8da9e5f4 2019-01-12 stsp if (err)
1086 6353ad76 2019-02-08 stsp goto done;
1087 512f0d0e 2019-01-02 stsp
1088 276262e8 2019-02-08 stsp if (status == GOT_STATUS_MODIFY)
1089 6353ad76 2019-02-08 stsp err = merge_blob(worktree, fileindex, ie, ondisk_path, path,
1090 b8f41171 2019-02-10 stsp te->mode, sb.st_mode, blob, repo, progress_cb,
1091 b8f41171 2019-02-10 stsp progress_arg);
1092 6353ad76 2019-02-08 stsp else
1093 6353ad76 2019-02-08 stsp err = install_blob(worktree, fileindex, ie, ondisk_path, path,
1094 b8f41171 2019-02-10 stsp te->mode, sb.st_mode, blob, status == GOT_STATUS_MISSING,
1095 b8f41171 2019-02-10 stsp repo, progress_cb, progress_arg);
1096 6353ad76 2019-02-08 stsp
1097 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
1098 6353ad76 2019-02-08 stsp done:
1099 6353ad76 2019-02-08 stsp free(ondisk_path);
1100 8da9e5f4 2019-01-12 stsp return err;
1101 90285c3b 2019-01-08 stsp }
1102 90285c3b 2019-01-08 stsp
1103 90285c3b 2019-01-08 stsp static const struct got_error *
1104 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
1105 90285c3b 2019-01-08 stsp {
1106 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
1107 90285c3b 2019-01-08 stsp char *ondisk_path = NULL;
1108 90285c3b 2019-01-08 stsp
1109 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
1110 90285c3b 2019-01-08 stsp return got_error_from_errno();
1111 90285c3b 2019-01-08 stsp
1112 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
1113 c97665ae 2019-01-13 stsp if (errno != ENOENT)
1114 c97665ae 2019-01-13 stsp err = got_error_from_errno();
1115 c97665ae 2019-01-13 stsp } else {
1116 90285c3b 2019-01-08 stsp char *parent = dirname(ondisk_path);
1117 7a9df742 2019-01-08 stsp while (parent && strcmp(parent, root_path) != 0) {
1118 26c4ac4d 2019-01-08 stsp if (rmdir(parent) == -1) {
1119 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
1120 26c4ac4d 2019-01-08 stsp err = got_error_from_errno();
1121 90285c3b 2019-01-08 stsp break;
1122 90285c3b 2019-01-08 stsp }
1123 90285c3b 2019-01-08 stsp parent = dirname(parent);
1124 90285c3b 2019-01-08 stsp }
1125 90285c3b 2019-01-08 stsp }
1126 90285c3b 2019-01-08 stsp free(ondisk_path);
1127 90285c3b 2019-01-08 stsp return err;
1128 512f0d0e 2019-01-02 stsp }
1129 512f0d0e 2019-01-02 stsp
1130 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
1131 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
1132 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
1133 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
1134 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
1135 8da9e5f4 2019-01-12 stsp void *progress_arg;
1136 8da9e5f4 2019-01-12 stsp got_worktree_cancel_cb cancel_cb;
1137 8da9e5f4 2019-01-12 stsp void *cancel_arg;
1138 8da9e5f4 2019-01-12 stsp };
1139 8da9e5f4 2019-01-12 stsp
1140 512f0d0e 2019-01-02 stsp static const struct got_error *
1141 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
1142 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
1143 512f0d0e 2019-01-02 stsp {
1144 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1145 512f0d0e 2019-01-02 stsp
1146 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
1147 8da9e5f4 2019-01-12 stsp ie->path, a->repo, a->progress_cb, a->progress_arg,
1148 8da9e5f4 2019-01-12 stsp a->cancel_cb, a->cancel_arg);
1149 8da9e5f4 2019-01-12 stsp }
1150 512f0d0e 2019-01-02 stsp
1151 8da9e5f4 2019-01-12 stsp static const struct got_error *
1152 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1153 8da9e5f4 2019-01-12 stsp {
1154 8da9e5f4 2019-01-12 stsp const struct got_error *err;
1155 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1156 7a9df742 2019-01-08 stsp
1157 8da9e5f4 2019-01-12 stsp (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE, ie->path);
1158 7a9df742 2019-01-08 stsp
1159 8da9e5f4 2019-01-12 stsp err = remove_ondisk_file(a->worktree->root_path, ie->path);
1160 8da9e5f4 2019-01-12 stsp if (err)
1161 8da9e5f4 2019-01-12 stsp return err;
1162 8da9e5f4 2019-01-12 stsp got_fileindex_entry_remove(a->fileindex, ie);
1163 8da9e5f4 2019-01-12 stsp return NULL;
1164 9d31a1d8 2018-03-11 stsp }
1165 9d31a1d8 2018-03-11 stsp
1166 9d31a1d8 2018-03-11 stsp static const struct got_error *
1167 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
1168 9d31a1d8 2018-03-11 stsp {
1169 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1170 8da9e5f4 2019-01-12 stsp const struct got_error *err;
1171 8da9e5f4 2019-01-12 stsp char *path;
1172 9d31a1d8 2018-03-11 stsp
1173 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
1174 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
1175 8da9e5f4 2019-01-12 stsp == -1)
1176 8da9e5f4 2019-01-12 stsp return got_error_from_errno();
1177 9d31a1d8 2018-03-11 stsp
1178 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
1179 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
1180 8da9e5f4 2019-01-12 stsp else
1181 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
1182 8da9e5f4 2019-01-12 stsp a->repo, a->progress_cb, a->progress_arg,
1183 8da9e5f4 2019-01-12 stsp a->cancel_cb, a->cancel_arg);
1184 9d31a1d8 2018-03-11 stsp
1185 8da9e5f4 2019-01-12 stsp free(path);
1186 0cd1c46a 2019-03-11 stsp return err;
1187 0cd1c46a 2019-03-11 stsp }
1188 0cd1c46a 2019-03-11 stsp
1189 517bab73 2019-03-11 stsp const struct got_error *
1190 517bab73 2019-03-11 stsp got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
1191 0cd1c46a 2019-03-11 stsp {
1192 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
1193 0647c563 2019-03-11 stsp char *uuidstr = NULL;
1194 0cd1c46a 2019-03-11 stsp uint32_t uuid_status;
1195 0cd1c46a 2019-03-11 stsp
1196 517bab73 2019-03-11 stsp *refname = NULL;
1197 517bab73 2019-03-11 stsp
1198 0cd1c46a 2019-03-11 stsp uuid_to_string(&worktree->uuid, &uuidstr, &uuid_status);
1199 0cd1c46a 2019-03-11 stsp if (uuid_status != uuid_s_ok)
1200 0cd1c46a 2019-03-11 stsp return got_error_uuid(uuid_status);
1201 0cd1c46a 2019-03-11 stsp
1202 0647c563 2019-03-11 stsp if (asprintf(refname, "%s-%s", GOT_WORKTREE_BASE_REF_PREFIX, uuidstr)
1203 0647c563 2019-03-11 stsp == -1) {
1204 0cd1c46a 2019-03-11 stsp err = got_error_from_errno();
1205 0647c563 2019-03-11 stsp *refname = NULL;
1206 0cd1c46a 2019-03-11 stsp }
1207 517bab73 2019-03-11 stsp free(uuidstr);
1208 517bab73 2019-03-11 stsp return err;
1209 517bab73 2019-03-11 stsp }
1210 517bab73 2019-03-11 stsp
1211 517bab73 2019-03-11 stsp /*
1212 517bab73 2019-03-11 stsp * Prevent Git's garbage collector from deleting our base commit by
1213 517bab73 2019-03-11 stsp * setting a reference to our base commit's ID.
1214 517bab73 2019-03-11 stsp */
1215 517bab73 2019-03-11 stsp static const struct got_error *
1216 517bab73 2019-03-11 stsp ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
1217 517bab73 2019-03-11 stsp {
1218 517bab73 2019-03-11 stsp const struct got_error *err = NULL;
1219 517bab73 2019-03-11 stsp struct got_reference *ref = NULL;
1220 517bab73 2019-03-11 stsp char *refname;
1221 517bab73 2019-03-11 stsp
1222 517bab73 2019-03-11 stsp err = got_worktree_get_base_ref_name(&refname, worktree);
1223 517bab73 2019-03-11 stsp if (err)
1224 517bab73 2019-03-11 stsp return err;
1225 0cd1c46a 2019-03-11 stsp
1226 0cd1c46a 2019-03-11 stsp err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
1227 0cd1c46a 2019-03-11 stsp if (err)
1228 0cd1c46a 2019-03-11 stsp goto done;
1229 0cd1c46a 2019-03-11 stsp
1230 0cd1c46a 2019-03-11 stsp err = got_ref_write(ref, repo);
1231 0cd1c46a 2019-03-11 stsp done:
1232 0cd1c46a 2019-03-11 stsp free(refname);
1233 0cd1c46a 2019-03-11 stsp if (ref)
1234 0cd1c46a 2019-03-11 stsp got_ref_close(ref);
1235 9d31a1d8 2018-03-11 stsp return err;
1236 9d31a1d8 2018-03-11 stsp }
1237 9d31a1d8 2018-03-11 stsp
1238 0cd1c46a 2019-03-11 stsp
1239 9d31a1d8 2018-03-11 stsp const struct got_error *
1240 9d31a1d8 2018-03-11 stsp got_worktree_checkout_files(struct got_worktree *worktree,
1241 93a30277 2018-12-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1242 93a30277 2018-12-24 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1243 9d31a1d8 2018-03-11 stsp {
1244 a143fb78 2018-12-25 stsp const struct got_error *err = NULL, *unlockerr, *checkout_err = NULL;
1245 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
1246 8da9e5f4 2019-01-12 stsp struct got_object_id *tree_id = NULL;
1247 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
1248 9d31a1d8 2018-03-11 stsp char *fileindex_path = NULL, *new_fileindex_path = NULL;
1249 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
1250 51514078 2018-12-25 stsp FILE *index = NULL, *new_index = NULL;
1251 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb diff_cb;
1252 8da9e5f4 2019-01-12 stsp struct diff_cb_arg arg;
1253 9d31a1d8 2018-03-11 stsp
1254 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
1255 9d31a1d8 2018-03-11 stsp if (err)
1256 9d31a1d8 2018-03-11 stsp return err;
1257 93a30277 2018-12-24 stsp
1258 133d2798 2019-01-08 stsp fileindex = got_fileindex_alloc();
1259 133d2798 2019-01-08 stsp if (fileindex == NULL) {
1260 133d2798 2019-01-08 stsp err = got_error_from_errno();
1261 9d31a1d8 2018-03-11 stsp goto done;
1262 133d2798 2019-01-08 stsp }
1263 9d31a1d8 2018-03-11 stsp
1264 9d31a1d8 2018-03-11 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1265 9d31a1d8 2018-03-11 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1266 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
1267 9d31a1d8 2018-03-11 stsp fileindex_path = NULL;
1268 9d31a1d8 2018-03-11 stsp goto done;
1269 9d31a1d8 2018-03-11 stsp }
1270 9d31a1d8 2018-03-11 stsp
1271 51514078 2018-12-25 stsp /*
1272 51514078 2018-12-25 stsp * Read the file index.
1273 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
1274 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
1275 51514078 2018-12-25 stsp */
1276 51514078 2018-12-25 stsp index = fopen(fileindex_path, "rb");
1277 51514078 2018-12-25 stsp if (index == NULL) {
1278 cf61d818 2019-01-12 stsp if (errno != ENOENT) {
1279 cf61d818 2019-01-12 stsp err = got_error_from_errno();
1280 cf61d818 2019-01-12 stsp goto done;
1281 cf61d818 2019-01-12 stsp }
1282 cf61d818 2019-01-12 stsp } else {
1283 cf61d818 2019-01-12 stsp err = got_fileindex_read(fileindex, index);
1284 cf61d818 2019-01-12 stsp fclose(index);
1285 cf61d818 2019-01-12 stsp if (err)
1286 cf61d818 2019-01-12 stsp goto done;
1287 51514078 2018-12-25 stsp }
1288 51514078 2018-12-25 stsp
1289 b8bdcc21 2018-12-24 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
1290 b8bdcc21 2018-12-24 stsp fileindex_path);
1291 51664889 2018-03-12 stsp if (err)
1292 51664889 2018-03-12 stsp goto done;
1293 51664889 2018-03-12 stsp
1294 0cd1c46a 2019-03-11 stsp err = ref_base_commit(worktree, repo);
1295 0cd1c46a 2019-03-11 stsp if (err)
1296 0cd1c46a 2019-03-11 stsp goto done;
1297 0cd1c46a 2019-03-11 stsp
1298 eaccb85f 2018-12-25 stsp err = got_object_open_as_commit(&commit, repo,
1299 eaccb85f 2018-12-25 stsp worktree->base_commit_id);
1300 9d31a1d8 2018-03-11 stsp if (err)
1301 9d31a1d8 2018-03-11 stsp goto done;
1302 9d31a1d8 2018-03-11 stsp
1303 8da9e5f4 2019-01-12 stsp err = got_object_id_by_path(&tree_id, repo,
1304 8da9e5f4 2019-01-12 stsp worktree->base_commit_id, worktree->path_prefix);
1305 9d31a1d8 2018-03-11 stsp if (err)
1306 9d31a1d8 2018-03-11 stsp goto done;
1307 9d31a1d8 2018-03-11 stsp
1308 8da9e5f4 2019-01-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1309 8da9e5f4 2019-01-12 stsp if (err)
1310 8da9e5f4 2019-01-12 stsp goto done;
1311 9d31a1d8 2018-03-11 stsp
1312 8da9e5f4 2019-01-12 stsp diff_cb.diff_old_new = diff_old_new;
1313 8da9e5f4 2019-01-12 stsp diff_cb.diff_old = diff_old;
1314 8da9e5f4 2019-01-12 stsp diff_cb.diff_new = diff_new;
1315 8da9e5f4 2019-01-12 stsp arg.fileindex = fileindex;
1316 8da9e5f4 2019-01-12 stsp arg.worktree = worktree;
1317 8da9e5f4 2019-01-12 stsp arg.repo = repo;
1318 8da9e5f4 2019-01-12 stsp arg.progress_cb = progress_cb;
1319 8da9e5f4 2019-01-12 stsp arg.progress_arg = progress_arg;
1320 8da9e5f4 2019-01-12 stsp arg.cancel_cb = cancel_cb;
1321 8da9e5f4 2019-01-12 stsp arg.cancel_arg = cancel_arg;
1322 8da9e5f4 2019-01-12 stsp checkout_err = got_fileindex_diff_tree(fileindex, tree, repo,
1323 8da9e5f4 2019-01-12 stsp &diff_cb, &arg);
1324 8da9e5f4 2019-01-12 stsp
1325 a143fb78 2018-12-25 stsp /* Try to sync the fileindex back to disk in any case. */
1326 b8bdcc21 2018-12-24 stsp err = got_fileindex_write(fileindex, new_index);
1327 9d31a1d8 2018-03-11 stsp if (err)
1328 9d31a1d8 2018-03-11 stsp goto done;
1329 9d31a1d8 2018-03-11 stsp
1330 9d31a1d8 2018-03-11 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
1331 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
1332 2a57020b 2019-02-20 stsp unlink(new_fileindex_path);
1333 9d31a1d8 2018-03-11 stsp goto done;
1334 9d31a1d8 2018-03-11 stsp }
1335 9d31a1d8 2018-03-11 stsp
1336 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1337 9d31a1d8 2018-03-11 stsp new_fileindex_path = NULL;
1338 9d31a1d8 2018-03-11 stsp
1339 9d31a1d8 2018-03-11 stsp done:
1340 edfa7d7f 2018-09-11 stsp if (tree)
1341 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
1342 9d31a1d8 2018-03-11 stsp if (commit)
1343 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
1344 9d31a1d8 2018-03-11 stsp if (new_fileindex_path)
1345 9d31a1d8 2018-03-11 stsp unlink(new_fileindex_path);
1346 b8bdcc21 2018-12-24 stsp if (new_index)
1347 b8bdcc21 2018-12-24 stsp fclose(new_index);
1348 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1349 9d31a1d8 2018-03-11 stsp free(fileindex_path);
1350 7426bbfd 2018-12-24 stsp got_fileindex_free(fileindex);
1351 a143fb78 2018-12-25 stsp if (checkout_err)
1352 a143fb78 2018-12-25 stsp err = checkout_err;
1353 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1354 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
1355 9d31a1d8 2018-03-11 stsp err = unlockerr;
1356 f8d1f275 2019-02-04 stsp return err;
1357 f8d1f275 2019-02-04 stsp }
1358 f8d1f275 2019-02-04 stsp
1359 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
1360 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
1361 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
1362 927df6b7 2019-02-10 stsp const char *status_path;
1363 927df6b7 2019-02-10 stsp size_t status_path_len;
1364 f8d1f275 2019-02-04 stsp struct got_repository *repo;
1365 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
1366 f8d1f275 2019-02-04 stsp void *status_arg;
1367 f8d1f275 2019-02-04 stsp got_worktree_cancel_cb cancel_cb;
1368 f8d1f275 2019-02-04 stsp void *cancel_arg;
1369 f8d1f275 2019-02-04 stsp };
1370 f8d1f275 2019-02-04 stsp
1371 f8d1f275 2019-02-04 stsp static const struct got_error *
1372 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
1373 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
1374 927df6b7 2019-02-10 stsp struct got_repository *repo)
1375 927df6b7 2019-02-10 stsp {
1376 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
1377 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1378 927df6b7 2019-02-10 stsp struct stat sb;
1379 927df6b7 2019-02-10 stsp struct got_object_id id;
1380 927df6b7 2019-02-10 stsp
1381 927df6b7 2019-02-10 stsp err = get_file_status(&status, &sb, ie, abspath, repo);
1382 927df6b7 2019-02-10 stsp if (err == NULL && status != GOT_STATUS_NO_CHANGE) {
1383 927df6b7 2019-02-10 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1384 927df6b7 2019-02-10 stsp err = (*status_cb)(status_arg, status, ie->path, &id);
1385 927df6b7 2019-02-10 stsp }
1386 927df6b7 2019-02-10 stsp return err;
1387 927df6b7 2019-02-10 stsp }
1388 927df6b7 2019-02-10 stsp
1389 927df6b7 2019-02-10 stsp static const struct got_error *
1390 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
1391 f8d1f275 2019-02-04 stsp struct dirent *de, const char *parent_path)
1392 f8d1f275 2019-02-04 stsp {
1393 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1394 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1395 f8d1f275 2019-02-04 stsp char *abspath;
1396 f8d1f275 2019-02-04 stsp
1397 927df6b7 2019-02-10 stsp if (got_path_cmp(parent_path, a->status_path) != 0 &&
1398 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
1399 927df6b7 2019-02-10 stsp return NULL;
1400 927df6b7 2019-02-10 stsp
1401 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1402 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
1403 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
1404 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1405 f8d1f275 2019-02-04 stsp } else {
1406 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
1407 f8d1f275 2019-02-04 stsp de->d_name) == -1)
1408 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1409 f8d1f275 2019-02-04 stsp }
1410 f8d1f275 2019-02-04 stsp
1411 927df6b7 2019-02-10 stsp err = report_file_status(ie, abspath, a->status_cb, a->status_arg,
1412 927df6b7 2019-02-10 stsp a->repo);
1413 f8d1f275 2019-02-04 stsp free(abspath);
1414 9d31a1d8 2018-03-11 stsp return err;
1415 9d31a1d8 2018-03-11 stsp }
1416 f8d1f275 2019-02-04 stsp
1417 f8d1f275 2019-02-04 stsp static const struct got_error *
1418 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1419 f8d1f275 2019-02-04 stsp {
1420 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1421 b72f483a 2019-02-05 stsp struct got_object_id id;
1422 927df6b7 2019-02-10 stsp
1423 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
1424 927df6b7 2019-02-10 stsp return NULL;
1425 927df6b7 2019-02-10 stsp
1426 b72f483a 2019-02-05 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1427 b72f483a 2019-02-05 stsp return (*a->status_cb)(a->status_arg, GOT_STATUS_MISSING, ie->path,
1428 b72f483a 2019-02-05 stsp &id);
1429 f8d1f275 2019-02-04 stsp }
1430 f8d1f275 2019-02-04 stsp
1431 f8d1f275 2019-02-04 stsp static const struct got_error *
1432 f8d1f275 2019-02-04 stsp status_new(void *arg, struct dirent *de, const char *parent_path)
1433 f8d1f275 2019-02-04 stsp {
1434 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1435 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1436 f8d1f275 2019-02-04 stsp char *path = NULL;
1437 f8d1f275 2019-02-04 stsp
1438 f8d1f275 2019-02-04 stsp if (de->d_type == DT_DIR)
1439 2c201a36 2019-02-10 stsp return NULL;
1440 2c201a36 2019-02-10 stsp
1441 2c201a36 2019-02-10 stsp /* XXX ignore symlinks for now */
1442 2c201a36 2019-02-10 stsp if (de->d_type == DT_LNK)
1443 f8d1f275 2019-02-04 stsp return NULL;
1444 f8d1f275 2019-02-04 stsp
1445 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
1446 927df6b7 2019-02-10 stsp return NULL;
1447 927df6b7 2019-02-10 stsp
1448 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1449 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
1450 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1451 f8d1f275 2019-02-04 stsp } else {
1452 f8d1f275 2019-02-04 stsp path = de->d_name;
1453 f8d1f275 2019-02-04 stsp }
1454 f8d1f275 2019-02-04 stsp
1455 b72f483a 2019-02-05 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED, path,
1456 b72f483a 2019-02-05 stsp NULL);
1457 f8d1f275 2019-02-04 stsp if (parent_path[0])
1458 f8d1f275 2019-02-04 stsp free(path);
1459 b72f483a 2019-02-05 stsp return err;
1460 f8d1f275 2019-02-04 stsp }
1461 f8d1f275 2019-02-04 stsp
1462 f8d1f275 2019-02-04 stsp const struct got_error *
1463 927df6b7 2019-02-10 stsp got_worktree_status(struct got_worktree *worktree, const char *path,
1464 f8d1f275 2019-02-04 stsp struct got_repository *repo, got_worktree_status_cb status_cb,
1465 f8d1f275 2019-02-04 stsp void *status_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1466 f8d1f275 2019-02-04 stsp {
1467 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1468 f8d1f275 2019-02-04 stsp DIR *workdir = NULL;
1469 f8d1f275 2019-02-04 stsp char *fileindex_path = NULL;
1470 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex = NULL;
1471 f8d1f275 2019-02-04 stsp FILE *index = NULL;
1472 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
1473 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
1474 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
1475 f8d1f275 2019-02-04 stsp
1476 f8d1f275 2019-02-04 stsp fileindex = got_fileindex_alloc();
1477 f8d1f275 2019-02-04 stsp if (fileindex == NULL) {
1478 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1479 f8d1f275 2019-02-04 stsp goto done;
1480 f8d1f275 2019-02-04 stsp }
1481 f8d1f275 2019-02-04 stsp
1482 f8d1f275 2019-02-04 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1483 f8d1f275 2019-02-04 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1484 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1485 f8d1f275 2019-02-04 stsp fileindex_path = NULL;
1486 f8d1f275 2019-02-04 stsp goto done;
1487 f8d1f275 2019-02-04 stsp }
1488 f8d1f275 2019-02-04 stsp
1489 f8d1f275 2019-02-04 stsp index = fopen(fileindex_path, "rb");
1490 f8d1f275 2019-02-04 stsp if (index == NULL) {
1491 f8d1f275 2019-02-04 stsp if (errno != ENOENT) {
1492 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1493 f8d1f275 2019-02-04 stsp goto done;
1494 f8d1f275 2019-02-04 stsp }
1495 f8d1f275 2019-02-04 stsp } else {
1496 f8d1f275 2019-02-04 stsp err = got_fileindex_read(fileindex, index);
1497 f8d1f275 2019-02-04 stsp fclose(index);
1498 f8d1f275 2019-02-04 stsp if (err)
1499 f8d1f275 2019-02-04 stsp goto done;
1500 f8d1f275 2019-02-04 stsp }
1501 f8d1f275 2019-02-04 stsp
1502 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
1503 927df6b7 2019-02-10 stsp worktree->root_path, path[0] ? "/" : "", path) == -1) {
1504 c513d110 2019-02-05 stsp err = got_error_from_errno();
1505 c513d110 2019-02-05 stsp goto done;
1506 c513d110 2019-02-05 stsp }
1507 927df6b7 2019-02-10 stsp workdir = opendir(ondisk_path);
1508 927df6b7 2019-02-10 stsp if (workdir == NULL) {
1509 927df6b7 2019-02-10 stsp if (errno == ENOTDIR) {
1510 927df6b7 2019-02-10 stsp struct got_fileindex_entry *ie;
1511 927df6b7 2019-02-10 stsp ie = got_fileindex_entry_get(fileindex, path);
1512 927df6b7 2019-02-10 stsp if (ie == NULL) {
1513 927df6b7 2019-02-10 stsp err = got_error(GOT_ERR_BAD_PATH);
1514 927df6b7 2019-02-10 stsp goto done;
1515 927df6b7 2019-02-10 stsp }
1516 927df6b7 2019-02-10 stsp err = report_file_status(ie, ondisk_path,
1517 927df6b7 2019-02-10 stsp status_cb, status_arg, repo);
1518 927df6b7 2019-02-10 stsp goto done;
1519 927df6b7 2019-02-10 stsp } else {
1520 927df6b7 2019-02-10 stsp err = got_error_from_errno();
1521 927df6b7 2019-02-10 stsp goto done;
1522 927df6b7 2019-02-10 stsp }
1523 927df6b7 2019-02-10 stsp }
1524 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old_new = status_old_new;
1525 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old = status_old;
1526 d43a8a88 2019-02-05 stsp fdiff_cb.diff_new = status_new;
1527 f8d1f275 2019-02-04 stsp arg.fileindex = fileindex;
1528 f8d1f275 2019-02-04 stsp arg.worktree = worktree;
1529 927df6b7 2019-02-10 stsp arg.status_path = path;
1530 927df6b7 2019-02-10 stsp arg.status_path_len = strlen(path);
1531 f8d1f275 2019-02-04 stsp arg.repo = repo;
1532 f8d1f275 2019-02-04 stsp arg.status_cb = status_cb;
1533 f8d1f275 2019-02-04 stsp arg.status_arg = status_arg;
1534 f8d1f275 2019-02-04 stsp arg.cancel_cb = cancel_cb;
1535 f8d1f275 2019-02-04 stsp arg.cancel_arg = cancel_arg;
1536 c7f4312f 2019-02-05 stsp err = got_fileindex_diff_dir(fileindex, workdir, worktree->root_path,
1537 927df6b7 2019-02-10 stsp path, repo, &fdiff_cb, &arg);
1538 f8d1f275 2019-02-04 stsp done:
1539 f8d1f275 2019-02-04 stsp if (workdir)
1540 f8d1f275 2019-02-04 stsp closedir(workdir);
1541 927df6b7 2019-02-10 stsp free(ondisk_path);
1542 f8d1f275 2019-02-04 stsp free(fileindex_path);
1543 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
1544 f8d1f275 2019-02-04 stsp return err;
1545 f8d1f275 2019-02-04 stsp }
1546 6c7ab921 2019-03-18 stsp
1547 6c7ab921 2019-03-18 stsp const struct got_error *
1548 6c7ab921 2019-03-18 stsp got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
1549 6c7ab921 2019-03-18 stsp const char *arg)
1550 6c7ab921 2019-03-18 stsp {
1551 6c7ab921 2019-03-18 stsp const struct got_error *err = NULL;
1552 6c7ab921 2019-03-18 stsp char *resolved, *path = NULL;
1553 6c7ab921 2019-03-18 stsp size_t len;
1554 6c7ab921 2019-03-18 stsp
1555 6c7ab921 2019-03-18 stsp *wt_path = NULL;
1556 6c7ab921 2019-03-18 stsp
1557 6c7ab921 2019-03-18 stsp resolved = realpath(arg, NULL);
1558 6c7ab921 2019-03-18 stsp if (resolved == NULL)
1559 6c7ab921 2019-03-18 stsp return got_error_from_errno();
1560 6c7ab921 2019-03-18 stsp
1561 6c7ab921 2019-03-18 stsp if (strncmp(got_worktree_get_root_path(worktree), resolved,
1562 6c7ab921 2019-03-18 stsp strlen(got_worktree_get_root_path(worktree)))) {
1563 6c7ab921 2019-03-18 stsp err = got_error(GOT_ERR_BAD_PATH);
1564 6c7ab921 2019-03-18 stsp goto done;
1565 6c7ab921 2019-03-18 stsp }
1566 6c7ab921 2019-03-18 stsp
1567 6c7ab921 2019-03-18 stsp path = strdup(resolved + strlen(got_worktree_get_root_path(worktree)));
1568 6c7ab921 2019-03-18 stsp if (path == NULL) {
1569 6c7ab921 2019-03-18 stsp err = got_error_from_errno();
1570 6c7ab921 2019-03-18 stsp goto done;
1571 6c7ab921 2019-03-18 stsp }
1572 6c7ab921 2019-03-18 stsp
1573 6c7ab921 2019-03-18 stsp /* XXX status walk can't deal with trailing slash! */
1574 6c7ab921 2019-03-18 stsp len = strlen(path);
1575 6c7ab921 2019-03-18 stsp while (path[len - 1] == '/') {
1576 6c7ab921 2019-03-18 stsp path[len - 1] = '\0';
1577 6c7ab921 2019-03-18 stsp len--;
1578 6c7ab921 2019-03-18 stsp }
1579 6c7ab921 2019-03-18 stsp done:
1580 6c7ab921 2019-03-18 stsp free(resolved);
1581 6c7ab921 2019-03-18 stsp if (err == NULL)
1582 6c7ab921 2019-03-18 stsp *wt_path = path;
1583 6c7ab921 2019-03-18 stsp else
1584 6c7ab921 2019-03-18 stsp free(path);
1585 6c7ab921 2019-03-18 stsp return err;
1586 6c7ab921 2019-03-18 stsp }