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>
18 #include <sys/queue.h>
19 #include <sys/tree.h>
21 #include <dirent.h>
22 #include <limits.h>
23 #include <stddef.h>
24 #include <string.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <time.h>
28 #include <fcntl.h>
29 #include <errno.h>
30 #include <unistd.h>
31 #include <sha1.h>
32 #include <zlib.h>
33 #include <fnmatch.h>
34 #include <libgen.h>
35 #include <uuid.h>
36 #include <util.h>
38 #include "got_error.h"
39 #include "got_repository.h"
40 #include "got_reference.h"
41 #include "got_object.h"
42 #include "got_path.h"
43 #include "got_cancel.h"
44 #include "got_worktree.h"
45 #include "got_opentemp.h"
46 #include "got_diff.h"
48 #include "got_lib_worktree.h"
49 #include "got_lib_sha1.h"
50 #include "got_lib_fileindex.h"
51 #include "got_lib_inflate.h"
52 #include "got_lib_delta.h"
53 #include "got_lib_object.h"
54 #include "got_lib_object_parse.h"
55 #include "got_lib_object_create.h"
56 #include "got_lib_object_idset.h"
57 #include "got_lib_diff.h"
58 #include "got_lib_gotconfig.h"
60 #ifndef MIN
61 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
62 #endif
64 #define GOT_MERGE_LABEL_MERGED "merged change"
65 #define GOT_MERGE_LABEL_BASE "3-way merge base"
67 static const struct got_error *
68 create_meta_file(const char *path_got, const char *name, const char *content)
69 {
70 const struct got_error *err = NULL;
71 char *path;
73 if (asprintf(&path, "%s/%s", path_got, name) == -1)
74 return got_error_from_errno("asprintf");
76 err = got_path_create_file(path, content);
77 free(path);
78 return err;
79 }
81 static const struct got_error *
82 update_meta_file(const char *path_got, const char *name, const char *content)
83 {
84 const struct got_error *err = NULL;
85 FILE *tmpfile = NULL;
86 char *tmppath = NULL;
87 char *path = NULL;
89 if (asprintf(&path, "%s/%s", path_got, name) == -1) {
90 err = got_error_from_errno("asprintf");
91 path = NULL;
92 goto done;
93 }
95 err = got_opentemp_named(&tmppath, &tmpfile, path);
96 if (err)
97 goto done;
99 if (content) {
100 int len = fprintf(tmpfile, "%s\n", content);
101 if (len != strlen(content) + 1) {
102 err = got_error_from_errno2("fprintf", tmppath);
103 goto done;
107 if (rename(tmppath, path) != 0) {
108 err = got_error_from_errno3("rename", tmppath, path);
109 unlink(tmppath);
110 goto done;
113 done:
114 if (fclose(tmpfile) == EOF && err == NULL)
115 err = got_error_from_errno2("fclose", tmppath);
116 free(tmppath);
117 return err;
120 static const struct got_error *
121 write_head_ref(const char *path_got, struct got_reference *head_ref)
123 const struct got_error *err = NULL;
124 char *refstr = NULL;
126 if (got_ref_is_symbolic(head_ref)) {
127 refstr = got_ref_to_str(head_ref);
128 if (refstr == NULL)
129 return got_error_from_errno("got_ref_to_str");
130 } else {
131 refstr = strdup(got_ref_get_name(head_ref));
132 if (refstr == NULL)
133 return got_error_from_errno("strdup");
135 err = update_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
136 free(refstr);
137 return err;
140 const struct got_error *
141 got_worktree_init(const char *path, struct got_reference *head_ref,
142 const char *prefix, struct got_repository *repo)
144 const struct got_error *err = NULL;
145 struct got_object_id *commit_id = NULL;
146 uuid_t uuid;
147 uint32_t uuid_status;
148 int obj_type;
149 char *path_got = NULL;
150 char *formatstr = NULL;
151 char *absprefix = NULL;
152 char *basestr = NULL;
153 char *uuidstr = NULL;
155 if (strcmp(path, got_repo_get_path(repo)) == 0) {
156 err = got_error(GOT_ERR_WORKTREE_REPO);
157 goto done;
160 err = got_ref_resolve(&commit_id, repo, head_ref);
161 if (err)
162 return err;
163 err = got_object_get_type(&obj_type, repo, commit_id);
164 if (err)
165 return err;
166 if (obj_type != GOT_OBJ_TYPE_COMMIT)
167 return got_error(GOT_ERR_OBJ_TYPE);
169 if (!got_path_is_absolute(prefix)) {
170 if (asprintf(&absprefix, "/%s", prefix) == -1)
171 return got_error_from_errno("asprintf");
174 /* Create top-level directory (may already exist). */
175 if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
176 err = got_error_from_errno2("mkdir", path);
177 goto done;
180 /* Create .got directory (may already exist). */
181 if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
182 err = got_error_from_errno("asprintf");
183 goto done;
185 if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
186 err = got_error_from_errno2("mkdir", path_got);
187 goto done;
190 /* Create an empty lock file. */
191 err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
192 if (err)
193 goto done;
195 /* Create an empty file index. */
196 err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
197 if (err)
198 goto done;
200 /* Write the HEAD reference. */
201 err = write_head_ref(path_got, head_ref);
202 if (err)
203 goto done;
205 /* Record our base commit. */
206 err = got_object_id_str(&basestr, commit_id);
207 if (err)
208 goto done;
209 err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
210 if (err)
211 goto done;
213 /* Store path to repository. */
214 err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
215 got_repo_get_path(repo));
216 if (err)
217 goto done;
219 /* Store in-repository path prefix. */
220 err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
221 absprefix ? absprefix : prefix);
222 if (err)
223 goto done;
225 /* Generate UUID. */
226 uuid_create(&uuid, &uuid_status);
227 if (uuid_status != uuid_s_ok) {
228 err = got_error_uuid(uuid_status, "uuid_create");
229 goto done;
231 uuid_to_string(&uuid, &uuidstr, &uuid_status);
232 if (uuid_status != uuid_s_ok) {
233 err = got_error_uuid(uuid_status, "uuid_to_string");
234 goto done;
236 err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
237 if (err)
238 goto done;
240 /* Stamp work tree with format file. */
241 if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
242 err = got_error_from_errno("asprintf");
243 goto done;
245 err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
246 if (err)
247 goto done;
249 done:
250 free(commit_id);
251 free(path_got);
252 free(formatstr);
253 free(absprefix);
254 free(basestr);
255 free(uuidstr);
256 return err;
259 const struct got_error *
260 got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
261 const char *path_prefix)
263 char *absprefix = NULL;
265 if (!got_path_is_absolute(path_prefix)) {
266 if (asprintf(&absprefix, "/%s", path_prefix) == -1)
267 return got_error_from_errno("asprintf");
269 *match = (strcmp(absprefix ? absprefix : path_prefix,
270 worktree->path_prefix) == 0);
271 free(absprefix);
272 return NULL;
275 const char *
276 got_worktree_get_head_ref_name(struct got_worktree *worktree)
278 return worktree->head_ref_name;
281 const struct got_error *
282 got_worktree_set_head_ref(struct got_worktree *worktree,
283 struct got_reference *head_ref)
285 const struct got_error *err = NULL;
286 char *path_got = NULL, *head_ref_name = NULL;
288 if (asprintf(&path_got, "%s/%s", worktree->root_path,
289 GOT_WORKTREE_GOT_DIR) == -1) {
290 err = got_error_from_errno("asprintf");
291 path_got = NULL;
292 goto done;
295 head_ref_name = strdup(got_ref_get_name(head_ref));
296 if (head_ref_name == NULL) {
297 err = got_error_from_errno("strdup");
298 goto done;
301 err = write_head_ref(path_got, head_ref);
302 if (err)
303 goto done;
305 free(worktree->head_ref_name);
306 worktree->head_ref_name = head_ref_name;
307 done:
308 free(path_got);
309 if (err)
310 free(head_ref_name);
311 return err;
314 struct got_object_id *
315 got_worktree_get_base_commit_id(struct got_worktree *worktree)
317 return worktree->base_commit_id;
320 const struct got_error *
321 got_worktree_set_base_commit_id(struct got_worktree *worktree,
322 struct got_repository *repo, struct got_object_id *commit_id)
324 const struct got_error *err;
325 struct got_object *obj = NULL;
326 char *id_str = NULL;
327 char *path_got = NULL;
329 if (asprintf(&path_got, "%s/%s", worktree->root_path,
330 GOT_WORKTREE_GOT_DIR) == -1) {
331 err = got_error_from_errno("asprintf");
332 path_got = NULL;
333 goto done;
336 err = got_object_open(&obj, repo, commit_id);
337 if (err)
338 return err;
340 if (obj->type != GOT_OBJ_TYPE_COMMIT) {
341 err = got_error(GOT_ERR_OBJ_TYPE);
342 goto done;
345 /* Record our base commit. */
346 err = got_object_id_str(&id_str, commit_id);
347 if (err)
348 goto done;
349 err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
350 if (err)
351 goto done;
353 free(worktree->base_commit_id);
354 worktree->base_commit_id = got_object_id_dup(commit_id);
355 if (worktree->base_commit_id == NULL) {
356 err = got_error_from_errno("got_object_id_dup");
357 goto done;
359 done:
360 if (obj)
361 got_object_close(obj);
362 free(id_str);
363 free(path_got);
364 return err;
367 const struct got_gotconfig *
368 got_worktree_get_gotconfig(struct got_worktree *worktree)
370 return worktree->gotconfig;
373 static const struct got_error *
374 lock_worktree(struct got_worktree *worktree, int operation)
376 if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
377 return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
378 : got_error_from_errno2("flock",
379 got_worktree_get_root_path(worktree)));
380 return NULL;
383 static const struct got_error *
384 add_dir_on_disk(struct got_worktree *worktree, const char *path)
386 const struct got_error *err = NULL;
387 char *abspath;
389 if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
390 return got_error_from_errno("asprintf");
392 err = got_path_mkdir(abspath);
393 if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
394 struct stat sb;
395 err = NULL;
396 if (lstat(abspath, &sb) == -1) {
397 err = got_error_from_errno2("lstat", abspath);
398 } else if (!S_ISDIR(sb.st_mode)) {
399 /* TODO directory is obstructed; do something */
400 err = got_error_path(abspath, GOT_ERR_FILE_OBSTRUCTED);
403 free(abspath);
404 return err;
407 static const struct got_error *
408 check_file_contents_equal(int *same, FILE *f1, FILE *f2)
410 const struct got_error *err = NULL;
411 uint8_t fbuf1[8192];
412 uint8_t fbuf2[8192];
413 size_t flen1 = 0, flen2 = 0;
415 *same = 1;
417 for (;;) {
418 flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
419 if (flen1 == 0 && ferror(f1)) {
420 err = got_error_from_errno("fread");
421 break;
423 flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
424 if (flen2 == 0 && ferror(f2)) {
425 err = got_error_from_errno("fread");
426 break;
428 if (flen1 == 0) {
429 if (flen2 != 0)
430 *same = 0;
431 break;
432 } else if (flen2 == 0) {
433 if (flen1 != 0)
434 *same = 0;
435 break;
436 } else if (flen1 == flen2) {
437 if (memcmp(fbuf1, fbuf2, flen2) != 0) {
438 *same = 0;
439 break;
441 } else {
442 *same = 0;
443 break;
447 return err;
450 static const struct got_error *
451 check_files_equal(int *same, FILE *f1, FILE *f2)
453 struct stat sb;
454 size_t size1, size2;
456 *same = 1;
458 if (fstat(fileno(f1), &sb) != 0)
459 return got_error_from_errno("fstat");
460 size1 = sb.st_size;
462 if (fstat(fileno(f2), &sb) != 0)
463 return got_error_from_errno("fstat");
464 size2 = sb.st_size;
466 if (size1 != size2) {
467 *same = 0;
468 return NULL;
471 if (fseek(f1, 0L, SEEK_SET) == -1)
472 return got_ferror(f1, GOT_ERR_IO);
473 if (fseek(f2, 0L, SEEK_SET) == -1)
474 return got_ferror(f2, GOT_ERR_IO);
476 return check_file_contents_equal(same, f1, f2);
479 static const struct got_error *
480 copy_file_to_fd(off_t *outsize, FILE *f, int outfd)
482 uint8_t fbuf[65536];
483 size_t flen;
484 ssize_t outlen;
486 *outsize = 0;
488 if (fseek(f, 0L, SEEK_SET) == -1)
489 return got_ferror(f, GOT_ERR_IO);
491 for (;;) {
492 flen = fread(fbuf, 1, sizeof(fbuf), f);
493 if (flen == 0) {
494 if (ferror(f))
495 return got_error_from_errno("fread");
496 if (feof(f))
497 break;
499 outlen = write(outfd, fbuf, flen);
500 if (outlen == -1)
501 return got_error_from_errno("write");
502 if (outlen != flen)
503 return got_error(GOT_ERR_IO);
504 *outsize += outlen;
507 return NULL;
510 static const struct got_error *
511 merge_binary_file(int *overlapcnt, int merged_fd,
512 FILE *f_deriv, FILE *f_orig, FILE *f_deriv2,
513 const char *label_deriv, const char *label_orig, const char *label_deriv2,
514 const char *ondisk_path)
516 const struct got_error *err = NULL;
517 int same_content, changed_deriv, changed_deriv2;
518 int fd_orig = -1, fd_deriv = -1, fd_deriv2 = -1;
519 off_t size_orig = 0, size_deriv = 0, size_deriv2 = 0;
520 char *path_orig = NULL, *path_deriv = NULL, *path_deriv2 = NULL;
521 char *base_path_orig = NULL, *base_path_deriv = NULL;
522 char *base_path_deriv2 = NULL;
524 *overlapcnt = 0;
526 err = check_files_equal(&same_content, f_deriv, f_deriv2);
527 if (err)
528 return err;
530 if (same_content)
531 return copy_file_to_fd(&size_deriv, f_deriv, merged_fd);
533 err = check_files_equal(&same_content, f_deriv, f_orig);
534 if (err)
535 return err;
536 changed_deriv = !same_content;
537 err = check_files_equal(&same_content, f_deriv2, f_orig);
538 if (err)
539 return err;
540 changed_deriv2 = !same_content;
542 if (changed_deriv && changed_deriv2) {
543 *overlapcnt = 1;
544 if (asprintf(&base_path_orig, "%s-orig", ondisk_path) == -1) {
545 err = got_error_from_errno("asprintf");
546 goto done;
548 if (asprintf(&base_path_deriv, "%s-1", ondisk_path) == -1) {
549 err = got_error_from_errno("asprintf");
550 goto done;
552 if (asprintf(&base_path_deriv2, "%s-2", ondisk_path) == -1) {
553 err = got_error_from_errno("asprintf");
554 goto done;
556 err = got_opentemp_named_fd(&path_orig, &fd_orig,
557 base_path_orig);
558 if (err)
559 goto done;
560 err = got_opentemp_named_fd(&path_deriv, &fd_deriv,
561 base_path_deriv);
562 if (err)
563 goto done;
564 err = got_opentemp_named_fd(&path_deriv2, &fd_deriv2,
565 base_path_deriv2);
566 if (err)
567 goto done;
568 err = copy_file_to_fd(&size_orig, f_orig, fd_orig);
569 if (err)
570 goto done;
571 err = copy_file_to_fd(&size_deriv, f_deriv, fd_deriv);
572 if (err)
573 goto done;
574 err = copy_file_to_fd(&size_deriv2, f_deriv2, fd_deriv2);
575 if (err)
576 goto done;
577 if (dprintf(merged_fd, "Binary files differ and cannot be "
578 "merged automatically:\n") < 0) {
579 err = got_error_from_errno("dprintf");
580 goto done;
582 if (dprintf(merged_fd, "%s%s%s\nfile %s\n",
583 GOT_DIFF_CONFLICT_MARKER_BEGIN,
584 label_deriv ? " " : "",
585 label_deriv ? label_deriv : "",
586 path_deriv) < 0) {
587 err = got_error_from_errno("dprintf");
588 goto done;
590 if (size_orig > 0) {
591 if (dprintf(merged_fd, "%s%s%s\nfile %s\n",
592 GOT_DIFF_CONFLICT_MARKER_ORIG,
593 label_orig ? " " : "",
594 label_orig ? label_orig : "",
595 path_orig) < 0) {
596 err = got_error_from_errno("dprintf");
597 goto done;
600 if (dprintf(merged_fd, "%s\nfile %s\n%s%s%s\n",
601 GOT_DIFF_CONFLICT_MARKER_SEP,
602 path_deriv2,
603 GOT_DIFF_CONFLICT_MARKER_END,
604 label_deriv2 ? " " : "",
605 label_deriv2 ? label_deriv2 : "") < 0) {
606 err = got_error_from_errno("dprintf");
607 goto done;
609 } else if (changed_deriv)
610 err = copy_file_to_fd(&size_deriv, f_deriv, merged_fd);
611 else if (changed_deriv2)
612 err = copy_file_to_fd(&size_deriv2, f_deriv2, merged_fd);
613 done:
614 if (size_orig == 0 && path_orig && unlink(path_orig) == -1 &&
615 err == NULL)
616 err = got_error_from_errno2("unlink", path_orig);
617 if (fd_orig != -1 && close(fd_orig) == -1 && err == NULL)
618 err = got_error_from_errno2("close", path_orig);
619 if (fd_deriv != -1 && close(fd_deriv) == -1 && err == NULL)
620 err = got_error_from_errno2("close", path_deriv);
621 if (fd_deriv2 != -1 && close(fd_deriv2) == -1 && err == NULL)
622 err = got_error_from_errno2("close", path_deriv2);
623 free(path_orig);
624 free(path_deriv);
625 free(path_deriv2);
626 free(base_path_orig);
627 free(base_path_deriv);
628 free(base_path_deriv2);
629 return err;
632 /*
633 * Perform a 3-way merge where the file f_orig acts as the common
634 * ancestor, the file f_deriv acts as the first derived version,
635 * and the file f_deriv2 acts as the second derived version.
636 * The merge result will be written to a new file at ondisk_path; any
637 * existing file at this path will be replaced.
638 */
639 static const struct got_error *
640 merge_file(int *local_changes_subsumed, struct got_worktree *worktree,
641 FILE *f_orig, FILE *f_deriv, FILE *f_deriv2, const char *ondisk_path,
642 const char *path, uint16_t st_mode,
643 const char *label_orig, const char *label_deriv, const char *label_deriv2,
644 enum got_diff_algorithm diff_algo, struct got_repository *repo,
645 got_worktree_checkout_cb progress_cb, void *progress_arg)
647 const struct got_error *err = NULL;
648 int merged_fd = -1;
649 FILE *f_merged = NULL;
650 char *merged_path = NULL, *base_path = NULL;
651 int overlapcnt = 0;
652 char *parent = NULL;
654 *local_changes_subsumed = 0;
656 err = got_path_dirname(&parent, ondisk_path);
657 if (err)
658 return err;
660 if (asprintf(&base_path, "%s/got-merged", parent) == -1) {
661 err = got_error_from_errno("asprintf");
662 goto done;
665 err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
666 if (err)
667 goto done;
669 err = got_merge_diff3(&overlapcnt, merged_fd, f_deriv, f_orig,
670 f_deriv2, label_deriv, label_orig, label_deriv2, diff_algo);
671 if (err) {
672 if (err->code != GOT_ERR_FILE_BINARY)
673 goto done;
674 err = merge_binary_file(&overlapcnt, merged_fd, f_deriv,
675 f_orig, f_deriv2, label_deriv, label_orig, label_deriv2,
676 ondisk_path);
677 if (err)
678 goto done;
681 err = (*progress_cb)(progress_arg,
682 overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
683 if (err)
684 goto done;
686 if (fsync(merged_fd) != 0) {
687 err = got_error_from_errno("fsync");
688 goto done;
691 f_merged = fdopen(merged_fd, "r");
692 if (f_merged == NULL) {
693 err = got_error_from_errno("fdopen");
694 goto done;
696 merged_fd = -1;
698 /* Check if a clean merge has subsumed all local changes. */
699 if (overlapcnt == 0) {
700 err = check_files_equal(local_changes_subsumed, f_deriv,
701 f_merged);
702 if (err)
703 goto done;
706 if (fchmod(fileno(f_merged), st_mode) != 0) {
707 err = got_error_from_errno2("fchmod", merged_path);
708 goto done;
711 if (rename(merged_path, ondisk_path) != 0) {
712 err = got_error_from_errno3("rename", merged_path,
713 ondisk_path);
714 goto done;
716 done:
717 if (err) {
718 if (merged_path)
719 unlink(merged_path);
721 if (merged_fd != -1 && close(merged_fd) == -1 && err == NULL)
722 err = got_error_from_errno("close");
723 if (f_merged && fclose(f_merged) == EOF && err == NULL)
724 err = got_error_from_errno("fclose");
725 free(merged_path);
726 free(base_path);
727 free(parent);
728 return err;
731 static const struct got_error *
732 update_symlink(const char *ondisk_path, const char *target_path,
733 size_t target_len)
735 /* This is not atomic but matches what 'ln -sf' does. */
736 if (unlink(ondisk_path) == -1)
737 return got_error_from_errno2("unlink", ondisk_path);
738 if (symlink(target_path, ondisk_path) == -1)
739 return got_error_from_errno3("symlink", target_path,
740 ondisk_path);
741 return NULL;
744 /*
745 * Overwrite a symlink (or a regular file in case there was a "bad" symlink)
746 * in the work tree with a file that contains conflict markers and the
747 * conflicting target paths of the original version, a "derived version"
748 * of a symlink from an incoming change, and a local version of the symlink.
750 * The original versions's target path can be NULL if it is not available,
751 * such as if both derived versions added a new symlink at the same path.
753 * The incoming derived symlink target is NULL in case the incoming change
754 * has deleted this symlink.
755 */
756 static const struct got_error *
757 install_symlink_conflict(const char *deriv_target,
758 struct got_object_id *deriv_base_commit_id, const char *orig_target,
759 const char *label_orig, const char *local_target, const char *ondisk_path)
761 const struct got_error *err;
762 char *id_str = NULL, *label_deriv = NULL, *path = NULL;
763 FILE *f = NULL;
765 err = got_object_id_str(&id_str, deriv_base_commit_id);
766 if (err)
767 return got_error_from_errno("asprintf");
769 if (asprintf(&label_deriv, "%s: commit %s",
770 GOT_MERGE_LABEL_MERGED, id_str) == -1) {
771 err = got_error_from_errno("asprintf");
772 goto done;
775 err = got_opentemp_named(&path, &f, "got-symlink-conflict");
776 if (err)
777 goto done;
779 if (fchmod(fileno(f), GOT_DEFAULT_FILE_MODE) == -1) {
780 err = got_error_from_errno2("fchmod", path);
781 goto done;
784 if (fprintf(f, "%s %s\n%s\n%s%s%s%s%s\n%s\n%s\n",
785 GOT_DIFF_CONFLICT_MARKER_BEGIN, label_deriv,
786 deriv_target ? deriv_target : "(symlink was deleted)",
787 orig_target ? label_orig : "",
788 orig_target ? "\n" : "",
789 orig_target ? orig_target : "",
790 orig_target ? "\n" : "",
791 GOT_DIFF_CONFLICT_MARKER_SEP,
792 local_target, GOT_DIFF_CONFLICT_MARKER_END) < 0) {
793 err = got_error_from_errno2("fprintf", path);
794 goto done;
797 if (unlink(ondisk_path) == -1) {
798 err = got_error_from_errno2("unlink", ondisk_path);
799 goto done;
801 if (rename(path, ondisk_path) == -1) {
802 err = got_error_from_errno3("rename", path, ondisk_path);
803 goto done;
805 done:
806 if (f != NULL && fclose(f) == EOF && err == NULL)
807 err = got_error_from_errno2("fclose", path);
808 free(path);
809 free(id_str);
810 free(label_deriv);
811 return err;
814 /* forward declaration */
815 static const struct got_error *
816 merge_blob(int *, struct got_worktree *, struct got_blob_object *,
817 const char *, const char *, uint16_t, const char *,
818 struct got_blob_object *, struct got_object_id *,
819 struct got_repository *, got_worktree_checkout_cb, void *);
821 /*
822 * Merge a symlink into the work tree, where blob_orig acts as the common
823 * ancestor, deriv_target is the link target of the first derived version,
824 * and the symlink on disk acts as the second derived version.
825 * Assume that contents of both blobs represent symlinks.
826 */
827 static const struct got_error *
828 merge_symlink(struct got_worktree *worktree,
829 struct got_blob_object *blob_orig, const char *ondisk_path,
830 const char *path, const char *label_orig, const char *deriv_target,
831 struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
832 got_worktree_checkout_cb progress_cb, void *progress_arg)
834 const struct got_error *err = NULL;
835 char *ancestor_target = NULL;
836 struct stat sb;
837 ssize_t ondisk_len, deriv_len;
838 char ondisk_target[PATH_MAX];
839 int have_local_change = 0;
840 int have_incoming_change = 0;
842 if (lstat(ondisk_path, &sb) == -1)
843 return got_error_from_errno2("lstat", ondisk_path);
845 ondisk_len = readlink(ondisk_path, ondisk_target,
846 sizeof(ondisk_target));
847 if (ondisk_len == -1) {
848 err = got_error_from_errno2("readlink",
849 ondisk_path);
850 goto done;
852 ondisk_target[ondisk_len] = '\0';
854 if (blob_orig) {
855 err = got_object_blob_read_to_str(&ancestor_target, blob_orig);
856 if (err)
857 goto done;
860 if (ancestor_target == NULL ||
861 (ondisk_len != strlen(ancestor_target) ||
862 memcmp(ondisk_target, ancestor_target, ondisk_len) != 0))
863 have_local_change = 1;
865 deriv_len = strlen(deriv_target);
866 if (ancestor_target == NULL ||
867 (deriv_len != strlen(ancestor_target) ||
868 memcmp(deriv_target, ancestor_target, deriv_len) != 0))
869 have_incoming_change = 1;
871 if (!have_local_change && !have_incoming_change) {
872 if (ancestor_target) {
873 /* Both sides made the same change. */
874 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
875 path);
876 } else if (deriv_len == ondisk_len &&
877 memcmp(ondisk_target, deriv_target, deriv_len) == 0) {
878 /* Both sides added the same symlink. */
879 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
880 path);
881 } else {
882 /* Both sides added symlinks which don't match. */
883 err = install_symlink_conflict(deriv_target,
884 deriv_base_commit_id, ancestor_target,
885 label_orig, ondisk_target, ondisk_path);
886 if (err)
887 goto done;
888 err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
889 path);
891 } else if (!have_local_change && have_incoming_change) {
892 /* Apply the incoming change. */
893 err = update_symlink(ondisk_path, deriv_target,
894 strlen(deriv_target));
895 if (err)
896 goto done;
897 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
898 } else if (have_local_change && have_incoming_change) {
899 if (deriv_len == ondisk_len &&
900 memcmp(deriv_target, ondisk_target, deriv_len) == 0) {
901 /* Both sides made the same change. */
902 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE,
903 path);
904 } else {
905 err = install_symlink_conflict(deriv_target,
906 deriv_base_commit_id, ancestor_target, label_orig,
907 ondisk_target, ondisk_path);
908 if (err)
909 goto done;
910 err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
911 path);
915 done:
916 free(ancestor_target);
917 return err;
920 static const struct got_error *
921 dump_symlink_target_path_to_file(FILE **outfile, const char *ondisk_path)
923 const struct got_error *err = NULL;
924 char target_path[PATH_MAX];
925 ssize_t target_len;
926 size_t n;
927 FILE *f;
929 *outfile = NULL;
931 f = got_opentemp();
932 if (f == NULL)
933 return got_error_from_errno("got_opentemp");
934 target_len = readlink(ondisk_path, target_path, sizeof(target_path));
935 if (target_len == -1) {
936 err = got_error_from_errno2("readlink", ondisk_path);
937 goto done;
939 n = fwrite(target_path, 1, target_len, f);
940 if (n != target_len) {
941 err = got_ferror(f, GOT_ERR_IO);
942 goto done;
944 if (fflush(f) == EOF) {
945 err = got_error_from_errno("fflush");
946 goto done;
948 if (fseek(f, 0L, SEEK_SET) == -1) {
949 err = got_ferror(f, GOT_ERR_IO);
950 goto done;
952 done:
953 if (err)
954 fclose(f);
955 else
956 *outfile = f;
957 return err;
960 /*
961 * Perform a 3-way merge where blob_orig acts as the common ancestor,
962 * blob_deriv acts as the first derived version, and the file on disk
963 * acts as the second derived version.
964 */
965 static const struct got_error *
966 merge_blob(int *local_changes_subsumed, struct got_worktree *worktree,
967 struct got_blob_object *blob_orig, const char *ondisk_path,
968 const char *path, uint16_t st_mode, const char *label_orig,
969 struct got_blob_object *blob_deriv,
970 struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
971 got_worktree_checkout_cb progress_cb, void *progress_arg)
973 const struct got_error *err = NULL;
974 FILE *f_orig = NULL, *f_deriv = NULL, *f_deriv2 = NULL;
975 char *blob_orig_path = NULL;
976 char *blob_deriv_path = NULL, *base_path = NULL, *id_str = NULL;
977 char *label_deriv = NULL, *parent = NULL;
979 *local_changes_subsumed = 0;
981 err = got_path_dirname(&parent, ondisk_path);
982 if (err)
983 return err;
985 if (blob_orig) {
986 if (asprintf(&base_path, "%s/got-merge-blob-orig",
987 parent) == -1) {
988 err = got_error_from_errno("asprintf");
989 base_path = NULL;
990 goto done;
993 err = got_opentemp_named(&blob_orig_path, &f_orig, base_path);
994 if (err)
995 goto done;
996 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_orig,
997 blob_orig);
998 if (err)
999 goto done;
1000 free(base_path);
1001 } else {
1003 * No common ancestor exists. This is an "add vs add" conflict
1004 * and we simply use an empty ancestor file to make both files
1005 * appear in the merged result in their entirety.
1007 f_orig = got_opentemp();
1008 if (f_orig == NULL) {
1009 err = got_error_from_errno("got_opentemp");
1010 goto done;
1014 if (asprintf(&base_path, "%s/got-merge-blob-deriv", parent) == -1) {
1015 err = got_error_from_errno("asprintf");
1016 base_path = NULL;
1017 goto done;
1020 err = got_opentemp_named(&blob_deriv_path, &f_deriv, base_path);
1021 if (err)
1022 goto done;
1023 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_deriv,
1024 blob_deriv);
1025 if (err)
1026 goto done;
1028 err = got_object_id_str(&id_str, deriv_base_commit_id);
1029 if (err)
1030 goto done;
1031 if (asprintf(&label_deriv, "%s: commit %s",
1032 GOT_MERGE_LABEL_MERGED, id_str) == -1) {
1033 err = got_error_from_errno("asprintf");
1034 goto done;
1038 * In order the run a 3-way merge with a symlink we copy the symlink's
1039 * target path into a temporary file and use that file with diff3.
1041 if (S_ISLNK(st_mode)) {
1042 err = dump_symlink_target_path_to_file(&f_deriv2, ondisk_path);
1043 if (err)
1044 goto done;
1045 } else {
1046 int fd;
1047 fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1048 if (fd == -1) {
1049 err = got_error_from_errno2("open", ondisk_path);
1050 goto done;
1052 f_deriv2 = fdopen(fd, "r");
1053 if (f_deriv2 == NULL) {
1054 err = got_error_from_errno2("fdopen", ondisk_path);
1055 close(fd);
1056 goto done;
1060 err = merge_file(local_changes_subsumed, worktree, f_orig, f_deriv,
1061 f_deriv2, ondisk_path, path, st_mode, label_orig, label_deriv,
1062 NULL, GOT_DIFF_ALGORITHM_MYERS, repo, progress_cb, progress_arg);
1063 done:
1064 if (f_orig && fclose(f_orig) == EOF && err == NULL)
1065 err = got_error_from_errno("fclose");
1066 if (f_deriv && fclose(f_deriv) == EOF && err == NULL)
1067 err = got_error_from_errno("fclose");
1068 if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
1069 err = got_error_from_errno("fclose");
1070 free(base_path);
1071 if (blob_orig_path) {
1072 unlink(blob_orig_path);
1073 free(blob_orig_path);
1075 if (blob_deriv_path) {
1076 unlink(blob_deriv_path);
1077 free(blob_deriv_path);
1079 free(id_str);
1080 free(label_deriv);
1081 free(parent);
1082 return err;
1085 static const struct got_error *
1086 create_fileindex_entry(struct got_fileindex_entry **new_iep,
1087 struct got_fileindex *fileindex, struct got_object_id *base_commit_id,
1088 int wt_fd, const char *path, struct got_object_id *blob_id)
1090 const struct got_error *err = NULL;
1091 struct got_fileindex_entry *new_ie;
1093 *new_iep = NULL;
1095 err = got_fileindex_entry_alloc(&new_ie, path);
1096 if (err)
1097 return err;
1099 err = got_fileindex_entry_update(new_ie, wt_fd, path,
1100 blob_id->sha1, base_commit_id->sha1, 1);
1101 if (err)
1102 goto done;
1104 err = got_fileindex_entry_add(fileindex, new_ie);
1105 done:
1106 if (err)
1107 got_fileindex_entry_free(new_ie);
1108 else
1109 *new_iep = new_ie;
1110 return err;
1113 static mode_t
1114 get_ondisk_perms(int executable, mode_t st_mode)
1116 mode_t xbits = S_IXUSR;
1118 if (executable) {
1119 /* Map read bits to execute bits. */
1120 if (st_mode & S_IRGRP)
1121 xbits |= S_IXGRP;
1122 if (st_mode & S_IROTH)
1123 xbits |= S_IXOTH;
1124 return st_mode | xbits;
1127 return (st_mode & ~(S_IXUSR | S_IXGRP | S_IXOTH));
1130 /* forward declaration */
1131 static const struct got_error *
1132 install_blob(struct got_worktree *worktree, const char *ondisk_path,
1133 const char *path, mode_t te_mode, mode_t st_mode,
1134 struct got_blob_object *blob, int restoring_missing_file,
1135 int reverting_versioned_file, int installing_bad_symlink,
1136 int path_is_unversioned, struct got_repository *repo,
1137 got_worktree_checkout_cb progress_cb, void *progress_arg);
1140 * This function assumes that the provided symlink target points at a
1141 * safe location in the work tree!
1143 static const struct got_error *
1144 replace_existing_symlink(int *did_something, const char *ondisk_path,
1145 const char *target_path, size_t target_len)
1147 const struct got_error *err = NULL;
1148 ssize_t elen;
1149 char etarget[PATH_MAX];
1150 int fd;
1152 *did_something = 0;
1155 * "Bad" symlinks (those pointing outside the work tree or into the
1156 * .got directory) are installed in the work tree as a regular file
1157 * which contains the bad symlink target path.
1158 * The new symlink target has already been checked for safety by our
1159 * caller. If we can successfully open a regular file then we simply
1160 * replace this file with a symlink below.
1162 fd = open(ondisk_path, O_RDWR | O_EXCL | O_NOFOLLOW | O_CLOEXEC);
1163 if (fd == -1) {
1164 if (!got_err_open_nofollow_on_symlink())
1165 return got_error_from_errno2("open", ondisk_path);
1167 /* We are updating an existing on-disk symlink. */
1168 elen = readlink(ondisk_path, etarget, sizeof(etarget));
1169 if (elen == -1)
1170 return got_error_from_errno2("readlink", ondisk_path);
1172 if (elen == target_len &&
1173 memcmp(etarget, target_path, target_len) == 0)
1174 return NULL; /* nothing to do */
1177 *did_something = 1;
1178 err = update_symlink(ondisk_path, target_path, target_len);
1179 if (fd != -1 && close(fd) == -1 && err == NULL)
1180 err = got_error_from_errno2("close", ondisk_path);
1181 return err;
1184 static const struct got_error *
1185 is_bad_symlink_target(int *is_bad_symlink, const char *target_path,
1186 size_t target_len, const char *ondisk_path, const char *wtroot_path)
1188 const struct got_error *err = NULL;
1189 char canonpath[PATH_MAX];
1190 char *path_got = NULL;
1192 *is_bad_symlink = 0;
1194 if (target_len >= sizeof(canonpath)) {
1195 *is_bad_symlink = 1;
1196 return NULL;
1200 * We do not use realpath(3) to resolve the symlink's target
1201 * path because we don't want to resolve symlinks recursively.
1202 * Instead we make the path absolute and then canonicalize it.
1203 * Relative symlink target lookup should begin at the directory
1204 * in which the blob object is being installed.
1206 if (!got_path_is_absolute(target_path)) {
1207 char *abspath, *parent;
1208 err = got_path_dirname(&parent, ondisk_path);
1209 if (err)
1210 return err;
1211 if (asprintf(&abspath, "%s/%s", parent, target_path) == -1) {
1212 free(parent);
1213 return got_error_from_errno("asprintf");
1215 free(parent);
1216 if (strlen(abspath) >= sizeof(canonpath)) {
1217 err = got_error_path(abspath, GOT_ERR_BAD_PATH);
1218 free(abspath);
1219 return err;
1221 err = got_canonpath(abspath, canonpath, sizeof(canonpath));
1222 free(abspath);
1223 if (err)
1224 return err;
1225 } else {
1226 err = got_canonpath(target_path, canonpath, sizeof(canonpath));
1227 if (err)
1228 return err;
1231 /* Only allow symlinks pointing at paths within the work tree. */
1232 if (!got_path_is_child(canonpath, wtroot_path, strlen(wtroot_path))) {
1233 *is_bad_symlink = 1;
1234 return NULL;
1237 /* Do not allow symlinks pointing into the .got directory. */
1238 if (asprintf(&path_got, "%s/%s", wtroot_path,
1239 GOT_WORKTREE_GOT_DIR) == -1)
1240 return got_error_from_errno("asprintf");
1241 if (got_path_is_child(canonpath, path_got, strlen(path_got)))
1242 *is_bad_symlink = 1;
1244 free(path_got);
1245 return NULL;
1248 static const struct got_error *
1249 install_symlink(int *is_bad_symlink, struct got_worktree *worktree,
1250 const char *ondisk_path, const char *path, struct got_blob_object *blob,
1251 int restoring_missing_file, int reverting_versioned_file,
1252 int path_is_unversioned, int allow_bad_symlinks,
1253 struct got_repository *repo,
1254 got_worktree_checkout_cb progress_cb, void *progress_arg)
1256 const struct got_error *err = NULL;
1257 char target_path[PATH_MAX];
1258 size_t len, target_len = 0;
1259 char *path_got = NULL;
1260 const uint8_t *buf = got_object_blob_get_read_buf(blob);
1261 size_t hdrlen = got_object_blob_get_hdrlen(blob);
1263 *is_bad_symlink = 0;
1266 * Blob object content specifies the target path of the link.
1267 * If a symbolic link cannot be installed we instead create
1268 * a regular file which contains the link target path stored
1269 * in the blob object.
1271 do {
1272 err = got_object_blob_read_block(&len, blob);
1273 if (len + target_len >= sizeof(target_path)) {
1274 /* Path too long; install as a regular file. */
1275 *is_bad_symlink = 1;
1276 got_object_blob_rewind(blob);
1277 return install_blob(worktree, ondisk_path, path,
1278 GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1279 restoring_missing_file, reverting_versioned_file,
1280 1, path_is_unversioned, repo, progress_cb,
1281 progress_arg);
1283 if (len > 0) {
1284 /* Skip blob object header first time around. */
1285 memcpy(target_path + target_len, buf + hdrlen,
1286 len - hdrlen);
1287 target_len += len - hdrlen;
1288 hdrlen = 0;
1290 } while (len != 0);
1291 target_path[target_len] = '\0';
1293 err = is_bad_symlink_target(is_bad_symlink, target_path, target_len,
1294 ondisk_path, worktree->root_path);
1295 if (err)
1296 return err;
1298 if (*is_bad_symlink && !allow_bad_symlinks) {
1299 /* install as a regular file */
1300 got_object_blob_rewind(blob);
1301 err = install_blob(worktree, ondisk_path, path,
1302 GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1303 restoring_missing_file, reverting_versioned_file, 1,
1304 path_is_unversioned, repo, progress_cb, progress_arg);
1305 goto done;
1308 if (symlink(target_path, ondisk_path) == -1) {
1309 if (errno == EEXIST) {
1310 int symlink_replaced;
1311 if (path_is_unversioned) {
1312 err = (*progress_cb)(progress_arg,
1313 GOT_STATUS_UNVERSIONED, path);
1314 goto done;
1316 err = replace_existing_symlink(&symlink_replaced,
1317 ondisk_path, target_path, target_len);
1318 if (err)
1319 goto done;
1320 if (progress_cb) {
1321 if (symlink_replaced) {
1322 err = (*progress_cb)(progress_arg,
1323 reverting_versioned_file ?
1324 GOT_STATUS_REVERT :
1325 GOT_STATUS_UPDATE, path);
1326 } else {
1327 err = (*progress_cb)(progress_arg,
1328 GOT_STATUS_EXISTS, path);
1331 goto done; /* Nothing else to do. */
1334 if (errno == ENOENT) {
1335 char *parent;
1336 err = got_path_dirname(&parent, ondisk_path);
1337 if (err)
1338 goto done;
1339 err = add_dir_on_disk(worktree, parent);
1340 free(parent);
1341 if (err)
1342 goto done;
1344 * Retry, and fall through to error handling
1345 * below if this second attempt fails.
1347 if (symlink(target_path, ondisk_path) != -1) {
1348 err = NULL; /* success */
1349 goto done;
1353 /* Handle errors from first or second creation attempt. */
1354 if (errno == ENAMETOOLONG) {
1355 /* bad target path; install as a regular file */
1356 *is_bad_symlink = 1;
1357 got_object_blob_rewind(blob);
1358 err = install_blob(worktree, ondisk_path, path,
1359 GOT_DEFAULT_FILE_MODE, GOT_DEFAULT_FILE_MODE, blob,
1360 restoring_missing_file, reverting_versioned_file, 1,
1361 path_is_unversioned, repo,
1362 progress_cb, progress_arg);
1363 } else if (errno == ENOTDIR) {
1364 err = got_error_path(ondisk_path,
1365 GOT_ERR_FILE_OBSTRUCTED);
1366 } else {
1367 err = got_error_from_errno3("symlink",
1368 target_path, ondisk_path);
1370 } else if (progress_cb)
1371 err = (*progress_cb)(progress_arg, reverting_versioned_file ?
1372 GOT_STATUS_REVERT : GOT_STATUS_ADD, path);
1373 done:
1374 free(path_got);
1375 return err;
1378 static const struct got_error *
1379 install_blob(struct got_worktree *worktree, const char *ondisk_path,
1380 const char *path, mode_t te_mode, mode_t st_mode,
1381 struct got_blob_object *blob, int restoring_missing_file,
1382 int reverting_versioned_file, int installing_bad_symlink,
1383 int path_is_unversioned, struct got_repository *repo,
1384 got_worktree_checkout_cb progress_cb, void *progress_arg)
1386 const struct got_error *err = NULL;
1387 int fd = -1;
1388 size_t len, hdrlen;
1389 int update = 0;
1390 char *tmppath = NULL;
1392 fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW |
1393 O_CLOEXEC, GOT_DEFAULT_FILE_MODE);
1394 if (fd == -1) {
1395 if (errno == ENOENT) {
1396 char *parent;
1397 err = got_path_dirname(&parent, path);
1398 if (err)
1399 return err;
1400 err = add_dir_on_disk(worktree, parent);
1401 free(parent);
1402 if (err)
1403 return err;
1404 fd = open(ondisk_path,
1405 O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | O_CLOEXEC,
1406 GOT_DEFAULT_FILE_MODE);
1407 if (fd == -1)
1408 return got_error_from_errno2("open",
1409 ondisk_path);
1410 } else if (errno == EEXIST) {
1411 if (path_is_unversioned) {
1412 err = (*progress_cb)(progress_arg,
1413 GOT_STATUS_UNVERSIONED, path);
1414 goto done;
1416 if (!(S_ISLNK(st_mode) && S_ISREG(te_mode)) &&
1417 !S_ISREG(st_mode) && !installing_bad_symlink) {
1418 /* TODO file is obstructed; do something */
1419 err = got_error_path(ondisk_path,
1420 GOT_ERR_FILE_OBSTRUCTED);
1421 goto done;
1422 } else {
1423 err = got_opentemp_named_fd(&tmppath, &fd,
1424 ondisk_path);
1425 if (err)
1426 goto done;
1427 update = 1;
1429 } else
1430 return got_error_from_errno2("open", ondisk_path);
1433 if (fchmod(fd, get_ondisk_perms(te_mode & S_IXUSR, st_mode)) == -1) {
1434 err = got_error_from_errno2("fchmod",
1435 update ? tmppath : ondisk_path);
1436 goto done;
1439 if (progress_cb) {
1440 if (restoring_missing_file)
1441 err = (*progress_cb)(progress_arg, GOT_STATUS_MISSING,
1442 path);
1443 else if (reverting_versioned_file)
1444 err = (*progress_cb)(progress_arg, GOT_STATUS_REVERT,
1445 path);
1446 else
1447 err = (*progress_cb)(progress_arg,
1448 update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
1449 if (err)
1450 goto done;
1453 hdrlen = got_object_blob_get_hdrlen(blob);
1454 do {
1455 const uint8_t *buf = got_object_blob_get_read_buf(blob);
1456 err = got_object_blob_read_block(&len, blob);
1457 if (err)
1458 break;
1459 if (len > 0) {
1460 /* Skip blob object header first time around. */
1461 ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
1462 if (outlen == -1) {
1463 err = got_error_from_errno("write");
1464 goto done;
1465 } else if (outlen != len - hdrlen) {
1466 err = got_error(GOT_ERR_IO);
1467 goto done;
1469 hdrlen = 0;
1471 } while (len != 0);
1473 if (fsync(fd) != 0) {
1474 err = got_error_from_errno("fsync");
1475 goto done;
1478 if (update) {
1479 if (S_ISLNK(st_mode) && unlink(ondisk_path) == -1) {
1480 err = got_error_from_errno2("unlink", ondisk_path);
1481 goto done;
1483 if (rename(tmppath, ondisk_path) != 0) {
1484 err = got_error_from_errno3("rename", tmppath,
1485 ondisk_path);
1486 goto done;
1488 free(tmppath);
1489 tmppath = NULL;
1492 done:
1493 if (fd != -1 && close(fd) == -1 && err == NULL)
1494 err = got_error_from_errno("close");
1495 if (tmppath != NULL && unlink(tmppath) == -1 && err == NULL)
1496 err = got_error_from_errno2("unlink", tmppath);
1497 free(tmppath);
1498 return err;
1501 /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
1502 static const struct got_error *
1503 get_modified_file_content_status(unsigned char *status, FILE *f)
1505 const struct got_error *err = NULL;
1506 const char *markers[3] = {
1507 GOT_DIFF_CONFLICT_MARKER_BEGIN,
1508 GOT_DIFF_CONFLICT_MARKER_SEP,
1509 GOT_DIFF_CONFLICT_MARKER_END
1511 int i = 0;
1512 char *line = NULL;
1513 size_t linesize = 0;
1514 ssize_t linelen;
1516 while (*status == GOT_STATUS_MODIFY) {
1517 linelen = getline(&line, &linesize, f);
1518 if (linelen == -1) {
1519 if (feof(f))
1520 break;
1521 err = got_ferror(f, GOT_ERR_IO);
1522 break;
1525 if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1526 if (strcmp(markers[i], GOT_DIFF_CONFLICT_MARKER_END)
1527 == 0)
1528 *status = GOT_STATUS_CONFLICT;
1529 else
1530 i++;
1533 free(line);
1535 return err;
1538 static int
1539 xbit_differs(struct got_fileindex_entry *ie, uint16_t st_mode)
1541 mode_t ie_mode = got_fileindex_perms_to_st(ie);
1542 return ((ie_mode & S_IXUSR) != (st_mode & S_IXUSR));
1545 static int
1546 stat_info_differs(struct got_fileindex_entry *ie, struct stat *sb)
1548 return !(ie->ctime_sec == sb->st_ctim.tv_sec &&
1549 ie->ctime_nsec == sb->st_ctim.tv_nsec &&
1550 ie->mtime_sec == sb->st_mtim.tv_sec &&
1551 ie->mtime_nsec == sb->st_mtim.tv_nsec &&
1552 ie->size == (sb->st_size & 0xffffffff) &&
1553 !xbit_differs(ie, sb->st_mode));
1556 static unsigned char
1557 get_staged_status(struct got_fileindex_entry *ie)
1559 switch (got_fileindex_entry_stage_get(ie)) {
1560 case GOT_FILEIDX_STAGE_ADD:
1561 return GOT_STATUS_ADD;
1562 case GOT_FILEIDX_STAGE_DELETE:
1563 return GOT_STATUS_DELETE;
1564 case GOT_FILEIDX_STAGE_MODIFY:
1565 return GOT_STATUS_MODIFY;
1566 default:
1567 return GOT_STATUS_NO_CHANGE;
1571 static const struct got_error *
1572 get_symlink_modification_status(unsigned char *status,
1573 struct got_fileindex_entry *ie, const char *abspath,
1574 int dirfd, const char *de_name, struct got_blob_object *blob)
1576 const struct got_error *err = NULL;
1577 char target_path[PATH_MAX];
1578 char etarget[PATH_MAX];
1579 ssize_t elen;
1580 size_t len, target_len = 0;
1581 const uint8_t *buf = got_object_blob_get_read_buf(blob);
1582 size_t hdrlen = got_object_blob_get_hdrlen(blob);
1584 *status = GOT_STATUS_NO_CHANGE;
1586 /* Blob object content specifies the target path of the link. */
1587 do {
1588 err = got_object_blob_read_block(&len, blob);
1589 if (err)
1590 return err;
1591 if (len + target_len >= sizeof(target_path)) {
1593 * Should not happen. The blob contents were OK
1594 * when this symlink was installed.
1596 return got_error(GOT_ERR_NO_SPACE);
1598 if (len > 0) {
1599 /* Skip blob object header first time around. */
1600 memcpy(target_path + target_len, buf + hdrlen,
1601 len - hdrlen);
1602 target_len += len - hdrlen;
1603 hdrlen = 0;
1605 } while (len != 0);
1606 target_path[target_len] = '\0';
1608 if (dirfd != -1) {
1609 elen = readlinkat(dirfd, de_name, etarget, sizeof(etarget));
1610 if (elen == -1)
1611 return got_error_from_errno2("readlinkat", abspath);
1612 } else {
1613 elen = readlink(abspath, etarget, sizeof(etarget));
1614 if (elen == -1)
1615 return got_error_from_errno2("readlink", abspath);
1618 if (elen != target_len || memcmp(etarget, target_path, target_len) != 0)
1619 *status = GOT_STATUS_MODIFY;
1621 return NULL;
1624 static const struct got_error *
1625 get_file_status(unsigned char *status, struct stat *sb,
1626 struct got_fileindex_entry *ie, const char *abspath,
1627 int dirfd, const char *de_name, struct got_repository *repo)
1629 const struct got_error *err = NULL;
1630 struct got_object_id id;
1631 size_t hdrlen;
1632 int fd = -1;
1633 FILE *f = NULL;
1634 uint8_t fbuf[8192];
1635 struct got_blob_object *blob = NULL;
1636 size_t flen, blen;
1637 unsigned char staged_status = get_staged_status(ie);
1639 *status = GOT_STATUS_NO_CHANGE;
1640 memset(sb, 0, sizeof(*sb));
1643 * Whenever the caller provides a directory descriptor and a
1644 * directory entry name for the file, use them! This prevents
1645 * race conditions if filesystem paths change beneath our feet.
1647 if (dirfd != -1) {
1648 if (fstatat(dirfd, de_name, sb, AT_SYMLINK_NOFOLLOW) == -1) {
1649 if (errno == ENOENT) {
1650 if (got_fileindex_entry_has_file_on_disk(ie))
1651 *status = GOT_STATUS_MISSING;
1652 else
1653 *status = GOT_STATUS_DELETE;
1654 goto done;
1656 err = got_error_from_errno2("fstatat", abspath);
1657 goto done;
1659 } else {
1660 fd = open(abspath, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1661 if (fd == -1 && errno != ENOENT &&
1662 !got_err_open_nofollow_on_symlink())
1663 return got_error_from_errno2("open", abspath);
1664 else if (fd == -1 && got_err_open_nofollow_on_symlink()) {
1665 if (lstat(abspath, sb) == -1)
1666 return got_error_from_errno2("lstat", abspath);
1667 } else if (fd == -1 || fstat(fd, sb) == -1) {
1668 if (errno == ENOENT) {
1669 if (got_fileindex_entry_has_file_on_disk(ie))
1670 *status = GOT_STATUS_MISSING;
1671 else
1672 *status = GOT_STATUS_DELETE;
1673 goto done;
1675 err = got_error_from_errno2("fstat", abspath);
1676 goto done;
1680 if (!S_ISREG(sb->st_mode) && !S_ISLNK(sb->st_mode)) {
1681 *status = GOT_STATUS_OBSTRUCTED;
1682 goto done;
1685 if (!got_fileindex_entry_has_file_on_disk(ie)) {
1686 *status = GOT_STATUS_DELETE;
1687 goto done;
1688 } else if (!got_fileindex_entry_has_blob(ie) &&
1689 staged_status != GOT_STATUS_ADD) {
1690 *status = GOT_STATUS_ADD;
1691 goto done;
1694 if (!stat_info_differs(ie, sb))
1695 goto done;
1697 if (S_ISLNK(sb->st_mode) &&
1698 got_fileindex_entry_filetype_get(ie) != GOT_FILEIDX_MODE_SYMLINK) {
1699 *status = GOT_STATUS_MODIFY;
1700 goto done;
1703 if (staged_status == GOT_STATUS_MODIFY ||
1704 staged_status == GOT_STATUS_ADD)
1705 memcpy(id.sha1, ie->staged_blob_sha1, sizeof(id.sha1));
1706 else
1707 memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1709 err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1710 if (err)
1711 goto done;
1713 if (S_ISLNK(sb->st_mode)) {
1714 err = get_symlink_modification_status(status, ie,
1715 abspath, dirfd, de_name, blob);
1716 goto done;
1719 if (dirfd != -1) {
1720 fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1721 if (fd == -1) {
1722 err = got_error_from_errno2("openat", abspath);
1723 goto done;
1727 f = fdopen(fd, "r");
1728 if (f == NULL) {
1729 err = got_error_from_errno2("fdopen", abspath);
1730 goto done;
1732 fd = -1;
1733 hdrlen = got_object_blob_get_hdrlen(blob);
1734 for (;;) {
1735 const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1736 err = got_object_blob_read_block(&blen, blob);
1737 if (err)
1738 goto done;
1739 /* Skip length of blob object header first time around. */
1740 flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1741 if (flen == 0 && ferror(f)) {
1742 err = got_error_from_errno("fread");
1743 goto done;
1745 if (blen - hdrlen == 0) {
1746 if (flen != 0)
1747 *status = GOT_STATUS_MODIFY;
1748 break;
1749 } else if (flen == 0) {
1750 if (blen - hdrlen != 0)
1751 *status = GOT_STATUS_MODIFY;
1752 break;
1753 } else if (blen - hdrlen == flen) {
1754 /* Skip blob object header first time around. */
1755 if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1756 *status = GOT_STATUS_MODIFY;
1757 break;
1759 } else {
1760 *status = GOT_STATUS_MODIFY;
1761 break;
1763 hdrlen = 0;
1766 if (*status == GOT_STATUS_MODIFY) {
1767 rewind(f);
1768 err = get_modified_file_content_status(status, f);
1769 } else if (xbit_differs(ie, sb->st_mode))
1770 *status = GOT_STATUS_MODE_CHANGE;
1771 done:
1772 if (blob)
1773 got_object_blob_close(blob);
1774 if (f != NULL && fclose(f) == EOF && err == NULL)
1775 err = got_error_from_errno2("fclose", abspath);
1776 if (fd != -1 && close(fd) == -1 && err == NULL)
1777 err = got_error_from_errno2("close", abspath);
1778 return err;
1782 * Update timestamps in the file index if a file is unmodified and
1783 * we had to run a full content comparison to find out.
1785 static const struct got_error *
1786 sync_timestamps(int wt_fd, const char *path, unsigned char status,
1787 struct got_fileindex_entry *ie, struct stat *sb)
1789 if (status == GOT_STATUS_NO_CHANGE && stat_info_differs(ie, sb))
1790 return got_fileindex_entry_update(ie, wt_fd, path,
1791 ie->blob_sha1, ie->commit_sha1, 1);
1793 return NULL;
1796 static const struct got_error *
1797 update_blob(struct got_worktree *worktree,
1798 struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1799 struct got_tree_entry *te, const char *path,
1800 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1801 void *progress_arg)
1803 const struct got_error *err = NULL;
1804 struct got_blob_object *blob = NULL;
1805 char *ondisk_path;
1806 unsigned char status = GOT_STATUS_NO_CHANGE;
1807 struct stat sb;
1809 if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1810 return got_error_from_errno("asprintf");
1812 if (ie) {
1813 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE) {
1814 err = got_error_path(ie->path, GOT_ERR_FILE_STAGED);
1815 goto done;
1817 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
1818 repo);
1819 if (err)
1820 goto done;
1821 if (status == GOT_STATUS_MISSING || status == GOT_STATUS_DELETE)
1822 sb.st_mode = got_fileindex_perms_to_st(ie);
1823 } else {
1824 if (stat(ondisk_path, &sb) == -1) {
1825 if (errno != ENOENT) {
1826 err = got_error_from_errno2("stat",
1827 ondisk_path);
1828 goto done;
1830 sb.st_mode = GOT_DEFAULT_FILE_MODE;
1831 status = GOT_STATUS_UNVERSIONED;
1832 } else {
1833 if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode))
1834 status = GOT_STATUS_UNVERSIONED;
1835 else
1836 status = GOT_STATUS_OBSTRUCTED;
1840 if (status == GOT_STATUS_OBSTRUCTED) {
1841 if (ie)
1842 got_fileindex_entry_mark_skipped(ie);
1843 err = (*progress_cb)(progress_arg, status, path);
1844 goto done;
1846 if (status == GOT_STATUS_CONFLICT) {
1847 if (ie)
1848 got_fileindex_entry_mark_skipped(ie);
1849 err = (*progress_cb)(progress_arg, GOT_STATUS_CANNOT_UPDATE,
1850 path);
1851 goto done;
1854 if (ie && status != GOT_STATUS_MISSING && S_ISREG(sb.st_mode) &&
1855 (S_ISLNK(te->mode) ||
1856 (te->mode & S_IXUSR) == (sb.st_mode & S_IXUSR))) {
1858 * This is a regular file or an installed bad symlink.
1859 * If the file index indicates that this file is already
1860 * up-to-date with respect to the repository we can skip
1861 * updating contents of this file.
1863 if (got_fileindex_entry_has_commit(ie) &&
1864 memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1865 SHA1_DIGEST_LENGTH) == 0) {
1866 /* Same commit. */
1867 err = sync_timestamps(worktree->root_fd,
1868 path, status, ie, &sb);
1869 if (err)
1870 goto done;
1871 err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1872 path);
1873 goto done;
1875 if (got_fileindex_entry_has_blob(ie) &&
1876 memcmp(ie->blob_sha1, te->id.sha1,
1877 SHA1_DIGEST_LENGTH) == 0) {
1878 /* Different commit but the same blob. */
1879 err = sync_timestamps(worktree->root_fd,
1880 path, status, ie, &sb);
1881 if (err)
1882 goto done;
1883 err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1884 path);
1885 goto done;
1889 err = got_object_open_as_blob(&blob, repo, &te->id, 8192);
1890 if (err)
1891 goto done;
1893 if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD) {
1894 int update_timestamps;
1895 struct got_blob_object *blob2 = NULL;
1896 char *label_orig = NULL;
1897 if (got_fileindex_entry_has_blob(ie)) {
1898 struct got_object_id id2;
1899 memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1900 err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
1901 if (err)
1902 goto done;
1904 if (got_fileindex_entry_has_commit(ie)) {
1905 char id_str[SHA1_DIGEST_STRING_LENGTH];
1906 if (got_sha1_digest_to_str(ie->commit_sha1, id_str,
1907 sizeof(id_str)) == NULL) {
1908 err = got_error_path(id_str,
1909 GOT_ERR_BAD_OBJ_ID_STR);
1910 goto done;
1912 if (asprintf(&label_orig, "%s: commit %s",
1913 GOT_MERGE_LABEL_BASE, id_str) == -1) {
1914 err = got_error_from_errno("asprintf");
1915 goto done;
1918 if (S_ISLNK(te->mode) && S_ISLNK(sb.st_mode)) {
1919 char *link_target;
1920 err = got_object_blob_read_to_str(&link_target, blob);
1921 if (err)
1922 goto done;
1923 err = merge_symlink(worktree, blob2, ondisk_path, path,
1924 label_orig, link_target, worktree->base_commit_id,
1925 repo, progress_cb, progress_arg);
1926 free(link_target);
1927 } else {
1928 err = merge_blob(&update_timestamps, worktree, blob2,
1929 ondisk_path, path, sb.st_mode, label_orig, blob,
1930 worktree->base_commit_id, repo,
1931 progress_cb, progress_arg);
1933 free(label_orig);
1934 if (blob2)
1935 got_object_blob_close(blob2);
1936 if (err)
1937 goto done;
1939 * Do not update timestamps of files with local changes.
1940 * Otherwise, a future status walk would treat them as
1941 * unmodified files again.
1943 err = got_fileindex_entry_update(ie, worktree->root_fd, path,
1944 blob->id.sha1, worktree->base_commit_id->sha1,
1945 update_timestamps);
1946 } else if (status == GOT_STATUS_MODE_CHANGE) {
1947 err = got_fileindex_entry_update(ie, worktree->root_fd, path,
1948 blob->id.sha1, worktree->base_commit_id->sha1, 0);
1949 } else if (status == GOT_STATUS_DELETE) {
1950 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1951 if (err)
1952 goto done;
1953 err = got_fileindex_entry_update(ie, worktree->root_fd, path,
1954 blob->id.sha1, worktree->base_commit_id->sha1, 0);
1955 if (err)
1956 goto done;
1957 } else {
1958 int is_bad_symlink = 0;
1959 if (S_ISLNK(te->mode)) {
1960 err = install_symlink(&is_bad_symlink, worktree,
1961 ondisk_path, path, blob,
1962 status == GOT_STATUS_MISSING, 0,
1963 status == GOT_STATUS_UNVERSIONED, 0,
1964 repo, progress_cb, progress_arg);
1965 } else {
1966 err = install_blob(worktree, ondisk_path, path,
1967 te->mode, sb.st_mode, blob,
1968 status == GOT_STATUS_MISSING, 0, 0,
1969 status == GOT_STATUS_UNVERSIONED, repo,
1970 progress_cb, progress_arg);
1972 if (err)
1973 goto done;
1975 if (ie) {
1976 err = got_fileindex_entry_update(ie,
1977 worktree->root_fd, path, blob->id.sha1,
1978 worktree->base_commit_id->sha1, 1);
1979 } else {
1980 err = create_fileindex_entry(&ie, fileindex,
1981 worktree->base_commit_id, worktree->root_fd, path,
1982 &blob->id);
1984 if (err)
1985 goto done;
1987 if (is_bad_symlink) {
1988 got_fileindex_entry_filetype_set(ie,
1989 GOT_FILEIDX_MODE_BAD_SYMLINK);
1992 got_object_blob_close(blob);
1993 done:
1994 free(ondisk_path);
1995 return err;
1998 static const struct got_error *
1999 remove_ondisk_file(const char *root_path, const char *path)
2001 const struct got_error *err = NULL;
2002 char *ondisk_path = NULL, *parent = NULL;
2004 if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
2005 return got_error_from_errno("asprintf");
2007 if (unlink(ondisk_path) == -1) {
2008 if (errno != ENOENT)
2009 err = got_error_from_errno2("unlink", ondisk_path);
2010 } else {
2011 size_t root_len = strlen(root_path);
2012 err = got_path_dirname(&parent, ondisk_path);
2013 if (err)
2014 goto done;
2015 while (got_path_cmp(parent, root_path,
2016 strlen(parent), root_len) != 0) {
2017 free(ondisk_path);
2018 ondisk_path = parent;
2019 parent = NULL;
2020 if (rmdir(ondisk_path) == -1) {
2021 if (errno != ENOTEMPTY)
2022 err = got_error_from_errno2("rmdir",
2023 ondisk_path);
2024 break;
2026 err = got_path_dirname(&parent, ondisk_path);
2027 if (err)
2028 break;
2031 done:
2032 free(ondisk_path);
2033 free(parent);
2034 return err;
2037 static const struct got_error *
2038 delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
2039 struct got_fileindex_entry *ie, struct got_repository *repo,
2040 got_worktree_checkout_cb progress_cb, void *progress_arg)
2042 const struct got_error *err = NULL;
2043 unsigned char status;
2044 struct stat sb;
2045 char *ondisk_path;
2047 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
2048 return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
2050 if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
2051 == -1)
2052 return got_error_from_errno("asprintf");
2054 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, repo);
2055 if (err)
2056 goto done;
2058 if (S_ISLNK(sb.st_mode) && status != GOT_STATUS_NO_CHANGE) {
2059 char ondisk_target[PATH_MAX];
2060 ssize_t ondisk_len = readlink(ondisk_path, ondisk_target,
2061 sizeof(ondisk_target));
2062 if (ondisk_len == -1) {
2063 err = got_error_from_errno2("readlink", ondisk_path);
2064 goto done;
2066 ondisk_target[ondisk_len] = '\0';
2067 err = install_symlink_conflict(NULL, worktree->base_commit_id,
2068 NULL, NULL, /* XXX pass common ancestor info? */
2069 ondisk_target, ondisk_path);
2070 if (err)
2071 goto done;
2072 err = (*progress_cb)(progress_arg, GOT_STATUS_CONFLICT,
2073 ie->path);
2074 goto done;
2077 if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
2078 status == GOT_STATUS_ADD) {
2079 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
2080 if (err)
2081 goto done;
2083 * Preserve the working file and change the deleted blob's
2084 * entry into a schedule-add entry.
2086 err = got_fileindex_entry_update(ie, worktree->root_fd,
2087 ie->path, NULL, NULL, 0);
2088 } else {
2089 err = (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
2090 if (err)
2091 goto done;
2092 if (status == GOT_STATUS_NO_CHANGE) {
2093 err = remove_ondisk_file(worktree->root_path, ie->path);
2094 if (err)
2095 goto done;
2097 got_fileindex_entry_remove(fileindex, ie);
2099 done:
2100 free(ondisk_path);
2101 return err;
2104 struct diff_cb_arg {
2105 struct got_fileindex *fileindex;
2106 struct got_worktree *worktree;
2107 struct got_repository *repo;
2108 got_worktree_checkout_cb progress_cb;
2109 void *progress_arg;
2110 got_cancel_cb cancel_cb;
2111 void *cancel_arg;
2114 static const struct got_error *
2115 diff_old_new(void *arg, struct got_fileindex_entry *ie,
2116 struct got_tree_entry *te, const char *parent_path)
2118 struct diff_cb_arg *a = arg;
2120 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2121 return got_error(GOT_ERR_CANCELLED);
2123 return update_blob(a->worktree, a->fileindex, ie, te,
2124 ie->path, a->repo, a->progress_cb, a->progress_arg);
2127 static const struct got_error *
2128 diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
2130 struct diff_cb_arg *a = arg;
2132 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2133 return got_error(GOT_ERR_CANCELLED);
2135 return delete_blob(a->worktree, a->fileindex, ie,
2136 a->repo, a->progress_cb, a->progress_arg);
2139 static const struct got_error *
2140 diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
2142 struct diff_cb_arg *a = arg;
2143 const struct got_error *err;
2144 char *path;
2146 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2147 return got_error(GOT_ERR_CANCELLED);
2149 if (got_object_tree_entry_is_submodule(te))
2150 return NULL;
2152 if (asprintf(&path, "%s%s%s", parent_path,
2153 parent_path[0] ? "/" : "", te->name)
2154 == -1)
2155 return got_error_from_errno("asprintf");
2157 if (S_ISDIR(te->mode))
2158 err = add_dir_on_disk(a->worktree, path);
2159 else
2160 err = update_blob(a->worktree, a->fileindex, NULL, te, path,
2161 a->repo, a->progress_cb, a->progress_arg);
2163 free(path);
2164 return err;
2167 const struct got_error *
2168 got_worktree_get_uuid(char **uuidstr, struct got_worktree *worktree)
2170 uint32_t uuid_status;
2172 uuid_to_string(&worktree->uuid, uuidstr, &uuid_status);
2173 if (uuid_status != uuid_s_ok) {
2174 *uuidstr = NULL;
2175 return got_error_uuid(uuid_status, "uuid_to_string");
2178 return NULL;
2181 static const struct got_error *
2182 get_ref_name(char **refname, struct got_worktree *worktree, const char *prefix)
2184 const struct got_error *err = NULL;
2185 char *uuidstr = NULL;
2187 *refname = NULL;
2189 err = got_worktree_get_uuid(&uuidstr, worktree);
2190 if (err)
2191 return err;
2193 if (asprintf(refname, "%s-%s", prefix, uuidstr) == -1) {
2194 err = got_error_from_errno("asprintf");
2195 *refname = NULL;
2197 free(uuidstr);
2198 return err;
2201 const struct got_error *
2202 got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
2204 return get_ref_name(refname, worktree, GOT_WORKTREE_BASE_REF_PREFIX);
2207 static const struct got_error *
2208 get_rebase_tmp_ref_name(char **refname, struct got_worktree *worktree)
2210 return get_ref_name(refname, worktree,
2211 GOT_WORKTREE_REBASE_TMP_REF_PREFIX);
2214 static const struct got_error *
2215 get_newbase_symref_name(char **refname, struct got_worktree *worktree)
2217 return get_ref_name(refname, worktree, GOT_WORKTREE_NEWBASE_REF_PREFIX);
2220 static const struct got_error *
2221 get_rebase_branch_symref_name(char **refname, struct got_worktree *worktree)
2223 return get_ref_name(refname, worktree,
2224 GOT_WORKTREE_REBASE_BRANCH_REF_PREFIX);
2227 static const struct got_error *
2228 get_rebase_commit_ref_name(char **refname, struct got_worktree *worktree)
2230 return get_ref_name(refname, worktree,
2231 GOT_WORKTREE_REBASE_COMMIT_REF_PREFIX);
2234 static const struct got_error *
2235 get_histedit_tmp_ref_name(char **refname, struct got_worktree *worktree)
2237 return get_ref_name(refname, worktree,
2238 GOT_WORKTREE_HISTEDIT_TMP_REF_PREFIX);
2241 static const struct got_error *
2242 get_histedit_branch_symref_name(char **refname, struct got_worktree *worktree)
2244 return get_ref_name(refname, worktree,
2245 GOT_WORKTREE_HISTEDIT_BRANCH_REF_PREFIX);
2248 static const struct got_error *
2249 get_histedit_base_commit_ref_name(char **refname, struct got_worktree *worktree)
2251 return get_ref_name(refname, worktree,
2252 GOT_WORKTREE_HISTEDIT_BASE_COMMIT_REF_PREFIX);
2255 static const struct got_error *
2256 get_histedit_commit_ref_name(char **refname, struct got_worktree *worktree)
2258 return get_ref_name(refname, worktree,
2259 GOT_WORKTREE_HISTEDIT_COMMIT_REF_PREFIX);
2262 const struct got_error *
2263 got_worktree_get_histedit_script_path(char **path,
2264 struct got_worktree *worktree)
2266 if (asprintf(path, "%s/%s/%s", worktree->root_path,
2267 GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_HISTEDIT_SCRIPT) == -1) {
2268 *path = NULL;
2269 return got_error_from_errno("asprintf");
2271 return NULL;
2274 static const struct got_error *
2275 get_merge_branch_ref_name(char **refname, struct got_worktree *worktree)
2277 return get_ref_name(refname, worktree,
2278 GOT_WORKTREE_MERGE_BRANCH_REF_PREFIX);
2281 static const struct got_error *
2282 get_merge_commit_ref_name(char **refname, struct got_worktree *worktree)
2284 return get_ref_name(refname, worktree,
2285 GOT_WORKTREE_MERGE_COMMIT_REF_PREFIX);
2289 * Prevent Git's garbage collector from deleting our base commit by
2290 * setting a reference to our base commit's ID.
2292 static const struct got_error *
2293 ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
2295 const struct got_error *err = NULL;
2296 struct got_reference *ref = NULL;
2297 char *refname;
2299 err = got_worktree_get_base_ref_name(&refname, worktree);
2300 if (err)
2301 return err;
2303 err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
2304 if (err)
2305 goto done;
2307 err = got_ref_write(ref, repo);
2308 done:
2309 free(refname);
2310 if (ref)
2311 got_ref_close(ref);
2312 return err;
2315 static const struct got_error *
2316 get_fileindex_path(char **fileindex_path, struct got_worktree *worktree)
2318 const struct got_error *err = NULL;
2320 if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
2321 GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
2322 err = got_error_from_errno("asprintf");
2323 *fileindex_path = NULL;
2325 return err;
2329 static const struct got_error *
2330 open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
2331 struct got_worktree *worktree)
2333 const struct got_error *err = NULL;
2334 FILE *index = NULL;
2336 *fileindex_path = NULL;
2337 *fileindex = got_fileindex_alloc();
2338 if (*fileindex == NULL)
2339 return got_error_from_errno("got_fileindex_alloc");
2341 err = get_fileindex_path(fileindex_path, worktree);
2342 if (err)
2343 goto done;
2345 index = fopen(*fileindex_path, "rbe");
2346 if (index == NULL) {
2347 if (errno != ENOENT)
2348 err = got_error_from_errno2("fopen", *fileindex_path);
2349 } else {
2350 err = got_fileindex_read(*fileindex, index);
2351 if (fclose(index) == EOF && err == NULL)
2352 err = got_error_from_errno("fclose");
2354 done:
2355 if (err) {
2356 free(*fileindex_path);
2357 *fileindex_path = NULL;
2358 got_fileindex_free(*fileindex);
2359 *fileindex = NULL;
2361 return err;
2364 struct bump_base_commit_id_arg {
2365 struct got_object_id *base_commit_id;
2366 const char *path;
2367 size_t path_len;
2368 const char *entry_name;
2369 got_worktree_checkout_cb progress_cb;
2370 void *progress_arg;
2373 /* Bump base commit ID of all files within an updated part of the work tree. */
2374 static const struct got_error *
2375 bump_base_commit_id(void *arg, struct got_fileindex_entry *ie)
2377 const struct got_error *err;
2378 struct bump_base_commit_id_arg *a = arg;
2380 if (a->entry_name) {
2381 if (strcmp(ie->path, a->path) != 0)
2382 return NULL;
2383 } else if (!got_path_is_child(ie->path, a->path, a->path_len))
2384 return NULL;
2386 if (got_fileindex_entry_was_skipped(ie))
2387 return NULL;
2389 if (memcmp(ie->commit_sha1, a->base_commit_id->sha1,
2390 SHA1_DIGEST_LENGTH) == 0)
2391 return NULL;
2393 if (a->progress_cb) {
2394 err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_BUMP_BASE,
2395 ie->path);
2396 if (err)
2397 return err;
2399 memcpy(ie->commit_sha1, a->base_commit_id->sha1, SHA1_DIGEST_LENGTH);
2400 return NULL;
2403 static const struct got_error *
2404 bump_base_commit_id_everywhere(struct got_worktree *worktree,
2405 struct got_fileindex *fileindex,
2406 got_worktree_checkout_cb progress_cb, void *progress_arg)
2408 struct bump_base_commit_id_arg bbc_arg;
2410 bbc_arg.base_commit_id = worktree->base_commit_id;
2411 bbc_arg.entry_name = NULL;
2412 bbc_arg.path = "";
2413 bbc_arg.path_len = 0;
2414 bbc_arg.progress_cb = progress_cb;
2415 bbc_arg.progress_arg = progress_arg;
2417 return got_fileindex_for_each_entry_safe(fileindex,
2418 bump_base_commit_id, &bbc_arg);
2421 static const struct got_error *
2422 sync_fileindex(struct got_fileindex *fileindex, const char *fileindex_path)
2424 const struct got_error *err = NULL;
2425 char *new_fileindex_path = NULL;
2426 FILE *new_index = NULL;
2427 struct timespec timeout;
2429 err = got_opentemp_named(&new_fileindex_path, &new_index,
2430 fileindex_path);
2431 if (err)
2432 goto done;
2434 err = got_fileindex_write(fileindex, new_index);
2435 if (err)
2436 goto done;
2438 if (rename(new_fileindex_path, fileindex_path) != 0) {
2439 err = got_error_from_errno3("rename", new_fileindex_path,
2440 fileindex_path);
2441 unlink(new_fileindex_path);
2445 * Sleep for a short amount of time to ensure that files modified after
2446 * this program exits have a different time stamp from the one which
2447 * was recorded in the file index.
2449 timeout.tv_sec = 0;
2450 timeout.tv_nsec = 1;
2451 nanosleep(&timeout, NULL);
2452 done:
2453 if (new_index)
2454 fclose(new_index);
2455 free(new_fileindex_path);
2456 return err;
2459 static const struct got_error *
2460 find_tree_entry_for_checkout(int *entry_type, char **tree_relpath,
2461 struct got_object_id **tree_id, const char *wt_relpath,
2462 struct got_worktree *worktree, struct got_repository *repo)
2464 const struct got_error *err = NULL;
2465 struct got_object_id *id = NULL;
2466 char *in_repo_path = NULL;
2467 int is_root_wt = got_path_is_root_dir(worktree->path_prefix);
2469 *entry_type = GOT_OBJ_TYPE_ANY;
2470 *tree_relpath = NULL;
2471 *tree_id = NULL;
2473 if (wt_relpath[0] == '\0') {
2474 /* Check out all files within the work tree. */
2475 *entry_type = GOT_OBJ_TYPE_TREE;
2476 *tree_relpath = strdup("");
2477 if (*tree_relpath == NULL) {
2478 err = got_error_from_errno("strdup");
2479 goto done;
2481 err = got_object_id_by_path(tree_id, repo,
2482 worktree->base_commit_id, worktree->path_prefix);
2483 if (err)
2484 goto done;
2485 return NULL;
2488 /* Check out a subset of files in the work tree. */
2490 if (asprintf(&in_repo_path, "%s%s%s", worktree->path_prefix,
2491 is_root_wt ? "" : "/", wt_relpath) == -1) {
2492 err = got_error_from_errno("asprintf");
2493 goto done;
2496 err = got_object_id_by_path(&id, repo, worktree->base_commit_id,
2497 in_repo_path);
2498 if (err)
2499 goto done;
2501 free(in_repo_path);
2502 in_repo_path = NULL;
2504 err = got_object_get_type(entry_type, repo, id);
2505 if (err)
2506 goto done;
2508 if (*entry_type == GOT_OBJ_TYPE_BLOB) {
2509 /* Check out a single file. */
2510 if (strchr(wt_relpath, '/') == NULL) {
2511 /* Check out a single file in work tree's root dir. */
2512 in_repo_path = strdup(worktree->path_prefix);
2513 if (in_repo_path == NULL) {
2514 err = got_error_from_errno("strdup");
2515 goto done;
2517 *tree_relpath = strdup("");
2518 if (*tree_relpath == NULL) {
2519 err = got_error_from_errno("strdup");
2520 goto done;
2522 } else {
2523 /* Check out a single file in a subdirectory. */
2524 err = got_path_dirname(tree_relpath, wt_relpath);
2525 if (err)
2526 return err;
2527 if (asprintf(&in_repo_path, "%s%s%s",
2528 worktree->path_prefix, is_root_wt ? "" : "/",
2529 *tree_relpath) == -1) {
2530 err = got_error_from_errno("asprintf");
2531 goto done;
2534 err = got_object_id_by_path(tree_id, repo,
2535 worktree->base_commit_id, in_repo_path);
2536 } else {
2537 /* Check out all files within a subdirectory. */
2538 *tree_id = got_object_id_dup(id);
2539 if (*tree_id == NULL) {
2540 err = got_error_from_errno("got_object_id_dup");
2541 goto done;
2543 *tree_relpath = strdup(wt_relpath);
2544 if (*tree_relpath == NULL) {
2545 err = got_error_from_errno("strdup");
2546 goto done;
2549 done:
2550 free(id);
2551 free(in_repo_path);
2552 if (err) {
2553 *entry_type = GOT_OBJ_TYPE_ANY;
2554 free(*tree_relpath);
2555 *tree_relpath = NULL;
2556 free(*tree_id);
2557 *tree_id = NULL;
2559 return err;
2562 static const struct got_error *
2563 checkout_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
2564 const char *relpath, struct got_object_id *tree_id, const char *entry_name,
2565 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
2566 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
2568 const struct got_error *err = NULL;
2569 struct got_commit_object *commit = NULL;
2570 struct got_tree_object *tree = NULL;
2571 struct got_fileindex_diff_tree_cb diff_cb;
2572 struct diff_cb_arg arg;
2574 err = ref_base_commit(worktree, repo);
2575 if (err) {
2576 if (!(err->code == GOT_ERR_ERRNO &&
2577 (errno == EACCES || errno == EROFS)))
2578 goto done;
2579 err = (*progress_cb)(progress_arg,
2580 GOT_STATUS_BASE_REF_ERR, worktree->root_path);
2581 if (err)
2582 return err;
2585 err = got_object_open_as_commit(&commit, repo,
2586 worktree->base_commit_id);
2587 if (err)
2588 goto done;
2590 err = got_object_open_as_tree(&tree, repo, tree_id);
2591 if (err)
2592 goto done;
2594 if (entry_name &&
2595 got_object_tree_find_entry(tree, entry_name) == NULL) {
2596 err = got_error_path(entry_name, GOT_ERR_NO_TREE_ENTRY);
2597 goto done;
2600 diff_cb.diff_old_new = diff_old_new;
2601 diff_cb.diff_old = diff_old;
2602 diff_cb.diff_new = diff_new;
2603 arg.fileindex = fileindex;
2604 arg.worktree = worktree;
2605 arg.repo = repo;
2606 arg.progress_cb = progress_cb;
2607 arg.progress_arg = progress_arg;
2608 arg.cancel_cb = cancel_cb;
2609 arg.cancel_arg = cancel_arg;
2610 err = got_fileindex_diff_tree(fileindex, tree, relpath,
2611 entry_name, repo, &diff_cb, &arg);
2612 done:
2613 if (tree)
2614 got_object_tree_close(tree);
2615 if (commit)
2616 got_object_commit_close(commit);
2617 return err;
2620 const struct got_error *
2621 got_worktree_checkout_files(struct got_worktree *worktree,
2622 struct got_pathlist_head *paths, struct got_repository *repo,
2623 got_worktree_checkout_cb progress_cb, void *progress_arg,
2624 got_cancel_cb cancel_cb, void *cancel_arg)
2626 const struct got_error *err = NULL, *sync_err, *unlockerr;
2627 struct got_commit_object *commit = NULL;
2628 struct got_tree_object *tree = NULL;
2629 struct got_fileindex *fileindex = NULL;
2630 char *fileindex_path = NULL;
2631 struct got_pathlist_entry *pe;
2632 struct tree_path_data {
2633 STAILQ_ENTRY(tree_path_data) entry;
2634 struct got_object_id *tree_id;
2635 int entry_type;
2636 char *relpath;
2637 char *entry_name;
2638 } *tpd = NULL;
2639 STAILQ_HEAD(tree_paths, tree_path_data) tree_paths;
2641 STAILQ_INIT(&tree_paths);
2643 err = lock_worktree(worktree, LOCK_EX);
2644 if (err)
2645 return err;
2647 /* Map all specified paths to in-repository trees. */
2648 TAILQ_FOREACH(pe, paths, entry) {
2649 tpd = malloc(sizeof(*tpd));
2650 if (tpd == NULL) {
2651 err = got_error_from_errno("malloc");
2652 goto done;
2655 err = find_tree_entry_for_checkout(&tpd->entry_type,
2656 &tpd->relpath, &tpd->tree_id, pe->path, worktree, repo);
2657 if (err) {
2658 free(tpd);
2659 goto done;
2662 if (tpd->entry_type == GOT_OBJ_TYPE_BLOB) {
2663 err = got_path_basename(&tpd->entry_name, pe->path);
2664 if (err) {
2665 free(tpd->relpath);
2666 free(tpd->tree_id);
2667 free(tpd);
2668 goto done;
2670 } else
2671 tpd->entry_name = NULL;
2673 STAILQ_INSERT_TAIL(&tree_paths, tpd, entry);
2677 * Read the file index.
2678 * Checking out files is supposed to be an idempotent operation.
2679 * If the on-disk file index is incomplete we will try to complete it.
2681 err = open_fileindex(&fileindex, &fileindex_path, worktree);
2682 if (err)
2683 goto done;
2685 tpd = STAILQ_FIRST(&tree_paths);
2686 TAILQ_FOREACH(pe, paths, entry) {
2687 struct bump_base_commit_id_arg bbc_arg;
2689 err = checkout_files(worktree, fileindex, tpd->relpath,
2690 tpd->tree_id, tpd->entry_name, repo,
2691 progress_cb, progress_arg, cancel_cb, cancel_arg);
2692 if (err)
2693 break;
2695 bbc_arg.base_commit_id = worktree->base_commit_id;
2696 bbc_arg.entry_name = tpd->entry_name;
2697 bbc_arg.path = pe->path;
2698 bbc_arg.path_len = pe->path_len;
2699 bbc_arg.progress_cb = progress_cb;
2700 bbc_arg.progress_arg = progress_arg;
2701 err = got_fileindex_for_each_entry_safe(fileindex,
2702 bump_base_commit_id, &bbc_arg);
2703 if (err)
2704 break;
2706 tpd = STAILQ_NEXT(tpd, entry);
2708 sync_err = sync_fileindex(fileindex, fileindex_path);
2709 if (sync_err && err == NULL)
2710 err = sync_err;
2711 done:
2712 free(fileindex_path);
2713 if (tree)
2714 got_object_tree_close(tree);
2715 if (commit)
2716 got_object_commit_close(commit);
2717 if (fileindex)
2718 got_fileindex_free(fileindex);
2719 while (!STAILQ_EMPTY(&tree_paths)) {
2720 tpd = STAILQ_FIRST(&tree_paths);
2721 STAILQ_REMOVE_HEAD(&tree_paths, entry);
2722 free(tpd->relpath);
2723 free(tpd->tree_id);
2724 free(tpd);
2726 unlockerr = lock_worktree(worktree, LOCK_SH);
2727 if (unlockerr && err == NULL)
2728 err = unlockerr;
2729 return err;
2732 struct merge_file_cb_arg {
2733 struct got_worktree *worktree;
2734 struct got_fileindex *fileindex;
2735 got_worktree_checkout_cb progress_cb;
2736 void *progress_arg;
2737 got_cancel_cb cancel_cb;
2738 void *cancel_arg;
2739 const char *label_orig;
2740 struct got_object_id *commit_id2;
2741 int allow_bad_symlinks;
2744 static const struct got_error *
2745 merge_file_cb(void *arg, struct got_blob_object *blob1,
2746 struct got_blob_object *blob2, struct got_object_id *id1,
2747 struct got_object_id *id2, const char *path1, const char *path2,
2748 mode_t mode1, mode_t mode2, struct got_repository *repo)
2750 static const struct got_error *err = NULL;
2751 struct merge_file_cb_arg *a = arg;
2752 struct got_fileindex_entry *ie;
2753 char *ondisk_path = NULL;
2754 struct stat sb;
2755 unsigned char status;
2756 int local_changes_subsumed;
2757 FILE *f_orig = NULL, *f_deriv = NULL, *f_deriv2 = NULL;
2758 char *id_str = NULL, *label_deriv2 = NULL;
2760 if (blob1 && blob2) {
2761 ie = got_fileindex_entry_get(a->fileindex, path2,
2762 strlen(path2));
2763 if (ie == NULL)
2764 return (*a->progress_cb)(a->progress_arg,
2765 GOT_STATUS_MISSING, path2);
2767 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2768 path2) == -1)
2769 return got_error_from_errno("asprintf");
2771 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2772 repo);
2773 if (err)
2774 goto done;
2776 if (status == GOT_STATUS_DELETE) {
2777 err = (*a->progress_cb)(a->progress_arg,
2778 GOT_STATUS_MERGE, path2);
2779 goto done;
2781 if (status != GOT_STATUS_NO_CHANGE &&
2782 status != GOT_STATUS_MODIFY &&
2783 status != GOT_STATUS_CONFLICT &&
2784 status != GOT_STATUS_ADD) {
2785 err = (*a->progress_cb)(a->progress_arg, status, path2);
2786 goto done;
2789 if (S_ISLNK(mode1) && S_ISLNK(mode2)) {
2790 char *link_target2;
2791 err = got_object_blob_read_to_str(&link_target2, blob2);
2792 if (err)
2793 goto done;
2794 err = merge_symlink(a->worktree, blob1, ondisk_path,
2795 path2, a->label_orig, link_target2, a->commit_id2,
2796 repo, a->progress_cb, a->progress_arg);
2797 free(link_target2);
2798 } else {
2799 int fd;
2801 f_orig = got_opentemp();
2802 if (f_orig == NULL) {
2803 err = got_error_from_errno("got_opentemp");
2804 goto done;
2806 err = got_object_blob_dump_to_file(NULL, NULL, NULL,
2807 f_orig, blob1);
2808 if (err)
2809 goto done;
2811 f_deriv2 = got_opentemp();
2812 if (f_deriv2 == NULL)
2813 goto done;
2814 err = got_object_blob_dump_to_file(NULL, NULL, NULL,
2815 f_deriv2, blob2);
2816 if (err)
2817 goto done;
2819 fd = open(ondisk_path,
2820 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
2821 if (fd == -1) {
2822 err = got_error_from_errno2("open",
2823 ondisk_path);
2824 goto done;
2826 f_deriv = fdopen(fd, "r");
2827 if (f_deriv == NULL) {
2828 err = got_error_from_errno2("fdopen",
2829 ondisk_path);
2830 close(fd);
2831 goto done;
2833 err = got_object_id_str(&id_str, a->commit_id2);
2834 if (err)
2835 goto done;
2836 if (asprintf(&label_deriv2, "%s: commit %s",
2837 GOT_MERGE_LABEL_MERGED, id_str) == -1) {
2838 err = got_error_from_errno("asprintf");
2839 goto done;
2841 err = merge_file(&local_changes_subsumed, a->worktree,
2842 f_orig, f_deriv, f_deriv2, ondisk_path, path2,
2843 sb.st_mode, a->label_orig, NULL, label_deriv2,
2844 GOT_DIFF_ALGORITHM_PATIENCE, repo,
2845 a->progress_cb, a->progress_arg);
2847 } else if (blob1) {
2848 ie = got_fileindex_entry_get(a->fileindex, path1,
2849 strlen(path1));
2850 if (ie == NULL)
2851 return (*a->progress_cb)(a->progress_arg,
2852 GOT_STATUS_MISSING, path1);
2854 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2855 path1) == -1)
2856 return got_error_from_errno("asprintf");
2858 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2859 repo);
2860 if (err)
2861 goto done;
2863 switch (status) {
2864 case GOT_STATUS_NO_CHANGE:
2865 err = (*a->progress_cb)(a->progress_arg,
2866 GOT_STATUS_DELETE, path1);
2867 if (err)
2868 goto done;
2869 err = remove_ondisk_file(a->worktree->root_path, path1);
2870 if (err)
2871 goto done;
2872 if (ie)
2873 got_fileindex_entry_mark_deleted_from_disk(ie);
2874 break;
2875 case GOT_STATUS_DELETE:
2876 case GOT_STATUS_MISSING:
2877 err = (*a->progress_cb)(a->progress_arg,
2878 GOT_STATUS_DELETE, path1);
2879 if (err)
2880 goto done;
2881 if (ie)
2882 got_fileindex_entry_mark_deleted_from_disk(ie);
2883 break;
2884 case GOT_STATUS_ADD: {
2885 struct got_object_id *id;
2886 FILE *blob1_f;
2887 off_t blob1_size;
2889 * Delete the added file only if its content already
2890 * exists in the repository.
2892 err = got_object_blob_file_create(&id, &blob1_f,
2893 &blob1_size, path1);
2894 if (err)
2895 goto done;
2896 if (got_object_id_cmp(id, id1) == 0) {
2897 err = (*a->progress_cb)(a->progress_arg,
2898 GOT_STATUS_DELETE, path1);
2899 if (err)
2900 goto done;
2901 err = remove_ondisk_file(a->worktree->root_path,
2902 path1);
2903 if (err)
2904 goto done;
2905 if (ie)
2906 got_fileindex_entry_remove(a->fileindex,
2907 ie);
2908 } else {
2909 err = (*a->progress_cb)(a->progress_arg,
2910 GOT_STATUS_CANNOT_DELETE, path1);
2912 if (fclose(blob1_f) == EOF && err == NULL)
2913 err = got_error_from_errno("fclose");
2914 free(id);
2915 if (err)
2916 goto done;
2917 break;
2919 case GOT_STATUS_MODIFY:
2920 case GOT_STATUS_CONFLICT:
2921 err = (*a->progress_cb)(a->progress_arg,
2922 GOT_STATUS_CANNOT_DELETE, path1);
2923 if (err)
2924 goto done;
2925 break;
2926 case GOT_STATUS_OBSTRUCTED:
2927 err = (*a->progress_cb)(a->progress_arg, status, path1);
2928 if (err)
2929 goto done;
2930 break;
2931 default:
2932 break;
2934 } else if (blob2) {
2935 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2936 path2) == -1)
2937 return got_error_from_errno("asprintf");
2938 ie = got_fileindex_entry_get(a->fileindex, path2,
2939 strlen(path2));
2940 if (ie) {
2941 err = get_file_status(&status, &sb, ie, ondisk_path,
2942 -1, NULL, repo);
2943 if (err)
2944 goto done;
2945 if (status != GOT_STATUS_NO_CHANGE &&
2946 status != GOT_STATUS_MODIFY &&
2947 status != GOT_STATUS_CONFLICT &&
2948 status != GOT_STATUS_ADD) {
2949 err = (*a->progress_cb)(a->progress_arg,
2950 status, path2);
2951 goto done;
2953 if (S_ISLNK(mode2) && S_ISLNK(sb.st_mode)) {
2954 char *link_target2;
2955 err = got_object_blob_read_to_str(&link_target2,
2956 blob2);
2957 if (err)
2958 goto done;
2959 err = merge_symlink(a->worktree, NULL,
2960 ondisk_path, path2, a->label_orig,
2961 link_target2, a->commit_id2, repo,
2962 a->progress_cb, a->progress_arg);
2963 free(link_target2);
2964 } else if (S_ISREG(sb.st_mode)) {
2965 err = merge_blob(&local_changes_subsumed,
2966 a->worktree, NULL, ondisk_path, path2,
2967 sb.st_mode, a->label_orig, blob2,
2968 a->commit_id2, repo, a->progress_cb,
2969 a->progress_arg);
2970 } else {
2971 err = got_error_path(ondisk_path,
2972 GOT_ERR_FILE_OBSTRUCTED);
2974 if (err)
2975 goto done;
2976 if (status == GOT_STATUS_DELETE) {
2977 err = got_fileindex_entry_update(ie,
2978 a->worktree->root_fd, path2, blob2->id.sha1,
2979 a->worktree->base_commit_id->sha1, 0);
2980 if (err)
2981 goto done;
2983 } else {
2984 int is_bad_symlink = 0;
2985 sb.st_mode = GOT_DEFAULT_FILE_MODE;
2986 if (S_ISLNK(mode2)) {
2987 err = install_symlink(&is_bad_symlink,
2988 a->worktree, ondisk_path, path2, blob2, 0,
2989 0, 1, a->allow_bad_symlinks, repo,
2990 a->progress_cb, a->progress_arg);
2991 } else {
2992 err = install_blob(a->worktree, ondisk_path, path2,
2993 mode2, sb.st_mode, blob2, 0, 0, 0, 1, repo,
2994 a->progress_cb, a->progress_arg);
2996 if (err)
2997 goto done;
2998 err = got_fileindex_entry_alloc(&ie, path2);
2999 if (err)
3000 goto done;
3001 err = got_fileindex_entry_update(ie,
3002 a->worktree->root_fd, path2, NULL, NULL, 1);
3003 if (err) {
3004 got_fileindex_entry_free(ie);
3005 goto done;
3007 err = got_fileindex_entry_add(a->fileindex, ie);
3008 if (err) {
3009 got_fileindex_entry_free(ie);
3010 goto done;
3012 if (is_bad_symlink) {
3013 got_fileindex_entry_filetype_set(ie,
3014 GOT_FILEIDX_MODE_BAD_SYMLINK);
3018 done:
3019 if (f_orig && fclose(f_orig) == EOF && err == NULL)
3020 err = got_error_from_errno("fclose");
3021 if (f_deriv && fclose(f_deriv) == EOF && err == NULL)
3022 err = got_error_from_errno("fclose");
3023 if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
3024 err = got_error_from_errno("fclose");
3025 free(id_str);
3026 free(label_deriv2);
3027 free(ondisk_path);
3028 return err;
3031 static const struct got_error *
3032 check_mixed_commits(void *arg, struct got_fileindex_entry *ie)
3034 struct got_worktree *worktree = arg;
3036 /* Reject merges into a work tree with mixed base commits. */
3037 if (got_fileindex_entry_has_commit(ie) &&
3038 memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
3039 SHA1_DIGEST_LENGTH) != 0)
3040 return got_error(GOT_ERR_MIXED_COMMITS);
3042 return NULL;
3045 struct check_merge_conflicts_arg {
3046 struct got_worktree *worktree;
3047 struct got_fileindex *fileindex;
3048 struct got_repository *repo;
3051 static const struct got_error *
3052 check_merge_conflicts(void *arg, struct got_blob_object *blob1,
3053 struct got_blob_object *blob2, struct got_object_id *id1,
3054 struct got_object_id *id2, const char *path1, const char *path2,
3055 mode_t mode1, mode_t mode2, struct got_repository *repo)
3057 const struct got_error *err = NULL;
3058 struct check_merge_conflicts_arg *a = arg;
3059 unsigned char status;
3060 struct stat sb;
3061 struct got_fileindex_entry *ie;
3062 const char *path = path2 ? path2 : path1;
3063 struct got_object_id *id = id2 ? id2 : id1;
3064 char *ondisk_path;
3066 if (id == NULL)
3067 return NULL;
3069 ie = got_fileindex_entry_get(a->fileindex, path, strlen(path));
3070 if (ie == NULL)
3071 return NULL;
3073 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
3074 == -1)
3075 return got_error_from_errno("asprintf");
3077 /* Reject merges into a work tree with conflicted files. */
3078 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
3079 free(ondisk_path);
3080 if (err)
3081 return err;
3082 if (status == GOT_STATUS_CONFLICT)
3083 return got_error(GOT_ERR_CONFLICTS);
3085 return NULL;
3088 static const struct got_error *
3089 merge_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
3090 const char *fileindex_path, struct got_object_id *commit_id1,
3091 struct got_object_id *commit_id2, struct got_repository *repo,
3092 got_worktree_checkout_cb progress_cb, void *progress_arg,
3093 got_cancel_cb cancel_cb, void *cancel_arg)
3095 const struct got_error *err = NULL, *sync_err;
3096 struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
3097 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3098 struct check_merge_conflicts_arg cmc_arg;
3099 struct merge_file_cb_arg arg;
3100 char *label_orig = NULL;
3102 if (commit_id1) {
3103 err = got_object_id_by_path(&tree_id1, repo, commit_id1,
3104 worktree->path_prefix);
3105 if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
3106 goto done;
3108 if (tree_id1) {
3109 char *id_str;
3111 err = got_object_open_as_tree(&tree1, repo, tree_id1);
3112 if (err)
3113 goto done;
3115 err = got_object_id_str(&id_str, commit_id1);
3116 if (err)
3117 goto done;
3119 if (asprintf(&label_orig, "%s: commit %s",
3120 GOT_MERGE_LABEL_BASE, id_str) == -1) {
3121 err = got_error_from_errno("asprintf");
3122 free(id_str);
3123 goto done;
3125 free(id_str);
3128 err = got_object_id_by_path(&tree_id2, repo, commit_id2,
3129 worktree->path_prefix);
3130 if (err)
3131 goto done;
3133 err = got_object_open_as_tree(&tree2, repo, tree_id2);
3134 if (err)
3135 goto done;
3137 cmc_arg.worktree = worktree;
3138 cmc_arg.fileindex = fileindex;
3139 cmc_arg.repo = repo;
3140 err = got_diff_tree(tree1, tree2, "", "", repo,
3141 check_merge_conflicts, &cmc_arg, 0);
3142 if (err)
3143 goto done;
3145 arg.worktree = worktree;
3146 arg.fileindex = fileindex;
3147 arg.progress_cb = progress_cb;
3148 arg.progress_arg = progress_arg;
3149 arg.cancel_cb = cancel_cb;
3150 arg.cancel_arg = cancel_arg;
3151 arg.label_orig = label_orig;
3152 arg.commit_id2 = commit_id2;
3153 arg.allow_bad_symlinks = 1; /* preserve bad symlinks across merges */
3154 err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg, 1);
3155 sync_err = sync_fileindex(fileindex, fileindex_path);
3156 if (sync_err && err == NULL)
3157 err = sync_err;
3158 done:
3159 if (tree1)
3160 got_object_tree_close(tree1);
3161 if (tree2)
3162 got_object_tree_close(tree2);
3163 free(label_orig);
3164 return err;
3167 const struct got_error *
3168 got_worktree_merge_files(struct got_worktree *worktree,
3169 struct got_object_id *commit_id1, struct got_object_id *commit_id2,
3170 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
3171 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
3173 const struct got_error *err, *unlockerr;
3174 char *fileindex_path = NULL;
3175 struct got_fileindex *fileindex = NULL;
3177 err = lock_worktree(worktree, LOCK_EX);
3178 if (err)
3179 return err;
3181 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3182 if (err)
3183 goto done;
3185 err = got_fileindex_for_each_entry_safe(fileindex, check_mixed_commits,
3186 worktree);
3187 if (err)
3188 goto done;
3190 err = merge_files(worktree, fileindex, fileindex_path, commit_id1,
3191 commit_id2, repo, progress_cb, progress_arg,
3192 cancel_cb, cancel_arg);
3193 done:
3194 if (fileindex)
3195 got_fileindex_free(fileindex);
3196 free(fileindex_path);
3197 unlockerr = lock_worktree(worktree, LOCK_SH);
3198 if (unlockerr && err == NULL)
3199 err = unlockerr;
3200 return err;
3203 struct diff_dir_cb_arg {
3204 struct got_fileindex *fileindex;
3205 struct got_worktree *worktree;
3206 const char *status_path;
3207 size_t status_path_len;
3208 struct got_repository *repo;
3209 got_worktree_status_cb status_cb;
3210 void *status_arg;
3211 got_cancel_cb cancel_cb;
3212 void *cancel_arg;
3213 /* A pathlist containing per-directory pathlists of ignore patterns. */
3214 struct got_pathlist_head *ignores;
3215 int report_unchanged;
3216 int no_ignores;
3219 static const struct got_error *
3220 report_file_status(struct got_fileindex_entry *ie, const char *abspath,
3221 int dirfd, const char *de_name,
3222 got_worktree_status_cb status_cb, void *status_arg,
3223 struct got_repository *repo, int report_unchanged)
3225 const struct got_error *err = NULL;
3226 unsigned char status = GOT_STATUS_NO_CHANGE;
3227 unsigned char staged_status = get_staged_status(ie);
3228 struct stat sb;
3229 struct got_object_id blob_id, commit_id, staged_blob_id;
3230 struct got_object_id *blob_idp = NULL, *commit_idp = NULL;
3231 struct got_object_id *staged_blob_idp = NULL;
3233 err = get_file_status(&status, &sb, ie, abspath, dirfd, de_name, repo);
3234 if (err)
3235 return err;
3237 if (status == GOT_STATUS_NO_CHANGE &&
3238 staged_status == GOT_STATUS_NO_CHANGE && !report_unchanged)
3239 return NULL;
3241 if (got_fileindex_entry_has_blob(ie)) {
3242 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3243 blob_idp = &blob_id;
3245 if (got_fileindex_entry_has_commit(ie)) {
3246 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3247 commit_idp = &commit_id;
3249 if (staged_status == GOT_STATUS_ADD ||
3250 staged_status == GOT_STATUS_MODIFY) {
3251 memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
3252 SHA1_DIGEST_LENGTH);
3253 staged_blob_idp = &staged_blob_id;
3256 return (*status_cb)(status_arg, status, staged_status,
3257 ie->path, blob_idp, staged_blob_idp, commit_idp, dirfd, de_name);
3260 static const struct got_error *
3261 status_old_new(void *arg, struct got_fileindex_entry *ie,
3262 struct dirent *de, const char *parent_path, int dirfd)
3264 const struct got_error *err = NULL;
3265 struct diff_dir_cb_arg *a = arg;
3266 char *abspath;
3268 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3269 return got_error(GOT_ERR_CANCELLED);
3271 if (got_path_cmp(parent_path, a->status_path,
3272 strlen(parent_path), a->status_path_len) != 0 &&
3273 !got_path_is_child(parent_path, a->status_path, a->status_path_len))
3274 return NULL;
3276 if (parent_path[0]) {
3277 if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
3278 parent_path, de->d_name) == -1)
3279 return got_error_from_errno("asprintf");
3280 } else {
3281 if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
3282 de->d_name) == -1)
3283 return got_error_from_errno("asprintf");
3286 err = report_file_status(ie, abspath, dirfd, de->d_name,
3287 a->status_cb, a->status_arg, a->repo, a->report_unchanged);
3288 free(abspath);
3289 return err;
3292 static const struct got_error *
3293 status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
3295 struct diff_dir_cb_arg *a = arg;
3296 struct got_object_id blob_id, commit_id;
3297 unsigned char status;
3299 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3300 return got_error(GOT_ERR_CANCELLED);
3302 if (!got_path_is_child(ie->path, a->status_path, a->status_path_len))
3303 return NULL;
3305 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
3306 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
3307 if (got_fileindex_entry_has_file_on_disk(ie))
3308 status = GOT_STATUS_MISSING;
3309 else
3310 status = GOT_STATUS_DELETE;
3311 return (*a->status_cb)(a->status_arg, status, get_staged_status(ie),
3312 ie->path, &blob_id, NULL, &commit_id, -1, NULL);
3315 void
3316 free_ignorelist(struct got_pathlist_head *ignorelist)
3318 struct got_pathlist_entry *pe;
3320 TAILQ_FOREACH(pe, ignorelist, entry)
3321 free((char *)pe->path);
3322 got_pathlist_free(ignorelist);
3325 void
3326 free_ignores(struct got_pathlist_head *ignores)
3328 struct got_pathlist_entry *pe;
3330 TAILQ_FOREACH(pe, ignores, entry) {
3331 struct got_pathlist_head *ignorelist = pe->data;
3332 free_ignorelist(ignorelist);
3333 free((char *)pe->path);
3335 got_pathlist_free(ignores);
3338 static const struct got_error *
3339 read_ignores(struct got_pathlist_head *ignores, const char *path, FILE *f)
3341 const struct got_error *err = NULL;
3342 struct got_pathlist_entry *pe = NULL;
3343 struct got_pathlist_head *ignorelist;
3344 char *line = NULL, *pattern, *dirpath = NULL;
3345 size_t linesize = 0;
3346 ssize_t linelen;
3348 ignorelist = calloc(1, sizeof(*ignorelist));
3349 if (ignorelist == NULL)
3350 return got_error_from_errno("calloc");
3351 TAILQ_INIT(ignorelist);
3353 while ((linelen = getline(&line, &linesize, f)) != -1) {
3354 if (linelen > 0 && line[linelen - 1] == '\n')
3355 line[linelen - 1] = '\0';
3357 /* Git's ignores may contain comments. */
3358 if (line[0] == '#')
3359 continue;
3361 /* Git's negated patterns are not (yet?) supported. */
3362 if (line[0] == '!')
3363 continue;
3365 if (asprintf(&pattern, "%s%s%s", path, path[0] ? "/" : "",
3366 line) == -1) {
3367 err = got_error_from_errno("asprintf");
3368 goto done;
3370 err = got_pathlist_insert(NULL, ignorelist, pattern, NULL);
3371 if (err)
3372 goto done;
3374 if (ferror(f)) {
3375 err = got_error_from_errno("getline");
3376 goto done;
3379 dirpath = strdup(path);
3380 if (dirpath == NULL) {
3381 err = got_error_from_errno("strdup");
3382 goto done;
3384 err = got_pathlist_insert(&pe, ignores, dirpath, ignorelist);
3385 done:
3386 free(line);
3387 if (err || pe == NULL) {
3388 free(dirpath);
3389 free_ignorelist(ignorelist);
3391 return err;
3394 int
3395 match_ignores(struct got_pathlist_head *ignores, const char *path)
3397 struct got_pathlist_entry *pe;
3399 /* Handle patterns which match in all directories. */
3400 TAILQ_FOREACH(pe, ignores, entry) {
3401 struct got_pathlist_head *ignorelist = pe->data;
3402 struct got_pathlist_entry *pi;
3404 TAILQ_FOREACH(pi, ignorelist, entry) {
3405 const char *p, *pattern = pi->path;
3407 if (strncmp(pattern, "**/", 3) != 0)
3408 continue;
3409 pattern += 3;
3410 p = path;
3411 while (*p) {
3412 if (fnmatch(pattern, p,
3413 FNM_PATHNAME | FNM_LEADING_DIR)) {
3414 /* Retry in next directory. */
3415 while (*p && *p != '/')
3416 p++;
3417 while (*p == '/')
3418 p++;
3419 continue;
3421 return 1;
3427 * The ignores pathlist contains ignore lists from children before
3428 * parents, so we can find the most specific ignorelist by walking
3429 * ignores backwards.
3431 pe = TAILQ_LAST(ignores, got_pathlist_head);
3432 while (pe) {
3433 if (got_path_is_child(path, pe->path, pe->path_len)) {
3434 struct got_pathlist_head *ignorelist = pe->data;
3435 struct got_pathlist_entry *pi;
3436 TAILQ_FOREACH(pi, ignorelist, entry) {
3437 const char *pattern = pi->path;
3438 int flags = FNM_LEADING_DIR;
3439 if (strstr(pattern, "/**/") == NULL)
3440 flags |= FNM_PATHNAME;
3441 if (fnmatch(pattern, path, flags))
3442 continue;
3443 return 1;
3446 pe = TAILQ_PREV(pe, got_pathlist_head, entry);
3449 return 0;
3452 static const struct got_error *
3453 add_ignores(struct got_pathlist_head *ignores, const char *root_path,
3454 const char *path, int dirfd, const char *ignores_filename)
3456 const struct got_error *err = NULL;
3457 char *ignorespath;
3458 int fd = -1;
3459 FILE *ignoresfile = NULL;
3461 if (asprintf(&ignorespath, "%s/%s%s%s", root_path, path,
3462 path[0] ? "/" : "", ignores_filename) == -1)
3463 return got_error_from_errno("asprintf");
3465 if (dirfd != -1) {
3466 fd = openat(dirfd, ignores_filename,
3467 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
3468 if (fd == -1) {
3469 if (errno != ENOENT && errno != EACCES)
3470 err = got_error_from_errno2("openat",
3471 ignorespath);
3472 } else {
3473 ignoresfile = fdopen(fd, "r");
3474 if (ignoresfile == NULL)
3475 err = got_error_from_errno2("fdopen",
3476 ignorespath);
3477 else {
3478 fd = -1;
3479 err = read_ignores(ignores, path, ignoresfile);
3482 } else {
3483 ignoresfile = fopen(ignorespath, "re");
3484 if (ignoresfile == NULL) {
3485 if (errno != ENOENT && errno != EACCES)
3486 err = got_error_from_errno2("fopen",
3487 ignorespath);
3488 } else
3489 err = read_ignores(ignores, path, ignoresfile);
3492 if (ignoresfile && fclose(ignoresfile) == EOF && err == NULL)
3493 err = got_error_from_errno2("fclose", path);
3494 if (fd != -1 && close(fd) == -1 && err == NULL)
3495 err = got_error_from_errno2("close", path);
3496 free(ignorespath);
3497 return err;
3500 static const struct got_error *
3501 status_new(int *ignore, void *arg, struct dirent *de, const char *parent_path,
3502 int dirfd)
3504 const struct got_error *err = NULL;
3505 struct diff_dir_cb_arg *a = arg;
3506 char *path = NULL;
3508 if (ignore != NULL)
3509 *ignore = 0;
3511 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
3512 return got_error(GOT_ERR_CANCELLED);
3514 if (parent_path[0]) {
3515 if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
3516 return got_error_from_errno("asprintf");
3517 } else {
3518 path = de->d_name;
3521 if (de->d_type == DT_DIR) {
3522 if (!a->no_ignores && ignore != NULL &&
3523 match_ignores(a->ignores, path))
3524 *ignore = 1;
3525 } else if (!match_ignores(a->ignores, path) &&
3526 got_path_is_child(path, a->status_path, a->status_path_len))
3527 err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED,
3528 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3529 if (parent_path[0])
3530 free(path);
3531 return err;
3534 static const struct got_error *
3535 status_traverse(void *arg, const char *path, int dirfd)
3537 const struct got_error *err = NULL;
3538 struct diff_dir_cb_arg *a = arg;
3540 if (a->no_ignores)
3541 return NULL;
3543 err = add_ignores(a->ignores, a->worktree->root_path,
3544 path, dirfd, ".cvsignore");
3545 if (err)
3546 return err;
3548 err = add_ignores(a->ignores, a->worktree->root_path, path,
3549 dirfd, ".gitignore");
3551 return err;
3554 static const struct got_error *
3555 report_single_file_status(const char *path, const char *ondisk_path,
3556 struct got_fileindex *fileindex, got_worktree_status_cb status_cb,
3557 void *status_arg, struct got_repository *repo, int report_unchanged,
3558 struct got_pathlist_head *ignores, int no_ignores)
3560 struct got_fileindex_entry *ie;
3561 struct stat sb;
3563 ie = got_fileindex_entry_get(fileindex, path, strlen(path));
3564 if (ie)
3565 return report_file_status(ie, ondisk_path, -1, NULL,
3566 status_cb, status_arg, repo, report_unchanged);
3568 if (lstat(ondisk_path, &sb) == -1) {
3569 if (errno != ENOENT)
3570 return got_error_from_errno2("lstat", ondisk_path);
3571 return (*status_cb)(status_arg, GOT_STATUS_NONEXISTENT,
3572 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3575 if (!no_ignores && match_ignores(ignores, path))
3576 return NULL;
3578 if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode))
3579 return (*status_cb)(status_arg, GOT_STATUS_UNVERSIONED,
3580 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
3582 return NULL;
3585 static const struct got_error *
3586 add_ignores_from_parent_paths(struct got_pathlist_head *ignores,
3587 const char *root_path, const char *path)
3589 const struct got_error *err;
3590 char *parent_path, *next_parent_path = NULL;
3592 err = add_ignores(ignores, root_path, "", -1,
3593 ".cvsignore");
3594 if (err)
3595 return err;
3597 err = add_ignores(ignores, root_path, "", -1,
3598 ".gitignore");
3599 if (err)
3600 return err;
3602 err = got_path_dirname(&parent_path, path);
3603 if (err) {
3604 if (err->code == GOT_ERR_BAD_PATH)
3605 return NULL; /* cannot traverse parent */
3606 return err;
3608 for (;;) {
3609 err = add_ignores(ignores, root_path, parent_path, -1,
3610 ".cvsignore");
3611 if (err)
3612 break;
3613 err = add_ignores(ignores, root_path, parent_path, -1,
3614 ".gitignore");
3615 if (err)
3616 break;
3617 err = got_path_dirname(&next_parent_path, parent_path);
3618 if (err) {
3619 if (err->code == GOT_ERR_BAD_PATH)
3620 err = NULL; /* traversed everything */
3621 break;
3623 if (got_path_is_root_dir(parent_path))
3624 break;
3625 free(parent_path);
3626 parent_path = next_parent_path;
3627 next_parent_path = NULL;
3630 free(parent_path);
3631 free(next_parent_path);
3632 return err;
3635 static const struct got_error *
3636 worktree_status(struct got_worktree *worktree, const char *path,
3637 struct got_fileindex *fileindex, struct got_repository *repo,
3638 got_worktree_status_cb status_cb, void *status_arg,
3639 got_cancel_cb cancel_cb, void *cancel_arg, int no_ignores,
3640 int report_unchanged)
3642 const struct got_error *err = NULL;
3643 int fd = -1;
3644 struct got_fileindex_diff_dir_cb fdiff_cb;
3645 struct diff_dir_cb_arg arg;
3646 char *ondisk_path = NULL;
3647 struct got_pathlist_head ignores;
3649 TAILQ_INIT(&ignores);
3651 if (asprintf(&ondisk_path, "%s%s%s",
3652 worktree->root_path, path[0] ? "/" : "", path) == -1)
3653 return got_error_from_errno("asprintf");
3655 fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_DIRECTORY | O_CLOEXEC);
3656 if (fd == -1) {
3657 if (errno != ENOTDIR && errno != ENOENT && errno != EACCES &&
3658 !got_err_open_nofollow_on_symlink())
3659 err = got_error_from_errno2("open", ondisk_path);
3660 else {
3661 if (!no_ignores) {
3662 err = add_ignores_from_parent_paths(&ignores,
3663 worktree->root_path, ondisk_path);
3664 if (err)
3665 goto done;
3667 err = report_single_file_status(path, ondisk_path,
3668 fileindex, status_cb, status_arg, repo,
3669 report_unchanged, &ignores, no_ignores);
3671 } else {
3672 fdiff_cb.diff_old_new = status_old_new;
3673 fdiff_cb.diff_old = status_old;
3674 fdiff_cb.diff_new = status_new;
3675 fdiff_cb.diff_traverse = status_traverse;
3676 arg.fileindex = fileindex;
3677 arg.worktree = worktree;
3678 arg.status_path = path;
3679 arg.status_path_len = strlen(path);
3680 arg.repo = repo;
3681 arg.status_cb = status_cb;
3682 arg.status_arg = status_arg;
3683 arg.cancel_cb = cancel_cb;
3684 arg.cancel_arg = cancel_arg;
3685 arg.report_unchanged = report_unchanged;
3686 arg.no_ignores = no_ignores;
3687 if (!no_ignores) {
3688 err = add_ignores_from_parent_paths(&ignores,
3689 worktree->root_path, path);
3690 if (err)
3691 goto done;
3693 arg.ignores = &ignores;
3694 err = got_fileindex_diff_dir(fileindex, fd,
3695 worktree->root_path, path, repo, &fdiff_cb, &arg);
3697 done:
3698 free_ignores(&ignores);
3699 if (fd != -1 && close(fd) == -1 && err == NULL)
3700 err = got_error_from_errno("close");
3701 free(ondisk_path);
3702 return err;
3705 const struct got_error *
3706 got_worktree_status(struct got_worktree *worktree,
3707 struct got_pathlist_head *paths, struct got_repository *repo,
3708 int no_ignores, got_worktree_status_cb status_cb, void *status_arg,
3709 got_cancel_cb cancel_cb, void *cancel_arg)
3711 const struct got_error *err = NULL;
3712 char *fileindex_path = NULL;
3713 struct got_fileindex *fileindex = NULL;
3714 struct got_pathlist_entry *pe;
3716 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3717 if (err)
3718 return err;
3720 TAILQ_FOREACH(pe, paths, entry) {
3721 err = worktree_status(worktree, pe->path, fileindex, repo,
3722 status_cb, status_arg, cancel_cb, cancel_arg,
3723 no_ignores, 0);
3724 if (err)
3725 break;
3727 free(fileindex_path);
3728 got_fileindex_free(fileindex);
3729 return err;
3732 const struct got_error *
3733 got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
3734 const char *arg)
3736 const struct got_error *err = NULL;
3737 char *resolved = NULL, *cwd = NULL, *path = NULL;
3738 size_t len;
3739 struct stat sb;
3740 char *abspath = NULL;
3741 char canonpath[PATH_MAX];
3743 *wt_path = NULL;
3745 cwd = getcwd(NULL, 0);
3746 if (cwd == NULL)
3747 return got_error_from_errno("getcwd");
3749 if (lstat(arg, &sb) == -1) {
3750 if (errno != ENOENT) {
3751 err = got_error_from_errno2("lstat", arg);
3752 goto done;
3754 sb.st_mode = 0;
3756 if (S_ISLNK(sb.st_mode)) {
3758 * We cannot use realpath(3) with symlinks since we want to
3759 * operate on the symlink itself.
3760 * But we can make the path absolute, assuming it is relative
3761 * to the current working directory, and then canonicalize it.
3763 if (!got_path_is_absolute(arg)) {
3764 if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3765 err = got_error_from_errno("asprintf");
3766 goto done;
3770 err = got_canonpath(abspath ? abspath : arg, canonpath,
3771 sizeof(canonpath));
3772 if (err)
3773 goto done;
3774 resolved = strdup(canonpath);
3775 if (resolved == NULL) {
3776 err = got_error_from_errno("strdup");
3777 goto done;
3779 } else {
3780 resolved = realpath(arg, NULL);
3781 if (resolved == NULL) {
3782 if (errno != ENOENT) {
3783 err = got_error_from_errno2("realpath", arg);
3784 goto done;
3786 if (asprintf(&abspath, "%s/%s", cwd, arg) == -1) {
3787 err = got_error_from_errno("asprintf");
3788 goto done;
3790 err = got_canonpath(abspath, canonpath,
3791 sizeof(canonpath));
3792 if (err)
3793 goto done;
3794 resolved = strdup(canonpath);
3795 if (resolved == NULL) {
3796 err = got_error_from_errno("strdup");
3797 goto done;
3802 if (strncmp(got_worktree_get_root_path(worktree), resolved,
3803 strlen(got_worktree_get_root_path(worktree)))) {
3804 err = got_error_path(resolved, GOT_ERR_BAD_PATH);
3805 goto done;
3808 if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
3809 err = got_path_skip_common_ancestor(&path,
3810 got_worktree_get_root_path(worktree), resolved);
3811 if (err)
3812 goto done;
3813 } else {
3814 path = strdup("");
3815 if (path == NULL) {
3816 err = got_error_from_errno("strdup");
3817 goto done;
3821 /* XXX status walk can't deal with trailing slash! */
3822 len = strlen(path);
3823 while (len > 0 && path[len - 1] == '/') {
3824 path[len - 1] = '\0';
3825 len--;
3827 done:
3828 free(abspath);
3829 free(resolved);
3830 free(cwd);
3831 if (err == NULL)
3832 *wt_path = path;
3833 else
3834 free(path);
3835 return err;
3838 struct schedule_addition_args {
3839 struct got_worktree *worktree;
3840 struct got_fileindex *fileindex;
3841 got_worktree_checkout_cb progress_cb;
3842 void *progress_arg;
3843 struct got_repository *repo;
3846 static const struct got_error *
3847 schedule_addition(void *arg, unsigned char status, unsigned char staged_status,
3848 const char *relpath, struct got_object_id *blob_id,
3849 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
3850 int dirfd, const char *de_name)
3852 struct schedule_addition_args *a = arg;
3853 const struct got_error *err = NULL;
3854 struct got_fileindex_entry *ie;
3855 struct stat sb;
3856 char *ondisk_path;
3858 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3859 relpath) == -1)
3860 return got_error_from_errno("asprintf");
3862 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3863 if (ie) {
3864 err = get_file_status(&status, &sb, ie, ondisk_path, dirfd,
3865 de_name, a->repo);
3866 if (err)
3867 goto done;
3868 /* Re-adding an existing entry is a no-op. */
3869 if (status == GOT_STATUS_ADD)
3870 goto done;
3871 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
3872 if (err)
3873 goto done;
3876 if (status != GOT_STATUS_UNVERSIONED) {
3877 if (status == GOT_STATUS_NONEXISTENT)
3878 err = got_error_set_errno(ENOENT, ondisk_path);
3879 else
3880 err = got_error_path(ondisk_path, GOT_ERR_FILE_STATUS);
3881 goto done;
3884 err = got_fileindex_entry_alloc(&ie, relpath);
3885 if (err)
3886 goto done;
3887 err = got_fileindex_entry_update(ie, a->worktree->root_fd,
3888 relpath, NULL, NULL, 1);
3889 if (err) {
3890 got_fileindex_entry_free(ie);
3891 goto done;
3893 err = got_fileindex_entry_add(a->fileindex, ie);
3894 if (err) {
3895 got_fileindex_entry_free(ie);
3896 goto done;
3898 done:
3899 free(ondisk_path);
3900 if (err)
3901 return err;
3902 if (status == GOT_STATUS_ADD)
3903 return NULL;
3904 return (*a->progress_cb)(a->progress_arg, GOT_STATUS_ADD, relpath);
3907 const struct got_error *
3908 got_worktree_schedule_add(struct got_worktree *worktree,
3909 struct got_pathlist_head *paths,
3910 got_worktree_checkout_cb progress_cb, void *progress_arg,
3911 struct got_repository *repo, int no_ignores)
3913 struct got_fileindex *fileindex = NULL;
3914 char *fileindex_path = NULL;
3915 const struct got_error *err = NULL, *sync_err, *unlockerr;
3916 struct got_pathlist_entry *pe;
3917 struct schedule_addition_args saa;
3919 err = lock_worktree(worktree, LOCK_EX);
3920 if (err)
3921 return err;
3923 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3924 if (err)
3925 goto done;
3927 saa.worktree = worktree;
3928 saa.fileindex = fileindex;
3929 saa.progress_cb = progress_cb;
3930 saa.progress_arg = progress_arg;
3931 saa.repo = repo;
3933 TAILQ_FOREACH(pe, paths, entry) {
3934 err = worktree_status(worktree, pe->path, fileindex, repo,
3935 schedule_addition, &saa, NULL, NULL, no_ignores, 0);
3936 if (err)
3937 break;
3939 sync_err = sync_fileindex(fileindex, fileindex_path);
3940 if (sync_err && err == NULL)
3941 err = sync_err;
3942 done:
3943 free(fileindex_path);
3944 if (fileindex)
3945 got_fileindex_free(fileindex);
3946 unlockerr = lock_worktree(worktree, LOCK_SH);
3947 if (unlockerr && err == NULL)
3948 err = unlockerr;
3949 return err;
3952 struct schedule_deletion_args {
3953 struct got_worktree *worktree;
3954 struct got_fileindex *fileindex;
3955 got_worktree_delete_cb progress_cb;
3956 void *progress_arg;
3957 struct got_repository *repo;
3958 int delete_local_mods;
3959 int keep_on_disk;
3960 int ignore_missing_paths;
3961 const char *status_codes;
3964 static const struct got_error *
3965 schedule_for_deletion(void *arg, unsigned char status,
3966 unsigned char staged_status, const char *relpath,
3967 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
3968 struct got_object_id *commit_id, int dirfd, const char *de_name)
3970 struct schedule_deletion_args *a = arg;
3971 const struct got_error *err = NULL;
3972 struct got_fileindex_entry *ie = NULL;
3973 struct stat sb;
3974 char *ondisk_path;
3976 if (status == GOT_STATUS_NONEXISTENT) {
3977 if (a->ignore_missing_paths)
3978 return NULL;
3979 return got_error_set_errno(ENOENT, relpath);
3982 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3983 if (ie == NULL)
3984 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
3986 staged_status = get_staged_status(ie);
3987 if (staged_status != GOT_STATUS_NO_CHANGE) {
3988 if (staged_status == GOT_STATUS_DELETE)
3989 return NULL;
3990 return got_error_path(relpath, GOT_ERR_FILE_STAGED);
3993 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
3994 relpath) == -1)
3995 return got_error_from_errno("asprintf");
3997 err = get_file_status(&status, &sb, ie, ondisk_path, dirfd, de_name,
3998 a->repo);
3999 if (err)
4000 goto done;
4002 if (a->status_codes) {
4003 size_t ncodes = strlen(a->status_codes);
4004 int i;
4005 for (i = 0; i < ncodes ; i++) {
4006 if (status == a->status_codes[i])
4007 break;
4009 if (i == ncodes) {
4010 /* Do not delete files in non-matching status. */
4011 free(ondisk_path);
4012 return NULL;
4014 if (a->status_codes[i] != GOT_STATUS_MODIFY &&
4015 a->status_codes[i] != GOT_STATUS_MISSING) {
4016 static char msg[64];
4017 snprintf(msg, sizeof(msg),
4018 "invalid status code '%c'", a->status_codes[i]);
4019 err = got_error_msg(GOT_ERR_FILE_STATUS, msg);
4020 goto done;
4024 if (status != GOT_STATUS_NO_CHANGE) {
4025 if (status == GOT_STATUS_DELETE)
4026 goto done;
4027 if (status == GOT_STATUS_MODIFY && !a->delete_local_mods) {
4028 err = got_error_path(relpath, GOT_ERR_FILE_MODIFIED);
4029 goto done;
4031 if (status == GOT_STATUS_MISSING && !a->ignore_missing_paths) {
4032 err = got_error_set_errno(ENOENT, relpath);
4033 goto done;
4035 if (status != GOT_STATUS_MODIFY &&
4036 status != GOT_STATUS_MISSING) {
4037 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
4038 goto done;
4042 if (!a->keep_on_disk && status != GOT_STATUS_MISSING) {
4043 size_t root_len;
4045 if (dirfd != -1) {
4046 if (unlinkat(dirfd, de_name, 0) != 0) {
4047 err = got_error_from_errno2("unlinkat",
4048 ondisk_path);
4049 goto done;
4051 } else if (unlink(ondisk_path) != 0) {
4052 err = got_error_from_errno2("unlink", ondisk_path);
4053 goto done;
4056 root_len = strlen(a->worktree->root_path);
4057 do {
4058 char *parent;
4059 err = got_path_dirname(&parent, ondisk_path);
4060 if (err)
4061 goto done;
4062 free(ondisk_path);
4063 ondisk_path = parent;
4064 if (rmdir(ondisk_path) == -1) {
4065 if (errno != ENOTEMPTY)
4066 err = got_error_from_errno2("rmdir",
4067 ondisk_path);
4068 break;
4070 } while (got_path_cmp(ondisk_path, a->worktree->root_path,
4071 strlen(ondisk_path), root_len) != 0);
4074 got_fileindex_entry_mark_deleted_from_disk(ie);
4075 done:
4076 free(ondisk_path);
4077 if (err)
4078 return err;
4079 if (status == GOT_STATUS_DELETE)
4080 return NULL;
4081 return (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
4082 staged_status, relpath);
4085 const struct got_error *
4086 got_worktree_schedule_delete(struct got_worktree *worktree,
4087 struct got_pathlist_head *paths, int delete_local_mods,
4088 const char *status_codes,
4089 got_worktree_delete_cb progress_cb, void *progress_arg,
4090 struct got_repository *repo, int keep_on_disk, int ignore_missing_paths)
4092 struct got_fileindex *fileindex = NULL;
4093 char *fileindex_path = NULL;
4094 const struct got_error *err = NULL, *sync_err, *unlockerr;
4095 struct got_pathlist_entry *pe;
4096 struct schedule_deletion_args sda;
4098 err = lock_worktree(worktree, LOCK_EX);
4099 if (err)
4100 return err;
4102 err = open_fileindex(&fileindex, &fileindex_path, worktree);
4103 if (err)
4104 goto done;
4106 sda.worktree = worktree;
4107 sda.fileindex = fileindex;
4108 sda.progress_cb = progress_cb;
4109 sda.progress_arg = progress_arg;
4110 sda.repo = repo;
4111 sda.delete_local_mods = delete_local_mods;
4112 sda.keep_on_disk = keep_on_disk;
4113 sda.ignore_missing_paths = ignore_missing_paths;
4114 sda.status_codes = status_codes;
4116 TAILQ_FOREACH(pe, paths, entry) {
4117 err = worktree_status(worktree, pe->path, fileindex, repo,
4118 schedule_for_deletion, &sda, NULL, NULL, 1, 1);
4119 if (err)
4120 break;
4122 sync_err = sync_fileindex(fileindex, fileindex_path);
4123 if (sync_err && err == NULL)
4124 err = sync_err;
4125 done:
4126 free(fileindex_path);
4127 if (fileindex)
4128 got_fileindex_free(fileindex);
4129 unlockerr = lock_worktree(worktree, LOCK_SH);
4130 if (unlockerr && err == NULL)
4131 err = unlockerr;
4132 return err;
4135 static const struct got_error *
4136 copy_one_line(FILE *infile, FILE *outfile, FILE *rejectfile)
4138 const struct got_error *err = NULL;
4139 char *line = NULL;
4140 size_t linesize = 0, n;
4141 ssize_t linelen;
4143 linelen = getline(&line, &linesize, infile);
4144 if (linelen == -1) {
4145 if (ferror(infile)) {
4146 err = got_error_from_errno("getline");
4147 goto done;
4149 return NULL;
4151 if (outfile) {
4152 n = fwrite(line, 1, linelen, outfile);
4153 if (n != linelen) {
4154 err = got_ferror(outfile, GOT_ERR_IO);
4155 goto done;
4158 if (rejectfile) {
4159 n = fwrite(line, 1, linelen, rejectfile);
4160 if (n != linelen)
4161 err = got_ferror(outfile, GOT_ERR_IO);
4163 done:
4164 free(line);
4165 return err;
4168 static const struct got_error *
4169 skip_one_line(FILE *f)
4171 char *line = NULL;
4172 size_t linesize = 0;
4173 ssize_t linelen;
4175 linelen = getline(&line, &linesize, f);
4176 if (linelen == -1) {
4177 if (ferror(f))
4178 return got_error_from_errno("getline");
4179 return NULL;
4181 free(line);
4182 return NULL;
4185 static const struct got_error *
4186 copy_change(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4187 int start_old, int end_old, int start_new, int end_new,
4188 FILE *outfile, FILE *rejectfile)
4190 const struct got_error *err;
4192 /* Copy old file's lines leading up to patch. */
4193 while (!feof(f1) && *line_cur1 < start_old) {
4194 err = copy_one_line(f1, outfile, NULL);
4195 if (err)
4196 return err;
4197 (*line_cur1)++;
4199 /* Skip new file's lines leading up to patch. */
4200 while (!feof(f2) && *line_cur2 < start_new) {
4201 if (rejectfile)
4202 err = copy_one_line(f2, NULL, rejectfile);
4203 else
4204 err = skip_one_line(f2);
4205 if (err)
4206 return err;
4207 (*line_cur2)++;
4209 /* Copy patched lines. */
4210 while (!feof(f2) && *line_cur2 <= end_new) {
4211 err = copy_one_line(f2, outfile, NULL);
4212 if (err)
4213 return err;
4214 (*line_cur2)++;
4216 /* Skip over old file's replaced lines. */
4217 while (!feof(f1) && *line_cur1 <= end_old) {
4218 if (rejectfile)
4219 err = copy_one_line(f1, NULL, rejectfile);
4220 else
4221 err = skip_one_line(f1);
4222 if (err)
4223 return err;
4224 (*line_cur1)++;
4227 return NULL;
4230 static const struct got_error *
4231 copy_remaining_content(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4232 FILE *outfile, FILE *rejectfile)
4234 const struct got_error *err;
4236 if (outfile) {
4237 /* Copy old file's lines until EOF. */
4238 while (!feof(f1)) {
4239 err = copy_one_line(f1, outfile, NULL);
4240 if (err)
4241 return err;
4242 (*line_cur1)++;
4245 if (rejectfile) {
4246 /* Copy new file's lines until EOF. */
4247 while (!feof(f2)) {
4248 err = copy_one_line(f2, NULL, rejectfile);
4249 if (err)
4250 return err;
4251 (*line_cur2)++;
4255 return NULL;
4258 static const struct got_error *
4259 apply_or_reject_change(int *choice, int *nchunks_used,
4260 struct diff_result *diff_result, int n,
4261 const char *relpath, FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
4262 FILE *outfile, FILE *rejectfile, int changeno, int nchanges,
4263 got_worktree_patch_cb patch_cb, void *patch_arg)
4265 const struct got_error *err = NULL;
4266 struct diff_chunk_context cc = {};
4267 int start_old, end_old, start_new, end_new;
4268 FILE *hunkfile;
4269 struct diff_output_unidiff_state *diff_state;
4270 struct diff_input_info diff_info;
4271 int rc;
4273 *choice = GOT_PATCH_CHOICE_NONE;
4275 /* Get changed line numbers without context lines for copy_change(). */
4276 diff_chunk_context_load_change(&cc, NULL, diff_result, n, 0);
4277 start_old = cc.left.start;
4278 end_old = cc.left.end;
4279 start_new = cc.right.start;
4280 end_new = cc.right.end;
4282 /* Get the same change with context lines for display. */
4283 memset(&cc, 0, sizeof(cc));
4284 diff_chunk_context_load_change(&cc, nchunks_used, diff_result, n, 3);
4286 memset(&diff_info, 0, sizeof(diff_info));
4287 diff_info.left_path = relpath;
4288 diff_info.right_path = relpath;
4290 diff_state = diff_output_unidiff_state_alloc();
4291 if (diff_state == NULL)
4292 return got_error_set_errno(ENOMEM,
4293 "diff_output_unidiff_state_alloc");
4295 hunkfile = got_opentemp();
4296 if (hunkfile == NULL) {
4297 err = got_error_from_errno("got_opentemp");
4298 goto done;
4301 rc = diff_output_unidiff_chunk(NULL, hunkfile, diff_state, &diff_info,
4302 diff_result, &cc);
4303 if (rc != DIFF_RC_OK) {
4304 err = got_error_set_errno(rc, "diff_output_unidiff_chunk");
4305 goto done;
4308 if (fseek(hunkfile, 0L, SEEK_SET) == -1) {
4309 err = got_ferror(hunkfile, GOT_ERR_IO);
4310 goto done;
4313 err = (*patch_cb)(choice, patch_arg, GOT_STATUS_MODIFY, relpath,
4314 hunkfile, changeno, nchanges);
4315 if (err)
4316 goto done;
4318 switch (*choice) {
4319 case GOT_PATCH_CHOICE_YES:
4320 err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4321 end_old, start_new, end_new, outfile, rejectfile);
4322 break;
4323 case GOT_PATCH_CHOICE_NO:
4324 err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
4325 end_old, start_new, end_new, rejectfile, outfile);
4326 break;
4327 case GOT_PATCH_CHOICE_QUIT:
4328 break;
4329 default:
4330 err = got_error(GOT_ERR_PATCH_CHOICE);
4331 break;
4333 done:
4334 diff_output_unidiff_state_free(diff_state);
4335 if (hunkfile && fclose(hunkfile) == EOF && err == NULL)
4336 err = got_error_from_errno("fclose");
4337 return err;
4340 struct revert_file_args {
4341 struct got_worktree *worktree;
4342 struct got_fileindex *fileindex;
4343 got_worktree_checkout_cb progress_cb;
4344 void *progress_arg;
4345 got_worktree_patch_cb patch_cb;
4346 void *patch_arg;
4347 struct got_repository *repo;
4348 int unlink_added_files;
4351 static const struct got_error *
4352 create_patched_content(char **path_outfile, int reverse_patch,
4353 struct got_object_id *blob_id, const char *path2,
4354 int dirfd2, const char *de_name2,
4355 const char *relpath, struct got_repository *repo,
4356 got_worktree_patch_cb patch_cb, void *patch_arg)
4358 const struct got_error *err, *free_err;
4359 struct got_blob_object *blob = NULL;
4360 FILE *f1 = NULL, *f2 = NULL, *outfile = NULL;
4361 int fd2 = -1;
4362 char link_target[PATH_MAX];
4363 ssize_t link_len = 0;
4364 char *path1 = NULL, *id_str = NULL;
4365 struct stat sb2;
4366 struct got_diffreg_result *diffreg_result = NULL;
4367 int line_cur1 = 1, line_cur2 = 1, have_content = 0;
4368 int i = 0, n = 0, nchunks_used = 0, nchanges = 0;
4370 *path_outfile = NULL;
4372 err = got_object_id_str(&id_str, blob_id);
4373 if (err)
4374 return err;
4376 if (dirfd2 != -1) {
4377 fd2 = openat(dirfd2, de_name2,
4378 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
4379 if (fd2 == -1) {
4380 if (!got_err_open_nofollow_on_symlink()) {
4381 err = got_error_from_errno2("openat", path2);
4382 goto done;
4384 link_len = readlinkat(dirfd2, de_name2,
4385 link_target, sizeof(link_target));
4386 if (link_len == -1) {
4387 return got_error_from_errno2("readlinkat",
4388 path2);
4390 sb2.st_mode = S_IFLNK;
4391 sb2.st_size = link_len;
4393 } else {
4394 fd2 = open(path2, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
4395 if (fd2 == -1) {
4396 if (!got_err_open_nofollow_on_symlink()) {
4397 err = got_error_from_errno2("open", path2);
4398 goto done;
4400 link_len = readlink(path2, link_target,
4401 sizeof(link_target));
4402 if (link_len == -1)
4403 return got_error_from_errno2("readlink", path2);
4404 sb2.st_mode = S_IFLNK;
4405 sb2.st_size = link_len;
4408 if (fd2 != -1) {
4409 if (fstat(fd2, &sb2) == -1) {
4410 err = got_error_from_errno2("fstat", path2);
4411 goto done;
4414 f2 = fdopen(fd2, "r");
4415 if (f2 == NULL) {
4416 err = got_error_from_errno2("fdopen", path2);
4417 goto done;
4419 fd2 = -1;
4420 } else {
4421 size_t n;
4422 f2 = got_opentemp();
4423 if (f2 == NULL) {
4424 err = got_error_from_errno2("got_opentemp", path2);
4425 goto done;
4427 n = fwrite(link_target, 1, link_len, f2);
4428 if (n != link_len) {
4429 err = got_ferror(f2, GOT_ERR_IO);
4430 goto done;
4432 if (fflush(f2) == EOF) {
4433 err = got_error_from_errno("fflush");
4434 goto done;
4436 rewind(f2);
4439 err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
4440 if (err)
4441 goto done;
4443 err = got_opentemp_named(&path1, &f1, "got-patched-blob");
4444 if (err)
4445 goto done;
4447 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
4448 if (err)
4449 goto done;
4451 err = got_diff_files(&diffreg_result, f1, id_str, f2, path2, 3, 0, 1,
4452 NULL);
4453 if (err)
4454 goto done;
4456 err = got_opentemp_named(path_outfile, &outfile, "got-patched-content");
4457 if (err)
4458 goto done;
4460 if (fseek(f1, 0L, SEEK_SET) == -1)
4461 return got_ferror(f1, GOT_ERR_IO);
4462 if (fseek(f2, 0L, SEEK_SET) == -1)
4463 return got_ferror(f2, GOT_ERR_IO);
4465 /* Count the number of actual changes in the diff result. */
4466 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4467 struct diff_chunk_context cc = {};
4468 diff_chunk_context_load_change(&cc, &nchunks_used,
4469 diffreg_result->result, n, 0);
4470 nchanges++;
4472 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
4473 int choice;
4474 err = apply_or_reject_change(&choice, &nchunks_used,
4475 diffreg_result->result, n, relpath, f1, f2,
4476 &line_cur1, &line_cur2,
4477 reverse_patch ? NULL : outfile,
4478 reverse_patch ? outfile : NULL,
4479 ++i, nchanges, patch_cb, patch_arg);
4480 if (err)
4481 goto done;
4482 if (choice == GOT_PATCH_CHOICE_YES)
4483 have_content = 1;
4484 else if (choice == GOT_PATCH_CHOICE_QUIT)
4485 break;
4487 if (have_content) {
4488 err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
4489 reverse_patch ? NULL : outfile,
4490 reverse_patch ? outfile : NULL);
4491 if (err)
4492 goto done;
4494 if (!S_ISLNK(sb2.st_mode)) {
4495 if (fchmod(fileno(outfile), sb2.st_mode) == -1) {
4496 err = got_error_from_errno2("fchmod", path2);
4497 goto done;
4501 done:
4502 free(id_str);
4503 if (blob)
4504 got_object_blob_close(blob);
4505 free_err = got_diffreg_result_free(diffreg_result);
4506 if (err == NULL)
4507 err = free_err;
4508 if (f1 && fclose(f1) == EOF && err == NULL)
4509 err = got_error_from_errno2("fclose", path1);
4510 if (f2 && fclose(f2) == EOF && err == NULL)
4511 err = got_error_from_errno2("fclose", path2);
4512 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
4513 err = got_error_from_errno2("close", path2);
4514 if (outfile && fclose(outfile) == EOF && err == NULL)
4515 err = got_error_from_errno2("fclose", *path_outfile);
4516 if (path1 && unlink(path1) == -1 && err == NULL)
4517 err = got_error_from_errno2("unlink", path1);
4518 if (err || !have_content) {
4519 if (*path_outfile && unlink(*path_outfile) == -1 && err == NULL)
4520 err = got_error_from_errno2("unlink", *path_outfile);
4521 free(*path_outfile);
4522 *path_outfile = NULL;
4524 free(path1);
4525 return err;
4528 static const struct got_error *
4529 revert_file(void *arg, unsigned char status, unsigned char staged_status,
4530 const char *relpath, struct got_object_id *blob_id,
4531 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4532 int dirfd, const char *de_name)
4534 struct revert_file_args *a = arg;
4535 const struct got_error *err = NULL;
4536 char *parent_path = NULL;
4537 struct got_fileindex_entry *ie;
4538 struct got_tree_object *tree = NULL;
4539 struct got_object_id *tree_id = NULL;
4540 const struct got_tree_entry *te = NULL;
4541 char *tree_path = NULL, *te_name;
4542 char *ondisk_path = NULL, *path_content = NULL;
4543 struct got_blob_object *blob = NULL;
4545 /* Reverting a staged deletion is a no-op. */
4546 if (status == GOT_STATUS_DELETE &&
4547 staged_status != GOT_STATUS_NO_CHANGE)
4548 return NULL;
4550 if (status == GOT_STATUS_UNVERSIONED)
4551 return (*a->progress_cb)(a->progress_arg,
4552 GOT_STATUS_UNVERSIONED, relpath);
4554 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
4555 if (ie == NULL)
4556 return got_error_path(relpath, GOT_ERR_BAD_PATH);
4558 /* Construct in-repository path of tree which contains this blob. */
4559 err = got_path_dirname(&parent_path, ie->path);
4560 if (err) {
4561 if (err->code != GOT_ERR_BAD_PATH)
4562 goto done;
4563 parent_path = strdup("/");
4564 if (parent_path == NULL) {
4565 err = got_error_from_errno("strdup");
4566 goto done;
4569 if (got_path_is_root_dir(a->worktree->path_prefix)) {
4570 tree_path = strdup(parent_path);
4571 if (tree_path == NULL) {
4572 err = got_error_from_errno("strdup");
4573 goto done;
4575 } else {
4576 if (got_path_is_root_dir(parent_path)) {
4577 tree_path = strdup(a->worktree->path_prefix);
4578 if (tree_path == NULL) {
4579 err = got_error_from_errno("strdup");
4580 goto done;
4582 } else {
4583 if (asprintf(&tree_path, "%s/%s",
4584 a->worktree->path_prefix, parent_path) == -1) {
4585 err = got_error_from_errno("asprintf");
4586 goto done;
4591 err = got_object_id_by_path(&tree_id, a->repo,
4592 a->worktree->base_commit_id, tree_path);
4593 if (err) {
4594 if (!(err->code == GOT_ERR_NO_TREE_ENTRY &&
4595 (status == GOT_STATUS_ADD ||
4596 staged_status == GOT_STATUS_ADD)))
4597 goto done;
4598 } else {
4599 err = got_object_open_as_tree(&tree, a->repo, tree_id);
4600 if (err)
4601 goto done;
4603 err = got_path_basename(&te_name, ie->path);
4604 if (err)
4605 goto done;
4607 te = got_object_tree_find_entry(tree, te_name);
4608 free(te_name);
4609 if (te == NULL && status != GOT_STATUS_ADD &&
4610 staged_status != GOT_STATUS_ADD) {
4611 err = got_error_path(ie->path, GOT_ERR_NO_TREE_ENTRY);
4612 goto done;
4616 switch (status) {
4617 case GOT_STATUS_ADD:
4618 if (a->patch_cb) {
4619 int choice = GOT_PATCH_CHOICE_NONE;
4620 err = (*a->patch_cb)(&choice, a->patch_arg,
4621 status, ie->path, NULL, 1, 1);
4622 if (err)
4623 goto done;
4624 if (choice != GOT_PATCH_CHOICE_YES)
4625 break;
4627 err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_REVERT,
4628 ie->path);
4629 if (err)
4630 goto done;
4631 got_fileindex_entry_remove(a->fileindex, ie);
4632 if (a->unlink_added_files) {
4633 if (asprintf(&ondisk_path, "%s/%s",
4634 got_worktree_get_root_path(a->worktree),
4635 relpath) == -1) {
4636 err = got_error_from_errno("asprintf");
4637 goto done;
4639 if (unlink(ondisk_path) == -1) {
4640 err = got_error_from_errno2("unlink",
4641 ondisk_path);
4642 break;
4645 break;
4646 case GOT_STATUS_DELETE:
4647 if (a->patch_cb) {
4648 int choice = GOT_PATCH_CHOICE_NONE;
4649 err = (*a->patch_cb)(&choice, a->patch_arg,
4650 status, ie->path, NULL, 1, 1);
4651 if (err)
4652 goto done;
4653 if (choice != GOT_PATCH_CHOICE_YES)
4654 break;
4656 /* fall through */
4657 case GOT_STATUS_MODIFY:
4658 case GOT_STATUS_MODE_CHANGE:
4659 case GOT_STATUS_CONFLICT:
4660 case GOT_STATUS_MISSING: {
4661 struct got_object_id id;
4662 if (staged_status == GOT_STATUS_ADD ||
4663 staged_status == GOT_STATUS_MODIFY) {
4664 memcpy(id.sha1, ie->staged_blob_sha1,
4665 SHA1_DIGEST_LENGTH);
4666 } else
4667 memcpy(id.sha1, ie->blob_sha1,
4668 SHA1_DIGEST_LENGTH);
4669 err = got_object_open_as_blob(&blob, a->repo, &id, 8192);
4670 if (err)
4671 goto done;
4673 if (asprintf(&ondisk_path, "%s/%s",
4674 got_worktree_get_root_path(a->worktree), relpath) == -1) {
4675 err = got_error_from_errno("asprintf");
4676 goto done;
4679 if (a->patch_cb && (status == GOT_STATUS_MODIFY ||
4680 status == GOT_STATUS_CONFLICT)) {
4681 int is_bad_symlink = 0;
4682 err = create_patched_content(&path_content, 1, &id,
4683 ondisk_path, dirfd, de_name, ie->path, a->repo,
4684 a->patch_cb, a->patch_arg);
4685 if (err || path_content == NULL)
4686 break;
4687 if (te && S_ISLNK(te->mode)) {
4688 if (unlink(path_content) == -1) {
4689 err = got_error_from_errno2("unlink",
4690 path_content);
4691 break;
4693 err = install_symlink(&is_bad_symlink,
4694 a->worktree, ondisk_path, ie->path,
4695 blob, 0, 1, 0, 0, a->repo,
4696 a->progress_cb, a->progress_arg);
4697 } else {
4698 if (rename(path_content, ondisk_path) == -1) {
4699 err = got_error_from_errno3("rename",
4700 path_content, ondisk_path);
4701 goto done;
4704 } else {
4705 int is_bad_symlink = 0;
4706 if (te && S_ISLNK(te->mode)) {
4707 err = install_symlink(&is_bad_symlink,
4708 a->worktree, ondisk_path, ie->path,
4709 blob, 0, 1, 0, 0, a->repo,
4710 a->progress_cb, a->progress_arg);
4711 } else {
4712 err = install_blob(a->worktree, ondisk_path,
4713 ie->path,
4714 te ? te->mode : GOT_DEFAULT_FILE_MODE,
4715 got_fileindex_perms_to_st(ie), blob,
4716 0, 1, 0, 0, a->repo,
4717 a->progress_cb, a->progress_arg);
4719 if (err)
4720 goto done;
4721 if (status == GOT_STATUS_DELETE ||
4722 status == GOT_STATUS_MODE_CHANGE) {
4723 err = got_fileindex_entry_update(ie,
4724 a->worktree->root_fd, relpath,
4725 blob->id.sha1,
4726 a->worktree->base_commit_id->sha1, 1);
4727 if (err)
4728 goto done;
4730 if (is_bad_symlink) {
4731 got_fileindex_entry_filetype_set(ie,
4732 GOT_FILEIDX_MODE_BAD_SYMLINK);
4735 break;
4737 default:
4738 break;
4740 done:
4741 free(ondisk_path);
4742 free(path_content);
4743 free(parent_path);
4744 free(tree_path);
4745 if (blob)
4746 got_object_blob_close(blob);
4747 if (tree)
4748 got_object_tree_close(tree);
4749 free(tree_id);
4750 return err;
4753 const struct got_error *
4754 got_worktree_revert(struct got_worktree *worktree,
4755 struct got_pathlist_head *paths,
4756 got_worktree_checkout_cb progress_cb, void *progress_arg,
4757 got_worktree_patch_cb patch_cb, void *patch_arg,
4758 struct got_repository *repo)
4760 struct got_fileindex *fileindex = NULL;
4761 char *fileindex_path = NULL;
4762 const struct got_error *err = NULL, *unlockerr = NULL;
4763 const struct got_error *sync_err = NULL;
4764 struct got_pathlist_entry *pe;
4765 struct revert_file_args rfa;
4767 err = lock_worktree(worktree, LOCK_EX);
4768 if (err)
4769 return err;
4771 err = open_fileindex(&fileindex, &fileindex_path, worktree);
4772 if (err)
4773 goto done;
4775 rfa.worktree = worktree;
4776 rfa.fileindex = fileindex;
4777 rfa.progress_cb = progress_cb;
4778 rfa.progress_arg = progress_arg;
4779 rfa.patch_cb = patch_cb;
4780 rfa.patch_arg = patch_arg;
4781 rfa.repo = repo;
4782 rfa.unlink_added_files = 0;
4783 TAILQ_FOREACH(pe, paths, entry) {
4784 err = worktree_status(worktree, pe->path, fileindex, repo,
4785 revert_file, &rfa, NULL, NULL, 1, 0);
4786 if (err)
4787 break;
4789 sync_err = sync_fileindex(fileindex, fileindex_path);
4790 if (sync_err && err == NULL)
4791 err = sync_err;
4792 done:
4793 free(fileindex_path);
4794 if (fileindex)
4795 got_fileindex_free(fileindex);
4796 unlockerr = lock_worktree(worktree, LOCK_SH);
4797 if (unlockerr && err == NULL)
4798 err = unlockerr;
4799 return err;
4802 static void
4803 free_commitable(struct got_commitable *ct)
4805 free(ct->path);
4806 free(ct->in_repo_path);
4807 free(ct->ondisk_path);
4808 free(ct->blob_id);
4809 free(ct->base_blob_id);
4810 free(ct->staged_blob_id);
4811 free(ct->base_commit_id);
4812 free(ct);
4815 struct collect_commitables_arg {
4816 struct got_pathlist_head *commitable_paths;
4817 struct got_repository *repo;
4818 struct got_worktree *worktree;
4819 struct got_fileindex *fileindex;
4820 int have_staged_files;
4821 int allow_bad_symlinks;
4824 static const struct got_error *
4825 collect_commitables(void *arg, unsigned char status,
4826 unsigned char staged_status, const char *relpath,
4827 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
4828 struct got_object_id *commit_id, int dirfd, const char *de_name)
4830 struct collect_commitables_arg *a = arg;
4831 const struct got_error *err = NULL;
4832 struct got_commitable *ct = NULL;
4833 struct got_pathlist_entry *new = NULL;
4834 char *parent_path = NULL, *path = NULL;
4835 struct stat sb;
4837 if (a->have_staged_files) {
4838 if (staged_status != GOT_STATUS_MODIFY &&
4839 staged_status != GOT_STATUS_ADD &&
4840 staged_status != GOT_STATUS_DELETE)
4841 return NULL;
4842 } else {
4843 if (status == GOT_STATUS_CONFLICT)
4844 return got_error(GOT_ERR_COMMIT_CONFLICT);
4846 if (status != GOT_STATUS_MODIFY &&
4847 status != GOT_STATUS_MODE_CHANGE &&
4848 status != GOT_STATUS_ADD &&
4849 status != GOT_STATUS_DELETE)
4850 return NULL;
4853 if (asprintf(&path, "/%s", relpath) == -1) {
4854 err = got_error_from_errno("asprintf");
4855 goto done;
4857 if (strcmp(path, "/") == 0) {
4858 parent_path = strdup("");
4859 if (parent_path == NULL)
4860 return got_error_from_errno("strdup");
4861 } else {
4862 err = got_path_dirname(&parent_path, path);
4863 if (err)
4864 return err;
4867 ct = calloc(1, sizeof(*ct));
4868 if (ct == NULL) {
4869 err = got_error_from_errno("calloc");
4870 goto done;
4873 if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
4874 relpath) == -1) {
4875 err = got_error_from_errno("asprintf");
4876 goto done;
4879 if (staged_status == GOT_STATUS_ADD ||
4880 staged_status == GOT_STATUS_MODIFY) {
4881 struct got_fileindex_entry *ie;
4882 ie = got_fileindex_entry_get(a->fileindex, path, strlen(path));
4883 switch (got_fileindex_entry_staged_filetype_get(ie)) {
4884 case GOT_FILEIDX_MODE_REGULAR_FILE:
4885 case GOT_FILEIDX_MODE_BAD_SYMLINK:
4886 ct->mode = S_IFREG;
4887 break;
4888 case GOT_FILEIDX_MODE_SYMLINK:
4889 ct->mode = S_IFLNK;
4890 break;
4891 default:
4892 err = got_error_path(path, GOT_ERR_BAD_FILETYPE);
4893 goto done;
4895 ct->mode |= got_fileindex_entry_perms_get(ie);
4896 } else if (status != GOT_STATUS_DELETE &&
4897 staged_status != GOT_STATUS_DELETE) {
4898 if (dirfd != -1) {
4899 if (fstatat(dirfd, de_name, &sb,
4900 AT_SYMLINK_NOFOLLOW) == -1) {
4901 err = got_error_from_errno2("fstatat",
4902 ct->ondisk_path);
4903 goto done;
4905 } else if (lstat(ct->ondisk_path, &sb) == -1) {
4906 err = got_error_from_errno2("lstat", ct->ondisk_path);
4907 goto done;
4909 ct->mode = sb.st_mode;
4912 if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
4913 got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
4914 relpath) == -1) {
4915 err = got_error_from_errno("asprintf");
4916 goto done;
4919 if (S_ISLNK(ct->mode) && staged_status == GOT_STATUS_NO_CHANGE &&
4920 status == GOT_STATUS_ADD && !a->allow_bad_symlinks) {
4921 int is_bad_symlink;
4922 char target_path[PATH_MAX];
4923 ssize_t target_len;
4924 target_len = readlink(ct->ondisk_path, target_path,
4925 sizeof(target_path));
4926 if (target_len == -1) {
4927 err = got_error_from_errno2("readlink",
4928 ct->ondisk_path);
4929 goto done;
4931 err = is_bad_symlink_target(&is_bad_symlink, target_path,
4932 target_len, ct->ondisk_path, a->worktree->root_path);
4933 if (err)
4934 goto done;
4935 if (is_bad_symlink) {
4936 err = got_error_path(ct->ondisk_path,
4937 GOT_ERR_BAD_SYMLINK);
4938 goto done;
4943 ct->status = status;
4944 ct->staged_status = staged_status;
4945 ct->blob_id = NULL; /* will be filled in when blob gets created */
4946 if (ct->status != GOT_STATUS_ADD &&
4947 ct->staged_status != GOT_STATUS_ADD) {
4948 ct->base_blob_id = got_object_id_dup(blob_id);
4949 if (ct->base_blob_id == NULL) {
4950 err = got_error_from_errno("got_object_id_dup");
4951 goto done;
4953 ct->base_commit_id = got_object_id_dup(commit_id);
4954 if (ct->base_commit_id == NULL) {
4955 err = got_error_from_errno("got_object_id_dup");
4956 goto done;
4959 if (ct->staged_status == GOT_STATUS_ADD ||
4960 ct->staged_status == GOT_STATUS_MODIFY) {
4961 ct->staged_blob_id = got_object_id_dup(staged_blob_id);
4962 if (ct->staged_blob_id == NULL) {
4963 err = got_error_from_errno("got_object_id_dup");
4964 goto done;
4967 ct->path = strdup(path);
4968 if (ct->path == NULL) {
4969 err = got_error_from_errno("strdup");
4970 goto done;
4972 err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
4973 done:
4974 if (ct && (err || new == NULL))
4975 free_commitable(ct);
4976 free(parent_path);
4977 free(path);
4978 return err;
4981 static const struct got_error *write_tree(struct got_object_id **, int *,
4982 struct got_tree_object *, const char *, struct got_pathlist_head *,
4983 got_worktree_status_cb status_cb, void *status_arg,
4984 struct got_repository *);
4986 static const struct got_error *
4987 write_subtree(struct got_object_id **new_subtree_id, int *nentries,
4988 struct got_tree_entry *te, const char *parent_path,
4989 struct got_pathlist_head *commitable_paths,
4990 got_worktree_status_cb status_cb, void *status_arg,
4991 struct got_repository *repo)
4993 const struct got_error *err = NULL;
4994 struct got_tree_object *subtree;
4995 char *subpath;
4997 if (asprintf(&subpath, "%s%s%s", parent_path,
4998 got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
4999 return got_error_from_errno("asprintf");
5001 err = got_object_open_as_tree(&subtree, repo, &te->id);
5002 if (err)
5003 return err;
5005 err = write_tree(new_subtree_id, nentries, subtree, subpath,
5006 commitable_paths, status_cb, status_arg, repo);
5007 got_object_tree_close(subtree);
5008 free(subpath);
5009 return err;
5012 static const struct got_error *
5013 match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
5015 const struct got_error *err = NULL;
5016 char *ct_parent_path = NULL;
5018 *match = 0;
5020 if (strchr(ct->in_repo_path, '/') == NULL) {
5021 *match = got_path_is_root_dir(path);
5022 return NULL;
5025 err = got_path_dirname(&ct_parent_path, ct->in_repo_path);
5026 if (err)
5027 return err;
5028 *match = (strcmp(path, ct_parent_path) == 0);
5029 free(ct_parent_path);
5030 return err;
5033 static mode_t
5034 get_ct_file_mode(struct got_commitable *ct)
5036 if (S_ISLNK(ct->mode))
5037 return S_IFLNK;
5039 return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
5042 static const struct got_error *
5043 alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
5044 struct got_tree_entry *te, struct got_commitable *ct)
5046 const struct got_error *err = NULL;
5048 *new_te = NULL;
5050 err = got_object_tree_entry_dup(new_te, te);
5051 if (err)
5052 goto done;
5054 (*new_te)->mode = get_ct_file_mode(ct);
5056 if (ct->staged_status == GOT_STATUS_MODIFY)
5057 memcpy(&(*new_te)->id, ct->staged_blob_id,
5058 sizeof((*new_te)->id));
5059 else
5060 memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
5061 done:
5062 if (err && *new_te) {
5063 free(*new_te);
5064 *new_te = NULL;
5066 return err;
5069 static const struct got_error *
5070 alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
5071 struct got_commitable *ct)
5073 const struct got_error *err = NULL;
5074 char *ct_name = NULL;
5076 *new_te = NULL;
5078 *new_te = calloc(1, sizeof(**new_te));
5079 if (*new_te == NULL)
5080 return got_error_from_errno("calloc");
5082 err = got_path_basename(&ct_name, ct->path);
5083 if (err)
5084 goto done;
5085 if (strlcpy((*new_te)->name, ct_name, sizeof((*new_te)->name)) >=
5086 sizeof((*new_te)->name)) {
5087 err = got_error(GOT_ERR_NO_SPACE);
5088 goto done;
5091 (*new_te)->mode = get_ct_file_mode(ct);
5093 if (ct->staged_status == GOT_STATUS_ADD)
5094 memcpy(&(*new_te)->id, ct->staged_blob_id,
5095 sizeof((*new_te)->id));
5096 else
5097 memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
5098 done:
5099 free(ct_name);
5100 if (err && *new_te) {
5101 free(*new_te);
5102 *new_te = NULL;
5104 return err;
5107 static const struct got_error *
5108 insert_tree_entry(struct got_tree_entry *new_te,
5109 struct got_pathlist_head *paths)
5111 const struct got_error *err = NULL;
5112 struct got_pathlist_entry *new_pe;
5114 err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
5115 if (err)
5116 return err;
5117 if (new_pe == NULL)
5118 return got_error(GOT_ERR_TREE_DUP_ENTRY);
5119 return NULL;
5122 static const struct got_error *
5123 report_ct_status(struct got_commitable *ct,
5124 got_worktree_status_cb status_cb, void *status_arg)
5126 const char *ct_path = ct->path;
5127 unsigned char status;
5129 if (status_cb == NULL) /* no commit progress output desired */
5130 return NULL;
5132 while (ct_path[0] == '/')
5133 ct_path++;
5135 if (ct->staged_status != GOT_STATUS_NO_CHANGE)
5136 status = ct->staged_status;
5137 else
5138 status = ct->status;
5140 return (*status_cb)(status_arg, status, GOT_STATUS_NO_CHANGE,
5141 ct_path, ct->blob_id, NULL, NULL, -1, NULL);
5144 static const struct got_error *
5145 match_modified_subtree(int *modified, struct got_tree_entry *te,
5146 const char *base_tree_path, struct got_pathlist_head *commitable_paths)
5148 const struct got_error *err = NULL;
5149 struct got_pathlist_entry *pe;
5150 char *te_path;
5152 *modified = 0;
5154 if (asprintf(&te_path, "%s%s%s", base_tree_path,
5155 got_path_is_root_dir(base_tree_path) ? "" : "/",
5156 te->name) == -1)
5157 return got_error_from_errno("asprintf");
5159 TAILQ_FOREACH(pe, commitable_paths, entry) {
5160 struct got_commitable *ct = pe->data;
5161 *modified = got_path_is_child(ct->in_repo_path, te_path,
5162 strlen(te_path));
5163 if (*modified)
5164 break;
5167 free(te_path);
5168 return err;
5171 static const struct got_error *
5172 match_deleted_or_modified_ct(struct got_commitable **ctp,
5173 struct got_tree_entry *te, const char *base_tree_path,
5174 struct got_pathlist_head *commitable_paths)
5176 const struct got_error *err = NULL;
5177 struct got_pathlist_entry *pe;
5179 *ctp = NULL;
5181 TAILQ_FOREACH(pe, commitable_paths, entry) {
5182 struct got_commitable *ct = pe->data;
5183 char *ct_name = NULL;
5184 int path_matches;
5186 if (ct->staged_status == GOT_STATUS_NO_CHANGE) {
5187 if (ct->status != GOT_STATUS_MODIFY &&
5188 ct->status != GOT_STATUS_MODE_CHANGE &&
5189 ct->status != GOT_STATUS_DELETE)
5190 continue;
5191 } else {
5192 if (ct->staged_status != GOT_STATUS_MODIFY &&
5193 ct->staged_status != GOT_STATUS_DELETE)
5194 continue;
5197 if (got_object_id_cmp(ct->base_blob_id, &te->id) != 0)
5198 continue;
5200 err = match_ct_parent_path(&path_matches, ct, base_tree_path);
5201 if (err)
5202 return err;
5203 if (!path_matches)
5204 continue;
5206 err = got_path_basename(&ct_name, pe->path);
5207 if (err)
5208 return err;
5210 if (strcmp(te->name, ct_name) != 0) {
5211 free(ct_name);
5212 continue;
5214 free(ct_name);
5216 *ctp = ct;
5217 break;
5220 return err;
5223 static const struct got_error *
5224 make_subtree_for_added_blob(struct got_tree_entry **new_tep,
5225 const char *child_path, const char *path_base_tree,
5226 struct got_pathlist_head *commitable_paths,
5227 got_worktree_status_cb status_cb, void *status_arg,
5228 struct got_repository *repo)
5230 const struct got_error *err = NULL;
5231 struct got_tree_entry *new_te;
5232 char *subtree_path;
5233 struct got_object_id *id = NULL;
5234 int nentries;
5236 *new_tep = NULL;
5238 if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
5239 got_path_is_root_dir(path_base_tree) ? "" : "/",
5240 child_path) == -1)
5241 return got_error_from_errno("asprintf");
5243 new_te = calloc(1, sizeof(*new_te));
5244 if (new_te == NULL)
5245 return got_error_from_errno("calloc");
5246 new_te->mode = S_IFDIR;
5248 if (strlcpy(new_te->name, child_path, sizeof(new_te->name)) >=
5249 sizeof(new_te->name)) {
5250 err = got_error(GOT_ERR_NO_SPACE);
5251 goto done;
5253 err = write_tree(&id, &nentries, NULL, subtree_path,
5254 commitable_paths, status_cb, status_arg, repo);
5255 if (err) {
5256 free(new_te);
5257 goto done;
5259 memcpy(&new_te->id, id, sizeof(new_te->id));
5260 done:
5261 free(id);
5262 free(subtree_path);
5263 if (err == NULL)
5264 *new_tep = new_te;
5265 return err;
5268 static const struct got_error *
5269 write_tree(struct got_object_id **new_tree_id, int *nentries,
5270 struct got_tree_object *base_tree, const char *path_base_tree,
5271 struct got_pathlist_head *commitable_paths,
5272 got_worktree_status_cb status_cb, void *status_arg,
5273 struct got_repository *repo)
5275 const struct got_error *err = NULL;
5276 struct got_pathlist_head paths;
5277 struct got_tree_entry *te, *new_te = NULL;
5278 struct got_pathlist_entry *pe;
5280 TAILQ_INIT(&paths);
5281 *nentries = 0;
5283 /* Insert, and recurse into, newly added entries first. */
5284 TAILQ_FOREACH(pe, commitable_paths, entry) {
5285 struct got_commitable *ct = pe->data;
5286 char *child_path = NULL, *slash;
5288 if ((ct->status != GOT_STATUS_ADD &&
5289 ct->staged_status != GOT_STATUS_ADD) ||
5290 (ct->flags & GOT_COMMITABLE_ADDED))
5291 continue;
5293 if (!got_path_is_child(ct->in_repo_path, path_base_tree,
5294 strlen(path_base_tree)))
5295 continue;
5297 err = got_path_skip_common_ancestor(&child_path, path_base_tree,
5298 ct->in_repo_path);
5299 if (err)
5300 goto done;
5302 slash = strchr(child_path, '/');
5303 if (slash == NULL) {
5304 err = alloc_added_blob_tree_entry(&new_te, ct);
5305 if (err)
5306 goto done;
5307 err = report_ct_status(ct, status_cb, status_arg);
5308 if (err)
5309 goto done;
5310 ct->flags |= GOT_COMMITABLE_ADDED;
5311 err = insert_tree_entry(new_te, &paths);
5312 if (err)
5313 goto done;
5314 (*nentries)++;
5315 } else {
5316 *slash = '\0'; /* trim trailing path components */
5317 if (base_tree == NULL ||
5318 got_object_tree_find_entry(base_tree, child_path)
5319 == NULL) {
5320 err = make_subtree_for_added_blob(&new_te,
5321 child_path, path_base_tree,
5322 commitable_paths, status_cb, status_arg,
5323 repo);
5324 if (err)
5325 goto done;
5326 err = insert_tree_entry(new_te, &paths);
5327 if (err)
5328 goto done;
5329 (*nentries)++;
5334 if (base_tree) {
5335 int i, nbase_entries;
5336 /* Handle modified and deleted entries. */
5337 nbase_entries = got_object_tree_get_nentries(base_tree);
5338 for (i = 0; i < nbase_entries; i++) {
5339 struct got_commitable *ct = NULL;
5341 te = got_object_tree_get_entry(base_tree, i);
5342 if (got_object_tree_entry_is_submodule(te)) {
5343 /* Entry is a submodule; just copy it. */
5344 err = got_object_tree_entry_dup(&new_te, te);
5345 if (err)
5346 goto done;
5347 err = insert_tree_entry(new_te, &paths);
5348 if (err)
5349 goto done;
5350 (*nentries)++;
5351 continue;
5354 if (S_ISDIR(te->mode)) {
5355 int modified;
5356 err = got_object_tree_entry_dup(&new_te, te);
5357 if (err)
5358 goto done;
5359 err = match_modified_subtree(&modified, te,
5360 path_base_tree, commitable_paths);
5361 if (err)
5362 goto done;
5363 /* Avoid recursion into unmodified subtrees. */
5364 if (modified) {
5365 struct got_object_id *new_id;
5366 int nsubentries;
5367 err = write_subtree(&new_id,
5368 &nsubentries, te,
5369 path_base_tree, commitable_paths,
5370 status_cb, status_arg, repo);
5371 if (err)
5372 goto done;
5373 if (nsubentries == 0) {
5374 /* All entries were deleted. */
5375 free(new_id);
5376 continue;
5378 memcpy(&new_te->id, new_id,
5379 sizeof(new_te->id));
5380 free(new_id);
5382 err = insert_tree_entry(new_te, &paths);
5383 if (err)
5384 goto done;
5385 (*nentries)++;
5386 continue;
5389 err = match_deleted_or_modified_ct(&ct, te,
5390 path_base_tree, commitable_paths);
5391 if (err)
5392 goto done;
5393 if (ct) {
5394 /* NB: Deleted entries get dropped here. */
5395 if (ct->status == GOT_STATUS_MODIFY ||
5396 ct->status == GOT_STATUS_MODE_CHANGE ||
5397 ct->staged_status == GOT_STATUS_MODIFY) {
5398 err = alloc_modified_blob_tree_entry(
5399 &new_te, te, ct);
5400 if (err)
5401 goto done;
5402 err = insert_tree_entry(new_te, &paths);
5403 if (err)
5404 goto done;
5405 (*nentries)++;
5407 err = report_ct_status(ct, status_cb,
5408 status_arg);
5409 if (err)
5410 goto done;
5411 } else {
5412 /* Entry is unchanged; just copy it. */
5413 err = got_object_tree_entry_dup(&new_te, te);
5414 if (err)
5415 goto done;
5416 err = insert_tree_entry(new_te, &paths);
5417 if (err)
5418 goto done;
5419 (*nentries)++;
5424 /* Write new list of entries; deleted entries have been dropped. */
5425 err = got_object_tree_create(new_tree_id, &paths, *nentries, repo);
5426 done:
5427 got_pathlist_free(&paths);
5428 return err;
5431 static const struct got_error *
5432 update_fileindex_after_commit(struct got_worktree *worktree,
5433 struct got_pathlist_head *commitable_paths,
5434 struct got_object_id *new_base_commit_id,
5435 struct got_fileindex *fileindex, int have_staged_files)
5437 const struct got_error *err = NULL;
5438 struct got_pathlist_entry *pe;
5439 char *relpath = NULL;
5441 TAILQ_FOREACH(pe, commitable_paths, entry) {
5442 struct got_fileindex_entry *ie;
5443 struct got_commitable *ct = pe->data;
5445 ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5447 err = got_path_skip_common_ancestor(&relpath,
5448 worktree->root_path, ct->ondisk_path);
5449 if (err)
5450 goto done;
5452 if (ie) {
5453 if (ct->status == GOT_STATUS_DELETE ||
5454 ct->staged_status == GOT_STATUS_DELETE) {
5455 got_fileindex_entry_remove(fileindex, ie);
5456 } else if (ct->staged_status == GOT_STATUS_ADD ||
5457 ct->staged_status == GOT_STATUS_MODIFY) {
5458 got_fileindex_entry_stage_set(ie,
5459 GOT_FILEIDX_STAGE_NONE);
5460 got_fileindex_entry_staged_filetype_set(ie, 0);
5462 err = got_fileindex_entry_update(ie,
5463 worktree->root_fd, relpath,
5464 ct->staged_blob_id->sha1,
5465 new_base_commit_id->sha1,
5466 !have_staged_files);
5467 } else
5468 err = got_fileindex_entry_update(ie,
5469 worktree->root_fd, relpath,
5470 ct->blob_id->sha1,
5471 new_base_commit_id->sha1,
5472 !have_staged_files);
5473 } else {
5474 err = got_fileindex_entry_alloc(&ie, pe->path);
5475 if (err)
5476 goto done;
5477 err = got_fileindex_entry_update(ie,
5478 worktree->root_fd, relpath, ct->blob_id->sha1,
5479 new_base_commit_id->sha1, 1);
5480 if (err) {
5481 got_fileindex_entry_free(ie);
5482 goto done;
5484 err = got_fileindex_entry_add(fileindex, ie);
5485 if (err) {
5486 got_fileindex_entry_free(ie);
5487 goto done;
5490 free(relpath);
5491 relpath = NULL;
5493 done:
5494 free(relpath);
5495 return err;
5499 static const struct got_error *
5500 check_out_of_date(const char *in_repo_path, unsigned char status,
5501 unsigned char staged_status, struct got_object_id *base_blob_id,
5502 struct got_object_id *base_commit_id,
5503 struct got_object_id *head_commit_id, struct got_repository *repo,
5504 int ood_errcode)
5506 const struct got_error *err = NULL;
5507 struct got_object_id *id = NULL;
5509 if (status != GOT_STATUS_ADD && staged_status != GOT_STATUS_ADD) {
5510 /* Trivial case: base commit == head commit */
5511 if (got_object_id_cmp(base_commit_id, head_commit_id) == 0)
5512 return NULL;
5514 * Ensure file content which local changes were based
5515 * on matches file content in the branch head.
5517 err = got_object_id_by_path(&id, repo, head_commit_id,
5518 in_repo_path);
5519 if (err) {
5520 if (err->code == GOT_ERR_NO_TREE_ENTRY)
5521 err = got_error(ood_errcode);
5522 goto done;
5523 } else if (got_object_id_cmp(id, base_blob_id) != 0)
5524 err = got_error(ood_errcode);
5525 } else {
5526 /* Require that added files don't exist in the branch head. */
5527 err = got_object_id_by_path(&id, repo, head_commit_id,
5528 in_repo_path);
5529 if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
5530 goto done;
5531 err = id ? got_error(ood_errcode) : NULL;
5533 done:
5534 free(id);
5535 return err;
5538 const struct got_error *
5539 commit_worktree(struct got_object_id **new_commit_id,
5540 struct got_pathlist_head *commitable_paths,
5541 struct got_object_id *head_commit_id,
5542 struct got_object_id *parent_id2,
5543 struct got_worktree *worktree,
5544 const char *author, const char *committer,
5545 got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5546 got_worktree_status_cb status_cb, void *status_arg,
5547 struct got_repository *repo)
5549 const struct got_error *err = NULL, *unlockerr = NULL;
5550 struct got_pathlist_entry *pe;
5551 const char *head_ref_name = NULL;
5552 struct got_commit_object *head_commit = NULL;
5553 struct got_reference *head_ref2 = NULL;
5554 struct got_object_id *head_commit_id2 = NULL;
5555 struct got_tree_object *head_tree = NULL;
5556 struct got_object_id *new_tree_id = NULL;
5557 int nentries, nparents = 0;
5558 struct got_object_id_queue parent_ids;
5559 struct got_object_qid *pid = NULL;
5560 char *logmsg = NULL;
5562 *new_commit_id = NULL;
5564 STAILQ_INIT(&parent_ids);
5566 err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
5567 if (err)
5568 goto done;
5570 err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
5571 if (err)
5572 goto done;
5574 if (commit_msg_cb != NULL) {
5575 err = commit_msg_cb(commitable_paths, &logmsg, commit_arg);
5576 if (err)
5577 goto done;
5580 if (logmsg == NULL || strlen(logmsg) == 0) {
5581 err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
5582 goto done;
5585 /* Create blobs from added and modified files and record their IDs. */
5586 TAILQ_FOREACH(pe, commitable_paths, entry) {
5587 struct got_commitable *ct = pe->data;
5588 char *ondisk_path;
5590 /* Blobs for staged files already exist. */
5591 if (ct->staged_status == GOT_STATUS_ADD ||
5592 ct->staged_status == GOT_STATUS_MODIFY)
5593 continue;
5595 if (ct->status != GOT_STATUS_ADD &&
5596 ct->status != GOT_STATUS_MODIFY &&
5597 ct->status != GOT_STATUS_MODE_CHANGE)
5598 continue;
5600 if (asprintf(&ondisk_path, "%s/%s",
5601 worktree->root_path, pe->path) == -1) {
5602 err = got_error_from_errno("asprintf");
5603 goto done;
5605 err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
5606 free(ondisk_path);
5607 if (err)
5608 goto done;
5611 /* Recursively write new tree objects. */
5612 err = write_tree(&new_tree_id, &nentries, head_tree, "/",
5613 commitable_paths, status_cb, status_arg, repo);
5614 if (err)
5615 goto done;
5617 err = got_object_qid_alloc(&pid, worktree->base_commit_id);
5618 if (err)
5619 goto done;
5620 STAILQ_INSERT_TAIL(&parent_ids, pid, entry);
5621 nparents++;
5622 if (parent_id2) {
5623 err = got_object_qid_alloc(&pid, parent_id2);
5624 if (err)
5625 goto done;
5626 STAILQ_INSERT_TAIL(&parent_ids, pid, entry);
5627 nparents++;
5629 err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
5630 nparents, author, time(NULL), committer, time(NULL), logmsg, repo);
5631 if (logmsg != NULL)
5632 free(logmsg);
5633 if (err)
5634 goto done;
5636 /* Check if a concurrent commit to our branch has occurred. */
5637 head_ref_name = got_worktree_get_head_ref_name(worktree);
5638 if (head_ref_name == NULL) {
5639 err = got_error_from_errno("got_worktree_get_head_ref_name");
5640 goto done;
5642 /* Lock the reference here to prevent concurrent modification. */
5643 err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
5644 if (err)
5645 goto done;
5646 err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
5647 if (err)
5648 goto done;
5649 if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
5650 err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
5651 goto done;
5653 /* Update branch head in repository. */
5654 err = got_ref_change_ref(head_ref2, *new_commit_id);
5655 if (err)
5656 goto done;
5657 err = got_ref_write(head_ref2, repo);
5658 if (err)
5659 goto done;
5661 err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
5662 if (err)
5663 goto done;
5665 err = ref_base_commit(worktree, repo);
5666 if (err)
5667 goto done;
5668 done:
5669 got_object_id_queue_free(&parent_ids);
5670 if (head_tree)
5671 got_object_tree_close(head_tree);
5672 if (head_commit)
5673 got_object_commit_close(head_commit);
5674 free(head_commit_id2);
5675 if (head_ref2) {
5676 unlockerr = got_ref_unlock(head_ref2);
5677 if (unlockerr && err == NULL)
5678 err = unlockerr;
5679 got_ref_close(head_ref2);
5681 return err;
5684 static const struct got_error *
5685 check_path_is_commitable(const char *path,
5686 struct got_pathlist_head *commitable_paths)
5688 struct got_pathlist_entry *cpe = NULL;
5689 size_t path_len = strlen(path);
5691 TAILQ_FOREACH(cpe, commitable_paths, entry) {
5692 struct got_commitable *ct = cpe->data;
5693 const char *ct_path = ct->path;
5695 while (ct_path[0] == '/')
5696 ct_path++;
5698 if (strcmp(path, ct_path) == 0 ||
5699 got_path_is_child(ct_path, path, path_len))
5700 break;
5703 if (cpe == NULL)
5704 return got_error_path(path, GOT_ERR_BAD_PATH);
5706 return NULL;
5709 static const struct got_error *
5710 check_staged_file(void *arg, struct got_fileindex_entry *ie)
5712 int *have_staged_files = arg;
5714 if (got_fileindex_entry_stage_get(ie) != GOT_FILEIDX_STAGE_NONE) {
5715 *have_staged_files = 1;
5716 return got_error(GOT_ERR_CANCELLED);
5719 return NULL;
5722 static const struct got_error *
5723 check_non_staged_files(struct got_fileindex *fileindex,
5724 struct got_pathlist_head *paths)
5726 struct got_pathlist_entry *pe;
5727 struct got_fileindex_entry *ie;
5729 TAILQ_FOREACH(pe, paths, entry) {
5730 if (pe->path[0] == '\0')
5731 continue;
5732 ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
5733 if (ie == NULL)
5734 return got_error_path(pe->path, GOT_ERR_BAD_PATH);
5735 if (got_fileindex_entry_stage_get(ie) == GOT_FILEIDX_STAGE_NONE)
5736 return got_error_path(pe->path,
5737 GOT_ERR_FILE_NOT_STAGED);
5740 return NULL;
5743 const struct got_error *
5744 got_worktree_commit(struct got_object_id **new_commit_id,
5745 struct got_worktree *worktree, struct got_pathlist_head *paths,
5746 const char *author, const char *committer, int allow_bad_symlinks,
5747 got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
5748 got_worktree_status_cb status_cb, void *status_arg,
5749 struct got_repository *repo)
5751 const struct got_error *err = NULL, *unlockerr = NULL, *sync_err;
5752 struct got_fileindex *fileindex = NULL;
5753 char *fileindex_path = NULL;
5754 struct got_pathlist_head commitable_paths;
5755 struct collect_commitables_arg cc_arg;
5756 struct got_pathlist_entry *pe;
5757 struct got_reference *head_ref = NULL;
5758 struct got_object_id *head_commit_id = NULL;
5759 int have_staged_files = 0;
5761 *new_commit_id = NULL;
5763 TAILQ_INIT(&commitable_paths);
5765 err = lock_worktree(worktree, LOCK_EX);
5766 if (err)
5767 goto done;
5769 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
5770 if (err)
5771 goto done;
5773 err = got_ref_resolve(&head_commit_id, repo, head_ref);
5774 if (err)
5775 goto done;
5777 err = open_fileindex(&fileindex, &fileindex_path, worktree);
5778 if (err)
5779 goto done;
5781 err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
5782 &have_staged_files);
5783 if (err && err->code != GOT_ERR_CANCELLED)
5784 goto done;
5785 if (have_staged_files) {
5786 err = check_non_staged_files(fileindex, paths);
5787 if (err)
5788 goto done;
5791 cc_arg.commitable_paths = &commitable_paths;
5792 cc_arg.worktree = worktree;
5793 cc_arg.fileindex = fileindex;
5794 cc_arg.repo = repo;
5795 cc_arg.have_staged_files = have_staged_files;
5796 cc_arg.allow_bad_symlinks = allow_bad_symlinks;
5797 TAILQ_FOREACH(pe, paths, entry) {
5798 err = worktree_status(worktree, pe->path, fileindex, repo,
5799 collect_commitables, &cc_arg, NULL, NULL, 1, 0);
5800 if (err)
5801 goto done;
5804 if (TAILQ_EMPTY(&commitable_paths)) {
5805 err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
5806 goto done;
5809 TAILQ_FOREACH(pe, paths, entry) {
5810 err = check_path_is_commitable(pe->path, &commitable_paths);
5811 if (err)
5812 goto done;
5815 TAILQ_FOREACH(pe, &commitable_paths, entry) {
5816 struct got_commitable *ct = pe->data;
5817 const char *ct_path = ct->in_repo_path;
5819 while (ct_path[0] == '/')
5820 ct_path++;
5821 err = check_out_of_date(ct_path, ct->status,
5822 ct->staged_status, ct->base_blob_id, ct->base_commit_id,
5823 head_commit_id, repo, GOT_ERR_COMMIT_OUT_OF_DATE);
5824 if (err)
5825 goto done;
5829 err = commit_worktree(new_commit_id, &commitable_paths,
5830 head_commit_id, NULL, worktree, author, committer,
5831 commit_msg_cb, commit_arg, status_cb, status_arg, repo);
5832 if (err)
5833 goto done;
5835 err = update_fileindex_after_commit(worktree, &commitable_paths,
5836 *new_commit_id, fileindex, have_staged_files);
5837 sync_err = sync_fileindex(fileindex, fileindex_path);
5838 if (sync_err && err == NULL)
5839 err = sync_err;
5840 done:
5841 if (fileindex)
5842 got_fileindex_free(fileindex);
5843 free(fileindex_path);
5844 unlockerr = lock_worktree(worktree, LOCK_SH);
5845 if (unlockerr && err == NULL)
5846 err = unlockerr;
5847 TAILQ_FOREACH(pe, &commitable_paths, entry) {
5848 struct got_commitable *ct = pe->data;
5849 free_commitable(ct);
5851 got_pathlist_free(&commitable_paths);
5852 return err;
5855 const char *
5856 got_commitable_get_path(struct got_commitable *ct)
5858 return ct->path;
5861 unsigned int
5862 got_commitable_get_status(struct got_commitable *ct)
5864 return ct->status;
5867 struct check_rebase_ok_arg {
5868 struct got_worktree *worktree;
5869 struct got_repository *repo;
5872 static const struct got_error *
5873 check_rebase_ok(void *arg, struct got_fileindex_entry *ie)
5875 const struct got_error *err = NULL;
5876 struct check_rebase_ok_arg *a = arg;
5877 unsigned char status;
5878 struct stat sb;
5879 char *ondisk_path;
5881 /* Reject rebase of a work tree with mixed base commits. */
5882 if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
5883 SHA1_DIGEST_LENGTH))
5884 return got_error(GOT_ERR_MIXED_COMMITS);
5886 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
5887 == -1)
5888 return got_error_from_errno("asprintf");
5890 /* Reject rebase of a work tree with modified or staged files. */
5891 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
5892 free(ondisk_path);
5893 if (err)
5894 return err;
5896 if (status != GOT_STATUS_NO_CHANGE)
5897 return got_error(GOT_ERR_MODIFIED);
5898 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
5899 return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
5901 return NULL;
5904 const struct got_error *
5905 got_worktree_rebase_prepare(struct got_reference **new_base_branch_ref,
5906 struct got_reference **tmp_branch, struct got_fileindex **fileindex,
5907 struct got_worktree *worktree, struct got_reference *branch,
5908 struct got_repository *repo)
5910 const struct got_error *err = NULL;
5911 char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
5912 char *branch_ref_name = NULL;
5913 char *fileindex_path = NULL;
5914 struct check_rebase_ok_arg ok_arg;
5915 struct got_reference *wt_branch = NULL, *branch_ref = NULL;
5916 struct got_object_id *wt_branch_tip = NULL;
5918 *new_base_branch_ref = NULL;
5919 *tmp_branch = NULL;
5920 *fileindex = NULL;
5922 err = lock_worktree(worktree, LOCK_EX);
5923 if (err)
5924 return err;
5926 err = open_fileindex(fileindex, &fileindex_path, worktree);
5927 if (err)
5928 goto done;
5930 ok_arg.worktree = worktree;
5931 ok_arg.repo = repo;
5932 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
5933 &ok_arg);
5934 if (err)
5935 goto done;
5937 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
5938 if (err)
5939 goto done;
5941 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
5942 if (err)
5943 goto done;
5945 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
5946 if (err)
5947 goto done;
5949 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
5950 0);
5951 if (err)
5952 goto done;
5954 err = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
5955 if (err)
5956 goto done;
5957 if (got_object_id_cmp(worktree->base_commit_id, wt_branch_tip) != 0) {
5958 err = got_error(GOT_ERR_REBASE_OUT_OF_DATE);
5959 goto done;
5962 err = got_ref_alloc_symref(new_base_branch_ref,
5963 new_base_branch_ref_name, wt_branch);
5964 if (err)
5965 goto done;
5966 err = got_ref_write(*new_base_branch_ref, repo);
5967 if (err)
5968 goto done;
5970 /* TODO Lock original branch's ref while rebasing? */
5972 err = got_ref_alloc_symref(&branch_ref, branch_ref_name, branch);
5973 if (err)
5974 goto done;
5976 err = got_ref_write(branch_ref, repo);
5977 if (err)
5978 goto done;
5980 err = got_ref_alloc(tmp_branch, tmp_branch_name,
5981 worktree->base_commit_id);
5982 if (err)
5983 goto done;
5984 err = got_ref_write(*tmp_branch, repo);
5985 if (err)
5986 goto done;
5988 err = got_worktree_set_head_ref(worktree, *tmp_branch);
5989 if (err)
5990 goto done;
5991 done:
5992 free(fileindex_path);
5993 free(tmp_branch_name);
5994 free(new_base_branch_ref_name);
5995 free(branch_ref_name);
5996 if (branch_ref)
5997 got_ref_close(branch_ref);
5998 if (wt_branch)
5999 got_ref_close(wt_branch);
6000 free(wt_branch_tip);
6001 if (err) {
6002 if (*new_base_branch_ref) {
6003 got_ref_close(*new_base_branch_ref);
6004 *new_base_branch_ref = NULL;
6006 if (*tmp_branch) {
6007 got_ref_close(*tmp_branch);
6008 *tmp_branch = NULL;
6010 if (*fileindex) {
6011 got_fileindex_free(*fileindex);
6012 *fileindex = NULL;
6014 lock_worktree(worktree, LOCK_SH);
6016 return err;
6019 const struct got_error *
6020 got_worktree_rebase_continue(struct got_object_id **commit_id,
6021 struct got_reference **new_base_branch, struct got_reference **tmp_branch,
6022 struct got_reference **branch, struct got_fileindex **fileindex,
6023 struct got_worktree *worktree, struct got_repository *repo)
6025 const struct got_error *err;
6026 char *commit_ref_name = NULL, *new_base_branch_ref_name = NULL;
6027 char *tmp_branch_name = NULL, *branch_ref_name = NULL;
6028 struct got_reference *commit_ref = NULL, *branch_ref = NULL;
6029 char *fileindex_path = NULL;
6030 int have_staged_files = 0;
6032 *commit_id = NULL;
6033 *new_base_branch = NULL;
6034 *tmp_branch = NULL;
6035 *branch = NULL;
6036 *fileindex = NULL;
6038 err = lock_worktree(worktree, LOCK_EX);
6039 if (err)
6040 return err;
6042 err = open_fileindex(fileindex, &fileindex_path, worktree);
6043 if (err)
6044 goto done;
6046 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
6047 &have_staged_files);
6048 if (err && err->code != GOT_ERR_CANCELLED)
6049 goto done;
6050 if (have_staged_files) {
6051 err = got_error(GOT_ERR_STAGED_PATHS);
6052 goto done;
6055 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6056 if (err)
6057 goto done;
6059 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6060 if (err)
6061 goto done;
6063 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6064 if (err)
6065 goto done;
6067 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6068 if (err)
6069 goto done;
6071 err = got_ref_open(&branch_ref, repo, branch_ref_name, 0);
6072 if (err)
6073 goto done;
6075 err = got_ref_open(branch, repo,
6076 got_ref_get_symref_target(branch_ref), 0);
6077 if (err)
6078 goto done;
6080 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6081 if (err)
6082 goto done;
6084 err = got_ref_resolve(commit_id, repo, commit_ref);
6085 if (err)
6086 goto done;
6088 err = got_ref_open(new_base_branch, repo,
6089 new_base_branch_ref_name, 0);
6090 if (err)
6091 goto done;
6093 err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
6094 if (err)
6095 goto done;
6096 done:
6097 free(commit_ref_name);
6098 free(branch_ref_name);
6099 free(fileindex_path);
6100 if (commit_ref)
6101 got_ref_close(commit_ref);
6102 if (branch_ref)
6103 got_ref_close(branch_ref);
6104 if (err) {
6105 free(*commit_id);
6106 *commit_id = NULL;
6107 if (*tmp_branch) {
6108 got_ref_close(*tmp_branch);
6109 *tmp_branch = NULL;
6111 if (*new_base_branch) {
6112 got_ref_close(*new_base_branch);
6113 *new_base_branch = NULL;
6115 if (*branch) {
6116 got_ref_close(*branch);
6117 *branch = NULL;
6119 if (*fileindex) {
6120 got_fileindex_free(*fileindex);
6121 *fileindex = NULL;
6123 lock_worktree(worktree, LOCK_SH);
6125 return err;
6128 const struct got_error *
6129 got_worktree_rebase_in_progress(int *in_progress, struct got_worktree *worktree)
6131 const struct got_error *err;
6132 char *tmp_branch_name = NULL;
6134 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6135 if (err)
6136 return err;
6138 *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6139 free(tmp_branch_name);
6140 return NULL;
6143 static const struct got_error *
6144 collect_rebase_commit_msg(struct got_pathlist_head *commitable_paths,
6145 char **logmsg, void *arg)
6147 *logmsg = arg;
6148 return NULL;
6151 static const struct got_error *
6152 rebase_status(void *arg, unsigned char status, unsigned char staged_status,
6153 const char *path, struct got_object_id *blob_id,
6154 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
6155 int dirfd, const char *de_name)
6157 return NULL;
6160 struct collect_merged_paths_arg {
6161 got_worktree_checkout_cb progress_cb;
6162 void *progress_arg;
6163 struct got_pathlist_head *merged_paths;
6166 static const struct got_error *
6167 collect_merged_paths(void *arg, unsigned char status, const char *path)
6169 const struct got_error *err;
6170 struct collect_merged_paths_arg *a = arg;
6171 char *p;
6172 struct got_pathlist_entry *new;
6174 err = (*a->progress_cb)(a->progress_arg, status, path);
6175 if (err)
6176 return err;
6178 if (status != GOT_STATUS_MERGE &&
6179 status != GOT_STATUS_ADD &&
6180 status != GOT_STATUS_DELETE &&
6181 status != GOT_STATUS_CONFLICT)
6182 return NULL;
6184 p = strdup(path);
6185 if (p == NULL)
6186 return got_error_from_errno("strdup");
6188 err = got_pathlist_insert(&new, a->merged_paths, p, NULL);
6189 if (err || new == NULL)
6190 free(p);
6191 return err;
6194 void
6195 got_worktree_rebase_pathlist_free(struct got_pathlist_head *merged_paths)
6197 struct got_pathlist_entry *pe;
6199 TAILQ_FOREACH(pe, merged_paths, entry)
6200 free((char *)pe->path);
6202 got_pathlist_free(merged_paths);
6205 static const struct got_error *
6206 store_commit_id(const char *commit_ref_name, struct got_object_id *commit_id,
6207 int is_rebase, struct got_repository *repo)
6209 const struct got_error *err;
6210 struct got_reference *commit_ref = NULL;
6212 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6213 if (err) {
6214 if (err->code != GOT_ERR_NOT_REF)
6215 goto done;
6216 err = got_ref_alloc(&commit_ref, commit_ref_name, commit_id);
6217 if (err)
6218 goto done;
6219 err = got_ref_write(commit_ref, repo);
6220 if (err)
6221 goto done;
6222 } else if (is_rebase) {
6223 struct got_object_id *stored_id;
6224 int cmp;
6226 err = got_ref_resolve(&stored_id, repo, commit_ref);
6227 if (err)
6228 goto done;
6229 cmp = got_object_id_cmp(commit_id, stored_id);
6230 free(stored_id);
6231 if (cmp != 0) {
6232 err = got_error(GOT_ERR_REBASE_COMMITID);
6233 goto done;
6236 done:
6237 if (commit_ref)
6238 got_ref_close(commit_ref);
6239 return err;
6242 static const struct got_error *
6243 rebase_merge_files(struct got_pathlist_head *merged_paths,
6244 const char *commit_ref_name, struct got_worktree *worktree,
6245 struct got_fileindex *fileindex, struct got_object_id *parent_commit_id,
6246 struct got_object_id *commit_id, struct got_repository *repo,
6247 got_worktree_checkout_cb progress_cb, void *progress_arg,
6248 got_cancel_cb cancel_cb, void *cancel_arg)
6250 const struct got_error *err;
6251 struct got_reference *commit_ref = NULL;
6252 struct collect_merged_paths_arg cmp_arg;
6253 char *fileindex_path;
6255 /* Work tree is locked/unlocked during rebase preparation/teardown. */
6257 err = get_fileindex_path(&fileindex_path, worktree);
6258 if (err)
6259 return err;
6261 cmp_arg.progress_cb = progress_cb;
6262 cmp_arg.progress_arg = progress_arg;
6263 cmp_arg.merged_paths = merged_paths;
6264 err = merge_files(worktree, fileindex, fileindex_path,
6265 parent_commit_id, commit_id, repo, collect_merged_paths,
6266 &cmp_arg, cancel_cb, cancel_arg);
6267 if (commit_ref)
6268 got_ref_close(commit_ref);
6269 return err;
6272 const struct got_error *
6273 got_worktree_rebase_merge_files(struct got_pathlist_head *merged_paths,
6274 struct got_worktree *worktree, struct got_fileindex *fileindex,
6275 struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6276 struct got_repository *repo,
6277 got_worktree_checkout_cb progress_cb, void *progress_arg,
6278 got_cancel_cb cancel_cb, void *cancel_arg)
6280 const struct got_error *err;
6281 char *commit_ref_name;
6283 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6284 if (err)
6285 return err;
6287 err = store_commit_id(commit_ref_name, commit_id, 1, repo);
6288 if (err)
6289 goto done;
6291 err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6292 fileindex, parent_commit_id, commit_id, repo, progress_cb,
6293 progress_arg, cancel_cb, cancel_arg);
6294 done:
6295 free(commit_ref_name);
6296 return err;
6299 const struct got_error *
6300 got_worktree_histedit_merge_files(struct got_pathlist_head *merged_paths,
6301 struct got_worktree *worktree, struct got_fileindex *fileindex,
6302 struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
6303 struct got_repository *repo,
6304 got_worktree_checkout_cb progress_cb, void *progress_arg,
6305 got_cancel_cb cancel_cb, void *cancel_arg)
6307 const struct got_error *err;
6308 char *commit_ref_name;
6310 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6311 if (err)
6312 return err;
6314 err = store_commit_id(commit_ref_name, commit_id, 0, repo);
6315 if (err)
6316 goto done;
6318 err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
6319 fileindex, parent_commit_id, commit_id, repo, progress_cb,
6320 progress_arg, cancel_cb, cancel_arg);
6321 done:
6322 free(commit_ref_name);
6323 return err;
6326 static const struct got_error *
6327 rebase_commit(struct got_object_id **new_commit_id,
6328 struct got_pathlist_head *merged_paths, struct got_reference *commit_ref,
6329 struct got_worktree *worktree, struct got_fileindex *fileindex,
6330 struct got_reference *tmp_branch, struct got_commit_object *orig_commit,
6331 const char *new_logmsg, struct got_repository *repo)
6333 const struct got_error *err, *sync_err;
6334 struct got_pathlist_head commitable_paths;
6335 struct collect_commitables_arg cc_arg;
6336 char *fileindex_path = NULL;
6337 struct got_reference *head_ref = NULL;
6338 struct got_object_id *head_commit_id = NULL;
6339 char *logmsg = NULL;
6341 TAILQ_INIT(&commitable_paths);
6342 *new_commit_id = NULL;
6344 /* Work tree is locked/unlocked during rebase preparation/teardown. */
6346 err = get_fileindex_path(&fileindex_path, worktree);
6347 if (err)
6348 return err;
6350 cc_arg.commitable_paths = &commitable_paths;
6351 cc_arg.worktree = worktree;
6352 cc_arg.repo = repo;
6353 cc_arg.have_staged_files = 0;
6355 * If possible get the status of individual files directly to
6356 * avoid crawling the entire work tree once per rebased commit.
6358 * Ideally, merged_paths would contain a list of commitables
6359 * we could use so we could skip worktree_status() entirely.
6360 * However, we would then need carefully keep track of cumulative
6361 * effects of operations such as file additions and deletions
6362 * in 'got histedit -f' (folding multiple commits into one),
6363 * and this extra complexity is not really worth it.
6365 if (merged_paths) {
6366 struct got_pathlist_entry *pe;
6367 TAILQ_FOREACH(pe, merged_paths, entry) {
6368 err = worktree_status(worktree, pe->path, fileindex,
6369 repo, collect_commitables, &cc_arg, NULL, NULL, 1,
6370 0);
6371 if (err)
6372 goto done;
6374 } else {
6375 err = worktree_status(worktree, "", fileindex, repo,
6376 collect_commitables, &cc_arg, NULL, NULL, 1, 0);
6377 if (err)
6378 goto done;
6381 if (TAILQ_EMPTY(&commitable_paths)) {
6382 /* No-op change; commit will be elided. */
6383 err = got_ref_delete(commit_ref, repo);
6384 if (err)
6385 goto done;
6386 err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
6387 goto done;
6390 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
6391 if (err)
6392 goto done;
6394 err = got_ref_resolve(&head_commit_id, repo, head_ref);
6395 if (err)
6396 goto done;
6398 if (new_logmsg) {
6399 logmsg = strdup(new_logmsg);
6400 if (logmsg == NULL) {
6401 err = got_error_from_errno("strdup");
6402 goto done;
6404 } else {
6405 err = got_object_commit_get_logmsg(&logmsg, orig_commit);
6406 if (err)
6407 goto done;
6410 /* NB: commit_worktree will call free(logmsg) */
6411 err = commit_worktree(new_commit_id, &commitable_paths, head_commit_id,
6412 NULL, worktree, got_object_commit_get_author(orig_commit),
6413 got_object_commit_get_committer(orig_commit),
6414 collect_rebase_commit_msg, logmsg, rebase_status, NULL, repo);
6415 if (err)
6416 goto done;
6418 err = got_ref_change_ref(tmp_branch, *new_commit_id);
6419 if (err)
6420 goto done;
6422 err = got_ref_delete(commit_ref, repo);
6423 if (err)
6424 goto done;
6426 err = update_fileindex_after_commit(worktree, &commitable_paths,
6427 *new_commit_id, fileindex, 0);
6428 sync_err = sync_fileindex(fileindex, fileindex_path);
6429 if (sync_err && err == NULL)
6430 err = sync_err;
6431 done:
6432 free(fileindex_path);
6433 free(head_commit_id);
6434 if (head_ref)
6435 got_ref_close(head_ref);
6436 if (err) {
6437 free(*new_commit_id);
6438 *new_commit_id = NULL;
6440 return err;
6443 const struct got_error *
6444 got_worktree_rebase_commit(struct got_object_id **new_commit_id,
6445 struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6446 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6447 struct got_commit_object *orig_commit,
6448 struct got_object_id *orig_commit_id, struct got_repository *repo)
6450 const struct got_error *err;
6451 char *commit_ref_name;
6452 struct got_reference *commit_ref = NULL;
6453 struct got_object_id *commit_id = NULL;
6455 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6456 if (err)
6457 return err;
6459 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6460 if (err)
6461 goto done;
6462 err = got_ref_resolve(&commit_id, repo, commit_ref);
6463 if (err)
6464 goto done;
6465 if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
6466 err = got_error(GOT_ERR_REBASE_COMMITID);
6467 goto done;
6470 err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6471 worktree, fileindex, tmp_branch, orig_commit, NULL, repo);
6472 done:
6473 if (commit_ref)
6474 got_ref_close(commit_ref);
6475 free(commit_ref_name);
6476 free(commit_id);
6477 return err;
6480 const struct got_error *
6481 got_worktree_histedit_commit(struct got_object_id **new_commit_id,
6482 struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
6483 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6484 struct got_commit_object *orig_commit,
6485 struct got_object_id *orig_commit_id, const char *new_logmsg,
6486 struct got_repository *repo)
6488 const struct got_error *err;
6489 char *commit_ref_name;
6490 struct got_reference *commit_ref = NULL;
6492 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6493 if (err)
6494 return err;
6496 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6497 if (err)
6498 goto done;
6500 err = rebase_commit(new_commit_id, merged_paths, commit_ref,
6501 worktree, fileindex, tmp_branch, orig_commit, new_logmsg, repo);
6502 done:
6503 if (commit_ref)
6504 got_ref_close(commit_ref);
6505 free(commit_ref_name);
6506 return err;
6509 const struct got_error *
6510 got_worktree_rebase_postpone(struct got_worktree *worktree,
6511 struct got_fileindex *fileindex)
6513 if (fileindex)
6514 got_fileindex_free(fileindex);
6515 return lock_worktree(worktree, LOCK_SH);
6518 static const struct got_error *
6519 delete_ref(const char *name, struct got_repository *repo)
6521 const struct got_error *err;
6522 struct got_reference *ref;
6524 err = got_ref_open(&ref, repo, name, 0);
6525 if (err) {
6526 if (err->code == GOT_ERR_NOT_REF)
6527 return NULL;
6528 return err;
6531 err = got_ref_delete(ref, repo);
6532 got_ref_close(ref);
6533 return err;
6536 static const struct got_error *
6537 delete_rebase_refs(struct got_worktree *worktree, struct got_repository *repo)
6539 const struct got_error *err;
6540 char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
6541 char *branch_ref_name = NULL, *commit_ref_name = NULL;
6543 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
6544 if (err)
6545 goto done;
6546 err = delete_ref(tmp_branch_name, repo);
6547 if (err)
6548 goto done;
6550 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
6551 if (err)
6552 goto done;
6553 err = delete_ref(new_base_branch_ref_name, repo);
6554 if (err)
6555 goto done;
6557 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
6558 if (err)
6559 goto done;
6560 err = delete_ref(branch_ref_name, repo);
6561 if (err)
6562 goto done;
6564 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
6565 if (err)
6566 goto done;
6567 err = delete_ref(commit_ref_name, repo);
6568 if (err)
6569 goto done;
6571 done:
6572 free(tmp_branch_name);
6573 free(new_base_branch_ref_name);
6574 free(branch_ref_name);
6575 free(commit_ref_name);
6576 return err;
6579 const struct got_error *
6580 create_backup_ref(const char *backup_ref_prefix, struct got_reference *branch,
6581 struct got_object_id *new_commit_id, struct got_repository *repo)
6583 const struct got_error *err;
6584 struct got_reference *ref = NULL;
6585 struct got_object_id *old_commit_id = NULL;
6586 const char *branch_name = NULL;
6587 char *new_id_str = NULL;
6588 char *refname = NULL;
6590 branch_name = got_ref_get_name(branch);
6591 if (strncmp(branch_name, "refs/heads/", 11) != 0)
6592 return got_error(GOT_ERR_BAD_REF_NAME); /* should not happen */
6593 branch_name += 11;
6595 err = got_object_id_str(&new_id_str, new_commit_id);
6596 if (err)
6597 return err;
6599 if (asprintf(&refname, "%s/%s/%s", backup_ref_prefix, branch_name,
6600 new_id_str) == -1) {
6601 err = got_error_from_errno("asprintf");
6602 goto done;
6605 err = got_ref_resolve(&old_commit_id, repo, branch);
6606 if (err)
6607 goto done;
6609 err = got_ref_alloc(&ref, refname, old_commit_id);
6610 if (err)
6611 goto done;
6613 err = got_ref_write(ref, repo);
6614 done:
6615 free(new_id_str);
6616 free(refname);
6617 free(old_commit_id);
6618 if (ref)
6619 got_ref_close(ref);
6620 return err;
6623 const struct got_error *
6624 got_worktree_rebase_complete(struct got_worktree *worktree,
6625 struct got_fileindex *fileindex, struct got_reference *new_base_branch,
6626 struct got_reference *tmp_branch, struct got_reference *rebased_branch,
6627 struct got_repository *repo, int create_backup)
6629 const struct got_error *err, *unlockerr, *sync_err;
6630 struct got_object_id *new_head_commit_id = NULL;
6631 char *fileindex_path = NULL;
6633 err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
6634 if (err)
6635 return err;
6637 if (create_backup) {
6638 err = create_backup_ref(GOT_WORKTREE_REBASE_BACKUP_REF_PREFIX,
6639 rebased_branch, new_head_commit_id, repo);
6640 if (err)
6641 goto done;
6644 err = got_ref_change_ref(rebased_branch, new_head_commit_id);
6645 if (err)
6646 goto done;
6648 err = got_ref_write(rebased_branch, repo);
6649 if (err)
6650 goto done;
6652 err = got_worktree_set_head_ref(worktree, rebased_branch);
6653 if (err)
6654 goto done;
6656 err = delete_rebase_refs(worktree, repo);
6657 if (err)
6658 goto done;
6660 err = get_fileindex_path(&fileindex_path, worktree);
6661 if (err)
6662 goto done;
6663 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
6664 sync_err = sync_fileindex(fileindex, fileindex_path);
6665 if (sync_err && err == NULL)
6666 err = sync_err;
6667 done:
6668 got_fileindex_free(fileindex);
6669 free(fileindex_path);
6670 free(new_head_commit_id);
6671 unlockerr = lock_worktree(worktree, LOCK_SH);
6672 if (unlockerr && err == NULL)
6673 err = unlockerr;
6674 return err;
6677 const struct got_error *
6678 got_worktree_rebase_abort(struct got_worktree *worktree,
6679 struct got_fileindex *fileindex, struct got_repository *repo,
6680 struct got_reference *new_base_branch,
6681 got_worktree_checkout_cb progress_cb, void *progress_arg)
6683 const struct got_error *err, *unlockerr, *sync_err;
6684 struct got_reference *resolved = NULL;
6685 struct got_object_id *commit_id = NULL;
6686 char *fileindex_path = NULL;
6687 struct revert_file_args rfa;
6688 struct got_object_id *tree_id = NULL;
6690 err = lock_worktree(worktree, LOCK_EX);
6691 if (err)
6692 return err;
6694 err = got_ref_open(&resolved, repo,
6695 got_ref_get_symref_target(new_base_branch), 0);
6696 if (err)
6697 goto done;
6699 err = got_worktree_set_head_ref(worktree, resolved);
6700 if (err)
6701 goto done;
6704 * XXX commits to the base branch could have happened while
6705 * we were busy rebasing; should we store the original commit ID
6706 * when rebase begins and read it back here?
6708 err = got_ref_resolve(&commit_id, repo, resolved);
6709 if (err)
6710 goto done;
6712 err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
6713 if (err)
6714 goto done;
6716 err = got_object_id_by_path(&tree_id, repo,
6717 worktree->base_commit_id, worktree->path_prefix);
6718 if (err)
6719 goto done;
6721 err = delete_rebase_refs(worktree, repo);
6722 if (err)
6723 goto done;
6725 err = get_fileindex_path(&fileindex_path, worktree);
6726 if (err)
6727 goto done;
6729 rfa.worktree = worktree;
6730 rfa.fileindex = fileindex;
6731 rfa.progress_cb = progress_cb;
6732 rfa.progress_arg = progress_arg;
6733 rfa.patch_cb = NULL;
6734 rfa.patch_arg = NULL;
6735 rfa.repo = repo;
6736 rfa.unlink_added_files = 0;
6737 err = worktree_status(worktree, "", fileindex, repo,
6738 revert_file, &rfa, NULL, NULL, 1, 0);
6739 if (err)
6740 goto sync;
6742 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
6743 repo, progress_cb, progress_arg, NULL, NULL);
6744 sync:
6745 sync_err = sync_fileindex(fileindex, fileindex_path);
6746 if (sync_err && err == NULL)
6747 err = sync_err;
6748 done:
6749 got_ref_close(resolved);
6750 free(tree_id);
6751 free(commit_id);
6752 if (fileindex)
6753 got_fileindex_free(fileindex);
6754 free(fileindex_path);
6756 unlockerr = lock_worktree(worktree, LOCK_SH);
6757 if (unlockerr && err == NULL)
6758 err = unlockerr;
6759 return err;
6762 const struct got_error *
6763 got_worktree_histedit_prepare(struct got_reference **tmp_branch,
6764 struct got_reference **branch_ref, struct got_object_id **base_commit_id,
6765 struct got_fileindex **fileindex, struct got_worktree *worktree,
6766 struct got_repository *repo)
6768 const struct got_error *err = NULL;
6769 char *tmp_branch_name = NULL;
6770 char *branch_ref_name = NULL;
6771 char *base_commit_ref_name = NULL;
6772 char *fileindex_path = NULL;
6773 struct check_rebase_ok_arg ok_arg;
6774 struct got_reference *wt_branch = NULL;
6775 struct got_reference *base_commit_ref = NULL;
6777 *tmp_branch = NULL;
6778 *branch_ref = NULL;
6779 *base_commit_id = NULL;
6780 *fileindex = NULL;
6782 err = lock_worktree(worktree, LOCK_EX);
6783 if (err)
6784 return err;
6786 err = open_fileindex(fileindex, &fileindex_path, worktree);
6787 if (err)
6788 goto done;
6790 ok_arg.worktree = worktree;
6791 ok_arg.repo = repo;
6792 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
6793 &ok_arg);
6794 if (err)
6795 goto done;
6797 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6798 if (err)
6799 goto done;
6801 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6802 if (err)
6803 goto done;
6805 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6806 worktree);
6807 if (err)
6808 goto done;
6810 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
6811 0);
6812 if (err)
6813 goto done;
6815 err = got_ref_alloc_symref(branch_ref, branch_ref_name, wt_branch);
6816 if (err)
6817 goto done;
6819 err = got_ref_write(*branch_ref, repo);
6820 if (err)
6821 goto done;
6823 err = got_ref_alloc(&base_commit_ref, base_commit_ref_name,
6824 worktree->base_commit_id);
6825 if (err)
6826 goto done;
6827 err = got_ref_write(base_commit_ref, repo);
6828 if (err)
6829 goto done;
6830 *base_commit_id = got_object_id_dup(worktree->base_commit_id);
6831 if (*base_commit_id == NULL) {
6832 err = got_error_from_errno("got_object_id_dup");
6833 goto done;
6836 err = got_ref_alloc(tmp_branch, tmp_branch_name,
6837 worktree->base_commit_id);
6838 if (err)
6839 goto done;
6840 err = got_ref_write(*tmp_branch, repo);
6841 if (err)
6842 goto done;
6844 err = got_worktree_set_head_ref(worktree, *tmp_branch);
6845 if (err)
6846 goto done;
6847 done:
6848 free(fileindex_path);
6849 free(tmp_branch_name);
6850 free(branch_ref_name);
6851 free(base_commit_ref_name);
6852 if (wt_branch)
6853 got_ref_close(wt_branch);
6854 if (err) {
6855 if (*branch_ref) {
6856 got_ref_close(*branch_ref);
6857 *branch_ref = NULL;
6859 if (*tmp_branch) {
6860 got_ref_close(*tmp_branch);
6861 *tmp_branch = NULL;
6863 free(*base_commit_id);
6864 if (*fileindex) {
6865 got_fileindex_free(*fileindex);
6866 *fileindex = NULL;
6868 lock_worktree(worktree, LOCK_SH);
6870 return err;
6873 const struct got_error *
6874 got_worktree_histedit_postpone(struct got_worktree *worktree,
6875 struct got_fileindex *fileindex)
6877 if (fileindex)
6878 got_fileindex_free(fileindex);
6879 return lock_worktree(worktree, LOCK_SH);
6882 const struct got_error *
6883 got_worktree_histedit_in_progress(int *in_progress,
6884 struct got_worktree *worktree)
6886 const struct got_error *err;
6887 char *tmp_branch_name = NULL;
6889 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6890 if (err)
6891 return err;
6893 *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
6894 free(tmp_branch_name);
6895 return NULL;
6898 const struct got_error *
6899 got_worktree_histedit_continue(struct got_object_id **commit_id,
6900 struct got_reference **tmp_branch, struct got_reference **branch_ref,
6901 struct got_object_id **base_commit_id, struct got_fileindex **fileindex,
6902 struct got_worktree *worktree, struct got_repository *repo)
6904 const struct got_error *err;
6905 char *commit_ref_name = NULL, *base_commit_ref_name = NULL;
6906 char *tmp_branch_name = NULL, *branch_ref_name = NULL;
6907 struct got_reference *commit_ref = NULL;
6908 struct got_reference *base_commit_ref = NULL;
6909 char *fileindex_path = NULL;
6910 int have_staged_files = 0;
6912 *commit_id = NULL;
6913 *tmp_branch = NULL;
6914 *base_commit_id = NULL;
6915 *fileindex = NULL;
6917 err = lock_worktree(worktree, LOCK_EX);
6918 if (err)
6919 return err;
6921 err = open_fileindex(fileindex, &fileindex_path, worktree);
6922 if (err)
6923 goto done;
6925 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
6926 &have_staged_files);
6927 if (err && err->code != GOT_ERR_CANCELLED)
6928 goto done;
6929 if (have_staged_files) {
6930 err = got_error(GOT_ERR_STAGED_PATHS);
6931 goto done;
6934 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
6935 if (err)
6936 goto done;
6938 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
6939 if (err)
6940 goto done;
6942 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
6943 if (err)
6944 goto done;
6946 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
6947 worktree);
6948 if (err)
6949 goto done;
6951 err = got_ref_open(branch_ref, repo, branch_ref_name, 0);
6952 if (err)
6953 goto done;
6955 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
6956 if (err)
6957 goto done;
6958 err = got_ref_resolve(commit_id, repo, commit_ref);
6959 if (err)
6960 goto done;
6962 err = got_ref_open(&base_commit_ref, repo, base_commit_ref_name, 0);
6963 if (err)
6964 goto done;
6965 err = got_ref_resolve(base_commit_id, repo, base_commit_ref);
6966 if (err)
6967 goto done;
6969 err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
6970 if (err)
6971 goto done;
6972 done:
6973 free(commit_ref_name);
6974 free(branch_ref_name);
6975 free(fileindex_path);
6976 if (commit_ref)
6977 got_ref_close(commit_ref);
6978 if (base_commit_ref)
6979 got_ref_close(base_commit_ref);
6980 if (err) {
6981 free(*commit_id);
6982 *commit_id = NULL;
6983 free(*base_commit_id);
6984 *base_commit_id = NULL;
6985 if (*tmp_branch) {
6986 got_ref_close(*tmp_branch);
6987 *tmp_branch = NULL;
6989 if (*fileindex) {
6990 got_fileindex_free(*fileindex);
6991 *fileindex = NULL;
6993 lock_worktree(worktree, LOCK_EX);
6995 return err;
6998 static const struct got_error *
6999 delete_histedit_refs(struct got_worktree *worktree, struct got_repository *repo)
7001 const struct got_error *err;
7002 char *tmp_branch_name = NULL, *base_commit_ref_name = NULL;
7003 char *branch_ref_name = NULL, *commit_ref_name = NULL;
7005 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
7006 if (err)
7007 goto done;
7008 err = delete_ref(tmp_branch_name, repo);
7009 if (err)
7010 goto done;
7012 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
7013 worktree);
7014 if (err)
7015 goto done;
7016 err = delete_ref(base_commit_ref_name, repo);
7017 if (err)
7018 goto done;
7020 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
7021 if (err)
7022 goto done;
7023 err = delete_ref(branch_ref_name, repo);
7024 if (err)
7025 goto done;
7027 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
7028 if (err)
7029 goto done;
7030 err = delete_ref(commit_ref_name, repo);
7031 if (err)
7032 goto done;
7033 done:
7034 free(tmp_branch_name);
7035 free(base_commit_ref_name);
7036 free(branch_ref_name);
7037 free(commit_ref_name);
7038 return err;
7041 const struct got_error *
7042 got_worktree_histedit_abort(struct got_worktree *worktree,
7043 struct got_fileindex *fileindex, struct got_repository *repo,
7044 struct got_reference *branch, struct got_object_id *base_commit_id,
7045 got_worktree_checkout_cb progress_cb, void *progress_arg)
7047 const struct got_error *err, *unlockerr, *sync_err;
7048 struct got_reference *resolved = NULL;
7049 char *fileindex_path = NULL;
7050 struct got_object_id *tree_id = NULL;
7051 struct revert_file_args rfa;
7053 err = lock_worktree(worktree, LOCK_EX);
7054 if (err)
7055 return err;
7057 err = got_ref_open(&resolved, repo,
7058 got_ref_get_symref_target(branch), 0);
7059 if (err)
7060 goto done;
7062 err = got_worktree_set_head_ref(worktree, resolved);
7063 if (err)
7064 goto done;
7066 err = got_worktree_set_base_commit_id(worktree, repo, base_commit_id);
7067 if (err)
7068 goto done;
7070 err = got_object_id_by_path(&tree_id, repo, base_commit_id,
7071 worktree->path_prefix);
7072 if (err)
7073 goto done;
7075 err = delete_histedit_refs(worktree, repo);
7076 if (err)
7077 goto done;
7079 err = get_fileindex_path(&fileindex_path, worktree);
7080 if (err)
7081 goto done;
7083 rfa.worktree = worktree;
7084 rfa.fileindex = fileindex;
7085 rfa.progress_cb = progress_cb;
7086 rfa.progress_arg = progress_arg;
7087 rfa.patch_cb = NULL;
7088 rfa.patch_arg = NULL;
7089 rfa.repo = repo;
7090 rfa.unlink_added_files = 0;
7091 err = worktree_status(worktree, "", fileindex, repo,
7092 revert_file, &rfa, NULL, NULL, 1, 0);
7093 if (err)
7094 goto sync;
7096 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
7097 repo, progress_cb, progress_arg, NULL, NULL);
7098 sync:
7099 sync_err = sync_fileindex(fileindex, fileindex_path);
7100 if (sync_err && err == NULL)
7101 err = sync_err;
7102 done:
7103 got_ref_close(resolved);
7104 free(tree_id);
7105 free(fileindex_path);
7107 unlockerr = lock_worktree(worktree, LOCK_SH);
7108 if (unlockerr && err == NULL)
7109 err = unlockerr;
7110 return err;
7113 const struct got_error *
7114 got_worktree_histedit_complete(struct got_worktree *worktree,
7115 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
7116 struct got_reference *edited_branch, struct got_repository *repo)
7118 const struct got_error *err, *unlockerr, *sync_err;
7119 struct got_object_id *new_head_commit_id = NULL;
7120 struct got_reference *resolved = NULL;
7121 char *fileindex_path = NULL;
7123 err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
7124 if (err)
7125 return err;
7127 err = got_ref_open(&resolved, repo,
7128 got_ref_get_symref_target(edited_branch), 0);
7129 if (err)
7130 goto done;
7132 err = create_backup_ref(GOT_WORKTREE_HISTEDIT_BACKUP_REF_PREFIX,
7133 resolved, new_head_commit_id, repo);
7134 if (err)
7135 goto done;
7137 err = got_ref_change_ref(resolved, new_head_commit_id);
7138 if (err)
7139 goto done;
7141 err = got_ref_write(resolved, repo);
7142 if (err)
7143 goto done;
7145 err = got_worktree_set_head_ref(worktree, resolved);
7146 if (err)
7147 goto done;
7149 err = delete_histedit_refs(worktree, repo);
7150 if (err)
7151 goto done;
7153 err = get_fileindex_path(&fileindex_path, worktree);
7154 if (err)
7155 goto done;
7156 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7157 sync_err = sync_fileindex(fileindex, fileindex_path);
7158 if (sync_err && err == NULL)
7159 err = sync_err;
7160 done:
7161 got_fileindex_free(fileindex);
7162 free(fileindex_path);
7163 free(new_head_commit_id);
7164 unlockerr = lock_worktree(worktree, LOCK_SH);
7165 if (unlockerr && err == NULL)
7166 err = unlockerr;
7167 return err;
7170 const struct got_error *
7171 got_worktree_histedit_skip_commit(struct got_worktree *worktree,
7172 struct got_object_id *commit_id, struct got_repository *repo)
7174 const struct got_error *err;
7175 char *commit_ref_name;
7177 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
7178 if (err)
7179 return err;
7181 err = store_commit_id(commit_ref_name, commit_id, 0, repo);
7182 if (err)
7183 goto done;
7185 err = delete_ref(commit_ref_name, repo);
7186 done:
7187 free(commit_ref_name);
7188 return err;
7191 const struct got_error *
7192 got_worktree_integrate_prepare(struct got_fileindex **fileindex,
7193 struct got_reference **branch_ref, struct got_reference **base_branch_ref,
7194 struct got_worktree *worktree, const char *refname,
7195 struct got_repository *repo)
7197 const struct got_error *err = NULL;
7198 char *fileindex_path = NULL;
7199 struct check_rebase_ok_arg ok_arg;
7201 *fileindex = NULL;
7202 *branch_ref = NULL;
7203 *base_branch_ref = NULL;
7205 err = lock_worktree(worktree, LOCK_EX);
7206 if (err)
7207 return err;
7209 if (strcmp(refname, got_worktree_get_head_ref_name(worktree)) == 0) {
7210 err = got_error_msg(GOT_ERR_SAME_BRANCH,
7211 "cannot integrate a branch into itself; "
7212 "update -b or different branch name required");
7213 goto done;
7216 err = open_fileindex(fileindex, &fileindex_path, worktree);
7217 if (err)
7218 goto done;
7220 /* Preconditions are the same as for rebase. */
7221 ok_arg.worktree = worktree;
7222 ok_arg.repo = repo;
7223 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
7224 &ok_arg);
7225 if (err)
7226 goto done;
7228 err = got_ref_open(branch_ref, repo, refname, 1);
7229 if (err)
7230 goto done;
7232 err = got_ref_open(base_branch_ref, repo,
7233 got_worktree_get_head_ref_name(worktree), 1);
7234 done:
7235 if (err) {
7236 if (*branch_ref) {
7237 got_ref_close(*branch_ref);
7238 *branch_ref = NULL;
7240 if (*base_branch_ref) {
7241 got_ref_close(*base_branch_ref);
7242 *base_branch_ref = NULL;
7244 if (*fileindex) {
7245 got_fileindex_free(*fileindex);
7246 *fileindex = NULL;
7248 lock_worktree(worktree, LOCK_SH);
7250 return err;
7253 const struct got_error *
7254 got_worktree_integrate_continue(struct got_worktree *worktree,
7255 struct got_fileindex *fileindex, struct got_repository *repo,
7256 struct got_reference *branch_ref, struct got_reference *base_branch_ref,
7257 got_worktree_checkout_cb progress_cb, void *progress_arg,
7258 got_cancel_cb cancel_cb, void *cancel_arg)
7260 const struct got_error *err = NULL, *sync_err, *unlockerr;
7261 char *fileindex_path = NULL;
7262 struct got_object_id *tree_id = NULL, *commit_id = NULL;
7264 err = get_fileindex_path(&fileindex_path, worktree);
7265 if (err)
7266 goto done;
7268 err = got_ref_resolve(&commit_id, repo, branch_ref);
7269 if (err)
7270 goto done;
7272 err = got_object_id_by_path(&tree_id, repo, commit_id,
7273 worktree->path_prefix);
7274 if (err)
7275 goto done;
7277 err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
7278 if (err)
7279 goto done;
7281 err = checkout_files(worktree, fileindex, "", tree_id, NULL, repo,
7282 progress_cb, progress_arg, cancel_cb, cancel_arg);
7283 if (err)
7284 goto sync;
7286 err = got_ref_change_ref(base_branch_ref, commit_id);
7287 if (err)
7288 goto sync;
7290 err = got_ref_write(base_branch_ref, repo);
7291 if (err)
7292 goto sync;
7294 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7295 sync:
7296 sync_err = sync_fileindex(fileindex, fileindex_path);
7297 if (sync_err && err == NULL)
7298 err = sync_err;
7300 done:
7301 unlockerr = got_ref_unlock(branch_ref);
7302 if (unlockerr && err == NULL)
7303 err = unlockerr;
7304 got_ref_close(branch_ref);
7306 unlockerr = got_ref_unlock(base_branch_ref);
7307 if (unlockerr && err == NULL)
7308 err = unlockerr;
7309 got_ref_close(base_branch_ref);
7311 got_fileindex_free(fileindex);
7312 free(fileindex_path);
7313 free(tree_id);
7315 unlockerr = lock_worktree(worktree, LOCK_SH);
7316 if (unlockerr && err == NULL)
7317 err = unlockerr;
7318 return err;
7321 const struct got_error *
7322 got_worktree_integrate_abort(struct got_worktree *worktree,
7323 struct got_fileindex *fileindex, struct got_repository *repo,
7324 struct got_reference *branch_ref, struct got_reference *base_branch_ref)
7326 const struct got_error *err = NULL, *unlockerr = NULL;
7328 got_fileindex_free(fileindex);
7330 err = lock_worktree(worktree, LOCK_SH);
7332 unlockerr = got_ref_unlock(branch_ref);
7333 if (unlockerr && err == NULL)
7334 err = unlockerr;
7335 got_ref_close(branch_ref);
7337 unlockerr = got_ref_unlock(base_branch_ref);
7338 if (unlockerr && err == NULL)
7339 err = unlockerr;
7340 got_ref_close(base_branch_ref);
7342 return err;
7345 const struct got_error *
7346 got_worktree_merge_postpone(struct got_worktree *worktree,
7347 struct got_fileindex *fileindex)
7349 const struct got_error *err, *sync_err;
7350 char *fileindex_path = NULL;
7352 err = get_fileindex_path(&fileindex_path, worktree);
7353 if (err)
7354 goto done;
7356 sync_err = sync_fileindex(fileindex, fileindex_path);
7358 err = lock_worktree(worktree, LOCK_SH);
7359 if (sync_err && err == NULL)
7360 err = sync_err;
7361 done:
7362 got_fileindex_free(fileindex);
7363 free(fileindex_path);
7364 return err;
7367 static const struct got_error *
7368 delete_merge_refs(struct got_worktree *worktree, struct got_repository *repo)
7370 const struct got_error *err;
7371 char *branch_refname = NULL, *commit_refname = NULL;
7373 err = get_merge_branch_ref_name(&branch_refname, worktree);
7374 if (err)
7375 goto done;
7376 err = delete_ref(branch_refname, repo);
7377 if (err)
7378 goto done;
7380 err = get_merge_commit_ref_name(&commit_refname, worktree);
7381 if (err)
7382 goto done;
7383 err = delete_ref(commit_refname, repo);
7384 if (err)
7385 goto done;
7387 done:
7388 free(branch_refname);
7389 free(commit_refname);
7390 return err;
7393 struct merge_commit_msg_arg {
7394 struct got_worktree *worktree;
7395 const char *branch_name;
7398 static const struct got_error *
7399 merge_commit_msg_cb(struct got_pathlist_head *commitable_paths, char **logmsg,
7400 void *arg)
7402 struct merge_commit_msg_arg *a = arg;
7404 if (asprintf(logmsg, "merge %s into %s\n", a->branch_name,
7405 got_worktree_get_head_ref_name(a->worktree)) == -1)
7406 return got_error_from_errno("asprintf");
7408 return NULL;
7412 const struct got_error *
7413 got_worktree_merge_branch(struct got_worktree *worktree,
7414 struct got_fileindex *fileindex,
7415 struct got_object_id *yca_commit_id,
7416 struct got_object_id *branch_tip,
7417 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
7418 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
7420 const struct got_error *err;
7421 char *fileindex_path = NULL;
7423 err = get_fileindex_path(&fileindex_path, worktree);
7424 if (err)
7425 goto done;
7427 err = got_fileindex_for_each_entry_safe(fileindex, check_mixed_commits,
7428 worktree);
7429 if (err)
7430 goto done;
7432 err = merge_files(worktree, fileindex, fileindex_path, yca_commit_id,
7433 branch_tip, repo, progress_cb, progress_arg,
7434 cancel_cb, cancel_arg);
7435 done:
7436 free(fileindex_path);
7437 return err;
7440 const struct got_error *
7441 got_worktree_merge_commit(struct got_object_id **new_commit_id,
7442 struct got_worktree *worktree, struct got_fileindex *fileindex,
7443 const char *author, const char *committer, int allow_bad_symlinks,
7444 struct got_object_id *branch_tip, const char *branch_name,
7445 struct got_repository *repo,
7446 got_worktree_status_cb status_cb, void *status_arg)
7449 const struct got_error *err = NULL, *sync_err;
7450 struct got_pathlist_head commitable_paths;
7451 struct collect_commitables_arg cc_arg;
7452 struct got_pathlist_entry *pe;
7453 struct got_reference *head_ref = NULL;
7454 struct got_object_id *head_commit_id = NULL;
7455 int have_staged_files = 0;
7456 struct merge_commit_msg_arg mcm_arg;
7457 char *fileindex_path = NULL;
7459 *new_commit_id = NULL;
7461 TAILQ_INIT(&commitable_paths);
7463 err = get_fileindex_path(&fileindex_path, worktree);
7464 if (err)
7465 goto done;
7467 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
7468 if (err)
7469 goto done;
7471 err = got_ref_resolve(&head_commit_id, repo, head_ref);
7472 if (err)
7473 goto done;
7475 err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
7476 &have_staged_files);
7477 if (err && err->code != GOT_ERR_CANCELLED)
7478 goto done;
7479 if (have_staged_files) {
7480 err = got_error(GOT_ERR_MERGE_STAGED_PATHS);
7481 goto done;
7484 cc_arg.commitable_paths = &commitable_paths;
7485 cc_arg.worktree = worktree;
7486 cc_arg.fileindex = fileindex;
7487 cc_arg.repo = repo;
7488 cc_arg.have_staged_files = have_staged_files;
7489 cc_arg.allow_bad_symlinks = allow_bad_symlinks;
7490 err = worktree_status(worktree, "", fileindex, repo,
7491 collect_commitables, &cc_arg, NULL, NULL, 1, 0);
7492 if (err)
7493 goto done;
7495 if (TAILQ_EMPTY(&commitable_paths)) {
7496 err = got_error_fmt(GOT_ERR_COMMIT_NO_CHANGES,
7497 "merge of %s cannot proceed", branch_name);
7498 goto done;
7501 TAILQ_FOREACH(pe, &commitable_paths, entry) {
7502 struct got_commitable *ct = pe->data;
7503 const char *ct_path = ct->in_repo_path;
7505 while (ct_path[0] == '/')
7506 ct_path++;
7507 err = check_out_of_date(ct_path, ct->status,
7508 ct->staged_status, ct->base_blob_id, ct->base_commit_id,
7509 head_commit_id, repo, GOT_ERR_MERGE_COMMIT_OUT_OF_DATE);
7510 if (err)
7511 goto done;
7515 mcm_arg.worktree = worktree;
7516 mcm_arg.branch_name = branch_name;
7517 err = commit_worktree(new_commit_id, &commitable_paths,
7518 head_commit_id, branch_tip, worktree, author, committer,
7519 merge_commit_msg_cb, &mcm_arg, status_cb, status_arg, repo);
7520 if (err)
7521 goto done;
7523 err = update_fileindex_after_commit(worktree, &commitable_paths,
7524 *new_commit_id, fileindex, have_staged_files);
7525 sync_err = sync_fileindex(fileindex, fileindex_path);
7526 if (sync_err && err == NULL)
7527 err = sync_err;
7528 done:
7529 TAILQ_FOREACH(pe, &commitable_paths, entry) {
7530 struct got_commitable *ct = pe->data;
7531 free_commitable(ct);
7533 got_pathlist_free(&commitable_paths);
7534 free(fileindex_path);
7535 return err;
7538 const struct got_error *
7539 got_worktree_merge_complete(struct got_worktree *worktree,
7540 struct got_fileindex *fileindex, struct got_repository *repo)
7542 const struct got_error *err, *unlockerr, *sync_err;
7543 char *fileindex_path = NULL;
7545 err = delete_merge_refs(worktree, repo);
7546 if (err)
7547 goto done;
7549 err = get_fileindex_path(&fileindex_path, worktree);
7550 if (err)
7551 goto done;
7552 err = bump_base_commit_id_everywhere(worktree, fileindex, NULL, NULL);
7553 sync_err = sync_fileindex(fileindex, fileindex_path);
7554 if (sync_err && err == NULL)
7555 err = sync_err;
7556 done:
7557 got_fileindex_free(fileindex);
7558 free(fileindex_path);
7559 unlockerr = lock_worktree(worktree, LOCK_SH);
7560 if (unlockerr && err == NULL)
7561 err = unlockerr;
7562 return err;
7565 const struct got_error *
7566 got_worktree_merge_in_progress(int *in_progress, struct got_worktree *worktree,
7567 struct got_repository *repo)
7569 const struct got_error *err;
7570 char *branch_refname = NULL;
7571 struct got_reference *branch_ref = NULL;
7573 *in_progress = 0;
7575 err = get_merge_branch_ref_name(&branch_refname, worktree);
7576 if (err)
7577 return err;
7578 err = got_ref_open(&branch_ref, repo, branch_refname, 0);
7579 free(branch_refname);
7580 if (err) {
7581 if (err->code != GOT_ERR_NOT_REF)
7582 return err;
7583 } else
7584 *in_progress = 1;
7586 return NULL;
7589 const struct got_error *got_worktree_merge_prepare(
7590 struct got_fileindex **fileindex, struct got_worktree *worktree,
7591 struct got_reference *branch, struct got_repository *repo)
7593 const struct got_error *err = NULL;
7594 char *fileindex_path = NULL;
7595 char *branch_refname = NULL, *commit_refname = NULL;
7596 struct got_reference *wt_branch = NULL, *branch_ref = NULL;
7597 struct got_reference *commit_ref = NULL;
7598 struct got_object_id *branch_tip = NULL, *wt_branch_tip = NULL;
7599 struct check_rebase_ok_arg ok_arg;
7601 *fileindex = NULL;
7603 err = lock_worktree(worktree, LOCK_EX);
7604 if (err)
7605 return err;
7607 err = open_fileindex(fileindex, &fileindex_path, worktree);
7608 if (err)
7609 goto done;
7611 /* Preconditions are the same as for rebase. */
7612 ok_arg.worktree = worktree;
7613 ok_arg.repo = repo;
7614 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
7615 &ok_arg);
7616 if (err)
7617 goto done;
7619 err = get_merge_branch_ref_name(&branch_refname, worktree);
7620 if (err)
7621 return err;
7623 err = get_merge_commit_ref_name(&commit_refname, worktree);
7624 if (err)
7625 return err;
7627 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
7628 0);
7629 if (err)
7630 goto done;
7632 err = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
7633 if (err)
7634 goto done;
7636 if (got_object_id_cmp(worktree->base_commit_id, wt_branch_tip) != 0) {
7637 err = got_error(GOT_ERR_MERGE_OUT_OF_DATE);
7638 goto done;
7641 err = got_ref_resolve(&branch_tip, repo, branch);
7642 if (err)
7643 goto done;
7645 err = got_ref_alloc_symref(&branch_ref, branch_refname, branch);
7646 if (err)
7647 goto done;
7648 err = got_ref_write(branch_ref, repo);
7649 if (err)
7650 goto done;
7652 err = got_ref_alloc(&commit_ref, commit_refname, branch_tip);
7653 if (err)
7654 goto done;
7655 err = got_ref_write(commit_ref, repo);
7656 if (err)
7657 goto done;
7659 done:
7660 free(branch_refname);
7661 free(commit_refname);
7662 free(fileindex_path);
7663 if (branch_ref)
7664 got_ref_close(branch_ref);
7665 if (commit_ref)
7666 got_ref_close(commit_ref);
7667 if (wt_branch)
7668 got_ref_close(wt_branch);
7669 free(wt_branch_tip);
7670 if (err) {
7671 if (*fileindex) {
7672 got_fileindex_free(*fileindex);
7673 *fileindex = NULL;
7675 lock_worktree(worktree, LOCK_SH);
7677 return err;
7680 const struct got_error *
7681 got_worktree_merge_continue(char **branch_name,
7682 struct got_object_id **branch_tip, struct got_fileindex **fileindex,
7683 struct got_worktree *worktree, struct got_repository *repo)
7685 const struct got_error *err;
7686 char *commit_refname = NULL, *branch_refname = NULL;
7687 struct got_reference *commit_ref = NULL, *branch_ref = NULL;
7688 char *fileindex_path = NULL;
7689 int have_staged_files = 0;
7691 *branch_name = NULL;
7692 *branch_tip = NULL;
7693 *fileindex = NULL;
7695 err = lock_worktree(worktree, LOCK_EX);
7696 if (err)
7697 return err;
7699 err = open_fileindex(fileindex, &fileindex_path, worktree);
7700 if (err)
7701 goto done;
7703 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
7704 &have_staged_files);
7705 if (err && err->code != GOT_ERR_CANCELLED)
7706 goto done;
7707 if (have_staged_files) {
7708 err = got_error(GOT_ERR_STAGED_PATHS);
7709 goto done;
7712 err = get_merge_branch_ref_name(&branch_refname, worktree);
7713 if (err)
7714 goto done;
7716 err = get_merge_commit_ref_name(&commit_refname, worktree);
7717 if (err)
7718 goto done;
7720 err = got_ref_open(&branch_ref, repo, branch_refname, 0);
7721 if (err)
7722 goto done;
7724 if (!got_ref_is_symbolic(branch_ref)) {
7725 err = got_error_fmt(GOT_ERR_BAD_REF_TYPE,
7726 "%s is not a symbolic reference",
7727 got_ref_get_name(branch_ref));
7728 goto done;
7730 *branch_name = strdup(got_ref_get_symref_target(branch_ref));
7731 if (*branch_name == NULL) {
7732 err = got_error_from_errno("strdup");
7733 goto done;
7736 err = got_ref_open(&commit_ref, repo, commit_refname, 0);
7737 if (err)
7738 goto done;
7740 err = got_ref_resolve(branch_tip, repo, commit_ref);
7741 if (err)
7742 goto done;
7743 done:
7744 free(commit_refname);
7745 free(branch_refname);
7746 free(fileindex_path);
7747 if (commit_ref)
7748 got_ref_close(commit_ref);
7749 if (branch_ref)
7750 got_ref_close(branch_ref);
7751 if (err) {
7752 if (*branch_name) {
7753 free(*branch_name);
7754 *branch_name = NULL;
7756 free(*branch_tip);
7757 *branch_tip = NULL;
7758 if (*fileindex) {
7759 got_fileindex_free(*fileindex);
7760 *fileindex = NULL;
7762 lock_worktree(worktree, LOCK_SH);
7764 return err;
7767 const struct got_error *
7768 got_worktree_merge_abort(struct got_worktree *worktree,
7769 struct got_fileindex *fileindex, struct got_repository *repo,
7770 got_worktree_checkout_cb progress_cb, void *progress_arg)
7772 const struct got_error *err, *unlockerr, *sync_err;
7773 struct got_object_id *commit_id = NULL;
7774 char *fileindex_path = NULL;
7775 struct revert_file_args rfa;
7776 struct got_object_id *tree_id = NULL;
7778 err = got_object_id_by_path(&tree_id, repo,
7779 worktree->base_commit_id, worktree->path_prefix);
7780 if (err)
7781 goto done;
7783 err = delete_merge_refs(worktree, repo);
7784 if (err)
7785 goto done;
7787 err = get_fileindex_path(&fileindex_path, worktree);
7788 if (err)
7789 goto done;
7791 rfa.worktree = worktree;
7792 rfa.fileindex = fileindex;
7793 rfa.progress_cb = progress_cb;
7794 rfa.progress_arg = progress_arg;
7795 rfa.patch_cb = NULL;
7796 rfa.patch_arg = NULL;
7797 rfa.repo = repo;
7798 rfa.unlink_added_files = 1;
7799 err = worktree_status(worktree, "", fileindex, repo,
7800 revert_file, &rfa, NULL, NULL, 1, 0);
7801 if (err)
7802 goto sync;
7804 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
7805 repo, progress_cb, progress_arg, NULL, NULL);
7806 sync:
7807 sync_err = sync_fileindex(fileindex, fileindex_path);
7808 if (sync_err && err == NULL)
7809 err = sync_err;
7810 done:
7811 free(tree_id);
7812 free(commit_id);
7813 if (fileindex)
7814 got_fileindex_free(fileindex);
7815 free(fileindex_path);
7817 unlockerr = lock_worktree(worktree, LOCK_SH);
7818 if (unlockerr && err == NULL)
7819 err = unlockerr;
7820 return err;
7823 struct check_stage_ok_arg {
7824 struct got_object_id *head_commit_id;
7825 struct got_worktree *worktree;
7826 struct got_fileindex *fileindex;
7827 struct got_repository *repo;
7828 int have_changes;
7831 const struct got_error *
7832 check_stage_ok(void *arg, unsigned char status,
7833 unsigned char staged_status, const char *relpath,
7834 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7835 struct got_object_id *commit_id, int dirfd, const char *de_name)
7837 struct check_stage_ok_arg *a = arg;
7838 const struct got_error *err = NULL;
7839 struct got_fileindex_entry *ie;
7840 struct got_object_id base_commit_id;
7841 struct got_object_id *base_commit_idp = NULL;
7842 char *in_repo_path = NULL, *p;
7844 if (status == GOT_STATUS_UNVERSIONED ||
7845 status == GOT_STATUS_NO_CHANGE)
7846 return NULL;
7847 if (status == GOT_STATUS_NONEXISTENT)
7848 return got_error_set_errno(ENOENT, relpath);
7850 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7851 if (ie == NULL)
7852 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7854 if (asprintf(&in_repo_path, "%s%s%s", a->worktree->path_prefix,
7855 got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
7856 relpath) == -1)
7857 return got_error_from_errno("asprintf");
7859 if (got_fileindex_entry_has_commit(ie)) {
7860 memcpy(base_commit_id.sha1, ie->commit_sha1,
7861 SHA1_DIGEST_LENGTH);
7862 base_commit_idp = &base_commit_id;
7865 if (status == GOT_STATUS_CONFLICT) {
7866 err = got_error_path(ie->path, GOT_ERR_STAGE_CONFLICT);
7867 goto done;
7868 } else if (status != GOT_STATUS_ADD &&
7869 status != GOT_STATUS_MODIFY &&
7870 status != GOT_STATUS_DELETE) {
7871 err = got_error_path(ie->path, GOT_ERR_FILE_STATUS);
7872 goto done;
7875 a->have_changes = 1;
7877 p = in_repo_path;
7878 while (p[0] == '/')
7879 p++;
7880 err = check_out_of_date(p, status, staged_status,
7881 blob_id, base_commit_idp, a->head_commit_id, a->repo,
7882 GOT_ERR_STAGE_OUT_OF_DATE);
7883 done:
7884 free(in_repo_path);
7885 return err;
7888 struct stage_path_arg {
7889 struct got_worktree *worktree;
7890 struct got_fileindex *fileindex;
7891 struct got_repository *repo;
7892 got_worktree_status_cb status_cb;
7893 void *status_arg;
7894 got_worktree_patch_cb patch_cb;
7895 void *patch_arg;
7896 int staged_something;
7897 int allow_bad_symlinks;
7900 static const struct got_error *
7901 stage_path(void *arg, unsigned char status,
7902 unsigned char staged_status, const char *relpath,
7903 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7904 struct got_object_id *commit_id, int dirfd, const char *de_name)
7906 struct stage_path_arg *a = arg;
7907 const struct got_error *err = NULL;
7908 struct got_fileindex_entry *ie;
7909 char *ondisk_path = NULL, *path_content = NULL;
7910 uint32_t stage;
7911 struct got_object_id *new_staged_blob_id = NULL;
7912 struct stat sb;
7914 if (status == GOT_STATUS_UNVERSIONED)
7915 return NULL;
7917 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
7918 if (ie == NULL)
7919 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
7921 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
7922 relpath)== -1)
7923 return got_error_from_errno("asprintf");
7925 switch (status) {
7926 case GOT_STATUS_ADD:
7927 case GOT_STATUS_MODIFY:
7928 /* XXX could sb.st_mode be passed in by our caller? */
7929 if (lstat(ondisk_path, &sb) == -1) {
7930 err = got_error_from_errno2("lstat", ondisk_path);
7931 break;
7933 if (a->patch_cb) {
7934 if (status == GOT_STATUS_ADD) {
7935 int choice = GOT_PATCH_CHOICE_NONE;
7936 err = (*a->patch_cb)(&choice, a->patch_arg,
7937 status, ie->path, NULL, 1, 1);
7938 if (err)
7939 break;
7940 if (choice != GOT_PATCH_CHOICE_YES)
7941 break;
7942 } else {
7943 err = create_patched_content(&path_content, 0,
7944 staged_blob_id ? staged_blob_id : blob_id,
7945 ondisk_path, dirfd, de_name, ie->path,
7946 a->repo, a->patch_cb, a->patch_arg);
7947 if (err || path_content == NULL)
7948 break;
7951 err = got_object_blob_create(&new_staged_blob_id,
7952 path_content ? path_content : ondisk_path, a->repo);
7953 if (err)
7954 break;
7955 memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
7956 SHA1_DIGEST_LENGTH);
7957 if (status == GOT_STATUS_ADD || staged_status == GOT_STATUS_ADD)
7958 stage = GOT_FILEIDX_STAGE_ADD;
7959 else
7960 stage = GOT_FILEIDX_STAGE_MODIFY;
7961 got_fileindex_entry_stage_set(ie, stage);
7962 if (S_ISLNK(sb.st_mode)) {
7963 int is_bad_symlink = 0;
7964 if (!a->allow_bad_symlinks) {
7965 char target_path[PATH_MAX];
7966 ssize_t target_len;
7967 target_len = readlink(ondisk_path, target_path,
7968 sizeof(target_path));
7969 if (target_len == -1) {
7970 err = got_error_from_errno2("readlink",
7971 ondisk_path);
7972 break;
7974 err = is_bad_symlink_target(&is_bad_symlink,
7975 target_path, target_len, ondisk_path,
7976 a->worktree->root_path);
7977 if (err)
7978 break;
7979 if (is_bad_symlink) {
7980 err = got_error_path(ondisk_path,
7981 GOT_ERR_BAD_SYMLINK);
7982 break;
7985 if (is_bad_symlink)
7986 got_fileindex_entry_staged_filetype_set(ie,
7987 GOT_FILEIDX_MODE_BAD_SYMLINK);
7988 else
7989 got_fileindex_entry_staged_filetype_set(ie,
7990 GOT_FILEIDX_MODE_SYMLINK);
7991 } else {
7992 got_fileindex_entry_staged_filetype_set(ie,
7993 GOT_FILEIDX_MODE_REGULAR_FILE);
7995 a->staged_something = 1;
7996 if (a->status_cb == NULL)
7997 break;
7998 err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
7999 get_staged_status(ie), relpath, blob_id,
8000 new_staged_blob_id, NULL, dirfd, de_name);
8001 break;
8002 case GOT_STATUS_DELETE:
8003 if (staged_status == GOT_STATUS_DELETE)
8004 break;
8005 if (a->patch_cb) {
8006 int choice = GOT_PATCH_CHOICE_NONE;
8007 err = (*a->patch_cb)(&choice, a->patch_arg, status,
8008 ie->path, NULL, 1, 1);
8009 if (err)
8010 break;
8011 if (choice == GOT_PATCH_CHOICE_NO)
8012 break;
8013 if (choice != GOT_PATCH_CHOICE_YES) {
8014 err = got_error(GOT_ERR_PATCH_CHOICE);
8015 break;
8018 stage = GOT_FILEIDX_STAGE_DELETE;
8019 got_fileindex_entry_stage_set(ie, stage);
8020 a->staged_something = 1;
8021 if (a->status_cb == NULL)
8022 break;
8023 err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
8024 get_staged_status(ie), relpath, NULL, NULL, NULL, dirfd,
8025 de_name);
8026 break;
8027 case GOT_STATUS_NO_CHANGE:
8028 break;
8029 case GOT_STATUS_CONFLICT:
8030 err = got_error_path(relpath, GOT_ERR_STAGE_CONFLICT);
8031 break;
8032 case GOT_STATUS_NONEXISTENT:
8033 err = got_error_set_errno(ENOENT, relpath);
8034 break;
8035 default:
8036 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
8037 break;
8040 if (path_content && unlink(path_content) == -1 && err == NULL)
8041 err = got_error_from_errno2("unlink", path_content);
8042 free(path_content);
8043 free(ondisk_path);
8044 free(new_staged_blob_id);
8045 return err;
8048 const struct got_error *
8049 got_worktree_stage(struct got_worktree *worktree,
8050 struct got_pathlist_head *paths,
8051 got_worktree_status_cb status_cb, void *status_arg,
8052 got_worktree_patch_cb patch_cb, void *patch_arg,
8053 int allow_bad_symlinks, struct got_repository *repo)
8055 const struct got_error *err = NULL, *sync_err, *unlockerr;
8056 struct got_pathlist_entry *pe;
8057 struct got_fileindex *fileindex = NULL;
8058 char *fileindex_path = NULL;
8059 struct got_reference *head_ref = NULL;
8060 struct got_object_id *head_commit_id = NULL;
8061 struct check_stage_ok_arg oka;
8062 struct stage_path_arg spa;
8064 err = lock_worktree(worktree, LOCK_EX);
8065 if (err)
8066 return err;
8068 err = got_ref_open(&head_ref, repo,
8069 got_worktree_get_head_ref_name(worktree), 0);
8070 if (err)
8071 goto done;
8072 err = got_ref_resolve(&head_commit_id, repo, head_ref);
8073 if (err)
8074 goto done;
8075 err = open_fileindex(&fileindex, &fileindex_path, worktree);
8076 if (err)
8077 goto done;
8079 /* Check pre-conditions before staging anything. */
8080 oka.head_commit_id = head_commit_id;
8081 oka.worktree = worktree;
8082 oka.fileindex = fileindex;
8083 oka.repo = repo;
8084 oka.have_changes = 0;
8085 TAILQ_FOREACH(pe, paths, entry) {
8086 err = worktree_status(worktree, pe->path, fileindex, repo,
8087 check_stage_ok, &oka, NULL, NULL, 1, 0);
8088 if (err)
8089 goto done;
8091 if (!oka.have_changes) {
8092 err = got_error(GOT_ERR_STAGE_NO_CHANGE);
8093 goto done;
8096 spa.worktree = worktree;
8097 spa.fileindex = fileindex;
8098 spa.repo = repo;
8099 spa.patch_cb = patch_cb;
8100 spa.patch_arg = patch_arg;
8101 spa.status_cb = status_cb;
8102 spa.status_arg = status_arg;
8103 spa.staged_something = 0;
8104 spa.allow_bad_symlinks = allow_bad_symlinks;
8105 TAILQ_FOREACH(pe, paths, entry) {
8106 err = worktree_status(worktree, pe->path, fileindex, repo,
8107 stage_path, &spa, NULL, NULL, 1, 0);
8108 if (err)
8109 goto done;
8111 if (!spa.staged_something) {
8112 err = got_error(GOT_ERR_STAGE_NO_CHANGE);
8113 goto done;
8116 sync_err = sync_fileindex(fileindex, fileindex_path);
8117 if (sync_err && err == NULL)
8118 err = sync_err;
8119 done:
8120 if (head_ref)
8121 got_ref_close(head_ref);
8122 free(head_commit_id);
8123 free(fileindex_path);
8124 if (fileindex)
8125 got_fileindex_free(fileindex);
8126 unlockerr = lock_worktree(worktree, LOCK_SH);
8127 if (unlockerr && err == NULL)
8128 err = unlockerr;
8129 return err;
8132 struct unstage_path_arg {
8133 struct got_worktree *worktree;
8134 struct got_fileindex *fileindex;
8135 struct got_repository *repo;
8136 got_worktree_checkout_cb progress_cb;
8137 void *progress_arg;
8138 got_worktree_patch_cb patch_cb;
8139 void *patch_arg;
8142 static const struct got_error *
8143 create_unstaged_content(char **path_unstaged_content,
8144 char **path_new_staged_content, struct got_object_id *blob_id,
8145 struct got_object_id *staged_blob_id, const char *relpath,
8146 struct got_repository *repo,
8147 got_worktree_patch_cb patch_cb, void *patch_arg)
8149 const struct got_error *err, *free_err;
8150 struct got_blob_object *blob = NULL, *staged_blob = NULL;
8151 FILE *f1 = NULL, *f2 = NULL, *outfile = NULL, *rejectfile = NULL;
8152 char *path1 = NULL, *path2 = NULL, *label1 = NULL;
8153 struct got_diffreg_result *diffreg_result = NULL;
8154 int line_cur1 = 1, line_cur2 = 1, n = 0, nchunks_used = 0;
8155 int have_content = 0, have_rejected_content = 0, i = 0, nchanges = 0;
8157 *path_unstaged_content = NULL;
8158 *path_new_staged_content = NULL;
8160 err = got_object_id_str(&label1, blob_id);
8161 if (err)
8162 return err;
8163 err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
8164 if (err)
8165 goto done;
8167 err = got_opentemp_named(&path1, &f1, "got-unstage-blob-base");
8168 if (err)
8169 goto done;
8171 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
8172 if (err)
8173 goto done;
8175 err = got_object_open_as_blob(&staged_blob, repo, staged_blob_id, 8192);
8176 if (err)
8177 goto done;
8179 err = got_opentemp_named(&path2, &f2, "got-unstage-blob-staged");
8180 if (err)
8181 goto done;
8183 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f2, staged_blob);
8184 if (err)
8185 goto done;
8187 err = got_diff_files(&diffreg_result, f1, label1, f2,
8188 path2, 3, 0, 1, NULL);
8189 if (err)
8190 goto done;
8192 err = got_opentemp_named(path_unstaged_content, &outfile,
8193 "got-unstaged-content");
8194 if (err)
8195 goto done;
8196 err = got_opentemp_named(path_new_staged_content, &rejectfile,
8197 "got-new-staged-content");
8198 if (err)
8199 goto done;
8201 if (fseek(f1, 0L, SEEK_SET) == -1) {
8202 err = got_ferror(f1, GOT_ERR_IO);
8203 goto done;
8205 if (fseek(f2, 0L, SEEK_SET) == -1) {
8206 err = got_ferror(f2, GOT_ERR_IO);
8207 goto done;
8209 /* Count the number of actual changes in the diff result. */
8210 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
8211 struct diff_chunk_context cc = {};
8212 diff_chunk_context_load_change(&cc, &nchunks_used,
8213 diffreg_result->result, n, 0);
8214 nchanges++;
8216 for (n = 0; n < diffreg_result->result->chunks.len; n += nchunks_used) {
8217 int choice;
8218 err = apply_or_reject_change(&choice, &nchunks_used,
8219 diffreg_result->result, n, relpath, f1, f2,
8220 &line_cur1, &line_cur2,
8221 outfile, rejectfile, ++i, nchanges, patch_cb, patch_arg);
8222 if (err)
8223 goto done;
8224 if (choice == GOT_PATCH_CHOICE_YES)
8225 have_content = 1;
8226 else
8227 have_rejected_content = 1;
8228 if (choice == GOT_PATCH_CHOICE_QUIT)
8229 break;
8231 if (have_content || have_rejected_content)
8232 err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
8233 outfile, rejectfile);
8234 done:
8235 free(label1);
8236 if (blob)
8237 got_object_blob_close(blob);
8238 if (staged_blob)
8239 got_object_blob_close(staged_blob);
8240 free_err = got_diffreg_result_free(diffreg_result);
8241 if (free_err && err == NULL)
8242 err = free_err;
8243 if (f1 && fclose(f1) == EOF && err == NULL)
8244 err = got_error_from_errno2("fclose", path1);
8245 if (f2 && fclose(f2) == EOF && err == NULL)
8246 err = got_error_from_errno2("fclose", path2);
8247 if (outfile && fclose(outfile) == EOF && err == NULL)
8248 err = got_error_from_errno2("fclose", *path_unstaged_content);
8249 if (rejectfile && fclose(rejectfile) == EOF && err == NULL)
8250 err = got_error_from_errno2("fclose", *path_new_staged_content);
8251 if (path1 && unlink(path1) == -1 && err == NULL)
8252 err = got_error_from_errno2("unlink", path1);
8253 if (path2 && unlink(path2) == -1 && err == NULL)
8254 err = got_error_from_errno2("unlink", path2);
8255 if (err || !have_content) {
8256 if (*path_unstaged_content &&
8257 unlink(*path_unstaged_content) == -1 && err == NULL)
8258 err = got_error_from_errno2("unlink",
8259 *path_unstaged_content);
8260 free(*path_unstaged_content);
8261 *path_unstaged_content = NULL;
8263 if (err || !have_content || !have_rejected_content) {
8264 if (*path_new_staged_content &&
8265 unlink(*path_new_staged_content) == -1 && err == NULL)
8266 err = got_error_from_errno2("unlink",
8267 *path_new_staged_content);
8268 free(*path_new_staged_content);
8269 *path_new_staged_content = NULL;
8271 free(path1);
8272 free(path2);
8273 return err;
8276 static const struct got_error *
8277 unstage_hunks(struct got_object_id *staged_blob_id,
8278 struct got_blob_object *blob_base,
8279 struct got_object_id *blob_id, struct got_fileindex_entry *ie,
8280 const char *ondisk_path, const char *label_orig,
8281 struct got_worktree *worktree, struct got_repository *repo,
8282 got_worktree_patch_cb patch_cb, void *patch_arg,
8283 got_worktree_checkout_cb progress_cb, void *progress_arg)
8285 const struct got_error *err = NULL;
8286 char *path_unstaged_content = NULL;
8287 char *path_new_staged_content = NULL;
8288 char *parent = NULL, *base_path = NULL;
8289 char *blob_base_path = NULL;
8290 struct got_object_id *new_staged_blob_id = NULL;
8291 FILE *f = NULL, *f_base = NULL, *f_deriv2 = NULL;
8292 struct stat sb;
8294 err = create_unstaged_content(&path_unstaged_content,
8295 &path_new_staged_content, blob_id, staged_blob_id,
8296 ie->path, repo, patch_cb, patch_arg);
8297 if (err)
8298 return err;
8300 if (path_unstaged_content == NULL)
8301 return NULL;
8303 if (path_new_staged_content) {
8304 err = got_object_blob_create(&new_staged_blob_id,
8305 path_new_staged_content, repo);
8306 if (err)
8307 goto done;
8310 f = fopen(path_unstaged_content, "re");
8311 if (f == NULL) {
8312 err = got_error_from_errno2("fopen",
8313 path_unstaged_content);
8314 goto done;
8316 if (fstat(fileno(f), &sb) == -1) {
8317 err = got_error_from_errno2("fstat", path_unstaged_content);
8318 goto done;
8320 if (got_fileindex_entry_staged_filetype_get(ie) ==
8321 GOT_FILEIDX_MODE_SYMLINK && sb.st_size < PATH_MAX) {
8322 char link_target[PATH_MAX];
8323 size_t r;
8324 r = fread(link_target, 1, sizeof(link_target), f);
8325 if (r == 0 && ferror(f)) {
8326 err = got_error_from_errno("fread");
8327 goto done;
8329 if (r >= sizeof(link_target)) { /* should not happen */
8330 err = got_error(GOT_ERR_NO_SPACE);
8331 goto done;
8333 link_target[r] = '\0';
8334 err = merge_symlink(worktree, blob_base,
8335 ondisk_path, ie->path, label_orig, link_target,
8336 worktree->base_commit_id, repo, progress_cb,
8337 progress_arg);
8338 } else {
8339 int local_changes_subsumed;
8341 err = got_path_dirname(&parent, ondisk_path);
8342 if (err)
8343 return err;
8345 if (asprintf(&base_path, "%s/got-unstage-blob-orig",
8346 parent) == -1) {
8347 err = got_error_from_errno("asprintf");
8348 base_path = NULL;
8349 goto done;
8352 err = got_opentemp_named(&blob_base_path, &f_base, base_path);
8353 if (err)
8354 goto done;
8355 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_base,
8356 blob_base);
8357 if (err)
8358 goto done;
8361 * In order the run a 3-way merge with a symlink we copy the symlink's
8362 * target path into a temporary file and use that file with diff3.
8364 if (S_ISLNK(got_fileindex_perms_to_st(ie))) {
8365 err = dump_symlink_target_path_to_file(&f_deriv2,
8366 ondisk_path);
8367 if (err)
8368 goto done;
8369 } else {
8370 int fd;
8371 fd = open(ondisk_path,
8372 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
8373 if (fd == -1) {
8374 err = got_error_from_errno2("open", ondisk_path);
8375 goto done;
8377 f_deriv2 = fdopen(fd, "r");
8378 if (f_deriv2 == NULL) {
8379 err = got_error_from_errno2("fdopen", ondisk_path);
8380 close(fd);
8381 goto done;
8385 err = merge_file(&local_changes_subsumed, worktree,
8386 f_base, f, f_deriv2, ondisk_path, ie->path,
8387 got_fileindex_perms_to_st(ie),
8388 label_orig, "unstaged", NULL, GOT_DIFF_ALGORITHM_MYERS,
8389 repo, progress_cb, progress_arg);
8391 if (err)
8392 goto done;
8394 if (new_staged_blob_id) {
8395 memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
8396 SHA1_DIGEST_LENGTH);
8397 } else {
8398 got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
8399 got_fileindex_entry_staged_filetype_set(ie, 0);
8401 done:
8402 free(new_staged_blob_id);
8403 if (path_unstaged_content &&
8404 unlink(path_unstaged_content) == -1 && err == NULL)
8405 err = got_error_from_errno2("unlink", path_unstaged_content);
8406 if (path_new_staged_content &&
8407 unlink(path_new_staged_content) == -1 && err == NULL)
8408 err = got_error_from_errno2("unlink", path_new_staged_content);
8409 if (blob_base_path && unlink(blob_base_path) == -1 && err == NULL)
8410 err = got_error_from_errno2("unlink", blob_base_path);
8411 if (f_base && fclose(f_base) == EOF && err == NULL)
8412 err = got_error_from_errno2("fclose", path_unstaged_content);
8413 if (f && fclose(f) == EOF && err == NULL)
8414 err = got_error_from_errno2("fclose", path_unstaged_content);
8415 if (f_deriv2 && fclose(f_deriv2) == EOF && err == NULL)
8416 err = got_error_from_errno2("fclose", ondisk_path);
8417 free(path_unstaged_content);
8418 free(path_new_staged_content);
8419 free(blob_base_path);
8420 free(parent);
8421 free(base_path);
8422 return err;
8425 static const struct got_error *
8426 unstage_path(void *arg, unsigned char status,
8427 unsigned char staged_status, const char *relpath,
8428 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
8429 struct got_object_id *commit_id, int dirfd, const char *de_name)
8431 const struct got_error *err = NULL;
8432 struct unstage_path_arg *a = arg;
8433 struct got_fileindex_entry *ie;
8434 struct got_blob_object *blob_base = NULL, *blob_staged = NULL;
8435 char *ondisk_path = NULL;
8436 char *id_str = NULL, *label_orig = NULL;
8437 int local_changes_subsumed;
8438 struct stat sb;
8440 if (staged_status != GOT_STATUS_ADD &&
8441 staged_status != GOT_STATUS_MODIFY &&
8442 staged_status != GOT_STATUS_DELETE)
8443 return NULL;
8445 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
8446 if (ie == NULL)
8447 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
8449 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, relpath)
8450 == -1)
8451 return got_error_from_errno("asprintf");
8453 err = got_object_id_str(&id_str,
8454 commit_id ? commit_id : a->worktree->base_commit_id);
8455 if (err)
8456 goto done;
8457 if (asprintf(&label_orig, "%s: commit %s", GOT_MERGE_LABEL_BASE,
8458 id_str) == -1) {
8459 err = got_error_from_errno("asprintf");
8460 goto done;
8463 switch (staged_status) {
8464 case GOT_STATUS_MODIFY:
8465 err = got_object_open_as_blob(&blob_base, a->repo,
8466 blob_id, 8192);
8467 if (err)
8468 break;
8469 /* fall through */
8470 case GOT_STATUS_ADD:
8471 if (a->patch_cb) {
8472 if (staged_status == GOT_STATUS_ADD) {
8473 int choice = GOT_PATCH_CHOICE_NONE;
8474 err = (*a->patch_cb)(&choice, a->patch_arg,
8475 staged_status, ie->path, NULL, 1, 1);
8476 if (err)
8477 break;
8478 if (choice != GOT_PATCH_CHOICE_YES)
8479 break;
8480 } else {
8481 err = unstage_hunks(staged_blob_id,
8482 blob_base, blob_id, ie, ondisk_path,
8483 label_orig, a->worktree, a->repo,
8484 a->patch_cb, a->patch_arg,
8485 a->progress_cb, a->progress_arg);
8486 break; /* Done with this file. */
8489 err = got_object_open_as_blob(&blob_staged, a->repo,
8490 staged_blob_id, 8192);
8491 if (err)
8492 break;
8493 switch (got_fileindex_entry_staged_filetype_get(ie)) {
8494 case GOT_FILEIDX_MODE_BAD_SYMLINK:
8495 case GOT_FILEIDX_MODE_REGULAR_FILE:
8496 err = merge_blob(&local_changes_subsumed, a->worktree,
8497 blob_base, ondisk_path, relpath,
8498 got_fileindex_perms_to_st(ie), label_orig,
8499 blob_staged, commit_id ? commit_id :
8500 a->worktree->base_commit_id, a->repo,
8501 a->progress_cb, a->progress_arg);
8502 break;
8503 case GOT_FILEIDX_MODE_SYMLINK:
8504 if (S_ISLNK(got_fileindex_perms_to_st(ie))) {
8505 char *staged_target;
8506 err = got_object_blob_read_to_str(
8507 &staged_target, blob_staged);
8508 if (err)
8509 goto done;
8510 err = merge_symlink(a->worktree, blob_base,
8511 ondisk_path, relpath, label_orig,
8512 staged_target, commit_id ? commit_id :
8513 a->worktree->base_commit_id,
8514 a->repo, a->progress_cb, a->progress_arg);
8515 free(staged_target);
8516 } else {
8517 err = merge_blob(&local_changes_subsumed,
8518 a->worktree, blob_base, ondisk_path,
8519 relpath, got_fileindex_perms_to_st(ie),
8520 label_orig, blob_staged,
8521 commit_id ? commit_id :
8522 a->worktree->base_commit_id, a->repo,
8523 a->progress_cb, a->progress_arg);
8525 break;
8526 default:
8527 err = got_error_path(relpath, GOT_ERR_BAD_FILETYPE);
8528 break;
8530 if (err == NULL) {
8531 got_fileindex_entry_stage_set(ie,
8532 GOT_FILEIDX_STAGE_NONE);
8533 got_fileindex_entry_staged_filetype_set(ie, 0);
8535 break;
8536 case GOT_STATUS_DELETE:
8537 if (a->patch_cb) {
8538 int choice = GOT_PATCH_CHOICE_NONE;
8539 err = (*a->patch_cb)(&choice, a->patch_arg,
8540 staged_status, ie->path, NULL, 1, 1);
8541 if (err)
8542 break;
8543 if (choice == GOT_PATCH_CHOICE_NO)
8544 break;
8545 if (choice != GOT_PATCH_CHOICE_YES) {
8546 err = got_error(GOT_ERR_PATCH_CHOICE);
8547 break;
8550 got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
8551 got_fileindex_entry_staged_filetype_set(ie, 0);
8552 err = get_file_status(&status, &sb, ie, ondisk_path,
8553 dirfd, de_name, a->repo);
8554 if (err)
8555 break;
8556 err = (*a->progress_cb)(a->progress_arg, status, relpath);
8557 break;
8559 done:
8560 free(ondisk_path);
8561 if (blob_base)
8562 got_object_blob_close(blob_base);
8563 if (blob_staged)
8564 got_object_blob_close(blob_staged);
8565 free(id_str);
8566 free(label_orig);
8567 return err;
8570 const struct got_error *
8571 got_worktree_unstage(struct got_worktree *worktree,
8572 struct got_pathlist_head *paths,
8573 got_worktree_checkout_cb progress_cb, void *progress_arg,
8574 got_worktree_patch_cb patch_cb, void *patch_arg,
8575 struct got_repository *repo)
8577 const struct got_error *err = NULL, *sync_err, *unlockerr;
8578 struct got_pathlist_entry *pe;
8579 struct got_fileindex *fileindex = NULL;
8580 char *fileindex_path = NULL;
8581 struct unstage_path_arg upa;
8583 err = lock_worktree(worktree, LOCK_EX);
8584 if (err)
8585 return err;
8587 err = open_fileindex(&fileindex, &fileindex_path, worktree);
8588 if (err)
8589 goto done;
8591 upa.worktree = worktree;
8592 upa.fileindex = fileindex;
8593 upa.repo = repo;
8594 upa.progress_cb = progress_cb;
8595 upa.progress_arg = progress_arg;
8596 upa.patch_cb = patch_cb;
8597 upa.patch_arg = patch_arg;
8598 TAILQ_FOREACH(pe, paths, entry) {
8599 err = worktree_status(worktree, pe->path, fileindex, repo,
8600 unstage_path, &upa, NULL, NULL, 1, 0);
8601 if (err)
8602 goto done;
8605 sync_err = sync_fileindex(fileindex, fileindex_path);
8606 if (sync_err && err == NULL)
8607 err = sync_err;
8608 done:
8609 free(fileindex_path);
8610 if (fileindex)
8611 got_fileindex_free(fileindex);
8612 unlockerr = lock_worktree(worktree, LOCK_SH);
8613 if (unlockerr && err == NULL)
8614 err = unlockerr;
8615 return err;
8618 struct report_file_info_arg {
8619 struct got_worktree *worktree;
8620 got_worktree_path_info_cb info_cb;
8621 void *info_arg;
8622 struct got_pathlist_head *paths;
8623 got_cancel_cb cancel_cb;
8624 void *cancel_arg;
8627 static const struct got_error *
8628 report_file_info(void *arg, struct got_fileindex_entry *ie)
8630 struct report_file_info_arg *a = arg;
8631 struct got_pathlist_entry *pe;
8632 struct got_object_id blob_id, staged_blob_id, commit_id;
8633 struct got_object_id *blob_idp = NULL, *staged_blob_idp = NULL;
8634 struct got_object_id *commit_idp = NULL;
8635 int stage;
8637 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
8638 return got_error(GOT_ERR_CANCELLED);
8640 TAILQ_FOREACH(pe, a->paths, entry) {
8641 if (pe->path_len == 0 || strcmp(pe->path, ie->path) == 0 ||
8642 got_path_is_child(ie->path, pe->path, pe->path_len))
8643 break;
8645 if (pe == NULL) /* not found */
8646 return NULL;
8648 if (got_fileindex_entry_has_blob(ie)) {
8649 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
8650 blob_idp = &blob_id;
8652 stage = got_fileindex_entry_stage_get(ie);
8653 if (stage == GOT_FILEIDX_STAGE_MODIFY ||
8654 stage == GOT_FILEIDX_STAGE_ADD) {
8655 memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
8656 SHA1_DIGEST_LENGTH);
8657 staged_blob_idp = &staged_blob_id;
8660 if (got_fileindex_entry_has_commit(ie)) {
8661 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
8662 commit_idp = &commit_id;
8665 return a->info_cb(a->info_arg, ie->path, got_fileindex_perms_to_st(ie),
8666 (time_t)ie->mtime_sec, blob_idp, staged_blob_idp, commit_idp);
8669 const struct got_error *
8670 got_worktree_path_info(struct got_worktree *worktree,
8671 struct got_pathlist_head *paths,
8672 got_worktree_path_info_cb info_cb, void *info_arg,
8673 got_cancel_cb cancel_cb, void *cancel_arg)
8676 const struct got_error *err = NULL, *unlockerr;
8677 struct got_fileindex *fileindex = NULL;
8678 char *fileindex_path = NULL;
8679 struct report_file_info_arg arg;
8681 err = lock_worktree(worktree, LOCK_SH);
8682 if (err)
8683 return err;
8685 err = open_fileindex(&fileindex, &fileindex_path, worktree);
8686 if (err)
8687 goto done;
8689 arg.worktree = worktree;
8690 arg.info_cb = info_cb;
8691 arg.info_arg = info_arg;
8692 arg.paths = paths;
8693 arg.cancel_cb = cancel_cb;
8694 arg.cancel_arg = cancel_arg;
8695 err = got_fileindex_for_each_entry_safe(fileindex, report_file_info,
8696 &arg);
8697 done:
8698 free(fileindex_path);
8699 if (fileindex)
8700 got_fileindex_free(fileindex);
8701 unlockerr = lock_worktree(worktree, LOCK_UN);
8702 if (unlockerr && err == NULL)
8703 err = unlockerr;
8704 return err;