Blob


1 /*
2 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include <sys/stat.h>
19 #include <dirent.h>
20 #include <limits.h>
21 #include <stddef.h>
22 #include <string.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <time.h>
26 #include <fcntl.h>
27 #include <errno.h>
28 #include <unistd.h>
29 #include <zlib.h>
30 #include <fnmatch.h>
31 #include <libgen.h>
33 #include "got_compat.h"
35 #include "got_error.h"
36 #include "got_repository.h"
37 #include "got_reference.h"
38 #include "got_object.h"
39 #include "got_path.h"
40 #include "got_cancel.h"
41 #include "got_worktree.h"
42 #include "got_opentemp.h"
43 #include "got_diff.h"
45 #include "got_lib_worktree.h"
46 #include "got_lib_sha1.h"
47 #include "got_lib_fileindex.h"
48 #include "got_lib_inflate.h"
49 #include "got_lib_delta.h"
50 #include "got_lib_object.h"
51 #include "got_lib_object_parse.h"
52 #include "got_lib_object_create.h"
53 #include "got_lib_object_idset.h"
54 #include "got_lib_diff.h"
55 #include "got_lib_gotconfig.h"
57 #ifndef MIN
58 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
59 #endif
61 #define GOT_MERGE_LABEL_MERGED "merged change"
62 #define GOT_MERGE_LABEL_BASE "3-way merge base"
64 static const struct got_error *
65 create_meta_file(const char *path_got, const char *name, const char *content)
66 {
67 const struct got_error *err = NULL;
68 char *path;
70 if (asprintf(&path, "%s/%s", path_got, name) == -1)
71 return got_error_from_errno("asprintf");
73 err = got_path_create_file(path, content);
74 free(path);
75 return err;
76 }
78 static const struct got_error *
79 update_meta_file(const char *path_got, const char *name, const char *content)
80 {
81 const struct got_error *err = NULL;
82 FILE *tmpfile = NULL;
83 char *tmppath = NULL;
84 char *path = NULL;
86 if (asprintf(&path, "%s/%s", path_got, name) == -1) {
87 err = got_error_from_errno("asprintf");
88 path = NULL;
89 goto done;
90 }
92 err = got_opentemp_named(&tmppath, &tmpfile, path);
93 if (err)
94 goto done;
96 if (content) {
97 int len = fprintf(tmpfile, "%s\n", content);
98 if (len != strlen(content) + 1) {
99 err = got_error_from_errno2("fprintf", tmppath);
100 goto done;
104 if (rename(tmppath, path) != 0) {
105 err = got_error_from_errno3("rename", tmppath, path);
106 unlink(tmppath);
107 goto done;
110 done:
111 if (fclose(tmpfile) == EOF && err == NULL)
112 err = got_error_from_errno2("fclose", tmppath);
113 free(tmppath);
114 return err;
117 static const struct got_error *
118 write_head_ref(const char *path_got, struct got_reference *head_ref)
120 const struct got_error *err = NULL;
121 char *refstr = NULL;
123 if (got_ref_is_symbolic(head_ref)) {
124 refstr = got_ref_to_str(head_ref);
125 if (refstr == NULL)
126 return got_error_from_errno("got_ref_to_str");
127 } else {
128 refstr = strdup(got_ref_get_name(head_ref));
129 if (refstr == NULL)
130 return got_error_from_errno("strdup");
132 err = update_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
133 free(refstr);
134 return err;
137 const struct got_error *
138 got_worktree_init(const char *path, struct got_reference *head_ref,
139 const char *prefix, struct got_repository *repo)
141 const struct got_error *err = NULL;
142 struct got_object_id *commit_id = NULL;
143 uuid_t uuid;
144 uint32_t uuid_status;
145 int obj_type;
146 char *path_got = NULL;
147 char *formatstr = NULL;
148 char *absprefix = NULL;
149 char *basestr = NULL;
150 char *uuidstr = NULL;
152 if (strcmp(path, got_repo_get_path(repo)) == 0) {
153 err = got_error(GOT_ERR_WORKTREE_REPO);
154 goto done;
157 err = got_ref_resolve(&commit_id, repo, head_ref);
158 if (err)
159 return err;
160 err = got_object_get_type(&obj_type, repo, commit_id);
161 if (err)
162 return err;
163 if (obj_type != GOT_OBJ_TYPE_COMMIT)
164 return got_error(GOT_ERR_OBJ_TYPE);
166 if (!got_path_is_absolute(prefix)) {
167 if (asprintf(&absprefix, "/%s", prefix) == -1)
168 return got_error_from_errno("asprintf");
171 /* Create top-level directory (may already exist). */
172 if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
173 err = got_error_from_errno2("mkdir", path);
174 goto done;
177 /* Create .got directory (may already exist). */
178 if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
179 err = got_error_from_errno("asprintf");
180 goto done;
182 if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
183 err = got_error_from_errno2("mkdir", path_got);
184 goto done;
187 /* Create an empty lock file. */
188 err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
189 if (err)
190 goto done;
192 /* Create an empty file index. */
193 err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
194 if (err)
195 goto done;
197 /* Write the HEAD reference. */
198 err = write_head_ref(path_got, head_ref);
199 if (err)
200 goto done;
202 /* Record our base commit. */
203 err = got_object_id_str(&basestr, commit_id);
204 if (err)
205 goto done;
206 err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
207 if (err)
208 goto done;
210 /* Store path to repository. */
211 err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
212 got_repo_get_path(repo));
213 if (err)
214 goto done;
216 /* Store in-repository path prefix. */
217 err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
218 absprefix ? absprefix : prefix);
219 if (err)
220 goto done;
222 /* Generate UUID. */
223 uuid_create(&uuid, &uuid_status);
224 if (uuid_status != uuid_s_ok) {
225 err = got_error_uuid(uuid_status, "uuid_create");
226 goto done;
228 uuid_to_string(&uuid, &uuidstr, &uuid_status);
229 if (uuid_status != uuid_s_ok) {
230 err = got_error_uuid(uuid_status, "uuid_to_string");
231 goto done;
233 err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
234 if (err)
235 goto done;
237 /* Stamp work tree with format file. */
238 if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
239 err = got_error_from_errno("asprintf");
240 goto done;
242 err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
243 if (err)
244 goto done;
246 done:
247 free(commit_id);
248 free(path_got);
249 free(formatstr);
250 free(absprefix);
251 free(basestr);
252 free(uuidstr);
253 return err;
256 const struct got_error *
257 got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
258 const char *path_prefix)
260 char *absprefix = NULL;
262 if (!got_path_is_absolute(path_prefix)) {
263 if (asprintf(&absprefix, "/%s", path_prefix) == -1)
264 return got_error_from_errno("asprintf");
266 *match = (strcmp(absprefix ? absprefix : path_prefix,
267 worktree->path_prefix) == 0);
268 free(absprefix);
269 return NULL;
272 const char *
273 got_worktree_get_head_ref_name(struct got_worktree *worktree)
275 return worktree->head_ref_name;
278 const struct got_error *
279 got_worktree_set_head_ref(struct got_worktree *worktree,
280 struct got_reference *head_ref)
282 const struct got_error *err = NULL;
283 char *path_got = NULL, *head_ref_name = NULL;
285 if (asprintf(&path_got, "%s/%s", worktree->root_path,
286 GOT_WORKTREE_GOT_DIR) == -1) {
287 err = got_error_from_errno("asprintf");
288 path_got = NULL;
289 goto done;
292 head_ref_name = strdup(got_ref_get_name(head_ref));
293 if (head_ref_name == NULL) {
294 err = got_error_from_errno("strdup");
295 goto done;
298 err = write_head_ref(path_got, head_ref);
299 if (err)
300 goto done;
302 free(worktree->head_ref_name);
303 worktree->head_ref_name = head_ref_name;
304 done:
305 free(path_got);
306 if (err)
307 free(head_ref_name);
308 return err;
311 struct got_object_id *
312 got_worktree_get_base_commit_id(struct got_worktree *worktree)
314 return worktree->base_commit_id;
317 const struct got_error *
318 got_worktree_set_base_commit_id(struct got_worktree *worktree,
319 struct got_repository *repo, struct got_object_id *commit_id)
321 const struct got_error *err;
322 struct got_object *obj = NULL;
323 char *id_str = NULL;
324 char *path_got = NULL;
326 if (asprintf(&path_got, "%s/%s", worktree->root_path,
327 GOT_WORKTREE_GOT_DIR) == -1) {
328 err = got_error_from_errno("asprintf");
329 path_got = NULL;
330 goto done;
333 err = got_object_open(&obj, repo, commit_id);
334 if (err)
335 return err;
337 if (obj->type != GOT_OBJ_TYPE_COMMIT) {
338 err = got_error(GOT_ERR_OBJ_TYPE);
339 goto done;
342 /* Record our base commit. */
343 err = got_object_id_str(&id_str, commit_id);
344 if (err)
345 goto done;
346 err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
347 if (err)
348 goto done;
350 free(worktree->base_commit_id);
351 worktree->base_commit_id = got_object_id_dup(commit_id);
352 if (worktree->base_commit_id == NULL) {
353 err = got_error_from_errno("got_object_id_dup");
354 goto done;
356 done:
357 if (obj)
358 got_object_close(obj);
359 free(id_str);
360 free(path_got);
361 return err;
364 const struct got_gotconfig *
365 got_worktree_get_gotconfig(struct got_worktree *worktree)
367 return worktree->gotconfig;
370 static const struct got_error *
371 lock_worktree(struct got_worktree *worktree, int operation)
373 if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
374 return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
375 : got_error_from_errno2("flock",
376 got_worktree_get_root_path(worktree)));
377 return NULL;
380 static const struct got_error *
381 add_dir_on_disk(struct got_worktree *worktree, const char *path)
383 const struct got_error *err = NULL;
384 char *abspath;
386 if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
387 return got_error_from_errno("asprintf");
389 err = got_path_mkdir(abspath);
390 if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
391 struct stat sb;
392 err = NULL;
393 if (lstat(abspath, &sb) == -1) {
394 err = got_error_from_errno2("lstat", abspath);
395 } else if (!S_ISDIR(sb.st_mode)) {
396 /* TODO directory is obstructed; do something */
397 err = got_error_path(abspath, GOT_ERR_FILE_OBSTRUCTED);
400 free(abspath);
401 return err;
404 static const struct got_error *
405 check_file_contents_equal(int *same, FILE *f1, FILE *f2)
407 const struct got_error *err = NULL;
408 uint8_t fbuf1[8192];
409 uint8_t fbuf2[8192];
410 size_t flen1 = 0, flen2 = 0;
412 *same = 1;
414 for (;;) {
415 flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
416 if (flen1 == 0 && ferror(f1)) {
417 err = got_error_from_errno("fread");
418 break;
420 flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
421 if (flen2 == 0 && ferror(f2)) {
422 err = got_error_from_errno("fread");
423 break;
425 if (flen1 == 0) {
426 if (flen2 != 0)
427 *same = 0;
428 break;
429 } else if (flen2 == 0) {
430 if (flen1 != 0)
431 *same = 0;
432 break;
433 } else if (flen1 == flen2) {
434 if (memcmp(fbuf1, fbuf2, flen2) != 0) {
435 *same = 0;
436 break;
438 } else {
439 *same = 0;
440 break;
444 return err;
447 static const struct got_error *
448 check_files_equal(int *same, FILE *f1, FILE *f2)
450 struct stat sb;
451 size_t size1, size2;
453 *same = 1;
455 if (fstat(fileno(f1), &sb) != 0)
456 return got_error_from_errno("fstat");
457 size1 = sb.st_size;
459 if (fstat(fileno(f2), &sb) != 0)
460 return got_error_from_errno("fstat");
461 size2 = sb.st_size;
463 if (size1 != size2) {
464 *same = 0;
465 return NULL;
468 if (fseek(f1, 0L, SEEK_SET) == -1)
469 return got_ferror(f1, GOT_ERR_IO);
470 if (fseek(f2, 0L, SEEK_SET) == -1)
471 return got_ferror(f2, GOT_ERR_IO);
473 return check_file_contents_equal(same, f1, f2);
476 static const struct got_error *
477 copy_file_to_fd(off_t *outsize, FILE *f, int outfd)
479 uint8_t fbuf[65536];
480 size_t flen;
481 ssize_t outlen;
483 *outsize = 0;
485 if (fseek(f, 0L, SEEK_SET) == -1)
486 return got_ferror(f, GOT_ERR_IO);
488 for (;;) {
489 flen = fread(fbuf, 1, sizeof(fbuf), f);
490 if (flen == 0) {
491 if (ferror(f))
492 return got_error_from_errno("fread");
493 if (feof(f))
494 break;
496 outlen = write(outfd, fbuf, flen);
497 if (outlen == -1)
498 return got_error_from_errno("write");
499 if (outlen != flen)
500 return got_error(GOT_ERR_IO);
501 *outsize += outlen;
504 return NULL;
507 static const struct got_error *
508 merge_binary_file(int *overlapcnt, int merged_fd,
509 FILE *f_deriv, FILE *f_orig, FILE *f_deriv2,
510 const char *label_deriv, const char *label_orig, const char *label_deriv2,
511 const char *ondisk_path)
513 const struct got_error *err = NULL;
514 int same_content, changed_deriv, changed_deriv2;
515 int fd_orig = -1, fd_deriv = -1, fd_deriv2 = -1;
516 off_t size_orig = 0, size_deriv = 0, size_deriv2 = 0;
517 char *path_orig = NULL, *path_deriv = NULL, *path_deriv2 = NULL;
518 char *base_path_orig = NULL, *base_path_deriv = NULL;
519 char *base_path_deriv2 = NULL;
521 *overlapcnt = 0;
523 err = check_files_equal(&same_content, f_deriv, f_deriv2);
524 if (err)
525 return err;
527 if (same_content)
528 return copy_file_to_fd(&size_deriv, f_deriv, merged_fd);
530 err = check_files_equal(&same_content, f_deriv, f_orig);
531 if (err)
532 return err;
533 changed_deriv = !same_content;
534 err = check_files_equal(&same_content, f_deriv2, f_orig);
535 if (err)
536 return err;
537 changed_deriv2 = !same_content;
539 if (changed_deriv && changed_deriv2) {
540 *overlapcnt = 1;
541 if (asprintf(&base_path_orig, "%s-orig", ondisk_path) == -1) {
542 err = got_error_from_errno("asprintf");
543 goto done;
545 if (asprintf(&base_path_deriv, "%s-1", ondisk_path) == -1) {
546 err = got_error_from_errno("asprintf");
547 goto done;
549 if (asprintf(&base_path_deriv2, "%s-2", ondisk_path) == -1) {
550 err = got_error_from_errno("asprintf");
551 goto done;
553 err = got_opentemp_named_fd(&path_orig, &fd_orig,
554 base_path_orig);
555 if (err)
556 goto done;
557 err = got_opentemp_named_fd(&path_deriv, &fd_deriv,
558 base_path_deriv);
559 if (err)
560 goto done;
561 err = got_opentemp_named_fd(&path_deriv2, &fd_deriv2,
562 base_path_deriv2);
563 if (err)
564 goto done;
565 err = copy_file_to_fd(&size_orig, f_orig, fd_orig);
566 if (err)
567 goto done;
568 err = copy_file_to_fd(&size_deriv, f_deriv, fd_deriv);
569 if (err)
570 goto done;
571 err = copy_file_to_fd(&size_deriv2, f_deriv2, fd_deriv2);
572 if (err)
573 goto done;
574 if (dprintf(merged_fd, "Binary files differ and cannot be "
575 "merged automatically:\n") < 0) {
576 err = got_error_from_errno("dprintf");
577 goto done;
579 if (dprintf(merged_fd, "%s%s%s\nfile %s\n",
580 GOT_DIFF_CONFLICT_MARKER_BEGIN,
581 label_deriv ? " " : "",
582 label_deriv ? label_deriv : "",
583 path_deriv) < 0) {
584 err = got_error_from_errno("dprintf");
585 goto done;
587 if (size_orig > 0) {
588 if (dprintf(merged_fd, "%s%s%s\nfile %s\n",
589 GOT_DIFF_CONFLICT_MARKER_ORIG,
590 label_orig ? " " : "",
591 label_orig ? label_orig : "",
592 path_orig) < 0) {
593 err = got_error_from_errno("dprintf");
594 goto done;
597 if (dprintf(merged_fd, "%s\nfile %s\n%s%s%s\n",
598 GOT_DIFF_CONFLICT_MARKER_SEP,
599 path_deriv2,
600 GOT_DIFF_CONFLICT_MARKER_END,
601 label_deriv2 ? " " : "",
602 label_deriv2 ? label_deriv2 : "") < 0) {
603 err = got_error_from_errno("dprintf");
604 goto done;
606 } else if (changed_deriv)
607 err = copy_file_to_fd(&size_deriv, f_deriv, merged_fd);
608 else if (changed_deriv2)
609 err = copy_file_to_fd(&size_deriv2, f_deriv2, merged_fd);
610 done:
611 if (size_orig == 0 && path_orig && unlink(path_orig) == -1 &&
612 err == NULL)
613 err = got_error_from_errno2("unlink", path_orig);
614 if (fd_orig != -1 && close(fd_orig) == -1 && err == NULL)
615 err = got_error_from_errno2("close", path_orig);
616 if (fd_deriv != -1 && close(fd_deriv) == -1 && err == NULL)
617 err = got_error_from_errno2("close", path_deriv);
618 if (fd_deriv2 != -1 && close(fd_deriv2) == -1 && err == NULL)
619 err = got_error_from_errno2("close", path_deriv2);
620 free(path_orig);
621 free(path_deriv);
622 free(path_deriv2);
623 free(base_path_orig);
624 free(base_path_deriv);
625 free(base_path_deriv2);
626 return err;
629 /*
630 * Perform a 3-way merge where the file f_orig acts as the common
631 * ancestor, the file f_deriv acts as the first derived version,
632 * and the file f_deriv2 acts as the second derived version.
633 * The merge result will be written to a new file at ondisk_path; any
634 * existing file at this path will be replaced.
635 */
636 static const struct got_error *
637 merge_file(int *local_changes_subsumed, struct got_worktree *worktree,
638 FILE *f_orig, FILE *f_deriv, FILE *f_deriv2, const char *ondisk_path,
639 const char *path, uint16_t st_mode,
640 const char *label_orig, const char *label_deriv, const char *label_deriv2,
641 enum got_diff_algorithm diff_algo, struct got_repository *repo,
642 got_worktree_checkout_cb progress_cb, void *progress_arg)
644 const struct got_error *err = NULL;
645 int merged_fd = -1;
646 FILE *f_merged = NULL;
647 char *merged_path = NULL, *base_path = NULL;
648 int overlapcnt = 0;
649 char *parent = NULL;
651 *local_changes_subsumed = 0;
653 err = got_path_dirname(&parent, ondisk_path);
654 if (err)
655 return err;
657 if (asprintf(&base_path, "%s/got-merged", parent) == -1) {
658 err = got_error_from_errno("asprintf");
659 goto done;
662 err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
663 if (err)
664 goto done;
666 err = got_merge_diff3(&overlapcnt, merged_fd, f_deriv, f_orig,
667 f_deriv2, label_deriv, label_orig, label_deriv2, diff_algo);
668 if (err) {
669 if (err->code != GOT_ERR_FILE_BINARY)
670 goto done;
671 err = merge_binary_file(&overlapcnt, merged_fd, f_deriv,
672 f_orig, f_deriv2, label_deriv, label_orig, label_deriv2,
673 ondisk_path);
674 if (err)
675 goto done;
678 err = (*progress_cb)(progress_arg,
679 overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
680 if (err)
681 goto done;
683 if (fsync(merged_fd) != 0) {
684 err = got_error_from_errno("fsync");
685 goto done;
688 f_merged = fdopen(merged_fd, "r");
689 if (f_merged == NULL) {
690 err = got_error_from_errno("fdopen");
691 goto done;
693 merged_fd = -1;
695 /* Check if a clean merge has subsumed all local changes. */
696 if (overlapcnt == 0) {
697 err = check_files_equal(local_changes_subsumed, f_deriv,
698 f_merged);
699 if (err)
700 goto done;
703 if (fchmod(fileno(f_merged), st_mode) != 0) {
704 err = got_error_from_errno2("fchmod", merged_path);
705 goto done;
708 if (rename(merged_path, ondisk_path) != 0) {
709 err = got_error_from_errno3("rename", merged_path,
710 ondisk_path);
711 goto done;
713 done:
714 if (err) {
715 if (merged_path)
716 unlink(merged_path);
718 if (merged_fd != -1 && close(merged_fd) == -1 && err == NULL)
719 err = got_error_from_errno("close");
720 if (f_merged && fclose(f_merged) == EOF && err == NULL)
721 err = got_error_from_errno("fclose");
722 free(merged_path);
723 free(base_path);
724 free(parent);
725 return err;
728 static const struct got_error *
729 update_symlink(const char *ondisk_path, const char *target_path,
730 size_t target_len)
732 /* This is not atomic but matches what 'ln -sf' does. */
733 if (unlink(ondisk_path) == -1)
734 return got_error_from_errno2("unlink", ondisk_path);
735 if (symlink(target_path, ondisk_path) == -1)
736 return got_error_from_errno3("symlink", target_path,
737 ondisk_path);
738 return NULL;
741 /*
742 * Overwrite a symlink (or a regular file in case there was a "bad" symlink)
743 * in the work tree with a file that contains conflict markers and the
744 * conflicting target paths of the original version, a "derived version"
745 * of a symlink from an incoming change, and a local version of the symlink.
747 * The original versions's target path can be NULL if it is not available,
748 * such as if both derived versions added a new symlink at the same path.
750 * The incoming derived symlink target is NULL in case the incoming change
751 * has deleted this symlink.
752 */
753 static const struct got_error *
754 install_symlink_conflict(const char *deriv_target,
755 struct got_object_id *deriv_base_commit_id, const char *orig_target,
756 const char *label_orig, const char *local_target, const char *ondisk_path)
758 const struct got_error *err;
759 char *id_str = NULL, *label_deriv = NULL, *path = NULL;
760 FILE *f = NULL;
762 err = got_object_id_str(&id_str, deriv_base_commit_id);
763 if (err)
764 return got_error_from_errno("asprintf");
766 if (asprintf(&label_deriv, "%s: commit %s",
767 GOT_MERGE_LABEL_MERGED, id_str) == -1) {
768 err = got_error_from_errno("asprintf");
769 goto done;
772 err = got_opentemp_named(&path, &f, "got-symlink-conflict");
773 if (err)
774 goto done;
776 if (fchmod(fileno(f), GOT_DEFAULT_FILE_MODE) == -1) {
777 err = got_error_from_errno2("fchmod", path);
778 goto done;
781 if (fprintf(f, "%s %s\n%s\n%s%s%s%s%s\n%s\n%s\n",
782 GOT_DIFF_CONFLICT_MARKER_BEGIN, label_deriv,
783 deriv_target ? deriv_target : "(symlink was deleted)",
784 orig_target ? label_orig : "",
785 orig_target ? "\n" : "",
786 orig_target ? orig_target : "",
787 orig_target ? "\n" : "",
788 GOT_DIFF_CONFLICT_MARKER_SEP,
789 local_target, GOT_DIFF_CONFLICT_MARKER_END) < 0) {
790 err = got_error_from_errno2("fprintf", path);
791 goto done;
794 if (unlink(ondisk_path) == -1) {
795 err = got_error_from_errno2("unlink", ondisk_path);
796 goto done;
798 if (rename(path, ondisk_path) == -1) {
799 err = got_error_from_errno3("rename", path, ondisk_path);
800 goto done;
802 done:
803 if (f != NULL && fclose(f) == EOF && err == NULL)
804 err = got_error_from_errno2("fclose", path);
805 free(path);
806 free(id_str);
807 free(label_deriv);
808 return err;
811 /* forward declaration */
812 static const struct got_error *
813 merge_blob(int *, struct got_worktree *, struct got_blob_object *,
814 const char *, const char *, uint16_t, const char *,
815 struct got_blob_object *, struct got_object_id *,
816 struct got_repository *, got_worktree_checkout_cb, void *);
818 /*
819 * Merge a symlink into the work tree, where blob_orig acts as the common
820 * ancestor, deriv_target is the link target of the first derived version,
821 * and the symlink on disk acts as the second derived version.
822 * Assume that contents of both blobs represent symlinks.
823 */
824 static const struct got_error *
825 merge_symlink(struct got_worktree *worktree,
826 struct got_blob_object *blob_orig, const char *ondisk_path,
827 const char *path, const char *label_orig, const char *deriv_target,
828 struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
829 got_worktree_checkout_cb progress_cb, void *progress_arg)
831 const struct got_error *err = NULL;
832 char *ancestor_target = NULL;
833 struct stat sb;
834 ssize_t ondisk_len, deriv_len;
835 char ondisk_target[PATH_MAX];
836 int have_local_change = 0;
837 int have_incoming_change = 0;
839 if (lstat(ondisk_path, &sb) == -1)
840 return got_error_from_errno2("lstat", ondisk_path);
842 ondisk_len = readlink(ondisk_path, ondisk_target,
843 sizeof(ondisk_target));
844 if (ondisk_len == -1) {
845 err = got_error_from_errno2("readlink",
846 ondisk_path);
847 goto done;
849 ondisk_target[ondisk_len] = '\0';
851 if (blob_orig) {
852 err = got_object_blob_read_to_str(&ancestor_target, blob_orig);
853 if (err)
854 goto done;
857 if (ancestor_target == NULL ||
858 (ondisk_len != strlen(ancestor_target) ||
859 memcmp(ondisk_target, ancestor_target, ondisk_len) != 0))
860 have_local_change = 1;
862 deriv_len = strlen(deriv_target);
863 if (ancestor_target == NULL ||
864 (deriv_len != strlen(ancestor_target) ||
865 memcmp(deriv_target, ancestor_target, deriv_len) != 0))
866 have_incoming_change = 1;
868 if (!have_local_change && !have_incoming_change) {
869 if (ancestor_target) {
870 /* Both sides made the same change. */
871 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
872 path);
873 } else if (deriv_len == ondisk_len &&
874 memcmp(ondisk_target, deriv_target, deriv_len) == 0) {
875 /* Both sides added the same symlink. */
876 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
877 path);
878 } else {
879 /* Both sides added symlinks which don't match. */
880 err = install_symlink_conflict(deriv_target,
881 deriv_base_commit_id, ancestor_target,
882 label_orig, ondisk_target, ondisk_path);
883 if (err)
884 goto done;
885 err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
886 path);
888 } else if (!have_local_change && have_incoming_change) {
889 /* Apply the incoming change. */
890 err = update_symlink(ondisk_path, deriv_target,
891 strlen(deriv_target));
892 if (err)
893 goto done;
894 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
895 } else if (have_local_change && have_incoming_change) {
896 if (deriv_len == ondisk_len &&
897 memcmp(deriv_target, ondisk_target, deriv_len) == 0) {
898 /* Both sides made the same change. */
899 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
900 path);
901 } else {
902 err = install_symlink_conflict(deriv_target,
903 deriv_base_commit_id, ancestor_target, label_orig,
904 ondisk_target, ondisk_path);
905 if (err)
906 goto done;
907 err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
908 path);
912 done:
913 free(ancestor_target);
914 return err;
917 static const struct got_error *
918 dump_symlink_target_path_to_file(FILE **outfile, const char *ondisk_path)
920 const struct got_error *err = NULL;
921 char target_path[PATH_MAX];
922 ssize_t target_len;
923 size_t n;
924 FILE *f;
926 *outfile = NULL;
928 f = got_opentemp();
929 if (f == NULL)
930 return got_error_from_errno("got_opentemp");
931 target_len = readlink(ondisk_path, target_path, sizeof(target_path));
932 if (target_len == -1) {
933 err = got_error_from_errno2("readlink", ondisk_path);
934 goto done;
936 n = fwrite(target_path, 1, target_len, f);
937 if (n != target_len) {
938 err = got_ferror(f, GOT_ERR_IO);
939 goto done;
941 if (fflush(f) == EOF) {
942 err = got_error_from_errno("fflush");
943 goto done;
945 if (fseek(f, 0L, SEEK_SET) == -1) {
946 err = got_ferror(f, GOT_ERR_IO);
947 goto done;
949 done:
950 if (err)
951 fclose(f);
952 else
953 *outfile = f;
954 return err;
957 /*
958 * Perform a 3-way merge where blob_orig acts as the common ancestor,
959 * blob_deriv acts as the first derived version, and the file on disk
960 * acts as the second derived version.
961 */
962 static const struct got_error *
963 merge_blob(int *local_changes_subsumed, struct got_worktree *worktree,
964 struct got_blob_object *blob_orig, const char *ondisk_path,
965 const char *path, uint16_t st_mode, const char *label_orig,
966 struct got_blob_object *blob_deriv,
967 struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
968 got_worktree_checkout_cb progress_cb, void *progress_arg)
970 const struct got_error *err = NULL;
971 FILE *f_orig = NULL, *f_deriv = NULL, *f_deriv2 = NULL;
972 char *blob_orig_path = NULL;
973 char *blob_deriv_path = NULL, *base_path = NULL, *id_str = NULL;
974 char *label_deriv = NULL, *parent = NULL;
976 *local_changes_subsumed = 0;
978 err = got_path_dirname(&parent, ondisk_path);
979 if (err)
980 return err;
982 if (blob_orig) {
983 if (asprintf(&base_path, "%s/got-merge-blob-orig",
984 parent) == -1) {
985 err = got_error_from_errno("asprintf");
986 base_path = NULL;
987 goto done;
990 err = got_opentemp_named(&blob_orig_path, &f_orig, base_path);
991 if (err)
992 goto done;
993 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_orig,
994 blob_orig);
995 if (err)
996 goto done;
997 free(base_path);
998 } else {
999 /*
1000 * No common ancestor exists. This is an "add vs add" conflict
1001 * and we simply use an empty ancestor file to make both files
1002 * appear in the merged result in their entirety.
1004 f_orig = got_opentemp();
1005 if (f_orig == NULL) {
1006 err = got_error_from_errno("got_opentemp");
1007 goto done;
1011 if (asprintf(&base_path, "%s/got-merge-blob-deriv", parent) == -1) {
1012 err = got_error_from_errno("asprintf");
1013 base_path = NULL;
1014 goto done;
1017 err = got_opentemp_named(&blob_deriv_path, &f_deriv, base_path);
1018 if (err)
1019 goto done;
1020 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_deriv,
1021 blob_deriv);
1022 if (err)
1023 goto done;
1025 err = got_object_id_str(&id_str, deriv_base_commit_id);
1026 if (err)
1027 goto done;
1028 if (asprintf(&label_deriv, "%s: commit %s",
1029 GOT_MERGE_LABEL_MERGED, id_str) == -1) {
1030 err = got_error_from_errno("asprintf");
1031 goto done;
1035 * In order the run a 3-way merge with a symlink we copy the symlink's
1036 * target path into a temporary file and use that file with diff3.
1038 if (S_ISLNK(st_mode)) {
1039 err = dump_symlink_target_path_to_file(&f_deriv2, ondisk_path);
1040 if (err)
1041 goto done;
1042 } else {
1043 int fd;
1044 fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1045 if (fd == -1) {
1046 err = got_error_from_errno2("open", ondisk_path);
1047 goto done;
1049 f_deriv2 = fdopen(fd, "r");
1050 if (f_deriv2 == NULL) {
1051 err = got_error_from_errno2("fdopen", ondisk_path);
1052 close(fd);
1053 goto done;
1057 err = merge_file(local_changes_subsumed, worktree, f_orig, f_deriv,
1058 f_deriv2, ondisk_path, path, st_mode, label_orig, label_deriv,
1059 NULL, GOT_DIFF_ALGORITHM_MYERS, repo, progress_cb, progress_arg);
1060 done:
1061 if (f_orig && fclose(f_orig) == EOF && err == NULL)
1062 err = got_error_from_errno("fclose");
1063 if (f_deriv && fclose(f_deriv) == EOF && err == NULL)
1064 err = got_error_from_errno("fclose");
1065 if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
1066 err = got_error_from_errno("fclose");
1067 free(base_path);
1068 if (blob_orig_path) {
1069 unlink(blob_orig_path);
1070 free(blob_orig_path);
1072 if (blob_deriv_path) {
1073 unlink(blob_deriv_path);
1074 free(blob_deriv_path);
1076 free(id_str);
1077 free(label_deriv);
1078 free(parent);
1079 return err;
1082 static const struct got_error *
1083 create_fileindex_entry(struct got_fileindex_entry **new_iep,
1084 struct got_fileindex *fileindex, struct got_object_id *base_commit_id,
1085 int wt_fd, const char *path, struct got_object_id *blob_id)
1087 const struct got_error *err = NULL;
1088 struct got_fileindex_entry *new_ie;
1090 *new_iep = NULL;
1092 err = got_fileindex_entry_alloc(&new_ie, path);
1093 if (err)
1094 return err;
1096 err = got_fileindex_entry_update(new_ie, wt_fd, path,
1097 blob_id->sha1, base_commit_id->sha1, 1);
1098 if (err)
1099 goto done;
1101 err = got_fileindex_entry_add(fileindex, new_ie);
1102 done:
1103 if (err)
1104 got_fileindex_entry_free(new_ie);
1105 else
1106 *new_iep = new_ie;
1107 return err;
1110 static mode_t
1111 get_ondisk_perms(int executable, mode_t st_mode)
1113 mode_t xbits = S_IXUSR;
1115 if (executable) {
1116 /* Map read bits to execute bits. */
1117 if (st_mode & S_IRGRP)
1118 xbits |= S_IXGRP;
1119 if (st_mode & S_IROTH)
1120 xbits |= S_IXOTH;
1121 return st_mode | xbits;
1124 return (st_mode & ~(S_IXUSR | S_IXGRP | S_IXOTH));
1127 /* forward declaration */
1128 static const struct got_error *
1129 install_blob(struct got_worktree *worktree, const char *ondisk_path,
1130 const char *path, mode_t te_mode, mode_t st_mode,
1131 struct got_blob_object *blob, int restoring_missing_file,
1132 int reverting_versioned_file, int installing_bad_symlink,
1133 int path_is_unversioned, struct got_repository *repo,
1134 got_worktree_checkout_cb progress_cb, void *progress_arg);
1137 * This function assumes that the provided symlink target points at a
1138 * safe location in the work tree!
1140 static const struct got_error *
1141 replace_existing_symlink(int *did_something, const char *ondisk_path,
1142 const char *target_path, size_t target_len)
1144 const struct got_error *err = NULL;
1145 ssize_t elen;
1146 char etarget[PATH_MAX];
1147 int fd;
1149 *did_something = 0;
1152 * "Bad" symlinks (those pointing outside the work tree or into the
1153 * .got directory) are installed in the work tree as a regular file
1154 * which contains the bad symlink target path.
1155 * The new symlink target has already been checked for safety by our
1156 * caller. If we can successfully open a regular file then we simply
1157 * replace this file with a symlink below.
1159 fd = open(ondisk_path, O_RDWR | O_EXCL | O_NOFOLLOW | O_CLOEXEC);
1160 if (fd == -1) {
1161 if (!got_err_open_nofollow_on_symlink())
1162 return got_error_from_errno2("open", ondisk_path);
1164 /* We are updating an existing on-disk symlink. */
1165 elen = readlink(ondisk_path, etarget, sizeof(etarget));
1166 if (elen == -1)
1167 return got_error_from_errno2("readlink", ondisk_path);
1169 if (elen == target_len &&
1170 memcmp(etarget, target_path, target_len) == 0)
1171 return NULL; /* nothing to do */
1174 *did_something = 1;
1175 err = update_symlink(ondisk_path, target_path, target_len);
1176 if (fd != -1 && close(fd) == -1 && err == NULL)
1177 err = got_error_from_errno2("close", ondisk_path);
1178 return err;
1181 static const struct got_error *
1182 is_bad_symlink_target(int *is_bad_symlink, const char *target_path,
1183 size_t target_len, const char *ondisk_path, const char *wtroot_path)
1185 const struct got_error *err = NULL;
1186 char canonpath[PATH_MAX];
1187 char *path_got = NULL;
1189 *is_bad_symlink = 0;
1191 if (target_len >= sizeof(canonpath)) {
1192 *is_bad_symlink = 1;
1193 return NULL;
1197 * We do not use realpath(3) to resolve the symlink's target
1198 * path because we don't want to resolve symlinks recursively.
1199 * Instead we make the path absolute and then canonicalize it.
1200 * Relative symlink target lookup should begin at the directory
1201 * in which the blob object is being installed.
1203 if (!got_path_is_absolute(target_path)) {
1204 char *abspath, *parent;
1205 err = got_path_dirname(&parent, ondisk_path);
1206 if (err)
1207 return err;
1208 if (asprintf(&abspath, "%s/%s", parent, target_path) == -1) {
1209 free(parent);
1210 return got_error_from_errno("asprintf");
1212 free(parent);
1213 if (strlen(abspath) >= sizeof(canonpath)) {
1214 err = got_error_path(abspath, GOT_ERR_BAD_PATH);
1215 free(abspath);
1216 return err;
1218 err = got_canonpath(abspath, canonpath, sizeof(canonpath));
1219 free(abspath);
1220 if (err)
1221 return err;
1222 } else {
1223 err = got_canonpath(target_path, canonpath, sizeof(canonpath));
1224 if (err)
1225 return err;
1228 /* Only allow symlinks pointing at paths within the work tree. */
1229 if (!got_path_is_child(canonpath, wtroot_path, strlen(wtroot_path))) {
1230 *is_bad_symlink = 1;
1231 return NULL;
1234 /* Do not allow symlinks pointing into the .got directory. */
1235 if (asprintf(&path_got, "%s/%s", wtroot_path,
1236 GOT_WORKTREE_GOT_DIR) == -1)
1237 return got_error_from_errno("asprintf");
1238 if (got_path_is_child(canonpath, path_got, strlen(path_got)))
1239 *is_bad_symlink = 1;
1241 free(path_got);
1242 return NULL;
1245 static const struct got_error *
1246 install_symlink(int *is_bad_symlink, struct got_worktree *worktree,
1247 const char *ondisk_path, const char *path, struct got_blob_object *blob,
1248 int restoring_missing_file, int reverting_versioned_file,
1249 int path_is_unversioned, int allow_bad_symlinks,
1250 struct got_repository *repo,
1251 got_worktree_checkout_cb progress_cb, void *progress_arg)
1253 const struct got_error *err = NULL;
1254 char target_path[PATH_MAX];
1255 size_t len, target_len = 0;
1256 char *path_got = NULL;
1257 const uint8_t *buf = got_object_blob_get_read_buf(blob);
1258 size_t hdrlen = got_object_blob_get_hdrlen(blob);
1260 *is_bad_symlink = 0;
1263 * Blob object content specifies the target path of the link.
1264 * If a symbolic link cannot be installed we instead create
1265 * a regular file which contains the link target path stored
1266 * in the blob object.
1268 do {
1269 err = got_object_blob_read_block(&len, blob);
1270 if (len + target_len >= sizeof(target_path)) {
1271 /* Path too long; install as a regular file. */
1272 *is_bad_symlink = 1;
1273 got_object_blob_rewind(blob);
1274 return install_blob(worktree, ondisk_path, path,
1275 GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1276 restoring_missing_file, reverting_versioned_file,
1277 1, path_is_unversioned, repo, progress_cb,
1278 progress_arg);
1280 if (len > 0) {
1281 /* Skip blob object header first time around. */
1282 memcpy(target_path + target_len, buf + hdrlen,
1283 len - hdrlen);
1284 target_len += len - hdrlen;
1285 hdrlen = 0;
1287 } while (len != 0);
1288 target_path[target_len] = '\0';
1290 err = is_bad_symlink_target(is_bad_symlink, target_path, target_len,
1291 ondisk_path, worktree->root_path);
1292 if (err)
1293 return err;
1295 if (*is_bad_symlink && !allow_bad_symlinks) {
1296 /* install as a regular file */
1297 got_object_blob_rewind(blob);
1298 err = install_blob(worktree, ondisk_path, path,
1299 GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1300 restoring_missing_file, reverting_versioned_file, 1,
1301 path_is_unversioned, repo, progress_cb, progress_arg);
1302 goto done;
1305 if (symlink(target_path, ondisk_path) == -1) {
1306 if (errno == EEXIST) {
1307 int symlink_replaced;
1308 if (path_is_unversioned) {
1309 err = (*progress_cb)(progress_arg,
1310 GOT_STATUS_UNVERSIONED, path);
1311 goto done;
1313 err = replace_existing_symlink(&symlink_replaced,
1314 ondisk_path, target_path, target_len);
1315 if (err)
1316 goto done;
1317 if (progress_cb) {
1318 if (symlink_replaced) {
1319 err = (*progress_cb)(progress_arg,
1320 reverting_versioned_file ?
1321 GOT_STATUS_REVERT :
1322 GOT_STATUS_UPDATE, path);
1323 } else {
1324 err = (*progress_cb)(progress_arg,
1325 GOT_STATUS_EXISTS, path);
1328 goto done; /* Nothing else to do. */
1331 if (errno == ENOENT) {
1332 char *parent;
1333 err = got_path_dirname(&parent, ondisk_path);
1334 if (err)
1335 goto done;
1336 err = add_dir_on_disk(worktree, parent);
1337 free(parent);
1338 if (err)
1339 goto done;
1341 * Retry, and fall through to error handling
1342 * below if this second attempt fails.
1344 if (symlink(target_path, ondisk_path) != -1) {
1345 err = NULL; /* success */
1346 goto done;
1350 /* Handle errors from first or second creation attempt. */
1351 if (errno == ENAMETOOLONG) {
1352 /* bad target path; install as a regular file */
1353 *is_bad_symlink = 1;
1354 got_object_blob_rewind(blob);
1355 err = install_blob(worktree, ondisk_path, path,
1356 GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1357 restoring_missing_file, reverting_versioned_file, 1,
1358 path_is_unversioned, repo,
1359 progress_cb, progress_arg);
1360 } else if (errno == ENOTDIR) {
1361 err = got_error_path(ondisk_path,
1362 GOT_ERR_FILE_OBSTRUCTED);
1363 } else {
1364 err = got_error_from_errno3("symlink",
1365 target_path, ondisk_path);
1367 } else if (progress_cb)
1368 err = (*progress_cb)(progress_arg, reverting_versioned_file ?
1369 GOT_STATUS_REVERT : GOT_STATUS_ADD, path);
1370 done:
1371 free(path_got);
1372 return err;
1375 static const struct got_error *
1376 install_blob(struct got_worktree *worktree, const char *ondisk_path,
1377 const char *path, mode_t te_mode, mode_t st_mode,
1378 struct got_blob_object *blob, int restoring_missing_file,
1379 int reverting_versioned_file, int installing_bad_symlink,
1380 int path_is_unversioned, struct got_repository *repo,
1381 got_worktree_checkout_cb progress_cb, void *progress_arg)
1383 const struct got_error *err = NULL;
1384 int fd = -1;
1385 size_t len, hdrlen;
1386 int update = 0;
1387 char *tmppath = NULL;
1389 fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW |
1390 O_CLOEXEC, GOT_DEFAULT_FILE_MODE);
1391 if (fd == -1) {
1392 if (errno == ENOENT) {
1393 char *parent;
1394 err = got_path_dirname(&parent, path);
1395 if (err)
1396 return err;
1397 err = add_dir_on_disk(worktree, parent);
1398 free(parent);
1399 if (err)
1400 return err;
1401 fd = open(ondisk_path,
1402 O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | O_CLOEXEC,
1403 GOT_DEFAULT_FILE_MODE);
1404 if (fd == -1)
1405 return got_error_from_errno2("open",
1406 ondisk_path);
1407 } else if (errno == EEXIST) {
1408 if (path_is_unversioned) {
1409 err = (*progress_cb)(progress_arg,
1410 GOT_STATUS_UNVERSIONED, path);
1411 goto done;
1413 if (!(S_ISLNK(st_mode) && S_ISREG(te_mode)) &&
1414 !S_ISREG(st_mode) && !installing_bad_symlink) {
1415 /* TODO file is obstructed; do something */
1416 err = got_error_path(ondisk_path,
1417 GOT_ERR_FILE_OBSTRUCTED);
1418 goto done;
1419 } else {
1420 err = got_opentemp_named_fd(&tmppath, &fd,
1421 ondisk_path);
1422 if (err)
1423 goto done;
1424 update = 1;
1426 } else
1427 return got_error_from_errno2("open", ondisk_path);
1430 if (fchmod(fd, get_ondisk_perms(te_mode & S_IXUSR, st_mode)) == -1) {
1431 err = got_error_from_errno2("fchmod",
1432 update ? tmppath : ondisk_path);
1433 goto done;
1436 if (progress_cb) {
1437 if (restoring_missing_file)
1438 err = (*progress_cb)(progress_arg, GOT_STATUS_MISSING,
1439 path);
1440 else if (reverting_versioned_file)
1441 err = (*progress_cb)(progress_arg, GOT_STATUS_REVERT,
1442 path);
1443 else
1444 err = (*progress_cb)(progress_arg,
1445 update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
1446 if (err)
1447 goto done;
1450 hdrlen = got_object_blob_get_hdrlen(blob);
1451 do {
1452 const uint8_t *buf = got_object_blob_get_read_buf(blob);
1453 err = got_object_blob_read_block(&len, blob);
1454 if (err)
1455 break;
1456 if (len > 0) {
1457 /* Skip blob object header first time around. */
1458 ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
1459 if (outlen == -1) {
1460 err = got_error_from_errno("write");
1461 goto done;
1462 } else if (outlen != len - hdrlen) {
1463 err = got_error(GOT_ERR_IO);
1464 goto done;
1466 hdrlen = 0;
1468 } while (len != 0);
1470 if (fsync(fd) != 0) {
1471 err = got_error_from_errno("fsync");
1472 goto done;
1475 if (update) {
1476 if (S_ISLNK(st_mode) && unlink(ondisk_path) == -1) {
1477 err = got_error_from_errno2("unlink", ondisk_path);
1478 goto done;
1480 if (rename(tmppath, ondisk_path) != 0) {
1481 err = got_error_from_errno3("rename", tmppath,
1482 ondisk_path);
1483 goto done;
1485 free(tmppath);
1486 tmppath = NULL;
1489 done:
1490 if (fd != -1 && close(fd) == -1 && err == NULL)
1491 err = got_error_from_errno("close");
1492 if (tmppath != NULL && unlink(tmppath) == -1 && err == NULL)
1493 err = got_error_from_errno2("unlink", tmppath);
1494 free(tmppath);
1495 return err;
1498 /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
1499 static const struct got_error *
1500 get_modified_file_content_status(unsigned char *status, FILE *f)
1502 const struct got_error *err = NULL;
1503 const char *markers[3] = {
1504 GOT_DIFF_CONFLICT_MARKER_BEGIN,
1505 GOT_DIFF_CONFLICT_MARKER_SEP,
1506 GOT_DIFF_CONFLICT_MARKER_END
1508 int i = 0;
1509 char *line = NULL;
1510 size_t linesize = 0;
1511 ssize_t linelen;
1513 while (*status == GOT_STATUS_MODIFY) {
1514 linelen = getline(&line, &linesize, f);
1515 if (linelen == -1) {
1516 if (feof(f))
1517 break;
1518 err = got_ferror(f, GOT_ERR_IO);
1519 break;
1522 if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1523 if (strcmp(markers[i], GOT_DIFF_CONFLICT_MARKER_END)
1524 == 0)
1525 *status = GOT_STATUS_CONFLICT;
1526 else
1527 i++;
1530 free(line);
1532 return err;
1535 static int
1536 xbit_differs(struct got_fileindex_entry *ie, uint16_t st_mode)
1538 mode_t ie_mode = got_fileindex_perms_to_st(ie);
1539 return ((ie_mode & S_IXUSR) != (st_mode & S_IXUSR));
1542 static int
1543 stat_info_differs(struct got_fileindex_entry *ie, struct stat *sb)
1545 return !(ie->ctime_sec == sb->st_ctim.tv_sec &&
1546 ie->ctime_nsec == sb->st_ctim.tv_nsec &&
1547 ie->mtime_sec == sb->st_mtim.tv_sec &&
1548 ie->mtime_nsec == sb->st_mtim.tv_nsec &&
1549 ie->size == (sb->st_size & 0xffffffff) &&
1550 !xbit_differs(ie, sb->st_mode));
1553 static unsigned char
1554 get_staged_status(struct got_fileindex_entry *ie)
1556 switch (got_fileindex_entry_stage_get(ie)) {
1557 case GOT_FILEIDX_STAGE_ADD:
1558 return GOT_STATUS_ADD;
1559 case GOT_FILEIDX_STAGE_DELETE:
1560 return GOT_STATUS_DELETE;
1561 case GOT_FILEIDX_STAGE_MODIFY:
1562 return GOT_STATUS_MODIFY;
1563 default:
1564 return GOT_STATUS_NO_CHANGE;
1568 static const struct got_error *
1569 get_symlink_modification_status(unsigned char *status,
1570 struct got_fileindex_entry *ie, const char *abspath,
1571 int dirfd, const char *de_name, struct got_blob_object *blob)
1573 const struct got_error *err = NULL;
1574 char target_path[PATH_MAX];
1575 char etarget[PATH_MAX];
1576 ssize_t elen;
1577 size_t len, target_len = 0;
1578 const uint8_t *buf = got_object_blob_get_read_buf(blob);
1579 size_t hdrlen = got_object_blob_get_hdrlen(blob);
1581 *status = GOT_STATUS_NO_CHANGE;
1583 /* Blob object content specifies the target path of the link. */
1584 do {
1585 err = got_object_blob_read_block(&len, blob);
1586 if (err)
1587 return err;
1588 if (len + target_len >= sizeof(target_path)) {
1590 * Should not happen. The blob contents were OK
1591 * when this symlink was installed.
1593 return got_error(GOT_ERR_NO_SPACE);
1595 if (len > 0) {
1596 /* Skip blob object header first time around. */
1597 memcpy(target_path + target_len, buf + hdrlen,
1598 len - hdrlen);
1599 target_len += len - hdrlen;
1600 hdrlen = 0;
1602 } while (len != 0);
1603 target_path[target_len] = '\0';
1605 if (dirfd != -1) {
1606 elen = readlinkat(dirfd, de_name, etarget, sizeof(etarget));
1607 if (elen == -1)
1608 return got_error_from_errno2("readlinkat", abspath);
1609 } else {
1610 elen = readlink(abspath, etarget, sizeof(etarget));
1611 if (elen == -1)
1612 return got_error_from_errno2("readlink", abspath);
1615 if (elen != target_len || memcmp(etarget, target_path, target_len) != 0)
1616 *status = GOT_STATUS_MODIFY;
1618 return NULL;
1621 static const struct got_error *
1622 get_file_status(unsigned char *status, struct stat *sb,
1623 struct got_fileindex_entry *ie, const char *abspath,
1624 int dirfd, const char *de_name, struct got_repository *repo)
1626 const struct got_error *err = NULL;
1627 struct got_object_id id;
1628 size_t hdrlen;
1629 int fd = -1;
1630 FILE *f = NULL;
1631 uint8_t fbuf[8192];
1632 struct got_blob_object *blob = NULL;
1633 size_t flen, blen;
1634 unsigned char staged_status = get_staged_status(ie);
1636 *status = GOT_STATUS_NO_CHANGE;
1637 memset(sb, 0, sizeof(*sb));
1640 * Whenever the caller provides a directory descriptor and a
1641 * directory entry name for the file, use them! This prevents
1642 * race conditions if filesystem paths change beneath our feet.
1644 if (dirfd != -1) {
1645 if (fstatat(dirfd, de_name, sb, AT_SYMLINK_NOFOLLOW) == -1) {
1646 if (errno == ENOENT) {
1647 if (got_fileindex_entry_has_file_on_disk(ie))
1648 *status = GOT_STATUS_MISSING;
1649 else
1650 *status = GOT_STATUS_DELETE;
1651 goto done;
1653 err = got_error_from_errno2("fstatat", abspath);
1654 goto done;
1656 } else {
1657 fd = open(abspath, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1658 if (fd == -1 && errno != ENOENT &&
1659 !got_err_open_nofollow_on_symlink())
1660 return got_error_from_errno2("open", abspath);
1661 else if (fd == -1 && got_err_open_nofollow_on_symlink()) {
1662 if (lstat(abspath, sb) == -1)
1663 return got_error_from_errno2("lstat", abspath);
1664 } else if (fd == -1 || fstat(fd, sb) == -1) {
1665 if (errno == ENOENT) {
1666 if (got_fileindex_entry_has_file_on_disk(ie))
1667 *status = GOT_STATUS_MISSING;
1668 else
1669 *status = GOT_STATUS_DELETE;
1670 goto done;
1672 err = got_error_from_errno2("fstat", abspath);
1673 goto done;
1677 if (!S_ISREG(sb->st_mode) && !S_ISLNK(sb->st_mode)) {
1678 *status = GOT_STATUS_OBSTRUCTED;
1679 goto done;
1682 if (!got_fileindex_entry_has_file_on_disk(ie)) {
1683 *status = GOT_STATUS_DELETE;
1684 goto done;
1685 } else if (!got_fileindex_entry_has_blob(ie) &&
1686 staged_status != GOT_STATUS_ADD) {
1687 *status = GOT_STATUS_ADD;
1688 goto done;
1691 if (!stat_info_differs(ie, sb))
1692 goto done;
1694 if (S_ISLNK(sb->st_mode) &&
1695 got_fileindex_entry_filetype_get(ie) != GOT_FILEIDX_MODE_SYMLINK) {
1696 *status = GOT_STATUS_MODIFY;
1697 goto done;
1700 if (staged_status == GOT_STATUS_MODIFY ||
1701 staged_status == GOT_STATUS_ADD)
1702 memcpy(id.sha1, ie->staged_blob_sha1, sizeof(id.sha1));
1703 else
1704 memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1706 err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1707 if (err)
1708 goto done;
1710 if (S_ISLNK(sb->st_mode)) {
1711 err = get_symlink_modification_status(status, ie,
1712 abspath, dirfd, de_name, blob);
1713 goto done;
1716 if (dirfd != -1) {
1717 fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1718 if (fd == -1) {
1719 err = got_error_from_errno2("openat", abspath);
1720 goto done;
1724 f = fdopen(fd, "r");
1725 if (f == NULL) {
1726 err = got_error_from_errno2("fdopen", abspath);
1727 goto done;
1729 fd = -1;
1730 hdrlen = got_object_blob_get_hdrlen(blob);
1731 for (;;) {
1732 const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1733 err = got_object_blob_read_block(&blen, blob);
1734 if (err)
1735 goto done;
1736 /* Skip length of blob object header first time around. */
1737 flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1738 if (flen == 0 && ferror(f)) {
1739 err = got_error_from_errno("fread");
1740 goto done;
1742 if (blen - hdrlen == 0) {
1743 if (flen != 0)
1744 *status = GOT_STATUS_MODIFY;
1745 break;
1746 } else if (flen == 0) {
1747 if (blen - hdrlen != 0)
1748 *status = GOT_STATUS_MODIFY;
1749 break;
1750 } else if (blen - hdrlen == flen) {
1751 /* Skip blob object header first time around. */
1752 if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1753 *status = GOT_STATUS_MODIFY;
1754 break;
1756 } else {
1757 *status = GOT_STATUS_MODIFY;
1758 break;
1760 hdrlen = 0;
1763 if (*status == GOT_STATUS_MODIFY) {
1764 rewind(f);
1765 err = get_modified_file_content_status(status, f);
1766 } else if (xbit_differs(ie, sb->st_mode))
1767 *status = GOT_STATUS_MODE_CHANGE;
1768 done:
1769 if (blob)
1770 got_object_blob_close(blob);
1771 if (f != NULL && fclose(f) == EOF && err == NULL)
1772 err = got_error_from_errno2("fclose", abspath);
1773 if (fd != -1 && close(fd) == -1 && err == NULL)
1774 err = got_error_from_errno2("close", abspath);
1775 return err;
1779 * Update timestamps in the file index if a file is unmodified and
1780 * we had to run a full content comparison to find out.
1782 static const struct got_error *
1783 sync_timestamps(int wt_fd, const char *path, unsigned char status,
1784 struct got_fileindex_entry *ie, struct stat *sb)
1786 if (status == GOT_STATUS_NO_CHANGE && stat_info_differs(ie, sb))
1787 return got_fileindex_entry_update(ie, wt_fd, path,
1788 ie->blob_sha1, ie->commit_sha1, 1);
1790 return NULL;
1793 static const struct got_error *
1794 update_blob(struct got_worktree *worktree,
1795 struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1796 struct got_tree_entry *te, const char *path,
1797 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1798 void *progress_arg)
1800 const struct got_error *err = NULL;
1801 struct got_blob_object *blob = NULL;
1802 char *ondisk_path;
1803 unsigned char status = GOT_STATUS_NO_CHANGE;
1804 struct stat sb;
1806 if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1807 return got_error_from_errno("asprintf");
1809 if (ie) {
1810 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE) {
1811 err = got_error_path(ie->path, GOT_ERR_FILE_STAGED);
1812 goto done;
1814 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
1815 repo);
1816 if (err)
1817 goto done;
1818 if (status == GOT_STATUS_MISSING || status == GOT_STATUS_DELETE)
1819 sb.st_mode = got_fileindex_perms_to_st(ie);
1820 } else {
1821 if (stat(ondisk_path, &sb) == -1) {
1822 if (errno != ENOENT) {
1823 err = got_error_from_errno2("stat",
1824 ondisk_path);
1825 goto done;
1827 sb.st_mode = GOT_DEFAULT_FILE_MODE;
1828 status = GOT_STATUS_UNVERSIONED;
1829 } else {
1830 if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode))
1831 status = GOT_STATUS_UNVERSIONED;
1832 else
1833 status = GOT_STATUS_OBSTRUCTED;
1837 if (status == GOT_STATUS_OBSTRUCTED) {
1838 if (ie)
1839 got_fileindex_entry_mark_skipped(ie);
1840 err = (*progress_cb)(progress_arg, status, path);
1841 goto done;
1843 if (status == GOT_STATUS_CONFLICT) {
1844 if (ie)
1845 got_fileindex_entry_mark_skipped(ie);
1846 err = (*progress_cb)(progress_arg, GOT_STATUS_CANNOT_UPDATE,
1847 path);
1848 goto done;
1851 if (ie && status != GOT_STATUS_MISSING && S_ISREG(sb.st_mode) &&
1852 (S_ISLNK(te->mode) ||
1853 (te->mode & S_IXUSR) == (sb.st_mode & S_IXUSR))) {
1855 * This is a regular file or an installed bad symlink.
1856 * If the file index indicates that this file is already
1857 * up-to-date with respect to the repository we can skip
1858 * updating contents of this file.
1860 if (got_fileindex_entry_has_commit(ie) &&
1861 memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1862 SHA1_DIGEST_LENGTH) == 0) {
1863 /* Same commit. */
1864 err = sync_timestamps(worktree->root_fd,
1865 path, status, ie, &sb);
1866 if (err)
1867 goto done;
1868 err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1869 path);
1870 goto done;
1872 if (got_fileindex_entry_has_blob(ie) &&
1873 memcmp(ie->blob_sha1, te->id.sha1,
1874 SHA1_DIGEST_LENGTH) == 0) {
1875 /* Different commit but the same blob. */
1876 err = sync_timestamps(worktree->root_fd,
1877 path, status, ie, &sb);
1878 if (err)
1879 goto done;
1880 err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1881 path);
1882 goto done;
1886 err = got_object_open_as_blob(&blob, repo, &te->id, 8192);
1887 if (err)
1888 goto done;
1890 if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD) {
1891 int update_timestamps;
1892 struct got_blob_object *blob2 = NULL;
1893 char *label_orig = NULL;
1894 if (got_fileindex_entry_has_blob(ie)) {
1895 struct got_object_id id2;
1896 memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1897 err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
1898 if (err)
1899 goto done;
1901 if (got_fileindex_entry_has_commit(ie)) {
1902 char id_str[SHA1_DIGEST_STRING_LENGTH];
1903 if (got_sha1_digest_to_str(ie->commit_sha1, id_str,
1904 sizeof(id_str)) == NULL) {
1905 err = got_error_path(id_str,
1906 GOT_ERR_BAD_OBJ_ID_STR);
1907 goto done;
1909 if (asprintf(&label_orig, "%s: commit %s",
1910 GOT_MERGE_LABEL_BASE, id_str) == -1) {
1911 err = got_error_from_errno("asprintf");
1912 goto done;
1915 if (S_ISLNK(te->mode) && S_ISLNK(sb.st_mode)) {
1916 char *link_target;
1917 err = got_object_blob_read_to_str(&link_target, blob);
1918 if (err)
1919 goto done;
1920 err = merge_symlink(worktree, blob2, ondisk_path, path,
1921 label_orig, link_target, worktree->base_commit_id,
1922 repo, progress_cb, progress_arg);
1923 free(link_target);
1924 } else {
1925 err = merge_blob(&update_timestamps, worktree, blob2,
1926 ondisk_path, path, sb.st_mode, label_orig, blob,
1927 worktree->base_commit_id, repo,
1928 progress_cb, progress_arg);
1930 free(label_orig);
1931 if (blob2)
1932 got_object_blob_close(blob2);
1933 if (err)
1934 goto done;
1936 * Do not update timestamps of files with local changes.
1937 * Otherwise, a future status walk would treat them as
1938 * unmodified files again.
1940 err = got_fileindex_entry_update(ie, worktree->root_fd, path,
1941 blob->id.sha1, worktree->base_commit_id->sha1,
1942 update_timestamps);
1943 } else if (status == GOT_STATUS_MODE_CHANGE) {
1944 err = got_fileindex_entry_update(ie, worktree->root_fd, path,
1945 blob->id.sha1, worktree->base_commit_id->sha1, 0);
1946 } else if (status == GOT_STATUS_DELETE) {
1947 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1948 if (err)
1949 goto done;
1950 err = got_fileindex_entry_update(ie, worktree->root_fd, path,
1951 blob->id.sha1, worktree->base_commit_id->sha1, 0);
1952 if (err)
1953 goto done;
1954 } else {
1955 int is_bad_symlink = 0;
1956 if (S_ISLNK(te->mode)) {
1957 err = install_symlink(&is_bad_symlink, worktree,
1958 ondisk_path, path, blob,
1959 status == GOT_STATUS_MISSING, 0,
1960 status == GOT_STATUS_UNVERSIONED, 0,
1961 repo, progress_cb, progress_arg);
1962 } else {
1963 err = install_blob(worktree, ondisk_path, path,
1964 te->mode, sb.st_mode, blob,
1965 status == GOT_STATUS_MISSING, 0, 0,
1966 status == GOT_STATUS_UNVERSIONED, repo,
1967 progress_cb, progress_arg);
1969 if (err)
1970 goto done;
1972 if (ie) {
1973 err = got_fileindex_entry_update(ie,
1974 worktree->root_fd, path, blob->id.sha1,
1975 worktree->base_commit_id->sha1, 1);
1976 } else {
1977 err = create_fileindex_entry(&ie, fileindex,
1978 worktree->base_commit_id, worktree->root_fd, path,
1979 &blob->id);
1981 if (err)
1982 goto done;
1984 if (is_bad_symlink) {
1985 got_fileindex_entry_filetype_set(ie,
1986 GOT_FILEIDX_MODE_BAD_SYMLINK);
1989 got_object_blob_close(blob);
1990 done:
1991 free(ondisk_path);
1992 return err;
1995 static const struct got_error *
1996 remove_ondisk_file(const char *root_path, const char *path)
1998 const struct got_error *err = NULL;
1999 char *ondisk_path = NULL, *parent = NULL;
2001 if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
2002 return got_error_from_errno("asprintf");
2004 if (unlink(ondisk_path) == -1) {
2005 if (errno != ENOENT)
2006 err = got_error_from_errno2("unlink", ondisk_path);
2007 } else {
2008 size_t root_len = strlen(root_path);
2009 err = got_path_dirname(&parent, ondisk_path);
2010 if (err)
2011 goto done;
2012 while (got_path_cmp(parent, root_path,
2013 strlen(parent), root_len) != 0) {
2014 free(ondisk_path);
2015 ondisk_path = parent;
2016 parent = NULL;
2017 if (rmdir(ondisk_path) == -1) {
2018 if (errno != ENOTEMPTY)
2019 err = got_error_from_errno2("rmdir",
2020 ondisk_path);
2021 break;
2023 err = got_path_dirname(&parent, ondisk_path);
2024 if (err)
2025 break;
2028 done:
2029 free(ondisk_path);
2030 free(parent);
2031 return err;
2034 static const struct got_error *
2035 delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
2036 struct got_fileindex_entry *ie, struct got_repository *repo,
2037 got_worktree_checkout_cb progress_cb, void *progress_arg)
2039 const struct got_error *err = NULL;
2040 unsigned char status;
2041 struct stat sb;
2042 char *ondisk_path;
2044 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
2045 return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
2047 if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
2048 == -1)
2049 return got_error_from_errno("asprintf");
2051 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, repo);
2052 if (err)
2053 goto done;
2055 if (S_ISLNK(sb.st_mode) && status != GOT_STATUS_NO_CHANGE) {
2056 char ondisk_target[PATH_MAX];
2057 ssize_t ondisk_len = readlink(ondisk_path, ondisk_target,
2058 sizeof(ondisk_target));
2059 if (ondisk_len == -1) {
2060 err = got_error_from_errno2("readlink", ondisk_path);
2061 goto done;
2063 ondisk_target[ondisk_len] = '\0';
2064 err = install_symlink_conflict(NULL, worktree->base_commit_id,
2065 NULL, NULL, /* XXX pass common ancestor info? */
2066 ondisk_target, ondisk_path);
2067 if (err)
2068 goto done;
2069 err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
2070 ie->path);
2071 goto done;
2074 if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
2075 status == GOT_STATUS_ADD) {
2076 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
2077 if (err)
2078 goto done;
2080 * Preserve the working file and change the deleted blob's
2081 * entry into a schedule-add entry.
2083 err = got_fileindex_entry_update(ie, worktree->root_fd,
2084 ie->path, NULL, NULL, 0);
2085 } else {
2086 err = (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
2087 if (err)
2088 goto done;
2089 if (status == GOT_STATUS_NO_CHANGE) {
2090 err = remove_ondisk_file(worktree->root_path, ie->path);
2091 if (err)
2092 goto done;
2094 got_fileindex_entry_remove(fileindex, ie);
2096 done:
2097 free(ondisk_path);
2098 return err;
2101 struct diff_cb_arg {
2102 struct got_fileindex *fileindex;
2103 struct got_worktree *worktree;
2104 struct got_repository *repo;
2105 got_worktree_checkout_cb progress_cb;
2106 void *progress_arg;
2107 got_cancel_cb cancel_cb;
2108 void *cancel_arg;
2111 static const struct got_error *
2112 diff_old_new(void *arg, struct got_fileindex_entry *ie,
2113 struct got_tree_entry *te, const char *parent_path)
2115 struct diff_cb_arg *a = arg;
2117 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2118 return got_error(GOT_ERR_CANCELLED);
2120 return update_blob(a->worktree, a->fileindex, ie, te,
2121 ie->path, a->repo, a->progress_cb, a->progress_arg);
2124 static const struct got_error *
2125 diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
2127 struct diff_cb_arg *a = arg;
2129 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2130 return got_error(GOT_ERR_CANCELLED);
2132 return delete_blob(a->worktree, a->fileindex, ie,
2133 a->repo, a->progress_cb, a->progress_arg);
2136 static const struct got_error *
2137 diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
2139 struct diff_cb_arg *a = arg;
2140 const struct got_error *err;
2141 char *path;
2143 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2144 return got_error(GOT_ERR_CANCELLED);
2146 if (got_object_tree_entry_is_submodule(te))
2147 return NULL;
2149 if (asprintf(&path, "%s%s%s", parent_path,
2150 parent_path[0] ? "/" : "", te->name)
2151 == -1)
2152 return got_error_from_errno("asprintf");
2154 if (S_ISDIR(te->mode))
2155 err = add_dir_on_disk(a->worktree, path);
2156 else
2157 err = update_blob(a->worktree, a->fileindex, NULL, te, path,
2158 a->repo, a->progress_cb, a->progress_arg);
2160 free(path);
2161 return err;
2164 const struct got_error *
2165 got_worktree_get_uuid(char **uuidstr, struct got_worktree *worktree)
2167 uint32_t uuid_status;
2169 uuid_to_string(&worktree->uuid, uuidstr, &uuid_status);
2170 if (uuid_status != uuid_s_ok) {
2171 *uuidstr = NULL;
2172 return got_error_uuid(uuid_status, "uuid_to_string");
2175 return NULL;
2178 static const struct got_error *
2179 get_ref_name(char **refname, struct got_worktree *worktree, const char *prefix)
2181 const struct got_error *err = NULL;
2182 char *uuidstr = NULL;
2184 *refname = NULL;
2186 err = got_worktree_get_uuid(&uuidstr, worktree);
2187 if (err)
2188 return err;
2190 if (asprintf(refname, "%s-%s", prefix, uuidstr) == -1) {
2191 err = got_error_from_errno("asprintf");
2192 *refname = NULL;
2194 free(uuidstr);
2195 return err;
2198 const struct got_error *
2199 got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
2201 return get_ref_name(refname, worktree, GOT_WORKTREE_BASE_REF_PREFIX);
2204 static const struct got_error *
2205 get_rebase_tmp_ref_name(char **refname, struct got_worktree *worktree)
2207 return get_ref_name(refname, worktree,
2208 GOT_WORKTREE_REBASE_TMP_REF_PREFIX);
2211 static const struct got_error *
2212 get_newbase_symref_name(char **refname, struct got_worktree *worktree)
2214 return get_ref_name(refname, worktree, GOT_WORKTREE_NEWBASE_REF_PREFIX);
2217 static const struct got_error *
2218 get_rebase_branch_symref_name(char **refname, struct got_worktree *worktree)
2220 return get_ref_name(refname, worktree,
2221 GOT_WORKTREE_REBASE_BRANCH_REF_PREFIX);
2224 static const struct got_error *
2225 get_rebase_commit_ref_name(char **refname, struct got_worktree *worktree)
2227 return get_ref_name(refname, worktree,
2228 GOT_WORKTREE_REBASE_COMMIT_REF_PREFIX);
2231 static const struct got_error *
2232 get_histedit_tmp_ref_name(char **refname, struct got_worktree *worktree)
2234 return get_ref_name(refname, worktree,
2235 GOT_WORKTREE_HISTEDIT_TMP_REF_PREFIX);
2238 static const struct got_error *
2239 get_histedit_branch_symref_name(char **refname, struct got_worktree *worktree)
2241 return get_ref_name(refname, worktree,
2242 GOT_WORKTREE_HISTEDIT_BRANCH_REF_PREFIX);
2245 static const struct got_error *
2246 get_histedit_base_commit_ref_name(char **refname, struct got_worktree *worktree)
2248 return get_ref_name(refname, worktree,
2249 GOT_WORKTREE_HISTEDIT_BASE_COMMIT_REF_PREFIX);
2252 static const struct got_error *
2253 get_histedit_commit_ref_name(char **refname, struct got_worktree *worktree)
2255 return get_ref_name(refname, worktree,
2256 GOT_WORKTREE_HISTEDIT_COMMIT_REF_PREFIX);
2259 const struct got_error *
2260 got_worktree_get_histedit_script_path(char **path,
2261 struct got_worktree *worktree)
2263 if (asprintf(path, "%s/%s/%s", worktree->root_path,
2264 GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_HISTEDIT_SCRIPT) == -1) {
2265 *path = NULL;
2266 return got_error_from_errno("asprintf");
2268 return NULL;
2271 static const struct got_error *
2272 get_merge_branch_ref_name(char **refname, struct got_worktree *worktree)
2274 return get_ref_name(refname, worktree,
2275 GOT_WORKTREE_MERGE_BRANCH_REF_PREFIX);
2278 static const struct got_error *
2279 get_merge_commit_ref_name(char **refname, struct got_worktree *worktree)
2281 return get_ref_name(refname, worktree,
2282 GOT_WORKTREE_MERGE_COMMIT_REF_PREFIX);
2286 * Prevent Git's garbage collector from deleting our base commit by
2287 * setting a reference to our base commit's ID.
2289 static const struct got_error *
2290 ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
2292 const struct got_error *err = NULL;
2293 struct got_reference *ref = NULL;
2294 char *refname;
2296 err = got_worktree_get_base_ref_name(&refname, worktree);
2297 if (err)
2298 return err;
2300 err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
2301 if (err)
2302 goto done;
2304 err = got_ref_write(ref, repo);
2305 done:
2306 free(refname);
2307 if (ref)
2308 got_ref_close(ref);
2309 return err;
2312 static const struct got_error *
2313 get_fileindex_path(char **fileindex_path, struct got_worktree *worktree)
2315 const struct got_error *err = NULL;
2317 if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
2318 GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2319 err = got_error_from_errno("asprintf");
2320 *fileindex_path = NULL;
2322 return err;
2326 static const struct got_error *
2327 open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
2328 struct got_worktree *worktree)
2330 const struct got_error *err = NULL;
2331 FILE *index = NULL;
2333 *fileindex_path = NULL;
2334 *fileindex = got_fileindex_alloc();
2335 if (*fileindex == NULL)
2336 return got_error_from_errno("got_fileindex_alloc");
2338 err = get_fileindex_path(fileindex_path, worktree);
2339 if (err)
2340 goto done;
2342 index = fopen(*fileindex_path, "rbe");
2343 if (index == NULL) {
2344 if (errno != ENOENT)
2345 err = got_error_from_errno2("fopen", *fileindex_path);
2346 } else {
2347 err = got_fileindex_read(*fileindex, index);
2348 if (fclose(index) == EOF && err == NULL)
2349 err = got_error_from_errno("fclose");
2351 done:
2352 if (err) {
2353 free(*fileindex_path);
2354 *fileindex_path = NULL;
2355 got_fileindex_free(*fileindex);
2356 *fileindex = NULL;
2358 return err;
2361 struct bump_base_commit_id_arg {
2362 struct got_object_id *base_commit_id;
2363 const char *path;
2364 size_t path_len;
2365 const char *entry_name;
2366 got_worktree_checkout_cb progress_cb;
2367 void *progress_arg;
2370 /* Bump base commit ID of all files within an updated part of the work tree. */
2371 static const struct got_error *
2372 bump_base_commit_id(void *arg, struct got_fileindex_entry *ie)
2374 const struct got_error *err;
2375 struct bump_base_commit_id_arg *a = arg;
2377 if (a->entry_name) {
2378 if (strcmp(ie->path, a->path) != 0)
2379 return NULL;
2380 } else if (!got_path_is_child(ie->path, a->path, a->path_len))
2381 return NULL;
2383 if (got_fileindex_entry_was_skipped(ie))
2384 return NULL;
2386 if (memcmp(ie->commit_sha1, a->base_commit_id->sha1,
2387 SHA1_DIGEST_LENGTH) == 0)
2388 return NULL;
2390 if (a->progress_cb) {
2391 err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_BUMP_BASE,
2392 ie->path);
2393 if (err)
2394 return err;
2396 memcpy(ie->commit_sha1, a->base_commit_id->sha1, SHA1_DIGEST_LENGTH);
2397 return NULL;
2400 static const struct got_error *
2401 bump_base_commit_id_everywhere(struct got_worktree *worktree,
2402 struct got_fileindex *fileindex,
2403 got_worktree_checkout_cb progress_cb, void *progress_arg)
2405 struct bump_base_commit_id_arg bbc_arg;
2407 bbc_arg.base_commit_id = worktree->base_commit_id;
2408 bbc_arg.entry_name = NULL;
2409 bbc_arg.path = "";
2410 bbc_arg.path_len = 0;
2411 bbc_arg.progress_cb = progress_cb;
2412 bbc_arg.progress_arg = progress_arg;
2414 return got_fileindex_for_each_entry_safe(fileindex,
2415 bump_base_commit_id, &bbc_arg);
2418 static const struct got_error *
2419 sync_fileindex(struct got_fileindex *fileindex, const char *fileindex_path)
2421 const struct got_error *err = NULL;
2422 char *new_fileindex_path = NULL;
2423 FILE *new_index = NULL;
2424 struct timespec timeout;
2426 err = got_opentemp_named(&new_fileindex_path, &new_index,
2427 fileindex_path);
2428 if (err)
2429 goto done;
2431 err = got_fileindex_write(fileindex, new_index);
2432 if (err)
2433 goto done;
2435 if (rename(new_fileindex_path, fileindex_path) != 0) {
2436 err = got_error_from_errno3("rename", new_fileindex_path,
2437 fileindex_path);
2438 unlink(new_fileindex_path);
2442 * Sleep for a short amount of time to ensure that files modified after
2443 * this program exits have a different time stamp from the one which
2444 * was recorded in the file index.
2446 timeout.tv_sec = 0;
2447 timeout.tv_nsec = 1;
2448 nanosleep(&timeout, NULL);
2449 done:
2450 if (new_index)
2451 fclose(new_index);
2452 free(new_fileindex_path);
2453 return err;
2456 static const struct got_error *
2457 find_tree_entry_for_checkout(int *entry_type, char **tree_relpath,
2458 struct got_object_id **tree_id, const char *wt_relpath,
2459 struct got_worktree *worktree, struct got_repository *repo)
2461 const struct got_error *err = NULL;
2462 struct got_object_id *id = NULL;
2463 char *in_repo_path = NULL;
2464 int is_root_wt = got_path_is_root_dir(worktree->path_prefix);
2466 *entry_type = GOT_OBJ_TYPE_ANY;
2467 *tree_relpath = NULL;
2468 *tree_id = NULL;
2470 if (wt_relpath[0] == '\0') {
2471 /* Check out all files within the work tree. */
2472 *entry_type = GOT_OBJ_TYPE_TREE;
2473 *tree_relpath = strdup("");
2474 if (*tree_relpath == NULL) {
2475 err = got_error_from_errno("strdup");
2476 goto done;
2478 err = got_object_id_by_path(tree_id, repo,
2479 worktree->base_commit_id, worktree->path_prefix);
2480 if (err)
2481 goto done;
2482 return NULL;
2485 /* Check out a subset of files in the work tree. */
2487 if (asprintf(&in_repo_path, "%s%s%s", worktree->path_prefix,
2488 is_root_wt ? "" : "/", wt_relpath) == -1) {
2489 err = got_error_from_errno("asprintf");
2490 goto done;
2493 err = got_object_id_by_path(&id, repo, worktree->base_commit_id,
2494 in_repo_path);
2495 if (err)
2496 goto done;
2498 free(in_repo_path);
2499 in_repo_path = NULL;
2501 err = got_object_get_type(entry_type, repo, id);
2502 if (err)
2503 goto done;
2505 if (*entry_type == GOT_OBJ_TYPE_BLOB) {
2506 /* Check out a single file. */
2507 if (strchr(wt_relpath, '/') == NULL) {
2508 /* Check out a single file in work tree's root dir. */
2509 in_repo_path = strdup(worktree->path_prefix);
2510 if (in_repo_path == NULL) {
2511 err = got_error_from_errno("strdup");
2512 goto done;
2514 *tree_relpath = strdup("");
2515 if (*tree_relpath == NULL) {
2516 err = got_error_from_errno("strdup");
2517 goto done;
2519 } else {
2520 /* Check out a single file in a subdirectory. */
2521 err = got_path_dirname(tree_relpath, wt_relpath);
2522 if (err)
2523 return err;
2524 if (asprintf(&in_repo_path, "%s%s%s",
2525 worktree->path_prefix, is_root_wt ? "" : "/",
2526 *tree_relpath) == -1) {
2527 err = got_error_from_errno("asprintf");
2528 goto done;
2531 err = got_object_id_by_path(tree_id, repo,
2532 worktree->base_commit_id, in_repo_path);
2533 } else {
2534 /* Check out all files within a subdirectory. */
2535 *tree_id = got_object_id_dup(id);
2536 if (*tree_id == NULL) {
2537 err = got_error_from_errno("got_object_id_dup");
2538 goto done;
2540 *tree_relpath = strdup(wt_relpath);
2541 if (*tree_relpath == NULL) {
2542 err = got_error_from_errno("strdup");
2543 goto done;
2546 done:
2547 free(id);
2548 free(in_repo_path);
2549 if (err) {
2550 *entry_type = GOT_OBJ_TYPE_ANY;
2551 free(*tree_relpath);
2552 *tree_relpath = NULL;
2553 free(*tree_id);
2554 *tree_id = NULL;
2556 return err;
2559 static const struct got_error *
2560 checkout_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
2561 const char *relpath, struct got_object_id *tree_id, const char *entry_name,
2562 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
2563 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
2565 const struct got_error *err = NULL;
2566 struct got_commit_object *commit = NULL;
2567 struct got_tree_object *tree = NULL;
2568 struct got_fileindex_diff_tree_cb diff_cb;
2569 struct diff_cb_arg arg;
2571 err = ref_base_commit(worktree, repo);
2572 if (err) {
2573 if (!(err->code == GOT_ERR_ERRNO &&
2574 (errno == EACCES || errno == EROFS)))
2575 goto done;
2576 err = (*progress_cb)(progress_arg,
2577 GOT_STATUS_BASE_REF_ERR, worktree->root_path);
2578 if (err)
2579 return err;
2582 err = got_object_open_as_commit(&commit, repo,
2583 worktree->base_commit_id);
2584 if (err)
2585 goto done;
2587 err = got_object_open_as_tree(&tree, repo, tree_id);
2588 if (err)
2589 goto done;
2591 if (entry_name &&
2592 got_object_tree_find_entry(tree, entry_name) == NULL) {
2593 err = got_error_path(entry_name, GOT_ERR_NO_TREE_ENTRY);
2594 goto done;
2597 diff_cb.diff_old_new = diff_old_new;
2598 diff_cb.diff_old = diff_old;
2599 diff_cb.diff_new = diff_new;
2600 arg.fileindex = fileindex;
2601 arg.worktree = worktree;
2602 arg.repo = repo;
2603 arg.progress_cb = progress_cb;
2604 arg.progress_arg = progress_arg;
2605 arg.cancel_cb = cancel_cb;
2606 arg.cancel_arg = cancel_arg;
2607 err = got_fileindex_diff_tree(fileindex, tree, relpath,
2608 entry_name, repo, &diff_cb, &arg);
2609 done:
2610 if (tree)
2611 got_object_tree_close(tree);
2612 if (commit)
2613 got_object_commit_close(commit);
2614 return err;
2617 const struct got_error *
2618 got_worktree_checkout_files(struct got_worktree *worktree,
2619 struct got_pathlist_head *paths, struct got_repository *repo,
2620 got_worktree_checkout_cb progress_cb, void *progress_arg,
2621 got_cancel_cb cancel_cb, void *cancel_arg)
2623 const struct got_error *err = NULL, *sync_err, *unlockerr;
2624 struct got_commit_object *commit = NULL;
2625 struct got_tree_object *tree = NULL;
2626 struct got_fileindex *fileindex = NULL;
2627 char *fileindex_path = NULL;
2628 struct got_pathlist_entry *pe;
2629 struct tree_path_data {
2630 STAILQ_ENTRY(tree_path_data) entry;
2631 struct got_object_id *tree_id;
2632 int entry_type;
2633 char *relpath;
2634 char *entry_name;
2635 } *tpd = NULL;
2636 STAILQ_HEAD(tree_paths, tree_path_data) tree_paths;
2638 STAILQ_INIT(&tree_paths);
2640 err = lock_worktree(worktree, LOCK_EX);
2641 if (err)
2642 return err;
2644 /* Map all specified paths to in-repository trees. */
2645 TAILQ_FOREACH(pe, paths, entry) {
2646 tpd = malloc(sizeof(*tpd));
2647 if (tpd == NULL) {
2648 err = got_error_from_errno("malloc");
2649 goto done;
2652 err = find_tree_entry_for_checkout(&tpd->entry_type,
2653 &tpd->relpath, &tpd->tree_id, pe->path, worktree, repo);
2654 if (err) {
2655 free(tpd);
2656 goto done;
2659 if (tpd->entry_type == GOT_OBJ_TYPE_BLOB) {
2660 err = got_path_basename(&tpd->entry_name, pe->path);
2661 if (err) {
2662 free(tpd->relpath);
2663 free(tpd->tree_id);
2664 free(tpd);
2665 goto done;
2667 } else
2668 tpd->entry_name = NULL;
2670 STAILQ_INSERT_TAIL(&tree_paths, tpd, entry);
2674 * Read the file index.
2675 * Checking out files is supposed to be an idempotent operation.
2676 * If the on-disk file index is incomplete we will try to complete it.
2678 err = open_fileindex(&fileindex, &fileindex_path, worktree);
2679 if (err)
2680 goto done;
2682 tpd = STAILQ_FIRST(&tree_paths);
2683 TAILQ_FOREACH(pe, paths, entry) {
2684 struct bump_base_commit_id_arg bbc_arg;
2686 err = checkout_files(worktree, fileindex, tpd->relpath,
2687 tpd->tree_id, tpd->entry_name, repo,
2688 progress_cb, progress_arg, cancel_cb, cancel_arg);
2689 if (err)
2690 break;
2692 bbc_arg.base_commit_id = worktree->base_commit_id;
2693 bbc_arg.entry_name = tpd->entry_name;
2694 bbc_arg.path = pe->path;
2695 bbc_arg.path_len = pe->path_len;
2696 bbc_arg.progress_cb = progress_cb;
2697 bbc_arg.progress_arg = progress_arg;
2698 err = got_fileindex_for_each_entry_safe(fileindex,
2699 bump_base_commit_id, &bbc_arg);
2700 if (err)
2701 break;
2703 tpd = STAILQ_NEXT(tpd, entry);
2705 sync_err = sync_fileindex(fileindex, fileindex_path);
2706 if (sync_err && err == NULL)
2707 err = sync_err;
2708 done:
2709 free(fileindex_path);
2710 if (tree)
2711 got_object_tree_close(tree);
2712 if (commit)
2713 got_object_commit_close(commit);
2714 if (fileindex)
2715 got_fileindex_free(fileindex);
2716 while (!STAILQ_EMPTY(&tree_paths)) {
2717 tpd = STAILQ_FIRST(&tree_paths);
2718 STAILQ_REMOVE_HEAD(&tree_paths, entry);
2719 free(tpd->relpath);
2720 free(tpd->tree_id);
2721 free(tpd);
2723 unlockerr = lock_worktree(worktree, LOCK_SH);
2724 if (unlockerr && err == NULL)
2725 err = unlockerr;
2726 return err;
2729 struct merge_file_cb_arg {
2730 struct got_worktree *worktree;
2731 struct got_fileindex *fileindex;
2732 got_worktree_checkout_cb progress_cb;
2733 void *progress_arg;
2734 got_cancel_cb cancel_cb;
2735 void *cancel_arg;
2736 const char *label_orig;
2737 struct got_object_id *commit_id2;
2738 int allow_bad_symlinks;
2741 static const struct got_error *
2742 merge_file_cb(void *arg, struct got_blob_object *blob1,
2743 struct got_blob_object *blob2, struct got_object_id *id1,
2744 struct got_object_id *id2, const char *path1, const char *path2,
2745 mode_t mode1, mode_t mode2, struct got_repository *repo)
2747 static const struct got_error *err = NULL;
2748 struct merge_file_cb_arg *a = arg;
2749 struct got_fileindex_entry *ie;
2750 char *ondisk_path = NULL;
2751 struct stat sb;
2752 unsigned char status;
2753 int local_changes_subsumed;
2754 FILE *f_orig = NULL, *f_deriv = NULL, *f_deriv2 = NULL;
2755 char *id_str = NULL, *label_deriv2 = NULL;
2757 if (blob1 && blob2) {
2758 ie = got_fileindex_entry_get(a->fileindex, path2,
2759 strlen(path2));
2760 if (ie == NULL)
2761 return (*a->progress_cb)(a->progress_arg,
2762 GOT_STATUS_MISSING, path2);
2764 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2765 path2) == -1)
2766 return got_error_from_errno("asprintf");
2768 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2769 repo);
2770 if (err)
2771 goto done;
2773 if (status == GOT_STATUS_DELETE) {
2774 err = (*a->progress_cb)(a->progress_arg,
2775 GOT_STATUS_MERGE, path2);
2776 goto done;
2778 if (status != GOT_STATUS_NO_CHANGE &&
2779 status != GOT_STATUS_MODIFY &&
2780 status != GOT_STATUS_CONFLICT &&
2781 status != GOT_STATUS_ADD) {
2782 err = (*a->progress_cb)(a->progress_arg, status, path2);
2783 goto done;
2786 if (S_ISLNK(mode1) && S_ISLNK(mode2)) {
2787 char *link_target2;
2788 err = got_object_blob_read_to_str(&link_target2, blob2);
2789 if (err)
2790 goto done;
2791 err = merge_symlink(a->worktree, blob1, ondisk_path,
2792 path2, a->label_orig, link_target2, a->commit_id2,
2793 repo, a->progress_cb, a->progress_arg);
2794 free(link_target2);
2795 } else {
2796 int fd;
2798 f_orig = got_opentemp();
2799 if (f_orig == NULL) {
2800 err = got_error_from_errno("got_opentemp");
2801 goto done;
2803 err = got_object_blob_dump_to_file(NULL, NULL, NULL,
2804 f_orig, blob1);
2805 if (err)
2806 goto done;
2808 f_deriv2 = got_opentemp();
2809 if (f_deriv2 == NULL)
2810 goto done;
2811 err = got_object_blob_dump_to_file(NULL, NULL, NULL,
2812 f_deriv2, blob2);
2813 if (err)
2814 goto done;
2816 fd = open(ondisk_path,
2817 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
2818 if (fd == -1) {
2819 err = got_error_from_errno2("open",
2820 ondisk_path);
2821 goto done;
2823 f_deriv = fdopen(fd, "r");
2824 if (f_deriv == NULL) {
2825 err = got_error_from_errno2("fdopen",
2826 ondisk_path);
2827 close(fd);
2828 goto done;
2830 err = got_object_id_str(&id_str, a->commit_id2);
2831 if (err)
2832 goto done;
2833 if (asprintf(&label_deriv2, "%s: commit %s",
2834 GOT_MERGE_LABEL_MERGED, id_str) == -1) {
2835 err = got_error_from_errno("asprintf");
2836 goto done;
2838 err = merge_file(&local_changes_subsumed, a->worktree,
2839 f_orig, f_deriv, f_deriv2, ondisk_path, path2,
2840 sb.st_mode, a->label_orig, NULL, label_deriv2,
2841 GOT_DIFF_ALGORITHM_PATIENCE, repo,
2842 a->progress_cb, a->progress_arg);
2844 } else if (blob1) {
2845 ie = got_fileindex_entry_get(a->fileindex, path1,
2846 strlen(path1));
2847 if (ie == NULL)
2848 return (*a->progress_cb)(a->progress_arg,
2849 GOT_STATUS_MISSING, path1);
2851 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2852 path1) == -1)
2853 return got_error_from_errno("asprintf");
2855 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2856 repo);
2857 if (err)
2858 goto done;
2860 switch (status) {
2861 case GOT_STATUS_NO_CHANGE:
2862 err = (*a->progress_cb)(a->progress_arg,
2863 GOT_STATUS_DELETE, path1);
2864 if (err)
2865 goto done;
2866 err = remove_ondisk_file(a->worktree->root_path, path1);
2867 if (err)
2868 goto done;
2869 if (ie)
2870 got_fileindex_entry_mark_deleted_from_disk(ie);
2871 break;
2872 case GOT_STATUS_DELETE:
2873 case GOT_STATUS_MISSING:
2874 err = (*a->progress_cb)(a->progress_arg,
2875 GOT_STATUS_DELETE, path1);
2876 if (err)
2877 goto done;
2878 if (ie)
2879 got_fileindex_entry_mark_deleted_from_disk(ie);
2880 break;
2881 case GOT_STATUS_ADD: {
2882 struct got_object_id *id;
2883 FILE *blob1_f;
2884 off_t blob1_size;
2886 * Delete the added file only if its content already
2887 * exists in the repository.
2889 err = got_object_blob_file_create(&id, &blob1_f,
2890 &blob1_size, path1);
2891 if (err)
2892 goto done;
2893 if (got_object_id_cmp(id, id1) == 0) {
2894 err = (*a->progress_cb)(a->progress_arg,
2895 GOT_STATUS_DELETE, path1);
2896 if (err)
2897 goto done;
2898 err = remove_ondisk_file(a->worktree->root_path,
2899 path1);
2900 if (err)
2901 goto done;
2902 if (ie)
2903 got_fileindex_entry_remove(a->fileindex,
2904 ie);
2905 } else {
2906 err = (*a->progress_cb)(a->progress_arg,
2907 GOT_STATUS_CANNOT_DELETE, path1);
2909 if (fclose(blob1_f) == EOF && err == NULL)
2910 err = got_error_from_errno("fclose");
2911 free(id);
2912 if (err)
2913 goto done;
2914 break;
2916 case GOT_STATUS_MODIFY:
2917 case GOT_STATUS_CONFLICT:
2918 err = (*a->progress_cb)(a->progress_arg,
2919 GOT_STATUS_CANNOT_DELETE, path1);
2920 if (err)
2921 goto done;
2922 break;
2923 case GOT_STATUS_OBSTRUCTED:
2924 err = (*a->progress_cb)(a->progress_arg, status, path1);
2925 if (err)
2926 goto done;
2927 break;
2928 default:
2929 break;
2931 } else if (blob2) {
2932 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2933 path2) == -1)
2934 return got_error_from_errno("asprintf");
2935 ie = got_fileindex_entry_get(a->fileindex, path2,
2936 strlen(path2));
2937 if (ie) {
2938 err = get_file_status(&status, &sb, ie, ondisk_path,
2939 -1, NULL, repo);
2940 if (err)
2941 goto done;
2942 if (status != GOT_STATUS_NO_CHANGE &&
2943 status != GOT_STATUS_MODIFY &&
2944 status != GOT_STATUS_CONFLICT &&
2945 status != GOT_STATUS_ADD) {
2946 err = (*a->progress_cb)(a->progress_arg,
2947 status, path2);
2948 goto done;
2950 if (S_ISLNK(mode2) && S_ISLNK(sb.st_mode)) {
2951 char *link_target2;
2952 err = got_object_blob_read_to_str(&link_target2,
2953 blob2);
2954 if (err)
2955 goto done;
2956 err = merge_symlink(a->worktree, NULL,
2957 ondisk_path, path2, a->label_orig,
2958 link_target2, a->commit_id2, repo,
2959 a->progress_cb, a->progress_arg);
2960 free(link_target2);
2961 } else if (S_ISREG(sb.st_mode)) {
2962 err = merge_blob(&local_changes_subsumed,
2963 a->worktree, NULL, ondisk_path, path2,
2964 sb.st_mode, a->label_orig, blob2,
2965 a->commit_id2, repo, a->progress_cb,
2966 a->progress_arg);
2967 } else {
2968 err = got_error_path(ondisk_path,
2969 GOT_ERR_FILE_OBSTRUCTED);
2971 if (err)
2972 goto done;
2973 if (status == GOT_STATUS_DELETE) {
2974 err = got_fileindex_entry_update(ie,
2975 a->worktree->root_fd, path2, blob2->id.sha1,
2976 a->worktree->base_commit_id->sha1, 0);
2977 if (err)
2978 goto done;
2980 } else {
2981 int is_bad_symlink = 0;
2982 sb.st_mode = GOT_DEFAULT_FILE_MODE;
2983 if (S_ISLNK(mode2)) {
2984 err = install_symlink(&is_bad_symlink,
2985 a->worktree, ondisk_path, path2, blob2, 0,
2986 0, 1, a->allow_bad_symlinks, repo,
2987 a->progress_cb, a->progress_arg);
2988 } else {
2989 err = install_blob(a->worktree, ondisk_path, path2,
2990 mode2, sb.st_mode, blob2, 0, 0, 0, 1, repo,
2991 a->progress_cb, a->progress_arg);
2993 if (err)
2994 goto done;
2995 err = got_fileindex_entry_alloc(&ie, path2);
2996 if (err)
2997 goto done;
2998 err = got_fileindex_entry_update(ie,
2999 a->worktree->root_fd, path2, NULL, NULL, 1);
3000 if (err) {
3001 got_fileindex_entry_free(ie);
3002 goto done;
3004 err = got_fileindex_entry_add(a->fileindex, ie);
3005 if (err) {
3006 got_fileindex_entry_free(ie);
3007 goto done;
3009 if (is_bad_symlink) {
3010 got_fileindex_entry_filetype_set(ie,
3011 GOT_FILEIDX_MODE_BAD_SYMLINK);
3015 done:
3016 if (f_orig && fclose(f_orig) == EOF && err == NULL)
3017 err = got_error_from_errno("fclose");
3018 if (f_deriv && fclose(f_deriv) == EOF && err == NULL)
3019 err = got_error_from_errno("fclose");
3020 if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
3021 err = got_error_from_errno("fclose");
3022 free(id_str);
3023 free(label_deriv2);
3024 free(ondisk_path);
3025 return err;
3028 static const struct got_error *
3029 check_mixed_commits(void *arg, struct got_fileindex_entry *ie)
3031 struct got_worktree *worktree = arg;
3033 /* Reject merges into a work tree with mixed base commits. */
3034 if (got_fileindex_entry_has_commit(ie) &&
3035 memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
3036 SHA1_DIGEST_LENGTH) != 0)
3037 return got_error(GOT_ERR_MIXED_COMMITS);
3039 return NULL;
3042 struct check_merge_conflicts_arg {
3043 struct got_worktree *worktree;
3044 struct got_fileindex *fileindex;
3045 struct got_repository *repo;
3048 static const struct got_error *
3049 check_merge_conflicts(void *arg, struct got_blob_object *blob1,
3050 struct got_blob_object *blob2, struct got_object_id *id1,
3051 struct got_object_id *id2, const char *path1, const char *path2,
3052 mode_t mode1, mode_t mode2, struct got_repository *repo)
3054 const struct got_error *err = NULL;
3055 struct check_merge_conflicts_arg *a = arg;
3056 unsigned char status;
3057 struct stat sb;
3058 struct got_fileindex_entry *ie;
3059 const char *path = path2 ? path2 : path1;
3060 struct got_object_id *id = id2 ? id2 : id1;
3061 char *ondisk_path;
3063 if (id == NULL)
3064 return NULL;
3066 ie = got_fileindex_entry_get(a->fileindex, path, strlen(path));
3067 if (ie == NULL)
3068 return NULL;
3070 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
3071 == -1)
3072 return got_error_from_errno("asprintf");
3074 /* Reject merges into a work tree with conflicted files. */
3075 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
3076 free(ondisk_path);
3077 if (err)
3078 return err;
3079 if (status == GOT_STATUS_CONFLICT)
3080 return got_error(GOT_ERR_CONFLICTS);
3082 return NULL;
3085 static const struct got_error *
3086 merge_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
3087 const char *fileindex_path, struct got_object_id *commit_id1,
3088 struct got_object_id *commit_id2, struct got_repository *repo,
3089 got_worktree_checkout_cb progress_cb, void *progress_arg,
3090 got_cancel_cb cancel_cb, void *cancel_arg)
3092 const struct got_error *err = NULL, *sync_err;
3093 struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
3094 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3095 struct check_merge_conflicts_arg cmc_arg;
3096 struct merge_file_cb_arg arg;
3097 char *label_orig = NULL;
3099 if (commit_id1) {
3100 err = got_object_id_by_path(&tree_id1, repo, commit_id1,
3101 worktree->path_prefix);
3102 if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
3103 goto done;
3105 if (tree_id1) {
3106 char *id_str;
3108 err = got_object_open_as_tree(&tree1, repo, tree_id1);
3109 if (err)
3110 goto done;
3112 err = got_object_id_str(&id_str, commit_id1);
3113 if (err)
3114 goto done;
3116 if (asprintf(&label_orig, "%s: commit %s",
3117 GOT_MERGE_LABEL_BASE, id_str) == -1) {
3118 err = got_error_from_errno("asprintf");
3119 free(id_str);
3120 goto done;
3122 free(id_str);
3125 err = got_object_id_by_path(&tree_id2, repo, commit_id2,
3126 worktree->path_prefix);
3127 if (err)
3128 goto done;
3130 err = got_object_open_as_tree(&tree2, repo, tree_id2);
3131 if (err)
3132 goto done;
3134 cmc_arg.worktree = worktree;
3135 cmc_arg.fileindex = fileindex;
3136 cmc_arg.repo = repo;
3137 err = got_diff_tree(tree1, tree2, "", "", repo,
3138 check_merge_conflicts, &cmc_arg, 0);
3139 if (err)
3140 goto done;
3142 arg.worktree = worktree;
3143 arg.fileindex = fileindex;
3144 arg.progress_cb = progress_cb;
3145 arg.progress_arg = progress_arg;
3146 arg.cancel_cb = cancel_cb;
3147 arg.cancel_arg = cancel_arg;
3148 arg.label_orig = label_orig;
3149 arg.commit_id2 = commit_id2;
3150 arg.allow_bad_symlinks = 1; /* preserve bad symlinks across merges */
3151 err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg, 1);
3152 sync_err = sync_fileindex(fileindex, fileindex_path);
3153 if (sync_err && err == NULL)
3154 err = sync_err;
3155 done:
3156 if (tree1)
3157 got_object_tree_close(tree1);
3158 if (tree2)
3159 got_object_tree_close(tree2);
3160 free(label_orig);
3161 return err;
3164 const struct got_error *
3165 got_worktree_merge_files(struct got_worktree *worktree,
3166 struct got_object_id *commit_id1, struct got_object_id *commit_id2,
3167 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
3168 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
3170 const struct got_error *err, *unlockerr;
3171 char *fileindex_path = NULL;
3172 struct got_fileindex *fileindex = NULL;
3174 err = lock_worktree(worktree, LOCK_EX);
3175 if (err)
3176 return err;
3178 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3179 if (err)
3180 goto done;
3182 err = got_fileindex_for_each_entry_safe(fileindex, check_mixed_commits,
3183 worktree);
3184 if (err)
3185 goto done;
3187 err = merge_files(worktree, fileindex, fileindex_path, commit_id1,
3188 commit_id2, repo, progress_cb, progress_arg,
3189 cancel_cb, cancel_arg);
3190 done:
3191 if (fileindex)
3192 got_fileindex_free(fileindex);
3193 free(fileindex_path);
3194 unlockerr = lock_worktree(worktree, LOCK_SH);
3195 if (unlockerr && err == NULL)
3196 err = unlockerr;
3197 return err;
3200 struct diff_dir_cb_arg {
3201 struct got_fileindex *fileindex;
3202 struct got_worktree *worktree;
3203 const char *status_path;
3204 size_t status_path_len;
3205 struct got_repository *repo;
3206 got_worktree_status_cb status_cb;
3207 void *status_arg;
3208 got_cancel_cb cancel_cb;
3209 void *cancel_arg;
3210 /* A pathlist containing per-directory pathlists of ignore patterns. */
3211 struct got_pathlist_head *ignores;
3212 int report_unchanged;
3213 int no_ignores;
3216 static const struct got_error *
3217 report_file_status(struct got_fileindex_entry *ie, const char *abspath,
3218 int dirfd, const char *de_name,
3219 got_worktree_status_cb status_cb, void *status_arg,
3220 struct got_repository *repo, int report_unchanged)
3222 const struct got_error *err = NULL;
3223 unsigned char status = GOT_STATUS_NO_CHANGE;
3224 unsigned char staged_status = get_staged_status(ie);
3225 struct stat sb;
3226 struct got_object_id blob_id, commit_id, staged_blob_id;
3227 struct got_object_id *blob_idp = NULL, *commit_idp = NULL;
3228 struct got_object_id *staged_blob_idp = NULL;
3230 err = get_file_status(&status, &sb, ie, abspath, dirfd, de_name, repo);
3231 if (err)
3232 return err;
3234 if (status == GOT_STATUS_NO_CHANGE &&
3235 staged_status == GOT_STATUS_NO_CHANGE && !report_unchanged)
3236 return NULL;
3238 if (got_fileindex_entry_has_blob(ie)) {
3239 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3240 blob_idp = &blob_id;
3242 if (got_fileindex_entry_has_commit(ie)) {
3243 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3244 commit_idp = &commit_id;
3246 if (staged_status == GOT_STATUS_ADD ||
3247 staged_status == GOT_STATUS_MODIFY) {
3248 memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
3249 SHA1_DIGEST_LENGTH);
3250 staged_blob_idp = &staged_blob_id;
3253 return (*status_cb)(status_arg, status, staged_status,
3254 ie->path, blob_idp, staged_blob_idp, commit_idp, dirfd, de_name);
3257 static const struct got_error *
3258 status_old_new(void *arg, struct got_fileindex_entry *ie,
3259 struct dirent *de, const char *parent_path, int dirfd)
3261 const struct got_error *err = NULL;
3262 struct diff_dir_cb_arg *a = arg;
3263 char *abspath;
3265 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3266 return got_error(GOT_ERR_CANCELLED);
3268 if (got_path_cmp(parent_path, a->status_path,
3269 strlen(parent_path), a->status_path_len) != 0 &&
3270 !got_path_is_child(parent_path, a->status_path, a->status_path_len))
3271 return NULL;
3273 if (parent_path[0]) {
3274 if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
3275 parent_path, de->d_name) == -1)
3276 return got_error_from_errno("asprintf");
3277 } else {
3278 if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
3279 de->d_name) == -1)
3280 return got_error_from_errno("asprintf");
3283 err = report_file_status(ie, abspath, dirfd, de->d_name,
3284 a->status_cb, a->status_arg, a->repo, a->report_unchanged);
3285 free(abspath);
3286 return err;
3289 static const struct got_error *
3290 status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
3292 struct diff_dir_cb_arg *a = arg;
3293 struct got_object_id blob_id, commit_id;
3294 unsigned char status;
3296 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3297 return got_error(GOT_ERR_CANCELLED);
3299 if (!got_path_is_child(ie->path, a->status_path, a->status_path_len))
3300 return NULL;
3302 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3303 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3304 if (got_fileindex_entry_has_file_on_disk(ie))
3305 status = GOT_STATUS_MISSING;
3306 else
3307 status = GOT_STATUS_DELETE;
3308 return (*a->status_cb)(a->status_arg, status, get_staged_status(ie),
3309 ie->path, &blob_id, NULL, &commit_id, -1, NULL);
3312 void
3313 free_ignorelist(struct got_pathlist_head *ignorelist)
3315 struct got_pathlist_entry *pe;
3317 TAILQ_FOREACH(pe, ignorelist, entry)
3318 free((char *)pe->path);
3319 got_pathlist_free(ignorelist);
3322 void
3323 free_ignores(struct got_pathlist_head *ignores)
3325 struct got_pathlist_entry *pe;
3327 TAILQ_FOREACH(pe, ignores, entry) {
3328 struct got_pathlist_head *ignorelist = pe->data;
3329 free_ignorelist(ignorelist);
3330 free((char *)pe->path);
3332 got_pathlist_free(ignores);
3335 static const struct got_error *
3336 read_ignores(struct got_pathlist_head *ignores, const char *path, FILE *f)
3338 const struct got_error *err = NULL;
3339 struct got_pathlist_entry *pe = NULL;
3340 struct got_pathlist_head *ignorelist;
3341 char *line = NULL, *pattern, *dirpath = NULL;
3342 size_t linesize = 0;
3343 ssize_t linelen;
3345 ignorelist = calloc(1, sizeof(*ignorelist));
3346 if (ignorelist == NULL)
3347 return got_error_from_errno("calloc");
3348 TAILQ_INIT(ignorelist);
3350 while ((linelen = getline(&line, &linesize, f)) != -1) {
3351 if (linelen > 0 && line[linelen - 1] == '\n')
3352 line[linelen - 1] = '\0';
3354 /* Git's ignores may contain comments. */
3355 if (line[0] == '#')
3356 continue;
3358 /* Git's negated patterns are not (yet?) supported. */
3359 if (line[0] == '!')
3360 continue;
3362 if (asprintf(&pattern, "%s%s%s", path, path[0] ? "/" : "",
3363 line) == -1) {
3364 err = got_error_from_errno("asprintf");
3365 goto done;
3367 err = got_pathlist_insert(NULL, ignorelist, pattern, NULL);
3368 if (err)
3369 goto done;
3371 if (ferror(f)) {
3372 err = got_error_from_errno("getline");
3373 goto done;
3376 dirpath = strdup(path);
3377 if (dirpath == NULL) {
3378 err = got_error_from_errno("strdup");
3379 goto done;
3381 err = got_pathlist_insert(&pe, ignores, dirpath, ignorelist);
3382 done:
3383 free(line);
3384 if (err || pe == NULL) {
3385 free(dirpath);
3386 free_ignorelist(ignorelist);
3388 return err;
3391 int
3392 match_ignores(struct got_pathlist_head *ignores, const char *path)
3394 struct got_pathlist_entry *pe;
3396 /* Handle patterns which match in all directories. */
3397 TAILQ_FOREACH(pe, ignores, entry) {
3398 struct got_pathlist_head *ignorelist = pe->data;
3399 struct got_pathlist_entry *pi;
3401 TAILQ_FOREACH(pi, ignorelist, entry) {
3402 const char *p, *pattern = pi->path;
3404 if (strncmp(pattern, "**/", 3) != 0)
3405 continue;
3406 pattern += 3;
3407 p = path;
3408 while (*p) {
3409 if (fnmatch(pattern, p,
3410 FNM_PATHNAME | FNM_LEADING_DIR)) {
3411 /* Retry in next directory. */
3412 while (*p && *p != '/')
3413 p++;
3414 while (*p == '/')
3415 p++;
3416 continue;
3418 return 1;
3424 * The ignores pathlist contains ignore lists from children before
3425 * parents, so we can find the most specific ignorelist by walking
3426 * ignores backwards.
3428 pe = TAILQ_LAST(ignores, got_pathlist_head);
3429 while (pe) {
3430 if (got_path_is_child(path, pe->path, pe->path_len)) {
3431 struct got_pathlist_head *ignorelist = pe->data;
3432 struct got_pathlist_entry *pi;
3433 TAILQ_FOREACH(pi, ignorelist, entry) {
3434 const char *pattern = pi->path;
3435 int flags = FNM_LEADING_DIR;
3436 if (strstr(pattern, "/**/") == NULL)
3437 flags |= FNM_PATHNAME;
3438 if (fnmatch(pattern, path, flags))
3439 continue;
3440 return 1;
3443 pe = TAILQ_PREV(pe, got_pathlist_head, entry);
3446 return 0;
3449 static const struct got_error *
3450 add_ignores(struct got_pathlist_head *ignores, const char *root_path,
3451 const char *path, int dirfd, const char *ignores_filename)
3453 const struct got_error *err = NULL;
3454 char *ignorespath;
3455 int fd = -1;
3456 FILE *ignoresfile = NULL;
3458 if (asprintf(&ignorespath, "%s/%s%s%s", root_path, path,
3459 path[0] ? "/" : "", ignores_filename) == -1)
3460 return got_error_from_errno("asprintf");
3462 if (dirfd != -1) {
3463 fd = openat(dirfd, ignores_filename,
3464 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
3465 if (fd == -1) {
3466 if (errno != ENOENT && errno != EACCES)
3467 err = got_error_from_errno2("openat",
3468 ignorespath);
3469 } else {
3470 ignoresfile = fdopen(fd, "r");
3471 if (ignoresfile == NULL)
3472 err = got_error_from_errno2("fdopen",
3473 ignorespath);
3474 else {
3475 fd = -1;
3476 err = read_ignores(ignores, path, ignoresfile);
3479 } else {
3480 ignoresfile = fopen(ignorespath, "re");
3481 if (ignoresfile == NULL) {
3482 if (errno != ENOENT && errno != EACCES)
3483 err = got_error_from_errno2("fopen",
3484 ignorespath);
3485 } else
3486 err = read_ignores(ignores, path, ignoresfile);
3489 if (ignoresfile && fclose(ignoresfile) == EOF && err == NULL)
3490 err = got_error_from_errno2("fclose", path);
3491 if (fd != -1 && close(fd) == -1 && err == NULL)
3492 err = got_error_from_errno2("close", path);
3493 free(ignorespath);
3494 return err;
3497 static const struct got_error *
3498 status_new(int *ignore, void *arg, struct dirent *de, const char *parent_path,
3499 int dirfd)
3501 const struct got_error *err = NULL;
3502 struct diff_dir_cb_arg *a = arg;
3503 char *path = NULL;
3505 if (ignore != NULL)
3506 *ignore = 0;
3508 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3509 return got_error(GOT_ERR_CANCELLED);
3511 if (parent_path[0]) {
3512 if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
3513 return got_error_from_errno("asprintf");
3514 } else {
3515 path = de->d_name;
3518 if (de->d_type == DT_DIR) {
3519 if (!a->no_ignores && ignore != NULL &&
3520 match_ignores(a->ignores, path))
3521 *ignore = 1;
3522 } else if (!match_ignores(a->ignores, path) &&
3523 got_path_is_child(path, a->status_path, a->status_path_len))
3524 err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED,
3525 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3526 if (parent_path[0])
3527 free(path);
3528 return err;
3531 static const struct got_error *
3532 status_traverse(void *arg, const char *path, int dirfd)
3534 const struct got_error *err = NULL;
3535 struct diff_dir_cb_arg *a = arg;
3537 if (a->no_ignores)
3538 return NULL;
3540 err = add_ignores(a->ignores, a->worktree->root_path,
3541 path, dirfd, ".cvsignore");
3542 if (err)
3543 return err;
3545 err = add_ignores(a->ignores, a->worktree->root_path, path,
3546 dirfd, ".gitignore");
3548 return err;
3551 static const struct got_error *
3552 report_single_file_status(const char *path, const char *ondisk_path,
3553 struct got_fileindex *fileindex, got_worktree_status_cb status_cb,
3554 void *status_arg, struct got_repository *repo, int report_unchanged,
3555 struct got_pathlist_head *ignores, int no_ignores)
3557 struct got_fileindex_entry *ie;
3558 struct stat sb;
3560 ie = got_fileindex_entry_get(fileindex, path, strlen(path));
3561 if (ie)
3562 return report_file_status(ie, ondisk_path, -1, NULL,
3563 status_cb, status_arg, repo, report_unchanged);
3565 if (lstat(ondisk_path, &sb) == -1) {
3566 if (errno != ENOENT)
3567 return got_error_from_errno2("lstat", ondisk_path);
3568 return (*status_cb)(status_arg, GOT_STATUS_NONEXISTENT,
3569 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3572 if (!no_ignores && match_ignores(ignores, path))
3573 return NULL;
3575 if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode))
3576 return (*status_cb)(status_arg, GOT_STATUS_UNVERSIONED,
3577 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3579 return NULL;
3582 static const struct got_error *
3583 add_ignores_from_parent_paths(struct got_pathlist_head *ignores,
3584 const char *root_path, const char *path)
3586 const struct got_error *err;
3587 char *parent_path, *next_parent_path = NULL;
3589 err = add_ignores(ignores, root_path, "", -1,
3590 ".cvsignore");
3591 if (err)
3592 return err;
3594 err = add_ignores(ignores, root_path, "", -1,
3595 ".gitignore");
3596 if (err)
3597 return err;
3599 err = got_path_dirname(&parent_path, path);
3600 if (err) {
3601 if (err->code == GOT_ERR_BAD_PATH)
3602 return NULL; /* cannot traverse parent */
3603 return err;
3605 for (;;) {
3606 err = add_ignores(ignores, root_path, parent_path, -1,
3607 ".cvsignore");
3608 if (err)
3609 break;
3610 err = add_ignores(ignores, root_path, parent_path, -1,
3611 ".gitignore");
3612 if (err)
3613 break;
3614 err = got_path_dirname(&next_parent_path, parent_path);
3615 if (err) {
3616 if (err->code == GOT_ERR_BAD_PATH)
3617 err = NULL; /* traversed everything */
3618 break;
3620 if (got_path_is_root_dir(parent_path))
3621 break;
3622 free(parent_path);
3623 parent_path = next_parent_path;
3624 next_parent_path = NULL;
3627 free(parent_path);
3628 free(next_parent_path);
3629 return err;
3632 static const struct got_error *
3633 worktree_status(struct got_worktree *worktree, const char *path,
3634 struct got_fileindex *fileindex, struct got_repository *repo,
3635 got_worktree_status_cb status_cb, void *status_arg,
3636 got_cancel_cb cancel_cb, void *cancel_arg, int no_ignores,
3637 int report_unchanged)
3639 const struct got_error *err = NULL;
3640 int fd = -1;
3641 struct got_fileindex_diff_dir_cb fdiff_cb;
3642 struct diff_dir_cb_arg arg;
3643 char *ondisk_path = NULL;
3644 struct got_pathlist_head ignores;
3646 TAILQ_INIT(&ignores);
3648 if (asprintf(&ondisk_path, "%s%s%s",
3649 worktree->root_path, path[0] ? "/" : "", path) == -1)
3650 return got_error_from_errno("asprintf");
3652 fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_DIRECTORY | O_CLOEXEC);
3653 if (fd == -1) {
3654 if (errno != ENOTDIR && errno != ENOENT && errno != EACCES &&
3655 !got_err_open_nofollow_on_symlink())
3656 err = got_error_from_errno2("open", ondisk_path);
3657 else {
3658 if (!no_ignores) {
3659 err = add_ignores_from_parent_paths(&ignores,
3660 worktree->root_path, ondisk_path);
3661 if (err)
3662 goto done;
3664 err = report_single_file_status(path, ondisk_path,
3665 fileindex, status_cb, status_arg, repo,
3666 report_unchanged, &ignores, no_ignores);
3668 } else {
3669 fdiff_cb.diff_old_new = status_old_new;
3670 fdiff_cb.diff_old = status_old;
3671 fdiff_cb.diff_new = status_new;
3672 fdiff_cb.diff_traverse = status_traverse;
3673 arg.fileindex = fileindex;
3674 arg.worktree = worktree;
3675 arg.status_path = path;
3676 arg.status_path_len = strlen(path);
3677 arg.repo = repo;
3678 arg.status_cb = status_cb;
3679 arg.status_arg = status_arg;
3680 arg.cancel_cb = cancel_cb;
3681 arg.cancel_arg = cancel_arg;
3682 arg.report_unchanged = report_unchanged;
3683 arg.no_ignores = no_ignores;
3684 if (!no_ignores) {
3685 err = add_ignores_from_parent_paths(&ignores,
3686 worktree->root_path, path);
3687 if (err)
3688 goto done;
3690 arg.ignores = &ignores;
3691 err = got_fileindex_diff_dir(fileindex, fd,
3692 worktree->root_path, path, repo, &fdiff_cb, &arg);
3694 done:
3695 free_ignores(&ignores);
3696 if (fd != -1 && close(fd) == -1 && err == NULL)
3697 err = got_error_from_errno("close");
3698 free(ondisk_path);
3699 return err;
3702 const struct got_error *
3703 got_worktree_status(struct got_worktree *worktree,
3704 struct got_pathlist_head *paths, struct got_repository *repo,
3705 int no_ignores, got_worktree_status_cb status_cb, void *status_arg,
3706 got_cancel_cb cancel_cb, void *cancel_arg)
3708 const struct got_error *err = NULL;
3709 char *fileindex_path = NULL;
3710 struct got_fileindex *fileindex = NULL;
3711 struct got_pathlist_entry *pe;
3713 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3714 if (err)
3715 return err;
3717 TAILQ_FOREACH(pe, paths, entry) {
3718 err = worktree_status(worktree, pe->path, fileindex, repo,
3719 status_cb, status_arg, cancel_cb, cancel_arg,
3720 no_ignores, 0);
3721 if (err)
3722 break;
3724 free(fileindex_path);
3725 got_fileindex_free(fileindex);
3726 return err;
3729 const struct got_error *
3730 got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
3731 const char *arg)
3733 const struct got_error *err = NULL;
3734 char *resolved = NULL, *cwd = NULL, *path = NULL;
3735 size_t len;
3736 struct stat sb;
3737 char *abspath = NULL;
3738 char canonpath[PATH_MAX];
3740 *wt_path = NULL;
3742 cwd = getcwd(NULL, 0);
3743 if (cwd == NULL)
3744 return got_error_from_errno("getcwd");
3746 if (lstat(arg, &sb) == -1) {
3747 if (errno != ENOENT) {
3748 err = got_error_from_errno2("lstat", arg);
3749 goto done;
3751 sb.st_mode = 0;
3753 if (S_ISLNK(sb.st_mode)) {
3755 * We cannot use realpath(3) with symlinks since we want to
3756 * operate on the symlink itself.
3757 * But we can make the path absolute, assuming it is relative
3758 * to the current working directory, and then canonicalize it.
3760 if (!got_path_is_absolute(arg)) {
3761 if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3762 err = got_error_from_errno("asprintf");
3763 goto done;
3767 err = got_canonpath(abspath ? abspath : arg, canonpath,
3768 sizeof(canonpath));
3769 if (err)
3770 goto done;
3771 resolved = strdup(canonpath);
3772 if (resolved == NULL) {
3773 err = got_error_from_errno("strdup");
3774 goto done;
3776 } else {
3777 resolved = realpath(arg, NULL);
3778 if (resolved == NULL) {
3779 if (errno != ENOENT) {
3780 err = got_error_from_errno2("realpath", arg);
3781 goto done;
3783 if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3784 err = got_error_from_errno("asprintf");
3785 goto done;
3787 err = got_canonpath(abspath, canonpath,
3788 sizeof(canonpath));
3789 if (err)
3790 goto done;
3791 resolved = strdup(canonpath);
3792 if (resolved == NULL) {
3793 err = got_error_from_errno("strdup");
3794 goto done;
3799 if (strncmp(got_worktree_get_root_path(worktree), resolved,
3800 strlen(got_worktree_get_root_path(worktree)))) {
3801 err = got_error_path(resolved, GOT_ERR_BAD_PATH);
3802 goto done;
3805 if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
3806 err = got_path_skip_common_ancestor(&path,
3807 got_worktree_get_root_path(worktree), resolved);
3808 if (err)
3809 goto done;
3810 } else {
3811 path = strdup("");
3812 if (path == NULL) {
3813 err = got_error_from_errno("strdup");
3814 goto done;
3818 /* XXX status walk can't deal with trailing slash! */
3819 len = strlen(path);
3820 while (len > 0 && path[len - 1] == '/') {
3821 path[len - 1] = '\0';
3822 len--;
3824 done:
3825 free(abspath);
3826 free(resolved);
3827 free(cwd);
3828 if (err == NULL)
3829 *wt_path = path;
3830 else
3831 free(path);
3832 return err;
3835 struct schedule_addition_args {
3836 struct got_worktree *worktree;
3837 struct got_fileindex *fileindex;
3838 got_worktree_checkout_cb progress_cb;
3839 void *progress_arg;
3840 struct got_repository *repo;
3843 static const struct got_error *
3844 schedule_addition(void *arg, unsigned char status, unsigned char staged_status,
3845 const char *relpath, struct got_object_id *blob_id,
3846 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
3847 int dirfd, const char *de_name)
3849 struct schedule_addition_args *a = arg;
3850 const struct got_error *err = NULL;
3851 struct got_fileindex_entry *ie;
3852 struct stat sb;
3853 char *ondisk_path;
3855 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3856 relpath) == -1)
3857 return got_error_from_errno("asprintf");
3859 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3860 if (ie) {
3861 err = get_file_status(&status, &sb, ie, ondisk_path, dirfd,
3862 de_name, a->repo);
3863 if (err)
3864 goto done;
3865 /* Re-adding an existing entry is a no-op. */
3866 if (status == GOT_STATUS_ADD)
3867 goto done;
3868 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
3869 if (err)
3870 goto done;
3873 if (status != GOT_STATUS_UNVERSIONED) {
3874 if (status == GOT_STATUS_NONEXISTENT)
3875 err = got_error_set_errno(ENOENT, ondisk_path);
3876 else
3877 err = got_error_path(ondisk_path, GOT_ERR_FILE_STATUS);
3878 goto done;
3881 err = got_fileindex_entry_alloc(&ie, relpath);
3882 if (err)
3883 goto done;
3884 err = got_fileindex_entry_update(ie, a->worktree->root_fd,
3885 relpath, NULL, NULL, 1);
3886 if (err) {
3887 got_fileindex_entry_free(ie);
3888 goto done;
3890 err = got_fileindex_entry_add(a->fileindex, ie);
3891 if (err) {
3892 got_fileindex_entry_free(ie);
3893 goto done;
3895 done:
3896 free(ondisk_path);
3897 if (err)
3898 return err;
3899 if (status == GOT_STATUS_ADD)
3900 return NULL;
3901 return (*a->progress_cb)(a->progress_arg, GOT_STATUS_ADD, relpath);
3904 const struct got_error *
3905 got_worktree_schedule_add(struct got_worktree *worktree,
3906 struct got_pathlist_head *paths,
3907 got_worktree_checkout_cb progress_cb, void *progress_arg,
3908 struct got_repository *repo, int no_ignores)
3910 struct got_fileindex *fileindex = NULL;
3911 char *fileindex_path = NULL;
3912 const struct got_error *err = NULL, *sync_err, *unlockerr;
3913 struct got_pathlist_entry *pe;
3914 struct schedule_addition_args saa;
3916 err = lock_worktree(worktree, LOCK_EX);
3917 if (err)
3918 return err;
3920 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3921 if (err)
3922 goto done;
3924 saa.worktree = worktree;
3925 saa.fileindex = fileindex;
3926 saa.progress_cb = progress_cb;
3927 saa.progress_arg = progress_arg;
3928 saa.repo = repo;
3930 TAILQ_FOREACH(pe, paths, entry) {
3931 err = worktree_status(worktree, pe->path, fileindex, repo,
3932 schedule_addition, &saa, NULL, NULL, no_ignores, 0);
3933 if (err)
3934 break;
3936 sync_err = sync_fileindex(fileindex, fileindex_path);
3937 if (sync_err && err == NULL)
3938 err = sync_err;
3939 done:
3940 free(fileindex_path);
3941 if (fileindex)
3942 got_fileindex_free(fileindex);
3943 unlockerr = lock_worktree(worktree, LOCK_SH);
3944 if (unlockerr && err == NULL)
3945 err = unlockerr;
3946 return err;
3949 struct schedule_deletion_args {
3950 struct got_worktree *worktree;
3951 struct got_fileindex *fileindex;
3952 got_worktree_delete_cb progress_cb;
3953 void *progress_arg;
3954 struct got_repository *repo;
3955 int delete_local_mods;
3956 int keep_on_disk;
3957 int ignore_missing_paths;
3958 const char *status_codes;
3961 static const struct got_error *
3962 schedule_for_deletion(void *arg, unsigned char status,
3963 unsigned char staged_status, const char *relpath,
3964 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
3965 struct got_object_id *commit_id, int dirfd, const char *de_name)
3967 struct schedule_deletion_args *a = arg;
3968 const struct got_error *err = NULL;
3969 struct got_fileindex_entry *ie = NULL;
3970 struct stat sb;
3971 char *ondisk_path;
3973 if (status == GOT_STATUS_NONEXISTENT) {
3974 if (a->ignore_missing_paths)
3975 return NULL;
3976 return got_error_set_errno(ENOENT, relpath);
3979 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3980 if (ie == NULL)
3981 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
3983 staged_status = get_staged_status(ie);
3984 if (staged_status != GOT_STATUS_NO_CHANGE) {
3985 if (staged_status == GOT_STATUS_DELETE)
3986 return NULL;
3987 return got_error_path(relpath, GOT_ERR_FILE_STAGED);
3990 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3991 relpath) == -1)
3992 return got_error_from_errno("asprintf");
3994 err = get_file_status(&status, &sb, ie, ondisk_path, dirfd, de_name,
3995 a->repo);
3996 if (err)
3997 goto done;
3999 if (a->status_codes) {
4000 size_t ncodes = strlen(a->status_codes);
4001 int i;
4002 for (i = 0; i < ncodes ; i++) {
4003 if (status == a->status_codes[i])
4004 break;
4006 if (i == ncodes) {
4007 /* Do not delete files in non-matching status. */
4008 free(ondisk_path);
4009 return NULL;
4011 if (a->status_codes[i] != GOT_STATUS_MODIFY &&
4012 a->status_codes[i] != GOT_STATUS_MISSING) {
4013 static char msg[64];
4014 snprintf(msg, sizeof(msg),
4015 "invalid status code '%c'", a->status_codes[i]);
4016 err = got_error_msg(GOT_ERR_FILE_STATUS, msg);
4017 goto done;
4021 if (status != GOT_STATUS_NO_CHANGE) {
4022 if (status == GOT_STATUS_DELETE)
4023 goto done;
4024 if (status == GOT_STATUS_MODIFY && !a->delete_local_mods) {
4025 err = got_error_path(relpath, GOT_ERR_FILE_MODIFIED);
4026 goto done;
4028 if (status == GOT_STATUS_MISSING && !a->ignore_missing_paths) {
4029 err = got_error_set_errno(ENOENT, relpath);
4030 goto done;
4032 if (status != GOT_STATUS_MODIFY &&
4033 status != GOT_STATUS_MISSING) {
4034 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
4035 goto done;
4039 if (!a->keep_on_disk && status != GOT_STATUS_MISSING) {
4040 size_t root_len;
4042 if (dirfd != -1) {
4043 if (unlinkat(dirfd, de_name, 0) != 0) {
4044 err = got_error_from_errno2("unlinkat",
4045 ondisk_path);
4046 goto done;
4048 } else if (unlink(ondisk_path) != 0) {
4049 err = got_error_from_errno2("unlink", ondisk_path);
4050 goto done;
4053 root_len = strlen(a->worktree->root_path);
4054 do {
4055 char *parent;
4056 err = got_path_dirname(&parent, ondisk_path);
4057 if (err)
4058 goto done;
4059 free(ondisk_path);
4060 ondisk_path = parent;
4061 if (rmdir(ondisk_path) == -1) {
4062 if (errno != ENOTEMPTY)
4063 err = got_error_from_errno2("rmdir",
4064 ondisk_path);
4065 break;
4067 } while (got_path_cmp(ondisk_path, a->worktree->root_path,
4068 strlen(ondisk_path), root_len) != 0);
4071 got_fileindex_entry_mark_deleted_from_disk(ie);
4072 done:
4073 free(ondisk_path);
4074 if (err)
4075 return err;
4076 if (status == GOT_STATUS_DELETE)
4077 return NULL;
4078 return (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
4079 staged_status, relpath);
4082 const struct got_error *
4083 got_worktree_schedule_delete(struct got_worktree *worktree,
4084 struct got_pathlist_head *paths, int delete_local_mods,
4085 const char *status_codes,
4086 got_worktree_delete_cb progress_cb, void *progress_arg,
4087 struct got_repository *repo, int keep_on_disk, int ignore_missing_paths)
4089 struct got_fileindex *fileindex = NULL;
4090 char *fileindex_path = NULL;
4091 const struct got_error *err = NULL, *sync_err, *unlockerr;
4092 struct got_pathlist_entry *pe;
4093 struct schedule_deletion_args sda;
4095 err = lock_worktree(worktree, LOCK_EX);
4096 if (err)
4097 return err;
4099 err = open_fileindex(&fileindex, &fileindex_path, worktree);
4100 if (err)
4101 goto done;
4103 sda.worktree = worktree;
4104 sda.fileindex = fileindex;
4105 sda.progress_cb = progress_cb;
4106 sda.progress_arg = progress_arg;
4107 sda.repo = repo;
4108 sda.delete_local_mods = delete_local_mods;
4109 sda.keep_on_disk = keep_on_disk;
4110 sda.ignore_missing_paths = ignore_missing_paths;
4111 sda.status_codes = status_codes;
4113 TAILQ_FOREACH(pe, paths, entry) {
4114 err = worktree_status(worktree, pe->path, fileindex, repo,
4115 schedule_for_deletion, &sda, NULL, NULL, 1, 1);
4116 if (err)
4117 break;
4119 sync_err = sync_fileindex(fileindex, fileindex_path);
4120 if (sync_err && err == NULL)
4121 err = sync_err;
4122 done:
4123 free(fileindex_path);
4124 if (fileindex)
4125 got_fileindex_free(fileindex);
4126 unlockerr = lock_worktree(worktree, LOCK_SH);
4127 if (unlockerr && err == NULL)
4128 err = unlockerr;
4129 return err;
4132 static const struct got_error *
4133 copy_one_line(FILE *infile, FILE *outfile, FILE *rejectfile)
4135 const struct got_error *err = NULL;
4136 char *line = NULL;
4137 size_t linesize = 0, n;
4138 ssize_t linelen;
4140 linelen = getline(&line, &linesize, infile);
4141 if (linelen == -1) {
4142 if (ferror(infile)) {
4143 err = got_error_from_errno("getline");
4144 goto done;
4146 return NULL;
4148 if (outfile) {
4149 n = fwrite(line, 1, linelen, outfile);
4150 if (n != linelen) {
4151 err = got_ferror(outfile, GOT_ERR_IO);
4152 goto done;
4155 if (rejectfile) {
4156 n = fwrite(line, 1, linelen, rejectfile);
4157 if (n != linelen)
4158 err = got_ferror(outfile, GOT_ERR_IO);
4160 done:
4161 free(line);
4162 return err;
4165 static const struct got_error *
4166 skip_one_line(FILE *f)
4168 char *line = NULL;
4169 size_t linesize = 0;
4170 ssize_t linelen;
4172 linelen = getline(&line, &linesize, f);
4173 if (linelen == -1) {
4174 if (ferror(f))
4175 return got_error_from_errno("getline");
4176 return NULL;
4178 free(line);
4179 return NULL;
4182 static const struct got_error *
4183 copy_change(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4184 int start_old, int end_old, int start_new, int end_new,
4185 FILE *outfile, FILE *rejectfile)
4187 const struct got_error *err;
4189 /* Copy old file's lines leading up to patch. */
4190 while (!feof(f1) && *line_cur1 < start_old) {
4191 err = copy_one_line(f1, outfile, NULL);
4192 if (err)
4193 return err;
4194 (*line_cur1)++;
4196 /* Skip new file's lines leading up to patch. */
4197 while (!feof(f2) && *line_cur2 < start_new) {
4198 if (rejectfile)
4199 err = copy_one_line(f2, NULL, rejectfile);
4200 else
4201 err = skip_one_line(f2);
4202 if (err)
4203 return err;
4204 (*line_cur2)++;
4206 /* Copy patched lines. */
4207 while (!feof(f2) && *line_cur2 <= end_new) {
4208 err = copy_one_line(f2, outfile, NULL);
4209 if (err)
4210 return err;
4211 (*line_cur2)++;
4213 /* Skip over old file's replaced lines. */
4214 while (!feof(f1) && *line_cur1 <= end_old) {
4215 if (rejectfile)
4216 err = copy_one_line(f1, NULL, rejectfile);
4217 else
4218 err = skip_one_line(f1);
4219 if (err)
4220 return err;
4221 (*line_cur1)++;
4224 return NULL;
4227 static const struct got_error *
4228 copy_remaining_content(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4229 FILE *outfile, FILE *rejectfile)
4231 const struct got_error *err;
4233 if (outfile) {
4234 /* Copy old file's lines until EOF. */
4235 while (!feof(f1)) {
4236 err = copy_one_line(f1, outfile, NULL);
4237 if (err)
4238 return err;
4239 (*line_cur1)++;
4242 if (rejectfile) {
4243 /* Copy new file's lines until EOF. */
4244 while (!feof(f2)) {
4245 err = copy_one_line(f2, NULL, rejectfile);
4246 if (err)
4247 return err;
4248 (*line_cur2)++;
4252 return NULL;
4255 static const struct got_error *
4256 apply_or_reject_change(int *choice, int *nchunks_used,
4257 struct diff_result *diff_result, int n,
4258 const char *relpath, FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4259 FILE *outfile, FILE *rejectfile, int changeno, int nchanges,
4260 got_worktree_patch_cb patch_cb, void *patch_arg)
4262 const struct got_error *err = NULL;
4263 struct diff_chunk_context cc = {};
4264 int start_old, end_old, start_new, end_new;
4265 FILE *hunkfile;
4266 struct diff_output_unidiff_state *diff_state;
4267 struct diff_input_info diff_info;
4268 int rc;
4270 *choice = GOT_PATCH_CHOICE_NONE;
4272 /* Get changed line numbers without context lines for copy_change(). */
4273 diff_chunk_context_load_change(&cc, NULL, diff_result, n, 0);
4274 start_old = cc.left.start;
4275 end_old = cc.left.end;
4276 start_new = cc.right.start;
4277 end_new = cc.right.end;
4279 /* Get the same change with context lines for display. */
4280 memset(&cc, 0, sizeof(cc));
4281 diff_chunk_context_load_change(&cc, nchunks_used, diff_result, n, 3);
4283 memset(&diff_info, 0, sizeof(diff_info));
4284 diff_info.left_path = relpath;
4285 diff_info.right_path = relpath;
4287 diff_state = diff_output_unidiff_state_alloc();
4288 if (diff_state == NULL)
4289 return got_error_set_errno(ENOMEM,
4290 "diff_output_unidiff_state_alloc");
4292 hunkfile = got_opentemp();
4293 if (hunkfile == NULL) {
4294 err = got_error_from_errno("got_opentemp");
4295 goto done;
4298 rc = diff_output_unidiff_chunk(NULL, hunkfile, diff_state, &diff_info,
4299 diff_result, &cc);
4300 if (rc != DIFF_RC_OK) {
4301 err = got_error_set_errno(rc, "diff_output_unidiff_chunk");
4302 goto done;
4305 if (fseek(hunkfile, 0L, SEEK_SET) == -1) {
4306 err = got_ferror(hunkfile, GOT_ERR_IO);
4307 goto done;
4310 err = (*patch_cb)(choice, patch_arg, GOT_STATUS_MODIFY, relpath,
4311 hunkfile, changeno, nchanges);
4312 if (err)
4313 goto done;
4315 switch (*choice) {
4316 case GOT_PATCH_CHOICE_YES:
4317 err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4318 end_old, start_new, end_new, outfile, rejectfile);
4319 break;
4320 case GOT_PATCH_CHOICE_NO:
4321 err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4322 end_old, start_new, end_new, rejectfile, outfile);
4323 break;
4324 case GOT_PATCH_CHOICE_QUIT:
4325 break;
4326 default:
4327 err = got_error(GOT_ERR_PATCH_CHOICE);
4328 break;
4330 done:
4331 diff_output_unidiff_state_free(diff_state);
4332 if (hunkfile && fclose(hunkfile) == EOF && err == NULL)
4333 err = got_error_from_errno("fclose");
4334 return err;
4337 struct revert_file_args {
4338 struct got_worktree *worktree;
4339 struct got_fileindex *fileindex;
4340 got_worktree_checkout_cb progress_cb;
4341 void *progress_arg;
4342 got_worktree_patch_cb patch_cb;
4343 void *patch_arg;
4344 struct got_repository *repo;
4345 int unlink_added_files;
4348 static const struct got_error *
4349 create_patched_content(char **path_outfile, int reverse_patch,
4350 struct got_object_id *blob_id, const char *path2,
4351 int dirfd2, const char *de_name2,
4352 const char *relpath, struct got_repository *repo,
4353 got_worktree_patch_cb patch_cb, void *patch_arg)
4355 const struct got_error *err, *free_err;
4356 struct got_blob_object *blob = NULL;
4357 FILE *f1 = NULL, *f2 = NULL, *outfile = NULL;
4358 int fd2 = -1;
4359 char link_target[PATH_MAX];
4360 ssize_t link_len = 0;
4361 char *path1 = NULL, *id_str = NULL;
4362 struct stat sb2;
4363 struct got_diffreg_result *diffreg_result = NULL;
4364 int line_cur1 = 1, line_cur2 = 1, have_content = 0;
4365 int i = 0, n = 0, nchunks_used = 0, nchanges = 0;
4367 *path_outfile = NULL;
4369 err = got_object_id_str(&id_str, blob_id);
4370 if (err)
4371 return err;
4373 if (dirfd2 != -1) {
4374 fd2 = openat(dirfd2, de_name2,
4375 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
4376 if (fd2 == -1) {
4377 if (!got_err_open_nofollow_on_symlink()) {
4378 err = got_error_from_errno2("openat", path2);
4379 goto done;
4381 link_len = readlinkat(dirfd2, de_name2,
4382 link_target, sizeof(link_target));
4383 if (link_len == -1) {
4384 return got_error_from_errno2("readlinkat",
4385 path2);
4387 sb2.st_mode = S_IFLNK;
4388 sb2.st_size = link_len;
4390 } else {
4391 fd2 = open(path2, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
4392 if (fd2 == -1) {
4393 if (!got_err_open_nofollow_on_symlink()) {
4394 err = got_error_from_errno2("open", path2);
4395 goto done;
4397 link_len = readlink(path2, link_target,
4398 sizeof(link_target));
4399 if (link_len == -1)
4400 return got_error_from_errno2("readlink", path2);
4401 sb2.st_mode = S_IFLNK;
4402 sb2.st_size = link_len;
4405 if (fd2 != -1) {
4406 if (fstat(fd2, &sb2) == -1) {
4407 err = got_error_from_errno2("fstat", path2);
4408 goto done;
4411 f2 = fdopen(fd2, "r");
4412 if (f2 == NULL) {
4413 err = got_error_from_errno2("fdopen", path2);
4414 goto done;
4416 fd2 = -1;
4417 } else {
4418 size_t n;
4419 f2 = got_opentemp();
4420 if (f2 == NULL) {
4421 err = got_error_from_errno2("got_opentemp", path2);
4422 goto done;
4424 n = fwrite(link_target, 1, link_len, f2);
4425 if (n != link_len) {
4426 err = got_ferror(f2, GOT_ERR_IO);
4427 goto done;
4429 if (fflush(f2) == EOF) {
4430 err = got_error_from_errno("fflush");
4431 goto done;
4433 rewind(f2);
4436 err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
4437 if (err)
4438 goto done;
4440 err = got_opentemp_named(&path1, &f1, "got-patched-blob");
4441 if (err)
4442 goto done;
4444 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
4445 if (err)
4446 goto done;
4448 err = got_diff_files(&diffreg_result, f1, id_str, f2, path2, 3, 0, 1,
4449 NULL);
4450 if (err)
4451 goto done;
4453 err = got_opentemp_named(path_outfile, &outfile, "got-patched-content");
4454 if (err)
4455 goto done;
4457 if (fseek(f1, 0L, SEEK_SET) == -1)
4458 return got_ferror(f1, GOT_ERR_IO);
4459 if (fseek(f2, 0L, SEEK_SET) == -1)
4460 return got_ferror(f2, GOT_ERR_IO);
4462 /* Count the number of actual changes in the diff result. */
4463 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4464 struct diff_chunk_context cc = {};
4465 diff_chunk_context_load_change(&cc, &nchunks_used,
4466 diffreg_result->result, n, 0);
4467 nchanges++;
4469 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4470 int choice;
4471 err = apply_or_reject_change(&choice, &nchunks_used,
4472 diffreg_result->result, n, relpath, f1, f2,
4473 &line_cur1, &line_cur2,
4474 reverse_patch ? NULL : outfile,
4475 reverse_patch ? outfile : NULL,
4476 ++i, nchanges, patch_cb, patch_arg);
4477 if (err)
4478 goto done;
4479 if (choice == GOT_PATCH_CHOICE_YES)
4480 have_content = 1;
4481 else if (choice == GOT_PATCH_CHOICE_QUIT)
4482 break;
4484 if (have_content) {
4485 err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
4486 reverse_patch ? NULL : outfile,
4487 reverse_patch ? outfile : NULL);
4488 if (err)
4489 goto done;
4491 if (!S_ISLNK(sb2.st_mode)) {
4492 if (fchmod(fileno(outfile), sb2.st_mode) == -1) {
4493 err = got_error_from_errno2("fchmod", path2);
4494 goto done;
4498 done:
4499 free(id_str);
4500 if (blob)
4501 got_object_blob_close(blob);
4502 free_err = got_diffreg_result_free(diffreg_result);
4503 if (err == NULL)
4504 err = free_err;
4505 if (f1 && fclose(f1) == EOF && err == NULL)
4506 err = got_error_from_errno2("fclose", path1);
4507 if (f2 && fclose(f2) == EOF && err == NULL)
4508 err = got_error_from_errno2("fclose", path2);
4509 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
4510 err = got_error_from_errno2("close", path2);
4511 if (outfile && fclose(outfile) == EOF && err == NULL)
4512 err = got_error_from_errno2("fclose", *path_outfile);
4513 if (path1 && unlink(path1) == -1 && err == NULL)
4514 err = got_error_from_errno2("unlink", path1);
4515 if (err || !have_content) {
4516 if (*path_outfile && unlink(*path_outfile) == -1 && err == NULL)
4517 err = got_error_from_errno2("unlink", *path_outfile);
4518 free(*path_outfile);
4519 *path_outfile = NULL;
4521 free(path1);
4522 return err;
4525 static const struct got_error *
4526 revert_file(void *arg, unsigned char status, unsigned char staged_status,
4527 const char *relpath, struct got_object_id *blob_id,
4528 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4529 int dirfd, const char *de_name)
4531 struct revert_file_args *a = arg;
4532 const struct got_error *err = NULL;
4533 char *parent_path = NULL;
4534 struct got_fileindex_entry *ie;
4535 struct got_tree_object *tree = NULL;
4536 struct got_object_id *tree_id = NULL;
4537 const struct got_tree_entry *te = NULL;
4538 char *tree_path = NULL, *te_name;
4539 char *ondisk_path = NULL, *path_content = NULL;
4540 struct got_blob_object *blob = NULL;
4542 /* Reverting a staged deletion is a no-op. */
4543 if (status == GOT_STATUS_DELETE &&
4544 staged_status != GOT_STATUS_NO_CHANGE)
4545 return NULL;
4547 if (status == GOT_STATUS_UNVERSIONED)
4548 return (*a->progress_cb)(a->progress_arg,
4549 GOT_STATUS_UNVERSIONED, relpath);
4551 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
4552 if (ie == NULL)
4553 return got_error_path(relpath, GOT_ERR_BAD_PATH);
4555 /* Construct in-repository path of tree which contains this blob. */
4556 err = got_path_dirname(&parent_path, ie->path);
4557 if (err) {
4558 if (err->code != GOT_ERR_BAD_PATH)
4559 goto done;
4560 parent_path = strdup("/");
4561 if (parent_path == NULL) {
4562 err = got_error_from_errno("strdup");
4563 goto done;
4566 if (got_path_is_root_dir(a->worktree->path_prefix)) {
4567 tree_path = strdup(parent_path);
4568 if (tree_path == NULL) {
4569 err = got_error_from_errno("strdup");
4570 goto done;
4572 } else {
4573 if (got_path_is_root_dir(parent_path)) {
4574 tree_path = strdup(a->worktree->path_prefix);
4575 if (tree_path == NULL) {
4576 err = got_error_from_errno("strdup");
4577 goto done;
4579 } else {
4580 if (asprintf(&tree_path, "%s/%s",
4581 a->worktree->path_prefix, parent_path) == -1) {
4582 err = got_error_from_errno("asprintf");
4583 goto done;
4588 err = got_object_id_by_path(&tree_id, a->repo,
4589 a->worktree->base_commit_id, tree_path);
4590 if (err) {
4591 if (!(err->code == GOT_ERR_NO_TREE_ENTRY &&
4592 (status == GOT_STATUS_ADD ||
4593 staged_status == GOT_STATUS_ADD)))
4594 goto done;
4595 } else {
4596 err = got_object_open_as_tree(&tree, a->repo, tree_id);
4597 if (err)
4598 goto done;
4600 err = got_path_basename(&te_name, ie->path);
4601 if (err)
4602 goto done;
4604 te = got_object_tree_find_entry(tree, te_name);
4605 free(te_name);
4606 if (te == NULL && status != GOT_STATUS_ADD &&
4607 staged_status != GOT_STATUS_ADD) {
4608 err = got_error_path(ie->path, GOT_ERR_NO_TREE_ENTRY);
4609 goto done;
4613 switch (status) {
4614 case GOT_STATUS_ADD:
4615 if (a->patch_cb) {
4616 int choice = GOT_PATCH_CHOICE_NONE;
4617 err = (*a->patch_cb)(&choice, a->patch_arg,
4618 status, ie->path, NULL, 1, 1);
4619 if (err)
4620 goto done;
4621 if (choice != GOT_PATCH_CHOICE_YES)
4622 break;
4624 err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_REVERT,
4625 ie->path);
4626 if (err)
4627 goto done;
4628 got_fileindex_entry_remove(a->fileindex, ie);
4629 if (a->unlink_added_files) {
4630 if (asprintf(&ondisk_path, "%s/%s",
4631 got_worktree_get_root_path(a->worktree),
4632 relpath) == -1) {
4633 err = got_error_from_errno("asprintf");
4634 goto done;
4636 if (unlink(ondisk_path) == -1) {
4637 err = got_error_from_errno2("unlink",
4638 ondisk_path);
4639 break;
4642 break;
4643 case GOT_STATUS_DELETE:
4644 if (a->patch_cb) {
4645 int choice = GOT_PATCH_CHOICE_NONE;
4646 err = (*a->patch_cb)(&choice, a->patch_arg,
4647 status, ie->path, NULL, 1, 1);
4648 if (err)
4649 goto done;
4650 if (choice != GOT_PATCH_CHOICE_YES)
4651 break;
4653 /* fall through */
4654 case GOT_STATUS_MODIFY:
4655 case GOT_STATUS_MODE_CHANGE:
4656 case GOT_STATUS_CONFLICT:
4657 case GOT_STATUS_MISSING: {
4658 struct got_object_id id;
4659 if (staged_status == GOT_STATUS_ADD ||
4660 staged_status == GOT_STATUS_MODIFY) {
4661 memcpy(id.sha1, ie->staged_blob_sha1,
4662 SHA1_DIGEST_LENGTH);
4663 } else
4664 memcpy(id.sha1, ie->blob_sha1,
4665 SHA1_DIGEST_LENGTH);
4666 err = got_object_open_as_blob(&blob, a->repo, &id, 8192);
4667 if (err)
4668 goto done;
4670 if (asprintf(&ondisk_path, "%s/%s",
4671 got_worktree_get_root_path(a->worktree), relpath) == -1) {
4672 err = got_error_from_errno("asprintf");
4673 goto done;
4676 if (a->patch_cb && (status == GOT_STATUS_MODIFY ||
4677 status == GOT_STATUS_CONFLICT)) {
4678 int is_bad_symlink = 0;
4679 err = create_patched_content(&path_content, 1, &id,
4680 ondisk_path, dirfd, de_name, ie->path, a->repo,
4681 a->patch_cb, a->patch_arg);
4682 if (err || path_content == NULL)
4683 break;
4684 if (te && S_ISLNK(te->mode)) {
4685 if (unlink(path_content) == -1) {
4686 err = got_error_from_errno2("unlink",
4687 path_content);
4688 break;
4690 err = install_symlink(&is_bad_symlink,
4691 a->worktree, ondisk_path, ie->path,
4692 blob, 0, 1, 0, 0, a->repo,
4693 a->progress_cb, a->progress_arg);
4694 } else {
4695 if (rename(path_content, ondisk_path) == -1) {
4696 err = got_error_from_errno3("rename",
4697 path_content, ondisk_path);
4698 goto done;
4701 } else {
4702 int is_bad_symlink = 0;
4703 if (te && S_ISLNK(te->mode)) {
4704 err = install_symlink(&is_bad_symlink,
4705 a->worktree, ondisk_path, ie->path,
4706 blob, 0, 1, 0, 0, a->repo,
4707 a->progress_cb, a->progress_arg);
4708 } else {
4709 err = install_blob(a->worktree, ondisk_path,
4710 ie->path,
4711 te ? te->mode : GOT_DEFAULT_FILE_MODE,
4712 got_fileindex_perms_to_st(ie), blob,
4713 0, 1, 0, 0, a->repo,
4714 a->progress_cb, a->progress_arg);
4716 if (err)
4717 goto done;
4718 if (status == GOT_STATUS_DELETE ||
4719 status == GOT_STATUS_MODE_CHANGE) {
4720 err = got_fileindex_entry_update(ie,
4721 a->worktree->root_fd, relpath,
4722 blob->id.sha1,
4723 a->worktree->base_commit_id->sha1, 1);
4724 if (err)
4725 goto done;
4727 if (is_bad_symlink) {
4728 got_fileindex_entry_filetype_set(ie,
4729 GOT_FILEIDX_MODE_BAD_SYMLINK);
4732 break;
4734 default:
4735 break;
4737 done:
4738 free(ondisk_path);
4739 free(path_content);
4740 free(parent_path);
4741 free(tree_path);
4742 if (blob)
4743 got_object_blob_close(blob);
4744 if (tree)
4745 got_object_tree_close(tree);
4746 free(tree_id);
4747 return err;
4750 const struct got_error *
4751 got_worktree_revert(struct got_worktree *worktree,
4752 struct got_pathlist_head *paths,
4753 got_worktree_checkout_cb progress_cb, void *progress_arg,
4754 got_worktree_patch_cb patch_cb, void *patch_arg,
4755 struct got_repository *repo)
4757 struct got_fileindex *fileindex = NULL;
4758 char *fileindex_path = NULL;
4759 const struct got_error *err = NULL, *unlockerr = NULL;
4760 const struct got_error *sync_err = NULL;
4761 struct got_pathlist_entry *pe;
4762 struct revert_file_args rfa;
4764 err = lock_worktree(worktree, LOCK_EX);
4765 if (err)
4766 return err;
4768 err = open_fileindex(&fileindex, &fileindex_path, worktree);
4769 if (err)
4770 goto done;
4772 rfa.worktree = worktree;
4773 rfa.fileindex = fileindex;
4774 rfa.progress_cb = progress_cb;
4775 rfa.progress_arg = progress_arg;
4776 rfa.patch_cb = patch_cb;
4777 rfa.patch_arg = patch_arg;
4778 rfa.repo = repo;
4779 rfa.unlink_added_files = 0;
4780 TAILQ_FOREACH(pe, paths, entry) {
4781 err = worktree_status(worktree, pe->path, fileindex, repo,
4782 revert_file, &rfa, NULL, NULL, 1, 0);
4783 if (err)
4784 break;
4786 sync_err = sync_fileindex(fileindex, fileindex_path);
4787 if (sync_err && err == NULL)
4788 err = sync_err;
4789 done:
4790 free(fileindex_path);
4791 if (fileindex)
4792 got_fileindex_free(fileindex);
4793 unlockerr = lock_worktree(worktree, LOCK_SH);
4794 if (unlockerr && err == NULL)
4795 err = unlockerr;
4796 return err;
4799 static void
4800 free_commitable(struct got_commitable *ct)
4802 free(ct->path);
4803 free(ct->in_repo_path);
4804 free(ct->ondisk_path);
4805 free(ct->blob_id);
4806 free(ct->base_blob_id);
4807 free(ct->staged_blob_id);
4808 free(ct->base_commit_id);
4809 free(ct);
4812 struct collect_commitables_arg {
4813 struct got_pathlist_head *commitable_paths;
4814 struct got_repository *repo;
4815 struct got_worktree *worktree;
4816 struct got_fileindex *fileindex;
4817 int have_staged_files;
4818 int allow_bad_symlinks;
4821 static const struct got_error *
4822 collect_commitables(void *arg, unsigned char status,
4823 unsigned char staged_status, const char *relpath,
4824 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
4825 struct got_object_id *commit_id, int dirfd, const char *de_name)
4827 struct collect_commitables_arg *a = arg;
4828 const struct got_error *err = NULL;
4829 struct got_commitable *ct = NULL;
4830 struct got_pathlist_entry *new = NULL;
4831 char *parent_path = NULL, *path = NULL;
4832 struct stat sb;
4834 if (a->have_staged_files) {
4835 if (staged_status != GOT_STATUS_MODIFY &&
4836 staged_status != GOT_STATUS_ADD &&
4837 staged_status != GOT_STATUS_DELETE)
4838 return NULL;
4839 } else {
4840 if (status == GOT_STATUS_CONFLICT)
4841 return got_error(GOT_ERR_COMMIT_CONFLICT);
4843 if (status != GOT_STATUS_MODIFY &&
4844 status != GOT_STATUS_MODE_CHANGE &&
4845 status != GOT_STATUS_ADD &&
4846 status != GOT_STATUS_DELETE)
4847 return NULL;
4850 if (asprintf(&path, "/%s", relpath) == -1) {
4851 err = got_error_from_errno("asprintf");
4852 goto done;
4854 if (strcmp(path, "/") == 0) {
4855 parent_path = strdup("");
4856 if (parent_path == NULL)
4857 return got_error_from_errno("strdup");
4858 } else {
4859 err = got_path_dirname(&parent_path, path);
4860 if (err)
4861 return err;
4864 ct = calloc(1, sizeof(*ct));
4865 if (ct == NULL) {
4866 err = got_error_from_errno("calloc");
4867 goto done;
4870 if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
4871 relpath) == -1) {
4872 err = got_error_from_errno("asprintf");
4873 goto done;
4876 if (staged_status == GOT_STATUS_ADD ||
4877 staged_status == GOT_STATUS_MODIFY) {
4878 struct got_fileindex_entry *ie;
4879 ie = got_fileindex_entry_get(a->fileindex, path, strlen(path));
4880 switch (got_fileindex_entry_staged_filetype_get(ie)) {
4881 case GOT_FILEIDX_MODE_REGULAR_FILE:
4882 case GOT_FILEIDX_MODE_BAD_SYMLINK:
4883 ct->mode = S_IFREG;
4884 break;
4885 case GOT_FILEIDX_MODE_SYMLINK:
4886 ct->mode = S_IFLNK;
4887 break;
4888 default:
4889 err = got_error_path(path, GOT_ERR_BAD_FILETYPE);
4890 goto done;
4892 ct->mode |= got_fileindex_entry_perms_get(ie);
4893 } else if (status != GOT_STATUS_DELETE &&
4894 staged_status != GOT_STATUS_DELETE) {
4895 if (dirfd != -1) {
4896 if (fstatat(dirfd, de_name, &sb,
4897 AT_SYMLINK_NOFOLLOW) == -1) {
4898 err = got_error_from_errno2("fstatat",
4899 ct->ondisk_path);
4900 goto done;
4902 } else if (lstat(ct->ondisk_path, &sb) == -1) {
4903 err = got_error_from_errno2("lstat", ct->ondisk_path);
4904 goto done;
4906 ct->mode = sb.st_mode;
4909 if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
4910 got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
4911 relpath) == -1) {
4912 err = got_error_from_errno("asprintf");
4913 goto done;
4916 if (S_ISLNK(ct->mode) && staged_status == GOT_STATUS_NO_CHANGE &&
4917 status == GOT_STATUS_ADD && !a->allow_bad_symlinks) {
4918 int is_bad_symlink;
4919 char target_path[PATH_MAX];
4920 ssize_t target_len;
4921 target_len = readlink(ct->ondisk_path, target_path,
4922 sizeof(target_path));
4923 if (target_len == -1) {
4924 err = got_error_from_errno2("readlink",
4925 ct->ondisk_path);
4926 goto done;
4928 err = is_bad_symlink_target(&is_bad_symlink, target_path,
4929 target_len, ct->ondisk_path, a->worktree->root_path);
4930 if (err)
4931 goto done;
4932 if (is_bad_symlink) {
4933 err = got_error_path(ct->ondisk_path,
4934 GOT_ERR_BAD_SYMLINK);
4935 goto done;
4940 ct->status = status;
4941 ct->staged_status = staged_status;
4942 ct->blob_id = NULL; /* will be filled in when blob gets created */
4943 if (ct->status != GOT_STATUS_ADD &&
4944 ct->staged_status != GOT_STATUS_ADD) {
4945 ct->base_blob_id = got_object_id_dup(blob_id);
4946 if (ct->base_blob_id == NULL) {
4947 err = got_error_from_errno("got_object_id_dup");
4948 goto done;
4950 ct->base_commit_id = got_object_id_dup(commit_id);
4951 if (ct->base_commit_id == NULL) {
4952 err = got_error_from_errno("got_object_id_dup");
4953 goto done;
4956 if (ct->staged_status == GOT_STATUS_ADD ||
4957 ct->staged_status == GOT_STATUS_MODIFY) {
4958 ct->staged_blob_id = got_object_id_dup(staged_blob_id);
4959 if (ct->staged_blob_id == NULL) {
4960 err = got_error_from_errno("got_object_id_dup");
4961 goto done;
4964 ct->path = strdup(path);
4965 if (ct->path == NULL) {
4966 err = got_error_from_errno("strdup");
4967 goto done;
4969 err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
4970 done:
4971 if (ct && (err || new == NULL))
4972 free_commitable(ct);
4973 free(parent_path);
4974 free(path);
4975 return err;
4978 static const struct got_error *write_tree(struct got_object_id **, int *,
4979 struct got_tree_object *, const char *, struct got_pathlist_head *,
4980 got_worktree_status_cb status_cb, void *status_arg,
4981 struct got_repository *);
4983 static const struct got_error *
4984 write_subtree(struct got_object_id **new_subtree_id, int *nentries,
4985 struct got_tree_entry *te, const char *parent_path,
4986 struct got_pathlist_head *commitable_paths,
4987 got_worktree_status_cb status_cb, void *status_arg,
4988 struct got_repository *repo)
4990 const struct got_error *err = NULL;
4991 struct got_tree_object *subtree;
4992 char *subpath;
4994 if (asprintf(&subpath, "%s%s%s", parent_path,
4995 got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
4996 return got_error_from_errno("asprintf");
4998 err = got_object_open_as_tree(&subtree, repo, &te->id);
4999 if (err)
5000 return err;
5002 err = write_tree(new_subtree_id, nentries, subtree, subpath,
5003 commitable_paths, status_cb, status_arg, repo);
5004 got_object_tree_close(subtree);
5005 free(subpath);
5006 return err;
5009 static const struct got_error *
5010 match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
5012 const struct got_error *err = NULL;
5013 char *ct_parent_path = NULL;
5015 *match = 0;
5017 if (strchr(ct->in_repo_path, '/') == NULL) {
5018 *match = got_path_is_root_dir(path);
5019 return NULL;
5022 err = got_path_dirname(&ct_parent_path, ct->in_repo_path);
5023 if (err)
5024 return err;
5025 *match = (strcmp(path, ct_parent_path) == 0);
5026 free(ct_parent_path);
5027 return err;
5030 static mode_t
5031 get_ct_file_mode(struct got_commitable *ct)
5033 if (S_ISLNK(ct->mode))
5034 return S_IFLNK;
5036 return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
5039 static const struct got_error *
5040 alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
5041 struct got_tree_entry *te, struct got_commitable *ct)
5043 const struct got_error *err = NULL;
5045 *new_te = NULL;
5047 err = got_object_tree_entry_dup(new_te, te);
5048 if (err)
5049 goto done;
5051 (*new_te)->mode = get_ct_file_mode(ct);
5053 if (ct->staged_status == GOT_STATUS_MODIFY)
5054 memcpy(&(*new_te)->id, ct->staged_blob_id,
5055 sizeof((*new_te)->id));
5056 else
5057 memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
5058 done:
5059 if (err && *new_te) {
5060 free(*new_te);
5061 *new_te = NULL;
5063 return err;
5066 static const struct got_error *
5067 alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
5068 struct got_commitable *ct)
5070 const struct got_error *err = NULL;
5071 char *ct_name = NULL;
5073 *new_te = NULL;
5075 *new_te = calloc(1, sizeof(**new_te));
5076 if (*new_te == NULL)
5077 return got_error_from_errno("calloc");
5079 err = got_path_basename(&ct_name, ct->path);
5080 if (err)
5081 goto done;
5082 if (strlcpy((*new_te)->name, ct_name, sizeof((*new_te)->name)) >=
5083 sizeof((*new_te)->name)) {
5084 err = got_error(GOT_ERR_NO_SPACE);
5085 goto done;
5088 (*new_te)->mode = get_ct_file_mode(ct);
5090 if (ct->staged_status == GOT_STATUS_ADD)
5091 memcpy(&(*new_te)->id, ct->staged_blob_id,
5092 sizeof((*new_te)->id));
5093 else
5094 memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
5095 done:
5096 free(ct_name);
5097 if (err && *new_te) {
5098 free(*new_te);
5099 *new_te = NULL;
5101 return err;
5104 static const struct got_error *
5105 insert_tree_entry(struct got_tree_entry *new_te,
5106 struct got_pathlist_head *paths)
5108 const struct got_error *err = NULL;
5109 struct got_pathlist_entry *new_pe;
5111 err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
5112 if (err)
5113 return err;
5114 if (new_pe == NULL)
5115 return got_error(GOT_ERR_TREE_DUP_ENTRY);
5116 return NULL;
5119 static const struct got_error *
5120 report_ct_status(struct got_commitable *ct,
5121 got_worktree_status_cb status_cb, void *status_arg)
5123 const char *ct_path = ct->path;
5124 unsigned char status;
5126 if (status_cb == NULL) /* no commit progress output desired */
5127 return NULL;
5129 while (ct_path[0] == '/')
5130 ct_path++;
5132 if (ct->staged_status != GOT_STATUS_NO_CHANGE)
5133 status = ct->staged_status;
5134 else
5135 status = ct->status;
5137 return (*status_cb)(status_arg, status, GOT_STATUS_NO_CHANGE,
5138 ct_path, ct->blob_id, NULL, NULL, -1, NULL);
5141 static const struct got_error *
5142 match_modified_subtree(int *modified, struct got_tree_entry *te,
5143 const char *base_tree_path, struct got_pathlist_head *commitable_paths)
5145 const struct got_error *err = NULL;
5146 struct got_pathlist_entry *pe;
5147 char *te_path;
5149 *modified = 0;
5151 if (asprintf(&te_path, "%s%s%s", base_tree_path,
5152 got_path_is_root_dir(base_tree_path) ? "" : "/",
5153 te->name) == -1)
5154 return got_error_from_errno("asprintf");
5156 TAILQ_FOREACH(pe, commitable_paths, entry) {
5157 struct got_commitable *ct = pe->data;
5158 *modified = got_path_is_child(ct->in_repo_path, te_path,
5159 strlen(te_path));
5160 if (*modified)
5161 break;
5164 free(te_path);
5165 return err;
5168 static const struct got_error *
5169 match_deleted_or_modified_ct(struct got_commitable **ctp,
5170 struct got_tree_entry *te, const char *base_tree_path,
5171 struct got_pathlist_head *commitable_paths)
5173 const struct got_error *err = NULL;
5174 struct got_pathlist_entry *pe;
5176 *ctp = NULL;
5178 TAILQ_FOREACH(pe, commitable_paths, entry) {
5179 struct got_commitable *ct = pe->data;
5180 char *ct_name = NULL;
5181 int path_matches;
5183 if (ct->staged_status == GOT_STATUS_NO_CHANGE) {
5184 if (ct->status != GOT_STATUS_MODIFY &&
5185 ct->status != GOT_STATUS_MODE_CHANGE &&
5186 ct->status != GOT_STATUS_DELETE)
5187 continue;
5188 } else {
5189 if (ct->staged_status != GOT_STATUS_MODIFY &&
5190 ct->staged_status != GOT_STATUS_DELETE)
5191 continue;
5194 if (got_object_id_cmp(ct->base_blob_id, &te->id) != 0)
5195 continue;
5197 err = match_ct_parent_path(&path_matches, ct, base_tree_path);
5198 if (err)
5199 return err;
5200 if (!path_matches)
5201 continue;
5203 err = got_path_basename(&ct_name, pe->path);
5204 if (err)
5205 return err;
5207 if (strcmp(te->name, ct_name) != 0) {
5208 free(ct_name);
5209 continue;
5211 free(ct_name);
5213 *ctp = ct;
5214 break;
5217 return err;
5220 static const struct got_error *
5221 make_subtree_for_added_blob(struct got_tree_entry **new_tep,
5222 const char *child_path, const char *path_base_tree,
5223 struct got_pathlist_head *commitable_paths,
5224 got_worktree_status_cb status_cb, void *status_arg,
5225 struct got_repository *repo)
5227 const struct got_error *err = NULL;
5228 struct got_tree_entry *new_te;
5229 char *subtree_path;
5230 struct got_object_id *id = NULL;
5231 int nentries;
5233 *new_tep = NULL;
5235 if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
5236 got_path_is_root_dir(path_base_tree) ? "" : "/",
5237 child_path) == -1)
5238 return got_error_from_errno("asprintf");
5240 new_te = calloc(1, sizeof(*new_te));
5241 if (new_te == NULL)
5242 return got_error_from_errno("calloc");
5243 new_te->mode = S_IFDIR;
5245 if (strlcpy(new_te->name, child_path, sizeof(new_te->name)) >=
5246 sizeof(new_te->name)) {
5247 err = got_error(GOT_ERR_NO_SPACE);
5248 goto done;
5250 err = write_tree(&id, &nentries, NULL, subtree_path,
5251 commitable_paths, status_cb, status_arg, repo);
5252 if (err) {
5253 free(new_te);
5254 goto done;
5256 memcpy(&new_te->id, id, sizeof(new_te->id));
5257 done:
5258 free(id);
5259 free(subtree_path);
5260 if (err == NULL)
5261 *new_tep = new_te;
5262 return err;
5265 static const struct got_error *
5266 write_tree(struct got_object_id **new_tree_id, int *nentries,
5267 struct got_tree_object *base_tree, const char *path_base_tree,
5268 struct got_pathlist_head *commitable_paths,
5269 got_worktree_status_cb status_cb, void *status_arg,
5270 struct got_repository *repo)
5272 const struct got_error *err = NULL;
5273 struct got_pathlist_head paths;
5274 struct got_tree_entry *te, *new_te = NULL;
5275 struct got_pathlist_entry *pe;
5277 TAILQ_INIT(&paths);
5278 *nentries = 0;
5280 /* Insert, and recurse into, newly added entries first. */
5281 TAILQ_FOREACH(pe, commitable_paths, entry) {
5282 struct got_commitable *ct = pe->data;
5283 char *child_path = NULL, *slash;
5285 if ((ct->status != GOT_STATUS_ADD &&
5286 ct->staged_status != GOT_STATUS_ADD) ||
5287 (ct->flags & GOT_COMMITABLE_ADDED))
5288 continue;
5290 if (!got_path_is_child(ct->in_repo_path, path_base_tree,
5291 strlen(path_base_tree)))
5292 continue;
5294 err = got_path_skip_common_ancestor(&child_path, path_base_tree,
5295 ct->in_repo_path);
5296 if (err)
5297 goto done;
5299 slash = strchr(child_path, '/');
5300 if (slash == NULL) {
5301 err = alloc_added_blob_tree_entry(&new_te, ct);
5302 if (err)
5303 goto done;
5304 err = report_ct_status(ct, status_cb, status_arg);
5305 if (err)
5306 goto done;
5307 ct->flags |= GOT_COMMITABLE_ADDED;
5308 err = insert_tree_entry(new_te, &paths);
5309 if (err)
5310 goto done;
5311 (*nentries)++;
5312 } else {
5313 *slash = '\0'; /* trim trailing path components */
5314 if (base_tree == NULL ||
5315 got_object_tree_find_entry(base_tree, child_path)
5316 == NULL) {
5317 err = make_subtree_for_added_blob(&new_te,
5318 child_path, path_base_tree,
5319 commitable_paths, status_cb, status_arg,
5320 repo);
5321 if (err)
5322 goto done;
5323 err = insert_tree_entry(new_te, &paths);
5324 if (err)
5325 goto done;
5326 (*nentries)++;
5331 if (base_tree) {
5332 int i, nbase_entries;
5333 /* Handle modified and deleted entries. */
5334 nbase_entries = got_object_tree_get_nentries(base_tree);
5335 for (i = 0; i < nbase_entries; i++) {
5336 struct got_commitable *ct = NULL;
5338 te = got_object_tree_get_entry(base_tree, i);
5339 if (got_object_tree_entry_is_submodule(te)) {
5340 /* Entry is a submodule; just copy it. */
5341 err = got_object_tree_entry_dup(&new_te, te);
5342 if (err)
5343 goto done;
5344 err = insert_tree_entry(new_te, &paths);
5345 if (err)
5346 goto done;
5347 (*nentries)++;
5348 continue;
5351 if (S_ISDIR(te->mode)) {
5352 int modified;
5353 err = got_object_tree_entry_dup(&new_te, te);
5354 if (err)
5355 goto done;
5356 err = match_modified_subtree(&modified, te,
5357 path_base_tree, commitable_paths);
5358 if (err)
5359 goto done;
5360 /* Avoid recursion into unmodified subtrees. */
5361 if (modified) {
5362 struct got_object_id *new_id;
5363 int nsubentries;
5364 err = write_subtree(&new_id,
5365 &nsubentries, te,
5366 path_base_tree, commitable_paths,
5367 status_cb, status_arg, repo);
5368 if (err)
5369 goto done;
5370 if (nsubentries == 0) {
5371 /* All entries were deleted. */
5372 free(new_id);
5373 continue;
5375 memcpy(&new_te->id, new_id,
5376 sizeof(new_te->id));
5377 free(new_id);
5379 err = insert_tree_entry(new_te, &paths);
5380 if (err)
5381 goto done;
5382 (*nentries)++;
5383 continue;
5386 err = match_deleted_or_modified_ct(&ct, te,
5387 path_base_tree, commitable_paths);
5388 if (err)
5389 goto done;
5390 if (ct) {
5391 /* NB: Deleted entries get dropped here. */
5392 if (ct->status == GOT_STATUS_MODIFY ||
5393 ct->status == GOT_STATUS_MODE_CHANGE ||
5394 ct->staged_status == GOT_STATUS_MODIFY) {
5395 err = alloc_modified_blob_tree_entry(
5396 &new_te, te, ct);
5397 if (err)
5398 goto done;
5399 err = insert_tree_entry(new_te, &paths);
5400 if (err)
5401 goto done;
5402 (*nentries)++;
5404 err = report_ct_status(ct, status_cb,
5405 status_arg);
5406 if (err)
5407 goto done;
5408 } else {
5409 /* Entry is unchanged; just copy it. */
5410 err = got_object_tree_entry_dup(&new_te, te);
5411 if (err)
5412 goto done;
5413 err = insert_tree_entry(new_te, &paths);
5414 if (err)
5415 goto done;
5416 (*nentries)++;
5421 /* Write new list of entries; deleted entries have been dropped. */
5422 err = got_object_tree_create(new_tree_id, &paths, *nentries, repo);
5423 done:
5424 got_pathlist_free(&paths);
5425 return err;
5428 static const struct got_error *
5429 update_fileindex_after_commit(struct got_worktree *worktree,
5430 struct got_pathlist_head *commitable_paths,
5431 struct got_object_id *new_base_commit_id,
5432 struct got_fileindex *fileindex, int have_staged_files)
5434 const struct got_error *err = NULL;
5435 struct got_pathlist_entry *pe;
5436 char *relpath = NULL;
5438 TAILQ_FOREACH(pe, commitable_paths, entry) {
5439 struct got_fileindex_entry *ie;
5440 struct got_commitable *ct = pe->data;
5442 ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5444 err = got_path_skip_common_ancestor(&relpath,
5445 worktree->root_path, ct->ondisk_path);
5446 if (err)
5447 goto done;
5449 if (ie) {
5450 if (ct->status == GOT_STATUS_DELETE ||
5451 ct->staged_status == GOT_STATUS_DELETE) {
5452 got_fileindex_entry_remove(fileindex, ie);
5453 } else if (ct->staged_status == GOT_STATUS_ADD ||
5454 ct->staged_status == GOT_STATUS_MODIFY) {
5455 got_fileindex_entry_stage_set(ie,
5456 GOT_FILEIDX_STAGE_NONE);
5457 got_fileindex_entry_staged_filetype_set(ie, 0);
5459 err = got_fileindex_entry_update(ie,
5460 worktree->root_fd, relpath,
5461 ct->staged_blob_id->sha1,
5462 new_base_commit_id->sha1,
5463 !have_staged_files);
5464 } else
5465 err = got_fileindex_entry_update(ie,
5466 worktree->root_fd, relpath,
5467 ct->blob_id->sha1,
5468 new_base_commit_id->sha1,
5469 !have_staged_files);
5470 } else {
5471 err = got_fileindex_entry_alloc(&ie, pe->path);
5472 if (err)
5473 goto done;
5474 err = got_fileindex_entry_update(ie,
5475 worktree->root_fd, relpath, ct->blob_id->sha1,
5476 new_base_commit_id->sha1, 1);
5477 if (err) {
5478 got_fileindex_entry_free(ie);
5479 goto done;
5481 err = got_fileindex_entry_add(fileindex, ie);
5482 if (err) {
5483 got_fileindex_entry_free(ie);
5484 goto done;
5487 free(relpath);
5488 relpath = NULL;
5490 done:
5491 free(relpath);
5492 return err;
5496 static const struct got_error *
5497 check_out_of_date(const char *in_repo_path, unsigned char status,
5498 unsigned char staged_status, struct got_object_id *base_blob_id,
5499 struct got_object_id *base_commit_id,
5500 struct got_object_id *head_commit_id, struct got_repository *repo,
5501 int ood_errcode)
5503 const struct got_error *err = NULL;
5504 struct got_object_id *id = NULL;
5506 if (status != GOT_STATUS_ADD && staged_status != GOT_STATUS_ADD) {
5507 /* Trivial case: base commit == head commit */
5508 if (got_object_id_cmp(base_commit_id, head_commit_id) == 0)
5509 return NULL;
5511 * Ensure file content which local changes were based
5512 * on matches file content in the branch head.
5514 err = got_object_id_by_path(&id, repo, head_commit_id,
5515 in_repo_path);
5516 if (err) {
5517 if (err->code == GOT_ERR_NO_TREE_ENTRY)
5518 err = got_error(ood_errcode);
5519 goto done;
5520 } else if (got_object_id_cmp(id, base_blob_id) != 0)
5521 err = got_error(ood_errcode);
5522 } else {
5523 /* Require that added files don't exist in the branch head. */
5524 err = got_object_id_by_path(&id, repo, head_commit_id,
5525 in_repo_path);
5526 if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
5527 goto done;
5528 err = id ? got_error(ood_errcode) : NULL;
5530 done:
5531 free(id);
5532 return err;
5535 const struct got_error *
5536 commit_worktree(struct got_object_id **new_commit_id,
5537 struct got_pathlist_head *commitable_paths,
5538 struct got_object_id *head_commit_id,
5539 struct got_object_id *parent_id2,
5540 struct got_worktree *worktree,
5541 const char *author, const char *committer,
5542 got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5543 got_worktree_status_cb status_cb, void *status_arg,
5544 struct got_repository *repo)
5546 const struct got_error *err = NULL, *unlockerr = NULL;
5547 struct got_pathlist_entry *pe;
5548 const char *head_ref_name = NULL;
5549 struct got_commit_object *head_commit = NULL;
5550 struct got_reference *head_ref2 = NULL;
5551 struct got_object_id *head_commit_id2 = NULL;
5552 struct got_tree_object *head_tree = NULL;
5553 struct got_object_id *new_tree_id = NULL;
5554 int nentries, nparents = 0;
5555 struct got_object_id_queue parent_ids;
5556 struct got_object_qid *pid = NULL;
5557 char *logmsg = NULL;
5559 *new_commit_id = NULL;
5561 STAILQ_INIT(&parent_ids);
5563 err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
5564 if (err)
5565 goto done;
5567 err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
5568 if (err)
5569 goto done;
5571 if (commit_msg_cb != NULL) {
5572 err = commit_msg_cb(commitable_paths, &logmsg, commit_arg);
5573 if (err)
5574 goto done;
5577 if (logmsg == NULL || strlen(logmsg) == 0) {
5578 err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
5579 goto done;
5582 /* Create blobs from added and modified files and record their IDs. */
5583 TAILQ_FOREACH(pe, commitable_paths, entry) {
5584 struct got_commitable *ct = pe->data;
5585 char *ondisk_path;
5587 /* Blobs for staged files already exist. */
5588 if (ct->staged_status == GOT_STATUS_ADD ||
5589 ct->staged_status == GOT_STATUS_MODIFY)
5590 continue;
5592 if (ct->status != GOT_STATUS_ADD &&
5593 ct->status != GOT_STATUS_MODIFY &&
5594 ct->status != GOT_STATUS_MODE_CHANGE)
5595 continue;
5597 if (asprintf(&ondisk_path, "%s/%s",
5598 worktree->root_path, pe->path) == -1) {
5599 err = got_error_from_errno("asprintf");
5600 goto done;
5602 err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
5603 free(ondisk_path);
5604 if (err)
5605 goto done;
5608 /* Recursively write new tree objects. */
5609 err = write_tree(&new_tree_id, &nentries, head_tree, "/",
5610 commitable_paths, status_cb, status_arg, repo);
5611 if (err)
5612 goto done;
5614 err = got_object_qid_alloc(&pid, worktree->base_commit_id);
5615 if (err)
5616 goto done;
5617 STAILQ_INSERT_TAIL(&parent_ids, pid, entry);
5618 nparents++;
5619 if (parent_id2) {
5620 err = got_object_qid_alloc(&pid, parent_id2);
5621 if (err)
5622 goto done;
5623 STAILQ_INSERT_TAIL(&parent_ids, pid, entry);
5624 nparents++;
5626 err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
5627 nparents, author, time(NULL), committer, time(NULL), logmsg, repo);
5628 if (logmsg != NULL)
5629 free(logmsg);
5630 if (err)
5631 goto done;
5633 /* Check if a concurrent commit to our branch has occurred. */
5634 head_ref_name = got_worktree_get_head_ref_name(worktree);
5635 if (head_ref_name == NULL) {
5636 err = got_error_from_errno("got_worktree_get_head_ref_name");
5637 goto done;
5639 /* Lock the reference here to prevent concurrent modification. */
5640 err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
5641 if (err)
5642 goto done;
5643 err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
5644 if (err)
5645 goto done;
5646 if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
5647 err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
5648 goto done;
5650 /* Update branch head in repository. */
5651 err = got_ref_change_ref(head_ref2, *new_commit_id);
5652 if (err)
5653 goto done;
5654 err = got_ref_write(head_ref2, repo);
5655 if (err)
5656 goto done;
5658 err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
5659 if (err)
5660 goto done;
5662 err = ref_base_commit(worktree, repo);
5663 if (err)
5664 goto done;
5665 done:
5666 got_object_id_queue_free(&parent_ids);
5667 if (head_tree)
5668 got_object_tree_close(head_tree);
5669 if (head_commit)
5670 got_object_commit_close(head_commit);
5671 free(head_commit_id2);
5672 if (head_ref2) {
5673 unlockerr = got_ref_unlock(head_ref2);
5674 if (unlockerr && err == NULL)
5675 err = unlockerr;
5676 got_ref_close(head_ref2);
5678 return err;
5681 static const struct got_error *
5682 check_path_is_commitable(const char *path,
5683 struct got_pathlist_head *commitable_paths)
5685 struct got_pathlist_entry *cpe = NULL;
5686 size_t path_len = strlen(path);
5688 TAILQ_FOREACH(cpe, commitable_paths, entry) {
5689 struct got_commitable *ct = cpe->data;
5690 const char *ct_path = ct->path;
5692 while (ct_path[0] == '/')
5693 ct_path++;
5695 if (strcmp(path, ct_path) == 0 ||
5696 got_path_is_child(ct_path, path, path_len))
5697 break;
5700 if (cpe == NULL)
5701 return got_error_path(path, GOT_ERR_BAD_PATH);
5703 return NULL;
5706 static const struct got_error *
5707 check_staged_file(void *arg, struct got_fileindex_entry *ie)
5709 int *have_staged_files = arg;
5711 if (got_fileindex_entry_stage_get(ie) != GOT_FILEIDX_STAGE_NONE) {
5712 *have_staged_files = 1;
5713 return got_error(GOT_ERR_CANCELLED);
5716 return NULL;
5719 static const struct got_error *
5720 check_non_staged_files(struct got_fileindex *fileindex,
5721 struct got_pathlist_head *paths)
5723 struct got_pathlist_entry *pe;
5724 struct got_fileindex_entry *ie;
5726 TAILQ_FOREACH(pe, paths, entry) {
5727 if (pe->path[0] == '\0')
5728 continue;
5729 ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5730 if (ie == NULL)
5731 return got_error_path(pe->path, GOT_ERR_BAD_PATH);
5732 if (got_fileindex_entry_stage_get(ie) == GOT_FILEIDX_STAGE_NONE)
5733 return got_error_path(pe->path,
5734 GOT_ERR_FILE_NOT_STAGED);
5737 return NULL;
5740 const struct got_error *
5741 got_worktree_commit(struct got_object_id **new_commit_id,
5742 struct got_worktree *worktree, struct got_pathlist_head *paths,
5743 const char *author, const char *committer, int allow_bad_symlinks,
5744 got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5745 got_worktree_status_cb status_cb, void *status_arg,
5746 struct got_repository *repo)
5748 const struct got_error *err = NULL, *unlockerr = NULL, *sync_err;
5749 struct got_fileindex *fileindex = NULL;
5750 char *fileindex_path = NULL;
5751 struct got_pathlist_head commitable_paths;
5752 struct collect_commitables_arg cc_arg;
5753 struct got_pathlist_entry *pe;
5754 struct got_reference *head_ref = NULL;
5755 struct got_object_id *head_commit_id = NULL;
5756 int have_staged_files = 0;
5758 *new_commit_id = NULL;
5760 TAILQ_INIT(&commitable_paths);
5762 err = lock_worktree(worktree, LOCK_EX);
5763 if (err)
5764 goto done;
5766 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
5767 if (err)
5768 goto done;
5770 err = got_ref_resolve(&head_commit_id, repo, head_ref);
5771 if (err)
5772 goto done;
5774 err = open_fileindex(&fileindex, &fileindex_path, worktree);
5775 if (err)
5776 goto done;
5778 err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
5779 &have_staged_files);
5780 if (err && err->code != GOT_ERR_CANCELLED)
5781 goto done;
5782 if (have_staged_files) {
5783 err = check_non_staged_files(fileindex, paths);
5784 if (err)
5785 goto done;
5788 cc_arg.commitable_paths = &commitable_paths;
5789 cc_arg.worktree = worktree;
5790 cc_arg.fileindex = fileindex;
5791 cc_arg.repo = repo;
5792 cc_arg.have_staged_files = have_staged_files;
5793 cc_arg.allow_bad_symlinks = allow_bad_symlinks;
5794 TAILQ_FOREACH(pe, paths, entry) {
5795 err = worktree_status(worktree, pe->path, fileindex, repo,
5796 collect_commitables, &cc_arg, NULL, NULL, 1, 0);
5797 if (err)
5798 goto done;
5801 if (TAILQ_EMPTY(&commitable_paths)) {
5802 err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
5803 goto done;
5806 TAILQ_FOREACH(pe, paths, entry) {
5807 err = check_path_is_commitable(pe->path, &commitable_paths);
5808 if (err)
5809 goto done;
5812 TAILQ_FOREACH(pe, &commitable_paths, entry) {
5813 struct got_commitable *ct = pe->data;
5814 const char *ct_path = ct->in_repo_path;
5816 while (ct_path[0] == '/')
5817 ct_path++;
5818 err = check_out_of_date(ct_path, ct->status,
5819 ct->staged_status, ct->base_blob_id, ct->base_commit_id,
5820 head_commit_id, repo, GOT_ERR_COMMIT_OUT_OF_DATE);
5821 if (err)
5822 goto done;
5826 err = commit_worktree(new_commit_id, &commitable_paths,
5827 head_commit_id, NULL, worktree, author, committer,
5828 commit_msg_cb, commit_arg, status_cb, status_arg, repo);
5829 if (err)
5830 goto done;
5832 err = update_fileindex_after_commit(worktree, &commitable_paths,
5833 *new_commit_id, fileindex, have_staged_files);
5834 sync_err = sync_fileindex(fileindex, fileindex_path);
5835 if (sync_err && err == NULL)
5836 err = sync_err;
5837 done:
5838 if (fileindex)
5839 got_fileindex_free(fileindex);
5840 free(fileindex_path);
5841 unlockerr = lock_worktree(worktree, LOCK_SH);
5842 if (unlockerr && err == NULL)
5843 err = unlockerr;
5844 TAILQ_FOREACH(pe, &commitable_paths, entry) {
5845 struct got_commitable *ct = pe->data;
5846 free_commitable(ct);
5848 got_pathlist_free(&commitable_paths);
5849 return err;
5852 const char *
5853 got_commitable_get_path(struct got_commitable *ct)
5855 return ct->path;
5858 unsigned int
5859 got_commitable_get_status(struct got_commitable *ct)
5861 return ct->status;
5864 struct check_rebase_ok_arg {
5865 struct got_worktree *worktree;
5866 struct got_repository *repo;
5869 static const struct got_error *
5870 check_rebase_ok(void *arg, struct got_fileindex_entry *ie)
5872 const struct got_error *err = NULL;
5873 struct check_rebase_ok_arg *a = arg;
5874 unsigned char status;
5875 struct stat sb;
5876 char *ondisk_path;
5878 /* Reject rebase of a work tree with mixed base commits. */
5879 if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
5880 SHA1_DIGEST_LENGTH))
5881 return got_error(GOT_ERR_MIXED_COMMITS);
5883 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
5884 == -1)
5885 return got_error_from_errno("asprintf");
5887 /* Reject rebase of a work tree with modified or staged files. */
5888 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
5889 free(ondisk_path);
5890 if (err)
5891 return err;
5893 if (status != GOT_STATUS_NO_CHANGE)
5894 return got_error(GOT_ERR_MODIFIED);
5895 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
5896 return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
5898 return NULL;
5901 const struct got_error *
5902 got_worktree_rebase_prepare(struct got_reference **new_base_branch_ref,
5903 struct got_reference **tmp_branch, struct got_fileindex **fileindex,
5904 struct got_worktree *worktree, struct got_reference *branch,
5905 struct got_repository *repo)
5907 const struct got_error *err = NULL;
5908 char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
5909 char *branch_ref_name = NULL;
5910 char *fileindex_path = NULL;
5911 struct check_rebase_ok_arg ok_arg;
5912 struct got_reference *wt_branch = NULL, *branch_ref = NULL;
5913 struct got_object_id *wt_branch_tip = NULL;
5915 *new_base_branch_ref = NULL;
5916 *tmp_branch = NULL;
5917 *fileindex = NULL;
5919 err = lock_worktree(worktree, LOCK_EX);
5920 if (err)
5921 return err;
5923 err = open_fileindex(fileindex, &fileindex_path, worktree);
5924 if (err)
5925 goto done;
5927 ok_arg.worktree = worktree;
5928 ok_arg.repo = repo;
5929 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
5930 &ok_arg);
5931 if (err)
5932 goto done;
5934 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
5935 if (err)
5936 goto done;
5938 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
5939 if (err)
5940 goto done;
5942 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
5943 if (err)
5944 goto done;
5946 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
5947 0);
5948 if (err)
5949 goto done;
5951 err = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
5952 if (err)
5953 goto done;
5954 if (got_object_id_cmp(worktree->base_commit_id, wt_branch_tip) != 0) {
5955 err = got_error(GOT_ERR_REBASE_OUT_OF_DATE);
5956 goto done;
5959 err = got_ref_alloc_symref(new_base_branch_ref,
5960 new_base_branch_ref_name, wt_branch);
5961 if (err)
5962 goto done;
5963 err = got_ref_write(*new_base_branch_ref, repo);
5964 if (err)
5965 goto done;
5967 /* TODO Lock original branch's ref while rebasing? */
5969 err = got_ref_alloc_symref(&branch_ref, branch_ref_name, branch);
5970 if (err)
5971 goto done;
5973 err = got_ref_write(branch_ref, repo);
5974 if (err)
5975 goto done;
5977 err = got_ref_alloc(tmp_branch, tmp_branch_name,
5978 worktree->base_commit_id);
5979 if (err)
5980 goto done;
5981 err = got_ref_write(*tmp_branch, repo);
5982 if (err)
5983 goto done;
5985 err = got_worktree_set_head_ref(worktree, *tmp_branch);
5986 if (err)
5987 goto done;
5988 done:
5989 free(fileindex_path);
5990 free(tmp_branch_name);
5991 free(new_base_branch_ref_name);
5992 free(branch_ref_name);
5993 if (branch_ref)
5994 got_ref_close(branch_ref);
5995 if (wt_branch)
5996 got_ref_close(wt_branch);
5997 free(wt_branch_tip);
5998 if (err) {
5999 if (*new_base_branch_ref) {
6000 got_ref_close(*new_base_branch_ref);
6001 *new_base_branch_ref = NULL;
6003 if (*tmp_branch) {
6004 got_ref_close(*tmp_branch);
6005 *tmp_branch = NULL;
6007 if (*fileindex) {
6008 got_fileindex_free(*fileindex);
6009 *fileindex = NULL;
6011 lock_worktree(worktree, LOCK_SH);
6013 return err;
6016 const struct got_error *
6017 got_worktree_rebase_continue(struct got_object_id **commit_id,
6018 struct got_reference **new_base_branch, struct got_reference **tmp_branch,
6019 struct got_reference **branch, struct got_fileindex **fileindex,
6020 struct got_worktree *worktree, struct got_repository *repo)
6022 const struct got_error *err;
6023 char *commit_ref_name = NULL, *new_base_branch_ref_name = NULL;
6024 char *tmp_branch_name = NULL, *branch_ref_name = NULL;
6025 struct got_reference *commit_ref = NULL, *branch_ref = NULL;
6026 char *fileindex_path = NULL;
6027 int have_staged_files = 0;
6029 *commit_id = NULL;
6030 *new_base_branch = NULL;
6031 *tmp_branch = NULL;
6032 *branch = NULL;
6033 *fileindex = NULL;
6035 err = lock_worktree(worktree, LOCK_EX);
6036 if (err)
6037 return err;
6039 err = open_fileindex(fileindex, &fileindex_path, worktree);
6040 if (err)
6041 goto done;
6043 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
6044 &have_staged_files);
6045 if (err && err->code != GOT_ERR_CANCELLED)
6046 goto done;
6047 if (have_staged_files) {
6048 err = got_error(GOT_ERR_STAGED_PATHS);
6049 goto done;
6052 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6053 if (err)
6054 goto done;
6056 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6057 if (err)
6058 goto done;
6060 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6061 if (err)
6062 goto done;
6064 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6065 if (err)
6066 goto done;
6068 err = got_ref_open(&branch_ref, repo, branch_ref_name, 0);
6069 if (err)
6070 goto done;
6072 err = got_ref_open(branch, repo,
6073 got_ref_get_symref_target(branch_ref), 0);
6074 if (err)
6075 goto done;
6077 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6078 if (err)
6079 goto done;
6081 err = got_ref_resolve(commit_id, repo, commit_ref);
6082 if (err)
6083 goto done;
6085 err = got_ref_open(new_base_branch, repo,
6086 new_base_branch_ref_name, 0);
6087 if (err)
6088 goto done;
6090 err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
6091 if (err)
6092 goto done;
6093 done:
6094 free(commit_ref_name);
6095 free(branch_ref_name);
6096 free(fileindex_path);
6097 if (commit_ref)
6098 got_ref_close(commit_ref);
6099 if (branch_ref)
6100 got_ref_close(branch_ref);
6101 if (err) {
6102 free(*commit_id);
6103 *commit_id = NULL;
6104 if (*tmp_branch) {
6105 got_ref_close(*tmp_branch);
6106 *tmp_branch = NULL;
6108 if (*new_base_branch) {
6109 got_ref_close(*new_base_branch);
6110 *new_base_branch = NULL;
6112 if (*branch) {
6113 got_ref_close(*branch);
6114 *branch = NULL;
6116 if (*fileindex) {
6117 got_fileindex_free(*fileindex);
6118 *fileindex = NULL;
6120 lock_worktree(worktree, LOCK_SH);
6122 return err;
6125 const struct got_error *
6126 got_worktree_rebase_in_progress(int *in_progress, struct got_worktree *worktree)
6128 const struct got_error *err;
6129 char *tmp_branch_name = NULL;
6131 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6132 if (err)
6133 return err;
6135 *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6136 free(tmp_branch_name);
6137 return NULL;
6140 static const struct got_error *
6141 collect_rebase_commit_msg(struct got_pathlist_head *commitable_paths,
6142 char **logmsg, void *arg)
6144 *logmsg = arg;
6145 return NULL;
6148 static const struct got_error *
6149 rebase_status(void *arg, unsigned char status, unsigned char staged_status,
6150 const char *path, struct got_object_id *blob_id,
6151 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
6152 int dirfd, const char *de_name)
6154 return NULL;
6157 struct collect_merged_paths_arg {
6158 got_worktree_checkout_cb progress_cb;
6159 void *progress_arg;
6160 struct got_pathlist_head *merged_paths;
6163 static const struct got_error *
6164 collect_merged_paths(void *arg, unsigned char status, const char *path)
6166 const struct got_error *err;
6167 struct collect_merged_paths_arg *a = arg;
6168 char *p;
6169 struct got_pathlist_entry *new;
6171 err = (*a->progress_cb)(a->progress_arg, status, path);
6172 if (err)
6173 return err;
6175 if (status != GOT_STATUS_MERGE &&
6176 status != GOT_STATUS_ADD &&
6177 status != GOT_STATUS_DELETE &&
6178 status != GOT_STATUS_CONFLICT)
6179 return NULL;
6181 p = strdup(path);
6182 if (p == NULL)
6183 return got_error_from_errno("strdup");
6185 err = got_pathlist_insert(&new, a->merged_paths, p, NULL);
6186 if (err || new == NULL)
6187 free(p);
6188 return err;
6191 void
6192 got_worktree_rebase_pathlist_free(struct got_pathlist_head *merged_paths)
6194 struct got_pathlist_entry *pe;
6196 TAILQ_FOREACH(pe, merged_paths, entry)
6197 free((char *)pe->path);
6199 got_pathlist_free(merged_paths);
6202 static const struct got_error *
6203 store_commit_id(const char *commit_ref_name, struct got_object_id *commit_id,
6204 int is_rebase, struct got_repository *repo)
6206 const struct got_error *err;
6207 struct got_reference *commit_ref = NULL;
6209 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6210 if (err) {
6211 if (err->code != GOT_ERR_NOT_REF)
6212 goto done;
6213 err = got_ref_alloc(&commit_ref, commit_ref_name, commit_id);
6214 if (err)
6215 goto done;
6216 err = got_ref_write(commit_ref, repo);
6217 if (err)
6218 goto done;
6219 } else if (is_rebase) {
6220 struct got_object_id *stored_id;
6221 int cmp;
6223 err = got_ref_resolve(&stored_id, repo, commit_ref);
6224 if (err)
6225 goto done;
6226 cmp = got_object_id_cmp(commit_id, stored_id);
6227 free(stored_id);
6228 if (cmp != 0) {
6229 err = got_error(GOT_ERR_REBASE_COMMITID);
6230 goto done;
6233 done:
6234 if (commit_ref)
6235 got_ref_close(commit_ref);
6236 return err;
6239 static const struct got_error *
6240 rebase_merge_files(struct got_pathlist_head *merged_paths,
6241 const char *commit_ref_name, struct got_worktree *worktree,
6242 struct got_fileindex *fileindex, struct got_object_id *parent_commit_id,
6243 struct got_object_id *commit_id, struct got_repository *repo,
6244 got_worktree_checkout_cb progress_cb, void *progress_arg,
6245 got_cancel_cb cancel_cb, void *cancel_arg)
6247 const struct got_error *err;
6248 struct got_reference *commit_ref = NULL;
6249 struct collect_merged_paths_arg cmp_arg;
6250 char *fileindex_path;
6252 /* Work tree is locked/unlocked during rebase preparation/teardown. */
6254 err = get_fileindex_path(&fileindex_path, worktree);
6255 if (err)
6256 return err;
6258 cmp_arg.progress_cb = progress_cb;
6259 cmp_arg.progress_arg = progress_arg;
6260 cmp_arg.merged_paths = merged_paths;
6261 err = merge_files(worktree, fileindex, fileindex_path,
6262 parent_commit_id, commit_id, repo, collect_merged_paths,
6263 &cmp_arg, cancel_cb, cancel_arg);
6264 if (commit_ref)
6265 got_ref_close(commit_ref);
6266 return err;
6269 const struct got_error *
6270 got_worktree_rebase_merge_files(struct got_pathlist_head *merged_paths,
6271 struct got_worktree *worktree, struct got_fileindex *fileindex,
6272 struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6273 struct got_repository *repo,
6274 got_worktree_checkout_cb progress_cb, void *progress_arg,
6275 got_cancel_cb cancel_cb, void *cancel_arg)
6277 const struct got_error *err;
6278 char *commit_ref_name;
6280 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6281 if (err)
6282 return err;
6284 err = store_commit_id(commit_ref_name, commit_id, 1, repo);
6285 if (err)
6286 goto done;
6288 err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6289 fileindex, parent_commit_id, commit_id, repo, progress_cb,
6290 progress_arg, cancel_cb, cancel_arg);
6291 done:
6292 free(commit_ref_name);
6293 return err;
6296 const struct got_error *
6297 got_worktree_histedit_merge_files(struct got_pathlist_head *merged_paths,
6298 struct got_worktree *worktree, struct got_fileindex *fileindex,
6299 struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6300 struct got_repository *repo,
6301 got_worktree_checkout_cb progress_cb, void *progress_arg,
6302 got_cancel_cb cancel_cb, void *cancel_arg)
6304 const struct got_error *err;
6305 char *commit_ref_name;
6307 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6308 if (err)
6309 return err;
6311 err = store_commit_id(commit_ref_name, commit_id, 0, repo);
6312 if (err)
6313 goto done;
6315 err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6316 fileindex, parent_commit_id, commit_id, repo, progress_cb,
6317 progress_arg, cancel_cb, cancel_arg);
6318 done:
6319 free(commit_ref_name);
6320 return err;
6323 static const struct got_error *
6324 rebase_commit(struct got_object_id **new_commit_id,
6325 struct got_pathlist_head *merged_paths, struct got_reference *commit_ref,
6326 struct got_worktree *worktree, struct got_fileindex *fileindex,
6327 struct got_reference *tmp_branch, struct got_commit_object *orig_commit,
6328 const char *new_logmsg, struct got_repository *repo)
6330 const struct got_error *err, *sync_err;
6331 struct got_pathlist_head commitable_paths;
6332 struct collect_commitables_arg cc_arg;
6333 char *fileindex_path = NULL;
6334 struct got_reference *head_ref = NULL;
6335 struct got_object_id *head_commit_id = NULL;
6336 char *logmsg = NULL;
6338 TAILQ_INIT(&commitable_paths);
6339 *new_commit_id = NULL;
6341 /* Work tree is locked/unlocked during rebase preparation/teardown. */
6343 err = get_fileindex_path(&fileindex_path, worktree);
6344 if (err)
6345 return err;
6347 cc_arg.commitable_paths = &commitable_paths;
6348 cc_arg.worktree = worktree;
6349 cc_arg.repo = repo;
6350 cc_arg.have_staged_files = 0;
6352 * If possible get the status of individual files directly to
6353 * avoid crawling the entire work tree once per rebased commit.
6355 * Ideally, merged_paths would contain a list of commitables
6356 * we could use so we could skip worktree_status() entirely.
6357 * However, we would then need carefully keep track of cumulative
6358 * effects of operations such as file additions and deletions
6359 * in 'got histedit -f' (folding multiple commits into one),
6360 * and this extra complexity is not really worth it.
6362 if (merged_paths) {
6363 struct got_pathlist_entry *pe;
6364 TAILQ_FOREACH(pe, merged_paths, entry) {
6365 err = worktree_status(worktree, pe->path, fileindex,
6366 repo, collect_commitables, &cc_arg, NULL, NULL, 1,
6367 0);
6368 if (err)
6369 goto done;
6371 } else {
6372 err = worktree_status(worktree, "", fileindex, repo,
6373 collect_commitables, &cc_arg, NULL, NULL, 1, 0);
6374 if (err)
6375 goto done;
6378 if (TAILQ_EMPTY(&commitable_paths)) {
6379 /* No-op change; commit will be elided. */
6380 err = got_ref_delete(commit_ref, repo);
6381 if (err)
6382 goto done;
6383 err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
6384 goto done;
6387 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
6388 if (err)
6389 goto done;
6391 err = got_ref_resolve(&head_commit_id, repo, head_ref);
6392 if (err)
6393 goto done;
6395 if (new_logmsg) {
6396 logmsg = strdup(new_logmsg);
6397 if (logmsg == NULL) {
6398 err = got_error_from_errno("strdup");
6399 goto done;
6401 } else {
6402 err = got_object_commit_get_logmsg(&logmsg, orig_commit);
6403 if (err)
6404 goto done;
6407 /* NB: commit_worktree will call free(logmsg) */
6408 err = commit_worktree(new_commit_id, &commitable_paths, head_commit_id,
6409 NULL, worktree, got_object_commit_get_author(orig_commit),
6410 got_object_commit_get_committer(orig_commit),
6411 collect_rebase_commit_msg, logmsg, rebase_status, NULL, repo);
6412 if (err)
6413 goto done;
6415 err = got_ref_change_ref(tmp_branch, *new_commit_id);
6416 if (err)
6417 goto done;
6419 err = got_ref_delete(commit_ref, repo);
6420 if (err)
6421 goto done;
6423 err = update_fileindex_after_commit(worktree, &commitable_paths,
6424 *new_commit_id, fileindex, 0);
6425 sync_err = sync_fileindex(fileindex, fileindex_path);
6426 if (sync_err && err == NULL)
6427 err = sync_err;
6428 done:
6429 free(fileindex_path);
6430 free(head_commit_id);
6431 if (head_ref)
6432 got_ref_close(head_ref);
6433 if (err) {
6434 free(*new_commit_id);
6435 *new_commit_id = NULL;
6437 return err;
6440 const struct got_error *
6441 got_worktree_rebase_commit(struct got_object_id **new_commit_id,
6442 struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6443 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6444 struct got_commit_object *orig_commit,
6445 struct got_object_id *orig_commit_id, struct got_repository *repo)
6447 const struct got_error *err;
6448 char *commit_ref_name;
6449 struct got_reference *commit_ref = NULL;
6450 struct got_object_id *commit_id = NULL;
6452 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6453 if (err)
6454 return err;
6456 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6457 if (err)
6458 goto done;
6459 err = got_ref_resolve(&commit_id, repo, commit_ref);
6460 if (err)
6461 goto done;
6462 if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
6463 err = got_error(GOT_ERR_REBASE_COMMITID);
6464 goto done;
6467 err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6468 worktree, fileindex, tmp_branch, orig_commit, NULL, repo);
6469 done:
6470 if (commit_ref)
6471 got_ref_close(commit_ref);
6472 free(commit_ref_name);
6473 free(commit_id);
6474 return err;
6477 const struct got_error *
6478 got_worktree_histedit_commit(struct got_object_id **new_commit_id,
6479 struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6480 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6481 struct got_commit_object *orig_commit,
6482 struct got_object_id *orig_commit_id, const char *new_logmsg,
6483 struct got_repository *repo)
6485 const struct got_error *err;
6486 char *commit_ref_name;
6487 struct got_reference *commit_ref = NULL;
6489 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6490 if (err)
6491 return err;
6493 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6494 if (err)
6495 goto done;
6497 err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6498 worktree, fileindex, tmp_branch, orig_commit, new_logmsg, repo);
6499 done:
6500 if (commit_ref)
6501 got_ref_close(commit_ref);
6502 free(commit_ref_name);
6503 return err;
6506 const struct got_error *
6507 got_worktree_rebase_postpone(struct got_worktree *worktree,
6508 struct got_fileindex *fileindex)
6510 if (fileindex)
6511 got_fileindex_free(fileindex);
6512 return lock_worktree(worktree, LOCK_SH);
6515 static const struct got_error *
6516 delete_ref(const char *name, struct got_repository *repo)
6518 const struct got_error *err;
6519 struct got_reference *ref;
6521 err = got_ref_open(&ref, repo, name, 0);
6522 if (err) {
6523 if (err->code == GOT_ERR_NOT_REF)
6524 return NULL;
6525 return err;
6528 err = got_ref_delete(ref, repo);
6529 got_ref_close(ref);
6530 return err;
6533 static const struct got_error *
6534 delete_rebase_refs(struct got_worktree *worktree, struct got_repository *repo)
6536 const struct got_error *err;
6537 char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
6538 char *branch_ref_name = NULL, *commit_ref_name = NULL;
6540 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6541 if (err)
6542 goto done;
6543 err = delete_ref(tmp_branch_name, repo);
6544 if (err)
6545 goto done;
6547 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6548 if (err)
6549 goto done;
6550 err = delete_ref(new_base_branch_ref_name, repo);
6551 if (err)
6552 goto done;
6554 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6555 if (err)
6556 goto done;
6557 err = delete_ref(branch_ref_name, repo);
6558 if (err)
6559 goto done;
6561 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6562 if (err)
6563 goto done;
6564 err = delete_ref(commit_ref_name, repo);
6565 if (err)
6566 goto done;
6568 done:
6569 free(tmp_branch_name);
6570 free(new_base_branch_ref_name);
6571 free(branch_ref_name);
6572 free(commit_ref_name);
6573 return err;
6576 const struct got_error *
6577 create_backup_ref(const char *backup_ref_prefix, struct got_reference *branch,
6578 struct got_object_id *new_commit_id, struct got_repository *repo)
6580 const struct got_error *err;
6581 struct got_reference *ref = NULL;
6582 struct got_object_id *old_commit_id = NULL;
6583 const char *branch_name = NULL;
6584 char *new_id_str = NULL;
6585 char *refname = NULL;
6587 branch_name = got_ref_get_name(branch);
6588 if (strncmp(branch_name, "refs/heads/", 11) != 0)
6589 return got_error(GOT_ERR_BAD_REF_NAME); /* should not happen */
6590 branch_name += 11;
6592 err = got_object_id_str(&new_id_str, new_commit_id);
6593 if (err)
6594 return err;
6596 if (asprintf(&refname, "%s/%s/%s", backup_ref_prefix, branch_name,
6597 new_id_str) == -1) {
6598 err = got_error_from_errno("asprintf");
6599 goto done;
6602 err = got_ref_resolve(&old_commit_id, repo, branch);
6603 if (err)
6604 goto done;
6606 err = got_ref_alloc(&ref, refname, old_commit_id);
6607 if (err)
6608 goto done;
6610 err = got_ref_write(ref, repo);
6611 done:
6612 free(new_id_str);
6613 free(refname);
6614 free(old_commit_id);
6615 if (ref)
6616 got_ref_close(ref);
6617 return err;
6620 const struct got_error *
6621 got_worktree_rebase_complete(struct got_worktree *worktree,
6622 struct got_fileindex *fileindex, struct got_reference *new_base_branch,
6623 struct got_reference *tmp_branch, struct got_reference *rebased_branch,
6624 struct got_repository *repo, int create_backup)
6626 const struct got_error *err, *unlockerr, *sync_err;
6627 struct got_object_id *new_head_commit_id = NULL;
6628 char *fileindex_path = NULL;
6630 err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
6631 if (err)
6632 return err;
6634 if (create_backup) {
6635 err = create_backup_ref(GOT_WORKTREE_REBASE_BACKUP_REF_PREFIX,
6636 rebased_branch, new_head_commit_id, repo);
6637 if (err)
6638 goto done;
6641 err = got_ref_change_ref(rebased_branch, new_head_commit_id);
6642 if (err)
6643 goto done;
6645 err = got_ref_write(rebased_branch, repo);
6646 if (err)
6647 goto done;
6649 err = got_worktree_set_head_ref(worktree, rebased_branch);
6650 if (err)
6651 goto done;
6653 err = delete_rebase_refs(worktree, repo);
6654 if (err)
6655 goto done;
6657 err = get_fileindex_path(&fileindex_path, worktree);
6658 if (err)
6659 goto done;
6660 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
6661 sync_err = sync_fileindex(fileindex, fileindex_path);
6662 if (sync_err && err == NULL)
6663 err = sync_err;
6664 done:
6665 got_fileindex_free(fileindex);
6666 free(fileindex_path);
6667 free(new_head_commit_id);
6668 unlockerr = lock_worktree(worktree, LOCK_SH);
6669 if (unlockerr && err == NULL)
6670 err = unlockerr;
6671 return err;
6674 const struct got_error *
6675 got_worktree_rebase_abort(struct got_worktree *worktree,
6676 struct got_fileindex *fileindex, struct got_repository *repo,
6677 struct got_reference *new_base_branch,
6678 got_worktree_checkout_cb progress_cb, void *progress_arg)
6680 const struct got_error *err, *unlockerr, *sync_err;
6681 struct got_reference *resolved = NULL;
6682 struct got_object_id *commit_id = NULL;
6683 char *fileindex_path = NULL;
6684 struct revert_file_args rfa;
6685 struct got_object_id *tree_id = NULL;
6687 err = lock_worktree(worktree, LOCK_EX);
6688 if (err)
6689 return err;
6691 err = got_ref_open(&resolved, repo,
6692 got_ref_get_symref_target(new_base_branch), 0);
6693 if (err)
6694 goto done;
6696 err = got_worktree_set_head_ref(worktree, resolved);
6697 if (err)
6698 goto done;
6701 * XXX commits to the base branch could have happened while
6702 * we were busy rebasing; should we store the original commit ID
6703 * when rebase begins and read it back here?
6705 err = got_ref_resolve(&commit_id, repo, resolved);
6706 if (err)
6707 goto done;
6709 err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
6710 if (err)
6711 goto done;
6713 err = got_object_id_by_path(&tree_id, repo,
6714 worktree->base_commit_id, worktree->path_prefix);
6715 if (err)
6716 goto done;
6718 err = delete_rebase_refs(worktree, repo);
6719 if (err)
6720 goto done;
6722 err = get_fileindex_path(&fileindex_path, worktree);
6723 if (err)
6724 goto done;
6726 rfa.worktree = worktree;
6727 rfa.fileindex = fileindex;
6728 rfa.progress_cb = progress_cb;
6729 rfa.progress_arg = progress_arg;
6730 rfa.patch_cb = NULL;
6731 rfa.patch_arg = NULL;
6732 rfa.repo = repo;
6733 rfa.unlink_added_files = 0;
6734 err = worktree_status(worktree, "", fileindex, repo,
6735 revert_file, &rfa, NULL, NULL, 1, 0);
6736 if (err)
6737 goto sync;
6739 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
6740 repo, progress_cb, progress_arg, NULL, NULL);
6741 sync:
6742 sync_err = sync_fileindex(fileindex, fileindex_path);
6743 if (sync_err && err == NULL)
6744 err = sync_err;
6745 done:
6746 got_ref_close(resolved);
6747 free(tree_id);
6748 free(commit_id);
6749 if (fileindex)
6750 got_fileindex_free(fileindex);
6751 free(fileindex_path);
6753 unlockerr = lock_worktree(worktree, LOCK_SH);
6754 if (unlockerr && err == NULL)
6755 err = unlockerr;
6756 return err;
6759 const struct got_error *
6760 got_worktree_histedit_prepare(struct got_reference **tmp_branch,
6761 struct got_reference **branch_ref, struct got_object_id **base_commit_id,
6762 struct got_fileindex **fileindex, struct got_worktree *worktree,
6763 struct got_repository *repo)
6765 const struct got_error *err = NULL;
6766 char *tmp_branch_name = NULL;
6767 char *branch_ref_name = NULL;
6768 char *base_commit_ref_name = NULL;
6769 char *fileindex_path = NULL;
6770 struct check_rebase_ok_arg ok_arg;
6771 struct got_reference *wt_branch = NULL;
6772 struct got_reference *base_commit_ref = NULL;
6774 *tmp_branch = NULL;
6775 *branch_ref = NULL;
6776 *base_commit_id = NULL;
6777 *fileindex = NULL;
6779 err = lock_worktree(worktree, LOCK_EX);
6780 if (err)
6781 return err;
6783 err = open_fileindex(fileindex, &fileindex_path, worktree);
6784 if (err)
6785 goto done;
6787 ok_arg.worktree = worktree;
6788 ok_arg.repo = repo;
6789 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
6790 &ok_arg);
6791 if (err)
6792 goto done;
6794 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6795 if (err)
6796 goto done;
6798 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6799 if (err)
6800 goto done;
6802 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6803 worktree);
6804 if (err)
6805 goto done;
6807 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
6808 0);
6809 if (err)
6810 goto done;
6812 err = got_ref_alloc_symref(branch_ref, branch_ref_name, wt_branch);
6813 if (err)
6814 goto done;
6816 err = got_ref_write(*branch_ref, repo);
6817 if (err)
6818 goto done;
6820 err = got_ref_alloc(&base_commit_ref, base_commit_ref_name,
6821 worktree->base_commit_id);
6822 if (err)
6823 goto done;
6824 err = got_ref_write(base_commit_ref, repo);
6825 if (err)
6826 goto done;
6827 *base_commit_id = got_object_id_dup(worktree->base_commit_id);
6828 if (*base_commit_id == NULL) {
6829 err = got_error_from_errno("got_object_id_dup");
6830 goto done;
6833 err = got_ref_alloc(tmp_branch, tmp_branch_name,
6834 worktree->base_commit_id);
6835 if (err)
6836 goto done;
6837 err = got_ref_write(*tmp_branch, repo);
6838 if (err)
6839 goto done;
6841 err = got_worktree_set_head_ref(worktree, *tmp_branch);
6842 if (err)
6843 goto done;
6844 done:
6845 free(fileindex_path);
6846 free(tmp_branch_name);
6847 free(branch_ref_name);
6848 free(base_commit_ref_name);
6849 if (wt_branch)
6850 got_ref_close(wt_branch);
6851 if (err) {
6852 if (*branch_ref) {
6853 got_ref_close(*branch_ref);
6854 *branch_ref = NULL;
6856 if (*tmp_branch) {
6857 got_ref_close(*tmp_branch);
6858 *tmp_branch = NULL;
6860 free(*base_commit_id);
6861 if (*fileindex) {
6862 got_fileindex_free(*fileindex);
6863 *fileindex = NULL;
6865 lock_worktree(worktree, LOCK_SH);
6867 return err;
6870 const struct got_error *
6871 got_worktree_histedit_postpone(struct got_worktree *worktree,
6872 struct got_fileindex *fileindex)
6874 if (fileindex)
6875 got_fileindex_free(fileindex);
6876 return lock_worktree(worktree, LOCK_SH);
6879 const struct got_error *
6880 got_worktree_histedit_in_progress(int *in_progress,
6881 struct got_worktree *worktree)
6883 const struct got_error *err;
6884 char *tmp_branch_name = NULL;
6886 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6887 if (err)
6888 return err;
6890 *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6891 free(tmp_branch_name);
6892 return NULL;
6895 const struct got_error *
6896 got_worktree_histedit_continue(struct got_object_id **commit_id,
6897 struct got_reference **tmp_branch, struct got_reference **branch_ref,
6898 struct got_object_id **base_commit_id, struct got_fileindex **fileindex,
6899 struct got_worktree *worktree, struct got_repository *repo)
6901 const struct got_error *err;
6902 char *commit_ref_name = NULL, *base_commit_ref_name = NULL;
6903 char *tmp_branch_name = NULL, *branch_ref_name = NULL;
6904 struct got_reference *commit_ref = NULL;
6905 struct got_reference *base_commit_ref = NULL;
6906 char *fileindex_path = NULL;
6907 int have_staged_files = 0;
6909 *commit_id = NULL;
6910 *tmp_branch = NULL;
6911 *base_commit_id = NULL;
6912 *fileindex = NULL;
6914 err = lock_worktree(worktree, LOCK_EX);
6915 if (err)
6916 return err;
6918 err = open_fileindex(fileindex, &fileindex_path, worktree);
6919 if (err)
6920 goto done;
6922 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
6923 &have_staged_files);
6924 if (err && err->code != GOT_ERR_CANCELLED)
6925 goto done;
6926 if (have_staged_files) {
6927 err = got_error(GOT_ERR_STAGED_PATHS);
6928 goto done;
6931 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6932 if (err)
6933 goto done;
6935 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6936 if (err)
6937 goto done;
6939 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6940 if (err)
6941 goto done;
6943 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6944 worktree);
6945 if (err)
6946 goto done;
6948 err = got_ref_open(branch_ref, repo, branch_ref_name, 0);
6949 if (err)
6950 goto done;
6952 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6953 if (err)
6954 goto done;
6955 err = got_ref_resolve(commit_id, repo, commit_ref);
6956 if (err)
6957 goto done;
6959 err = got_ref_open(&base_commit_ref, repo, base_commit_ref_name, 0);
6960 if (err)
6961 goto done;
6962 err = got_ref_resolve(base_commit_id, repo, base_commit_ref);
6963 if (err)
6964 goto done;
6966 err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
6967 if (err)
6968 goto done;
6969 done:
6970 free(commit_ref_name);
6971 free(branch_ref_name);
6972 free(fileindex_path);
6973 if (commit_ref)
6974 got_ref_close(commit_ref);
6975 if (base_commit_ref)
6976 got_ref_close(base_commit_ref);
6977 if (err) {
6978 free(*commit_id);
6979 *commit_id = NULL;
6980 free(*base_commit_id);
6981 *base_commit_id = NULL;
6982 if (*tmp_branch) {
6983 got_ref_close(*tmp_branch);
6984 *tmp_branch = NULL;
6986 if (*fileindex) {
6987 got_fileindex_free(*fileindex);
6988 *fileindex = NULL;
6990 lock_worktree(worktree, LOCK_EX);
6992 return err;
6995 static const struct got_error *
6996 delete_histedit_refs(struct got_worktree *worktree, struct got_repository *repo)
6998 const struct got_error *err;
6999 char *tmp_branch_name = NULL, *base_commit_ref_name = NULL;
7000 char *branch_ref_name = NULL, *commit_ref_name = NULL;
7002 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
7003 if (err)
7004 goto done;
7005 err = delete_ref(tmp_branch_name, repo);
7006 if (err)
7007 goto done;
7009 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
7010 worktree);
7011 if (err)
7012 goto done;
7013 err = delete_ref(base_commit_ref_name, repo);
7014 if (err)
7015 goto done;
7017 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
7018 if (err)
7019 goto done;
7020 err = delete_ref(branch_ref_name, repo);
7021 if (err)
7022 goto done;
7024 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
7025 if (err)
7026 goto done;
7027 err = delete_ref(commit_ref_name, repo);
7028 if (err)
7029 goto done;
7030 done:
7031 free(tmp_branch_name);
7032 free(base_commit_ref_name);
7033 free(branch_ref_name);
7034 free(commit_ref_name);
7035 return err;
7038 const struct got_error *
7039 got_worktree_histedit_abort(struct got_worktree *worktree,
7040 struct got_fileindex *fileindex, struct got_repository *repo,
7041 struct got_reference *branch, struct got_object_id *base_commit_id,
7042 got_worktree_checkout_cb progress_cb, void *progress_arg)
7044 const struct got_error *err, *unlockerr, *sync_err;
7045 struct got_reference *resolved = NULL;
7046 char *fileindex_path = NULL;
7047 struct got_object_id *tree_id = NULL;
7048 struct revert_file_args rfa;
7050 err = lock_worktree(worktree, LOCK_EX);
7051 if (err)
7052 return err;
7054 err = got_ref_open(&resolved, repo,
7055 got_ref_get_symref_target(branch), 0);
7056 if (err)
7057 goto done;
7059 err = got_worktree_set_head_ref(worktree, resolved);
7060 if (err)
7061 goto done;
7063 err = got_worktree_set_base_commit_id(worktree, repo, base_commit_id);
7064 if (err)
7065 goto done;
7067 err = got_object_id_by_path(&tree_id, repo, base_commit_id,
7068 worktree->path_prefix);
7069 if (err)
7070 goto done;
7072 err = delete_histedit_refs(worktree, repo);
7073 if (err)
7074 goto done;
7076 err = get_fileindex_path(&fileindex_path, worktree);
7077 if (err)
7078 goto done;
7080 rfa.worktree = worktree;
7081 rfa.fileindex = fileindex;
7082 rfa.progress_cb = progress_cb;
7083 rfa.progress_arg = progress_arg;
7084 rfa.patch_cb = NULL;
7085 rfa.patch_arg = NULL;
7086 rfa.repo = repo;
7087 rfa.unlink_added_files = 0;
7088 err = worktree_status(worktree, "", fileindex, repo,
7089 revert_file, &rfa, NULL, NULL, 1, 0);
7090 if (err)
7091 goto sync;
7093 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
7094 repo, progress_cb, progress_arg, NULL, NULL);
7095 sync:
7096 sync_err = sync_fileindex(fileindex, fileindex_path);
7097 if (sync_err && err == NULL)
7098 err = sync_err;
7099 done:
7100 got_ref_close(resolved);
7101 free(tree_id);
7102 free(fileindex_path);
7104 unlockerr = lock_worktree(worktree, LOCK_SH);
7105 if (unlockerr && err == NULL)
7106 err = unlockerr;
7107 return err;
7110 const struct got_error *
7111 got_worktree_histedit_complete(struct got_worktree *worktree,
7112 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
7113 struct got_reference *edited_branch, struct got_repository *repo)
7115 const struct got_error *err, *unlockerr, *sync_err;
7116 struct got_object_id *new_head_commit_id = NULL;
7117 struct got_reference *resolved = NULL;
7118 char *fileindex_path = NULL;
7120 err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
7121 if (err)
7122 return err;
7124 err = got_ref_open(&resolved, repo,
7125 got_ref_get_symref_target(edited_branch), 0);
7126 if (err)
7127 goto done;
7129 err = create_backup_ref(GOT_WORKTREE_HISTEDIT_BACKUP_REF_PREFIX,
7130 resolved, new_head_commit_id, repo);
7131 if (err)
7132 goto done;
7134 err = got_ref_change_ref(resolved, new_head_commit_id);
7135 if (err)
7136 goto done;
7138 err = got_ref_write(resolved, repo);
7139 if (err)
7140 goto done;
7142 err = got_worktree_set_head_ref(worktree, resolved);
7143 if (err)
7144 goto done;
7146 err = delete_histedit_refs(worktree, repo);
7147 if (err)
7148 goto done;
7150 err = get_fileindex_path(&fileindex_path, worktree);
7151 if (err)
7152 goto done;
7153 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7154 sync_err = sync_fileindex(fileindex, fileindex_path);
7155 if (sync_err && err == NULL)
7156 err = sync_err;
7157 done:
7158 got_fileindex_free(fileindex);
7159 free(fileindex_path);
7160 free(new_head_commit_id);
7161 unlockerr = lock_worktree(worktree, LOCK_SH);
7162 if (unlockerr && err == NULL)
7163 err = unlockerr;
7164 return err;
7167 const struct got_error *
7168 got_worktree_histedit_skip_commit(struct got_worktree *worktree,
7169 struct got_object_id *commit_id, struct got_repository *repo)
7171 const struct got_error *err;
7172 char *commit_ref_name;
7174 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
7175 if (err)
7176 return err;
7178 err = store_commit_id(commit_ref_name, commit_id, 0, repo);
7179 if (err)
7180 goto done;
7182 err = delete_ref(commit_ref_name, repo);
7183 done:
7184 free(commit_ref_name);
7185 return err;
7188 const struct got_error *
7189 got_worktree_integrate_prepare(struct got_fileindex **fileindex,
7190 struct got_reference **branch_ref, struct got_reference **base_branch_ref,
7191 struct got_worktree *worktree, const char *refname,
7192 struct got_repository *repo)
7194 const struct got_error *err = NULL;
7195 char *fileindex_path = NULL;
7196 struct check_rebase_ok_arg ok_arg;
7198 *fileindex = NULL;
7199 *branch_ref = NULL;
7200 *base_branch_ref = NULL;
7202 err = lock_worktree(worktree, LOCK_EX);
7203 if (err)
7204 return err;
7206 if (strcmp(refname, got_worktree_get_head_ref_name(worktree)) == 0) {
7207 err = got_error_msg(GOT_ERR_SAME_BRANCH,
7208 "cannot integrate a branch into itself; "
7209 "update -b or different branch name required");
7210 goto done;
7213 err = open_fileindex(fileindex, &fileindex_path, worktree);
7214 if (err)
7215 goto done;
7217 /* Preconditions are the same as for rebase. */
7218 ok_arg.worktree = worktree;
7219 ok_arg.repo = repo;
7220 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
7221 &ok_arg);
7222 if (err)
7223 goto done;
7225 err = got_ref_open(branch_ref, repo, refname, 1);
7226 if (err)
7227 goto done;
7229 err = got_ref_open(base_branch_ref, repo,
7230 got_worktree_get_head_ref_name(worktree), 1);
7231 done:
7232 if (err) {
7233 if (*branch_ref) {
7234 got_ref_close(*branch_ref);
7235 *branch_ref = NULL;
7237 if (*base_branch_ref) {
7238 got_ref_close(*base_branch_ref);
7239 *base_branch_ref = NULL;
7241 if (*fileindex) {
7242 got_fileindex_free(*fileindex);
7243 *fileindex = NULL;
7245 lock_worktree(worktree, LOCK_SH);
7247 return err;
7250 const struct got_error *
7251 got_worktree_integrate_continue(struct got_worktree *worktree,
7252 struct got_fileindex *fileindex, struct got_repository *repo,
7253 struct got_reference *branch_ref, struct got_reference *base_branch_ref,
7254 got_worktree_checkout_cb progress_cb, void *progress_arg,
7255 got_cancel_cb cancel_cb, void *cancel_arg)
7257 const struct got_error *err = NULL, *sync_err, *unlockerr;
7258 char *fileindex_path = NULL;
7259 struct got_object_id *tree_id = NULL, *commit_id = NULL;
7261 err = get_fileindex_path(&fileindex_path, worktree);
7262 if (err)
7263 goto done;
7265 err = got_ref_resolve(&commit_id, repo, branch_ref);
7266 if (err)
7267 goto done;
7269 err = got_object_id_by_path(&tree_id, repo, commit_id,
7270 worktree->path_prefix);
7271 if (err)
7272 goto done;
7274 err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
7275 if (err)
7276 goto done;
7278 err = checkout_files(worktree, fileindex, "", tree_id, NULL, repo,
7279 progress_cb, progress_arg, cancel_cb, cancel_arg);
7280 if (err)
7281 goto sync;
7283 err = got_ref_change_ref(base_branch_ref, commit_id);
7284 if (err)
7285 goto sync;
7287 err = got_ref_write(base_branch_ref, repo);
7288 if (err)
7289 goto sync;
7291 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7292 sync:
7293 sync_err = sync_fileindex(fileindex, fileindex_path);
7294 if (sync_err && err == NULL)
7295 err = sync_err;
7297 done:
7298 unlockerr = got_ref_unlock(branch_ref);
7299 if (unlockerr && err == NULL)
7300 err = unlockerr;
7301 got_ref_close(branch_ref);
7303 unlockerr = got_ref_unlock(base_branch_ref);
7304 if (unlockerr && err == NULL)
7305 err = unlockerr;
7306 got_ref_close(base_branch_ref);
7308 got_fileindex_free(fileindex);
7309 free(fileindex_path);
7310 free(tree_id);
7312 unlockerr = lock_worktree(worktree, LOCK_SH);
7313 if (unlockerr && err == NULL)
7314 err = unlockerr;
7315 return err;
7318 const struct got_error *
7319 got_worktree_integrate_abort(struct got_worktree *worktree,
7320 struct got_fileindex *fileindex, struct got_repository *repo,
7321 struct got_reference *branch_ref, struct got_reference *base_branch_ref)
7323 const struct got_error *err = NULL, *unlockerr = NULL;
7325 got_fileindex_free(fileindex);
7327 err = lock_worktree(worktree, LOCK_SH);
7329 unlockerr = got_ref_unlock(branch_ref);
7330 if (unlockerr && err == NULL)
7331 err = unlockerr;
7332 got_ref_close(branch_ref);
7334 unlockerr = got_ref_unlock(base_branch_ref);
7335 if (unlockerr && err == NULL)
7336 err = unlockerr;
7337 got_ref_close(base_branch_ref);
7339 return err;
7342 const struct got_error *
7343 got_worktree_merge_postpone(struct got_worktree *worktree,
7344 struct got_fileindex *fileindex)
7346 const struct got_error *err, *sync_err;
7347 char *fileindex_path = NULL;
7349 err = get_fileindex_path(&fileindex_path, worktree);
7350 if (err)
7351 goto done;
7353 sync_err = sync_fileindex(fileindex, fileindex_path);
7355 err = lock_worktree(worktree, LOCK_SH);
7356 if (sync_err && err == NULL)
7357 err = sync_err;
7358 done:
7359 got_fileindex_free(fileindex);
7360 free(fileindex_path);
7361 return err;
7364 static const struct got_error *
7365 delete_merge_refs(struct got_worktree *worktree, struct got_repository *repo)
7367 const struct got_error *err;
7368 char *branch_refname = NULL, *commit_refname = NULL;
7370 err = get_merge_branch_ref_name(&branch_refname, worktree);
7371 if (err)
7372 goto done;
7373 err = delete_ref(branch_refname, repo);
7374 if (err)
7375 goto done;
7377 err = get_merge_commit_ref_name(&commit_refname, worktree);
7378 if (err)
7379 goto done;
7380 err = delete_ref(commit_refname, repo);
7381 if (err)
7382 goto done;
7384 done:
7385 free(branch_refname);
7386 free(commit_refname);
7387 return err;
7390 struct merge_commit_msg_arg {
7391 struct got_worktree *worktree;
7392 const char *branch_name;
7395 static const struct got_error *
7396 merge_commit_msg_cb(struct got_pathlist_head *commitable_paths, char **logmsg,
7397 void *arg)
7399 struct merge_commit_msg_arg *a = arg;
7401 if (asprintf(logmsg, "merge %s into %s\n", a->branch_name,
7402 got_worktree_get_head_ref_name(a->worktree)) == -1)
7403 return got_error_from_errno("asprintf");
7405 return NULL;
7409 const struct got_error *
7410 got_worktree_merge_branch(struct got_worktree *worktree,
7411 struct got_fileindex *fileindex,
7412 struct got_object_id *yca_commit_id,
7413 struct got_object_id *branch_tip,
7414 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
7415 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
7417 const struct got_error *err;
7418 char *fileindex_path = NULL;
7420 err = get_fileindex_path(&fileindex_path, worktree);
7421 if (err)
7422 goto done;
7424 err = got_fileindex_for_each_entry_safe(fileindex, check_mixed_commits,
7425 worktree);
7426 if (err)
7427 goto done;
7429 err = merge_files(worktree, fileindex, fileindex_path, yca_commit_id,
7430 branch_tip, repo, progress_cb, progress_arg,
7431 cancel_cb, cancel_arg);
7432 done:
7433 free(fileindex_path);
7434 return err;
7437 const struct got_error *
7438 got_worktree_merge_commit(struct got_object_id **new_commit_id,
7439 struct got_worktree *worktree, struct got_fileindex *fileindex,
7440 const char *author, const char *committer, int allow_bad_symlinks,
7441 struct got_object_id *branch_tip, const char *branch_name,
7442 struct got_repository *repo,
7443 got_worktree_status_cb status_cb, void *status_arg)
7446 const struct got_error *err = NULL, *sync_err;
7447 struct got_pathlist_head commitable_paths;
7448 struct collect_commitables_arg cc_arg;
7449 struct got_pathlist_entry *pe;
7450 struct got_reference *head_ref = NULL;
7451 struct got_object_id *head_commit_id = NULL;
7452 int have_staged_files = 0;
7453 struct merge_commit_msg_arg mcm_arg;
7454 char *fileindex_path = NULL;
7456 *new_commit_id = NULL;
7458 TAILQ_INIT(&commitable_paths);
7460 err = get_fileindex_path(&fileindex_path, worktree);
7461 if (err)
7462 goto done;
7464 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
7465 if (err)
7466 goto done;
7468 err = got_ref_resolve(&head_commit_id, repo, head_ref);
7469 if (err)
7470 goto done;
7472 err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
7473 &have_staged_files);
7474 if (err && err->code != GOT_ERR_CANCELLED)
7475 goto done;
7476 if (have_staged_files) {
7477 err = got_error(GOT_ERR_MERGE_STAGED_PATHS);
7478 goto done;
7481 cc_arg.commitable_paths = &commitable_paths;
7482 cc_arg.worktree = worktree;
7483 cc_arg.fileindex = fileindex;
7484 cc_arg.repo = repo;
7485 cc_arg.have_staged_files = have_staged_files;
7486 cc_arg.allow_bad_symlinks = allow_bad_symlinks;
7487 err = worktree_status(worktree, "", fileindex, repo,
7488 collect_commitables, &cc_arg, NULL, NULL, 1, 0);
7489 if (err)
7490 goto done;
7492 if (TAILQ_EMPTY(&commitable_paths)) {
7493 err = got_error_fmt(GOT_ERR_COMMIT_NO_CHANGES,
7494 "merge of %s cannot proceed", branch_name);
7495 goto done;
7498 TAILQ_FOREACH(pe, &commitable_paths, entry) {
7499 struct got_commitable *ct = pe->data;
7500 const char *ct_path = ct->in_repo_path;
7502 while (ct_path[0] == '/')
7503 ct_path++;
7504 err = check_out_of_date(ct_path, ct->status,
7505 ct->staged_status, ct->base_blob_id, ct->base_commit_id,
7506 head_commit_id, repo, GOT_ERR_MERGE_COMMIT_OUT_OF_DATE);
7507 if (err)
7508 goto done;
7512 mcm_arg.worktree = worktree;
7513 mcm_arg.branch_name = branch_name;
7514 err = commit_worktree(new_commit_id, &commitable_paths,
7515 head_commit_id, branch_tip, worktree, author, committer,
7516 merge_commit_msg_cb, &mcm_arg, status_cb, status_arg, repo);
7517 if (err)
7518 goto done;
7520 err = update_fileindex_after_commit(worktree, &commitable_paths,
7521 *new_commit_id, fileindex, have_staged_files);
7522 sync_err = sync_fileindex(fileindex, fileindex_path);
7523 if (sync_err && err == NULL)
7524 err = sync_err;
7525 done:
7526 TAILQ_FOREACH(pe, &commitable_paths, entry) {
7527 struct got_commitable *ct = pe->data;
7528 free_commitable(ct);
7530 got_pathlist_free(&commitable_paths);
7531 free(fileindex_path);
7532 return err;
7535 const struct got_error *
7536 got_worktree_merge_complete(struct got_worktree *worktree,
7537 struct got_fileindex *fileindex, struct got_repository *repo)
7539 const struct got_error *err, *unlockerr, *sync_err;
7540 char *fileindex_path = NULL;
7542 err = delete_merge_refs(worktree, repo);
7543 if (err)
7544 goto done;
7546 err = get_fileindex_path(&fileindex_path, worktree);
7547 if (err)
7548 goto done;
7549 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7550 sync_err = sync_fileindex(fileindex, fileindex_path);
7551 if (sync_err && err == NULL)
7552 err = sync_err;
7553 done:
7554 got_fileindex_free(fileindex);
7555 free(fileindex_path);
7556 unlockerr = lock_worktree(worktree, LOCK_SH);
7557 if (unlockerr && err == NULL)
7558 err = unlockerr;
7559 return err;
7562 const struct got_error *
7563 got_worktree_merge_in_progress(int *in_progress, struct got_worktree *worktree,
7564 struct got_repository *repo)
7566 const struct got_error *err;
7567 char *branch_refname = NULL;
7568 struct got_reference *branch_ref = NULL;
7570 *in_progress = 0;
7572 err = get_merge_branch_ref_name(&branch_refname, worktree);
7573 if (err)
7574 return err;
7575 err = got_ref_open(&branch_ref, repo, branch_refname, 0);
7576 free(branch_refname);
7577 if (err) {
7578 if (err->code != GOT_ERR_NOT_REF)
7579 return err;
7580 } else
7581 *in_progress = 1;
7583 return NULL;
7586 const struct got_error *got_worktree_merge_prepare(
7587 struct got_fileindex **fileindex, struct got_worktree *worktree,
7588 struct got_reference *branch, struct got_repository *repo)
7590 const struct got_error *err = NULL;
7591 char *fileindex_path = NULL;
7592 char *branch_refname = NULL, *commit_refname = NULL;
7593 struct got_reference *wt_branch = NULL, *branch_ref = NULL;
7594 struct got_reference *commit_ref = NULL;
7595 struct got_object_id *branch_tip = NULL, *wt_branch_tip = NULL;
7596 struct check_rebase_ok_arg ok_arg;
7598 *fileindex = NULL;
7600 err = lock_worktree(worktree, LOCK_EX);
7601 if (err)
7602 return err;
7604 err = open_fileindex(fileindex, &fileindex_path, worktree);
7605 if (err)
7606 goto done;
7608 /* Preconditions are the same as for rebase. */
7609 ok_arg.worktree = worktree;
7610 ok_arg.repo = repo;
7611 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
7612 &ok_arg);
7613 if (err)
7614 goto done;
7616 err = get_merge_branch_ref_name(&branch_refname, worktree);
7617 if (err)
7618 return err;
7620 err = get_merge_commit_ref_name(&commit_refname, worktree);
7621 if (err)
7622 return err;
7624 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
7625 0);
7626 if (err)
7627 goto done;
7629 err = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
7630 if (err)
7631 goto done;
7633 if (got_object_id_cmp(worktree->base_commit_id, wt_branch_tip) != 0) {
7634 err = got_error(GOT_ERR_MERGE_OUT_OF_DATE);
7635 goto done;
7638 err = got_ref_resolve(&branch_tip, repo, branch);
7639 if (err)
7640 goto done;
7642 err = got_ref_alloc_symref(&branch_ref, branch_refname, branch);
7643 if (err)
7644 goto done;
7645 err = got_ref_write(branch_ref, repo);
7646 if (err)
7647 goto done;
7649 err = got_ref_alloc(&commit_ref, commit_refname, branch_tip);
7650 if (err)
7651 goto done;
7652 err = got_ref_write(commit_ref, repo);
7653 if (err)
7654 goto done;
7656 done:
7657 free(branch_refname);
7658 free(commit_refname);
7659 free(fileindex_path);
7660 if (branch_ref)
7661 got_ref_close(branch_ref);
7662 if (commit_ref)
7663 got_ref_close(commit_ref);
7664 if (wt_branch)
7665 got_ref_close(wt_branch);
7666 free(wt_branch_tip);
7667 if (err) {
7668 if (*fileindex) {
7669 got_fileindex_free(*fileindex);
7670 *fileindex = NULL;
7672 lock_worktree(worktree, LOCK_SH);
7674 return err;
7677 const struct got_error *
7678 got_worktree_merge_continue(char **branch_name,
7679 struct got_object_id **branch_tip, struct got_fileindex **fileindex,
7680 struct got_worktree *worktree, struct got_repository *repo)
7682 const struct got_error *err;
7683 char *commit_refname = NULL, *branch_refname = NULL;
7684 struct got_reference *commit_ref = NULL, *branch_ref = NULL;
7685 char *fileindex_path = NULL;
7686 int have_staged_files = 0;
7688 *branch_name = NULL;
7689 *branch_tip = NULL;
7690 *fileindex = NULL;
7692 err = lock_worktree(worktree, LOCK_EX);
7693 if (err)
7694 return err;
7696 err = open_fileindex(fileindex, &fileindex_path, worktree);
7697 if (err)
7698 goto done;
7700 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
7701 &have_staged_files);
7702 if (err && err->code != GOT_ERR_CANCELLED)
7703 goto done;
7704 if (have_staged_files) {
7705 err = got_error(GOT_ERR_STAGED_PATHS);
7706 goto done;
7709 err = get_merge_branch_ref_name(&branch_refname, worktree);
7710 if (err)
7711 goto done;
7713 err = get_merge_commit_ref_name(&commit_refname, worktree);
7714 if (err)
7715 goto done;
7717 err = got_ref_open(&branch_ref, repo, branch_refname, 0);
7718 if (err)
7719 goto done;
7721 if (!got_ref_is_symbolic(branch_ref)) {
7722 err = got_error_fmt(GOT_ERR_BAD_REF_TYPE,
7723 "%s is not a symbolic reference",
7724 got_ref_get_name(branch_ref));
7725 goto done;
7727 *branch_name = strdup(got_ref_get_symref_target(branch_ref));
7728 if (*branch_name == NULL) {
7729 err = got_error_from_errno("strdup");
7730 goto done;
7733 err = got_ref_open(&commit_ref, repo, commit_refname, 0);
7734 if (err)
7735 goto done;
7737 err = got_ref_resolve(branch_tip, repo, commit_ref);
7738 if (err)
7739 goto done;
7740 done:
7741 free(commit_refname);
7742 free(branch_refname);
7743 free(fileindex_path);
7744 if (commit_ref)
7745 got_ref_close(commit_ref);
7746 if (branch_ref)
7747 got_ref_close(branch_ref);
7748 if (err) {
7749 if (*branch_name) {
7750 free(*branch_name);
7751 *branch_name = NULL;
7753 free(*branch_tip);
7754 *branch_tip = NULL;
7755 if (*fileindex) {
7756 got_fileindex_free(*fileindex);
7757 *fileindex = NULL;
7759 lock_worktree(worktree, LOCK_SH);
7761 return err;
7764 const struct got_error *
7765 got_worktree_merge_abort(struct got_worktree *worktree,
7766 struct got_fileindex *fileindex, struct got_repository *repo,
7767 got_worktree_checkout_cb progress_cb, void *progress_arg)
7769 const struct got_error *err, *unlockerr, *sync_err;
7770 struct got_object_id *commit_id = NULL;
7771 char *fileindex_path = NULL;
7772 struct revert_file_args rfa;
7773 struct got_object_id *tree_id = NULL;
7775 err = got_object_id_by_path(&tree_id, repo,
7776 worktree->base_commit_id, worktree->path_prefix);
7777 if (err)
7778 goto done;
7780 err = delete_merge_refs(worktree, repo);
7781 if (err)
7782 goto done;
7784 err = get_fileindex_path(&fileindex_path, worktree);
7785 if (err)
7786 goto done;
7788 rfa.worktree = worktree;
7789 rfa.fileindex = fileindex;
7790 rfa.progress_cb = progress_cb;
7791 rfa.progress_arg = progress_arg;
7792 rfa.patch_cb = NULL;
7793 rfa.patch_arg = NULL;
7794 rfa.repo = repo;
7795 rfa.unlink_added_files = 1;
7796 err = worktree_status(worktree, "", fileindex, repo,
7797 revert_file, &rfa, NULL, NULL, 1, 0);
7798 if (err)
7799 goto sync;
7801 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
7802 repo, progress_cb, progress_arg, NULL, NULL);
7803 sync:
7804 sync_err = sync_fileindex(fileindex, fileindex_path);
7805 if (sync_err && err == NULL)
7806 err = sync_err;
7807 done:
7808 free(tree_id);
7809 free(commit_id);
7810 if (fileindex)
7811 got_fileindex_free(fileindex);
7812 free(fileindex_path);
7814 unlockerr = lock_worktree(worktree, LOCK_SH);
7815 if (unlockerr && err == NULL)
7816 err = unlockerr;
7817 return err;
7820 struct check_stage_ok_arg {
7821 struct got_object_id *head_commit_id;
7822 struct got_worktree *worktree;
7823 struct got_fileindex *fileindex;
7824 struct got_repository *repo;
7825 int have_changes;
7828 const struct got_error *
7829 check_stage_ok(void *arg, unsigned char status,
7830 unsigned char staged_status, const char *relpath,
7831 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7832 struct got_object_id *commit_id, int dirfd, const char *de_name)
7834 struct check_stage_ok_arg *a = arg;
7835 const struct got_error *err = NULL;
7836 struct got_fileindex_entry *ie;
7837 struct got_object_id base_commit_id;
7838 struct got_object_id *base_commit_idp = NULL;
7839 char *in_repo_path = NULL, *p;
7841 if (status == GOT_STATUS_UNVERSIONED ||
7842 status == GOT_STATUS_NO_CHANGE)
7843 return NULL;
7844 if (status == GOT_STATUS_NONEXISTENT)
7845 return got_error_set_errno(ENOENT, relpath);
7847 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7848 if (ie == NULL)
7849 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7851 if (asprintf(&in_repo_path, "%s%s%s", a->worktree->path_prefix,
7852 got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
7853 relpath) == -1)
7854 return got_error_from_errno("asprintf");
7856 if (got_fileindex_entry_has_commit(ie)) {
7857 memcpy(base_commit_id.sha1, ie->commit_sha1,
7858 SHA1_DIGEST_LENGTH);
7859 base_commit_idp = &base_commit_id;
7862 if (status == GOT_STATUS_CONFLICT) {
7863 err = got_error_path(ie->path, GOT_ERR_STAGE_CONFLICT);
7864 goto done;
7865 } else if (status != GOT_STATUS_ADD &&
7866 status != GOT_STATUS_MODIFY &&
7867 status != GOT_STATUS_DELETE) {
7868 err = got_error_path(ie->path, GOT_ERR_FILE_STATUS);
7869 goto done;
7872 a->have_changes = 1;
7874 p = in_repo_path;
7875 while (p[0] == '/')
7876 p++;
7877 err = check_out_of_date(p, status, staged_status,
7878 blob_id, base_commit_idp, a->head_commit_id, a->repo,
7879 GOT_ERR_STAGE_OUT_OF_DATE);
7880 done:
7881 free(in_repo_path);
7882 return err;
7885 struct stage_path_arg {
7886 struct got_worktree *worktree;
7887 struct got_fileindex *fileindex;
7888 struct got_repository *repo;
7889 got_worktree_status_cb status_cb;
7890 void *status_arg;
7891 got_worktree_patch_cb patch_cb;
7892 void *patch_arg;
7893 int staged_something;
7894 int allow_bad_symlinks;
7897 static const struct got_error *
7898 stage_path(void *arg, unsigned char status,
7899 unsigned char staged_status, const char *relpath,
7900 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7901 struct got_object_id *commit_id, int dirfd, const char *de_name)
7903 struct stage_path_arg *a = arg;
7904 const struct got_error *err = NULL;
7905 struct got_fileindex_entry *ie;
7906 char *ondisk_path = NULL, *path_content = NULL;
7907 uint32_t stage;
7908 struct got_object_id *new_staged_blob_id = NULL;
7909 struct stat sb;
7911 if (status == GOT_STATUS_UNVERSIONED)
7912 return NULL;
7914 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7915 if (ie == NULL)
7916 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7918 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
7919 relpath)== -1)
7920 return got_error_from_errno("asprintf");
7922 switch (status) {
7923 case GOT_STATUS_ADD:
7924 case GOT_STATUS_MODIFY:
7925 /* XXX could sb.st_mode be passed in by our caller? */
7926 if (lstat(ondisk_path, &sb) == -1) {
7927 err = got_error_from_errno2("lstat", ondisk_path);
7928 break;
7930 if (a->patch_cb) {
7931 if (status == GOT_STATUS_ADD) {
7932 int choice = GOT_PATCH_CHOICE_NONE;
7933 err = (*a->patch_cb)(&choice, a->patch_arg,
7934 status, ie->path, NULL, 1, 1);
7935 if (err)
7936 break;
7937 if (choice != GOT_PATCH_CHOICE_YES)
7938 break;
7939 } else {
7940 err = create_patched_content(&path_content, 0,
7941 staged_blob_id ? staged_blob_id : blob_id,
7942 ondisk_path, dirfd, de_name, ie->path,
7943 a->repo, a->patch_cb, a->patch_arg);
7944 if (err || path_content == NULL)
7945 break;
7948 err = got_object_blob_create(&new_staged_blob_id,
7949 path_content ? path_content : ondisk_path, a->repo);
7950 if (err)
7951 break;
7952 memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
7953 SHA1_DIGEST_LENGTH);
7954 if (status == GOT_STATUS_ADD || staged_status == GOT_STATUS_ADD)
7955 stage = GOT_FILEIDX_STAGE_ADD;
7956 else
7957 stage = GOT_FILEIDX_STAGE_MODIFY;
7958 got_fileindex_entry_stage_set(ie, stage);
7959 if (S_ISLNK(sb.st_mode)) {
7960 int is_bad_symlink = 0;
7961 if (!a->allow_bad_symlinks) {
7962 char target_path[PATH_MAX];
7963 ssize_t target_len;
7964 target_len = readlink(ondisk_path, target_path,
7965 sizeof(target_path));
7966 if (target_len == -1) {
7967 err = got_error_from_errno2("readlink",
7968 ondisk_path);
7969 break;
7971 err = is_bad_symlink_target(&is_bad_symlink,
7972 target_path, target_len, ondisk_path,
7973 a->worktree->root_path);
7974 if (err)
7975 break;
7976 if (is_bad_symlink) {
7977 err = got_error_path(ondisk_path,
7978 GOT_ERR_BAD_SYMLINK);
7979 break;
7982 if (is_bad_symlink)
7983 got_fileindex_entry_staged_filetype_set(ie,
7984 GOT_FILEIDX_MODE_BAD_SYMLINK);
7985 else
7986 got_fileindex_entry_staged_filetype_set(ie,
7987 GOT_FILEIDX_MODE_SYMLINK);
7988 } else {
7989 got_fileindex_entry_staged_filetype_set(ie,
7990 GOT_FILEIDX_MODE_REGULAR_FILE);
7992 a->staged_something = 1;
7993 if (a->status_cb == NULL)
7994 break;
7995 err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
7996 get_staged_status(ie), relpath, blob_id,
7997 new_staged_blob_id, NULL, dirfd, de_name);
7998 break;
7999 case GOT_STATUS_DELETE:
8000 if (staged_status == GOT_STATUS_DELETE)
8001 break;
8002 if (a->patch_cb) {
8003 int choice = GOT_PATCH_CHOICE_NONE;
8004 err = (*a->patch_cb)(&choice, a->patch_arg, status,
8005 ie->path, NULL, 1, 1);
8006 if (err)
8007 break;
8008 if (choice == GOT_PATCH_CHOICE_NO)
8009 break;
8010 if (choice != GOT_PATCH_CHOICE_YES) {
8011 err = got_error(GOT_ERR_PATCH_CHOICE);
8012 break;
8015 stage = GOT_FILEIDX_STAGE_DELETE;
8016 got_fileindex_entry_stage_set(ie, stage);
8017 a->staged_something = 1;
8018 if (a->status_cb == NULL)
8019 break;
8020 err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
8021 get_staged_status(ie), relpath, NULL, NULL, NULL, dirfd,
8022 de_name);
8023 break;
8024 case GOT_STATUS_NO_CHANGE:
8025 break;
8026 case GOT_STATUS_CONFLICT:
8027 err = got_error_path(relpath, GOT_ERR_STAGE_CONFLICT);
8028 break;
8029 case GOT_STATUS_NONEXISTENT:
8030 err = got_error_set_errno(ENOENT, relpath);
8031 break;
8032 default:
8033 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
8034 break;
8037 if (path_content && unlink(path_content) == -1 && err == NULL)
8038 err = got_error_from_errno2("unlink", path_content);
8039 free(path_content);
8040 free(ondisk_path);
8041 free(new_staged_blob_id);
8042 return err;
8045 const struct got_error *
8046 got_worktree_stage(struct got_worktree *worktree,
8047 struct got_pathlist_head *paths,
8048 got_worktree_status_cb status_cb, void *status_arg,
8049 got_worktree_patch_cb patch_cb, void *patch_arg,
8050 int allow_bad_symlinks, struct got_repository *repo)
8052 const struct got_error *err = NULL, *sync_err, *unlockerr;
8053 struct got_pathlist_entry *pe;
8054 struct got_fileindex *fileindex = NULL;
8055 char *fileindex_path = NULL;
8056 struct got_reference *head_ref = NULL;
8057 struct got_object_id *head_commit_id = NULL;
8058 struct check_stage_ok_arg oka;
8059 struct stage_path_arg spa;
8061 err = lock_worktree(worktree, LOCK_EX);
8062 if (err)
8063 return err;
8065 err = got_ref_open(&head_ref, repo,
8066 got_worktree_get_head_ref_name(worktree), 0);
8067 if (err)
8068 goto done;
8069 err = got_ref_resolve(&head_commit_id, repo, head_ref);
8070 if (err)
8071 goto done;
8072 err = open_fileindex(&fileindex, &fileindex_path, worktree);
8073 if (err)
8074 goto done;
8076 /* Check pre-conditions before staging anything. */
8077 oka.head_commit_id = head_commit_id;
8078 oka.worktree = worktree;
8079 oka.fileindex = fileindex;
8080 oka.repo = repo;
8081 oka.have_changes = 0;
8082 TAILQ_FOREACH(pe, paths, entry) {
8083 err = worktree_status(worktree, pe->path, fileindex, repo,
8084 check_stage_ok, &oka, NULL, NULL, 1, 0);
8085 if (err)
8086 goto done;
8088 if (!oka.have_changes) {
8089 err = got_error(GOT_ERR_STAGE_NO_CHANGE);
8090 goto done;
8093 spa.worktree = worktree;
8094 spa.fileindex = fileindex;
8095 spa.repo = repo;
8096 spa.patch_cb = patch_cb;
8097 spa.patch_arg = patch_arg;
8098 spa.status_cb = status_cb;
8099 spa.status_arg = status_arg;
8100 spa.staged_something = 0;
8101 spa.allow_bad_symlinks = allow_bad_symlinks;
8102 TAILQ_FOREACH(pe, paths, entry) {
8103 err = worktree_status(worktree, pe->path, fileindex, repo,
8104 stage_path, &spa, NULL, NULL, 1, 0);
8105 if (err)
8106 goto done;
8108 if (!spa.staged_something) {
8109 err = got_error(GOT_ERR_STAGE_NO_CHANGE);
8110 goto done;
8113 sync_err = sync_fileindex(fileindex, fileindex_path);
8114 if (sync_err && err == NULL)
8115 err = sync_err;
8116 done:
8117 if (head_ref)
8118 got_ref_close(head_ref);
8119 free(head_commit_id);
8120 free(fileindex_path);
8121 if (fileindex)
8122 got_fileindex_free(fileindex);
8123 unlockerr = lock_worktree(worktree, LOCK_SH);
8124 if (unlockerr && err == NULL)
8125 err = unlockerr;
8126 return err;
8129 struct unstage_path_arg {
8130 struct got_worktree *worktree;
8131 struct got_fileindex *fileindex;
8132 struct got_repository *repo;
8133 got_worktree_checkout_cb progress_cb;
8134 void *progress_arg;
8135 got_worktree_patch_cb patch_cb;
8136 void *patch_arg;
8139 static const struct got_error *
8140 create_unstaged_content(char **path_unstaged_content,
8141 char **path_new_staged_content, struct got_object_id *blob_id,
8142 struct got_object_id *staged_blob_id, const char *relpath,
8143 struct got_repository *repo,
8144 got_worktree_patch_cb patch_cb, void *patch_arg)
8146 const struct got_error *err, *free_err;
8147 struct got_blob_object *blob = NULL, *staged_blob = NULL;
8148 FILE *f1 = NULL, *f2 = NULL, *outfile = NULL, *rejectfile = NULL;
8149 char *path1 = NULL, *path2 = NULL, *label1 = NULL;
8150 struct got_diffreg_result *diffreg_result = NULL;
8151 int line_cur1 = 1, line_cur2 = 1, n = 0, nchunks_used = 0;
8152 int have_content = 0, have_rejected_content = 0, i = 0, nchanges = 0;
8154 *path_unstaged_content = NULL;
8155 *path_new_staged_content = NULL;
8157 err = got_object_id_str(&label1, blob_id);
8158 if (err)
8159 return err;
8160 err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
8161 if (err)
8162 goto done;
8164 err = got_opentemp_named(&path1, &f1, "got-unstage-blob-base");
8165 if (err)
8166 goto done;
8168 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
8169 if (err)
8170 goto done;
8172 err = got_object_open_as_blob(&staged_blob, repo, staged_blob_id, 8192);
8173 if (err)
8174 goto done;
8176 err = got_opentemp_named(&path2, &f2, "got-unstage-blob-staged");
8177 if (err)
8178 goto done;
8180 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f2, staged_blob);
8181 if (err)
8182 goto done;
8184 err = got_diff_files(&diffreg_result, f1, label1, f2,
8185 path2, 3, 0, 1, NULL);
8186 if (err)
8187 goto done;
8189 err = got_opentemp_named(path_unstaged_content, &outfile,
8190 "got-unstaged-content");
8191 if (err)
8192 goto done;
8193 err = got_opentemp_named(path_new_staged_content, &rejectfile,
8194 "got-new-staged-content");
8195 if (err)
8196 goto done;
8198 if (fseek(f1, 0L, SEEK_SET) == -1) {
8199 err = got_ferror(f1, GOT_ERR_IO);
8200 goto done;
8202 if (fseek(f2, 0L, SEEK_SET) == -1) {
8203 err = got_ferror(f2, GOT_ERR_IO);
8204 goto done;
8206 /* Count the number of actual changes in the diff result. */
8207 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
8208 struct diff_chunk_context cc = {};
8209 diff_chunk_context_load_change(&cc, &nchunks_used,
8210 diffreg_result->result, n, 0);
8211 nchanges++;
8213 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
8214 int choice;
8215 err = apply_or_reject_change(&choice, &nchunks_used,
8216 diffreg_result->result, n, relpath, f1, f2,
8217 &line_cur1, &line_cur2,
8218 outfile, rejectfile, ++i, nchanges, patch_cb, patch_arg);
8219 if (err)
8220 goto done;
8221 if (choice == GOT_PATCH_CHOICE_YES)
8222 have_content = 1;
8223 else
8224 have_rejected_content = 1;
8225 if (choice == GOT_PATCH_CHOICE_QUIT)
8226 break;
8228 if (have_content || have_rejected_content)
8229 err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
8230 outfile, rejectfile);
8231 done:
8232 free(label1);
8233 if (blob)
8234 got_object_blob_close(blob);
8235 if (staged_blob)
8236 got_object_blob_close(staged_blob);
8237 free_err = got_diffreg_result_free(diffreg_result);
8238 if (free_err && err == NULL)
8239 err = free_err;
8240 if (f1 && fclose(f1) == EOF && err == NULL)
8241 err = got_error_from_errno2("fclose", path1);
8242 if (f2 && fclose(f2) == EOF && err == NULL)
8243 err = got_error_from_errno2("fclose", path2);
8244 if (outfile && fclose(outfile) == EOF && err == NULL)
8245 err = got_error_from_errno2("fclose", *path_unstaged_content);
8246 if (rejectfile && fclose(rejectfile) == EOF && err == NULL)
8247 err = got_error_from_errno2("fclose", *path_new_staged_content);
8248 if (path1 && unlink(path1) == -1 && err == NULL)
8249 err = got_error_from_errno2("unlink", path1);
8250 if (path2 && unlink(path2) == -1 && err == NULL)
8251 err = got_error_from_errno2("unlink", path2);
8252 if (err || !have_content) {
8253 if (*path_unstaged_content &&
8254 unlink(*path_unstaged_content) == -1 && err == NULL)
8255 err = got_error_from_errno2("unlink",
8256 *path_unstaged_content);
8257 free(*path_unstaged_content);
8258 *path_unstaged_content = NULL;
8260 if (err || !have_content || !have_rejected_content) {
8261 if (*path_new_staged_content &&
8262 unlink(*path_new_staged_content) == -1 && err == NULL)
8263 err = got_error_from_errno2("unlink",
8264 *path_new_staged_content);
8265 free(*path_new_staged_content);
8266 *path_new_staged_content = NULL;
8268 free(path1);
8269 free(path2);
8270 return err;
8273 static const struct got_error *
8274 unstage_hunks(struct got_object_id *staged_blob_id,
8275 struct got_blob_object *blob_base,
8276 struct got_object_id *blob_id, struct got_fileindex_entry *ie,
8277 const char *ondisk_path, const char *label_orig,
8278 struct got_worktree *worktree, struct got_repository *repo,
8279 got_worktree_patch_cb patch_cb, void *patch_arg,
8280 got_worktree_checkout_cb progress_cb, void *progress_arg)
8282 const struct got_error *err = NULL;
8283 char *path_unstaged_content = NULL;
8284 char *path_new_staged_content = NULL;
8285 char *parent = NULL, *base_path = NULL;
8286 char *blob_base_path = NULL;
8287 struct got_object_id *new_staged_blob_id = NULL;
8288 FILE *f = NULL, *f_base = NULL, *f_deriv2 = NULL;
8289 struct stat sb;
8291 err = create_unstaged_content(&path_unstaged_content,
8292 &path_new_staged_content, blob_id, staged_blob_id,
8293 ie->path, repo, patch_cb, patch_arg);
8294 if (err)
8295 return err;
8297 if (path_unstaged_content == NULL)
8298 return NULL;
8300 if (path_new_staged_content) {
8301 err = got_object_blob_create(&new_staged_blob_id,
8302 path_new_staged_content, repo);
8303 if (err)
8304 goto done;
8307 f = fopen(path_unstaged_content, "re");
8308 if (f == NULL) {
8309 err = got_error_from_errno2("fopen",
8310 path_unstaged_content);
8311 goto done;
8313 if (fstat(fileno(f), &sb) == -1) {
8314 err = got_error_from_errno2("fstat", path_unstaged_content);
8315 goto done;
8317 if (got_fileindex_entry_staged_filetype_get(ie) ==
8318 GOT_FILEIDX_MODE_SYMLINK && sb.st_size < PATH_MAX) {
8319 char link_target[PATH_MAX];
8320 size_t r;
8321 r = fread(link_target, 1, sizeof(link_target), f);
8322 if (r == 0 && ferror(f)) {
8323 err = got_error_from_errno("fread");
8324 goto done;
8326 if (r >= sizeof(link_target)) { /* should not happen */
8327 err = got_error(GOT_ERR_NO_SPACE);
8328 goto done;
8330 link_target[r] = '\0';
8331 err = merge_symlink(worktree, blob_base,
8332 ondisk_path, ie->path, label_orig, link_target,
8333 worktree->base_commit_id, repo, progress_cb,
8334 progress_arg);
8335 } else {
8336 int local_changes_subsumed;
8338 err = got_path_dirname(&parent, ondisk_path);
8339 if (err)
8340 return err;
8342 if (asprintf(&base_path, "%s/got-unstage-blob-orig",
8343 parent) == -1) {
8344 err = got_error_from_errno("asprintf");
8345 base_path = NULL;
8346 goto done;
8349 err = got_opentemp_named(&blob_base_path, &f_base, base_path);
8350 if (err)
8351 goto done;
8352 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_base,
8353 blob_base);
8354 if (err)
8355 goto done;
8358 * In order the run a 3-way merge with a symlink we copy the symlink's
8359 * target path into a temporary file and use that file with diff3.
8361 if (S_ISLNK(got_fileindex_perms_to_st(ie))) {
8362 err = dump_symlink_target_path_to_file(&f_deriv2,
8363 ondisk_path);
8364 if (err)
8365 goto done;
8366 } else {
8367 int fd;
8368 fd = open(ondisk_path,
8369 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
8370 if (fd == -1) {
8371 err = got_error_from_errno2("open", ondisk_path);
8372 goto done;
8374 f_deriv2 = fdopen(fd, "r");
8375 if (f_deriv2 == NULL) {
8376 err = got_error_from_errno2("fdopen", ondisk_path);
8377 close(fd);
8378 goto done;
8382 err = merge_file(&local_changes_subsumed, worktree,
8383 f_base, f, f_deriv2, ondisk_path, ie->path,
8384 got_fileindex_perms_to_st(ie),
8385 label_orig, "unstaged", NULL, GOT_DIFF_ALGORITHM_MYERS,
8386 repo, progress_cb, progress_arg);
8388 if (err)
8389 goto done;
8391 if (new_staged_blob_id) {
8392 memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
8393 SHA1_DIGEST_LENGTH);
8394 } else {
8395 got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
8396 got_fileindex_entry_staged_filetype_set(ie, 0);
8398 done:
8399 free(new_staged_blob_id);
8400 if (path_unstaged_content &&
8401 unlink(path_unstaged_content) == -1 && err == NULL)
8402 err = got_error_from_errno2("unlink", path_unstaged_content);
8403 if (path_new_staged_content &&
8404 unlink(path_new_staged_content) == -1 && err == NULL)
8405 err = got_error_from_errno2("unlink", path_new_staged_content);
8406 if (blob_base_path && unlink(blob_base_path) == -1 && err == NULL)
8407 err = got_error_from_errno2("unlink", blob_base_path);
8408 if (f_base && fclose(f_base) == EOF && err == NULL)
8409 err = got_error_from_errno2("fclose", path_unstaged_content);
8410 if (f && fclose(f) == EOF && err == NULL)
8411 err = got_error_from_errno2("fclose", path_unstaged_content);
8412 if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
8413 err = got_error_from_errno2("fclose", ondisk_path);
8414 free(path_unstaged_content);
8415 free(path_new_staged_content);
8416 free(blob_base_path);
8417 free(parent);
8418 free(base_path);
8419 return err;
8422 static const struct got_error *
8423 unstage_path(void *arg, unsigned char status,
8424 unsigned char staged_status, const char *relpath,
8425 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
8426 struct got_object_id *commit_id, int dirfd, const char *de_name)
8428 const struct got_error *err = NULL;
8429 struct unstage_path_arg *a = arg;
8430 struct got_fileindex_entry *ie;
8431 struct got_blob_object *blob_base = NULL, *blob_staged = NULL;
8432 char *ondisk_path = NULL;
8433 char *id_str = NULL, *label_orig = NULL;
8434 int local_changes_subsumed;
8435 struct stat sb;
8437 if (staged_status != GOT_STATUS_ADD &&
8438 staged_status != GOT_STATUS_MODIFY &&
8439 staged_status != GOT_STATUS_DELETE)
8440 return NULL;
8442 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
8443 if (ie == NULL)
8444 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
8446 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, relpath)
8447 == -1)
8448 return got_error_from_errno("asprintf");
8450 err = got_object_id_str(&id_str,
8451 commit_id ? commit_id : a->worktree->base_commit_id);
8452 if (err)
8453 goto done;
8454 if (asprintf(&label_orig, "%s: commit %s", GOT_MERGE_LABEL_BASE,
8455 id_str) == -1) {
8456 err = got_error_from_errno("asprintf");
8457 goto done;
8460 switch (staged_status) {
8461 case GOT_STATUS_MODIFY:
8462 err = got_object_open_as_blob(&blob_base, a->repo,
8463 blob_id, 8192);
8464 if (err)
8465 break;
8466 /* fall through */
8467 case GOT_STATUS_ADD:
8468 if (a->patch_cb) {
8469 if (staged_status == GOT_STATUS_ADD) {
8470 int choice = GOT_PATCH_CHOICE_NONE;
8471 err = (*a->patch_cb)(&choice, a->patch_arg,
8472 staged_status, ie->path, NULL, 1, 1);
8473 if (err)
8474 break;
8475 if (choice != GOT_PATCH_CHOICE_YES)
8476 break;
8477 } else {
8478 err = unstage_hunks(staged_blob_id,
8479 blob_base, blob_id, ie, ondisk_path,
8480 label_orig, a->worktree, a->repo,
8481 a->patch_cb, a->patch_arg,
8482 a->progress_cb, a->progress_arg);
8483 break; /* Done with this file. */
8486 err = got_object_open_as_blob(&blob_staged, a->repo,
8487 staged_blob_id, 8192);
8488 if (err)
8489 break;
8490 switch (got_fileindex_entry_staged_filetype_get(ie)) {
8491 case GOT_FILEIDX_MODE_BAD_SYMLINK:
8492 case GOT_FILEIDX_MODE_REGULAR_FILE:
8493 err = merge_blob(&local_changes_subsumed, a->worktree,
8494 blob_base, ondisk_path, relpath,
8495 got_fileindex_perms_to_st(ie), label_orig,
8496 blob_staged, commit_id ? commit_id :
8497 a->worktree->base_commit_id, a->repo,
8498 a->progress_cb, a->progress_arg);
8499 break;
8500 case GOT_FILEIDX_MODE_SYMLINK:
8501 if (S_ISLNK(got_fileindex_perms_to_st(ie))) {
8502 char *staged_target;
8503 err = got_object_blob_read_to_str(
8504 &staged_target, blob_staged);
8505 if (err)
8506 goto done;
8507 err = merge_symlink(a->worktree, blob_base,
8508 ondisk_path, relpath, label_orig,
8509 staged_target, commit_id ? commit_id :
8510 a->worktree->base_commit_id,
8511 a->repo, a->progress_cb, a->progress_arg);
8512 free(staged_target);
8513 } else {
8514 err = merge_blob(&local_changes_subsumed,
8515 a->worktree, blob_base, ondisk_path,
8516 relpath, got_fileindex_perms_to_st(ie),
8517 label_orig, blob_staged,
8518 commit_id ? commit_id :
8519 a->worktree->base_commit_id, a->repo,
8520 a->progress_cb, a->progress_arg);
8522 break;
8523 default:
8524 err = got_error_path(relpath, GOT_ERR_BAD_FILETYPE);
8525 break;
8527 if (err == NULL) {
8528 got_fileindex_entry_stage_set(ie,
8529 GOT_FILEIDX_STAGE_NONE);
8530 got_fileindex_entry_staged_filetype_set(ie, 0);
8532 break;
8533 case GOT_STATUS_DELETE:
8534 if (a->patch_cb) {
8535 int choice = GOT_PATCH_CHOICE_NONE;
8536 err = (*a->patch_cb)(&choice, a->patch_arg,
8537 staged_status, ie->path, NULL, 1, 1);
8538 if (err)
8539 break;
8540 if (choice == GOT_PATCH_CHOICE_NO)
8541 break;
8542 if (choice != GOT_PATCH_CHOICE_YES) {
8543 err = got_error(GOT_ERR_PATCH_CHOICE);
8544 break;
8547 got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
8548 got_fileindex_entry_staged_filetype_set(ie, 0);
8549 err = get_file_status(&status, &sb, ie, ondisk_path,
8550 dirfd, de_name, a->repo);
8551 if (err)
8552 break;
8553 err = (*a->progress_cb)(a->progress_arg, status, relpath);
8554 break;
8556 done:
8557 free(ondisk_path);
8558 if (blob_base)
8559 got_object_blob_close(blob_base);
8560 if (blob_staged)
8561 got_object_blob_close(blob_staged);
8562 free(id_str);
8563 free(label_orig);
8564 return err;
8567 const struct got_error *
8568 got_worktree_unstage(struct got_worktree *worktree,
8569 struct got_pathlist_head *paths,
8570 got_worktree_checkout_cb progress_cb, void *progress_arg,
8571 got_worktree_patch_cb patch_cb, void *patch_arg,
8572 struct got_repository *repo)
8574 const struct got_error *err = NULL, *sync_err, *unlockerr;
8575 struct got_pathlist_entry *pe;
8576 struct got_fileindex *fileindex = NULL;
8577 char *fileindex_path = NULL;
8578 struct unstage_path_arg upa;
8580 err = lock_worktree(worktree, LOCK_EX);
8581 if (err)
8582 return err;
8584 err = open_fileindex(&fileindex, &fileindex_path, worktree);
8585 if (err)
8586 goto done;
8588 upa.worktree = worktree;
8589 upa.fileindex = fileindex;
8590 upa.repo = repo;
8591 upa.progress_cb = progress_cb;
8592 upa.progress_arg = progress_arg;
8593 upa.patch_cb = patch_cb;
8594 upa.patch_arg = patch_arg;
8595 TAILQ_FOREACH(pe, paths, entry) {
8596 err = worktree_status(worktree, pe->path, fileindex, repo,
8597 unstage_path, &upa, NULL, NULL, 1, 0);
8598 if (err)
8599 goto done;
8602 sync_err = sync_fileindex(fileindex, fileindex_path);
8603 if (sync_err && err == NULL)
8604 err = sync_err;
8605 done:
8606 free(fileindex_path);
8607 if (fileindex)
8608 got_fileindex_free(fileindex);
8609 unlockerr = lock_worktree(worktree, LOCK_SH);
8610 if (unlockerr && err == NULL)
8611 err = unlockerr;
8612 return err;
8615 struct report_file_info_arg {
8616 struct got_worktree *worktree;
8617 got_worktree_path_info_cb info_cb;
8618 void *info_arg;
8619 struct got_pathlist_head *paths;
8620 got_cancel_cb cancel_cb;
8621 void *cancel_arg;
8624 static const struct got_error *
8625 report_file_info(void *arg, struct got_fileindex_entry *ie)
8627 struct report_file_info_arg *a = arg;
8628 struct got_pathlist_entry *pe;
8629 struct got_object_id blob_id, staged_blob_id, commit_id;
8630 struct got_object_id *blob_idp = NULL, *staged_blob_idp = NULL;
8631 struct got_object_id *commit_idp = NULL;
8632 int stage;
8634 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
8635 return got_error(GOT_ERR_CANCELLED);
8637 TAILQ_FOREACH(pe, a->paths, entry) {
8638 if (pe->path_len == 0 || strcmp(pe->path, ie->path) == 0 ||
8639 got_path_is_child(ie->path, pe->path, pe->path_len))
8640 break;
8642 if (pe == NULL) /* not found */
8643 return NULL;
8645 if (got_fileindex_entry_has_blob(ie)) {
8646 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
8647 blob_idp = &blob_id;
8649 stage = got_fileindex_entry_stage_get(ie);
8650 if (stage == GOT_FILEIDX_STAGE_MODIFY ||
8651 stage == GOT_FILEIDX_STAGE_ADD) {
8652 memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
8653 SHA1_DIGEST_LENGTH);
8654 staged_blob_idp = &staged_blob_id;
8657 if (got_fileindex_entry_has_commit(ie)) {
8658 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
8659 commit_idp = &commit_id;
8662 return a->info_cb(a->info_arg, ie->path, got_fileindex_perms_to_st(ie),
8663 (time_t)ie->mtime_sec, blob_idp, staged_blob_idp, commit_idp);
8666 const struct got_error *
8667 got_worktree_path_info(struct got_worktree *worktree,
8668 struct got_pathlist_head *paths,
8669 got_worktree_path_info_cb info_cb, void *info_arg,
8670 got_cancel_cb cancel_cb, void *cancel_arg)
8673 const struct got_error *err = NULL, *unlockerr;
8674 struct got_fileindex *fileindex = NULL;
8675 char *fileindex_path = NULL;
8676 struct report_file_info_arg arg;
8678 err = lock_worktree(worktree, LOCK_SH);
8679 if (err)
8680 return err;
8682 err = open_fileindex(&fileindex, &fileindex_path, worktree);
8683 if (err)
8684 goto done;
8686 arg.worktree = worktree;
8687 arg.info_cb = info_cb;
8688 arg.info_arg = info_arg;
8689 arg.paths = paths;
8690 arg.cancel_cb = cancel_cb;
8691 arg.cancel_arg = cancel_arg;
8692 err = got_fileindex_for_each_entry_safe(fileindex, report_file_info,
8693 &arg);
8694 done:
8695 free(fileindex_path);
8696 if (fileindex)
8697 got_fileindex_free(fileindex);
8698 unlockerr = lock_worktree(worktree, LOCK_UN);
8699 if (unlockerr && err == NULL)
8700 err = unlockerr;
8701 return err;