Blame


1 86c3caaf 2018-03-09 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 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 9d31a1d8 2018-03-11 stsp #include <sys/queue.h>
19 133d2798 2019-01-08 stsp #include <sys/tree.h>
20 86c3caaf 2018-03-09 stsp
21 d1f6d47b 2019-02-04 stsp #include <dirent.h>
22 12ce7a6c 2019-08-12 stsp #include <limits.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 303e14b5 2019-09-23 stsp #include <time.h>
28 86c3caaf 2018-03-09 stsp #include <fcntl.h>
29 86c3caaf 2018-03-09 stsp #include <errno.h>
30 86c3caaf 2018-03-09 stsp #include <unistd.h>
31 9d31a1d8 2018-03-11 stsp #include <sha1.h>
32 9d31a1d8 2018-03-11 stsp #include <zlib.h>
33 9d31a1d8 2018-03-11 stsp #include <fnmatch.h>
34 512f0d0e 2019-01-02 stsp #include <libgen.h>
35 ec22038e 2019-03-10 stsp #include <uuid.h>
36 7154f6ce 2019-03-27 stsp #include <util.h>
37 86c3caaf 2018-03-09 stsp
38 86c3caaf 2018-03-09 stsp #include "got_error.h"
39 86c3caaf 2018-03-09 stsp #include "got_repository.h"
40 5261c201 2018-04-01 stsp #include "got_reference.h"
41 9d31a1d8 2018-03-11 stsp #include "got_object.h"
42 1dd54920 2019-05-11 stsp #include "got_path.h"
43 e6209546 2019-08-22 stsp #include "got_cancel.h"
44 86c3caaf 2018-03-09 stsp #include "got_worktree.h"
45 511a516b 2018-05-19 stsp #include "got_opentemp.h"
46 234035bc 2019-06-01 stsp #include "got_diff.h"
47 86c3caaf 2018-03-09 stsp
48 718b3ab0 2018-03-17 stsp #include "got_lib_worktree.h"
49 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
50 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
51 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
52 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
53 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
54 ed175427 2019-05-09 stsp #include "got_lib_object_parse.h"
55 cf066bf8 2019-05-09 stsp #include "got_lib_object_create.h"
56 24519714 2019-05-09 stsp #include "got_lib_object_idset.h"
57 6353ad76 2019-02-08 stsp #include "got_lib_diff.h"
58 50b0790e 2020-09-11 stsp #include "got_lib_gotconfig.h"
59 9d31a1d8 2018-03-11 stsp
60 9d31a1d8 2018-03-11 stsp #ifndef MIN
61 9d31a1d8 2018-03-11 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
62 9d31a1d8 2018-03-11 stsp #endif
63 f69721c3 2019-10-21 stsp
64 f69721c3 2019-10-21 stsp #define GOT_MERGE_LABEL_MERGED "merged change"
65 f69721c3 2019-10-21 stsp #define GOT_MERGE_LABEL_BASE "3-way merge base"
66 86c3caaf 2018-03-09 stsp
67 99724ed4 2018-03-10 stsp static const struct got_error *
68 7ac97322 2018-03-11 stsp create_meta_file(const char *path_got, const char *name, const char *content)
69 99724ed4 2018-03-10 stsp {
70 99724ed4 2018-03-10 stsp const struct got_error *err = NULL;
71 99724ed4 2018-03-10 stsp char *path;
72 99724ed4 2018-03-10 stsp
73 2c7829a4 2019-06-17 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1)
74 2c7829a4 2019-06-17 stsp return got_error_from_errno("asprintf");
75 99724ed4 2018-03-10 stsp
76 2c7829a4 2019-06-17 stsp err = got_path_create_file(path, content);
77 99724ed4 2018-03-10 stsp free(path);
78 507dc3bb 2018-12-29 stsp return err;
79 507dc3bb 2018-12-29 stsp }
80 507dc3bb 2018-12-29 stsp
81 507dc3bb 2018-12-29 stsp static const struct got_error *
82 507dc3bb 2018-12-29 stsp update_meta_file(const char *path_got, const char *name, const char *content)
83 507dc3bb 2018-12-29 stsp {
84 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
85 507dc3bb 2018-12-29 stsp FILE *tmpfile = NULL;
86 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
87 507dc3bb 2018-12-29 stsp char *path = NULL;
88 507dc3bb 2018-12-29 stsp
89 507dc3bb 2018-12-29 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
90 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
91 507dc3bb 2018-12-29 stsp path = NULL;
92 507dc3bb 2018-12-29 stsp goto done;
93 507dc3bb 2018-12-29 stsp }
94 507dc3bb 2018-12-29 stsp
95 507dc3bb 2018-12-29 stsp err = got_opentemp_named(&tmppath, &tmpfile, path);
96 507dc3bb 2018-12-29 stsp if (err)
97 507dc3bb 2018-12-29 stsp goto done;
98 507dc3bb 2018-12-29 stsp
99 507dc3bb 2018-12-29 stsp if (content) {
100 507dc3bb 2018-12-29 stsp int len = fprintf(tmpfile, "%s\n", content);
101 507dc3bb 2018-12-29 stsp if (len != strlen(content) + 1) {
102 638f9024 2019-05-13 stsp err = got_error_from_errno2("fprintf", tmppath);
103 507dc3bb 2018-12-29 stsp goto done;
104 507dc3bb 2018-12-29 stsp }
105 507dc3bb 2018-12-29 stsp }
106 507dc3bb 2018-12-29 stsp
107 507dc3bb 2018-12-29 stsp if (rename(tmppath, path) != 0) {
108 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath, path);
109 2a57020b 2019-02-20 stsp unlink(tmppath);
110 507dc3bb 2018-12-29 stsp goto done;
111 507dc3bb 2018-12-29 stsp }
112 507dc3bb 2018-12-29 stsp
113 507dc3bb 2018-12-29 stsp done:
114 fb43ecf1 2019-02-11 stsp if (fclose(tmpfile) != 0 && err == NULL)
115 638f9024 2019-05-13 stsp err = got_error_from_errno2("fclose", tmppath);
116 230a42bd 2019-05-11 jcs free(tmppath);
117 99724ed4 2018-03-10 stsp return err;
118 99724ed4 2018-03-10 stsp }
119 99724ed4 2018-03-10 stsp
120 09fe317a 2018-03-11 stsp static const struct got_error *
121 7ac97322 2018-03-11 stsp read_meta_file(char **content, const char *path_got, const char *name)
122 09fe317a 2018-03-11 stsp {
123 09fe317a 2018-03-11 stsp const struct got_error *err = NULL;
124 09fe317a 2018-03-11 stsp char *path;
125 09fe317a 2018-03-11 stsp int fd = -1;
126 09fe317a 2018-03-11 stsp ssize_t n;
127 09fe317a 2018-03-11 stsp struct stat sb;
128 09fe317a 2018-03-11 stsp
129 09fe317a 2018-03-11 stsp *content = NULL;
130 09fe317a 2018-03-11 stsp
131 7ac97322 2018-03-11 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
132 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
133 09fe317a 2018-03-11 stsp path = NULL;
134 09fe317a 2018-03-11 stsp goto done;
135 09fe317a 2018-03-11 stsp }
136 09fe317a 2018-03-11 stsp
137 ef99fdb1 2018-03-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
138 09fe317a 2018-03-11 stsp if (fd == -1) {
139 f02eaa22 2019-03-11 stsp if (errno == ENOENT)
140 a2e6d162 2019-07-27 stsp err = got_error_path(path, GOT_ERR_WORKTREE_META);
141 f02eaa22 2019-03-11 stsp else
142 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", path);
143 ef99fdb1 2018-03-11 stsp goto done;
144 ef99fdb1 2018-03-11 stsp }
145 ef99fdb1 2018-03-11 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
146 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
147 638f9024 2019-05-13 stsp : got_error_from_errno2("flock", path));
148 09fe317a 2018-03-11 stsp goto done;
149 09fe317a 2018-03-11 stsp }
150 09fe317a 2018-03-11 stsp
151 e4b9a50c 2019-07-27 stsp if (fstat(fd, &sb) != 0) {
152 e4b9a50c 2019-07-27 stsp err = got_error_from_errno2("fstat", path);
153 d10c9b58 2019-02-19 stsp goto done;
154 d10c9b58 2019-02-19 stsp }
155 09fe317a 2018-03-11 stsp *content = calloc(1, sb.st_size);
156 09fe317a 2018-03-11 stsp if (*content == NULL) {
157 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
158 09fe317a 2018-03-11 stsp goto done;
159 09fe317a 2018-03-11 stsp }
160 09fe317a 2018-03-11 stsp
161 09fe317a 2018-03-11 stsp n = read(fd, *content, sb.st_size);
162 09fe317a 2018-03-11 stsp if (n != sb.st_size) {
163 638f9024 2019-05-13 stsp err = (n == -1 ? got_error_from_errno2("read", path) :
164 a2e6d162 2019-07-27 stsp got_error_path(path, GOT_ERR_WORKTREE_META));
165 09fe317a 2018-03-11 stsp goto done;
166 09fe317a 2018-03-11 stsp }
167 09fe317a 2018-03-11 stsp if ((*content)[sb.st_size - 1] != '\n') {
168 a2e6d162 2019-07-27 stsp err = got_error_path(path, GOT_ERR_WORKTREE_META);
169 09fe317a 2018-03-11 stsp goto done;
170 09fe317a 2018-03-11 stsp }
171 09fe317a 2018-03-11 stsp (*content)[sb.st_size - 1] = '\0';
172 09fe317a 2018-03-11 stsp
173 09fe317a 2018-03-11 stsp done:
174 09fe317a 2018-03-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
175 638f9024 2019-05-13 stsp err = got_error_from_errno2("close", path_got);
176 09fe317a 2018-03-11 stsp free(path);
177 09fe317a 2018-03-11 stsp if (err) {
178 09fe317a 2018-03-11 stsp free(*content);
179 09fe317a 2018-03-11 stsp *content = NULL;
180 09fe317a 2018-03-11 stsp }
181 09fe317a 2018-03-11 stsp return err;
182 09fe317a 2018-03-11 stsp }
183 09fe317a 2018-03-11 stsp
184 024e9686 2019-05-14 stsp static const struct got_error *
185 024e9686 2019-05-14 stsp write_head_ref(const char *path_got, struct got_reference *head_ref)
186 024e9686 2019-05-14 stsp {
187 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
188 024e9686 2019-05-14 stsp char *refstr = NULL;
189 024e9686 2019-05-14 stsp
190 024e9686 2019-05-14 stsp if (got_ref_is_symbolic(head_ref)) {
191 024e9686 2019-05-14 stsp refstr = got_ref_to_str(head_ref);
192 024e9686 2019-05-14 stsp if (refstr == NULL)
193 024e9686 2019-05-14 stsp return got_error_from_errno("got_ref_to_str");
194 024e9686 2019-05-14 stsp } else {
195 024e9686 2019-05-14 stsp refstr = strdup(got_ref_get_name(head_ref));
196 024e9686 2019-05-14 stsp if (refstr == NULL)
197 024e9686 2019-05-14 stsp return got_error_from_errno("strdup");
198 024e9686 2019-05-14 stsp }
199 024e9686 2019-05-14 stsp err = update_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
200 024e9686 2019-05-14 stsp free(refstr);
201 024e9686 2019-05-14 stsp return err;
202 024e9686 2019-05-14 stsp }
203 024e9686 2019-05-14 stsp
204 86c3caaf 2018-03-09 stsp const struct got_error *
205 86c3caaf 2018-03-09 stsp got_worktree_init(const char *path, struct got_reference *head_ref,
206 577ec78f 2018-03-11 stsp const char *prefix, struct got_repository *repo)
207 86c3caaf 2018-03-09 stsp {
208 86c3caaf 2018-03-09 stsp const struct got_error *err = NULL;
209 65596e15 2018-12-24 stsp struct got_object_id *commit_id = NULL;
210 ec22038e 2019-03-10 stsp uuid_t uuid;
211 ec22038e 2019-03-10 stsp uint32_t uuid_status;
212 65596e15 2018-12-24 stsp int obj_type;
213 7ac97322 2018-03-11 stsp char *path_got = NULL;
214 1451e70d 2018-03-10 stsp char *formatstr = NULL;
215 0bb8a95e 2018-03-12 stsp char *absprefix = NULL;
216 65596e15 2018-12-24 stsp char *basestr = NULL;
217 ec22038e 2019-03-10 stsp char *uuidstr = NULL;
218 65596e15 2018-12-24 stsp
219 0c48fee2 2019-03-11 stsp if (strcmp(path, got_repo_get_path(repo)) == 0) {
220 0c48fee2 2019-03-11 stsp err = got_error(GOT_ERR_WORKTREE_REPO);
221 0c48fee2 2019-03-11 stsp goto done;
222 0c48fee2 2019-03-11 stsp }
223 0c48fee2 2019-03-11 stsp
224 65596e15 2018-12-24 stsp err = got_ref_resolve(&commit_id, repo, head_ref);
225 65596e15 2018-12-24 stsp if (err)
226 65596e15 2018-12-24 stsp return err;
227 65596e15 2018-12-24 stsp err = got_object_get_type(&obj_type, repo, commit_id);
228 65596e15 2018-12-24 stsp if (err)
229 65596e15 2018-12-24 stsp return err;
230 65596e15 2018-12-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT)
231 65596e15 2018-12-24 stsp return got_error(GOT_ERR_OBJ_TYPE);
232 86c3caaf 2018-03-09 stsp
233 0bb8a95e 2018-03-12 stsp if (!got_path_is_absolute(prefix)) {
234 0bb8a95e 2018-03-12 stsp if (asprintf(&absprefix, "/%s", prefix) == -1)
235 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
236 0bb8a95e 2018-03-12 stsp }
237 577ec78f 2018-03-11 stsp
238 86c3caaf 2018-03-09 stsp /* Create top-level directory (may already exist). */
239 2cb4bacb 2018-03-11 stsp if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
240 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path);
241 86c3caaf 2018-03-09 stsp goto done;
242 86c3caaf 2018-03-09 stsp }
243 86c3caaf 2018-03-09 stsp
244 86c3caaf 2018-03-09 stsp /* Create .got directory (may already exist). */
245 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
246 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
247 86c3caaf 2018-03-09 stsp goto done;
248 86c3caaf 2018-03-09 stsp }
249 7ac97322 2018-03-11 stsp if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
250 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", path_got);
251 86c3caaf 2018-03-09 stsp goto done;
252 86c3caaf 2018-03-09 stsp }
253 86c3caaf 2018-03-09 stsp
254 056e7441 2018-03-11 stsp /* Create an empty lock file. */
255 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
256 056e7441 2018-03-11 stsp if (err)
257 056e7441 2018-03-11 stsp goto done;
258 056e7441 2018-03-11 stsp
259 86c3caaf 2018-03-09 stsp /* Create an empty file index. */
260 7ac97322 2018-03-11 stsp err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
261 99724ed4 2018-03-10 stsp if (err)
262 86c3caaf 2018-03-09 stsp goto done;
263 86c3caaf 2018-03-09 stsp
264 08d425ea 2018-12-24 stsp /* Write the HEAD reference. */
265 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
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 cc483380 2019-09-01 stsp err = got_error_uuid(uuid_status, "uuid_create");
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 cc483380 2019-09-01 stsp err = got_error_uuid(uuid_status, "uuid_to_string");
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 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
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 0bb8a95e 2018-03-12 stsp free(absprefix);
318 65596e15 2018-12-24 stsp free(basestr);
319 ec22038e 2019-03-10 stsp free(uuidstr);
320 86c3caaf 2018-03-09 stsp return err;
321 86c3caaf 2018-03-09 stsp }
322 86c3caaf 2018-03-09 stsp
323 247140b2 2019-02-05 stsp static const struct got_error *
324 247140b2 2019-02-05 stsp open_worktree(struct got_worktree **worktree, const char *path)
325 86c3caaf 2018-03-09 stsp {
326 6d9d28c3 2018-03-11 stsp const struct got_error *err = NULL;
327 7ac97322 2018-03-11 stsp char *path_got;
328 6d9d28c3 2018-03-11 stsp char *formatstr = NULL;
329 c442a90d 2019-03-10 stsp char *uuidstr = NULL;
330 056e7441 2018-03-11 stsp char *path_lock = NULL;
331 eaccb85f 2018-12-25 stsp char *base_commit_id_str = NULL;
332 6d9d28c3 2018-03-11 stsp int version, fd = -1;
333 6d9d28c3 2018-03-11 stsp const char *errstr;
334 eaccb85f 2018-12-25 stsp struct got_repository *repo = NULL;
335 c442a90d 2019-03-10 stsp uint32_t uuid_status;
336 6d9d28c3 2018-03-11 stsp
337 6d9d28c3 2018-03-11 stsp *worktree = NULL;
338 6d9d28c3 2018-03-11 stsp
339 7ac97322 2018-03-11 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
340 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
341 7ac97322 2018-03-11 stsp path_got = NULL;
342 6d9d28c3 2018-03-11 stsp goto done;
343 6d9d28c3 2018-03-11 stsp }
344 6d9d28c3 2018-03-11 stsp
345 7ac97322 2018-03-11 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
346 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
347 056e7441 2018-03-11 stsp path_lock = NULL;
348 6d9d28c3 2018-03-11 stsp goto done;
349 6d9d28c3 2018-03-11 stsp }
350 6d9d28c3 2018-03-11 stsp
351 056e7441 2018-03-11 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
352 6d9d28c3 2018-03-11 stsp if (fd == -1) {
353 73a5ef67 2018-03-11 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
354 638f9024 2019-05-13 stsp : got_error_from_errno2("open", path_lock));
355 6d9d28c3 2018-03-11 stsp goto done;
356 6d9d28c3 2018-03-11 stsp }
357 6d9d28c3 2018-03-11 stsp
358 7ac97322 2018-03-11 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
359 6d9d28c3 2018-03-11 stsp if (err)
360 6d9d28c3 2018-03-11 stsp goto done;
361 6d9d28c3 2018-03-11 stsp
362 6d9d28c3 2018-03-11 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
363 6d9d28c3 2018-03-11 stsp if (errstr) {
364 a2e6d162 2019-07-27 stsp err = got_error_msg(GOT_ERR_WORKTREE_META,
365 a2e6d162 2019-07-27 stsp "could not parse work tree format version number");
366 6d9d28c3 2018-03-11 stsp goto done;
367 6d9d28c3 2018-03-11 stsp }
368 6d9d28c3 2018-03-11 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
369 6d9d28c3 2018-03-11 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
370 6d9d28c3 2018-03-11 stsp goto done;
371 6d9d28c3 2018-03-11 stsp }
372 6d9d28c3 2018-03-11 stsp
373 6d9d28c3 2018-03-11 stsp *worktree = calloc(1, sizeof(**worktree));
374 6d9d28c3 2018-03-11 stsp if (*worktree == NULL) {
375 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
376 6d9d28c3 2018-03-11 stsp goto done;
377 6d9d28c3 2018-03-11 stsp }
378 056e7441 2018-03-11 stsp (*worktree)->lockfd = -1;
379 6d9d28c3 2018-03-11 stsp
380 7d61d891 2020-07-23 stsp (*worktree)->root_path = realpath(path, NULL);
381 c88eb298 2018-03-11 stsp if ((*worktree)->root_path == NULL) {
382 7d61d891 2020-07-23 stsp err = got_error_from_errno2("realpath", path);
383 6d9d28c3 2018-03-11 stsp goto done;
384 6d9d28c3 2018-03-11 stsp }
385 cde76477 2018-03-11 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
386 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_REPOSITORY);
387 6d9d28c3 2018-03-11 stsp if (err)
388 6d9d28c3 2018-03-11 stsp goto done;
389 eaccb85f 2018-12-25 stsp
390 7ac97322 2018-03-11 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
391 6d9d28c3 2018-03-11 stsp GOT_WORKTREE_PATH_PREFIX);
392 93a30277 2018-12-24 stsp if (err)
393 93a30277 2018-12-24 stsp goto done;
394 93a30277 2018-12-24 stsp
395 eaccb85f 2018-12-25 stsp err = read_meta_file(&base_commit_id_str, path_got,
396 0f92850e 2018-12-25 stsp GOT_WORKTREE_BASE_COMMIT);
397 c442a90d 2019-03-10 stsp if (err)
398 c442a90d 2019-03-10 stsp goto done;
399 c442a90d 2019-03-10 stsp
400 c442a90d 2019-03-10 stsp err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
401 eaccb85f 2018-12-25 stsp if (err)
402 c442a90d 2019-03-10 stsp goto done;
403 c442a90d 2019-03-10 stsp uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
404 c442a90d 2019-03-10 stsp if (uuid_status != uuid_s_ok) {
405 cc483380 2019-09-01 stsp err = got_error_uuid(uuid_status, "uuid_from_string");
406 eaccb85f 2018-12-25 stsp goto done;
407 c442a90d 2019-03-10 stsp }
408 eaccb85f 2018-12-25 stsp
409 c9956ddf 2019-09-08 stsp err = got_repo_open(&repo, (*worktree)->repo_path, NULL);
410 eaccb85f 2018-12-25 stsp if (err)
411 eaccb85f 2018-12-25 stsp goto done;
412 eaccb85f 2018-12-25 stsp
413 eaccb85f 2018-12-25 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
414 eaccb85f 2018-12-25 stsp base_commit_id_str);
415 f5baf295 2018-03-11 stsp if (err)
416 6d9d28c3 2018-03-11 stsp goto done;
417 6d9d28c3 2018-03-11 stsp
418 36a38700 2019-05-10 stsp err = read_meta_file(&(*worktree)->head_ref_name, path_got,
419 36a38700 2019-05-10 stsp GOT_WORKTREE_HEAD_REF);
420 50b0790e 2020-09-11 stsp if (err)
421 50b0790e 2020-09-11 stsp goto done;
422 50b0790e 2020-09-11 stsp
423 50b0790e 2020-09-11 stsp if (asprintf(&(*worktree)->gotconfig_path, "%s/%s/%s",
424 50b0790e 2020-09-11 stsp (*worktree)->root_path,
425 50b0790e 2020-09-11 stsp GOT_WORKTREE_GOT_DIR, GOT_GOTCONFIG_FILENAME) == -1) {
426 50b0790e 2020-09-11 stsp err = got_error_from_errno("asprintf");
427 50b0790e 2020-09-11 stsp goto done;
428 50b0790e 2020-09-11 stsp }
429 50b0790e 2020-09-11 stsp
430 50b0790e 2020-09-11 stsp err = got_gotconfig_read(&(*worktree)->gotconfig,
431 50b0790e 2020-09-11 stsp (*worktree)->gotconfig_path);
432 437adc9d 2020-12-10 yzhong
433 437adc9d 2020-12-10 yzhong (*worktree)->root_fd = open((*worktree)->root_path, O_DIRECTORY);
434 437adc9d 2020-12-10 yzhong if ((*worktree)->root_fd == -1) {
435 437adc9d 2020-12-10 yzhong err = got_error_from_errno2("open", (*worktree)->root_path);
436 437adc9d 2020-12-10 yzhong goto done;
437 437adc9d 2020-12-10 yzhong }
438 6d9d28c3 2018-03-11 stsp done:
439 eaccb85f 2018-12-25 stsp if (repo)
440 eaccb85f 2018-12-25 stsp got_repo_close(repo);
441 7ac97322 2018-03-11 stsp free(path_got);
442 056e7441 2018-03-11 stsp free(path_lock);
443 eaccb85f 2018-12-25 stsp free(base_commit_id_str);
444 c442a90d 2019-03-10 stsp free(uuidstr);
445 bd165944 2019-03-10 stsp free(formatstr);
446 6d9d28c3 2018-03-11 stsp if (err) {
447 6d9d28c3 2018-03-11 stsp if (fd != -1)
448 6d9d28c3 2018-03-11 stsp close(fd);
449 6d9d28c3 2018-03-11 stsp if (*worktree != NULL)
450 6d9d28c3 2018-03-11 stsp got_worktree_close(*worktree);
451 6d9d28c3 2018-03-11 stsp *worktree = NULL;
452 6d9d28c3 2018-03-11 stsp } else
453 056e7441 2018-03-11 stsp (*worktree)->lockfd = fd;
454 6d9d28c3 2018-03-11 stsp
455 6d9d28c3 2018-03-11 stsp return err;
456 86c3caaf 2018-03-09 stsp }
457 247140b2 2019-02-05 stsp
458 247140b2 2019-02-05 stsp const struct got_error *
459 247140b2 2019-02-05 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
460 247140b2 2019-02-05 stsp {
461 247140b2 2019-02-05 stsp const struct got_error *err = NULL;
462 aedea96d 2020-10-20 stsp char *worktree_path;
463 86c3caaf 2018-03-09 stsp
464 aedea96d 2020-10-20 stsp worktree_path = strdup(path);
465 aedea96d 2020-10-20 stsp if (worktree_path == NULL)
466 aedea96d 2020-10-20 stsp return got_error_from_errno("strdup");
467 aedea96d 2020-10-20 stsp
468 aedea96d 2020-10-20 stsp for (;;) {
469 aedea96d 2020-10-20 stsp char *parent_path;
470 aedea96d 2020-10-20 stsp
471 aedea96d 2020-10-20 stsp err = open_worktree(worktree, worktree_path);
472 aedea96d 2020-10-20 stsp if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT)) {
473 aedea96d 2020-10-20 stsp free(worktree_path);
474 247140b2 2019-02-05 stsp return err;
475 aedea96d 2020-10-20 stsp }
476 aedea96d 2020-10-20 stsp if (*worktree) {
477 aedea96d 2020-10-20 stsp free(worktree_path);
478 aedea96d 2020-10-20 stsp return NULL;
479 aedea96d 2020-10-20 stsp }
480 aedea96d 2020-10-20 stsp if (worktree_path[0] == '/' && worktree_path[1] == '\0')
481 aedea96d 2020-10-20 stsp break;
482 aedea96d 2020-10-20 stsp err = got_path_dirname(&parent_path, worktree_path);
483 aedea96d 2020-10-20 stsp if (err) {
484 aedea96d 2020-10-20 stsp if (err->code != GOT_ERR_BAD_PATH) {
485 aedea96d 2020-10-20 stsp free(worktree_path);
486 aedea96d 2020-10-20 stsp return err;
487 aedea96d 2020-10-20 stsp }
488 aedea96d 2020-10-20 stsp break;
489 aedea96d 2020-10-20 stsp }
490 aedea96d 2020-10-20 stsp free(worktree_path);
491 aedea96d 2020-10-20 stsp worktree_path = parent_path;
492 aedea96d 2020-10-20 stsp }
493 247140b2 2019-02-05 stsp
494 aedea96d 2020-10-20 stsp free(worktree_path);
495 247140b2 2019-02-05 stsp return got_error(GOT_ERR_NOT_WORKTREE);
496 247140b2 2019-02-05 stsp }
497 247140b2 2019-02-05 stsp
498 3a6ce05a 2019-02-11 stsp const struct got_error *
499 86c3caaf 2018-03-09 stsp got_worktree_close(struct got_worktree *worktree)
500 86c3caaf 2018-03-09 stsp {
501 3a6ce05a 2019-02-11 stsp const struct got_error *err = NULL;
502 cde76477 2018-03-11 stsp free(worktree->repo_path);
503 6d9d28c3 2018-03-11 stsp free(worktree->path_prefix);
504 eaccb85f 2018-12-25 stsp free(worktree->base_commit_id);
505 36a38700 2019-05-10 stsp free(worktree->head_ref_name);
506 056e7441 2018-03-11 stsp if (worktree->lockfd != -1)
507 3a6ce05a 2019-02-11 stsp if (close(worktree->lockfd) != 0)
508 638f9024 2019-05-13 stsp err = got_error_from_errno2("close",
509 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree));
510 7f11502c 2019-08-28 hiltjo free(worktree->root_path);
511 50b0790e 2020-09-11 stsp free(worktree->gotconfig_path);
512 50b0790e 2020-09-11 stsp got_gotconfig_free(worktree->gotconfig);
513 6d9d28c3 2018-03-11 stsp free(worktree);
514 437adc9d 2020-12-10 yzhong close(worktree->root_fd);
515 3a6ce05a 2019-02-11 stsp return err;
516 86c3caaf 2018-03-09 stsp }
517 86c3caaf 2018-03-09 stsp
518 2fbdb5ae 2018-12-29 stsp const char *
519 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(struct got_worktree *worktree)
520 c7f4312f 2019-02-05 stsp {
521 c7f4312f 2019-02-05 stsp return worktree->root_path;
522 c7f4312f 2019-02-05 stsp }
523 c7f4312f 2019-02-05 stsp
524 c7f4312f 2019-02-05 stsp const char *
525 86c3caaf 2018-03-09 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
526 86c3caaf 2018-03-09 stsp {
527 2fbdb5ae 2018-12-29 stsp return worktree->repo_path;
528 49520a32 2018-12-29 stsp }
529 49520a32 2018-12-29 stsp const char *
530 49520a32 2018-12-29 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
531 49520a32 2018-12-29 stsp {
532 f609be2e 2018-12-29 stsp return worktree->path_prefix;
533 e5dc7198 2018-12-29 stsp }
534 e5dc7198 2018-12-29 stsp
535 e5dc7198 2018-12-29 stsp const struct got_error *
536 e5dc7198 2018-12-29 stsp got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
537 e5dc7198 2018-12-29 stsp const char *path_prefix)
538 e5dc7198 2018-12-29 stsp {
539 e5dc7198 2018-12-29 stsp char *absprefix = NULL;
540 e5dc7198 2018-12-29 stsp
541 e5dc7198 2018-12-29 stsp if (!got_path_is_absolute(path_prefix)) {
542 e5dc7198 2018-12-29 stsp if (asprintf(&absprefix, "/%s", path_prefix) == -1)
543 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
544 e5dc7198 2018-12-29 stsp }
545 e5dc7198 2018-12-29 stsp *match = (strcmp(absprefix ? absprefix : path_prefix,
546 e5dc7198 2018-12-29 stsp worktree->path_prefix) == 0);
547 e5dc7198 2018-12-29 stsp free(absprefix);
548 e5dc7198 2018-12-29 stsp return NULL;
549 86c3caaf 2018-03-09 stsp }
550 86c3caaf 2018-03-09 stsp
551 bc70eb79 2019-05-09 stsp const char *
552 35be1456 2018-03-11 stsp got_worktree_get_head_ref_name(struct got_worktree *worktree)
553 86c3caaf 2018-03-09 stsp {
554 36a38700 2019-05-10 stsp return worktree->head_ref_name;
555 024e9686 2019-05-14 stsp }
556 024e9686 2019-05-14 stsp
557 024e9686 2019-05-14 stsp const struct got_error *
558 024e9686 2019-05-14 stsp got_worktree_set_head_ref(struct got_worktree *worktree,
559 024e9686 2019-05-14 stsp struct got_reference *head_ref)
560 024e9686 2019-05-14 stsp {
561 024e9686 2019-05-14 stsp const struct got_error *err = NULL;
562 024e9686 2019-05-14 stsp char *path_got = NULL, *head_ref_name = NULL;
563 024e9686 2019-05-14 stsp
564 024e9686 2019-05-14 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
565 024e9686 2019-05-14 stsp GOT_WORKTREE_GOT_DIR) == -1) {
566 024e9686 2019-05-14 stsp err = got_error_from_errno("asprintf");
567 024e9686 2019-05-14 stsp path_got = NULL;
568 024e9686 2019-05-14 stsp goto done;
569 024e9686 2019-05-14 stsp }
570 024e9686 2019-05-14 stsp
571 024e9686 2019-05-14 stsp head_ref_name = strdup(got_ref_get_name(head_ref));
572 024e9686 2019-05-14 stsp if (head_ref_name == NULL) {
573 024e9686 2019-05-14 stsp err = got_error_from_errno("strdup");
574 024e9686 2019-05-14 stsp goto done;
575 024e9686 2019-05-14 stsp }
576 024e9686 2019-05-14 stsp
577 024e9686 2019-05-14 stsp err = write_head_ref(path_got, head_ref);
578 024e9686 2019-05-14 stsp if (err)
579 024e9686 2019-05-14 stsp goto done;
580 024e9686 2019-05-14 stsp
581 024e9686 2019-05-14 stsp free(worktree->head_ref_name);
582 024e9686 2019-05-14 stsp worktree->head_ref_name = head_ref_name;
583 024e9686 2019-05-14 stsp done:
584 024e9686 2019-05-14 stsp free(path_got);
585 024e9686 2019-05-14 stsp if (err)
586 024e9686 2019-05-14 stsp free(head_ref_name);
587 024e9686 2019-05-14 stsp return err;
588 507dc3bb 2018-12-29 stsp }
589 507dc3bb 2018-12-29 stsp
590 b72f483a 2019-02-05 stsp struct got_object_id *
591 507dc3bb 2018-12-29 stsp got_worktree_get_base_commit_id(struct got_worktree *worktree)
592 507dc3bb 2018-12-29 stsp {
593 507dc3bb 2018-12-29 stsp return worktree->base_commit_id;
594 86c3caaf 2018-03-09 stsp }
595 86c3caaf 2018-03-09 stsp
596 507dc3bb 2018-12-29 stsp const struct got_error *
597 507dc3bb 2018-12-29 stsp got_worktree_set_base_commit_id(struct got_worktree *worktree,
598 507dc3bb 2018-12-29 stsp struct got_repository *repo, struct got_object_id *commit_id)
599 507dc3bb 2018-12-29 stsp {
600 507dc3bb 2018-12-29 stsp const struct got_error *err;
601 507dc3bb 2018-12-29 stsp struct got_object *obj = NULL;
602 507dc3bb 2018-12-29 stsp char *id_str = NULL;
603 507dc3bb 2018-12-29 stsp char *path_got = NULL;
604 507dc3bb 2018-12-29 stsp
605 507dc3bb 2018-12-29 stsp if (asprintf(&path_got, "%s/%s", worktree->root_path,
606 507dc3bb 2018-12-29 stsp GOT_WORKTREE_GOT_DIR) == -1) {
607 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
608 507dc3bb 2018-12-29 stsp path_got = NULL;
609 507dc3bb 2018-12-29 stsp goto done;
610 507dc3bb 2018-12-29 stsp }
611 507dc3bb 2018-12-29 stsp
612 507dc3bb 2018-12-29 stsp err = got_object_open(&obj, repo, commit_id);
613 507dc3bb 2018-12-29 stsp if (err)
614 507dc3bb 2018-12-29 stsp return err;
615 507dc3bb 2018-12-29 stsp
616 507dc3bb 2018-12-29 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
617 507dc3bb 2018-12-29 stsp err = got_error(GOT_ERR_OBJ_TYPE);
618 507dc3bb 2018-12-29 stsp goto done;
619 507dc3bb 2018-12-29 stsp }
620 507dc3bb 2018-12-29 stsp
621 507dc3bb 2018-12-29 stsp /* Record our base commit. */
622 507dc3bb 2018-12-29 stsp err = got_object_id_str(&id_str, commit_id);
623 507dc3bb 2018-12-29 stsp if (err)
624 507dc3bb 2018-12-29 stsp goto done;
625 507dc3bb 2018-12-29 stsp err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
626 507dc3bb 2018-12-29 stsp if (err)
627 507dc3bb 2018-12-29 stsp goto done;
628 507dc3bb 2018-12-29 stsp
629 507dc3bb 2018-12-29 stsp free(worktree->base_commit_id);
630 507dc3bb 2018-12-29 stsp worktree->base_commit_id = got_object_id_dup(commit_id);
631 507dc3bb 2018-12-29 stsp if (worktree->base_commit_id == NULL) {
632 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
633 507dc3bb 2018-12-29 stsp goto done;
634 507dc3bb 2018-12-29 stsp }
635 507dc3bb 2018-12-29 stsp done:
636 507dc3bb 2018-12-29 stsp if (obj)
637 507dc3bb 2018-12-29 stsp got_object_close(obj);
638 507dc3bb 2018-12-29 stsp free(id_str);
639 507dc3bb 2018-12-29 stsp free(path_got);
640 507dc3bb 2018-12-29 stsp return err;
641 50b0790e 2020-09-11 stsp }
642 50b0790e 2020-09-11 stsp
643 50b0790e 2020-09-11 stsp const struct got_gotconfig *
644 50b0790e 2020-09-11 stsp got_worktree_get_gotconfig(struct got_worktree *worktree)
645 50b0790e 2020-09-11 stsp {
646 50b0790e 2020-09-11 stsp return worktree->gotconfig;
647 507dc3bb 2018-12-29 stsp }
648 507dc3bb 2018-12-29 stsp
649 9d31a1d8 2018-03-11 stsp static const struct got_error *
650 9d31a1d8 2018-03-11 stsp lock_worktree(struct got_worktree *worktree, int operation)
651 86c3caaf 2018-03-09 stsp {
652 9d31a1d8 2018-03-11 stsp if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
653 9d31a1d8 2018-03-11 stsp return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
654 638f9024 2019-05-13 stsp : got_error_from_errno2("flock",
655 230a42bd 2019-05-11 jcs got_worktree_get_root_path(worktree)));
656 86c3caaf 2018-03-09 stsp return NULL;
657 21908da4 2019-01-13 stsp }
658 21908da4 2019-01-13 stsp
659 21908da4 2019-01-13 stsp static const struct got_error *
660 4a1ddfc2 2019-01-12 stsp add_dir_on_disk(struct got_worktree *worktree, const char *path)
661 4a1ddfc2 2019-01-12 stsp {
662 4a1ddfc2 2019-01-12 stsp const struct got_error *err = NULL;
663 4a1ddfc2 2019-01-12 stsp char *abspath;
664 4a1ddfc2 2019-01-12 stsp
665 4a1ddfc2 2019-01-12 stsp if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
666 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
667 4a1ddfc2 2019-01-12 stsp
668 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(abspath);
669 ddcd8544 2019-03-11 stsp if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
670 ddcd8544 2019-03-11 stsp struct stat sb;
671 ddcd8544 2019-03-11 stsp err = NULL;
672 ddcd8544 2019-03-11 stsp if (lstat(abspath, &sb) == -1) {
673 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
674 ddcd8544 2019-03-11 stsp } else if (!S_ISDIR(sb.st_mode)) {
675 ddcd8544 2019-03-11 stsp /* TODO directory is obstructed; do something */
676 3665fce0 2020-07-13 stsp err = got_error_path(abspath, GOT_ERR_FILE_OBSTRUCTED);
677 ddcd8544 2019-03-11 stsp }
678 ddcd8544 2019-03-11 stsp }
679 4a1ddfc2 2019-01-12 stsp free(abspath);
680 68c76935 2019-02-19 stsp return err;
681 68c76935 2019-02-19 stsp }
682 68c76935 2019-02-19 stsp
683 68c76935 2019-02-19 stsp static const struct got_error *
684 68c76935 2019-02-19 stsp check_file_contents_equal(int *same, FILE *f1, FILE *f2)
685 68c76935 2019-02-19 stsp {
686 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
687 68c76935 2019-02-19 stsp uint8_t fbuf1[8192];
688 68c76935 2019-02-19 stsp uint8_t fbuf2[8192];
689 68c76935 2019-02-19 stsp size_t flen1 = 0, flen2 = 0;
690 68c76935 2019-02-19 stsp
691 68c76935 2019-02-19 stsp *same = 1;
692 68c76935 2019-02-19 stsp
693 230a42bd 2019-05-11 jcs for (;;) {
694 68c76935 2019-02-19 stsp flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
695 68c76935 2019-02-19 stsp if (flen1 == 0 && ferror(f1)) {
696 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
697 68c76935 2019-02-19 stsp break;
698 68c76935 2019-02-19 stsp }
699 68c76935 2019-02-19 stsp flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
700 68c76935 2019-02-19 stsp if (flen2 == 0 && ferror(f2)) {
701 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
702 68c76935 2019-02-19 stsp break;
703 68c76935 2019-02-19 stsp }
704 68c76935 2019-02-19 stsp if (flen1 == 0) {
705 68c76935 2019-02-19 stsp if (flen2 != 0)
706 68c76935 2019-02-19 stsp *same = 0;
707 68c76935 2019-02-19 stsp break;
708 68c76935 2019-02-19 stsp } else if (flen2 == 0) {
709 68c76935 2019-02-19 stsp if (flen1 != 0)
710 68c76935 2019-02-19 stsp *same = 0;
711 68c76935 2019-02-19 stsp break;
712 68c76935 2019-02-19 stsp } else if (flen1 == flen2) {
713 68c76935 2019-02-19 stsp if (memcmp(fbuf1, fbuf2, flen2) != 0) {
714 68c76935 2019-02-19 stsp *same = 0;
715 68c76935 2019-02-19 stsp break;
716 68c76935 2019-02-19 stsp }
717 68c76935 2019-02-19 stsp } else {
718 68c76935 2019-02-19 stsp *same = 0;
719 68c76935 2019-02-19 stsp break;
720 68c76935 2019-02-19 stsp }
721 68c76935 2019-02-19 stsp }
722 68c76935 2019-02-19 stsp
723 68c76935 2019-02-19 stsp return err;
724 68c76935 2019-02-19 stsp }
725 68c76935 2019-02-19 stsp
726 68c76935 2019-02-19 stsp static const struct got_error *
727 68c76935 2019-02-19 stsp check_files_equal(int *same, const char *f1_path, const char *f2_path)
728 68c76935 2019-02-19 stsp {
729 68c76935 2019-02-19 stsp const struct got_error *err = NULL;
730 68c76935 2019-02-19 stsp struct stat sb;
731 68c76935 2019-02-19 stsp size_t size1, size2;
732 68c76935 2019-02-19 stsp FILE *f1 = NULL, *f2 = NULL;
733 68c76935 2019-02-19 stsp
734 68c76935 2019-02-19 stsp *same = 1;
735 68c76935 2019-02-19 stsp
736 68c76935 2019-02-19 stsp if (lstat(f1_path, &sb) != 0) {
737 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", f1_path);
738 68c76935 2019-02-19 stsp goto done;
739 68c76935 2019-02-19 stsp }
740 68c76935 2019-02-19 stsp size1 = sb.st_size;
741 68c76935 2019-02-19 stsp
742 68c76935 2019-02-19 stsp if (lstat(f2_path, &sb) != 0) {
743 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", f2_path);
744 68c76935 2019-02-19 stsp goto done;
745 68c76935 2019-02-19 stsp }
746 68c76935 2019-02-19 stsp size2 = sb.st_size;
747 68c76935 2019-02-19 stsp
748 68c76935 2019-02-19 stsp if (size1 != size2) {
749 68c76935 2019-02-19 stsp *same = 0;
750 68c76935 2019-02-19 stsp return NULL;
751 68c76935 2019-02-19 stsp }
752 68c76935 2019-02-19 stsp
753 68c76935 2019-02-19 stsp f1 = fopen(f1_path, "r");
754 68c76935 2019-02-19 stsp if (f1 == NULL)
755 60522982 2019-12-15 stsp return got_error_from_errno2("fopen", f1_path);
756 68c76935 2019-02-19 stsp
757 68c76935 2019-02-19 stsp f2 = fopen(f2_path, "r");
758 68c76935 2019-02-19 stsp if (f2 == NULL) {
759 60522982 2019-12-15 stsp err = got_error_from_errno2("fopen", f2_path);
760 68c76935 2019-02-19 stsp goto done;
761 68c76935 2019-02-19 stsp }
762 68c76935 2019-02-19 stsp
763 68c76935 2019-02-19 stsp err = check_file_contents_equal(same, f1, f2);
764 68c76935 2019-02-19 stsp done:
765 68c76935 2019-02-19 stsp if (f1 && fclose(f1) != 0 && err == NULL)
766 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
767 68c76935 2019-02-19 stsp if (f2 && fclose(f2) != 0 && err == NULL)
768 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
769 68c76935 2019-02-19 stsp
770 6353ad76 2019-02-08 stsp return err;
771 6353ad76 2019-02-08 stsp }
772 6353ad76 2019-02-08 stsp
773 6353ad76 2019-02-08 stsp /*
774 46b6ee73 2019-06-04 stsp * Perform a 3-way merge where blob_orig acts as the common ancestor,
775 14c901f1 2019-08-08 stsp * the file at deriv_path acts as the first derived version, and the
776 14c901f1 2019-08-08 stsp * file on disk acts as the second derived version.
777 6353ad76 2019-02-08 stsp */
778 6353ad76 2019-02-08 stsp static const struct got_error *
779 14c901f1 2019-08-08 stsp merge_file(int *local_changes_subsumed, struct got_worktree *worktree,
780 46b6ee73 2019-06-04 stsp struct got_blob_object *blob_orig, const char *ondisk_path,
781 14c901f1 2019-08-08 stsp const char *path, uint16_t st_mode, const char *deriv_path,
782 f69721c3 2019-10-21 stsp const char *label_orig, const char *label_deriv,
783 f69721c3 2019-10-21 stsp struct got_repository *repo,
784 14c901f1 2019-08-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
785 6353ad76 2019-02-08 stsp {
786 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
787 6353ad76 2019-02-08 stsp int merged_fd = -1;
788 14c901f1 2019-08-08 stsp FILE *f_orig = NULL;
789 14c901f1 2019-08-08 stsp char *blob_orig_path = NULL;
790 af54ae4a 2019-02-19 stsp char *merged_path = NULL, *base_path = NULL;
791 234035bc 2019-06-01 stsp int overlapcnt = 0;
792 3524bbf9 2020-10-20 stsp char *parent = NULL;
793 3b9f0f87 2020-07-23 stsp char *symlink_path = NULL;
794 3b9f0f87 2020-07-23 stsp FILE *symlinkf = NULL;
795 6353ad76 2019-02-08 stsp
796 234035bc 2019-06-01 stsp *local_changes_subsumed = 0;
797 234035bc 2019-06-01 stsp
798 3524bbf9 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
799 3524bbf9 2020-10-20 stsp if (err)
800 3524bbf9 2020-10-20 stsp return err;
801 af54ae4a 2019-02-19 stsp
802 3524bbf9 2020-10-20 stsp if (asprintf(&base_path, "%s/got-merged", parent) == -1) {
803 3524bbf9 2020-10-20 stsp err = got_error_from_errno("asprintf");
804 3524bbf9 2020-10-20 stsp goto done;
805 3524bbf9 2020-10-20 stsp }
806 af54ae4a 2019-02-19 stsp
807 af54ae4a 2019-02-19 stsp err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
808 6353ad76 2019-02-08 stsp if (err)
809 6353ad76 2019-02-08 stsp goto done;
810 6353ad76 2019-02-08 stsp
811 af54ae4a 2019-02-19 stsp free(base_path);
812 46b6ee73 2019-06-04 stsp if (asprintf(&base_path, "%s/got-merge-blob-orig", parent) == -1) {
813 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
814 af54ae4a 2019-02-19 stsp base_path = NULL;
815 af54ae4a 2019-02-19 stsp goto done;
816 af54ae4a 2019-02-19 stsp }
817 af54ae4a 2019-02-19 stsp
818 46b6ee73 2019-06-04 stsp err = got_opentemp_named(&blob_orig_path, &f_orig, base_path);
819 6353ad76 2019-02-08 stsp if (err)
820 6353ad76 2019-02-08 stsp goto done;
821 46b6ee73 2019-06-04 stsp if (blob_orig) {
822 6c4c42e0 2019-06-24 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_orig,
823 46b6ee73 2019-06-04 stsp blob_orig);
824 1430b4e0 2019-03-27 stsp if (err)
825 1430b4e0 2019-03-27 stsp goto done;
826 1430b4e0 2019-03-27 stsp } else {
827 1430b4e0 2019-03-27 stsp /*
828 1430b4e0 2019-03-27 stsp * If the file has no blob, this is an "add vs add" conflict,
829 1430b4e0 2019-03-27 stsp * and we simply use an empty ancestor file to make both files
830 1430b4e0 2019-03-27 stsp * appear in the merged result in their entirety.
831 1430b4e0 2019-03-27 stsp */
832 1430b4e0 2019-03-27 stsp }
833 6353ad76 2019-02-08 stsp
834 3b9f0f87 2020-07-23 stsp /*
835 3b9f0f87 2020-07-23 stsp * In order the run a 3-way merge with a symlink we copy the symlink's
836 3b9f0f87 2020-07-23 stsp * target path into a temporary file and use that file with diff3.
837 3b9f0f87 2020-07-23 stsp */
838 3b9f0f87 2020-07-23 stsp if (S_ISLNK(st_mode)) {
839 3b9f0f87 2020-07-23 stsp char target_path[PATH_MAX];
840 3b9f0f87 2020-07-23 stsp ssize_t target_len;
841 3b9f0f87 2020-07-23 stsp size_t n;
842 3b9f0f87 2020-07-23 stsp
843 3b9f0f87 2020-07-23 stsp free(base_path);
844 3b9f0f87 2020-07-23 stsp if (asprintf(&base_path, "%s/got-symlink-merge",
845 3b9f0f87 2020-07-23 stsp parent) == -1) {
846 3b9f0f87 2020-07-23 stsp err = got_error_from_errno("asprintf");
847 3b9f0f87 2020-07-23 stsp base_path = NULL;
848 3b9f0f87 2020-07-23 stsp goto done;
849 3b9f0f87 2020-07-23 stsp }
850 3b9f0f87 2020-07-23 stsp err = got_opentemp_named(&symlink_path, &symlinkf, base_path);
851 3b9f0f87 2020-07-23 stsp if (err)
852 3b9f0f87 2020-07-23 stsp goto done;
853 3b9f0f87 2020-07-23 stsp target_len = readlink(ondisk_path, target_path,
854 3b9f0f87 2020-07-23 stsp sizeof(target_path));
855 3b9f0f87 2020-07-23 stsp if (target_len == -1) {
856 3b9f0f87 2020-07-23 stsp err = got_error_from_errno2("readlink", ondisk_path);
857 3b9f0f87 2020-07-23 stsp goto done;
858 3b9f0f87 2020-07-23 stsp }
859 3b9f0f87 2020-07-23 stsp n = fwrite(target_path, 1, target_len, symlinkf);
860 3b9f0f87 2020-07-23 stsp if (n != target_len) {
861 3b9f0f87 2020-07-23 stsp err = got_ferror(symlinkf, GOT_ERR_IO);
862 3b9f0f87 2020-07-23 stsp goto done;
863 3b9f0f87 2020-07-23 stsp }
864 3b9f0f87 2020-07-23 stsp if (fflush(symlinkf) == EOF) {
865 3b9f0f87 2020-07-23 stsp err = got_error_from_errno2("fflush", symlink_path);
866 3b9f0f87 2020-07-23 stsp goto done;
867 3b9f0f87 2020-07-23 stsp }
868 3b9f0f87 2020-07-23 stsp }
869 3b9f0f87 2020-07-23 stsp
870 14c901f1 2019-08-08 stsp err = got_merge_diff3(&overlapcnt, merged_fd, deriv_path,
871 3b9f0f87 2020-07-23 stsp blob_orig_path, symlink_path ? symlink_path : ondisk_path,
872 3b9f0f87 2020-07-23 stsp label_deriv, label_orig, NULL);
873 6353ad76 2019-02-08 stsp if (err)
874 6353ad76 2019-02-08 stsp goto done;
875 6353ad76 2019-02-08 stsp
876 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg,
877 6353ad76 2019-02-08 stsp overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
878 1ee397ad 2019-07-12 stsp if (err)
879 1ee397ad 2019-07-12 stsp goto done;
880 6353ad76 2019-02-08 stsp
881 816dc654 2019-02-16 stsp if (fsync(merged_fd) != 0) {
882 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
883 816dc654 2019-02-16 stsp goto done;
884 68c76935 2019-02-19 stsp }
885 68c76935 2019-02-19 stsp
886 68c76935 2019-02-19 stsp /* Check if a clean merge has subsumed all local changes. */
887 68c76935 2019-02-19 stsp if (overlapcnt == 0) {
888 14c901f1 2019-08-08 stsp err = check_files_equal(local_changes_subsumed, deriv_path,
889 68c76935 2019-02-19 stsp merged_path);
890 68c76935 2019-02-19 stsp if (err)
891 68c76935 2019-02-19 stsp goto done;
892 816dc654 2019-02-16 stsp }
893 6353ad76 2019-02-08 stsp
894 2ad902c0 2019-12-15 stsp if (fchmod(merged_fd, st_mode) != 0) {
895 2ad902c0 2019-12-15 stsp err = got_error_from_errno2("fchmod", merged_path);
896 70a0c8ec 2019-02-20 stsp goto done;
897 70a0c8ec 2019-02-20 stsp }
898 70a0c8ec 2019-02-20 stsp
899 6353ad76 2019-02-08 stsp if (rename(merged_path, ondisk_path) != 0) {
900 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", merged_path,
901 230a42bd 2019-05-11 jcs ondisk_path);
902 6353ad76 2019-02-08 stsp goto done;
903 6353ad76 2019-02-08 stsp }
904 6353ad76 2019-02-08 stsp done:
905 fdcb7daf 2019-12-15 stsp if (err) {
906 fdcb7daf 2019-12-15 stsp if (merged_path)
907 fdcb7daf 2019-12-15 stsp unlink(merged_path);
908 3b9f0f87 2020-07-23 stsp }
909 3b9f0f87 2020-07-23 stsp if (symlink_path) {
910 3b9f0f87 2020-07-23 stsp if (unlink(symlink_path) == -1 && err == NULL)
911 3b9f0f87 2020-07-23 stsp err = got_error_from_errno2("unlink", symlink_path);
912 fdcb7daf 2019-12-15 stsp }
913 3b9f0f87 2020-07-23 stsp if (symlinkf && fclose(symlinkf) == EOF && err == NULL)
914 3b9f0f87 2020-07-23 stsp err = got_error_from_errno2("fclose", symlink_path);
915 3b9f0f87 2020-07-23 stsp free(symlink_path);
916 3a6ce05a 2019-02-11 stsp if (merged_fd != -1 && close(merged_fd) != 0 && err == NULL)
917 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
918 46b6ee73 2019-06-04 stsp if (f_orig && fclose(f_orig) != 0 && err == NULL)
919 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
920 6353ad76 2019-02-08 stsp free(merged_path);
921 af54ae4a 2019-02-19 stsp free(base_path);
922 46b6ee73 2019-06-04 stsp if (blob_orig_path) {
923 46b6ee73 2019-06-04 stsp unlink(blob_orig_path);
924 46b6ee73 2019-06-04 stsp free(blob_orig_path);
925 af57b12a 2020-07-23 stsp }
926 3524bbf9 2020-10-20 stsp free(parent);
927 af57b12a 2020-07-23 stsp return err;
928 af57b12a 2020-07-23 stsp }
929 af57b12a 2020-07-23 stsp
930 af57b12a 2020-07-23 stsp static const struct got_error *
931 af57b12a 2020-07-23 stsp update_symlink(const char *ondisk_path, const char *target_path,
932 af57b12a 2020-07-23 stsp size_t target_len)
933 af57b12a 2020-07-23 stsp {
934 af57b12a 2020-07-23 stsp /* This is not atomic but matches what 'ln -sf' does. */
935 af57b12a 2020-07-23 stsp if (unlink(ondisk_path) == -1)
936 af57b12a 2020-07-23 stsp return got_error_from_errno2("unlink", ondisk_path);
937 af57b12a 2020-07-23 stsp if (symlink(target_path, ondisk_path) == -1)
938 af57b12a 2020-07-23 stsp return got_error_from_errno3("symlink", target_path,
939 af57b12a 2020-07-23 stsp ondisk_path);
940 af57b12a 2020-07-23 stsp return NULL;
941 af57b12a 2020-07-23 stsp }
942 af57b12a 2020-07-23 stsp
943 af57b12a 2020-07-23 stsp /*
944 11cc08c1 2020-07-23 stsp * Overwrite a symlink (or a regular file in case there was a "bad" symlink)
945 11cc08c1 2020-07-23 stsp * in the work tree with a file that contains conflict markers and the
946 993e2a1b 2020-07-23 stsp * conflicting target paths of the original version, a "derived version"
947 993e2a1b 2020-07-23 stsp * of a symlink from an incoming change, and a local version of the symlink.
948 993e2a1b 2020-07-23 stsp *
949 993e2a1b 2020-07-23 stsp * The original versions's target path can be NULL if it is not available,
950 993e2a1b 2020-07-23 stsp * such as if both derived versions added a new symlink at the same path.
951 993e2a1b 2020-07-23 stsp *
952 993e2a1b 2020-07-23 stsp * The incoming derived symlink target is NULL in case the incoming change
953 993e2a1b 2020-07-23 stsp * has deleted this symlink.
954 11cc08c1 2020-07-23 stsp */
955 11cc08c1 2020-07-23 stsp static const struct got_error *
956 11cc08c1 2020-07-23 stsp install_symlink_conflict(const char *deriv_target,
957 11cc08c1 2020-07-23 stsp struct got_object_id *deriv_base_commit_id, const char *orig_target,
958 11cc08c1 2020-07-23 stsp const char *label_orig, const char *local_target, const char *ondisk_path)
959 11cc08c1 2020-07-23 stsp {
960 11cc08c1 2020-07-23 stsp const struct got_error *err;
961 11cc08c1 2020-07-23 stsp char *id_str = NULL, *label_deriv = NULL, *path = NULL;
962 11cc08c1 2020-07-23 stsp FILE *f = NULL;
963 11cc08c1 2020-07-23 stsp
964 11cc08c1 2020-07-23 stsp err = got_object_id_str(&id_str, deriv_base_commit_id);
965 11cc08c1 2020-07-23 stsp if (err)
966 11cc08c1 2020-07-23 stsp return got_error_from_errno("asprintf");
967 11cc08c1 2020-07-23 stsp
968 11cc08c1 2020-07-23 stsp if (asprintf(&label_deriv, "%s: commit %s",
969 11cc08c1 2020-07-23 stsp GOT_MERGE_LABEL_MERGED, id_str) == -1) {
970 11cc08c1 2020-07-23 stsp err = got_error_from_errno("asprintf");
971 11cc08c1 2020-07-23 stsp goto done;
972 11cc08c1 2020-07-23 stsp }
973 11cc08c1 2020-07-23 stsp
974 11cc08c1 2020-07-23 stsp err = got_opentemp_named(&path, &f, "got-symlink-conflict");
975 11cc08c1 2020-07-23 stsp if (err)
976 3818e3c4 2020-11-01 naddy goto done;
977 3818e3c4 2020-11-01 naddy
978 3818e3c4 2020-11-01 naddy if (fchmod(fileno(f), GOT_DEFAULT_FILE_MODE) == -1) {
979 3818e3c4 2020-11-01 naddy err = got_error_from_errno2("fchmod", path);
980 11cc08c1 2020-07-23 stsp goto done;
981 3818e3c4 2020-11-01 naddy }
982 11cc08c1 2020-07-23 stsp
983 283102fc 2020-07-23 stsp if (fprintf(f, "%s %s\n%s\n%s%s%s%s%s\n%s\n%s\n",
984 993e2a1b 2020-07-23 stsp GOT_DIFF_CONFLICT_MARKER_BEGIN, label_deriv,
985 993e2a1b 2020-07-23 stsp deriv_target ? deriv_target : "(symlink was deleted)",
986 11cc08c1 2020-07-23 stsp orig_target ? label_orig : "",
987 11cc08c1 2020-07-23 stsp orig_target ? "\n" : "",
988 11cc08c1 2020-07-23 stsp orig_target ? orig_target : "",
989 11cc08c1 2020-07-23 stsp orig_target ? "\n" : "",
990 11cc08c1 2020-07-23 stsp GOT_DIFF_CONFLICT_MARKER_SEP,
991 11cc08c1 2020-07-23 stsp local_target, GOT_DIFF_CONFLICT_MARKER_END) < 0) {
992 11cc08c1 2020-07-23 stsp err = got_error_from_errno2("fprintf", path);
993 11cc08c1 2020-07-23 stsp goto done;
994 11cc08c1 2020-07-23 stsp }
995 11cc08c1 2020-07-23 stsp
996 11cc08c1 2020-07-23 stsp if (unlink(ondisk_path) == -1) {
997 11cc08c1 2020-07-23 stsp err = got_error_from_errno2("unlink", ondisk_path);
998 11cc08c1 2020-07-23 stsp goto done;
999 11cc08c1 2020-07-23 stsp }
1000 11cc08c1 2020-07-23 stsp if (rename(path, ondisk_path) == -1) {
1001 11cc08c1 2020-07-23 stsp err = got_error_from_errno3("rename", path, ondisk_path);
1002 11cc08c1 2020-07-23 stsp goto done;
1003 11cc08c1 2020-07-23 stsp }
1004 11cc08c1 2020-07-23 stsp done:
1005 11cc08c1 2020-07-23 stsp if (f != NULL && fclose(f) == EOF && err == NULL)
1006 11cc08c1 2020-07-23 stsp err = got_error_from_errno2("fclose", path);
1007 11cc08c1 2020-07-23 stsp free(path);
1008 11cc08c1 2020-07-23 stsp free(id_str);
1009 11cc08c1 2020-07-23 stsp free(label_deriv);
1010 11cc08c1 2020-07-23 stsp return err;
1011 11cc08c1 2020-07-23 stsp }
1012 d219f183 2020-07-23 stsp
1013 d219f183 2020-07-23 stsp /* forward declaration */
1014 d219f183 2020-07-23 stsp static const struct got_error *
1015 d219f183 2020-07-23 stsp merge_blob(int *, struct got_worktree *, struct got_blob_object *,
1016 d219f183 2020-07-23 stsp const char *, const char *, uint16_t, const char *,
1017 d219f183 2020-07-23 stsp struct got_blob_object *, struct got_object_id *,
1018 d219f183 2020-07-23 stsp struct got_repository *, got_worktree_checkout_cb, void *);
1019 11cc08c1 2020-07-23 stsp
1020 11cc08c1 2020-07-23 stsp /*
1021 af57b12a 2020-07-23 stsp * Merge a symlink into the work tree, where blob_orig acts as the common
1022 36bf999c 2020-07-23 stsp * ancestor, deriv_target is the link target of the first derived version,
1023 36bf999c 2020-07-23 stsp * and the symlink on disk acts as the second derived version.
1024 af57b12a 2020-07-23 stsp * Assume that contents of both blobs represent symlinks.
1025 af57b12a 2020-07-23 stsp */
1026 af57b12a 2020-07-23 stsp static const struct got_error *
1027 af57b12a 2020-07-23 stsp merge_symlink(struct got_worktree *worktree,
1028 af57b12a 2020-07-23 stsp struct got_blob_object *blob_orig, const char *ondisk_path,
1029 36bf999c 2020-07-23 stsp const char *path, const char *label_orig, const char *deriv_target,
1030 af57b12a 2020-07-23 stsp struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
1031 af57b12a 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1032 af57b12a 2020-07-23 stsp {
1033 af57b12a 2020-07-23 stsp const struct got_error *err = NULL;
1034 36bf999c 2020-07-23 stsp char *ancestor_target = NULL;
1035 af57b12a 2020-07-23 stsp struct stat sb;
1036 11cc08c1 2020-07-23 stsp ssize_t ondisk_len, deriv_len;
1037 af57b12a 2020-07-23 stsp char ondisk_target[PATH_MAX];
1038 11cc08c1 2020-07-23 stsp int have_local_change = 0;
1039 11cc08c1 2020-07-23 stsp int have_incoming_change = 0;
1040 af57b12a 2020-07-23 stsp
1041 af57b12a 2020-07-23 stsp if (lstat(ondisk_path, &sb) == -1)
1042 af57b12a 2020-07-23 stsp return got_error_from_errno2("lstat", ondisk_path);
1043 af57b12a 2020-07-23 stsp
1044 af57b12a 2020-07-23 stsp ondisk_len = readlink(ondisk_path, ondisk_target,
1045 af57b12a 2020-07-23 stsp sizeof(ondisk_target));
1046 af57b12a 2020-07-23 stsp if (ondisk_len == -1) {
1047 af57b12a 2020-07-23 stsp err = got_error_from_errno2("readlink",
1048 af57b12a 2020-07-23 stsp ondisk_path);
1049 af57b12a 2020-07-23 stsp goto done;
1050 af57b12a 2020-07-23 stsp }
1051 56d815a9 2020-07-23 stsp ondisk_target[ondisk_len] = '\0';
1052 af57b12a 2020-07-23 stsp
1053 526a746f 2020-07-23 stsp if (blob_orig) {
1054 526a746f 2020-07-23 stsp err = got_object_blob_read_to_str(&ancestor_target, blob_orig);
1055 526a746f 2020-07-23 stsp if (err)
1056 526a746f 2020-07-23 stsp goto done;
1057 526a746f 2020-07-23 stsp }
1058 af57b12a 2020-07-23 stsp
1059 11cc08c1 2020-07-23 stsp if (ancestor_target == NULL ||
1060 11cc08c1 2020-07-23 stsp (ondisk_len != strlen(ancestor_target) ||
1061 11cc08c1 2020-07-23 stsp memcmp(ondisk_target, ancestor_target, ondisk_len) != 0))
1062 11cc08c1 2020-07-23 stsp have_local_change = 1;
1063 11cc08c1 2020-07-23 stsp
1064 11cc08c1 2020-07-23 stsp deriv_len = strlen(deriv_target);
1065 11cc08c1 2020-07-23 stsp if (ancestor_target == NULL ||
1066 11cc08c1 2020-07-23 stsp (deriv_len != strlen(ancestor_target) ||
1067 11cc08c1 2020-07-23 stsp memcmp(deriv_target, ancestor_target, deriv_len) != 0))
1068 11cc08c1 2020-07-23 stsp have_incoming_change = 1;
1069 11cc08c1 2020-07-23 stsp
1070 11cc08c1 2020-07-23 stsp if (!have_local_change && !have_incoming_change) {
1071 11cc08c1 2020-07-23 stsp if (ancestor_target) {
1072 11cc08c1 2020-07-23 stsp /* Both sides made the same change. */
1073 11cc08c1 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
1074 11cc08c1 2020-07-23 stsp path);
1075 11cc08c1 2020-07-23 stsp } else if (deriv_len == ondisk_len &&
1076 11cc08c1 2020-07-23 stsp memcmp(ondisk_target, deriv_target, deriv_len) == 0) {
1077 11cc08c1 2020-07-23 stsp /* Both sides added the same symlink. */
1078 11cc08c1 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
1079 11cc08c1 2020-07-23 stsp path);
1080 11cc08c1 2020-07-23 stsp } else {
1081 11cc08c1 2020-07-23 stsp /* Both sides added symlinks which don't match. */
1082 11cc08c1 2020-07-23 stsp err = install_symlink_conflict(deriv_target,
1083 11cc08c1 2020-07-23 stsp deriv_base_commit_id, ancestor_target,
1084 11cc08c1 2020-07-23 stsp label_orig, ondisk_target, ondisk_path);
1085 11cc08c1 2020-07-23 stsp if (err)
1086 11cc08c1 2020-07-23 stsp goto done;
1087 11cc08c1 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
1088 11cc08c1 2020-07-23 stsp path);
1089 11cc08c1 2020-07-23 stsp }
1090 11cc08c1 2020-07-23 stsp } else if (!have_local_change && have_incoming_change) {
1091 af57b12a 2020-07-23 stsp /* Apply the incoming change. */
1092 af57b12a 2020-07-23 stsp err = update_symlink(ondisk_path, deriv_target,
1093 af57b12a 2020-07-23 stsp strlen(deriv_target));
1094 af57b12a 2020-07-23 stsp if (err)
1095 af57b12a 2020-07-23 stsp goto done;
1096 af57b12a 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1097 11cc08c1 2020-07-23 stsp } else if (have_local_change && have_incoming_change) {
1098 ea7786be 2020-07-23 stsp if (deriv_len == ondisk_len &&
1099 ea7786be 2020-07-23 stsp memcmp(deriv_target, ondisk_target, deriv_len) == 0) {
1100 ea7786be 2020-07-23 stsp /* Both sides made the same change. */
1101 ea7786be 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
1102 ea7786be 2020-07-23 stsp path);
1103 ea7786be 2020-07-23 stsp } else {
1104 ea7786be 2020-07-23 stsp err = install_symlink_conflict(deriv_target,
1105 ea7786be 2020-07-23 stsp deriv_base_commit_id, ancestor_target, label_orig,
1106 ea7786be 2020-07-23 stsp ondisk_target, ondisk_path);
1107 ea7786be 2020-07-23 stsp if (err)
1108 ea7786be 2020-07-23 stsp goto done;
1109 ea7786be 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
1110 ea7786be 2020-07-23 stsp path);
1111 ea7786be 2020-07-23 stsp }
1112 6353ad76 2019-02-08 stsp }
1113 11cc08c1 2020-07-23 stsp
1114 af57b12a 2020-07-23 stsp done:
1115 af57b12a 2020-07-23 stsp free(ancestor_target);
1116 14c901f1 2019-08-08 stsp return err;
1117 14c901f1 2019-08-08 stsp }
1118 14c901f1 2019-08-08 stsp
1119 14c901f1 2019-08-08 stsp /*
1120 14c901f1 2019-08-08 stsp * Perform a 3-way merge where blob_orig acts as the common ancestor,
1121 14c901f1 2019-08-08 stsp * blob_deriv acts as the first derived version, and the file on disk
1122 14c901f1 2019-08-08 stsp * acts as the second derived version.
1123 14c901f1 2019-08-08 stsp */
1124 14c901f1 2019-08-08 stsp static const struct got_error *
1125 14c901f1 2019-08-08 stsp merge_blob(int *local_changes_subsumed, struct got_worktree *worktree,
1126 14c901f1 2019-08-08 stsp struct got_blob_object *blob_orig, const char *ondisk_path,
1127 f69721c3 2019-10-21 stsp const char *path, uint16_t st_mode, const char *label_orig,
1128 f69721c3 2019-10-21 stsp struct got_blob_object *blob_deriv,
1129 f69721c3 2019-10-21 stsp struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
1130 f69721c3 2019-10-21 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1131 14c901f1 2019-08-08 stsp {
1132 14c901f1 2019-08-08 stsp const struct got_error *err = NULL;
1133 14c901f1 2019-08-08 stsp FILE *f_deriv = NULL;
1134 14c901f1 2019-08-08 stsp char *blob_deriv_path = NULL, *base_path = NULL, *id_str = NULL;
1135 ed6b5030 2020-10-20 stsp char *label_deriv = NULL, *parent = NULL;
1136 14c901f1 2019-08-08 stsp
1137 14c901f1 2019-08-08 stsp *local_changes_subsumed = 0;
1138 14c901f1 2019-08-08 stsp
1139 ed6b5030 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
1140 ed6b5030 2020-10-20 stsp if (err)
1141 ed6b5030 2020-10-20 stsp return err;
1142 14c901f1 2019-08-08 stsp
1143 14c901f1 2019-08-08 stsp free(base_path);
1144 14c901f1 2019-08-08 stsp if (asprintf(&base_path, "%s/got-merge-blob-deriv", parent) == -1) {
1145 14c901f1 2019-08-08 stsp err = got_error_from_errno("asprintf");
1146 14c901f1 2019-08-08 stsp base_path = NULL;
1147 14c901f1 2019-08-08 stsp goto done;
1148 14c901f1 2019-08-08 stsp }
1149 14c901f1 2019-08-08 stsp
1150 14c901f1 2019-08-08 stsp err = got_opentemp_named(&blob_deriv_path, &f_deriv, base_path);
1151 14c901f1 2019-08-08 stsp if (err)
1152 14c901f1 2019-08-08 stsp goto done;
1153 14c901f1 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_deriv,
1154 14c901f1 2019-08-08 stsp blob_deriv);
1155 14c901f1 2019-08-08 stsp if (err)
1156 14c901f1 2019-08-08 stsp goto done;
1157 14c901f1 2019-08-08 stsp
1158 14c901f1 2019-08-08 stsp err = got_object_id_str(&id_str, deriv_base_commit_id);
1159 14c901f1 2019-08-08 stsp if (err)
1160 14c901f1 2019-08-08 stsp goto done;
1161 f69721c3 2019-10-21 stsp if (asprintf(&label_deriv, "%s: commit %s",
1162 f69721c3 2019-10-21 stsp GOT_MERGE_LABEL_MERGED, id_str) == -1) {
1163 14c901f1 2019-08-08 stsp err = got_error_from_errno("asprintf");
1164 14c901f1 2019-08-08 stsp goto done;
1165 14c901f1 2019-08-08 stsp }
1166 14c901f1 2019-08-08 stsp
1167 14c901f1 2019-08-08 stsp err = merge_file(local_changes_subsumed, worktree, blob_orig,
1168 f69721c3 2019-10-21 stsp ondisk_path, path, st_mode, blob_deriv_path, label_orig,
1169 f69721c3 2019-10-21 stsp label_deriv, repo, progress_cb, progress_arg);
1170 14c901f1 2019-08-08 stsp done:
1171 14c901f1 2019-08-08 stsp if (f_deriv && fclose(f_deriv) != 0 && err == NULL)
1172 14c901f1 2019-08-08 stsp err = got_error_from_errno("fclose");
1173 14c901f1 2019-08-08 stsp free(base_path);
1174 14c901f1 2019-08-08 stsp if (blob_deriv_path) {
1175 14c901f1 2019-08-08 stsp unlink(blob_deriv_path);
1176 14c901f1 2019-08-08 stsp free(blob_deriv_path);
1177 14c901f1 2019-08-08 stsp }
1178 6353ad76 2019-02-08 stsp free(id_str);
1179 818c7501 2019-07-11 stsp free(label_deriv);
1180 ed6b5030 2020-10-20 stsp free(parent);
1181 4a1ddfc2 2019-01-12 stsp return err;
1182 4a1ddfc2 2019-01-12 stsp }
1183 4a1ddfc2 2019-01-12 stsp
1184 4a1ddfc2 2019-01-12 stsp static const struct got_error *
1185 65b05cec 2020-07-23 stsp create_fileindex_entry(struct got_fileindex_entry **new_iep,
1186 65b05cec 2020-07-23 stsp struct got_fileindex *fileindex, struct got_object_id *base_commit_id,
1187 437adc9d 2020-12-10 yzhong int wt_fd, const char *path, struct got_object_id *blob_id)
1188 13d9040b 2019-03-27 stsp {
1189 13d9040b 2019-03-27 stsp const struct got_error *err = NULL;
1190 054041d0 2020-06-24 stsp struct got_fileindex_entry *new_ie;
1191 13d9040b 2019-03-27 stsp
1192 65b05cec 2020-07-23 stsp *new_iep = NULL;
1193 65b05cec 2020-07-23 stsp
1194 054041d0 2020-06-24 stsp err = got_fileindex_entry_alloc(&new_ie, path);
1195 054041d0 2020-06-24 stsp if (err)
1196 054041d0 2020-06-24 stsp return err;
1197 054041d0 2020-06-24 stsp
1198 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(new_ie, wt_fd, path,
1199 054041d0 2020-06-24 stsp blob_id->sha1, base_commit_id->sha1, 1);
1200 054041d0 2020-06-24 stsp if (err)
1201 054041d0 2020-06-24 stsp goto done;
1202 054041d0 2020-06-24 stsp
1203 054041d0 2020-06-24 stsp err = got_fileindex_entry_add(fileindex, new_ie);
1204 054041d0 2020-06-24 stsp done:
1205 054041d0 2020-06-24 stsp if (err)
1206 054041d0 2020-06-24 stsp got_fileindex_entry_free(new_ie);
1207 65b05cec 2020-07-23 stsp else
1208 65b05cec 2020-07-23 stsp *new_iep = new_ie;
1209 13d9040b 2019-03-27 stsp return err;
1210 1ebedb77 2019-10-19 stsp }
1211 1ebedb77 2019-10-19 stsp
1212 1ebedb77 2019-10-19 stsp static mode_t
1213 1ebedb77 2019-10-19 stsp get_ondisk_perms(int executable, mode_t st_mode)
1214 1ebedb77 2019-10-19 stsp {
1215 1ebedb77 2019-10-19 stsp mode_t xbits = S_IXUSR;
1216 1ebedb77 2019-10-19 stsp
1217 1ebedb77 2019-10-19 stsp if (executable) {
1218 1ebedb77 2019-10-19 stsp /* Map read bits to execute bits. */
1219 1ebedb77 2019-10-19 stsp if (st_mode & S_IRGRP)
1220 1ebedb77 2019-10-19 stsp xbits |= S_IXGRP;
1221 1ebedb77 2019-10-19 stsp if (st_mode & S_IROTH)
1222 1ebedb77 2019-10-19 stsp xbits |= S_IXOTH;
1223 1ebedb77 2019-10-19 stsp return st_mode | xbits;
1224 1ebedb77 2019-10-19 stsp }
1225 1ebedb77 2019-10-19 stsp
1226 1ebedb77 2019-10-19 stsp return (st_mode & ~(S_IXUSR | S_IXGRP | S_IXOTH));
1227 13d9040b 2019-03-27 stsp }
1228 13d9040b 2019-03-27 stsp
1229 8ba819a3 2020-07-23 stsp /* forward declaration */
1230 13d9040b 2019-03-27 stsp static const struct got_error *
1231 13d9040b 2019-03-27 stsp install_blob(struct got_worktree *worktree, const char *ondisk_path,
1232 bb51a5b4 2020-01-13 stsp const char *path, mode_t te_mode, mode_t st_mode,
1233 4b55f459 2019-09-08 stsp struct got_blob_object *blob, int restoring_missing_file,
1234 bd6aa359 2020-07-23 stsp int reverting_versioned_file, int installing_bad_symlink,
1235 3b9f0f87 2020-07-23 stsp int path_is_unversioned, struct got_repository *repo,
1236 8ba819a3 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg);
1237 8ba819a3 2020-07-23 stsp
1238 5a1fbc73 2020-07-23 stsp /*
1239 5a1fbc73 2020-07-23 stsp * This function assumes that the provided symlink target points at a
1240 5a1fbc73 2020-07-23 stsp * safe location in the work tree!
1241 5a1fbc73 2020-07-23 stsp */
1242 8ba819a3 2020-07-23 stsp static const struct got_error *
1243 5a1fbc73 2020-07-23 stsp replace_existing_symlink(const char *ondisk_path, const char *target_path,
1244 5a1fbc73 2020-07-23 stsp size_t target_len)
1245 5a1fbc73 2020-07-23 stsp {
1246 5a1fbc73 2020-07-23 stsp const struct got_error *err = NULL;
1247 5a1fbc73 2020-07-23 stsp ssize_t elen;
1248 5a1fbc73 2020-07-23 stsp char etarget[PATH_MAX];
1249 5a1fbc73 2020-07-23 stsp int fd;
1250 5a1fbc73 2020-07-23 stsp
1251 5a1fbc73 2020-07-23 stsp /*
1252 5a1fbc73 2020-07-23 stsp * "Bad" symlinks (those pointing outside the work tree or into the
1253 5a1fbc73 2020-07-23 stsp * .got directory) are installed in the work tree as a regular file
1254 5a1fbc73 2020-07-23 stsp * which contains the bad symlink target path.
1255 5a1fbc73 2020-07-23 stsp * The new symlink target has already been checked for safety by our
1256 5a1fbc73 2020-07-23 stsp * caller. If we can successfully open a regular file then we simply
1257 5a1fbc73 2020-07-23 stsp * replace this file with a symlink below.
1258 5a1fbc73 2020-07-23 stsp */
1259 5a1fbc73 2020-07-23 stsp fd = open(ondisk_path, O_RDWR | O_EXCL | O_NOFOLLOW);
1260 5a1fbc73 2020-07-23 stsp if (fd == -1) {
1261 5a1fbc73 2020-07-23 stsp if (errno != ELOOP)
1262 5a1fbc73 2020-07-23 stsp return got_error_from_errno2("open", ondisk_path);
1263 5a1fbc73 2020-07-23 stsp
1264 5a1fbc73 2020-07-23 stsp /* We are updating an existing on-disk symlink. */
1265 5a1fbc73 2020-07-23 stsp elen = readlink(ondisk_path, etarget, sizeof(etarget));
1266 5a1fbc73 2020-07-23 stsp if (elen == -1)
1267 5a1fbc73 2020-07-23 stsp return got_error_from_errno2("readlink", ondisk_path);
1268 5a1fbc73 2020-07-23 stsp
1269 5a1fbc73 2020-07-23 stsp if (elen == target_len &&
1270 5a1fbc73 2020-07-23 stsp memcmp(etarget, target_path, target_len) == 0)
1271 5a1fbc73 2020-07-23 stsp return NULL; /* nothing to do */
1272 5a1fbc73 2020-07-23 stsp }
1273 5a1fbc73 2020-07-23 stsp
1274 5a1fbc73 2020-07-23 stsp err = update_symlink(ondisk_path, target_path, target_len);
1275 5a1fbc73 2020-07-23 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
1276 5a1fbc73 2020-07-23 stsp err = got_error_from_errno2("close", ondisk_path);
1277 5a1fbc73 2020-07-23 stsp return err;
1278 3c1ec782 2020-07-23 stsp }
1279 3c1ec782 2020-07-23 stsp
1280 3c1ec782 2020-07-23 stsp static const struct got_error *
1281 3c1ec782 2020-07-23 stsp is_bad_symlink_target(int *is_bad_symlink, const char *target_path,
1282 3c1ec782 2020-07-23 stsp size_t target_len, const char *ondisk_path, const char *wtroot_path)
1283 3c1ec782 2020-07-23 stsp {
1284 3c1ec782 2020-07-23 stsp const struct got_error *err = NULL;
1285 3c1ec782 2020-07-23 stsp char canonpath[PATH_MAX];
1286 3c1ec782 2020-07-23 stsp char *path_got = NULL;
1287 3c1ec782 2020-07-23 stsp
1288 3c1ec782 2020-07-23 stsp *is_bad_symlink = 0;
1289 3c1ec782 2020-07-23 stsp
1290 3c1ec782 2020-07-23 stsp if (target_len >= sizeof(canonpath)) {
1291 3c1ec782 2020-07-23 stsp *is_bad_symlink = 1;
1292 3c1ec782 2020-07-23 stsp return NULL;
1293 3c1ec782 2020-07-23 stsp }
1294 3c1ec782 2020-07-23 stsp
1295 3c1ec782 2020-07-23 stsp /*
1296 3c1ec782 2020-07-23 stsp * We do not use realpath(3) to resolve the symlink's target
1297 3c1ec782 2020-07-23 stsp * path because we don't want to resolve symlinks recursively.
1298 3c1ec782 2020-07-23 stsp * Instead we make the path absolute and then canonicalize it.
1299 3c1ec782 2020-07-23 stsp * Relative symlink target lookup should begin at the directory
1300 3c1ec782 2020-07-23 stsp * in which the blob object is being installed.
1301 3c1ec782 2020-07-23 stsp */
1302 3c1ec782 2020-07-23 stsp if (!got_path_is_absolute(target_path)) {
1303 ce031e9e 2020-10-20 stsp char *abspath, *parent;
1304 ce031e9e 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
1305 ce031e9e 2020-10-20 stsp if (err)
1306 ce031e9e 2020-10-20 stsp return err;
1307 ce031e9e 2020-10-20 stsp if (asprintf(&abspath, "%s/%s", parent, target_path) == -1) {
1308 ce031e9e 2020-10-20 stsp free(parent);
1309 3c1ec782 2020-07-23 stsp return got_error_from_errno("asprintf");
1310 ce031e9e 2020-10-20 stsp }
1311 ce031e9e 2020-10-20 stsp free(parent);
1312 3c1ec782 2020-07-23 stsp if (strlen(abspath) >= sizeof(canonpath)) {
1313 3c1ec782 2020-07-23 stsp err = got_error_path(abspath, GOT_ERR_BAD_PATH);
1314 3c1ec782 2020-07-23 stsp free(abspath);
1315 3c1ec782 2020-07-23 stsp return err;
1316 3c1ec782 2020-07-23 stsp }
1317 3c1ec782 2020-07-23 stsp err = got_canonpath(abspath, canonpath, sizeof(canonpath));
1318 3c1ec782 2020-07-23 stsp free(abspath);
1319 3c1ec782 2020-07-23 stsp if (err)
1320 3c1ec782 2020-07-23 stsp return err;
1321 3c1ec782 2020-07-23 stsp } else {
1322 3c1ec782 2020-07-23 stsp err = got_canonpath(target_path, canonpath, sizeof(canonpath));
1323 3c1ec782 2020-07-23 stsp if (err)
1324 3c1ec782 2020-07-23 stsp return err;
1325 3c1ec782 2020-07-23 stsp }
1326 3c1ec782 2020-07-23 stsp
1327 3c1ec782 2020-07-23 stsp /* Only allow symlinks pointing at paths within the work tree. */
1328 3c1ec782 2020-07-23 stsp if (!got_path_is_child(canonpath, wtroot_path, strlen(wtroot_path))) {
1329 3c1ec782 2020-07-23 stsp *is_bad_symlink = 1;
1330 3c1ec782 2020-07-23 stsp return NULL;
1331 3c1ec782 2020-07-23 stsp }
1332 3c1ec782 2020-07-23 stsp
1333 3c1ec782 2020-07-23 stsp /* Do not allow symlinks pointing into the .got directory. */
1334 3c1ec782 2020-07-23 stsp if (asprintf(&path_got, "%s/%s", wtroot_path,
1335 3c1ec782 2020-07-23 stsp GOT_WORKTREE_GOT_DIR) == -1)
1336 3c1ec782 2020-07-23 stsp return got_error_from_errno("asprintf");
1337 3c1ec782 2020-07-23 stsp if (got_path_is_child(canonpath, path_got, strlen(path_got)))
1338 3c1ec782 2020-07-23 stsp *is_bad_symlink = 1;
1339 3c1ec782 2020-07-23 stsp
1340 3c1ec782 2020-07-23 stsp free(path_got);
1341 3c1ec782 2020-07-23 stsp return NULL;
1342 5a1fbc73 2020-07-23 stsp }
1343 5a1fbc73 2020-07-23 stsp
1344 5a1fbc73 2020-07-23 stsp static const struct got_error *
1345 2e1fa222 2020-07-23 stsp install_symlink(int *is_bad_symlink, struct got_worktree *worktree,
1346 2e1fa222 2020-07-23 stsp const char *ondisk_path, const char *path, struct got_blob_object *blob,
1347 2e1fa222 2020-07-23 stsp int restoring_missing_file, int reverting_versioned_file,
1348 c90c8ce3 2020-07-23 stsp int path_is_unversioned, struct got_repository *repo,
1349 4b55f459 2019-09-08 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1350 9d31a1d8 2018-03-11 stsp {
1351 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1352 8ba819a3 2020-07-23 stsp char target_path[PATH_MAX];
1353 8ba819a3 2020-07-23 stsp size_t len, target_len = 0;
1354 906c123b 2020-07-23 stsp char *path_got = NULL;
1355 8ba819a3 2020-07-23 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
1356 8ba819a3 2020-07-23 stsp size_t hdrlen = got_object_blob_get_hdrlen(blob);
1357 8ba819a3 2020-07-23 stsp
1358 2e1fa222 2020-07-23 stsp *is_bad_symlink = 0;
1359 2e1fa222 2020-07-23 stsp
1360 8ba819a3 2020-07-23 stsp /*
1361 8ba819a3 2020-07-23 stsp * Blob object content specifies the target path of the link.
1362 8ba819a3 2020-07-23 stsp * If a symbolic link cannot be installed we instead create
1363 8ba819a3 2020-07-23 stsp * a regular file which contains the link target path stored
1364 8ba819a3 2020-07-23 stsp * in the blob object.
1365 8ba819a3 2020-07-23 stsp */
1366 8ba819a3 2020-07-23 stsp do {
1367 8ba819a3 2020-07-23 stsp err = got_object_blob_read_block(&len, blob);
1368 8ba819a3 2020-07-23 stsp if (len + target_len >= sizeof(target_path)) {
1369 8ba819a3 2020-07-23 stsp /* Path too long; install as a regular file. */
1370 2e1fa222 2020-07-23 stsp *is_bad_symlink = 1;
1371 8ba819a3 2020-07-23 stsp got_object_blob_rewind(blob);
1372 8ba819a3 2020-07-23 stsp return install_blob(worktree, ondisk_path, path,
1373 b88d214a 2020-07-23 stsp GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1374 8ba819a3 2020-07-23 stsp restoring_missing_file, reverting_versioned_file,
1375 3b9f0f87 2020-07-23 stsp 1, path_is_unversioned, repo, progress_cb,
1376 3b9f0f87 2020-07-23 stsp progress_arg);
1377 8ba819a3 2020-07-23 stsp }
1378 8ba819a3 2020-07-23 stsp if (len > 0) {
1379 8ba819a3 2020-07-23 stsp /* Skip blob object header first time around. */
1380 8ba819a3 2020-07-23 stsp memcpy(target_path + target_len, buf + hdrlen,
1381 8ba819a3 2020-07-23 stsp len - hdrlen);
1382 8ba819a3 2020-07-23 stsp target_len += len - hdrlen;
1383 8ba819a3 2020-07-23 stsp hdrlen = 0;
1384 8ba819a3 2020-07-23 stsp }
1385 8ba819a3 2020-07-23 stsp } while (len != 0);
1386 8ba819a3 2020-07-23 stsp target_path[target_len] = '\0';
1387 8ba819a3 2020-07-23 stsp
1388 3c1ec782 2020-07-23 stsp err = is_bad_symlink_target(is_bad_symlink, target_path, target_len,
1389 3c1ec782 2020-07-23 stsp ondisk_path, worktree->root_path);
1390 3c1ec782 2020-07-23 stsp if (err)
1391 3c1ec782 2020-07-23 stsp return err;
1392 8ba819a3 2020-07-23 stsp
1393 3c1ec782 2020-07-23 stsp if (*is_bad_symlink) {
1394 906c123b 2020-07-23 stsp /* install as a regular file */
1395 2e1fa222 2020-07-23 stsp *is_bad_symlink = 1;
1396 906c123b 2020-07-23 stsp got_object_blob_rewind(blob);
1397 906c123b 2020-07-23 stsp err = install_blob(worktree, ondisk_path, path,
1398 b88d214a 2020-07-23 stsp GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1399 bd6aa359 2020-07-23 stsp restoring_missing_file, reverting_versioned_file, 1,
1400 3b9f0f87 2020-07-23 stsp path_is_unversioned, repo, progress_cb, progress_arg);
1401 906c123b 2020-07-23 stsp goto done;
1402 906c123b 2020-07-23 stsp }
1403 906c123b 2020-07-23 stsp
1404 8ba819a3 2020-07-23 stsp if (symlink(target_path, ondisk_path) == -1) {
1405 8ba819a3 2020-07-23 stsp if (errno == EEXIST) {
1406 c90c8ce3 2020-07-23 stsp if (path_is_unversioned) {
1407 c90c8ce3 2020-07-23 stsp err = (*progress_cb)(progress_arg,
1408 c90c8ce3 2020-07-23 stsp GOT_STATUS_UNVERSIONED, path);
1409 c90c8ce3 2020-07-23 stsp goto done;
1410 c90c8ce3 2020-07-23 stsp }
1411 5a1fbc73 2020-07-23 stsp err = replace_existing_symlink(ondisk_path,
1412 5a1fbc73 2020-07-23 stsp target_path, target_len);
1413 5a1fbc73 2020-07-23 stsp if (err)
1414 f35fa46a 2020-07-23 stsp goto done;
1415 5a1fbc73 2020-07-23 stsp if (progress_cb) {
1416 5a1fbc73 2020-07-23 stsp err = (*progress_cb)(progress_arg,
1417 6e1eade5 2020-07-23 stsp reverting_versioned_file ?
1418 6e1eade5 2020-07-23 stsp GOT_STATUS_REVERT : GOT_STATUS_UPDATE,
1419 6e1eade5 2020-07-23 stsp path);
1420 f35fa46a 2020-07-23 stsp }
1421 5a1fbc73 2020-07-23 stsp goto done; /* Nothing else to do. */
1422 f35fa46a 2020-07-23 stsp }
1423 f35fa46a 2020-07-23 stsp
1424 f35fa46a 2020-07-23 stsp if (errno == ENOENT) {
1425 f4994adc 2020-10-20 stsp char *parent;
1426 f4994adc 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
1427 f4994adc 2020-10-20 stsp if (err)
1428 f4994adc 2020-10-20 stsp goto done;
1429 f35fa46a 2020-07-23 stsp err = add_dir_on_disk(worktree, parent);
1430 f4994adc 2020-10-20 stsp free(parent);
1431 f35fa46a 2020-07-23 stsp if (err)
1432 f35fa46a 2020-07-23 stsp goto done;
1433 f35fa46a 2020-07-23 stsp /*
1434 f35fa46a 2020-07-23 stsp * Retry, and fall through to error handling
1435 f35fa46a 2020-07-23 stsp * below if this second attempt fails.
1436 f35fa46a 2020-07-23 stsp */
1437 f35fa46a 2020-07-23 stsp if (symlink(target_path, ondisk_path) != -1) {
1438 f35fa46a 2020-07-23 stsp err = NULL; /* success */
1439 f35fa46a 2020-07-23 stsp goto done;
1440 f35fa46a 2020-07-23 stsp }
1441 f35fa46a 2020-07-23 stsp }
1442 f35fa46a 2020-07-23 stsp
1443 f35fa46a 2020-07-23 stsp /* Handle errors from first or second creation attempt. */
1444 f35fa46a 2020-07-23 stsp if (errno == ENAMETOOLONG) {
1445 8ba819a3 2020-07-23 stsp /* bad target path; install as a regular file */
1446 2e1fa222 2020-07-23 stsp *is_bad_symlink = 1;
1447 8ba819a3 2020-07-23 stsp got_object_blob_rewind(blob);
1448 8ba819a3 2020-07-23 stsp err = install_blob(worktree, ondisk_path, path,
1449 b88d214a 2020-07-23 stsp GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1450 bd6aa359 2020-07-23 stsp restoring_missing_file, reverting_versioned_file, 1,
1451 3b9f0f87 2020-07-23 stsp path_is_unversioned, repo,
1452 3b9f0f87 2020-07-23 stsp progress_cb, progress_arg);
1453 8ba819a3 2020-07-23 stsp } else if (errno == ENOTDIR) {
1454 8ba819a3 2020-07-23 stsp err = got_error_path(ondisk_path,
1455 8ba819a3 2020-07-23 stsp GOT_ERR_FILE_OBSTRUCTED);
1456 8ba819a3 2020-07-23 stsp } else {
1457 8ba819a3 2020-07-23 stsp err = got_error_from_errno3("symlink",
1458 8ba819a3 2020-07-23 stsp target_path, ondisk_path);
1459 8ba819a3 2020-07-23 stsp }
1460 bd6aa359 2020-07-23 stsp } else if (progress_cb)
1461 6e1eade5 2020-07-23 stsp err = (*progress_cb)(progress_arg, reverting_versioned_file ?
1462 6e1eade5 2020-07-23 stsp GOT_STATUS_REVERT : GOT_STATUS_ADD, path);
1463 8ba819a3 2020-07-23 stsp done:
1464 906c123b 2020-07-23 stsp free(path_got);
1465 8ba819a3 2020-07-23 stsp return err;
1466 8ba819a3 2020-07-23 stsp }
1467 8ba819a3 2020-07-23 stsp
1468 8ba819a3 2020-07-23 stsp static const struct got_error *
1469 8ba819a3 2020-07-23 stsp install_blob(struct got_worktree *worktree, const char *ondisk_path,
1470 8ba819a3 2020-07-23 stsp const char *path, mode_t te_mode, mode_t st_mode,
1471 8ba819a3 2020-07-23 stsp struct got_blob_object *blob, int restoring_missing_file,
1472 bd6aa359 2020-07-23 stsp int reverting_versioned_file, int installing_bad_symlink,
1473 3b9f0f87 2020-07-23 stsp int path_is_unversioned, struct got_repository *repo,
1474 3b9f0f87 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
1475 8ba819a3 2020-07-23 stsp {
1476 8ba819a3 2020-07-23 stsp const struct got_error *err = NULL;
1477 507dc3bb 2018-12-29 stsp int fd = -1;
1478 9d31a1d8 2018-03-11 stsp size_t len, hdrlen;
1479 507dc3bb 2018-12-29 stsp int update = 0;
1480 507dc3bb 2018-12-29 stsp char *tmppath = NULL;
1481 8ba819a3 2020-07-23 stsp
1482 c34b20a2 2018-03-12 stsp fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
1483 9d31a1d8 2018-03-11 stsp GOT_DEFAULT_FILE_MODE);
1484 9d31a1d8 2018-03-11 stsp if (fd == -1) {
1485 21908da4 2019-01-13 stsp if (errno == ENOENT) {
1486 f5375317 2020-10-20 stsp char *parent;
1487 f5375317 2020-10-20 stsp err = got_path_dirname(&parent, path);
1488 f5375317 2020-10-20 stsp if (err)
1489 f5375317 2020-10-20 stsp return err;
1490 21908da4 2019-01-13 stsp err = add_dir_on_disk(worktree, parent);
1491 f5375317 2020-10-20 stsp free(parent);
1492 21908da4 2019-01-13 stsp if (err)
1493 21908da4 2019-01-13 stsp return err;
1494 21908da4 2019-01-13 stsp fd = open(ondisk_path,
1495 21908da4 2019-01-13 stsp O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
1496 21908da4 2019-01-13 stsp GOT_DEFAULT_FILE_MODE);
1497 21908da4 2019-01-13 stsp if (fd == -1)
1498 638f9024 2019-05-13 stsp return got_error_from_errno2("open",
1499 230a42bd 2019-05-11 jcs ondisk_path);
1500 21908da4 2019-01-13 stsp } else if (errno == EEXIST) {
1501 3b9f0f87 2020-07-23 stsp if (path_is_unversioned) {
1502 3b9f0f87 2020-07-23 stsp err = (*progress_cb)(progress_arg,
1503 3b9f0f87 2020-07-23 stsp GOT_STATUS_UNVERSIONED, path);
1504 3b9f0f87 2020-07-23 stsp goto done;
1505 3b9f0f87 2020-07-23 stsp }
1506 f6d8c0ac 2020-11-09 stsp if (!(S_ISLNK(st_mode) && S_ISREG(te_mode)) &&
1507 f6d8c0ac 2020-11-09 stsp !S_ISREG(st_mode) && !installing_bad_symlink) {
1508 9d31a1d8 2018-03-11 stsp /* TODO file is obstructed; do something */
1509 3665fce0 2020-07-13 stsp err = got_error_path(ondisk_path,
1510 3665fce0 2020-07-13 stsp GOT_ERR_FILE_OBSTRUCTED);
1511 507dc3bb 2018-12-29 stsp goto done;
1512 d70b8e30 2018-12-27 stsp } else {
1513 507dc3bb 2018-12-29 stsp err = got_opentemp_named_fd(&tmppath, &fd,
1514 507dc3bb 2018-12-29 stsp ondisk_path);
1515 507dc3bb 2018-12-29 stsp if (err)
1516 507dc3bb 2018-12-29 stsp goto done;
1517 507dc3bb 2018-12-29 stsp update = 1;
1518 9d31a1d8 2018-03-11 stsp }
1519 507dc3bb 2018-12-29 stsp } else
1520 638f9024 2019-05-13 stsp return got_error_from_errno2("open", ondisk_path);
1521 9d31a1d8 2018-03-11 stsp }
1522 9d31a1d8 2018-03-11 stsp
1523 3818e3c4 2020-11-01 naddy if (fchmod(fd, get_ondisk_perms(te_mode & S_IXUSR, st_mode)) == -1) {
1524 3818e3c4 2020-11-01 naddy err = got_error_from_errno2("fchmod",
1525 3818e3c4 2020-11-01 naddy update ? tmppath : ondisk_path);
1526 3818e3c4 2020-11-01 naddy goto done;
1527 3818e3c4 2020-11-01 naddy }
1528 3818e3c4 2020-11-01 naddy
1529 bd6aa359 2020-07-23 stsp if (progress_cb) {
1530 bd6aa359 2020-07-23 stsp if (restoring_missing_file)
1531 bd6aa359 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MISSING,
1532 bd6aa359 2020-07-23 stsp path);
1533 bd6aa359 2020-07-23 stsp else if (reverting_versioned_file)
1534 bd6aa359 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_REVERT,
1535 bd6aa359 2020-07-23 stsp path);
1536 bd6aa359 2020-07-23 stsp else
1537 bd6aa359 2020-07-23 stsp err = (*progress_cb)(progress_arg,
1538 bd6aa359 2020-07-23 stsp update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
1539 bd6aa359 2020-07-23 stsp if (err)
1540 bd6aa359 2020-07-23 stsp goto done;
1541 bd6aa359 2020-07-23 stsp }
1542 d7b62c98 2018-12-27 stsp
1543 9d31a1d8 2018-03-11 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1544 9d31a1d8 2018-03-11 stsp do {
1545 9d31a1d8 2018-03-11 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
1546 9d31a1d8 2018-03-11 stsp err = got_object_blob_read_block(&len, blob);
1547 9d31a1d8 2018-03-11 stsp if (err)
1548 9d31a1d8 2018-03-11 stsp break;
1549 9d31a1d8 2018-03-11 stsp if (len > 0) {
1550 9d31a1d8 2018-03-11 stsp /* Skip blob object header first time around. */
1551 9d31a1d8 2018-03-11 stsp ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
1552 9d31a1d8 2018-03-11 stsp if (outlen == -1) {
1553 638f9024 2019-05-13 stsp err = got_error_from_errno("write");
1554 b87c6f83 2018-12-24 stsp goto done;
1555 61d6eaa3 2018-12-24 stsp } else if (outlen != len - hdrlen) {
1556 9d31a1d8 2018-03-11 stsp err = got_error(GOT_ERR_IO);
1557 b87c6f83 2018-12-24 stsp goto done;
1558 9d31a1d8 2018-03-11 stsp }
1559 61d6eaa3 2018-12-24 stsp hdrlen = 0;
1560 9d31a1d8 2018-03-11 stsp }
1561 9d31a1d8 2018-03-11 stsp } while (len != 0);
1562 9d31a1d8 2018-03-11 stsp
1563 816dc654 2019-02-16 stsp if (fsync(fd) != 0) {
1564 638f9024 2019-05-13 stsp err = got_error_from_errno("fsync");
1565 816dc654 2019-02-16 stsp goto done;
1566 816dc654 2019-02-16 stsp }
1567 9d31a1d8 2018-03-11 stsp
1568 507dc3bb 2018-12-29 stsp if (update) {
1569 f6d8c0ac 2020-11-09 stsp if (S_ISLNK(st_mode) && unlink(ondisk_path) == -1) {
1570 f6d8c0ac 2020-11-09 stsp err = got_error_from_errno2("unlink", ondisk_path);
1571 f6d8c0ac 2020-11-09 stsp goto done;
1572 f6d8c0ac 2020-11-09 stsp }
1573 507dc3bb 2018-12-29 stsp if (rename(tmppath, ondisk_path) != 0) {
1574 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath,
1575 230a42bd 2019-05-11 jcs ondisk_path);
1576 68ed9ba5 2019-02-10 stsp goto done;
1577 68ed9ba5 2019-02-10 stsp }
1578 63df146d 2020-11-09 stsp free(tmppath);
1579 63df146d 2020-11-09 stsp tmppath = NULL;
1580 507dc3bb 2018-12-29 stsp }
1581 507dc3bb 2018-12-29 stsp
1582 9d31a1d8 2018-03-11 stsp done:
1583 3a6ce05a 2019-02-11 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
1584 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
1585 63df146d 2020-11-09 stsp if (tmppath != NULL && unlink(tmppath) == -1 && err == NULL)
1586 63df146d 2020-11-09 stsp err = got_error_from_errno2("unlink", tmppath);
1587 507dc3bb 2018-12-29 stsp free(tmppath);
1588 6353ad76 2019-02-08 stsp return err;
1589 6353ad76 2019-02-08 stsp }
1590 6353ad76 2019-02-08 stsp
1591 7154f6ce 2019-03-27 stsp /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
1592 6353ad76 2019-02-08 stsp static const struct got_error *
1593 7154f6ce 2019-03-27 stsp get_modified_file_content_status(unsigned char *status, FILE *f)
1594 7154f6ce 2019-03-27 stsp {
1595 7154f6ce 2019-03-27 stsp const struct got_error *err = NULL;
1596 7154f6ce 2019-03-27 stsp const char *markers[3] = {
1597 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_BEGIN,
1598 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_SEP,
1599 7154f6ce 2019-03-27 stsp GOT_DIFF_CONFLICT_MARKER_END
1600 7154f6ce 2019-03-27 stsp };
1601 7154f6ce 2019-03-27 stsp int i = 0;
1602 7154f6ce 2019-03-27 stsp char *line;
1603 7154f6ce 2019-03-27 stsp size_t len;
1604 7154f6ce 2019-03-27 stsp const char delim[3] = {'\0', '\0', '\0'};
1605 7154f6ce 2019-03-27 stsp
1606 7154f6ce 2019-03-27 stsp while (*status == GOT_STATUS_MODIFY) {
1607 7154f6ce 2019-03-27 stsp line = fparseln(f, &len, NULL, delim, 0);
1608 7154f6ce 2019-03-27 stsp if (line == NULL) {
1609 7154f6ce 2019-03-27 stsp if (feof(f))
1610 7154f6ce 2019-03-27 stsp break;
1611 7154f6ce 2019-03-27 stsp err = got_ferror(f, GOT_ERR_IO);
1612 7154f6ce 2019-03-27 stsp break;
1613 7154f6ce 2019-03-27 stsp }
1614 7154f6ce 2019-03-27 stsp
1615 7154f6ce 2019-03-27 stsp if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1616 19332e6d 2019-05-13 stsp if (strcmp(markers[i], GOT_DIFF_CONFLICT_MARKER_END)
1617 19332e6d 2019-05-13 stsp == 0)
1618 7154f6ce 2019-03-27 stsp *status = GOT_STATUS_CONFLICT;
1619 7154f6ce 2019-03-27 stsp else
1620 7154f6ce 2019-03-27 stsp i++;
1621 7154f6ce 2019-03-27 stsp }
1622 7154f6ce 2019-03-27 stsp }
1623 7154f6ce 2019-03-27 stsp
1624 7154f6ce 2019-03-27 stsp return err;
1625 e2b1e152 2019-07-13 stsp }
1626 e2b1e152 2019-07-13 stsp
1627 e2b1e152 2019-07-13 stsp static int
1628 1ebedb77 2019-10-19 stsp xbit_differs(struct got_fileindex_entry *ie, uint16_t st_mode)
1629 1ebedb77 2019-10-19 stsp {
1630 1ebedb77 2019-10-19 stsp mode_t ie_mode = got_fileindex_perms_to_st(ie);
1631 1ebedb77 2019-10-19 stsp return ((ie_mode & S_IXUSR) != (st_mode & S_IXUSR));
1632 1ebedb77 2019-10-19 stsp }
1633 1ebedb77 2019-10-19 stsp
1634 1ebedb77 2019-10-19 stsp static int
1635 e2b1e152 2019-07-13 stsp stat_info_differs(struct got_fileindex_entry *ie, struct stat *sb)
1636 e2b1e152 2019-07-13 stsp {
1637 0823ffc2 2020-09-10 naddy return !(ie->ctime_sec == sb->st_ctim.tv_sec &&
1638 0823ffc2 2020-09-10 naddy ie->ctime_nsec == sb->st_ctim.tv_nsec &&
1639 0823ffc2 2020-09-10 naddy ie->mtime_sec == sb->st_mtim.tv_sec &&
1640 0823ffc2 2020-09-10 naddy ie->mtime_nsec == sb->st_mtim.tv_nsec &&
1641 1ebedb77 2019-10-19 stsp ie->size == (sb->st_size & 0xffffffff) &&
1642 1ebedb77 2019-10-19 stsp !xbit_differs(ie, sb->st_mode));
1643 c363b2c1 2019-08-03 stsp }
1644 c363b2c1 2019-08-03 stsp
1645 c363b2c1 2019-08-03 stsp static unsigned char
1646 c363b2c1 2019-08-03 stsp get_staged_status(struct got_fileindex_entry *ie)
1647 c363b2c1 2019-08-03 stsp {
1648 c363b2c1 2019-08-03 stsp switch (got_fileindex_entry_stage_get(ie)) {
1649 c363b2c1 2019-08-03 stsp case GOT_FILEIDX_STAGE_ADD:
1650 c363b2c1 2019-08-03 stsp return GOT_STATUS_ADD;
1651 c363b2c1 2019-08-03 stsp case GOT_FILEIDX_STAGE_DELETE:
1652 c363b2c1 2019-08-03 stsp return GOT_STATUS_DELETE;
1653 c363b2c1 2019-08-03 stsp case GOT_FILEIDX_STAGE_MODIFY:
1654 c363b2c1 2019-08-03 stsp return GOT_STATUS_MODIFY;
1655 c363b2c1 2019-08-03 stsp default:
1656 c363b2c1 2019-08-03 stsp return GOT_STATUS_NO_CHANGE;
1657 a919d5c4 2020-07-23 stsp }
1658 a919d5c4 2020-07-23 stsp }
1659 a919d5c4 2020-07-23 stsp
1660 a919d5c4 2020-07-23 stsp static const struct got_error *
1661 f9eec9d5 2020-07-23 stsp get_symlink_modification_status(unsigned char *status,
1662 a919d5c4 2020-07-23 stsp struct got_fileindex_entry *ie, const char *abspath,
1663 a919d5c4 2020-07-23 stsp int dirfd, const char *de_name, struct got_blob_object *blob)
1664 a919d5c4 2020-07-23 stsp {
1665 a919d5c4 2020-07-23 stsp const struct got_error *err = NULL;
1666 a919d5c4 2020-07-23 stsp char target_path[PATH_MAX];
1667 a919d5c4 2020-07-23 stsp char etarget[PATH_MAX];
1668 a919d5c4 2020-07-23 stsp ssize_t elen;
1669 a919d5c4 2020-07-23 stsp size_t len, target_len = 0;
1670 a919d5c4 2020-07-23 stsp const uint8_t *buf = got_object_blob_get_read_buf(blob);
1671 a919d5c4 2020-07-23 stsp size_t hdrlen = got_object_blob_get_hdrlen(blob);
1672 a919d5c4 2020-07-23 stsp
1673 a919d5c4 2020-07-23 stsp *status = GOT_STATUS_NO_CHANGE;
1674 a919d5c4 2020-07-23 stsp
1675 a919d5c4 2020-07-23 stsp /* Blob object content specifies the target path of the link. */
1676 a919d5c4 2020-07-23 stsp do {
1677 a919d5c4 2020-07-23 stsp err = got_object_blob_read_block(&len, blob);
1678 a919d5c4 2020-07-23 stsp if (err)
1679 a919d5c4 2020-07-23 stsp return err;
1680 a919d5c4 2020-07-23 stsp if (len + target_len >= sizeof(target_path)) {
1681 a919d5c4 2020-07-23 stsp /*
1682 a919d5c4 2020-07-23 stsp * Should not happen. The blob contents were OK
1683 a919d5c4 2020-07-23 stsp * when this symlink was installed.
1684 a919d5c4 2020-07-23 stsp */
1685 a919d5c4 2020-07-23 stsp return got_error(GOT_ERR_NO_SPACE);
1686 a919d5c4 2020-07-23 stsp }
1687 a919d5c4 2020-07-23 stsp if (len > 0) {
1688 a919d5c4 2020-07-23 stsp /* Skip blob object header first time around. */
1689 a919d5c4 2020-07-23 stsp memcpy(target_path + target_len, buf + hdrlen,
1690 a919d5c4 2020-07-23 stsp len - hdrlen);
1691 a919d5c4 2020-07-23 stsp target_len += len - hdrlen;
1692 a919d5c4 2020-07-23 stsp hdrlen = 0;
1693 a919d5c4 2020-07-23 stsp }
1694 a919d5c4 2020-07-23 stsp } while (len != 0);
1695 a919d5c4 2020-07-23 stsp target_path[target_len] = '\0';
1696 a919d5c4 2020-07-23 stsp
1697 a919d5c4 2020-07-23 stsp if (dirfd != -1) {
1698 a919d5c4 2020-07-23 stsp elen = readlinkat(dirfd, de_name, etarget, sizeof(etarget));
1699 a919d5c4 2020-07-23 stsp if (elen == -1)
1700 a919d5c4 2020-07-23 stsp return got_error_from_errno2("readlinkat", abspath);
1701 a919d5c4 2020-07-23 stsp } else {
1702 a919d5c4 2020-07-23 stsp elen = readlink(abspath, etarget, sizeof(etarget));
1703 a919d5c4 2020-07-23 stsp if (elen == -1)
1704 b448fd00 2020-07-23 stsp return got_error_from_errno2("readlink", abspath);
1705 c363b2c1 2019-08-03 stsp }
1706 a919d5c4 2020-07-23 stsp
1707 a919d5c4 2020-07-23 stsp if (elen != target_len || memcmp(etarget, target_path, target_len) != 0)
1708 a919d5c4 2020-07-23 stsp *status = GOT_STATUS_MODIFY;
1709 a919d5c4 2020-07-23 stsp
1710 a919d5c4 2020-07-23 stsp return NULL;
1711 7154f6ce 2019-03-27 stsp }
1712 7154f6ce 2019-03-27 stsp
1713 7154f6ce 2019-03-27 stsp static const struct got_error *
1714 b8f41171 2019-02-10 stsp get_file_status(unsigned char *status, struct stat *sb,
1715 b8f41171 2019-02-10 stsp struct got_fileindex_entry *ie, const char *abspath,
1716 7f91a133 2019-12-13 stsp int dirfd, const char *de_name, struct got_repository *repo)
1717 6353ad76 2019-02-08 stsp {
1718 6353ad76 2019-02-08 stsp const struct got_error *err = NULL;
1719 6353ad76 2019-02-08 stsp struct got_object_id id;
1720 6353ad76 2019-02-08 stsp size_t hdrlen;
1721 1338848f 2019-12-13 stsp int fd = -1;
1722 6353ad76 2019-02-08 stsp FILE *f = NULL;
1723 6353ad76 2019-02-08 stsp uint8_t fbuf[8192];
1724 6353ad76 2019-02-08 stsp struct got_blob_object *blob = NULL;
1725 6353ad76 2019-02-08 stsp size_t flen, blen;
1726 c363b2c1 2019-08-03 stsp unsigned char staged_status = get_staged_status(ie);
1727 6353ad76 2019-02-08 stsp
1728 6353ad76 2019-02-08 stsp *status = GOT_STATUS_NO_CHANGE;
1729 6353ad76 2019-02-08 stsp
1730 7f91a133 2019-12-13 stsp /*
1731 7f91a133 2019-12-13 stsp * Whenever the caller provides a directory descriptor and a
1732 7f91a133 2019-12-13 stsp * directory entry name for the file, use them! This prevents
1733 7f91a133 2019-12-13 stsp * race conditions if filesystem paths change beneath our feet.
1734 7f91a133 2019-12-13 stsp */
1735 7f91a133 2019-12-13 stsp if (dirfd != -1) {
1736 3d35a492 2019-12-13 stsp if (fstatat(dirfd, de_name, sb, AT_SYMLINK_NOFOLLOW) == -1) {
1737 882ef1b9 2019-12-13 stsp if (errno == ENOENT) {
1738 882ef1b9 2019-12-13 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1739 882ef1b9 2019-12-13 stsp *status = GOT_STATUS_MISSING;
1740 882ef1b9 2019-12-13 stsp else
1741 882ef1b9 2019-12-13 stsp *status = GOT_STATUS_DELETE;
1742 882ef1b9 2019-12-13 stsp goto done;
1743 882ef1b9 2019-12-13 stsp }
1744 3d35a492 2019-12-13 stsp err = got_error_from_errno2("fstatat", abspath);
1745 3d35a492 2019-12-13 stsp goto done;
1746 3d35a492 2019-12-13 stsp }
1747 7f91a133 2019-12-13 stsp } else {
1748 7f91a133 2019-12-13 stsp fd = open(abspath, O_RDONLY | O_NOFOLLOW);
1749 a919d5c4 2020-07-23 stsp if (fd == -1 && errno != ENOENT && errno != ELOOP)
1750 7f91a133 2019-12-13 stsp return got_error_from_errno2("open", abspath);
1751 a919d5c4 2020-07-23 stsp else if (fd == -1 && errno == ELOOP) {
1752 a919d5c4 2020-07-23 stsp if (lstat(abspath, sb) == -1)
1753 a919d5c4 2020-07-23 stsp return got_error_from_errno2("lstat", abspath);
1754 a919d5c4 2020-07-23 stsp } else if (fd == -1 || fstat(fd, sb) == -1) {
1755 3d35a492 2019-12-13 stsp if (errno == ENOENT) {
1756 3d35a492 2019-12-13 stsp if (got_fileindex_entry_has_file_on_disk(ie))
1757 3d35a492 2019-12-13 stsp *status = GOT_STATUS_MISSING;
1758 3d35a492 2019-12-13 stsp else
1759 3d35a492 2019-12-13 stsp *status = GOT_STATUS_DELETE;
1760 3d35a492 2019-12-13 stsp goto done;
1761 3d35a492 2019-12-13 stsp }
1762 3d35a492 2019-12-13 stsp err = got_error_from_errno2("fstat", abspath);
1763 1338848f 2019-12-13 stsp goto done;
1764 a378724f 2019-02-10 stsp }
1765 a378724f 2019-02-10 stsp }
1766 6353ad76 2019-02-08 stsp
1767 00bb5ea0 2020-07-23 stsp if (!S_ISREG(sb->st_mode) && !S_ISLNK(sb->st_mode)) {
1768 339c298e 2019-07-27 stsp *status = GOT_STATUS_OBSTRUCTED;
1769 1338848f 2019-12-13 stsp goto done;
1770 3f148bc6 2019-07-27 stsp }
1771 efdd40df 2019-07-27 stsp
1772 2ec1f75b 2019-03-26 stsp if (!got_fileindex_entry_has_file_on_disk(ie)) {
1773 339c298e 2019-07-27 stsp *status = GOT_STATUS_DELETE;
1774 1338848f 2019-12-13 stsp goto done;
1775 244725f2 2019-08-03 stsp } else if (!got_fileindex_entry_has_blob(ie) &&
1776 244725f2 2019-08-03 stsp staged_status != GOT_STATUS_ADD) {
1777 339c298e 2019-07-27 stsp *status = GOT_STATUS_ADD;
1778 1338848f 2019-12-13 stsp goto done;
1779 d00136be 2019-03-26 stsp }
1780 b8f41171 2019-02-10 stsp
1781 e2b1e152 2019-07-13 stsp if (!stat_info_differs(ie, sb))
1782 f179e66d 2020-07-23 stsp goto done;
1783 f179e66d 2020-07-23 stsp
1784 f179e66d 2020-07-23 stsp if (S_ISLNK(sb->st_mode) &&
1785 f179e66d 2020-07-23 stsp got_fileindex_entry_filetype_get(ie) != GOT_FILEIDX_MODE_SYMLINK) {
1786 f179e66d 2020-07-23 stsp *status = GOT_STATUS_MODIFY;
1787 1338848f 2019-12-13 stsp goto done;
1788 f179e66d 2020-07-23 stsp }
1789 6353ad76 2019-02-08 stsp
1790 c363b2c1 2019-08-03 stsp if (staged_status == GOT_STATUS_MODIFY ||
1791 c363b2c1 2019-08-03 stsp staged_status == GOT_STATUS_ADD)
1792 c363b2c1 2019-08-03 stsp memcpy(id.sha1, ie->staged_blob_sha1, sizeof(id.sha1));
1793 c363b2c1 2019-08-03 stsp else
1794 c363b2c1 2019-08-03 stsp memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1795 c363b2c1 2019-08-03 stsp
1796 6353ad76 2019-02-08 stsp err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1797 6353ad76 2019-02-08 stsp if (err)
1798 1338848f 2019-12-13 stsp goto done;
1799 6353ad76 2019-02-08 stsp
1800 a919d5c4 2020-07-23 stsp if (S_ISLNK(sb->st_mode)) {
1801 f9eec9d5 2020-07-23 stsp err = get_symlink_modification_status(status, ie,
1802 f9eec9d5 2020-07-23 stsp abspath, dirfd, de_name, blob);
1803 a919d5c4 2020-07-23 stsp goto done;
1804 a919d5c4 2020-07-23 stsp }
1805 a919d5c4 2020-07-23 stsp
1806 3d35a492 2019-12-13 stsp if (dirfd != -1) {
1807 3d35a492 2019-12-13 stsp fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
1808 ab0d4361 2019-12-13 stsp if (fd == -1) {
1809 ab0d4361 2019-12-13 stsp err = got_error_from_errno2("openat", abspath);
1810 ab0d4361 2019-12-13 stsp goto done;
1811 ab0d4361 2019-12-13 stsp }
1812 3d35a492 2019-12-13 stsp }
1813 3d35a492 2019-12-13 stsp
1814 1338848f 2019-12-13 stsp f = fdopen(fd, "r");
1815 6353ad76 2019-02-08 stsp if (f == NULL) {
1816 60522982 2019-12-15 stsp err = got_error_from_errno2("fdopen", abspath);
1817 6353ad76 2019-02-08 stsp goto done;
1818 6353ad76 2019-02-08 stsp }
1819 1338848f 2019-12-13 stsp fd = -1;
1820 6353ad76 2019-02-08 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1821 656b1f76 2019-05-11 jcs for (;;) {
1822 6353ad76 2019-02-08 stsp const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1823 6353ad76 2019-02-08 stsp err = got_object_blob_read_block(&blen, blob);
1824 6353ad76 2019-02-08 stsp if (err)
1825 7154f6ce 2019-03-27 stsp goto done;
1826 3cbbd752 2019-02-19 stsp /* Skip length of blob object header first time around. */
1827 3cbbd752 2019-02-19 stsp flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1828 80c5c120 2019-02-19 stsp if (flen == 0 && ferror(f)) {
1829 638f9024 2019-05-13 stsp err = got_error_from_errno("fread");
1830 7154f6ce 2019-03-27 stsp goto done;
1831 80c5c120 2019-02-19 stsp }
1832 4a26d3f8 2020-10-07 stsp if (blen - hdrlen == 0) {
1833 6353ad76 2019-02-08 stsp if (flen != 0)
1834 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1835 6353ad76 2019-02-08 stsp break;
1836 6353ad76 2019-02-08 stsp } else if (flen == 0) {
1837 4a26d3f8 2020-10-07 stsp if (blen - hdrlen != 0)
1838 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1839 6353ad76 2019-02-08 stsp break;
1840 6353ad76 2019-02-08 stsp } else if (blen - hdrlen == flen) {
1841 6353ad76 2019-02-08 stsp /* Skip blob object header first time around. */
1842 6353ad76 2019-02-08 stsp if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1843 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1844 6353ad76 2019-02-08 stsp break;
1845 6353ad76 2019-02-08 stsp }
1846 6353ad76 2019-02-08 stsp } else {
1847 276262e8 2019-02-08 stsp *status = GOT_STATUS_MODIFY;
1848 6353ad76 2019-02-08 stsp break;
1849 6353ad76 2019-02-08 stsp }
1850 6353ad76 2019-02-08 stsp hdrlen = 0;
1851 6353ad76 2019-02-08 stsp }
1852 7154f6ce 2019-03-27 stsp
1853 7154f6ce 2019-03-27 stsp if (*status == GOT_STATUS_MODIFY) {
1854 7154f6ce 2019-03-27 stsp rewind(f);
1855 7154f6ce 2019-03-27 stsp err = get_modified_file_content_status(status, f);
1856 1ebedb77 2019-10-19 stsp } else if (xbit_differs(ie, sb->st_mode))
1857 1ebedb77 2019-10-19 stsp *status = GOT_STATUS_MODE_CHANGE;
1858 6353ad76 2019-02-08 stsp done:
1859 6353ad76 2019-02-08 stsp if (blob)
1860 6353ad76 2019-02-08 stsp got_object_blob_close(blob);
1861 43ff8261 2019-12-13 stsp if (f != NULL && fclose(f) == EOF && err == NULL)
1862 f4d199c9 2019-12-13 stsp err = got_error_from_errno2("fclose", abspath);
1863 1338848f 2019-12-13 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
1864 1338848f 2019-12-13 stsp err = got_error_from_errno2("close", abspath);
1865 9d31a1d8 2018-03-11 stsp return err;
1866 e2b1e152 2019-07-13 stsp }
1867 e2b1e152 2019-07-13 stsp
1868 e2b1e152 2019-07-13 stsp /*
1869 e2b1e152 2019-07-13 stsp * Update timestamps in the file index if a file is unmodified and
1870 e2b1e152 2019-07-13 stsp * we had to run a full content comparison to find out.
1871 e2b1e152 2019-07-13 stsp */
1872 e2b1e152 2019-07-13 stsp static const struct got_error *
1873 437adc9d 2020-12-10 yzhong sync_timestamps(int wt_fd, const char *path, unsigned char status,
1874 e2b1e152 2019-07-13 stsp struct got_fileindex_entry *ie, struct stat *sb)
1875 e2b1e152 2019-07-13 stsp {
1876 e2b1e152 2019-07-13 stsp if (status == GOT_STATUS_NO_CHANGE && stat_info_differs(ie, sb))
1877 437adc9d 2020-12-10 yzhong return got_fileindex_entry_update(ie, wt_fd, path,
1878 e2b1e152 2019-07-13 stsp ie->blob_sha1, ie->commit_sha1, 1);
1879 e2b1e152 2019-07-13 stsp
1880 e2b1e152 2019-07-13 stsp return NULL;
1881 9d31a1d8 2018-03-11 stsp }
1882 9d31a1d8 2018-03-11 stsp
1883 9d31a1d8 2018-03-11 stsp static const struct got_error *
1884 8da9e5f4 2019-01-12 stsp update_blob(struct got_worktree *worktree,
1885 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1886 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *path,
1887 8da9e5f4 2019-01-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1888 0584f854 2019-04-06 stsp void *progress_arg)
1889 9d31a1d8 2018-03-11 stsp {
1890 9d31a1d8 2018-03-11 stsp const struct got_error *err = NULL;
1891 9d31a1d8 2018-03-11 stsp struct got_blob_object *blob = NULL;
1892 6353ad76 2019-02-08 stsp char *ondisk_path;
1893 6353ad76 2019-02-08 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
1894 b8f41171 2019-02-10 stsp struct stat sb;
1895 9d31a1d8 2018-03-11 stsp
1896 6353ad76 2019-02-08 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1897 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1898 6353ad76 2019-02-08 stsp
1899 abb4604f 2019-07-27 stsp if (ie) {
1900 a76c42e6 2019-08-03 stsp if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE) {
1901 a76c42e6 2019-08-03 stsp err = got_error_path(ie->path, GOT_ERR_FILE_STAGED);
1902 a76c42e6 2019-08-03 stsp goto done;
1903 a76c42e6 2019-08-03 stsp }
1904 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
1905 7f91a133 2019-12-13 stsp repo);
1906 abb4604f 2019-07-27 stsp if (err)
1907 abb4604f 2019-07-27 stsp goto done;
1908 abb4604f 2019-07-27 stsp if (status == GOT_STATUS_MISSING || status == GOT_STATUS_DELETE)
1909 abb4604f 2019-07-27 stsp sb.st_mode = got_fileindex_perms_to_st(ie);
1910 c90c8ce3 2020-07-23 stsp } else {
1911 abb4604f 2019-07-27 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
1912 c90c8ce3 2020-07-23 stsp status = GOT_STATUS_UNVERSIONED;
1913 c90c8ce3 2020-07-23 stsp }
1914 6353ad76 2019-02-08 stsp
1915 b8f41171 2019-02-10 stsp if (status == GOT_STATUS_OBSTRUCTED) {
1916 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, status, path);
1917 b8f41171 2019-02-10 stsp goto done;
1918 b8f41171 2019-02-10 stsp }
1919 5036ab18 2020-04-18 stsp if (status == GOT_STATUS_CONFLICT) {
1920 5036ab18 2020-04-18 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CANNOT_UPDATE,
1921 5036ab18 2020-04-18 stsp path);
1922 5036ab18 2020-04-18 stsp goto done;
1923 5036ab18 2020-04-18 stsp }
1924 b8f41171 2019-02-10 stsp
1925 523b8417 2019-10-19 stsp if (ie && status != GOT_STATUS_MISSING &&
1926 523b8417 2019-10-19 stsp (te->mode & S_IXUSR) == (sb.st_mode & S_IXUSR)) {
1927 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_commit(ie) &&
1928 1430b4e0 2019-03-27 stsp memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1929 b8f41171 2019-02-10 stsp SHA1_DIGEST_LENGTH) == 0) {
1930 437adc9d 2020-12-10 yzhong err = sync_timestamps(worktree->root_fd,
1931 437adc9d 2020-12-10 yzhong path, status, ie, &sb);
1932 e2b1e152 2019-07-13 stsp if (err)
1933 e2b1e152 2019-07-13 stsp goto done;
1934 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1935 b8f41171 2019-02-10 stsp path);
1936 6353ad76 2019-02-08 stsp goto done;
1937 a378724f 2019-02-10 stsp }
1938 1430b4e0 2019-03-27 stsp if (got_fileindex_entry_has_blob(ie) &&
1939 56e0773d 2019-11-28 stsp memcmp(ie->blob_sha1, te->id.sha1,
1940 e2b1e152 2019-07-13 stsp SHA1_DIGEST_LENGTH) == 0) {
1941 437adc9d 2020-12-10 yzhong err = sync_timestamps(worktree->root_fd,
1942 437adc9d 2020-12-10 yzhong path, status, ie, &sb);
1943 b8f41171 2019-02-10 stsp goto done;
1944 e2b1e152 2019-07-13 stsp }
1945 9d31a1d8 2018-03-11 stsp }
1946 9d31a1d8 2018-03-11 stsp
1947 56e0773d 2019-11-28 stsp err = got_object_open_as_blob(&blob, repo, &te->id, 8192);
1948 8da9e5f4 2019-01-12 stsp if (err)
1949 6353ad76 2019-02-08 stsp goto done;
1950 512f0d0e 2019-01-02 stsp
1951 234035bc 2019-06-01 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD) {
1952 234035bc 2019-06-01 stsp int update_timestamps;
1953 234035bc 2019-06-01 stsp struct got_blob_object *blob2 = NULL;
1954 f69721c3 2019-10-21 stsp char *label_orig = NULL;
1955 234035bc 2019-06-01 stsp if (got_fileindex_entry_has_blob(ie)) {
1956 234035bc 2019-06-01 stsp struct got_object_id id2;
1957 234035bc 2019-06-01 stsp memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1958 234035bc 2019-06-01 stsp err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
1959 234035bc 2019-06-01 stsp if (err)
1960 f69721c3 2019-10-21 stsp goto done;
1961 f69721c3 2019-10-21 stsp }
1962 f69721c3 2019-10-21 stsp if (got_fileindex_entry_has_commit(ie)) {
1963 f69721c3 2019-10-21 stsp char id_str[SHA1_DIGEST_STRING_LENGTH];
1964 f69721c3 2019-10-21 stsp if (got_sha1_digest_to_str(ie->commit_sha1, id_str,
1965 f69721c3 2019-10-21 stsp sizeof(id_str)) == NULL) {
1966 6dd1ece6 2019-11-10 stsp err = got_error_path(id_str,
1967 6dd1ece6 2019-11-10 stsp GOT_ERR_BAD_OBJ_ID_STR);
1968 f69721c3 2019-10-21 stsp goto done;
1969 f69721c3 2019-10-21 stsp }
1970 f69721c3 2019-10-21 stsp if (asprintf(&label_orig, "%s: commit %s",
1971 f69721c3 2019-10-21 stsp GOT_MERGE_LABEL_BASE, id_str) == -1) {
1972 f69721c3 2019-10-21 stsp err = got_error_from_errno("asprintf");
1973 234035bc 2019-06-01 stsp goto done;
1974 f69721c3 2019-10-21 stsp }
1975 234035bc 2019-06-01 stsp }
1976 dfe9fba0 2020-07-23 stsp if (S_ISLNK(te->mode) && S_ISLNK(sb.st_mode)) {
1977 36bf999c 2020-07-23 stsp char *link_target;
1978 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(&link_target, blob);
1979 36bf999c 2020-07-23 stsp if (err)
1980 36bf999c 2020-07-23 stsp goto done;
1981 36bf999c 2020-07-23 stsp err = merge_symlink(worktree, blob2, ondisk_path, path,
1982 36bf999c 2020-07-23 stsp label_orig, link_target, worktree->base_commit_id,
1983 36bf999c 2020-07-23 stsp repo, progress_cb, progress_arg);
1984 36bf999c 2020-07-23 stsp free(link_target);
1985 993e2a1b 2020-07-23 stsp } else {
1986 993e2a1b 2020-07-23 stsp err = merge_blob(&update_timestamps, worktree, blob2,
1987 993e2a1b 2020-07-23 stsp ondisk_path, path, sb.st_mode, label_orig, blob,
1988 993e2a1b 2020-07-23 stsp worktree->base_commit_id, repo,
1989 993e2a1b 2020-07-23 stsp progress_cb, progress_arg);
1990 993e2a1b 2020-07-23 stsp }
1991 f69721c3 2019-10-21 stsp free(label_orig);
1992 234035bc 2019-06-01 stsp if (blob2)
1993 234035bc 2019-06-01 stsp got_object_blob_close(blob2);
1994 909d120e 2019-09-22 stsp if (err)
1995 909d120e 2019-09-22 stsp goto done;
1996 234035bc 2019-06-01 stsp /*
1997 234035bc 2019-06-01 stsp * Do not update timestamps of files with local changes.
1998 234035bc 2019-06-01 stsp * Otherwise, a future status walk would treat them as
1999 234035bc 2019-06-01 stsp * unmodified files again.
2000 234035bc 2019-06-01 stsp */
2001 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd, path,
2002 234035bc 2019-06-01 stsp blob->id.sha1, worktree->base_commit_id->sha1,
2003 234035bc 2019-06-01 stsp update_timestamps);
2004 1ebedb77 2019-10-19 stsp } else if (status == GOT_STATUS_MODE_CHANGE) {
2005 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd, path,
2006 1ebedb77 2019-10-19 stsp blob->id.sha1, worktree->base_commit_id->sha1, 0);
2007 234035bc 2019-06-01 stsp } else if (status == GOT_STATUS_DELETE) {
2008 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
2009 1ee397ad 2019-07-12 stsp if (err)
2010 1ee397ad 2019-07-12 stsp goto done;
2011 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd, path,
2012 054041d0 2020-06-24 stsp blob->id.sha1, worktree->base_commit_id->sha1, 0);
2013 13d9040b 2019-03-27 stsp if (err)
2014 13d9040b 2019-03-27 stsp goto done;
2015 13d9040b 2019-03-27 stsp } else {
2016 2e1fa222 2020-07-23 stsp int is_bad_symlink = 0;
2017 2e1fa222 2020-07-23 stsp if (S_ISLNK(te->mode)) {
2018 2e1fa222 2020-07-23 stsp err = install_symlink(&is_bad_symlink, worktree,
2019 2e1fa222 2020-07-23 stsp ondisk_path, path, blob,
2020 c90c8ce3 2020-07-23 stsp status == GOT_STATUS_MISSING, 0,
2021 c90c8ce3 2020-07-23 stsp status == GOT_STATUS_UNVERSIONED, repo,
2022 2e1fa222 2020-07-23 stsp progress_cb, progress_arg);
2023 2e1fa222 2020-07-23 stsp } else {
2024 2e1fa222 2020-07-23 stsp err = install_blob(worktree, ondisk_path, path,
2025 2e1fa222 2020-07-23 stsp te->mode, sb.st_mode, blob,
2026 3b9f0f87 2020-07-23 stsp status == GOT_STATUS_MISSING, 0, 0,
2027 3b9f0f87 2020-07-23 stsp status == GOT_STATUS_UNVERSIONED, repo,
2028 2e1fa222 2020-07-23 stsp progress_cb, progress_arg);
2029 2e1fa222 2020-07-23 stsp }
2030 13d9040b 2019-03-27 stsp if (err)
2031 13d9040b 2019-03-27 stsp goto done;
2032 65b05cec 2020-07-23 stsp
2033 054041d0 2020-06-24 stsp if (ie) {
2034 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie,
2035 437adc9d 2020-12-10 yzhong worktree->root_fd, path, blob->id.sha1,
2036 437adc9d 2020-12-10 yzhong worktree->base_commit_id->sha1, 1);
2037 054041d0 2020-06-24 stsp } else {
2038 65b05cec 2020-07-23 stsp err = create_fileindex_entry(&ie, fileindex,
2039 437adc9d 2020-12-10 yzhong worktree->base_commit_id, worktree->root_fd, path,
2040 054041d0 2020-06-24 stsp &blob->id);
2041 054041d0 2020-06-24 stsp }
2042 13d9040b 2019-03-27 stsp if (err)
2043 13d9040b 2019-03-27 stsp goto done;
2044 65b05cec 2020-07-23 stsp
2045 2e1fa222 2020-07-23 stsp if (is_bad_symlink) {
2046 6131ab45 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
2047 2e1fa222 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
2048 2e1fa222 2020-07-23 stsp }
2049 13d9040b 2019-03-27 stsp }
2050 8da9e5f4 2019-01-12 stsp got_object_blob_close(blob);
2051 6353ad76 2019-02-08 stsp done:
2052 6353ad76 2019-02-08 stsp free(ondisk_path);
2053 8da9e5f4 2019-01-12 stsp return err;
2054 90285c3b 2019-01-08 stsp }
2055 90285c3b 2019-01-08 stsp
2056 90285c3b 2019-01-08 stsp static const struct got_error *
2057 7a9df742 2019-01-08 stsp remove_ondisk_file(const char *root_path, const char *path)
2058 90285c3b 2019-01-08 stsp {
2059 90285c3b 2019-01-08 stsp const struct got_error *err = NULL;
2060 90285c3b 2019-01-08 stsp char *ondisk_path = NULL;
2061 90285c3b 2019-01-08 stsp
2062 7a9df742 2019-01-08 stsp if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
2063 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2064 90285c3b 2019-01-08 stsp
2065 c97665ae 2019-01-13 stsp if (unlink(ondisk_path) == -1) {
2066 c97665ae 2019-01-13 stsp if (errno != ENOENT)
2067 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", ondisk_path);
2068 c97665ae 2019-01-13 stsp } else {
2069 fddefe3b 2020-10-20 stsp size_t root_len = strlen(root_path);
2070 fddefe3b 2020-10-20 stsp do {
2071 fddefe3b 2020-10-20 stsp char *parent;
2072 fddefe3b 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
2073 fddefe3b 2020-10-20 stsp if (err)
2074 2513f20a 2020-10-20 stsp break;
2075 fddefe3b 2020-10-20 stsp free(ondisk_path);
2076 fddefe3b 2020-10-20 stsp ondisk_path = parent;
2077 fddefe3b 2020-10-20 stsp if (rmdir(ondisk_path) == -1) {
2078 26c4ac4d 2019-01-08 stsp if (errno != ENOTEMPTY)
2079 638f9024 2019-05-13 stsp err = got_error_from_errno2("rmdir",
2080 fddefe3b 2020-10-20 stsp ondisk_path);
2081 90285c3b 2019-01-08 stsp break;
2082 90285c3b 2019-01-08 stsp }
2083 fddefe3b 2020-10-20 stsp } while (got_path_cmp(ondisk_path, root_path,
2084 fddefe3b 2020-10-20 stsp strlen(ondisk_path), root_len) != 0);
2085 90285c3b 2019-01-08 stsp }
2086 90285c3b 2019-01-08 stsp free(ondisk_path);
2087 90285c3b 2019-01-08 stsp return err;
2088 512f0d0e 2019-01-02 stsp }
2089 512f0d0e 2019-01-02 stsp
2090 708d8e67 2019-03-27 stsp static const struct got_error *
2091 708d8e67 2019-03-27 stsp delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
2092 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie, struct got_repository *repo,
2093 0584f854 2019-04-06 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
2094 708d8e67 2019-03-27 stsp {
2095 fc6346c4 2019-03-27 stsp const struct got_error *err = NULL;
2096 708d8e67 2019-03-27 stsp unsigned char status;
2097 708d8e67 2019-03-27 stsp struct stat sb;
2098 708d8e67 2019-03-27 stsp char *ondisk_path;
2099 708d8e67 2019-03-27 stsp
2100 a76c42e6 2019-08-03 stsp if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
2101 a76c42e6 2019-08-03 stsp return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
2102 a76c42e6 2019-08-03 stsp
2103 708d8e67 2019-03-27 stsp if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
2104 708d8e67 2019-03-27 stsp == -1)
2105 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2106 708d8e67 2019-03-27 stsp
2107 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, repo);
2108 708d8e67 2019-03-27 stsp if (err)
2109 5a58a424 2020-06-23 stsp goto done;
2110 708d8e67 2019-03-27 stsp
2111 993e2a1b 2020-07-23 stsp if (S_ISLNK(sb.st_mode) && status != GOT_STATUS_NO_CHANGE) {
2112 993e2a1b 2020-07-23 stsp char ondisk_target[PATH_MAX];
2113 993e2a1b 2020-07-23 stsp ssize_t ondisk_len = readlink(ondisk_path, ondisk_target,
2114 993e2a1b 2020-07-23 stsp sizeof(ondisk_target));
2115 993e2a1b 2020-07-23 stsp if (ondisk_len == -1) {
2116 993e2a1b 2020-07-23 stsp err = got_error_from_errno2("readlink", ondisk_path);
2117 993e2a1b 2020-07-23 stsp goto done;
2118 993e2a1b 2020-07-23 stsp }
2119 993e2a1b 2020-07-23 stsp ondisk_target[ondisk_len] = '\0';
2120 993e2a1b 2020-07-23 stsp err = install_symlink_conflict(NULL, worktree->base_commit_id,
2121 993e2a1b 2020-07-23 stsp NULL, NULL, /* XXX pass common ancestor info? */
2122 993e2a1b 2020-07-23 stsp ondisk_target, ondisk_path);
2123 993e2a1b 2020-07-23 stsp if (err)
2124 993e2a1b 2020-07-23 stsp goto done;
2125 993e2a1b 2020-07-23 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
2126 993e2a1b 2020-07-23 stsp ie->path);
2127 993e2a1b 2020-07-23 stsp goto done;
2128 993e2a1b 2020-07-23 stsp }
2129 993e2a1b 2020-07-23 stsp
2130 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
2131 fc6346c4 2019-03-27 stsp status == GOT_STATUS_ADD) {
2132 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
2133 1ee397ad 2019-07-12 stsp if (err)
2134 5a58a424 2020-06-23 stsp goto done;
2135 fc6346c4 2019-03-27 stsp /*
2136 fc6346c4 2019-03-27 stsp * Preserve the working file and change the deleted blob's
2137 fc6346c4 2019-03-27 stsp * entry into a schedule-add entry.
2138 fc6346c4 2019-03-27 stsp */
2139 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, worktree->root_fd,
2140 437adc9d 2020-12-10 yzhong ie->path, NULL, NULL, 0);
2141 fc6346c4 2019-03-27 stsp } else {
2142 1ee397ad 2019-07-12 stsp err = (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
2143 1ee397ad 2019-07-12 stsp if (err)
2144 5a58a424 2020-06-23 stsp goto done;
2145 fc6346c4 2019-03-27 stsp if (status == GOT_STATUS_NO_CHANGE) {
2146 fc6346c4 2019-03-27 stsp err = remove_ondisk_file(worktree->root_path, ie->path);
2147 fc6346c4 2019-03-27 stsp if (err)
2148 5a58a424 2020-06-23 stsp goto done;
2149 fc6346c4 2019-03-27 stsp }
2150 fc6346c4 2019-03-27 stsp got_fileindex_entry_remove(fileindex, ie);
2151 708d8e67 2019-03-27 stsp }
2152 5a58a424 2020-06-23 stsp done:
2153 5a58a424 2020-06-23 stsp free(ondisk_path);
2154 fc6346c4 2019-03-27 stsp return err;
2155 708d8e67 2019-03-27 stsp }
2156 708d8e67 2019-03-27 stsp
2157 8da9e5f4 2019-01-12 stsp struct diff_cb_arg {
2158 8da9e5f4 2019-01-12 stsp struct got_fileindex *fileindex;
2159 8da9e5f4 2019-01-12 stsp struct got_worktree *worktree;
2160 8da9e5f4 2019-01-12 stsp struct got_repository *repo;
2161 8da9e5f4 2019-01-12 stsp got_worktree_checkout_cb progress_cb;
2162 8da9e5f4 2019-01-12 stsp void *progress_arg;
2163 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb;
2164 8da9e5f4 2019-01-12 stsp void *cancel_arg;
2165 8da9e5f4 2019-01-12 stsp };
2166 8da9e5f4 2019-01-12 stsp
2167 512f0d0e 2019-01-02 stsp static const struct got_error *
2168 8da9e5f4 2019-01-12 stsp diff_old_new(void *arg, struct got_fileindex_entry *ie,
2169 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te, const char *parent_path)
2170 512f0d0e 2019-01-02 stsp {
2171 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
2172 0584f854 2019-04-06 stsp
2173 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2174 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2175 512f0d0e 2019-01-02 stsp
2176 8da9e5f4 2019-01-12 stsp return update_blob(a->worktree, a->fileindex, ie, te,
2177 0584f854 2019-04-06 stsp ie->path, a->repo, a->progress_cb, a->progress_arg);
2178 8da9e5f4 2019-01-12 stsp }
2179 512f0d0e 2019-01-02 stsp
2180 8da9e5f4 2019-01-12 stsp static const struct got_error *
2181 8da9e5f4 2019-01-12 stsp diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
2182 8da9e5f4 2019-01-12 stsp {
2183 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
2184 7a9df742 2019-01-08 stsp
2185 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2186 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2187 0584f854 2019-04-06 stsp
2188 234035bc 2019-06-01 stsp return delete_blob(a->worktree, a->fileindex, ie,
2189 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
2190 9d31a1d8 2018-03-11 stsp }
2191 9d31a1d8 2018-03-11 stsp
2192 9d31a1d8 2018-03-11 stsp static const struct got_error *
2193 8da9e5f4 2019-01-12 stsp diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
2194 9d31a1d8 2018-03-11 stsp {
2195 8da9e5f4 2019-01-12 stsp struct diff_cb_arg *a = arg;
2196 8da9e5f4 2019-01-12 stsp const struct got_error *err;
2197 8da9e5f4 2019-01-12 stsp char *path;
2198 9d31a1d8 2018-03-11 stsp
2199 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2200 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
2201 0584f854 2019-04-06 stsp
2202 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
2203 63c5ca5d 2019-08-24 stsp return NULL;
2204 63c5ca5d 2019-08-24 stsp
2205 8da9e5f4 2019-01-12 stsp if (asprintf(&path, "%s%s%s", parent_path,
2206 8da9e5f4 2019-01-12 stsp parent_path[0] ? "/" : "", te->name)
2207 8da9e5f4 2019-01-12 stsp == -1)
2208 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2209 9d31a1d8 2018-03-11 stsp
2210 8da9e5f4 2019-01-12 stsp if (S_ISDIR(te->mode))
2211 8da9e5f4 2019-01-12 stsp err = add_dir_on_disk(a->worktree, path);
2212 8da9e5f4 2019-01-12 stsp else
2213 8da9e5f4 2019-01-12 stsp err = update_blob(a->worktree, a->fileindex, NULL, te, path,
2214 0584f854 2019-04-06 stsp a->repo, a->progress_cb, a->progress_arg);
2215 9d31a1d8 2018-03-11 stsp
2216 8da9e5f4 2019-01-12 stsp free(path);
2217 0cd1c46a 2019-03-11 stsp return err;
2218 0cd1c46a 2019-03-11 stsp }
2219 0cd1c46a 2019-03-11 stsp
2220 b2118c49 2020-07-28 stsp const struct got_error *
2221 b2118c49 2020-07-28 stsp got_worktree_get_uuid(char **uuidstr, struct got_worktree *worktree)
2222 b2118c49 2020-07-28 stsp {
2223 b2118c49 2020-07-28 stsp uint32_t uuid_status;
2224 b2118c49 2020-07-28 stsp
2225 b2118c49 2020-07-28 stsp uuid_to_string(&worktree->uuid, uuidstr, &uuid_status);
2226 b2118c49 2020-07-28 stsp if (uuid_status != uuid_s_ok) {
2227 b2118c49 2020-07-28 stsp *uuidstr = NULL;
2228 b2118c49 2020-07-28 stsp return got_error_uuid(uuid_status, "uuid_to_string");
2229 b2118c49 2020-07-28 stsp }
2230 b2118c49 2020-07-28 stsp
2231 b2118c49 2020-07-28 stsp return NULL;
2232 b2118c49 2020-07-28 stsp }
2233 b2118c49 2020-07-28 stsp
2234 818c7501 2019-07-11 stsp static const struct got_error *
2235 818c7501 2019-07-11 stsp get_ref_name(char **refname, struct got_worktree *worktree, const char *prefix)
2236 0cd1c46a 2019-03-11 stsp {
2237 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
2238 0647c563 2019-03-11 stsp char *uuidstr = NULL;
2239 0cd1c46a 2019-03-11 stsp
2240 517bab73 2019-03-11 stsp *refname = NULL;
2241 517bab73 2019-03-11 stsp
2242 b2118c49 2020-07-28 stsp err = got_worktree_get_uuid(&uuidstr, worktree);
2243 b2118c49 2020-07-28 stsp if (err)
2244 b2118c49 2020-07-28 stsp return err;
2245 0cd1c46a 2019-03-11 stsp
2246 b2118c49 2020-07-28 stsp if (asprintf(refname, "%s-%s", prefix, uuidstr) == -1) {
2247 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2248 0647c563 2019-03-11 stsp *refname = NULL;
2249 0cd1c46a 2019-03-11 stsp }
2250 517bab73 2019-03-11 stsp free(uuidstr);
2251 517bab73 2019-03-11 stsp return err;
2252 517bab73 2019-03-11 stsp }
2253 517bab73 2019-03-11 stsp
2254 818c7501 2019-07-11 stsp const struct got_error *
2255 818c7501 2019-07-11 stsp got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
2256 818c7501 2019-07-11 stsp {
2257 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree, GOT_WORKTREE_BASE_REF_PREFIX);
2258 818c7501 2019-07-11 stsp }
2259 818c7501 2019-07-11 stsp
2260 818c7501 2019-07-11 stsp static const struct got_error *
2261 818c7501 2019-07-11 stsp get_rebase_tmp_ref_name(char **refname, struct got_worktree *worktree)
2262 818c7501 2019-07-11 stsp {
2263 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
2264 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_TMP_REF_PREFIX);
2265 818c7501 2019-07-11 stsp }
2266 818c7501 2019-07-11 stsp
2267 818c7501 2019-07-11 stsp static const struct got_error *
2268 818c7501 2019-07-11 stsp get_newbase_symref_name(char **refname, struct got_worktree *worktree)
2269 818c7501 2019-07-11 stsp {
2270 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree, GOT_WORKTREE_NEWBASE_REF_PREFIX);
2271 818c7501 2019-07-11 stsp }
2272 818c7501 2019-07-11 stsp
2273 818c7501 2019-07-11 stsp static const struct got_error *
2274 818c7501 2019-07-11 stsp get_rebase_branch_symref_name(char **refname, struct got_worktree *worktree)
2275 818c7501 2019-07-11 stsp {
2276 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
2277 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_BRANCH_REF_PREFIX);
2278 818c7501 2019-07-11 stsp }
2279 818c7501 2019-07-11 stsp
2280 818c7501 2019-07-11 stsp static const struct got_error *
2281 818c7501 2019-07-11 stsp get_rebase_commit_ref_name(char **refname, struct got_worktree *worktree)
2282 818c7501 2019-07-11 stsp {
2283 818c7501 2019-07-11 stsp return get_ref_name(refname, worktree,
2284 818c7501 2019-07-11 stsp GOT_WORKTREE_REBASE_COMMIT_REF_PREFIX);
2285 0ebf8283 2019-07-24 stsp }
2286 0ebf8283 2019-07-24 stsp
2287 0ebf8283 2019-07-24 stsp static const struct got_error *
2288 0ebf8283 2019-07-24 stsp get_histedit_tmp_ref_name(char **refname, struct got_worktree *worktree)
2289 0ebf8283 2019-07-24 stsp {
2290 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2291 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_TMP_REF_PREFIX);
2292 0ebf8283 2019-07-24 stsp }
2293 0ebf8283 2019-07-24 stsp
2294 0ebf8283 2019-07-24 stsp static const struct got_error *
2295 0ebf8283 2019-07-24 stsp get_histedit_branch_symref_name(char **refname, struct got_worktree *worktree)
2296 0ebf8283 2019-07-24 stsp {
2297 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2298 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_BRANCH_REF_PREFIX);
2299 0ebf8283 2019-07-24 stsp }
2300 0ebf8283 2019-07-24 stsp
2301 0ebf8283 2019-07-24 stsp static const struct got_error *
2302 0ebf8283 2019-07-24 stsp get_histedit_base_commit_ref_name(char **refname, struct got_worktree *worktree)
2303 0ebf8283 2019-07-24 stsp {
2304 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2305 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_BASE_COMMIT_REF_PREFIX);
2306 818c7501 2019-07-11 stsp }
2307 818c7501 2019-07-11 stsp
2308 0ebf8283 2019-07-24 stsp static const struct got_error *
2309 0ebf8283 2019-07-24 stsp get_histedit_commit_ref_name(char **refname, struct got_worktree *worktree)
2310 0ebf8283 2019-07-24 stsp {
2311 0ebf8283 2019-07-24 stsp return get_ref_name(refname, worktree,
2312 0ebf8283 2019-07-24 stsp GOT_WORKTREE_HISTEDIT_COMMIT_REF_PREFIX);
2313 0ebf8283 2019-07-24 stsp }
2314 818c7501 2019-07-11 stsp
2315 0ebf8283 2019-07-24 stsp const struct got_error *
2316 c3022ba5 2019-07-27 stsp got_worktree_get_histedit_script_path(char **path,
2317 c3022ba5 2019-07-27 stsp struct got_worktree *worktree)
2318 0ebf8283 2019-07-24 stsp {
2319 0ebf8283 2019-07-24 stsp if (asprintf(path, "%s/%s/%s", worktree->root_path,
2320 c3022ba5 2019-07-27 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_HISTEDIT_SCRIPT) == -1) {
2321 0ebf8283 2019-07-24 stsp *path = NULL;
2322 0ebf8283 2019-07-24 stsp return got_error_from_errno("asprintf");
2323 0ebf8283 2019-07-24 stsp }
2324 0ebf8283 2019-07-24 stsp return NULL;
2325 0ebf8283 2019-07-24 stsp }
2326 0ebf8283 2019-07-24 stsp
2327 517bab73 2019-03-11 stsp /*
2328 517bab73 2019-03-11 stsp * Prevent Git's garbage collector from deleting our base commit by
2329 517bab73 2019-03-11 stsp * setting a reference to our base commit's ID.
2330 517bab73 2019-03-11 stsp */
2331 517bab73 2019-03-11 stsp static const struct got_error *
2332 517bab73 2019-03-11 stsp ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
2333 517bab73 2019-03-11 stsp {
2334 517bab73 2019-03-11 stsp const struct got_error *err = NULL;
2335 517bab73 2019-03-11 stsp struct got_reference *ref = NULL;
2336 517bab73 2019-03-11 stsp char *refname;
2337 517bab73 2019-03-11 stsp
2338 517bab73 2019-03-11 stsp err = got_worktree_get_base_ref_name(&refname, worktree);
2339 517bab73 2019-03-11 stsp if (err)
2340 517bab73 2019-03-11 stsp return err;
2341 0cd1c46a 2019-03-11 stsp
2342 0cd1c46a 2019-03-11 stsp err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
2343 0cd1c46a 2019-03-11 stsp if (err)
2344 0cd1c46a 2019-03-11 stsp goto done;
2345 0cd1c46a 2019-03-11 stsp
2346 0cd1c46a 2019-03-11 stsp err = got_ref_write(ref, repo);
2347 0cd1c46a 2019-03-11 stsp done:
2348 0cd1c46a 2019-03-11 stsp free(refname);
2349 0cd1c46a 2019-03-11 stsp if (ref)
2350 0cd1c46a 2019-03-11 stsp got_ref_close(ref);
2351 3e3a69f1 2019-07-25 stsp return err;
2352 3e3a69f1 2019-07-25 stsp }
2353 3e3a69f1 2019-07-25 stsp
2354 3e3a69f1 2019-07-25 stsp static const struct got_error *
2355 3e3a69f1 2019-07-25 stsp get_fileindex_path(char **fileindex_path, struct got_worktree *worktree)
2356 3e3a69f1 2019-07-25 stsp {
2357 3e3a69f1 2019-07-25 stsp const struct got_error *err = NULL;
2358 3e3a69f1 2019-07-25 stsp
2359 3e3a69f1 2019-07-25 stsp if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
2360 3e3a69f1 2019-07-25 stsp GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2361 3e3a69f1 2019-07-25 stsp err = got_error_from_errno("asprintf");
2362 3e3a69f1 2019-07-25 stsp *fileindex_path = NULL;
2363 3e3a69f1 2019-07-25 stsp }
2364 9d31a1d8 2018-03-11 stsp return err;
2365 9d31a1d8 2018-03-11 stsp }
2366 9d31a1d8 2018-03-11 stsp
2367 3e3a69f1 2019-07-25 stsp
2368 ebf99748 2019-05-09 stsp static const struct got_error *
2369 ebf99748 2019-05-09 stsp open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
2370 4b55f459 2019-09-08 stsp struct got_worktree *worktree)
2371 ebf99748 2019-05-09 stsp {
2372 ebf99748 2019-05-09 stsp const struct got_error *err = NULL;
2373 ebf99748 2019-05-09 stsp FILE *index = NULL;
2374 0cd1c46a 2019-03-11 stsp
2375 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
2376 ebf99748 2019-05-09 stsp *fileindex = got_fileindex_alloc();
2377 ebf99748 2019-05-09 stsp if (*fileindex == NULL)
2378 638f9024 2019-05-13 stsp return got_error_from_errno("got_fileindex_alloc");
2379 ebf99748 2019-05-09 stsp
2380 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(fileindex_path, worktree);
2381 3e3a69f1 2019-07-25 stsp if (err)
2382 ebf99748 2019-05-09 stsp goto done;
2383 ebf99748 2019-05-09 stsp
2384 ebf99748 2019-05-09 stsp index = fopen(*fileindex_path, "rb");
2385 ebf99748 2019-05-09 stsp if (index == NULL) {
2386 ebf99748 2019-05-09 stsp if (errno != ENOENT)
2387 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", *fileindex_path);
2388 ebf99748 2019-05-09 stsp } else {
2389 ebf99748 2019-05-09 stsp err = got_fileindex_read(*fileindex, index);
2390 ebf99748 2019-05-09 stsp if (fclose(index) != 0 && err == NULL)
2391 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2392 ebf99748 2019-05-09 stsp }
2393 ebf99748 2019-05-09 stsp done:
2394 ebf99748 2019-05-09 stsp if (err) {
2395 ebf99748 2019-05-09 stsp free(*fileindex_path);
2396 ebf99748 2019-05-09 stsp *fileindex_path = NULL;
2397 950a4a90 2019-07-10 stsp got_fileindex_free(*fileindex);
2398 ebf99748 2019-05-09 stsp *fileindex = NULL;
2399 ebf99748 2019-05-09 stsp }
2400 ebf99748 2019-05-09 stsp return err;
2401 ebf99748 2019-05-09 stsp }
2402 c932eeeb 2019-05-22 stsp
2403 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg {
2404 c932eeeb 2019-05-22 stsp struct got_object_id *base_commit_id;
2405 c932eeeb 2019-05-22 stsp const char *path;
2406 c932eeeb 2019-05-22 stsp size_t path_len;
2407 c932eeeb 2019-05-22 stsp const char *entry_name;
2408 a484d721 2019-06-10 stsp got_worktree_checkout_cb progress_cb;
2409 a484d721 2019-06-10 stsp void *progress_arg;
2410 c932eeeb 2019-05-22 stsp };
2411 ebf99748 2019-05-09 stsp
2412 c932eeeb 2019-05-22 stsp /* Bump base commit ID of all files within an updated part of the work tree. */
2413 c932eeeb 2019-05-22 stsp static const struct got_error *
2414 c932eeeb 2019-05-22 stsp bump_base_commit_id(void *arg, struct got_fileindex_entry *ie)
2415 c932eeeb 2019-05-22 stsp {
2416 1ee397ad 2019-07-12 stsp const struct got_error *err;
2417 c932eeeb 2019-05-22 stsp struct bump_base_commit_id_arg *a = arg;
2418 c932eeeb 2019-05-22 stsp
2419 c932eeeb 2019-05-22 stsp if (a->entry_name) {
2420 c932eeeb 2019-05-22 stsp if (strcmp(ie->path, a->path) != 0)
2421 c932eeeb 2019-05-22 stsp return NULL;
2422 c932eeeb 2019-05-22 stsp } else if (!got_path_is_child(ie->path, a->path, a->path_len))
2423 102ff934 2019-06-11 stsp return NULL;
2424 102ff934 2019-06-11 stsp
2425 102ff934 2019-06-11 stsp if (memcmp(ie->commit_sha1, a->base_commit_id->sha1,
2426 102ff934 2019-06-11 stsp SHA1_DIGEST_LENGTH) == 0)
2427 c932eeeb 2019-05-22 stsp return NULL;
2428 c932eeeb 2019-05-22 stsp
2429 1ee397ad 2019-07-12 stsp if (a->progress_cb) {
2430 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_BUMP_BASE,
2431 edd02c5e 2019-07-11 stsp ie->path);
2432 1ee397ad 2019-07-12 stsp if (err)
2433 1ee397ad 2019-07-12 stsp return err;
2434 1ee397ad 2019-07-12 stsp }
2435 c932eeeb 2019-05-22 stsp memcpy(ie->commit_sha1, a->base_commit_id->sha1, SHA1_DIGEST_LENGTH);
2436 c932eeeb 2019-05-22 stsp return NULL;
2437 a615e0e7 2020-12-16 stsp }
2438 a615e0e7 2020-12-16 stsp
2439 a615e0e7 2020-12-16 stsp static const struct got_error *
2440 a615e0e7 2020-12-16 stsp bump_base_commit_id_everywhere(struct got_worktree *worktree,
2441 a615e0e7 2020-12-16 stsp struct got_fileindex *fileindex,
2442 a615e0e7 2020-12-16 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
2443 a615e0e7 2020-12-16 stsp {
2444 a615e0e7 2020-12-16 stsp struct bump_base_commit_id_arg bbc_arg;
2445 a615e0e7 2020-12-16 stsp
2446 a615e0e7 2020-12-16 stsp bbc_arg.base_commit_id = worktree->base_commit_id;
2447 a615e0e7 2020-12-16 stsp bbc_arg.entry_name = NULL;
2448 a615e0e7 2020-12-16 stsp bbc_arg.path = "";
2449 a615e0e7 2020-12-16 stsp bbc_arg.path_len = 0;
2450 a615e0e7 2020-12-16 stsp bbc_arg.progress_cb = progress_cb;
2451 a615e0e7 2020-12-16 stsp bbc_arg.progress_arg = progress_arg;
2452 a615e0e7 2020-12-16 stsp
2453 a615e0e7 2020-12-16 stsp return got_fileindex_for_each_entry_safe(fileindex,
2454 a615e0e7 2020-12-16 stsp bump_base_commit_id, &bbc_arg);
2455 9c6338c4 2019-06-02 stsp }
2456 9c6338c4 2019-06-02 stsp
2457 9c6338c4 2019-06-02 stsp static const struct got_error *
2458 9c6338c4 2019-06-02 stsp sync_fileindex(struct got_fileindex *fileindex, const char *fileindex_path)
2459 9c6338c4 2019-06-02 stsp {
2460 9c6338c4 2019-06-02 stsp const struct got_error *err = NULL;
2461 9c6338c4 2019-06-02 stsp char *new_fileindex_path = NULL;
2462 9c6338c4 2019-06-02 stsp FILE *new_index = NULL;
2463 867630bb 2020-01-17 stsp struct timespec timeout;
2464 9c6338c4 2019-06-02 stsp
2465 9c6338c4 2019-06-02 stsp err = got_opentemp_named(&new_fileindex_path, &new_index,
2466 9c6338c4 2019-06-02 stsp fileindex_path);
2467 9c6338c4 2019-06-02 stsp if (err)
2468 9c6338c4 2019-06-02 stsp goto done;
2469 9c6338c4 2019-06-02 stsp
2470 9c6338c4 2019-06-02 stsp err = got_fileindex_write(fileindex, new_index);
2471 9c6338c4 2019-06-02 stsp if (err)
2472 9c6338c4 2019-06-02 stsp goto done;
2473 9c6338c4 2019-06-02 stsp
2474 9c6338c4 2019-06-02 stsp if (rename(new_fileindex_path, fileindex_path) != 0) {
2475 9c6338c4 2019-06-02 stsp err = got_error_from_errno3("rename", new_fileindex_path,
2476 9c6338c4 2019-06-02 stsp fileindex_path);
2477 9c6338c4 2019-06-02 stsp unlink(new_fileindex_path);
2478 9c6338c4 2019-06-02 stsp }
2479 867630bb 2020-01-17 stsp
2480 867630bb 2020-01-17 stsp /*
2481 867630bb 2020-01-17 stsp * Sleep for a short amount of time to ensure that files modified after
2482 867630bb 2020-01-17 stsp * this program exits have a different time stamp from the one which
2483 867630bb 2020-01-17 stsp * was recorded in the file index.
2484 867630bb 2020-01-17 stsp */
2485 62d463ca 2020-10-20 naddy timeout.tv_sec = 0;
2486 62d463ca 2020-10-20 naddy timeout.tv_nsec = 1;
2487 62d463ca 2020-10-20 naddy nanosleep(&timeout, NULL);
2488 9c6338c4 2019-06-02 stsp done:
2489 9c6338c4 2019-06-02 stsp if (new_index)
2490 9c6338c4 2019-06-02 stsp fclose(new_index);
2491 9c6338c4 2019-06-02 stsp free(new_fileindex_path);
2492 9c6338c4 2019-06-02 stsp return err;
2493 c932eeeb 2019-05-22 stsp }
2494 6ced4176 2019-07-12 stsp
2495 6ced4176 2019-07-12 stsp static const struct got_error *
2496 6ced4176 2019-07-12 stsp find_tree_entry_for_checkout(int *entry_type, char **tree_relpath,
2497 6ced4176 2019-07-12 stsp struct got_object_id **tree_id, const char *wt_relpath,
2498 6ced4176 2019-07-12 stsp struct got_worktree *worktree, struct got_repository *repo)
2499 6ced4176 2019-07-12 stsp {
2500 6ced4176 2019-07-12 stsp const struct got_error *err = NULL;
2501 6ced4176 2019-07-12 stsp struct got_object_id *id = NULL;
2502 6ced4176 2019-07-12 stsp char *in_repo_path = NULL;
2503 6ced4176 2019-07-12 stsp int is_root_wt = got_path_is_root_dir(worktree->path_prefix);
2504 6ced4176 2019-07-12 stsp
2505 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_ANY;
2506 6ced4176 2019-07-12 stsp *tree_relpath = NULL;
2507 6ced4176 2019-07-12 stsp *tree_id = NULL;
2508 6ced4176 2019-07-12 stsp
2509 6ced4176 2019-07-12 stsp if (wt_relpath[0] == '\0') {
2510 6ced4176 2019-07-12 stsp /* Check out all files within the work tree. */
2511 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_TREE;
2512 6ced4176 2019-07-12 stsp *tree_relpath = strdup("");
2513 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
2514 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2515 6ced4176 2019-07-12 stsp goto done;
2516 6ced4176 2019-07-12 stsp }
2517 6ced4176 2019-07-12 stsp err = got_object_id_by_path(tree_id, repo,
2518 6ced4176 2019-07-12 stsp worktree->base_commit_id, worktree->path_prefix);
2519 6ced4176 2019-07-12 stsp if (err)
2520 6ced4176 2019-07-12 stsp goto done;
2521 6ced4176 2019-07-12 stsp return NULL;
2522 6ced4176 2019-07-12 stsp }
2523 6ced4176 2019-07-12 stsp
2524 6ced4176 2019-07-12 stsp /* Check out a subset of files in the work tree. */
2525 6ced4176 2019-07-12 stsp
2526 6ced4176 2019-07-12 stsp if (asprintf(&in_repo_path, "%s%s%s", worktree->path_prefix,
2527 6ced4176 2019-07-12 stsp is_root_wt ? "" : "/", wt_relpath) == -1) {
2528 6ced4176 2019-07-12 stsp err = got_error_from_errno("asprintf");
2529 6ced4176 2019-07-12 stsp goto done;
2530 6ced4176 2019-07-12 stsp }
2531 6ced4176 2019-07-12 stsp
2532 6ced4176 2019-07-12 stsp err = got_object_id_by_path(&id, repo, worktree->base_commit_id,
2533 6ced4176 2019-07-12 stsp in_repo_path);
2534 6ced4176 2019-07-12 stsp if (err)
2535 6ced4176 2019-07-12 stsp goto done;
2536 6ced4176 2019-07-12 stsp
2537 6ced4176 2019-07-12 stsp free(in_repo_path);
2538 6ced4176 2019-07-12 stsp in_repo_path = NULL;
2539 6ced4176 2019-07-12 stsp
2540 6ced4176 2019-07-12 stsp err = got_object_get_type(entry_type, repo, id);
2541 6ced4176 2019-07-12 stsp if (err)
2542 6ced4176 2019-07-12 stsp goto done;
2543 c932eeeb 2019-05-22 stsp
2544 6ced4176 2019-07-12 stsp if (*entry_type == GOT_OBJ_TYPE_BLOB) {
2545 6ced4176 2019-07-12 stsp /* Check out a single file. */
2546 6ced4176 2019-07-12 stsp if (strchr(wt_relpath, '/') == NULL) {
2547 6ced4176 2019-07-12 stsp /* Check out a single file in work tree's root dir. */
2548 6ced4176 2019-07-12 stsp in_repo_path = strdup(worktree->path_prefix);
2549 6ced4176 2019-07-12 stsp if (in_repo_path == NULL) {
2550 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2551 6ced4176 2019-07-12 stsp goto done;
2552 6ced4176 2019-07-12 stsp }
2553 6ced4176 2019-07-12 stsp *tree_relpath = strdup("");
2554 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
2555 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2556 6ced4176 2019-07-12 stsp goto done;
2557 6ced4176 2019-07-12 stsp }
2558 6ced4176 2019-07-12 stsp } else {
2559 6ced4176 2019-07-12 stsp /* Check out a single file in a subdirectory. */
2560 6ced4176 2019-07-12 stsp err = got_path_dirname(tree_relpath, wt_relpath);
2561 6ced4176 2019-07-12 stsp if (err)
2562 6ced4176 2019-07-12 stsp return err;
2563 6ced4176 2019-07-12 stsp if (asprintf(&in_repo_path, "%s%s%s",
2564 6ced4176 2019-07-12 stsp worktree->path_prefix, is_root_wt ? "" : "/",
2565 6ced4176 2019-07-12 stsp *tree_relpath) == -1) {
2566 6ced4176 2019-07-12 stsp err = got_error_from_errno("asprintf");
2567 6ced4176 2019-07-12 stsp goto done;
2568 6ced4176 2019-07-12 stsp }
2569 6ced4176 2019-07-12 stsp }
2570 6ced4176 2019-07-12 stsp err = got_object_id_by_path(tree_id, repo,
2571 6ced4176 2019-07-12 stsp worktree->base_commit_id, in_repo_path);
2572 6ced4176 2019-07-12 stsp } else {
2573 6ced4176 2019-07-12 stsp /* Check out all files within a subdirectory. */
2574 6ced4176 2019-07-12 stsp *tree_id = got_object_id_dup(id);
2575 6ced4176 2019-07-12 stsp if (*tree_id == NULL) {
2576 6ced4176 2019-07-12 stsp err = got_error_from_errno("got_object_id_dup");
2577 6ced4176 2019-07-12 stsp goto done;
2578 6ced4176 2019-07-12 stsp }
2579 6ced4176 2019-07-12 stsp *tree_relpath = strdup(wt_relpath);
2580 6ced4176 2019-07-12 stsp if (*tree_relpath == NULL) {
2581 6ced4176 2019-07-12 stsp err = got_error_from_errno("strdup");
2582 6ced4176 2019-07-12 stsp goto done;
2583 6ced4176 2019-07-12 stsp }
2584 6ced4176 2019-07-12 stsp }
2585 6ced4176 2019-07-12 stsp done:
2586 6ced4176 2019-07-12 stsp free(id);
2587 6ced4176 2019-07-12 stsp free(in_repo_path);
2588 6ced4176 2019-07-12 stsp if (err) {
2589 6ced4176 2019-07-12 stsp *entry_type = GOT_OBJ_TYPE_ANY;
2590 6ced4176 2019-07-12 stsp free(*tree_relpath);
2591 6ced4176 2019-07-12 stsp *tree_relpath = NULL;
2592 6ced4176 2019-07-12 stsp free(*tree_id);
2593 6ced4176 2019-07-12 stsp *tree_id = NULL;
2594 6ced4176 2019-07-12 stsp }
2595 07ed472d 2019-07-12 stsp return err;
2596 07ed472d 2019-07-12 stsp }
2597 07ed472d 2019-07-12 stsp
2598 07ed472d 2019-07-12 stsp static const struct got_error *
2599 07ed472d 2019-07-12 stsp checkout_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
2600 07ed472d 2019-07-12 stsp const char *relpath, struct got_object_id *tree_id, const char *entry_name,
2601 07ed472d 2019-07-12 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
2602 e6209546 2019-08-22 stsp void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
2603 07ed472d 2019-07-12 stsp {
2604 07ed472d 2019-07-12 stsp const struct got_error *err = NULL;
2605 07ed472d 2019-07-12 stsp struct got_commit_object *commit = NULL;
2606 07ed472d 2019-07-12 stsp struct got_tree_object *tree = NULL;
2607 07ed472d 2019-07-12 stsp struct got_fileindex_diff_tree_cb diff_cb;
2608 07ed472d 2019-07-12 stsp struct diff_cb_arg arg;
2609 07ed472d 2019-07-12 stsp
2610 07ed472d 2019-07-12 stsp err = ref_base_commit(worktree, repo);
2611 7f47418f 2019-12-20 stsp if (err) {
2612 6201aef3 2020-02-02 stsp if (!(err->code == GOT_ERR_ERRNO &&
2613 6201aef3 2020-02-02 stsp (errno == EACCES || errno == EROFS)))
2614 7f47418f 2019-12-20 stsp goto done;
2615 7f47418f 2019-12-20 stsp err = (*progress_cb)(progress_arg,
2616 7f47418f 2019-12-20 stsp GOT_STATUS_BASE_REF_ERR, worktree->root_path);
2617 7f47418f 2019-12-20 stsp if (err)
2618 7f47418f 2019-12-20 stsp return err;
2619 7f47418f 2019-12-20 stsp }
2620 07ed472d 2019-07-12 stsp
2621 07ed472d 2019-07-12 stsp err = got_object_open_as_commit(&commit, repo,
2622 62d463ca 2020-10-20 naddy worktree->base_commit_id);
2623 07ed472d 2019-07-12 stsp if (err)
2624 07ed472d 2019-07-12 stsp goto done;
2625 07ed472d 2019-07-12 stsp
2626 07ed472d 2019-07-12 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
2627 07ed472d 2019-07-12 stsp if (err)
2628 07ed472d 2019-07-12 stsp goto done;
2629 07ed472d 2019-07-12 stsp
2630 07ed472d 2019-07-12 stsp if (entry_name &&
2631 07ed472d 2019-07-12 stsp got_object_tree_find_entry(tree, entry_name) == NULL) {
2632 b66cd6f3 2020-07-31 stsp err = got_error_path(entry_name, GOT_ERR_NO_TREE_ENTRY);
2633 07ed472d 2019-07-12 stsp goto done;
2634 07ed472d 2019-07-12 stsp }
2635 07ed472d 2019-07-12 stsp
2636 07ed472d 2019-07-12 stsp diff_cb.diff_old_new = diff_old_new;
2637 07ed472d 2019-07-12 stsp diff_cb.diff_old = diff_old;
2638 07ed472d 2019-07-12 stsp diff_cb.diff_new = diff_new;
2639 07ed472d 2019-07-12 stsp arg.fileindex = fileindex;
2640 07ed472d 2019-07-12 stsp arg.worktree = worktree;
2641 07ed472d 2019-07-12 stsp arg.repo = repo;
2642 07ed472d 2019-07-12 stsp arg.progress_cb = progress_cb;
2643 07ed472d 2019-07-12 stsp arg.progress_arg = progress_arg;
2644 07ed472d 2019-07-12 stsp arg.cancel_cb = cancel_cb;
2645 07ed472d 2019-07-12 stsp arg.cancel_arg = cancel_arg;
2646 07ed472d 2019-07-12 stsp err = got_fileindex_diff_tree(fileindex, tree, relpath,
2647 07ed472d 2019-07-12 stsp entry_name, repo, &diff_cb, &arg);
2648 07ed472d 2019-07-12 stsp done:
2649 07ed472d 2019-07-12 stsp if (tree)
2650 07ed472d 2019-07-12 stsp got_object_tree_close(tree);
2651 07ed472d 2019-07-12 stsp if (commit)
2652 07ed472d 2019-07-12 stsp got_object_commit_close(commit);
2653 6ced4176 2019-07-12 stsp return err;
2654 6ced4176 2019-07-12 stsp }
2655 6ced4176 2019-07-12 stsp
2656 9d31a1d8 2018-03-11 stsp const struct got_error *
2657 f2ea84fa 2019-07-27 stsp got_worktree_checkout_files(struct got_worktree *worktree,
2658 f2ea84fa 2019-07-27 stsp struct got_pathlist_head *paths, struct got_repository *repo,
2659 f2ea84fa 2019-07-27 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
2660 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
2661 9d31a1d8 2018-03-11 stsp {
2662 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
2663 9d31a1d8 2018-03-11 stsp struct got_commit_object *commit = NULL;
2664 9d31a1d8 2018-03-11 stsp struct got_tree_object *tree = NULL;
2665 9d31a1d8 2018-03-11 stsp struct got_fileindex *fileindex = NULL;
2666 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
2667 f2ea84fa 2019-07-27 stsp struct got_pathlist_entry *pe;
2668 f2ea84fa 2019-07-27 stsp struct tree_path_data {
2669 f2ea84fa 2019-07-27 stsp SIMPLEQ_ENTRY(tree_path_data) entry;
2670 f2ea84fa 2019-07-27 stsp struct got_object_id *tree_id;
2671 f2ea84fa 2019-07-27 stsp int entry_type;
2672 f2ea84fa 2019-07-27 stsp char *relpath;
2673 f2ea84fa 2019-07-27 stsp char *entry_name;
2674 f2ea84fa 2019-07-27 stsp } *tpd = NULL;
2675 f2ea84fa 2019-07-27 stsp SIMPLEQ_HEAD(tree_paths, tree_path_data) tree_paths;
2676 9d31a1d8 2018-03-11 stsp
2677 f2ea84fa 2019-07-27 stsp SIMPLEQ_INIT(&tree_paths);
2678 f2ea84fa 2019-07-27 stsp
2679 9d31a1d8 2018-03-11 stsp err = lock_worktree(worktree, LOCK_EX);
2680 9d31a1d8 2018-03-11 stsp if (err)
2681 9d31a1d8 2018-03-11 stsp return err;
2682 93a30277 2018-12-24 stsp
2683 f2ea84fa 2019-07-27 stsp /* Map all specified paths to in-repository trees. */
2684 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, paths, entry) {
2685 f2ea84fa 2019-07-27 stsp tpd = malloc(sizeof(*tpd));
2686 f2ea84fa 2019-07-27 stsp if (tpd == NULL) {
2687 f2ea84fa 2019-07-27 stsp err = got_error_from_errno("malloc");
2688 f2ea84fa 2019-07-27 stsp goto done;
2689 f2ea84fa 2019-07-27 stsp }
2690 6ced4176 2019-07-12 stsp
2691 f2ea84fa 2019-07-27 stsp err = find_tree_entry_for_checkout(&tpd->entry_type,
2692 f2ea84fa 2019-07-27 stsp &tpd->relpath, &tpd->tree_id, pe->path, worktree, repo);
2693 f2ea84fa 2019-07-27 stsp if (err) {
2694 f2ea84fa 2019-07-27 stsp free(tpd);
2695 6ced4176 2019-07-12 stsp goto done;
2696 6ced4176 2019-07-12 stsp }
2697 f2ea84fa 2019-07-27 stsp
2698 f2ea84fa 2019-07-27 stsp if (tpd->entry_type == GOT_OBJ_TYPE_BLOB) {
2699 f2ea84fa 2019-07-27 stsp err = got_path_basename(&tpd->entry_name, pe->path);
2700 f2ea84fa 2019-07-27 stsp if (err) {
2701 f2ea84fa 2019-07-27 stsp free(tpd->relpath);
2702 f2ea84fa 2019-07-27 stsp free(tpd->tree_id);
2703 f2ea84fa 2019-07-27 stsp free(tpd);
2704 f2ea84fa 2019-07-27 stsp goto done;
2705 f2ea84fa 2019-07-27 stsp }
2706 f2ea84fa 2019-07-27 stsp } else
2707 f2ea84fa 2019-07-27 stsp tpd->entry_name = NULL;
2708 f2ea84fa 2019-07-27 stsp
2709 f2ea84fa 2019-07-27 stsp SIMPLEQ_INSERT_TAIL(&tree_paths, tpd, entry);
2710 6ced4176 2019-07-12 stsp }
2711 6ced4176 2019-07-12 stsp
2712 51514078 2018-12-25 stsp /*
2713 51514078 2018-12-25 stsp * Read the file index.
2714 51514078 2018-12-25 stsp * Checking out files is supposed to be an idempotent operation.
2715 51514078 2018-12-25 stsp * If the on-disk file index is incomplete we will try to complete it.
2716 51514078 2018-12-25 stsp */
2717 ebf99748 2019-05-09 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
2718 8da9e5f4 2019-01-12 stsp if (err)
2719 c4cdcb68 2019-04-03 stsp goto done;
2720 c4cdcb68 2019-04-03 stsp
2721 f2ea84fa 2019-07-27 stsp tpd = SIMPLEQ_FIRST(&tree_paths);
2722 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, paths, entry) {
2723 711d9cd9 2019-07-12 stsp struct bump_base_commit_id_arg bbc_arg;
2724 f2ea84fa 2019-07-27 stsp
2725 f2ea84fa 2019-07-27 stsp err = checkout_files(worktree, fileindex, tpd->relpath,
2726 f2ea84fa 2019-07-27 stsp tpd->tree_id, tpd->entry_name, repo,
2727 f2ea84fa 2019-07-27 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
2728 f2ea84fa 2019-07-27 stsp if (err)
2729 f2ea84fa 2019-07-27 stsp break;
2730 f2ea84fa 2019-07-27 stsp
2731 711d9cd9 2019-07-12 stsp bbc_arg.base_commit_id = worktree->base_commit_id;
2732 f2ea84fa 2019-07-27 stsp bbc_arg.entry_name = tpd->entry_name;
2733 f2ea84fa 2019-07-27 stsp bbc_arg.path = pe->path;
2734 f2b16ada 2019-08-02 stsp bbc_arg.path_len = pe->path_len;
2735 711d9cd9 2019-07-12 stsp bbc_arg.progress_cb = progress_cb;
2736 711d9cd9 2019-07-12 stsp bbc_arg.progress_arg = progress_arg;
2737 711d9cd9 2019-07-12 stsp err = got_fileindex_for_each_entry_safe(fileindex,
2738 711d9cd9 2019-07-12 stsp bump_base_commit_id, &bbc_arg);
2739 f2ea84fa 2019-07-27 stsp if (err)
2740 f2ea84fa 2019-07-27 stsp break;
2741 f2ea84fa 2019-07-27 stsp
2742 f2ea84fa 2019-07-27 stsp tpd = SIMPLEQ_NEXT(tpd, entry);
2743 711d9cd9 2019-07-12 stsp }
2744 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
2745 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
2746 af12c6b9 2019-06-04 stsp err = sync_err;
2747 9d31a1d8 2018-03-11 stsp done:
2748 9c6338c4 2019-06-02 stsp free(fileindex_path);
2749 edfa7d7f 2018-09-11 stsp if (tree)
2750 edfa7d7f 2018-09-11 stsp got_object_tree_close(tree);
2751 9d31a1d8 2018-03-11 stsp if (commit)
2752 9d31a1d8 2018-03-11 stsp got_object_commit_close(commit);
2753 5ade8233 2019-07-12 stsp if (fileindex)
2754 5ade8233 2019-07-12 stsp got_fileindex_free(fileindex);
2755 f2ea84fa 2019-07-27 stsp while (!SIMPLEQ_EMPTY(&tree_paths)) {
2756 f2ea84fa 2019-07-27 stsp tpd = SIMPLEQ_FIRST(&tree_paths);
2757 f2ea84fa 2019-07-27 stsp SIMPLEQ_REMOVE_HEAD(&tree_paths, entry);
2758 f2ea84fa 2019-07-27 stsp free(tpd->relpath);
2759 f2ea84fa 2019-07-27 stsp free(tpd->tree_id);
2760 f2ea84fa 2019-07-27 stsp free(tpd);
2761 f2ea84fa 2019-07-27 stsp }
2762 9d31a1d8 2018-03-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
2763 9d31a1d8 2018-03-11 stsp if (unlockerr && err == NULL)
2764 9d31a1d8 2018-03-11 stsp err = unlockerr;
2765 f8d1f275 2019-02-04 stsp return err;
2766 f8d1f275 2019-02-04 stsp }
2767 f8d1f275 2019-02-04 stsp
2768 234035bc 2019-06-01 stsp struct merge_file_cb_arg {
2769 234035bc 2019-06-01 stsp struct got_worktree *worktree;
2770 234035bc 2019-06-01 stsp struct got_fileindex *fileindex;
2771 234035bc 2019-06-01 stsp got_worktree_checkout_cb progress_cb;
2772 234035bc 2019-06-01 stsp void *progress_arg;
2773 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb;
2774 234035bc 2019-06-01 stsp void *cancel_arg;
2775 f69721c3 2019-10-21 stsp const char *label_orig;
2776 818c7501 2019-07-11 stsp struct got_object_id *commit_id2;
2777 234035bc 2019-06-01 stsp };
2778 234035bc 2019-06-01 stsp
2779 234035bc 2019-06-01 stsp static const struct got_error *
2780 234035bc 2019-06-01 stsp merge_file_cb(void *arg, struct got_blob_object *blob1,
2781 234035bc 2019-06-01 stsp struct got_blob_object *blob2, struct got_object_id *id1,
2782 234035bc 2019-06-01 stsp struct got_object_id *id2, const char *path1, const char *path2,
2783 46f68b20 2019-10-19 stsp mode_t mode1, mode_t mode2, struct got_repository *repo)
2784 234035bc 2019-06-01 stsp {
2785 234035bc 2019-06-01 stsp static const struct got_error *err = NULL;
2786 234035bc 2019-06-01 stsp struct merge_file_cb_arg *a = arg;
2787 234035bc 2019-06-01 stsp struct got_fileindex_entry *ie;
2788 234035bc 2019-06-01 stsp char *ondisk_path = NULL;
2789 234035bc 2019-06-01 stsp struct stat sb;
2790 234035bc 2019-06-01 stsp unsigned char status;
2791 234035bc 2019-06-01 stsp int local_changes_subsumed;
2792 234035bc 2019-06-01 stsp
2793 234035bc 2019-06-01 stsp if (blob1 && blob2) {
2794 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(a->fileindex, path2,
2795 d6c87207 2019-08-02 stsp strlen(path2));
2796 1ee397ad 2019-07-12 stsp if (ie == NULL)
2797 1ee397ad 2019-07-12 stsp return (*a->progress_cb)(a->progress_arg,
2798 1ee397ad 2019-07-12 stsp GOT_STATUS_MISSING, path2);
2799 234035bc 2019-06-01 stsp
2800 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2801 234035bc 2019-06-01 stsp path2) == -1)
2802 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
2803 234035bc 2019-06-01 stsp
2804 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2805 7f91a133 2019-12-13 stsp repo);
2806 234035bc 2019-06-01 stsp if (err)
2807 234035bc 2019-06-01 stsp goto done;
2808 234035bc 2019-06-01 stsp
2809 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
2810 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
2811 1ee397ad 2019-07-12 stsp GOT_STATUS_MERGE, path2);
2812 234035bc 2019-06-01 stsp goto done;
2813 234035bc 2019-06-01 stsp }
2814 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
2815 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
2816 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
2817 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
2818 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path2);
2819 234035bc 2019-06-01 stsp goto done;
2820 234035bc 2019-06-01 stsp }
2821 234035bc 2019-06-01 stsp
2822 af57b12a 2020-07-23 stsp if (S_ISLNK(mode1) && S_ISLNK(mode2)) {
2823 36bf999c 2020-07-23 stsp char *link_target2;
2824 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(&link_target2, blob2);
2825 36bf999c 2020-07-23 stsp if (err)
2826 36bf999c 2020-07-23 stsp goto done;
2827 dfe9fba0 2020-07-23 stsp err = merge_symlink(a->worktree, blob1, ondisk_path,
2828 36bf999c 2020-07-23 stsp path2, a->label_orig, link_target2, a->commit_id2,
2829 36bf999c 2020-07-23 stsp repo, a->progress_cb, a->progress_arg);
2830 36bf999c 2020-07-23 stsp free(link_target2);
2831 af57b12a 2020-07-23 stsp } else {
2832 af57b12a 2020-07-23 stsp err = merge_blob(&local_changes_subsumed, a->worktree,
2833 af57b12a 2020-07-23 stsp blob1, ondisk_path, path2, sb.st_mode,
2834 af57b12a 2020-07-23 stsp a->label_orig, blob2, a->commit_id2, repo,
2835 af57b12a 2020-07-23 stsp a->progress_cb, a->progress_arg);
2836 af57b12a 2020-07-23 stsp }
2837 234035bc 2019-06-01 stsp } else if (blob1) {
2838 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(a->fileindex, path1,
2839 d6c87207 2019-08-02 stsp strlen(path1));
2840 1ee397ad 2019-07-12 stsp if (ie == NULL)
2841 1ee397ad 2019-07-12 stsp return (*a->progress_cb)(a->progress_arg,
2842 3c24af98 2020-02-07 tracey GOT_STATUS_MISSING, path1);
2843 2b92fad7 2019-06-02 stsp
2844 2b92fad7 2019-06-02 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2845 2b92fad7 2019-06-02 stsp path1) == -1)
2846 2b92fad7 2019-06-02 stsp return got_error_from_errno("asprintf");
2847 2b92fad7 2019-06-02 stsp
2848 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2849 7f91a133 2019-12-13 stsp repo);
2850 2b92fad7 2019-06-02 stsp if (err)
2851 2b92fad7 2019-06-02 stsp goto done;
2852 2b92fad7 2019-06-02 stsp
2853 2b92fad7 2019-06-02 stsp switch (status) {
2854 2b92fad7 2019-06-02 stsp case GOT_STATUS_NO_CHANGE:
2855 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
2856 1ee397ad 2019-07-12 stsp GOT_STATUS_DELETE, path1);
2857 1ee397ad 2019-07-12 stsp if (err)
2858 1ee397ad 2019-07-12 stsp goto done;
2859 2b92fad7 2019-06-02 stsp err = remove_ondisk_file(a->worktree->root_path, path1);
2860 2b92fad7 2019-06-02 stsp if (err)
2861 2b92fad7 2019-06-02 stsp goto done;
2862 2b92fad7 2019-06-02 stsp if (ie)
2863 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
2864 2b92fad7 2019-06-02 stsp break;
2865 2b92fad7 2019-06-02 stsp case GOT_STATUS_DELETE:
2866 2b92fad7 2019-06-02 stsp case GOT_STATUS_MISSING:
2867 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
2868 1ee397ad 2019-07-12 stsp GOT_STATUS_DELETE, path1);
2869 1ee397ad 2019-07-12 stsp if (err)
2870 1ee397ad 2019-07-12 stsp goto done;
2871 2b92fad7 2019-06-02 stsp if (ie)
2872 2b92fad7 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
2873 2b92fad7 2019-06-02 stsp break;
2874 0a22ca1a 2020-09-23 stsp case GOT_STATUS_ADD: {
2875 0a22ca1a 2020-09-23 stsp struct got_object_id *id;
2876 0a22ca1a 2020-09-23 stsp FILE *blob1_f;
2877 0a22ca1a 2020-09-23 stsp /*
2878 0a22ca1a 2020-09-23 stsp * Delete the added file only if its content already
2879 0a22ca1a 2020-09-23 stsp * exists in the repository.
2880 0a22ca1a 2020-09-23 stsp */
2881 0a22ca1a 2020-09-23 stsp err = got_object_blob_file_create(&id, &blob1_f, path1);
2882 0a22ca1a 2020-09-23 stsp if (err)
2883 0a22ca1a 2020-09-23 stsp goto done;
2884 0a22ca1a 2020-09-23 stsp if (got_object_id_cmp(id, id1) == 0) {
2885 0a22ca1a 2020-09-23 stsp err = (*a->progress_cb)(a->progress_arg,
2886 0a22ca1a 2020-09-23 stsp GOT_STATUS_DELETE, path1);
2887 0a22ca1a 2020-09-23 stsp if (err)
2888 0a22ca1a 2020-09-23 stsp goto done;
2889 0a22ca1a 2020-09-23 stsp err = remove_ondisk_file(a->worktree->root_path,
2890 0a22ca1a 2020-09-23 stsp path1);
2891 0a22ca1a 2020-09-23 stsp if (err)
2892 0a22ca1a 2020-09-23 stsp goto done;
2893 0a22ca1a 2020-09-23 stsp if (ie)
2894 0a22ca1a 2020-09-23 stsp got_fileindex_entry_remove(a->fileindex,
2895 0a22ca1a 2020-09-23 stsp ie);
2896 0a22ca1a 2020-09-23 stsp } else {
2897 0a22ca1a 2020-09-23 stsp err = (*a->progress_cb)(a->progress_arg,
2898 0a22ca1a 2020-09-23 stsp GOT_STATUS_CANNOT_DELETE, path1);
2899 0a22ca1a 2020-09-23 stsp }
2900 0a22ca1a 2020-09-23 stsp if (fclose(blob1_f) == EOF && err == NULL)
2901 0a22ca1a 2020-09-23 stsp err = got_error_from_errno("fclose");
2902 0a22ca1a 2020-09-23 stsp free(id);
2903 0a22ca1a 2020-09-23 stsp if (err)
2904 0a22ca1a 2020-09-23 stsp goto done;
2905 0a22ca1a 2020-09-23 stsp break;
2906 0a22ca1a 2020-09-23 stsp }
2907 2b92fad7 2019-06-02 stsp case GOT_STATUS_MODIFY:
2908 2b92fad7 2019-06-02 stsp case GOT_STATUS_CONFLICT:
2909 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
2910 2b92fad7 2019-06-02 stsp GOT_STATUS_CANNOT_DELETE, path1);
2911 1ee397ad 2019-07-12 stsp if (err)
2912 1ee397ad 2019-07-12 stsp goto done;
2913 2b92fad7 2019-06-02 stsp break;
2914 2b92fad7 2019-06-02 stsp case GOT_STATUS_OBSTRUCTED:
2915 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path1);
2916 1ee397ad 2019-07-12 stsp if (err)
2917 1ee397ad 2019-07-12 stsp goto done;
2918 2b92fad7 2019-06-02 stsp break;
2919 2b92fad7 2019-06-02 stsp default:
2920 2b92fad7 2019-06-02 stsp break;
2921 2b92fad7 2019-06-02 stsp }
2922 234035bc 2019-06-01 stsp } else if (blob2) {
2923 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2924 234035bc 2019-06-01 stsp path2) == -1)
2925 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
2926 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(a->fileindex, path2,
2927 d6c87207 2019-08-02 stsp strlen(path2));
2928 234035bc 2019-06-01 stsp if (ie) {
2929 234035bc 2019-06-01 stsp err = get_file_status(&status, &sb, ie, ondisk_path,
2930 7f91a133 2019-12-13 stsp -1, NULL, repo);
2931 234035bc 2019-06-01 stsp if (err)
2932 234035bc 2019-06-01 stsp goto done;
2933 234035bc 2019-06-01 stsp if (status != GOT_STATUS_NO_CHANGE &&
2934 234035bc 2019-06-01 stsp status != GOT_STATUS_MODIFY &&
2935 234035bc 2019-06-01 stsp status != GOT_STATUS_CONFLICT &&
2936 234035bc 2019-06-01 stsp status != GOT_STATUS_ADD) {
2937 1ee397ad 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg,
2938 1ee397ad 2019-07-12 stsp status, path2);
2939 234035bc 2019-06-01 stsp goto done;
2940 234035bc 2019-06-01 stsp }
2941 dfe9fba0 2020-07-23 stsp if (S_ISLNK(mode2) && S_ISLNK(sb.st_mode)) {
2942 36bf999c 2020-07-23 stsp char *link_target2;
2943 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(&link_target2,
2944 36bf999c 2020-07-23 stsp blob2);
2945 36bf999c 2020-07-23 stsp if (err)
2946 36bf999c 2020-07-23 stsp goto done;
2947 526a746f 2020-07-23 stsp err = merge_symlink(a->worktree, NULL,
2948 dfe9fba0 2020-07-23 stsp ondisk_path, path2, a->label_orig,
2949 36bf999c 2020-07-23 stsp link_target2, a->commit_id2, repo,
2950 dfe9fba0 2020-07-23 stsp a->progress_cb, a->progress_arg);
2951 36bf999c 2020-07-23 stsp free(link_target2);
2952 dfe9fba0 2020-07-23 stsp } else if (S_ISREG(sb.st_mode)) {
2953 526a746f 2020-07-23 stsp err = merge_blob(&local_changes_subsumed,
2954 526a746f 2020-07-23 stsp a->worktree, NULL, ondisk_path, path2,
2955 526a746f 2020-07-23 stsp sb.st_mode, a->label_orig, blob2,
2956 526a746f 2020-07-23 stsp a->commit_id2, repo, a->progress_cb,
2957 526a746f 2020-07-23 stsp a->progress_arg);
2958 dfe9fba0 2020-07-23 stsp } else {
2959 dfe9fba0 2020-07-23 stsp err = got_error_path(ondisk_path,
2960 dfe9fba0 2020-07-23 stsp GOT_ERR_FILE_OBSTRUCTED);
2961 526a746f 2020-07-23 stsp }
2962 dfe9fba0 2020-07-23 stsp if (err)
2963 dfe9fba0 2020-07-23 stsp goto done;
2964 234035bc 2019-06-01 stsp if (status == GOT_STATUS_DELETE) {
2965 054041d0 2020-06-24 stsp err = got_fileindex_entry_update(ie,
2966 437adc9d 2020-12-10 yzhong a->worktree->root_fd, path2, blob2->id.sha1,
2967 054041d0 2020-06-24 stsp a->worktree->base_commit_id->sha1, 0);
2968 234035bc 2019-06-01 stsp if (err)
2969 234035bc 2019-06-01 stsp goto done;
2970 234035bc 2019-06-01 stsp }
2971 234035bc 2019-06-01 stsp } else {
2972 2e1fa222 2020-07-23 stsp int is_bad_symlink = 0;
2973 234035bc 2019-06-01 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
2974 2e1fa222 2020-07-23 stsp if (S_ISLNK(mode2)) {
2975 2e1fa222 2020-07-23 stsp err = install_symlink(&is_bad_symlink,
2976 2e1fa222 2020-07-23 stsp a->worktree, ondisk_path, path2, blob2, 0,
2977 c90c8ce3 2020-07-23 stsp 0, 1, repo, a->progress_cb, a->progress_arg);
2978 2e1fa222 2020-07-23 stsp } else {
2979 2e1fa222 2020-07-23 stsp err = install_blob(a->worktree, ondisk_path, path2,
2980 3b9f0f87 2020-07-23 stsp mode2, sb.st_mode, blob2, 0, 0, 0, 1, repo,
2981 2e1fa222 2020-07-23 stsp a->progress_cb, a->progress_arg);
2982 2e1fa222 2020-07-23 stsp }
2983 234035bc 2019-06-01 stsp if (err)
2984 234035bc 2019-06-01 stsp goto done;
2985 3969253a 2020-03-07 stsp err = got_fileindex_entry_alloc(&ie, path2);
2986 234035bc 2019-06-01 stsp if (err)
2987 234035bc 2019-06-01 stsp goto done;
2988 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie,
2989 437adc9d 2020-12-10 yzhong a->worktree->root_fd, path2, NULL, NULL, 1);
2990 3969253a 2020-03-07 stsp if (err) {
2991 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
2992 3969253a 2020-03-07 stsp goto done;
2993 3969253a 2020-03-07 stsp }
2994 2b92fad7 2019-06-02 stsp err = got_fileindex_entry_add(a->fileindex, ie);
2995 2b92fad7 2019-06-02 stsp if (err) {
2996 2b92fad7 2019-06-02 stsp got_fileindex_entry_free(ie);
2997 2b92fad7 2019-06-02 stsp goto done;
2998 2b92fad7 2019-06-02 stsp }
2999 2e1fa222 2020-07-23 stsp if (is_bad_symlink) {
3000 6131ab45 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
3001 2e1fa222 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
3002 2e1fa222 2020-07-23 stsp }
3003 234035bc 2019-06-01 stsp }
3004 234035bc 2019-06-01 stsp }
3005 234035bc 2019-06-01 stsp done:
3006 234035bc 2019-06-01 stsp free(ondisk_path);
3007 234035bc 2019-06-01 stsp return err;
3008 234035bc 2019-06-01 stsp }
3009 234035bc 2019-06-01 stsp
3010 234035bc 2019-06-01 stsp struct check_merge_ok_arg {
3011 234035bc 2019-06-01 stsp struct got_worktree *worktree;
3012 234035bc 2019-06-01 stsp struct got_repository *repo;
3013 234035bc 2019-06-01 stsp };
3014 234035bc 2019-06-01 stsp
3015 234035bc 2019-06-01 stsp static const struct got_error *
3016 234035bc 2019-06-01 stsp check_merge_ok(void *arg, struct got_fileindex_entry *ie)
3017 234035bc 2019-06-01 stsp {
3018 234035bc 2019-06-01 stsp const struct got_error *err = NULL;
3019 234035bc 2019-06-01 stsp struct check_merge_ok_arg *a = arg;
3020 234035bc 2019-06-01 stsp unsigned char status;
3021 234035bc 2019-06-01 stsp struct stat sb;
3022 234035bc 2019-06-01 stsp char *ondisk_path;
3023 234035bc 2019-06-01 stsp
3024 234035bc 2019-06-01 stsp /* Reject merges into a work tree with mixed base commits. */
3025 234035bc 2019-06-01 stsp if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
3026 234035bc 2019-06-01 stsp SHA1_DIGEST_LENGTH))
3027 234035bc 2019-06-01 stsp return got_error(GOT_ERR_MIXED_COMMITS);
3028 234035bc 2019-06-01 stsp
3029 234035bc 2019-06-01 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
3030 234035bc 2019-06-01 stsp == -1)
3031 234035bc 2019-06-01 stsp return got_error_from_errno("asprintf");
3032 234035bc 2019-06-01 stsp
3033 234035bc 2019-06-01 stsp /* Reject merges into a work tree with conflicted files. */
3034 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
3035 234035bc 2019-06-01 stsp if (err)
3036 234035bc 2019-06-01 stsp return err;
3037 234035bc 2019-06-01 stsp if (status == GOT_STATUS_CONFLICT)
3038 234035bc 2019-06-01 stsp return got_error(GOT_ERR_CONFLICTS);
3039 234035bc 2019-06-01 stsp
3040 234035bc 2019-06-01 stsp return NULL;
3041 234035bc 2019-06-01 stsp }
3042 234035bc 2019-06-01 stsp
3043 818c7501 2019-07-11 stsp static const struct got_error *
3044 818c7501 2019-07-11 stsp merge_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
3045 818c7501 2019-07-11 stsp const char *fileindex_path, struct got_object_id *commit_id1,
3046 818c7501 2019-07-11 stsp struct got_object_id *commit_id2, struct got_repository *repo,
3047 818c7501 2019-07-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
3048 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
3049 234035bc 2019-06-01 stsp {
3050 818c7501 2019-07-11 stsp const struct got_error *err = NULL, *sync_err;
3051 234035bc 2019-06-01 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
3052 234035bc 2019-06-01 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3053 234035bc 2019-06-01 stsp struct merge_file_cb_arg arg;
3054 f69721c3 2019-10-21 stsp char *label_orig = NULL;
3055 234035bc 2019-06-01 stsp
3056 03415a1a 2019-06-02 stsp if (commit_id1) {
3057 03415a1a 2019-06-02 stsp err = got_object_id_by_path(&tree_id1, repo, commit_id1,
3058 03415a1a 2019-06-02 stsp worktree->path_prefix);
3059 69d57f3d 2020-07-31 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
3060 03415a1a 2019-06-02 stsp goto done;
3061 69d57f3d 2020-07-31 stsp }
3062 69d57f3d 2020-07-31 stsp if (tree_id1) {
3063 69d57f3d 2020-07-31 stsp char *id_str;
3064 03415a1a 2019-06-02 stsp
3065 03415a1a 2019-06-02 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
3066 03415a1a 2019-06-02 stsp if (err)
3067 03415a1a 2019-06-02 stsp goto done;
3068 f69721c3 2019-10-21 stsp
3069 f69721c3 2019-10-21 stsp err = got_object_id_str(&id_str, commit_id1);
3070 f69721c3 2019-10-21 stsp if (err)
3071 f69721c3 2019-10-21 stsp goto done;
3072 f69721c3 2019-10-21 stsp
3073 f69721c3 2019-10-21 stsp if (asprintf(&label_orig, "%s: commit %s",
3074 f69721c3 2019-10-21 stsp GOT_MERGE_LABEL_BASE, id_str) == -1) {
3075 f69721c3 2019-10-21 stsp err = got_error_from_errno("asprintf");
3076 f69721c3 2019-10-21 stsp free(id_str);
3077 f69721c3 2019-10-21 stsp goto done;
3078 f69721c3 2019-10-21 stsp }
3079 f69721c3 2019-10-21 stsp free(id_str);
3080 03415a1a 2019-06-02 stsp }
3081 234035bc 2019-06-01 stsp
3082 234035bc 2019-06-01 stsp err = got_object_id_by_path(&tree_id2, repo, commit_id2,
3083 234035bc 2019-06-01 stsp worktree->path_prefix);
3084 234035bc 2019-06-01 stsp if (err)
3085 234035bc 2019-06-01 stsp goto done;
3086 234035bc 2019-06-01 stsp
3087 234035bc 2019-06-01 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
3088 234035bc 2019-06-01 stsp if (err)
3089 234035bc 2019-06-01 stsp goto done;
3090 234035bc 2019-06-01 stsp
3091 234035bc 2019-06-01 stsp arg.worktree = worktree;
3092 234035bc 2019-06-01 stsp arg.fileindex = fileindex;
3093 234035bc 2019-06-01 stsp arg.progress_cb = progress_cb;
3094 234035bc 2019-06-01 stsp arg.progress_arg = progress_arg;
3095 234035bc 2019-06-01 stsp arg.cancel_cb = cancel_cb;
3096 234035bc 2019-06-01 stsp arg.cancel_arg = cancel_arg;
3097 f69721c3 2019-10-21 stsp arg.label_orig = label_orig;
3098 818c7501 2019-07-11 stsp arg.commit_id2 = commit_id2;
3099 31b4484f 2019-07-27 stsp err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg, 1);
3100 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
3101 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
3102 af12c6b9 2019-06-04 stsp err = sync_err;
3103 234035bc 2019-06-01 stsp done:
3104 234035bc 2019-06-01 stsp if (tree1)
3105 234035bc 2019-06-01 stsp got_object_tree_close(tree1);
3106 234035bc 2019-06-01 stsp if (tree2)
3107 234035bc 2019-06-01 stsp got_object_tree_close(tree2);
3108 f69721c3 2019-10-21 stsp free(label_orig);
3109 818c7501 2019-07-11 stsp return err;
3110 818c7501 2019-07-11 stsp }
3111 234035bc 2019-06-01 stsp
3112 818c7501 2019-07-11 stsp const struct got_error *
3113 818c7501 2019-07-11 stsp got_worktree_merge_files(struct got_worktree *worktree,
3114 818c7501 2019-07-11 stsp struct got_object_id *commit_id1, struct got_object_id *commit_id2,
3115 818c7501 2019-07-11 stsp struct got_repository *repo, got_worktree_checkout_cb progress_cb,
3116 e6209546 2019-08-22 stsp void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
3117 818c7501 2019-07-11 stsp {
3118 818c7501 2019-07-11 stsp const struct got_error *err, *unlockerr;
3119 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
3120 818c7501 2019-07-11 stsp struct got_fileindex *fileindex = NULL;
3121 818c7501 2019-07-11 stsp struct check_merge_ok_arg mok_arg;
3122 818c7501 2019-07-11 stsp
3123 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
3124 818c7501 2019-07-11 stsp if (err)
3125 818c7501 2019-07-11 stsp return err;
3126 818c7501 2019-07-11 stsp
3127 818c7501 2019-07-11 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3128 818c7501 2019-07-11 stsp if (err)
3129 818c7501 2019-07-11 stsp goto done;
3130 818c7501 2019-07-11 stsp
3131 818c7501 2019-07-11 stsp mok_arg.worktree = worktree;
3132 818c7501 2019-07-11 stsp mok_arg.repo = repo;
3133 818c7501 2019-07-11 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_merge_ok,
3134 818c7501 2019-07-11 stsp &mok_arg);
3135 818c7501 2019-07-11 stsp if (err)
3136 818c7501 2019-07-11 stsp goto done;
3137 818c7501 2019-07-11 stsp
3138 818c7501 2019-07-11 stsp err = merge_files(worktree, fileindex, fileindex_path, commit_id1,
3139 818c7501 2019-07-11 stsp commit_id2, repo, progress_cb, progress_arg, cancel_cb, cancel_arg);
3140 818c7501 2019-07-11 stsp done:
3141 818c7501 2019-07-11 stsp if (fileindex)
3142 818c7501 2019-07-11 stsp got_fileindex_free(fileindex);
3143 818c7501 2019-07-11 stsp free(fileindex_path);
3144 234035bc 2019-06-01 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
3145 234035bc 2019-06-01 stsp if (unlockerr && err == NULL)
3146 234035bc 2019-06-01 stsp err = unlockerr;
3147 234035bc 2019-06-01 stsp return err;
3148 234035bc 2019-06-01 stsp }
3149 234035bc 2019-06-01 stsp
3150 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg {
3151 f8d1f275 2019-02-04 stsp struct got_fileindex *fileindex;
3152 f8d1f275 2019-02-04 stsp struct got_worktree *worktree;
3153 927df6b7 2019-02-10 stsp const char *status_path;
3154 927df6b7 2019-02-10 stsp size_t status_path_len;
3155 f8d1f275 2019-02-04 stsp struct got_repository *repo;
3156 f8d1f275 2019-02-04 stsp got_worktree_status_cb status_cb;
3157 f8d1f275 2019-02-04 stsp void *status_arg;
3158 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb;
3159 f8d1f275 2019-02-04 stsp void *cancel_arg;
3160 6841da00 2019-08-08 stsp /* A pathlist containing per-directory pathlists of ignore patterns. */
3161 6841da00 2019-08-08 stsp struct got_pathlist_head ignores;
3162 f2a9dc41 2019-12-13 tracey int report_unchanged;
3163 3143d852 2020-06-25 stsp int no_ignores;
3164 f8d1f275 2019-02-04 stsp };
3165 88d0e355 2019-08-03 stsp
3166 f8d1f275 2019-02-04 stsp static const struct got_error *
3167 927df6b7 2019-02-10 stsp report_file_status(struct got_fileindex_entry *ie, const char *abspath,
3168 7f91a133 2019-12-13 stsp int dirfd, const char *de_name,
3169 927df6b7 2019-02-10 stsp got_worktree_status_cb status_cb, void *status_arg,
3170 f2a9dc41 2019-12-13 tracey struct got_repository *repo, int report_unchanged)
3171 927df6b7 2019-02-10 stsp {
3172 927df6b7 2019-02-10 stsp const struct got_error *err = NULL;
3173 927df6b7 2019-02-10 stsp unsigned char status = GOT_STATUS_NO_CHANGE;
3174 c363b2c1 2019-08-03 stsp unsigned char staged_status = get_staged_status(ie);
3175 927df6b7 2019-02-10 stsp struct stat sb;
3176 537ac44b 2019-08-03 stsp struct got_object_id blob_id, commit_id, staged_blob_id;
3177 98eaaa12 2019-08-03 stsp struct got_object_id *blob_idp = NULL, *commit_idp = NULL;
3178 98eaaa12 2019-08-03 stsp struct got_object_id *staged_blob_idp = NULL;
3179 927df6b7 2019-02-10 stsp
3180 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, abspath, dirfd, de_name, repo);
3181 98eaaa12 2019-08-03 stsp if (err)
3182 98eaaa12 2019-08-03 stsp return err;
3183 98eaaa12 2019-08-03 stsp
3184 98eaaa12 2019-08-03 stsp if (status == GOT_STATUS_NO_CHANGE &&
3185 f2a9dc41 2019-12-13 tracey staged_status == GOT_STATUS_NO_CHANGE && !report_unchanged)
3186 98eaaa12 2019-08-03 stsp return NULL;
3187 98eaaa12 2019-08-03 stsp
3188 98eaaa12 2019-08-03 stsp if (got_fileindex_entry_has_blob(ie)) {
3189 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3190 98eaaa12 2019-08-03 stsp blob_idp = &blob_id;
3191 98eaaa12 2019-08-03 stsp }
3192 98eaaa12 2019-08-03 stsp if (got_fileindex_entry_has_commit(ie)) {
3193 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3194 98eaaa12 2019-08-03 stsp commit_idp = &commit_id;
3195 927df6b7 2019-02-10 stsp }
3196 98eaaa12 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
3197 98eaaa12 2019-08-03 stsp staged_status == GOT_STATUS_MODIFY) {
3198 98eaaa12 2019-08-03 stsp memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
3199 98eaaa12 2019-08-03 stsp SHA1_DIGEST_LENGTH);
3200 98eaaa12 2019-08-03 stsp staged_blob_idp = &staged_blob_id;
3201 98eaaa12 2019-08-03 stsp }
3202 98eaaa12 2019-08-03 stsp
3203 98eaaa12 2019-08-03 stsp return (*status_cb)(status_arg, status, staged_status,
3204 12463d8b 2019-12-13 stsp ie->path, blob_idp, staged_blob_idp, commit_idp, dirfd, de_name);
3205 927df6b7 2019-02-10 stsp }
3206 927df6b7 2019-02-10 stsp
3207 927df6b7 2019-02-10 stsp static const struct got_error *
3208 f8d1f275 2019-02-04 stsp status_old_new(void *arg, struct got_fileindex_entry *ie,
3209 7f91a133 2019-12-13 stsp struct dirent *de, const char *parent_path, int dirfd)
3210 f8d1f275 2019-02-04 stsp {
3211 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
3212 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
3213 f8d1f275 2019-02-04 stsp char *abspath;
3214 f8d1f275 2019-02-04 stsp
3215 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3216 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
3217 0584f854 2019-04-06 stsp
3218 d572f586 2019-08-02 stsp if (got_path_cmp(parent_path, a->status_path,
3219 d572f586 2019-08-02 stsp strlen(parent_path), a->status_path_len) != 0 &&
3220 927df6b7 2019-02-10 stsp !got_path_is_child(parent_path, a->status_path, a->status_path_len))
3221 927df6b7 2019-02-10 stsp return NULL;
3222 927df6b7 2019-02-10 stsp
3223 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
3224 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
3225 f8d1f275 2019-02-04 stsp parent_path, de->d_name) == -1)
3226 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3227 f8d1f275 2019-02-04 stsp } else {
3228 f8d1f275 2019-02-04 stsp if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
3229 f8d1f275 2019-02-04 stsp de->d_name) == -1)
3230 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3231 f8d1f275 2019-02-04 stsp }
3232 f8d1f275 2019-02-04 stsp
3233 7f91a133 2019-12-13 stsp err = report_file_status(ie, abspath, dirfd, de->d_name,
3234 7f91a133 2019-12-13 stsp a->status_cb, a->status_arg, a->repo, a->report_unchanged);
3235 f8d1f275 2019-02-04 stsp free(abspath);
3236 9d31a1d8 2018-03-11 stsp return err;
3237 9d31a1d8 2018-03-11 stsp }
3238 f8d1f275 2019-02-04 stsp
3239 f8d1f275 2019-02-04 stsp static const struct got_error *
3240 f8d1f275 2019-02-04 stsp status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
3241 f8d1f275 2019-02-04 stsp {
3242 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
3243 016a88dd 2019-05-13 stsp struct got_object_id blob_id, commit_id;
3244 2ec1f75b 2019-03-26 stsp unsigned char status;
3245 927df6b7 2019-02-10 stsp
3246 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3247 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
3248 0584f854 2019-04-06 stsp
3249 c577a9ce 2019-07-27 stsp if (!got_path_is_child(ie->path, a->status_path, a->status_path_len))
3250 927df6b7 2019-02-10 stsp return NULL;
3251 927df6b7 2019-02-10 stsp
3252 016a88dd 2019-05-13 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3253 016a88dd 2019-05-13 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3254 2ec1f75b 2019-03-26 stsp if (got_fileindex_entry_has_file_on_disk(ie))
3255 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_MISSING;
3256 2ec1f75b 2019-03-26 stsp else
3257 2ec1f75b 2019-03-26 stsp status = GOT_STATUS_DELETE;
3258 88d0e355 2019-08-03 stsp return (*a->status_cb)(a->status_arg, status, get_staged_status(ie),
3259 12463d8b 2019-12-13 stsp ie->path, &blob_id, NULL, &commit_id, -1, NULL);
3260 6841da00 2019-08-08 stsp }
3261 6841da00 2019-08-08 stsp
3262 6841da00 2019-08-08 stsp void
3263 6841da00 2019-08-08 stsp free_ignorelist(struct got_pathlist_head *ignorelist)
3264 6841da00 2019-08-08 stsp {
3265 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe;
3266 6841da00 2019-08-08 stsp
3267 6841da00 2019-08-08 stsp TAILQ_FOREACH(pe, ignorelist, entry)
3268 6841da00 2019-08-08 stsp free((char *)pe->path);
3269 6841da00 2019-08-08 stsp got_pathlist_free(ignorelist);
3270 6841da00 2019-08-08 stsp }
3271 6841da00 2019-08-08 stsp
3272 6841da00 2019-08-08 stsp void
3273 6841da00 2019-08-08 stsp free_ignores(struct got_pathlist_head *ignores)
3274 6841da00 2019-08-08 stsp {
3275 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe;
3276 6841da00 2019-08-08 stsp
3277 6841da00 2019-08-08 stsp TAILQ_FOREACH(pe, ignores, entry) {
3278 6841da00 2019-08-08 stsp struct got_pathlist_head *ignorelist = pe->data;
3279 6841da00 2019-08-08 stsp free_ignorelist(ignorelist);
3280 6841da00 2019-08-08 stsp free((char *)pe->path);
3281 6841da00 2019-08-08 stsp }
3282 6841da00 2019-08-08 stsp got_pathlist_free(ignores);
3283 6841da00 2019-08-08 stsp }
3284 6841da00 2019-08-08 stsp
3285 6841da00 2019-08-08 stsp static const struct got_error *
3286 6841da00 2019-08-08 stsp read_ignores(struct got_pathlist_head *ignores, const char *path, FILE *f)
3287 6841da00 2019-08-08 stsp {
3288 6841da00 2019-08-08 stsp const struct got_error *err = NULL;
3289 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe = NULL;
3290 6841da00 2019-08-08 stsp struct got_pathlist_head *ignorelist;
3291 a0de39f3 2019-08-09 stsp char *line = NULL, *pattern, *dirpath = NULL;
3292 6841da00 2019-08-08 stsp size_t linesize = 0;
3293 6841da00 2019-08-08 stsp ssize_t linelen;
3294 6841da00 2019-08-08 stsp
3295 6841da00 2019-08-08 stsp ignorelist = calloc(1, sizeof(*ignorelist));
3296 6841da00 2019-08-08 stsp if (ignorelist == NULL)
3297 6841da00 2019-08-08 stsp return got_error_from_errno("calloc");
3298 6841da00 2019-08-08 stsp TAILQ_INIT(ignorelist);
3299 6841da00 2019-08-08 stsp
3300 6841da00 2019-08-08 stsp while ((linelen = getline(&line, &linesize, f)) != -1) {
3301 6841da00 2019-08-08 stsp if (linelen > 0 && line[linelen - 1] == '\n')
3302 6841da00 2019-08-08 stsp line[linelen - 1] = '\0';
3303 bd8de430 2019-10-04 stsp
3304 bd8de430 2019-10-04 stsp /* Git's ignores may contain comments. */
3305 bd8de430 2019-10-04 stsp if (line[0] == '#')
3306 bd8de430 2019-10-04 stsp continue;
3307 bd8de430 2019-10-04 stsp
3308 bd8de430 2019-10-04 stsp /* Git's negated patterns are not (yet?) supported. */
3309 bd8de430 2019-10-04 stsp if (line[0] == '!')
3310 bd8de430 2019-10-04 stsp continue;
3311 bd8de430 2019-10-04 stsp
3312 6841da00 2019-08-08 stsp if (asprintf(&pattern, "%s%s%s", path, path[0] ? "/" : "",
3313 6841da00 2019-08-08 stsp line) == -1) {
3314 6841da00 2019-08-08 stsp err = got_error_from_errno("asprintf");
3315 6841da00 2019-08-08 stsp goto done;
3316 6841da00 2019-08-08 stsp }
3317 6841da00 2019-08-08 stsp err = got_pathlist_insert(NULL, ignorelist, pattern, NULL);
3318 6841da00 2019-08-08 stsp if (err)
3319 6841da00 2019-08-08 stsp goto done;
3320 6841da00 2019-08-08 stsp }
3321 6841da00 2019-08-08 stsp if (ferror(f)) {
3322 6841da00 2019-08-08 stsp err = got_error_from_errno("getline");
3323 6841da00 2019-08-08 stsp goto done;
3324 6841da00 2019-08-08 stsp }
3325 6841da00 2019-08-08 stsp
3326 6841da00 2019-08-08 stsp dirpath = strdup(path);
3327 6841da00 2019-08-08 stsp if (dirpath == NULL) {
3328 6841da00 2019-08-08 stsp err = got_error_from_errno("strdup");
3329 6841da00 2019-08-08 stsp goto done;
3330 6841da00 2019-08-08 stsp }
3331 6841da00 2019-08-08 stsp err = got_pathlist_insert(&pe, ignores, dirpath, ignorelist);
3332 6841da00 2019-08-08 stsp done:
3333 6841da00 2019-08-08 stsp free(line);
3334 6841da00 2019-08-08 stsp if (err || pe == NULL) {
3335 6841da00 2019-08-08 stsp free(dirpath);
3336 6841da00 2019-08-08 stsp free_ignorelist(ignorelist);
3337 6841da00 2019-08-08 stsp }
3338 6841da00 2019-08-08 stsp return err;
3339 6841da00 2019-08-08 stsp }
3340 6841da00 2019-08-08 stsp
3341 6841da00 2019-08-08 stsp int
3342 6841da00 2019-08-08 stsp match_ignores(struct got_pathlist_head *ignores, const char *path)
3343 6841da00 2019-08-08 stsp {
3344 6841da00 2019-08-08 stsp struct got_pathlist_entry *pe;
3345 bd8de430 2019-10-04 stsp
3346 bd8de430 2019-10-04 stsp /* Handle patterns which match in all directories. */
3347 bd8de430 2019-10-04 stsp TAILQ_FOREACH(pe, ignores, entry) {
3348 bd8de430 2019-10-04 stsp struct got_pathlist_head *ignorelist = pe->data;
3349 bd8de430 2019-10-04 stsp struct got_pathlist_entry *pi;
3350 bd8de430 2019-10-04 stsp
3351 bd8de430 2019-10-04 stsp TAILQ_FOREACH(pi, ignorelist, entry) {
3352 bd8de430 2019-10-04 stsp const char *p, *pattern = pi->path;
3353 6841da00 2019-08-08 stsp
3354 bd8de430 2019-10-04 stsp if (strncmp(pattern, "**/", 3) != 0)
3355 bd8de430 2019-10-04 stsp continue;
3356 bd8de430 2019-10-04 stsp pattern += 3;
3357 bd8de430 2019-10-04 stsp p = path;
3358 bd8de430 2019-10-04 stsp while (*p) {
3359 bd8de430 2019-10-04 stsp if (fnmatch(pattern, p,
3360 bd8de430 2019-10-04 stsp FNM_PATHNAME | FNM_LEADING_DIR)) {
3361 bd8de430 2019-10-04 stsp /* Retry in next directory. */
3362 bd8de430 2019-10-04 stsp while (*p && *p != '/')
3363 bd8de430 2019-10-04 stsp p++;
3364 bd8de430 2019-10-04 stsp while (*p == '/')
3365 bd8de430 2019-10-04 stsp p++;
3366 bd8de430 2019-10-04 stsp continue;
3367 bd8de430 2019-10-04 stsp }
3368 bd8de430 2019-10-04 stsp return 1;
3369 bd8de430 2019-10-04 stsp }
3370 bd8de430 2019-10-04 stsp }
3371 bd8de430 2019-10-04 stsp }
3372 bd8de430 2019-10-04 stsp
3373 6841da00 2019-08-08 stsp /*
3374 6841da00 2019-08-08 stsp * The ignores pathlist contains ignore lists from children before
3375 6841da00 2019-08-08 stsp * parents, so we can find the most specific ignorelist by walking
3376 6841da00 2019-08-08 stsp * ignores backwards.
3377 6841da00 2019-08-08 stsp */
3378 6841da00 2019-08-08 stsp pe = TAILQ_LAST(ignores, got_pathlist_head);
3379 6841da00 2019-08-08 stsp while (pe) {
3380 6841da00 2019-08-08 stsp if (got_path_is_child(path, pe->path, pe->path_len)) {
3381 6841da00 2019-08-08 stsp struct got_pathlist_head *ignorelist = pe->data;
3382 6841da00 2019-08-08 stsp struct got_pathlist_entry *pi;
3383 6841da00 2019-08-08 stsp TAILQ_FOREACH(pi, ignorelist, entry) {
3384 bd8de430 2019-10-04 stsp const char *pattern = pi->path;
3385 bd8de430 2019-10-04 stsp int flags = FNM_LEADING_DIR;
3386 bd8de430 2019-10-04 stsp if (strstr(pattern, "/**/") == NULL)
3387 bd8de430 2019-10-04 stsp flags |= FNM_PATHNAME;
3388 bd8de430 2019-10-04 stsp if (fnmatch(pattern, path, flags))
3389 6841da00 2019-08-08 stsp continue;
3390 6841da00 2019-08-08 stsp return 1;
3391 6841da00 2019-08-08 stsp }
3392 6841da00 2019-08-08 stsp }
3393 6841da00 2019-08-08 stsp pe = TAILQ_PREV(pe, got_pathlist_head, entry);
3394 6841da00 2019-08-08 stsp }
3395 6841da00 2019-08-08 stsp
3396 6841da00 2019-08-08 stsp return 0;
3397 6841da00 2019-08-08 stsp }
3398 6841da00 2019-08-08 stsp
3399 6841da00 2019-08-08 stsp static const struct got_error *
3400 b80270a7 2019-08-08 stsp add_ignores(struct got_pathlist_head *ignores, const char *root_path,
3401 886cec17 2019-12-15 stsp const char *path, int dirfd, const char *ignores_filename)
3402 6841da00 2019-08-08 stsp {
3403 6841da00 2019-08-08 stsp const struct got_error *err = NULL;
3404 6841da00 2019-08-08 stsp char *ignorespath;
3405 886cec17 2019-12-15 stsp int fd = -1;
3406 6841da00 2019-08-08 stsp FILE *ignoresfile = NULL;
3407 6841da00 2019-08-08 stsp
3408 bd8de430 2019-10-04 stsp if (asprintf(&ignorespath, "%s/%s%s%s", root_path, path,
3409 bd8de430 2019-10-04 stsp path[0] ? "/" : "", ignores_filename) == -1)
3410 6841da00 2019-08-08 stsp return got_error_from_errno("asprintf");
3411 6841da00 2019-08-08 stsp
3412 886cec17 2019-12-15 stsp if (dirfd != -1) {
3413 886cec17 2019-12-15 stsp fd = openat(dirfd, ignores_filename, O_RDONLY | O_NOFOLLOW);
3414 886cec17 2019-12-15 stsp if (fd == -1) {
3415 886cec17 2019-12-15 stsp if (errno != ENOENT && errno != EACCES)
3416 886cec17 2019-12-15 stsp err = got_error_from_errno2("openat",
3417 886cec17 2019-12-15 stsp ignorespath);
3418 886cec17 2019-12-15 stsp } else {
3419 886cec17 2019-12-15 stsp ignoresfile = fdopen(fd, "r");
3420 886cec17 2019-12-15 stsp if (ignoresfile == NULL)
3421 886cec17 2019-12-15 stsp err = got_error_from_errno2("fdopen",
3422 886cec17 2019-12-15 stsp ignorespath);
3423 886cec17 2019-12-15 stsp else {
3424 886cec17 2019-12-15 stsp fd = -1;
3425 886cec17 2019-12-15 stsp err = read_ignores(ignores, path, ignoresfile);
3426 886cec17 2019-12-15 stsp }
3427 886cec17 2019-12-15 stsp }
3428 886cec17 2019-12-15 stsp } else {
3429 886cec17 2019-12-15 stsp ignoresfile = fopen(ignorespath, "r");
3430 886cec17 2019-12-15 stsp if (ignoresfile == NULL) {
3431 886cec17 2019-12-15 stsp if (errno != ENOENT && errno != EACCES)
3432 886cec17 2019-12-15 stsp err = got_error_from_errno2("fopen",
3433 886cec17 2019-12-15 stsp ignorespath);
3434 886cec17 2019-12-15 stsp } else
3435 886cec17 2019-12-15 stsp err = read_ignores(ignores, path, ignoresfile);
3436 886cec17 2019-12-15 stsp }
3437 6841da00 2019-08-08 stsp
3438 6841da00 2019-08-08 stsp if (ignoresfile && fclose(ignoresfile) == EOF && err == NULL)
3439 4e68cba3 2019-11-23 stsp err = got_error_from_errno2("fclose", path);
3440 886cec17 2019-12-15 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
3441 886cec17 2019-12-15 stsp err = got_error_from_errno2("close", path);
3442 6841da00 2019-08-08 stsp free(ignorespath);
3443 6841da00 2019-08-08 stsp return err;
3444 f8d1f275 2019-02-04 stsp }
3445 f8d1f275 2019-02-04 stsp
3446 f8d1f275 2019-02-04 stsp static const struct got_error *
3447 7f91a133 2019-12-13 stsp status_new(void *arg, struct dirent *de, const char *parent_path, int dirfd)
3448 f8d1f275 2019-02-04 stsp {
3449 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
3450 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg *a = arg;
3451 f8d1f275 2019-02-04 stsp char *path = NULL;
3452 f8d1f275 2019-02-04 stsp
3453 0584f854 2019-04-06 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3454 0584f854 2019-04-06 stsp return got_error(GOT_ERR_CANCELLED);
3455 0584f854 2019-04-06 stsp
3456 f8d1f275 2019-02-04 stsp if (parent_path[0]) {
3457 f8d1f275 2019-02-04 stsp if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
3458 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3459 f8d1f275 2019-02-04 stsp } else {
3460 f8d1f275 2019-02-04 stsp path = de->d_name;
3461 f8d1f275 2019-02-04 stsp }
3462 f8d1f275 2019-02-04 stsp
3463 3143d852 2020-06-25 stsp if (de->d_type != DT_DIR &&
3464 3143d852 2020-06-25 stsp got_path_is_child(path, a->status_path, a->status_path_len)
3465 6841da00 2019-08-08 stsp && !match_ignores(&a->ignores, path))
3466 c577a9ce 2019-07-27 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED,
3467 12463d8b 2019-12-13 stsp GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3468 f8d1f275 2019-02-04 stsp if (parent_path[0])
3469 f8d1f275 2019-02-04 stsp free(path);
3470 b72f483a 2019-02-05 stsp return err;
3471 f8d1f275 2019-02-04 stsp }
3472 f8d1f275 2019-02-04 stsp
3473 347d1d3e 2019-07-12 stsp static const struct got_error *
3474 3143d852 2020-06-25 stsp status_traverse(void *arg, const char *path, int dirfd)
3475 3143d852 2020-06-25 stsp {
3476 3143d852 2020-06-25 stsp const struct got_error *err = NULL;
3477 3143d852 2020-06-25 stsp struct diff_dir_cb_arg *a = arg;
3478 3143d852 2020-06-25 stsp
3479 3143d852 2020-06-25 stsp if (a->no_ignores)
3480 3143d852 2020-06-25 stsp return NULL;
3481 3143d852 2020-06-25 stsp
3482 3143d852 2020-06-25 stsp err = add_ignores(&a->ignores, a->worktree->root_path,
3483 3143d852 2020-06-25 stsp path, dirfd, ".cvsignore");
3484 3143d852 2020-06-25 stsp if (err)
3485 3143d852 2020-06-25 stsp return err;
3486 3143d852 2020-06-25 stsp
3487 3143d852 2020-06-25 stsp err = add_ignores(&a->ignores, a->worktree->root_path, path,
3488 3143d852 2020-06-25 stsp dirfd, ".gitignore");
3489 3143d852 2020-06-25 stsp
3490 3143d852 2020-06-25 stsp return err;
3491 3143d852 2020-06-25 stsp }
3492 3143d852 2020-06-25 stsp
3493 3143d852 2020-06-25 stsp static const struct got_error *
3494 abb4604f 2019-07-27 stsp report_single_file_status(const char *path, const char *ondisk_path,
3495 abb4604f 2019-07-27 stsp struct got_fileindex *fileindex, got_worktree_status_cb status_cb,
3496 f2a9dc41 2019-12-13 tracey void *status_arg, struct got_repository *repo, int report_unchanged)
3497 abb4604f 2019-07-27 stsp {
3498 abb4604f 2019-07-27 stsp struct got_fileindex_entry *ie;
3499 abb4604f 2019-07-27 stsp struct stat sb;
3500 abb4604f 2019-07-27 stsp
3501 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(fileindex, path, strlen(path));
3502 abb4604f 2019-07-27 stsp if (ie)
3503 7f91a133 2019-12-13 stsp return report_file_status(ie, ondisk_path, -1, NULL,
3504 7f91a133 2019-12-13 stsp status_cb, status_arg, repo, report_unchanged);
3505 abb4604f 2019-07-27 stsp
3506 abb4604f 2019-07-27 stsp if (lstat(ondisk_path, &sb) == -1) {
3507 abb4604f 2019-07-27 stsp if (errno != ENOENT)
3508 abb4604f 2019-07-27 stsp return got_error_from_errno2("lstat", ondisk_path);
3509 2a06fe5f 2019-08-24 stsp return (*status_cb)(status_arg, GOT_STATUS_NONEXISTENT,
3510 12463d8b 2019-12-13 stsp GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3511 abb4604f 2019-07-27 stsp return NULL;
3512 abb4604f 2019-07-27 stsp }
3513 abb4604f 2019-07-27 stsp
3514 00bb5ea0 2020-07-23 stsp if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode))
3515 88d0e355 2019-08-03 stsp return (*status_cb)(status_arg, GOT_STATUS_UNVERSIONED,
3516 12463d8b 2019-12-13 stsp GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3517 abb4604f 2019-07-27 stsp
3518 abb4604f 2019-07-27 stsp return NULL;
3519 3143d852 2020-06-25 stsp }
3520 3143d852 2020-06-25 stsp
3521 3143d852 2020-06-25 stsp static const struct got_error *
3522 3143d852 2020-06-25 stsp add_ignores_from_parent_paths(struct got_pathlist_head *ignores,
3523 3143d852 2020-06-25 stsp const char *root_path, const char *path)
3524 3143d852 2020-06-25 stsp {
3525 3143d852 2020-06-25 stsp const struct got_error *err;
3526 b737c85a 2020-06-26 stsp char *parent_path, *next_parent_path = NULL;
3527 3143d852 2020-06-25 stsp
3528 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, "", -1,
3529 3143d852 2020-06-25 stsp ".cvsignore");
3530 3143d852 2020-06-25 stsp if (err)
3531 3143d852 2020-06-25 stsp return err;
3532 3143d852 2020-06-25 stsp
3533 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, "", -1,
3534 3143d852 2020-06-25 stsp ".gitignore");
3535 3143d852 2020-06-25 stsp if (err)
3536 3143d852 2020-06-25 stsp return err;
3537 3143d852 2020-06-25 stsp
3538 3143d852 2020-06-25 stsp err = got_path_dirname(&parent_path, path);
3539 3143d852 2020-06-25 stsp if (err) {
3540 3143d852 2020-06-25 stsp if (err->code == GOT_ERR_BAD_PATH)
3541 3143d852 2020-06-25 stsp return NULL; /* cannot traverse parent */
3542 3143d852 2020-06-25 stsp return err;
3543 3143d852 2020-06-25 stsp }
3544 3143d852 2020-06-25 stsp for (;;) {
3545 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, parent_path, -1,
3546 3143d852 2020-06-25 stsp ".cvsignore");
3547 3143d852 2020-06-25 stsp if (err)
3548 3143d852 2020-06-25 stsp break;
3549 3143d852 2020-06-25 stsp err = add_ignores(ignores, root_path, parent_path, -1,
3550 3143d852 2020-06-25 stsp ".gitignore");
3551 3143d852 2020-06-25 stsp if (err)
3552 3143d852 2020-06-25 stsp break;
3553 3143d852 2020-06-25 stsp err = got_path_dirname(&next_parent_path, parent_path);
3554 3143d852 2020-06-25 stsp if (err) {
3555 b737c85a 2020-06-26 stsp if (err->code == GOT_ERR_BAD_PATH)
3556 b737c85a 2020-06-26 stsp err = NULL; /* traversed everything */
3557 3143d852 2020-06-25 stsp break;
3558 3143d852 2020-06-25 stsp }
3559 b737c85a 2020-06-26 stsp free(parent_path);
3560 b737c85a 2020-06-26 stsp parent_path = next_parent_path;
3561 b737c85a 2020-06-26 stsp next_parent_path = NULL;
3562 3143d852 2020-06-25 stsp }
3563 3143d852 2020-06-25 stsp
3564 b737c85a 2020-06-26 stsp free(parent_path);
3565 b737c85a 2020-06-26 stsp free(next_parent_path);
3566 3143d852 2020-06-25 stsp return err;
3567 abb4604f 2019-07-27 stsp }
3568 abb4604f 2019-07-27 stsp
3569 abb4604f 2019-07-27 stsp static const struct got_error *
3570 347d1d3e 2019-07-12 stsp worktree_status(struct got_worktree *worktree, const char *path,
3571 347d1d3e 2019-07-12 stsp struct got_fileindex *fileindex, struct got_repository *repo,
3572 347d1d3e 2019-07-12 stsp got_worktree_status_cb status_cb, void *status_arg,
3573 f2a9dc41 2019-12-13 tracey got_cancel_cb cancel_cb, void *cancel_arg, int no_ignores,
3574 f2a9dc41 2019-12-13 tracey int report_unchanged)
3575 f8d1f275 2019-02-04 stsp {
3576 f8d1f275 2019-02-04 stsp const struct got_error *err = NULL;
3577 6fc93f37 2019-12-13 stsp int fd = -1;
3578 d43a8a88 2019-02-05 stsp struct got_fileindex_diff_dir_cb fdiff_cb;
3579 f8d1f275 2019-02-04 stsp struct diff_dir_cb_arg arg;
3580 927df6b7 2019-02-10 stsp char *ondisk_path = NULL;
3581 3143d852 2020-06-25 stsp
3582 3143d852 2020-06-25 stsp TAILQ_INIT(&arg.ignores);
3583 f8d1f275 2019-02-04 stsp
3584 927df6b7 2019-02-10 stsp if (asprintf(&ondisk_path, "%s%s%s",
3585 8dc303cc 2019-07-27 stsp worktree->root_path, path[0] ? "/" : "", path) == -1)
3586 8dc303cc 2019-07-27 stsp return got_error_from_errno("asprintf");
3587 8dc303cc 2019-07-27 stsp
3588 6fc93f37 2019-12-13 stsp fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_DIRECTORY);
3589 6fc93f37 2019-12-13 stsp if (fd == -1) {
3590 00bb5ea0 2020-07-23 stsp if (errno != ENOTDIR && errno != ENOENT && errno != EACCES &&
3591 00bb5ea0 2020-07-23 stsp errno != ELOOP)
3592 6fc93f37 2019-12-13 stsp err = got_error_from_errno2("open", ondisk_path);
3593 abb4604f 2019-07-27 stsp else
3594 abb4604f 2019-07-27 stsp err = report_single_file_status(path, ondisk_path,
3595 f2a9dc41 2019-12-13 tracey fileindex, status_cb, status_arg, repo,
3596 f2a9dc41 2019-12-13 tracey report_unchanged);
3597 abb4604f 2019-07-27 stsp } else {
3598 abb4604f 2019-07-27 stsp fdiff_cb.diff_old_new = status_old_new;
3599 abb4604f 2019-07-27 stsp fdiff_cb.diff_old = status_old;
3600 abb4604f 2019-07-27 stsp fdiff_cb.diff_new = status_new;
3601 3143d852 2020-06-25 stsp fdiff_cb.diff_traverse = status_traverse;
3602 abb4604f 2019-07-27 stsp arg.fileindex = fileindex;
3603 abb4604f 2019-07-27 stsp arg.worktree = worktree;
3604 abb4604f 2019-07-27 stsp arg.status_path = path;
3605 abb4604f 2019-07-27 stsp arg.status_path_len = strlen(path);
3606 abb4604f 2019-07-27 stsp arg.repo = repo;
3607 abb4604f 2019-07-27 stsp arg.status_cb = status_cb;
3608 abb4604f 2019-07-27 stsp arg.status_arg = status_arg;
3609 abb4604f 2019-07-27 stsp arg.cancel_cb = cancel_cb;
3610 abb4604f 2019-07-27 stsp arg.cancel_arg = cancel_arg;
3611 f2a9dc41 2019-12-13 tracey arg.report_unchanged = report_unchanged;
3612 3143d852 2020-06-25 stsp arg.no_ignores = no_ignores;
3613 022fae89 2019-12-06 tracey if (!no_ignores) {
3614 3143d852 2020-06-25 stsp err = add_ignores_from_parent_paths(&arg.ignores,
3615 3143d852 2020-06-25 stsp worktree->root_path, path);
3616 3143d852 2020-06-25 stsp if (err)
3617 3143d852 2020-06-25 stsp goto done;
3618 022fae89 2019-12-06 tracey }
3619 3143d852 2020-06-25 stsp err = got_fileindex_diff_dir(fileindex, fd,
3620 3143d852 2020-06-25 stsp worktree->root_path, path, repo, &fdiff_cb, &arg);
3621 927df6b7 2019-02-10 stsp }
3622 3143d852 2020-06-25 stsp done:
3623 3143d852 2020-06-25 stsp free_ignores(&arg.ignores);
3624 6fc93f37 2019-12-13 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
3625 6fc93f37 2019-12-13 stsp err = got_error_from_errno("close");
3626 927df6b7 2019-02-10 stsp free(ondisk_path);
3627 347d1d3e 2019-07-12 stsp return err;
3628 347d1d3e 2019-07-12 stsp }
3629 347d1d3e 2019-07-12 stsp
3630 347d1d3e 2019-07-12 stsp const struct got_error *
3631 72ea6654 2019-07-27 stsp got_worktree_status(struct got_worktree *worktree,
3632 72ea6654 2019-07-27 stsp struct got_pathlist_head *paths, struct got_repository *repo,
3633 72ea6654 2019-07-27 stsp got_worktree_status_cb status_cb, void *status_arg,
3634 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
3635 347d1d3e 2019-07-12 stsp {
3636 347d1d3e 2019-07-12 stsp const struct got_error *err = NULL;
3637 347d1d3e 2019-07-12 stsp char *fileindex_path = NULL;
3638 347d1d3e 2019-07-12 stsp struct got_fileindex *fileindex = NULL;
3639 72ea6654 2019-07-27 stsp struct got_pathlist_entry *pe;
3640 347d1d3e 2019-07-12 stsp
3641 347d1d3e 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3642 347d1d3e 2019-07-12 stsp if (err)
3643 347d1d3e 2019-07-12 stsp return err;
3644 347d1d3e 2019-07-12 stsp
3645 72ea6654 2019-07-27 stsp TAILQ_FOREACH(pe, paths, entry) {
3646 72ea6654 2019-07-27 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
3647 f2a9dc41 2019-12-13 tracey status_cb, status_arg, cancel_cb, cancel_arg, 0, 0);
3648 72ea6654 2019-07-27 stsp if (err)
3649 72ea6654 2019-07-27 stsp break;
3650 72ea6654 2019-07-27 stsp }
3651 f8d1f275 2019-02-04 stsp free(fileindex_path);
3652 f8d1f275 2019-02-04 stsp got_fileindex_free(fileindex);
3653 f8d1f275 2019-02-04 stsp return err;
3654 f8d1f275 2019-02-04 stsp }
3655 6c7ab921 2019-03-18 stsp
3656 6c7ab921 2019-03-18 stsp const struct got_error *
3657 6c7ab921 2019-03-18 stsp got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
3658 6c7ab921 2019-03-18 stsp const char *arg)
3659 6c7ab921 2019-03-18 stsp {
3660 6c7ab921 2019-03-18 stsp const struct got_error *err = NULL;
3661 00bb5ea0 2020-07-23 stsp char *resolved = NULL, *cwd = NULL, *path = NULL;
3662 6c7ab921 2019-03-18 stsp size_t len;
3663 00bb5ea0 2020-07-23 stsp struct stat sb;
3664 01740607 2020-11-04 stsp char *abspath = NULL;
3665 01740607 2020-11-04 stsp char canonpath[PATH_MAX];
3666 6c7ab921 2019-03-18 stsp
3667 6c7ab921 2019-03-18 stsp *wt_path = NULL;
3668 6c7ab921 2019-03-18 stsp
3669 00bb5ea0 2020-07-23 stsp cwd = getcwd(NULL, 0);
3670 00bb5ea0 2020-07-23 stsp if (cwd == NULL)
3671 00bb5ea0 2020-07-23 stsp return got_error_from_errno("getcwd");
3672 00bb5ea0 2020-07-23 stsp
3673 00bb5ea0 2020-07-23 stsp if (lstat(arg, &sb) == -1) {
3674 00bb5ea0 2020-07-23 stsp if (errno != ENOENT) {
3675 00bb5ea0 2020-07-23 stsp err = got_error_from_errno2("lstat", arg);
3676 00bb5ea0 2020-07-23 stsp goto done;
3677 00bb5ea0 2020-07-23 stsp }
3678 727173c3 2020-11-06 stsp sb.st_mode = 0;
3679 00bb5ea0 2020-07-23 stsp }
3680 00bb5ea0 2020-07-23 stsp if (S_ISLNK(sb.st_mode)) {
3681 00bb5ea0 2020-07-23 stsp /*
3682 00bb5ea0 2020-07-23 stsp * We cannot use realpath(3) with symlinks since we want to
3683 00bb5ea0 2020-07-23 stsp * operate on the symlink itself.
3684 00bb5ea0 2020-07-23 stsp * But we can make the path absolute, assuming it is relative
3685 00bb5ea0 2020-07-23 stsp * to the current working directory, and then canonicalize it.
3686 00bb5ea0 2020-07-23 stsp */
3687 00bb5ea0 2020-07-23 stsp if (!got_path_is_absolute(arg)) {
3688 00bb5ea0 2020-07-23 stsp if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3689 00bb5ea0 2020-07-23 stsp err = got_error_from_errno("asprintf");
3690 00bb5ea0 2020-07-23 stsp goto done;
3691 00bb5ea0 2020-07-23 stsp }
3692 00bb5ea0 2020-07-23 stsp
3693 00bb5ea0 2020-07-23 stsp }
3694 00bb5ea0 2020-07-23 stsp err = got_canonpath(abspath ? abspath : arg, canonpath,
3695 00bb5ea0 2020-07-23 stsp sizeof(canonpath));
3696 00bb5ea0 2020-07-23 stsp if (err)
3697 d0710d08 2019-07-22 stsp goto done;
3698 00bb5ea0 2020-07-23 stsp resolved = strdup(canonpath);
3699 00bb5ea0 2020-07-23 stsp if (resolved == NULL) {
3700 00bb5ea0 2020-07-23 stsp err = got_error_from_errno("strdup");
3701 00bb5ea0 2020-07-23 stsp goto done;
3702 00bb5ea0 2020-07-23 stsp }
3703 00bb5ea0 2020-07-23 stsp } else {
3704 00bb5ea0 2020-07-23 stsp resolved = realpath(arg, NULL);
3705 00bb5ea0 2020-07-23 stsp if (resolved == NULL) {
3706 00bb5ea0 2020-07-23 stsp if (errno != ENOENT) {
3707 00bb5ea0 2020-07-23 stsp err = got_error_from_errno2("realpath", arg);
3708 00bb5ea0 2020-07-23 stsp goto done;
3709 00bb5ea0 2020-07-23 stsp }
3710 01740607 2020-11-04 stsp if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3711 00bb5ea0 2020-07-23 stsp err = got_error_from_errno("asprintf");
3712 01740607 2020-11-04 stsp goto done;
3713 01740607 2020-11-04 stsp }
3714 01740607 2020-11-04 stsp err = got_canonpath(abspath, canonpath,
3715 01740607 2020-11-04 stsp sizeof(canonpath));
3716 01740607 2020-11-04 stsp if (err)
3717 00bb5ea0 2020-07-23 stsp goto done;
3718 01740607 2020-11-04 stsp resolved = strdup(canonpath);
3719 01740607 2020-11-04 stsp if (resolved == NULL) {
3720 01740607 2020-11-04 stsp err = got_error_from_errno("strdup");
3721 01740607 2020-11-04 stsp goto done;
3722 00bb5ea0 2020-07-23 stsp }
3723 d0710d08 2019-07-22 stsp }
3724 d0710d08 2019-07-22 stsp }
3725 6c7ab921 2019-03-18 stsp
3726 6c7ab921 2019-03-18 stsp if (strncmp(got_worktree_get_root_path(worktree), resolved,
3727 6c7ab921 2019-03-18 stsp strlen(got_worktree_get_root_path(worktree)))) {
3728 63f810e6 2020-02-29 stsp err = got_error_path(resolved, GOT_ERR_BAD_PATH);
3729 6c7ab921 2019-03-18 stsp goto done;
3730 6c7ab921 2019-03-18 stsp }
3731 6c7ab921 2019-03-18 stsp
3732 f6d88e1a 2019-05-29 stsp if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
3733 f6d88e1a 2019-05-29 stsp err = got_path_skip_common_ancestor(&path,
3734 f6d88e1a 2019-05-29 stsp got_worktree_get_root_path(worktree), resolved);
3735 f6d88e1a 2019-05-29 stsp if (err)
3736 f6d88e1a 2019-05-29 stsp goto done;
3737 f6d88e1a 2019-05-29 stsp } else {
3738 f6d88e1a 2019-05-29 stsp path = strdup("");
3739 f6d88e1a 2019-05-29 stsp if (path == NULL) {
3740 f6d88e1a 2019-05-29 stsp err = got_error_from_errno("strdup");
3741 f6d88e1a 2019-05-29 stsp goto done;
3742 f6d88e1a 2019-05-29 stsp }
3743 6c7ab921 2019-03-18 stsp }
3744 6c7ab921 2019-03-18 stsp
3745 6c7ab921 2019-03-18 stsp /* XXX status walk can't deal with trailing slash! */
3746 6c7ab921 2019-03-18 stsp len = strlen(path);
3747 3f17dee4 2019-07-27 stsp while (len > 0 && path[len - 1] == '/') {
3748 6c7ab921 2019-03-18 stsp path[len - 1] = '\0';
3749 6c7ab921 2019-03-18 stsp len--;
3750 6c7ab921 2019-03-18 stsp }
3751 6c7ab921 2019-03-18 stsp done:
3752 01740607 2020-11-04 stsp free(abspath);
3753 6c7ab921 2019-03-18 stsp free(resolved);
3754 d0710d08 2019-07-22 stsp free(cwd);
3755 6c7ab921 2019-03-18 stsp if (err == NULL)
3756 6c7ab921 2019-03-18 stsp *wt_path = path;
3757 6c7ab921 2019-03-18 stsp else
3758 6c7ab921 2019-03-18 stsp free(path);
3759 d00136be 2019-03-26 stsp return err;
3760 d00136be 2019-03-26 stsp }
3761 d00136be 2019-03-26 stsp
3762 4e68cba3 2019-11-23 stsp struct schedule_addition_args {
3763 4e68cba3 2019-11-23 stsp struct got_worktree *worktree;
3764 4e68cba3 2019-11-23 stsp struct got_fileindex *fileindex;
3765 4e68cba3 2019-11-23 stsp got_worktree_checkout_cb progress_cb;
3766 4e68cba3 2019-11-23 stsp void *progress_arg;
3767 4e68cba3 2019-11-23 stsp struct got_repository *repo;
3768 4e68cba3 2019-11-23 stsp };
3769 4e68cba3 2019-11-23 stsp
3770 4e68cba3 2019-11-23 stsp static const struct got_error *
3771 4e68cba3 2019-11-23 stsp schedule_addition(void *arg, unsigned char status, unsigned char staged_status,
3772 4e68cba3 2019-11-23 stsp const char *relpath, struct got_object_id *blob_id,
3773 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
3774 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
3775 07f5b47a 2019-06-02 stsp {
3776 4e68cba3 2019-11-23 stsp struct schedule_addition_args *a = arg;
3777 07f5b47a 2019-06-02 stsp const struct got_error *err = NULL;
3778 07f5b47a 2019-06-02 stsp struct got_fileindex_entry *ie;
3779 6d022e97 2019-08-04 stsp struct stat sb;
3780 dbb83fbd 2019-12-12 stsp char *ondisk_path;
3781 07f5b47a 2019-06-02 stsp
3782 dbb83fbd 2019-12-12 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3783 dbb83fbd 2019-12-12 stsp relpath) == -1)
3784 dbb83fbd 2019-12-12 stsp return got_error_from_errno("asprintf");
3785 dbb83fbd 2019-12-12 stsp
3786 4e68cba3 2019-11-23 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3787 6d022e97 2019-08-04 stsp if (ie) {
3788 12463d8b 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, dirfd,
3789 12463d8b 2019-12-13 stsp de_name, a->repo);
3790 6d022e97 2019-08-04 stsp if (err)
3791 dbb83fbd 2019-12-12 stsp goto done;
3792 6d022e97 2019-08-04 stsp /* Re-adding an existing entry is a no-op. */
3793 6d022e97 2019-08-04 stsp if (status == GOT_STATUS_ADD)
3794 dbb83fbd 2019-12-12 stsp goto done;
3795 dbb83fbd 2019-12-12 stsp err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
3796 dbb83fbd 2019-12-12 stsp if (err)
3797 dbb83fbd 2019-12-12 stsp goto done;
3798 6d022e97 2019-08-04 stsp }
3799 07f5b47a 2019-06-02 stsp
3800 dbb83fbd 2019-12-12 stsp if (status != GOT_STATUS_UNVERSIONED) {
3801 dbb83fbd 2019-12-12 stsp err = got_error_path(ondisk_path, GOT_ERR_FILE_STATUS);
3802 dbb83fbd 2019-12-12 stsp goto done;
3803 4e68cba3 2019-11-23 stsp }
3804 07f5b47a 2019-06-02 stsp
3805 3969253a 2020-03-07 stsp err = got_fileindex_entry_alloc(&ie, relpath);
3806 4e68cba3 2019-11-23 stsp if (err)
3807 4e68cba3 2019-11-23 stsp goto done;
3808 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie, a->worktree->root_fd,
3809 437adc9d 2020-12-10 yzhong relpath, NULL, NULL, 1);
3810 3969253a 2020-03-07 stsp if (err) {
3811 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
3812 3969253a 2020-03-07 stsp goto done;
3813 3969253a 2020-03-07 stsp }
3814 4e68cba3 2019-11-23 stsp err = got_fileindex_entry_add(a->fileindex, ie);
3815 07f5b47a 2019-06-02 stsp if (err) {
3816 07f5b47a 2019-06-02 stsp got_fileindex_entry_free(ie);
3817 4e68cba3 2019-11-23 stsp goto done;
3818 07f5b47a 2019-06-02 stsp }
3819 4e68cba3 2019-11-23 stsp done:
3820 dbb83fbd 2019-12-12 stsp free(ondisk_path);
3821 dbb83fbd 2019-12-12 stsp if (err)
3822 dbb83fbd 2019-12-12 stsp return err;
3823 dbb83fbd 2019-12-12 stsp if (status == GOT_STATUS_ADD)
3824 dbb83fbd 2019-12-12 stsp return NULL;
3825 dbb83fbd 2019-12-12 stsp return (*a->progress_cb)(a->progress_arg, GOT_STATUS_ADD, relpath);
3826 07f5b47a 2019-06-02 stsp }
3827 07f5b47a 2019-06-02 stsp
3828 d00136be 2019-03-26 stsp const struct got_error *
3829 031a5338 2019-03-26 stsp got_worktree_schedule_add(struct got_worktree *worktree,
3830 6d022e97 2019-08-04 stsp struct got_pathlist_head *paths,
3831 4e68cba3 2019-11-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
3832 022fae89 2019-12-06 tracey struct got_repository *repo, int no_ignores)
3833 d00136be 2019-03-26 stsp {
3834 d00136be 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
3835 9c6338c4 2019-06-02 stsp char *fileindex_path = NULL;
3836 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
3837 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
3838 4e68cba3 2019-11-23 stsp struct schedule_addition_args saa;
3839 d00136be 2019-03-26 stsp
3840 d00136be 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
3841 d00136be 2019-03-26 stsp if (err)
3842 d00136be 2019-03-26 stsp return err;
3843 d00136be 2019-03-26 stsp
3844 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
3845 d00136be 2019-03-26 stsp if (err)
3846 d00136be 2019-03-26 stsp goto done;
3847 d00136be 2019-03-26 stsp
3848 4e68cba3 2019-11-23 stsp saa.worktree = worktree;
3849 4e68cba3 2019-11-23 stsp saa.fileindex = fileindex;
3850 4e68cba3 2019-11-23 stsp saa.progress_cb = progress_cb;
3851 4e68cba3 2019-11-23 stsp saa.progress_arg = progress_arg;
3852 4e68cba3 2019-11-23 stsp saa.repo = repo;
3853 4e68cba3 2019-11-23 stsp
3854 6d022e97 2019-08-04 stsp TAILQ_FOREACH(pe, paths, entry) {
3855 4e68cba3 2019-11-23 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
3856 f2a9dc41 2019-12-13 tracey schedule_addition, &saa, NULL, NULL, no_ignores, 0);
3857 1dd54920 2019-05-11 stsp if (err)
3858 af12c6b9 2019-06-04 stsp break;
3859 1dd54920 2019-05-11 stsp }
3860 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
3861 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
3862 af12c6b9 2019-06-04 stsp err = sync_err;
3863 d00136be 2019-03-26 stsp done:
3864 fb399478 2019-07-12 stsp free(fileindex_path);
3865 d00136be 2019-03-26 stsp if (fileindex)
3866 d00136be 2019-03-26 stsp got_fileindex_free(fileindex);
3867 d00136be 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
3868 d00136be 2019-03-26 stsp if (unlockerr && err == NULL)
3869 d00136be 2019-03-26 stsp err = unlockerr;
3870 6c7ab921 2019-03-18 stsp return err;
3871 6c7ab921 2019-03-18 stsp }
3872 17ed4618 2019-06-02 stsp
3873 f2a9dc41 2019-12-13 tracey struct schedule_deletion_args {
3874 f2a9dc41 2019-12-13 tracey struct got_worktree *worktree;
3875 f2a9dc41 2019-12-13 tracey struct got_fileindex *fileindex;
3876 f2a9dc41 2019-12-13 tracey got_worktree_delete_cb progress_cb;
3877 f2a9dc41 2019-12-13 tracey void *progress_arg;
3878 f2a9dc41 2019-12-13 tracey struct got_repository *repo;
3879 f2a9dc41 2019-12-13 tracey int delete_local_mods;
3880 70e3e7f5 2019-12-13 tracey int keep_on_disk;
3881 766841c2 2020-08-13 stsp const char *status_codes;
3882 f2a9dc41 2019-12-13 tracey };
3883 f2a9dc41 2019-12-13 tracey
3884 f2a9dc41 2019-12-13 tracey static const struct got_error *
3885 f2a9dc41 2019-12-13 tracey schedule_for_deletion(void *arg, unsigned char status,
3886 f2a9dc41 2019-12-13 tracey unsigned char staged_status, const char *relpath,
3887 f2a9dc41 2019-12-13 tracey struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
3888 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
3889 17ed4618 2019-06-02 stsp {
3890 f2a9dc41 2019-12-13 tracey struct schedule_deletion_args *a = arg;
3891 17ed4618 2019-06-02 stsp const struct got_error *err = NULL;
3892 17ed4618 2019-06-02 stsp struct got_fileindex_entry *ie = NULL;
3893 17ed4618 2019-06-02 stsp struct stat sb;
3894 20a2ad1c 2020-10-20 stsp char *ondisk_path;
3895 17ed4618 2019-06-02 stsp
3896 f2a9dc41 2019-12-13 tracey ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3897 17ed4618 2019-06-02 stsp if (ie == NULL)
3898 63f810e6 2020-02-29 stsp return got_error_path(relpath, GOT_ERR_BAD_PATH);
3899 2ec1f75b 2019-03-26 stsp
3900 9acbc4fa 2019-08-03 stsp staged_status = get_staged_status(ie);
3901 9acbc4fa 2019-08-03 stsp if (staged_status != GOT_STATUS_NO_CHANGE) {
3902 9acbc4fa 2019-08-03 stsp if (staged_status == GOT_STATUS_DELETE)
3903 9acbc4fa 2019-08-03 stsp return NULL;
3904 9acbc4fa 2019-08-03 stsp return got_error_path(relpath, GOT_ERR_FILE_STAGED);
3905 9acbc4fa 2019-08-03 stsp }
3906 9acbc4fa 2019-08-03 stsp
3907 f2a9dc41 2019-12-13 tracey if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3908 f2a9dc41 2019-12-13 tracey relpath) == -1)
3909 f2a9dc41 2019-12-13 tracey return got_error_from_errno("asprintf");
3910 f2a9dc41 2019-12-13 tracey
3911 12463d8b 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, dirfd, de_name,
3912 12463d8b 2019-12-13 stsp a->repo);
3913 17ed4618 2019-06-02 stsp if (err)
3914 f2a9dc41 2019-12-13 tracey goto done;
3915 17ed4618 2019-06-02 stsp
3916 766841c2 2020-08-13 stsp if (a->status_codes) {
3917 766841c2 2020-08-13 stsp size_t ncodes = strlen(a->status_codes);
3918 766841c2 2020-08-13 stsp int i;
3919 766841c2 2020-08-13 stsp for (i = 0; i < ncodes ; i++) {
3920 766841c2 2020-08-13 stsp if (status == a->status_codes[i])
3921 766841c2 2020-08-13 stsp break;
3922 766841c2 2020-08-13 stsp }
3923 766841c2 2020-08-13 stsp if (i == ncodes) {
3924 766841c2 2020-08-13 stsp /* Do not delete files in non-matching status. */
3925 766841c2 2020-08-13 stsp free(ondisk_path);
3926 766841c2 2020-08-13 stsp return NULL;
3927 766841c2 2020-08-13 stsp }
3928 766841c2 2020-08-13 stsp if (a->status_codes[i] != GOT_STATUS_MODIFY &&
3929 766841c2 2020-08-13 stsp a->status_codes[i] != GOT_STATUS_MISSING) {
3930 766841c2 2020-08-13 stsp static char msg[64];
3931 766841c2 2020-08-13 stsp snprintf(msg, sizeof(msg),
3932 766841c2 2020-08-13 stsp "invalid status code '%c'", a->status_codes[i]);
3933 766841c2 2020-08-13 stsp err = got_error_msg(GOT_ERR_FILE_STATUS, msg);
3934 766841c2 2020-08-13 stsp goto done;
3935 766841c2 2020-08-13 stsp }
3936 766841c2 2020-08-13 stsp }
3937 766841c2 2020-08-13 stsp
3938 17ed4618 2019-06-02 stsp if (status != GOT_STATUS_NO_CHANGE) {
3939 17ed4618 2019-06-02 stsp if (status == GOT_STATUS_DELETE)
3940 f2a9dc41 2019-12-13 tracey goto done;
3941 f2a9dc41 2019-12-13 tracey if (status == GOT_STATUS_MODIFY && !a->delete_local_mods) {
3942 f2a9dc41 2019-12-13 tracey err = got_error_path(relpath, GOT_ERR_FILE_MODIFIED);
3943 f2a9dc41 2019-12-13 tracey goto done;
3944 f2a9dc41 2019-12-13 tracey }
3945 f2a9dc41 2019-12-13 tracey if (status != GOT_STATUS_MODIFY &&
3946 f2a9dc41 2019-12-13 tracey status != GOT_STATUS_MISSING) {
3947 f2a9dc41 2019-12-13 tracey err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
3948 f2a9dc41 2019-12-13 tracey goto done;
3949 f2a9dc41 2019-12-13 tracey }
3950 17ed4618 2019-06-02 stsp }
3951 17ed4618 2019-06-02 stsp
3952 70e3e7f5 2019-12-13 tracey if (!a->keep_on_disk && status != GOT_STATUS_MISSING) {
3953 20a2ad1c 2020-10-20 stsp size_t root_len;
3954 20a2ad1c 2020-10-20 stsp
3955 12463d8b 2019-12-13 stsp if (dirfd != -1) {
3956 12463d8b 2019-12-13 stsp if (unlinkat(dirfd, de_name, 0) != 0) {
3957 12463d8b 2019-12-13 stsp err = got_error_from_errno2("unlinkat",
3958 12463d8b 2019-12-13 stsp ondisk_path);
3959 12463d8b 2019-12-13 stsp goto done;
3960 12463d8b 2019-12-13 stsp }
3961 12463d8b 2019-12-13 stsp } else if (unlink(ondisk_path) != 0) {
3962 12463d8b 2019-12-13 stsp err = got_error_from_errno2("unlink", ondisk_path);
3963 12463d8b 2019-12-13 stsp goto done;
3964 15341bfd 2020-03-05 tracey }
3965 15341bfd 2020-03-05 tracey
3966 20a2ad1c 2020-10-20 stsp root_len = strlen(a->worktree->root_path);
3967 20a2ad1c 2020-10-20 stsp do {
3968 20a2ad1c 2020-10-20 stsp char *parent;
3969 20a2ad1c 2020-10-20 stsp err = got_path_dirname(&parent, ondisk_path);
3970 20a2ad1c 2020-10-20 stsp if (err)
3971 2513f20a 2020-10-20 stsp goto done;
3972 20a2ad1c 2020-10-20 stsp free(ondisk_path);
3973 20a2ad1c 2020-10-20 stsp ondisk_path = parent;
3974 20a2ad1c 2020-10-20 stsp if (rmdir(ondisk_path) == -1) {
3975 15341bfd 2020-03-05 tracey if (errno != ENOTEMPTY)
3976 15341bfd 2020-03-05 tracey err = got_error_from_errno2("rmdir",
3977 20a2ad1c 2020-10-20 stsp ondisk_path);
3978 15341bfd 2020-03-05 tracey break;
3979 15341bfd 2020-03-05 tracey }
3980 20a2ad1c 2020-10-20 stsp } while (got_path_cmp(ondisk_path, a->worktree->root_path,
3981 20a2ad1c 2020-10-20 stsp strlen(ondisk_path), root_len) != 0);
3982 f2a9dc41 2019-12-13 tracey }
3983 17ed4618 2019-06-02 stsp
3984 17ed4618 2019-06-02 stsp got_fileindex_entry_mark_deleted_from_disk(ie);
3985 f2a9dc41 2019-12-13 tracey done:
3986 f2a9dc41 2019-12-13 tracey free(ondisk_path);
3987 f2a9dc41 2019-12-13 tracey if (err)
3988 f2a9dc41 2019-12-13 tracey return err;
3989 f2a9dc41 2019-12-13 tracey if (status == GOT_STATUS_DELETE)
3990 f2a9dc41 2019-12-13 tracey return NULL;
3991 f2a9dc41 2019-12-13 tracey return (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
3992 f2a9dc41 2019-12-13 tracey staged_status, relpath);
3993 17ed4618 2019-06-02 stsp }
3994 17ed4618 2019-06-02 stsp
3995 2ec1f75b 2019-03-26 stsp const struct got_error *
3996 2ec1f75b 2019-03-26 stsp got_worktree_schedule_delete(struct got_worktree *worktree,
3997 6d022e97 2019-08-04 stsp struct got_pathlist_head *paths, int delete_local_mods,
3998 766841c2 2020-08-13 stsp const char *status_codes,
3999 f2a9dc41 2019-12-13 tracey got_worktree_delete_cb progress_cb, void *progress_arg,
4000 70e3e7f5 2019-12-13 tracey struct got_repository *repo, int keep_on_disk)
4001 2ec1f75b 2019-03-26 stsp {
4002 2ec1f75b 2019-03-26 stsp struct got_fileindex *fileindex = NULL;
4003 17ed4618 2019-06-02 stsp char *fileindex_path = NULL;
4004 af12c6b9 2019-06-04 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
4005 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
4006 f2a9dc41 2019-12-13 tracey struct schedule_deletion_args sda;
4007 2ec1f75b 2019-03-26 stsp
4008 2ec1f75b 2019-03-26 stsp err = lock_worktree(worktree, LOCK_EX);
4009 2ec1f75b 2019-03-26 stsp if (err)
4010 2ec1f75b 2019-03-26 stsp return err;
4011 2ec1f75b 2019-03-26 stsp
4012 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
4013 2ec1f75b 2019-03-26 stsp if (err)
4014 2ec1f75b 2019-03-26 stsp goto done;
4015 f2a9dc41 2019-12-13 tracey
4016 f2a9dc41 2019-12-13 tracey sda.worktree = worktree;
4017 f2a9dc41 2019-12-13 tracey sda.fileindex = fileindex;
4018 f2a9dc41 2019-12-13 tracey sda.progress_cb = progress_cb;
4019 f2a9dc41 2019-12-13 tracey sda.progress_arg = progress_arg;
4020 f2a9dc41 2019-12-13 tracey sda.repo = repo;
4021 f2a9dc41 2019-12-13 tracey sda.delete_local_mods = delete_local_mods;
4022 70e3e7f5 2019-12-13 tracey sda.keep_on_disk = keep_on_disk;
4023 766841c2 2020-08-13 stsp sda.status_codes = status_codes;
4024 2ec1f75b 2019-03-26 stsp
4025 6d022e97 2019-08-04 stsp TAILQ_FOREACH(pe, paths, entry) {
4026 f2a9dc41 2019-12-13 tracey err = worktree_status(worktree, pe->path, fileindex, repo,
4027 f2a9dc41 2019-12-13 tracey schedule_for_deletion, &sda, NULL, NULL, 0, 1);
4028 17ed4618 2019-06-02 stsp if (err)
4029 af12c6b9 2019-06-04 stsp break;
4030 2ec1f75b 2019-03-26 stsp }
4031 af12c6b9 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4032 af12c6b9 2019-06-04 stsp if (sync_err && err == NULL)
4033 af12c6b9 2019-06-04 stsp err = sync_err;
4034 2ec1f75b 2019-03-26 stsp done:
4035 fb399478 2019-07-12 stsp free(fileindex_path);
4036 2ec1f75b 2019-03-26 stsp if (fileindex)
4037 2ec1f75b 2019-03-26 stsp got_fileindex_free(fileindex);
4038 2ec1f75b 2019-03-26 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4039 2ec1f75b 2019-03-26 stsp if (unlockerr && err == NULL)
4040 2ec1f75b 2019-03-26 stsp err = unlockerr;
4041 33aa809d 2019-08-08 stsp return err;
4042 33aa809d 2019-08-08 stsp }
4043 33aa809d 2019-08-08 stsp
4044 33aa809d 2019-08-08 stsp static const struct got_error *
4045 33aa809d 2019-08-08 stsp copy_one_line(FILE *infile, FILE *outfile, FILE *rejectfile)
4046 33aa809d 2019-08-08 stsp {
4047 33aa809d 2019-08-08 stsp const struct got_error *err = NULL;
4048 33aa809d 2019-08-08 stsp char *line = NULL;
4049 33aa809d 2019-08-08 stsp size_t linesize = 0, n;
4050 33aa809d 2019-08-08 stsp ssize_t linelen;
4051 33aa809d 2019-08-08 stsp
4052 33aa809d 2019-08-08 stsp linelen = getline(&line, &linesize, infile);
4053 33aa809d 2019-08-08 stsp if (linelen == -1) {
4054 33aa809d 2019-08-08 stsp if (ferror(infile)) {
4055 33aa809d 2019-08-08 stsp err = got_error_from_errno("getline");
4056 33aa809d 2019-08-08 stsp goto done;
4057 33aa809d 2019-08-08 stsp }
4058 33aa809d 2019-08-08 stsp return NULL;
4059 33aa809d 2019-08-08 stsp }
4060 33aa809d 2019-08-08 stsp if (outfile) {
4061 33aa809d 2019-08-08 stsp n = fwrite(line, 1, linelen, outfile);
4062 33aa809d 2019-08-08 stsp if (n != linelen) {
4063 33aa809d 2019-08-08 stsp err = got_ferror(outfile, GOT_ERR_IO);
4064 33aa809d 2019-08-08 stsp goto done;
4065 33aa809d 2019-08-08 stsp }
4066 33aa809d 2019-08-08 stsp }
4067 33aa809d 2019-08-08 stsp if (rejectfile) {
4068 33aa809d 2019-08-08 stsp n = fwrite(line, 1, linelen, rejectfile);
4069 33aa809d 2019-08-08 stsp if (n != linelen)
4070 33aa809d 2019-08-08 stsp err = got_ferror(outfile, GOT_ERR_IO);
4071 33aa809d 2019-08-08 stsp }
4072 33aa809d 2019-08-08 stsp done:
4073 33aa809d 2019-08-08 stsp free(line);
4074 2ec1f75b 2019-03-26 stsp return err;
4075 2ec1f75b 2019-03-26 stsp }
4076 1f1abb7e 2019-08-08 stsp
4077 33aa809d 2019-08-08 stsp static const struct got_error *
4078 33aa809d 2019-08-08 stsp skip_one_line(FILE *f)
4079 33aa809d 2019-08-08 stsp {
4080 33aa809d 2019-08-08 stsp char *line = NULL;
4081 33aa809d 2019-08-08 stsp size_t linesize = 0;
4082 33aa809d 2019-08-08 stsp ssize_t linelen;
4083 33aa809d 2019-08-08 stsp
4084 33aa809d 2019-08-08 stsp linelen = getline(&line, &linesize, f);
4085 500467ff 2019-09-25 hiltjo if (linelen == -1) {
4086 500467ff 2019-09-25 hiltjo if (ferror(f))
4087 500467ff 2019-09-25 hiltjo return got_error_from_errno("getline");
4088 500467ff 2019-09-25 hiltjo return NULL;
4089 500467ff 2019-09-25 hiltjo }
4090 33aa809d 2019-08-08 stsp free(line);
4091 33aa809d 2019-08-08 stsp return NULL;
4092 33aa809d 2019-08-08 stsp }
4093 33aa809d 2019-08-08 stsp
4094 33aa809d 2019-08-08 stsp static const struct got_error *
4095 33aa809d 2019-08-08 stsp copy_change(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4096 33aa809d 2019-08-08 stsp int start_old, int end_old, int start_new, int end_new,
4097 33aa809d 2019-08-08 stsp FILE *outfile, FILE *rejectfile)
4098 33aa809d 2019-08-08 stsp {
4099 33aa809d 2019-08-08 stsp const struct got_error *err;
4100 33aa809d 2019-08-08 stsp
4101 33aa809d 2019-08-08 stsp /* Copy old file's lines leading up to patch. */
4102 33aa809d 2019-08-08 stsp while (!feof(f1) && *line_cur1 < start_old) {
4103 33aa809d 2019-08-08 stsp err = copy_one_line(f1, outfile, NULL);
4104 33aa809d 2019-08-08 stsp if (err)
4105 33aa809d 2019-08-08 stsp return err;
4106 33aa809d 2019-08-08 stsp (*line_cur1)++;
4107 33aa809d 2019-08-08 stsp }
4108 33aa809d 2019-08-08 stsp /* Skip new file's lines leading up to patch. */
4109 33aa809d 2019-08-08 stsp while (!feof(f2) && *line_cur2 < start_new) {
4110 33aa809d 2019-08-08 stsp if (rejectfile)
4111 33aa809d 2019-08-08 stsp err = copy_one_line(f2, NULL, rejectfile);
4112 33aa809d 2019-08-08 stsp else
4113 33aa809d 2019-08-08 stsp err = skip_one_line(f2);
4114 33aa809d 2019-08-08 stsp if (err)
4115 33aa809d 2019-08-08 stsp return err;
4116 33aa809d 2019-08-08 stsp (*line_cur2)++;
4117 33aa809d 2019-08-08 stsp }
4118 33aa809d 2019-08-08 stsp /* Copy patched lines. */
4119 33aa809d 2019-08-08 stsp while (!feof(f2) && *line_cur2 <= end_new) {
4120 33aa809d 2019-08-08 stsp err = copy_one_line(f2, outfile, NULL);
4121 33aa809d 2019-08-08 stsp if (err)
4122 33aa809d 2019-08-08 stsp return err;
4123 33aa809d 2019-08-08 stsp (*line_cur2)++;
4124 33aa809d 2019-08-08 stsp }
4125 33aa809d 2019-08-08 stsp /* Skip over old file's replaced lines. */
4126 f1e81a05 2019-08-10 stsp while (!feof(f1) && *line_cur1 <= end_old) {
4127 33aa809d 2019-08-08 stsp if (rejectfile)
4128 33aa809d 2019-08-08 stsp err = copy_one_line(f1, NULL, rejectfile);
4129 33aa809d 2019-08-08 stsp else
4130 33aa809d 2019-08-08 stsp err = skip_one_line(f1);
4131 33aa809d 2019-08-08 stsp if (err)
4132 33aa809d 2019-08-08 stsp return err;
4133 33aa809d 2019-08-08 stsp (*line_cur1)++;
4134 33aa809d 2019-08-08 stsp }
4135 f1e81a05 2019-08-10 stsp
4136 f1e81a05 2019-08-10 stsp return NULL;
4137 f1e81a05 2019-08-10 stsp }
4138 f1e81a05 2019-08-10 stsp
4139 f1e81a05 2019-08-10 stsp static const struct got_error *
4140 f1e81a05 2019-08-10 stsp copy_remaining_content(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4141 f1e81a05 2019-08-10 stsp FILE *outfile, FILE *rejectfile)
4142 f1e81a05 2019-08-10 stsp {
4143 f1e81a05 2019-08-10 stsp const struct got_error *err;
4144 f1e81a05 2019-08-10 stsp
4145 f1e81a05 2019-08-10 stsp if (outfile) {
4146 f1e81a05 2019-08-10 stsp /* Copy old file's lines until EOF. */
4147 f1e81a05 2019-08-10 stsp while (!feof(f1)) {
4148 f1e81a05 2019-08-10 stsp err = copy_one_line(f1, outfile, NULL);
4149 f1e81a05 2019-08-10 stsp if (err)
4150 f1e81a05 2019-08-10 stsp return err;
4151 f1e81a05 2019-08-10 stsp (*line_cur1)++;
4152 f1e81a05 2019-08-10 stsp }
4153 f1e81a05 2019-08-10 stsp }
4154 f1e81a05 2019-08-10 stsp if (rejectfile) {
4155 f1e81a05 2019-08-10 stsp /* Copy new file's lines until EOF. */
4156 f1e81a05 2019-08-10 stsp while (!feof(f2)) {
4157 f1e81a05 2019-08-10 stsp err = copy_one_line(f2, NULL, rejectfile);
4158 f1e81a05 2019-08-10 stsp if (err)
4159 f1e81a05 2019-08-10 stsp return err;
4160 f1e81a05 2019-08-10 stsp (*line_cur2)++;
4161 f1e81a05 2019-08-10 stsp }
4162 33aa809d 2019-08-08 stsp }
4163 33aa809d 2019-08-08 stsp
4164 33aa809d 2019-08-08 stsp return NULL;
4165 33aa809d 2019-08-08 stsp }
4166 33aa809d 2019-08-08 stsp
4167 33aa809d 2019-08-08 stsp static const struct got_error *
4168 fe621944 2020-11-10 stsp apply_or_reject_change(int *choice, int *nchunks_used,
4169 fe621944 2020-11-10 stsp struct diff_result *diff_result, int n,
4170 fe621944 2020-11-10 stsp const char *relpath, FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4171 fe621944 2020-11-10 stsp FILE *outfile, FILE *rejectfile, int changeno, int nchanges,
4172 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg)
4173 33aa809d 2019-08-08 stsp {
4174 33aa809d 2019-08-08 stsp const struct got_error *err = NULL;
4175 fe621944 2020-11-10 stsp struct diff_chunk_context cc = {};
4176 fe621944 2020-11-10 stsp int start_old, end_old, start_new, end_new;
4177 33aa809d 2019-08-08 stsp FILE *hunkfile;
4178 fe621944 2020-11-10 stsp struct diff_output_unidiff_state *diff_state;
4179 fe621944 2020-11-10 stsp struct diff_input_info diff_info;
4180 fe621944 2020-11-10 stsp int rc;
4181 33aa809d 2019-08-08 stsp
4182 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NONE;
4183 33aa809d 2019-08-08 stsp
4184 fe621944 2020-11-10 stsp /* Get changed line numbers without context lines for copy_change(). */
4185 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, NULL, diff_result, n, 0);
4186 fe621944 2020-11-10 stsp start_old = cc.left.start;
4187 fe621944 2020-11-10 stsp end_old = cc.left.end;
4188 fe621944 2020-11-10 stsp start_new = cc.right.start;
4189 fe621944 2020-11-10 stsp end_new = cc.right.end;
4190 33aa809d 2019-08-08 stsp
4191 fe621944 2020-11-10 stsp /* Get the same change with context lines for display. */
4192 fe621944 2020-11-10 stsp memset(&cc, 0, sizeof(cc));
4193 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, nchunks_used, diff_result, n, 3);
4194 33aa809d 2019-08-08 stsp
4195 fe621944 2020-11-10 stsp memset(&diff_info, 0, sizeof(diff_info));
4196 fe621944 2020-11-10 stsp diff_info.left_path = relpath;
4197 fe621944 2020-11-10 stsp diff_info.right_path = relpath;
4198 33aa809d 2019-08-08 stsp
4199 fe621944 2020-11-10 stsp diff_state = diff_output_unidiff_state_alloc();
4200 fe621944 2020-11-10 stsp if (diff_state == NULL)
4201 fe621944 2020-11-10 stsp return got_error_set_errno(ENOMEM,
4202 fe621944 2020-11-10 stsp "diff_output_unidiff_state_alloc");
4203 fe621944 2020-11-10 stsp
4204 fe621944 2020-11-10 stsp hunkfile = got_opentemp();
4205 fe621944 2020-11-10 stsp if (hunkfile == NULL) {
4206 fe621944 2020-11-10 stsp err = got_error_from_errno("got_opentemp");
4207 33aa809d 2019-08-08 stsp goto done;
4208 33aa809d 2019-08-08 stsp }
4209 fe621944 2020-11-10 stsp
4210 fe621944 2020-11-10 stsp rc = diff_output_unidiff_chunk(NULL, hunkfile, diff_state, &diff_info,
4211 fe621944 2020-11-10 stsp diff_result, &cc);
4212 fe621944 2020-11-10 stsp if (rc != DIFF_RC_OK) {
4213 fe621944 2020-11-10 stsp err = got_error_set_errno(rc, "diff_output_unidiff_chunk");
4214 33aa809d 2019-08-08 stsp goto done;
4215 33aa809d 2019-08-08 stsp }
4216 fe621944 2020-11-10 stsp
4217 33aa809d 2019-08-08 stsp if (fseek(hunkfile, 0L, SEEK_SET) == -1) {
4218 33aa809d 2019-08-08 stsp err = got_ferror(hunkfile, GOT_ERR_IO);
4219 33aa809d 2019-08-08 stsp goto done;
4220 33aa809d 2019-08-08 stsp }
4221 33aa809d 2019-08-08 stsp
4222 33aa809d 2019-08-08 stsp err = (*patch_cb)(choice, patch_arg, GOT_STATUS_MODIFY, relpath,
4223 fe621944 2020-11-10 stsp hunkfile, changeno, nchanges);
4224 33aa809d 2019-08-08 stsp if (err)
4225 33aa809d 2019-08-08 stsp goto done;
4226 33aa809d 2019-08-08 stsp
4227 33aa809d 2019-08-08 stsp switch (*choice) {
4228 33aa809d 2019-08-08 stsp case GOT_PATCH_CHOICE_YES:
4229 33aa809d 2019-08-08 stsp err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4230 33aa809d 2019-08-08 stsp end_old, start_new, end_new, outfile, rejectfile);
4231 33aa809d 2019-08-08 stsp break;
4232 33aa809d 2019-08-08 stsp case GOT_PATCH_CHOICE_NO:
4233 33aa809d 2019-08-08 stsp err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4234 33aa809d 2019-08-08 stsp end_old, start_new, end_new, rejectfile, outfile);
4235 33aa809d 2019-08-08 stsp break;
4236 33aa809d 2019-08-08 stsp case GOT_PATCH_CHOICE_QUIT:
4237 33aa809d 2019-08-08 stsp break;
4238 33aa809d 2019-08-08 stsp default:
4239 33aa809d 2019-08-08 stsp err = got_error(GOT_ERR_PATCH_CHOICE);
4240 33aa809d 2019-08-08 stsp break;
4241 33aa809d 2019-08-08 stsp }
4242 33aa809d 2019-08-08 stsp done:
4243 fe621944 2020-11-10 stsp diff_output_unidiff_state_free(diff_state);
4244 33aa809d 2019-08-08 stsp if (hunkfile && fclose(hunkfile) == EOF && err == NULL)
4245 33aa809d 2019-08-08 stsp err = got_error_from_errno("fclose");
4246 33aa809d 2019-08-08 stsp return err;
4247 33aa809d 2019-08-08 stsp }
4248 33aa809d 2019-08-08 stsp
4249 1f1abb7e 2019-08-08 stsp struct revert_file_args {
4250 1f1abb7e 2019-08-08 stsp struct got_worktree *worktree;
4251 1f1abb7e 2019-08-08 stsp struct got_fileindex *fileindex;
4252 1f1abb7e 2019-08-08 stsp got_worktree_checkout_cb progress_cb;
4253 1f1abb7e 2019-08-08 stsp void *progress_arg;
4254 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb;
4255 33aa809d 2019-08-08 stsp void *patch_arg;
4256 1f1abb7e 2019-08-08 stsp struct got_repository *repo;
4257 1f1abb7e 2019-08-08 stsp };
4258 a129376b 2019-03-28 stsp
4259 e20a8b6f 2019-06-04 stsp static const struct got_error *
4260 e635744c 2019-08-08 stsp create_patched_content(char **path_outfile, int reverse_patch,
4261 e635744c 2019-08-08 stsp struct got_object_id *blob_id, const char *path2,
4262 12463d8b 2019-12-13 stsp int dirfd2, const char *de_name2,
4263 e635744c 2019-08-08 stsp const char *relpath, struct got_repository *repo,
4264 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg)
4265 33aa809d 2019-08-08 stsp {
4266 fe621944 2020-11-10 stsp const struct got_error *err, *free_err;
4267 33aa809d 2019-08-08 stsp struct got_blob_object *blob = NULL;
4268 33aa809d 2019-08-08 stsp FILE *f1 = NULL, *f2 = NULL, *outfile = NULL;
4269 1ebedb77 2019-10-19 stsp int fd2 = -1;
4270 fa3cef63 2020-07-23 stsp char link_target[PATH_MAX];
4271 fa3cef63 2020-07-23 stsp ssize_t link_len = 0;
4272 33aa809d 2019-08-08 stsp char *path1 = NULL, *id_str = NULL;
4273 fe621944 2020-11-10 stsp struct stat sb2;
4274 fe621944 2020-11-10 stsp struct got_diffreg_result *diffreg_result = NULL;
4275 fe621944 2020-11-10 stsp int line_cur1 = 1, line_cur2 = 1, have_content = 0;
4276 fe621944 2020-11-10 stsp int i = 0, n = 0, nchunks_used = 0, nchanges = 0;
4277 33aa809d 2019-08-08 stsp
4278 33aa809d 2019-08-08 stsp *path_outfile = NULL;
4279 33aa809d 2019-08-08 stsp
4280 33aa809d 2019-08-08 stsp err = got_object_id_str(&id_str, blob_id);
4281 33aa809d 2019-08-08 stsp if (err)
4282 33aa809d 2019-08-08 stsp return err;
4283 33aa809d 2019-08-08 stsp
4284 12463d8b 2019-12-13 stsp if (dirfd2 != -1) {
4285 12463d8b 2019-12-13 stsp fd2 = openat(dirfd2, de_name2, O_RDONLY | O_NOFOLLOW);
4286 12463d8b 2019-12-13 stsp if (fd2 == -1) {
4287 fa3cef63 2020-07-23 stsp if (errno != ELOOP) {
4288 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("openat", path2);
4289 fa3cef63 2020-07-23 stsp goto done;
4290 fa3cef63 2020-07-23 stsp }
4291 fa3cef63 2020-07-23 stsp link_len = readlinkat(dirfd2, de_name2,
4292 fa3cef63 2020-07-23 stsp link_target, sizeof(link_target));
4293 fa3cef63 2020-07-23 stsp if (link_len == -1)
4294 fa3cef63 2020-07-23 stsp return got_error_from_errno2("readlinkat", path2);
4295 fa3cef63 2020-07-23 stsp sb2.st_mode = S_IFLNK;
4296 fa3cef63 2020-07-23 stsp sb2.st_size = link_len;
4297 12463d8b 2019-12-13 stsp }
4298 12463d8b 2019-12-13 stsp } else {
4299 12463d8b 2019-12-13 stsp fd2 = open(path2, O_RDONLY | O_NOFOLLOW);
4300 12463d8b 2019-12-13 stsp if (fd2 == -1) {
4301 fa3cef63 2020-07-23 stsp if (errno != ELOOP) {
4302 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("open", path2);
4303 fa3cef63 2020-07-23 stsp goto done;
4304 fa3cef63 2020-07-23 stsp }
4305 fa3cef63 2020-07-23 stsp link_len = readlink(path2, link_target,
4306 fa3cef63 2020-07-23 stsp sizeof(link_target));
4307 fa3cef63 2020-07-23 stsp if (link_len == -1)
4308 fa3cef63 2020-07-23 stsp return got_error_from_errno2("readlink", path2);
4309 fa3cef63 2020-07-23 stsp sb2.st_mode = S_IFLNK;
4310 fa3cef63 2020-07-23 stsp sb2.st_size = link_len;
4311 12463d8b 2019-12-13 stsp }
4312 1ebedb77 2019-10-19 stsp }
4313 fa3cef63 2020-07-23 stsp if (fd2 != -1) {
4314 fa3cef63 2020-07-23 stsp if (fstat(fd2, &sb2) == -1) {
4315 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("fstat", path2);
4316 fa3cef63 2020-07-23 stsp goto done;
4317 fa3cef63 2020-07-23 stsp }
4318 1ebedb77 2019-10-19 stsp
4319 fa3cef63 2020-07-23 stsp f2 = fdopen(fd2, "r");
4320 fa3cef63 2020-07-23 stsp if (f2 == NULL) {
4321 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("fdopen", path2);
4322 fa3cef63 2020-07-23 stsp goto done;
4323 fa3cef63 2020-07-23 stsp }
4324 fa3cef63 2020-07-23 stsp fd2 = -1;
4325 fa3cef63 2020-07-23 stsp } else {
4326 fa3cef63 2020-07-23 stsp size_t n;
4327 fa3cef63 2020-07-23 stsp f2 = got_opentemp();
4328 fa3cef63 2020-07-23 stsp if (f2 == NULL) {
4329 fa3cef63 2020-07-23 stsp err = got_error_from_errno2("got_opentemp", path2);
4330 fa3cef63 2020-07-23 stsp goto done;
4331 fa3cef63 2020-07-23 stsp }
4332 fa3cef63 2020-07-23 stsp n = fwrite(link_target, 1, link_len, f2);
4333 fa3cef63 2020-07-23 stsp if (n != link_len) {
4334 fa3cef63 2020-07-23 stsp err = got_ferror(f2, GOT_ERR_IO);
4335 fa3cef63 2020-07-23 stsp goto done;
4336 fa3cef63 2020-07-23 stsp }
4337 fa3cef63 2020-07-23 stsp if (fflush(f2) == EOF) {
4338 fa3cef63 2020-07-23 stsp err = got_error_from_errno("fflush");
4339 fa3cef63 2020-07-23 stsp goto done;
4340 fa3cef63 2020-07-23 stsp }
4341 fa3cef63 2020-07-23 stsp rewind(f2);
4342 33aa809d 2019-08-08 stsp }
4343 33aa809d 2019-08-08 stsp
4344 33aa809d 2019-08-08 stsp err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
4345 33aa809d 2019-08-08 stsp if (err)
4346 33aa809d 2019-08-08 stsp goto done;
4347 33aa809d 2019-08-08 stsp
4348 e635744c 2019-08-08 stsp err = got_opentemp_named(&path1, &f1, "got-patched-blob");
4349 33aa809d 2019-08-08 stsp if (err)
4350 33aa809d 2019-08-08 stsp goto done;
4351 33aa809d 2019-08-08 stsp
4352 33aa809d 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
4353 33aa809d 2019-08-08 stsp if (err)
4354 33aa809d 2019-08-08 stsp goto done;
4355 33aa809d 2019-08-08 stsp
4356 64453f7e 2020-11-21 stsp err = got_diff_files(&diffreg_result, f1, id_str, f2, path2, 3, 0, 1,
4357 fe621944 2020-11-10 stsp NULL);
4358 33aa809d 2019-08-08 stsp if (err)
4359 33aa809d 2019-08-08 stsp goto done;
4360 33aa809d 2019-08-08 stsp
4361 e635744c 2019-08-08 stsp err = got_opentemp_named(path_outfile, &outfile, "got-patched-content");
4362 33aa809d 2019-08-08 stsp if (err)
4363 33aa809d 2019-08-08 stsp goto done;
4364 33aa809d 2019-08-08 stsp
4365 33aa809d 2019-08-08 stsp if (fseek(f1, 0L, SEEK_SET) == -1)
4366 33aa809d 2019-08-08 stsp return got_ferror(f1, GOT_ERR_IO);
4367 33aa809d 2019-08-08 stsp if (fseek(f2, 0L, SEEK_SET) == -1)
4368 33aa809d 2019-08-08 stsp return got_ferror(f2, GOT_ERR_IO);
4369 fe621944 2020-11-10 stsp
4370 fe621944 2020-11-10 stsp /* Count the number of actual changes in the diff result. */
4371 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4372 fe621944 2020-11-10 stsp struct diff_chunk_context cc = {};
4373 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, &nchunks_used,
4374 fe621944 2020-11-10 stsp diffreg_result->result, n, 0);
4375 fe621944 2020-11-10 stsp nchanges++;
4376 fe621944 2020-11-10 stsp }
4377 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4378 33aa809d 2019-08-08 stsp int choice;
4379 fe621944 2020-11-10 stsp err = apply_or_reject_change(&choice, &nchunks_used,
4380 fe621944 2020-11-10 stsp diffreg_result->result, n, relpath, f1, f2,
4381 fe621944 2020-11-10 stsp &line_cur1, &line_cur2,
4382 e635744c 2019-08-08 stsp reverse_patch ? NULL : outfile,
4383 e635744c 2019-08-08 stsp reverse_patch ? outfile : NULL,
4384 fe621944 2020-11-10 stsp ++i, nchanges, patch_cb, patch_arg);
4385 33aa809d 2019-08-08 stsp if (err)
4386 33aa809d 2019-08-08 stsp goto done;
4387 33aa809d 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_YES)
4388 33aa809d 2019-08-08 stsp have_content = 1;
4389 33aa809d 2019-08-08 stsp else if (choice == GOT_PATCH_CHOICE_QUIT)
4390 33aa809d 2019-08-08 stsp break;
4391 33aa809d 2019-08-08 stsp }
4392 1ebedb77 2019-10-19 stsp if (have_content) {
4393 f1e81a05 2019-08-10 stsp err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
4394 f1e81a05 2019-08-10 stsp reverse_patch ? NULL : outfile,
4395 f1e81a05 2019-08-10 stsp reverse_patch ? outfile : NULL);
4396 1ebedb77 2019-10-19 stsp if (err)
4397 1ebedb77 2019-10-19 stsp goto done;
4398 1ebedb77 2019-10-19 stsp
4399 fa3cef63 2020-07-23 stsp if (!S_ISLNK(sb2.st_mode)) {
4400 3818e3c4 2020-11-01 naddy if (fchmod(fileno(outfile), sb2.st_mode) == -1) {
4401 3818e3c4 2020-11-01 naddy err = got_error_from_errno2("fchmod", path2);
4402 fa3cef63 2020-07-23 stsp goto done;
4403 fa3cef63 2020-07-23 stsp }
4404 1ebedb77 2019-10-19 stsp }
4405 1ebedb77 2019-10-19 stsp }
4406 33aa809d 2019-08-08 stsp done:
4407 33aa809d 2019-08-08 stsp free(id_str);
4408 33aa809d 2019-08-08 stsp if (blob)
4409 33aa809d 2019-08-08 stsp got_object_blob_close(blob);
4410 fe621944 2020-11-10 stsp free_err = got_diffreg_result_free(diffreg_result);
4411 fe621944 2020-11-10 stsp if (err == NULL)
4412 fe621944 2020-11-10 stsp err = free_err;
4413 33aa809d 2019-08-08 stsp if (f1 && fclose(f1) == EOF && err == NULL)
4414 33aa809d 2019-08-08 stsp err = got_error_from_errno2("fclose", path1);
4415 33aa809d 2019-08-08 stsp if (f2 && fclose(f2) == EOF && err == NULL)
4416 33aa809d 2019-08-08 stsp err = got_error_from_errno2("fclose", path2);
4417 1ebedb77 2019-10-19 stsp if (fd2 != -1 && close(fd2) == -1 && err == NULL)
4418 1ebedb77 2019-10-19 stsp err = got_error_from_errno2("close", path2);
4419 33aa809d 2019-08-08 stsp if (outfile && fclose(outfile) == EOF && err == NULL)
4420 33aa809d 2019-08-08 stsp err = got_error_from_errno2("fclose", *path_outfile);
4421 33aa809d 2019-08-08 stsp if (path1 && unlink(path1) == -1 && err == NULL)
4422 33aa809d 2019-08-08 stsp err = got_error_from_errno2("unlink", path1);
4423 33aa809d 2019-08-08 stsp if (err || !have_content) {
4424 33aa809d 2019-08-08 stsp if (*path_outfile && unlink(*path_outfile) == -1 && err == NULL)
4425 33aa809d 2019-08-08 stsp err = got_error_from_errno2("unlink", *path_outfile);
4426 33aa809d 2019-08-08 stsp free(*path_outfile);
4427 33aa809d 2019-08-08 stsp *path_outfile = NULL;
4428 33aa809d 2019-08-08 stsp }
4429 33aa809d 2019-08-08 stsp free(path1);
4430 33aa809d 2019-08-08 stsp return err;
4431 33aa809d 2019-08-08 stsp }
4432 33aa809d 2019-08-08 stsp
4433 33aa809d 2019-08-08 stsp static const struct got_error *
4434 1f1abb7e 2019-08-08 stsp revert_file(void *arg, unsigned char status, unsigned char staged_status,
4435 1f1abb7e 2019-08-08 stsp const char *relpath, struct got_object_id *blob_id,
4436 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4437 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
4438 a129376b 2019-03-28 stsp {
4439 1f1abb7e 2019-08-08 stsp struct revert_file_args *a = arg;
4440 e20a8b6f 2019-06-04 stsp const struct got_error *err = NULL;
4441 1f1abb7e 2019-08-08 stsp char *parent_path = NULL;
4442 e20a8b6f 2019-06-04 stsp struct got_fileindex_entry *ie;
4443 a129376b 2019-03-28 stsp struct got_tree_object *tree = NULL;
4444 e20a8b6f 2019-06-04 stsp struct got_object_id *tree_id = NULL;
4445 24278f30 2019-08-03 stsp const struct got_tree_entry *te = NULL;
4446 e20a8b6f 2019-06-04 stsp char *tree_path = NULL, *te_name;
4447 33aa809d 2019-08-08 stsp char *ondisk_path = NULL, *path_content = NULL;
4448 a129376b 2019-03-28 stsp struct got_blob_object *blob = NULL;
4449 a129376b 2019-03-28 stsp
4450 d3bcc3d1 2019-08-08 stsp /* Reverting a staged deletion is a no-op. */
4451 d3bcc3d1 2019-08-08 stsp if (status == GOT_STATUS_DELETE &&
4452 d3bcc3d1 2019-08-08 stsp staged_status != GOT_STATUS_NO_CHANGE)
4453 d3bcc3d1 2019-08-08 stsp return NULL;
4454 3d69ad8d 2019-08-17 semarie
4455 3d69ad8d 2019-08-17 semarie if (status == GOT_STATUS_UNVERSIONED)
4456 3d69ad8d 2019-08-17 semarie return (*a->progress_cb)(a->progress_arg,
4457 3d69ad8d 2019-08-17 semarie GOT_STATUS_UNVERSIONED, relpath);
4458 d3bcc3d1 2019-08-08 stsp
4459 1f1abb7e 2019-08-08 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
4460 65084dad 2019-08-08 stsp if (ie == NULL)
4461 63f810e6 2020-02-29 stsp return got_error_path(relpath, GOT_ERR_BAD_PATH);
4462 a129376b 2019-03-28 stsp
4463 a129376b 2019-03-28 stsp /* Construct in-repository path of tree which contains this blob. */
4464 a129376b 2019-03-28 stsp err = got_path_dirname(&parent_path, ie->path);
4465 a129376b 2019-03-28 stsp if (err) {
4466 a129376b 2019-03-28 stsp if (err->code != GOT_ERR_BAD_PATH)
4467 a129376b 2019-03-28 stsp goto done;
4468 e20a8b6f 2019-06-04 stsp parent_path = strdup("/");
4469 e20a8b6f 2019-06-04 stsp if (parent_path == NULL) {
4470 e20a8b6f 2019-06-04 stsp err = got_error_from_errno("strdup");
4471 e20a8b6f 2019-06-04 stsp goto done;
4472 e20a8b6f 2019-06-04 stsp }
4473 a129376b 2019-03-28 stsp }
4474 1f1abb7e 2019-08-08 stsp if (got_path_is_root_dir(a->worktree->path_prefix)) {
4475 a129376b 2019-03-28 stsp tree_path = strdup(parent_path);
4476 a129376b 2019-03-28 stsp if (tree_path == NULL) {
4477 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
4478 a129376b 2019-03-28 stsp goto done;
4479 a129376b 2019-03-28 stsp }
4480 a129376b 2019-03-28 stsp } else {
4481 a129376b 2019-03-28 stsp if (got_path_is_root_dir(parent_path)) {
4482 1f1abb7e 2019-08-08 stsp tree_path = strdup(a->worktree->path_prefix);
4483 a129376b 2019-03-28 stsp if (tree_path == NULL) {
4484 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
4485 a129376b 2019-03-28 stsp goto done;
4486 a129376b 2019-03-28 stsp }
4487 a129376b 2019-03-28 stsp } else {
4488 a129376b 2019-03-28 stsp if (asprintf(&tree_path, "%s/%s",
4489 1f1abb7e 2019-08-08 stsp a->worktree->path_prefix, parent_path) == -1) {
4490 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4491 a129376b 2019-03-28 stsp goto done;
4492 a129376b 2019-03-28 stsp }
4493 a129376b 2019-03-28 stsp }
4494 a129376b 2019-03-28 stsp }
4495 a129376b 2019-03-28 stsp
4496 1f1abb7e 2019-08-08 stsp err = got_object_id_by_path(&tree_id, a->repo,
4497 1f1abb7e 2019-08-08 stsp a->worktree->base_commit_id, tree_path);
4498 a9fa2909 2019-07-27 stsp if (err) {
4499 a9fa2909 2019-07-27 stsp if (!(err->code == GOT_ERR_NO_TREE_ENTRY &&
4500 24278f30 2019-08-03 stsp (status == GOT_STATUS_ADD ||
4501 24278f30 2019-08-03 stsp staged_status == GOT_STATUS_ADD)))
4502 a9fa2909 2019-07-27 stsp goto done;
4503 a9fa2909 2019-07-27 stsp } else {
4504 1f1abb7e 2019-08-08 stsp err = got_object_open_as_tree(&tree, a->repo, tree_id);
4505 a9fa2909 2019-07-27 stsp if (err)
4506 a9fa2909 2019-07-27 stsp goto done;
4507 a9fa2909 2019-07-27 stsp
4508 1233e6b6 2020-10-19 stsp err = got_path_basename(&te_name, ie->path);
4509 1233e6b6 2020-10-19 stsp if (err)
4510 a9fa2909 2019-07-27 stsp goto done;
4511 a9fa2909 2019-07-27 stsp
4512 a9fa2909 2019-07-27 stsp te = got_object_tree_find_entry(tree, te_name);
4513 1233e6b6 2020-10-19 stsp free(te_name);
4514 24278f30 2019-08-03 stsp if (te == NULL && status != GOT_STATUS_ADD &&
4515 24278f30 2019-08-03 stsp staged_status != GOT_STATUS_ADD) {
4516 b66cd6f3 2020-07-31 stsp err = got_error_path(ie->path, GOT_ERR_NO_TREE_ENTRY);
4517 a9fa2909 2019-07-27 stsp goto done;
4518 a9fa2909 2019-07-27 stsp }
4519 a129376b 2019-03-28 stsp }
4520 a129376b 2019-03-28 stsp
4521 a129376b 2019-03-28 stsp switch (status) {
4522 a129376b 2019-03-28 stsp case GOT_STATUS_ADD:
4523 33aa809d 2019-08-08 stsp if (a->patch_cb) {
4524 33aa809d 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
4525 33aa809d 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
4526 33aa809d 2019-08-08 stsp status, ie->path, NULL, 1, 1);
4527 33aa809d 2019-08-08 stsp if (err)
4528 33aa809d 2019-08-08 stsp goto done;
4529 33aa809d 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES)
4530 33aa809d 2019-08-08 stsp break;
4531 33aa809d 2019-08-08 stsp }
4532 1f1abb7e 2019-08-08 stsp err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_REVERT,
4533 1f1abb7e 2019-08-08 stsp ie->path);
4534 1ee397ad 2019-07-12 stsp if (err)
4535 1ee397ad 2019-07-12 stsp goto done;
4536 1f1abb7e 2019-08-08 stsp got_fileindex_entry_remove(a->fileindex, ie);
4537 a129376b 2019-03-28 stsp break;
4538 a129376b 2019-03-28 stsp case GOT_STATUS_DELETE:
4539 33aa809d 2019-08-08 stsp if (a->patch_cb) {
4540 33aa809d 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
4541 33aa809d 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
4542 33aa809d 2019-08-08 stsp status, ie->path, NULL, 1, 1);
4543 33aa809d 2019-08-08 stsp if (err)
4544 33aa809d 2019-08-08 stsp goto done;
4545 33aa809d 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES)
4546 33aa809d 2019-08-08 stsp break;
4547 33aa809d 2019-08-08 stsp }
4548 33aa809d 2019-08-08 stsp /* fall through */
4549 a129376b 2019-03-28 stsp case GOT_STATUS_MODIFY:
4550 1ebedb77 2019-10-19 stsp case GOT_STATUS_MODE_CHANGE:
4551 a129376b 2019-03-28 stsp case GOT_STATUS_CONFLICT:
4552 e20a8b6f 2019-06-04 stsp case GOT_STATUS_MISSING: {
4553 e20a8b6f 2019-06-04 stsp struct got_object_id id;
4554 24278f30 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
4555 24278f30 2019-08-03 stsp staged_status == GOT_STATUS_MODIFY) {
4556 24278f30 2019-08-03 stsp memcpy(id.sha1, ie->staged_blob_sha1,
4557 24278f30 2019-08-03 stsp SHA1_DIGEST_LENGTH);
4558 24278f30 2019-08-03 stsp } else
4559 24278f30 2019-08-03 stsp memcpy(id.sha1, ie->blob_sha1,
4560 24278f30 2019-08-03 stsp SHA1_DIGEST_LENGTH);
4561 1f1abb7e 2019-08-08 stsp err = got_object_open_as_blob(&blob, a->repo, &id, 8192);
4562 a129376b 2019-03-28 stsp if (err)
4563 65084dad 2019-08-08 stsp goto done;
4564 65084dad 2019-08-08 stsp
4565 65084dad 2019-08-08 stsp if (asprintf(&ondisk_path, "%s/%s",
4566 65084dad 2019-08-08 stsp got_worktree_get_root_path(a->worktree), relpath) == -1) {
4567 65084dad 2019-08-08 stsp err = got_error_from_errno("asprintf");
4568 a129376b 2019-03-28 stsp goto done;
4569 65084dad 2019-08-08 stsp }
4570 65084dad 2019-08-08 stsp
4571 33aa809d 2019-08-08 stsp if (a->patch_cb && (status == GOT_STATUS_MODIFY ||
4572 33aa809d 2019-08-08 stsp status == GOT_STATUS_CONFLICT)) {
4573 369fd7e5 2020-07-23 stsp int is_bad_symlink = 0;
4574 e635744c 2019-08-08 stsp err = create_patched_content(&path_content, 1, &id,
4575 12463d8b 2019-12-13 stsp ondisk_path, dirfd, de_name, ie->path, a->repo,
4576 33aa809d 2019-08-08 stsp a->patch_cb, a->patch_arg);
4577 33aa809d 2019-08-08 stsp if (err || path_content == NULL)
4578 33aa809d 2019-08-08 stsp break;
4579 369fd7e5 2020-07-23 stsp if (te && S_ISLNK(te->mode)) {
4580 369fd7e5 2020-07-23 stsp if (unlink(path_content) == -1) {
4581 369fd7e5 2020-07-23 stsp err = got_error_from_errno2("unlink",
4582 369fd7e5 2020-07-23 stsp path_content);
4583 369fd7e5 2020-07-23 stsp break;
4584 369fd7e5 2020-07-23 stsp }
4585 369fd7e5 2020-07-23 stsp err = install_symlink(&is_bad_symlink,
4586 369fd7e5 2020-07-23 stsp a->worktree, ondisk_path, ie->path,
4587 369fd7e5 2020-07-23 stsp blob, 0, 1, 0, a->repo,
4588 369fd7e5 2020-07-23 stsp a->progress_cb, a->progress_arg);
4589 369fd7e5 2020-07-23 stsp } else {
4590 369fd7e5 2020-07-23 stsp if (rename(path_content, ondisk_path) == -1) {
4591 369fd7e5 2020-07-23 stsp err = got_error_from_errno3("rename",
4592 369fd7e5 2020-07-23 stsp path_content, ondisk_path);
4593 369fd7e5 2020-07-23 stsp goto done;
4594 369fd7e5 2020-07-23 stsp }
4595 33aa809d 2019-08-08 stsp }
4596 33aa809d 2019-08-08 stsp } else {
4597 2e1fa222 2020-07-23 stsp int is_bad_symlink = 0;
4598 2e1fa222 2020-07-23 stsp if (te && S_ISLNK(te->mode)) {
4599 2e1fa222 2020-07-23 stsp err = install_symlink(&is_bad_symlink,
4600 2e1fa222 2020-07-23 stsp a->worktree, ondisk_path, ie->path,
4601 c90c8ce3 2020-07-23 stsp blob, 0, 1, 0, a->repo,
4602 2e1fa222 2020-07-23 stsp a->progress_cb, a->progress_arg);
4603 2e1fa222 2020-07-23 stsp } else {
4604 2e1fa222 2020-07-23 stsp err = install_blob(a->worktree, ondisk_path,
4605 2e1fa222 2020-07-23 stsp ie->path,
4606 2e1fa222 2020-07-23 stsp te ? te->mode : GOT_DEFAULT_FILE_MODE,
4607 3b9f0f87 2020-07-23 stsp got_fileindex_perms_to_st(ie), blob,
4608 3b9f0f87 2020-07-23 stsp 0, 1, 0, 0, a->repo,
4609 3b9f0f87 2020-07-23 stsp a->progress_cb, a->progress_arg);
4610 2e1fa222 2020-07-23 stsp }
4611 a129376b 2019-03-28 stsp if (err)
4612 a129376b 2019-03-28 stsp goto done;
4613 1ebedb77 2019-10-19 stsp if (status == GOT_STATUS_DELETE ||
4614 1ebedb77 2019-10-19 stsp status == GOT_STATUS_MODE_CHANGE) {
4615 054041d0 2020-06-24 stsp err = got_fileindex_entry_update(ie,
4616 437adc9d 2020-12-10 yzhong a->worktree->root_fd, relpath,
4617 437adc9d 2020-12-10 yzhong blob->id.sha1,
4618 054041d0 2020-06-24 stsp a->worktree->base_commit_id->sha1, 1);
4619 2e1fa222 2020-07-23 stsp if (err)
4620 2e1fa222 2020-07-23 stsp goto done;
4621 2e1fa222 2020-07-23 stsp }
4622 2e1fa222 2020-07-23 stsp if (is_bad_symlink) {
4623 6131ab45 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
4624 2e1fa222 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
4625 33aa809d 2019-08-08 stsp }
4626 a129376b 2019-03-28 stsp }
4627 a129376b 2019-03-28 stsp break;
4628 e20a8b6f 2019-06-04 stsp }
4629 a129376b 2019-03-28 stsp default:
4630 1f1abb7e 2019-08-08 stsp break;
4631 a129376b 2019-03-28 stsp }
4632 a129376b 2019-03-28 stsp done:
4633 1f1abb7e 2019-08-08 stsp free(ondisk_path);
4634 33aa809d 2019-08-08 stsp free(path_content);
4635 e20a8b6f 2019-06-04 stsp free(parent_path);
4636 a129376b 2019-03-28 stsp free(tree_path);
4637 a129376b 2019-03-28 stsp if (blob)
4638 a129376b 2019-03-28 stsp got_object_blob_close(blob);
4639 a129376b 2019-03-28 stsp if (tree)
4640 a129376b 2019-03-28 stsp got_object_tree_close(tree);
4641 a129376b 2019-03-28 stsp free(tree_id);
4642 e20a8b6f 2019-06-04 stsp return err;
4643 e20a8b6f 2019-06-04 stsp }
4644 e20a8b6f 2019-06-04 stsp
4645 e20a8b6f 2019-06-04 stsp const struct got_error *
4646 e20a8b6f 2019-06-04 stsp got_worktree_revert(struct got_worktree *worktree,
4647 2163d960 2019-08-08 stsp struct got_pathlist_head *paths,
4648 e20a8b6f 2019-06-04 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
4649 33aa809d 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
4650 e20a8b6f 2019-06-04 stsp struct got_repository *repo)
4651 e20a8b6f 2019-06-04 stsp {
4652 e20a8b6f 2019-06-04 stsp struct got_fileindex *fileindex = NULL;
4653 e20a8b6f 2019-06-04 stsp char *fileindex_path = NULL;
4654 e20a8b6f 2019-06-04 stsp const struct got_error *err = NULL, *unlockerr = NULL;
4655 e20a8b6f 2019-06-04 stsp const struct got_error *sync_err = NULL;
4656 e20a8b6f 2019-06-04 stsp struct got_pathlist_entry *pe;
4657 1f1abb7e 2019-08-08 stsp struct revert_file_args rfa;
4658 e20a8b6f 2019-06-04 stsp
4659 e20a8b6f 2019-06-04 stsp err = lock_worktree(worktree, LOCK_EX);
4660 e20a8b6f 2019-06-04 stsp if (err)
4661 e20a8b6f 2019-06-04 stsp return err;
4662 e20a8b6f 2019-06-04 stsp
4663 3605a814 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
4664 e20a8b6f 2019-06-04 stsp if (err)
4665 e20a8b6f 2019-06-04 stsp goto done;
4666 e20a8b6f 2019-06-04 stsp
4667 1f1abb7e 2019-08-08 stsp rfa.worktree = worktree;
4668 1f1abb7e 2019-08-08 stsp rfa.fileindex = fileindex;
4669 1f1abb7e 2019-08-08 stsp rfa.progress_cb = progress_cb;
4670 1f1abb7e 2019-08-08 stsp rfa.progress_arg = progress_arg;
4671 33aa809d 2019-08-08 stsp rfa.patch_cb = patch_cb;
4672 33aa809d 2019-08-08 stsp rfa.patch_arg = patch_arg;
4673 1f1abb7e 2019-08-08 stsp rfa.repo = repo;
4674 2163d960 2019-08-08 stsp TAILQ_FOREACH(pe, paths, entry) {
4675 1f1abb7e 2019-08-08 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
4676 f2a9dc41 2019-12-13 tracey revert_file, &rfa, NULL, NULL, 0, 0);
4677 e20a8b6f 2019-06-04 stsp if (err)
4678 af12c6b9 2019-06-04 stsp break;
4679 e20a8b6f 2019-06-04 stsp }
4680 e20a8b6f 2019-06-04 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
4681 e20a8b6f 2019-06-04 stsp if (sync_err && err == NULL)
4682 e20a8b6f 2019-06-04 stsp err = sync_err;
4683 af12c6b9 2019-06-04 stsp done:
4684 fb399478 2019-07-12 stsp free(fileindex_path);
4685 a129376b 2019-03-28 stsp if (fileindex)
4686 a129376b 2019-03-28 stsp got_fileindex_free(fileindex);
4687 a129376b 2019-03-28 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
4688 a129376b 2019-03-28 stsp if (unlockerr && err == NULL)
4689 a129376b 2019-03-28 stsp err = unlockerr;
4690 c4296144 2019-05-09 stsp return err;
4691 c4296144 2019-05-09 stsp }
4692 c4296144 2019-05-09 stsp
4693 cf066bf8 2019-05-09 stsp static void
4694 33ad4cbe 2019-05-12 jcs free_commitable(struct got_commitable *ct)
4695 cf066bf8 2019-05-09 stsp {
4696 24519714 2019-05-09 stsp free(ct->path);
4697 44d03001 2019-05-09 stsp free(ct->in_repo_path);
4698 768aea60 2019-05-09 stsp free(ct->ondisk_path);
4699 e75eb4da 2019-05-10 stsp free(ct->blob_id);
4700 c4e12a88 2019-05-13 stsp free(ct->base_blob_id);
4701 f0b75401 2019-08-03 stsp free(ct->staged_blob_id);
4702 b416585c 2019-05-13 stsp free(ct->base_commit_id);
4703 cf066bf8 2019-05-09 stsp free(ct);
4704 cf066bf8 2019-05-09 stsp }
4705 24519714 2019-05-09 stsp
4706 ed175427 2019-05-09 stsp struct collect_commitables_arg {
4707 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths;
4708 24519714 2019-05-09 stsp struct got_repository *repo;
4709 24519714 2019-05-09 stsp struct got_worktree *worktree;
4710 0aeb8099 2020-07-23 stsp struct got_fileindex *fileindex;
4711 5f8a88c6 2019-08-03 stsp int have_staged_files;
4712 35213c7c 2020-07-23 stsp int allow_bad_symlinks;
4713 24519714 2019-05-09 stsp };
4714 cf066bf8 2019-05-09 stsp
4715 c4296144 2019-05-09 stsp static const struct got_error *
4716 88d0e355 2019-08-03 stsp collect_commitables(void *arg, unsigned char status,
4717 88d0e355 2019-08-03 stsp unsigned char staged_status, const char *relpath,
4718 537ac44b 2019-08-03 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
4719 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
4720 c4296144 2019-05-09 stsp {
4721 ed175427 2019-05-09 stsp struct collect_commitables_arg *a = arg;
4722 c4296144 2019-05-09 stsp const struct got_error *err = NULL;
4723 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
4724 c4296144 2019-05-09 stsp struct got_pathlist_entry *new = NULL;
4725 036813ee 2019-05-09 stsp char *parent_path = NULL, *path = NULL;
4726 768aea60 2019-05-09 stsp struct stat sb;
4727 c4296144 2019-05-09 stsp
4728 5f8a88c6 2019-08-03 stsp if (a->have_staged_files) {
4729 5f8a88c6 2019-08-03 stsp if (staged_status != GOT_STATUS_MODIFY &&
4730 5f8a88c6 2019-08-03 stsp staged_status != GOT_STATUS_ADD &&
4731 5f8a88c6 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
4732 5f8a88c6 2019-08-03 stsp return NULL;
4733 5f8a88c6 2019-08-03 stsp } else {
4734 5f8a88c6 2019-08-03 stsp if (status == GOT_STATUS_CONFLICT)
4735 5f8a88c6 2019-08-03 stsp return got_error(GOT_ERR_COMMIT_CONFLICT);
4736 c4296144 2019-05-09 stsp
4737 5f8a88c6 2019-08-03 stsp if (status != GOT_STATUS_MODIFY &&
4738 1ebedb77 2019-10-19 stsp status != GOT_STATUS_MODE_CHANGE &&
4739 5f8a88c6 2019-08-03 stsp status != GOT_STATUS_ADD &&
4740 5f8a88c6 2019-08-03 stsp status != GOT_STATUS_DELETE)
4741 5f8a88c6 2019-08-03 stsp return NULL;
4742 5f8a88c6 2019-08-03 stsp }
4743 0b5cc0d6 2019-05-09 stsp
4744 036813ee 2019-05-09 stsp if (asprintf(&path, "/%s", relpath) == -1) {
4745 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4746 036813ee 2019-05-09 stsp goto done;
4747 036813ee 2019-05-09 stsp }
4748 036813ee 2019-05-09 stsp if (strcmp(path, "/") == 0) {
4749 036813ee 2019-05-09 stsp parent_path = strdup("");
4750 69960a46 2019-05-09 stsp if (parent_path == NULL)
4751 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
4752 69960a46 2019-05-09 stsp } else {
4753 69960a46 2019-05-09 stsp err = got_path_dirname(&parent_path, path);
4754 69960a46 2019-05-09 stsp if (err)
4755 69960a46 2019-05-09 stsp return err;
4756 69960a46 2019-05-09 stsp }
4757 c4296144 2019-05-09 stsp
4758 036813ee 2019-05-09 stsp ct = calloc(1, sizeof(*ct));
4759 cf066bf8 2019-05-09 stsp if (ct == NULL) {
4760 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
4761 c4296144 2019-05-09 stsp goto done;
4762 768aea60 2019-05-09 stsp }
4763 768aea60 2019-05-09 stsp
4764 768aea60 2019-05-09 stsp if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
4765 768aea60 2019-05-09 stsp relpath) == -1) {
4766 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4767 768aea60 2019-05-09 stsp goto done;
4768 768aea60 2019-05-09 stsp }
4769 0aeb8099 2020-07-23 stsp
4770 0aeb8099 2020-07-23 stsp if (staged_status == GOT_STATUS_ADD ||
4771 0aeb8099 2020-07-23 stsp staged_status == GOT_STATUS_MODIFY) {
4772 0aeb8099 2020-07-23 stsp struct got_fileindex_entry *ie;
4773 0aeb8099 2020-07-23 stsp ie = got_fileindex_entry_get(a->fileindex, path, strlen(path));
4774 0aeb8099 2020-07-23 stsp switch (got_fileindex_entry_staged_filetype_get(ie)) {
4775 0aeb8099 2020-07-23 stsp case GOT_FILEIDX_MODE_REGULAR_FILE:
4776 0aeb8099 2020-07-23 stsp case GOT_FILEIDX_MODE_BAD_SYMLINK:
4777 0aeb8099 2020-07-23 stsp ct->mode = S_IFREG;
4778 0aeb8099 2020-07-23 stsp break;
4779 0aeb8099 2020-07-23 stsp case GOT_FILEIDX_MODE_SYMLINK:
4780 0aeb8099 2020-07-23 stsp ct->mode = S_IFLNK;
4781 0aeb8099 2020-07-23 stsp break;
4782 0aeb8099 2020-07-23 stsp default:
4783 0aeb8099 2020-07-23 stsp err = got_error_path(path, GOT_ERR_BAD_FILETYPE);
4784 0aeb8099 2020-07-23 stsp goto done;
4785 0aeb8099 2020-07-23 stsp }
4786 0aeb8099 2020-07-23 stsp ct->mode |= got_fileindex_entry_perms_get(ie);
4787 0aeb8099 2020-07-23 stsp } else if (status != GOT_STATUS_DELETE &&
4788 0aeb8099 2020-07-23 stsp staged_status != GOT_STATUS_DELETE) {
4789 12463d8b 2019-12-13 stsp if (dirfd != -1) {
4790 12463d8b 2019-12-13 stsp if (fstatat(dirfd, de_name, &sb,
4791 12463d8b 2019-12-13 stsp AT_SYMLINK_NOFOLLOW) == -1) {
4792 82223ffc 2019-12-13 stsp err = got_error_from_errno2("fstatat",
4793 12463d8b 2019-12-13 stsp ct->ondisk_path);
4794 12463d8b 2019-12-13 stsp goto done;
4795 12463d8b 2019-12-13 stsp }
4796 12463d8b 2019-12-13 stsp } else if (lstat(ct->ondisk_path, &sb) == -1) {
4797 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", ct->ondisk_path);
4798 768aea60 2019-05-09 stsp goto done;
4799 768aea60 2019-05-09 stsp }
4800 768aea60 2019-05-09 stsp ct->mode = sb.st_mode;
4801 c4296144 2019-05-09 stsp }
4802 c4296144 2019-05-09 stsp
4803 44d03001 2019-05-09 stsp if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
4804 44d03001 2019-05-09 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
4805 44d03001 2019-05-09 stsp relpath) == -1) {
4806 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4807 44d03001 2019-05-09 stsp goto done;
4808 44d03001 2019-05-09 stsp }
4809 44d03001 2019-05-09 stsp
4810 35213c7c 2020-07-23 stsp if (S_ISLNK(ct->mode) && staged_status == GOT_STATUS_NO_CHANGE &&
4811 35213c7c 2020-07-23 stsp status == GOT_STATUS_ADD && !a->allow_bad_symlinks) {
4812 35213c7c 2020-07-23 stsp int is_bad_symlink;
4813 35213c7c 2020-07-23 stsp char target_path[PATH_MAX];
4814 35213c7c 2020-07-23 stsp ssize_t target_len;
4815 35213c7c 2020-07-23 stsp target_len = readlink(ct->ondisk_path, target_path,
4816 35213c7c 2020-07-23 stsp sizeof(target_path));
4817 35213c7c 2020-07-23 stsp if (target_len == -1) {
4818 35213c7c 2020-07-23 stsp err = got_error_from_errno2("readlink",
4819 35213c7c 2020-07-23 stsp ct->ondisk_path);
4820 35213c7c 2020-07-23 stsp goto done;
4821 35213c7c 2020-07-23 stsp }
4822 35213c7c 2020-07-23 stsp err = is_bad_symlink_target(&is_bad_symlink, target_path,
4823 35213c7c 2020-07-23 stsp target_len, ct->ondisk_path, a->worktree->root_path);
4824 35213c7c 2020-07-23 stsp if (err)
4825 35213c7c 2020-07-23 stsp goto done;
4826 35213c7c 2020-07-23 stsp if (is_bad_symlink) {
4827 35213c7c 2020-07-23 stsp err = got_error_path(ct->ondisk_path,
4828 35213c7c 2020-07-23 stsp GOT_ERR_BAD_SYMLINK);
4829 35213c7c 2020-07-23 stsp goto done;
4830 35213c7c 2020-07-23 stsp }
4831 35213c7c 2020-07-23 stsp }
4832 35213c7c 2020-07-23 stsp
4833 35213c7c 2020-07-23 stsp
4834 cf066bf8 2019-05-09 stsp ct->status = status;
4835 5f8a88c6 2019-08-03 stsp ct->staged_status = staged_status;
4836 e75eb4da 2019-05-10 stsp ct->blob_id = NULL; /* will be filled in when blob gets created */
4837 5f8a88c6 2019-08-03 stsp if (ct->status != GOT_STATUS_ADD &&
4838 5f8a88c6 2019-08-03 stsp ct->staged_status != GOT_STATUS_ADD) {
4839 016a88dd 2019-05-13 stsp ct->base_blob_id = got_object_id_dup(blob_id);
4840 c4e12a88 2019-05-13 stsp if (ct->base_blob_id == NULL) {
4841 b416585c 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4842 b416585c 2019-05-13 stsp goto done;
4843 b416585c 2019-05-13 stsp }
4844 b416585c 2019-05-13 stsp ct->base_commit_id = got_object_id_dup(commit_id);
4845 b416585c 2019-05-13 stsp if (ct->base_commit_id == NULL) {
4846 f0b75401 2019-08-03 stsp err = got_error_from_errno("got_object_id_dup");
4847 f0b75401 2019-08-03 stsp goto done;
4848 f0b75401 2019-08-03 stsp }
4849 f0b75401 2019-08-03 stsp }
4850 f0b75401 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_ADD ||
4851 f0b75401 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY) {
4852 f0b75401 2019-08-03 stsp ct->staged_blob_id = got_object_id_dup(staged_blob_id);
4853 f0b75401 2019-08-03 stsp if (ct->staged_blob_id == NULL) {
4854 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4855 036813ee 2019-05-09 stsp goto done;
4856 036813ee 2019-05-09 stsp }
4857 ca2503ea 2019-05-09 stsp }
4858 24519714 2019-05-09 stsp ct->path = strdup(path);
4859 24519714 2019-05-09 stsp if (ct->path == NULL) {
4860 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
4861 24519714 2019-05-09 stsp goto done;
4862 24519714 2019-05-09 stsp }
4863 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
4864 c4296144 2019-05-09 stsp done:
4865 c42269f6 2019-05-09 stsp if (ct && (err || new == NULL))
4866 ed175427 2019-05-09 stsp free_commitable(ct);
4867 24519714 2019-05-09 stsp free(parent_path);
4868 036813ee 2019-05-09 stsp free(path);
4869 a129376b 2019-03-28 stsp return err;
4870 a129376b 2019-03-28 stsp }
4871 c4296144 2019-05-09 stsp
4872 ba580f68 2020-03-22 stsp static const struct got_error *write_tree(struct got_object_id **, int *,
4873 036813ee 2019-05-09 stsp struct got_tree_object *, const char *, struct got_pathlist_head *,
4874 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
4875 036813ee 2019-05-09 stsp struct got_repository *);
4876 ed175427 2019-05-09 stsp
4877 ed175427 2019-05-09 stsp static const struct got_error *
4878 ba580f68 2020-03-22 stsp write_subtree(struct got_object_id **new_subtree_id, int *nentries,
4879 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *parent_path,
4880 afa376bf 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
4881 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
4882 afa376bf 2019-05-09 stsp struct got_repository *repo)
4883 ed175427 2019-05-09 stsp {
4884 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
4885 036813ee 2019-05-09 stsp struct got_tree_object *subtree;
4886 036813ee 2019-05-09 stsp char *subpath;
4887 ed175427 2019-05-09 stsp
4888 036813ee 2019-05-09 stsp if (asprintf(&subpath, "%s%s%s", parent_path,
4889 baa7dcfa 2019-05-09 stsp got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
4890 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
4891 ed175427 2019-05-09 stsp
4892 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, repo, &te->id);
4893 ed175427 2019-05-09 stsp if (err)
4894 ed175427 2019-05-09 stsp return err;
4895 ed175427 2019-05-09 stsp
4896 ba580f68 2020-03-22 stsp err = write_tree(new_subtree_id, nentries, subtree, subpath,
4897 ba580f68 2020-03-22 stsp commitable_paths, status_cb, status_arg, repo);
4898 036813ee 2019-05-09 stsp got_object_tree_close(subtree);
4899 036813ee 2019-05-09 stsp free(subpath);
4900 036813ee 2019-05-09 stsp return err;
4901 036813ee 2019-05-09 stsp }
4902 ed175427 2019-05-09 stsp
4903 036813ee 2019-05-09 stsp static const struct got_error *
4904 33ad4cbe 2019-05-12 jcs match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
4905 036813ee 2019-05-09 stsp {
4906 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
4907 036813ee 2019-05-09 stsp char *ct_parent_path = NULL;
4908 ed175427 2019-05-09 stsp
4909 036813ee 2019-05-09 stsp *match = 0;
4910 ed175427 2019-05-09 stsp
4911 e0233cea 2019-07-25 stsp if (strchr(ct->in_repo_path, '/') == NULL) {
4912 0f63689d 2019-05-10 stsp *match = got_path_is_root_dir(path);
4913 0f63689d 2019-05-10 stsp return NULL;
4914 036813ee 2019-05-09 stsp }
4915 0b5cc0d6 2019-05-09 stsp
4916 e0233cea 2019-07-25 stsp err = got_path_dirname(&ct_parent_path, ct->in_repo_path);
4917 0f63689d 2019-05-10 stsp if (err)
4918 0f63689d 2019-05-10 stsp return err;
4919 036813ee 2019-05-09 stsp *match = (strcmp(path, ct_parent_path) == 0);
4920 036813ee 2019-05-09 stsp free(ct_parent_path);
4921 036813ee 2019-05-09 stsp return err;
4922 036813ee 2019-05-09 stsp }
4923 0b5cc0d6 2019-05-09 stsp
4924 768aea60 2019-05-09 stsp static mode_t
4925 33ad4cbe 2019-05-12 jcs get_ct_file_mode(struct got_commitable *ct)
4926 768aea60 2019-05-09 stsp {
4927 3d9a4ec4 2020-07-23 stsp if (S_ISLNK(ct->mode))
4928 3d9a4ec4 2020-07-23 stsp return S_IFLNK;
4929 3d9a4ec4 2020-07-23 stsp
4930 768aea60 2019-05-09 stsp return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
4931 768aea60 2019-05-09 stsp }
4932 768aea60 2019-05-09 stsp
4933 036813ee 2019-05-09 stsp static const struct got_error *
4934 036813ee 2019-05-09 stsp alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
4935 33ad4cbe 2019-05-12 jcs struct got_tree_entry *te, struct got_commitable *ct)
4936 036813ee 2019-05-09 stsp {
4937 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
4938 ca2503ea 2019-05-09 stsp
4939 036813ee 2019-05-09 stsp *new_te = NULL;
4940 0b5cc0d6 2019-05-09 stsp
4941 036813ee 2019-05-09 stsp err = got_object_tree_entry_dup(new_te, te);
4942 036813ee 2019-05-09 stsp if (err)
4943 036813ee 2019-05-09 stsp goto done;
4944 0b5cc0d6 2019-05-09 stsp
4945 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
4946 036813ee 2019-05-09 stsp
4947 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_MODIFY)
4948 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->staged_blob_id,
4949 56e0773d 2019-11-28 stsp sizeof((*new_te)->id));
4950 5f8a88c6 2019-08-03 stsp else
4951 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
4952 036813ee 2019-05-09 stsp done:
4953 036813ee 2019-05-09 stsp if (err && *new_te) {
4954 56e0773d 2019-11-28 stsp free(*new_te);
4955 036813ee 2019-05-09 stsp *new_te = NULL;
4956 036813ee 2019-05-09 stsp }
4957 036813ee 2019-05-09 stsp return err;
4958 036813ee 2019-05-09 stsp }
4959 036813ee 2019-05-09 stsp
4960 036813ee 2019-05-09 stsp static const struct got_error *
4961 036813ee 2019-05-09 stsp alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
4962 33ad4cbe 2019-05-12 jcs struct got_commitable *ct)
4963 036813ee 2019-05-09 stsp {
4964 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
4965 102b254e 2020-10-19 stsp char *ct_name = NULL;
4966 036813ee 2019-05-09 stsp
4967 036813ee 2019-05-09 stsp *new_te = NULL;
4968 036813ee 2019-05-09 stsp
4969 4229330b 2019-05-10 stsp *new_te = calloc(1, sizeof(**new_te));
4970 036813ee 2019-05-09 stsp if (*new_te == NULL)
4971 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
4972 036813ee 2019-05-09 stsp
4973 102b254e 2020-10-19 stsp err = got_path_basename(&ct_name, ct->path);
4974 102b254e 2020-10-19 stsp if (err)
4975 036813ee 2019-05-09 stsp goto done;
4976 56e0773d 2019-11-28 stsp if (strlcpy((*new_te)->name, ct_name, sizeof((*new_te)->name)) >=
4977 56e0773d 2019-11-28 stsp sizeof((*new_te)->name)) {
4978 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
4979 036813ee 2019-05-09 stsp goto done;
4980 036813ee 2019-05-09 stsp }
4981 036813ee 2019-05-09 stsp
4982 768aea60 2019-05-09 stsp (*new_te)->mode = get_ct_file_mode(ct);
4983 036813ee 2019-05-09 stsp
4984 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_ADD)
4985 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->staged_blob_id,
4986 56e0773d 2019-11-28 stsp sizeof((*new_te)->id));
4987 5f8a88c6 2019-08-03 stsp else
4988 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
4989 036813ee 2019-05-09 stsp done:
4990 102b254e 2020-10-19 stsp free(ct_name);
4991 036813ee 2019-05-09 stsp if (err && *new_te) {
4992 56e0773d 2019-11-28 stsp free(*new_te);
4993 036813ee 2019-05-09 stsp *new_te = NULL;
4994 036813ee 2019-05-09 stsp }
4995 036813ee 2019-05-09 stsp return err;
4996 036813ee 2019-05-09 stsp }
4997 036813ee 2019-05-09 stsp
4998 036813ee 2019-05-09 stsp static const struct got_error *
4999 036813ee 2019-05-09 stsp insert_tree_entry(struct got_tree_entry *new_te,
5000 036813ee 2019-05-09 stsp struct got_pathlist_head *paths)
5001 036813ee 2019-05-09 stsp {
5002 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5003 036813ee 2019-05-09 stsp struct got_pathlist_entry *new_pe;
5004 036813ee 2019-05-09 stsp
5005 036813ee 2019-05-09 stsp err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
5006 036813ee 2019-05-09 stsp if (err)
5007 036813ee 2019-05-09 stsp return err;
5008 036813ee 2019-05-09 stsp if (new_pe == NULL)
5009 036813ee 2019-05-09 stsp return got_error(GOT_ERR_TREE_DUP_ENTRY);
5010 036813ee 2019-05-09 stsp return NULL;
5011 afa376bf 2019-05-09 stsp }
5012 afa376bf 2019-05-09 stsp
5013 afa376bf 2019-05-09 stsp static const struct got_error *
5014 33ad4cbe 2019-05-12 jcs report_ct_status(struct got_commitable *ct,
5015 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg)
5016 afa376bf 2019-05-09 stsp {
5017 afa376bf 2019-05-09 stsp const char *ct_path = ct->path;
5018 5f8a88c6 2019-08-03 stsp unsigned char status;
5019 5f8a88c6 2019-08-03 stsp
5020 afa376bf 2019-05-09 stsp while (ct_path[0] == '/')
5021 afa376bf 2019-05-09 stsp ct_path++;
5022 5f8a88c6 2019-08-03 stsp
5023 5f8a88c6 2019-08-03 stsp if (ct->staged_status != GOT_STATUS_NO_CHANGE)
5024 5f8a88c6 2019-08-03 stsp status = ct->staged_status;
5025 5f8a88c6 2019-08-03 stsp else
5026 5f8a88c6 2019-08-03 stsp status = ct->status;
5027 5f8a88c6 2019-08-03 stsp
5028 5f8a88c6 2019-08-03 stsp return (*status_cb)(status_arg, status, GOT_STATUS_NO_CHANGE,
5029 12463d8b 2019-12-13 stsp ct_path, ct->blob_id, NULL, NULL, -1, NULL);
5030 036813ee 2019-05-09 stsp }
5031 036813ee 2019-05-09 stsp
5032 036813ee 2019-05-09 stsp static const struct got_error *
5033 44d03001 2019-05-09 stsp match_modified_subtree(int *modified, struct got_tree_entry *te,
5034 44d03001 2019-05-09 stsp const char *base_tree_path, struct got_pathlist_head *commitable_paths)
5035 44d03001 2019-05-09 stsp {
5036 44d03001 2019-05-09 stsp const struct got_error *err = NULL;
5037 44d03001 2019-05-09 stsp struct got_pathlist_entry *pe;
5038 44d03001 2019-05-09 stsp char *te_path;
5039 44d03001 2019-05-09 stsp
5040 44d03001 2019-05-09 stsp *modified = 0;
5041 44d03001 2019-05-09 stsp
5042 44d03001 2019-05-09 stsp if (asprintf(&te_path, "%s%s%s", base_tree_path,
5043 44d03001 2019-05-09 stsp got_path_is_root_dir(base_tree_path) ? "" : "/",
5044 44d03001 2019-05-09 stsp te->name) == -1)
5045 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5046 44d03001 2019-05-09 stsp
5047 44d03001 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5048 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5049 44d03001 2019-05-09 stsp *modified = got_path_is_child(ct->in_repo_path, te_path,
5050 44d03001 2019-05-09 stsp strlen(te_path));
5051 62d463ca 2020-10-20 naddy if (*modified)
5052 44d03001 2019-05-09 stsp break;
5053 44d03001 2019-05-09 stsp }
5054 44d03001 2019-05-09 stsp
5055 44d03001 2019-05-09 stsp free(te_path);
5056 44d03001 2019-05-09 stsp return err;
5057 44d03001 2019-05-09 stsp }
5058 44d03001 2019-05-09 stsp
5059 44d03001 2019-05-09 stsp static const struct got_error *
5060 33ad4cbe 2019-05-12 jcs match_deleted_or_modified_ct(struct got_commitable **ctp,
5061 036813ee 2019-05-09 stsp struct got_tree_entry *te, const char *base_tree_path,
5062 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths)
5063 036813ee 2019-05-09 stsp {
5064 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5065 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
5066 036813ee 2019-05-09 stsp
5067 036813ee 2019-05-09 stsp *ctp = NULL;
5068 036813ee 2019-05-09 stsp
5069 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5070 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5071 036813ee 2019-05-09 stsp char *ct_name = NULL;
5072 036813ee 2019-05-09 stsp int path_matches;
5073 036813ee 2019-05-09 stsp
5074 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_NO_CHANGE) {
5075 5f8a88c6 2019-08-03 stsp if (ct->status != GOT_STATUS_MODIFY &&
5076 1ebedb77 2019-10-19 stsp ct->status != GOT_STATUS_MODE_CHANGE &&
5077 5f8a88c6 2019-08-03 stsp ct->status != GOT_STATUS_DELETE)
5078 5f8a88c6 2019-08-03 stsp continue;
5079 5f8a88c6 2019-08-03 stsp } else {
5080 5f8a88c6 2019-08-03 stsp if (ct->staged_status != GOT_STATUS_MODIFY &&
5081 5f8a88c6 2019-08-03 stsp ct->staged_status != GOT_STATUS_DELETE)
5082 5f8a88c6 2019-08-03 stsp continue;
5083 5f8a88c6 2019-08-03 stsp }
5084 036813ee 2019-05-09 stsp
5085 56e0773d 2019-11-28 stsp if (got_object_id_cmp(ct->base_blob_id, &te->id) != 0)
5086 036813ee 2019-05-09 stsp continue;
5087 036813ee 2019-05-09 stsp
5088 62d463ca 2020-10-20 naddy err = match_ct_parent_path(&path_matches, ct, base_tree_path);
5089 62d463ca 2020-10-20 naddy if (err)
5090 036813ee 2019-05-09 stsp return err;
5091 036813ee 2019-05-09 stsp if (!path_matches)
5092 036813ee 2019-05-09 stsp continue;
5093 036813ee 2019-05-09 stsp
5094 d34b633e 2020-10-19 stsp err = got_path_basename(&ct_name, pe->path);
5095 d34b633e 2020-10-19 stsp if (err)
5096 d34b633e 2020-10-19 stsp return err;
5097 d34b633e 2020-10-19 stsp
5098 d34b633e 2020-10-19 stsp if (strcmp(te->name, ct_name) != 0) {
5099 d34b633e 2020-10-19 stsp free(ct_name);
5100 036813ee 2019-05-09 stsp continue;
5101 d34b633e 2020-10-19 stsp }
5102 d34b633e 2020-10-19 stsp free(ct_name);
5103 036813ee 2019-05-09 stsp
5104 036813ee 2019-05-09 stsp *ctp = ct;
5105 036813ee 2019-05-09 stsp break;
5106 036813ee 2019-05-09 stsp }
5107 2b496619 2019-07-10 stsp
5108 2b496619 2019-07-10 stsp return err;
5109 2b496619 2019-07-10 stsp }
5110 2b496619 2019-07-10 stsp
5111 2b496619 2019-07-10 stsp static const struct got_error *
5112 2b496619 2019-07-10 stsp make_subtree_for_added_blob(struct got_tree_entry **new_tep,
5113 2b496619 2019-07-10 stsp const char *child_path, const char *path_base_tree,
5114 2b496619 2019-07-10 stsp struct got_pathlist_head *commitable_paths,
5115 2b496619 2019-07-10 stsp got_worktree_status_cb status_cb, void *status_arg,
5116 2b496619 2019-07-10 stsp struct got_repository *repo)
5117 2b496619 2019-07-10 stsp {
5118 2b496619 2019-07-10 stsp const struct got_error *err = NULL;
5119 2b496619 2019-07-10 stsp struct got_tree_entry *new_te;
5120 2b496619 2019-07-10 stsp char *subtree_path;
5121 56e0773d 2019-11-28 stsp struct got_object_id *id = NULL;
5122 ba580f68 2020-03-22 stsp int nentries;
5123 2b496619 2019-07-10 stsp
5124 2b496619 2019-07-10 stsp *new_tep = NULL;
5125 2b496619 2019-07-10 stsp
5126 2b496619 2019-07-10 stsp if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
5127 2b496619 2019-07-10 stsp got_path_is_root_dir(path_base_tree) ? "" : "/",
5128 2b496619 2019-07-10 stsp child_path) == -1)
5129 2b496619 2019-07-10 stsp return got_error_from_errno("asprintf");
5130 036813ee 2019-05-09 stsp
5131 2b496619 2019-07-10 stsp new_te = calloc(1, sizeof(*new_te));
5132 d6fca0ba 2019-09-15 hiltjo if (new_te == NULL)
5133 d6fca0ba 2019-09-15 hiltjo return got_error_from_errno("calloc");
5134 2b496619 2019-07-10 stsp new_te->mode = S_IFDIR;
5135 56e0773d 2019-11-28 stsp
5136 56e0773d 2019-11-28 stsp if (strlcpy(new_te->name, child_path, sizeof(new_te->name)) >=
5137 56e0773d 2019-11-28 stsp sizeof(new_te->name)) {
5138 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
5139 2b496619 2019-07-10 stsp goto done;
5140 2b496619 2019-07-10 stsp }
5141 ba580f68 2020-03-22 stsp err = write_tree(&id, &nentries, NULL, subtree_path,
5142 2b496619 2019-07-10 stsp commitable_paths, status_cb, status_arg, repo);
5143 2b496619 2019-07-10 stsp if (err) {
5144 56e0773d 2019-11-28 stsp free(new_te);
5145 2b496619 2019-07-10 stsp goto done;
5146 2b496619 2019-07-10 stsp }
5147 56e0773d 2019-11-28 stsp memcpy(&new_te->id, id, sizeof(new_te->id));
5148 2b496619 2019-07-10 stsp done:
5149 56e0773d 2019-11-28 stsp free(id);
5150 2b496619 2019-07-10 stsp free(subtree_path);
5151 2b496619 2019-07-10 stsp if (err == NULL)
5152 2b496619 2019-07-10 stsp *new_tep = new_te;
5153 036813ee 2019-05-09 stsp return err;
5154 036813ee 2019-05-09 stsp }
5155 036813ee 2019-05-09 stsp
5156 036813ee 2019-05-09 stsp static const struct got_error *
5157 ba580f68 2020-03-22 stsp write_tree(struct got_object_id **new_tree_id, int *nentries,
5158 036813ee 2019-05-09 stsp struct got_tree_object *base_tree, const char *path_base_tree,
5159 036813ee 2019-05-09 stsp struct got_pathlist_head *commitable_paths,
5160 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
5161 036813ee 2019-05-09 stsp struct got_repository *repo)
5162 036813ee 2019-05-09 stsp {
5163 036813ee 2019-05-09 stsp const struct got_error *err = NULL;
5164 036813ee 2019-05-09 stsp struct got_pathlist_head paths;
5165 2f51b5b3 2019-05-09 stsp struct got_tree_entry *te, *new_te = NULL;
5166 036813ee 2019-05-09 stsp struct got_pathlist_entry *pe;
5167 036813ee 2019-05-09 stsp
5168 036813ee 2019-05-09 stsp TAILQ_INIT(&paths);
5169 ba580f68 2020-03-22 stsp *nentries = 0;
5170 036813ee 2019-05-09 stsp
5171 036813ee 2019-05-09 stsp /* Insert, and recurse into, newly added entries first. */
5172 036813ee 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5173 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5174 2f51b5b3 2019-05-09 stsp char *child_path = NULL, *slash;
5175 036813ee 2019-05-09 stsp
5176 5f8a88c6 2019-08-03 stsp if ((ct->status != GOT_STATUS_ADD &&
5177 5f8a88c6 2019-08-03 stsp ct->staged_status != GOT_STATUS_ADD) ||
5178 a3df2849 2019-05-20 stsp (ct->flags & GOT_COMMITABLE_ADDED))
5179 036813ee 2019-05-09 stsp continue;
5180 036813ee 2019-05-09 stsp
5181 62d463ca 2020-10-20 naddy if (!got_path_is_child(ct->in_repo_path, path_base_tree,
5182 62d463ca 2020-10-20 naddy strlen(path_base_tree)))
5183 036813ee 2019-05-09 stsp continue;
5184 036813ee 2019-05-09 stsp
5185 036813ee 2019-05-09 stsp err = got_path_skip_common_ancestor(&child_path, path_base_tree,
5186 f2b0a8b0 2020-07-31 stsp ct->in_repo_path);
5187 036813ee 2019-05-09 stsp if (err)
5188 036813ee 2019-05-09 stsp goto done;
5189 036813ee 2019-05-09 stsp
5190 2f51b5b3 2019-05-09 stsp slash = strchr(child_path, '/');
5191 2f51b5b3 2019-05-09 stsp if (slash == NULL) {
5192 036813ee 2019-05-09 stsp err = alloc_added_blob_tree_entry(&new_te, ct);
5193 036813ee 2019-05-09 stsp if (err)
5194 036813ee 2019-05-09 stsp goto done;
5195 afa376bf 2019-05-09 stsp err = report_ct_status(ct, status_cb, status_arg);
5196 afa376bf 2019-05-09 stsp if (err)
5197 afa376bf 2019-05-09 stsp goto done;
5198 a3df2849 2019-05-20 stsp ct->flags |= GOT_COMMITABLE_ADDED;
5199 2b496619 2019-07-10 stsp err = insert_tree_entry(new_te, &paths);
5200 2b496619 2019-07-10 stsp if (err)
5201 2f51b5b3 2019-05-09 stsp goto done;
5202 ba580f68 2020-03-22 stsp (*nentries)++;
5203 2b496619 2019-07-10 stsp } else {
5204 2b496619 2019-07-10 stsp *slash = '\0'; /* trim trailing path components */
5205 2b496619 2019-07-10 stsp if (base_tree == NULL ||
5206 2b496619 2019-07-10 stsp got_object_tree_find_entry(base_tree, child_path)
5207 2b496619 2019-07-10 stsp == NULL) {
5208 2b496619 2019-07-10 stsp err = make_subtree_for_added_blob(&new_te,
5209 2b496619 2019-07-10 stsp child_path, path_base_tree,
5210 2b496619 2019-07-10 stsp commitable_paths, status_cb, status_arg,
5211 2b496619 2019-07-10 stsp repo);
5212 2b496619 2019-07-10 stsp if (err)
5213 2b496619 2019-07-10 stsp goto done;
5214 2b496619 2019-07-10 stsp err = insert_tree_entry(new_te, &paths);
5215 2b496619 2019-07-10 stsp if (err)
5216 2b496619 2019-07-10 stsp goto done;
5217 ba580f68 2020-03-22 stsp (*nentries)++;
5218 9ba0479c 2019-05-10 stsp }
5219 ed175427 2019-05-09 stsp }
5220 2f51b5b3 2019-05-09 stsp }
5221 2f51b5b3 2019-05-09 stsp
5222 2f51b5b3 2019-05-09 stsp if (base_tree) {
5223 56e0773d 2019-11-28 stsp int i, nbase_entries;
5224 2f51b5b3 2019-05-09 stsp /* Handle modified and deleted entries. */
5225 56e0773d 2019-11-28 stsp nbase_entries = got_object_tree_get_nentries(base_tree);
5226 56e0773d 2019-11-28 stsp for (i = 0; i < nbase_entries; i++) {
5227 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = NULL;
5228 63c5ca5d 2019-08-24 stsp
5229 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(base_tree, i);
5230 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te)) {
5231 63c5ca5d 2019-08-24 stsp /* Entry is a submodule; just copy it. */
5232 63c5ca5d 2019-08-24 stsp err = got_object_tree_entry_dup(&new_te, te);
5233 63c5ca5d 2019-08-24 stsp if (err)
5234 63c5ca5d 2019-08-24 stsp goto done;
5235 63c5ca5d 2019-08-24 stsp err = insert_tree_entry(new_te, &paths);
5236 63c5ca5d 2019-08-24 stsp if (err)
5237 63c5ca5d 2019-08-24 stsp goto done;
5238 ba580f68 2020-03-22 stsp (*nentries)++;
5239 63c5ca5d 2019-08-24 stsp continue;
5240 63c5ca5d 2019-08-24 stsp }
5241 2f51b5b3 2019-05-09 stsp
5242 2f51b5b3 2019-05-09 stsp if (S_ISDIR(te->mode)) {
5243 44d03001 2019-05-09 stsp int modified;
5244 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
5245 036813ee 2019-05-09 stsp if (err)
5246 036813ee 2019-05-09 stsp goto done;
5247 44d03001 2019-05-09 stsp err = match_modified_subtree(&modified, te,
5248 44d03001 2019-05-09 stsp path_base_tree, commitable_paths);
5249 2f51b5b3 2019-05-09 stsp if (err)
5250 2f51b5b3 2019-05-09 stsp goto done;
5251 44d03001 2019-05-09 stsp /* Avoid recursion into unmodified subtrees. */
5252 44d03001 2019-05-09 stsp if (modified) {
5253 56e0773d 2019-11-28 stsp struct got_object_id *new_id;
5254 ba580f68 2020-03-22 stsp int nsubentries;
5255 ba580f68 2020-03-22 stsp err = write_subtree(&new_id,
5256 ba580f68 2020-03-22 stsp &nsubentries, te,
5257 44d03001 2019-05-09 stsp path_base_tree, commitable_paths,
5258 44d03001 2019-05-09 stsp status_cb, status_arg, repo);
5259 44d03001 2019-05-09 stsp if (err)
5260 44d03001 2019-05-09 stsp goto done;
5261 ba580f68 2020-03-22 stsp if (nsubentries == 0) {
5262 ba580f68 2020-03-22 stsp /* All entries were deleted. */
5263 ba580f68 2020-03-22 stsp free(new_id);
5264 ba580f68 2020-03-22 stsp continue;
5265 ba580f68 2020-03-22 stsp }
5266 56e0773d 2019-11-28 stsp memcpy(&new_te->id, new_id,
5267 56e0773d 2019-11-28 stsp sizeof(new_te->id));
5268 56e0773d 2019-11-28 stsp free(new_id);
5269 44d03001 2019-05-09 stsp }
5270 036813ee 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
5271 036813ee 2019-05-09 stsp if (err)
5272 036813ee 2019-05-09 stsp goto done;
5273 ba580f68 2020-03-22 stsp (*nentries)++;
5274 2f51b5b3 2019-05-09 stsp continue;
5275 036813ee 2019-05-09 stsp }
5276 2f51b5b3 2019-05-09 stsp
5277 2f51b5b3 2019-05-09 stsp err = match_deleted_or_modified_ct(&ct, te,
5278 2f51b5b3 2019-05-09 stsp path_base_tree, commitable_paths);
5279 f66c734c 2019-09-22 stsp if (err)
5280 f66c734c 2019-09-22 stsp goto done;
5281 2f51b5b3 2019-05-09 stsp if (ct) {
5282 2f51b5b3 2019-05-09 stsp /* NB: Deleted entries get dropped here. */
5283 5f8a88c6 2019-08-03 stsp if (ct->status == GOT_STATUS_MODIFY ||
5284 1ebedb77 2019-10-19 stsp ct->status == GOT_STATUS_MODE_CHANGE ||
5285 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY) {
5286 2f51b5b3 2019-05-09 stsp err = alloc_modified_blob_tree_entry(
5287 2f51b5b3 2019-05-09 stsp &new_te, te, ct);
5288 2f51b5b3 2019-05-09 stsp if (err)
5289 2f51b5b3 2019-05-09 stsp goto done;
5290 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
5291 2f51b5b3 2019-05-09 stsp if (err)
5292 2f51b5b3 2019-05-09 stsp goto done;
5293 ba580f68 2020-03-22 stsp (*nentries)++;
5294 2f51b5b3 2019-05-09 stsp }
5295 b416585c 2019-05-13 stsp err = report_ct_status(ct, status_cb,
5296 b416585c 2019-05-13 stsp status_arg);
5297 afa376bf 2019-05-09 stsp if (err)
5298 afa376bf 2019-05-09 stsp goto done;
5299 2f51b5b3 2019-05-09 stsp } else {
5300 2f51b5b3 2019-05-09 stsp /* Entry is unchanged; just copy it. */
5301 2f51b5b3 2019-05-09 stsp err = got_object_tree_entry_dup(&new_te, te);
5302 2f51b5b3 2019-05-09 stsp if (err)
5303 2f51b5b3 2019-05-09 stsp goto done;
5304 2f51b5b3 2019-05-09 stsp err = insert_tree_entry(new_te, &paths);
5305 2f51b5b3 2019-05-09 stsp if (err)
5306 2f51b5b3 2019-05-09 stsp goto done;
5307 ba580f68 2020-03-22 stsp (*nentries)++;
5308 2f51b5b3 2019-05-09 stsp }
5309 ca2503ea 2019-05-09 stsp }
5310 ed175427 2019-05-09 stsp }
5311 0b5cc0d6 2019-05-09 stsp
5312 036813ee 2019-05-09 stsp /* Write new list of entries; deleted entries have been dropped. */
5313 ba580f68 2020-03-22 stsp err = got_object_tree_create(new_tree_id, &paths, *nentries, repo);
5314 ed175427 2019-05-09 stsp done:
5315 036813ee 2019-05-09 stsp got_pathlist_free(&paths);
5316 2e1fa222 2020-07-23 stsp return err;
5317 2e1fa222 2020-07-23 stsp }
5318 2e1fa222 2020-07-23 stsp
5319 2e1fa222 2020-07-23 stsp static const struct got_error *
5320 437adc9d 2020-12-10 yzhong update_fileindex_after_commit(struct got_worktree *worktree,
5321 437adc9d 2020-12-10 yzhong struct got_pathlist_head *commitable_paths,
5322 437adc9d 2020-12-10 yzhong struct got_object_id *new_base_commit_id,
5323 437adc9d 2020-12-10 yzhong struct got_fileindex *fileindex, int have_staged_files)
5324 ebf99748 2019-05-09 stsp {
5325 8ec7bf54 2019-07-12 stsp const struct got_error *err = NULL;
5326 ebf99748 2019-05-09 stsp struct got_pathlist_entry *pe;
5327 437adc9d 2020-12-10 yzhong char *relpath = NULL;
5328 ebf99748 2019-05-09 stsp
5329 ebf99748 2019-05-09 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5330 ebf99748 2019-05-09 stsp struct got_fileindex_entry *ie;
5331 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5332 ebf99748 2019-05-09 stsp
5333 d6c87207 2019-08-02 stsp ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5334 437adc9d 2020-12-10 yzhong
5335 437adc9d 2020-12-10 yzhong err = got_path_skip_common_ancestor(&relpath,
5336 437adc9d 2020-12-10 yzhong worktree->root_path, ct->ondisk_path);
5337 437adc9d 2020-12-10 yzhong if (err)
5338 437adc9d 2020-12-10 yzhong goto done;
5339 437adc9d 2020-12-10 yzhong
5340 ebf99748 2019-05-09 stsp if (ie) {
5341 5f8a88c6 2019-08-03 stsp if (ct->status == GOT_STATUS_DELETE ||
5342 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_DELETE) {
5343 ebf99748 2019-05-09 stsp got_fileindex_entry_remove(fileindex, ie);
5344 5f8a88c6 2019-08-03 stsp } else if (ct->staged_status == GOT_STATUS_ADD ||
5345 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY) {
5346 5f8a88c6 2019-08-03 stsp got_fileindex_entry_stage_set(ie,
5347 5f8a88c6 2019-08-03 stsp GOT_FILEIDX_STAGE_NONE);
5348 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
5349 437adc9d 2020-12-10 yzhong
5350 5f8a88c6 2019-08-03 stsp err = got_fileindex_entry_update(ie,
5351 437adc9d 2020-12-10 yzhong worktree->root_fd, relpath,
5352 437adc9d 2020-12-10 yzhong ct->staged_blob_id->sha1,
5353 72fd46fa 2019-09-06 stsp new_base_commit_id->sha1,
5354 72fd46fa 2019-09-06 stsp !have_staged_files);
5355 ebf99748 2019-05-09 stsp } else
5356 ebf99748 2019-05-09 stsp err = got_fileindex_entry_update(ie,
5357 437adc9d 2020-12-10 yzhong worktree->root_fd, relpath,
5358 437adc9d 2020-12-10 yzhong ct->blob_id->sha1,
5359 72fd46fa 2019-09-06 stsp new_base_commit_id->sha1,
5360 72fd46fa 2019-09-06 stsp !have_staged_files);
5361 ebf99748 2019-05-09 stsp } else {
5362 3969253a 2020-03-07 stsp err = got_fileindex_entry_alloc(&ie, pe->path);
5363 ebf99748 2019-05-09 stsp if (err)
5364 437adc9d 2020-12-10 yzhong goto done;
5365 437adc9d 2020-12-10 yzhong err = got_fileindex_entry_update(ie,
5366 437adc9d 2020-12-10 yzhong worktree->root_fd, relpath, ct->blob_id->sha1,
5367 437adc9d 2020-12-10 yzhong new_base_commit_id->sha1, 1);
5368 3969253a 2020-03-07 stsp if (err) {
5369 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
5370 437adc9d 2020-12-10 yzhong goto done;
5371 3969253a 2020-03-07 stsp }
5372 3969253a 2020-03-07 stsp err = got_fileindex_entry_add(fileindex, ie);
5373 3969253a 2020-03-07 stsp if (err) {
5374 3969253a 2020-03-07 stsp got_fileindex_entry_free(ie);
5375 437adc9d 2020-12-10 yzhong goto done;
5376 3969253a 2020-03-07 stsp }
5377 ebf99748 2019-05-09 stsp }
5378 437adc9d 2020-12-10 yzhong free(relpath);
5379 437adc9d 2020-12-10 yzhong relpath = NULL;
5380 ebf99748 2019-05-09 stsp }
5381 437adc9d 2020-12-10 yzhong done:
5382 437adc9d 2020-12-10 yzhong free(relpath);
5383 d56d26ce 2019-05-10 stsp return err;
5384 d56d26ce 2019-05-10 stsp }
5385 735ef5ac 2019-08-03 stsp
5386 d56d26ce 2019-05-10 stsp
5387 d56d26ce 2019-05-10 stsp static const struct got_error *
5388 735ef5ac 2019-08-03 stsp check_out_of_date(const char *in_repo_path, unsigned char status,
5389 5f8a88c6 2019-08-03 stsp unsigned char staged_status, struct got_object_id *base_blob_id,
5390 5f8a88c6 2019-08-03 stsp struct got_object_id *base_commit_id,
5391 735ef5ac 2019-08-03 stsp struct got_object_id *head_commit_id, struct got_repository *repo,
5392 735ef5ac 2019-08-03 stsp int ood_errcode)
5393 d56d26ce 2019-05-10 stsp {
5394 d56d26ce 2019-05-10 stsp const struct got_error *err = NULL;
5395 9bead371 2019-07-28 stsp struct got_object_id *id = NULL;
5396 1a36436d 2019-06-10 stsp
5397 5f8a88c6 2019-08-03 stsp if (status != GOT_STATUS_ADD && staged_status != GOT_STATUS_ADD) {
5398 1a36436d 2019-06-10 stsp /* Trivial case: base commit == head commit */
5399 735ef5ac 2019-08-03 stsp if (got_object_id_cmp(base_commit_id, head_commit_id) == 0)
5400 1a36436d 2019-06-10 stsp return NULL;
5401 9bead371 2019-07-28 stsp /*
5402 9bead371 2019-07-28 stsp * Ensure file content which local changes were based
5403 9bead371 2019-07-28 stsp * on matches file content in the branch head.
5404 9bead371 2019-07-28 stsp */
5405 735ef5ac 2019-08-03 stsp err = got_object_id_by_path(&id, repo, head_commit_id,
5406 735ef5ac 2019-08-03 stsp in_repo_path);
5407 9bead371 2019-07-28 stsp if (err) {
5408 aa9f8247 2019-08-05 stsp if (err->code == GOT_ERR_NO_TREE_ENTRY)
5409 aa9f8247 2019-08-05 stsp err = got_error(ood_errcode);
5410 1a36436d 2019-06-10 stsp goto done;
5411 735ef5ac 2019-08-03 stsp } else if (got_object_id_cmp(id, base_blob_id) != 0)
5412 735ef5ac 2019-08-03 stsp err = got_error(ood_errcode);
5413 1a36436d 2019-06-10 stsp } else {
5414 1a36436d 2019-06-10 stsp /* Require that added files don't exist in the branch head. */
5415 735ef5ac 2019-08-03 stsp err = got_object_id_by_path(&id, repo, head_commit_id,
5416 735ef5ac 2019-08-03 stsp in_repo_path);
5417 1a36436d 2019-06-10 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
5418 1a36436d 2019-06-10 stsp goto done;
5419 735ef5ac 2019-08-03 stsp err = id ? got_error(ood_errcode) : NULL;
5420 1a36436d 2019-06-10 stsp }
5421 1a36436d 2019-06-10 stsp done:
5422 1a36436d 2019-06-10 stsp free(id);
5423 1a36436d 2019-06-10 stsp return err;
5424 ebf99748 2019-05-09 stsp }
5425 ebf99748 2019-05-09 stsp
5426 c4296144 2019-05-09 stsp const struct got_error *
5427 39cd0ff6 2019-07-12 stsp commit_worktree(struct got_object_id **new_commit_id,
5428 39cd0ff6 2019-07-12 stsp struct got_pathlist_head *commitable_paths,
5429 39cd0ff6 2019-07-12 stsp struct got_object_id *head_commit_id, struct got_worktree *worktree,
5430 5c1e53bc 2019-07-28 stsp const char *author, const char *committer,
5431 33ad4cbe 2019-05-12 jcs got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5432 afa376bf 2019-05-09 stsp got_worktree_status_cb status_cb, void *status_arg,
5433 afa376bf 2019-05-09 stsp struct got_repository *repo)
5434 c4296144 2019-05-09 stsp {
5435 39cd0ff6 2019-07-12 stsp const struct got_error *err = NULL, *unlockerr = NULL;
5436 c4296144 2019-05-09 stsp struct got_pathlist_entry *pe;
5437 bc70eb79 2019-05-09 stsp const char *head_ref_name = NULL;
5438 588edf97 2019-05-10 stsp struct got_commit_object *head_commit = NULL;
5439 09f5bd90 2019-05-09 stsp struct got_reference *head_ref2 = NULL;
5440 09f5bd90 2019-05-09 stsp struct got_object_id *head_commit_id2 = NULL;
5441 588edf97 2019-05-10 stsp struct got_tree_object *head_tree = NULL;
5442 036813ee 2019-05-09 stsp struct got_object_id *new_tree_id = NULL;
5443 ba580f68 2020-03-22 stsp int nentries;
5444 de18fc63 2019-05-09 stsp struct got_object_id_queue parent_ids;
5445 de18fc63 2019-05-09 stsp struct got_object_qid *pid = NULL;
5446 33ad4cbe 2019-05-12 jcs char *logmsg = NULL;
5447 c4296144 2019-05-09 stsp
5448 c4296144 2019-05-09 stsp *new_commit_id = NULL;
5449 c4296144 2019-05-09 stsp
5450 de18fc63 2019-05-09 stsp SIMPLEQ_INIT(&parent_ids);
5451 675c7539 2019-05-09 stsp
5452 588edf97 2019-05-10 stsp err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
5453 588edf97 2019-05-10 stsp if (err)
5454 588edf97 2019-05-10 stsp goto done;
5455 de18fc63 2019-05-09 stsp
5456 588edf97 2019-05-10 stsp err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
5457 588edf97 2019-05-10 stsp if (err)
5458 588edf97 2019-05-10 stsp goto done;
5459 588edf97 2019-05-10 stsp
5460 33ad4cbe 2019-05-12 jcs if (commit_msg_cb != NULL) {
5461 39cd0ff6 2019-07-12 stsp err = commit_msg_cb(commitable_paths, &logmsg, commit_arg);
5462 33ad4cbe 2019-05-12 jcs if (err)
5463 33ad4cbe 2019-05-12 jcs goto done;
5464 33ad4cbe 2019-05-12 jcs }
5465 c4296144 2019-05-09 stsp
5466 33ad4cbe 2019-05-12 jcs if (logmsg == NULL || strlen(logmsg) == 0) {
5467 33ad4cbe 2019-05-12 jcs err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
5468 33ad4cbe 2019-05-12 jcs goto done;
5469 33ad4cbe 2019-05-12 jcs }
5470 33ad4cbe 2019-05-12 jcs
5471 cf066bf8 2019-05-09 stsp /* Create blobs from added and modified files and record their IDs. */
5472 39cd0ff6 2019-07-12 stsp TAILQ_FOREACH(pe, commitable_paths, entry) {
5473 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5474 cf066bf8 2019-05-09 stsp char *ondisk_path;
5475 cf066bf8 2019-05-09 stsp
5476 5f8a88c6 2019-08-03 stsp /* Blobs for staged files already exist. */
5477 5f8a88c6 2019-08-03 stsp if (ct->staged_status == GOT_STATUS_ADD ||
5478 5f8a88c6 2019-08-03 stsp ct->staged_status == GOT_STATUS_MODIFY)
5479 5f8a88c6 2019-08-03 stsp continue;
5480 5f8a88c6 2019-08-03 stsp
5481 cf066bf8 2019-05-09 stsp if (ct->status != GOT_STATUS_ADD &&
5482 1ebedb77 2019-10-19 stsp ct->status != GOT_STATUS_MODIFY &&
5483 1ebedb77 2019-10-19 stsp ct->status != GOT_STATUS_MODE_CHANGE)
5484 cf066bf8 2019-05-09 stsp continue;
5485 cf066bf8 2019-05-09 stsp
5486 cf066bf8 2019-05-09 stsp if (asprintf(&ondisk_path, "%s/%s",
5487 cf066bf8 2019-05-09 stsp worktree->root_path, pe->path) == -1) {
5488 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5489 cf066bf8 2019-05-09 stsp goto done;
5490 cf066bf8 2019-05-09 stsp }
5491 e75eb4da 2019-05-10 stsp err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
5492 2e1fa222 2020-07-23 stsp free(ondisk_path);
5493 2e1fa222 2020-07-23 stsp if (err)
5494 cf066bf8 2019-05-09 stsp goto done;
5495 cf066bf8 2019-05-09 stsp }
5496 036813ee 2019-05-09 stsp
5497 036813ee 2019-05-09 stsp /* Recursively write new tree objects. */
5498 ba580f68 2020-03-22 stsp err = write_tree(&new_tree_id, &nentries, head_tree, "/",
5499 ba580f68 2020-03-22 stsp commitable_paths, status_cb, status_arg, repo);
5500 036813ee 2019-05-09 stsp if (err)
5501 036813ee 2019-05-09 stsp goto done;
5502 036813ee 2019-05-09 stsp
5503 de18fc63 2019-05-09 stsp err = got_object_qid_alloc(&pid, worktree->base_commit_id);
5504 de18fc63 2019-05-09 stsp if (err)
5505 de18fc63 2019-05-09 stsp goto done;
5506 de18fc63 2019-05-09 stsp SIMPLEQ_INSERT_TAIL(&parent_ids, pid, entry);
5507 de18fc63 2019-05-09 stsp err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
5508 de18fc63 2019-05-09 stsp 1, author, time(NULL), committer, time(NULL), logmsg, repo);
5509 de18fc63 2019-05-09 stsp got_object_qid_free(pid);
5510 33ad4cbe 2019-05-12 jcs if (logmsg != NULL)
5511 33ad4cbe 2019-05-12 jcs free(logmsg);
5512 9d40349a 2019-05-09 stsp if (err)
5513 9d40349a 2019-05-09 stsp goto done;
5514 9d40349a 2019-05-09 stsp
5515 09f5bd90 2019-05-09 stsp /* Check if a concurrent commit to our branch has occurred. */
5516 bc70eb79 2019-05-09 stsp head_ref_name = got_worktree_get_head_ref_name(worktree);
5517 bc70eb79 2019-05-09 stsp if (head_ref_name == NULL) {
5518 638f9024 2019-05-13 stsp err = got_error_from_errno("got_worktree_get_head_ref_name");
5519 09f5bd90 2019-05-09 stsp goto done;
5520 09f5bd90 2019-05-09 stsp }
5521 2f17228e 2019-05-12 stsp /* Lock the reference here to prevent concurrent modification. */
5522 2f17228e 2019-05-12 stsp err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
5523 09f5bd90 2019-05-09 stsp if (err)
5524 09f5bd90 2019-05-09 stsp goto done;
5525 09f5bd90 2019-05-09 stsp err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
5526 ebf99748 2019-05-09 stsp if (err)
5527 ebf99748 2019-05-09 stsp goto done;
5528 09f5bd90 2019-05-09 stsp if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
5529 09f5bd90 2019-05-09 stsp err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
5530 09f5bd90 2019-05-09 stsp goto done;
5531 09f5bd90 2019-05-09 stsp }
5532 09f5bd90 2019-05-09 stsp /* Update branch head in repository. */
5533 2f17228e 2019-05-12 stsp err = got_ref_change_ref(head_ref2, *new_commit_id);
5534 f2c16586 2019-05-09 stsp if (err)
5535 f2c16586 2019-05-09 stsp goto done;
5536 2f17228e 2019-05-12 stsp err = got_ref_write(head_ref2, repo);
5537 f2c16586 2019-05-09 stsp if (err)
5538 f2c16586 2019-05-09 stsp goto done;
5539 f2c16586 2019-05-09 stsp
5540 09f5bd90 2019-05-09 stsp err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
5541 09f5bd90 2019-05-09 stsp if (err)
5542 09f5bd90 2019-05-09 stsp goto done;
5543 09f5bd90 2019-05-09 stsp
5544 ebf99748 2019-05-09 stsp err = ref_base_commit(worktree, repo);
5545 ebf99748 2019-05-09 stsp if (err)
5546 ebf99748 2019-05-09 stsp goto done;
5547 c4296144 2019-05-09 stsp done:
5548 588edf97 2019-05-10 stsp if (head_tree)
5549 588edf97 2019-05-10 stsp got_object_tree_close(head_tree);
5550 588edf97 2019-05-10 stsp if (head_commit)
5551 588edf97 2019-05-10 stsp got_object_commit_close(head_commit);
5552 09f5bd90 2019-05-09 stsp free(head_commit_id2);
5553 2f17228e 2019-05-12 stsp if (head_ref2) {
5554 2f17228e 2019-05-12 stsp unlockerr = got_ref_unlock(head_ref2);
5555 2f17228e 2019-05-12 stsp if (unlockerr && err == NULL)
5556 2f17228e 2019-05-12 stsp err = unlockerr;
5557 09f5bd90 2019-05-09 stsp got_ref_close(head_ref2);
5558 39cd0ff6 2019-07-12 stsp }
5559 39cd0ff6 2019-07-12 stsp return err;
5560 39cd0ff6 2019-07-12 stsp }
5561 5c1e53bc 2019-07-28 stsp
5562 5c1e53bc 2019-07-28 stsp static const struct got_error *
5563 5c1e53bc 2019-07-28 stsp check_path_is_commitable(const char *path,
5564 5c1e53bc 2019-07-28 stsp struct got_pathlist_head *commitable_paths)
5565 5c1e53bc 2019-07-28 stsp {
5566 5c1e53bc 2019-07-28 stsp struct got_pathlist_entry *cpe = NULL;
5567 5c1e53bc 2019-07-28 stsp size_t path_len = strlen(path);
5568 39cd0ff6 2019-07-12 stsp
5569 5c1e53bc 2019-07-28 stsp TAILQ_FOREACH(cpe, commitable_paths, entry) {
5570 5c1e53bc 2019-07-28 stsp struct got_commitable *ct = cpe->data;
5571 5c1e53bc 2019-07-28 stsp const char *ct_path = ct->path;
5572 5c1e53bc 2019-07-28 stsp
5573 5c1e53bc 2019-07-28 stsp while (ct_path[0] == '/')
5574 5c1e53bc 2019-07-28 stsp ct_path++;
5575 5c1e53bc 2019-07-28 stsp
5576 5c1e53bc 2019-07-28 stsp if (strcmp(path, ct_path) == 0 ||
5577 5c1e53bc 2019-07-28 stsp got_path_is_child(ct_path, path, path_len))
5578 5c1e53bc 2019-07-28 stsp break;
5579 5c1e53bc 2019-07-28 stsp }
5580 5c1e53bc 2019-07-28 stsp
5581 5c1e53bc 2019-07-28 stsp if (cpe == NULL)
5582 5c1e53bc 2019-07-28 stsp return got_error_path(path, GOT_ERR_BAD_PATH);
5583 5c1e53bc 2019-07-28 stsp
5584 5c1e53bc 2019-07-28 stsp return NULL;
5585 5c1e53bc 2019-07-28 stsp }
5586 5c1e53bc 2019-07-28 stsp
5587 f0b75401 2019-08-03 stsp static const struct got_error *
5588 f0b75401 2019-08-03 stsp check_staged_file(void *arg, struct got_fileindex_entry *ie)
5589 f0b75401 2019-08-03 stsp {
5590 f0b75401 2019-08-03 stsp int *have_staged_files = arg;
5591 f0b75401 2019-08-03 stsp
5592 f0b75401 2019-08-03 stsp if (got_fileindex_entry_stage_get(ie) != GOT_FILEIDX_STAGE_NONE) {
5593 f0b75401 2019-08-03 stsp *have_staged_files = 1;
5594 f0b75401 2019-08-03 stsp return got_error(GOT_ERR_CANCELLED);
5595 f0b75401 2019-08-03 stsp }
5596 f0b75401 2019-08-03 stsp
5597 f0b75401 2019-08-03 stsp return NULL;
5598 f0b75401 2019-08-03 stsp }
5599 f0b75401 2019-08-03 stsp
5600 5f8a88c6 2019-08-03 stsp static const struct got_error *
5601 5f8a88c6 2019-08-03 stsp check_non_staged_files(struct got_fileindex *fileindex,
5602 5f8a88c6 2019-08-03 stsp struct got_pathlist_head *paths)
5603 5f8a88c6 2019-08-03 stsp {
5604 5f8a88c6 2019-08-03 stsp struct got_pathlist_entry *pe;
5605 5f8a88c6 2019-08-03 stsp struct got_fileindex_entry *ie;
5606 5f8a88c6 2019-08-03 stsp
5607 5f8a88c6 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
5608 5f8a88c6 2019-08-03 stsp if (pe->path[0] == '\0')
5609 5f8a88c6 2019-08-03 stsp continue;
5610 5f8a88c6 2019-08-03 stsp ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5611 5f8a88c6 2019-08-03 stsp if (ie == NULL)
5612 5f8a88c6 2019-08-03 stsp return got_error_path(pe->path, GOT_ERR_BAD_PATH);
5613 5f8a88c6 2019-08-03 stsp if (got_fileindex_entry_stage_get(ie) == GOT_FILEIDX_STAGE_NONE)
5614 5f8a88c6 2019-08-03 stsp return got_error_path(pe->path,
5615 5f8a88c6 2019-08-03 stsp GOT_ERR_FILE_NOT_STAGED);
5616 5f8a88c6 2019-08-03 stsp }
5617 5f8a88c6 2019-08-03 stsp
5618 5f8a88c6 2019-08-03 stsp return NULL;
5619 5f8a88c6 2019-08-03 stsp }
5620 5f8a88c6 2019-08-03 stsp
5621 39cd0ff6 2019-07-12 stsp const struct got_error *
5622 39cd0ff6 2019-07-12 stsp got_worktree_commit(struct got_object_id **new_commit_id,
5623 5c1e53bc 2019-07-28 stsp struct got_worktree *worktree, struct got_pathlist_head *paths,
5624 35213c7c 2020-07-23 stsp const char *author, const char *committer, int allow_bad_symlinks,
5625 39cd0ff6 2019-07-12 stsp got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5626 39cd0ff6 2019-07-12 stsp got_worktree_status_cb status_cb, void *status_arg,
5627 39cd0ff6 2019-07-12 stsp struct got_repository *repo)
5628 39cd0ff6 2019-07-12 stsp {
5629 39cd0ff6 2019-07-12 stsp const struct got_error *err = NULL, *unlockerr = NULL, *sync_err;
5630 39cd0ff6 2019-07-12 stsp struct got_fileindex *fileindex = NULL;
5631 5c1e53bc 2019-07-28 stsp char *fileindex_path = NULL;
5632 39cd0ff6 2019-07-12 stsp struct got_pathlist_head commitable_paths;
5633 39cd0ff6 2019-07-12 stsp struct collect_commitables_arg cc_arg;
5634 39cd0ff6 2019-07-12 stsp struct got_pathlist_entry *pe;
5635 39cd0ff6 2019-07-12 stsp struct got_reference *head_ref = NULL;
5636 39cd0ff6 2019-07-12 stsp struct got_object_id *head_commit_id = NULL;
5637 f0b75401 2019-08-03 stsp int have_staged_files = 0;
5638 39cd0ff6 2019-07-12 stsp
5639 39cd0ff6 2019-07-12 stsp *new_commit_id = NULL;
5640 39cd0ff6 2019-07-12 stsp
5641 39cd0ff6 2019-07-12 stsp TAILQ_INIT(&commitable_paths);
5642 39cd0ff6 2019-07-12 stsp
5643 39cd0ff6 2019-07-12 stsp err = lock_worktree(worktree, LOCK_EX);
5644 39cd0ff6 2019-07-12 stsp if (err)
5645 39cd0ff6 2019-07-12 stsp goto done;
5646 39cd0ff6 2019-07-12 stsp
5647 39cd0ff6 2019-07-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
5648 39cd0ff6 2019-07-12 stsp if (err)
5649 39cd0ff6 2019-07-12 stsp goto done;
5650 39cd0ff6 2019-07-12 stsp
5651 39cd0ff6 2019-07-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
5652 39cd0ff6 2019-07-12 stsp if (err)
5653 39cd0ff6 2019-07-12 stsp goto done;
5654 39cd0ff6 2019-07-12 stsp
5655 39cd0ff6 2019-07-12 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
5656 39cd0ff6 2019-07-12 stsp if (err)
5657 39cd0ff6 2019-07-12 stsp goto done;
5658 39cd0ff6 2019-07-12 stsp
5659 5f8a88c6 2019-08-03 stsp err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
5660 5f8a88c6 2019-08-03 stsp &have_staged_files);
5661 5f8a88c6 2019-08-03 stsp if (err && err->code != GOT_ERR_CANCELLED)
5662 5f8a88c6 2019-08-03 stsp goto done;
5663 5f8a88c6 2019-08-03 stsp if (have_staged_files) {
5664 5f8a88c6 2019-08-03 stsp err = check_non_staged_files(fileindex, paths);
5665 5f8a88c6 2019-08-03 stsp if (err)
5666 5f8a88c6 2019-08-03 stsp goto done;
5667 5f8a88c6 2019-08-03 stsp }
5668 5f8a88c6 2019-08-03 stsp
5669 39cd0ff6 2019-07-12 stsp cc_arg.commitable_paths = &commitable_paths;
5670 39cd0ff6 2019-07-12 stsp cc_arg.worktree = worktree;
5671 0aeb8099 2020-07-23 stsp cc_arg.fileindex = fileindex;
5672 39cd0ff6 2019-07-12 stsp cc_arg.repo = repo;
5673 5f8a88c6 2019-08-03 stsp cc_arg.have_staged_files = have_staged_files;
5674 35213c7c 2020-07-23 stsp cc_arg.allow_bad_symlinks = allow_bad_symlinks;
5675 5c1e53bc 2019-07-28 stsp TAILQ_FOREACH(pe, paths, entry) {
5676 5c1e53bc 2019-07-28 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
5677 f2a9dc41 2019-12-13 tracey collect_commitables, &cc_arg, NULL, NULL, 0, 0);
5678 5c1e53bc 2019-07-28 stsp if (err)
5679 5c1e53bc 2019-07-28 stsp goto done;
5680 5c1e53bc 2019-07-28 stsp }
5681 39cd0ff6 2019-07-12 stsp
5682 39cd0ff6 2019-07-12 stsp if (TAILQ_EMPTY(&commitable_paths)) {
5683 39cd0ff6 2019-07-12 stsp err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
5684 39cd0ff6 2019-07-12 stsp goto done;
5685 5c1e53bc 2019-07-28 stsp }
5686 5c1e53bc 2019-07-28 stsp
5687 5c1e53bc 2019-07-28 stsp TAILQ_FOREACH(pe, paths, entry) {
5688 5c1e53bc 2019-07-28 stsp err = check_path_is_commitable(pe->path, &commitable_paths);
5689 5c1e53bc 2019-07-28 stsp if (err)
5690 5c1e53bc 2019-07-28 stsp goto done;
5691 39cd0ff6 2019-07-12 stsp }
5692 f0b75401 2019-08-03 stsp
5693 b50cabdf 2019-07-12 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
5694 b50cabdf 2019-07-12 stsp struct got_commitable *ct = pe->data;
5695 f0b75401 2019-08-03 stsp const char *ct_path = ct->in_repo_path;
5696 f0b75401 2019-08-03 stsp
5697 f0b75401 2019-08-03 stsp while (ct_path[0] == '/')
5698 f0b75401 2019-08-03 stsp ct_path++;
5699 f0b75401 2019-08-03 stsp err = check_out_of_date(ct_path, ct->status,
5700 5f8a88c6 2019-08-03 stsp ct->staged_status, ct->base_blob_id, ct->base_commit_id,
5701 5f8a88c6 2019-08-03 stsp head_commit_id, repo, GOT_ERR_COMMIT_OUT_OF_DATE);
5702 b50cabdf 2019-07-12 stsp if (err)
5703 b50cabdf 2019-07-12 stsp goto done;
5704 f0b75401 2019-08-03 stsp
5705 b50cabdf 2019-07-12 stsp }
5706 b50cabdf 2019-07-12 stsp
5707 39cd0ff6 2019-07-12 stsp err = commit_worktree(new_commit_id, &commitable_paths,
5708 5c1e53bc 2019-07-28 stsp head_commit_id, worktree, author, committer,
5709 39cd0ff6 2019-07-12 stsp commit_msg_cb, commit_arg, status_cb, status_arg, repo);
5710 39cd0ff6 2019-07-12 stsp if (err)
5711 39cd0ff6 2019-07-12 stsp goto done;
5712 39cd0ff6 2019-07-12 stsp
5713 437adc9d 2020-12-10 yzhong err = update_fileindex_after_commit(worktree, &commitable_paths,
5714 437adc9d 2020-12-10 yzhong *new_commit_id, fileindex, have_staged_files);
5715 39cd0ff6 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
5716 39cd0ff6 2019-07-12 stsp if (sync_err && err == NULL)
5717 39cd0ff6 2019-07-12 stsp err = sync_err;
5718 39cd0ff6 2019-07-12 stsp done:
5719 39cd0ff6 2019-07-12 stsp if (fileindex)
5720 39cd0ff6 2019-07-12 stsp got_fileindex_free(fileindex);
5721 39cd0ff6 2019-07-12 stsp free(fileindex_path);
5722 39cd0ff6 2019-07-12 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
5723 39cd0ff6 2019-07-12 stsp if (unlockerr && err == NULL)
5724 39cd0ff6 2019-07-12 stsp err = unlockerr;
5725 39cd0ff6 2019-07-12 stsp TAILQ_FOREACH(pe, &commitable_paths, entry) {
5726 39cd0ff6 2019-07-12 stsp struct got_commitable *ct = pe->data;
5727 39cd0ff6 2019-07-12 stsp free_commitable(ct);
5728 39cd0ff6 2019-07-12 stsp }
5729 39cd0ff6 2019-07-12 stsp got_pathlist_free(&commitable_paths);
5730 c4296144 2019-05-09 stsp return err;
5731 8656d6c4 2019-05-20 stsp }
5732 8656d6c4 2019-05-20 stsp
5733 8656d6c4 2019-05-20 stsp const char *
5734 8656d6c4 2019-05-20 stsp got_commitable_get_path(struct got_commitable *ct)
5735 8656d6c4 2019-05-20 stsp {
5736 8656d6c4 2019-05-20 stsp return ct->path;
5737 8656d6c4 2019-05-20 stsp }
5738 8656d6c4 2019-05-20 stsp
5739 8656d6c4 2019-05-20 stsp unsigned int
5740 8656d6c4 2019-05-20 stsp got_commitable_get_status(struct got_commitable *ct)
5741 8656d6c4 2019-05-20 stsp {
5742 8656d6c4 2019-05-20 stsp return ct->status;
5743 818c7501 2019-07-11 stsp }
5744 818c7501 2019-07-11 stsp
5745 818c7501 2019-07-11 stsp struct check_rebase_ok_arg {
5746 818c7501 2019-07-11 stsp struct got_worktree *worktree;
5747 818c7501 2019-07-11 stsp struct got_repository *repo;
5748 818c7501 2019-07-11 stsp };
5749 818c7501 2019-07-11 stsp
5750 818c7501 2019-07-11 stsp static const struct got_error *
5751 818c7501 2019-07-11 stsp check_rebase_ok(void *arg, struct got_fileindex_entry *ie)
5752 818c7501 2019-07-11 stsp {
5753 818c7501 2019-07-11 stsp const struct got_error *err = NULL;
5754 818c7501 2019-07-11 stsp struct check_rebase_ok_arg *a = arg;
5755 818c7501 2019-07-11 stsp unsigned char status;
5756 818c7501 2019-07-11 stsp struct stat sb;
5757 818c7501 2019-07-11 stsp char *ondisk_path;
5758 818c7501 2019-07-11 stsp
5759 6a263307 2019-07-27 stsp /* Reject rebase of a work tree with mixed base commits. */
5760 6a263307 2019-07-27 stsp if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
5761 6a263307 2019-07-27 stsp SHA1_DIGEST_LENGTH))
5762 6a263307 2019-07-27 stsp return got_error(GOT_ERR_MIXED_COMMITS);
5763 818c7501 2019-07-11 stsp
5764 818c7501 2019-07-11 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
5765 818c7501 2019-07-11 stsp == -1)
5766 818c7501 2019-07-11 stsp return got_error_from_errno("asprintf");
5767 818c7501 2019-07-11 stsp
5768 b9622844 2019-08-03 stsp /* Reject rebase of a work tree with modified or staged files. */
5769 7f91a133 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
5770 818c7501 2019-07-11 stsp free(ondisk_path);
5771 818c7501 2019-07-11 stsp if (err)
5772 818c7501 2019-07-11 stsp return err;
5773 818c7501 2019-07-11 stsp
5774 6a263307 2019-07-27 stsp if (status != GOT_STATUS_NO_CHANGE)
5775 818c7501 2019-07-11 stsp return got_error(GOT_ERR_MODIFIED);
5776 b9622844 2019-08-03 stsp if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
5777 b9622844 2019-08-03 stsp return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
5778 818c7501 2019-07-11 stsp
5779 818c7501 2019-07-11 stsp return NULL;
5780 818c7501 2019-07-11 stsp }
5781 818c7501 2019-07-11 stsp
5782 818c7501 2019-07-11 stsp const struct got_error *
5783 818c7501 2019-07-11 stsp got_worktree_rebase_prepare(struct got_reference **new_base_branch_ref,
5784 3e3a69f1 2019-07-25 stsp struct got_reference **tmp_branch, struct got_fileindex **fileindex,
5785 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_reference *branch,
5786 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
5787 818c7501 2019-07-11 stsp {
5788 818c7501 2019-07-11 stsp const struct got_error *err = NULL;
5789 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
5790 818c7501 2019-07-11 stsp char *branch_ref_name = NULL;
5791 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
5792 818c7501 2019-07-11 stsp struct check_rebase_ok_arg ok_arg;
5793 818c7501 2019-07-11 stsp struct got_reference *wt_branch = NULL, *branch_ref = NULL;
5794 e51d7b55 2020-01-04 stsp struct got_object_id *wt_branch_tip = NULL;
5795 818c7501 2019-07-11 stsp
5796 818c7501 2019-07-11 stsp *new_base_branch_ref = NULL;
5797 818c7501 2019-07-11 stsp *tmp_branch = NULL;
5798 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
5799 818c7501 2019-07-11 stsp
5800 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
5801 818c7501 2019-07-11 stsp if (err)
5802 818c7501 2019-07-11 stsp return err;
5803 818c7501 2019-07-11 stsp
5804 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
5805 818c7501 2019-07-11 stsp if (err)
5806 818c7501 2019-07-11 stsp goto done;
5807 818c7501 2019-07-11 stsp
5808 818c7501 2019-07-11 stsp ok_arg.worktree = worktree;
5809 818c7501 2019-07-11 stsp ok_arg.repo = repo;
5810 3e3a69f1 2019-07-25 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
5811 818c7501 2019-07-11 stsp &ok_arg);
5812 818c7501 2019-07-11 stsp if (err)
5813 818c7501 2019-07-11 stsp goto done;
5814 818c7501 2019-07-11 stsp
5815 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
5816 818c7501 2019-07-11 stsp if (err)
5817 818c7501 2019-07-11 stsp goto done;
5818 818c7501 2019-07-11 stsp
5819 818c7501 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
5820 818c7501 2019-07-11 stsp if (err)
5821 818c7501 2019-07-11 stsp goto done;
5822 818c7501 2019-07-11 stsp
5823 818c7501 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
5824 818c7501 2019-07-11 stsp if (err)
5825 818c7501 2019-07-11 stsp goto done;
5826 818c7501 2019-07-11 stsp
5827 818c7501 2019-07-11 stsp err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
5828 818c7501 2019-07-11 stsp 0);
5829 e51d7b55 2020-01-04 stsp if (err)
5830 e51d7b55 2020-01-04 stsp goto done;
5831 e51d7b55 2020-01-04 stsp
5832 e51d7b55 2020-01-04 stsp err = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
5833 818c7501 2019-07-11 stsp if (err)
5834 818c7501 2019-07-11 stsp goto done;
5835 e51d7b55 2020-01-04 stsp if (got_object_id_cmp(worktree->base_commit_id, wt_branch_tip) != 0) {
5836 e51d7b55 2020-01-04 stsp err = got_error(GOT_ERR_REBASE_OUT_OF_DATE);
5837 e51d7b55 2020-01-04 stsp goto done;
5838 e51d7b55 2020-01-04 stsp }
5839 818c7501 2019-07-11 stsp
5840 818c7501 2019-07-11 stsp err = got_ref_alloc_symref(new_base_branch_ref,
5841 818c7501 2019-07-11 stsp new_base_branch_ref_name, wt_branch);
5842 818c7501 2019-07-11 stsp if (err)
5843 818c7501 2019-07-11 stsp goto done;
5844 818c7501 2019-07-11 stsp err = got_ref_write(*new_base_branch_ref, repo);
5845 818c7501 2019-07-11 stsp if (err)
5846 818c7501 2019-07-11 stsp goto done;
5847 818c7501 2019-07-11 stsp
5848 818c7501 2019-07-11 stsp /* TODO Lock original branch's ref while rebasing? */
5849 818c7501 2019-07-11 stsp
5850 818c7501 2019-07-11 stsp err = got_ref_alloc_symref(&branch_ref, branch_ref_name, branch);
5851 818c7501 2019-07-11 stsp if (err)
5852 818c7501 2019-07-11 stsp goto done;
5853 818c7501 2019-07-11 stsp
5854 818c7501 2019-07-11 stsp err = got_ref_write(branch_ref, repo);
5855 818c7501 2019-07-11 stsp if (err)
5856 818c7501 2019-07-11 stsp goto done;
5857 818c7501 2019-07-11 stsp
5858 818c7501 2019-07-11 stsp err = got_ref_alloc(tmp_branch, tmp_branch_name,
5859 818c7501 2019-07-11 stsp worktree->base_commit_id);
5860 818c7501 2019-07-11 stsp if (err)
5861 818c7501 2019-07-11 stsp goto done;
5862 818c7501 2019-07-11 stsp err = got_ref_write(*tmp_branch, repo);
5863 818c7501 2019-07-11 stsp if (err)
5864 818c7501 2019-07-11 stsp goto done;
5865 818c7501 2019-07-11 stsp
5866 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, *tmp_branch);
5867 818c7501 2019-07-11 stsp if (err)
5868 818c7501 2019-07-11 stsp goto done;
5869 818c7501 2019-07-11 stsp done:
5870 818c7501 2019-07-11 stsp free(fileindex_path);
5871 818c7501 2019-07-11 stsp free(tmp_branch_name);
5872 818c7501 2019-07-11 stsp free(new_base_branch_ref_name);
5873 818c7501 2019-07-11 stsp free(branch_ref_name);
5874 818c7501 2019-07-11 stsp if (branch_ref)
5875 818c7501 2019-07-11 stsp got_ref_close(branch_ref);
5876 818c7501 2019-07-11 stsp if (wt_branch)
5877 818c7501 2019-07-11 stsp got_ref_close(wt_branch);
5878 e51d7b55 2020-01-04 stsp free(wt_branch_tip);
5879 818c7501 2019-07-11 stsp if (err) {
5880 818c7501 2019-07-11 stsp if (*new_base_branch_ref) {
5881 818c7501 2019-07-11 stsp got_ref_close(*new_base_branch_ref);
5882 818c7501 2019-07-11 stsp *new_base_branch_ref = NULL;
5883 818c7501 2019-07-11 stsp }
5884 818c7501 2019-07-11 stsp if (*tmp_branch) {
5885 818c7501 2019-07-11 stsp got_ref_close(*tmp_branch);
5886 818c7501 2019-07-11 stsp *tmp_branch = NULL;
5887 818c7501 2019-07-11 stsp }
5888 3e3a69f1 2019-07-25 stsp if (*fileindex) {
5889 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
5890 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
5891 3e3a69f1 2019-07-25 stsp }
5892 818c7501 2019-07-11 stsp lock_worktree(worktree, LOCK_SH);
5893 818c7501 2019-07-11 stsp }
5894 818c7501 2019-07-11 stsp return err;
5895 818c7501 2019-07-11 stsp }
5896 818c7501 2019-07-11 stsp
5897 818c7501 2019-07-11 stsp const struct got_error *
5898 818c7501 2019-07-11 stsp got_worktree_rebase_continue(struct got_object_id **commit_id,
5899 818c7501 2019-07-11 stsp struct got_reference **new_base_branch, struct got_reference **tmp_branch,
5900 3e3a69f1 2019-07-25 stsp struct got_reference **branch, struct got_fileindex **fileindex,
5901 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_repository *repo)
5902 818c7501 2019-07-11 stsp {
5903 818c7501 2019-07-11 stsp const struct got_error *err;
5904 818c7501 2019-07-11 stsp char *commit_ref_name = NULL, *new_base_branch_ref_name = NULL;
5905 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL, *branch_ref_name = NULL;
5906 818c7501 2019-07-11 stsp struct got_reference *commit_ref = NULL, *branch_ref = NULL;
5907 3e3a69f1 2019-07-25 stsp char *fileindex_path = NULL;
5908 f032f1f7 2019-08-04 stsp int have_staged_files = 0;
5909 818c7501 2019-07-11 stsp
5910 818c7501 2019-07-11 stsp *commit_id = NULL;
5911 3e3a69f1 2019-07-25 stsp *new_base_branch = NULL;
5912 3e3a69f1 2019-07-25 stsp *tmp_branch = NULL;
5913 3e3a69f1 2019-07-25 stsp *branch = NULL;
5914 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
5915 3e3a69f1 2019-07-25 stsp
5916 3e3a69f1 2019-07-25 stsp err = lock_worktree(worktree, LOCK_EX);
5917 3e3a69f1 2019-07-25 stsp if (err)
5918 3e3a69f1 2019-07-25 stsp return err;
5919 818c7501 2019-07-11 stsp
5920 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
5921 3e3a69f1 2019-07-25 stsp if (err)
5922 f032f1f7 2019-08-04 stsp goto done;
5923 f032f1f7 2019-08-04 stsp
5924 f032f1f7 2019-08-04 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
5925 f032f1f7 2019-08-04 stsp &have_staged_files);
5926 f032f1f7 2019-08-04 stsp if (err && err->code != GOT_ERR_CANCELLED)
5927 f032f1f7 2019-08-04 stsp goto done;
5928 f032f1f7 2019-08-04 stsp if (have_staged_files) {
5929 f032f1f7 2019-08-04 stsp err = got_error(GOT_ERR_STAGED_PATHS);
5930 3e3a69f1 2019-07-25 stsp goto done;
5931 f032f1f7 2019-08-04 stsp }
5932 3e3a69f1 2019-07-25 stsp
5933 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
5934 818c7501 2019-07-11 stsp if (err)
5935 f032f1f7 2019-08-04 stsp goto done;
5936 818c7501 2019-07-11 stsp
5937 818c7501 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
5938 818c7501 2019-07-11 stsp if (err)
5939 818c7501 2019-07-11 stsp goto done;
5940 818c7501 2019-07-11 stsp
5941 818c7501 2019-07-11 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
5942 818c7501 2019-07-11 stsp if (err)
5943 818c7501 2019-07-11 stsp goto done;
5944 818c7501 2019-07-11 stsp
5945 818c7501 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
5946 818c7501 2019-07-11 stsp if (err)
5947 818c7501 2019-07-11 stsp goto done;
5948 818c7501 2019-07-11 stsp
5949 818c7501 2019-07-11 stsp err = got_ref_open(&branch_ref, repo, branch_ref_name, 0);
5950 818c7501 2019-07-11 stsp if (err)
5951 818c7501 2019-07-11 stsp goto done;
5952 818c7501 2019-07-11 stsp
5953 818c7501 2019-07-11 stsp err = got_ref_open(branch, repo,
5954 818c7501 2019-07-11 stsp got_ref_get_symref_target(branch_ref), 0);
5955 818c7501 2019-07-11 stsp if (err)
5956 818c7501 2019-07-11 stsp goto done;
5957 818c7501 2019-07-11 stsp
5958 818c7501 2019-07-11 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
5959 818c7501 2019-07-11 stsp if (err)
5960 818c7501 2019-07-11 stsp goto done;
5961 818c7501 2019-07-11 stsp
5962 818c7501 2019-07-11 stsp err = got_ref_resolve(commit_id, repo, commit_ref);
5963 818c7501 2019-07-11 stsp if (err)
5964 818c7501 2019-07-11 stsp goto done;
5965 818c7501 2019-07-11 stsp
5966 818c7501 2019-07-11 stsp err = got_ref_open(new_base_branch, repo,
5967 818c7501 2019-07-11 stsp new_base_branch_ref_name, 0);
5968 818c7501 2019-07-11 stsp if (err)
5969 818c7501 2019-07-11 stsp goto done;
5970 818c7501 2019-07-11 stsp
5971 818c7501 2019-07-11 stsp err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
5972 818c7501 2019-07-11 stsp if (err)
5973 818c7501 2019-07-11 stsp goto done;
5974 818c7501 2019-07-11 stsp done:
5975 818c7501 2019-07-11 stsp free(commit_ref_name);
5976 818c7501 2019-07-11 stsp free(branch_ref_name);
5977 3e3a69f1 2019-07-25 stsp free(fileindex_path);
5978 818c7501 2019-07-11 stsp if (commit_ref)
5979 818c7501 2019-07-11 stsp got_ref_close(commit_ref);
5980 818c7501 2019-07-11 stsp if (branch_ref)
5981 818c7501 2019-07-11 stsp got_ref_close(branch_ref);
5982 818c7501 2019-07-11 stsp if (err) {
5983 818c7501 2019-07-11 stsp free(*commit_id);
5984 818c7501 2019-07-11 stsp *commit_id = NULL;
5985 818c7501 2019-07-11 stsp if (*tmp_branch) {
5986 818c7501 2019-07-11 stsp got_ref_close(*tmp_branch);
5987 818c7501 2019-07-11 stsp *tmp_branch = NULL;
5988 818c7501 2019-07-11 stsp }
5989 818c7501 2019-07-11 stsp if (*new_base_branch) {
5990 818c7501 2019-07-11 stsp got_ref_close(*new_base_branch);
5991 818c7501 2019-07-11 stsp *new_base_branch = NULL;
5992 818c7501 2019-07-11 stsp }
5993 818c7501 2019-07-11 stsp if (*branch) {
5994 818c7501 2019-07-11 stsp got_ref_close(*branch);
5995 818c7501 2019-07-11 stsp *branch = NULL;
5996 818c7501 2019-07-11 stsp }
5997 3e3a69f1 2019-07-25 stsp if (*fileindex) {
5998 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
5999 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6000 3e3a69f1 2019-07-25 stsp }
6001 3e3a69f1 2019-07-25 stsp lock_worktree(worktree, LOCK_SH);
6002 818c7501 2019-07-11 stsp }
6003 818c7501 2019-07-11 stsp return err;
6004 c4296144 2019-05-09 stsp }
6005 818c7501 2019-07-11 stsp
6006 818c7501 2019-07-11 stsp const struct got_error *
6007 818c7501 2019-07-11 stsp got_worktree_rebase_in_progress(int *in_progress, struct got_worktree *worktree)
6008 818c7501 2019-07-11 stsp {
6009 818c7501 2019-07-11 stsp const struct got_error *err;
6010 818c7501 2019-07-11 stsp char *tmp_branch_name = NULL;
6011 818c7501 2019-07-11 stsp
6012 818c7501 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6013 818c7501 2019-07-11 stsp if (err)
6014 818c7501 2019-07-11 stsp return err;
6015 818c7501 2019-07-11 stsp
6016 818c7501 2019-07-11 stsp *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6017 818c7501 2019-07-11 stsp free(tmp_branch_name);
6018 818c7501 2019-07-11 stsp return NULL;
6019 818c7501 2019-07-11 stsp }
6020 818c7501 2019-07-11 stsp
6021 818c7501 2019-07-11 stsp static const struct got_error *
6022 818c7501 2019-07-11 stsp collect_rebase_commit_msg(struct got_pathlist_head *commitable_paths,
6023 818c7501 2019-07-11 stsp char **logmsg, void *arg)
6024 818c7501 2019-07-11 stsp {
6025 0ebf8283 2019-07-24 stsp *logmsg = arg;
6026 818c7501 2019-07-11 stsp return NULL;
6027 818c7501 2019-07-11 stsp }
6028 818c7501 2019-07-11 stsp
6029 818c7501 2019-07-11 stsp static const struct got_error *
6030 88d0e355 2019-08-03 stsp rebase_status(void *arg, unsigned char status, unsigned char staged_status,
6031 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
6032 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
6033 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
6034 818c7501 2019-07-11 stsp {
6035 818c7501 2019-07-11 stsp return NULL;
6036 01757395 2019-07-12 stsp }
6037 01757395 2019-07-12 stsp
6038 01757395 2019-07-12 stsp struct collect_merged_paths_arg {
6039 01757395 2019-07-12 stsp got_worktree_checkout_cb progress_cb;
6040 01757395 2019-07-12 stsp void *progress_arg;
6041 01757395 2019-07-12 stsp struct got_pathlist_head *merged_paths;
6042 01757395 2019-07-12 stsp };
6043 01757395 2019-07-12 stsp
6044 01757395 2019-07-12 stsp static const struct got_error *
6045 01757395 2019-07-12 stsp collect_merged_paths(void *arg, unsigned char status, const char *path)
6046 01757395 2019-07-12 stsp {
6047 01757395 2019-07-12 stsp const struct got_error *err;
6048 01757395 2019-07-12 stsp struct collect_merged_paths_arg *a = arg;
6049 01757395 2019-07-12 stsp char *p;
6050 01757395 2019-07-12 stsp struct got_pathlist_entry *new;
6051 01757395 2019-07-12 stsp
6052 01757395 2019-07-12 stsp err = (*a->progress_cb)(a->progress_arg, status, path);
6053 01757395 2019-07-12 stsp if (err)
6054 01757395 2019-07-12 stsp return err;
6055 01757395 2019-07-12 stsp
6056 01757395 2019-07-12 stsp if (status != GOT_STATUS_MERGE &&
6057 01757395 2019-07-12 stsp status != GOT_STATUS_ADD &&
6058 01757395 2019-07-12 stsp status != GOT_STATUS_DELETE &&
6059 01757395 2019-07-12 stsp status != GOT_STATUS_CONFLICT)
6060 01757395 2019-07-12 stsp return NULL;
6061 01757395 2019-07-12 stsp
6062 01757395 2019-07-12 stsp p = strdup(path);
6063 01757395 2019-07-12 stsp if (p == NULL)
6064 01757395 2019-07-12 stsp return got_error_from_errno("strdup");
6065 01757395 2019-07-12 stsp
6066 01757395 2019-07-12 stsp err = got_pathlist_insert(&new, a->merged_paths, p, NULL);
6067 01757395 2019-07-12 stsp if (err || new == NULL)
6068 01757395 2019-07-12 stsp free(p);
6069 01757395 2019-07-12 stsp return err;
6070 01757395 2019-07-12 stsp }
6071 01757395 2019-07-12 stsp
6072 01757395 2019-07-12 stsp void
6073 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(struct got_pathlist_head *merged_paths)
6074 01757395 2019-07-12 stsp {
6075 01757395 2019-07-12 stsp struct got_pathlist_entry *pe;
6076 01757395 2019-07-12 stsp
6077 01757395 2019-07-12 stsp TAILQ_FOREACH(pe, merged_paths, entry)
6078 01757395 2019-07-12 stsp free((char *)pe->path);
6079 01757395 2019-07-12 stsp
6080 01757395 2019-07-12 stsp got_pathlist_free(merged_paths);
6081 818c7501 2019-07-11 stsp }
6082 818c7501 2019-07-11 stsp
6083 0ebf8283 2019-07-24 stsp static const struct got_error *
6084 0ebf8283 2019-07-24 stsp store_commit_id(const char *commit_ref_name, struct got_object_id *commit_id,
6085 de05890f 2020-03-05 stsp int is_rebase, struct got_repository *repo)
6086 818c7501 2019-07-11 stsp {
6087 818c7501 2019-07-11 stsp const struct got_error *err;
6088 818c7501 2019-07-11 stsp struct got_reference *commit_ref = NULL;
6089 818c7501 2019-07-11 stsp
6090 818c7501 2019-07-11 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6091 818c7501 2019-07-11 stsp if (err) {
6092 818c7501 2019-07-11 stsp if (err->code != GOT_ERR_NOT_REF)
6093 818c7501 2019-07-11 stsp goto done;
6094 818c7501 2019-07-11 stsp err = got_ref_alloc(&commit_ref, commit_ref_name, commit_id);
6095 818c7501 2019-07-11 stsp if (err)
6096 818c7501 2019-07-11 stsp goto done;
6097 818c7501 2019-07-11 stsp err = got_ref_write(commit_ref, repo);
6098 818c7501 2019-07-11 stsp if (err)
6099 818c7501 2019-07-11 stsp goto done;
6100 de05890f 2020-03-05 stsp } else if (is_rebase) {
6101 818c7501 2019-07-11 stsp struct got_object_id *stored_id;
6102 818c7501 2019-07-11 stsp int cmp;
6103 818c7501 2019-07-11 stsp
6104 818c7501 2019-07-11 stsp err = got_ref_resolve(&stored_id, repo, commit_ref);
6105 818c7501 2019-07-11 stsp if (err)
6106 818c7501 2019-07-11 stsp goto done;
6107 818c7501 2019-07-11 stsp cmp = got_object_id_cmp(commit_id, stored_id);
6108 818c7501 2019-07-11 stsp free(stored_id);
6109 818c7501 2019-07-11 stsp if (cmp != 0) {
6110 818c7501 2019-07-11 stsp err = got_error(GOT_ERR_REBASE_COMMITID);
6111 818c7501 2019-07-11 stsp goto done;
6112 818c7501 2019-07-11 stsp }
6113 818c7501 2019-07-11 stsp }
6114 0ebf8283 2019-07-24 stsp done:
6115 0ebf8283 2019-07-24 stsp if (commit_ref)
6116 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
6117 0ebf8283 2019-07-24 stsp return err;
6118 0ebf8283 2019-07-24 stsp }
6119 0ebf8283 2019-07-24 stsp
6120 0ebf8283 2019-07-24 stsp static const struct got_error *
6121 0ebf8283 2019-07-24 stsp rebase_merge_files(struct got_pathlist_head *merged_paths,
6122 0ebf8283 2019-07-24 stsp const char *commit_ref_name, struct got_worktree *worktree,
6123 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_object_id *parent_commit_id,
6124 3e3a69f1 2019-07-25 stsp struct got_object_id *commit_id, struct got_repository *repo,
6125 3e3a69f1 2019-07-25 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
6126 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
6127 0ebf8283 2019-07-24 stsp {
6128 0ebf8283 2019-07-24 stsp const struct got_error *err;
6129 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
6130 0ebf8283 2019-07-24 stsp struct collect_merged_paths_arg cmp_arg;
6131 3e3a69f1 2019-07-25 stsp char *fileindex_path;
6132 818c7501 2019-07-11 stsp
6133 0ebf8283 2019-07-24 stsp /* Work tree is locked/unlocked during rebase preparation/teardown. */
6134 0ebf8283 2019-07-24 stsp
6135 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
6136 0ebf8283 2019-07-24 stsp if (err)
6137 0ebf8283 2019-07-24 stsp return err;
6138 0ebf8283 2019-07-24 stsp
6139 01757395 2019-07-12 stsp cmp_arg.progress_cb = progress_cb;
6140 01757395 2019-07-12 stsp cmp_arg.progress_arg = progress_arg;
6141 01757395 2019-07-12 stsp cmp_arg.merged_paths = merged_paths;
6142 818c7501 2019-07-11 stsp err = merge_files(worktree, fileindex, fileindex_path,
6143 01757395 2019-07-12 stsp parent_commit_id, commit_id, repo, collect_merged_paths,
6144 01757395 2019-07-12 stsp &cmp_arg, cancel_cb, cancel_arg);
6145 818c7501 2019-07-11 stsp if (commit_ref)
6146 818c7501 2019-07-11 stsp got_ref_close(commit_ref);
6147 818c7501 2019-07-11 stsp return err;
6148 818c7501 2019-07-11 stsp }
6149 818c7501 2019-07-11 stsp
6150 818c7501 2019-07-11 stsp const struct got_error *
6151 0ebf8283 2019-07-24 stsp got_worktree_rebase_merge_files(struct got_pathlist_head *merged_paths,
6152 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6153 3e3a69f1 2019-07-25 stsp struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6154 3e3a69f1 2019-07-25 stsp struct got_repository *repo,
6155 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
6156 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
6157 818c7501 2019-07-11 stsp {
6158 0ebf8283 2019-07-24 stsp const struct got_error *err;
6159 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6160 0ebf8283 2019-07-24 stsp
6161 0ebf8283 2019-07-24 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6162 0ebf8283 2019-07-24 stsp if (err)
6163 0ebf8283 2019-07-24 stsp return err;
6164 0ebf8283 2019-07-24 stsp
6165 de05890f 2020-03-05 stsp err = store_commit_id(commit_ref_name, commit_id, 1, repo);
6166 0ebf8283 2019-07-24 stsp if (err)
6167 0ebf8283 2019-07-24 stsp goto done;
6168 0ebf8283 2019-07-24 stsp
6169 0ebf8283 2019-07-24 stsp err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6170 3e3a69f1 2019-07-25 stsp fileindex, parent_commit_id, commit_id, repo, progress_cb,
6171 3e3a69f1 2019-07-25 stsp progress_arg, cancel_cb, cancel_arg);
6172 0ebf8283 2019-07-24 stsp done:
6173 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6174 0ebf8283 2019-07-24 stsp return err;
6175 0ebf8283 2019-07-24 stsp }
6176 0ebf8283 2019-07-24 stsp
6177 0ebf8283 2019-07-24 stsp const struct got_error *
6178 0ebf8283 2019-07-24 stsp got_worktree_histedit_merge_files(struct got_pathlist_head *merged_paths,
6179 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6180 3e3a69f1 2019-07-25 stsp struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6181 3e3a69f1 2019-07-25 stsp struct got_repository *repo,
6182 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
6183 e6209546 2019-08-22 stsp got_cancel_cb cancel_cb, void *cancel_arg)
6184 0ebf8283 2019-07-24 stsp {
6185 0ebf8283 2019-07-24 stsp const struct got_error *err;
6186 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6187 0ebf8283 2019-07-24 stsp
6188 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6189 0ebf8283 2019-07-24 stsp if (err)
6190 0ebf8283 2019-07-24 stsp return err;
6191 0ebf8283 2019-07-24 stsp
6192 de05890f 2020-03-05 stsp err = store_commit_id(commit_ref_name, commit_id, 0, repo);
6193 0ebf8283 2019-07-24 stsp if (err)
6194 0ebf8283 2019-07-24 stsp goto done;
6195 0ebf8283 2019-07-24 stsp
6196 0ebf8283 2019-07-24 stsp err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6197 3e3a69f1 2019-07-25 stsp fileindex, parent_commit_id, commit_id, repo, progress_cb,
6198 3e3a69f1 2019-07-25 stsp progress_arg, cancel_cb, cancel_arg);
6199 0ebf8283 2019-07-24 stsp done:
6200 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6201 0ebf8283 2019-07-24 stsp return err;
6202 0ebf8283 2019-07-24 stsp }
6203 0ebf8283 2019-07-24 stsp
6204 0ebf8283 2019-07-24 stsp static const struct got_error *
6205 0ebf8283 2019-07-24 stsp rebase_commit(struct got_object_id **new_commit_id,
6206 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_reference *commit_ref,
6207 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6208 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_commit_object *orig_commit,
6209 3e3a69f1 2019-07-25 stsp const char *new_logmsg, struct got_repository *repo)
6210 0ebf8283 2019-07-24 stsp {
6211 a0e95631 2019-07-12 stsp const struct got_error *err, *sync_err;
6212 a0e95631 2019-07-12 stsp struct got_pathlist_head commitable_paths;
6213 a0e95631 2019-07-12 stsp struct collect_commitables_arg cc_arg;
6214 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
6215 a0e95631 2019-07-12 stsp struct got_reference *head_ref = NULL;
6216 a0e95631 2019-07-12 stsp struct got_object_id *head_commit_id = NULL;
6217 0ebf8283 2019-07-24 stsp char *logmsg = NULL;
6218 818c7501 2019-07-11 stsp
6219 a0e95631 2019-07-12 stsp TAILQ_INIT(&commitable_paths);
6220 eb3df2c4 2019-07-12 stsp *new_commit_id = NULL;
6221 a0e95631 2019-07-12 stsp
6222 877a927c 2019-07-12 stsp /* Work tree is locked/unlocked during rebase preparation/teardown. */
6223 818c7501 2019-07-11 stsp
6224 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
6225 a0e95631 2019-07-12 stsp if (err)
6226 3e3a69f1 2019-07-25 stsp return err;
6227 a0e95631 2019-07-12 stsp
6228 a0e95631 2019-07-12 stsp cc_arg.commitable_paths = &commitable_paths;
6229 a0e95631 2019-07-12 stsp cc_arg.worktree = worktree;
6230 a0e95631 2019-07-12 stsp cc_arg.repo = repo;
6231 5f8a88c6 2019-08-03 stsp cc_arg.have_staged_files = 0;
6232 01757395 2019-07-12 stsp /*
6233 01757395 2019-07-12 stsp * If possible get the status of individual files directly to
6234 01757395 2019-07-12 stsp * avoid crawling the entire work tree once per rebased commit.
6235 01757395 2019-07-12 stsp * TODO: Ideally, merged_paths would contain a list of commitables
6236 01757395 2019-07-12 stsp * we could use so we could skip worktree_status() entirely.
6237 01757395 2019-07-12 stsp */
6238 01757395 2019-07-12 stsp if (merged_paths) {
6239 01757395 2019-07-12 stsp struct got_pathlist_entry *pe;
6240 01757395 2019-07-12 stsp TAILQ_FOREACH(pe, merged_paths, entry) {
6241 01757395 2019-07-12 stsp err = worktree_status(worktree, pe->path, fileindex,
6242 f2a9dc41 2019-12-13 tracey repo, collect_commitables, &cc_arg, NULL, NULL, 0,
6243 f2a9dc41 2019-12-13 tracey 0);
6244 01757395 2019-07-12 stsp if (err)
6245 01757395 2019-07-12 stsp goto done;
6246 01757395 2019-07-12 stsp }
6247 01757395 2019-07-12 stsp } else {
6248 01757395 2019-07-12 stsp err = worktree_status(worktree, "", fileindex, repo,
6249 f2a9dc41 2019-12-13 tracey collect_commitables, &cc_arg, NULL, NULL, 0, 0);
6250 01757395 2019-07-12 stsp if (err)
6251 01757395 2019-07-12 stsp goto done;
6252 01757395 2019-07-12 stsp }
6253 a0e95631 2019-07-12 stsp
6254 a0e95631 2019-07-12 stsp if (TAILQ_EMPTY(&commitable_paths)) {
6255 a0e95631 2019-07-12 stsp /* No-op change; commit will be elided. */
6256 a0e95631 2019-07-12 stsp err = got_ref_delete(commit_ref, repo);
6257 a0e95631 2019-07-12 stsp if (err)
6258 a0e95631 2019-07-12 stsp goto done;
6259 a0e95631 2019-07-12 stsp err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
6260 a0e95631 2019-07-12 stsp goto done;
6261 ff0d2220 2019-07-11 stsp }
6262 818c7501 2019-07-11 stsp
6263 a0e95631 2019-07-12 stsp err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
6264 edd02c5e 2019-07-11 stsp if (err)
6265 edd02c5e 2019-07-11 stsp goto done;
6266 edd02c5e 2019-07-11 stsp
6267 a0e95631 2019-07-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
6268 818c7501 2019-07-11 stsp if (err)
6269 818c7501 2019-07-11 stsp goto done;
6270 818c7501 2019-07-11 stsp
6271 5943eee2 2019-08-13 stsp if (new_logmsg) {
6272 0ebf8283 2019-07-24 stsp logmsg = strdup(new_logmsg);
6273 5943eee2 2019-08-13 stsp if (logmsg == NULL) {
6274 5943eee2 2019-08-13 stsp err = got_error_from_errno("strdup");
6275 5943eee2 2019-08-13 stsp goto done;
6276 5943eee2 2019-08-13 stsp }
6277 5943eee2 2019-08-13 stsp } else {
6278 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, orig_commit);
6279 5943eee2 2019-08-13 stsp if (err)
6280 5943eee2 2019-08-13 stsp goto done;
6281 5943eee2 2019-08-13 stsp }
6282 0ebf8283 2019-07-24 stsp
6283 5943eee2 2019-08-13 stsp /* NB: commit_worktree will call free(logmsg) */
6284 a0e95631 2019-07-12 stsp err = commit_worktree(new_commit_id, &commitable_paths, head_commit_id,
6285 5c1e53bc 2019-07-28 stsp worktree, got_object_commit_get_author(orig_commit),
6286 a0e95631 2019-07-12 stsp got_object_commit_get_committer(orig_commit),
6287 0ebf8283 2019-07-24 stsp collect_rebase_commit_msg, logmsg, rebase_status, NULL, repo);
6288 a0e95631 2019-07-12 stsp if (err)
6289 a0e95631 2019-07-12 stsp goto done;
6290 a0e95631 2019-07-12 stsp
6291 818c7501 2019-07-11 stsp err = got_ref_change_ref(tmp_branch, *new_commit_id);
6292 a0e95631 2019-07-12 stsp if (err)
6293 a0e95631 2019-07-12 stsp goto done;
6294 a0e95631 2019-07-12 stsp
6295 a0e95631 2019-07-12 stsp err = got_ref_delete(commit_ref, repo);
6296 a0e95631 2019-07-12 stsp if (err)
6297 a0e95631 2019-07-12 stsp goto done;
6298 a0e95631 2019-07-12 stsp
6299 437adc9d 2020-12-10 yzhong err = update_fileindex_after_commit(worktree, &commitable_paths,
6300 437adc9d 2020-12-10 yzhong *new_commit_id, fileindex, 0);
6301 a0e95631 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6302 a0e95631 2019-07-12 stsp if (sync_err && err == NULL)
6303 a0e95631 2019-07-12 stsp err = sync_err;
6304 818c7501 2019-07-11 stsp done:
6305 a0e95631 2019-07-12 stsp free(fileindex_path);
6306 a0e95631 2019-07-12 stsp free(head_commit_id);
6307 a0e95631 2019-07-12 stsp if (head_ref)
6308 a0e95631 2019-07-12 stsp got_ref_close(head_ref);
6309 818c7501 2019-07-11 stsp if (err) {
6310 818c7501 2019-07-11 stsp free(*new_commit_id);
6311 818c7501 2019-07-11 stsp *new_commit_id = NULL;
6312 818c7501 2019-07-11 stsp }
6313 818c7501 2019-07-11 stsp return err;
6314 818c7501 2019-07-11 stsp }
6315 818c7501 2019-07-11 stsp
6316 818c7501 2019-07-11 stsp const struct got_error *
6317 0ebf8283 2019-07-24 stsp got_worktree_rebase_commit(struct got_object_id **new_commit_id,
6318 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6319 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6320 3e3a69f1 2019-07-25 stsp struct got_commit_object *orig_commit,
6321 0ebf8283 2019-07-24 stsp struct got_object_id *orig_commit_id, struct got_repository *repo)
6322 0ebf8283 2019-07-24 stsp {
6323 0ebf8283 2019-07-24 stsp const struct got_error *err;
6324 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6325 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
6326 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id = NULL;
6327 0ebf8283 2019-07-24 stsp
6328 0ebf8283 2019-07-24 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6329 0ebf8283 2019-07-24 stsp if (err)
6330 0ebf8283 2019-07-24 stsp return err;
6331 0ebf8283 2019-07-24 stsp
6332 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6333 0ebf8283 2019-07-24 stsp if (err)
6334 0ebf8283 2019-07-24 stsp goto done;
6335 0ebf8283 2019-07-24 stsp err = got_ref_resolve(&commit_id, repo, commit_ref);
6336 0ebf8283 2019-07-24 stsp if (err)
6337 0ebf8283 2019-07-24 stsp goto done;
6338 0ebf8283 2019-07-24 stsp if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
6339 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_REBASE_COMMITID);
6340 0ebf8283 2019-07-24 stsp goto done;
6341 0ebf8283 2019-07-24 stsp }
6342 0ebf8283 2019-07-24 stsp
6343 0ebf8283 2019-07-24 stsp err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6344 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, orig_commit, NULL, repo);
6345 0ebf8283 2019-07-24 stsp done:
6346 0ebf8283 2019-07-24 stsp if (commit_ref)
6347 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
6348 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6349 0ebf8283 2019-07-24 stsp free(commit_id);
6350 0ebf8283 2019-07-24 stsp return err;
6351 0ebf8283 2019-07-24 stsp }
6352 0ebf8283 2019-07-24 stsp
6353 0ebf8283 2019-07-24 stsp const struct got_error *
6354 0ebf8283 2019-07-24 stsp got_worktree_histedit_commit(struct got_object_id **new_commit_id,
6355 0ebf8283 2019-07-24 stsp struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6356 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6357 3e3a69f1 2019-07-25 stsp struct got_commit_object *orig_commit,
6358 0ebf8283 2019-07-24 stsp struct got_object_id *orig_commit_id, const char *new_logmsg,
6359 0ebf8283 2019-07-24 stsp struct got_repository *repo)
6360 0ebf8283 2019-07-24 stsp {
6361 0ebf8283 2019-07-24 stsp const struct got_error *err;
6362 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6363 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
6364 0ebf8283 2019-07-24 stsp
6365 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6366 0ebf8283 2019-07-24 stsp if (err)
6367 0ebf8283 2019-07-24 stsp return err;
6368 0ebf8283 2019-07-24 stsp
6369 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6370 0ebf8283 2019-07-24 stsp if (err)
6371 0ebf8283 2019-07-24 stsp goto done;
6372 0ebf8283 2019-07-24 stsp
6373 0ebf8283 2019-07-24 stsp err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6374 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, orig_commit, new_logmsg, repo);
6375 0ebf8283 2019-07-24 stsp done:
6376 0ebf8283 2019-07-24 stsp if (commit_ref)
6377 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
6378 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6379 0ebf8283 2019-07-24 stsp return err;
6380 0ebf8283 2019-07-24 stsp }
6381 0ebf8283 2019-07-24 stsp
6382 0ebf8283 2019-07-24 stsp const struct got_error *
6383 3e3a69f1 2019-07-25 stsp got_worktree_rebase_postpone(struct got_worktree *worktree,
6384 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex)
6385 818c7501 2019-07-11 stsp {
6386 3e3a69f1 2019-07-25 stsp if (fileindex)
6387 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
6388 818c7501 2019-07-11 stsp return lock_worktree(worktree, LOCK_SH);
6389 69844fba 2019-07-11 stsp }
6390 69844fba 2019-07-11 stsp
6391 69844fba 2019-07-11 stsp static const struct got_error *
6392 69844fba 2019-07-11 stsp delete_ref(const char *name, struct got_repository *repo)
6393 69844fba 2019-07-11 stsp {
6394 69844fba 2019-07-11 stsp const struct got_error *err;
6395 69844fba 2019-07-11 stsp struct got_reference *ref;
6396 69844fba 2019-07-11 stsp
6397 69844fba 2019-07-11 stsp err = got_ref_open(&ref, repo, name, 0);
6398 69844fba 2019-07-11 stsp if (err) {
6399 69844fba 2019-07-11 stsp if (err->code == GOT_ERR_NOT_REF)
6400 69844fba 2019-07-11 stsp return NULL;
6401 69844fba 2019-07-11 stsp return err;
6402 69844fba 2019-07-11 stsp }
6403 69844fba 2019-07-11 stsp
6404 69844fba 2019-07-11 stsp err = got_ref_delete(ref, repo);
6405 69844fba 2019-07-11 stsp got_ref_close(ref);
6406 69844fba 2019-07-11 stsp return err;
6407 818c7501 2019-07-11 stsp }
6408 818c7501 2019-07-11 stsp
6409 69844fba 2019-07-11 stsp static const struct got_error *
6410 69844fba 2019-07-11 stsp delete_rebase_refs(struct got_worktree *worktree, struct got_repository *repo)
6411 69844fba 2019-07-11 stsp {
6412 69844fba 2019-07-11 stsp const struct got_error *err;
6413 69844fba 2019-07-11 stsp char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
6414 69844fba 2019-07-11 stsp char *branch_ref_name = NULL, *commit_ref_name = NULL;
6415 69844fba 2019-07-11 stsp
6416 69844fba 2019-07-11 stsp err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6417 69844fba 2019-07-11 stsp if (err)
6418 69844fba 2019-07-11 stsp goto done;
6419 69844fba 2019-07-11 stsp err = delete_ref(tmp_branch_name, repo);
6420 69844fba 2019-07-11 stsp if (err)
6421 69844fba 2019-07-11 stsp goto done;
6422 69844fba 2019-07-11 stsp
6423 69844fba 2019-07-11 stsp err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6424 69844fba 2019-07-11 stsp if (err)
6425 69844fba 2019-07-11 stsp goto done;
6426 69844fba 2019-07-11 stsp err = delete_ref(new_base_branch_ref_name, repo);
6427 69844fba 2019-07-11 stsp if (err)
6428 69844fba 2019-07-11 stsp goto done;
6429 69844fba 2019-07-11 stsp
6430 69844fba 2019-07-11 stsp err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6431 69844fba 2019-07-11 stsp if (err)
6432 69844fba 2019-07-11 stsp goto done;
6433 69844fba 2019-07-11 stsp err = delete_ref(branch_ref_name, repo);
6434 69844fba 2019-07-11 stsp if (err)
6435 69844fba 2019-07-11 stsp goto done;
6436 69844fba 2019-07-11 stsp
6437 69844fba 2019-07-11 stsp err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6438 69844fba 2019-07-11 stsp if (err)
6439 69844fba 2019-07-11 stsp goto done;
6440 69844fba 2019-07-11 stsp err = delete_ref(commit_ref_name, repo);
6441 69844fba 2019-07-11 stsp if (err)
6442 69844fba 2019-07-11 stsp goto done;
6443 69844fba 2019-07-11 stsp
6444 69844fba 2019-07-11 stsp done:
6445 69844fba 2019-07-11 stsp free(tmp_branch_name);
6446 69844fba 2019-07-11 stsp free(new_base_branch_ref_name);
6447 69844fba 2019-07-11 stsp free(branch_ref_name);
6448 69844fba 2019-07-11 stsp free(commit_ref_name);
6449 69844fba 2019-07-11 stsp return err;
6450 69844fba 2019-07-11 stsp }
6451 69844fba 2019-07-11 stsp
6452 818c7501 2019-07-11 stsp const struct got_error *
6453 818c7501 2019-07-11 stsp got_worktree_rebase_complete(struct got_worktree *worktree,
6454 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *new_base_branch,
6455 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_reference *rebased_branch,
6456 818c7501 2019-07-11 stsp struct got_repository *repo)
6457 818c7501 2019-07-11 stsp {
6458 a615e0e7 2020-12-16 stsp const struct got_error *err, *unlockerr, *sync_err;
6459 818c7501 2019-07-11 stsp struct got_object_id *new_head_commit_id = NULL;
6460 a615e0e7 2020-12-16 stsp char *fileindex_path = NULL;
6461 818c7501 2019-07-11 stsp
6462 818c7501 2019-07-11 stsp err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
6463 818c7501 2019-07-11 stsp if (err)
6464 818c7501 2019-07-11 stsp return err;
6465 818c7501 2019-07-11 stsp
6466 818c7501 2019-07-11 stsp err = got_ref_change_ref(rebased_branch, new_head_commit_id);
6467 818c7501 2019-07-11 stsp if (err)
6468 818c7501 2019-07-11 stsp goto done;
6469 818c7501 2019-07-11 stsp
6470 818c7501 2019-07-11 stsp err = got_ref_write(rebased_branch, repo);
6471 818c7501 2019-07-11 stsp if (err)
6472 818c7501 2019-07-11 stsp goto done;
6473 818c7501 2019-07-11 stsp
6474 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, rebased_branch);
6475 818c7501 2019-07-11 stsp if (err)
6476 818c7501 2019-07-11 stsp goto done;
6477 818c7501 2019-07-11 stsp
6478 69844fba 2019-07-11 stsp err = delete_rebase_refs(worktree, repo);
6479 a615e0e7 2020-12-16 stsp if (err)
6480 a615e0e7 2020-12-16 stsp goto done;
6481 a615e0e7 2020-12-16 stsp
6482 a615e0e7 2020-12-16 stsp err = get_fileindex_path(&fileindex_path, worktree);
6483 a615e0e7 2020-12-16 stsp if (err)
6484 a615e0e7 2020-12-16 stsp goto done;
6485 a615e0e7 2020-12-16 stsp err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
6486 a615e0e7 2020-12-16 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6487 a615e0e7 2020-12-16 stsp if (sync_err && err == NULL)
6488 a615e0e7 2020-12-16 stsp err = sync_err;
6489 818c7501 2019-07-11 stsp done:
6490 a615e0e7 2020-12-16 stsp got_fileindex_free(fileindex);
6491 a615e0e7 2020-12-16 stsp free(fileindex_path);
6492 818c7501 2019-07-11 stsp free(new_head_commit_id);
6493 818c7501 2019-07-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
6494 818c7501 2019-07-11 stsp if (unlockerr && err == NULL)
6495 818c7501 2019-07-11 stsp err = unlockerr;
6496 818c7501 2019-07-11 stsp return err;
6497 818c7501 2019-07-11 stsp }
6498 818c7501 2019-07-11 stsp
6499 818c7501 2019-07-11 stsp const struct got_error *
6500 818c7501 2019-07-11 stsp got_worktree_rebase_abort(struct got_worktree *worktree,
6501 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_repository *repo,
6502 3e3a69f1 2019-07-25 stsp struct got_reference *new_base_branch,
6503 818c7501 2019-07-11 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
6504 818c7501 2019-07-11 stsp {
6505 ca355955 2019-07-12 stsp const struct got_error *err, *unlockerr, *sync_err;
6506 818c7501 2019-07-11 stsp struct got_reference *resolved = NULL;
6507 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL;
6508 818c7501 2019-07-11 stsp char *fileindex_path = NULL;
6509 1f1abb7e 2019-08-08 stsp struct revert_file_args rfa;
6510 a3a2faf2 2019-07-12 stsp struct got_object_id *tree_id = NULL;
6511 818c7501 2019-07-11 stsp
6512 818c7501 2019-07-11 stsp err = lock_worktree(worktree, LOCK_EX);
6513 818c7501 2019-07-11 stsp if (err)
6514 818c7501 2019-07-11 stsp return err;
6515 818c7501 2019-07-11 stsp
6516 818c7501 2019-07-11 stsp err = got_ref_open(&resolved, repo,
6517 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch), 0);
6518 818c7501 2019-07-11 stsp if (err)
6519 818c7501 2019-07-11 stsp goto done;
6520 818c7501 2019-07-11 stsp
6521 818c7501 2019-07-11 stsp err = got_worktree_set_head_ref(worktree, resolved);
6522 818c7501 2019-07-11 stsp if (err)
6523 818c7501 2019-07-11 stsp goto done;
6524 818c7501 2019-07-11 stsp
6525 818c7501 2019-07-11 stsp /*
6526 818c7501 2019-07-11 stsp * XXX commits to the base branch could have happened while
6527 818c7501 2019-07-11 stsp * we were busy rebasing; should we store the original commit ID
6528 818c7501 2019-07-11 stsp * when rebase begins and read it back here?
6529 818c7501 2019-07-11 stsp */
6530 818c7501 2019-07-11 stsp err = got_ref_resolve(&commit_id, repo, resolved);
6531 818c7501 2019-07-11 stsp if (err)
6532 818c7501 2019-07-11 stsp goto done;
6533 818c7501 2019-07-11 stsp
6534 818c7501 2019-07-11 stsp err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
6535 818c7501 2019-07-11 stsp if (err)
6536 818c7501 2019-07-11 stsp goto done;
6537 818c7501 2019-07-11 stsp
6538 ca355955 2019-07-12 stsp err = got_object_id_by_path(&tree_id, repo,
6539 ca355955 2019-07-12 stsp worktree->base_commit_id, worktree->path_prefix);
6540 ca355955 2019-07-12 stsp if (err)
6541 ca355955 2019-07-12 stsp goto done;
6542 ca355955 2019-07-12 stsp
6543 ca355955 2019-07-12 stsp err = delete_rebase_refs(worktree, repo);
6544 ca355955 2019-07-12 stsp if (err)
6545 ca355955 2019-07-12 stsp goto done;
6546 ca355955 2019-07-12 stsp
6547 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
6548 818c7501 2019-07-11 stsp if (err)
6549 818c7501 2019-07-11 stsp goto done;
6550 818c7501 2019-07-11 stsp
6551 1f1abb7e 2019-08-08 stsp rfa.worktree = worktree;
6552 1f1abb7e 2019-08-08 stsp rfa.fileindex = fileindex;
6553 1f1abb7e 2019-08-08 stsp rfa.progress_cb = progress_cb;
6554 1f1abb7e 2019-08-08 stsp rfa.progress_arg = progress_arg;
6555 33aa809d 2019-08-08 stsp rfa.patch_cb = NULL;
6556 33aa809d 2019-08-08 stsp rfa.patch_arg = NULL;
6557 1f1abb7e 2019-08-08 stsp rfa.repo = repo;
6558 347d1d3e 2019-07-12 stsp err = worktree_status(worktree, "", fileindex, repo,
6559 f2a9dc41 2019-12-13 tracey revert_file, &rfa, NULL, NULL, 0, 0);
6560 55bd499d 2019-07-12 stsp if (err)
6561 1f1abb7e 2019-08-08 stsp goto sync;
6562 55bd499d 2019-07-12 stsp
6563 267fb255 2019-07-12 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL,
6564 267fb255 2019-07-12 stsp repo, progress_cb, progress_arg, NULL, NULL);
6565 ca355955 2019-07-12 stsp sync:
6566 ca355955 2019-07-12 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6567 ca355955 2019-07-12 stsp if (sync_err && err == NULL)
6568 ca355955 2019-07-12 stsp err = sync_err;
6569 818c7501 2019-07-11 stsp done:
6570 818c7501 2019-07-11 stsp got_ref_close(resolved);
6571 a3a2faf2 2019-07-12 stsp free(tree_id);
6572 818c7501 2019-07-11 stsp free(commit_id);
6573 0ebf8283 2019-07-24 stsp if (fileindex)
6574 0ebf8283 2019-07-24 stsp got_fileindex_free(fileindex);
6575 0ebf8283 2019-07-24 stsp free(fileindex_path);
6576 0ebf8283 2019-07-24 stsp
6577 0ebf8283 2019-07-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
6578 0ebf8283 2019-07-24 stsp if (unlockerr && err == NULL)
6579 0ebf8283 2019-07-24 stsp err = unlockerr;
6580 0ebf8283 2019-07-24 stsp return err;
6581 0ebf8283 2019-07-24 stsp }
6582 0ebf8283 2019-07-24 stsp
6583 0ebf8283 2019-07-24 stsp const struct got_error *
6584 0ebf8283 2019-07-24 stsp got_worktree_histedit_prepare(struct got_reference **tmp_branch,
6585 0ebf8283 2019-07-24 stsp struct got_reference **branch_ref, struct got_object_id **base_commit_id,
6586 3e3a69f1 2019-07-25 stsp struct got_fileindex **fileindex, struct got_worktree *worktree,
6587 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
6588 0ebf8283 2019-07-24 stsp {
6589 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
6590 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL;
6591 0ebf8283 2019-07-24 stsp char *branch_ref_name = NULL;
6592 0ebf8283 2019-07-24 stsp char *base_commit_ref_name = NULL;
6593 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
6594 0ebf8283 2019-07-24 stsp struct check_rebase_ok_arg ok_arg;
6595 0ebf8283 2019-07-24 stsp struct got_reference *wt_branch = NULL;
6596 0ebf8283 2019-07-24 stsp struct got_reference *base_commit_ref = NULL;
6597 0ebf8283 2019-07-24 stsp
6598 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
6599 0ebf8283 2019-07-24 stsp *branch_ref = NULL;
6600 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
6601 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6602 0ebf8283 2019-07-24 stsp
6603 0ebf8283 2019-07-24 stsp err = lock_worktree(worktree, LOCK_EX);
6604 0ebf8283 2019-07-24 stsp if (err)
6605 0ebf8283 2019-07-24 stsp return err;
6606 0ebf8283 2019-07-24 stsp
6607 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
6608 0ebf8283 2019-07-24 stsp if (err)
6609 0ebf8283 2019-07-24 stsp goto done;
6610 0ebf8283 2019-07-24 stsp
6611 0ebf8283 2019-07-24 stsp ok_arg.worktree = worktree;
6612 0ebf8283 2019-07-24 stsp ok_arg.repo = repo;
6613 3e3a69f1 2019-07-25 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
6614 0ebf8283 2019-07-24 stsp &ok_arg);
6615 0ebf8283 2019-07-24 stsp if (err)
6616 0ebf8283 2019-07-24 stsp goto done;
6617 0ebf8283 2019-07-24 stsp
6618 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6619 0ebf8283 2019-07-24 stsp if (err)
6620 0ebf8283 2019-07-24 stsp goto done;
6621 0ebf8283 2019-07-24 stsp
6622 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6623 0ebf8283 2019-07-24 stsp if (err)
6624 0ebf8283 2019-07-24 stsp goto done;
6625 0ebf8283 2019-07-24 stsp
6626 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6627 0ebf8283 2019-07-24 stsp worktree);
6628 0ebf8283 2019-07-24 stsp if (err)
6629 0ebf8283 2019-07-24 stsp goto done;
6630 0ebf8283 2019-07-24 stsp
6631 0ebf8283 2019-07-24 stsp err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
6632 0ebf8283 2019-07-24 stsp 0);
6633 0ebf8283 2019-07-24 stsp if (err)
6634 0ebf8283 2019-07-24 stsp goto done;
6635 0ebf8283 2019-07-24 stsp
6636 0ebf8283 2019-07-24 stsp err = got_ref_alloc_symref(branch_ref, branch_ref_name, wt_branch);
6637 0ebf8283 2019-07-24 stsp if (err)
6638 0ebf8283 2019-07-24 stsp goto done;
6639 0ebf8283 2019-07-24 stsp
6640 0ebf8283 2019-07-24 stsp err = got_ref_write(*branch_ref, repo);
6641 0ebf8283 2019-07-24 stsp if (err)
6642 0ebf8283 2019-07-24 stsp goto done;
6643 0ebf8283 2019-07-24 stsp
6644 0ebf8283 2019-07-24 stsp err = got_ref_alloc(&base_commit_ref, base_commit_ref_name,
6645 0ebf8283 2019-07-24 stsp worktree->base_commit_id);
6646 0ebf8283 2019-07-24 stsp if (err)
6647 0ebf8283 2019-07-24 stsp goto done;
6648 0ebf8283 2019-07-24 stsp err = got_ref_write(base_commit_ref, repo);
6649 0ebf8283 2019-07-24 stsp if (err)
6650 0ebf8283 2019-07-24 stsp goto done;
6651 0ebf8283 2019-07-24 stsp *base_commit_id = got_object_id_dup(worktree->base_commit_id);
6652 0ebf8283 2019-07-24 stsp if (*base_commit_id == NULL) {
6653 0ebf8283 2019-07-24 stsp err = got_error_from_errno("got_object_id_dup");
6654 0ebf8283 2019-07-24 stsp goto done;
6655 0ebf8283 2019-07-24 stsp }
6656 0ebf8283 2019-07-24 stsp
6657 0ebf8283 2019-07-24 stsp err = got_ref_alloc(tmp_branch, tmp_branch_name,
6658 0ebf8283 2019-07-24 stsp worktree->base_commit_id);
6659 0ebf8283 2019-07-24 stsp if (err)
6660 0ebf8283 2019-07-24 stsp goto done;
6661 0ebf8283 2019-07-24 stsp err = got_ref_write(*tmp_branch, repo);
6662 0ebf8283 2019-07-24 stsp if (err)
6663 0ebf8283 2019-07-24 stsp goto done;
6664 0ebf8283 2019-07-24 stsp
6665 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, *tmp_branch);
6666 0ebf8283 2019-07-24 stsp if (err)
6667 0ebf8283 2019-07-24 stsp goto done;
6668 0ebf8283 2019-07-24 stsp done:
6669 0ebf8283 2019-07-24 stsp free(fileindex_path);
6670 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
6671 0ebf8283 2019-07-24 stsp free(branch_ref_name);
6672 0ebf8283 2019-07-24 stsp free(base_commit_ref_name);
6673 0ebf8283 2019-07-24 stsp if (wt_branch)
6674 0ebf8283 2019-07-24 stsp got_ref_close(wt_branch);
6675 0ebf8283 2019-07-24 stsp if (err) {
6676 0ebf8283 2019-07-24 stsp if (*branch_ref) {
6677 0ebf8283 2019-07-24 stsp got_ref_close(*branch_ref);
6678 0ebf8283 2019-07-24 stsp *branch_ref = NULL;
6679 0ebf8283 2019-07-24 stsp }
6680 0ebf8283 2019-07-24 stsp if (*tmp_branch) {
6681 0ebf8283 2019-07-24 stsp got_ref_close(*tmp_branch);
6682 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
6683 0ebf8283 2019-07-24 stsp }
6684 0ebf8283 2019-07-24 stsp free(*base_commit_id);
6685 3e3a69f1 2019-07-25 stsp if (*fileindex) {
6686 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
6687 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6688 3e3a69f1 2019-07-25 stsp }
6689 0ebf8283 2019-07-24 stsp lock_worktree(worktree, LOCK_SH);
6690 0ebf8283 2019-07-24 stsp }
6691 0ebf8283 2019-07-24 stsp return err;
6692 0ebf8283 2019-07-24 stsp }
6693 0ebf8283 2019-07-24 stsp
6694 0ebf8283 2019-07-24 stsp const struct got_error *
6695 3e3a69f1 2019-07-25 stsp got_worktree_histedit_postpone(struct got_worktree *worktree,
6696 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex)
6697 0ebf8283 2019-07-24 stsp {
6698 3e3a69f1 2019-07-25 stsp if (fileindex)
6699 3e3a69f1 2019-07-25 stsp got_fileindex_free(fileindex);
6700 0ebf8283 2019-07-24 stsp return lock_worktree(worktree, LOCK_SH);
6701 0ebf8283 2019-07-24 stsp }
6702 0ebf8283 2019-07-24 stsp
6703 0ebf8283 2019-07-24 stsp const struct got_error *
6704 0ebf8283 2019-07-24 stsp got_worktree_histedit_in_progress(int *in_progress,
6705 0ebf8283 2019-07-24 stsp struct got_worktree *worktree)
6706 0ebf8283 2019-07-24 stsp {
6707 0ebf8283 2019-07-24 stsp const struct got_error *err;
6708 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL;
6709 0ebf8283 2019-07-24 stsp
6710 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6711 0ebf8283 2019-07-24 stsp if (err)
6712 0ebf8283 2019-07-24 stsp return err;
6713 0ebf8283 2019-07-24 stsp
6714 0ebf8283 2019-07-24 stsp *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6715 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
6716 0ebf8283 2019-07-24 stsp return NULL;
6717 0ebf8283 2019-07-24 stsp }
6718 0ebf8283 2019-07-24 stsp
6719 0ebf8283 2019-07-24 stsp const struct got_error *
6720 0ebf8283 2019-07-24 stsp got_worktree_histedit_continue(struct got_object_id **commit_id,
6721 0ebf8283 2019-07-24 stsp struct got_reference **tmp_branch, struct got_reference **branch_ref,
6722 3e3a69f1 2019-07-25 stsp struct got_object_id **base_commit_id, struct got_fileindex **fileindex,
6723 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
6724 0ebf8283 2019-07-24 stsp {
6725 0ebf8283 2019-07-24 stsp const struct got_error *err;
6726 0ebf8283 2019-07-24 stsp char *commit_ref_name = NULL, *base_commit_ref_name = NULL;
6727 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL, *branch_ref_name = NULL;
6728 0ebf8283 2019-07-24 stsp struct got_reference *commit_ref = NULL;
6729 0ebf8283 2019-07-24 stsp struct got_reference *base_commit_ref = NULL;
6730 3e3a69f1 2019-07-25 stsp char *fileindex_path = NULL;
6731 f032f1f7 2019-08-04 stsp int have_staged_files = 0;
6732 0ebf8283 2019-07-24 stsp
6733 0ebf8283 2019-07-24 stsp *commit_id = NULL;
6734 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
6735 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
6736 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6737 0ebf8283 2019-07-24 stsp
6738 3e3a69f1 2019-07-25 stsp err = lock_worktree(worktree, LOCK_EX);
6739 3e3a69f1 2019-07-25 stsp if (err)
6740 3e3a69f1 2019-07-25 stsp return err;
6741 3e3a69f1 2019-07-25 stsp
6742 3e3a69f1 2019-07-25 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
6743 3e3a69f1 2019-07-25 stsp if (err)
6744 f032f1f7 2019-08-04 stsp goto done;
6745 f032f1f7 2019-08-04 stsp
6746 f032f1f7 2019-08-04 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
6747 f032f1f7 2019-08-04 stsp &have_staged_files);
6748 f032f1f7 2019-08-04 stsp if (err && err->code != GOT_ERR_CANCELLED)
6749 f032f1f7 2019-08-04 stsp goto done;
6750 f032f1f7 2019-08-04 stsp if (have_staged_files) {
6751 f032f1f7 2019-08-04 stsp err = got_error(GOT_ERR_STAGED_PATHS);
6752 3e3a69f1 2019-07-25 stsp goto done;
6753 f032f1f7 2019-08-04 stsp }
6754 3e3a69f1 2019-07-25 stsp
6755 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6756 0ebf8283 2019-07-24 stsp if (err)
6757 f032f1f7 2019-08-04 stsp goto done;
6758 0ebf8283 2019-07-24 stsp
6759 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6760 0ebf8283 2019-07-24 stsp if (err)
6761 0ebf8283 2019-07-24 stsp goto done;
6762 0ebf8283 2019-07-24 stsp
6763 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6764 0ebf8283 2019-07-24 stsp if (err)
6765 0ebf8283 2019-07-24 stsp goto done;
6766 0ebf8283 2019-07-24 stsp
6767 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6768 0ebf8283 2019-07-24 stsp worktree);
6769 0ebf8283 2019-07-24 stsp if (err)
6770 0ebf8283 2019-07-24 stsp goto done;
6771 0ebf8283 2019-07-24 stsp
6772 0ebf8283 2019-07-24 stsp err = got_ref_open(branch_ref, repo, branch_ref_name, 0);
6773 0ebf8283 2019-07-24 stsp if (err)
6774 0ebf8283 2019-07-24 stsp goto done;
6775 0ebf8283 2019-07-24 stsp
6776 0ebf8283 2019-07-24 stsp err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6777 0ebf8283 2019-07-24 stsp if (err)
6778 0ebf8283 2019-07-24 stsp goto done;
6779 0ebf8283 2019-07-24 stsp err = got_ref_resolve(commit_id, repo, commit_ref);
6780 0ebf8283 2019-07-24 stsp if (err)
6781 0ebf8283 2019-07-24 stsp goto done;
6782 0ebf8283 2019-07-24 stsp
6783 0ebf8283 2019-07-24 stsp err = got_ref_open(&base_commit_ref, repo, base_commit_ref_name, 0);
6784 0ebf8283 2019-07-24 stsp if (err)
6785 0ebf8283 2019-07-24 stsp goto done;
6786 0ebf8283 2019-07-24 stsp err = got_ref_resolve(base_commit_id, repo, base_commit_ref);
6787 0ebf8283 2019-07-24 stsp if (err)
6788 0ebf8283 2019-07-24 stsp goto done;
6789 0ebf8283 2019-07-24 stsp
6790 0ebf8283 2019-07-24 stsp err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
6791 0ebf8283 2019-07-24 stsp if (err)
6792 0ebf8283 2019-07-24 stsp goto done;
6793 0ebf8283 2019-07-24 stsp done:
6794 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6795 0ebf8283 2019-07-24 stsp free(branch_ref_name);
6796 3e3a69f1 2019-07-25 stsp free(fileindex_path);
6797 0ebf8283 2019-07-24 stsp if (commit_ref)
6798 0ebf8283 2019-07-24 stsp got_ref_close(commit_ref);
6799 0ebf8283 2019-07-24 stsp if (base_commit_ref)
6800 0ebf8283 2019-07-24 stsp got_ref_close(base_commit_ref);
6801 0ebf8283 2019-07-24 stsp if (err) {
6802 0ebf8283 2019-07-24 stsp free(*commit_id);
6803 0ebf8283 2019-07-24 stsp *commit_id = NULL;
6804 0ebf8283 2019-07-24 stsp free(*base_commit_id);
6805 0ebf8283 2019-07-24 stsp *base_commit_id = NULL;
6806 0ebf8283 2019-07-24 stsp if (*tmp_branch) {
6807 0ebf8283 2019-07-24 stsp got_ref_close(*tmp_branch);
6808 0ebf8283 2019-07-24 stsp *tmp_branch = NULL;
6809 0ebf8283 2019-07-24 stsp }
6810 3e3a69f1 2019-07-25 stsp if (*fileindex) {
6811 3e3a69f1 2019-07-25 stsp got_fileindex_free(*fileindex);
6812 3e3a69f1 2019-07-25 stsp *fileindex = NULL;
6813 3e3a69f1 2019-07-25 stsp }
6814 3e3a69f1 2019-07-25 stsp lock_worktree(worktree, LOCK_EX);
6815 0ebf8283 2019-07-24 stsp }
6816 0ebf8283 2019-07-24 stsp return err;
6817 0ebf8283 2019-07-24 stsp }
6818 0ebf8283 2019-07-24 stsp
6819 0ebf8283 2019-07-24 stsp static const struct got_error *
6820 0ebf8283 2019-07-24 stsp delete_histedit_refs(struct got_worktree *worktree, struct got_repository *repo)
6821 0ebf8283 2019-07-24 stsp {
6822 0ebf8283 2019-07-24 stsp const struct got_error *err;
6823 0ebf8283 2019-07-24 stsp char *tmp_branch_name = NULL, *base_commit_ref_name = NULL;
6824 0ebf8283 2019-07-24 stsp char *branch_ref_name = NULL, *commit_ref_name = NULL;
6825 0ebf8283 2019-07-24 stsp
6826 0ebf8283 2019-07-24 stsp err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6827 0ebf8283 2019-07-24 stsp if (err)
6828 0ebf8283 2019-07-24 stsp goto done;
6829 0ebf8283 2019-07-24 stsp err = delete_ref(tmp_branch_name, repo);
6830 0ebf8283 2019-07-24 stsp if (err)
6831 0ebf8283 2019-07-24 stsp goto done;
6832 0ebf8283 2019-07-24 stsp
6833 0ebf8283 2019-07-24 stsp err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6834 0ebf8283 2019-07-24 stsp worktree);
6835 0ebf8283 2019-07-24 stsp if (err)
6836 0ebf8283 2019-07-24 stsp goto done;
6837 0ebf8283 2019-07-24 stsp err = delete_ref(base_commit_ref_name, repo);
6838 0ebf8283 2019-07-24 stsp if (err)
6839 0ebf8283 2019-07-24 stsp goto done;
6840 0ebf8283 2019-07-24 stsp
6841 0ebf8283 2019-07-24 stsp err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6842 0ebf8283 2019-07-24 stsp if (err)
6843 0ebf8283 2019-07-24 stsp goto done;
6844 0ebf8283 2019-07-24 stsp err = delete_ref(branch_ref_name, repo);
6845 0ebf8283 2019-07-24 stsp if (err)
6846 0ebf8283 2019-07-24 stsp goto done;
6847 0ebf8283 2019-07-24 stsp
6848 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6849 0ebf8283 2019-07-24 stsp if (err)
6850 0ebf8283 2019-07-24 stsp goto done;
6851 0ebf8283 2019-07-24 stsp err = delete_ref(commit_ref_name, repo);
6852 0ebf8283 2019-07-24 stsp if (err)
6853 0ebf8283 2019-07-24 stsp goto done;
6854 0ebf8283 2019-07-24 stsp done:
6855 0ebf8283 2019-07-24 stsp free(tmp_branch_name);
6856 0ebf8283 2019-07-24 stsp free(base_commit_ref_name);
6857 0ebf8283 2019-07-24 stsp free(branch_ref_name);
6858 0ebf8283 2019-07-24 stsp free(commit_ref_name);
6859 0ebf8283 2019-07-24 stsp return err;
6860 0ebf8283 2019-07-24 stsp }
6861 0ebf8283 2019-07-24 stsp
6862 0ebf8283 2019-07-24 stsp const struct got_error *
6863 0ebf8283 2019-07-24 stsp got_worktree_histedit_abort(struct got_worktree *worktree,
6864 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_repository *repo,
6865 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_object_id *base_commit_id,
6866 0ebf8283 2019-07-24 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
6867 0ebf8283 2019-07-24 stsp {
6868 0ebf8283 2019-07-24 stsp const struct got_error *err, *unlockerr, *sync_err;
6869 0ebf8283 2019-07-24 stsp struct got_reference *resolved = NULL;
6870 0ebf8283 2019-07-24 stsp char *fileindex_path = NULL;
6871 0ebf8283 2019-07-24 stsp struct got_object_id *tree_id = NULL;
6872 1f1abb7e 2019-08-08 stsp struct revert_file_args rfa;
6873 0ebf8283 2019-07-24 stsp
6874 0ebf8283 2019-07-24 stsp err = lock_worktree(worktree, LOCK_EX);
6875 0ebf8283 2019-07-24 stsp if (err)
6876 0ebf8283 2019-07-24 stsp return err;
6877 0ebf8283 2019-07-24 stsp
6878 0ebf8283 2019-07-24 stsp err = got_ref_open(&resolved, repo,
6879 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch), 0);
6880 0ebf8283 2019-07-24 stsp if (err)
6881 0ebf8283 2019-07-24 stsp goto done;
6882 0ebf8283 2019-07-24 stsp
6883 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, resolved);
6884 0ebf8283 2019-07-24 stsp if (err)
6885 0ebf8283 2019-07-24 stsp goto done;
6886 0ebf8283 2019-07-24 stsp
6887 0ebf8283 2019-07-24 stsp err = got_worktree_set_base_commit_id(worktree, repo, base_commit_id);
6888 0ebf8283 2019-07-24 stsp if (err)
6889 0ebf8283 2019-07-24 stsp goto done;
6890 0ebf8283 2019-07-24 stsp
6891 0ebf8283 2019-07-24 stsp err = got_object_id_by_path(&tree_id, repo, base_commit_id,
6892 0ebf8283 2019-07-24 stsp worktree->path_prefix);
6893 0ebf8283 2019-07-24 stsp if (err)
6894 0ebf8283 2019-07-24 stsp goto done;
6895 0ebf8283 2019-07-24 stsp
6896 0ebf8283 2019-07-24 stsp err = delete_histedit_refs(worktree, repo);
6897 0ebf8283 2019-07-24 stsp if (err)
6898 0ebf8283 2019-07-24 stsp goto done;
6899 0ebf8283 2019-07-24 stsp
6900 3e3a69f1 2019-07-25 stsp err = get_fileindex_path(&fileindex_path, worktree);
6901 0ebf8283 2019-07-24 stsp if (err)
6902 0ebf8283 2019-07-24 stsp goto done;
6903 0ebf8283 2019-07-24 stsp
6904 1f1abb7e 2019-08-08 stsp rfa.worktree = worktree;
6905 1f1abb7e 2019-08-08 stsp rfa.fileindex = fileindex;
6906 1f1abb7e 2019-08-08 stsp rfa.progress_cb = progress_cb;
6907 1f1abb7e 2019-08-08 stsp rfa.progress_arg = progress_arg;
6908 33aa809d 2019-08-08 stsp rfa.patch_cb = NULL;
6909 33aa809d 2019-08-08 stsp rfa.patch_arg = NULL;
6910 1f1abb7e 2019-08-08 stsp rfa.repo = repo;
6911 0ebf8283 2019-07-24 stsp err = worktree_status(worktree, "", fileindex, repo,
6912 f2a9dc41 2019-12-13 tracey revert_file, &rfa, NULL, NULL, 0, 0);
6913 0ebf8283 2019-07-24 stsp if (err)
6914 1f1abb7e 2019-08-08 stsp goto sync;
6915 0ebf8283 2019-07-24 stsp
6916 0ebf8283 2019-07-24 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL,
6917 0ebf8283 2019-07-24 stsp repo, progress_cb, progress_arg, NULL, NULL);
6918 0ebf8283 2019-07-24 stsp sync:
6919 0ebf8283 2019-07-24 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6920 0ebf8283 2019-07-24 stsp if (sync_err && err == NULL)
6921 0ebf8283 2019-07-24 stsp err = sync_err;
6922 0ebf8283 2019-07-24 stsp done:
6923 0ebf8283 2019-07-24 stsp got_ref_close(resolved);
6924 0ebf8283 2019-07-24 stsp free(tree_id);
6925 818c7501 2019-07-11 stsp free(fileindex_path);
6926 818c7501 2019-07-11 stsp
6927 818c7501 2019-07-11 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
6928 818c7501 2019-07-11 stsp if (unlockerr && err == NULL)
6929 818c7501 2019-07-11 stsp err = unlockerr;
6930 818c7501 2019-07-11 stsp return err;
6931 818c7501 2019-07-11 stsp }
6932 0ebf8283 2019-07-24 stsp
6933 0ebf8283 2019-07-24 stsp const struct got_error *
6934 0ebf8283 2019-07-24 stsp got_worktree_histedit_complete(struct got_worktree *worktree,
6935 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6936 3e3a69f1 2019-07-25 stsp struct got_reference *edited_branch, struct got_repository *repo)
6937 0ebf8283 2019-07-24 stsp {
6938 a615e0e7 2020-12-16 stsp const struct got_error *err, *unlockerr, *sync_err;
6939 0ebf8283 2019-07-24 stsp struct got_object_id *new_head_commit_id = NULL;
6940 0ebf8283 2019-07-24 stsp struct got_reference *resolved = NULL;
6941 a615e0e7 2020-12-16 stsp char *fileindex_path = NULL;
6942 0ebf8283 2019-07-24 stsp
6943 0ebf8283 2019-07-24 stsp err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
6944 0ebf8283 2019-07-24 stsp if (err)
6945 0ebf8283 2019-07-24 stsp return err;
6946 0ebf8283 2019-07-24 stsp
6947 0ebf8283 2019-07-24 stsp err = got_ref_open(&resolved, repo,
6948 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(edited_branch), 0);
6949 0ebf8283 2019-07-24 stsp if (err)
6950 0ebf8283 2019-07-24 stsp goto done;
6951 0ebf8283 2019-07-24 stsp
6952 0ebf8283 2019-07-24 stsp err = got_ref_change_ref(resolved, new_head_commit_id);
6953 0ebf8283 2019-07-24 stsp if (err)
6954 0ebf8283 2019-07-24 stsp goto done;
6955 0ebf8283 2019-07-24 stsp
6956 0ebf8283 2019-07-24 stsp err = got_ref_write(resolved, repo);
6957 0ebf8283 2019-07-24 stsp if (err)
6958 0ebf8283 2019-07-24 stsp goto done;
6959 0ebf8283 2019-07-24 stsp
6960 0ebf8283 2019-07-24 stsp err = got_worktree_set_head_ref(worktree, resolved);
6961 0ebf8283 2019-07-24 stsp if (err)
6962 0ebf8283 2019-07-24 stsp goto done;
6963 0ebf8283 2019-07-24 stsp
6964 0ebf8283 2019-07-24 stsp err = delete_histedit_refs(worktree, repo);
6965 a615e0e7 2020-12-16 stsp if (err)
6966 a615e0e7 2020-12-16 stsp goto done;
6967 a615e0e7 2020-12-16 stsp
6968 a615e0e7 2020-12-16 stsp err = get_fileindex_path(&fileindex_path, worktree);
6969 a615e0e7 2020-12-16 stsp if (err)
6970 a615e0e7 2020-12-16 stsp goto done;
6971 a615e0e7 2020-12-16 stsp err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
6972 a615e0e7 2020-12-16 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
6973 a615e0e7 2020-12-16 stsp if (sync_err && err == NULL)
6974 a615e0e7 2020-12-16 stsp err = sync_err;
6975 0ebf8283 2019-07-24 stsp done:
6976 a615e0e7 2020-12-16 stsp got_fileindex_free(fileindex);
6977 a615e0e7 2020-12-16 stsp free(fileindex_path);
6978 0ebf8283 2019-07-24 stsp free(new_head_commit_id);
6979 0ebf8283 2019-07-24 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
6980 0ebf8283 2019-07-24 stsp if (unlockerr && err == NULL)
6981 0ebf8283 2019-07-24 stsp err = unlockerr;
6982 0ebf8283 2019-07-24 stsp return err;
6983 0ebf8283 2019-07-24 stsp }
6984 0ebf8283 2019-07-24 stsp
6985 0ebf8283 2019-07-24 stsp const struct got_error *
6986 0ebf8283 2019-07-24 stsp got_worktree_histedit_skip_commit(struct got_worktree *worktree,
6987 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6988 0ebf8283 2019-07-24 stsp {
6989 0ebf8283 2019-07-24 stsp const struct got_error *err;
6990 0ebf8283 2019-07-24 stsp char *commit_ref_name;
6991 0ebf8283 2019-07-24 stsp
6992 0ebf8283 2019-07-24 stsp err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6993 0ebf8283 2019-07-24 stsp if (err)
6994 0ebf8283 2019-07-24 stsp return err;
6995 0ebf8283 2019-07-24 stsp
6996 de05890f 2020-03-05 stsp err = store_commit_id(commit_ref_name, commit_id, 0, repo);
6997 0ebf8283 2019-07-24 stsp if (err)
6998 0ebf8283 2019-07-24 stsp goto done;
6999 0ebf8283 2019-07-24 stsp
7000 0ebf8283 2019-07-24 stsp err = delete_ref(commit_ref_name, repo);
7001 0ebf8283 2019-07-24 stsp done:
7002 0ebf8283 2019-07-24 stsp free(commit_ref_name);
7003 2822a352 2019-10-15 stsp return err;
7004 2822a352 2019-10-15 stsp }
7005 2822a352 2019-10-15 stsp
7006 2822a352 2019-10-15 stsp const struct got_error *
7007 2822a352 2019-10-15 stsp got_worktree_integrate_prepare(struct got_fileindex **fileindex,
7008 2822a352 2019-10-15 stsp struct got_reference **branch_ref, struct got_reference **base_branch_ref,
7009 2822a352 2019-10-15 stsp struct got_worktree *worktree, const char *refname,
7010 2822a352 2019-10-15 stsp struct got_repository *repo)
7011 2822a352 2019-10-15 stsp {
7012 2822a352 2019-10-15 stsp const struct got_error *err = NULL;
7013 2822a352 2019-10-15 stsp char *fileindex_path = NULL;
7014 2822a352 2019-10-15 stsp struct check_rebase_ok_arg ok_arg;
7015 2822a352 2019-10-15 stsp
7016 2822a352 2019-10-15 stsp *fileindex = NULL;
7017 2822a352 2019-10-15 stsp *branch_ref = NULL;
7018 2822a352 2019-10-15 stsp *base_branch_ref = NULL;
7019 2822a352 2019-10-15 stsp
7020 2822a352 2019-10-15 stsp err = lock_worktree(worktree, LOCK_EX);
7021 2822a352 2019-10-15 stsp if (err)
7022 2822a352 2019-10-15 stsp return err;
7023 2822a352 2019-10-15 stsp
7024 2822a352 2019-10-15 stsp if (strcmp(refname, got_worktree_get_head_ref_name(worktree)) == 0) {
7025 2822a352 2019-10-15 stsp err = got_error_msg(GOT_ERR_SAME_BRANCH,
7026 2822a352 2019-10-15 stsp "cannot integrate a branch into itself; "
7027 2822a352 2019-10-15 stsp "update -b or different branch name required");
7028 2822a352 2019-10-15 stsp goto done;
7029 2822a352 2019-10-15 stsp }
7030 2822a352 2019-10-15 stsp
7031 2822a352 2019-10-15 stsp err = open_fileindex(fileindex, &fileindex_path, worktree);
7032 2822a352 2019-10-15 stsp if (err)
7033 2822a352 2019-10-15 stsp goto done;
7034 2822a352 2019-10-15 stsp
7035 2822a352 2019-10-15 stsp /* Preconditions are the same as for rebase. */
7036 2822a352 2019-10-15 stsp ok_arg.worktree = worktree;
7037 2822a352 2019-10-15 stsp ok_arg.repo = repo;
7038 2822a352 2019-10-15 stsp err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
7039 2822a352 2019-10-15 stsp &ok_arg);
7040 2822a352 2019-10-15 stsp if (err)
7041 2822a352 2019-10-15 stsp goto done;
7042 2822a352 2019-10-15 stsp
7043 2822a352 2019-10-15 stsp err = got_ref_open(branch_ref, repo, refname, 1);
7044 2822a352 2019-10-15 stsp if (err)
7045 2822a352 2019-10-15 stsp goto done;
7046 2822a352 2019-10-15 stsp
7047 2822a352 2019-10-15 stsp err = got_ref_open(base_branch_ref, repo,
7048 2822a352 2019-10-15 stsp got_worktree_get_head_ref_name(worktree), 1);
7049 2822a352 2019-10-15 stsp done:
7050 2822a352 2019-10-15 stsp if (err) {
7051 2822a352 2019-10-15 stsp if (*branch_ref) {
7052 2822a352 2019-10-15 stsp got_ref_close(*branch_ref);
7053 2822a352 2019-10-15 stsp *branch_ref = NULL;
7054 2822a352 2019-10-15 stsp }
7055 2822a352 2019-10-15 stsp if (*base_branch_ref) {
7056 2822a352 2019-10-15 stsp got_ref_close(*base_branch_ref);
7057 2822a352 2019-10-15 stsp *base_branch_ref = NULL;
7058 2822a352 2019-10-15 stsp }
7059 2822a352 2019-10-15 stsp if (*fileindex) {
7060 2822a352 2019-10-15 stsp got_fileindex_free(*fileindex);
7061 2822a352 2019-10-15 stsp *fileindex = NULL;
7062 2822a352 2019-10-15 stsp }
7063 2822a352 2019-10-15 stsp lock_worktree(worktree, LOCK_SH);
7064 2822a352 2019-10-15 stsp }
7065 0cb83759 2019-08-03 stsp return err;
7066 0cb83759 2019-08-03 stsp }
7067 0cb83759 2019-08-03 stsp
7068 2822a352 2019-10-15 stsp const struct got_error *
7069 2822a352 2019-10-15 stsp got_worktree_integrate_continue(struct got_worktree *worktree,
7070 2822a352 2019-10-15 stsp struct got_fileindex *fileindex, struct got_repository *repo,
7071 2822a352 2019-10-15 stsp struct got_reference *branch_ref, struct got_reference *base_branch_ref,
7072 2822a352 2019-10-15 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
7073 2822a352 2019-10-15 stsp got_cancel_cb cancel_cb, void *cancel_arg)
7074 2822a352 2019-10-15 stsp {
7075 2822a352 2019-10-15 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
7076 2822a352 2019-10-15 stsp char *fileindex_path = NULL;
7077 2822a352 2019-10-15 stsp struct got_object_id *tree_id = NULL, *commit_id = NULL;
7078 2822a352 2019-10-15 stsp
7079 2822a352 2019-10-15 stsp err = get_fileindex_path(&fileindex_path, worktree);
7080 2822a352 2019-10-15 stsp if (err)
7081 2822a352 2019-10-15 stsp goto done;
7082 2822a352 2019-10-15 stsp
7083 2822a352 2019-10-15 stsp err = got_ref_resolve(&commit_id, repo, branch_ref);
7084 2822a352 2019-10-15 stsp if (err)
7085 2822a352 2019-10-15 stsp goto done;
7086 2822a352 2019-10-15 stsp
7087 2822a352 2019-10-15 stsp err = got_object_id_by_path(&tree_id, repo, commit_id,
7088 2822a352 2019-10-15 stsp worktree->path_prefix);
7089 2822a352 2019-10-15 stsp if (err)
7090 2822a352 2019-10-15 stsp goto done;
7091 2822a352 2019-10-15 stsp
7092 2822a352 2019-10-15 stsp err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
7093 2822a352 2019-10-15 stsp if (err)
7094 2822a352 2019-10-15 stsp goto done;
7095 2822a352 2019-10-15 stsp
7096 2822a352 2019-10-15 stsp err = checkout_files(worktree, fileindex, "", tree_id, NULL, repo,
7097 2822a352 2019-10-15 stsp progress_cb, progress_arg, cancel_cb, cancel_arg);
7098 2822a352 2019-10-15 stsp if (err)
7099 2822a352 2019-10-15 stsp goto sync;
7100 2822a352 2019-10-15 stsp
7101 2822a352 2019-10-15 stsp err = got_ref_change_ref(base_branch_ref, commit_id);
7102 2822a352 2019-10-15 stsp if (err)
7103 2822a352 2019-10-15 stsp goto sync;
7104 2822a352 2019-10-15 stsp
7105 2822a352 2019-10-15 stsp err = got_ref_write(base_branch_ref, repo);
7106 2822a352 2019-10-15 stsp sync:
7107 2822a352 2019-10-15 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7108 2822a352 2019-10-15 stsp if (sync_err && err == NULL)
7109 2822a352 2019-10-15 stsp err = sync_err;
7110 2822a352 2019-10-15 stsp
7111 2822a352 2019-10-15 stsp done:
7112 2822a352 2019-10-15 stsp unlockerr = got_ref_unlock(branch_ref);
7113 2822a352 2019-10-15 stsp if (unlockerr && err == NULL)
7114 2822a352 2019-10-15 stsp err = unlockerr;
7115 2822a352 2019-10-15 stsp got_ref_close(branch_ref);
7116 2822a352 2019-10-15 stsp
7117 2822a352 2019-10-15 stsp unlockerr = got_ref_unlock(base_branch_ref);
7118 2822a352 2019-10-15 stsp if (unlockerr && err == NULL)
7119 2822a352 2019-10-15 stsp err = unlockerr;
7120 2822a352 2019-10-15 stsp got_ref_close(base_branch_ref);
7121 2822a352 2019-10-15 stsp
7122 2822a352 2019-10-15 stsp got_fileindex_free(fileindex);
7123 2822a352 2019-10-15 stsp free(fileindex_path);
7124 2822a352 2019-10-15 stsp free(tree_id);
7125 2822a352 2019-10-15 stsp
7126 2822a352 2019-10-15 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7127 2822a352 2019-10-15 stsp if (unlockerr && err == NULL)
7128 2822a352 2019-10-15 stsp err = unlockerr;
7129 2822a352 2019-10-15 stsp return err;
7130 2822a352 2019-10-15 stsp }
7131 2822a352 2019-10-15 stsp
7132 2822a352 2019-10-15 stsp const struct got_error *
7133 2822a352 2019-10-15 stsp got_worktree_integrate_abort(struct got_worktree *worktree,
7134 2822a352 2019-10-15 stsp struct got_fileindex *fileindex, struct got_repository *repo,
7135 2822a352 2019-10-15 stsp struct got_reference *branch_ref, struct got_reference *base_branch_ref)
7136 2822a352 2019-10-15 stsp {
7137 8b692cd0 2019-10-21 stsp const struct got_error *err = NULL, *unlockerr = NULL;
7138 8b692cd0 2019-10-21 stsp
7139 8b692cd0 2019-10-21 stsp got_fileindex_free(fileindex);
7140 8b692cd0 2019-10-21 stsp
7141 8b692cd0 2019-10-21 stsp err = lock_worktree(worktree, LOCK_SH);
7142 8b692cd0 2019-10-21 stsp
7143 8b692cd0 2019-10-21 stsp unlockerr = got_ref_unlock(branch_ref);
7144 8b692cd0 2019-10-21 stsp if (unlockerr && err == NULL)
7145 8b692cd0 2019-10-21 stsp err = unlockerr;
7146 2822a352 2019-10-15 stsp got_ref_close(branch_ref);
7147 8b692cd0 2019-10-21 stsp
7148 8b692cd0 2019-10-21 stsp unlockerr = got_ref_unlock(base_branch_ref);
7149 8b692cd0 2019-10-21 stsp if (unlockerr && err == NULL)
7150 8b692cd0 2019-10-21 stsp err = unlockerr;
7151 2822a352 2019-10-15 stsp got_ref_close(base_branch_ref);
7152 8b692cd0 2019-10-21 stsp
7153 8b692cd0 2019-10-21 stsp return err;
7154 2822a352 2019-10-15 stsp }
7155 2822a352 2019-10-15 stsp
7156 2db2652d 2019-08-07 stsp struct check_stage_ok_arg {
7157 2db2652d 2019-08-07 stsp struct got_object_id *head_commit_id;
7158 2db2652d 2019-08-07 stsp struct got_worktree *worktree;
7159 2db2652d 2019-08-07 stsp struct got_fileindex *fileindex;
7160 2db2652d 2019-08-07 stsp struct got_repository *repo;
7161 2db2652d 2019-08-07 stsp int have_changes;
7162 2db2652d 2019-08-07 stsp };
7163 2db2652d 2019-08-07 stsp
7164 2db2652d 2019-08-07 stsp const struct got_error *
7165 2db2652d 2019-08-07 stsp check_stage_ok(void *arg, unsigned char status,
7166 2db2652d 2019-08-07 stsp unsigned char staged_status, const char *relpath,
7167 2db2652d 2019-08-07 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7168 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
7169 735ef5ac 2019-08-03 stsp {
7170 2db2652d 2019-08-07 stsp struct check_stage_ok_arg *a = arg;
7171 735ef5ac 2019-08-03 stsp const struct got_error *err = NULL;
7172 735ef5ac 2019-08-03 stsp struct got_fileindex_entry *ie;
7173 2db2652d 2019-08-07 stsp struct got_object_id base_commit_id;
7174 2db2652d 2019-08-07 stsp struct got_object_id *base_commit_idp = NULL;
7175 735ef5ac 2019-08-03 stsp char *in_repo_path = NULL, *p;
7176 8b13ce36 2019-08-08 stsp
7177 7b5dc508 2019-10-28 stsp if (status == GOT_STATUS_UNVERSIONED ||
7178 7b5dc508 2019-10-28 stsp status == GOT_STATUS_NO_CHANGE)
7179 8b13ce36 2019-08-08 stsp return NULL;
7180 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
7181 2a06fe5f 2019-08-24 stsp return got_error_set_errno(ENOENT, relpath);
7182 735ef5ac 2019-08-03 stsp
7183 2db2652d 2019-08-07 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7184 735ef5ac 2019-08-03 stsp if (ie == NULL)
7185 735ef5ac 2019-08-03 stsp return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7186 735ef5ac 2019-08-03 stsp
7187 2db2652d 2019-08-07 stsp if (asprintf(&in_repo_path, "%s%s%s", a->worktree->path_prefix,
7188 2db2652d 2019-08-07 stsp got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
7189 735ef5ac 2019-08-03 stsp relpath) == -1)
7190 735ef5ac 2019-08-03 stsp return got_error_from_errno("asprintf");
7191 735ef5ac 2019-08-03 stsp
7192 735ef5ac 2019-08-03 stsp if (got_fileindex_entry_has_commit(ie)) {
7193 735ef5ac 2019-08-03 stsp memcpy(base_commit_id.sha1, ie->commit_sha1,
7194 735ef5ac 2019-08-03 stsp SHA1_DIGEST_LENGTH);
7195 735ef5ac 2019-08-03 stsp base_commit_idp = &base_commit_id;
7196 735ef5ac 2019-08-03 stsp }
7197 735ef5ac 2019-08-03 stsp
7198 7b5dc508 2019-10-28 stsp if (status == GOT_STATUS_CONFLICT) {
7199 3aa5969e 2019-08-06 stsp err = got_error_path(ie->path, GOT_ERR_STAGE_CONFLICT);
7200 3aa5969e 2019-08-06 stsp goto done;
7201 3aa5969e 2019-08-06 stsp } else if (status != GOT_STATUS_ADD &&
7202 3aa5969e 2019-08-06 stsp status != GOT_STATUS_MODIFY &&
7203 3aa5969e 2019-08-06 stsp status != GOT_STATUS_DELETE) {
7204 3aa5969e 2019-08-06 stsp err = got_error_path(ie->path, GOT_ERR_FILE_STATUS);
7205 735ef5ac 2019-08-03 stsp goto done;
7206 3aa5969e 2019-08-06 stsp }
7207 735ef5ac 2019-08-03 stsp
7208 2db2652d 2019-08-07 stsp a->have_changes = 1;
7209 2db2652d 2019-08-07 stsp
7210 735ef5ac 2019-08-03 stsp p = in_repo_path;
7211 735ef5ac 2019-08-03 stsp while (p[0] == '/')
7212 735ef5ac 2019-08-03 stsp p++;
7213 2db2652d 2019-08-07 stsp err = check_out_of_date(p, status, staged_status,
7214 2db2652d 2019-08-07 stsp blob_id, base_commit_idp, a->head_commit_id, a->repo,
7215 5f8a88c6 2019-08-03 stsp GOT_ERR_STAGE_OUT_OF_DATE);
7216 735ef5ac 2019-08-03 stsp done:
7217 735ef5ac 2019-08-03 stsp free(in_repo_path);
7218 dc424a06 2019-08-07 stsp return err;
7219 dc424a06 2019-08-07 stsp }
7220 dc424a06 2019-08-07 stsp
7221 2db2652d 2019-08-07 stsp struct stage_path_arg {
7222 2db2652d 2019-08-07 stsp struct got_worktree *worktree;
7223 2db2652d 2019-08-07 stsp struct got_fileindex *fileindex;
7224 2db2652d 2019-08-07 stsp struct got_repository *repo;
7225 2db2652d 2019-08-07 stsp got_worktree_status_cb status_cb;
7226 2db2652d 2019-08-07 stsp void *status_arg;
7227 2db2652d 2019-08-07 stsp got_worktree_patch_cb patch_cb;
7228 2db2652d 2019-08-07 stsp void *patch_arg;
7229 7b5dc508 2019-10-28 stsp int staged_something;
7230 35213c7c 2020-07-23 stsp int allow_bad_symlinks;
7231 2db2652d 2019-08-07 stsp };
7232 2db2652d 2019-08-07 stsp
7233 2db2652d 2019-08-07 stsp static const struct got_error *
7234 2db2652d 2019-08-07 stsp stage_path(void *arg, unsigned char status,
7235 2db2652d 2019-08-07 stsp unsigned char staged_status, const char *relpath,
7236 2db2652d 2019-08-07 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7237 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
7238 0cb83759 2019-08-03 stsp {
7239 2db2652d 2019-08-07 stsp struct stage_path_arg *a = arg;
7240 0cb83759 2019-08-03 stsp const struct got_error *err = NULL;
7241 0cb83759 2019-08-03 stsp struct got_fileindex_entry *ie;
7242 2db2652d 2019-08-07 stsp char *ondisk_path = NULL, *path_content = NULL;
7243 0cb83759 2019-08-03 stsp uint32_t stage;
7244 af5a81b2 2019-08-08 stsp struct got_object_id *new_staged_blob_id = NULL;
7245 0aeb8099 2020-07-23 stsp struct stat sb;
7246 8b13ce36 2019-08-08 stsp
7247 8b13ce36 2019-08-08 stsp if (status == GOT_STATUS_UNVERSIONED)
7248 8b13ce36 2019-08-08 stsp return NULL;
7249 0cb83759 2019-08-03 stsp
7250 2db2652d 2019-08-07 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7251 d3e7c587 2019-08-03 stsp if (ie == NULL)
7252 d3e7c587 2019-08-03 stsp return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7253 0cb83759 2019-08-03 stsp
7254 2db2652d 2019-08-07 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
7255 2db2652d 2019-08-07 stsp relpath)== -1)
7256 2db2652d 2019-08-07 stsp return got_error_from_errno("asprintf");
7257 0cb83759 2019-08-03 stsp
7258 0cb83759 2019-08-03 stsp switch (status) {
7259 0cb83759 2019-08-03 stsp case GOT_STATUS_ADD:
7260 0cb83759 2019-08-03 stsp case GOT_STATUS_MODIFY:
7261 0aeb8099 2020-07-23 stsp /* XXX could sb.st_mode be passed in by our caller? */
7262 0aeb8099 2020-07-23 stsp if (lstat(ondisk_path, &sb) == -1) {
7263 0aeb8099 2020-07-23 stsp err = got_error_from_errno2("lstat", ondisk_path);
7264 0aeb8099 2020-07-23 stsp break;
7265 0aeb8099 2020-07-23 stsp }
7266 2db2652d 2019-08-07 stsp if (a->patch_cb) {
7267 dc424a06 2019-08-07 stsp if (status == GOT_STATUS_ADD) {
7268 dc424a06 2019-08-07 stsp int choice = GOT_PATCH_CHOICE_NONE;
7269 2db2652d 2019-08-07 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
7270 a7c9878d 2019-08-08 stsp status, ie->path, NULL, 1, 1);
7271 dc424a06 2019-08-07 stsp if (err)
7272 dc424a06 2019-08-07 stsp break;
7273 dc424a06 2019-08-07 stsp if (choice != GOT_PATCH_CHOICE_YES)
7274 dc424a06 2019-08-07 stsp break;
7275 dc424a06 2019-08-07 stsp } else {
7276 e635744c 2019-08-08 stsp err = create_patched_content(&path_content, 0,
7277 af5a81b2 2019-08-08 stsp staged_blob_id ? staged_blob_id : blob_id,
7278 12463d8b 2019-12-13 stsp ondisk_path, dirfd, de_name, ie->path,
7279 12463d8b 2019-12-13 stsp a->repo, a->patch_cb, a->patch_arg);
7280 dc424a06 2019-08-07 stsp if (err || path_content == NULL)
7281 dc424a06 2019-08-07 stsp break;
7282 dc424a06 2019-08-07 stsp }
7283 dc424a06 2019-08-07 stsp }
7284 af5a81b2 2019-08-08 stsp err = got_object_blob_create(&new_staged_blob_id,
7285 2db2652d 2019-08-07 stsp path_content ? path_content : ondisk_path, a->repo);
7286 0cb83759 2019-08-03 stsp if (err)
7287 dc424a06 2019-08-07 stsp break;
7288 af5a81b2 2019-08-08 stsp memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
7289 0cb83759 2019-08-03 stsp SHA1_DIGEST_LENGTH);
7290 d3e7c587 2019-08-03 stsp if (status == GOT_STATUS_ADD || staged_status == GOT_STATUS_ADD)
7291 0cb83759 2019-08-03 stsp stage = GOT_FILEIDX_STAGE_ADD;
7292 0cb83759 2019-08-03 stsp else
7293 0cb83759 2019-08-03 stsp stage = GOT_FILEIDX_STAGE_MODIFY;
7294 537ac44b 2019-08-03 stsp got_fileindex_entry_stage_set(ie, stage);
7295 0aeb8099 2020-07-23 stsp if (S_ISLNK(sb.st_mode)) {
7296 35213c7c 2020-07-23 stsp int is_bad_symlink = 0;
7297 35213c7c 2020-07-23 stsp if (!a->allow_bad_symlinks) {
7298 35213c7c 2020-07-23 stsp char target_path[PATH_MAX];
7299 35213c7c 2020-07-23 stsp ssize_t target_len;
7300 35213c7c 2020-07-23 stsp target_len = readlink(ondisk_path, target_path,
7301 35213c7c 2020-07-23 stsp sizeof(target_path));
7302 35213c7c 2020-07-23 stsp if (target_len == -1) {
7303 35213c7c 2020-07-23 stsp err = got_error_from_errno2("readlink",
7304 35213c7c 2020-07-23 stsp ondisk_path);
7305 35213c7c 2020-07-23 stsp break;
7306 35213c7c 2020-07-23 stsp }
7307 35213c7c 2020-07-23 stsp err = is_bad_symlink_target(&is_bad_symlink,
7308 35213c7c 2020-07-23 stsp target_path, target_len, ondisk_path,
7309 35213c7c 2020-07-23 stsp a->worktree->root_path);
7310 35213c7c 2020-07-23 stsp if (err)
7311 35213c7c 2020-07-23 stsp break;
7312 35213c7c 2020-07-23 stsp if (is_bad_symlink) {
7313 35213c7c 2020-07-23 stsp err = got_error_path(ondisk_path,
7314 35213c7c 2020-07-23 stsp GOT_ERR_BAD_SYMLINK);
7315 35213c7c 2020-07-23 stsp break;
7316 35213c7c 2020-07-23 stsp }
7317 35213c7c 2020-07-23 stsp }
7318 35213c7c 2020-07-23 stsp if (is_bad_symlink)
7319 35213c7c 2020-07-23 stsp got_fileindex_entry_staged_filetype_set(ie,
7320 35213c7c 2020-07-23 stsp GOT_FILEIDX_MODE_BAD_SYMLINK);
7321 35213c7c 2020-07-23 stsp else
7322 35213c7c 2020-07-23 stsp got_fileindex_entry_staged_filetype_set(ie,
7323 35213c7c 2020-07-23 stsp GOT_FILEIDX_MODE_SYMLINK);
7324 0aeb8099 2020-07-23 stsp } else {
7325 0aeb8099 2020-07-23 stsp got_fileindex_entry_staged_filetype_set(ie,
7326 0aeb8099 2020-07-23 stsp GOT_FILEIDX_MODE_REGULAR_FILE);
7327 0aeb8099 2020-07-23 stsp }
7328 7b5dc508 2019-10-28 stsp a->staged_something = 1;
7329 2db2652d 2019-08-07 stsp if (a->status_cb == NULL)
7330 dc424a06 2019-08-07 stsp break;
7331 2db2652d 2019-08-07 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
7332 2db2652d 2019-08-07 stsp get_staged_status(ie), relpath, blob_id,
7333 12463d8b 2019-12-13 stsp new_staged_blob_id, NULL, dirfd, de_name);
7334 0cb83759 2019-08-03 stsp break;
7335 0cb83759 2019-08-03 stsp case GOT_STATUS_DELETE:
7336 d3e7c587 2019-08-03 stsp if (staged_status == GOT_STATUS_DELETE)
7337 d3e7c587 2019-08-03 stsp break;
7338 2db2652d 2019-08-07 stsp if (a->patch_cb) {
7339 dc424a06 2019-08-07 stsp int choice = GOT_PATCH_CHOICE_NONE;
7340 2db2652d 2019-08-07 stsp err = (*a->patch_cb)(&choice, a->patch_arg, status,
7341 a7c9878d 2019-08-08 stsp ie->path, NULL, 1, 1);
7342 dc424a06 2019-08-07 stsp if (err)
7343 dc424a06 2019-08-07 stsp break;
7344 88f33a19 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_NO)
7345 88f33a19 2019-08-08 stsp break;
7346 88f33a19 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES) {
7347 88f33a19 2019-08-08 stsp err = got_error(GOT_ERR_PATCH_CHOICE);
7348 dc424a06 2019-08-07 stsp break;
7349 88f33a19 2019-08-08 stsp }
7350 dc424a06 2019-08-07 stsp }
7351 0cb83759 2019-08-03 stsp stage = GOT_FILEIDX_STAGE_DELETE;
7352 537ac44b 2019-08-03 stsp got_fileindex_entry_stage_set(ie, stage);
7353 7b5dc508 2019-10-28 stsp a->staged_something = 1;
7354 2db2652d 2019-08-07 stsp if (a->status_cb == NULL)
7355 dc424a06 2019-08-07 stsp break;
7356 2db2652d 2019-08-07 stsp err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
7357 12463d8b 2019-12-13 stsp get_staged_status(ie), relpath, NULL, NULL, NULL, dirfd,
7358 12463d8b 2019-12-13 stsp de_name);
7359 0cb83759 2019-08-03 stsp break;
7360 d3e7c587 2019-08-03 stsp case GOT_STATUS_NO_CHANGE:
7361 d3e7c587 2019-08-03 stsp break;
7362 ebf48fd5 2019-08-03 stsp case GOT_STATUS_CONFLICT:
7363 ebf48fd5 2019-08-03 stsp err = got_error_path(relpath, GOT_ERR_STAGE_CONFLICT);
7364 ebf48fd5 2019-08-03 stsp break;
7365 2a06fe5f 2019-08-24 stsp case GOT_STATUS_NONEXISTENT:
7366 2a06fe5f 2019-08-24 stsp err = got_error_set_errno(ENOENT, relpath);
7367 2a06fe5f 2019-08-24 stsp break;
7368 0cb83759 2019-08-03 stsp default:
7369 42005733 2019-08-03 stsp err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
7370 537ac44b 2019-08-03 stsp break;
7371 0cb83759 2019-08-03 stsp }
7372 dc424a06 2019-08-07 stsp
7373 dc424a06 2019-08-07 stsp if (path_content && unlink(path_content) == -1 && err == NULL)
7374 dc424a06 2019-08-07 stsp err = got_error_from_errno2("unlink", path_content);
7375 dc424a06 2019-08-07 stsp free(path_content);
7376 2db2652d 2019-08-07 stsp free(ondisk_path);
7377 af5a81b2 2019-08-08 stsp free(new_staged_blob_id);
7378 0ebf8283 2019-07-24 stsp return err;
7379 0ebf8283 2019-07-24 stsp }
7380 0cb83759 2019-08-03 stsp
7381 0cb83759 2019-08-03 stsp const struct got_error *
7382 1e71573e 2019-08-03 stsp got_worktree_stage(struct got_worktree *worktree,
7383 1e71573e 2019-08-03 stsp struct got_pathlist_head *paths,
7384 0cb83759 2019-08-03 stsp got_worktree_status_cb status_cb, void *status_arg,
7385 dc424a06 2019-08-07 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
7386 35213c7c 2020-07-23 stsp int allow_bad_symlinks, struct got_repository *repo)
7387 0cb83759 2019-08-03 stsp {
7388 0cb83759 2019-08-03 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
7389 0cb83759 2019-08-03 stsp struct got_pathlist_entry *pe;
7390 0cb83759 2019-08-03 stsp struct got_fileindex *fileindex = NULL;
7391 0cb83759 2019-08-03 stsp char *fileindex_path = NULL;
7392 735ef5ac 2019-08-03 stsp struct got_reference *head_ref = NULL;
7393 735ef5ac 2019-08-03 stsp struct got_object_id *head_commit_id = NULL;
7394 2db2652d 2019-08-07 stsp struct check_stage_ok_arg oka;
7395 2db2652d 2019-08-07 stsp struct stage_path_arg spa;
7396 0cb83759 2019-08-03 stsp
7397 0cb83759 2019-08-03 stsp err = lock_worktree(worktree, LOCK_EX);
7398 0cb83759 2019-08-03 stsp if (err)
7399 0cb83759 2019-08-03 stsp return err;
7400 0cb83759 2019-08-03 stsp
7401 735ef5ac 2019-08-03 stsp err = got_ref_open(&head_ref, repo,
7402 735ef5ac 2019-08-03 stsp got_worktree_get_head_ref_name(worktree), 0);
7403 735ef5ac 2019-08-03 stsp if (err)
7404 735ef5ac 2019-08-03 stsp goto done;
7405 735ef5ac 2019-08-03 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
7406 735ef5ac 2019-08-03 stsp if (err)
7407 735ef5ac 2019-08-03 stsp goto done;
7408 0cb83759 2019-08-03 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
7409 0cb83759 2019-08-03 stsp if (err)
7410 0cb83759 2019-08-03 stsp goto done;
7411 0cb83759 2019-08-03 stsp
7412 3aa5969e 2019-08-06 stsp /* Check pre-conditions before staging anything. */
7413 2db2652d 2019-08-07 stsp oka.head_commit_id = head_commit_id;
7414 2db2652d 2019-08-07 stsp oka.worktree = worktree;
7415 2db2652d 2019-08-07 stsp oka.fileindex = fileindex;
7416 2db2652d 2019-08-07 stsp oka.repo = repo;
7417 2db2652d 2019-08-07 stsp oka.have_changes = 0;
7418 0cb83759 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
7419 2db2652d 2019-08-07 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
7420 f2a9dc41 2019-12-13 tracey check_stage_ok, &oka, NULL, NULL, 0, 0);
7421 735ef5ac 2019-08-03 stsp if (err)
7422 735ef5ac 2019-08-03 stsp goto done;
7423 735ef5ac 2019-08-03 stsp }
7424 2db2652d 2019-08-07 stsp if (!oka.have_changes) {
7425 2db2652d 2019-08-07 stsp err = got_error(GOT_ERR_STAGE_NO_CHANGE);
7426 2db2652d 2019-08-07 stsp goto done;
7427 2db2652d 2019-08-07 stsp }
7428 735ef5ac 2019-08-03 stsp
7429 2db2652d 2019-08-07 stsp spa.worktree = worktree;
7430 2db2652d 2019-08-07 stsp spa.fileindex = fileindex;
7431 2db2652d 2019-08-07 stsp spa.repo = repo;
7432 2db2652d 2019-08-07 stsp spa.patch_cb = patch_cb;
7433 2db2652d 2019-08-07 stsp spa.patch_arg = patch_arg;
7434 2db2652d 2019-08-07 stsp spa.status_cb = status_cb;
7435 2db2652d 2019-08-07 stsp spa.status_arg = status_arg;
7436 7b5dc508 2019-10-28 stsp spa.staged_something = 0;
7437 35213c7c 2020-07-23 stsp spa.allow_bad_symlinks = allow_bad_symlinks;
7438 735ef5ac 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
7439 2db2652d 2019-08-07 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
7440 f2a9dc41 2019-12-13 tracey stage_path, &spa, NULL, NULL, 0, 0);
7441 42005733 2019-08-03 stsp if (err)
7442 2db2652d 2019-08-07 stsp goto done;
7443 7b5dc508 2019-10-28 stsp }
7444 7b5dc508 2019-10-28 stsp if (!spa.staged_something) {
7445 7b5dc508 2019-10-28 stsp err = got_error(GOT_ERR_STAGE_NO_CHANGE);
7446 7b5dc508 2019-10-28 stsp goto done;
7447 0cb83759 2019-08-03 stsp }
7448 0cb83759 2019-08-03 stsp
7449 0cb83759 2019-08-03 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7450 0cb83759 2019-08-03 stsp if (sync_err && err == NULL)
7451 0cb83759 2019-08-03 stsp err = sync_err;
7452 0cb83759 2019-08-03 stsp done:
7453 735ef5ac 2019-08-03 stsp if (head_ref)
7454 735ef5ac 2019-08-03 stsp got_ref_close(head_ref);
7455 735ef5ac 2019-08-03 stsp free(head_commit_id);
7456 0cb83759 2019-08-03 stsp free(fileindex_path);
7457 0cb83759 2019-08-03 stsp if (fileindex)
7458 0cb83759 2019-08-03 stsp got_fileindex_free(fileindex);
7459 0cb83759 2019-08-03 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7460 0cb83759 2019-08-03 stsp if (unlockerr && err == NULL)
7461 0cb83759 2019-08-03 stsp err = unlockerr;
7462 0cb83759 2019-08-03 stsp return err;
7463 0cb83759 2019-08-03 stsp }
7464 ad493afc 2019-08-03 stsp
7465 ad493afc 2019-08-03 stsp struct unstage_path_arg {
7466 ad493afc 2019-08-03 stsp struct got_worktree *worktree;
7467 ad493afc 2019-08-03 stsp struct got_fileindex *fileindex;
7468 ad493afc 2019-08-03 stsp struct got_repository *repo;
7469 ad493afc 2019-08-03 stsp got_worktree_checkout_cb progress_cb;
7470 ad493afc 2019-08-03 stsp void *progress_arg;
7471 2e1f37b0 2019-08-08 stsp got_worktree_patch_cb patch_cb;
7472 2e1f37b0 2019-08-08 stsp void *patch_arg;
7473 ad493afc 2019-08-03 stsp };
7474 2e1f37b0 2019-08-08 stsp
7475 2e1f37b0 2019-08-08 stsp static const struct got_error *
7476 2e1f37b0 2019-08-08 stsp create_unstaged_content(char **path_unstaged_content,
7477 2e1f37b0 2019-08-08 stsp char **path_new_staged_content, struct got_object_id *blob_id,
7478 2e1f37b0 2019-08-08 stsp struct got_object_id *staged_blob_id, const char *relpath,
7479 2e1f37b0 2019-08-08 stsp struct got_repository *repo,
7480 2e1f37b0 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg)
7481 2e1f37b0 2019-08-08 stsp {
7482 fe621944 2020-11-10 stsp const struct got_error *err, *free_err;
7483 2e1f37b0 2019-08-08 stsp struct got_blob_object *blob = NULL, *staged_blob = NULL;
7484 2e1f37b0 2019-08-08 stsp FILE *f1 = NULL, *f2 = NULL, *outfile = NULL, *rejectfile = NULL;
7485 2e1f37b0 2019-08-08 stsp char *path1 = NULL, *path2 = NULL, *label1 = NULL;
7486 fe621944 2020-11-10 stsp struct got_diffreg_result *diffreg_result = NULL;
7487 fe621944 2020-11-10 stsp int line_cur1 = 1, line_cur2 = 1, n = 0, nchunks_used = 0;
7488 fe621944 2020-11-10 stsp int have_content = 0, have_rejected_content = 0, i = 0, nchanges = 0;
7489 2e1f37b0 2019-08-08 stsp
7490 2e1f37b0 2019-08-08 stsp *path_unstaged_content = NULL;
7491 2e1f37b0 2019-08-08 stsp *path_new_staged_content = NULL;
7492 2e1f37b0 2019-08-08 stsp
7493 2e1f37b0 2019-08-08 stsp err = got_object_id_str(&label1, blob_id);
7494 2e1f37b0 2019-08-08 stsp if (err)
7495 2e1f37b0 2019-08-08 stsp return err;
7496 2e1f37b0 2019-08-08 stsp err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
7497 2e1f37b0 2019-08-08 stsp if (err)
7498 2e1f37b0 2019-08-08 stsp goto done;
7499 2e1f37b0 2019-08-08 stsp
7500 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(&path1, &f1, "got-unstage-blob-base");
7501 2e1f37b0 2019-08-08 stsp if (err)
7502 2e1f37b0 2019-08-08 stsp goto done;
7503 2e1f37b0 2019-08-08 stsp
7504 2e1f37b0 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
7505 2e1f37b0 2019-08-08 stsp if (err)
7506 2e1f37b0 2019-08-08 stsp goto done;
7507 2e1f37b0 2019-08-08 stsp
7508 2e1f37b0 2019-08-08 stsp err = got_object_open_as_blob(&staged_blob, repo, staged_blob_id, 8192);
7509 2e1f37b0 2019-08-08 stsp if (err)
7510 2e1f37b0 2019-08-08 stsp goto done;
7511 2e1f37b0 2019-08-08 stsp
7512 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(&path2, &f2, "got-unstage-blob-staged");
7513 2e1f37b0 2019-08-08 stsp if (err)
7514 2e1f37b0 2019-08-08 stsp goto done;
7515 ad493afc 2019-08-03 stsp
7516 2e1f37b0 2019-08-08 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, f2, staged_blob);
7517 2e1f37b0 2019-08-08 stsp if (err)
7518 2e1f37b0 2019-08-08 stsp goto done;
7519 2e1f37b0 2019-08-08 stsp
7520 fe621944 2020-11-10 stsp err = got_diff_files(&diffreg_result, f1, label1, f2,
7521 64453f7e 2020-11-21 stsp path2, 3, 0, 1, NULL);
7522 2e1f37b0 2019-08-08 stsp if (err)
7523 2e1f37b0 2019-08-08 stsp goto done;
7524 2e1f37b0 2019-08-08 stsp
7525 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(path_unstaged_content, &outfile,
7526 2e1f37b0 2019-08-08 stsp "got-unstaged-content");
7527 2e1f37b0 2019-08-08 stsp if (err)
7528 2e1f37b0 2019-08-08 stsp goto done;
7529 2e1f37b0 2019-08-08 stsp err = got_opentemp_named(path_new_staged_content, &rejectfile,
7530 2e1f37b0 2019-08-08 stsp "got-new-staged-content");
7531 2e1f37b0 2019-08-08 stsp if (err)
7532 2e1f37b0 2019-08-08 stsp goto done;
7533 2e1f37b0 2019-08-08 stsp
7534 2e1f37b0 2019-08-08 stsp if (fseek(f1, 0L, SEEK_SET) == -1) {
7535 2e1f37b0 2019-08-08 stsp err = got_ferror(f1, GOT_ERR_IO);
7536 2e1f37b0 2019-08-08 stsp goto done;
7537 2e1f37b0 2019-08-08 stsp }
7538 2e1f37b0 2019-08-08 stsp if (fseek(f2, 0L, SEEK_SET) == -1) {
7539 2e1f37b0 2019-08-08 stsp err = got_ferror(f2, GOT_ERR_IO);
7540 2e1f37b0 2019-08-08 stsp goto done;
7541 2e1f37b0 2019-08-08 stsp }
7542 fe621944 2020-11-10 stsp /* Count the number of actual changes in the diff result. */
7543 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
7544 fe621944 2020-11-10 stsp struct diff_chunk_context cc = {};
7545 fe621944 2020-11-10 stsp diff_chunk_context_load_change(&cc, &nchunks_used,
7546 fe621944 2020-11-10 stsp diffreg_result->result, n, 0);
7547 fe621944 2020-11-10 stsp nchanges++;
7548 fe621944 2020-11-10 stsp }
7549 fe621944 2020-11-10 stsp for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
7550 2e1f37b0 2019-08-08 stsp int choice;
7551 fe621944 2020-11-10 stsp err = apply_or_reject_change(&choice, &nchunks_used,
7552 fe621944 2020-11-10 stsp diffreg_result->result, n, relpath, f1, f2,
7553 fe621944 2020-11-10 stsp &line_cur1, &line_cur2,
7554 fe621944 2020-11-10 stsp outfile, rejectfile, ++i, nchanges, patch_cb, patch_arg);
7555 2e1f37b0 2019-08-08 stsp if (err)
7556 2e1f37b0 2019-08-08 stsp goto done;
7557 2e1f37b0 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_YES)
7558 2e1f37b0 2019-08-08 stsp have_content = 1;
7559 19e4b907 2019-08-08 stsp else
7560 2e1f37b0 2019-08-08 stsp have_rejected_content = 1;
7561 2e1f37b0 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_QUIT)
7562 2e1f37b0 2019-08-08 stsp break;
7563 2e1f37b0 2019-08-08 stsp }
7564 f1e81a05 2019-08-10 stsp if (have_content || have_rejected_content)
7565 f1e81a05 2019-08-10 stsp err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
7566 f1e81a05 2019-08-10 stsp outfile, rejectfile);
7567 2e1f37b0 2019-08-08 stsp done:
7568 2e1f37b0 2019-08-08 stsp free(label1);
7569 2e1f37b0 2019-08-08 stsp if (blob)
7570 2e1f37b0 2019-08-08 stsp got_object_blob_close(blob);
7571 2e1f37b0 2019-08-08 stsp if (staged_blob)
7572 2e1f37b0 2019-08-08 stsp got_object_blob_close(staged_blob);
7573 fe621944 2020-11-10 stsp free_err = got_diffreg_result_free(diffreg_result);
7574 fe621944 2020-11-10 stsp if (free_err && err == NULL)
7575 fe621944 2020-11-10 stsp err = free_err;
7576 2e1f37b0 2019-08-08 stsp if (f1 && fclose(f1) == EOF && err == NULL)
7577 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", path1);
7578 2e1f37b0 2019-08-08 stsp if (f2 && fclose(f2) == EOF && err == NULL)
7579 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", path2);
7580 2e1f37b0 2019-08-08 stsp if (outfile && fclose(outfile) == EOF && err == NULL)
7581 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", *path_unstaged_content);
7582 2e1f37b0 2019-08-08 stsp if (rejectfile && fclose(rejectfile) == EOF && err == NULL)
7583 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("fclose", *path_new_staged_content);
7584 2e1f37b0 2019-08-08 stsp if (path1 && unlink(path1) == -1 && err == NULL)
7585 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink", path1);
7586 2e1f37b0 2019-08-08 stsp if (path2 && unlink(path2) == -1 && err == NULL)
7587 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink", path2);
7588 2e1f37b0 2019-08-08 stsp if (err || !have_content) {
7589 2e1f37b0 2019-08-08 stsp if (*path_unstaged_content &&
7590 2e1f37b0 2019-08-08 stsp unlink(*path_unstaged_content) == -1 && err == NULL)
7591 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink",
7592 2e1f37b0 2019-08-08 stsp *path_unstaged_content);
7593 2e1f37b0 2019-08-08 stsp free(*path_unstaged_content);
7594 2e1f37b0 2019-08-08 stsp *path_unstaged_content = NULL;
7595 2e1f37b0 2019-08-08 stsp }
7596 fda8017d 2020-07-23 stsp if (err || !have_content || !have_rejected_content) {
7597 2e1f37b0 2019-08-08 stsp if (*path_new_staged_content &&
7598 2e1f37b0 2019-08-08 stsp unlink(*path_new_staged_content) == -1 && err == NULL)
7599 2e1f37b0 2019-08-08 stsp err = got_error_from_errno2("unlink",
7600 2e1f37b0 2019-08-08 stsp *path_new_staged_content);
7601 2e1f37b0 2019-08-08 stsp free(*path_new_staged_content);
7602 2e1f37b0 2019-08-08 stsp *path_new_staged_content = NULL;
7603 2e1f37b0 2019-08-08 stsp }
7604 2e1f37b0 2019-08-08 stsp free(path1);
7605 2e1f37b0 2019-08-08 stsp free(path2);
7606 fda8017d 2020-07-23 stsp return err;
7607 fda8017d 2020-07-23 stsp }
7608 fda8017d 2020-07-23 stsp
7609 fda8017d 2020-07-23 stsp static const struct got_error *
7610 fda8017d 2020-07-23 stsp unstage_hunks(struct got_object_id *staged_blob_id,
7611 fda8017d 2020-07-23 stsp struct got_blob_object *blob_base,
7612 fda8017d 2020-07-23 stsp struct got_object_id *blob_id, struct got_fileindex_entry *ie,
7613 fda8017d 2020-07-23 stsp const char *ondisk_path, const char *label_orig,
7614 fda8017d 2020-07-23 stsp struct got_worktree *worktree, struct got_repository *repo,
7615 fda8017d 2020-07-23 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
7616 fda8017d 2020-07-23 stsp got_worktree_checkout_cb progress_cb, void *progress_arg)
7617 fda8017d 2020-07-23 stsp {
7618 fda8017d 2020-07-23 stsp const struct got_error *err = NULL;
7619 fda8017d 2020-07-23 stsp char *path_unstaged_content = NULL;
7620 fda8017d 2020-07-23 stsp char *path_new_staged_content = NULL;
7621 fda8017d 2020-07-23 stsp struct got_object_id *new_staged_blob_id = NULL;
7622 fda8017d 2020-07-23 stsp FILE *f = NULL;
7623 fda8017d 2020-07-23 stsp struct stat sb;
7624 fda8017d 2020-07-23 stsp
7625 fda8017d 2020-07-23 stsp err = create_unstaged_content(&path_unstaged_content,
7626 fda8017d 2020-07-23 stsp &path_new_staged_content, blob_id, staged_blob_id,
7627 fda8017d 2020-07-23 stsp ie->path, repo, patch_cb, patch_arg);
7628 fda8017d 2020-07-23 stsp if (err)
7629 fda8017d 2020-07-23 stsp return err;
7630 fda8017d 2020-07-23 stsp
7631 fda8017d 2020-07-23 stsp if (path_unstaged_content == NULL)
7632 fda8017d 2020-07-23 stsp return NULL;
7633 fda8017d 2020-07-23 stsp
7634 fda8017d 2020-07-23 stsp if (path_new_staged_content) {
7635 fda8017d 2020-07-23 stsp err = got_object_blob_create(&new_staged_blob_id,
7636 fda8017d 2020-07-23 stsp path_new_staged_content, repo);
7637 fda8017d 2020-07-23 stsp if (err)
7638 fda8017d 2020-07-23 stsp goto done;
7639 fda8017d 2020-07-23 stsp }
7640 fda8017d 2020-07-23 stsp
7641 fda8017d 2020-07-23 stsp f = fopen(path_unstaged_content, "r");
7642 fda8017d 2020-07-23 stsp if (f == NULL) {
7643 fda8017d 2020-07-23 stsp err = got_error_from_errno2("fopen",
7644 fda8017d 2020-07-23 stsp path_unstaged_content);
7645 fda8017d 2020-07-23 stsp goto done;
7646 fda8017d 2020-07-23 stsp }
7647 fda8017d 2020-07-23 stsp if (fstat(fileno(f), &sb) == -1) {
7648 fda8017d 2020-07-23 stsp err = got_error_from_errno2("fstat", path_unstaged_content);
7649 fda8017d 2020-07-23 stsp goto done;
7650 fda8017d 2020-07-23 stsp }
7651 fda8017d 2020-07-23 stsp if (got_fileindex_entry_staged_filetype_get(ie) ==
7652 fda8017d 2020-07-23 stsp GOT_FILEIDX_MODE_SYMLINK && sb.st_size < PATH_MAX) {
7653 fda8017d 2020-07-23 stsp char link_target[PATH_MAX];
7654 fda8017d 2020-07-23 stsp size_t r;
7655 fda8017d 2020-07-23 stsp r = fread(link_target, 1, sizeof(link_target), f);
7656 fda8017d 2020-07-23 stsp if (r == 0 && ferror(f)) {
7657 fda8017d 2020-07-23 stsp err = got_error_from_errno("fread");
7658 fda8017d 2020-07-23 stsp goto done;
7659 fda8017d 2020-07-23 stsp }
7660 fda8017d 2020-07-23 stsp if (r >= sizeof(link_target)) { /* should not happen */
7661 fda8017d 2020-07-23 stsp err = got_error(GOT_ERR_NO_SPACE);
7662 fda8017d 2020-07-23 stsp goto done;
7663 fda8017d 2020-07-23 stsp }
7664 fda8017d 2020-07-23 stsp link_target[r] = '\0';
7665 fda8017d 2020-07-23 stsp err = merge_symlink(worktree, blob_base,
7666 fda8017d 2020-07-23 stsp ondisk_path, ie->path, label_orig, link_target,
7667 fda8017d 2020-07-23 stsp worktree->base_commit_id, repo, progress_cb,
7668 fda8017d 2020-07-23 stsp progress_arg);
7669 fda8017d 2020-07-23 stsp } else {
7670 fda8017d 2020-07-23 stsp int local_changes_subsumed;
7671 fda8017d 2020-07-23 stsp err = merge_file(&local_changes_subsumed, worktree,
7672 fda8017d 2020-07-23 stsp blob_base, ondisk_path, ie->path,
7673 fda8017d 2020-07-23 stsp got_fileindex_perms_to_st(ie),
7674 fda8017d 2020-07-23 stsp path_unstaged_content, label_orig, "unstaged",
7675 fda8017d 2020-07-23 stsp repo, progress_cb, progress_arg);
7676 fda8017d 2020-07-23 stsp }
7677 fda8017d 2020-07-23 stsp if (err)
7678 fda8017d 2020-07-23 stsp goto done;
7679 fda8017d 2020-07-23 stsp
7680 fda8017d 2020-07-23 stsp if (new_staged_blob_id) {
7681 fda8017d 2020-07-23 stsp memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
7682 fda8017d 2020-07-23 stsp SHA1_DIGEST_LENGTH);
7683 2ac8aa02 2020-11-09 stsp } else {
7684 fda8017d 2020-07-23 stsp got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
7685 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
7686 2ac8aa02 2020-11-09 stsp }
7687 fda8017d 2020-07-23 stsp done:
7688 fda8017d 2020-07-23 stsp free(new_staged_blob_id);
7689 fda8017d 2020-07-23 stsp if (path_unstaged_content &&
7690 fda8017d 2020-07-23 stsp unlink(path_unstaged_content) == -1 && err == NULL)
7691 fda8017d 2020-07-23 stsp err = got_error_from_errno2("unlink", path_unstaged_content);
7692 fda8017d 2020-07-23 stsp if (path_new_staged_content &&
7693 fda8017d 2020-07-23 stsp unlink(path_new_staged_content) == -1 && err == NULL)
7694 fda8017d 2020-07-23 stsp err = got_error_from_errno2("unlink", path_new_staged_content);
7695 fda8017d 2020-07-23 stsp if (f && fclose(f) != 0 && err == NULL)
7696 fda8017d 2020-07-23 stsp err = got_error_from_errno2("fclose", path_unstaged_content);
7697 fda8017d 2020-07-23 stsp free(path_unstaged_content);
7698 fda8017d 2020-07-23 stsp free(path_new_staged_content);
7699 2e1f37b0 2019-08-08 stsp return err;
7700 2e1f37b0 2019-08-08 stsp }
7701 2e1f37b0 2019-08-08 stsp
7702 ad493afc 2019-08-03 stsp static const struct got_error *
7703 ad493afc 2019-08-03 stsp unstage_path(void *arg, unsigned char status,
7704 ad493afc 2019-08-03 stsp unsigned char staged_status, const char *relpath,
7705 ad493afc 2019-08-03 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7706 12463d8b 2019-12-13 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
7707 ad493afc 2019-08-03 stsp {
7708 ad493afc 2019-08-03 stsp const struct got_error *err = NULL;
7709 ad493afc 2019-08-03 stsp struct unstage_path_arg *a = arg;
7710 ad493afc 2019-08-03 stsp struct got_fileindex_entry *ie;
7711 ad493afc 2019-08-03 stsp struct got_blob_object *blob_base = NULL, *blob_staged = NULL;
7712 fda8017d 2020-07-23 stsp char *ondisk_path = NULL;
7713 f69721c3 2019-10-21 stsp char *id_str = NULL, *label_orig = NULL;
7714 ad493afc 2019-08-03 stsp int local_changes_subsumed;
7715 9bc94a15 2019-08-03 stsp struct stat sb;
7716 ad493afc 2019-08-03 stsp
7717 2e1f37b0 2019-08-08 stsp if (staged_status != GOT_STATUS_ADD &&
7718 2e1f37b0 2019-08-08 stsp staged_status != GOT_STATUS_MODIFY &&
7719 2e1f37b0 2019-08-08 stsp staged_status != GOT_STATUS_DELETE)
7720 2e1f37b0 2019-08-08 stsp return NULL;
7721 2e1f37b0 2019-08-08 stsp
7722 ad493afc 2019-08-03 stsp ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7723 ad493afc 2019-08-03 stsp if (ie == NULL)
7724 8b13ce36 2019-08-08 stsp return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7725 9bc94a15 2019-08-03 stsp
7726 9bc94a15 2019-08-03 stsp if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, relpath)
7727 9bc94a15 2019-08-03 stsp == -1)
7728 9bc94a15 2019-08-03 stsp return got_error_from_errno("asprintf");
7729 ad493afc 2019-08-03 stsp
7730 f69721c3 2019-10-21 stsp err = got_object_id_str(&id_str,
7731 f69721c3 2019-10-21 stsp commit_id ? commit_id : a->worktree->base_commit_id);
7732 f69721c3 2019-10-21 stsp if (err)
7733 f69721c3 2019-10-21 stsp goto done;
7734 f69721c3 2019-10-21 stsp if (asprintf(&label_orig, "%s: commit %s", GOT_MERGE_LABEL_BASE,
7735 f69721c3 2019-10-21 stsp id_str) == -1) {
7736 f69721c3 2019-10-21 stsp err = got_error_from_errno("asprintf");
7737 f69721c3 2019-10-21 stsp goto done;
7738 f69721c3 2019-10-21 stsp }
7739 f69721c3 2019-10-21 stsp
7740 ad493afc 2019-08-03 stsp switch (staged_status) {
7741 ad493afc 2019-08-03 stsp case GOT_STATUS_MODIFY:
7742 ad493afc 2019-08-03 stsp err = got_object_open_as_blob(&blob_base, a->repo,
7743 ad493afc 2019-08-03 stsp blob_id, 8192);
7744 ad493afc 2019-08-03 stsp if (err)
7745 ad493afc 2019-08-03 stsp break;
7746 ad493afc 2019-08-03 stsp /* fall through */
7747 ad493afc 2019-08-03 stsp case GOT_STATUS_ADD:
7748 2e1f37b0 2019-08-08 stsp if (a->patch_cb) {
7749 2e1f37b0 2019-08-08 stsp if (staged_status == GOT_STATUS_ADD) {
7750 2e1f37b0 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
7751 2e1f37b0 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
7752 2e1f37b0 2019-08-08 stsp staged_status, ie->path, NULL, 1, 1);
7753 2e1f37b0 2019-08-08 stsp if (err)
7754 2e1f37b0 2019-08-08 stsp break;
7755 2e1f37b0 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES)
7756 2e1f37b0 2019-08-08 stsp break;
7757 2e1f37b0 2019-08-08 stsp } else {
7758 fda8017d 2020-07-23 stsp err = unstage_hunks(staged_blob_id,
7759 fda8017d 2020-07-23 stsp blob_base, blob_id, ie, ondisk_path,
7760 fda8017d 2020-07-23 stsp label_orig, a->worktree, a->repo,
7761 fda8017d 2020-07-23 stsp a->patch_cb, a->patch_arg,
7762 fda8017d 2020-07-23 stsp a->progress_cb, a->progress_arg);
7763 2e1f37b0 2019-08-08 stsp break; /* Done with this file. */
7764 2e1f37b0 2019-08-08 stsp }
7765 2e1f37b0 2019-08-08 stsp }
7766 ad493afc 2019-08-03 stsp err = got_object_open_as_blob(&blob_staged, a->repo,
7767 ad493afc 2019-08-03 stsp staged_blob_id, 8192);
7768 ad493afc 2019-08-03 stsp if (err)
7769 ad493afc 2019-08-03 stsp break;
7770 ea7786be 2020-07-23 stsp switch (got_fileindex_entry_staged_filetype_get(ie)) {
7771 ea7786be 2020-07-23 stsp case GOT_FILEIDX_MODE_BAD_SYMLINK:
7772 ea7786be 2020-07-23 stsp case GOT_FILEIDX_MODE_REGULAR_FILE:
7773 ea7786be 2020-07-23 stsp err = merge_blob(&local_changes_subsumed, a->worktree,
7774 ea7786be 2020-07-23 stsp blob_base, ondisk_path, relpath,
7775 ea7786be 2020-07-23 stsp got_fileindex_perms_to_st(ie), label_orig,
7776 ea7786be 2020-07-23 stsp blob_staged, commit_id ? commit_id :
7777 ea7786be 2020-07-23 stsp a->worktree->base_commit_id, a->repo,
7778 ea7786be 2020-07-23 stsp a->progress_cb, a->progress_arg);
7779 ea7786be 2020-07-23 stsp break;
7780 ea7786be 2020-07-23 stsp case GOT_FILEIDX_MODE_SYMLINK:
7781 dfe9fba0 2020-07-23 stsp if (S_ISLNK(got_fileindex_perms_to_st(ie))) {
7782 36bf999c 2020-07-23 stsp char *staged_target;
7783 36bf999c 2020-07-23 stsp err = got_object_blob_read_to_str(
7784 36bf999c 2020-07-23 stsp &staged_target, blob_staged);
7785 36bf999c 2020-07-23 stsp if (err)
7786 36bf999c 2020-07-23 stsp goto done;
7787 dfe9fba0 2020-07-23 stsp err = merge_symlink(a->worktree, blob_base,
7788 dfe9fba0 2020-07-23 stsp ondisk_path, relpath, label_orig,
7789 36bf999c 2020-07-23 stsp staged_target, commit_id ? commit_id :
7790 dfe9fba0 2020-07-23 stsp a->worktree->base_commit_id,
7791 dfe9fba0 2020-07-23 stsp a->repo, a->progress_cb, a->progress_arg);
7792 36bf999c 2020-07-23 stsp free(staged_target);
7793 dfe9fba0 2020-07-23 stsp } else {
7794 dfe9fba0 2020-07-23 stsp err = merge_blob(&local_changes_subsumed,
7795 dfe9fba0 2020-07-23 stsp a->worktree, blob_base, ondisk_path,
7796 dfe9fba0 2020-07-23 stsp relpath, got_fileindex_perms_to_st(ie),
7797 dfe9fba0 2020-07-23 stsp label_orig, blob_staged,
7798 dfe9fba0 2020-07-23 stsp commit_id ? commit_id :
7799 dfe9fba0 2020-07-23 stsp a->worktree->base_commit_id, a->repo,
7800 dfe9fba0 2020-07-23 stsp a->progress_cb, a->progress_arg);
7801 dfe9fba0 2020-07-23 stsp }
7802 ea7786be 2020-07-23 stsp break;
7803 ea7786be 2020-07-23 stsp default:
7804 ea7786be 2020-07-23 stsp err = got_error_path(relpath, GOT_ERR_BAD_FILETYPE);
7805 ea7786be 2020-07-23 stsp break;
7806 ea7786be 2020-07-23 stsp }
7807 2ac8aa02 2020-11-09 stsp if (err == NULL) {
7808 ad493afc 2019-08-03 stsp got_fileindex_entry_stage_set(ie,
7809 ad493afc 2019-08-03 stsp GOT_FILEIDX_STAGE_NONE);
7810 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
7811 2ac8aa02 2020-11-09 stsp }
7812 ad493afc 2019-08-03 stsp break;
7813 ad493afc 2019-08-03 stsp case GOT_STATUS_DELETE:
7814 2e1f37b0 2019-08-08 stsp if (a->patch_cb) {
7815 2e1f37b0 2019-08-08 stsp int choice = GOT_PATCH_CHOICE_NONE;
7816 2e1f37b0 2019-08-08 stsp err = (*a->patch_cb)(&choice, a->patch_arg,
7817 2e1f37b0 2019-08-08 stsp staged_status, ie->path, NULL, 1, 1);
7818 2e1f37b0 2019-08-08 stsp if (err)
7819 2e1f37b0 2019-08-08 stsp break;
7820 2e1f37b0 2019-08-08 stsp if (choice == GOT_PATCH_CHOICE_NO)
7821 2e1f37b0 2019-08-08 stsp break;
7822 2e1f37b0 2019-08-08 stsp if (choice != GOT_PATCH_CHOICE_YES) {
7823 2e1f37b0 2019-08-08 stsp err = got_error(GOT_ERR_PATCH_CHOICE);
7824 2e1f37b0 2019-08-08 stsp break;
7825 2e1f37b0 2019-08-08 stsp }
7826 2e1f37b0 2019-08-08 stsp }
7827 ad493afc 2019-08-03 stsp got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
7828 2ac8aa02 2020-11-09 stsp got_fileindex_entry_staged_filetype_set(ie, 0);
7829 12463d8b 2019-12-13 stsp err = get_file_status(&status, &sb, ie, ondisk_path,
7830 12463d8b 2019-12-13 stsp dirfd, de_name, a->repo);
7831 9bc94a15 2019-08-03 stsp if (err)
7832 9bc94a15 2019-08-03 stsp break;
7833 9bc94a15 2019-08-03 stsp err = (*a->progress_cb)(a->progress_arg, status, relpath);
7834 ad493afc 2019-08-03 stsp break;
7835 ad493afc 2019-08-03 stsp }
7836 f69721c3 2019-10-21 stsp done:
7837 ad493afc 2019-08-03 stsp free(ondisk_path);
7838 ad493afc 2019-08-03 stsp if (blob_base)
7839 ad493afc 2019-08-03 stsp got_object_blob_close(blob_base);
7840 ad493afc 2019-08-03 stsp if (blob_staged)
7841 ad493afc 2019-08-03 stsp got_object_blob_close(blob_staged);
7842 f69721c3 2019-10-21 stsp free(id_str);
7843 f69721c3 2019-10-21 stsp free(label_orig);
7844 ad493afc 2019-08-03 stsp return err;
7845 ad493afc 2019-08-03 stsp }
7846 ad493afc 2019-08-03 stsp
7847 ad493afc 2019-08-03 stsp const struct got_error *
7848 ad493afc 2019-08-03 stsp got_worktree_unstage(struct got_worktree *worktree,
7849 ad493afc 2019-08-03 stsp struct got_pathlist_head *paths,
7850 ad493afc 2019-08-03 stsp got_worktree_checkout_cb progress_cb, void *progress_arg,
7851 2e1f37b0 2019-08-08 stsp got_worktree_patch_cb patch_cb, void *patch_arg,
7852 ad493afc 2019-08-03 stsp struct got_repository *repo)
7853 ad493afc 2019-08-03 stsp {
7854 ad493afc 2019-08-03 stsp const struct got_error *err = NULL, *sync_err, *unlockerr;
7855 ad493afc 2019-08-03 stsp struct got_pathlist_entry *pe;
7856 ad493afc 2019-08-03 stsp struct got_fileindex *fileindex = NULL;
7857 ad493afc 2019-08-03 stsp char *fileindex_path = NULL;
7858 ad493afc 2019-08-03 stsp struct unstage_path_arg upa;
7859 ad493afc 2019-08-03 stsp
7860 ad493afc 2019-08-03 stsp err = lock_worktree(worktree, LOCK_EX);
7861 ad493afc 2019-08-03 stsp if (err)
7862 ad493afc 2019-08-03 stsp return err;
7863 ad493afc 2019-08-03 stsp
7864 ad493afc 2019-08-03 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
7865 ad493afc 2019-08-03 stsp if (err)
7866 ad493afc 2019-08-03 stsp goto done;
7867 ad493afc 2019-08-03 stsp
7868 ad493afc 2019-08-03 stsp upa.worktree = worktree;
7869 ad493afc 2019-08-03 stsp upa.fileindex = fileindex;
7870 ad493afc 2019-08-03 stsp upa.repo = repo;
7871 ad493afc 2019-08-03 stsp upa.progress_cb = progress_cb;
7872 ad493afc 2019-08-03 stsp upa.progress_arg = progress_arg;
7873 2e1f37b0 2019-08-08 stsp upa.patch_cb = patch_cb;
7874 2e1f37b0 2019-08-08 stsp upa.patch_arg = patch_arg;
7875 ad493afc 2019-08-03 stsp TAILQ_FOREACH(pe, paths, entry) {
7876 ad493afc 2019-08-03 stsp err = worktree_status(worktree, pe->path, fileindex, repo,
7877 f2a9dc41 2019-12-13 tracey unstage_path, &upa, NULL, NULL, 0, 0);
7878 ad493afc 2019-08-03 stsp if (err)
7879 ad493afc 2019-08-03 stsp goto done;
7880 ad493afc 2019-08-03 stsp }
7881 ad493afc 2019-08-03 stsp
7882 ad493afc 2019-08-03 stsp sync_err = sync_fileindex(fileindex, fileindex_path);
7883 ad493afc 2019-08-03 stsp if (sync_err && err == NULL)
7884 ad493afc 2019-08-03 stsp err = sync_err;
7885 ad493afc 2019-08-03 stsp done:
7886 ad493afc 2019-08-03 stsp free(fileindex_path);
7887 ad493afc 2019-08-03 stsp if (fileindex)
7888 ad493afc 2019-08-03 stsp got_fileindex_free(fileindex);
7889 ad493afc 2019-08-03 stsp unlockerr = lock_worktree(worktree, LOCK_SH);
7890 ad493afc 2019-08-03 stsp if (unlockerr && err == NULL)
7891 ad493afc 2019-08-03 stsp err = unlockerr;
7892 ad493afc 2019-08-03 stsp return err;
7893 ad493afc 2019-08-03 stsp }
7894 b2118c49 2020-07-28 stsp
7895 b2118c49 2020-07-28 stsp struct report_file_info_arg {
7896 b2118c49 2020-07-28 stsp struct got_worktree *worktree;
7897 b2118c49 2020-07-28 stsp got_worktree_path_info_cb info_cb;
7898 b2118c49 2020-07-28 stsp void *info_arg;
7899 b2118c49 2020-07-28 stsp struct got_pathlist_head *paths;
7900 b2118c49 2020-07-28 stsp got_cancel_cb cancel_cb;
7901 b2118c49 2020-07-28 stsp void *cancel_arg;
7902 b2118c49 2020-07-28 stsp };
7903 b2118c49 2020-07-28 stsp
7904 b2118c49 2020-07-28 stsp static const struct got_error *
7905 b2118c49 2020-07-28 stsp report_file_info(void *arg, struct got_fileindex_entry *ie)
7906 b2118c49 2020-07-28 stsp {
7907 b2118c49 2020-07-28 stsp struct report_file_info_arg *a = arg;
7908 b2118c49 2020-07-28 stsp struct got_pathlist_entry *pe;
7909 b2118c49 2020-07-28 stsp struct got_object_id blob_id, staged_blob_id, commit_id;
7910 b2118c49 2020-07-28 stsp struct got_object_id *blob_idp = NULL, *staged_blob_idp = NULL;
7911 b2118c49 2020-07-28 stsp struct got_object_id *commit_idp = NULL;
7912 b2118c49 2020-07-28 stsp int stage;
7913 b2118c49 2020-07-28 stsp
7914 b2118c49 2020-07-28 stsp if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
7915 b2118c49 2020-07-28 stsp return got_error(GOT_ERR_CANCELLED);
7916 b2118c49 2020-07-28 stsp
7917 b2118c49 2020-07-28 stsp TAILQ_FOREACH(pe, a->paths, entry) {
7918 b2118c49 2020-07-28 stsp if (pe->path_len == 0 || strcmp(pe->path, ie->path) == 0 ||
7919 b2118c49 2020-07-28 stsp got_path_is_child(ie->path, pe->path, pe->path_len))
7920 b2118c49 2020-07-28 stsp break;
7921 b2118c49 2020-07-28 stsp }
7922 b2118c49 2020-07-28 stsp if (pe == NULL) /* not found */
7923 b2118c49 2020-07-28 stsp return NULL;
7924 b2118c49 2020-07-28 stsp
7925 b2118c49 2020-07-28 stsp if (got_fileindex_entry_has_blob(ie)) {
7926 b2118c49 2020-07-28 stsp memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
7927 b2118c49 2020-07-28 stsp blob_idp = &blob_id;
7928 b2118c49 2020-07-28 stsp }
7929 b2118c49 2020-07-28 stsp stage = got_fileindex_entry_stage_get(ie);
7930 b2118c49 2020-07-28 stsp if (stage == GOT_FILEIDX_STAGE_MODIFY ||
7931 b2118c49 2020-07-28 stsp stage == GOT_FILEIDX_STAGE_ADD) {
7932 b2118c49 2020-07-28 stsp memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
7933 b2118c49 2020-07-28 stsp SHA1_DIGEST_LENGTH);
7934 b2118c49 2020-07-28 stsp staged_blob_idp = &staged_blob_id;
7935 b2118c49 2020-07-28 stsp }
7936 b2118c49 2020-07-28 stsp
7937 b2118c49 2020-07-28 stsp if (got_fileindex_entry_has_commit(ie)) {
7938 b2118c49 2020-07-28 stsp memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
7939 b2118c49 2020-07-28 stsp commit_idp = &commit_id;
7940 b2118c49 2020-07-28 stsp }
7941 b2118c49 2020-07-28 stsp
7942 b2118c49 2020-07-28 stsp return a->info_cb(a->info_arg, ie->path, got_fileindex_perms_to_st(ie),
7943 b2118c49 2020-07-28 stsp (time_t)ie->mtime_sec, blob_idp, staged_blob_idp, commit_idp);
7944 b2118c49 2020-07-28 stsp }
7945 b2118c49 2020-07-28 stsp
7946 b2118c49 2020-07-28 stsp const struct got_error *
7947 b2118c49 2020-07-28 stsp got_worktree_path_info(struct got_worktree *worktree,
7948 b2118c49 2020-07-28 stsp struct got_pathlist_head *paths,
7949 b2118c49 2020-07-28 stsp got_worktree_path_info_cb info_cb, void *info_arg,
7950 b2118c49 2020-07-28 stsp got_cancel_cb cancel_cb, void *cancel_arg)
7951 b2118c49 2020-07-28 stsp
7952 b2118c49 2020-07-28 stsp {
7953 b2118c49 2020-07-28 stsp const struct got_error *err = NULL, *unlockerr;
7954 b2118c49 2020-07-28 stsp struct got_fileindex *fileindex = NULL;
7955 b2118c49 2020-07-28 stsp char *fileindex_path = NULL;
7956 b2118c49 2020-07-28 stsp struct report_file_info_arg arg;
7957 b2118c49 2020-07-28 stsp
7958 b2118c49 2020-07-28 stsp err = lock_worktree(worktree, LOCK_SH);
7959 b2118c49 2020-07-28 stsp if (err)
7960 b2118c49 2020-07-28 stsp return err;
7961 b2118c49 2020-07-28 stsp
7962 b2118c49 2020-07-28 stsp err = open_fileindex(&fileindex, &fileindex_path, worktree);
7963 b2118c49 2020-07-28 stsp if (err)
7964 b2118c49 2020-07-28 stsp goto done;
7965 b2118c49 2020-07-28 stsp
7966 b2118c49 2020-07-28 stsp arg.worktree = worktree;
7967 b2118c49 2020-07-28 stsp arg.info_cb = info_cb;
7968 b2118c49 2020-07-28 stsp arg.info_arg = info_arg;
7969 b2118c49 2020-07-28 stsp arg.paths = paths;
7970 b2118c49 2020-07-28 stsp arg.cancel_cb = cancel_cb;
7971 b2118c49 2020-07-28 stsp arg.cancel_arg = cancel_arg;
7972 b2118c49 2020-07-28 stsp err = got_fileindex_for_each_entry_safe(fileindex, report_file_info,
7973 b2118c49 2020-07-28 stsp &arg);
7974 b2118c49 2020-07-28 stsp done:
7975 b2118c49 2020-07-28 stsp free(fileindex_path);
7976 b2118c49 2020-07-28 stsp if (fileindex)
7977 b2118c49 2020-07-28 stsp got_fileindex_free(fileindex);
7978 b2118c49 2020-07-28 stsp unlockerr = lock_worktree(worktree, LOCK_UN);
7979 b2118c49 2020-07-28 stsp if (unlockerr && err == NULL)
7980 b2118c49 2020-07-28 stsp err = unlockerr;
7981 b2118c49 2020-07-28 stsp return err;
7982 b2118c49 2020-07-28 stsp }