Blob


1 /*
2 * Copyright (c) 2018, 2019 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"
59 #ifndef MIN
60 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
61 #endif
63 #define GOT_MERGE_LABEL_MERGED "merged change"
64 #define GOT_MERGE_LABEL_BASE "3-way merge base"
66 static const struct got_error *
67 create_meta_file(const char *path_got, const char *name, const char *content)
68 {
69 const struct got_error *err = NULL;
70 char *path;
72 if (asprintf(&path, "%s/%s", path_got, name) == -1)
73 return got_error_from_errno("asprintf");
75 err = got_path_create_file(path, content);
76 free(path);
77 return err;
78 }
80 static const struct got_error *
81 update_meta_file(const char *path_got, const char *name, const char *content)
82 {
83 const struct got_error *err = NULL;
84 FILE *tmpfile = NULL;
85 char *tmppath = NULL;
86 char *path = NULL;
88 if (asprintf(&path, "%s/%s", path_got, name) == -1) {
89 err = got_error_from_errno("asprintf");
90 path = NULL;
91 goto done;
92 }
94 err = got_opentemp_named(&tmppath, &tmpfile, path);
95 if (err)
96 goto done;
98 if (content) {
99 int len = fprintf(tmpfile, "%s\n", content);
100 if (len != strlen(content) + 1) {
101 err = got_error_from_errno2("fprintf", tmppath);
102 goto done;
106 if (rename(tmppath, path) != 0) {
107 err = got_error_from_errno3("rename", tmppath, path);
108 unlink(tmppath);
109 goto done;
112 done:
113 if (fclose(tmpfile) != 0 && err == NULL)
114 err = got_error_from_errno2("fclose", tmppath);
115 free(tmppath);
116 return err;
119 static const struct got_error *
120 read_meta_file(char **content, const char *path_got, const char *name)
122 const struct got_error *err = NULL;
123 char *path;
124 int fd = -1;
125 ssize_t n;
126 struct stat sb;
128 *content = NULL;
130 if (asprintf(&path, "%s/%s", path_got, name) == -1) {
131 err = got_error_from_errno("asprintf");
132 path = NULL;
133 goto done;
136 fd = open(path, O_RDONLY | O_NOFOLLOW);
137 if (fd == -1) {
138 if (errno == ENOENT)
139 err = got_error_path(path, GOT_ERR_WORKTREE_META);
140 else
141 err = got_error_from_errno2("open", path);
142 goto done;
144 if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
145 err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
146 : got_error_from_errno2("flock", path));
147 goto done;
150 if (fstat(fd, &sb) != 0) {
151 err = got_error_from_errno2("fstat", path);
152 goto done;
154 *content = calloc(1, sb.st_size);
155 if (*content == NULL) {
156 err = got_error_from_errno("calloc");
157 goto done;
160 n = read(fd, *content, sb.st_size);
161 if (n != sb.st_size) {
162 err = (n == -1 ? got_error_from_errno2("read", path) :
163 got_error_path(path, GOT_ERR_WORKTREE_META));
164 goto done;
166 if ((*content)[sb.st_size - 1] != '\n') {
167 err = got_error_path(path, GOT_ERR_WORKTREE_META);
168 goto done;
170 (*content)[sb.st_size - 1] = '\0';
172 done:
173 if (fd != -1 && close(fd) == -1 && err == NULL)
174 err = got_error_from_errno2("close", path_got);
175 free(path);
176 if (err) {
177 free(*content);
178 *content = NULL;
180 return err;
183 static const struct got_error *
184 write_head_ref(const char *path_got, struct got_reference *head_ref)
186 const struct got_error *err = NULL;
187 char *refstr = NULL;
189 if (got_ref_is_symbolic(head_ref)) {
190 refstr = got_ref_to_str(head_ref);
191 if (refstr == NULL)
192 return got_error_from_errno("got_ref_to_str");
193 } else {
194 refstr = strdup(got_ref_get_name(head_ref));
195 if (refstr == NULL)
196 return got_error_from_errno("strdup");
198 err = update_meta_file(path_got, GOT_WORKTREE_HEAD_REF, refstr);
199 free(refstr);
200 return err;
203 const struct got_error *
204 got_worktree_init(const char *path, struct got_reference *head_ref,
205 const char *prefix, struct got_repository *repo)
207 const struct got_error *err = NULL;
208 struct got_object_id *commit_id = NULL;
209 uuid_t uuid;
210 uint32_t uuid_status;
211 int obj_type;
212 char *path_got = NULL;
213 char *formatstr = NULL;
214 char *absprefix = NULL;
215 char *basestr = NULL;
216 char *uuidstr = NULL;
218 if (strcmp(path, got_repo_get_path(repo)) == 0) {
219 err = got_error(GOT_ERR_WORKTREE_REPO);
220 goto done;
223 err = got_ref_resolve(&commit_id, repo, head_ref);
224 if (err)
225 return err;
226 err = got_object_get_type(&obj_type, repo, commit_id);
227 if (err)
228 return err;
229 if (obj_type != GOT_OBJ_TYPE_COMMIT)
230 return got_error(GOT_ERR_OBJ_TYPE);
232 if (!got_path_is_absolute(prefix)) {
233 if (asprintf(&absprefix, "/%s", prefix) == -1)
234 return got_error_from_errno("asprintf");
237 /* Create top-level directory (may already exist). */
238 if (mkdir(path, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
239 err = got_error_from_errno2("mkdir", path);
240 goto done;
243 /* Create .got directory (may already exist). */
244 if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
245 err = got_error_from_errno("asprintf");
246 goto done;
248 if (mkdir(path_got, GOT_DEFAULT_DIR_MODE) == -1 && errno != EEXIST) {
249 err = got_error_from_errno2("mkdir", path_got);
250 goto done;
253 /* Create an empty lock file. */
254 err = create_meta_file(path_got, GOT_WORKTREE_LOCK, NULL);
255 if (err)
256 goto done;
258 /* Create an empty file index. */
259 err = create_meta_file(path_got, GOT_WORKTREE_FILE_INDEX, NULL);
260 if (err)
261 goto done;
263 /* Write the HEAD reference. */
264 err = write_head_ref(path_got, head_ref);
265 if (err)
266 goto done;
268 /* Record our base commit. */
269 err = got_object_id_str(&basestr, commit_id);
270 if (err)
271 goto done;
272 err = create_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, basestr);
273 if (err)
274 goto done;
276 /* Store path to repository. */
277 err = create_meta_file(path_got, GOT_WORKTREE_REPOSITORY,
278 got_repo_get_path(repo));
279 if (err)
280 goto done;
282 /* Store in-repository path prefix. */
283 err = create_meta_file(path_got, GOT_WORKTREE_PATH_PREFIX,
284 absprefix ? absprefix : prefix);
285 if (err)
286 goto done;
288 /* Generate UUID. */
289 uuid_create(&uuid, &uuid_status);
290 if (uuid_status != uuid_s_ok) {
291 err = got_error_uuid(uuid_status, "uuid_create");
292 goto done;
294 uuid_to_string(&uuid, &uuidstr, &uuid_status);
295 if (uuid_status != uuid_s_ok) {
296 err = got_error_uuid(uuid_status, "uuid_to_string");
297 goto done;
299 err = create_meta_file(path_got, GOT_WORKTREE_UUID, uuidstr);
300 if (err)
301 goto done;
303 /* Stamp work tree with format file. */
304 if (asprintf(&formatstr, "%d", GOT_WORKTREE_FORMAT_VERSION) == -1) {
305 err = got_error_from_errno("asprintf");
306 goto done;
308 err = create_meta_file(path_got, GOT_WORKTREE_FORMAT, formatstr);
309 if (err)
310 goto done;
312 done:
313 free(commit_id);
314 free(path_got);
315 free(formatstr);
316 free(absprefix);
317 free(basestr);
318 free(uuidstr);
319 return err;
322 static const struct got_error *
323 open_worktree(struct got_worktree **worktree, const char *path)
325 const struct got_error *err = NULL;
326 char *path_got;
327 char *formatstr = NULL;
328 char *uuidstr = NULL;
329 char *path_lock = NULL;
330 char *base_commit_id_str = NULL;
331 int version, fd = -1;
332 const char *errstr;
333 struct got_repository *repo = NULL;
334 uint32_t uuid_status;
336 *worktree = NULL;
338 if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
339 err = got_error_from_errno("asprintf");
340 path_got = NULL;
341 goto done;
344 if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
345 err = got_error_from_errno("asprintf");
346 path_lock = NULL;
347 goto done;
350 fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK);
351 if (fd == -1) {
352 err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
353 : got_error_from_errno2("open", path_lock));
354 goto done;
357 err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
358 if (err)
359 goto done;
361 version = strtonum(formatstr, 1, INT_MAX, &errstr);
362 if (errstr) {
363 err = got_error_msg(GOT_ERR_WORKTREE_META,
364 "could not parse work tree format version number");
365 goto done;
367 if (version != GOT_WORKTREE_FORMAT_VERSION) {
368 err = got_error(GOT_ERR_WORKTREE_VERS);
369 goto done;
372 *worktree = calloc(1, sizeof(**worktree));
373 if (*worktree == NULL) {
374 err = got_error_from_errno("calloc");
375 goto done;
377 (*worktree)->lockfd = -1;
379 (*worktree)->root_path = strdup(path);
380 if ((*worktree)->root_path == NULL) {
381 err = got_error_from_errno("strdup");
382 goto done;
384 err = read_meta_file(&(*worktree)->repo_path, path_got,
385 GOT_WORKTREE_REPOSITORY);
386 if (err)
387 goto done;
389 err = read_meta_file(&(*worktree)->path_prefix, path_got,
390 GOT_WORKTREE_PATH_PREFIX);
391 if (err)
392 goto done;
394 err = read_meta_file(&base_commit_id_str, path_got,
395 GOT_WORKTREE_BASE_COMMIT);
396 if (err)
397 goto done;
399 err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
400 if (err)
401 goto done;
402 uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
403 if (uuid_status != uuid_s_ok) {
404 err = got_error_uuid(uuid_status, "uuid_from_string");
405 goto done;
408 err = got_repo_open(&repo, (*worktree)->repo_path, NULL);
409 if (err)
410 goto done;
412 err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
413 base_commit_id_str);
414 if (err)
415 goto done;
417 err = read_meta_file(&(*worktree)->head_ref_name, path_got,
418 GOT_WORKTREE_HEAD_REF);
419 done:
420 if (repo)
421 got_repo_close(repo);
422 free(path_got);
423 free(path_lock);
424 free(base_commit_id_str);
425 free(uuidstr);
426 free(formatstr);
427 if (err) {
428 if (fd != -1)
429 close(fd);
430 if (*worktree != NULL)
431 got_worktree_close(*worktree);
432 *worktree = NULL;
433 } else
434 (*worktree)->lockfd = fd;
436 return err;
439 const struct got_error *
440 got_worktree_open(struct got_worktree **worktree, const char *path)
442 const struct got_error *err = NULL;
444 do {
445 err = open_worktree(worktree, path);
446 if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT))
447 return err;
448 if (*worktree)
449 return NULL;
450 path = dirname(path);
451 if (path == NULL)
452 return got_error_from_errno2("dirname", path);
453 } while (!((path[0] == '.' || path[0] == '/') && path[1] == '\0'));
455 return got_error(GOT_ERR_NOT_WORKTREE);
458 const struct got_error *
459 got_worktree_close(struct got_worktree *worktree)
461 const struct got_error *err = NULL;
462 free(worktree->repo_path);
463 free(worktree->path_prefix);
464 free(worktree->base_commit_id);
465 free(worktree->head_ref_name);
466 if (worktree->lockfd != -1)
467 if (close(worktree->lockfd) != 0)
468 err = got_error_from_errno2("close",
469 got_worktree_get_root_path(worktree));
470 free(worktree->root_path);
471 free(worktree);
472 return err;
475 const char *
476 got_worktree_get_root_path(struct got_worktree *worktree)
478 return worktree->root_path;
481 const char *
482 got_worktree_get_repo_path(struct got_worktree *worktree)
484 return worktree->repo_path;
487 const char *
488 got_worktree_get_path_prefix(struct got_worktree *worktree)
490 return worktree->path_prefix;
493 const struct got_error *
494 got_worktree_match_path_prefix(int *match, struct got_worktree *worktree,
495 const char *path_prefix)
497 char *absprefix = NULL;
499 if (!got_path_is_absolute(path_prefix)) {
500 if (asprintf(&absprefix, "/%s", path_prefix) == -1)
501 return got_error_from_errno("asprintf");
503 *match = (strcmp(absprefix ? absprefix : path_prefix,
504 worktree->path_prefix) == 0);
505 free(absprefix);
506 return NULL;
509 const char *
510 got_worktree_get_head_ref_name(struct got_worktree *worktree)
512 return worktree->head_ref_name;
515 const struct got_error *
516 got_worktree_set_head_ref(struct got_worktree *worktree,
517 struct got_reference *head_ref)
519 const struct got_error *err = NULL;
520 char *path_got = NULL, *head_ref_name = NULL;
522 if (asprintf(&path_got, "%s/%s", worktree->root_path,
523 GOT_WORKTREE_GOT_DIR) == -1) {
524 err = got_error_from_errno("asprintf");
525 path_got = NULL;
526 goto done;
529 head_ref_name = strdup(got_ref_get_name(head_ref));
530 if (head_ref_name == NULL) {
531 err = got_error_from_errno("strdup");
532 goto done;
535 err = write_head_ref(path_got, head_ref);
536 if (err)
537 goto done;
539 free(worktree->head_ref_name);
540 worktree->head_ref_name = head_ref_name;
541 done:
542 free(path_got);
543 if (err)
544 free(head_ref_name);
545 return err;
548 struct got_object_id *
549 got_worktree_get_base_commit_id(struct got_worktree *worktree)
551 return worktree->base_commit_id;
554 const struct got_error *
555 got_worktree_set_base_commit_id(struct got_worktree *worktree,
556 struct got_repository *repo, struct got_object_id *commit_id)
558 const struct got_error *err;
559 struct got_object *obj = NULL;
560 char *id_str = NULL;
561 char *path_got = NULL;
563 if (asprintf(&path_got, "%s/%s", worktree->root_path,
564 GOT_WORKTREE_GOT_DIR) == -1) {
565 err = got_error_from_errno("asprintf");
566 path_got = NULL;
567 goto done;
570 err = got_object_open(&obj, repo, commit_id);
571 if (err)
572 return err;
574 if (obj->type != GOT_OBJ_TYPE_COMMIT) {
575 err = got_error(GOT_ERR_OBJ_TYPE);
576 goto done;
579 /* Record our base commit. */
580 err = got_object_id_str(&id_str, commit_id);
581 if (err)
582 goto done;
583 err = update_meta_file(path_got, GOT_WORKTREE_BASE_COMMIT, id_str);
584 if (err)
585 goto done;
587 free(worktree->base_commit_id);
588 worktree->base_commit_id = got_object_id_dup(commit_id);
589 if (worktree->base_commit_id == NULL) {
590 err = got_error_from_errno("got_object_id_dup");
591 goto done;
593 done:
594 if (obj)
595 got_object_close(obj);
596 free(id_str);
597 free(path_got);
598 return err;
601 static const struct got_error *
602 lock_worktree(struct got_worktree *worktree, int operation)
604 if (flock(worktree->lockfd, operation | LOCK_NB) == -1)
605 return (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
606 : got_error_from_errno2("flock",
607 got_worktree_get_root_path(worktree)));
608 return NULL;
611 static const struct got_error *
612 add_dir_on_disk(struct got_worktree *worktree, const char *path)
614 const struct got_error *err = NULL;
615 char *abspath;
617 if (asprintf(&abspath, "%s/%s", worktree->root_path, path) == -1)
618 return got_error_from_errno("asprintf");
620 err = got_path_mkdir(abspath);
621 if (err && err->code == GOT_ERR_ERRNO && errno == EEXIST) {
622 struct stat sb;
623 err = NULL;
624 if (lstat(abspath, &sb) == -1) {
625 err = got_error_from_errno2("lstat", abspath);
626 } else if (!S_ISDIR(sb.st_mode)) {
627 /* TODO directory is obstructed; do something */
628 err = got_error(GOT_ERR_FILE_OBSTRUCTED);
631 free(abspath);
632 return err;
635 static const struct got_error *
636 check_file_contents_equal(int *same, FILE *f1, FILE *f2)
638 const struct got_error *err = NULL;
639 uint8_t fbuf1[8192];
640 uint8_t fbuf2[8192];
641 size_t flen1 = 0, flen2 = 0;
643 *same = 1;
645 for (;;) {
646 flen1 = fread(fbuf1, 1, sizeof(fbuf1), f1);
647 if (flen1 == 0 && ferror(f1)) {
648 err = got_error_from_errno("fread");
649 break;
651 flen2 = fread(fbuf2, 1, sizeof(fbuf2), f2);
652 if (flen2 == 0 && ferror(f2)) {
653 err = got_error_from_errno("fread");
654 break;
656 if (flen1 == 0) {
657 if (flen2 != 0)
658 *same = 0;
659 break;
660 } else if (flen2 == 0) {
661 if (flen1 != 0)
662 *same = 0;
663 break;
664 } else if (flen1 == flen2) {
665 if (memcmp(fbuf1, fbuf2, flen2) != 0) {
666 *same = 0;
667 break;
669 } else {
670 *same = 0;
671 break;
675 return err;
678 static const struct got_error *
679 check_files_equal(int *same, const char *f1_path, const char *f2_path)
681 const struct got_error *err = NULL;
682 struct stat sb;
683 size_t size1, size2;
684 FILE *f1 = NULL, *f2 = NULL;
686 *same = 1;
688 if (lstat(f1_path, &sb) != 0) {
689 err = got_error_from_errno2("lstat", f1_path);
690 goto done;
692 size1 = sb.st_size;
694 if (lstat(f2_path, &sb) != 0) {
695 err = got_error_from_errno2("lstat", f2_path);
696 goto done;
698 size2 = sb.st_size;
700 if (size1 != size2) {
701 *same = 0;
702 return NULL;
705 f1 = fopen(f1_path, "r");
706 if (f1 == NULL)
707 return got_error_from_errno2("fopen", f1_path);
709 f2 = fopen(f2_path, "r");
710 if (f2 == NULL) {
711 err = got_error_from_errno2("fopen", f2_path);
712 goto done;
715 err = check_file_contents_equal(same, f1, f2);
716 done:
717 if (f1 && fclose(f1) != 0 && err == NULL)
718 err = got_error_from_errno("fclose");
719 if (f2 && fclose(f2) != 0 && err == NULL)
720 err = got_error_from_errno("fclose");
722 return err;
725 /*
726 * Perform a 3-way merge where blob_orig acts as the common ancestor,
727 * the file at deriv_path acts as the first derived version, and the
728 * file on disk acts as the second derived version.
729 */
730 static const struct got_error *
731 merge_file(int *local_changes_subsumed, struct got_worktree *worktree,
732 struct got_blob_object *blob_orig, const char *ondisk_path,
733 const char *path, uint16_t st_mode, const char *deriv_path,
734 const char *label_orig, const char *label_deriv,
735 struct got_repository *repo,
736 got_worktree_checkout_cb progress_cb, void *progress_arg)
738 const struct got_error *err = NULL;
739 int merged_fd = -1;
740 FILE *f_orig = NULL;
741 char *blob_orig_path = NULL;
742 char *merged_path = NULL, *base_path = NULL;
743 int overlapcnt = 0;
744 char *parent;
746 *local_changes_subsumed = 0;
748 parent = dirname(ondisk_path);
749 if (parent == NULL)
750 return got_error_from_errno2("dirname", ondisk_path);
752 if (asprintf(&base_path, "%s/got-merged", parent) == -1)
753 return got_error_from_errno("asprintf");
755 err = got_opentemp_named_fd(&merged_path, &merged_fd, base_path);
756 if (err)
757 goto done;
759 free(base_path);
760 if (asprintf(&base_path, "%s/got-merge-blob-orig", parent) == -1) {
761 err = got_error_from_errno("asprintf");
762 base_path = NULL;
763 goto done;
766 err = got_opentemp_named(&blob_orig_path, &f_orig, base_path);
767 if (err)
768 goto done;
769 if (blob_orig) {
770 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_orig,
771 blob_orig);
772 if (err)
773 goto done;
774 } else {
775 /*
776 * If the file has no blob, this is an "add vs add" conflict,
777 * and we simply use an empty ancestor file to make both files
778 * appear in the merged result in their entirety.
779 */
782 err = got_merge_diff3(&overlapcnt, merged_fd, deriv_path,
783 blob_orig_path, ondisk_path, label_deriv, label_orig, NULL);
784 if (err)
785 goto done;
787 err = (*progress_cb)(progress_arg,
788 overlapcnt > 0 ? GOT_STATUS_CONFLICT : GOT_STATUS_MERGE, path);
789 if (err)
790 goto done;
792 if (fsync(merged_fd) != 0) {
793 err = got_error_from_errno("fsync");
794 goto done;
797 /* Check if a clean merge has subsumed all local changes. */
798 if (overlapcnt == 0) {
799 err = check_files_equal(local_changes_subsumed, deriv_path,
800 merged_path);
801 if (err)
802 goto done;
805 if (fchmod(merged_fd, st_mode) != 0) {
806 err = got_error_from_errno2("fchmod", merged_path);
807 goto done;
810 if (rename(merged_path, ondisk_path) != 0) {
811 err = got_error_from_errno3("rename", merged_path,
812 ondisk_path);
813 unlink(merged_path);
814 goto done;
817 done:
818 if (merged_fd != -1 && close(merged_fd) != 0 && err == NULL)
819 err = got_error_from_errno("close");
820 if (f_orig && fclose(f_orig) != 0 && err == NULL)
821 err = got_error_from_errno("fclose");
822 free(merged_path);
823 free(base_path);
824 if (blob_orig_path) {
825 unlink(blob_orig_path);
826 free(blob_orig_path);
828 return err;
831 /*
832 * Perform a 3-way merge where blob_orig acts as the common ancestor,
833 * blob_deriv acts as the first derived version, and the file on disk
834 * acts as the second derived version.
835 */
836 static const struct got_error *
837 merge_blob(int *local_changes_subsumed, struct got_worktree *worktree,
838 struct got_blob_object *blob_orig, const char *ondisk_path,
839 const char *path, uint16_t st_mode, const char *label_orig,
840 struct got_blob_object *blob_deriv,
841 struct got_object_id *deriv_base_commit_id, struct got_repository *repo,
842 got_worktree_checkout_cb progress_cb, void *progress_arg)
844 const struct got_error *err = NULL;
845 FILE *f_deriv = NULL;
846 char *blob_deriv_path = NULL, *base_path = NULL, *id_str = NULL;
847 char *label_deriv = NULL, *parent;
849 *local_changes_subsumed = 0;
851 parent = dirname(ondisk_path);
852 if (parent == NULL)
853 return got_error_from_errno2("dirname", ondisk_path);
855 free(base_path);
856 if (asprintf(&base_path, "%s/got-merge-blob-deriv", parent) == -1) {
857 err = got_error_from_errno("asprintf");
858 base_path = NULL;
859 goto done;
862 err = got_opentemp_named(&blob_deriv_path, &f_deriv, base_path);
863 if (err)
864 goto done;
865 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f_deriv,
866 blob_deriv);
867 if (err)
868 goto done;
870 err = got_object_id_str(&id_str, deriv_base_commit_id);
871 if (err)
872 goto done;
873 if (asprintf(&label_deriv, "%s: commit %s",
874 GOT_MERGE_LABEL_MERGED, id_str) == -1) {
875 err = got_error_from_errno("asprintf");
876 goto done;
879 err = merge_file(local_changes_subsumed, worktree, blob_orig,
880 ondisk_path, path, st_mode, blob_deriv_path, label_orig,
881 label_deriv, repo, progress_cb, progress_arg);
882 done:
883 if (f_deriv && fclose(f_deriv) != 0 && err == NULL)
884 err = got_error_from_errno("fclose");
885 free(base_path);
886 if (blob_deriv_path) {
887 unlink(blob_deriv_path);
888 free(blob_deriv_path);
890 free(id_str);
891 free(label_deriv);
892 return err;
895 static const struct got_error *
896 update_blob_fileindex_entry(struct got_worktree *worktree,
897 struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
898 const char *ondisk_path, const char *path, struct got_blob_object *blob,
899 int update_timestamps)
901 const struct got_error *err = NULL;
903 if (ie == NULL)
904 ie = got_fileindex_entry_get(fileindex, path, strlen(path));
905 if (ie)
906 err = got_fileindex_entry_update(ie, ondisk_path,
907 blob->id.sha1, worktree->base_commit_id->sha1,
908 update_timestamps);
909 else {
910 struct got_fileindex_entry *new_ie;
911 err = got_fileindex_entry_alloc(&new_ie, ondisk_path,
912 path, blob->id.sha1, worktree->base_commit_id->sha1);
913 if (!err)
914 err = got_fileindex_entry_add(fileindex, new_ie);
916 return err;
919 static mode_t
920 get_ondisk_perms(int executable, mode_t st_mode)
922 mode_t xbits = S_IXUSR;
924 if (executable) {
925 /* Map read bits to execute bits. */
926 if (st_mode & S_IRGRP)
927 xbits |= S_IXGRP;
928 if (st_mode & S_IROTH)
929 xbits |= S_IXOTH;
930 return st_mode | xbits;
933 return (st_mode & ~(S_IXUSR | S_IXGRP | S_IXOTH));
936 static const struct got_error *
937 install_blob(struct got_worktree *worktree, const char *ondisk_path,
938 const char *path, uint16_t te_mode, uint16_t st_mode,
939 struct got_blob_object *blob, int restoring_missing_file,
940 int reverting_versioned_file, struct got_repository *repo,
941 got_worktree_checkout_cb progress_cb, void *progress_arg)
943 const struct got_error *err = NULL;
944 int fd = -1;
945 size_t len, hdrlen;
946 int update = 0;
947 char *tmppath = NULL;
949 fd = open(ondisk_path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
950 GOT_DEFAULT_FILE_MODE);
951 if (fd == -1) {
952 if (errno == ENOENT) {
953 char *parent = dirname(path);
954 if (parent == NULL)
955 return got_error_from_errno2("dirname", path);
956 err = add_dir_on_disk(worktree, parent);
957 if (err)
958 return err;
959 fd = open(ondisk_path,
960 O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
961 GOT_DEFAULT_FILE_MODE);
962 if (fd == -1)
963 return got_error_from_errno2("open",
964 ondisk_path);
965 } else if (errno == EEXIST) {
966 if (!S_ISREG(st_mode)) {
967 /* TODO file is obstructed; do something */
968 err = got_error(GOT_ERR_FILE_OBSTRUCTED);
969 goto done;
970 } else {
971 err = got_opentemp_named_fd(&tmppath, &fd,
972 ondisk_path);
973 if (err)
974 goto done;
975 update = 1;
977 } else
978 return got_error_from_errno2("open", ondisk_path);
981 if (restoring_missing_file)
982 err = (*progress_cb)(progress_arg, GOT_STATUS_MISSING, path);
983 else if (reverting_versioned_file)
984 err = (*progress_cb)(progress_arg, GOT_STATUS_REVERT, path);
985 else
986 err = (*progress_cb)(progress_arg,
987 update ? GOT_STATUS_UPDATE : GOT_STATUS_ADD, path);
988 if (err)
989 goto done;
991 hdrlen = got_object_blob_get_hdrlen(blob);
992 do {
993 const uint8_t *buf = got_object_blob_get_read_buf(blob);
994 err = got_object_blob_read_block(&len, blob);
995 if (err)
996 break;
997 if (len > 0) {
998 /* Skip blob object header first time around. */
999 ssize_t outlen = write(fd, buf + hdrlen, len - hdrlen);
1000 if (outlen == -1) {
1001 err = got_error_from_errno("write");
1002 goto done;
1003 } else if (outlen != len - hdrlen) {
1004 err = got_error(GOT_ERR_IO);
1005 goto done;
1007 hdrlen = 0;
1009 } while (len != 0);
1011 if (fsync(fd) != 0) {
1012 err = got_error_from_errno("fsync");
1013 goto done;
1016 if (update) {
1017 if (rename(tmppath, ondisk_path) != 0) {
1018 err = got_error_from_errno3("rename", tmppath,
1019 ondisk_path);
1020 unlink(tmppath);
1021 goto done;
1025 if (chmod(ondisk_path,
1026 get_ondisk_perms(te_mode & S_IXUSR, st_mode)) == -1) {
1027 err = got_error_from_errno2("chmod", ondisk_path);
1028 goto done;
1031 done:
1032 if (fd != -1 && close(fd) != 0 && err == NULL)
1033 err = got_error_from_errno("close");
1034 free(tmppath);
1035 return err;
1038 /* Upgrade STATUS_MODIFY to STATUS_CONFLICT if a conflict marker is found. */
1039 static const struct got_error *
1040 get_modified_file_content_status(unsigned char *status, FILE *f)
1042 const struct got_error *err = NULL;
1043 const char *markers[3] = {
1044 GOT_DIFF_CONFLICT_MARKER_BEGIN,
1045 GOT_DIFF_CONFLICT_MARKER_SEP,
1046 GOT_DIFF_CONFLICT_MARKER_END
1048 int i = 0;
1049 char *line;
1050 size_t len;
1051 const char delim[3] = {'\0', '\0', '\0'};
1053 while (*status == GOT_STATUS_MODIFY) {
1054 line = fparseln(f, &len, NULL, delim, 0);
1055 if (line == NULL) {
1056 if (feof(f))
1057 break;
1058 err = got_ferror(f, GOT_ERR_IO);
1059 break;
1062 if (strncmp(line, markers[i], strlen(markers[i])) == 0) {
1063 if (strcmp(markers[i], GOT_DIFF_CONFLICT_MARKER_END)
1064 == 0)
1065 *status = GOT_STATUS_CONFLICT;
1066 else
1067 i++;
1071 return err;
1074 static int
1075 xbit_differs(struct got_fileindex_entry *ie, uint16_t st_mode)
1077 mode_t ie_mode = got_fileindex_perms_to_st(ie);
1078 return ((ie_mode & S_IXUSR) != (st_mode & S_IXUSR));
1081 static int
1082 stat_info_differs(struct got_fileindex_entry *ie, struct stat *sb)
1084 return !(ie->ctime_sec == sb->st_ctime &&
1085 ie->ctime_nsec == sb->st_ctimensec &&
1086 ie->mtime_sec == sb->st_mtime &&
1087 ie->mtime_nsec == sb->st_mtimensec &&
1088 ie->size == (sb->st_size & 0xffffffff) &&
1089 !xbit_differs(ie, sb->st_mode));
1092 static unsigned char
1093 get_staged_status(struct got_fileindex_entry *ie)
1095 switch (got_fileindex_entry_stage_get(ie)) {
1096 case GOT_FILEIDX_STAGE_ADD:
1097 return GOT_STATUS_ADD;
1098 case GOT_FILEIDX_STAGE_DELETE:
1099 return GOT_STATUS_DELETE;
1100 case GOT_FILEIDX_STAGE_MODIFY:
1101 return GOT_STATUS_MODIFY;
1102 default:
1103 return GOT_STATUS_NO_CHANGE;
1107 static const struct got_error *
1108 get_file_status(unsigned char *status, struct stat *sb,
1109 struct got_fileindex_entry *ie, const char *abspath,
1110 int dirfd, const char *de_name, struct got_repository *repo)
1112 const struct got_error *err = NULL;
1113 struct got_object_id id;
1114 size_t hdrlen;
1115 int fd = -1;
1116 FILE *f = NULL;
1117 uint8_t fbuf[8192];
1118 struct got_blob_object *blob = NULL;
1119 size_t flen, blen;
1120 unsigned char staged_status = get_staged_status(ie);
1122 *status = GOT_STATUS_NO_CHANGE;
1125 * Whenever the caller provides a directory descriptor and a
1126 * directory entry name for the file, use them! This prevents
1127 * race conditions if filesystem paths change beneath our feet.
1129 if (dirfd != -1) {
1130 if (fstatat(dirfd, de_name, sb, AT_SYMLINK_NOFOLLOW) == -1) {
1131 if (errno == ENOENT) {
1132 if (got_fileindex_entry_has_file_on_disk(ie))
1133 *status = GOT_STATUS_MISSING;
1134 else
1135 *status = GOT_STATUS_DELETE;
1136 goto done;
1138 err = got_error_from_errno2("fstatat", abspath);
1139 goto done;
1141 } else {
1142 fd = open(abspath, O_RDONLY | O_NOFOLLOW);
1143 if (fd == -1 && errno != ENOENT)
1144 return got_error_from_errno2("open", abspath);
1145 if (fd == -1 || fstat(fd, sb) == -1) {
1146 if (errno == ENOENT) {
1147 if (got_fileindex_entry_has_file_on_disk(ie))
1148 *status = GOT_STATUS_MISSING;
1149 else
1150 *status = GOT_STATUS_DELETE;
1151 goto done;
1153 err = got_error_from_errno2("fstat", abspath);
1154 goto done;
1158 if (!S_ISREG(sb->st_mode)) {
1159 *status = GOT_STATUS_OBSTRUCTED;
1160 goto done;
1163 if (!got_fileindex_entry_has_file_on_disk(ie)) {
1164 *status = GOT_STATUS_DELETE;
1165 goto done;
1166 } else if (!got_fileindex_entry_has_blob(ie) &&
1167 staged_status != GOT_STATUS_ADD) {
1168 *status = GOT_STATUS_ADD;
1169 goto done;
1172 if (!stat_info_differs(ie, sb))
1173 goto done;
1175 if (staged_status == GOT_STATUS_MODIFY ||
1176 staged_status == GOT_STATUS_ADD)
1177 memcpy(id.sha1, ie->staged_blob_sha1, sizeof(id.sha1));
1178 else
1179 memcpy(id.sha1, ie->blob_sha1, sizeof(id.sha1));
1181 err = got_object_open_as_blob(&blob, repo, &id, sizeof(fbuf));
1182 if (err)
1183 goto done;
1185 if (dirfd != -1) {
1186 fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
1187 if (fd == -1) {
1188 err = got_error_from_errno2("openat", abspath);
1189 goto done;
1193 f = fdopen(fd, "r");
1194 if (f == NULL) {
1195 err = got_error_from_errno2("fdopen", abspath);
1196 goto done;
1198 fd = -1;
1199 hdrlen = got_object_blob_get_hdrlen(blob);
1200 for (;;) {
1201 const uint8_t *bbuf = got_object_blob_get_read_buf(blob);
1202 err = got_object_blob_read_block(&blen, blob);
1203 if (err)
1204 goto done;
1205 /* Skip length of blob object header first time around. */
1206 flen = fread(fbuf, 1, sizeof(fbuf) - hdrlen, f);
1207 if (flen == 0 && ferror(f)) {
1208 err = got_error_from_errno("fread");
1209 goto done;
1211 if (blen == 0) {
1212 if (flen != 0)
1213 *status = GOT_STATUS_MODIFY;
1214 break;
1215 } else if (flen == 0) {
1216 if (blen != 0)
1217 *status = GOT_STATUS_MODIFY;
1218 break;
1219 } else if (blen - hdrlen == flen) {
1220 /* Skip blob object header first time around. */
1221 if (memcmp(bbuf + hdrlen, fbuf, flen) != 0) {
1222 *status = GOT_STATUS_MODIFY;
1223 break;
1225 } else {
1226 *status = GOT_STATUS_MODIFY;
1227 break;
1229 hdrlen = 0;
1232 if (*status == GOT_STATUS_MODIFY) {
1233 rewind(f);
1234 err = get_modified_file_content_status(status, f);
1235 } else if (xbit_differs(ie, sb->st_mode))
1236 *status = GOT_STATUS_MODE_CHANGE;
1237 done:
1238 if (blob)
1239 got_object_blob_close(blob);
1240 if (f != NULL && fclose(f) == EOF && err == NULL)
1241 err = got_error_from_errno2("fclose", abspath);
1242 if (fd != -1 && close(fd) == -1 && err == NULL)
1243 err = got_error_from_errno2("close", abspath);
1244 return err;
1248 * Update timestamps in the file index if a file is unmodified and
1249 * we had to run a full content comparison to find out.
1251 static const struct got_error *
1252 sync_timestamps(char *ondisk_path, unsigned char status,
1253 struct got_fileindex_entry *ie, struct stat *sb)
1255 if (status == GOT_STATUS_NO_CHANGE && stat_info_differs(ie, sb))
1256 return got_fileindex_entry_update(ie, ondisk_path,
1257 ie->blob_sha1, ie->commit_sha1, 1);
1259 return NULL;
1262 static const struct got_error *
1263 update_blob(struct got_worktree *worktree,
1264 struct got_fileindex *fileindex, struct got_fileindex_entry *ie,
1265 struct got_tree_entry *te, const char *path,
1266 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1267 void *progress_arg)
1269 const struct got_error *err = NULL;
1270 struct got_blob_object *blob = NULL;
1271 char *ondisk_path;
1272 unsigned char status = GOT_STATUS_NO_CHANGE;
1273 struct stat sb;
1275 if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, path) == -1)
1276 return got_error_from_errno("asprintf");
1278 if (ie) {
1279 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE) {
1280 err = got_error_path(ie->path, GOT_ERR_FILE_STAGED);
1281 goto done;
1283 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
1284 repo);
1285 if (err)
1286 goto done;
1287 if (status == GOT_STATUS_MISSING || status == GOT_STATUS_DELETE)
1288 sb.st_mode = got_fileindex_perms_to_st(ie);
1289 } else
1290 sb.st_mode = GOT_DEFAULT_FILE_MODE;
1292 if (status == GOT_STATUS_OBSTRUCTED) {
1293 err = (*progress_cb)(progress_arg, status, path);
1294 goto done;
1297 if (ie && status != GOT_STATUS_MISSING &&
1298 (te->mode & S_IXUSR) == (sb.st_mode & S_IXUSR)) {
1299 if (got_fileindex_entry_has_commit(ie) &&
1300 memcmp(ie->commit_sha1, worktree->base_commit_id->sha1,
1301 SHA1_DIGEST_LENGTH) == 0) {
1302 err = sync_timestamps(ondisk_path, status, ie, &sb);
1303 if (err)
1304 goto done;
1305 err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS,
1306 path);
1307 goto done;
1309 if (got_fileindex_entry_has_blob(ie) &&
1310 memcmp(ie->blob_sha1, te->id.sha1,
1311 SHA1_DIGEST_LENGTH) == 0) {
1312 err = sync_timestamps(ondisk_path, status, ie, &sb);
1313 goto done;
1317 err = got_object_open_as_blob(&blob, repo, &te->id, 8192);
1318 if (err)
1319 goto done;
1321 if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_ADD) {
1322 int update_timestamps;
1323 struct got_blob_object *blob2 = NULL;
1324 char *label_orig = NULL;
1325 if (got_fileindex_entry_has_blob(ie)) {
1326 struct got_object_id id2;
1327 memcpy(id2.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
1328 err = got_object_open_as_blob(&blob2, repo, &id2, 8192);
1329 if (err)
1330 goto done;
1332 if (got_fileindex_entry_has_commit(ie)) {
1333 char id_str[SHA1_DIGEST_STRING_LENGTH];
1334 if (got_sha1_digest_to_str(ie->commit_sha1, id_str,
1335 sizeof(id_str)) == NULL) {
1336 err = got_error_path(id_str,
1337 GOT_ERR_BAD_OBJ_ID_STR);
1338 goto done;
1340 if (asprintf(&label_orig, "%s: commit %s",
1341 GOT_MERGE_LABEL_BASE, id_str) == -1) {
1342 err = got_error_from_errno("asprintf");
1343 goto done;
1346 err = merge_blob(&update_timestamps, worktree, blob2,
1347 ondisk_path, path, sb.st_mode, label_orig, blob,
1348 worktree->base_commit_id, repo,
1349 progress_cb, progress_arg);
1350 free(label_orig);
1351 if (blob2)
1352 got_object_blob_close(blob2);
1353 if (err)
1354 goto done;
1356 * Do not update timestamps of files with local changes.
1357 * Otherwise, a future status walk would treat them as
1358 * unmodified files again.
1360 err = got_fileindex_entry_update(ie, ondisk_path,
1361 blob->id.sha1, worktree->base_commit_id->sha1,
1362 update_timestamps);
1363 } else if (status == GOT_STATUS_MODE_CHANGE) {
1364 err = got_fileindex_entry_update(ie, ondisk_path,
1365 blob->id.sha1, worktree->base_commit_id->sha1, 0);
1366 } else if (status == GOT_STATUS_DELETE) {
1367 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, path);
1368 if (err)
1369 goto done;
1370 err = update_blob_fileindex_entry(worktree, fileindex, ie,
1371 ondisk_path, path, blob, 0);
1372 if (err)
1373 goto done;
1374 } else {
1375 err = install_blob(worktree, ondisk_path, path, te->mode,
1376 sb.st_mode, blob, status == GOT_STATUS_MISSING, 0,
1377 repo, progress_cb, progress_arg);
1378 if (err)
1379 goto done;
1380 err = update_blob_fileindex_entry(worktree, fileindex, ie,
1381 ondisk_path, path, blob, 1);
1382 if (err)
1383 goto done;
1385 got_object_blob_close(blob);
1386 done:
1387 free(ondisk_path);
1388 return err;
1391 static const struct got_error *
1392 remove_ondisk_file(const char *root_path, const char *path)
1394 const struct got_error *err = NULL;
1395 char *ondisk_path = NULL;
1397 if (asprintf(&ondisk_path, "%s/%s", root_path, path) == -1)
1398 return got_error_from_errno("asprintf");
1400 if (unlink(ondisk_path) == -1) {
1401 if (errno != ENOENT)
1402 err = got_error_from_errno2("unlink", ondisk_path);
1403 } else {
1404 char *parent = dirname(ondisk_path);
1405 while (parent && strcmp(parent, root_path) != 0) {
1406 if (rmdir(parent) == -1) {
1407 if (errno != ENOTEMPTY)
1408 err = got_error_from_errno2("rmdir",
1409 parent);
1410 break;
1412 parent = dirname(parent);
1415 free(ondisk_path);
1416 return err;
1419 static const struct got_error *
1420 delete_blob(struct got_worktree *worktree, struct got_fileindex *fileindex,
1421 struct got_fileindex_entry *ie, struct got_repository *repo,
1422 got_worktree_checkout_cb progress_cb, void *progress_arg)
1424 const struct got_error *err = NULL;
1425 unsigned char status;
1426 struct stat sb;
1427 char *ondisk_path;
1429 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
1430 return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
1432 if (asprintf(&ondisk_path, "%s/%s", worktree->root_path, ie->path)
1433 == -1)
1434 return got_error_from_errno("asprintf");
1436 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, repo);
1437 if (err)
1438 return err;
1440 if (status == GOT_STATUS_MODIFY || status == GOT_STATUS_CONFLICT ||
1441 status == GOT_STATUS_ADD) {
1442 err = (*progress_cb)(progress_arg, GOT_STATUS_MERGE, ie->path);
1443 if (err)
1444 return err;
1446 * Preserve the working file and change the deleted blob's
1447 * entry into a schedule-add entry.
1449 err = got_fileindex_entry_update(ie, ondisk_path, NULL, NULL,
1450 0);
1451 if (err)
1452 return err;
1453 } else {
1454 err = (*progress_cb)(progress_arg, GOT_STATUS_DELETE, ie->path);
1455 if (err)
1456 return err;
1457 if (status == GOT_STATUS_NO_CHANGE) {
1458 err = remove_ondisk_file(worktree->root_path, ie->path);
1459 if (err)
1460 return err;
1462 got_fileindex_entry_remove(fileindex, ie);
1465 return err;
1468 struct diff_cb_arg {
1469 struct got_fileindex *fileindex;
1470 struct got_worktree *worktree;
1471 struct got_repository *repo;
1472 got_worktree_checkout_cb progress_cb;
1473 void *progress_arg;
1474 got_cancel_cb cancel_cb;
1475 void *cancel_arg;
1478 static const struct got_error *
1479 diff_old_new(void *arg, struct got_fileindex_entry *ie,
1480 struct got_tree_entry *te, const char *parent_path)
1482 struct diff_cb_arg *a = arg;
1484 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1485 return got_error(GOT_ERR_CANCELLED);
1487 return update_blob(a->worktree, a->fileindex, ie, te,
1488 ie->path, a->repo, a->progress_cb, a->progress_arg);
1491 static const struct got_error *
1492 diff_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
1494 struct diff_cb_arg *a = arg;
1496 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1497 return got_error(GOT_ERR_CANCELLED);
1499 return delete_blob(a->worktree, a->fileindex, ie,
1500 a->repo, a->progress_cb, a->progress_arg);
1503 static const struct got_error *
1504 diff_new(void *arg, struct got_tree_entry *te, const char *parent_path)
1506 struct diff_cb_arg *a = arg;
1507 const struct got_error *err;
1508 char *path;
1510 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
1511 return got_error(GOT_ERR_CANCELLED);
1513 if (got_object_tree_entry_is_submodule(te))
1514 return NULL;
1516 if (asprintf(&path, "%s%s%s", parent_path,
1517 parent_path[0] ? "/" : "", te->name)
1518 == -1)
1519 return got_error_from_errno("asprintf");
1521 if (S_ISDIR(te->mode))
1522 err = add_dir_on_disk(a->worktree, path);
1523 else
1524 err = update_blob(a->worktree, a->fileindex, NULL, te, path,
1525 a->repo, a->progress_cb, a->progress_arg);
1527 free(path);
1528 return err;
1531 static const struct got_error *
1532 get_ref_name(char **refname, struct got_worktree *worktree, const char *prefix)
1534 const struct got_error *err = NULL;
1535 char *uuidstr = NULL;
1536 uint32_t uuid_status;
1538 *refname = NULL;
1540 uuid_to_string(&worktree->uuid, &uuidstr, &uuid_status);
1541 if (uuid_status != uuid_s_ok)
1542 return got_error_uuid(uuid_status, "uuid_to_string");
1544 if (asprintf(refname, "%s-%s", prefix, uuidstr)
1545 == -1) {
1546 err = got_error_from_errno("asprintf");
1547 *refname = NULL;
1549 free(uuidstr);
1550 return err;
1553 const struct got_error *
1554 got_worktree_get_base_ref_name(char **refname, struct got_worktree *worktree)
1556 return get_ref_name(refname, worktree, GOT_WORKTREE_BASE_REF_PREFIX);
1559 static const struct got_error *
1560 get_rebase_tmp_ref_name(char **refname, struct got_worktree *worktree)
1562 return get_ref_name(refname, worktree,
1563 GOT_WORKTREE_REBASE_TMP_REF_PREFIX);
1566 static const struct got_error *
1567 get_newbase_symref_name(char **refname, struct got_worktree *worktree)
1569 return get_ref_name(refname, worktree, GOT_WORKTREE_NEWBASE_REF_PREFIX);
1572 static const struct got_error *
1573 get_rebase_branch_symref_name(char **refname, struct got_worktree *worktree)
1575 return get_ref_name(refname, worktree,
1576 GOT_WORKTREE_REBASE_BRANCH_REF_PREFIX);
1579 static const struct got_error *
1580 get_rebase_commit_ref_name(char **refname, struct got_worktree *worktree)
1582 return get_ref_name(refname, worktree,
1583 GOT_WORKTREE_REBASE_COMMIT_REF_PREFIX);
1586 static const struct got_error *
1587 get_histedit_tmp_ref_name(char **refname, struct got_worktree *worktree)
1589 return get_ref_name(refname, worktree,
1590 GOT_WORKTREE_HISTEDIT_TMP_REF_PREFIX);
1593 static const struct got_error *
1594 get_histedit_branch_symref_name(char **refname, struct got_worktree *worktree)
1596 return get_ref_name(refname, worktree,
1597 GOT_WORKTREE_HISTEDIT_BRANCH_REF_PREFIX);
1600 static const struct got_error *
1601 get_histedit_base_commit_ref_name(char **refname, struct got_worktree *worktree)
1603 return get_ref_name(refname, worktree,
1604 GOT_WORKTREE_HISTEDIT_BASE_COMMIT_REF_PREFIX);
1607 static const struct got_error *
1608 get_histedit_commit_ref_name(char **refname, struct got_worktree *worktree)
1610 return get_ref_name(refname, worktree,
1611 GOT_WORKTREE_HISTEDIT_COMMIT_REF_PREFIX);
1614 const struct got_error *
1615 got_worktree_get_histedit_script_path(char **path,
1616 struct got_worktree *worktree)
1618 if (asprintf(path, "%s/%s/%s", worktree->root_path,
1619 GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_HISTEDIT_SCRIPT) == -1) {
1620 *path = NULL;
1621 return got_error_from_errno("asprintf");
1623 return NULL;
1627 * Prevent Git's garbage collector from deleting our base commit by
1628 * setting a reference to our base commit's ID.
1630 static const struct got_error *
1631 ref_base_commit(struct got_worktree *worktree, struct got_repository *repo)
1633 const struct got_error *err = NULL;
1634 struct got_reference *ref = NULL;
1635 char *refname;
1637 err = got_worktree_get_base_ref_name(&refname, worktree);
1638 if (err)
1639 return err;
1641 err = got_ref_alloc(&ref, refname, worktree->base_commit_id);
1642 if (err)
1643 goto done;
1645 err = got_ref_write(ref, repo);
1646 done:
1647 free(refname);
1648 if (ref)
1649 got_ref_close(ref);
1650 return err;
1653 static const struct got_error *
1654 get_fileindex_path(char **fileindex_path, struct got_worktree *worktree)
1656 const struct got_error *err = NULL;
1658 if (asprintf(fileindex_path, "%s/%s/%s", worktree->root_path,
1659 GOT_WORKTREE_GOT_DIR, GOT_WORKTREE_FILE_INDEX) == -1) {
1660 err = got_error_from_errno("asprintf");
1661 *fileindex_path = NULL;
1663 return err;
1667 static const struct got_error *
1668 open_fileindex(struct got_fileindex **fileindex, char **fileindex_path,
1669 struct got_worktree *worktree)
1671 const struct got_error *err = NULL;
1672 FILE *index = NULL;
1674 *fileindex_path = NULL;
1675 *fileindex = got_fileindex_alloc();
1676 if (*fileindex == NULL)
1677 return got_error_from_errno("got_fileindex_alloc");
1679 err = get_fileindex_path(fileindex_path, worktree);
1680 if (err)
1681 goto done;
1683 index = fopen(*fileindex_path, "rb");
1684 if (index == NULL) {
1685 if (errno != ENOENT)
1686 err = got_error_from_errno2("fopen", *fileindex_path);
1687 } else {
1688 err = got_fileindex_read(*fileindex, index);
1689 if (fclose(index) != 0 && err == NULL)
1690 err = got_error_from_errno("fclose");
1692 done:
1693 if (err) {
1694 free(*fileindex_path);
1695 *fileindex_path = NULL;
1696 got_fileindex_free(*fileindex);
1697 *fileindex = NULL;
1699 return err;
1702 struct bump_base_commit_id_arg {
1703 struct got_object_id *base_commit_id;
1704 const char *path;
1705 size_t path_len;
1706 const char *entry_name;
1707 got_worktree_checkout_cb progress_cb;
1708 void *progress_arg;
1711 /* Bump base commit ID of all files within an updated part of the work tree. */
1712 static const struct got_error *
1713 bump_base_commit_id(void *arg, struct got_fileindex_entry *ie)
1715 const struct got_error *err;
1716 struct bump_base_commit_id_arg *a = arg;
1718 if (a->entry_name) {
1719 if (strcmp(ie->path, a->path) != 0)
1720 return NULL;
1721 } else if (!got_path_is_child(ie->path, a->path, a->path_len))
1722 return NULL;
1724 if (memcmp(ie->commit_sha1, a->base_commit_id->sha1,
1725 SHA1_DIGEST_LENGTH) == 0)
1726 return NULL;
1728 if (a->progress_cb) {
1729 err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_BUMP_BASE,
1730 ie->path);
1731 if (err)
1732 return err;
1734 memcpy(ie->commit_sha1, a->base_commit_id->sha1, SHA1_DIGEST_LENGTH);
1735 return NULL;
1738 static const struct got_error *
1739 sync_fileindex(struct got_fileindex *fileindex, const char *fileindex_path)
1741 const struct got_error *err = NULL;
1742 char *new_fileindex_path = NULL;
1743 FILE *new_index = NULL;
1745 err = got_opentemp_named(&new_fileindex_path, &new_index,
1746 fileindex_path);
1747 if (err)
1748 goto done;
1750 err = got_fileindex_write(fileindex, new_index);
1751 if (err)
1752 goto done;
1754 if (rename(new_fileindex_path, fileindex_path) != 0) {
1755 err = got_error_from_errno3("rename", new_fileindex_path,
1756 fileindex_path);
1757 unlink(new_fileindex_path);
1759 done:
1760 if (new_index)
1761 fclose(new_index);
1762 free(new_fileindex_path);
1763 return err;
1766 static const struct got_error *
1767 find_tree_entry_for_checkout(int *entry_type, char **tree_relpath,
1768 struct got_object_id **tree_id, const char *wt_relpath,
1769 struct got_worktree *worktree, struct got_repository *repo)
1771 const struct got_error *err = NULL;
1772 struct got_object_id *id = NULL;
1773 char *in_repo_path = NULL;
1774 int is_root_wt = got_path_is_root_dir(worktree->path_prefix);
1776 *entry_type = GOT_OBJ_TYPE_ANY;
1777 *tree_relpath = NULL;
1778 *tree_id = NULL;
1780 if (wt_relpath[0] == '\0') {
1781 /* Check out all files within the work tree. */
1782 *entry_type = GOT_OBJ_TYPE_TREE;
1783 *tree_relpath = strdup("");
1784 if (*tree_relpath == NULL) {
1785 err = got_error_from_errno("strdup");
1786 goto done;
1788 err = got_object_id_by_path(tree_id, repo,
1789 worktree->base_commit_id, worktree->path_prefix);
1790 if (err)
1791 goto done;
1792 return NULL;
1795 /* Check out a subset of files in the work tree. */
1797 if (asprintf(&in_repo_path, "%s%s%s", worktree->path_prefix,
1798 is_root_wt ? "" : "/", wt_relpath) == -1) {
1799 err = got_error_from_errno("asprintf");
1800 goto done;
1803 err = got_object_id_by_path(&id, repo, worktree->base_commit_id,
1804 in_repo_path);
1805 if (err)
1806 goto done;
1808 free(in_repo_path);
1809 in_repo_path = NULL;
1811 err = got_object_get_type(entry_type, repo, id);
1812 if (err)
1813 goto done;
1815 if (*entry_type == GOT_OBJ_TYPE_BLOB) {
1816 /* Check out a single file. */
1817 if (strchr(wt_relpath, '/') == NULL) {
1818 /* Check out a single file in work tree's root dir. */
1819 in_repo_path = strdup(worktree->path_prefix);
1820 if (in_repo_path == NULL) {
1821 err = got_error_from_errno("strdup");
1822 goto done;
1824 *tree_relpath = strdup("");
1825 if (*tree_relpath == NULL) {
1826 err = got_error_from_errno("strdup");
1827 goto done;
1829 } else {
1830 /* Check out a single file in a subdirectory. */
1831 err = got_path_dirname(tree_relpath, wt_relpath);
1832 if (err)
1833 return err;
1834 if (asprintf(&in_repo_path, "%s%s%s",
1835 worktree->path_prefix, is_root_wt ? "" : "/",
1836 *tree_relpath) == -1) {
1837 err = got_error_from_errno("asprintf");
1838 goto done;
1841 err = got_object_id_by_path(tree_id, repo,
1842 worktree->base_commit_id, in_repo_path);
1843 } else {
1844 /* Check out all files within a subdirectory. */
1845 *tree_id = got_object_id_dup(id);
1846 if (*tree_id == NULL) {
1847 err = got_error_from_errno("got_object_id_dup");
1848 goto done;
1850 *tree_relpath = strdup(wt_relpath);
1851 if (*tree_relpath == NULL) {
1852 err = got_error_from_errno("strdup");
1853 goto done;
1856 done:
1857 free(id);
1858 free(in_repo_path);
1859 if (err) {
1860 *entry_type = GOT_OBJ_TYPE_ANY;
1861 free(*tree_relpath);
1862 *tree_relpath = NULL;
1863 free(*tree_id);
1864 *tree_id = NULL;
1866 return err;
1869 static const struct got_error *
1870 checkout_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
1871 const char *relpath, struct got_object_id *tree_id, const char *entry_name,
1872 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
1873 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
1875 const struct got_error *err = NULL;
1876 struct got_commit_object *commit = NULL;
1877 struct got_tree_object *tree = NULL;
1878 struct got_fileindex_diff_tree_cb diff_cb;
1879 struct diff_cb_arg arg;
1881 err = ref_base_commit(worktree, repo);
1882 if (err)
1883 goto done;
1885 err = got_object_open_as_commit(&commit, repo,
1886 worktree->base_commit_id);
1887 if (err)
1888 goto done;
1890 err = got_object_open_as_tree(&tree, repo, tree_id);
1891 if (err)
1892 goto done;
1894 if (entry_name &&
1895 got_object_tree_find_entry(tree, entry_name) == NULL) {
1896 err = got_error(GOT_ERR_NO_TREE_ENTRY);
1897 goto done;
1900 diff_cb.diff_old_new = diff_old_new;
1901 diff_cb.diff_old = diff_old;
1902 diff_cb.diff_new = diff_new;
1903 arg.fileindex = fileindex;
1904 arg.worktree = worktree;
1905 arg.repo = repo;
1906 arg.progress_cb = progress_cb;
1907 arg.progress_arg = progress_arg;
1908 arg.cancel_cb = cancel_cb;
1909 arg.cancel_arg = cancel_arg;
1910 err = got_fileindex_diff_tree(fileindex, tree, relpath,
1911 entry_name, repo, &diff_cb, &arg);
1912 done:
1913 if (tree)
1914 got_object_tree_close(tree);
1915 if (commit)
1916 got_object_commit_close(commit);
1917 return err;
1920 const struct got_error *
1921 got_worktree_checkout_files(struct got_worktree *worktree,
1922 struct got_pathlist_head *paths, struct got_repository *repo,
1923 got_worktree_checkout_cb progress_cb, void *progress_arg,
1924 got_cancel_cb cancel_cb, void *cancel_arg)
1926 const struct got_error *err = NULL, *sync_err, *unlockerr;
1927 struct got_commit_object *commit = NULL;
1928 struct got_tree_object *tree = NULL;
1929 struct got_fileindex *fileindex = NULL;
1930 char *fileindex_path = NULL;
1931 struct got_pathlist_entry *pe;
1932 struct tree_path_data {
1933 SIMPLEQ_ENTRY(tree_path_data) entry;
1934 struct got_object_id *tree_id;
1935 int entry_type;
1936 char *relpath;
1937 char *entry_name;
1938 } *tpd = NULL;
1939 SIMPLEQ_HEAD(tree_paths, tree_path_data) tree_paths;
1941 SIMPLEQ_INIT(&tree_paths);
1943 err = lock_worktree(worktree, LOCK_EX);
1944 if (err)
1945 return err;
1947 /* Map all specified paths to in-repository trees. */
1948 TAILQ_FOREACH(pe, paths, entry) {
1949 tpd = malloc(sizeof(*tpd));
1950 if (tpd == NULL) {
1951 err = got_error_from_errno("malloc");
1952 goto done;
1955 err = find_tree_entry_for_checkout(&tpd->entry_type,
1956 &tpd->relpath, &tpd->tree_id, pe->path, worktree, repo);
1957 if (err) {
1958 free(tpd);
1959 goto done;
1962 if (tpd->entry_type == GOT_OBJ_TYPE_BLOB) {
1963 err = got_path_basename(&tpd->entry_name, pe->path);
1964 if (err) {
1965 free(tpd->relpath);
1966 free(tpd->tree_id);
1967 free(tpd);
1968 goto done;
1970 } else
1971 tpd->entry_name = NULL;
1973 SIMPLEQ_INSERT_TAIL(&tree_paths, tpd, entry);
1977 * Read the file index.
1978 * Checking out files is supposed to be an idempotent operation.
1979 * If the on-disk file index is incomplete we will try to complete it.
1981 err = open_fileindex(&fileindex, &fileindex_path, worktree);
1982 if (err)
1983 goto done;
1985 tpd = SIMPLEQ_FIRST(&tree_paths);
1986 TAILQ_FOREACH(pe, paths, entry) {
1987 struct bump_base_commit_id_arg bbc_arg;
1989 err = checkout_files(worktree, fileindex, tpd->relpath,
1990 tpd->tree_id, tpd->entry_name, repo,
1991 progress_cb, progress_arg, cancel_cb, cancel_arg);
1992 if (err)
1993 break;
1995 bbc_arg.base_commit_id = worktree->base_commit_id;
1996 bbc_arg.entry_name = tpd->entry_name;
1997 bbc_arg.path = pe->path;
1998 bbc_arg.path_len = pe->path_len;
1999 bbc_arg.progress_cb = progress_cb;
2000 bbc_arg.progress_arg = progress_arg;
2001 err = got_fileindex_for_each_entry_safe(fileindex,
2002 bump_base_commit_id, &bbc_arg);
2003 if (err)
2004 break;
2006 tpd = SIMPLEQ_NEXT(tpd, entry);
2008 sync_err = sync_fileindex(fileindex, fileindex_path);
2009 if (sync_err && err == NULL)
2010 err = sync_err;
2011 done:
2012 free(fileindex_path);
2013 if (tree)
2014 got_object_tree_close(tree);
2015 if (commit)
2016 got_object_commit_close(commit);
2017 if (fileindex)
2018 got_fileindex_free(fileindex);
2019 while (!SIMPLEQ_EMPTY(&tree_paths)) {
2020 tpd = SIMPLEQ_FIRST(&tree_paths);
2021 SIMPLEQ_REMOVE_HEAD(&tree_paths, entry);
2022 free(tpd->relpath);
2023 free(tpd->tree_id);
2024 free(tpd);
2026 unlockerr = lock_worktree(worktree, LOCK_SH);
2027 if (unlockerr && err == NULL)
2028 err = unlockerr;
2029 return err;
2032 struct merge_file_cb_arg {
2033 struct got_worktree *worktree;
2034 struct got_fileindex *fileindex;
2035 got_worktree_checkout_cb progress_cb;
2036 void *progress_arg;
2037 got_cancel_cb cancel_cb;
2038 void *cancel_arg;
2039 const char *label_orig;
2040 struct got_object_id *commit_id2;
2043 static const struct got_error *
2044 merge_file_cb(void *arg, struct got_blob_object *blob1,
2045 struct got_blob_object *blob2, struct got_object_id *id1,
2046 struct got_object_id *id2, const char *path1, const char *path2,
2047 mode_t mode1, mode_t mode2, struct got_repository *repo)
2049 static const struct got_error *err = NULL;
2050 struct merge_file_cb_arg *a = arg;
2051 struct got_fileindex_entry *ie;
2052 char *ondisk_path = NULL;
2053 struct stat sb;
2054 unsigned char status;
2055 int local_changes_subsumed;
2057 if (blob1 && blob2) {
2058 ie = got_fileindex_entry_get(a->fileindex, path2,
2059 strlen(path2));
2060 if (ie == NULL)
2061 return (*a->progress_cb)(a->progress_arg,
2062 GOT_STATUS_MISSING, path2);
2064 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2065 path2) == -1)
2066 return got_error_from_errno("asprintf");
2068 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2069 repo);
2070 if (err)
2071 goto done;
2073 if (status == GOT_STATUS_DELETE) {
2074 err = (*a->progress_cb)(a->progress_arg,
2075 GOT_STATUS_MERGE, path2);
2076 goto done;
2078 if (status != GOT_STATUS_NO_CHANGE &&
2079 status != GOT_STATUS_MODIFY &&
2080 status != GOT_STATUS_CONFLICT &&
2081 status != GOT_STATUS_ADD) {
2082 err = (*a->progress_cb)(a->progress_arg, status, path2);
2083 goto done;
2086 err = merge_blob(&local_changes_subsumed, a->worktree, blob1,
2087 ondisk_path, path2, sb.st_mode, a->label_orig, blob2,
2088 a->commit_id2, repo, a->progress_cb, a->progress_arg);
2089 } else if (blob1) {
2090 ie = got_fileindex_entry_get(a->fileindex, path1,
2091 strlen(path1));
2092 if (ie == NULL)
2093 return (*a->progress_cb)(a->progress_arg,
2094 GOT_STATUS_MISSING, path2);
2096 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2097 path1) == -1)
2098 return got_error_from_errno("asprintf");
2100 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL,
2101 repo);
2102 if (err)
2103 goto done;
2105 switch (status) {
2106 case GOT_STATUS_NO_CHANGE:
2107 err = (*a->progress_cb)(a->progress_arg,
2108 GOT_STATUS_DELETE, path1);
2109 if (err)
2110 goto done;
2111 err = remove_ondisk_file(a->worktree->root_path, path1);
2112 if (err)
2113 goto done;
2114 if (ie)
2115 got_fileindex_entry_mark_deleted_from_disk(ie);
2116 break;
2117 case GOT_STATUS_DELETE:
2118 case GOT_STATUS_MISSING:
2119 err = (*a->progress_cb)(a->progress_arg,
2120 GOT_STATUS_DELETE, path1);
2121 if (err)
2122 goto done;
2123 if (ie)
2124 got_fileindex_entry_mark_deleted_from_disk(ie);
2125 break;
2126 case GOT_STATUS_ADD:
2127 case GOT_STATUS_MODIFY:
2128 case GOT_STATUS_CONFLICT:
2129 err = (*a->progress_cb)(a->progress_arg,
2130 GOT_STATUS_CANNOT_DELETE, path1);
2131 if (err)
2132 goto done;
2133 break;
2134 case GOT_STATUS_OBSTRUCTED:
2135 err = (*a->progress_cb)(a->progress_arg, status, path1);
2136 if (err)
2137 goto done;
2138 break;
2139 default:
2140 break;
2142 } else if (blob2) {
2143 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2144 path2) == -1)
2145 return got_error_from_errno("asprintf");
2146 ie = got_fileindex_entry_get(a->fileindex, path2,
2147 strlen(path2));
2148 if (ie) {
2149 err = get_file_status(&status, &sb, ie, ondisk_path,
2150 -1, NULL, repo);
2151 if (err)
2152 goto done;
2153 if (status != GOT_STATUS_NO_CHANGE &&
2154 status != GOT_STATUS_MODIFY &&
2155 status != GOT_STATUS_CONFLICT &&
2156 status != GOT_STATUS_ADD) {
2157 err = (*a->progress_cb)(a->progress_arg,
2158 status, path2);
2159 goto done;
2161 err = merge_blob(&local_changes_subsumed, a->worktree,
2162 NULL, ondisk_path, path2, sb.st_mode,
2163 a->label_orig, blob2, a->commit_id2, repo,
2164 a->progress_cb,
2165 a->progress_arg);
2166 if (status == GOT_STATUS_DELETE) {
2167 err = update_blob_fileindex_entry(a->worktree,
2168 a->fileindex, ie, ondisk_path, ie->path,
2169 blob2, 0);
2170 if (err)
2171 goto done;
2173 } else {
2174 sb.st_mode = GOT_DEFAULT_FILE_MODE;
2175 err = install_blob(a->worktree, ondisk_path, path2,
2176 /* XXX get this from parent tree! */
2177 GOT_DEFAULT_FILE_MODE,
2178 sb.st_mode, blob2, 0, 0, repo,
2179 a->progress_cb, a->progress_arg);
2180 if (err)
2181 goto done;
2182 err = got_fileindex_entry_alloc(&ie,
2183 ondisk_path, path2, NULL, NULL);
2184 if (err)
2185 goto done;
2186 err = got_fileindex_entry_add(a->fileindex, ie);
2187 if (err) {
2188 got_fileindex_entry_free(ie);
2189 goto done;
2193 done:
2194 free(ondisk_path);
2195 return err;
2198 struct check_merge_ok_arg {
2199 struct got_worktree *worktree;
2200 struct got_repository *repo;
2203 static const struct got_error *
2204 check_merge_ok(void *arg, struct got_fileindex_entry *ie)
2206 const struct got_error *err = NULL;
2207 struct check_merge_ok_arg *a = arg;
2208 unsigned char status;
2209 struct stat sb;
2210 char *ondisk_path;
2212 /* Reject merges into a work tree with mixed base commits. */
2213 if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
2214 SHA1_DIGEST_LENGTH))
2215 return got_error(GOT_ERR_MIXED_COMMITS);
2217 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
2218 == -1)
2219 return got_error_from_errno("asprintf");
2221 /* Reject merges into a work tree with conflicted files. */
2222 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
2223 if (err)
2224 return err;
2225 if (status == GOT_STATUS_CONFLICT)
2226 return got_error(GOT_ERR_CONFLICTS);
2228 return NULL;
2231 static const struct got_error *
2232 merge_files(struct got_worktree *worktree, struct got_fileindex *fileindex,
2233 const char *fileindex_path, struct got_object_id *commit_id1,
2234 struct got_object_id *commit_id2, struct got_repository *repo,
2235 got_worktree_checkout_cb progress_cb, void *progress_arg,
2236 got_cancel_cb cancel_cb, void *cancel_arg)
2238 const struct got_error *err = NULL, *sync_err;
2239 struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
2240 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
2241 struct merge_file_cb_arg arg;
2242 char *label_orig = NULL;
2244 if (commit_id1) {
2245 char *id_str;
2247 err = got_object_id_by_path(&tree_id1, repo, commit_id1,
2248 worktree->path_prefix);
2249 if (err)
2250 goto done;
2252 err = got_object_open_as_tree(&tree1, repo, tree_id1);
2253 if (err)
2254 goto done;
2256 err = got_object_id_str(&id_str, commit_id1);
2257 if (err)
2258 goto done;
2260 if (asprintf(&label_orig, "%s: commit %s",
2261 GOT_MERGE_LABEL_BASE, id_str) == -1) {
2262 err = got_error_from_errno("asprintf");
2263 free(id_str);
2264 goto done;
2266 free(id_str);
2269 err = got_object_id_by_path(&tree_id2, repo, commit_id2,
2270 worktree->path_prefix);
2271 if (err)
2272 goto done;
2274 err = got_object_open_as_tree(&tree2, repo, tree_id2);
2275 if (err)
2276 goto done;
2278 arg.worktree = worktree;
2279 arg.fileindex = fileindex;
2280 arg.progress_cb = progress_cb;
2281 arg.progress_arg = progress_arg;
2282 arg.cancel_cb = cancel_cb;
2283 arg.cancel_arg = cancel_arg;
2284 arg.label_orig = label_orig;
2285 arg.commit_id2 = commit_id2;
2286 err = got_diff_tree(tree1, tree2, "", "", repo, merge_file_cb, &arg, 1);
2287 sync_err = sync_fileindex(fileindex, fileindex_path);
2288 if (sync_err && err == NULL)
2289 err = sync_err;
2290 done:
2291 if (tree1)
2292 got_object_tree_close(tree1);
2293 if (tree2)
2294 got_object_tree_close(tree2);
2295 free(label_orig);
2296 return err;
2299 const struct got_error *
2300 got_worktree_merge_files(struct got_worktree *worktree,
2301 struct got_object_id *commit_id1, struct got_object_id *commit_id2,
2302 struct got_repository *repo, got_worktree_checkout_cb progress_cb,
2303 void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
2305 const struct got_error *err, *unlockerr;
2306 char *fileindex_path = NULL;
2307 struct got_fileindex *fileindex = NULL;
2308 struct check_merge_ok_arg mok_arg;
2310 err = lock_worktree(worktree, LOCK_EX);
2311 if (err)
2312 return err;
2314 err = open_fileindex(&fileindex, &fileindex_path, worktree);
2315 if (err)
2316 goto done;
2318 mok_arg.worktree = worktree;
2319 mok_arg.repo = repo;
2320 err = got_fileindex_for_each_entry_safe(fileindex, check_merge_ok,
2321 &mok_arg);
2322 if (err)
2323 goto done;
2325 err = merge_files(worktree, fileindex, fileindex_path, commit_id1,
2326 commit_id2, repo, progress_cb, progress_arg, cancel_cb, cancel_arg);
2327 done:
2328 if (fileindex)
2329 got_fileindex_free(fileindex);
2330 free(fileindex_path);
2331 unlockerr = lock_worktree(worktree, LOCK_SH);
2332 if (unlockerr && err == NULL)
2333 err = unlockerr;
2334 return err;
2337 struct diff_dir_cb_arg {
2338 struct got_fileindex *fileindex;
2339 struct got_worktree *worktree;
2340 const char *status_path;
2341 size_t status_path_len;
2342 struct got_repository *repo;
2343 got_worktree_status_cb status_cb;
2344 void *status_arg;
2345 got_cancel_cb cancel_cb;
2346 void *cancel_arg;
2347 /* A pathlist containing per-directory pathlists of ignore patterns. */
2348 struct got_pathlist_head ignores;
2349 int report_unchanged;
2352 static const struct got_error *
2353 report_file_status(struct got_fileindex_entry *ie, const char *abspath,
2354 int dirfd, const char *de_name,
2355 got_worktree_status_cb status_cb, void *status_arg,
2356 struct got_repository *repo, int report_unchanged)
2358 const struct got_error *err = NULL;
2359 unsigned char status = GOT_STATUS_NO_CHANGE;
2360 unsigned char staged_status = get_staged_status(ie);
2361 struct stat sb;
2362 struct got_object_id blob_id, commit_id, staged_blob_id;
2363 struct got_object_id *blob_idp = NULL, *commit_idp = NULL;
2364 struct got_object_id *staged_blob_idp = NULL;
2366 err = get_file_status(&status, &sb, ie, abspath, dirfd, de_name, repo);
2367 if (err)
2368 return err;
2370 if (status == GOT_STATUS_NO_CHANGE &&
2371 staged_status == GOT_STATUS_NO_CHANGE && !report_unchanged)
2372 return NULL;
2374 if (got_fileindex_entry_has_blob(ie)) {
2375 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2376 blob_idp = &blob_id;
2378 if (got_fileindex_entry_has_commit(ie)) {
2379 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
2380 commit_idp = &commit_id;
2382 if (staged_status == GOT_STATUS_ADD ||
2383 staged_status == GOT_STATUS_MODIFY) {
2384 memcpy(staged_blob_id.sha1, ie->staged_blob_sha1,
2385 SHA1_DIGEST_LENGTH);
2386 staged_blob_idp = &staged_blob_id;
2389 return (*status_cb)(status_arg, status, staged_status,
2390 ie->path, blob_idp, staged_blob_idp, commit_idp, dirfd, de_name);
2393 static const struct got_error *
2394 status_old_new(void *arg, struct got_fileindex_entry *ie,
2395 struct dirent *de, const char *parent_path, int dirfd)
2397 const struct got_error *err = NULL;
2398 struct diff_dir_cb_arg *a = arg;
2399 char *abspath;
2401 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2402 return got_error(GOT_ERR_CANCELLED);
2404 if (got_path_cmp(parent_path, a->status_path,
2405 strlen(parent_path), a->status_path_len) != 0 &&
2406 !got_path_is_child(parent_path, a->status_path, a->status_path_len))
2407 return NULL;
2409 if (parent_path[0]) {
2410 if (asprintf(&abspath, "%s/%s/%s", a->worktree->root_path,
2411 parent_path, de->d_name) == -1)
2412 return got_error_from_errno("asprintf");
2413 } else {
2414 if (asprintf(&abspath, "%s/%s", a->worktree->root_path,
2415 de->d_name) == -1)
2416 return got_error_from_errno("asprintf");
2419 err = report_file_status(ie, abspath, dirfd, de->d_name,
2420 a->status_cb, a->status_arg, a->repo, a->report_unchanged);
2421 free(abspath);
2422 return err;
2425 static const struct got_error *
2426 status_old(void *arg, struct got_fileindex_entry *ie, const char *parent_path)
2428 struct diff_dir_cb_arg *a = arg;
2429 struct got_object_id blob_id, commit_id;
2430 unsigned char status;
2432 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2433 return got_error(GOT_ERR_CANCELLED);
2435 if (!got_path_is_child(ie->path, a->status_path, a->status_path_len))
2436 return NULL;
2438 memcpy(blob_id.sha1, ie->blob_sha1, SHA1_DIGEST_LENGTH);
2439 memcpy(commit_id.sha1, ie->commit_sha1, SHA1_DIGEST_LENGTH);
2440 if (got_fileindex_entry_has_file_on_disk(ie))
2441 status = GOT_STATUS_MISSING;
2442 else
2443 status = GOT_STATUS_DELETE;
2444 return (*a->status_cb)(a->status_arg, status, get_staged_status(ie),
2445 ie->path, &blob_id, NULL, &commit_id, -1, NULL);
2448 void
2449 free_ignorelist(struct got_pathlist_head *ignorelist)
2451 struct got_pathlist_entry *pe;
2453 TAILQ_FOREACH(pe, ignorelist, entry)
2454 free((char *)pe->path);
2455 got_pathlist_free(ignorelist);
2458 void
2459 free_ignores(struct got_pathlist_head *ignores)
2461 struct got_pathlist_entry *pe;
2463 TAILQ_FOREACH(pe, ignores, entry) {
2464 struct got_pathlist_head *ignorelist = pe->data;
2465 free_ignorelist(ignorelist);
2466 free((char *)pe->path);
2468 got_pathlist_free(ignores);
2471 static const struct got_error *
2472 read_ignores(struct got_pathlist_head *ignores, const char *path, FILE *f)
2474 const struct got_error *err = NULL;
2475 struct got_pathlist_entry *pe = NULL;
2476 struct got_pathlist_head *ignorelist;
2477 char *line = NULL, *pattern, *dirpath = NULL;
2478 size_t linesize = 0;
2479 ssize_t linelen;
2481 ignorelist = calloc(1, sizeof(*ignorelist));
2482 if (ignorelist == NULL)
2483 return got_error_from_errno("calloc");
2484 TAILQ_INIT(ignorelist);
2486 while ((linelen = getline(&line, &linesize, f)) != -1) {
2487 if (linelen > 0 && line[linelen - 1] == '\n')
2488 line[linelen - 1] = '\0';
2490 /* Git's ignores may contain comments. */
2491 if (line[0] == '#')
2492 continue;
2494 /* Git's negated patterns are not (yet?) supported. */
2495 if (line[0] == '!')
2496 continue;
2498 if (asprintf(&pattern, "%s%s%s", path, path[0] ? "/" : "",
2499 line) == -1) {
2500 err = got_error_from_errno("asprintf");
2501 goto done;
2503 err = got_pathlist_insert(NULL, ignorelist, pattern, NULL);
2504 if (err)
2505 goto done;
2507 if (ferror(f)) {
2508 err = got_error_from_errno("getline");
2509 goto done;
2512 dirpath = strdup(path);
2513 if (dirpath == NULL) {
2514 err = got_error_from_errno("strdup");
2515 goto done;
2517 err = got_pathlist_insert(&pe, ignores, dirpath, ignorelist);
2518 done:
2519 free(line);
2520 if (err || pe == NULL) {
2521 free(dirpath);
2522 free_ignorelist(ignorelist);
2524 return err;
2527 int
2528 match_ignores(struct got_pathlist_head *ignores, const char *path)
2530 struct got_pathlist_entry *pe;
2532 /* Handle patterns which match in all directories. */
2533 TAILQ_FOREACH(pe, ignores, entry) {
2534 struct got_pathlist_head *ignorelist = pe->data;
2535 struct got_pathlist_entry *pi;
2537 TAILQ_FOREACH(pi, ignorelist, entry) {
2538 const char *p, *pattern = pi->path;
2540 if (strncmp(pattern, "**/", 3) != 0)
2541 continue;
2542 pattern += 3;
2543 p = path;
2544 while (*p) {
2545 if (fnmatch(pattern, p,
2546 FNM_PATHNAME | FNM_LEADING_DIR)) {
2547 /* Retry in next directory. */
2548 while (*p && *p != '/')
2549 p++;
2550 while (*p == '/')
2551 p++;
2552 continue;
2554 return 1;
2560 * The ignores pathlist contains ignore lists from children before
2561 * parents, so we can find the most specific ignorelist by walking
2562 * ignores backwards.
2564 pe = TAILQ_LAST(ignores, got_pathlist_head);
2565 while (pe) {
2566 if (got_path_is_child(path, pe->path, pe->path_len)) {
2567 struct got_pathlist_head *ignorelist = pe->data;
2568 struct got_pathlist_entry *pi;
2569 TAILQ_FOREACH(pi, ignorelist, entry) {
2570 const char *pattern = pi->path;
2571 int flags = FNM_LEADING_DIR;
2572 if (strstr(pattern, "/**/") == NULL)
2573 flags |= FNM_PATHNAME;
2574 if (fnmatch(pattern, path, flags))
2575 continue;
2576 return 1;
2579 pe = TAILQ_PREV(pe, got_pathlist_head, entry);
2582 return 0;
2585 static const struct got_error *
2586 add_ignores(struct got_pathlist_head *ignores, const char *root_path,
2587 const char *path, int dirfd, const char *ignores_filename)
2589 const struct got_error *err = NULL;
2590 char *ignorespath;
2591 int fd = -1;
2592 FILE *ignoresfile = NULL;
2594 if (asprintf(&ignorespath, "%s/%s%s%s", root_path, path,
2595 path[0] ? "/" : "", ignores_filename) == -1)
2596 return got_error_from_errno("asprintf");
2598 if (dirfd != -1) {
2599 fd = openat(dirfd, ignores_filename, O_RDONLY | O_NOFOLLOW);
2600 if (fd == -1) {
2601 if (errno != ENOENT && errno != EACCES)
2602 err = got_error_from_errno2("openat",
2603 ignorespath);
2604 } else {
2605 ignoresfile = fdopen(fd, "r");
2606 if (ignoresfile == NULL)
2607 err = got_error_from_errno2("fdopen",
2608 ignorespath);
2609 else {
2610 fd = -1;
2611 err = read_ignores(ignores, path, ignoresfile);
2614 } else {
2615 ignoresfile = fopen(ignorespath, "r");
2616 if (ignoresfile == NULL) {
2617 if (errno != ENOENT && errno != EACCES)
2618 err = got_error_from_errno2("fopen",
2619 ignorespath);
2620 } else
2621 err = read_ignores(ignores, path, ignoresfile);
2624 if (ignoresfile && fclose(ignoresfile) == EOF && err == NULL)
2625 err = got_error_from_errno2("fclose", path);
2626 if (fd != -1 && close(fd) == -1 && err == NULL)
2627 err = got_error_from_errno2("close", path);
2628 free(ignorespath);
2629 return err;
2632 static const struct got_error *
2633 status_new(void *arg, struct dirent *de, const char *parent_path, int dirfd)
2635 const struct got_error *err = NULL;
2636 struct diff_dir_cb_arg *a = arg;
2637 char *path = NULL;
2639 if (a->cancel_cb && a->cancel_cb(a->cancel_arg))
2640 return got_error(GOT_ERR_CANCELLED);
2642 /* XXX ignore symlinks for now */
2643 if (de->d_type == DT_LNK)
2644 return NULL;
2646 if (parent_path[0]) {
2647 if (asprintf(&path, "%s/%s", parent_path, de->d_name) == -1)
2648 return got_error_from_errno("asprintf");
2649 } else {
2650 path = de->d_name;
2653 if (de->d_type == DT_DIR) {
2654 int subdirfd = openat(dirfd, de->d_name,
2655 O_RDONLY | O_NOFOLLOW | O_DIRECTORY);
2656 if (subdirfd == -1) {
2657 if (errno != ENOENT && errno != EACCES)
2658 err = got_error_from_errno2("openat", path);
2659 } else {
2660 err = add_ignores(&a->ignores, a->worktree->root_path,
2661 path, subdirfd, ".cvsignore");
2662 if (err == NULL)
2663 err = add_ignores(&a->ignores,
2664 a->worktree->root_path, path,
2665 subdirfd, ".gitignore");
2666 if (close(subdirfd) == -1 && err == NULL)
2667 err = got_error_from_errno2("close", path);
2669 } else if (got_path_is_child(path, a->status_path, a->status_path_len)
2670 && !match_ignores(&a->ignores, path))
2671 err = (*a->status_cb)(a->status_arg, GOT_STATUS_UNVERSIONED,
2672 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
2673 if (parent_path[0])
2674 free(path);
2675 return err;
2678 static const struct got_error *
2679 report_single_file_status(const char *path, const char *ondisk_path,
2680 struct got_fileindex *fileindex, got_worktree_status_cb status_cb,
2681 void *status_arg, struct got_repository *repo, int report_unchanged)
2683 struct got_fileindex_entry *ie;
2684 struct stat sb;
2686 ie = got_fileindex_entry_get(fileindex, path, strlen(path));
2687 if (ie)
2688 return report_file_status(ie, ondisk_path, -1, NULL,
2689 status_cb, status_arg, repo, report_unchanged);
2691 if (lstat(ondisk_path, &sb) == -1) {
2692 if (errno != ENOENT)
2693 return got_error_from_errno2("lstat", ondisk_path);
2694 return (*status_cb)(status_arg, GOT_STATUS_NONEXISTENT,
2695 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
2696 return NULL;
2699 if (S_ISREG(sb.st_mode))
2700 return (*status_cb)(status_arg, GOT_STATUS_UNVERSIONED,
2701 GOT_STATUS_NO_CHANGE, path, NULL, NULL, NULL, -1, NULL);
2703 return NULL;
2706 static const struct got_error *
2707 worktree_status(struct got_worktree *worktree, const char *path,
2708 struct got_fileindex *fileindex, struct got_repository *repo,
2709 got_worktree_status_cb status_cb, void *status_arg,
2710 got_cancel_cb cancel_cb, void *cancel_arg, int no_ignores,
2711 int report_unchanged)
2713 const struct got_error *err = NULL;
2714 int fd = -1;
2715 struct got_fileindex_diff_dir_cb fdiff_cb;
2716 struct diff_dir_cb_arg arg;
2717 char *ondisk_path = NULL;
2719 if (asprintf(&ondisk_path, "%s%s%s",
2720 worktree->root_path, path[0] ? "/" : "", path) == -1)
2721 return got_error_from_errno("asprintf");
2723 fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_DIRECTORY);
2724 if (fd == -1) {
2725 if (errno != ENOTDIR && errno != ENOENT && errno != EACCES)
2726 err = got_error_from_errno2("open", ondisk_path);
2727 else
2728 err = report_single_file_status(path, ondisk_path,
2729 fileindex, status_cb, status_arg, repo,
2730 report_unchanged);
2731 } else {
2732 fdiff_cb.diff_old_new = status_old_new;
2733 fdiff_cb.diff_old = status_old;
2734 fdiff_cb.diff_new = status_new;
2735 arg.fileindex = fileindex;
2736 arg.worktree = worktree;
2737 arg.status_path = path;
2738 arg.status_path_len = strlen(path);
2739 arg.repo = repo;
2740 arg.status_cb = status_cb;
2741 arg.status_arg = status_arg;
2742 arg.cancel_cb = cancel_cb;
2743 arg.cancel_arg = cancel_arg;
2744 arg.report_unchanged = report_unchanged;
2745 TAILQ_INIT(&arg.ignores);
2746 if (!no_ignores) {
2747 err = add_ignores(&arg.ignores, worktree->root_path,
2748 path, fd, ".cvsignore");
2749 if (err == NULL)
2750 err = add_ignores(&arg.ignores,
2751 worktree->root_path, path, fd,
2752 ".gitignore");
2754 if (err == NULL)
2755 err = got_fileindex_diff_dir(fileindex, fd,
2756 worktree->root_path, path, repo, &fdiff_cb, &arg);
2757 free_ignores(&arg.ignores);
2760 if (fd != -1 && close(fd) != 0 && err == NULL)
2761 err = got_error_from_errno("close");
2762 free(ondisk_path);
2763 return err;
2766 const struct got_error *
2767 got_worktree_status(struct got_worktree *worktree,
2768 struct got_pathlist_head *paths, struct got_repository *repo,
2769 got_worktree_status_cb status_cb, void *status_arg,
2770 got_cancel_cb cancel_cb, void *cancel_arg)
2772 const struct got_error *err = NULL;
2773 char *fileindex_path = NULL;
2774 struct got_fileindex *fileindex = NULL;
2775 struct got_pathlist_entry *pe;
2777 err = open_fileindex(&fileindex, &fileindex_path, worktree);
2778 if (err)
2779 return err;
2781 TAILQ_FOREACH(pe, paths, entry) {
2782 err = worktree_status(worktree, pe->path, fileindex, repo,
2783 status_cb, status_arg, cancel_cb, cancel_arg, 0, 0);
2784 if (err)
2785 break;
2787 free(fileindex_path);
2788 got_fileindex_free(fileindex);
2789 return err;
2792 const struct got_error *
2793 got_worktree_resolve_path(char **wt_path, struct got_worktree *worktree,
2794 const char *arg)
2796 const struct got_error *err = NULL;
2797 char *resolved, *cwd = NULL, *path = NULL;
2798 size_t len;
2800 *wt_path = NULL;
2802 resolved = realpath(arg, NULL);
2803 if (resolved == NULL) {
2804 if (errno != ENOENT)
2805 return got_error_from_errno2("realpath", arg);
2806 cwd = getcwd(NULL, 0);
2807 if (cwd == NULL)
2808 return got_error_from_errno("getcwd");
2809 if (asprintf(&resolved, "%s/%s", cwd, arg) == -1) {
2810 err = got_error_from_errno("asprintf");
2811 goto done;
2815 if (strncmp(got_worktree_get_root_path(worktree), resolved,
2816 strlen(got_worktree_get_root_path(worktree)))) {
2817 err = got_error(GOT_ERR_BAD_PATH);
2818 goto done;
2821 if (strlen(resolved) > strlen(got_worktree_get_root_path(worktree))) {
2822 err = got_path_skip_common_ancestor(&path,
2823 got_worktree_get_root_path(worktree), resolved);
2824 if (err)
2825 goto done;
2826 } else {
2827 path = strdup("");
2828 if (path == NULL) {
2829 err = got_error_from_errno("strdup");
2830 goto done;
2834 /* XXX status walk can't deal with trailing slash! */
2835 len = strlen(path);
2836 while (len > 0 && path[len - 1] == '/') {
2837 path[len - 1] = '\0';
2838 len--;
2840 done:
2841 free(resolved);
2842 free(cwd);
2843 if (err == NULL)
2844 *wt_path = path;
2845 else
2846 free(path);
2847 return err;
2850 struct schedule_addition_args {
2851 struct got_worktree *worktree;
2852 struct got_fileindex *fileindex;
2853 got_worktree_checkout_cb progress_cb;
2854 void *progress_arg;
2855 struct got_repository *repo;
2858 static const struct got_error *
2859 schedule_addition(void *arg, unsigned char status, unsigned char staged_status,
2860 const char *relpath, struct got_object_id *blob_id,
2861 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
2862 int dirfd, const char *de_name)
2864 struct schedule_addition_args *a = arg;
2865 const struct got_error *err = NULL;
2866 struct got_fileindex_entry *ie;
2867 struct stat sb;
2868 char *ondisk_path;
2870 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2871 relpath) == -1)
2872 return got_error_from_errno("asprintf");
2874 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
2875 if (ie) {
2876 err = get_file_status(&status, &sb, ie, ondisk_path, dirfd,
2877 de_name, a->repo);
2878 if (err)
2879 goto done;
2880 /* Re-adding an existing entry is a no-op. */
2881 if (status == GOT_STATUS_ADD)
2882 goto done;
2883 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
2884 if (err)
2885 goto done;
2888 if (status != GOT_STATUS_UNVERSIONED) {
2889 err = got_error_path(ondisk_path, GOT_ERR_FILE_STATUS);
2890 goto done;
2893 err = got_fileindex_entry_alloc(&ie, ondisk_path, relpath, NULL, NULL);
2894 if (err)
2895 goto done;
2897 err = got_fileindex_entry_add(a->fileindex, ie);
2898 if (err) {
2899 got_fileindex_entry_free(ie);
2900 goto done;
2902 done:
2903 free(ondisk_path);
2904 if (err)
2905 return err;
2906 if (status == GOT_STATUS_ADD)
2907 return NULL;
2908 return (*a->progress_cb)(a->progress_arg, GOT_STATUS_ADD, relpath);
2911 const struct got_error *
2912 got_worktree_schedule_add(struct got_worktree *worktree,
2913 struct got_pathlist_head *paths,
2914 got_worktree_checkout_cb progress_cb, void *progress_arg,
2915 struct got_repository *repo, int no_ignores)
2917 struct got_fileindex *fileindex = NULL;
2918 char *fileindex_path = NULL;
2919 const struct got_error *err = NULL, *sync_err, *unlockerr;
2920 struct got_pathlist_entry *pe;
2921 struct schedule_addition_args saa;
2923 err = lock_worktree(worktree, LOCK_EX);
2924 if (err)
2925 return err;
2927 err = open_fileindex(&fileindex, &fileindex_path, worktree);
2928 if (err)
2929 goto done;
2931 saa.worktree = worktree;
2932 saa.fileindex = fileindex;
2933 saa.progress_cb = progress_cb;
2934 saa.progress_arg = progress_arg;
2935 saa.repo = repo;
2937 TAILQ_FOREACH(pe, paths, entry) {
2938 err = worktree_status(worktree, pe->path, fileindex, repo,
2939 schedule_addition, &saa, NULL, NULL, no_ignores, 0);
2940 if (err)
2941 break;
2943 sync_err = sync_fileindex(fileindex, fileindex_path);
2944 if (sync_err && err == NULL)
2945 err = sync_err;
2946 done:
2947 free(fileindex_path);
2948 if (fileindex)
2949 got_fileindex_free(fileindex);
2950 unlockerr = lock_worktree(worktree, LOCK_SH);
2951 if (unlockerr && err == NULL)
2952 err = unlockerr;
2953 return err;
2956 struct schedule_deletion_args {
2957 struct got_worktree *worktree;
2958 struct got_fileindex *fileindex;
2959 got_worktree_delete_cb progress_cb;
2960 void *progress_arg;
2961 struct got_repository *repo;
2962 int delete_local_mods;
2963 int keep_on_disk;
2966 static const struct got_error *
2967 schedule_for_deletion(void *arg, unsigned char status,
2968 unsigned char staged_status, const char *relpath,
2969 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
2970 struct got_object_id *commit_id, int dirfd, const char *de_name)
2972 struct schedule_deletion_args *a = arg;
2973 const struct got_error *err = NULL;
2974 struct got_fileindex_entry *ie = NULL;
2975 struct stat sb;
2976 char *ondisk_path;
2978 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
2979 if (ie == NULL)
2980 return got_error(GOT_ERR_BAD_PATH);
2982 staged_status = get_staged_status(ie);
2983 if (staged_status != GOT_STATUS_NO_CHANGE) {
2984 if (staged_status == GOT_STATUS_DELETE)
2985 return NULL;
2986 return got_error_path(relpath, GOT_ERR_FILE_STAGED);
2989 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
2990 relpath) == -1)
2991 return got_error_from_errno("asprintf");
2993 err = get_file_status(&status, &sb, ie, ondisk_path, dirfd, de_name,
2994 a->repo);
2995 if (err)
2996 goto done;
2998 if (status != GOT_STATUS_NO_CHANGE) {
2999 if (status == GOT_STATUS_DELETE)
3000 goto done;
3001 if (status == GOT_STATUS_MODIFY && !a->delete_local_mods) {
3002 err = got_error_path(relpath, GOT_ERR_FILE_MODIFIED);
3003 goto done;
3005 if (status != GOT_STATUS_MODIFY &&
3006 status != GOT_STATUS_MISSING) {
3007 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
3008 goto done;
3012 if (!a->keep_on_disk && status != GOT_STATUS_MISSING) {
3013 if (dirfd != -1) {
3014 if (unlinkat(dirfd, de_name, 0) != 0) {
3015 err = got_error_from_errno2("unlinkat",
3016 ondisk_path);
3017 goto done;
3019 } else if (unlink(ondisk_path) != 0) {
3020 err = got_error_from_errno2("unlink", ondisk_path);
3021 goto done;
3025 got_fileindex_entry_mark_deleted_from_disk(ie);
3026 done:
3027 free(ondisk_path);
3028 if (err)
3029 return err;
3030 if (status == GOT_STATUS_DELETE)
3031 return NULL;
3032 return (*a->progress_cb)(a->progress_arg, GOT_STATUS_DELETE,
3033 staged_status, relpath);
3036 const struct got_error *
3037 got_worktree_schedule_delete(struct got_worktree *worktree,
3038 struct got_pathlist_head *paths, int delete_local_mods,
3039 got_worktree_delete_cb progress_cb, void *progress_arg,
3040 struct got_repository *repo, int keep_on_disk)
3042 struct got_fileindex *fileindex = NULL;
3043 char *fileindex_path = NULL;
3044 const struct got_error *err = NULL, *sync_err, *unlockerr;
3045 struct got_pathlist_entry *pe;
3046 struct schedule_deletion_args sda;
3048 err = lock_worktree(worktree, LOCK_EX);
3049 if (err)
3050 return err;
3052 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3053 if (err)
3054 goto done;
3056 sda.worktree = worktree;
3057 sda.fileindex = fileindex;
3058 sda.progress_cb = progress_cb;
3059 sda.progress_arg = progress_arg;
3060 sda.repo = repo;
3061 sda.delete_local_mods = delete_local_mods;
3062 sda.keep_on_disk = keep_on_disk;
3064 TAILQ_FOREACH(pe, paths, entry) {
3065 err = worktree_status(worktree, pe->path, fileindex, repo,
3066 schedule_for_deletion, &sda, NULL, NULL, 0, 1);
3067 if (err)
3068 break;
3070 sync_err = sync_fileindex(fileindex, fileindex_path);
3071 if (sync_err && err == NULL)
3072 err = sync_err;
3073 done:
3074 free(fileindex_path);
3075 if (fileindex)
3076 got_fileindex_free(fileindex);
3077 unlockerr = lock_worktree(worktree, LOCK_SH);
3078 if (unlockerr && err == NULL)
3079 err = unlockerr;
3080 return err;
3083 static const struct got_error *
3084 copy_one_line(FILE *infile, FILE *outfile, FILE *rejectfile)
3086 const struct got_error *err = NULL;
3087 char *line = NULL;
3088 size_t linesize = 0, n;
3089 ssize_t linelen;
3091 linelen = getline(&line, &linesize, infile);
3092 if (linelen == -1) {
3093 if (ferror(infile)) {
3094 err = got_error_from_errno("getline");
3095 goto done;
3097 return NULL;
3099 if (outfile) {
3100 n = fwrite(line, 1, linelen, outfile);
3101 if (n != linelen) {
3102 err = got_ferror(outfile, GOT_ERR_IO);
3103 goto done;
3106 if (rejectfile) {
3107 n = fwrite(line, 1, linelen, rejectfile);
3108 if (n != linelen)
3109 err = got_ferror(outfile, GOT_ERR_IO);
3111 done:
3112 free(line);
3113 return err;
3116 static const struct got_error *
3117 skip_one_line(FILE *f)
3119 char *line = NULL;
3120 size_t linesize = 0;
3121 ssize_t linelen;
3123 linelen = getline(&line, &linesize, f);
3124 if (linelen == -1) {
3125 if (ferror(f))
3126 return got_error_from_errno("getline");
3127 return NULL;
3129 free(line);
3130 return NULL;
3133 static const struct got_error *
3134 copy_change(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
3135 int start_old, int end_old, int start_new, int end_new,
3136 FILE *outfile, FILE *rejectfile)
3138 const struct got_error *err;
3140 /* Copy old file's lines leading up to patch. */
3141 while (!feof(f1) && *line_cur1 < start_old) {
3142 err = copy_one_line(f1, outfile, NULL);
3143 if (err)
3144 return err;
3145 (*line_cur1)++;
3147 /* Skip new file's lines leading up to patch. */
3148 while (!feof(f2) && *line_cur2 < start_new) {
3149 if (rejectfile)
3150 err = copy_one_line(f2, NULL, rejectfile);
3151 else
3152 err = skip_one_line(f2);
3153 if (err)
3154 return err;
3155 (*line_cur2)++;
3157 /* Copy patched lines. */
3158 while (!feof(f2) && *line_cur2 <= end_new) {
3159 err = copy_one_line(f2, outfile, NULL);
3160 if (err)
3161 return err;
3162 (*line_cur2)++;
3164 /* Skip over old file's replaced lines. */
3165 while (!feof(f1) && *line_cur1 <= end_old) {
3166 if (rejectfile)
3167 err = copy_one_line(f1, NULL, rejectfile);
3168 else
3169 err = skip_one_line(f1);
3170 if (err)
3171 return err;
3172 (*line_cur1)++;
3175 return NULL;
3178 static const struct got_error *
3179 copy_remaining_content(FILE *f1, FILE *f2, int *line_cur1, int *line_cur2,
3180 FILE *outfile, FILE *rejectfile)
3182 const struct got_error *err;
3184 if (outfile) {
3185 /* Copy old file's lines until EOF. */
3186 while (!feof(f1)) {
3187 err = copy_one_line(f1, outfile, NULL);
3188 if (err)
3189 return err;
3190 (*line_cur1)++;
3193 if (rejectfile) {
3194 /* Copy new file's lines until EOF. */
3195 while (!feof(f2)) {
3196 err = copy_one_line(f2, NULL, rejectfile);
3197 if (err)
3198 return err;
3199 (*line_cur2)++;
3203 return NULL;
3206 static const struct got_error *
3207 apply_or_reject_change(int *choice, struct got_diff_change *change, int n,
3208 int nchanges, struct got_diff_state *ds, struct got_diff_args *args,
3209 int diff_flags, const char *relpath, FILE *f1, FILE *f2, int *line_cur1,
3210 int *line_cur2, FILE *outfile, FILE *rejectfile,
3211 got_worktree_patch_cb patch_cb, void *patch_arg)
3213 const struct got_error *err = NULL;
3214 int start_old = change->cv.a;
3215 int end_old = change->cv.b;
3216 int start_new = change->cv.c;
3217 int end_new = change->cv.d;
3218 long pos1, pos2;
3219 FILE *hunkfile;
3221 *choice = GOT_PATCH_CHOICE_NONE;
3223 hunkfile = got_opentemp();
3224 if (hunkfile == NULL)
3225 return got_error_from_errno("got_opentemp");
3227 pos1 = ftell(f1);
3228 pos2 = ftell(f2);
3230 /* XXX TODO needs error checking */
3231 got_diff_dump_change(hunkfile, change, ds, args, f1, f2, diff_flags);
3233 if (fseek(f1, pos1, SEEK_SET) == -1) {
3234 err = got_ferror(f1, GOT_ERR_IO);
3235 goto done;
3237 if (fseek(f2, pos2, SEEK_SET) == -1) {
3238 err = got_ferror(f1, GOT_ERR_IO);
3239 goto done;
3241 if (fseek(hunkfile, 0L, SEEK_SET) == -1) {
3242 err = got_ferror(hunkfile, GOT_ERR_IO);
3243 goto done;
3246 err = (*patch_cb)(choice, patch_arg, GOT_STATUS_MODIFY, relpath,
3247 hunkfile, n, nchanges);
3248 if (err)
3249 goto done;
3251 switch (*choice) {
3252 case GOT_PATCH_CHOICE_YES:
3253 err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
3254 end_old, start_new, end_new, outfile, rejectfile);
3255 break;
3256 case GOT_PATCH_CHOICE_NO:
3257 err = copy_change(f1, f2, line_cur1, line_cur2, start_old,
3258 end_old, start_new, end_new, rejectfile, outfile);
3259 break;
3260 case GOT_PATCH_CHOICE_QUIT:
3261 break;
3262 default:
3263 err = got_error(GOT_ERR_PATCH_CHOICE);
3264 break;
3266 done:
3267 if (hunkfile && fclose(hunkfile) == EOF && err == NULL)
3268 err = got_error_from_errno("fclose");
3269 return err;
3272 struct revert_file_args {
3273 struct got_worktree *worktree;
3274 struct got_fileindex *fileindex;
3275 got_worktree_checkout_cb progress_cb;
3276 void *progress_arg;
3277 got_worktree_patch_cb patch_cb;
3278 void *patch_arg;
3279 struct got_repository *repo;
3282 static const struct got_error *
3283 create_patched_content(char **path_outfile, int reverse_patch,
3284 struct got_object_id *blob_id, const char *path2,
3285 int dirfd2, const char *de_name2,
3286 const char *relpath, struct got_repository *repo,
3287 got_worktree_patch_cb patch_cb, void *patch_arg)
3289 const struct got_error *err;
3290 struct got_blob_object *blob = NULL;
3291 FILE *f1 = NULL, *f2 = NULL, *outfile = NULL;
3292 int fd2 = -1;
3293 char *path1 = NULL, *id_str = NULL;
3294 struct stat sb1, sb2;
3295 struct got_diff_changes *changes = NULL;
3296 struct got_diff_state *ds = NULL;
3297 struct got_diff_args *args = NULL;
3298 struct got_diff_change *change;
3299 int diff_flags = 0, line_cur1 = 1, line_cur2 = 1, have_content = 0;
3300 int n = 0;
3302 *path_outfile = NULL;
3304 err = got_object_id_str(&id_str, blob_id);
3305 if (err)
3306 return err;
3308 if (dirfd2 != -1) {
3309 fd2 = openat(dirfd2, de_name2, O_RDONLY | O_NOFOLLOW);
3310 if (fd2 == -1) {
3311 err = got_error_from_errno2("openat", path2);
3312 goto done;
3314 } else {
3315 fd2 = open(path2, O_RDONLY | O_NOFOLLOW);
3316 if (fd2 == -1) {
3317 err = got_error_from_errno2("open", path2);
3318 goto done;
3321 if (fstat(fd2, &sb2) == -1) {
3322 err = got_error_from_errno2("fstat", path2);
3323 goto done;
3326 f2 = fdopen(fd2, "r");
3327 if (f2 == NULL) {
3328 err = got_error_from_errno2("fdopen", path2);
3329 goto done;
3331 fd2 = -1;
3333 err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
3334 if (err)
3335 goto done;
3337 err = got_opentemp_named(&path1, &f1, "got-patched-blob");
3338 if (err)
3339 goto done;
3341 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
3342 if (err)
3343 goto done;
3345 if (stat(path1, &sb1) == -1) {
3346 err = got_error_from_errno2("stat", path1);
3347 goto done;
3350 err = got_diff_files(&changes, &ds, &args, &diff_flags,
3351 f1, sb1.st_size, id_str, f2, sb2.st_size, path2, 3, NULL);
3352 if (err)
3353 goto done;
3355 err = got_opentemp_named(path_outfile, &outfile, "got-patched-content");
3356 if (err)
3357 goto done;
3359 if (fseek(f1, 0L, SEEK_SET) == -1)
3360 return got_ferror(f1, GOT_ERR_IO);
3361 if (fseek(f2, 0L, SEEK_SET) == -1)
3362 return got_ferror(f2, GOT_ERR_IO);
3363 SIMPLEQ_FOREACH(change, &changes->entries, entry) {
3364 int choice;
3365 err = apply_or_reject_change(&choice, change, ++n,
3366 changes->nchanges, ds, args, diff_flags, relpath,
3367 f1, f2, &line_cur1, &line_cur2,
3368 reverse_patch ? NULL : outfile,
3369 reverse_patch ? outfile : NULL,
3370 patch_cb, patch_arg);
3371 if (err)
3372 goto done;
3373 if (choice == GOT_PATCH_CHOICE_YES)
3374 have_content = 1;
3375 else if (choice == GOT_PATCH_CHOICE_QUIT)
3376 break;
3378 if (have_content) {
3379 err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
3380 reverse_patch ? NULL : outfile,
3381 reverse_patch ? outfile : NULL);
3382 if (err)
3383 goto done;
3385 if (chmod(*path_outfile, sb2.st_mode) == -1) {
3386 err = got_error_from_errno2("chmod", path2);
3387 goto done;
3390 done:
3391 free(id_str);
3392 if (blob)
3393 got_object_blob_close(blob);
3394 if (f1 && fclose(f1) == EOF && err == NULL)
3395 err = got_error_from_errno2("fclose", path1);
3396 if (f2 && fclose(f2) == EOF && err == NULL)
3397 err = got_error_from_errno2("fclose", path2);
3398 if (fd2 != -1 && close(fd2) == -1 && err == NULL)
3399 err = got_error_from_errno2("close", path2);
3400 if (outfile && fclose(outfile) == EOF && err == NULL)
3401 err = got_error_from_errno2("fclose", *path_outfile);
3402 if (path1 && unlink(path1) == -1 && err == NULL)
3403 err = got_error_from_errno2("unlink", path1);
3404 if (err || !have_content) {
3405 if (*path_outfile && unlink(*path_outfile) == -1 && err == NULL)
3406 err = got_error_from_errno2("unlink", *path_outfile);
3407 free(*path_outfile);
3408 *path_outfile = NULL;
3410 free(args);
3411 if (ds) {
3412 got_diff_state_free(ds);
3413 free(ds);
3415 if (changes)
3416 got_diff_free_changes(changes);
3417 free(path1);
3418 return err;
3421 static const struct got_error *
3422 revert_file(void *arg, unsigned char status, unsigned char staged_status,
3423 const char *relpath, struct got_object_id *blob_id,
3424 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
3425 int dirfd, const char *de_name)
3427 struct revert_file_args *a = arg;
3428 const struct got_error *err = NULL;
3429 char *parent_path = NULL;
3430 struct got_fileindex_entry *ie;
3431 struct got_tree_object *tree = NULL;
3432 struct got_object_id *tree_id = NULL;
3433 const struct got_tree_entry *te = NULL;
3434 char *tree_path = NULL, *te_name;
3435 char *ondisk_path = NULL, *path_content = NULL;
3436 struct got_blob_object *blob = NULL;
3438 /* Reverting a staged deletion is a no-op. */
3439 if (status == GOT_STATUS_DELETE &&
3440 staged_status != GOT_STATUS_NO_CHANGE)
3441 return NULL;
3443 if (status == GOT_STATUS_UNVERSIONED)
3444 return (*a->progress_cb)(a->progress_arg,
3445 GOT_STATUS_UNVERSIONED, relpath);
3447 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
3448 if (ie == NULL)
3449 return got_error(GOT_ERR_BAD_PATH);
3451 /* Construct in-repository path of tree which contains this blob. */
3452 err = got_path_dirname(&parent_path, ie->path);
3453 if (err) {
3454 if (err->code != GOT_ERR_BAD_PATH)
3455 goto done;
3456 parent_path = strdup("/");
3457 if (parent_path == NULL) {
3458 err = got_error_from_errno("strdup");
3459 goto done;
3462 if (got_path_is_root_dir(a->worktree->path_prefix)) {
3463 tree_path = strdup(parent_path);
3464 if (tree_path == NULL) {
3465 err = got_error_from_errno("strdup");
3466 goto done;
3468 } else {
3469 if (got_path_is_root_dir(parent_path)) {
3470 tree_path = strdup(a->worktree->path_prefix);
3471 if (tree_path == NULL) {
3472 err = got_error_from_errno("strdup");
3473 goto done;
3475 } else {
3476 if (asprintf(&tree_path, "%s/%s",
3477 a->worktree->path_prefix, parent_path) == -1) {
3478 err = got_error_from_errno("asprintf");
3479 goto done;
3484 err = got_object_id_by_path(&tree_id, a->repo,
3485 a->worktree->base_commit_id, tree_path);
3486 if (err) {
3487 if (!(err->code == GOT_ERR_NO_TREE_ENTRY &&
3488 (status == GOT_STATUS_ADD ||
3489 staged_status == GOT_STATUS_ADD)))
3490 goto done;
3491 } else {
3492 err = got_object_open_as_tree(&tree, a->repo, tree_id);
3493 if (err)
3494 goto done;
3496 te_name = basename(ie->path);
3497 if (te_name == NULL) {
3498 err = got_error_from_errno2("basename", ie->path);
3499 goto done;
3502 te = got_object_tree_find_entry(tree, te_name);
3503 if (te == NULL && status != GOT_STATUS_ADD &&
3504 staged_status != GOT_STATUS_ADD) {
3505 err = got_error(GOT_ERR_NO_TREE_ENTRY);
3506 goto done;
3510 switch (status) {
3511 case GOT_STATUS_ADD:
3512 if (a->patch_cb) {
3513 int choice = GOT_PATCH_CHOICE_NONE;
3514 err = (*a->patch_cb)(&choice, a->patch_arg,
3515 status, ie->path, NULL, 1, 1);
3516 if (err)
3517 goto done;
3518 if (choice != GOT_PATCH_CHOICE_YES)
3519 break;
3521 err = (*a->progress_cb)(a->progress_arg, GOT_STATUS_REVERT,
3522 ie->path);
3523 if (err)
3524 goto done;
3525 got_fileindex_entry_remove(a->fileindex, ie);
3526 break;
3527 case GOT_STATUS_DELETE:
3528 if (a->patch_cb) {
3529 int choice = GOT_PATCH_CHOICE_NONE;
3530 err = (*a->patch_cb)(&choice, a->patch_arg,
3531 status, ie->path, NULL, 1, 1);
3532 if (err)
3533 goto done;
3534 if (choice != GOT_PATCH_CHOICE_YES)
3535 break;
3537 /* fall through */
3538 case GOT_STATUS_MODIFY:
3539 case GOT_STATUS_MODE_CHANGE:
3540 case GOT_STATUS_CONFLICT:
3541 case GOT_STATUS_MISSING: {
3542 struct got_object_id id;
3543 if (staged_status == GOT_STATUS_ADD ||
3544 staged_status == GOT_STATUS_MODIFY) {
3545 memcpy(id.sha1, ie->staged_blob_sha1,
3546 SHA1_DIGEST_LENGTH);
3547 } else
3548 memcpy(id.sha1, ie->blob_sha1,
3549 SHA1_DIGEST_LENGTH);
3550 err = got_object_open_as_blob(&blob, a->repo, &id, 8192);
3551 if (err)
3552 goto done;
3554 if (asprintf(&ondisk_path, "%s/%s",
3555 got_worktree_get_root_path(a->worktree), relpath) == -1) {
3556 err = got_error_from_errno("asprintf");
3557 goto done;
3560 if (a->patch_cb && (status == GOT_STATUS_MODIFY ||
3561 status == GOT_STATUS_CONFLICT)) {
3562 err = create_patched_content(&path_content, 1, &id,
3563 ondisk_path, dirfd, de_name, ie->path, a->repo,
3564 a->patch_cb, a->patch_arg);
3565 if (err || path_content == NULL)
3566 break;
3567 if (rename(path_content, ondisk_path) == -1) {
3568 err = got_error_from_errno3("rename",
3569 path_content, ondisk_path);
3570 goto done;
3572 } else {
3573 err = install_blob(a->worktree, ondisk_path, ie->path,
3574 te ? te->mode : GOT_DEFAULT_FILE_MODE,
3575 got_fileindex_perms_to_st(ie), blob, 0, 1,
3576 a->repo, a->progress_cb, a->progress_arg);
3577 if (err)
3578 goto done;
3579 if (status == GOT_STATUS_DELETE ||
3580 status == GOT_STATUS_MODE_CHANGE) {
3581 err = update_blob_fileindex_entry(a->worktree,
3582 a->fileindex, ie, ondisk_path, ie->path,
3583 blob, 1);
3584 if (err)
3585 goto done;
3588 break;
3590 default:
3591 break;
3593 done:
3594 free(ondisk_path);
3595 free(path_content);
3596 free(parent_path);
3597 free(tree_path);
3598 if (blob)
3599 got_object_blob_close(blob);
3600 if (tree)
3601 got_object_tree_close(tree);
3602 free(tree_id);
3603 return err;
3606 const struct got_error *
3607 got_worktree_revert(struct got_worktree *worktree,
3608 struct got_pathlist_head *paths,
3609 got_worktree_checkout_cb progress_cb, void *progress_arg,
3610 got_worktree_patch_cb patch_cb, void *patch_arg,
3611 struct got_repository *repo)
3613 struct got_fileindex *fileindex = NULL;
3614 char *fileindex_path = NULL;
3615 const struct got_error *err = NULL, *unlockerr = NULL;
3616 const struct got_error *sync_err = NULL;
3617 struct got_pathlist_entry *pe;
3618 struct revert_file_args rfa;
3620 err = lock_worktree(worktree, LOCK_EX);
3621 if (err)
3622 return err;
3624 err = open_fileindex(&fileindex, &fileindex_path, worktree);
3625 if (err)
3626 goto done;
3628 rfa.worktree = worktree;
3629 rfa.fileindex = fileindex;
3630 rfa.progress_cb = progress_cb;
3631 rfa.progress_arg = progress_arg;
3632 rfa.patch_cb = patch_cb;
3633 rfa.patch_arg = patch_arg;
3634 rfa.repo = repo;
3635 TAILQ_FOREACH(pe, paths, entry) {
3636 err = worktree_status(worktree, pe->path, fileindex, repo,
3637 revert_file, &rfa, NULL, NULL, 0, 0);
3638 if (err)
3639 break;
3641 sync_err = sync_fileindex(fileindex, fileindex_path);
3642 if (sync_err && err == NULL)
3643 err = sync_err;
3644 done:
3645 free(fileindex_path);
3646 if (fileindex)
3647 got_fileindex_free(fileindex);
3648 unlockerr = lock_worktree(worktree, LOCK_SH);
3649 if (unlockerr && err == NULL)
3650 err = unlockerr;
3651 return err;
3654 static void
3655 free_commitable(struct got_commitable *ct)
3657 free(ct->path);
3658 free(ct->in_repo_path);
3659 free(ct->ondisk_path);
3660 free(ct->blob_id);
3661 free(ct->base_blob_id);
3662 free(ct->staged_blob_id);
3663 free(ct->base_commit_id);
3664 free(ct);
3667 struct collect_commitables_arg {
3668 struct got_pathlist_head *commitable_paths;
3669 struct got_repository *repo;
3670 struct got_worktree *worktree;
3671 int have_staged_files;
3674 static const struct got_error *
3675 collect_commitables(void *arg, unsigned char status,
3676 unsigned char staged_status, const char *relpath,
3677 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
3678 struct got_object_id *commit_id, int dirfd, const char *de_name)
3680 struct collect_commitables_arg *a = arg;
3681 const struct got_error *err = NULL;
3682 struct got_commitable *ct = NULL;
3683 struct got_pathlist_entry *new = NULL;
3684 char *parent_path = NULL, *path = NULL;
3685 struct stat sb;
3687 if (a->have_staged_files) {
3688 if (staged_status != GOT_STATUS_MODIFY &&
3689 staged_status != GOT_STATUS_ADD &&
3690 staged_status != GOT_STATUS_DELETE)
3691 return NULL;
3692 } else {
3693 if (status == GOT_STATUS_CONFLICT)
3694 return got_error(GOT_ERR_COMMIT_CONFLICT);
3696 if (status != GOT_STATUS_MODIFY &&
3697 status != GOT_STATUS_MODE_CHANGE &&
3698 status != GOT_STATUS_ADD &&
3699 status != GOT_STATUS_DELETE)
3700 return NULL;
3703 if (asprintf(&path, "/%s", relpath) == -1) {
3704 err = got_error_from_errno("asprintf");
3705 goto done;
3707 if (strcmp(path, "/") == 0) {
3708 parent_path = strdup("");
3709 if (parent_path == NULL)
3710 return got_error_from_errno("strdup");
3711 } else {
3712 err = got_path_dirname(&parent_path, path);
3713 if (err)
3714 return err;
3717 ct = calloc(1, sizeof(*ct));
3718 if (ct == NULL) {
3719 err = got_error_from_errno("calloc");
3720 goto done;
3723 if (asprintf(&ct->ondisk_path, "%s/%s", a->worktree->root_path,
3724 relpath) == -1) {
3725 err = got_error_from_errno("asprintf");
3726 goto done;
3728 if (status == GOT_STATUS_DELETE || staged_status == GOT_STATUS_DELETE) {
3729 sb.st_mode = GOT_DEFAULT_FILE_MODE;
3730 } else {
3731 if (dirfd != -1) {
3732 if (fstatat(dirfd, de_name, &sb,
3733 AT_SYMLINK_NOFOLLOW) == -1) {
3734 err = got_error_from_errno2("fstatat",
3735 ct->ondisk_path);
3736 goto done;
3738 } else if (lstat(ct->ondisk_path, &sb) == -1) {
3739 err = got_error_from_errno2("lstat", ct->ondisk_path);
3740 goto done;
3742 ct->mode = sb.st_mode;
3745 if (asprintf(&ct->in_repo_path, "%s%s%s", a->worktree->path_prefix,
3746 got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
3747 relpath) == -1) {
3748 err = got_error_from_errno("asprintf");
3749 goto done;
3752 ct->status = status;
3753 ct->staged_status = staged_status;
3754 ct->blob_id = NULL; /* will be filled in when blob gets created */
3755 if (ct->status != GOT_STATUS_ADD &&
3756 ct->staged_status != GOT_STATUS_ADD) {
3757 ct->base_blob_id = got_object_id_dup(blob_id);
3758 if (ct->base_blob_id == NULL) {
3759 err = got_error_from_errno("got_object_id_dup");
3760 goto done;
3762 ct->base_commit_id = got_object_id_dup(commit_id);
3763 if (ct->base_commit_id == NULL) {
3764 err = got_error_from_errno("got_object_id_dup");
3765 goto done;
3768 if (ct->staged_status == GOT_STATUS_ADD ||
3769 ct->staged_status == GOT_STATUS_MODIFY) {
3770 ct->staged_blob_id = got_object_id_dup(staged_blob_id);
3771 if (ct->staged_blob_id == NULL) {
3772 err = got_error_from_errno("got_object_id_dup");
3773 goto done;
3776 ct->path = strdup(path);
3777 if (ct->path == NULL) {
3778 err = got_error_from_errno("strdup");
3779 goto done;
3781 err = got_pathlist_insert(&new, a->commitable_paths, ct->path, ct);
3782 done:
3783 if (ct && (err || new == NULL))
3784 free_commitable(ct);
3785 free(parent_path);
3786 free(path);
3787 return err;
3790 static const struct got_error *write_tree(struct got_object_id **,
3791 struct got_tree_object *, const char *, struct got_pathlist_head *,
3792 got_worktree_status_cb status_cb, void *status_arg,
3793 struct got_repository *);
3795 static const struct got_error *
3796 write_subtree(struct got_object_id **new_subtree_id,
3797 struct got_tree_entry *te, const char *parent_path,
3798 struct got_pathlist_head *commitable_paths,
3799 got_worktree_status_cb status_cb, void *status_arg,
3800 struct got_repository *repo)
3802 const struct got_error *err = NULL;
3803 struct got_tree_object *subtree;
3804 char *subpath;
3806 if (asprintf(&subpath, "%s%s%s", parent_path,
3807 got_path_is_root_dir(parent_path) ? "" : "/", te->name) == -1)
3808 return got_error_from_errno("asprintf");
3810 err = got_object_open_as_tree(&subtree, repo, &te->id);
3811 if (err)
3812 return err;
3814 err = write_tree(new_subtree_id, subtree, subpath, commitable_paths,
3815 status_cb, status_arg, repo);
3816 got_object_tree_close(subtree);
3817 free(subpath);
3818 return err;
3821 static const struct got_error *
3822 match_ct_parent_path(int *match, struct got_commitable *ct, const char *path)
3824 const struct got_error *err = NULL;
3825 char *ct_parent_path = NULL;
3827 *match = 0;
3829 if (strchr(ct->in_repo_path, '/') == NULL) {
3830 *match = got_path_is_root_dir(path);
3831 return NULL;
3834 err = got_path_dirname(&ct_parent_path, ct->in_repo_path);
3835 if (err)
3836 return err;
3837 *match = (strcmp(path, ct_parent_path) == 0);
3838 free(ct_parent_path);
3839 return err;
3842 static mode_t
3843 get_ct_file_mode(struct got_commitable *ct)
3845 return S_IFREG | (ct->mode & ((S_IRWXU | S_IRWXG | S_IRWXO)));
3848 static const struct got_error *
3849 alloc_modified_blob_tree_entry(struct got_tree_entry **new_te,
3850 struct got_tree_entry *te, struct got_commitable *ct)
3852 const struct got_error *err = NULL;
3854 *new_te = NULL;
3856 err = got_object_tree_entry_dup(new_te, te);
3857 if (err)
3858 goto done;
3860 (*new_te)->mode = get_ct_file_mode(ct);
3862 if (ct->staged_status == GOT_STATUS_MODIFY)
3863 memcpy(&(*new_te)->id, ct->staged_blob_id,
3864 sizeof((*new_te)->id));
3865 else
3866 memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
3867 done:
3868 if (err && *new_te) {
3869 free(*new_te);
3870 *new_te = NULL;
3872 return err;
3875 static const struct got_error *
3876 alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
3877 struct got_commitable *ct)
3879 const struct got_error *err = NULL;
3880 char *ct_name;
3882 *new_te = NULL;
3884 *new_te = calloc(1, sizeof(**new_te));
3885 if (*new_te == NULL)
3886 return got_error_from_errno("calloc");
3888 ct_name = basename(ct->path);
3889 if (ct_name == NULL) {
3890 err = got_error_from_errno2("basename", ct->path);
3891 goto done;
3893 if (strlcpy((*new_te)->name, ct_name, sizeof((*new_te)->name)) >=
3894 sizeof((*new_te)->name)) {
3895 err = got_error(GOT_ERR_NO_SPACE);
3896 goto done;
3899 (*new_te)->mode = get_ct_file_mode(ct);
3901 if (ct->staged_status == GOT_STATUS_ADD)
3902 memcpy(&(*new_te)->id, ct->staged_blob_id,
3903 sizeof((*new_te)->id));
3904 else
3905 memcpy(&(*new_te)->id, ct->blob_id, sizeof((*new_te)->id));
3906 done:
3907 if (err && *new_te) {
3908 free(*new_te);
3909 *new_te = NULL;
3911 return err;
3914 static const struct got_error *
3915 insert_tree_entry(struct got_tree_entry *new_te,
3916 struct got_pathlist_head *paths)
3918 const struct got_error *err = NULL;
3919 struct got_pathlist_entry *new_pe;
3921 err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
3922 if (err)
3923 return err;
3924 if (new_pe == NULL)
3925 return got_error(GOT_ERR_TREE_DUP_ENTRY);
3926 return NULL;
3929 static const struct got_error *
3930 report_ct_status(struct got_commitable *ct,
3931 got_worktree_status_cb status_cb, void *status_arg)
3933 const char *ct_path = ct->path;
3934 unsigned char status;
3936 while (ct_path[0] == '/')
3937 ct_path++;
3939 if (ct->staged_status != GOT_STATUS_NO_CHANGE)
3940 status = ct->staged_status;
3941 else
3942 status = ct->status;
3944 return (*status_cb)(status_arg, status, GOT_STATUS_NO_CHANGE,
3945 ct_path, ct->blob_id, NULL, NULL, -1, NULL);
3948 static const struct got_error *
3949 match_modified_subtree(int *modified, struct got_tree_entry *te,
3950 const char *base_tree_path, struct got_pathlist_head *commitable_paths)
3952 const struct got_error *err = NULL;
3953 struct got_pathlist_entry *pe;
3954 char *te_path;
3956 *modified = 0;
3958 if (asprintf(&te_path, "%s%s%s", base_tree_path,
3959 got_path_is_root_dir(base_tree_path) ? "" : "/",
3960 te->name) == -1)
3961 return got_error_from_errno("asprintf");
3963 TAILQ_FOREACH(pe, commitable_paths, entry) {
3964 struct got_commitable *ct = pe->data;
3965 *modified = got_path_is_child(ct->in_repo_path, te_path,
3966 strlen(te_path));
3967 if (*modified)
3968 break;
3971 free(te_path);
3972 return err;
3975 static const struct got_error *
3976 match_deleted_or_modified_ct(struct got_commitable **ctp,
3977 struct got_tree_entry *te, const char *base_tree_path,
3978 struct got_pathlist_head *commitable_paths)
3980 const struct got_error *err = NULL;
3981 struct got_pathlist_entry *pe;
3983 *ctp = NULL;
3985 TAILQ_FOREACH(pe, commitable_paths, entry) {
3986 struct got_commitable *ct = pe->data;
3987 char *ct_name = NULL;
3988 int path_matches;
3990 if (ct->staged_status == GOT_STATUS_NO_CHANGE) {
3991 if (ct->status != GOT_STATUS_MODIFY &&
3992 ct->status != GOT_STATUS_MODE_CHANGE &&
3993 ct->status != GOT_STATUS_DELETE)
3994 continue;
3995 } else {
3996 if (ct->staged_status != GOT_STATUS_MODIFY &&
3997 ct->staged_status != GOT_STATUS_DELETE)
3998 continue;
4001 if (got_object_id_cmp(ct->base_blob_id, &te->id) != 0)
4002 continue;
4004 err = match_ct_parent_path(&path_matches, ct, base_tree_path);
4005 if (err)
4006 return err;
4007 if (!path_matches)
4008 continue;
4010 ct_name = basename(pe->path);
4011 if (ct_name == NULL)
4012 return got_error_from_errno2("basename", pe->path);
4014 if (strcmp(te->name, ct_name) != 0)
4015 continue;
4017 *ctp = ct;
4018 break;
4021 return err;
4024 static const struct got_error *
4025 make_subtree_for_added_blob(struct got_tree_entry **new_tep,
4026 const char *child_path, const char *path_base_tree,
4027 struct got_pathlist_head *commitable_paths,
4028 got_worktree_status_cb status_cb, void *status_arg,
4029 struct got_repository *repo)
4031 const struct got_error *err = NULL;
4032 struct got_tree_entry *new_te;
4033 char *subtree_path;
4034 struct got_object_id *id = NULL;
4036 *new_tep = NULL;
4038 if (asprintf(&subtree_path, "%s%s%s", path_base_tree,
4039 got_path_is_root_dir(path_base_tree) ? "" : "/",
4040 child_path) == -1)
4041 return got_error_from_errno("asprintf");
4043 new_te = calloc(1, sizeof(*new_te));
4044 if (new_te == NULL)
4045 return got_error_from_errno("calloc");
4046 new_te->mode = S_IFDIR;
4048 if (strlcpy(new_te->name, child_path, sizeof(new_te->name)) >=
4049 sizeof(new_te->name)) {
4050 err = got_error(GOT_ERR_NO_SPACE);
4051 goto done;
4053 err = write_tree(&id, NULL, subtree_path,
4054 commitable_paths, status_cb, status_arg, repo);
4055 if (err) {
4056 free(new_te);
4057 goto done;
4059 memcpy(&new_te->id, id, sizeof(new_te->id));
4060 done:
4061 free(id);
4062 free(subtree_path);
4063 if (err == NULL)
4064 *new_tep = new_te;
4065 return err;
4068 static const struct got_error *
4069 write_tree(struct got_object_id **new_tree_id,
4070 struct got_tree_object *base_tree, const char *path_base_tree,
4071 struct got_pathlist_head *commitable_paths,
4072 got_worktree_status_cb status_cb, void *status_arg,
4073 struct got_repository *repo)
4075 const struct got_error *err = NULL;
4076 struct got_pathlist_head paths;
4077 struct got_tree_entry *te, *new_te = NULL;
4078 struct got_pathlist_entry *pe;
4079 int nentries = 0;
4081 TAILQ_INIT(&paths);
4083 /* Insert, and recurse into, newly added entries first. */
4084 TAILQ_FOREACH(pe, commitable_paths, entry) {
4085 struct got_commitable *ct = pe->data;
4086 char *child_path = NULL, *slash;
4088 if ((ct->status != GOT_STATUS_ADD &&
4089 ct->staged_status != GOT_STATUS_ADD) ||
4090 (ct->flags & GOT_COMMITABLE_ADDED))
4091 continue;
4093 if (!got_path_is_child(pe->path, path_base_tree,
4094 strlen(path_base_tree)))
4095 continue;
4097 err = got_path_skip_common_ancestor(&child_path, path_base_tree,
4098 pe->path);
4099 if (err)
4100 goto done;
4102 slash = strchr(child_path, '/');
4103 if (slash == NULL) {
4104 err = alloc_added_blob_tree_entry(&new_te, ct);
4105 if (err)
4106 goto done;
4107 err = report_ct_status(ct, status_cb, status_arg);
4108 if (err)
4109 goto done;
4110 ct->flags |= GOT_COMMITABLE_ADDED;
4111 err = insert_tree_entry(new_te, &paths);
4112 if (err)
4113 goto done;
4114 nentries++;
4115 } else {
4116 *slash = '\0'; /* trim trailing path components */
4117 if (base_tree == NULL ||
4118 got_object_tree_find_entry(base_tree, child_path)
4119 == NULL) {
4120 err = make_subtree_for_added_blob(&new_te,
4121 child_path, path_base_tree,
4122 commitable_paths, status_cb, status_arg,
4123 repo);
4124 if (err)
4125 goto done;
4126 err = insert_tree_entry(new_te, &paths);
4127 if (err)
4128 goto done;
4129 nentries++;
4134 if (base_tree) {
4135 int i, nbase_entries;
4136 /* Handle modified and deleted entries. */
4137 nbase_entries = got_object_tree_get_nentries(base_tree);
4138 for (i = 0; i < nbase_entries; i++) {
4139 struct got_commitable *ct = NULL;
4141 te = got_object_tree_get_entry(base_tree, i);
4142 if (got_object_tree_entry_is_submodule(te)) {
4143 /* Entry is a submodule; just copy it. */
4144 err = got_object_tree_entry_dup(&new_te, te);
4145 if (err)
4146 goto done;
4147 err = insert_tree_entry(new_te, &paths);
4148 if (err)
4149 goto done;
4150 nentries++;
4151 continue;
4154 if (S_ISDIR(te->mode)) {
4155 int modified;
4156 err = got_object_tree_entry_dup(&new_te, te);
4157 if (err)
4158 goto done;
4159 err = match_modified_subtree(&modified, te,
4160 path_base_tree, commitable_paths);
4161 if (err)
4162 goto done;
4163 /* Avoid recursion into unmodified subtrees. */
4164 if (modified) {
4165 struct got_object_id *new_id;
4166 err = write_subtree(&new_id, te,
4167 path_base_tree, commitable_paths,
4168 status_cb, status_arg, repo);
4169 if (err)
4170 goto done;
4171 memcpy(&new_te->id, new_id,
4172 sizeof(new_te->id));
4173 free(new_id);
4175 err = insert_tree_entry(new_te, &paths);
4176 if (err)
4177 goto done;
4178 nentries++;
4179 continue;
4182 err = match_deleted_or_modified_ct(&ct, te,
4183 path_base_tree, commitable_paths);
4184 if (err)
4185 goto done;
4186 if (ct) {
4187 /* NB: Deleted entries get dropped here. */
4188 if (ct->status == GOT_STATUS_MODIFY ||
4189 ct->status == GOT_STATUS_MODE_CHANGE ||
4190 ct->staged_status == GOT_STATUS_MODIFY) {
4191 err = alloc_modified_blob_tree_entry(
4192 &new_te, te, ct);
4193 if (err)
4194 goto done;
4195 err = insert_tree_entry(new_te, &paths);
4196 if (err)
4197 goto done;
4198 nentries++;
4200 err = report_ct_status(ct, status_cb,
4201 status_arg);
4202 if (err)
4203 goto done;
4204 } else {
4205 /* Entry is unchanged; just copy it. */
4206 err = got_object_tree_entry_dup(&new_te, te);
4207 if (err)
4208 goto done;
4209 err = insert_tree_entry(new_te, &paths);
4210 if (err)
4211 goto done;
4212 nentries++;
4217 /* Write new list of entries; deleted entries have been dropped. */
4218 err = got_object_tree_create(new_tree_id, &paths, nentries, repo);
4219 done:
4220 got_pathlist_free(&paths);
4221 return err;
4224 static const struct got_error *
4225 update_fileindex_after_commit(struct got_pathlist_head *commitable_paths,
4226 struct got_object_id *new_base_commit_id, struct got_fileindex *fileindex,
4227 int have_staged_files)
4229 const struct got_error *err = NULL;
4230 struct got_pathlist_entry *pe;
4232 TAILQ_FOREACH(pe, commitable_paths, entry) {
4233 struct got_fileindex_entry *ie;
4234 struct got_commitable *ct = pe->data;
4236 ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
4237 if (ie) {
4238 if (ct->status == GOT_STATUS_DELETE ||
4239 ct->staged_status == GOT_STATUS_DELETE) {
4240 got_fileindex_entry_remove(fileindex, ie);
4241 got_fileindex_entry_free(ie);
4242 } else if (ct->staged_status == GOT_STATUS_ADD ||
4243 ct->staged_status == GOT_STATUS_MODIFY) {
4244 got_fileindex_entry_stage_set(ie,
4245 GOT_FILEIDX_STAGE_NONE);
4246 err = got_fileindex_entry_update(ie,
4247 ct->ondisk_path, ct->staged_blob_id->sha1,
4248 new_base_commit_id->sha1,
4249 !have_staged_files);
4250 } else
4251 err = got_fileindex_entry_update(ie,
4252 ct->ondisk_path, ct->blob_id->sha1,
4253 new_base_commit_id->sha1,
4254 !have_staged_files);
4255 } else {
4256 err = got_fileindex_entry_alloc(&ie,
4257 ct->ondisk_path, pe->path, ct->blob_id->sha1,
4258 new_base_commit_id->sha1);
4259 if (err)
4260 break;
4261 err = got_fileindex_entry_add(fileindex, ie);
4262 if (err)
4263 break;
4266 return err;
4270 static const struct got_error *
4271 check_out_of_date(const char *in_repo_path, unsigned char status,
4272 unsigned char staged_status, struct got_object_id *base_blob_id,
4273 struct got_object_id *base_commit_id,
4274 struct got_object_id *head_commit_id, struct got_repository *repo,
4275 int ood_errcode)
4277 const struct got_error *err = NULL;
4278 struct got_object_id *id = NULL;
4280 if (status != GOT_STATUS_ADD && staged_status != GOT_STATUS_ADD) {
4281 /* Trivial case: base commit == head commit */
4282 if (got_object_id_cmp(base_commit_id, head_commit_id) == 0)
4283 return NULL;
4285 * Ensure file content which local changes were based
4286 * on matches file content in the branch head.
4288 err = got_object_id_by_path(&id, repo, head_commit_id,
4289 in_repo_path);
4290 if (err) {
4291 if (err->code == GOT_ERR_NO_TREE_ENTRY)
4292 err = got_error(ood_errcode);
4293 goto done;
4294 } else if (got_object_id_cmp(id, base_blob_id) != 0)
4295 err = got_error(ood_errcode);
4296 } else {
4297 /* Require that added files don't exist in the branch head. */
4298 err = got_object_id_by_path(&id, repo, head_commit_id,
4299 in_repo_path);
4300 if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
4301 goto done;
4302 err = id ? got_error(ood_errcode) : NULL;
4304 done:
4305 free(id);
4306 return err;
4309 const struct got_error *
4310 commit_worktree(struct got_object_id **new_commit_id,
4311 struct got_pathlist_head *commitable_paths,
4312 struct got_object_id *head_commit_id, struct got_worktree *worktree,
4313 const char *author, const char *committer,
4314 got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
4315 got_worktree_status_cb status_cb, void *status_arg,
4316 struct got_repository *repo)
4318 const struct got_error *err = NULL, *unlockerr = NULL;
4319 struct got_pathlist_entry *pe;
4320 const char *head_ref_name = NULL;
4321 struct got_commit_object *head_commit = NULL;
4322 struct got_reference *head_ref2 = NULL;
4323 struct got_object_id *head_commit_id2 = NULL;
4324 struct got_tree_object *head_tree = NULL;
4325 struct got_object_id *new_tree_id = NULL;
4326 struct got_object_id_queue parent_ids;
4327 struct got_object_qid *pid = NULL;
4328 char *logmsg = NULL;
4330 *new_commit_id = NULL;
4332 SIMPLEQ_INIT(&parent_ids);
4334 err = got_object_open_as_commit(&head_commit, repo, head_commit_id);
4335 if (err)
4336 goto done;
4338 err = got_object_open_as_tree(&head_tree, repo, head_commit->tree_id);
4339 if (err)
4340 goto done;
4342 if (commit_msg_cb != NULL) {
4343 err = commit_msg_cb(commitable_paths, &logmsg, commit_arg);
4344 if (err)
4345 goto done;
4348 if (logmsg == NULL || strlen(logmsg) == 0) {
4349 err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
4350 goto done;
4353 /* Create blobs from added and modified files and record their IDs. */
4354 TAILQ_FOREACH(pe, commitable_paths, entry) {
4355 struct got_commitable *ct = pe->data;
4356 char *ondisk_path;
4358 /* Blobs for staged files already exist. */
4359 if (ct->staged_status == GOT_STATUS_ADD ||
4360 ct->staged_status == GOT_STATUS_MODIFY)
4361 continue;
4363 if (ct->status != GOT_STATUS_ADD &&
4364 ct->status != GOT_STATUS_MODIFY &&
4365 ct->status != GOT_STATUS_MODE_CHANGE)
4366 continue;
4368 if (asprintf(&ondisk_path, "%s/%s",
4369 worktree->root_path, pe->path) == -1) {
4370 err = got_error_from_errno("asprintf");
4371 goto done;
4373 err = got_object_blob_create(&ct->blob_id, ondisk_path, repo);
4374 free(ondisk_path);
4375 if (err)
4376 goto done;
4379 /* Recursively write new tree objects. */
4380 err = write_tree(&new_tree_id, head_tree, "/", commitable_paths,
4381 status_cb, status_arg, repo);
4382 if (err)
4383 goto done;
4385 err = got_object_qid_alloc(&pid, worktree->base_commit_id);
4386 if (err)
4387 goto done;
4388 SIMPLEQ_INSERT_TAIL(&parent_ids, pid, entry);
4389 err = got_object_commit_create(new_commit_id, new_tree_id, &parent_ids,
4390 1, author, time(NULL), committer, time(NULL), logmsg, repo);
4391 got_object_qid_free(pid);
4392 if (logmsg != NULL)
4393 free(logmsg);
4394 if (err)
4395 goto done;
4397 /* Check if a concurrent commit to our branch has occurred. */
4398 head_ref_name = got_worktree_get_head_ref_name(worktree);
4399 if (head_ref_name == NULL) {
4400 err = got_error_from_errno("got_worktree_get_head_ref_name");
4401 goto done;
4403 /* Lock the reference here to prevent concurrent modification. */
4404 err = got_ref_open(&head_ref2, repo, head_ref_name, 1);
4405 if (err)
4406 goto done;
4407 err = got_ref_resolve(&head_commit_id2, repo, head_ref2);
4408 if (err)
4409 goto done;
4410 if (got_object_id_cmp(head_commit_id, head_commit_id2) != 0) {
4411 err = got_error(GOT_ERR_COMMIT_HEAD_CHANGED);
4412 goto done;
4414 /* Update branch head in repository. */
4415 err = got_ref_change_ref(head_ref2, *new_commit_id);
4416 if (err)
4417 goto done;
4418 err = got_ref_write(head_ref2, repo);
4419 if (err)
4420 goto done;
4422 err = got_worktree_set_base_commit_id(worktree, repo, *new_commit_id);
4423 if (err)
4424 goto done;
4426 err = ref_base_commit(worktree, repo);
4427 if (err)
4428 goto done;
4429 done:
4430 if (head_tree)
4431 got_object_tree_close(head_tree);
4432 if (head_commit)
4433 got_object_commit_close(head_commit);
4434 free(head_commit_id2);
4435 if (head_ref2) {
4436 unlockerr = got_ref_unlock(head_ref2);
4437 if (unlockerr && err == NULL)
4438 err = unlockerr;
4439 got_ref_close(head_ref2);
4441 return err;
4444 static const struct got_error *
4445 check_path_is_commitable(const char *path,
4446 struct got_pathlist_head *commitable_paths)
4448 struct got_pathlist_entry *cpe = NULL;
4449 size_t path_len = strlen(path);
4451 TAILQ_FOREACH(cpe, commitable_paths, entry) {
4452 struct got_commitable *ct = cpe->data;
4453 const char *ct_path = ct->path;
4455 while (ct_path[0] == '/')
4456 ct_path++;
4458 if (strcmp(path, ct_path) == 0 ||
4459 got_path_is_child(ct_path, path, path_len))
4460 break;
4463 if (cpe == NULL)
4464 return got_error_path(path, GOT_ERR_BAD_PATH);
4466 return NULL;
4469 static const struct got_error *
4470 check_staged_file(void *arg, struct got_fileindex_entry *ie)
4472 int *have_staged_files = arg;
4474 if (got_fileindex_entry_stage_get(ie) != GOT_FILEIDX_STAGE_NONE) {
4475 *have_staged_files = 1;
4476 return got_error(GOT_ERR_CANCELLED);
4479 return NULL;
4482 static const struct got_error *
4483 check_non_staged_files(struct got_fileindex *fileindex,
4484 struct got_pathlist_head *paths)
4486 struct got_pathlist_entry *pe;
4487 struct got_fileindex_entry *ie;
4489 TAILQ_FOREACH(pe, paths, entry) {
4490 if (pe->path[0] == '\0')
4491 continue;
4492 ie = got_fileindex_entry_get(fileindex, pe->path, pe->path_len);
4493 if (ie == NULL)
4494 return got_error_path(pe->path, GOT_ERR_BAD_PATH);
4495 if (got_fileindex_entry_stage_get(ie) == GOT_FILEIDX_STAGE_NONE)
4496 return got_error_path(pe->path,
4497 GOT_ERR_FILE_NOT_STAGED);
4500 return NULL;
4503 const struct got_error *
4504 got_worktree_commit(struct got_object_id **new_commit_id,
4505 struct got_worktree *worktree, struct got_pathlist_head *paths,
4506 const char *author, const char *committer,
4507 got_worktree_commit_msg_cb commit_msg_cb, void *commit_arg,
4508 got_worktree_status_cb status_cb, void *status_arg,
4509 struct got_repository *repo)
4511 const struct got_error *err = NULL, *unlockerr = NULL, *sync_err;
4512 struct got_fileindex *fileindex = NULL;
4513 char *fileindex_path = NULL;
4514 struct got_pathlist_head commitable_paths;
4515 struct collect_commitables_arg cc_arg;
4516 struct got_pathlist_entry *pe;
4517 struct got_reference *head_ref = NULL;
4518 struct got_object_id *head_commit_id = NULL;
4519 int have_staged_files = 0;
4521 *new_commit_id = NULL;
4523 TAILQ_INIT(&commitable_paths);
4525 err = lock_worktree(worktree, LOCK_EX);
4526 if (err)
4527 goto done;
4529 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
4530 if (err)
4531 goto done;
4533 err = got_ref_resolve(&head_commit_id, repo, head_ref);
4534 if (err)
4535 goto done;
4537 err = open_fileindex(&fileindex, &fileindex_path, worktree);
4538 if (err)
4539 goto done;
4541 err = got_fileindex_for_each_entry_safe(fileindex, check_staged_file,
4542 &have_staged_files);
4543 if (err && err->code != GOT_ERR_CANCELLED)
4544 goto done;
4545 if (have_staged_files) {
4546 err = check_non_staged_files(fileindex, paths);
4547 if (err)
4548 goto done;
4551 cc_arg.commitable_paths = &commitable_paths;
4552 cc_arg.worktree = worktree;
4553 cc_arg.repo = repo;
4554 cc_arg.have_staged_files = have_staged_files;
4555 TAILQ_FOREACH(pe, paths, entry) {
4556 err = worktree_status(worktree, pe->path, fileindex, repo,
4557 collect_commitables, &cc_arg, NULL, NULL, 0, 0);
4558 if (err)
4559 goto done;
4562 if (TAILQ_EMPTY(&commitable_paths)) {
4563 err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
4564 goto done;
4567 TAILQ_FOREACH(pe, paths, entry) {
4568 err = check_path_is_commitable(pe->path, &commitable_paths);
4569 if (err)
4570 goto done;
4573 TAILQ_FOREACH(pe, &commitable_paths, entry) {
4574 struct got_commitable *ct = pe->data;
4575 const char *ct_path = ct->in_repo_path;
4577 while (ct_path[0] == '/')
4578 ct_path++;
4579 err = check_out_of_date(ct_path, ct->status,
4580 ct->staged_status, ct->base_blob_id, ct->base_commit_id,
4581 head_commit_id, repo, GOT_ERR_COMMIT_OUT_OF_DATE);
4582 if (err)
4583 goto done;
4587 err = commit_worktree(new_commit_id, &commitable_paths,
4588 head_commit_id, worktree, author, committer,
4589 commit_msg_cb, commit_arg, status_cb, status_arg, repo);
4590 if (err)
4591 goto done;
4593 err = update_fileindex_after_commit(&commitable_paths, *new_commit_id,
4594 fileindex, have_staged_files);
4595 sync_err = sync_fileindex(fileindex, fileindex_path);
4596 if (sync_err && err == NULL)
4597 err = sync_err;
4598 done:
4599 if (fileindex)
4600 got_fileindex_free(fileindex);
4601 free(fileindex_path);
4602 unlockerr = lock_worktree(worktree, LOCK_SH);
4603 if (unlockerr && err == NULL)
4604 err = unlockerr;
4605 TAILQ_FOREACH(pe, &commitable_paths, entry) {
4606 struct got_commitable *ct = pe->data;
4607 free_commitable(ct);
4609 got_pathlist_free(&commitable_paths);
4610 return err;
4613 const char *
4614 got_commitable_get_path(struct got_commitable *ct)
4616 return ct->path;
4619 unsigned int
4620 got_commitable_get_status(struct got_commitable *ct)
4622 return ct->status;
4625 struct check_rebase_ok_arg {
4626 struct got_worktree *worktree;
4627 struct got_repository *repo;
4630 static const struct got_error *
4631 check_rebase_ok(void *arg, struct got_fileindex_entry *ie)
4633 const struct got_error *err = NULL;
4634 struct check_rebase_ok_arg *a = arg;
4635 unsigned char status;
4636 struct stat sb;
4637 char *ondisk_path;
4639 /* Reject rebase of a work tree with mixed base commits. */
4640 if (memcmp(ie->commit_sha1, a->worktree->base_commit_id->sha1,
4641 SHA1_DIGEST_LENGTH))
4642 return got_error(GOT_ERR_MIXED_COMMITS);
4644 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, ie->path)
4645 == -1)
4646 return got_error_from_errno("asprintf");
4648 /* Reject rebase of a work tree with modified or staged files. */
4649 err = get_file_status(&status, &sb, ie, ondisk_path, -1, NULL, a->repo);
4650 free(ondisk_path);
4651 if (err)
4652 return err;
4654 if (status != GOT_STATUS_NO_CHANGE)
4655 return got_error(GOT_ERR_MODIFIED);
4656 if (get_staged_status(ie) != GOT_STATUS_NO_CHANGE)
4657 return got_error_path(ie->path, GOT_ERR_FILE_STAGED);
4659 return NULL;
4662 const struct got_error *
4663 got_worktree_rebase_prepare(struct got_reference **new_base_branch_ref,
4664 struct got_reference **tmp_branch, struct got_fileindex **fileindex,
4665 struct got_worktree *worktree, struct got_reference *branch,
4666 struct got_repository *repo)
4668 const struct got_error *err = NULL;
4669 char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
4670 char *branch_ref_name = NULL;
4671 char *fileindex_path = NULL;
4672 struct check_rebase_ok_arg ok_arg;
4673 struct got_reference *wt_branch = NULL, *branch_ref = NULL;
4675 *new_base_branch_ref = NULL;
4676 *tmp_branch = NULL;
4677 *fileindex = NULL;
4679 err = lock_worktree(worktree, LOCK_EX);
4680 if (err)
4681 return err;
4683 err = open_fileindex(fileindex, &fileindex_path, worktree);
4684 if (err)
4685 goto done;
4687 ok_arg.worktree = worktree;
4688 ok_arg.repo = repo;
4689 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
4690 &ok_arg);
4691 if (err)
4692 goto done;
4694 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
4695 if (err)
4696 goto done;
4698 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
4699 if (err)
4700 goto done;
4702 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
4703 if (err)
4704 goto done;
4706 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
4707 0);
4708 if (err)
4709 goto done;
4711 err = got_ref_alloc_symref(new_base_branch_ref,
4712 new_base_branch_ref_name, wt_branch);
4713 if (err)
4714 goto done;
4715 err = got_ref_write(*new_base_branch_ref, repo);
4716 if (err)
4717 goto done;
4719 /* TODO Lock original branch's ref while rebasing? */
4721 err = got_ref_alloc_symref(&branch_ref, branch_ref_name, branch);
4722 if (err)
4723 goto done;
4725 err = got_ref_write(branch_ref, repo);
4726 if (err)
4727 goto done;
4729 err = got_ref_alloc(tmp_branch, tmp_branch_name,
4730 worktree->base_commit_id);
4731 if (err)
4732 goto done;
4733 err = got_ref_write(*tmp_branch, repo);
4734 if (err)
4735 goto done;
4737 err = got_worktree_set_head_ref(worktree, *tmp_branch);
4738 if (err)
4739 goto done;
4740 done:
4741 free(fileindex_path);
4742 free(tmp_branch_name);
4743 free(new_base_branch_ref_name);
4744 free(branch_ref_name);
4745 if (branch_ref)
4746 got_ref_close(branch_ref);
4747 if (wt_branch)
4748 got_ref_close(wt_branch);
4749 if (err) {
4750 if (*new_base_branch_ref) {
4751 got_ref_close(*new_base_branch_ref);
4752 *new_base_branch_ref = NULL;
4754 if (*tmp_branch) {
4755 got_ref_close(*tmp_branch);
4756 *tmp_branch = NULL;
4758 if (*fileindex) {
4759 got_fileindex_free(*fileindex);
4760 *fileindex = NULL;
4762 lock_worktree(worktree, LOCK_SH);
4764 return err;
4767 const struct got_error *
4768 got_worktree_rebase_continue(struct got_object_id **commit_id,
4769 struct got_reference **new_base_branch, struct got_reference **tmp_branch,
4770 struct got_reference **branch, struct got_fileindex **fileindex,
4771 struct got_worktree *worktree, struct got_repository *repo)
4773 const struct got_error *err;
4774 char *commit_ref_name = NULL, *new_base_branch_ref_name = NULL;
4775 char *tmp_branch_name = NULL, *branch_ref_name = NULL;
4776 struct got_reference *commit_ref = NULL, *branch_ref = NULL;
4777 char *fileindex_path = NULL;
4778 int have_staged_files = 0;
4780 *commit_id = NULL;
4781 *new_base_branch = NULL;
4782 *tmp_branch = NULL;
4783 *branch = NULL;
4784 *fileindex = NULL;
4786 err = lock_worktree(worktree, LOCK_EX);
4787 if (err)
4788 return err;
4790 err = open_fileindex(fileindex, &fileindex_path, worktree);
4791 if (err)
4792 goto done;
4794 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
4795 &have_staged_files);
4796 if (err && err->code != GOT_ERR_CANCELLED)
4797 goto done;
4798 if (have_staged_files) {
4799 err = got_error(GOT_ERR_STAGED_PATHS);
4800 goto done;
4803 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
4804 if (err)
4805 goto done;
4807 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
4808 if (err)
4809 goto done;
4811 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
4812 if (err)
4813 goto done;
4815 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
4816 if (err)
4817 goto done;
4819 err = got_ref_open(&branch_ref, repo, branch_ref_name, 0);
4820 if (err)
4821 goto done;
4823 err = got_ref_open(branch, repo,
4824 got_ref_get_symref_target(branch_ref), 0);
4825 if (err)
4826 goto done;
4828 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
4829 if (err)
4830 goto done;
4832 err = got_ref_resolve(commit_id, repo, commit_ref);
4833 if (err)
4834 goto done;
4836 err = got_ref_open(new_base_branch, repo,
4837 new_base_branch_ref_name, 0);
4838 if (err)
4839 goto done;
4841 err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
4842 if (err)
4843 goto done;
4844 done:
4845 free(commit_ref_name);
4846 free(branch_ref_name);
4847 free(fileindex_path);
4848 if (commit_ref)
4849 got_ref_close(commit_ref);
4850 if (branch_ref)
4851 got_ref_close(branch_ref);
4852 if (err) {
4853 free(*commit_id);
4854 *commit_id = NULL;
4855 if (*tmp_branch) {
4856 got_ref_close(*tmp_branch);
4857 *tmp_branch = NULL;
4859 if (*new_base_branch) {
4860 got_ref_close(*new_base_branch);
4861 *new_base_branch = NULL;
4863 if (*branch) {
4864 got_ref_close(*branch);
4865 *branch = NULL;
4867 if (*fileindex) {
4868 got_fileindex_free(*fileindex);
4869 *fileindex = NULL;
4871 lock_worktree(worktree, LOCK_SH);
4873 return err;
4876 const struct got_error *
4877 got_worktree_rebase_in_progress(int *in_progress, struct got_worktree *worktree)
4879 const struct got_error *err;
4880 char *tmp_branch_name = NULL;
4882 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
4883 if (err)
4884 return err;
4886 *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
4887 free(tmp_branch_name);
4888 return NULL;
4891 static const struct got_error *
4892 collect_rebase_commit_msg(struct got_pathlist_head *commitable_paths,
4893 char **logmsg, void *arg)
4895 *logmsg = arg;
4896 return NULL;
4899 static const struct got_error *
4900 rebase_status(void *arg, unsigned char status, unsigned char staged_status,
4901 const char *path, struct got_object_id *blob_id,
4902 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4903 int dirfd, const char *de_name)
4905 return NULL;
4908 struct collect_merged_paths_arg {
4909 got_worktree_checkout_cb progress_cb;
4910 void *progress_arg;
4911 struct got_pathlist_head *merged_paths;
4914 static const struct got_error *
4915 collect_merged_paths(void *arg, unsigned char status, const char *path)
4917 const struct got_error *err;
4918 struct collect_merged_paths_arg *a = arg;
4919 char *p;
4920 struct got_pathlist_entry *new;
4922 err = (*a->progress_cb)(a->progress_arg, status, path);
4923 if (err)
4924 return err;
4926 if (status != GOT_STATUS_MERGE &&
4927 status != GOT_STATUS_ADD &&
4928 status != GOT_STATUS_DELETE &&
4929 status != GOT_STATUS_CONFLICT)
4930 return NULL;
4932 p = strdup(path);
4933 if (p == NULL)
4934 return got_error_from_errno("strdup");
4936 err = got_pathlist_insert(&new, a->merged_paths, p, NULL);
4937 if (err || new == NULL)
4938 free(p);
4939 return err;
4942 void
4943 got_worktree_rebase_pathlist_free(struct got_pathlist_head *merged_paths)
4945 struct got_pathlist_entry *pe;
4947 TAILQ_FOREACH(pe, merged_paths, entry)
4948 free((char *)pe->path);
4950 got_pathlist_free(merged_paths);
4953 static const struct got_error *
4954 store_commit_id(const char *commit_ref_name, struct got_object_id *commit_id,
4955 struct got_repository *repo)
4957 const struct got_error *err;
4958 struct got_reference *commit_ref = NULL;
4960 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
4961 if (err) {
4962 if (err->code != GOT_ERR_NOT_REF)
4963 goto done;
4964 err = got_ref_alloc(&commit_ref, commit_ref_name, commit_id);
4965 if (err)
4966 goto done;
4967 err = got_ref_write(commit_ref, repo);
4968 if (err)
4969 goto done;
4970 } else {
4971 struct got_object_id *stored_id;
4972 int cmp;
4974 err = got_ref_resolve(&stored_id, repo, commit_ref);
4975 if (err)
4976 goto done;
4977 cmp = got_object_id_cmp(commit_id, stored_id);
4978 free(stored_id);
4979 if (cmp != 0) {
4980 err = got_error(GOT_ERR_REBASE_COMMITID);
4981 goto done;
4984 done:
4985 if (commit_ref)
4986 got_ref_close(commit_ref);
4987 return err;
4990 static const struct got_error *
4991 rebase_merge_files(struct got_pathlist_head *merged_paths,
4992 const char *commit_ref_name, struct got_worktree *worktree,
4993 struct got_fileindex *fileindex, struct got_object_id *parent_commit_id,
4994 struct got_object_id *commit_id, struct got_repository *repo,
4995 got_worktree_checkout_cb progress_cb, void *progress_arg,
4996 got_cancel_cb cancel_cb, void *cancel_arg)
4998 const struct got_error *err;
4999 struct got_reference *commit_ref = NULL;
5000 struct collect_merged_paths_arg cmp_arg;
5001 char *fileindex_path;
5003 /* Work tree is locked/unlocked during rebase preparation/teardown. */
5005 err = get_fileindex_path(&fileindex_path, worktree);
5006 if (err)
5007 return err;
5009 cmp_arg.progress_cb = progress_cb;
5010 cmp_arg.progress_arg = progress_arg;
5011 cmp_arg.merged_paths = merged_paths;
5012 err = merge_files(worktree, fileindex, fileindex_path,
5013 parent_commit_id, commit_id, repo, collect_merged_paths,
5014 &cmp_arg, cancel_cb, cancel_arg);
5015 if (commit_ref)
5016 got_ref_close(commit_ref);
5017 return err;
5020 const struct got_error *
5021 got_worktree_rebase_merge_files(struct got_pathlist_head *merged_paths,
5022 struct got_worktree *worktree, struct got_fileindex *fileindex,
5023 struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
5024 struct got_repository *repo,
5025 got_worktree_checkout_cb progress_cb, void *progress_arg,
5026 got_cancel_cb cancel_cb, void *cancel_arg)
5028 const struct got_error *err;
5029 char *commit_ref_name;
5031 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
5032 if (err)
5033 return err;
5035 err = store_commit_id(commit_ref_name, commit_id, repo);
5036 if (err)
5037 goto done;
5039 err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
5040 fileindex, parent_commit_id, commit_id, repo, progress_cb,
5041 progress_arg, cancel_cb, cancel_arg);
5042 done:
5043 free(commit_ref_name);
5044 return err;
5047 const struct got_error *
5048 got_worktree_histedit_merge_files(struct got_pathlist_head *merged_paths,
5049 struct got_worktree *worktree, struct got_fileindex *fileindex,
5050 struct got_object_id *parent_commit_id, struct got_object_id *commit_id,
5051 struct got_repository *repo,
5052 got_worktree_checkout_cb progress_cb, void *progress_arg,
5053 got_cancel_cb cancel_cb, void *cancel_arg)
5055 const struct got_error *err;
5056 char *commit_ref_name;
5058 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
5059 if (err)
5060 return err;
5062 err = store_commit_id(commit_ref_name, commit_id, repo);
5063 if (err)
5064 goto done;
5066 err = rebase_merge_files(merged_paths, commit_ref_name, worktree,
5067 fileindex, parent_commit_id, commit_id, repo, progress_cb,
5068 progress_arg, cancel_cb, cancel_arg);
5069 done:
5070 free(commit_ref_name);
5071 return err;
5074 static const struct got_error *
5075 rebase_commit(struct got_object_id **new_commit_id,
5076 struct got_pathlist_head *merged_paths, struct got_reference *commit_ref,
5077 struct got_worktree *worktree, struct got_fileindex *fileindex,
5078 struct got_reference *tmp_branch, struct got_commit_object *orig_commit,
5079 const char *new_logmsg, struct got_repository *repo)
5081 const struct got_error *err, *sync_err;
5082 struct got_pathlist_head commitable_paths;
5083 struct collect_commitables_arg cc_arg;
5084 char *fileindex_path = NULL;
5085 struct got_reference *head_ref = NULL;
5086 struct got_object_id *head_commit_id = NULL;
5087 char *logmsg = NULL;
5089 TAILQ_INIT(&commitable_paths);
5090 *new_commit_id = NULL;
5092 /* Work tree is locked/unlocked during rebase preparation/teardown. */
5094 err = get_fileindex_path(&fileindex_path, worktree);
5095 if (err)
5096 return err;
5098 cc_arg.commitable_paths = &commitable_paths;
5099 cc_arg.worktree = worktree;
5100 cc_arg.repo = repo;
5101 cc_arg.have_staged_files = 0;
5103 * If possible get the status of individual files directly to
5104 * avoid crawling the entire work tree once per rebased commit.
5105 * TODO: Ideally, merged_paths would contain a list of commitables
5106 * we could use so we could skip worktree_status() entirely.
5108 if (merged_paths) {
5109 struct got_pathlist_entry *pe;
5110 if (TAILQ_EMPTY(merged_paths)) {
5111 err = got_error(GOT_ERR_NO_MERGED_PATHS);
5112 goto done;
5114 TAILQ_FOREACH(pe, merged_paths, entry) {
5115 err = worktree_status(worktree, pe->path, fileindex,
5116 repo, collect_commitables, &cc_arg, NULL, NULL, 0,
5117 0);
5118 if (err)
5119 goto done;
5121 } else {
5122 err = worktree_status(worktree, "", fileindex, repo,
5123 collect_commitables, &cc_arg, NULL, NULL, 0, 0);
5124 if (err)
5125 goto done;
5128 if (TAILQ_EMPTY(&commitable_paths)) {
5129 /* No-op change; commit will be elided. */
5130 err = got_ref_delete(commit_ref, repo);
5131 if (err)
5132 goto done;
5133 err = got_error(GOT_ERR_COMMIT_NO_CHANGES);
5134 goto done;
5137 err = got_ref_open(&head_ref, repo, worktree->head_ref_name, 0);
5138 if (err)
5139 goto done;
5141 err = got_ref_resolve(&head_commit_id, repo, head_ref);
5142 if (err)
5143 goto done;
5145 if (new_logmsg) {
5146 logmsg = strdup(new_logmsg);
5147 if (logmsg == NULL) {
5148 err = got_error_from_errno("strdup");
5149 goto done;
5151 } else {
5152 err = got_object_commit_get_logmsg(&logmsg, orig_commit);
5153 if (err)
5154 goto done;
5157 /* NB: commit_worktree will call free(logmsg) */
5158 err = commit_worktree(new_commit_id, &commitable_paths, head_commit_id,
5159 worktree, got_object_commit_get_author(orig_commit),
5160 got_object_commit_get_committer(orig_commit),
5161 collect_rebase_commit_msg, logmsg, rebase_status, NULL, repo);
5162 if (err)
5163 goto done;
5165 err = got_ref_change_ref(tmp_branch, *new_commit_id);
5166 if (err)
5167 goto done;
5169 err = got_ref_delete(commit_ref, repo);
5170 if (err)
5171 goto done;
5173 err = update_fileindex_after_commit(&commitable_paths, *new_commit_id,
5174 fileindex, 0);
5175 sync_err = sync_fileindex(fileindex, fileindex_path);
5176 if (sync_err && err == NULL)
5177 err = sync_err;
5178 done:
5179 free(fileindex_path);
5180 free(head_commit_id);
5181 if (head_ref)
5182 got_ref_close(head_ref);
5183 if (err) {
5184 free(*new_commit_id);
5185 *new_commit_id = NULL;
5187 return err;
5190 const struct got_error *
5191 got_worktree_rebase_commit(struct got_object_id **new_commit_id,
5192 struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
5193 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
5194 struct got_commit_object *orig_commit,
5195 struct got_object_id *orig_commit_id, struct got_repository *repo)
5197 const struct got_error *err;
5198 char *commit_ref_name;
5199 struct got_reference *commit_ref = NULL;
5200 struct got_object_id *commit_id = NULL;
5202 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
5203 if (err)
5204 return err;
5206 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
5207 if (err)
5208 goto done;
5209 err = got_ref_resolve(&commit_id, repo, commit_ref);
5210 if (err)
5211 goto done;
5212 if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
5213 err = got_error(GOT_ERR_REBASE_COMMITID);
5214 goto done;
5217 err = rebase_commit(new_commit_id, merged_paths, commit_ref,
5218 worktree, fileindex, tmp_branch, orig_commit, NULL, repo);
5219 done:
5220 if (commit_ref)
5221 got_ref_close(commit_ref);
5222 free(commit_ref_name);
5223 free(commit_id);
5224 return err;
5227 const struct got_error *
5228 got_worktree_histedit_commit(struct got_object_id **new_commit_id,
5229 struct got_pathlist_head *merged_paths, struct got_worktree *worktree,
5230 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
5231 struct got_commit_object *orig_commit,
5232 struct got_object_id *orig_commit_id, const char *new_logmsg,
5233 struct got_repository *repo)
5235 const struct got_error *err;
5236 char *commit_ref_name;
5237 struct got_reference *commit_ref = NULL;
5238 struct got_object_id *commit_id = NULL;
5240 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
5241 if (err)
5242 return err;
5244 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
5245 if (err)
5246 goto done;
5247 err = got_ref_resolve(&commit_id, repo, commit_ref);
5248 if (err)
5249 goto done;
5250 if (got_object_id_cmp(commit_id, orig_commit_id) != 0) {
5251 err = got_error(GOT_ERR_HISTEDIT_COMMITID);
5252 goto done;
5255 err = rebase_commit(new_commit_id, merged_paths, commit_ref,
5256 worktree, fileindex, tmp_branch, orig_commit, new_logmsg, repo);
5257 done:
5258 if (commit_ref)
5259 got_ref_close(commit_ref);
5260 free(commit_ref_name);
5261 free(commit_id);
5262 return err;
5265 const struct got_error *
5266 got_worktree_rebase_postpone(struct got_worktree *worktree,
5267 struct got_fileindex *fileindex)
5269 if (fileindex)
5270 got_fileindex_free(fileindex);
5271 return lock_worktree(worktree, LOCK_SH);
5274 static const struct got_error *
5275 delete_ref(const char *name, struct got_repository *repo)
5277 const struct got_error *err;
5278 struct got_reference *ref;
5280 err = got_ref_open(&ref, repo, name, 0);
5281 if (err) {
5282 if (err->code == GOT_ERR_NOT_REF)
5283 return NULL;
5284 return err;
5287 err = got_ref_delete(ref, repo);
5288 got_ref_close(ref);
5289 return err;
5292 static const struct got_error *
5293 delete_rebase_refs(struct got_worktree *worktree, struct got_repository *repo)
5295 const struct got_error *err;
5296 char *tmp_branch_name = NULL, *new_base_branch_ref_name = NULL;
5297 char *branch_ref_name = NULL, *commit_ref_name = NULL;
5299 err = get_rebase_tmp_ref_name(&tmp_branch_name, worktree);
5300 if (err)
5301 goto done;
5302 err = delete_ref(tmp_branch_name, repo);
5303 if (err)
5304 goto done;
5306 err = get_newbase_symref_name(&new_base_branch_ref_name, worktree);
5307 if (err)
5308 goto done;
5309 err = delete_ref(new_base_branch_ref_name, repo);
5310 if (err)
5311 goto done;
5313 err = get_rebase_branch_symref_name(&branch_ref_name, worktree);
5314 if (err)
5315 goto done;
5316 err = delete_ref(branch_ref_name, repo);
5317 if (err)
5318 goto done;
5320 err = get_rebase_commit_ref_name(&commit_ref_name, worktree);
5321 if (err)
5322 goto done;
5323 err = delete_ref(commit_ref_name, repo);
5324 if (err)
5325 goto done;
5327 done:
5328 free(tmp_branch_name);
5329 free(new_base_branch_ref_name);
5330 free(branch_ref_name);
5331 free(commit_ref_name);
5332 return err;
5335 const struct got_error *
5336 got_worktree_rebase_complete(struct got_worktree *worktree,
5337 struct got_fileindex *fileindex, struct got_reference *new_base_branch,
5338 struct got_reference *tmp_branch, struct got_reference *rebased_branch,
5339 struct got_repository *repo)
5341 const struct got_error *err, *unlockerr;
5342 struct got_object_id *new_head_commit_id = NULL;
5344 err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
5345 if (err)
5346 return err;
5348 err = got_ref_change_ref(rebased_branch, new_head_commit_id);
5349 if (err)
5350 goto done;
5352 err = got_ref_write(rebased_branch, repo);
5353 if (err)
5354 goto done;
5356 err = got_worktree_set_head_ref(worktree, rebased_branch);
5357 if (err)
5358 goto done;
5360 err = delete_rebase_refs(worktree, repo);
5361 done:
5362 if (fileindex)
5363 got_fileindex_free(fileindex);
5364 free(new_head_commit_id);
5365 unlockerr = lock_worktree(worktree, LOCK_SH);
5366 if (unlockerr && err == NULL)
5367 err = unlockerr;
5368 return err;
5371 const struct got_error *
5372 got_worktree_rebase_abort(struct got_worktree *worktree,
5373 struct got_fileindex *fileindex, struct got_repository *repo,
5374 struct got_reference *new_base_branch,
5375 got_worktree_checkout_cb progress_cb, void *progress_arg)
5377 const struct got_error *err, *unlockerr, *sync_err;
5378 struct got_reference *resolved = NULL;
5379 struct got_object_id *commit_id = NULL;
5380 char *fileindex_path = NULL;
5381 struct revert_file_args rfa;
5382 struct got_object_id *tree_id = NULL;
5384 err = lock_worktree(worktree, LOCK_EX);
5385 if (err)
5386 return err;
5388 err = got_ref_open(&resolved, repo,
5389 got_ref_get_symref_target(new_base_branch), 0);
5390 if (err)
5391 goto done;
5393 err = got_worktree_set_head_ref(worktree, resolved);
5394 if (err)
5395 goto done;
5398 * XXX commits to the base branch could have happened while
5399 * we were busy rebasing; should we store the original commit ID
5400 * when rebase begins and read it back here?
5402 err = got_ref_resolve(&commit_id, repo, resolved);
5403 if (err)
5404 goto done;
5406 err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
5407 if (err)
5408 goto done;
5410 err = got_object_id_by_path(&tree_id, repo,
5411 worktree->base_commit_id, worktree->path_prefix);
5412 if (err)
5413 goto done;
5415 err = delete_rebase_refs(worktree, repo);
5416 if (err)
5417 goto done;
5419 err = get_fileindex_path(&fileindex_path, worktree);
5420 if (err)
5421 goto done;
5423 rfa.worktree = worktree;
5424 rfa.fileindex = fileindex;
5425 rfa.progress_cb = progress_cb;
5426 rfa.progress_arg = progress_arg;
5427 rfa.patch_cb = NULL;
5428 rfa.patch_arg = NULL;
5429 rfa.repo = repo;
5430 err = worktree_status(worktree, "", fileindex, repo,
5431 revert_file, &rfa, NULL, NULL, 0, 0);
5432 if (err)
5433 goto sync;
5435 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
5436 repo, progress_cb, progress_arg, NULL, NULL);
5437 sync:
5438 sync_err = sync_fileindex(fileindex, fileindex_path);
5439 if (sync_err && err == NULL)
5440 err = sync_err;
5441 done:
5442 got_ref_close(resolved);
5443 free(tree_id);
5444 free(commit_id);
5445 if (fileindex)
5446 got_fileindex_free(fileindex);
5447 free(fileindex_path);
5449 unlockerr = lock_worktree(worktree, LOCK_SH);
5450 if (unlockerr && err == NULL)
5451 err = unlockerr;
5452 return err;
5455 const struct got_error *
5456 got_worktree_histedit_prepare(struct got_reference **tmp_branch,
5457 struct got_reference **branch_ref, struct got_object_id **base_commit_id,
5458 struct got_fileindex **fileindex, struct got_worktree *worktree,
5459 struct got_repository *repo)
5461 const struct got_error *err = NULL;
5462 char *tmp_branch_name = NULL;
5463 char *branch_ref_name = NULL;
5464 char *base_commit_ref_name = NULL;
5465 char *fileindex_path = NULL;
5466 struct check_rebase_ok_arg ok_arg;
5467 struct got_reference *wt_branch = NULL;
5468 struct got_reference *base_commit_ref = NULL;
5470 *tmp_branch = NULL;
5471 *branch_ref = NULL;
5472 *base_commit_id = NULL;
5473 *fileindex = NULL;
5475 err = lock_worktree(worktree, LOCK_EX);
5476 if (err)
5477 return err;
5479 err = open_fileindex(fileindex, &fileindex_path, worktree);
5480 if (err)
5481 goto done;
5483 ok_arg.worktree = worktree;
5484 ok_arg.repo = repo;
5485 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
5486 &ok_arg);
5487 if (err)
5488 goto done;
5490 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
5491 if (err)
5492 goto done;
5494 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
5495 if (err)
5496 goto done;
5498 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
5499 worktree);
5500 if (err)
5501 goto done;
5503 err = got_ref_open(&wt_branch, repo, worktree->head_ref_name,
5504 0);
5505 if (err)
5506 goto done;
5508 err = got_ref_alloc_symref(branch_ref, branch_ref_name, wt_branch);
5509 if (err)
5510 goto done;
5512 err = got_ref_write(*branch_ref, repo);
5513 if (err)
5514 goto done;
5516 err = got_ref_alloc(&base_commit_ref, base_commit_ref_name,
5517 worktree->base_commit_id);
5518 if (err)
5519 goto done;
5520 err = got_ref_write(base_commit_ref, repo);
5521 if (err)
5522 goto done;
5523 *base_commit_id = got_object_id_dup(worktree->base_commit_id);
5524 if (*base_commit_id == NULL) {
5525 err = got_error_from_errno("got_object_id_dup");
5526 goto done;
5529 err = got_ref_alloc(tmp_branch, tmp_branch_name,
5530 worktree->base_commit_id);
5531 if (err)
5532 goto done;
5533 err = got_ref_write(*tmp_branch, repo);
5534 if (err)
5535 goto done;
5537 err = got_worktree_set_head_ref(worktree, *tmp_branch);
5538 if (err)
5539 goto done;
5540 done:
5541 free(fileindex_path);
5542 free(tmp_branch_name);
5543 free(branch_ref_name);
5544 free(base_commit_ref_name);
5545 if (wt_branch)
5546 got_ref_close(wt_branch);
5547 if (err) {
5548 if (*branch_ref) {
5549 got_ref_close(*branch_ref);
5550 *branch_ref = NULL;
5552 if (*tmp_branch) {
5553 got_ref_close(*tmp_branch);
5554 *tmp_branch = NULL;
5556 free(*base_commit_id);
5557 if (*fileindex) {
5558 got_fileindex_free(*fileindex);
5559 *fileindex = NULL;
5561 lock_worktree(worktree, LOCK_SH);
5563 return err;
5566 const struct got_error *
5567 got_worktree_histedit_postpone(struct got_worktree *worktree,
5568 struct got_fileindex *fileindex)
5570 if (fileindex)
5571 got_fileindex_free(fileindex);
5572 return lock_worktree(worktree, LOCK_SH);
5575 const struct got_error *
5576 got_worktree_histedit_in_progress(int *in_progress,
5577 struct got_worktree *worktree)
5579 const struct got_error *err;
5580 char *tmp_branch_name = NULL;
5582 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
5583 if (err)
5584 return err;
5586 *in_progress = (strcmp(tmp_branch_name, worktree->head_ref_name) == 0);
5587 free(tmp_branch_name);
5588 return NULL;
5591 const struct got_error *
5592 got_worktree_histedit_continue(struct got_object_id **commit_id,
5593 struct got_reference **tmp_branch, struct got_reference **branch_ref,
5594 struct got_object_id **base_commit_id, struct got_fileindex **fileindex,
5595 struct got_worktree *worktree, struct got_repository *repo)
5597 const struct got_error *err;
5598 char *commit_ref_name = NULL, *base_commit_ref_name = NULL;
5599 char *tmp_branch_name = NULL, *branch_ref_name = NULL;
5600 struct got_reference *commit_ref = NULL;
5601 struct got_reference *base_commit_ref = NULL;
5602 char *fileindex_path = NULL;
5603 int have_staged_files = 0;
5605 *commit_id = NULL;
5606 *tmp_branch = NULL;
5607 *base_commit_id = NULL;
5608 *fileindex = NULL;
5610 err = lock_worktree(worktree, LOCK_EX);
5611 if (err)
5612 return err;
5614 err = open_fileindex(fileindex, &fileindex_path, worktree);
5615 if (err)
5616 goto done;
5618 err = got_fileindex_for_each_entry_safe(*fileindex, check_staged_file,
5619 &have_staged_files);
5620 if (err && err->code != GOT_ERR_CANCELLED)
5621 goto done;
5622 if (have_staged_files) {
5623 err = got_error(GOT_ERR_STAGED_PATHS);
5624 goto done;
5627 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
5628 if (err)
5629 goto done;
5631 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
5632 if (err)
5633 goto done;
5635 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
5636 if (err)
5637 goto done;
5639 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
5640 worktree);
5641 if (err)
5642 goto done;
5644 err = got_ref_open(branch_ref, repo, branch_ref_name, 0);
5645 if (err)
5646 goto done;
5648 err = got_ref_open(&commit_ref, repo, commit_ref_name, 0);
5649 if (err)
5650 goto done;
5651 err = got_ref_resolve(commit_id, repo, commit_ref);
5652 if (err)
5653 goto done;
5655 err = got_ref_open(&base_commit_ref, repo, base_commit_ref_name, 0);
5656 if (err)
5657 goto done;
5658 err = got_ref_resolve(base_commit_id, repo, base_commit_ref);
5659 if (err)
5660 goto done;
5662 err = got_ref_open(tmp_branch, repo, tmp_branch_name, 0);
5663 if (err)
5664 goto done;
5665 done:
5666 free(commit_ref_name);
5667 free(branch_ref_name);
5668 free(fileindex_path);
5669 if (commit_ref)
5670 got_ref_close(commit_ref);
5671 if (base_commit_ref)
5672 got_ref_close(base_commit_ref);
5673 if (err) {
5674 free(*commit_id);
5675 *commit_id = NULL;
5676 free(*base_commit_id);
5677 *base_commit_id = NULL;
5678 if (*tmp_branch) {
5679 got_ref_close(*tmp_branch);
5680 *tmp_branch = NULL;
5682 if (*fileindex) {
5683 got_fileindex_free(*fileindex);
5684 *fileindex = NULL;
5686 lock_worktree(worktree, LOCK_EX);
5688 return err;
5691 static const struct got_error *
5692 delete_histedit_refs(struct got_worktree *worktree, struct got_repository *repo)
5694 const struct got_error *err;
5695 char *tmp_branch_name = NULL, *base_commit_ref_name = NULL;
5696 char *branch_ref_name = NULL, *commit_ref_name = NULL;
5698 err = get_histedit_tmp_ref_name(&tmp_branch_name, worktree);
5699 if (err)
5700 goto done;
5701 err = delete_ref(tmp_branch_name, repo);
5702 if (err)
5703 goto done;
5705 err = get_histedit_base_commit_ref_name(&base_commit_ref_name,
5706 worktree);
5707 if (err)
5708 goto done;
5709 err = delete_ref(base_commit_ref_name, repo);
5710 if (err)
5711 goto done;
5713 err = get_histedit_branch_symref_name(&branch_ref_name, worktree);
5714 if (err)
5715 goto done;
5716 err = delete_ref(branch_ref_name, repo);
5717 if (err)
5718 goto done;
5720 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
5721 if (err)
5722 goto done;
5723 err = delete_ref(commit_ref_name, repo);
5724 if (err)
5725 goto done;
5726 done:
5727 free(tmp_branch_name);
5728 free(base_commit_ref_name);
5729 free(branch_ref_name);
5730 free(commit_ref_name);
5731 return err;
5734 const struct got_error *
5735 got_worktree_histedit_abort(struct got_worktree *worktree,
5736 struct got_fileindex *fileindex, struct got_repository *repo,
5737 struct got_reference *branch, struct got_object_id *base_commit_id,
5738 got_worktree_checkout_cb progress_cb, void *progress_arg)
5740 const struct got_error *err, *unlockerr, *sync_err;
5741 struct got_reference *resolved = NULL;
5742 char *fileindex_path = NULL;
5743 struct got_object_id *tree_id = NULL;
5744 struct revert_file_args rfa;
5746 err = lock_worktree(worktree, LOCK_EX);
5747 if (err)
5748 return err;
5750 err = got_ref_open(&resolved, repo,
5751 got_ref_get_symref_target(branch), 0);
5752 if (err)
5753 goto done;
5755 err = got_worktree_set_head_ref(worktree, resolved);
5756 if (err)
5757 goto done;
5759 err = got_worktree_set_base_commit_id(worktree, repo, base_commit_id);
5760 if (err)
5761 goto done;
5763 err = got_object_id_by_path(&tree_id, repo, base_commit_id,
5764 worktree->path_prefix);
5765 if (err)
5766 goto done;
5768 err = delete_histedit_refs(worktree, repo);
5769 if (err)
5770 goto done;
5772 err = get_fileindex_path(&fileindex_path, worktree);
5773 if (err)
5774 goto done;
5776 rfa.worktree = worktree;
5777 rfa.fileindex = fileindex;
5778 rfa.progress_cb = progress_cb;
5779 rfa.progress_arg = progress_arg;
5780 rfa.patch_cb = NULL;
5781 rfa.patch_arg = NULL;
5782 rfa.repo = repo;
5783 err = worktree_status(worktree, "", fileindex, repo,
5784 revert_file, &rfa, NULL, NULL, 0, 0);
5785 if (err)
5786 goto sync;
5788 err = checkout_files(worktree, fileindex, "", tree_id, NULL,
5789 repo, progress_cb, progress_arg, NULL, NULL);
5790 sync:
5791 sync_err = sync_fileindex(fileindex, fileindex_path);
5792 if (sync_err && err == NULL)
5793 err = sync_err;
5794 done:
5795 got_ref_close(resolved);
5796 free(tree_id);
5797 free(fileindex_path);
5799 unlockerr = lock_worktree(worktree, LOCK_SH);
5800 if (unlockerr && err == NULL)
5801 err = unlockerr;
5802 return err;
5805 const struct got_error *
5806 got_worktree_histedit_complete(struct got_worktree *worktree,
5807 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
5808 struct got_reference *edited_branch, struct got_repository *repo)
5810 const struct got_error *err, *unlockerr;
5811 struct got_object_id *new_head_commit_id = NULL;
5812 struct got_reference *resolved = NULL;
5814 err = got_ref_resolve(&new_head_commit_id, repo, tmp_branch);
5815 if (err)
5816 return err;
5818 err = got_ref_open(&resolved, repo,
5819 got_ref_get_symref_target(edited_branch), 0);
5820 if (err)
5821 goto done;
5823 err = got_ref_change_ref(resolved, new_head_commit_id);
5824 if (err)
5825 goto done;
5827 err = got_ref_write(resolved, repo);
5828 if (err)
5829 goto done;
5831 err = got_worktree_set_head_ref(worktree, resolved);
5832 if (err)
5833 goto done;
5835 err = delete_histedit_refs(worktree, repo);
5836 done:
5837 if (fileindex)
5838 got_fileindex_free(fileindex);
5839 free(new_head_commit_id);
5840 unlockerr = lock_worktree(worktree, LOCK_SH);
5841 if (unlockerr && err == NULL)
5842 err = unlockerr;
5843 return err;
5846 const struct got_error *
5847 got_worktree_histedit_skip_commit(struct got_worktree *worktree,
5848 struct got_object_id *commit_id, struct got_repository *repo)
5850 const struct got_error *err;
5851 char *commit_ref_name;
5853 err = get_histedit_commit_ref_name(&commit_ref_name, worktree);
5854 if (err)
5855 return err;
5857 err = store_commit_id(commit_ref_name, commit_id, repo);
5858 if (err)
5859 goto done;
5861 err = delete_ref(commit_ref_name, repo);
5862 done:
5863 free(commit_ref_name);
5864 return err;
5867 const struct got_error *
5868 got_worktree_integrate_prepare(struct got_fileindex **fileindex,
5869 struct got_reference **branch_ref, struct got_reference **base_branch_ref,
5870 struct got_worktree *worktree, const char *refname,
5871 struct got_repository *repo)
5873 const struct got_error *err = NULL;
5874 char *fileindex_path = NULL;
5875 struct check_rebase_ok_arg ok_arg;
5877 *fileindex = NULL;
5878 *branch_ref = NULL;
5879 *base_branch_ref = NULL;
5881 err = lock_worktree(worktree, LOCK_EX);
5882 if (err)
5883 return err;
5885 if (strcmp(refname, got_worktree_get_head_ref_name(worktree)) == 0) {
5886 err = got_error_msg(GOT_ERR_SAME_BRANCH,
5887 "cannot integrate a branch into itself; "
5888 "update -b or different branch name required");
5889 goto done;
5892 err = open_fileindex(fileindex, &fileindex_path, worktree);
5893 if (err)
5894 goto done;
5896 /* Preconditions are the same as for rebase. */
5897 ok_arg.worktree = worktree;
5898 ok_arg.repo = repo;
5899 err = got_fileindex_for_each_entry_safe(*fileindex, check_rebase_ok,
5900 &ok_arg);
5901 if (err)
5902 goto done;
5904 err = got_ref_open(branch_ref, repo, refname, 1);
5905 if (err)
5906 goto done;
5908 err = got_ref_open(base_branch_ref, repo,
5909 got_worktree_get_head_ref_name(worktree), 1);
5910 done:
5911 if (err) {
5912 if (*branch_ref) {
5913 got_ref_close(*branch_ref);
5914 *branch_ref = NULL;
5916 if (*base_branch_ref) {
5917 got_ref_close(*base_branch_ref);
5918 *base_branch_ref = NULL;
5920 if (*fileindex) {
5921 got_fileindex_free(*fileindex);
5922 *fileindex = NULL;
5924 lock_worktree(worktree, LOCK_SH);
5926 return err;
5929 const struct got_error *
5930 got_worktree_integrate_continue(struct got_worktree *worktree,
5931 struct got_fileindex *fileindex, struct got_repository *repo,
5932 struct got_reference *branch_ref, struct got_reference *base_branch_ref,
5933 got_worktree_checkout_cb progress_cb, void *progress_arg,
5934 got_cancel_cb cancel_cb, void *cancel_arg)
5936 const struct got_error *err = NULL, *sync_err, *unlockerr;
5937 char *fileindex_path = NULL;
5938 struct got_object_id *tree_id = NULL, *commit_id = NULL;
5940 err = get_fileindex_path(&fileindex_path, worktree);
5941 if (err)
5942 goto done;
5944 err = got_ref_resolve(&commit_id, repo, branch_ref);
5945 if (err)
5946 goto done;
5948 err = got_object_id_by_path(&tree_id, repo, commit_id,
5949 worktree->path_prefix);
5950 if (err)
5951 goto done;
5953 err = got_worktree_set_base_commit_id(worktree, repo, commit_id);
5954 if (err)
5955 goto done;
5957 err = checkout_files(worktree, fileindex, "", tree_id, NULL, repo,
5958 progress_cb, progress_arg, cancel_cb, cancel_arg);
5959 if (err)
5960 goto sync;
5962 err = got_ref_change_ref(base_branch_ref, commit_id);
5963 if (err)
5964 goto sync;
5966 err = got_ref_write(base_branch_ref, repo);
5967 sync:
5968 sync_err = sync_fileindex(fileindex, fileindex_path);
5969 if (sync_err && err == NULL)
5970 err = sync_err;
5972 done:
5973 unlockerr = got_ref_unlock(branch_ref);
5974 if (unlockerr && err == NULL)
5975 err = unlockerr;
5976 got_ref_close(branch_ref);
5978 unlockerr = got_ref_unlock(base_branch_ref);
5979 if (unlockerr && err == NULL)
5980 err = unlockerr;
5981 got_ref_close(base_branch_ref);
5983 got_fileindex_free(fileindex);
5984 free(fileindex_path);
5985 free(tree_id);
5987 unlockerr = lock_worktree(worktree, LOCK_SH);
5988 if (unlockerr && err == NULL)
5989 err = unlockerr;
5990 return err;
5993 const struct got_error *
5994 got_worktree_integrate_abort(struct got_worktree *worktree,
5995 struct got_fileindex *fileindex, struct got_repository *repo,
5996 struct got_reference *branch_ref, struct got_reference *base_branch_ref)
5998 const struct got_error *err = NULL, *unlockerr = NULL;
6000 got_fileindex_free(fileindex);
6002 err = lock_worktree(worktree, LOCK_SH);
6004 unlockerr = got_ref_unlock(branch_ref);
6005 if (unlockerr && err == NULL)
6006 err = unlockerr;
6007 got_ref_close(branch_ref);
6009 unlockerr = got_ref_unlock(base_branch_ref);
6010 if (unlockerr && err == NULL)
6011 err = unlockerr;
6012 got_ref_close(base_branch_ref);
6014 return err;
6017 struct check_stage_ok_arg {
6018 struct got_object_id *head_commit_id;
6019 struct got_worktree *worktree;
6020 struct got_fileindex *fileindex;
6021 struct got_repository *repo;
6022 int have_changes;
6025 const struct got_error *
6026 check_stage_ok(void *arg, unsigned char status,
6027 unsigned char staged_status, const char *relpath,
6028 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
6029 struct got_object_id *commit_id, int dirfd, const char *de_name)
6031 struct check_stage_ok_arg *a = arg;
6032 const struct got_error *err = NULL;
6033 struct got_fileindex_entry *ie;
6034 struct got_object_id base_commit_id;
6035 struct got_object_id *base_commit_idp = NULL;
6036 char *in_repo_path = NULL, *p;
6038 if (status == GOT_STATUS_UNVERSIONED ||
6039 status == GOT_STATUS_NO_CHANGE)
6040 return NULL;
6041 if (status == GOT_STATUS_NONEXISTENT)
6042 return got_error_set_errno(ENOENT, relpath);
6044 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
6045 if (ie == NULL)
6046 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
6048 if (asprintf(&in_repo_path, "%s%s%s", a->worktree->path_prefix,
6049 got_path_is_root_dir(a->worktree->path_prefix) ? "" : "/",
6050 relpath) == -1)
6051 return got_error_from_errno("asprintf");
6053 if (got_fileindex_entry_has_commit(ie)) {
6054 memcpy(base_commit_id.sha1, ie->commit_sha1,
6055 SHA1_DIGEST_LENGTH);
6056 base_commit_idp = &base_commit_id;
6059 if (status == GOT_STATUS_CONFLICT) {
6060 err = got_error_path(ie->path, GOT_ERR_STAGE_CONFLICT);
6061 goto done;
6062 } else if (status != GOT_STATUS_ADD &&
6063 status != GOT_STATUS_MODIFY &&
6064 status != GOT_STATUS_DELETE) {
6065 err = got_error_path(ie->path, GOT_ERR_FILE_STATUS);
6066 goto done;
6069 a->have_changes = 1;
6071 p = in_repo_path;
6072 while (p[0] == '/')
6073 p++;
6074 err = check_out_of_date(p, status, staged_status,
6075 blob_id, base_commit_idp, a->head_commit_id, a->repo,
6076 GOT_ERR_STAGE_OUT_OF_DATE);
6077 done:
6078 free(in_repo_path);
6079 return err;
6082 struct stage_path_arg {
6083 struct got_worktree *worktree;
6084 struct got_fileindex *fileindex;
6085 struct got_repository *repo;
6086 got_worktree_status_cb status_cb;
6087 void *status_arg;
6088 got_worktree_patch_cb patch_cb;
6089 void *patch_arg;
6090 int staged_something;
6093 static const struct got_error *
6094 stage_path(void *arg, unsigned char status,
6095 unsigned char staged_status, const char *relpath,
6096 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
6097 struct got_object_id *commit_id, int dirfd, const char *de_name)
6099 struct stage_path_arg *a = arg;
6100 const struct got_error *err = NULL;
6101 struct got_fileindex_entry *ie;
6102 char *ondisk_path = NULL, *path_content = NULL;
6103 uint32_t stage;
6104 struct got_object_id *new_staged_blob_id = NULL;
6106 if (status == GOT_STATUS_UNVERSIONED)
6107 return NULL;
6109 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
6110 if (ie == NULL)
6111 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
6113 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path,
6114 relpath)== -1)
6115 return got_error_from_errno("asprintf");
6117 switch (status) {
6118 case GOT_STATUS_ADD:
6119 case GOT_STATUS_MODIFY:
6120 if (a->patch_cb) {
6121 if (status == GOT_STATUS_ADD) {
6122 int choice = GOT_PATCH_CHOICE_NONE;
6123 err = (*a->patch_cb)(&choice, a->patch_arg,
6124 status, ie->path, NULL, 1, 1);
6125 if (err)
6126 break;
6127 if (choice != GOT_PATCH_CHOICE_YES)
6128 break;
6129 } else {
6130 err = create_patched_content(&path_content, 0,
6131 staged_blob_id ? staged_blob_id : blob_id,
6132 ondisk_path, dirfd, de_name, ie->path,
6133 a->repo, a->patch_cb, a->patch_arg);
6134 if (err || path_content == NULL)
6135 break;
6138 err = got_object_blob_create(&new_staged_blob_id,
6139 path_content ? path_content : ondisk_path, a->repo);
6140 if (err)
6141 break;
6142 memcpy(ie->staged_blob_sha1, new_staged_blob_id->sha1,
6143 SHA1_DIGEST_LENGTH);
6144 if (status == GOT_STATUS_ADD || staged_status == GOT_STATUS_ADD)
6145 stage = GOT_FILEIDX_STAGE_ADD;
6146 else
6147 stage = GOT_FILEIDX_STAGE_MODIFY;
6148 got_fileindex_entry_stage_set(ie, stage);
6149 a->staged_something = 1;
6150 if (a->status_cb == NULL)
6151 break;
6152 err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
6153 get_staged_status(ie), relpath, blob_id,
6154 new_staged_blob_id, NULL, dirfd, de_name);
6155 break;
6156 case GOT_STATUS_DELETE:
6157 if (staged_status == GOT_STATUS_DELETE)
6158 break;
6159 if (a->patch_cb) {
6160 int choice = GOT_PATCH_CHOICE_NONE;
6161 err = (*a->patch_cb)(&choice, a->patch_arg, status,
6162 ie->path, NULL, 1, 1);
6163 if (err)
6164 break;
6165 if (choice == GOT_PATCH_CHOICE_NO)
6166 break;
6167 if (choice != GOT_PATCH_CHOICE_YES) {
6168 err = got_error(GOT_ERR_PATCH_CHOICE);
6169 break;
6172 stage = GOT_FILEIDX_STAGE_DELETE;
6173 got_fileindex_entry_stage_set(ie, stage);
6174 a->staged_something = 1;
6175 if (a->status_cb == NULL)
6176 break;
6177 err = (*a->status_cb)(a->status_arg, GOT_STATUS_NO_CHANGE,
6178 get_staged_status(ie), relpath, NULL, NULL, NULL, dirfd,
6179 de_name);
6180 break;
6181 case GOT_STATUS_NO_CHANGE:
6182 break;
6183 case GOT_STATUS_CONFLICT:
6184 err = got_error_path(relpath, GOT_ERR_STAGE_CONFLICT);
6185 break;
6186 case GOT_STATUS_NONEXISTENT:
6187 err = got_error_set_errno(ENOENT, relpath);
6188 break;
6189 default:
6190 err = got_error_path(relpath, GOT_ERR_FILE_STATUS);
6191 break;
6194 if (path_content && unlink(path_content) == -1 && err == NULL)
6195 err = got_error_from_errno2("unlink", path_content);
6196 free(path_content);
6197 free(ondisk_path);
6198 free(new_staged_blob_id);
6199 return err;
6202 const struct got_error *
6203 got_worktree_stage(struct got_worktree *worktree,
6204 struct got_pathlist_head *paths,
6205 got_worktree_status_cb status_cb, void *status_arg,
6206 got_worktree_patch_cb patch_cb, void *patch_arg,
6207 struct got_repository *repo)
6209 const struct got_error *err = NULL, *sync_err, *unlockerr;
6210 struct got_pathlist_entry *pe;
6211 struct got_fileindex *fileindex = NULL;
6212 char *fileindex_path = NULL;
6213 struct got_reference *head_ref = NULL;
6214 struct got_object_id *head_commit_id = NULL;
6215 struct check_stage_ok_arg oka;
6216 struct stage_path_arg spa;
6218 err = lock_worktree(worktree, LOCK_EX);
6219 if (err)
6220 return err;
6222 err = got_ref_open(&head_ref, repo,
6223 got_worktree_get_head_ref_name(worktree), 0);
6224 if (err)
6225 goto done;
6226 err = got_ref_resolve(&head_commit_id, repo, head_ref);
6227 if (err)
6228 goto done;
6229 err = open_fileindex(&fileindex, &fileindex_path, worktree);
6230 if (err)
6231 goto done;
6233 /* Check pre-conditions before staging anything. */
6234 oka.head_commit_id = head_commit_id;
6235 oka.worktree = worktree;
6236 oka.fileindex = fileindex;
6237 oka.repo = repo;
6238 oka.have_changes = 0;
6239 TAILQ_FOREACH(pe, paths, entry) {
6240 err = worktree_status(worktree, pe->path, fileindex, repo,
6241 check_stage_ok, &oka, NULL, NULL, 0, 0);
6242 if (err)
6243 goto done;
6245 if (!oka.have_changes) {
6246 err = got_error(GOT_ERR_STAGE_NO_CHANGE);
6247 goto done;
6250 spa.worktree = worktree;
6251 spa.fileindex = fileindex;
6252 spa.repo = repo;
6253 spa.patch_cb = patch_cb;
6254 spa.patch_arg = patch_arg;
6255 spa.status_cb = status_cb;
6256 spa.status_arg = status_arg;
6257 spa.staged_something = 0;
6258 TAILQ_FOREACH(pe, paths, entry) {
6259 err = worktree_status(worktree, pe->path, fileindex, repo,
6260 stage_path, &spa, NULL, NULL, 0, 0);
6261 if (err)
6262 goto done;
6264 if (!spa.staged_something) {
6265 err = got_error(GOT_ERR_STAGE_NO_CHANGE);
6266 goto done;
6269 sync_err = sync_fileindex(fileindex, fileindex_path);
6270 if (sync_err && err == NULL)
6271 err = sync_err;
6272 done:
6273 if (head_ref)
6274 got_ref_close(head_ref);
6275 free(head_commit_id);
6276 free(fileindex_path);
6277 if (fileindex)
6278 got_fileindex_free(fileindex);
6279 unlockerr = lock_worktree(worktree, LOCK_SH);
6280 if (unlockerr && err == NULL)
6281 err = unlockerr;
6282 return err;
6285 struct unstage_path_arg {
6286 struct got_worktree *worktree;
6287 struct got_fileindex *fileindex;
6288 struct got_repository *repo;
6289 got_worktree_checkout_cb progress_cb;
6290 void *progress_arg;
6291 got_worktree_patch_cb patch_cb;
6292 void *patch_arg;
6295 static const struct got_error *
6296 create_unstaged_content(char **path_unstaged_content,
6297 char **path_new_staged_content, struct got_object_id *blob_id,
6298 struct got_object_id *staged_blob_id, const char *relpath,
6299 struct got_repository *repo,
6300 got_worktree_patch_cb patch_cb, void *patch_arg)
6302 const struct got_error *err;
6303 struct got_blob_object *blob = NULL, *staged_blob = NULL;
6304 FILE *f1 = NULL, *f2 = NULL, *outfile = NULL, *rejectfile = NULL;
6305 char *path1 = NULL, *path2 = NULL, *label1 = NULL;
6306 struct stat sb1, sb2;
6307 struct got_diff_changes *changes = NULL;
6308 struct got_diff_state *ds = NULL;
6309 struct got_diff_args *args = NULL;
6310 struct got_diff_change *change;
6311 int diff_flags = 0, line_cur1 = 1, line_cur2 = 1, n = 0;
6312 int have_content = 0, have_rejected_content = 0;
6314 *path_unstaged_content = NULL;
6315 *path_new_staged_content = NULL;
6317 err = got_object_id_str(&label1, blob_id);
6318 if (err)
6319 return err;
6320 err = got_object_open_as_blob(&blob, repo, blob_id, 8192);
6321 if (err)
6322 goto done;
6324 err = got_opentemp_named(&path1, &f1, "got-unstage-blob-base");
6325 if (err)
6326 goto done;
6328 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1, blob);
6329 if (err)
6330 goto done;
6332 err = got_object_open_as_blob(&staged_blob, repo, staged_blob_id, 8192);
6333 if (err)
6334 goto done;
6336 err = got_opentemp_named(&path2, &f2, "got-unstage-blob-staged");
6337 if (err)
6338 goto done;
6340 err = got_object_blob_dump_to_file(NULL, NULL, NULL, f2, staged_blob);
6341 if (err)
6342 goto done;
6344 if (stat(path1, &sb1) == -1) {
6345 err = got_error_from_errno2("stat", path1);
6346 goto done;
6349 if (stat(path2, &sb2) == -1) {
6350 err = got_error_from_errno2("stat", path2);
6351 goto done;
6354 err = got_diff_files(&changes, &ds, &args, &diff_flags,
6355 f1, sb1.st_size, label1, f2, sb2.st_size, path2, 3, NULL);
6356 if (err)
6357 goto done;
6359 err = got_opentemp_named(path_unstaged_content, &outfile,
6360 "got-unstaged-content");
6361 if (err)
6362 goto done;
6363 err = got_opentemp_named(path_new_staged_content, &rejectfile,
6364 "got-new-staged-content");
6365 if (err)
6366 goto done;
6368 if (fseek(f1, 0L, SEEK_SET) == -1) {
6369 err = got_ferror(f1, GOT_ERR_IO);
6370 goto done;
6372 if (fseek(f2, 0L, SEEK_SET) == -1) {
6373 err = got_ferror(f2, GOT_ERR_IO);
6374 goto done;
6376 SIMPLEQ_FOREACH(change, &changes->entries, entry) {
6377 int choice;
6378 err = apply_or_reject_change(&choice, change, ++n,
6379 changes->nchanges, ds, args, diff_flags, relpath,
6380 f1, f2, &line_cur1, &line_cur2,
6381 outfile, rejectfile, patch_cb, patch_arg);
6382 if (err)
6383 goto done;
6384 if (choice == GOT_PATCH_CHOICE_YES)
6385 have_content = 1;
6386 else
6387 have_rejected_content = 1;
6388 if (choice == GOT_PATCH_CHOICE_QUIT)
6389 break;
6391 if (have_content || have_rejected_content)
6392 err = copy_remaining_content(f1, f2, &line_cur1, &line_cur2,
6393 outfile, rejectfile);
6394 done:
6395 free(label1);
6396 if (blob)
6397 got_object_blob_close(blob);
6398 if (staged_blob)
6399 got_object_blob_close(staged_blob);
6400 if (f1 && fclose(f1) == EOF && err == NULL)
6401 err = got_error_from_errno2("fclose", path1);
6402 if (f2 && fclose(f2) == EOF && err == NULL)
6403 err = got_error_from_errno2("fclose", path2);
6404 if (outfile && fclose(outfile) == EOF && err == NULL)
6405 err = got_error_from_errno2("fclose", *path_unstaged_content);
6406 if (rejectfile && fclose(rejectfile) == EOF && err == NULL)
6407 err = got_error_from_errno2("fclose", *path_new_staged_content);
6408 if (path1 && unlink(path1) == -1 && err == NULL)
6409 err = got_error_from_errno2("unlink", path1);
6410 if (path2 && unlink(path2) == -1 && err == NULL)
6411 err = got_error_from_errno2("unlink", path2);
6412 if (err || !have_content) {
6413 if (*path_unstaged_content &&
6414 unlink(*path_unstaged_content) == -1 && err == NULL)
6415 err = got_error_from_errno2("unlink",
6416 *path_unstaged_content);
6417 free(*path_unstaged_content);
6418 *path_unstaged_content = NULL;
6420 if (err || !have_rejected_content) {
6421 if (*path_new_staged_content &&
6422 unlink(*path_new_staged_content) == -1 && err == NULL)
6423 err = got_error_from_errno2("unlink",
6424 *path_new_staged_content);
6425 free(*path_new_staged_content);
6426 *path_new_staged_content = NULL;
6428 free(args);
6429 if (ds) {
6430 got_diff_state_free(ds);
6431 free(ds);
6433 if (changes)
6434 got_diff_free_changes(changes);
6435 free(path1);
6436 free(path2);
6437 return err;
6440 static const struct got_error *
6441 unstage_path(void *arg, unsigned char status,
6442 unsigned char staged_status, const char *relpath,
6443 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
6444 struct got_object_id *commit_id, int dirfd, const char *de_name)
6446 const struct got_error *err = NULL;
6447 struct unstage_path_arg *a = arg;
6448 struct got_fileindex_entry *ie;
6449 struct got_blob_object *blob_base = NULL, *blob_staged = NULL;
6450 char *ondisk_path = NULL, *path_unstaged_content = NULL;
6451 char *path_new_staged_content = NULL;
6452 char *id_str = NULL, *label_orig = NULL;
6453 int local_changes_subsumed;
6454 struct stat sb;
6456 if (staged_status != GOT_STATUS_ADD &&
6457 staged_status != GOT_STATUS_MODIFY &&
6458 staged_status != GOT_STATUS_DELETE)
6459 return NULL;
6461 ie = got_fileindex_entry_get(a->fileindex, relpath, strlen(relpath));
6462 if (ie == NULL)
6463 return got_error_path(relpath, GOT_ERR_FILE_STATUS);
6465 if (asprintf(&ondisk_path, "%s/%s", a->worktree->root_path, relpath)
6466 == -1)
6467 return got_error_from_errno("asprintf");
6469 err = got_object_id_str(&id_str,
6470 commit_id ? commit_id : a->worktree->base_commit_id);
6471 if (err)
6472 goto done;
6473 if (asprintf(&label_orig, "%s: commit %s", GOT_MERGE_LABEL_BASE,
6474 id_str) == -1) {
6475 err = got_error_from_errno("asprintf");
6476 goto done;
6479 switch (staged_status) {
6480 case GOT_STATUS_MODIFY:
6481 err = got_object_open_as_blob(&blob_base, a->repo,
6482 blob_id, 8192);
6483 if (err)
6484 break;
6485 /* fall through */
6486 case GOT_STATUS_ADD:
6487 if (a->patch_cb) {
6488 if (staged_status == GOT_STATUS_ADD) {
6489 int choice = GOT_PATCH_CHOICE_NONE;
6490 err = (*a->patch_cb)(&choice, a->patch_arg,
6491 staged_status, ie->path, NULL, 1, 1);
6492 if (err)
6493 break;
6494 if (choice != GOT_PATCH_CHOICE_YES)
6495 break;
6496 } else {
6497 err = create_unstaged_content(
6498 &path_unstaged_content,
6499 &path_new_staged_content, blob_id,
6500 staged_blob_id, ie->path, a->repo,
6501 a->patch_cb, a->patch_arg);
6502 if (err || path_unstaged_content == NULL)
6503 break;
6504 if (path_new_staged_content) {
6505 err = got_object_blob_create(
6506 &staged_blob_id,
6507 path_new_staged_content,
6508 a->repo);
6509 if (err)
6510 break;
6511 memcpy(ie->staged_blob_sha1,
6512 staged_blob_id->sha1,
6513 SHA1_DIGEST_LENGTH);
6515 err = merge_file(&local_changes_subsumed,
6516 a->worktree, blob_base, ondisk_path,
6517 relpath, got_fileindex_perms_to_st(ie),
6518 path_unstaged_content, label_orig,
6519 "unstaged", a->repo, a->progress_cb,
6520 a->progress_arg);
6521 if (err == NULL &&
6522 path_new_staged_content == NULL)
6523 got_fileindex_entry_stage_set(ie,
6524 GOT_FILEIDX_STAGE_NONE);
6525 break; /* Done with this file. */
6528 err = got_object_open_as_blob(&blob_staged, a->repo,
6529 staged_blob_id, 8192);
6530 if (err)
6531 break;
6532 err = merge_blob(&local_changes_subsumed, a->worktree,
6533 blob_base, ondisk_path, relpath,
6534 got_fileindex_perms_to_st(ie), label_orig, blob_staged,
6535 commit_id ? commit_id : a->worktree->base_commit_id,
6536 a->repo, a->progress_cb, a->progress_arg);
6537 if (err == NULL)
6538 got_fileindex_entry_stage_set(ie,
6539 GOT_FILEIDX_STAGE_NONE);
6540 break;
6541 case GOT_STATUS_DELETE:
6542 if (a->patch_cb) {
6543 int choice = GOT_PATCH_CHOICE_NONE;
6544 err = (*a->patch_cb)(&choice, a->patch_arg,
6545 staged_status, ie->path, NULL, 1, 1);
6546 if (err)
6547 break;
6548 if (choice == GOT_PATCH_CHOICE_NO)
6549 break;
6550 if (choice != GOT_PATCH_CHOICE_YES) {
6551 err = got_error(GOT_ERR_PATCH_CHOICE);
6552 break;
6555 got_fileindex_entry_stage_set(ie, GOT_FILEIDX_STAGE_NONE);
6556 err = get_file_status(&status, &sb, ie, ondisk_path,
6557 dirfd, de_name, a->repo);
6558 if (err)
6559 break;
6560 err = (*a->progress_cb)(a->progress_arg, status, relpath);
6561 break;
6563 done:
6564 free(ondisk_path);
6565 if (path_unstaged_content &&
6566 unlink(path_unstaged_content) == -1 && err == NULL)
6567 err = got_error_from_errno2("unlink", path_unstaged_content);
6568 if (path_new_staged_content &&
6569 unlink(path_new_staged_content) == -1 && err == NULL)
6570 err = got_error_from_errno2("unlink", path_new_staged_content);
6571 free(path_unstaged_content);
6572 free(path_new_staged_content);
6573 if (blob_base)
6574 got_object_blob_close(blob_base);
6575 if (blob_staged)
6576 got_object_blob_close(blob_staged);
6577 free(id_str);
6578 free(label_orig);
6579 return err;
6582 const struct got_error *
6583 got_worktree_unstage(struct got_worktree *worktree,
6584 struct got_pathlist_head *paths,
6585 got_worktree_checkout_cb progress_cb, void *progress_arg,
6586 got_worktree_patch_cb patch_cb, void *patch_arg,
6587 struct got_repository *repo)
6589 const struct got_error *err = NULL, *sync_err, *unlockerr;
6590 struct got_pathlist_entry *pe;
6591 struct got_fileindex *fileindex = NULL;
6592 char *fileindex_path = NULL;
6593 struct unstage_path_arg upa;
6595 err = lock_worktree(worktree, LOCK_EX);
6596 if (err)
6597 return err;
6599 err = open_fileindex(&fileindex, &fileindex_path, worktree);
6600 if (err)
6601 goto done;
6603 upa.worktree = worktree;
6604 upa.fileindex = fileindex;
6605 upa.repo = repo;
6606 upa.progress_cb = progress_cb;
6607 upa.progress_arg = progress_arg;
6608 upa.patch_cb = patch_cb;
6609 upa.patch_arg = patch_arg;
6610 TAILQ_FOREACH(pe, paths, entry) {
6611 err = worktree_status(worktree, pe->path, fileindex, repo,
6612 unstage_path, &upa, NULL, NULL, 0, 0);
6613 if (err)
6614 goto done;
6617 sync_err = sync_fileindex(fileindex, fileindex_path);
6618 if (sync_err && err == NULL)
6619 err = sync_err;
6620 done:
6621 free(fileindex_path);
6622 if (fileindex)
6623 got_fileindex_free(fileindex);
6624 unlockerr = lock_worktree(worktree, LOCK_SH);
6625 if (unlockerr && err == NULL)
6626 err = unlockerr;
6627 return err;