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 7154f6ce 2019-03-27 stsp #include <util.h>
36 86c3caaf 2018-03-09 stsp
37 86c3caaf 2018-03-09 stsp #include "got_error.h"
38 86c3caaf 2018-03-09 stsp #include "got_repository.h"
39 5261c201 2018-04-01 stsp #include "got_reference.h"
40 9d31a1d8 2018-03-11 stsp #include "got_object.h"
41 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
42 511a516b 2018-05-19 stsp #include "got_opentemp.h"
43 86c3caaf 2018-03-09 stsp
44 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
45 718b3ab0 2018-03-17 stsp #include "got_lib_path.h"
46 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
47 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
48 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
49 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
50 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
51 ed175427 2019-05-09 stsp #include "got_lib_object_parse.h"
52 cf066bf8 2019-05-09 stsp #include "got_lib_object_create.h"
53 24519714 2019-05-09 stsp #include "got_lib_object_idset.h"
54 6353ad76 2019-02-08 stsp #include "got_lib_diff.h"
55 9d31a1d8 2018-03-11 stsp
56 9d31a1d8 2018-03-11 stsp #ifndef MIN
57 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
58 9d31a1d8 2018-03-11 stsp #endif
59 86c3caaf 2018-03-09 stsp
60 99724ed4 2018-03-10 stsp static const struct got_error *
61 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
62 99724ed4 2018-03-10 stsp {
63 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
64 99724ed4 2018-03-10 stsp char *path;
65 99724ed4 2018-03-10 stsp int fd = -1;
66 99724ed4 2018-03-10 stsp
67 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
68 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
69 99724ed4 2018-03-10 stsp path = NULL;
70 99724ed4 2018-03-10 stsp goto done;
71 99724ed4 2018-03-10 stsp }
72 99724ed4 2018-03-10 stsp
73 73a5ef67 2018-03-11 stsp fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
74 99724ed4 2018-03-10 stsp GOT_DEFAULT_FILE_MODE);
75 99724ed4 2018-03-10 stsp if (fd == -1) {
76 99724ed4 2018-03-10 stsp err = got_error_from_errno();
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 507dc3bb 2018-12-29 stsp return err;
93 507dc3bb 2018-12-29 stsp }
94 507dc3bb 2018-12-29 stsp
95 507dc3bb 2018-12-29 stsp static const struct got_error *
96 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
97 507dc3bb 2018-12-29 stsp {
98 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
99 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
100 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
101 507dc3bb 2018-12-29 stsp char *path = NULL;
102 507dc3bb 2018-12-29 stsp
103 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
104 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
105 507dc3bb 2018-12-29 stsp path = NULL;
106 507dc3bb 2018-12-29 stsp goto done;
107 507dc3bb 2018-12-29 stsp }
108 507dc3bb 2018-12-29 stsp
109 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
110 507dc3bb 2018-12-29 stsp if (err)
111 507dc3bb 2018-12-29 stsp goto done;
112 507dc3bb 2018-12-29 stsp
113 507dc3bb 2018-12-29 stsp if (content) {
114 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
115 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
116 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
117 507dc3bb 2018-12-29 stsp goto done;
118 507dc3bb 2018-12-29 stsp }
119 507dc3bb 2018-12-29 stsp }
120 507dc3bb 2018-12-29 stsp
121 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
122 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
123 2a57020b 2019-02-20 stsp unlink(tmppath);
124 507dc3bb 2018-12-29 stsp goto done;
125 507dc3bb 2018-12-29 stsp }
126 507dc3bb 2018-12-29 stsp
127 507dc3bb 2018-12-29 stsp done:
128 507dc3bb 2018-12-29 stsp free(tmppath);
129 fb43ecf1 2019-02-11 stsp if (fclose(tmpfile) != 0 && err == NULL)
130 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
131 99724ed4 2018-03-10 stsp return err;
132 99724ed4 2018-03-10 stsp }
133 99724ed4 2018-03-10 stsp
134 09fe317a 2018-03-11 stsp static const struct got_error *
135 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
136 09fe317a 2018-03-11 stsp {
137 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
138 09fe317a 2018-03-11 stsp char *path;
139 09fe317a 2018-03-11 stsp int fd = -1;
140 09fe317a 2018-03-11 stsp ssize_t n;
141 09fe317a 2018-03-11 stsp struct stat sb;
142 09fe317a 2018-03-11 stsp
143 09fe317a 2018-03-11 stsp *content = NULL;
144 09fe317a 2018-03-11 stsp
145 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
146 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
147 09fe317a 2018-03-11 stsp path = NULL;
148 09fe317a 2018-03-11 stsp goto done;
149 09fe317a 2018-03-11 stsp }
150 09fe317a 2018-03-11 stsp
151 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
152 09fe317a 2018-03-11 stsp if (fd == -1) {
153 f02eaa22 2019-03-11 stsp if (errno == ENOENT)
154 f02eaa22 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
155 f02eaa22 2019-03-11 stsp else
156 f02eaa22 2019-03-11 stsp err = got_error_from_errno();
157 ef99fdb1 2018-03-11 stsp goto done;
158 ef99fdb1 2018-03-11 stsp }
159 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
160 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
161 73a5ef67 2018-03-11 stsp : got_error_from_errno());
162 09fe317a 2018-03-11 stsp goto done;
163 09fe317a 2018-03-11 stsp }
164 09fe317a 2018-03-11 stsp
165 d10c9b58 2019-02-19 stsp if (lstat(path, &sb) != 0) {
166 d10c9b58 2019-02-19 stsp err = got_error_from_errno();
167 d10c9b58 2019-02-19 stsp goto done;
168 d10c9b58 2019-02-19 stsp }
169 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
170 09fe317a 2018-03-11 stsp if (*content == NULL) {
171 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
172 09fe317a 2018-03-11 stsp goto done;
173 09fe317a 2018-03-11 stsp }
174 09fe317a 2018-03-11 stsp
175 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
176 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
177 0605801d 2018-03-11 stsp err = (n == -1 ? got_error_from_errno() :
178 0605801d 2018-03-11 stsp 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 if ((*content)[sb.st_size - 1] != '\n') {
182 09fe317a 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
183 09fe317a 2018-03-11 stsp goto done;
184 09fe317a 2018-03-11 stsp }
185 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
186 09fe317a 2018-03-11 stsp
187 09fe317a 2018-03-11 stsp done:
188 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
189 09fe317a 2018-03-11 stsp err = got_error_from_errno();
190 09fe317a 2018-03-11 stsp free(path);
191 09fe317a 2018-03-11 stsp if (err) {
192 09fe317a 2018-03-11 stsp free(*content);
193 09fe317a 2018-03-11 stsp *content = NULL;
194 09fe317a 2018-03-11 stsp }
195 09fe317a 2018-03-11 stsp return err;
196 09fe317a 2018-03-11 stsp }
197 09fe317a 2018-03-11 stsp
198 86c3caaf 2018-03-09 stsp const struct got_error *
199 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
200 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
201 86c3caaf 2018-03-09 stsp {
202 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
203 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
204 ec22038e 2019-03-10 stsp uuid_t uuid;
205 ec22038e 2019-03-10 stsp uint32_t uuid_status;
206 65596e15 2018-12-24 stsp int obj_type;
207 7ac97322 2018-03-11 stsp char *path_got = NULL;
208 08d425ea 2018-12-24 stsp char *refstr = NULL;
209 1451e70d 2018-03-10 stsp char *formatstr = NULL;
210 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
211 65596e15 2018-12-24 stsp char *basestr = NULL;
212 ec22038e 2019-03-10 stsp char *uuidstr = NULL;
213 65596e15 2018-12-24 stsp
214 0c48fee2 2019-03-11 stsp if (strcmp(path, got_repo_get_path(repo)) == 0) {
215 0c48fee2 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_REPO);
216 0c48fee2 2019-03-11 stsp goto done;
217 0c48fee2 2019-03-11 stsp }
218 0c48fee2 2019-03-11 stsp
219 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
220 65596e15 2018-12-24 stsp if (err)
221 65596e15 2018-12-24 stsp return err;
222 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
223 65596e15 2018-12-24 stsp if (err)
224 65596e15 2018-12-24 stsp return err;
225 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
226 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
227 86c3caaf 2018-03-09 stsp
228 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
229 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
230 0a585a0d 2018-03-17 stsp return got_error_from_errno();
231 0bb8a95e 2018-03-12 stsp }
232 577ec78f 2018-03-11 stsp
233 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
234 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
235 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
236 86c3caaf 2018-03-09 stsp goto done;
237 86c3caaf 2018-03-09 stsp }
238 86c3caaf 2018-03-09 stsp
239 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
240 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
241 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
242 86c3caaf 2018-03-09 stsp goto done;
243 86c3caaf 2018-03-09 stsp }
244 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
245 86c3caaf 2018-03-09 stsp err = got_error_from_errno();
246 86c3caaf 2018-03-09 stsp goto done;
247 86c3caaf 2018-03-09 stsp }
248 86c3caaf 2018-03-09 stsp
249 056e7441 2018-03-11 stsp /* Create an empty lock file. */
250 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
251 056e7441 2018-03-11 stsp if (err)
252 056e7441 2018-03-11 stsp goto done;
253 056e7441 2018-03-11 stsp
254 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
255 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
256 99724ed4 2018-03-10 stsp if (err)
257 86c3caaf 2018-03-09 stsp goto done;
258 86c3caaf 2018-03-09 stsp
259 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
260 08d425ea 2018-12-24 stsp refstr = got_ref_to_str(head_ref);
261 08d425ea 2018-12-24 stsp if (refstr == NULL) {
262 a1a7858a 2018-12-24 stsp err = got_error_from_errno();
263 a1a7858a 2018-12-24 stsp goto done;
264 a1a7858a 2018-12-24 stsp }
265 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
266 65596e15 2018-12-24 stsp if (err)
267 65596e15 2018-12-24 stsp goto done;
268 65596e15 2018-12-24 stsp
269 65596e15 2018-12-24 stsp /* Record our base commit. */
270 65596e15 2018-12-24 stsp err = got_object_id_str(&basestr, commit_id);
271 65596e15 2018-12-24 stsp if (err)
272 65596e15 2018-12-24 stsp goto done;
273 0f92850e 2018-12-25 stsp err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
274 99724ed4 2018-03-10 stsp if (err)
275 86c3caaf 2018-03-09 stsp goto done;
276 86c3caaf 2018-03-09 stsp
277 1451e70d 2018-03-10 stsp /* Store path to repository. */
278 7839bc15 2019-01-06 stsp err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
279 7839bc15 2019-01-06 stsp got_repo_get_path(repo));
280 99724ed4 2018-03-10 stsp if (err)
281 86c3caaf 2018-03-09 stsp goto done;
282 86c3caaf 2018-03-09 stsp
283 577ec78f 2018-03-11 stsp /* Store in-repository path prefix. */
284 0bb8a95e 2018-03-12 stsp err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
285 0bb8a95e 2018-03-12 stsp absprefix ? absprefix : prefix);
286 ec22038e 2019-03-10 stsp if (err)
287 ec22038e 2019-03-10 stsp goto done;
288 ec22038e 2019-03-10 stsp
289 ec22038e 2019-03-10 stsp /* Generate UUID. */
290 ec22038e 2019-03-10 stsp uuid_create(&uuid, &uuid_status);
291 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
292 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
293 ec22038e 2019-03-10 stsp goto done;
294 ec22038e 2019-03-10 stsp }
295 ec22038e 2019-03-10 stsp uuid_to_string(&uuid, &uuidstr, &uuid_status);
296 ec22038e 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
297 ec22038e 2019-03-10 stsp err = got_error_uuid(uuid_status);
298 ec22038e 2019-03-10 stsp goto done;
299 ec22038e 2019-03-10 stsp }
300 ec22038e 2019-03-10 stsp err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
301 577ec78f 2018-03-11 stsp if (err)
302 577ec78f 2018-03-11 stsp goto done;
303 577ec78f 2018-03-11 stsp
304 9dce68ed 2018-03-10 stsp /* Stamp work tree with format file. */
305 1451e70d 2018-03-10 stsp if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
306 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
307 1451e70d 2018-03-10 stsp goto done;
308 1451e70d 2018-03-10 stsp }
309 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
310 99724ed4 2018-03-10 stsp if (err)
311 1451e70d 2018-03-10 stsp goto done;
312 1451e70d 2018-03-10 stsp
313 86c3caaf 2018-03-09 stsp done:
314 65596e15 2018-12-24 stsp free(commit_id);
315 7ac97322 2018-03-11 stsp free(path_got);
316 1451e70d 2018-03-10 stsp free(formatstr);
317 08d425ea 2018-12-24 stsp free(refstr);
318 0bb8a95e 2018-03-12 stsp free(absprefix);
319 65596e15 2018-12-24 stsp free(basestr);
320 ec22038e 2019-03-10 stsp free(uuidstr);
321 86c3caaf 2018-03-09 stsp return err;
322 86c3caaf 2018-03-09 stsp }
323 86c3caaf 2018-03-09 stsp
324 247140b2 2019-02-05 stsp static const struct got_error *
325 247140b2 2019-02-05 stsp open_worktree(struct got_worktree **worktree, const char *path)
326 86c3caaf 2018-03-09 stsp {
327 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
328 7ac97322 2018-03-11 stsp char *path_got;
329 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
330 c442a90d 2019-03-10 stsp char *uuidstr = NULL;
331 056e7441 2018-03-11 stsp char *path_lock = NULL;
332 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
333 271d2a38 2018-12-25 stsp char *head_ref_str = NULL;
334 6d9d28c3 2018-03-11 stsp int version, fd = -1;
335 6d9d28c3 2018-03-11 stsp const char *errstr;
336 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
337 c442a90d 2019-03-10 stsp uint32_t uuid_status;
338 6d9d28c3 2018-03-11 stsp
339 6d9d28c3 2018-03-11 stsp *worktree = NULL;
340 6d9d28c3 2018-03-11 stsp
341 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
342 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
343 7ac97322 2018-03-11 stsp path_got = NULL;
344 6d9d28c3 2018-03-11 stsp goto done;
345 6d9d28c3 2018-03-11 stsp }
346 6d9d28c3 2018-03-11 stsp
347 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
348 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
349 056e7441 2018-03-11 stsp path_lock = NULL;
350 6d9d28c3 2018-03-11 stsp goto done;
351 6d9d28c3 2018-03-11 stsp }
352 6d9d28c3 2018-03-11 stsp
353 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
354 6d9d28c3 2018-03-11 stsp if (fd == -1) {
355 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
356 73a5ef67 2018-03-11 stsp : got_error_from_errno());
357 6d9d28c3 2018-03-11 stsp goto done;
358 6d9d28c3 2018-03-11 stsp }
359 6d9d28c3 2018-03-11 stsp
360 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
361 6d9d28c3 2018-03-11 stsp if (err)
362 6d9d28c3 2018-03-11 stsp goto done;
363 6d9d28c3 2018-03-11 stsp
364 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
365 6d9d28c3 2018-03-11 stsp if (errstr) {
366 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_META);
367 6d9d28c3 2018-03-11 stsp goto done;
368 6d9d28c3 2018-03-11 stsp }
369 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
370 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
371 6d9d28c3 2018-03-11 stsp goto done;
372 6d9d28c3 2018-03-11 stsp }
373 6d9d28c3 2018-03-11 stsp
374 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
375 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
376 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
377 6d9d28c3 2018-03-11 stsp goto done;
378 6d9d28c3 2018-03-11 stsp }
379 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
380 6d9d28c3 2018-03-11 stsp
381 0647c563 2019-03-11 stsp (*worktree)->root_path = strdup(path);
382 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
383 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
384 6d9d28c3 2018-03-11 stsp goto done;
385 6d9d28c3 2018-03-11 stsp }
386 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
387 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
388 6d9d28c3 2018-03-11 stsp if (err)
389 6d9d28c3 2018-03-11 stsp goto done;
390 eaccb85f 2018-12-25 stsp
391 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
392 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
393 93a30277 2018-12-24 stsp if (err)
394 93a30277 2018-12-24 stsp goto done;
395 93a30277 2018-12-24 stsp
396 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
397 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
398 c442a90d 2019-03-10 stsp if (err)
399 c442a90d 2019-03-10 stsp goto done;
400 c442a90d 2019-03-10 stsp
401 c442a90d 2019-03-10 stsp err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
402 eaccb85f 2018-12-25 stsp if (err)
403 c442a90d 2019-03-10 stsp goto done;
404 c442a90d 2019-03-10 stsp uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
405 c442a90d 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
406 c442a90d 2019-03-10 stsp err = got_error_uuid(uuid_status);
407 eaccb85f 2018-12-25 stsp goto done;
408 c442a90d 2019-03-10 stsp }
409 eaccb85f 2018-12-25 stsp
410 eaccb85f 2018-12-25 stsp err = got_repo_open(&repo, (*worktree)->repo_path);
411 eaccb85f 2018-12-25 stsp if (err)
412 eaccb85f 2018-12-25 stsp goto done;
413 eaccb85f 2018-12-25 stsp
414 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
415 eaccb85f 2018-12-25 stsp base_commit_id_str);
416 f5baf295 2018-03-11 stsp if (err)
417 f5baf295 2018-03-11 stsp goto done;
418 f5baf295 2018-03-11 stsp
419 271d2a38 2018-12-25 stsp err = read_meta_file(&head_ref_str, path_got, GOT_WORKTREE_HEAD_REF);
420 f5baf295 2018-03-11 stsp if (err)
421 6d9d28c3 2018-03-11 stsp goto done;
422 6d9d28c3 2018-03-11 stsp
423 271d2a38 2018-12-25 stsp err = got_ref_open(&(*worktree)->head_ref, repo, head_ref_str);
424 6d9d28c3 2018-03-11 stsp done:
425 eaccb85f 2018-12-25 stsp if (repo)
426 eaccb85f 2018-12-25 stsp got_repo_close(repo);
427 7ac97322 2018-03-11 stsp free(path_got);
428 056e7441 2018-03-11 stsp free(path_lock);
429 271d2a38 2018-12-25 stsp free(head_ref_str);
430 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
431 c442a90d 2019-03-10 stsp free(uuidstr);
432 bd165944 2019-03-10 stsp free(formatstr);
433 6d9d28c3 2018-03-11 stsp if (err) {
434 6d9d28c3 2018-03-11 stsp if (fd != -1)
435 6d9d28c3 2018-03-11 stsp close(fd);
436 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
437 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
438 6d9d28c3 2018-03-11 stsp *worktree = NULL;
439 6d9d28c3 2018-03-11 stsp } else
440 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
441 6d9d28c3 2018-03-11 stsp
442 6d9d28c3 2018-03-11 stsp return err;
443 86c3caaf 2018-03-09 stsp }
444 247140b2 2019-02-05 stsp
445 247140b2 2019-02-05 stsp const struct got_error *
446 247140b2 2019-02-05 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
447 247140b2 2019-02-05 stsp {
448 247140b2 2019-02-05 stsp const struct got_error *err = NULL;
449 86c3caaf 2018-03-09 stsp
450 247140b2 2019-02-05 stsp do {
451 247140b2 2019-02-05 stsp err = open_worktree(worktree, path);
452 f02eaa22 2019-03-11 stsp if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT))
453 247140b2 2019-02-05 stsp return err;
454 247140b2 2019-02-05 stsp if (*worktree)
455 247140b2 2019-02-05 stsp return NULL;
456 247140b2 2019-02-05 stsp path = dirname(path);
457 d1542a27 2019-02-05 stsp if (path == NULL)
458 d1542a27 2019-02-05 stsp return got_error_from_errno();
459 d1542a27 2019-02-05 stsp } while (!((path[0] == '.' || path[0] == '/') && path[1] == '\0'));
460 247140b2 2019-02-05 stsp
461 247140b2 2019-02-05 stsp return got_error(GOT_ERR_NOT_WORKTREE);
462 247140b2 2019-02-05 stsp }
463 247140b2 2019-02-05 stsp
464 3a6ce05a 2019-02-11 stsp const struct got_error *
465 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
466 86c3caaf 2018-03-09 stsp {
467 3a6ce05a 2019-02-11 stsp const struct got_error *err = NULL;
468 c88eb298 2018-03-11 stsp free(worktree->root_path);
469 cde76477 2018-03-11 stsp free(worktree->repo_path);
470 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
471 eaccb85f 2018-12-25 stsp free(worktree->base_commit_id);
472 271d2a38 2018-12-25 stsp if (worktree->head_ref)
473 271d2a38 2018-12-25 stsp got_ref_close(worktree->head_ref);
474 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
475 3a6ce05a 2019-02-11 stsp if (close(worktree->lockfd) != 0)
476 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
477 6d9d28c3 2018-03-11 stsp free(worktree);
478 3a6ce05a 2019-02-11 stsp return err;
479 86c3caaf 2018-03-09 stsp }
480 86c3caaf 2018-03-09 stsp
481 2fbdb5ae 2018-12-29 stsp const char *
482 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(struct got_worktree *worktree)
483 c7f4312f 2019-02-05 stsp {
484 c7f4312f 2019-02-05 stsp return worktree->root_path;
485 c7f4312f 2019-02-05 stsp }
486 c7f4312f 2019-02-05 stsp
487 c7f4312f 2019-02-05 stsp const char *
488 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
489 86c3caaf 2018-03-09 stsp {
490 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
491 49520a32 2018-12-29 stsp }
492 49520a32 2018-12-29 stsp
493 49520a32 2018-12-29 stsp const char *
494 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
495 49520a32 2018-12-29 stsp {
496 f609be2e 2018-12-29 stsp return worktree->path_prefix;
497 e5dc7198 2018-12-29 stsp }
498 e5dc7198 2018-12-29 stsp
499 e5dc7198 2018-12-29 stsp const struct got_error *
500 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
501 e5dc7198 2018-12-29 stsp const char *path_prefix)
502 e5dc7198 2018-12-29 stsp {
503 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
504 e5dc7198 2018-12-29 stsp
505 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
506 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
507 e5dc7198 2018-12-29 stsp return got_error_from_errno();
508 e5dc7198 2018-12-29 stsp }
509 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
510 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
511 e5dc7198 2018-12-29 stsp free(absprefix);
512 e5dc7198 2018-12-29 stsp return NULL;
513 86c3caaf 2018-03-09 stsp }
514 86c3caaf 2018-03-09 stsp
515 bc70eb79 2019-05-09 stsp const char *
516 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
517 86c3caaf 2018-03-09 stsp {
518 bc70eb79 2019-05-09 stsp return got_ref_get_name(worktree->head_ref);
519 be7061eb 2018-12-30 stsp }
520 be7061eb 2018-12-30 stsp
521 be7061eb 2018-12-30 stsp struct got_reference *
522 be7061eb 2018-12-30 stsp got_worktree_get_head_ref(struct got_worktree *worktree)
523 be7061eb 2018-12-30 stsp {
524 be7061eb 2018-12-30 stsp return got_ref_dup(worktree->head_ref);
525 507dc3bb 2018-12-29 stsp }
526 507dc3bb 2018-12-29 stsp
527 b72f483a 2019-02-05 stsp struct got_object_id *
528 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
529 507dc3bb 2018-12-29 stsp {
530 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
531 86c3caaf 2018-03-09 stsp }
532 86c3caaf 2018-03-09 stsp
533 507dc3bb 2018-12-29 stsp const struct got_error *
534 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
535 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
536 507dc3bb 2018-12-29 stsp {
537 507dc3bb 2018-12-29 stsp const struct got_error *err;
538 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
539 507dc3bb 2018-12-29 stsp char *id_str = NULL;
540 507dc3bb 2018-12-29 stsp char *path_got = NULL;
541 507dc3bb 2018-12-29 stsp
542 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
543 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
544 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
545 507dc3bb 2018-12-29 stsp path_got = NULL;
546 507dc3bb 2018-12-29 stsp goto done;
547 507dc3bb 2018-12-29 stsp }
548 507dc3bb 2018-12-29 stsp
549 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
550 507dc3bb 2018-12-29 stsp if (err)
551 507dc3bb 2018-12-29 stsp return err;
552 507dc3bb 2018-12-29 stsp
553 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
554 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
555 507dc3bb 2018-12-29 stsp goto done;
556 507dc3bb 2018-12-29 stsp }
557 507dc3bb 2018-12-29 stsp
558 507dc3bb 2018-12-29 stsp /* Record our base commit. */
559 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
560 507dc3bb 2018-12-29 stsp if (err)
561 507dc3bb 2018-12-29 stsp goto done;
562 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
563 507dc3bb 2018-12-29 stsp if (err)
564 507dc3bb 2018-12-29 stsp goto done;
565 507dc3bb 2018-12-29 stsp
566 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
567 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
568 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
569 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
570 507dc3bb 2018-12-29 stsp goto done;
571 507dc3bb 2018-12-29 stsp }
572 507dc3bb 2018-12-29 stsp done:
573 507dc3bb 2018-12-29 stsp if (obj)
574 507dc3bb 2018-12-29 stsp got_object_close(obj);
575 507dc3bb 2018-12-29 stsp free(id_str);
576 507dc3bb 2018-12-29 stsp free(path_got);
577 507dc3bb 2018-12-29 stsp return err;
578 507dc3bb 2018-12-29 stsp }
579 507dc3bb 2018-12-29 stsp
580 9d31a1d8 2018-03-11 stsp static const struct got_error *
581 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
582 86c3caaf 2018-03-09 stsp {
583 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
584 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
585 9d31a1d8 2018-03-11 stsp : got_error_from_errno());
586 86c3caaf 2018-03-09 stsp return NULL;
587 21908da4 2019-01-13 stsp }
588 21908da4 2019-01-13 stsp
589 21908da4 2019-01-13 stsp static const struct got_error *
590 4a1ddfc2 2019-01-12 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
591 4a1ddfc2 2019-01-12 stsp {
592 4a1ddfc2 2019-01-12 stsp const struct got_error *err = NULL;
593 4a1ddfc2 2019-01-12 stsp char *abspath;
594 4a1ddfc2 2019-01-12 stsp
595 4a1ddfc2 2019-01-12 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
596 4a1ddfc2 2019-01-12 stsp return got_error_from_errno();
597 4a1ddfc2 2019-01-12 stsp
598 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(abspath);
599 ddcd8544 2019-03-11 stsp if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
600 ddcd8544 2019-03-11 stsp struct stat sb;
601 ddcd8544 2019-03-11 stsp err = NULL;
602 ddcd8544 2019-03-11 stsp if (lstat(abspath, &sb) == -1) {
603 ddcd8544 2019-03-11 stsp err = got_error_from_errno();
604 ddcd8544 2019-03-11 stsp } else if (!S_ISDIR(sb.st_mode)) {
605 ddcd8544 2019-03-11 stsp /* TODO directory is obstructed; do something */
606 ddcd8544 2019-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
607 ddcd8544 2019-03-11 stsp }
608 ddcd8544 2019-03-11 stsp }
609 4a1ddfc2 2019-01-12 stsp free(abspath);
610 68c76935 2019-02-19 stsp return err;
611 68c76935 2019-02-19 stsp }
612 68c76935 2019-02-19 stsp
613 68c76935 2019-02-19 stsp static const struct got_error *
614 68c76935 2019-02-19 stsp check_file_contents_equal(int *same, FILE *f1, FILE *f2)
615 68c76935 2019-02-19 stsp {
616 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
617 68c76935 2019-02-19 stsp uint8_t fbuf1[8192];
618 68c76935 2019-02-19 stsp uint8_t fbuf2[8192];
619 68c76935 2019-02-19 stsp size_t flen1 = 0, flen2 = 0;
620 68c76935 2019-02-19 stsp
621 68c76935 2019-02-19 stsp *same = 1;
622 68c76935 2019-02-19 stsp
623 68c76935 2019-02-19 stsp while (1) {
624 68c76935 2019-02-19 stsp flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
625 68c76935 2019-02-19 stsp if (flen1 == 0 && ferror(f1)) {
626 68c76935 2019-02-19 stsp err = got_error_from_errno();
627 68c76935 2019-02-19 stsp break;
628 68c76935 2019-02-19 stsp }
629 68c76935 2019-02-19 stsp flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
630 68c76935 2019-02-19 stsp if (flen2 == 0 && ferror(f2)) {
631 68c76935 2019-02-19 stsp err = got_error_from_errno();
632 68c76935 2019-02-19 stsp break;
633 68c76935 2019-02-19 stsp }
634 68c76935 2019-02-19 stsp if (flen1 == 0) {
635 68c76935 2019-02-19 stsp if (flen2 != 0)
636 68c76935 2019-02-19 stsp *same = 0;
637 68c76935 2019-02-19 stsp break;
638 68c76935 2019-02-19 stsp } else if (flen2 == 0) {
639 68c76935 2019-02-19 stsp if (flen1 != 0)
640 68c76935 2019-02-19 stsp *same = 0;
641 68c76935 2019-02-19 stsp break;
642 68c76935 2019-02-19 stsp } else if (flen1 == flen2) {
643 68c76935 2019-02-19 stsp if (memcmp(fbuf1, fbuf2, flen2) != 0) {
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 } else {
648 68c76935 2019-02-19 stsp *same = 0;
649 68c76935 2019-02-19 stsp break;
650 68c76935 2019-02-19 stsp }
651 68c76935 2019-02-19 stsp }
652 68c76935 2019-02-19 stsp
653 68c76935 2019-02-19 stsp return err;
654 68c76935 2019-02-19 stsp }
655 68c76935 2019-02-19 stsp
656 68c76935 2019-02-19 stsp static const struct got_error *
657 68c76935 2019-02-19 stsp check_files_equal(int *same, const char *f1_path, const char *f2_path)
658 68c76935 2019-02-19 stsp {
659 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
660 68c76935 2019-02-19 stsp struct stat sb;
661 68c76935 2019-02-19 stsp size_t size1, size2;
662 68c76935 2019-02-19 stsp FILE *f1 = NULL, *f2 = NULL;
663 68c76935 2019-02-19 stsp
664 68c76935 2019-02-19 stsp *same = 1;
665 68c76935 2019-02-19 stsp
666 68c76935 2019-02-19 stsp if (lstat(f1_path, &sb) != 0) {
667 68c76935 2019-02-19 stsp err = got_error_from_errno();
668 68c76935 2019-02-19 stsp goto done;
669 68c76935 2019-02-19 stsp }
670 68c76935 2019-02-19 stsp size1 = sb.st_size;
671 68c76935 2019-02-19 stsp
672 68c76935 2019-02-19 stsp if (lstat(f2_path, &sb) != 0) {
673 68c76935 2019-02-19 stsp err = got_error_from_errno();
674 68c76935 2019-02-19 stsp goto done;
675 68c76935 2019-02-19 stsp }
676 68c76935 2019-02-19 stsp size2 = sb.st_size;
677 68c76935 2019-02-19 stsp
678 68c76935 2019-02-19 stsp if (size1 != size2) {
679 68c76935 2019-02-19 stsp *same = 0;
680 68c76935 2019-02-19 stsp return NULL;
681 68c76935 2019-02-19 stsp }
682 68c76935 2019-02-19 stsp
683 68c76935 2019-02-19 stsp f1 = fopen(f1_path, "r");
684 68c76935 2019-02-19 stsp if (f1 == NULL)
685 68c76935 2019-02-19 stsp return got_error_from_errno();
686 68c76935 2019-02-19 stsp
687 68c76935 2019-02-19 stsp f2 = fopen(f2_path, "r");
688 68c76935 2019-02-19 stsp if (f2 == NULL) {
689 68c76935 2019-02-19 stsp err = got_error_from_errno();
690 68c76935 2019-02-19 stsp goto done;
691 68c76935 2019-02-19 stsp }
692 68c76935 2019-02-19 stsp
693 68c76935 2019-02-19 stsp err = check_file_contents_equal(same, f1, f2);
694 68c76935 2019-02-19 stsp done:
695 68c76935 2019-02-19 stsp if (f1 && fclose(f1) != 0 && err == NULL)
696 68c76935 2019-02-19 stsp err = got_error_from_errno();
697 68c76935 2019-02-19 stsp if (f2 && fclose(f2) != 0 && err == NULL)
698 68c76935 2019-02-19 stsp err = got_error_from_errno();
699 68c76935 2019-02-19 stsp
700 6353ad76 2019-02-08 stsp return err;
701 6353ad76 2019-02-08 stsp }
702 6353ad76 2019-02-08 stsp
703 6353ad76 2019-02-08 stsp /*
704 6353ad76 2019-02-08 stsp * Perform a 3-way merge where the file's version in the file index (blob2)
705 6353ad76 2019-02-08 stsp * acts as the common ancestor, the incoming blob (blob1) acts as the first
706 6353ad76 2019-02-08 stsp * derived version, and the file on disk acts as the second derived version.
707 6353ad76 2019-02-08 stsp */
708 6353ad76 2019-02-08 stsp static const struct got_error *
709 6353ad76 2019-02-08 stsp merge_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
710 6353ad76 2019-02-08 stsp struct got_fileindex_entry *ie, const char *ondisk_path, const char *path,
711 b8f41171 2019-02-10 stsp uint16_t te_mode, uint16_t st_mode, struct got_blob_object *blob1,
712 b8f41171 2019-02-10 stsp struct got_repository *repo,
713 6353ad76 2019-02-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
714 6353ad76 2019-02-08 stsp {
715 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
716 6353ad76 2019-02-08 stsp int merged_fd = -1;
717 6353ad76 2019-02-08 stsp struct got_blob_object *blob2 = NULL;
718 6353ad76 2019-02-08 stsp FILE *f1 = NULL, *f2 = NULL;
719 6353ad76 2019-02-08 stsp char *blob1_path = NULL, *blob2_path = NULL;
720 af54ae4a 2019-02-19 stsp char *merged_path = NULL, *base_path = NULL;
721 6353ad76 2019-02-08 stsp char *id_str = NULL;
722 6353ad76 2019-02-08 stsp char *label1 = NULL;
723 68c76935 2019-02-19 stsp int overlapcnt = 0, update_timestamps = 0;
724 af54ae4a 2019-02-19 stsp char *parent;
725 6353ad76 2019-02-08 stsp
726 af54ae4a 2019-02-19 stsp parent = dirname(ondisk_path);
727 af54ae4a 2019-02-19 stsp if (parent == NULL)
728 af54ae4a 2019-02-19 stsp return got_error_from_errno();
729 af54ae4a 2019-02-19 stsp
730 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merged", parent) == -1)
731 af54ae4a 2019-02-19 stsp return got_error_from_errno();
732 af54ae4a 2019-02-19 stsp
733 af54ae4a 2019-02-19 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
734 6353ad76 2019-02-08 stsp if (err)
735 af54ae4a 2019-02-19 stsp goto done;
736 af54ae4a 2019-02-19 stsp
737 af54ae4a 2019-02-19 stsp free(base_path);
738 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob1", parent) == -1) {
739 af54ae4a 2019-02-19 stsp err = got_error_from_errno();
740 af54ae4a 2019-02-19 stsp base_path = NULL;
741 af54ae4a 2019-02-19 stsp goto done;
742 af54ae4a 2019-02-19 stsp }
743 af54ae4a 2019-02-19 stsp
744 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob1_path, &f1, base_path);
745 6353ad76 2019-02-08 stsp if (err)
746 6353ad76 2019-02-08 stsp goto done;
747 6353ad76 2019-02-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, f1, blob1);
748 6353ad76 2019-02-08 stsp if (err)
749 6353ad76 2019-02-08 stsp goto done;
750 6353ad76 2019-02-08 stsp
751 af54ae4a 2019-02-19 stsp free(base_path);
752 af54ae4a 2019-02-19 stsp if (asprintf(&base_path, "%s/got-merge-blob2", parent) == -1) {
753 af54ae4a 2019-02-19 stsp err = got_error_from_errno();
754 af54ae4a 2019-02-19 stsp base_path = NULL;
755 af54ae4a 2019-02-19 stsp goto done;
756 af54ae4a 2019-02-19 stsp }
757 af54ae4a 2019-02-19 stsp
758 af54ae4a 2019-02-19 stsp err = got_opentemp_named(&blob2_path, &f2, base_path);
759 6353ad76 2019-02-08 stsp if (err)
760 6353ad76 2019-02-08 stsp goto done;
761 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_blob(ie)) {
762 1430b4e0 2019-03-27 stsp struct got_object_id id2;
763 1430b4e0 2019-03-27 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
764 1430b4e0 2019-03-27 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
765 1430b4e0 2019-03-27 stsp if (err)
766 1430b4e0 2019-03-27 stsp goto done;
767 1430b4e0 2019-03-27 stsp err = got_object_blob_dump_to_file(NULL, NULL, f2, blob2);
768 1430b4e0 2019-03-27 stsp if (err)
769 1430b4e0 2019-03-27 stsp goto done;
770 1430b4e0 2019-03-27 stsp } else {
771 1430b4e0 2019-03-27 stsp /*
772 1430b4e0 2019-03-27 stsp * If the file has no blob, this is an "add vs add" conflict,
773 1430b4e0 2019-03-27 stsp * and we simply use an empty ancestor file to make both files
774 1430b4e0 2019-03-27 stsp * appear in the merged result in their entirety.
775 1430b4e0 2019-03-27 stsp */
776 1430b4e0 2019-03-27 stsp }
777 6353ad76 2019-02-08 stsp
778 6353ad76 2019-02-08 stsp err = got_object_id_str(&id_str, worktree->base_commit_id);
779 6353ad76 2019-02-08 stsp if (err)
780 6353ad76 2019-02-08 stsp goto done;
781 6353ad76 2019-02-08 stsp if (asprintf(&label1, "commit %s", id_str) == -1) {
782 6353ad76 2019-02-08 stsp err = got_error_from_errno();
783 6353ad76 2019-02-08 stsp goto done;
784 6353ad76 2019-02-08 stsp }
785 6353ad76 2019-02-08 stsp
786 6353ad76 2019-02-08 stsp err = got_merge_diff3(&overlapcnt, merged_fd, blob1_path,
787 6353ad76 2019-02-08 stsp blob2_path, ondisk_path, label1, path);
788 6353ad76 2019-02-08 stsp if (err)
789 6353ad76 2019-02-08 stsp goto done;
790 6353ad76 2019-02-08 stsp
791 6353ad76 2019-02-08 stsp (*progress_cb)(progress_arg,
792 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
793 6353ad76 2019-02-08 stsp
794 6353ad76 2019-02-08 stsp
795 816dc654 2019-02-16 stsp if (fsync(merged_fd) != 0) {
796 816dc654 2019-02-16 stsp err = got_error_from_errno();
797 816dc654 2019-02-16 stsp goto done;
798 68c76935 2019-02-19 stsp }
799 68c76935 2019-02-19 stsp
800 68c76935 2019-02-19 stsp /* Check if a clean merge has subsumed all local changes. */
801 68c76935 2019-02-19 stsp if (overlapcnt == 0) {
802 68c76935 2019-02-19 stsp err = check_files_equal(&update_timestamps, blob1_path,
803 68c76935 2019-02-19 stsp merged_path);
804 68c76935 2019-02-19 stsp if (err)
805 68c76935 2019-02-19 stsp goto done;
806 816dc654 2019-02-16 stsp }
807 6353ad76 2019-02-08 stsp
808 70a0c8ec 2019-02-20 stsp if (chmod(merged_path, st_mode) != 0) {
809 70a0c8ec 2019-02-20 stsp err = got_error_from_errno();
810 70a0c8ec 2019-02-20 stsp goto done;
811 70a0c8ec 2019-02-20 stsp }
812 70a0c8ec 2019-02-20 stsp
813 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
814 6353ad76 2019-02-08 stsp err = got_error_from_errno();
815 2a57020b 2019-02-20 stsp unlink(merged_path);
816 6353ad76 2019-02-08 stsp goto done;
817 6353ad76 2019-02-08 stsp }
818 6353ad76 2019-02-08 stsp
819 02c07007 2019-02-10 stsp /*
820 02c07007 2019-02-10 stsp * Do not update timestamps of already modified files. Otherwise,
821 65ad4e61 2019-02-20 stsp * a future status walk would treat them as unmodified files again.
822 02c07007 2019-02-10 stsp */
823 6353ad76 2019-02-08 stsp err = got_fileindex_entry_update(ie, ondisk_path,
824 68c76935 2019-02-19 stsp blob1->id.sha1, worktree->base_commit_id->sha1, update_timestamps);
825 6353ad76 2019-02-08 stsp done:
826 3a6ce05a 2019-02-11 stsp if (merged_fd != -1 && close(merged_fd) != 0 && err == NULL)
827 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
828 3a6ce05a 2019-02-11 stsp if (f1 && fclose(f1) != 0 && err == NULL)
829 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
830 3a6ce05a 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
831 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
832 6353ad76 2019-02-08 stsp if (blob2)
833 6353ad76 2019-02-08 stsp got_object_blob_close(blob2);
834 6353ad76 2019-02-08 stsp free(merged_path);
835 af54ae4a 2019-02-19 stsp free(base_path);
836 6353ad76 2019-02-08 stsp if (blob1_path) {
837 6353ad76 2019-02-08 stsp unlink(blob1_path);
838 6353ad76 2019-02-08 stsp free(blob1_path);
839 6353ad76 2019-02-08 stsp }
840 6353ad76 2019-02-08 stsp if (blob2_path) {
841 6353ad76 2019-02-08 stsp unlink(blob2_path);
842 6353ad76 2019-02-08 stsp free(blob2_path);
843 6353ad76 2019-02-08 stsp }
844 6353ad76 2019-02-08 stsp free(id_str);
845 6353ad76 2019-02-08 stsp free(label1);
846 4a1ddfc2 2019-01-12 stsp return err;
847 4a1ddfc2 2019-01-12 stsp }
848 4a1ddfc2 2019-01-12 stsp
849 4a1ddfc2 2019-01-12 stsp static const struct got_error *
850 13d9040b 2019-03-27 stsp update_blob_fileindex_entry(struct got_worktree *worktree,
851 13d9040b 2019-03-27 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
852 13d9040b 2019-03-27 stsp const char *ondisk_path, const char *path, struct got_blob_object *blob,
853 13d9040b 2019-03-27 stsp int update_timestamps)
854 13d9040b 2019-03-27 stsp {
855 13d9040b 2019-03-27 stsp const struct got_error *err = NULL;
856 13d9040b 2019-03-27 stsp
857 13d9040b 2019-03-27 stsp if (ie == NULL)
858 13d9040b 2019-03-27 stsp ie = got_fileindex_entry_get(fileindex, path);
859 13d9040b 2019-03-27 stsp if (ie)
860 13d9040b 2019-03-27 stsp err = got_fileindex_entry_update(ie, ondisk_path,
861 13d9040b 2019-03-27 stsp blob->id.sha1, worktree->base_commit_id->sha1,
862 13d9040b 2019-03-27 stsp update_timestamps);
863 13d9040b 2019-03-27 stsp else {
864 13d9040b 2019-03-27 stsp struct got_fileindex_entry *new_ie;
865 13d9040b 2019-03-27 stsp err = got_fileindex_entry_alloc(&new_ie, ondisk_path,
866 13d9040b 2019-03-27 stsp path, blob->id.sha1, worktree->base_commit_id->sha1);
867 13d9040b 2019-03-27 stsp if (!err)
868 13d9040b 2019-03-27 stsp err = got_fileindex_entry_add(fileindex, new_ie);
869 13d9040b 2019-03-27 stsp }
870 13d9040b 2019-03-27 stsp return err;
871 13d9040b 2019-03-27 stsp }
872 13d9040b 2019-03-27 stsp
873 13d9040b 2019-03-27 stsp static const struct got_error *
874 13d9040b 2019-03-27 stsp install_blob(struct got_worktree *worktree, const char *ondisk_path,
875 13d9040b 2019-03-27 stsp const char *path, uint16_t te_mode, uint16_t st_mode,
876 13d9040b 2019-03-27 stsp struct got_blob_object *blob, int restoring_missing_file,
877 a129376b 2019-03-28 stsp int reverting_versioned_file, struct got_repository *repo,
878 a129376b 2019-03-28 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
879 9d31a1d8 2018-03-11 stsp {
880 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
881 507dc3bb 2018-12-29 stsp int fd = -1;
882 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
883 507dc3bb 2018-12-29 stsp int update = 0;
884 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
885 9d31a1d8 2018-03-11 stsp
886 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
887 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
888 9d31a1d8 2018-03-11 stsp if (fd == -1) {
889 21908da4 2019-01-13 stsp if (errno == ENOENT) {
890 21908da4 2019-01-13 stsp char *parent = dirname(path);
891 21908da4 2019-01-13 stsp if (parent == NULL)
892 21908da4 2019-01-13 stsp return got_error_from_errno();
893 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
894 21908da4 2019-01-13 stsp if (err)
895 21908da4 2019-01-13 stsp return err;
896 21908da4 2019-01-13 stsp fd = open(ondisk_path,
897 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
898 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
899 21908da4 2019-01-13 stsp if (fd == -1)
900 21908da4 2019-01-13 stsp return got_error_from_errno();
901 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
902 b8f41171 2019-02-10 stsp if (!S_ISREG(st_mode)) {
903 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
904 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_FILE_OBSTRUCTED);
905 507dc3bb 2018-12-29 stsp goto done;
906 d70b8e30 2018-12-27 stsp } else {
907 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
908 507dc3bb 2018-12-29 stsp ondisk_path);
909 507dc3bb 2018-12-29 stsp if (err)
910 507dc3bb 2018-12-29 stsp goto done;
911 507dc3bb 2018-12-29 stsp update = 1;
912 9d31a1d8 2018-03-11 stsp }
913 507dc3bb 2018-12-29 stsp } else
914 7e7c1e4c 2019-01-12 stsp return got_error_from_errno();
915 9d31a1d8 2018-03-11 stsp }
916 9d31a1d8 2018-03-11 stsp
917 a378724f 2019-02-10 stsp if (restoring_missing_file)
918 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_MISSING, path);
919 a129376b 2019-03-28 stsp else if (reverting_versioned_file)
920 a129376b 2019-03-28 stsp (*progress_cb)(progress_arg, GOT_STATUS_REVERT, path);
921 a378724f 2019-02-10 stsp else
922 a378724f 2019-02-10 stsp (*progress_cb)(progress_arg,
923 a378724f 2019-02-10 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
924 d7b62c98 2018-12-27 stsp
925 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
926 9d31a1d8 2018-03-11 stsp do {
927 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
928 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
929 9d31a1d8 2018-03-11 stsp if (err)
930 9d31a1d8 2018-03-11 stsp break;
931 9d31a1d8 2018-03-11 stsp if (len > 0) {
932 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
933 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
934 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
935 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
936 b87c6f83 2018-12-24 stsp goto done;
937 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
938 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
939 b87c6f83 2018-12-24 stsp goto done;
940 9d31a1d8 2018-03-11 stsp }
941 61d6eaa3 2018-12-24 stsp hdrlen = 0;
942 9d31a1d8 2018-03-11 stsp }
943 9d31a1d8 2018-03-11 stsp } while (len != 0);
944 9d31a1d8 2018-03-11 stsp
945 816dc654 2019-02-16 stsp if (fsync(fd) != 0) {
946 816dc654 2019-02-16 stsp err = got_error_from_errno();
947 816dc654 2019-02-16 stsp goto done;
948 816dc654 2019-02-16 stsp }
949 9d31a1d8 2018-03-11 stsp
950 507dc3bb 2018-12-29 stsp if (update) {
951 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
952 68ed9ba5 2019-02-10 stsp err = got_error_from_errno();
953 2a57020b 2019-02-20 stsp unlink(tmppath);
954 68ed9ba5 2019-02-10 stsp goto done;
955 68ed9ba5 2019-02-10 stsp }
956 68ed9ba5 2019-02-10 stsp }
957 ba8a0d4d 2019-02-10 stsp
958 b8f41171 2019-02-10 stsp if (te_mode & S_IXUSR) {
959 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode | S_IXUSR) == -1) {
960 507dc3bb 2018-12-29 stsp err = got_error_from_errno();
961 507dc3bb 2018-12-29 stsp goto done;
962 507dc3bb 2018-12-29 stsp }
963 ba8a0d4d 2019-02-10 stsp } else {
964 b8f41171 2019-02-10 stsp if (chmod(ondisk_path, st_mode & ~S_IXUSR) == -1) {
965 68ed9ba5 2019-02-10 stsp err = got_error_from_errno();
966 68ed9ba5 2019-02-10 stsp goto done;
967 68ed9ba5 2019-02-10 stsp }
968 507dc3bb 2018-12-29 stsp }
969 507dc3bb 2018-12-29 stsp
970 9d31a1d8 2018-03-11 stsp done:
971 3a6ce05a 2019-02-11 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
972 3a6ce05a 2019-02-11 stsp err = got_error_from_errno();
973 507dc3bb 2018-12-29 stsp free(tmppath);
974 6353ad76 2019-02-08 stsp return err;
975 6353ad76 2019-02-08 stsp }
976 6353ad76 2019-02-08 stsp
977 7154f6ce 2019-03-27 stsp /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
978 6353ad76 2019-02-08 stsp static const struct got_error *
979 7154f6ce 2019-03-27 stsp get_modified_file_content_status(unsigned char *status, FILE *f)
980 7154f6ce 2019-03-27 stsp {
981 7154f6ce 2019-03-27 stsp const struct got_error *err = NULL;
982 7154f6ce 2019-03-27 stsp const char *markers[3] = {
983 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_BEGIN,
984 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_SEP,
985 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_END
986 7154f6ce 2019-03-27 stsp };
987 7154f6ce 2019-03-27 stsp int i = 0;
988 7154f6ce 2019-03-27 stsp char *line;
989 7154f6ce 2019-03-27 stsp size_t len;
990 7154f6ce 2019-03-27 stsp const char delim[3] = {'\0', '\0', '\0'};
991 7154f6ce 2019-03-27 stsp
992 7154f6ce 2019-03-27 stsp while (*status == GOT_STATUS_MODIFY) {
993 7154f6ce 2019-03-27 stsp line = fparseln(f, &len, NULL, delim, 0);
994 7154f6ce 2019-03-27 stsp if (line == NULL) {
995 7154f6ce 2019-03-27 stsp if (feof(f))
996 7154f6ce 2019-03-27 stsp break;
997 7154f6ce 2019-03-27 stsp err = got_ferror(f, GOT_ERR_IO);
998 7154f6ce 2019-03-27 stsp break;
999 7154f6ce 2019-03-27 stsp }
1000 7154f6ce 2019-03-27 stsp
1001 7154f6ce 2019-03-27 stsp if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1002 7154f6ce 2019-03-27 stsp if (markers[i] == GOT_DIFF_CONFLICT_MARKER_END)
1003 7154f6ce 2019-03-27 stsp *status = GOT_STATUS_CONFLICT;
1004 7154f6ce 2019-03-27 stsp else
1005 7154f6ce 2019-03-27 stsp i++;
1006 7154f6ce 2019-03-27 stsp }
1007 7154f6ce 2019-03-27 stsp }
1008 7154f6ce 2019-03-27 stsp
1009 7154f6ce 2019-03-27 stsp return err;
1010 7154f6ce 2019-03-27 stsp }
1011 7154f6ce 2019-03-27 stsp
1012 7154f6ce 2019-03-27 stsp static const struct got_error *
1013 b8f41171 2019-02-10 stsp get_file_status(unsigned char *status, struct stat *sb,
1014 b8f41171 2019-02-10 stsp struct got_fileindex_entry *ie, const char *abspath,
1015 b8f41171 2019-02-10 stsp struct got_repository *repo)
1016 6353ad76 2019-02-08 stsp {
1017 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
1018 6353ad76 2019-02-08 stsp struct got_object_id id;
1019 6353ad76 2019-02-08 stsp size_t hdrlen;
1020 6353ad76 2019-02-08 stsp FILE *f = NULL;
1021 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
1022 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
1023 6353ad76 2019-02-08 stsp size_t flen, blen;
1024 6353ad76 2019-02-08 stsp
1025 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
1026 6353ad76 2019-02-08 stsp
1027 b8f41171 2019-02-10 stsp if (lstat(abspath, sb) == -1) {
1028 a378724f 2019-02-10 stsp if (errno == ENOENT) {
1029 b8f41171 2019-02-10 stsp if (ie) {
1030 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1031 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_MISSING;
1032 2ec1f75b 2019-03-26 stsp else
1033 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_DELETE;
1034 b8f41171 2019-02-10 stsp sb->st_mode =
1035 b8f41171 2019-02-10 stsp ((ie->mode >> GOT_FILEIDX_MODE_PERMS_SHIFT)
1036 b8f41171 2019-02-10 stsp & (S_IRWXU | S_IRWXG | S_IRWXO));
1037 b8f41171 2019-02-10 stsp } else
1038 b8f41171 2019-02-10 stsp sb->st_mode = GOT_DEFAULT_FILE_MODE;
1039 a378724f 2019-02-10 stsp return NULL;
1040 a378724f 2019-02-10 stsp }
1041 6353ad76 2019-02-08 stsp return got_error_from_errno();
1042 a378724f 2019-02-10 stsp }
1043 6353ad76 2019-02-08 stsp
1044 b8f41171 2019-02-10 stsp if (!S_ISREG(sb->st_mode)) {
1045 6353ad76 2019-02-08 stsp *status = GOT_STATUS_OBSTRUCTED;
1046 6353ad76 2019-02-08 stsp return NULL;
1047 6353ad76 2019-02-08 stsp }
1048 6353ad76 2019-02-08 stsp
1049 b8f41171 2019-02-10 stsp if (ie == NULL)
1050 d00136be 2019-03-26 stsp return NULL;
1051 d00136be 2019-03-26 stsp
1052 2ec1f75b 2019-03-26 stsp if (!got_fileindex_entry_has_file_on_disk(ie)) {
1053 2ec1f75b 2019-03-26 stsp *status = GOT_STATUS_DELETE;
1054 2ec1f75b 2019-03-26 stsp return NULL;
1055 2ec1f75b 2019-03-26 stsp } else if (!got_fileindex_entry_has_blob(ie)) {
1056 d00136be 2019-03-26 stsp *status = GOT_STATUS_ADD;
1057 b8f41171 2019-02-10 stsp return NULL;
1058 d00136be 2019-03-26 stsp }
1059 b8f41171 2019-02-10 stsp
1060 b8f41171 2019-02-10 stsp if (ie->ctime_sec == sb->st_ctime &&
1061 b8f41171 2019-02-10 stsp ie->ctime_nsec == sb->st_ctimensec &&
1062 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
1063 b8f41171 2019-02-10 stsp ie->mtime_sec == sb->st_mtime &&
1064 b8f41171 2019-02-10 stsp ie->mtime_nsec == sb->st_mtimensec &&
1065 b8f41171 2019-02-10 stsp ie->size == (sb->st_size & 0xffffffff))
1066 6353ad76 2019-02-08 stsp return NULL;
1067 6353ad76 2019-02-08 stsp
1068 6353ad76 2019-02-08 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1069 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1070 6353ad76 2019-02-08 stsp if (err)
1071 6353ad76 2019-02-08 stsp return err;
1072 6353ad76 2019-02-08 stsp
1073 6353ad76 2019-02-08 stsp f = fopen(abspath, "r");
1074 6353ad76 2019-02-08 stsp if (f == NULL) {
1075 6353ad76 2019-02-08 stsp err = got_error_from_errno();
1076 6353ad76 2019-02-08 stsp goto done;
1077 6353ad76 2019-02-08 stsp }
1078 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1079 6353ad76 2019-02-08 stsp while (1) {
1080 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1081 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
1082 6353ad76 2019-02-08 stsp if (err)
1083 7154f6ce 2019-03-27 stsp goto done;
1084 3cbbd752 2019-02-19 stsp /* Skip length of blob object header first time around. */
1085 3cbbd752 2019-02-19 stsp flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1086 80c5c120 2019-02-19 stsp if (flen == 0 && ferror(f)) {
1087 80c5c120 2019-02-19 stsp err = got_error_from_errno();
1088 7154f6ce 2019-03-27 stsp goto done;
1089 80c5c120 2019-02-19 stsp }
1090 6353ad76 2019-02-08 stsp if (blen == 0) {
1091 6353ad76 2019-02-08 stsp if (flen != 0)
1092 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1093 6353ad76 2019-02-08 stsp break;
1094 6353ad76 2019-02-08 stsp } else if (flen == 0) {
1095 6353ad76 2019-02-08 stsp if (blen != 0)
1096 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1097 6353ad76 2019-02-08 stsp break;
1098 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
1099 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
1100 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1101 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1102 6353ad76 2019-02-08 stsp break;
1103 6353ad76 2019-02-08 stsp }
1104 6353ad76 2019-02-08 stsp } else {
1105 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1106 6353ad76 2019-02-08 stsp break;
1107 6353ad76 2019-02-08 stsp }
1108 6353ad76 2019-02-08 stsp hdrlen = 0;
1109 6353ad76 2019-02-08 stsp }
1110 7154f6ce 2019-03-27 stsp
1111 7154f6ce 2019-03-27 stsp if (*status == GOT_STATUS_MODIFY) {
1112 7154f6ce 2019-03-27 stsp rewind(f);
1113 7154f6ce 2019-03-27 stsp err = get_modified_file_content_status(status, f);
1114 7154f6ce 2019-03-27 stsp }
1115 6353ad76 2019-02-08 stsp done:
1116 6353ad76 2019-02-08 stsp if (blob)
1117 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
1118 6353ad76 2019-02-08 stsp if (f)
1119 6353ad76 2019-02-08 stsp fclose(f);
1120 9d31a1d8 2018-03-11 stsp return err;
1121 9d31a1d8 2018-03-11 stsp }
1122 9d31a1d8 2018-03-11 stsp
1123 9d31a1d8 2018-03-11 stsp static const struct got_error *
1124 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
1125 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1126 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
1127 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1128 0584f854 2019-04-06 stsp void *progress_arg)
1129 9d31a1d8 2018-03-11 stsp {
1130 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1131 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
1132 6353ad76 2019-02-08 stsp char *ondisk_path;
1133 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1134 b8f41171 2019-02-10 stsp struct stat sb;
1135 9d31a1d8 2018-03-11 stsp
1136 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1137 6353ad76 2019-02-08 stsp return got_error_from_errno();
1138 6353ad76 2019-02-08 stsp
1139 b8f41171 2019-02-10 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1140 b8f41171 2019-02-10 stsp if (err)
1141 b8f41171 2019-02-10 stsp goto done;
1142 6353ad76 2019-02-08 stsp
1143 b8f41171 2019-02-10 stsp if (status == GOT_STATUS_OBSTRUCTED) {
1144 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, status, path);
1145 b8f41171 2019-02-10 stsp goto done;
1146 b8f41171 2019-02-10 stsp }
1147 b8f41171 2019-02-10 stsp
1148 b8f41171 2019-02-10 stsp if (ie && status != GOT_STATUS_MISSING) {
1149 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_commit(ie) &&
1150 1430b4e0 2019-03-27 stsp memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1151 b8f41171 2019-02-10 stsp SHA1_DIGEST_LENGTH) == 0) {
1152 b8f41171 2019-02-10 stsp (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1153 b8f41171 2019-02-10 stsp path);
1154 6353ad76 2019-02-08 stsp goto done;
1155 a378724f 2019-02-10 stsp }
1156 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_blob(ie) &&
1157 1430b4e0 2019-03-27 stsp memcmp(ie->blob_sha1, te->id->sha1,
1158 1430b4e0 2019-03-27 stsp SHA1_DIGEST_LENGTH) == 0)
1159 b8f41171 2019-02-10 stsp goto done;
1160 9d31a1d8 2018-03-11 stsp }
1161 9d31a1d8 2018-03-11 stsp
1162 8da9e5f4 2019-01-12 stsp err = got_object_open_as_blob(&blob, repo, te->id, 8192);
1163 8da9e5f4 2019-01-12 stsp if (err)
1164 6353ad76 2019-02-08 stsp goto done;
1165 512f0d0e 2019-01-02 stsp
1166 1430b4e0 2019-03-27 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD)
1167 6353ad76 2019-02-08 stsp err = merge_blob(worktree, fileindex, ie, ondisk_path, path,
1168 b8f41171 2019-02-10 stsp te->mode, sb.st_mode, blob, repo, progress_cb,
1169 b8f41171 2019-02-10 stsp progress_arg);
1170 13d9040b 2019-03-27 stsp else if (status == GOT_STATUS_DELETE) {
1171 13d9040b 2019-03-27 stsp (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1172 13d9040b 2019-03-27 stsp err = update_blob_fileindex_entry(worktree, fileindex, ie,
1173 13d9040b 2019-03-27 stsp ondisk_path, path, blob, 0);
1174 13d9040b 2019-03-27 stsp if (err)
1175 13d9040b 2019-03-27 stsp goto done;
1176 13d9040b 2019-03-27 stsp } else {
1177 13d9040b 2019-03-27 stsp err = install_blob(worktree, ondisk_path, path, te->mode,
1178 a129376b 2019-03-28 stsp sb.st_mode, blob, status == GOT_STATUS_MISSING, 0,
1179 a129376b 2019-03-28 stsp repo, progress_cb, progress_arg);
1180 13d9040b 2019-03-27 stsp if (err)
1181 13d9040b 2019-03-27 stsp goto done;
1182 13d9040b 2019-03-27 stsp err = update_blob_fileindex_entry(worktree, fileindex, ie,
1183 13d9040b 2019-03-27 stsp ondisk_path, path, blob, 1);
1184 13d9040b 2019-03-27 stsp if (err)
1185 13d9040b 2019-03-27 stsp goto done;
1186 13d9040b 2019-03-27 stsp }
1187 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
1188 6353ad76 2019-02-08 stsp done:
1189 6353ad76 2019-02-08 stsp free(ondisk_path);
1190 8da9e5f4 2019-01-12 stsp return err;
1191 90285c3b 2019-01-08 stsp }
1192 90285c3b 2019-01-08 stsp
1193 90285c3b 2019-01-08 stsp static const struct got_error *
1194 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
1195 90285c3b 2019-01-08 stsp {
1196 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
1197 90285c3b 2019-01-08 stsp char *ondisk_path = NULL;
1198 90285c3b 2019-01-08 stsp
1199 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
1200 90285c3b 2019-01-08 stsp return got_error_from_errno();
1201 90285c3b 2019-01-08 stsp
1202 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
1203 c97665ae 2019-01-13 stsp if (errno != ENOENT)
1204 c97665ae 2019-01-13 stsp err = got_error_from_errno();
1205 c97665ae 2019-01-13 stsp } else {
1206 90285c3b 2019-01-08 stsp char *parent = dirname(ondisk_path);
1207 7a9df742 2019-01-08 stsp while (parent && strcmp(parent, root_path) != 0) {
1208 26c4ac4d 2019-01-08 stsp if (rmdir(parent) == -1) {
1209 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
1210 26c4ac4d 2019-01-08 stsp err = got_error_from_errno();
1211 90285c3b 2019-01-08 stsp break;
1212 90285c3b 2019-01-08 stsp }
1213 90285c3b 2019-01-08 stsp parent = dirname(parent);
1214 90285c3b 2019-01-08 stsp }
1215 90285c3b 2019-01-08 stsp }
1216 90285c3b 2019-01-08 stsp free(ondisk_path);
1217 90285c3b 2019-01-08 stsp return err;
1218 512f0d0e 2019-01-02 stsp }
1219 512f0d0e 2019-01-02 stsp
1220 708d8e67 2019-03-27 stsp static const struct got_error *
1221 708d8e67 2019-03-27 stsp delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
1222 708d8e67 2019-03-27 stsp struct got_fileindex_entry *ie, const char *parent_path,
1223 708d8e67 2019-03-27 stsp struct got_repository *repo,
1224 0584f854 2019-04-06 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1225 708d8e67 2019-03-27 stsp {
1226 fc6346c4 2019-03-27 stsp const struct got_error *err = NULL;
1227 708d8e67 2019-03-27 stsp unsigned char status;
1228 708d8e67 2019-03-27 stsp struct stat sb;
1229 708d8e67 2019-03-27 stsp char *ondisk_path;
1230 708d8e67 2019-03-27 stsp
1231 708d8e67 2019-03-27 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
1232 708d8e67 2019-03-27 stsp == -1)
1233 708d8e67 2019-03-27 stsp return got_error_from_errno();
1234 708d8e67 2019-03-27 stsp
1235 708d8e67 2019-03-27 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1236 708d8e67 2019-03-27 stsp if (err)
1237 708d8e67 2019-03-27 stsp return err;
1238 708d8e67 2019-03-27 stsp
1239 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
1240 fc6346c4 2019-03-27 stsp status == GOT_STATUS_ADD) {
1241 fc6346c4 2019-03-27 stsp (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
1242 fc6346c4 2019-03-27 stsp /*
1243 fc6346c4 2019-03-27 stsp * Preserve the working file and change the deleted blob's
1244 fc6346c4 2019-03-27 stsp * entry into a schedule-add entry.
1245 fc6346c4 2019-03-27 stsp */
1246 fc6346c4 2019-03-27 stsp err = got_fileindex_entry_update(ie, ondisk_path, NULL, NULL,
1247 fc6346c4 2019-03-27 stsp 0);
1248 708d8e67 2019-03-27 stsp if (err)
1249 708d8e67 2019-03-27 stsp return err;
1250 fc6346c4 2019-03-27 stsp } else {
1251 fc6346c4 2019-03-27 stsp (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
1252 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_NO_CHANGE) {
1253 fc6346c4 2019-03-27 stsp err = remove_ondisk_file(worktree->root_path, ie->path);
1254 fc6346c4 2019-03-27 stsp if (err)
1255 fc6346c4 2019-03-27 stsp return err;
1256 fc6346c4 2019-03-27 stsp }
1257 fc6346c4 2019-03-27 stsp got_fileindex_entry_remove(fileindex, ie);
1258 708d8e67 2019-03-27 stsp }
1259 708d8e67 2019-03-27 stsp
1260 fc6346c4 2019-03-27 stsp return err;
1261 708d8e67 2019-03-27 stsp }
1262 708d8e67 2019-03-27 stsp
1263 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
1264 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
1265 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
1266 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
1267 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
1268 8da9e5f4 2019-01-12 stsp void *progress_arg;
1269 8da9e5f4 2019-01-12 stsp got_worktree_cancel_cb cancel_cb;
1270 8da9e5f4 2019-01-12 stsp void *cancel_arg;
1271 8da9e5f4 2019-01-12 stsp };
1272 8da9e5f4 2019-01-12 stsp
1273 512f0d0e 2019-01-02 stsp static const struct got_error *
1274 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
1275 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
1276 512f0d0e 2019-01-02 stsp {
1277 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1278 0584f854 2019-04-06 stsp
1279 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1280 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1281 512f0d0e 2019-01-02 stsp
1282 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
1283 0584f854 2019-04-06 stsp ie->path, a->repo, a->progress_cb, a->progress_arg);
1284 8da9e5f4 2019-01-12 stsp }
1285 512f0d0e 2019-01-02 stsp
1286 8da9e5f4 2019-01-12 stsp static const struct got_error *
1287 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1288 8da9e5f4 2019-01-12 stsp {
1289 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1290 7a9df742 2019-01-08 stsp
1291 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1292 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1293 0584f854 2019-04-06 stsp
1294 708d8e67 2019-03-27 stsp return delete_blob(a->worktree, a->fileindex, ie, parent_path,
1295 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
1296 9d31a1d8 2018-03-11 stsp }
1297 9d31a1d8 2018-03-11 stsp
1298 9d31a1d8 2018-03-11 stsp static const struct got_error *
1299 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
1300 9d31a1d8 2018-03-11 stsp {
1301 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
1302 8da9e5f4 2019-01-12 stsp const struct got_error *err;
1303 8da9e5f4 2019-01-12 stsp char *path;
1304 9d31a1d8 2018-03-11 stsp
1305 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1306 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1307 0584f854 2019-04-06 stsp
1308 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
1309 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
1310 8da9e5f4 2019-01-12 stsp == -1)
1311 8da9e5f4 2019-01-12 stsp return got_error_from_errno();
1312 9d31a1d8 2018-03-11 stsp
1313 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
1314 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
1315 8da9e5f4 2019-01-12 stsp else
1316 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
1317 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
1318 9d31a1d8 2018-03-11 stsp
1319 8da9e5f4 2019-01-12 stsp free(path);
1320 0cd1c46a 2019-03-11 stsp return err;
1321 0cd1c46a 2019-03-11 stsp }
1322 0cd1c46a 2019-03-11 stsp
1323 517bab73 2019-03-11 stsp const struct got_error *
1324 517bab73 2019-03-11 stsp got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
1325 0cd1c46a 2019-03-11 stsp {
1326 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
1327 0647c563 2019-03-11 stsp char *uuidstr = NULL;
1328 0cd1c46a 2019-03-11 stsp uint32_t uuid_status;
1329 0cd1c46a 2019-03-11 stsp
1330 517bab73 2019-03-11 stsp *refname = NULL;
1331 517bab73 2019-03-11 stsp
1332 0cd1c46a 2019-03-11 stsp uuid_to_string(&worktree->uuid, &uuidstr, &uuid_status);
1333 0cd1c46a 2019-03-11 stsp if (uuid_status != uuid_s_ok)
1334 0cd1c46a 2019-03-11 stsp return got_error_uuid(uuid_status);
1335 0cd1c46a 2019-03-11 stsp
1336 0647c563 2019-03-11 stsp if (asprintf(refname, "%s-%s", GOT_WORKTREE_BASE_REF_PREFIX, uuidstr)
1337 0647c563 2019-03-11 stsp == -1) {
1338 0cd1c46a 2019-03-11 stsp err = got_error_from_errno();
1339 0647c563 2019-03-11 stsp *refname = NULL;
1340 0cd1c46a 2019-03-11 stsp }
1341 517bab73 2019-03-11 stsp free(uuidstr);
1342 517bab73 2019-03-11 stsp return err;
1343 517bab73 2019-03-11 stsp }
1344 517bab73 2019-03-11 stsp
1345 517bab73 2019-03-11 stsp /*
1346 517bab73 2019-03-11 stsp * Prevent Git's garbage collector from deleting our base commit by
1347 517bab73 2019-03-11 stsp * setting a reference to our base commit's ID.
1348 517bab73 2019-03-11 stsp */
1349 517bab73 2019-03-11 stsp static const struct got_error *
1350 517bab73 2019-03-11 stsp ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
1351 517bab73 2019-03-11 stsp {
1352 517bab73 2019-03-11 stsp const struct got_error *err = NULL;
1353 517bab73 2019-03-11 stsp struct got_reference *ref = NULL;
1354 517bab73 2019-03-11 stsp char *refname;
1355 517bab73 2019-03-11 stsp
1356 517bab73 2019-03-11 stsp err = got_worktree_get_base_ref_name(&refname, worktree);
1357 517bab73 2019-03-11 stsp if (err)
1358 517bab73 2019-03-11 stsp return err;
1359 0cd1c46a 2019-03-11 stsp
1360 0cd1c46a 2019-03-11 stsp err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
1361 0cd1c46a 2019-03-11 stsp if (err)
1362 0cd1c46a 2019-03-11 stsp goto done;
1363 0cd1c46a 2019-03-11 stsp
1364 0cd1c46a 2019-03-11 stsp err = got_ref_write(ref, repo);
1365 0cd1c46a 2019-03-11 stsp done:
1366 0cd1c46a 2019-03-11 stsp free(refname);
1367 0cd1c46a 2019-03-11 stsp if (ref)
1368 0cd1c46a 2019-03-11 stsp got_ref_close(ref);
1369 9d31a1d8 2018-03-11 stsp return err;
1370 9d31a1d8 2018-03-11 stsp }
1371 9d31a1d8 2018-03-11 stsp
1372 ebf99748 2019-05-09 stsp static const struct got_error *
1373 ebf99748 2019-05-09 stsp open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
1374 ebf99748 2019-05-09 stsp struct got_worktree *worktree)
1375 ebf99748 2019-05-09 stsp {
1376 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
1377 ebf99748 2019-05-09 stsp FILE *index = NULL;
1378 0cd1c46a 2019-03-11 stsp
1379 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1380 ebf99748 2019-05-09 stsp *fileindex = got_fileindex_alloc();
1381 ebf99748 2019-05-09 stsp if (*fileindex == NULL)
1382 ebf99748 2019-05-09 stsp return got_error_from_errno();
1383 ebf99748 2019-05-09 stsp
1384 ebf99748 2019-05-09 stsp if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
1385 ebf99748 2019-05-09 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1386 ebf99748 2019-05-09 stsp err = got_error_from_errno();
1387 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1388 ebf99748 2019-05-09 stsp goto done;
1389 ebf99748 2019-05-09 stsp }
1390 ebf99748 2019-05-09 stsp
1391 ebf99748 2019-05-09 stsp index = fopen(*fileindex_path, "rb");
1392 ebf99748 2019-05-09 stsp if (index == NULL) {
1393 ebf99748 2019-05-09 stsp if (errno != ENOENT)
1394 ebf99748 2019-05-09 stsp err = got_error_from_errno();
1395 ebf99748 2019-05-09 stsp } else {
1396 ebf99748 2019-05-09 stsp err = got_fileindex_read(*fileindex, index);
1397 ebf99748 2019-05-09 stsp if (fclose(index) != 0 && err == NULL)
1398 ebf99748 2019-05-09 stsp err = got_error_from_errno();
1399 ebf99748 2019-05-09 stsp }
1400 ebf99748 2019-05-09 stsp done:
1401 ebf99748 2019-05-09 stsp if (err) {
1402 ebf99748 2019-05-09 stsp free(*fileindex_path);
1403 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
1404 ebf99748 2019-05-09 stsp free(*fileindex);
1405 ebf99748 2019-05-09 stsp *fileindex = NULL;
1406 ebf99748 2019-05-09 stsp }
1407 ebf99748 2019-05-09 stsp return err;
1408 ebf99748 2019-05-09 stsp }
1409 ebf99748 2019-05-09 stsp
1410 9d31a1d8 2018-03-11 stsp const struct got_error *
1411 c4cdcb68 2019-04-03 stsp got_worktree_checkout_files(struct got_worktree *worktree, const char *path,
1412 93a30277 2018-12-24 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1413 93a30277 2018-12-24 stsp void *progress_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1414 9d31a1d8 2018-03-11 stsp {
1415 a143fb78 2018-12-25 stsp const struct got_error *err = NULL, *unlockerr, *checkout_err = NULL;
1416 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
1417 8da9e5f4 2019-01-12 stsp struct got_object_id *tree_id = NULL;
1418 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
1419 9d31a1d8 2018-03-11 stsp char *fileindex_path = NULL, *new_fileindex_path = NULL;
1420 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
1421 ebf99748 2019-05-09 stsp FILE *new_index = NULL;
1422 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb diff_cb;
1423 8da9e5f4 2019-01-12 stsp struct diff_cb_arg arg;
1424 c4cdcb68 2019-04-03 stsp char *relpath = NULL, *entry_name = NULL;
1425 9d31a1d8 2018-03-11 stsp
1426 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
1427 9d31a1d8 2018-03-11 stsp if (err)
1428 9d31a1d8 2018-03-11 stsp return err;
1429 93a30277 2018-12-24 stsp
1430 51514078 2018-12-25 stsp /*
1431 51514078 2018-12-25 stsp * Read the file index.
1432 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
1433 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
1434 51514078 2018-12-25 stsp */
1435 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
1436 ebf99748 2019-05-09 stsp if (err)
1437 ebf99748 2019-05-09 stsp goto done;
1438 51514078 2018-12-25 stsp
1439 b8bdcc21 2018-12-24 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
1440 b8bdcc21 2018-12-24 stsp fileindex_path);
1441 51664889 2018-03-12 stsp if (err)
1442 51664889 2018-03-12 stsp goto done;
1443 51664889 2018-03-12 stsp
1444 0cd1c46a 2019-03-11 stsp err = ref_base_commit(worktree, repo);
1445 0cd1c46a 2019-03-11 stsp if (err)
1446 0cd1c46a 2019-03-11 stsp goto done;
1447 0cd1c46a 2019-03-11 stsp
1448 eaccb85f 2018-12-25 stsp err = got_object_open_as_commit(&commit, repo,
1449 eaccb85f 2018-12-25 stsp worktree->base_commit_id);
1450 9d31a1d8 2018-03-11 stsp if (err)
1451 9d31a1d8 2018-03-11 stsp goto done;
1452 9d31a1d8 2018-03-11 stsp
1453 c4cdcb68 2019-04-03 stsp if (path[0]) {
1454 c4cdcb68 2019-04-03 stsp char *tree_path;
1455 c4cdcb68 2019-04-03 stsp int obj_type;
1456 c4cdcb68 2019-04-03 stsp relpath = strdup(path);
1457 c4cdcb68 2019-04-03 stsp if (relpath == NULL) {
1458 c4cdcb68 2019-04-03 stsp err = got_error_from_errno();
1459 c4cdcb68 2019-04-03 stsp goto done;
1460 c4cdcb68 2019-04-03 stsp }
1461 c4cdcb68 2019-04-03 stsp if (asprintf(&tree_path, "%s%s%s", worktree->path_prefix,
1462 c4cdcb68 2019-04-03 stsp got_path_is_root_dir(worktree->path_prefix) ? "" : "/",
1463 c4cdcb68 2019-04-03 stsp path) == -1) {
1464 c4cdcb68 2019-04-03 stsp err = got_error_from_errno();
1465 c4cdcb68 2019-04-03 stsp goto done;
1466 c4cdcb68 2019-04-03 stsp }
1467 c4cdcb68 2019-04-03 stsp err = got_object_id_by_path(&tree_id, repo,
1468 c4cdcb68 2019-04-03 stsp worktree->base_commit_id, tree_path);
1469 c4cdcb68 2019-04-03 stsp free(tree_path);
1470 c4cdcb68 2019-04-03 stsp if (err)
1471 c4cdcb68 2019-04-03 stsp goto done;
1472 c4cdcb68 2019-04-03 stsp err = got_object_get_type(&obj_type, repo, tree_id);
1473 c4cdcb68 2019-04-03 stsp if (err)
1474 c4cdcb68 2019-04-03 stsp goto done;
1475 c4cdcb68 2019-04-03 stsp if (obj_type == GOT_OBJ_TYPE_BLOB) {
1476 c4cdcb68 2019-04-03 stsp /* Split provided path into parent dir + entry name. */
1477 c4cdcb68 2019-04-03 stsp if (strchr(path, '/') == NULL) {
1478 c4cdcb68 2019-04-03 stsp relpath = strdup("");
1479 c4cdcb68 2019-04-03 stsp if (relpath == NULL) {
1480 c4cdcb68 2019-04-03 stsp err = got_error_from_errno();
1481 c4cdcb68 2019-04-03 stsp goto done;
1482 c4cdcb68 2019-04-03 stsp }
1483 c4cdcb68 2019-04-03 stsp tree_path = strdup(worktree->path_prefix);
1484 c4cdcb68 2019-04-03 stsp if (tree_path == NULL) {
1485 c4cdcb68 2019-04-03 stsp err = got_error_from_errno();
1486 c4cdcb68 2019-04-03 stsp goto done;
1487 c4cdcb68 2019-04-03 stsp }
1488 c4cdcb68 2019-04-03 stsp } else {
1489 c4cdcb68 2019-04-03 stsp err = got_path_dirname(&relpath, path);
1490 c4cdcb68 2019-04-03 stsp if (err)
1491 c4cdcb68 2019-04-03 stsp goto done;
1492 c4cdcb68 2019-04-03 stsp if (asprintf(&tree_path, "%s%s%s",
1493 c4cdcb68 2019-04-03 stsp worktree->path_prefix,
1494 c4cdcb68 2019-04-03 stsp got_path_is_root_dir(
1495 c4cdcb68 2019-04-03 stsp worktree->path_prefix) ? "" : "/",
1496 c4cdcb68 2019-04-03 stsp relpath) == -1) {
1497 c4cdcb68 2019-04-03 stsp err = got_error_from_errno();
1498 c4cdcb68 2019-04-03 stsp goto done;
1499 c4cdcb68 2019-04-03 stsp }
1500 c4cdcb68 2019-04-03 stsp }
1501 c4cdcb68 2019-04-03 stsp err = got_object_id_by_path(&tree_id, repo,
1502 c4cdcb68 2019-04-03 stsp worktree->base_commit_id, tree_path);
1503 c4cdcb68 2019-04-03 stsp free(tree_path);
1504 c4cdcb68 2019-04-03 stsp if (err)
1505 c4cdcb68 2019-04-03 stsp goto done;
1506 c4cdcb68 2019-04-03 stsp entry_name = basename(path);
1507 c4cdcb68 2019-04-03 stsp if (entry_name == NULL) {
1508 c4cdcb68 2019-04-03 stsp err = got_error_from_errno();
1509 c4cdcb68 2019-04-03 stsp goto done;
1510 c4cdcb68 2019-04-03 stsp }
1511 c4cdcb68 2019-04-03 stsp }
1512 c4cdcb68 2019-04-03 stsp } else {
1513 c4cdcb68 2019-04-03 stsp relpath = strdup("");
1514 c4cdcb68 2019-04-03 stsp if (relpath == NULL) {
1515 c4cdcb68 2019-04-03 stsp err = got_error_from_errno();
1516 c4cdcb68 2019-04-03 stsp goto done;
1517 c4cdcb68 2019-04-03 stsp }
1518 c4cdcb68 2019-04-03 stsp err = got_object_id_by_path(&tree_id, repo,
1519 c4cdcb68 2019-04-03 stsp worktree->base_commit_id, worktree->path_prefix);
1520 c4cdcb68 2019-04-03 stsp if (err)
1521 c4cdcb68 2019-04-03 stsp goto done;
1522 c4cdcb68 2019-04-03 stsp }
1523 9d31a1d8 2018-03-11 stsp
1524 8da9e5f4 2019-01-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1525 8da9e5f4 2019-01-12 stsp if (err)
1526 c4cdcb68 2019-04-03 stsp goto done;
1527 c4cdcb68 2019-04-03 stsp
1528 c4cdcb68 2019-04-03 stsp if (entry_name &&
1529 c4cdcb68 2019-04-03 stsp got_object_tree_find_entry(tree, entry_name) == NULL) {
1530 c4cdcb68 2019-04-03 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1531 8da9e5f4 2019-01-12 stsp goto done;
1532 c4cdcb68 2019-04-03 stsp }
1533 9d31a1d8 2018-03-11 stsp
1534 8da9e5f4 2019-01-12 stsp diff_cb.diff_old_new = diff_old_new;
1535 8da9e5f4 2019-01-12 stsp diff_cb.diff_old = diff_old;
1536 8da9e5f4 2019-01-12 stsp diff_cb.diff_new = diff_new;
1537 8da9e5f4 2019-01-12 stsp arg.fileindex = fileindex;
1538 8da9e5f4 2019-01-12 stsp arg.worktree = worktree;
1539 8da9e5f4 2019-01-12 stsp arg.repo = repo;
1540 8da9e5f4 2019-01-12 stsp arg.progress_cb = progress_cb;
1541 8da9e5f4 2019-01-12 stsp arg.progress_arg = progress_arg;
1542 8da9e5f4 2019-01-12 stsp arg.cancel_cb = cancel_cb;
1543 8da9e5f4 2019-01-12 stsp arg.cancel_arg = cancel_arg;
1544 c4cdcb68 2019-04-03 stsp checkout_err = got_fileindex_diff_tree(fileindex, tree, relpath,
1545 c4cdcb68 2019-04-03 stsp entry_name, repo, &diff_cb, &arg);
1546 8da9e5f4 2019-01-12 stsp
1547 a143fb78 2018-12-25 stsp /* Try to sync the fileindex back to disk in any case. */
1548 b8bdcc21 2018-12-24 stsp err = got_fileindex_write(fileindex, new_index);
1549 9d31a1d8 2018-03-11 stsp if (err)
1550 9d31a1d8 2018-03-11 stsp goto done;
1551 9d31a1d8 2018-03-11 stsp
1552 9d31a1d8 2018-03-11 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
1553 9d31a1d8 2018-03-11 stsp err = got_error_from_errno();
1554 2a57020b 2019-02-20 stsp unlink(new_fileindex_path);
1555 9d31a1d8 2018-03-11 stsp goto done;
1556 9d31a1d8 2018-03-11 stsp }
1557 9d31a1d8 2018-03-11 stsp
1558 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1559 9d31a1d8 2018-03-11 stsp new_fileindex_path = NULL;
1560 9d31a1d8 2018-03-11 stsp
1561 9d31a1d8 2018-03-11 stsp done:
1562 c4cdcb68 2019-04-03 stsp free(relpath);
1563 edfa7d7f 2018-09-11 stsp if (tree)
1564 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
1565 9d31a1d8 2018-03-11 stsp if (commit)
1566 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
1567 9d31a1d8 2018-03-11 stsp if (new_fileindex_path)
1568 9d31a1d8 2018-03-11 stsp unlink(new_fileindex_path);
1569 b8bdcc21 2018-12-24 stsp if (new_index)
1570 b8bdcc21 2018-12-24 stsp fclose(new_index);
1571 9d31a1d8 2018-03-11 stsp free(new_fileindex_path);
1572 9d31a1d8 2018-03-11 stsp free(fileindex_path);
1573 7426bbfd 2018-12-24 stsp got_fileindex_free(fileindex);
1574 a143fb78 2018-12-25 stsp if (checkout_err)
1575 a143fb78 2018-12-25 stsp err = checkout_err;
1576 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1577 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
1578 9d31a1d8 2018-03-11 stsp err = unlockerr;
1579 f8d1f275 2019-02-04 stsp return err;
1580 f8d1f275 2019-02-04 stsp }
1581 f8d1f275 2019-02-04 stsp
1582 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
1583 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
1584 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
1585 927df6b7 2019-02-10 stsp const char *status_path;
1586 927df6b7 2019-02-10 stsp size_t status_path_len;
1587 f8d1f275 2019-02-04 stsp struct got_repository *repo;
1588 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
1589 f8d1f275 2019-02-04 stsp void *status_arg;
1590 f8d1f275 2019-02-04 stsp got_worktree_cancel_cb cancel_cb;
1591 f8d1f275 2019-02-04 stsp void *cancel_arg;
1592 f8d1f275 2019-02-04 stsp };
1593 f8d1f275 2019-02-04 stsp
1594 f8d1f275 2019-02-04 stsp static const struct got_error *
1595 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
1596 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
1597 927df6b7 2019-02-10 stsp struct got_repository *repo)
1598 927df6b7 2019-02-10 stsp {
1599 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
1600 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1601 927df6b7 2019-02-10 stsp struct stat sb;
1602 927df6b7 2019-02-10 stsp struct got_object_id id;
1603 927df6b7 2019-02-10 stsp
1604 927df6b7 2019-02-10 stsp err = get_file_status(&status, &sb, ie, abspath, repo);
1605 927df6b7 2019-02-10 stsp if (err == NULL && status != GOT_STATUS_NO_CHANGE) {
1606 927df6b7 2019-02-10 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1607 927df6b7 2019-02-10 stsp err = (*status_cb)(status_arg, status, ie->path, &id);
1608 927df6b7 2019-02-10 stsp }
1609 927df6b7 2019-02-10 stsp return err;
1610 927df6b7 2019-02-10 stsp }
1611 927df6b7 2019-02-10 stsp
1612 927df6b7 2019-02-10 stsp static const struct got_error *
1613 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
1614 f8d1f275 2019-02-04 stsp struct dirent *de, const char *parent_path)
1615 f8d1f275 2019-02-04 stsp {
1616 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1617 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1618 f8d1f275 2019-02-04 stsp char *abspath;
1619 f8d1f275 2019-02-04 stsp
1620 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1621 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1622 0584f854 2019-04-06 stsp
1623 927df6b7 2019-02-10 stsp if (got_path_cmp(parent_path, a->status_path) != 0 &&
1624 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
1625 927df6b7 2019-02-10 stsp return NULL;
1626 927df6b7 2019-02-10 stsp
1627 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1628 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
1629 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
1630 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1631 f8d1f275 2019-02-04 stsp } else {
1632 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
1633 f8d1f275 2019-02-04 stsp de->d_name) == -1)
1634 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1635 f8d1f275 2019-02-04 stsp }
1636 f8d1f275 2019-02-04 stsp
1637 927df6b7 2019-02-10 stsp err = report_file_status(ie, abspath, a->status_cb, a->status_arg,
1638 927df6b7 2019-02-10 stsp a->repo);
1639 f8d1f275 2019-02-04 stsp free(abspath);
1640 9d31a1d8 2018-03-11 stsp return err;
1641 9d31a1d8 2018-03-11 stsp }
1642 f8d1f275 2019-02-04 stsp
1643 f8d1f275 2019-02-04 stsp static const struct got_error *
1644 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1645 f8d1f275 2019-02-04 stsp {
1646 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1647 b72f483a 2019-02-05 stsp struct got_object_id id;
1648 2ec1f75b 2019-03-26 stsp unsigned char status;
1649 927df6b7 2019-02-10 stsp
1650 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1651 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1652 0584f854 2019-04-06 stsp
1653 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
1654 927df6b7 2019-02-10 stsp return NULL;
1655 927df6b7 2019-02-10 stsp
1656 b72f483a 2019-02-05 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1657 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1658 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_MISSING;
1659 2ec1f75b 2019-03-26 stsp else
1660 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_DELETE;
1661 2ec1f75b 2019-03-26 stsp return (*a->status_cb)(a->status_arg, status, ie->path, &id);
1662 f8d1f275 2019-02-04 stsp }
1663 f8d1f275 2019-02-04 stsp
1664 f8d1f275 2019-02-04 stsp static const struct got_error *
1665 f8d1f275 2019-02-04 stsp status_new(void *arg, struct dirent *de, const char *parent_path)
1666 f8d1f275 2019-02-04 stsp {
1667 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1668 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
1669 f8d1f275 2019-02-04 stsp char *path = NULL;
1670 f8d1f275 2019-02-04 stsp
1671 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1672 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
1673 0584f854 2019-04-06 stsp
1674 f8d1f275 2019-02-04 stsp if (de->d_type == DT_DIR)
1675 2c201a36 2019-02-10 stsp return NULL;
1676 2c201a36 2019-02-10 stsp
1677 2c201a36 2019-02-10 stsp /* XXX ignore symlinks for now */
1678 2c201a36 2019-02-10 stsp if (de->d_type == DT_LNK)
1679 f8d1f275 2019-02-04 stsp return NULL;
1680 f8d1f275 2019-02-04 stsp
1681 927df6b7 2019-02-10 stsp if (!got_path_is_child(parent_path, a->status_path, a->status_path_len))
1682 927df6b7 2019-02-10 stsp return NULL;
1683 927df6b7 2019-02-10 stsp
1684 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
1685 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
1686 f8d1f275 2019-02-04 stsp return got_error_from_errno();
1687 f8d1f275 2019-02-04 stsp } else {
1688 f8d1f275 2019-02-04 stsp path = de->d_name;
1689 f8d1f275 2019-02-04 stsp }
1690 f8d1f275 2019-02-04 stsp
1691 b72f483a 2019-02-05 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED, path,
1692 b72f483a 2019-02-05 stsp NULL);
1693 f8d1f275 2019-02-04 stsp if (parent_path[0])
1694 f8d1f275 2019-02-04 stsp free(path);
1695 b72f483a 2019-02-05 stsp return err;
1696 f8d1f275 2019-02-04 stsp }
1697 f8d1f275 2019-02-04 stsp
1698 f8d1f275 2019-02-04 stsp const struct got_error *
1699 927df6b7 2019-02-10 stsp got_worktree_status(struct got_worktree *worktree, const char *path,
1700 f8d1f275 2019-02-04 stsp struct got_repository *repo, got_worktree_status_cb status_cb,
1701 f8d1f275 2019-02-04 stsp void *status_arg, got_worktree_cancel_cb cancel_cb, void *cancel_arg)
1702 f8d1f275 2019-02-04 stsp {
1703 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
1704 f8d1f275 2019-02-04 stsp DIR *workdir = NULL;
1705 f8d1f275 2019-02-04 stsp char *fileindex_path = NULL;
1706 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex = NULL;
1707 f8d1f275 2019-02-04 stsp FILE *index = NULL;
1708 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
1709 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
1710 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
1711 f8d1f275 2019-02-04 stsp
1712 f8d1f275 2019-02-04 stsp fileindex = got_fileindex_alloc();
1713 f8d1f275 2019-02-04 stsp if (fileindex == NULL) {
1714 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1715 f8d1f275 2019-02-04 stsp goto done;
1716 f8d1f275 2019-02-04 stsp }
1717 f8d1f275 2019-02-04 stsp
1718 f8d1f275 2019-02-04 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1719 f8d1f275 2019-02-04 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1720 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1721 f8d1f275 2019-02-04 stsp fileindex_path = NULL;
1722 f8d1f275 2019-02-04 stsp goto done;
1723 f8d1f275 2019-02-04 stsp }
1724 f8d1f275 2019-02-04 stsp
1725 f8d1f275 2019-02-04 stsp index = fopen(fileindex_path, "rb");
1726 f8d1f275 2019-02-04 stsp if (index == NULL) {
1727 f8d1f275 2019-02-04 stsp if (errno != ENOENT) {
1728 f8d1f275 2019-02-04 stsp err = got_error_from_errno();
1729 f8d1f275 2019-02-04 stsp goto done;
1730 f8d1f275 2019-02-04 stsp }
1731 f8d1f275 2019-02-04 stsp } else {
1732 f8d1f275 2019-02-04 stsp err = got_fileindex_read(fileindex, index);
1733 f8d1f275 2019-02-04 stsp fclose(index);
1734 f8d1f275 2019-02-04 stsp if (err)
1735 f8d1f275 2019-02-04 stsp goto done;
1736 f8d1f275 2019-02-04 stsp }
1737 f8d1f275 2019-02-04 stsp
1738 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
1739 927df6b7 2019-02-10 stsp worktree->root_path, path[0] ? "/" : "", path) == -1) {
1740 c513d110 2019-02-05 stsp err = got_error_from_errno();
1741 c513d110 2019-02-05 stsp goto done;
1742 c513d110 2019-02-05 stsp }
1743 927df6b7 2019-02-10 stsp workdir = opendir(ondisk_path);
1744 927df6b7 2019-02-10 stsp if (workdir == NULL) {
1745 2ec1f75b 2019-03-26 stsp if (errno == ENOTDIR || errno == ENOENT) {
1746 927df6b7 2019-02-10 stsp struct got_fileindex_entry *ie;
1747 927df6b7 2019-02-10 stsp ie = got_fileindex_entry_get(fileindex, path);
1748 927df6b7 2019-02-10 stsp if (ie == NULL) {
1749 927df6b7 2019-02-10 stsp err = got_error(GOT_ERR_BAD_PATH);
1750 927df6b7 2019-02-10 stsp goto done;
1751 927df6b7 2019-02-10 stsp }
1752 927df6b7 2019-02-10 stsp err = report_file_status(ie, ondisk_path,
1753 927df6b7 2019-02-10 stsp status_cb, status_arg, repo);
1754 927df6b7 2019-02-10 stsp goto done;
1755 927df6b7 2019-02-10 stsp } else {
1756 927df6b7 2019-02-10 stsp err = got_error_from_errno();
1757 927df6b7 2019-02-10 stsp goto done;
1758 927df6b7 2019-02-10 stsp }
1759 927df6b7 2019-02-10 stsp }
1760 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old_new = status_old_new;
1761 d43a8a88 2019-02-05 stsp fdiff_cb.diff_old = status_old;
1762 d43a8a88 2019-02-05 stsp fdiff_cb.diff_new = status_new;
1763 f8d1f275 2019-02-04 stsp arg.fileindex = fileindex;
1764 f8d1f275 2019-02-04 stsp arg.worktree = worktree;
1765 927df6b7 2019-02-10 stsp arg.status_path = path;
1766 927df6b7 2019-02-10 stsp arg.status_path_len = strlen(path);
1767 f8d1f275 2019-02-04 stsp arg.repo = repo;
1768 f8d1f275 2019-02-04 stsp arg.status_cb = status_cb;
1769 f8d1f275 2019-02-04 stsp arg.status_arg = status_arg;
1770 f8d1f275 2019-02-04 stsp arg.cancel_cb = cancel_cb;
1771 f8d1f275 2019-02-04 stsp arg.cancel_arg = cancel_arg;
1772 c7f4312f 2019-02-05 stsp err = got_fileindex_diff_dir(fileindex, workdir, worktree->root_path,
1773 927df6b7 2019-02-10 stsp path, repo, &fdiff_cb, &arg);
1774 f8d1f275 2019-02-04 stsp done:
1775 f8d1f275 2019-02-04 stsp if (workdir)
1776 f8d1f275 2019-02-04 stsp closedir(workdir);
1777 927df6b7 2019-02-10 stsp free(ondisk_path);
1778 f8d1f275 2019-02-04 stsp free(fileindex_path);
1779 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
1780 f8d1f275 2019-02-04 stsp return err;
1781 f8d1f275 2019-02-04 stsp }
1782 6c7ab921 2019-03-18 stsp
1783 6c7ab921 2019-03-18 stsp const struct got_error *
1784 6c7ab921 2019-03-18 stsp got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
1785 6c7ab921 2019-03-18 stsp const char *arg)
1786 6c7ab921 2019-03-18 stsp {
1787 6c7ab921 2019-03-18 stsp const struct got_error *err = NULL;
1788 6c7ab921 2019-03-18 stsp char *resolved, *path = NULL;
1789 6c7ab921 2019-03-18 stsp size_t len;
1790 6c7ab921 2019-03-18 stsp
1791 6c7ab921 2019-03-18 stsp *wt_path = NULL;
1792 6c7ab921 2019-03-18 stsp
1793 6c7ab921 2019-03-18 stsp resolved = realpath(arg, NULL);
1794 6c7ab921 2019-03-18 stsp if (resolved == NULL)
1795 6c7ab921 2019-03-18 stsp return got_error_from_errno();
1796 6c7ab921 2019-03-18 stsp
1797 6c7ab921 2019-03-18 stsp if (strncmp(got_worktree_get_root_path(worktree), resolved,
1798 6c7ab921 2019-03-18 stsp strlen(got_worktree_get_root_path(worktree)))) {
1799 6c7ab921 2019-03-18 stsp err = got_error(GOT_ERR_BAD_PATH);
1800 6c7ab921 2019-03-18 stsp goto done;
1801 6c7ab921 2019-03-18 stsp }
1802 6c7ab921 2019-03-18 stsp
1803 c4cdcb68 2019-04-03 stsp path = strdup(resolved +
1804 c4cdcb68 2019-04-03 stsp strlen(got_worktree_get_root_path(worktree)) + 1 /* skip '/' */);
1805 6c7ab921 2019-03-18 stsp if (path == NULL) {
1806 6c7ab921 2019-03-18 stsp err = got_error_from_errno();
1807 6c7ab921 2019-03-18 stsp goto done;
1808 6c7ab921 2019-03-18 stsp }
1809 6c7ab921 2019-03-18 stsp
1810 6c7ab921 2019-03-18 stsp /* XXX status walk can't deal with trailing slash! */
1811 6c7ab921 2019-03-18 stsp len = strlen(path);
1812 6c7ab921 2019-03-18 stsp while (path[len - 1] == '/') {
1813 6c7ab921 2019-03-18 stsp path[len - 1] = '\0';
1814 6c7ab921 2019-03-18 stsp len--;
1815 6c7ab921 2019-03-18 stsp }
1816 6c7ab921 2019-03-18 stsp done:
1817 6c7ab921 2019-03-18 stsp free(resolved);
1818 6c7ab921 2019-03-18 stsp if (err == NULL)
1819 6c7ab921 2019-03-18 stsp *wt_path = path;
1820 6c7ab921 2019-03-18 stsp else
1821 6c7ab921 2019-03-18 stsp free(path);
1822 d00136be 2019-03-26 stsp return err;
1823 d00136be 2019-03-26 stsp }
1824 d00136be 2019-03-26 stsp
1825 d00136be 2019-03-26 stsp const struct got_error *
1826 031a5338 2019-03-26 stsp got_worktree_schedule_add(struct got_worktree *worktree,
1827 031a5338 2019-03-26 stsp const char *ondisk_path, got_worktree_status_cb status_cb, void *status_arg,
1828 031a5338 2019-03-26 stsp struct got_repository *repo)
1829 d00136be 2019-03-26 stsp {
1830 d00136be 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
1831 d00136be 2019-03-26 stsp struct got_fileindex_entry *ie = NULL;
1832 031a5338 2019-03-26 stsp char *relpath, *fileindex_path = NULL, *new_fileindex_path = NULL;
1833 d00136be 2019-03-26 stsp FILE *index = NULL, *new_index = NULL;
1834 d00136be 2019-03-26 stsp const struct got_error *err = NULL, *unlockerr = NULL;
1835 031a5338 2019-03-26 stsp int ie_added = 0;
1836 d00136be 2019-03-26 stsp
1837 d00136be 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
1838 d00136be 2019-03-26 stsp if (err)
1839 d00136be 2019-03-26 stsp return err;
1840 d00136be 2019-03-26 stsp
1841 031a5338 2019-03-26 stsp err = got_path_skip_common_ancestor(&relpath,
1842 d00136be 2019-03-26 stsp got_worktree_get_root_path(worktree), ondisk_path);
1843 d00136be 2019-03-26 stsp if (err)
1844 d00136be 2019-03-26 stsp goto done;
1845 d00136be 2019-03-26 stsp
1846 d00136be 2019-03-26 stsp fileindex = got_fileindex_alloc();
1847 d00136be 2019-03-26 stsp if (fileindex == NULL) {
1848 d00136be 2019-03-26 stsp err = got_error_from_errno();
1849 d00136be 2019-03-26 stsp goto done;
1850 d00136be 2019-03-26 stsp }
1851 d00136be 2019-03-26 stsp
1852 d00136be 2019-03-26 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1853 d00136be 2019-03-26 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1854 d00136be 2019-03-26 stsp err = got_error_from_errno();
1855 d00136be 2019-03-26 stsp fileindex_path = NULL;
1856 d00136be 2019-03-26 stsp goto done;
1857 d00136be 2019-03-26 stsp }
1858 d00136be 2019-03-26 stsp
1859 d00136be 2019-03-26 stsp index = fopen(fileindex_path, "rb");
1860 d00136be 2019-03-26 stsp if (index == NULL) {
1861 d00136be 2019-03-26 stsp err = got_error_from_errno();
1862 d00136be 2019-03-26 stsp goto done;
1863 d00136be 2019-03-26 stsp }
1864 d00136be 2019-03-26 stsp
1865 d00136be 2019-03-26 stsp err = got_fileindex_read(fileindex, index);
1866 d00136be 2019-03-26 stsp if (err)
1867 d00136be 2019-03-26 stsp goto done;
1868 d00136be 2019-03-26 stsp
1869 5c99ca9f 2019-03-27 stsp if (got_fileindex_entry_get(fileindex, relpath) != NULL) {
1870 5c99ca9f 2019-03-27 stsp err = got_error_set_errno(EEXIST);
1871 5c99ca9f 2019-03-27 stsp goto done;
1872 5c99ca9f 2019-03-27 stsp }
1873 5c99ca9f 2019-03-27 stsp
1874 5c99ca9f 2019-03-27 stsp err = got_fileindex_entry_alloc(&ie, ondisk_path, relpath, NULL, NULL);
1875 5c99ca9f 2019-03-27 stsp if (err)
1876 5c99ca9f 2019-03-27 stsp goto done;
1877 5c99ca9f 2019-03-27 stsp
1878 d00136be 2019-03-26 stsp err = got_fileindex_entry_add(fileindex, ie);
1879 d00136be 2019-03-26 stsp if (err)
1880 d00136be 2019-03-26 stsp goto done;
1881 031a5338 2019-03-26 stsp ie_added = 1; /* now owned by fileindex; don't free separately */
1882 d00136be 2019-03-26 stsp
1883 d00136be 2019-03-26 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
1884 d00136be 2019-03-26 stsp fileindex_path);
1885 d00136be 2019-03-26 stsp if (err)
1886 d00136be 2019-03-26 stsp goto done;
1887 d00136be 2019-03-26 stsp
1888 d00136be 2019-03-26 stsp err = got_fileindex_write(fileindex, new_index);
1889 d00136be 2019-03-26 stsp if (err)
1890 d00136be 2019-03-26 stsp goto done;
1891 d00136be 2019-03-26 stsp
1892 d00136be 2019-03-26 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
1893 d00136be 2019-03-26 stsp err = got_error_from_errno();
1894 d00136be 2019-03-26 stsp goto done;
1895 d00136be 2019-03-26 stsp }
1896 d00136be 2019-03-26 stsp
1897 d00136be 2019-03-26 stsp free(new_fileindex_path);
1898 d00136be 2019-03-26 stsp new_fileindex_path = NULL;
1899 031a5338 2019-03-26 stsp
1900 031a5338 2019-03-26 stsp err = report_file_status(ie, ondisk_path, status_cb, status_arg, repo);
1901 d00136be 2019-03-26 stsp done:
1902 d00136be 2019-03-26 stsp if (index) {
1903 d00136be 2019-03-26 stsp if (fclose(index) != 0 && err == NULL)
1904 d00136be 2019-03-26 stsp err = got_error_from_errno();
1905 d00136be 2019-03-26 stsp }
1906 d00136be 2019-03-26 stsp if (new_fileindex_path) {
1907 d00136be 2019-03-26 stsp if (unlink(new_fileindex_path) != 0 && err == NULL)
1908 d00136be 2019-03-26 stsp err = got_error_from_errno();
1909 d00136be 2019-03-26 stsp free(new_fileindex_path);
1910 d00136be 2019-03-26 stsp }
1911 5c99ca9f 2019-03-27 stsp if (ie && !ie_added)
1912 d00136be 2019-03-26 stsp got_fileindex_entry_free(ie);
1913 d00136be 2019-03-26 stsp if (fileindex)
1914 d00136be 2019-03-26 stsp got_fileindex_free(fileindex);
1915 d00136be 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
1916 d00136be 2019-03-26 stsp if (unlockerr && err == NULL)
1917 d00136be 2019-03-26 stsp err = unlockerr;
1918 031a5338 2019-03-26 stsp free(relpath);
1919 6c7ab921 2019-03-18 stsp return err;
1920 6c7ab921 2019-03-18 stsp }
1921 2ec1f75b 2019-03-26 stsp
1922 2ec1f75b 2019-03-26 stsp const struct got_error *
1923 2ec1f75b 2019-03-26 stsp got_worktree_schedule_delete(struct got_worktree *worktree,
1924 2ec1f75b 2019-03-26 stsp const char *ondisk_path, int delete_local_mods,
1925 2ec1f75b 2019-03-26 stsp got_worktree_status_cb status_cb, void *status_arg,
1926 2ec1f75b 2019-03-26 stsp struct got_repository *repo)
1927 2ec1f75b 2019-03-26 stsp {
1928 2ec1f75b 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
1929 2ec1f75b 2019-03-26 stsp struct got_fileindex_entry *ie = NULL;
1930 2ec1f75b 2019-03-26 stsp char *relpath, *fileindex_path = NULL, *new_fileindex_path = NULL;
1931 2ec1f75b 2019-03-26 stsp FILE *index = NULL, *new_index = NULL;
1932 2ec1f75b 2019-03-26 stsp const struct got_error *err = NULL, *unlockerr = NULL;
1933 2ec1f75b 2019-03-26 stsp unsigned char status;
1934 2ec1f75b 2019-03-26 stsp struct stat sb;
1935 2ec1f75b 2019-03-26 stsp
1936 2ec1f75b 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
1937 2ec1f75b 2019-03-26 stsp if (err)
1938 2ec1f75b 2019-03-26 stsp return err;
1939 2ec1f75b 2019-03-26 stsp
1940 2ec1f75b 2019-03-26 stsp err = got_path_skip_common_ancestor(&relpath,
1941 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(worktree), ondisk_path);
1942 2ec1f75b 2019-03-26 stsp if (err)
1943 2ec1f75b 2019-03-26 stsp goto done;
1944 2ec1f75b 2019-03-26 stsp
1945 2ec1f75b 2019-03-26 stsp fileindex = got_fileindex_alloc();
1946 2ec1f75b 2019-03-26 stsp if (fileindex == NULL) {
1947 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
1948 2ec1f75b 2019-03-26 stsp goto done;
1949 2ec1f75b 2019-03-26 stsp }
1950 2ec1f75b 2019-03-26 stsp
1951 2ec1f75b 2019-03-26 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
1952 2ec1f75b 2019-03-26 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1953 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
1954 2ec1f75b 2019-03-26 stsp fileindex_path = NULL;
1955 2ec1f75b 2019-03-26 stsp goto done;
1956 2ec1f75b 2019-03-26 stsp }
1957 2ec1f75b 2019-03-26 stsp
1958 2ec1f75b 2019-03-26 stsp index = fopen(fileindex_path, "rb");
1959 2ec1f75b 2019-03-26 stsp if (index == NULL) {
1960 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
1961 2ec1f75b 2019-03-26 stsp goto done;
1962 2ec1f75b 2019-03-26 stsp }
1963 2ec1f75b 2019-03-26 stsp
1964 2ec1f75b 2019-03-26 stsp err = got_fileindex_read(fileindex, index);
1965 2ec1f75b 2019-03-26 stsp if (err)
1966 2ec1f75b 2019-03-26 stsp goto done;
1967 2ec1f75b 2019-03-26 stsp
1968 2ec1f75b 2019-03-26 stsp ie = got_fileindex_entry_get(fileindex, relpath);
1969 2ec1f75b 2019-03-26 stsp if (ie == NULL) {
1970 2ec1f75b 2019-03-26 stsp err = got_error(GOT_ERR_BAD_PATH);
1971 2ec1f75b 2019-03-26 stsp goto done;
1972 2ec1f75b 2019-03-26 stsp }
1973 2ec1f75b 2019-03-26 stsp
1974 2ec1f75b 2019-03-26 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
1975 2ec1f75b 2019-03-26 stsp if (err)
1976 2ec1f75b 2019-03-26 stsp goto done;
1977 2ec1f75b 2019-03-26 stsp
1978 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_NO_CHANGE) {
1979 71a29355 2019-03-27 stsp if (status == GOT_STATUS_DELETE) {
1980 71a29355 2019-03-27 stsp err = got_error_set_errno(ENOENT);
1981 71a29355 2019-03-27 stsp goto done;
1982 71a29355 2019-03-27 stsp }
1983 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_MODIFY) {
1984 2ec1f75b 2019-03-26 stsp err = got_error(GOT_ERR_FILE_STATUS);
1985 2ec1f75b 2019-03-26 stsp goto done;
1986 2ec1f75b 2019-03-26 stsp }
1987 2ec1f75b 2019-03-26 stsp if (!delete_local_mods) {
1988 2ec1f75b 2019-03-26 stsp err = got_error(GOT_ERR_FILE_MODIFIED);
1989 2ec1f75b 2019-03-26 stsp goto done;
1990 2ec1f75b 2019-03-26 stsp }
1991 2ec1f75b 2019-03-26 stsp }
1992 2ec1f75b 2019-03-26 stsp
1993 2ec1f75b 2019-03-26 stsp if (unlink(ondisk_path) != 0) {
1994 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
1995 2ec1f75b 2019-03-26 stsp goto done;
1996 2ec1f75b 2019-03-26 stsp }
1997 2ec1f75b 2019-03-26 stsp
1998 2ec1f75b 2019-03-26 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
1999 2ec1f75b 2019-03-26 stsp
2000 2ec1f75b 2019-03-26 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
2001 2ec1f75b 2019-03-26 stsp fileindex_path);
2002 2ec1f75b 2019-03-26 stsp if (err)
2003 2ec1f75b 2019-03-26 stsp goto done;
2004 2ec1f75b 2019-03-26 stsp
2005 2ec1f75b 2019-03-26 stsp err = got_fileindex_write(fileindex, new_index);
2006 2ec1f75b 2019-03-26 stsp if (err)
2007 2ec1f75b 2019-03-26 stsp goto done;
2008 2ec1f75b 2019-03-26 stsp
2009 2ec1f75b 2019-03-26 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
2010 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
2011 2ec1f75b 2019-03-26 stsp goto done;
2012 2ec1f75b 2019-03-26 stsp }
2013 2ec1f75b 2019-03-26 stsp
2014 2ec1f75b 2019-03-26 stsp free(new_fileindex_path);
2015 2ec1f75b 2019-03-26 stsp new_fileindex_path = NULL;
2016 2ec1f75b 2019-03-26 stsp
2017 2ec1f75b 2019-03-26 stsp err = report_file_status(ie, ondisk_path, status_cb, status_arg, repo);
2018 2ec1f75b 2019-03-26 stsp done:
2019 2ec1f75b 2019-03-26 stsp free(relpath);
2020 2ec1f75b 2019-03-26 stsp if (index) {
2021 2ec1f75b 2019-03-26 stsp if (fclose(index) != 0 && err == NULL)
2022 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
2023 2ec1f75b 2019-03-26 stsp }
2024 2ec1f75b 2019-03-26 stsp if (new_fileindex_path) {
2025 2ec1f75b 2019-03-26 stsp if (unlink(new_fileindex_path) != 0 && err == NULL)
2026 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
2027 2ec1f75b 2019-03-26 stsp free(new_fileindex_path);
2028 2ec1f75b 2019-03-26 stsp }
2029 2ec1f75b 2019-03-26 stsp if (fileindex)
2030 2ec1f75b 2019-03-26 stsp got_fileindex_free(fileindex);
2031 2ec1f75b 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2032 2ec1f75b 2019-03-26 stsp if (unlockerr && err == NULL)
2033 2ec1f75b 2019-03-26 stsp err = unlockerr;
2034 2ec1f75b 2019-03-26 stsp return err;
2035 2ec1f75b 2019-03-26 stsp }
2036 a129376b 2019-03-28 stsp
2037 a129376b 2019-03-28 stsp const struct got_error *
2038 a129376b 2019-03-28 stsp got_worktree_revert(struct got_worktree *worktree,
2039 a129376b 2019-03-28 stsp const char *ondisk_path,
2040 a129376b 2019-03-28 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2041 a129376b 2019-03-28 stsp struct got_repository *repo)
2042 a129376b 2019-03-28 stsp {
2043 a129376b 2019-03-28 stsp struct got_fileindex *fileindex = NULL;
2044 a129376b 2019-03-28 stsp struct got_fileindex_entry *ie = NULL;
2045 a129376b 2019-03-28 stsp char *relpath, *fileindex_path = NULL, *new_fileindex_path = NULL;
2046 a129376b 2019-03-28 stsp char *tree_path = NULL, *parent_path, *te_name;
2047 a129376b 2019-03-28 stsp FILE *index = NULL, *new_index = NULL;
2048 a129376b 2019-03-28 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2049 a129376b 2019-03-28 stsp struct got_tree_object *tree = NULL;
2050 a129376b 2019-03-28 stsp struct got_object_id id, *tree_id = NULL;
2051 a129376b 2019-03-28 stsp const struct got_tree_entry *te;
2052 a129376b 2019-03-28 stsp struct got_blob_object *blob = NULL;
2053 a129376b 2019-03-28 stsp unsigned char status;
2054 a129376b 2019-03-28 stsp struct stat sb;
2055 a129376b 2019-03-28 stsp
2056 a129376b 2019-03-28 stsp err = lock_worktree(worktree, LOCK_EX);
2057 a129376b 2019-03-28 stsp if (err)
2058 a129376b 2019-03-28 stsp return err;
2059 a129376b 2019-03-28 stsp
2060 a129376b 2019-03-28 stsp err = got_path_skip_common_ancestor(&relpath,
2061 a129376b 2019-03-28 stsp got_worktree_get_root_path(worktree), ondisk_path);
2062 a129376b 2019-03-28 stsp if (err)
2063 a129376b 2019-03-28 stsp goto done;
2064 a129376b 2019-03-28 stsp
2065 a129376b 2019-03-28 stsp fileindex = got_fileindex_alloc();
2066 a129376b 2019-03-28 stsp if (fileindex == NULL) {
2067 a129376b 2019-03-28 stsp err = got_error_from_errno();
2068 a129376b 2019-03-28 stsp goto done;
2069 a129376b 2019-03-28 stsp }
2070 a129376b 2019-03-28 stsp
2071 a129376b 2019-03-28 stsp if (asprintf(&fileindex_path, "%s/%s/%s", worktree->root_path,
2072 a129376b 2019-03-28 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2073 a129376b 2019-03-28 stsp err = got_error_from_errno();
2074 a129376b 2019-03-28 stsp fileindex_path = NULL;
2075 a129376b 2019-03-28 stsp goto done;
2076 a129376b 2019-03-28 stsp }
2077 a129376b 2019-03-28 stsp
2078 a129376b 2019-03-28 stsp index = fopen(fileindex_path, "rb");
2079 a129376b 2019-03-28 stsp if (index == NULL) {
2080 a129376b 2019-03-28 stsp err = got_error_from_errno();
2081 a129376b 2019-03-28 stsp goto done;
2082 a129376b 2019-03-28 stsp }
2083 a129376b 2019-03-28 stsp
2084 a129376b 2019-03-28 stsp err = got_fileindex_read(fileindex, index);
2085 a129376b 2019-03-28 stsp if (err)
2086 a129376b 2019-03-28 stsp goto done;
2087 a129376b 2019-03-28 stsp
2088 a129376b 2019-03-28 stsp ie = got_fileindex_entry_get(fileindex, relpath);
2089 a129376b 2019-03-28 stsp if (ie == NULL) {
2090 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_BAD_PATH);
2091 a129376b 2019-03-28 stsp goto done;
2092 a129376b 2019-03-28 stsp }
2093 a129376b 2019-03-28 stsp
2094 a129376b 2019-03-28 stsp /* Construct in-repository path of tree which contains this blob. */
2095 a129376b 2019-03-28 stsp err = got_path_dirname(&parent_path, ie->path);
2096 a129376b 2019-03-28 stsp if (err) {
2097 a129376b 2019-03-28 stsp if (err->code != GOT_ERR_BAD_PATH)
2098 a129376b 2019-03-28 stsp goto done;
2099 a129376b 2019-03-28 stsp parent_path = "/";
2100 a129376b 2019-03-28 stsp }
2101 a129376b 2019-03-28 stsp if (got_path_is_root_dir(worktree->path_prefix)) {
2102 a129376b 2019-03-28 stsp tree_path = strdup(parent_path);
2103 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2104 a129376b 2019-03-28 stsp err = got_error_from_errno();
2105 a129376b 2019-03-28 stsp goto done;
2106 a129376b 2019-03-28 stsp }
2107 a129376b 2019-03-28 stsp } else {
2108 a129376b 2019-03-28 stsp if (got_path_is_root_dir(parent_path)) {
2109 a129376b 2019-03-28 stsp tree_path = strdup(worktree->path_prefix);
2110 a129376b 2019-03-28 stsp if (tree_path == NULL) {
2111 a129376b 2019-03-28 stsp err = got_error_from_errno();
2112 a129376b 2019-03-28 stsp goto done;
2113 a129376b 2019-03-28 stsp }
2114 a129376b 2019-03-28 stsp } else {
2115 a129376b 2019-03-28 stsp if (asprintf(&tree_path, "%s/%s",
2116 a129376b 2019-03-28 stsp worktree->path_prefix, parent_path) == -1) {
2117 a129376b 2019-03-28 stsp err = got_error_from_errno();
2118 a129376b 2019-03-28 stsp goto done;
2119 a129376b 2019-03-28 stsp }
2120 a129376b 2019-03-28 stsp }
2121 a129376b 2019-03-28 stsp }
2122 a129376b 2019-03-28 stsp
2123 a129376b 2019-03-28 stsp err = got_object_id_by_path(&tree_id, repo, worktree->base_commit_id,
2124 a129376b 2019-03-28 stsp tree_path);
2125 a129376b 2019-03-28 stsp if (err)
2126 a129376b 2019-03-28 stsp goto done;
2127 a129376b 2019-03-28 stsp
2128 a129376b 2019-03-28 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
2129 a129376b 2019-03-28 stsp if (err)
2130 a129376b 2019-03-28 stsp goto done;
2131 a129376b 2019-03-28 stsp
2132 a129376b 2019-03-28 stsp te_name = basename(ie->path);
2133 a129376b 2019-03-28 stsp if (te_name == NULL) {
2134 a129376b 2019-03-28 stsp err = got_error_from_errno();
2135 a129376b 2019-03-28 stsp goto done;
2136 a129376b 2019-03-28 stsp }
2137 a129376b 2019-03-28 stsp
2138 a129376b 2019-03-28 stsp err = get_file_status(&status, &sb, ie, ondisk_path, repo);
2139 a129376b 2019-03-28 stsp if (err)
2140 a129376b 2019-03-28 stsp goto done;
2141 a129376b 2019-03-28 stsp
2142 a129376b 2019-03-28 stsp te = got_object_tree_find_entry(tree, te_name);
2143 a129376b 2019-03-28 stsp if (te == NULL && status != GOT_STATUS_ADD) {
2144 a129376b 2019-03-28 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
2145 a129376b 2019-03-28 stsp goto done;
2146 a129376b 2019-03-28 stsp }
2147 a129376b 2019-03-28 stsp
2148 a129376b 2019-03-28 stsp switch (status) {
2149 a129376b 2019-03-28 stsp case GOT_STATUS_ADD:
2150 a129376b 2019-03-28 stsp (*progress_cb)(progress_arg, GOT_STATUS_REVERT, ie->path);
2151 a129376b 2019-03-28 stsp got_fileindex_entry_remove(fileindex, ie);
2152 a129376b 2019-03-28 stsp break;
2153 a129376b 2019-03-28 stsp case GOT_STATUS_DELETE:
2154 a129376b 2019-03-28 stsp case GOT_STATUS_MODIFY:
2155 a129376b 2019-03-28 stsp case GOT_STATUS_CONFLICT:
2156 a129376b 2019-03-28 stsp case GOT_STATUS_MISSING:
2157 a129376b 2019-03-28 stsp memcpy(id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2158 a129376b 2019-03-28 stsp err = got_object_open_as_blob(&blob, repo, &id, 8192);
2159 a129376b 2019-03-28 stsp if (err)
2160 a129376b 2019-03-28 stsp goto done;
2161 a129376b 2019-03-28 stsp err = install_blob(worktree, ondisk_path, ie->path,
2162 a129376b 2019-03-28 stsp te->mode, sb.st_mode, blob, 0, 1, repo, progress_cb,
2163 a129376b 2019-03-28 stsp progress_arg);
2164 a129376b 2019-03-28 stsp if (err)
2165 a129376b 2019-03-28 stsp goto done;
2166 a129376b 2019-03-28 stsp if (status == GOT_STATUS_DELETE) {
2167 a129376b 2019-03-28 stsp err = update_blob_fileindex_entry(worktree,
2168 a129376b 2019-03-28 stsp fileindex, ie, ondisk_path, ie->path, blob, 1);
2169 a129376b 2019-03-28 stsp if (err)
2170 a129376b 2019-03-28 stsp goto done;
2171 a129376b 2019-03-28 stsp }
2172 a129376b 2019-03-28 stsp break;
2173 a129376b 2019-03-28 stsp default:
2174 a129376b 2019-03-28 stsp goto done;
2175 a129376b 2019-03-28 stsp }
2176 a129376b 2019-03-28 stsp
2177 a129376b 2019-03-28 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
2178 a129376b 2019-03-28 stsp fileindex_path);
2179 a129376b 2019-03-28 stsp if (err)
2180 a129376b 2019-03-28 stsp goto done;
2181 a129376b 2019-03-28 stsp
2182 a129376b 2019-03-28 stsp err = got_fileindex_write(fileindex, new_index);
2183 a129376b 2019-03-28 stsp if (err)
2184 a129376b 2019-03-28 stsp goto done;
2185 a129376b 2019-03-28 stsp
2186 a129376b 2019-03-28 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
2187 a129376b 2019-03-28 stsp err = got_error_from_errno();
2188 a129376b 2019-03-28 stsp goto done;
2189 a129376b 2019-03-28 stsp }
2190 a129376b 2019-03-28 stsp
2191 a129376b 2019-03-28 stsp free(new_fileindex_path);
2192 a129376b 2019-03-28 stsp new_fileindex_path = NULL;
2193 a129376b 2019-03-28 stsp done:
2194 a129376b 2019-03-28 stsp free(relpath);
2195 a129376b 2019-03-28 stsp free(tree_path);
2196 a129376b 2019-03-28 stsp if (blob)
2197 a129376b 2019-03-28 stsp got_object_blob_close(blob);
2198 a129376b 2019-03-28 stsp if (tree)
2199 a129376b 2019-03-28 stsp got_object_tree_close(tree);
2200 a129376b 2019-03-28 stsp free(tree_id);
2201 a129376b 2019-03-28 stsp if (index) {
2202 a129376b 2019-03-28 stsp if (fclose(index) != 0 && err == NULL)
2203 a129376b 2019-03-28 stsp err = got_error_from_errno();
2204 a129376b 2019-03-28 stsp }
2205 a129376b 2019-03-28 stsp if (new_fileindex_path) {
2206 a129376b 2019-03-28 stsp if (unlink(new_fileindex_path) != 0 && err == NULL)
2207 a129376b 2019-03-28 stsp err = got_error_from_errno();
2208 a129376b 2019-03-28 stsp free(new_fileindex_path);
2209 a129376b 2019-03-28 stsp }
2210 a129376b 2019-03-28 stsp if (fileindex)
2211 a129376b 2019-03-28 stsp got_fileindex_free(fileindex);
2212 a129376b 2019-03-28 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2213 a129376b 2019-03-28 stsp if (unlockerr && err == NULL)
2214 a129376b 2019-03-28 stsp err = unlockerr;
2215 c4296144 2019-05-09 stsp return err;
2216 c4296144 2019-05-09 stsp }
2217 cf066bf8 2019-05-09 stsp
2218 ed175427 2019-05-09 stsp struct commitable {
2219 24519714 2019-05-09 stsp char *path;
2220 44d03001 2019-05-09 stsp char *in_repo_path;
2221 768aea60 2019-05-09 stsp char *ondisk_path;
2222 cf066bf8 2019-05-09 stsp unsigned char status;
2223 cf066bf8 2019-05-09 stsp struct got_object_id *id;
2224 ca2503ea 2019-05-09 stsp struct got_object_id *base_id;
2225 768aea60 2019-05-09 stsp mode_t mode;
2226 cf066bf8 2019-05-09 stsp };
2227 c4296144 2019-05-09 stsp
2228 cf066bf8 2019-05-09 stsp static void
2229 ed175427 2019-05-09 stsp free_commitable(struct commitable *ct)
2230 cf066bf8 2019-05-09 stsp {
2231 24519714 2019-05-09 stsp free(ct->path);
2232 44d03001 2019-05-09 stsp free(ct->in_repo_path);
2233 768aea60 2019-05-09 stsp free(ct->ondisk_path);
2234 cf066bf8 2019-05-09 stsp free(ct->id);
2235 ca2503ea 2019-05-09 stsp free(ct->base_id);
2236 cf066bf8 2019-05-09 stsp free(ct);
2237 cf066bf8 2019-05-09 stsp }
2238 24519714 2019-05-09 stsp
2239 ed175427 2019-05-09 stsp struct collect_commitables_arg {
2240 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths;
2241 24519714 2019-05-09 stsp struct got_repository *repo;
2242 24519714 2019-05-09 stsp struct got_worktree *worktree;
2243 24519714 2019-05-09 stsp };
2244 cf066bf8 2019-05-09 stsp
2245 c4296144 2019-05-09 stsp static const struct got_error *
2246 036813ee 2019-05-09 stsp collect_commitables(void *arg, unsigned char status, const char *relpath,
2247 c4296144 2019-05-09 stsp struct got_object_id *id)
2248 c4296144 2019-05-09 stsp {
2249 ed175427 2019-05-09 stsp struct collect_commitables_arg *a = arg;
2250 c4296144 2019-05-09 stsp const struct got_error *err = NULL;
2251 ed175427 2019-05-09 stsp struct commitable *ct = NULL;
2252 c4296144 2019-05-09 stsp struct got_pathlist_entry *new = NULL;
2253 036813ee 2019-05-09 stsp char *parent_path = NULL, *path = NULL;
2254 768aea60 2019-05-09 stsp struct stat sb;
2255 c4296144 2019-05-09 stsp
2256 c4296144 2019-05-09 stsp if (status == GOT_STATUS_CONFLICT)
2257 c4296144 2019-05-09 stsp return got_error(GOT_ERR_COMMIT_CONFLICT);
2258 c4296144 2019-05-09 stsp
2259 c4296144 2019-05-09 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
2260 c4296144 2019-05-09 stsp status != GOT_STATUS_DELETE)
2261 c4296144 2019-05-09 stsp return NULL;
2262 0b5cc0d6 2019-05-09 stsp
2263 036813ee 2019-05-09 stsp if (asprintf(&path, "/%s", relpath) == -1) {
2264 036813ee 2019-05-09 stsp err = got_error_from_errno();
2265 036813ee 2019-05-09 stsp goto done;
2266 036813ee 2019-05-09 stsp }
2267 036813ee 2019-05-09 stsp if (strcmp(path, "/") == 0) {
2268 036813ee 2019-05-09 stsp parent_path = strdup("");
2269 69960a46 2019-05-09 stsp if (parent_path == NULL)
2270 69960a46 2019-05-09 stsp return got_error_from_errno();
2271 69960a46 2019-05-09 stsp } else {
2272 69960a46 2019-05-09 stsp err = got_path_dirname(&parent_path, path);
2273 69960a46 2019-05-09 stsp if (err)
2274 69960a46 2019-05-09 stsp return err;
2275 69960a46 2019-05-09 stsp }
2276 c4296144 2019-05-09 stsp
2277 036813ee 2019-05-09 stsp ct = calloc(1, sizeof(*ct));
2278 cf066bf8 2019-05-09 stsp if (ct == NULL) {
2279 c4296144 2019-05-09 stsp err = got_error_from_errno();
2280 c4296144 2019-05-09 stsp goto done;
2281 768aea60 2019-05-09 stsp }
2282 768aea60 2019-05-09 stsp
2283 768aea60 2019-05-09 stsp if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
2284 768aea60 2019-05-09 stsp relpath) == -1) {
2285 768aea60 2019-05-09 stsp err = got_error_from_errno();
2286 768aea60 2019-05-09 stsp goto done;
2287 768aea60 2019-05-09 stsp }
2288 768aea60 2019-05-09 stsp if (status == GOT_STATUS_DELETE) {
2289 768aea60 2019-05-09 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
2290 768aea60 2019-05-09 stsp } else {
2291 768aea60 2019-05-09 stsp if (lstat(ct->ondisk_path, &sb) != 0) {
2292 768aea60 2019-05-09 stsp err = got_error_from_errno();
2293 768aea60 2019-05-09 stsp goto done;
2294 768aea60 2019-05-09 stsp }
2295 768aea60 2019-05-09 stsp ct->mode = sb.st_mode;
2296 c4296144 2019-05-09 stsp }
2297 c4296144 2019-05-09 stsp
2298 44d03001 2019-05-09 stsp if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
2299 44d03001 2019-05-09 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
2300 44d03001 2019-05-09 stsp relpath) == -1) {
2301 44d03001 2019-05-09 stsp err = got_error_from_errno();
2302 44d03001 2019-05-09 stsp goto done;
2303 44d03001 2019-05-09 stsp }
2304 44d03001 2019-05-09 stsp
2305 cf066bf8 2019-05-09 stsp ct->status = status;
2306 036813ee 2019-05-09 stsp ct->id = NULL; /* will be filled in when blob gets created */
2307 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD) {
2308 036813ee 2019-05-09 stsp ct->base_id = got_object_id_dup(id);
2309 036813ee 2019-05-09 stsp if (ct->base_id == NULL) {
2310 036813ee 2019-05-09 stsp err = got_error_from_errno();
2311 036813ee 2019-05-09 stsp goto done;
2312 036813ee 2019-05-09 stsp }
2313 ca2503ea 2019-05-09 stsp }
2314 24519714 2019-05-09 stsp ct->path = strdup(path);
2315 24519714 2019-05-09 stsp if (ct->path == NULL) {
2316 24519714 2019-05-09 stsp err = got_error_from_errno();
2317 24519714 2019-05-09 stsp goto done;
2318 24519714 2019-05-09 stsp }
2319 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
2320 c4296144 2019-05-09 stsp done:
2321 c42269f6 2019-05-09 stsp if (ct && (err || new == NULL))
2322 ed175427 2019-05-09 stsp free_commitable(ct);
2323 24519714 2019-05-09 stsp free(parent_path);
2324 036813ee 2019-05-09 stsp free(path);
2325 a129376b 2019-03-28 stsp return err;
2326 a129376b 2019-03-28 stsp }
2327 c4296144 2019-05-09 stsp
2328 036813ee 2019-05-09 stsp static const struct got_error *write_tree(struct got_object_id **,
2329 036813ee 2019-05-09 stsp struct got_tree_object *, const char *, struct got_pathlist_head *,
2330 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2331 036813ee 2019-05-09 stsp struct got_repository *);
2332 ed175427 2019-05-09 stsp
2333 ed175427 2019-05-09 stsp static const struct got_error *
2334 036813ee 2019-05-09 stsp write_subtree(struct got_object_id **new_subtree_id,
2335 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *parent_path,
2336 afa376bf 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
2337 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2338 afa376bf 2019-05-09 stsp struct got_repository *repo)
2339 ed175427 2019-05-09 stsp {
2340 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
2341 036813ee 2019-05-09 stsp struct got_tree_object *subtree;
2342 036813ee 2019-05-09 stsp char *subpath;
2343 ed175427 2019-05-09 stsp
2344 036813ee 2019-05-09 stsp if (asprintf(&subpath, "%s%s%s", parent_path,
2345 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
2346 036813ee 2019-05-09 stsp return got_error_from_errno();
2347 ed175427 2019-05-09 stsp
2348 036813ee 2019-05-09 stsp err = got_object_open_as_tree(&subtree, repo, te->id);
2349 ed175427 2019-05-09 stsp if (err)
2350 ed175427 2019-05-09 stsp return err;
2351 ed175427 2019-05-09 stsp
2352 036813ee 2019-05-09 stsp err = write_tree(new_subtree_id, subtree, subpath, commitable_paths,
2353 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
2354 036813ee 2019-05-09 stsp got_object_tree_close(subtree);
2355 036813ee 2019-05-09 stsp free(subpath);
2356 036813ee 2019-05-09 stsp return err;
2357 036813ee 2019-05-09 stsp }
2358 ed175427 2019-05-09 stsp
2359 036813ee 2019-05-09 stsp static const struct got_error *
2360 036813ee 2019-05-09 stsp match_ct_parent_path(int *match, struct commitable *ct, const char *path)
2361 036813ee 2019-05-09 stsp {
2362 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2363 036813ee 2019-05-09 stsp char *ct_parent_path = NULL;
2364 ed175427 2019-05-09 stsp
2365 036813ee 2019-05-09 stsp *match = 0;
2366 ed175427 2019-05-09 stsp
2367 036813ee 2019-05-09 stsp if (strchr(ct->path, '/') == NULL) {
2368 036813ee 2019-05-09 stsp ct_parent_path = strdup("/");
2369 036813ee 2019-05-09 stsp if (ct_parent_path == NULL)
2370 036813ee 2019-05-09 stsp return got_error_from_errno();
2371 036813ee 2019-05-09 stsp } else {
2372 036813ee 2019-05-09 stsp err = got_path_dirname(&ct_parent_path, ct->path);
2373 036813ee 2019-05-09 stsp if (err)
2374 036813ee 2019-05-09 stsp return err;
2375 036813ee 2019-05-09 stsp }
2376 0b5cc0d6 2019-05-09 stsp
2377 036813ee 2019-05-09 stsp *match = (strcmp(path, ct_parent_path) == 0);
2378 036813ee 2019-05-09 stsp free(ct_parent_path);
2379 036813ee 2019-05-09 stsp return err;
2380 036813ee 2019-05-09 stsp }
2381 0b5cc0d6 2019-05-09 stsp
2382 768aea60 2019-05-09 stsp static mode_t
2383 768aea60 2019-05-09 stsp get_ct_file_mode(struct commitable *ct)
2384 768aea60 2019-05-09 stsp {
2385 768aea60 2019-05-09 stsp return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
2386 768aea60 2019-05-09 stsp }
2387 768aea60 2019-05-09 stsp
2388 036813ee 2019-05-09 stsp static const struct got_error *
2389 036813ee 2019-05-09 stsp alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
2390 036813ee 2019-05-09 stsp struct got_tree_entry *te, struct commitable *ct)
2391 036813ee 2019-05-09 stsp {
2392 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2393 ca2503ea 2019-05-09 stsp
2394 036813ee 2019-05-09 stsp *new_te = NULL;
2395 0b5cc0d6 2019-05-09 stsp
2396 036813ee 2019-05-09 stsp err = got_object_tree_entry_dup(new_te, te);
2397 036813ee 2019-05-09 stsp if (err)
2398 036813ee 2019-05-09 stsp goto done;
2399 0b5cc0d6 2019-05-09 stsp
2400 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2401 036813ee 2019-05-09 stsp
2402 036813ee 2019-05-09 stsp free((*new_te)->id);
2403 036813ee 2019-05-09 stsp (*new_te)->id = got_object_id_dup(ct->id);
2404 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2405 036813ee 2019-05-09 stsp err = got_error_from_errno();
2406 036813ee 2019-05-09 stsp goto done;
2407 036813ee 2019-05-09 stsp }
2408 036813ee 2019-05-09 stsp done:
2409 036813ee 2019-05-09 stsp if (err && *new_te) {
2410 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2411 036813ee 2019-05-09 stsp *new_te = NULL;
2412 036813ee 2019-05-09 stsp }
2413 036813ee 2019-05-09 stsp return err;
2414 036813ee 2019-05-09 stsp }
2415 036813ee 2019-05-09 stsp
2416 036813ee 2019-05-09 stsp static const struct got_error *
2417 036813ee 2019-05-09 stsp alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
2418 036813ee 2019-05-09 stsp struct commitable *ct)
2419 036813ee 2019-05-09 stsp {
2420 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2421 036813ee 2019-05-09 stsp char *ct_name;
2422 036813ee 2019-05-09 stsp
2423 036813ee 2019-05-09 stsp *new_te = NULL;
2424 036813ee 2019-05-09 stsp
2425 036813ee 2019-05-09 stsp *new_te = calloc(1, sizeof(*new_te));
2426 036813ee 2019-05-09 stsp if (*new_te == NULL)
2427 036813ee 2019-05-09 stsp return got_error_from_errno();
2428 036813ee 2019-05-09 stsp
2429 036813ee 2019-05-09 stsp ct_name = basename(ct->path);
2430 036813ee 2019-05-09 stsp if (ct_name == NULL) {
2431 036813ee 2019-05-09 stsp err = got_error_from_errno();
2432 036813ee 2019-05-09 stsp goto done;
2433 036813ee 2019-05-09 stsp }
2434 036813ee 2019-05-09 stsp (*new_te)->name = strdup(ct_name);
2435 036813ee 2019-05-09 stsp if ((*new_te)->name == NULL) {
2436 036813ee 2019-05-09 stsp err = got_error_from_errno();
2437 036813ee 2019-05-09 stsp goto done;
2438 036813ee 2019-05-09 stsp }
2439 036813ee 2019-05-09 stsp
2440 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
2441 036813ee 2019-05-09 stsp
2442 036813ee 2019-05-09 stsp (*new_te)->id = got_object_id_dup(ct->id);
2443 036813ee 2019-05-09 stsp if ((*new_te)->id == NULL) {
2444 036813ee 2019-05-09 stsp err = got_error_from_errno();
2445 036813ee 2019-05-09 stsp goto done;
2446 036813ee 2019-05-09 stsp }
2447 036813ee 2019-05-09 stsp done:
2448 036813ee 2019-05-09 stsp if (err && *new_te) {
2449 036813ee 2019-05-09 stsp got_object_tree_entry_close(*new_te);
2450 036813ee 2019-05-09 stsp *new_te = NULL;
2451 036813ee 2019-05-09 stsp }
2452 036813ee 2019-05-09 stsp return err;
2453 036813ee 2019-05-09 stsp }
2454 036813ee 2019-05-09 stsp
2455 036813ee 2019-05-09 stsp static const struct got_error *
2456 036813ee 2019-05-09 stsp insert_tree_entry(struct got_tree_entry *new_te,
2457 036813ee 2019-05-09 stsp struct got_pathlist_head *paths)
2458 036813ee 2019-05-09 stsp {
2459 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2460 036813ee 2019-05-09 stsp struct got_pathlist_entry *new_pe;
2461 036813ee 2019-05-09 stsp
2462 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
2463 036813ee 2019-05-09 stsp if (err)
2464 036813ee 2019-05-09 stsp return err;
2465 036813ee 2019-05-09 stsp if (new_pe == NULL)
2466 036813ee 2019-05-09 stsp return got_error(GOT_ERR_TREE_DUP_ENTRY);
2467 036813ee 2019-05-09 stsp return NULL;
2468 afa376bf 2019-05-09 stsp }
2469 afa376bf 2019-05-09 stsp
2470 afa376bf 2019-05-09 stsp static const struct got_error *
2471 afa376bf 2019-05-09 stsp report_ct_status(struct commitable *ct,
2472 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg)
2473 afa376bf 2019-05-09 stsp {
2474 afa376bf 2019-05-09 stsp const char *ct_path = ct->path;
2475 afa376bf 2019-05-09 stsp while (ct_path[0] == '/')
2476 afa376bf 2019-05-09 stsp ct_path++;
2477 afa376bf 2019-05-09 stsp return (*status_cb)(status_arg, ct->status, ct_path, ct->id);
2478 036813ee 2019-05-09 stsp }
2479 036813ee 2019-05-09 stsp
2480 036813ee 2019-05-09 stsp static const struct got_error *
2481 44d03001 2019-05-09 stsp match_modified_subtree(int *modified, struct got_tree_entry *te,
2482 44d03001 2019-05-09 stsp const char *base_tree_path, struct got_pathlist_head *commitable_paths)
2483 44d03001 2019-05-09 stsp {
2484 44d03001 2019-05-09 stsp const struct got_error *err = NULL;
2485 44d03001 2019-05-09 stsp struct got_pathlist_entry *pe;
2486 44d03001 2019-05-09 stsp char *te_path;
2487 44d03001 2019-05-09 stsp
2488 44d03001 2019-05-09 stsp *modified = 0;
2489 44d03001 2019-05-09 stsp
2490 44d03001 2019-05-09 stsp if (asprintf(&te_path, "%s%s%s", base_tree_path,
2491 44d03001 2019-05-09 stsp got_path_is_root_dir(base_tree_path) ? "" : "/",
2492 44d03001 2019-05-09 stsp te->name) == -1)
2493 44d03001 2019-05-09 stsp return got_error_from_errno();
2494 44d03001 2019-05-09 stsp
2495 44d03001 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2496 44d03001 2019-05-09 stsp struct commitable *ct = pe->data;
2497 44d03001 2019-05-09 stsp char *ct_path;
2498 44d03001 2019-05-09 stsp
2499 44d03001 2019-05-09 stsp if (asprintf(&ct_path, "%s%s%s", base_tree_path,
2500 44d03001 2019-05-09 stsp got_path_is_root_dir(base_tree_path) ? "" : "/",
2501 44d03001 2019-05-09 stsp te->name) == -1) {
2502 44d03001 2019-05-09 stsp err = got_error_from_errno();
2503 44d03001 2019-05-09 stsp break;
2504 44d03001 2019-05-09 stsp }
2505 44d03001 2019-05-09 stsp
2506 44d03001 2019-05-09 stsp *modified = got_path_is_child(ct->in_repo_path, te_path,
2507 44d03001 2019-05-09 stsp strlen(te_path));
2508 44d03001 2019-05-09 stsp if (*modified)
2509 44d03001 2019-05-09 stsp break;
2510 44d03001 2019-05-09 stsp }
2511 44d03001 2019-05-09 stsp
2512 44d03001 2019-05-09 stsp free(te_path);
2513 44d03001 2019-05-09 stsp return err;
2514 44d03001 2019-05-09 stsp }
2515 44d03001 2019-05-09 stsp
2516 44d03001 2019-05-09 stsp static const struct got_error *
2517 036813ee 2019-05-09 stsp match_deleted_or_modified_ct(struct commitable **ctp,
2518 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *base_tree_path,
2519 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths)
2520 036813ee 2019-05-09 stsp {
2521 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2522 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
2523 036813ee 2019-05-09 stsp
2524 036813ee 2019-05-09 stsp *ctp = NULL;
2525 036813ee 2019-05-09 stsp
2526 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2527 036813ee 2019-05-09 stsp struct commitable *ct = pe->data;
2528 036813ee 2019-05-09 stsp char *ct_name = NULL;
2529 036813ee 2019-05-09 stsp int path_matches;
2530 036813ee 2019-05-09 stsp
2531 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_MODIFY &&
2532 036813ee 2019-05-09 stsp ct->status != GOT_STATUS_DELETE)
2533 036813ee 2019-05-09 stsp continue;
2534 036813ee 2019-05-09 stsp
2535 036813ee 2019-05-09 stsp if (got_object_id_cmp(ct->base_id, te->id) != 0)
2536 036813ee 2019-05-09 stsp continue;
2537 036813ee 2019-05-09 stsp
2538 036813ee 2019-05-09 stsp err = match_ct_parent_path(&path_matches, ct, base_tree_path);
2539 036813ee 2019-05-09 stsp if (err)
2540 036813ee 2019-05-09 stsp return err;
2541 036813ee 2019-05-09 stsp if (!path_matches)
2542 036813ee 2019-05-09 stsp continue;
2543 036813ee 2019-05-09 stsp
2544 036813ee 2019-05-09 stsp ct_name = basename(pe->path);
2545 036813ee 2019-05-09 stsp if (ct_name == NULL)
2546 036813ee 2019-05-09 stsp return got_error_from_errno();
2547 036813ee 2019-05-09 stsp
2548 036813ee 2019-05-09 stsp if (strcmp(te->name, ct_name) != 0)
2549 036813ee 2019-05-09 stsp continue;
2550 036813ee 2019-05-09 stsp
2551 036813ee 2019-05-09 stsp *ctp = ct;
2552 036813ee 2019-05-09 stsp break;
2553 036813ee 2019-05-09 stsp }
2554 036813ee 2019-05-09 stsp
2555 036813ee 2019-05-09 stsp return err;
2556 036813ee 2019-05-09 stsp }
2557 036813ee 2019-05-09 stsp
2558 036813ee 2019-05-09 stsp static const struct got_error *
2559 036813ee 2019-05-09 stsp write_tree(struct got_object_id **new_tree_id,
2560 036813ee 2019-05-09 stsp struct got_tree_object *base_tree, const char *path_base_tree,
2561 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
2562 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2563 036813ee 2019-05-09 stsp struct got_repository *repo)
2564 036813ee 2019-05-09 stsp {
2565 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
2566 036813ee 2019-05-09 stsp const struct got_tree_entries *base_entries = NULL;
2567 036813ee 2019-05-09 stsp struct got_pathlist_head paths;
2568 036813ee 2019-05-09 stsp struct got_tree_entries new_tree_entries;
2569 2f51b5b3 2019-05-09 stsp struct got_tree_entry *te, *new_te = NULL;
2570 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
2571 036813ee 2019-05-09 stsp
2572 036813ee 2019-05-09 stsp TAILQ_INIT(&paths);
2573 036813ee 2019-05-09 stsp new_tree_entries.nentries = 0;
2574 036813ee 2019-05-09 stsp SIMPLEQ_INIT(&new_tree_entries.head);
2575 036813ee 2019-05-09 stsp
2576 036813ee 2019-05-09 stsp /* Insert, and recurse into, newly added entries first. */
2577 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2578 036813ee 2019-05-09 stsp struct commitable *ct = pe->data;
2579 2f51b5b3 2019-05-09 stsp char *child_path = NULL, *slash;
2580 036813ee 2019-05-09 stsp
2581 036813ee 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD)
2582 036813ee 2019-05-09 stsp continue;
2583 036813ee 2019-05-09 stsp
2584 036813ee 2019-05-09 stsp if (!got_path_is_child(pe->path, path_base_tree,
2585 2f51b5b3 2019-05-09 stsp strlen(path_base_tree)))
2586 036813ee 2019-05-09 stsp continue;
2587 036813ee 2019-05-09 stsp
2588 036813ee 2019-05-09 stsp err = got_path_skip_common_ancestor(&child_path, path_base_tree,
2589 036813ee 2019-05-09 stsp pe->path);
2590 036813ee 2019-05-09 stsp if (err)
2591 036813ee 2019-05-09 stsp goto done;
2592 036813ee 2019-05-09 stsp
2593 2f51b5b3 2019-05-09 stsp slash = strchr(child_path, '/');
2594 2f51b5b3 2019-05-09 stsp if (slash == NULL) {
2595 036813ee 2019-05-09 stsp err = alloc_added_blob_tree_entry(&new_te, ct);
2596 036813ee 2019-05-09 stsp if (err)
2597 036813ee 2019-05-09 stsp goto done;
2598 afa376bf 2019-05-09 stsp err = report_ct_status(ct, status_cb, status_arg);
2599 afa376bf 2019-05-09 stsp if (err)
2600 afa376bf 2019-05-09 stsp goto done;
2601 036813ee 2019-05-09 stsp } else {
2602 2f51b5b3 2019-05-09 stsp char *subtree_path;
2603 baa7dcfa 2019-05-09 stsp struct got_pathlist_entry *pe2;
2604 baa7dcfa 2019-05-09 stsp int visited = 0;
2605 036813ee 2019-05-09 stsp
2606 2f51b5b3 2019-05-09 stsp *slash = '\0'; /* trim trailing path components */
2607 036813ee 2019-05-09 stsp
2608 2f51b5b3 2019-05-09 stsp new_te = calloc(1, sizeof(*new_te));
2609 768aea60 2019-05-09 stsp new_te->mode = S_IFDIR;
2610 2f51b5b3 2019-05-09 stsp new_te->name = strdup(child_path);
2611 2f51b5b3 2019-05-09 stsp if (new_te->name == NULL) {
2612 2f51b5b3 2019-05-09 stsp got_object_tree_entry_close(new_te);
2613 2f51b5b3 2019-05-09 stsp err = got_error_from_errno();
2614 ed175427 2019-05-09 stsp goto done;
2615 2f51b5b3 2019-05-09 stsp }
2616 baa7dcfa 2019-05-09 stsp if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
2617 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(path_base_tree) ? "" : "/",
2618 2f51b5b3 2019-05-09 stsp child_path) == -1) {
2619 2f51b5b3 2019-05-09 stsp err = got_error_from_errno();
2620 2f51b5b3 2019-05-09 stsp goto done;
2621 2f51b5b3 2019-05-09 stsp }
2622 baa7dcfa 2019-05-09 stsp TAILQ_FOREACH(pe2, &paths, entry) {
2623 baa7dcfa 2019-05-09 stsp if (got_path_cmp(subtree_path, pe2->path) != 0)
2624 baa7dcfa 2019-05-09 stsp continue;
2625 baa7dcfa 2019-05-09 stsp visited = 1;
2626 baa7dcfa 2019-05-09 stsp break;
2627 baa7dcfa 2019-05-09 stsp }
2628 baa7dcfa 2019-05-09 stsp if (visited)
2629 baa7dcfa 2019-05-09 stsp continue;
2630 baa7dcfa 2019-05-09 stsp
2631 baa7dcfa 2019-05-09 stsp err = write_tree(&new_te->id, NULL, subtree_path,
2632 afa376bf 2019-05-09 stsp commitable_paths, status_cb, status_arg, repo);
2633 2f51b5b3 2019-05-09 stsp free(subtree_path);
2634 036813ee 2019-05-09 stsp if (err)
2635 036813ee 2019-05-09 stsp goto done;
2636 ed175427 2019-05-09 stsp }
2637 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2638 2f51b5b3 2019-05-09 stsp if (err)
2639 2f51b5b3 2019-05-09 stsp goto done;
2640 2f51b5b3 2019-05-09 stsp }
2641 2f51b5b3 2019-05-09 stsp
2642 2f51b5b3 2019-05-09 stsp if (base_tree) {
2643 2f51b5b3 2019-05-09 stsp /* Handle modified and deleted entries. */
2644 2f51b5b3 2019-05-09 stsp base_entries = got_object_tree_get_entries(base_tree);
2645 2f51b5b3 2019-05-09 stsp SIMPLEQ_FOREACH(te, &base_entries->head, entry) {
2646 2f51b5b3 2019-05-09 stsp struct commitable *ct = NULL;
2647 2f51b5b3 2019-05-09 stsp
2648 2f51b5b3 2019-05-09 stsp if (S_ISDIR(te->mode)) {
2649 44d03001 2019-05-09 stsp int modified;
2650 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
2651 036813ee 2019-05-09 stsp if (err)
2652 036813ee 2019-05-09 stsp goto done;
2653 44d03001 2019-05-09 stsp err = match_modified_subtree(&modified, te,
2654 44d03001 2019-05-09 stsp path_base_tree, commitable_paths);
2655 2f51b5b3 2019-05-09 stsp if (err)
2656 2f51b5b3 2019-05-09 stsp goto done;
2657 44d03001 2019-05-09 stsp /* Avoid recursion into unmodified subtrees. */
2658 44d03001 2019-05-09 stsp if (modified) {
2659 44d03001 2019-05-09 stsp free(new_te->id);
2660 44d03001 2019-05-09 stsp err = write_subtree(&new_te->id, te,
2661 44d03001 2019-05-09 stsp path_base_tree, commitable_paths,
2662 44d03001 2019-05-09 stsp status_cb, status_arg, repo);
2663 44d03001 2019-05-09 stsp if (err)
2664 44d03001 2019-05-09 stsp goto done;
2665 44d03001 2019-05-09 stsp }
2666 036813ee 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2667 036813ee 2019-05-09 stsp if (err)
2668 036813ee 2019-05-09 stsp goto done;
2669 2f51b5b3 2019-05-09 stsp continue;
2670 036813ee 2019-05-09 stsp }
2671 2f51b5b3 2019-05-09 stsp
2672 2f51b5b3 2019-05-09 stsp err = match_deleted_or_modified_ct(&ct, te,
2673 2f51b5b3 2019-05-09 stsp path_base_tree, commitable_paths);
2674 2f51b5b3 2019-05-09 stsp if (ct) {
2675 2f51b5b3 2019-05-09 stsp /* NB: Deleted entries get dropped here. */
2676 2f51b5b3 2019-05-09 stsp if (ct->status == GOT_STATUS_MODIFY) {
2677 2f51b5b3 2019-05-09 stsp err = alloc_modified_blob_tree_entry(
2678 2f51b5b3 2019-05-09 stsp &new_te, te, ct);
2679 2f51b5b3 2019-05-09 stsp if (err)
2680 2f51b5b3 2019-05-09 stsp goto done;
2681 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2682 2f51b5b3 2019-05-09 stsp if (err)
2683 2f51b5b3 2019-05-09 stsp goto done;
2684 2f51b5b3 2019-05-09 stsp }
2685 afa376bf 2019-05-09 stsp err = report_ct_status(ct, status_cb, status_arg);
2686 afa376bf 2019-05-09 stsp if (err)
2687 afa376bf 2019-05-09 stsp goto done;
2688 2f51b5b3 2019-05-09 stsp } else {
2689 2f51b5b3 2019-05-09 stsp /* Entry is unchanged; just copy it. */
2690 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
2691 2f51b5b3 2019-05-09 stsp if (err)
2692 2f51b5b3 2019-05-09 stsp goto done;
2693 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
2694 2f51b5b3 2019-05-09 stsp if (err)
2695 2f51b5b3 2019-05-09 stsp goto done;
2696 2f51b5b3 2019-05-09 stsp }
2697 ca2503ea 2019-05-09 stsp }
2698 ed175427 2019-05-09 stsp }
2699 0b5cc0d6 2019-05-09 stsp
2700 036813ee 2019-05-09 stsp /* Write new list of entries; deleted entries have been dropped. */
2701 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &paths, entry) {
2702 0b5cc0d6 2019-05-09 stsp struct got_tree_entry *te = pe->data;
2703 0b5cc0d6 2019-05-09 stsp new_tree_entries.nentries++;
2704 0b5cc0d6 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&new_tree_entries.head, te, entry);
2705 0b5cc0d6 2019-05-09 stsp }
2706 036813ee 2019-05-09 stsp err = got_object_tree_create(new_tree_id, &new_tree_entries, repo);
2707 ed175427 2019-05-09 stsp done:
2708 ca2503ea 2019-05-09 stsp got_object_tree_entries_close(&new_tree_entries);
2709 036813ee 2019-05-09 stsp got_pathlist_free(&paths);
2710 ed175427 2019-05-09 stsp return err;
2711 ed175427 2019-05-09 stsp }
2712 ed175427 2019-05-09 stsp
2713 ebf99748 2019-05-09 stsp static const struct got_error *
2714 ebf99748 2019-05-09 stsp update_fileindex_after_commit(struct got_pathlist_head *commitable_paths,
2715 ebf99748 2019-05-09 stsp struct got_object_id *new_base_commit_id, struct got_worktree *worktree)
2716 ebf99748 2019-05-09 stsp {
2717 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
2718 ebf99748 2019-05-09 stsp char *fileindex_path = NULL, *new_fileindex_path = NULL;
2719 ebf99748 2019-05-09 stsp struct got_fileindex *fileindex = NULL;
2720 ebf99748 2019-05-09 stsp FILE *new_index = NULL;
2721 ebf99748 2019-05-09 stsp struct got_pathlist_entry *pe;
2722 ebf99748 2019-05-09 stsp
2723 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2724 ebf99748 2019-05-09 stsp if (err)
2725 ebf99748 2019-05-09 stsp return err;
2726 ebf99748 2019-05-09 stsp
2727 ebf99748 2019-05-09 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
2728 ebf99748 2019-05-09 stsp fileindex_path);
2729 ebf99748 2019-05-09 stsp if (err)
2730 ebf99748 2019-05-09 stsp goto done;
2731 ebf99748 2019-05-09 stsp
2732 ebf99748 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
2733 ebf99748 2019-05-09 stsp struct got_fileindex_entry *ie;
2734 ebf99748 2019-05-09 stsp struct commitable *ct = pe->data;
2735 ebf99748 2019-05-09 stsp
2736 ebf99748 2019-05-09 stsp ie = got_fileindex_entry_get(fileindex, pe->path);
2737 ebf99748 2019-05-09 stsp if (ie) {
2738 ebf99748 2019-05-09 stsp if (ct->status == GOT_STATUS_DELETE) {
2739 ebf99748 2019-05-09 stsp got_fileindex_entry_remove(fileindex, ie);
2740 ebf99748 2019-05-09 stsp got_fileindex_entry_free(ie);
2741 ebf99748 2019-05-09 stsp } else
2742 ebf99748 2019-05-09 stsp err = got_fileindex_entry_update(ie,
2743 768aea60 2019-05-09 stsp ct->ondisk_path, ct->id->sha1,
2744 ebf99748 2019-05-09 stsp new_base_commit_id->sha1, 1);
2745 ebf99748 2019-05-09 stsp } else {
2746 ebf99748 2019-05-09 stsp err = got_fileindex_entry_alloc(&ie,
2747 768aea60 2019-05-09 stsp ct->ondisk_path, pe->path, ct->id->sha1,
2748 ebf99748 2019-05-09 stsp new_base_commit_id->sha1);
2749 ebf99748 2019-05-09 stsp if (err)
2750 ebf99748 2019-05-09 stsp goto done;
2751 ebf99748 2019-05-09 stsp err = got_fileindex_entry_add(fileindex, ie);
2752 ebf99748 2019-05-09 stsp if (err)
2753 ebf99748 2019-05-09 stsp goto done;
2754 ebf99748 2019-05-09 stsp }
2755 ebf99748 2019-05-09 stsp }
2756 ebf99748 2019-05-09 stsp
2757 ebf99748 2019-05-09 stsp err = got_fileindex_write(fileindex, new_index);
2758 ebf99748 2019-05-09 stsp if (err)
2759 ebf99748 2019-05-09 stsp goto done;
2760 ebf99748 2019-05-09 stsp
2761 ebf99748 2019-05-09 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
2762 ebf99748 2019-05-09 stsp err = got_error_from_errno();
2763 ebf99748 2019-05-09 stsp unlink(new_fileindex_path);
2764 ebf99748 2019-05-09 stsp goto done;
2765 ebf99748 2019-05-09 stsp }
2766 ebf99748 2019-05-09 stsp
2767 ebf99748 2019-05-09 stsp free(new_fileindex_path);
2768 ebf99748 2019-05-09 stsp new_fileindex_path = NULL;
2769 ebf99748 2019-05-09 stsp
2770 ebf99748 2019-05-09 stsp done:
2771 ebf99748 2019-05-09 stsp if (new_fileindex_path)
2772 ebf99748 2019-05-09 stsp unlink(new_fileindex_path);
2773 ebf99748 2019-05-09 stsp if (new_index)
2774 ebf99748 2019-05-09 stsp fclose(new_index);
2775 ebf99748 2019-05-09 stsp free(new_fileindex_path);
2776 ebf99748 2019-05-09 stsp free(fileindex_path);
2777 ebf99748 2019-05-09 stsp got_fileindex_free(fileindex);
2778 ebf99748 2019-05-09 stsp return err;
2779 ebf99748 2019-05-09 stsp }
2780 ebf99748 2019-05-09 stsp
2781 c4296144 2019-05-09 stsp const struct got_error *
2782 c4296144 2019-05-09 stsp got_worktree_commit(struct got_object_id **new_commit_id,
2783 c4296144 2019-05-09 stsp struct got_worktree *worktree, const char *ondisk_path,
2784 afa376bf 2019-05-09 stsp const char *author, const char *committer, const char *logmsg,
2785 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
2786 afa376bf 2019-05-09 stsp struct got_repository *repo)
2787 c4296144 2019-05-09 stsp {
2788 c4296144 2019-05-09 stsp const struct got_error *err = NULL, *unlockerr = NULL;
2789 ed175427 2019-05-09 stsp struct collect_commitables_arg cc_arg;
2790 036813ee 2019-05-09 stsp struct got_pathlist_head commitable_paths;
2791 c4296144 2019-05-09 stsp struct got_pathlist_entry *pe;
2792 bc70eb79 2019-05-09 stsp char *relpath = NULL;
2793 bc70eb79 2019-05-09 stsp const char *head_ref_name = NULL;
2794 c4296144 2019-05-09 stsp struct got_commit_object *base_commit = NULL;
2795 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id = NULL;
2796 09f5bd90 2019-05-09 stsp struct got_reference *head_ref2 = NULL;
2797 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id2 = NULL;
2798 c4296144 2019-05-09 stsp struct got_tree_object *base_tree = NULL;
2799 036813ee 2019-05-09 stsp struct got_object_id *new_tree_id = NULL;
2800 de18fc63 2019-05-09 stsp struct got_object_id_queue parent_ids;
2801 de18fc63 2019-05-09 stsp struct got_object_qid *pid = NULL;
2802 c4296144 2019-05-09 stsp
2803 c4296144 2019-05-09 stsp *new_commit_id = NULL;
2804 c4296144 2019-05-09 stsp
2805 036813ee 2019-05-09 stsp TAILQ_INIT(&commitable_paths);
2806 de18fc63 2019-05-09 stsp SIMPLEQ_INIT(&parent_ids);
2807 c4296144 2019-05-09 stsp
2808 c4296144 2019-05-09 stsp if (ondisk_path) {
2809 c4296144 2019-05-09 stsp err = got_path_skip_common_ancestor(&relpath,
2810 c4296144 2019-05-09 stsp worktree->root_path, ondisk_path);
2811 c4296144 2019-05-09 stsp if (err)
2812 c4296144 2019-05-09 stsp return err;
2813 c4296144 2019-05-09 stsp }
2814 c4296144 2019-05-09 stsp
2815 c4296144 2019-05-09 stsp err = lock_worktree(worktree, LOCK_EX);
2816 c4296144 2019-05-09 stsp if (err)
2817 c4296144 2019-05-09 stsp goto done;
2818 675c7539 2019-05-09 stsp
2819 09f5bd90 2019-05-09 stsp /* XXX should re-read head ref here now that work tree is locked */
2820 09f5bd90 2019-05-09 stsp err = got_ref_resolve(&head_commit_id, repo, worktree->head_ref);
2821 09f5bd90 2019-05-09 stsp if (err)
2822 09f5bd90 2019-05-09 stsp goto done;
2823 09f5bd90 2019-05-09 stsp
2824 036813ee 2019-05-09 stsp cc_arg.commitable_paths = &commitable_paths;
2825 24519714 2019-05-09 stsp cc_arg.worktree = worktree;
2826 24519714 2019-05-09 stsp cc_arg.repo = repo;
2827 675c7539 2019-05-09 stsp err = got_worktree_status(worktree, relpath ? relpath : "",
2828 ed175427 2019-05-09 stsp repo, collect_commitables, &cc_arg, NULL, NULL);
2829 675c7539 2019-05-09 stsp if (err)
2830 675c7539 2019-05-09 stsp goto done;
2831 675c7539 2019-05-09 stsp
2832 de18fc63 2019-05-09 stsp /* TODO: out-of-dateness check */
2833 de18fc63 2019-05-09 stsp
2834 675c7539 2019-05-09 stsp /* TODO: collect commit message if not specified */
2835 c4296144 2019-05-09 stsp
2836 cf066bf8 2019-05-09 stsp /* Create blobs from added and modified files and record their IDs. */
2837 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
2838 ed175427 2019-05-09 stsp struct commitable *ct = pe->data;
2839 cf066bf8 2019-05-09 stsp char *ondisk_path;
2840 cf066bf8 2019-05-09 stsp
2841 cf066bf8 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD &&
2842 cf066bf8 2019-05-09 stsp ct->status != GOT_STATUS_MODIFY)
2843 cf066bf8 2019-05-09 stsp continue;
2844 cf066bf8 2019-05-09 stsp
2845 cf066bf8 2019-05-09 stsp if (asprintf(&ondisk_path, "%s/%s",
2846 cf066bf8 2019-05-09 stsp worktree->root_path, pe->path) == -1) {
2847 cf066bf8 2019-05-09 stsp err = got_error_from_errno();
2848 cf066bf8 2019-05-09 stsp goto done;
2849 cf066bf8 2019-05-09 stsp }
2850 a7055788 2019-05-09 stsp err = got_object_blob_create(&ct->id, ondisk_path, repo);
2851 a7055788 2019-05-09 stsp free(ondisk_path);
2852 cf066bf8 2019-05-09 stsp if (err)
2853 cf066bf8 2019-05-09 stsp goto done;
2854 cf066bf8 2019-05-09 stsp }
2855 cf066bf8 2019-05-09 stsp
2856 c4296144 2019-05-09 stsp err = got_object_open_as_commit(&base_commit, repo,
2857 c4296144 2019-05-09 stsp worktree->base_commit_id);
2858 c4296144 2019-05-09 stsp if (err)
2859 c4296144 2019-05-09 stsp goto done;
2860 036813ee 2019-05-09 stsp err = got_object_open_as_tree(&base_tree, repo, base_commit->tree_id);
2861 c4296144 2019-05-09 stsp if (err)
2862 c4296144 2019-05-09 stsp goto done;
2863 036813ee 2019-05-09 stsp
2864 036813ee 2019-05-09 stsp /* Recursively write new tree objects. */
2865 afa376bf 2019-05-09 stsp err = write_tree(&new_tree_id, base_tree, "/", &commitable_paths,
2866 afa376bf 2019-05-09 stsp status_cb, status_arg, repo);
2867 036813ee 2019-05-09 stsp if (err)
2868 036813ee 2019-05-09 stsp goto done;
2869 036813ee 2019-05-09 stsp
2870 de18fc63 2019-05-09 stsp err = got_object_qid_alloc(&pid, worktree->base_commit_id);
2871 de18fc63 2019-05-09 stsp if (err)
2872 de18fc63 2019-05-09 stsp goto done;
2873 de18fc63 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&parent_ids, pid, entry);
2874 de18fc63 2019-05-09 stsp err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
2875 de18fc63 2019-05-09 stsp 1, author, time(NULL), committer, time(NULL), logmsg, repo);
2876 de18fc63 2019-05-09 stsp got_object_qid_free(pid);
2877 9d40349a 2019-05-09 stsp if (err)
2878 9d40349a 2019-05-09 stsp goto done;
2879 9d40349a 2019-05-09 stsp
2880 09f5bd90 2019-05-09 stsp /* Check if a concurrent commit to our branch has occurred. */
2881 09f5bd90 2019-05-09 stsp /* XXX ideally we'd lock the reference file here to avoid a race */
2882 bc70eb79 2019-05-09 stsp head_ref_name = got_worktree_get_head_ref_name(worktree);
2883 bc70eb79 2019-05-09 stsp if (head_ref_name == NULL) {
2884 09f5bd90 2019-05-09 stsp err = got_error_from_errno();
2885 09f5bd90 2019-05-09 stsp goto done;
2886 09f5bd90 2019-05-09 stsp }
2887 bc70eb79 2019-05-09 stsp err = got_ref_open(&head_ref2, repo, head_ref_name);
2888 09f5bd90 2019-05-09 stsp if (err)
2889 09f5bd90 2019-05-09 stsp goto done;
2890 09f5bd90 2019-05-09 stsp err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
2891 ebf99748 2019-05-09 stsp if (err)
2892 ebf99748 2019-05-09 stsp goto done;
2893 09f5bd90 2019-05-09 stsp if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
2894 09f5bd90 2019-05-09 stsp err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
2895 09f5bd90 2019-05-09 stsp goto done;
2896 09f5bd90 2019-05-09 stsp }
2897 09f5bd90 2019-05-09 stsp /* Update branch head in repository. */
2898 f2c16586 2019-05-09 stsp err = got_ref_change_ref(worktree->head_ref, *new_commit_id);
2899 f2c16586 2019-05-09 stsp if (err)
2900 f2c16586 2019-05-09 stsp goto done;
2901 f2c16586 2019-05-09 stsp err = got_ref_write(worktree->head_ref, repo);
2902 f2c16586 2019-05-09 stsp if (err)
2903 f2c16586 2019-05-09 stsp goto done;
2904 09f5bd90 2019-05-09 stsp /* XXX race has ended here */
2905 f2c16586 2019-05-09 stsp
2906 09f5bd90 2019-05-09 stsp err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
2907 09f5bd90 2019-05-09 stsp if (err)
2908 09f5bd90 2019-05-09 stsp goto done;
2909 09f5bd90 2019-05-09 stsp
2910 ebf99748 2019-05-09 stsp err = ref_base_commit(worktree, repo);
2911 ebf99748 2019-05-09 stsp if (err)
2912 ebf99748 2019-05-09 stsp goto done;
2913 ebf99748 2019-05-09 stsp
2914 ebf99748 2019-05-09 stsp err = update_fileindex_after_commit(&commitable_paths,
2915 ebf99748 2019-05-09 stsp *new_commit_id, worktree);
2916 ebf99748 2019-05-09 stsp if (err)
2917 ebf99748 2019-05-09 stsp goto done;
2918 c4296144 2019-05-09 stsp done:
2919 c4296144 2019-05-09 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2920 c4296144 2019-05-09 stsp if (unlockerr && err == NULL)
2921 c4296144 2019-05-09 stsp err = unlockerr;
2922 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
2923 ed175427 2019-05-09 stsp struct commitable *ct = pe->data;
2924 ed175427 2019-05-09 stsp free_commitable(ct);
2925 cf066bf8 2019-05-09 stsp }
2926 036813ee 2019-05-09 stsp got_pathlist_free(&commitable_paths);
2927 ef2a1e11 2019-05-09 stsp if (base_tree)
2928 ef2a1e11 2019-05-09 stsp got_object_tree_close(base_tree);
2929 036813ee 2019-05-09 stsp if (base_commit)
2930 036813ee 2019-05-09 stsp got_object_commit_close(base_commit);
2931 c4296144 2019-05-09 stsp free(relpath);
2932 09f5bd90 2019-05-09 stsp free(head_commit_id);
2933 09f5bd90 2019-05-09 stsp free(head_commit_id2);
2934 09f5bd90 2019-05-09 stsp if (head_ref2)
2935 09f5bd90 2019-05-09 stsp got_ref_close(head_ref2);
2936 c4296144 2019-05-09 stsp return err;
2937 c4296144 2019-05-09 stsp }