Blob


1 /*
2 * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
4 * Copyright (c) 2020 Ori Bernstein <ori@openbsd.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
19 #include <sys/queue.h>
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <sys/param.h>
23 #include <sys/wait.h>
25 #include <err.h>
26 #include <errno.h>
27 #include <fcntl.h>
28 #include <limits.h>
29 #include <locale.h>
30 #include <ctype.h>
31 #include <signal.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <unistd.h>
36 #include <libgen.h>
37 #include <time.h>
38 #include <paths.h>
39 #include <regex.h>
40 #include <getopt.h>
41 #include <util.h>
43 #include "got_version.h"
44 #include "got_error.h"
45 #include "got_object.h"
46 #include "got_reference.h"
47 #include "got_repository.h"
48 #include "got_path.h"
49 #include "got_cancel.h"
50 #include "got_worktree.h"
51 #include "got_diff.h"
52 #include "got_commit_graph.h"
53 #include "got_fetch.h"
54 #include "got_blame.h"
55 #include "got_privsep.h"
56 #include "got_opentemp.h"
58 #ifndef nitems
59 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
60 #endif
62 static volatile sig_atomic_t sigint_received;
63 static volatile sig_atomic_t sigpipe_received;
65 static void
66 catch_sigint(int signo)
67 {
68 sigint_received = 1;
69 }
71 static void
72 catch_sigpipe(int signo)
73 {
74 sigpipe_received = 1;
75 }
78 struct got_cmd {
79 const char *cmd_name;
80 const struct got_error *(*cmd_main)(int, char *[]);
81 void (*cmd_usage)(void);
82 const char *cmd_alias;
83 };
85 __dead static void usage(int);
86 __dead static void usage_init(void);
87 __dead static void usage_import(void);
88 __dead static void usage_clone(void);
89 __dead static void usage_fetch(void);
90 __dead static void usage_checkout(void);
91 __dead static void usage_update(void);
92 __dead static void usage_log(void);
93 __dead static void usage_diff(void);
94 __dead static void usage_blame(void);
95 __dead static void usage_tree(void);
96 __dead static void usage_status(void);
97 __dead static void usage_ref(void);
98 __dead static void usage_branch(void);
99 __dead static void usage_tag(void);
100 __dead static void usage_add(void);
101 __dead static void usage_remove(void);
102 __dead static void usage_revert(void);
103 __dead static void usage_commit(void);
104 __dead static void usage_cherrypick(void);
105 __dead static void usage_backout(void);
106 __dead static void usage_rebase(void);
107 __dead static void usage_histedit(void);
108 __dead static void usage_integrate(void);
109 __dead static void usage_stage(void);
110 __dead static void usage_unstage(void);
111 __dead static void usage_cat(void);
113 static const struct got_error* cmd_init(int, char *[]);
114 static const struct got_error* cmd_import(int, char *[]);
115 static const struct got_error* cmd_clone(int, char *[]);
116 static const struct got_error* cmd_fetch(int, char *[]);
117 static const struct got_error* cmd_checkout(int, char *[]);
118 static const struct got_error* cmd_update(int, char *[]);
119 static const struct got_error* cmd_log(int, char *[]);
120 static const struct got_error* cmd_diff(int, char *[]);
121 static const struct got_error* cmd_blame(int, char *[]);
122 static const struct got_error* cmd_tree(int, char *[]);
123 static const struct got_error* cmd_status(int, char *[]);
124 static const struct got_error* cmd_ref(int, char *[]);
125 static const struct got_error* cmd_branch(int, char *[]);
126 static const struct got_error* cmd_tag(int, char *[]);
127 static const struct got_error* cmd_add(int, char *[]);
128 static const struct got_error* cmd_remove(int, char *[]);
129 static const struct got_error* cmd_revert(int, char *[]);
130 static const struct got_error* cmd_commit(int, char *[]);
131 static const struct got_error* cmd_cherrypick(int, char *[]);
132 static const struct got_error* cmd_backout(int, char *[]);
133 static const struct got_error* cmd_rebase(int, char *[]);
134 static const struct got_error* cmd_histedit(int, char *[]);
135 static const struct got_error* cmd_integrate(int, char *[]);
136 static const struct got_error* cmd_stage(int, char *[]);
137 static const struct got_error* cmd_unstage(int, char *[]);
138 static const struct got_error* cmd_cat(int, char *[]);
140 static struct got_cmd got_commands[] = {
141 { "init", cmd_init, usage_init, "in" },
142 { "import", cmd_import, usage_import, "im" },
143 { "clone", cmd_clone, usage_clone, "cl" },
144 { "fetch", cmd_fetch, usage_fetch, "fe" },
145 { "checkout", cmd_checkout, usage_checkout, "co" },
146 { "update", cmd_update, usage_update, "up" },
147 { "log", cmd_log, usage_log, "" },
148 { "diff", cmd_diff, usage_diff, "di" },
149 { "blame", cmd_blame, usage_blame, "bl" },
150 { "tree", cmd_tree, usage_tree, "tr" },
151 { "status", cmd_status, usage_status, "st" },
152 { "ref", cmd_ref, usage_ref, "" },
153 { "branch", cmd_branch, usage_branch, "br" },
154 { "tag", cmd_tag, usage_tag, "" },
155 { "add", cmd_add, usage_add, "" },
156 { "remove", cmd_remove, usage_remove, "rm" },
157 { "revert", cmd_revert, usage_revert, "rv" },
158 { "commit", cmd_commit, usage_commit, "ci" },
159 { "cherrypick", cmd_cherrypick, usage_cherrypick, "cy" },
160 { "backout", cmd_backout, usage_backout, "bo" },
161 { "rebase", cmd_rebase, usage_rebase, "rb" },
162 { "histedit", cmd_histedit, usage_histedit, "he" },
163 { "integrate", cmd_integrate, usage_integrate,"ig" },
164 { "stage", cmd_stage, usage_stage, "sg" },
165 { "unstage", cmd_unstage, usage_unstage, "ug" },
166 { "cat", cmd_cat, usage_cat, "" },
167 };
169 static void
170 list_commands(void)
172 int i;
174 fprintf(stderr, "commands:");
175 for (i = 0; i < nitems(got_commands); i++) {
176 struct got_cmd *cmd = &got_commands[i];
177 fprintf(stderr, " %s", cmd->cmd_name);
179 fputc('\n', stderr);
182 int
183 main(int argc, char *argv[])
185 struct got_cmd *cmd;
186 unsigned int i;
187 int ch;
188 int hflag = 0, Vflag = 0;
189 static struct option longopts[] = {
190 { "version", no_argument, NULL, 'V' },
191 { NULL, 0, NULL, 0}
192 };
194 setlocale(LC_CTYPE, "");
196 while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
197 switch (ch) {
198 case 'h':
199 hflag = 1;
200 break;
201 case 'V':
202 Vflag = 1;
203 break;
204 default:
205 usage(hflag);
206 /* NOTREACHED */
210 argc -= optind;
211 argv += optind;
212 optind = 0;
214 if (Vflag) {
215 got_version_print_str();
216 return 1;
219 if (argc <= 0)
220 usage(hflag);
222 signal(SIGINT, catch_sigint);
223 signal(SIGPIPE, catch_sigpipe);
225 for (i = 0; i < nitems(got_commands); i++) {
226 const struct got_error *error;
228 cmd = &got_commands[i];
230 if (strcmp(cmd->cmd_name, argv[0]) != 0 &&
231 strcmp(cmd->cmd_alias, argv[0]) != 0)
232 continue;
234 if (hflag)
235 got_commands[i].cmd_usage();
237 error = got_commands[i].cmd_main(argc, argv);
238 if (error && error->code != GOT_ERR_CANCELLED &&
239 error->code != GOT_ERR_PRIVSEP_EXIT &&
240 !(sigpipe_received &&
241 error->code == GOT_ERR_ERRNO && errno == EPIPE) &&
242 !(sigint_received &&
243 error->code == GOT_ERR_ERRNO && errno == EINTR)) {
244 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
245 return 1;
248 return 0;
251 fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
252 list_commands();
253 return 1;
256 __dead static void
257 usage(int hflag)
259 fprintf(stderr, "usage: %s [-h] [-V | --version] command [arg ...]\n",
260 getprogname());
261 if (hflag)
262 list_commands();
263 exit(1);
266 static const struct got_error *
267 get_editor(char **abspath)
269 const struct got_error *err = NULL;
270 const char *editor;
272 *abspath = NULL;
274 editor = getenv("VISUAL");
275 if (editor == NULL)
276 editor = getenv("EDITOR");
278 if (editor) {
279 err = got_path_find_prog(abspath, editor);
280 if (err)
281 return err;
284 if (*abspath == NULL) {
285 *abspath = strdup("/bin/ed");
286 if (*abspath == NULL)
287 return got_error_from_errno("strdup");
290 return NULL;
293 static const struct got_error *
294 apply_unveil(const char *repo_path, int repo_read_only,
295 const char *worktree_path)
297 const struct got_error *err;
299 #ifdef PROFILE
300 if (unveil("gmon.out", "rwc") != 0)
301 return got_error_from_errno2("unveil", "gmon.out");
302 #endif
303 if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
304 return got_error_from_errno2("unveil", repo_path);
306 if (worktree_path && unveil(worktree_path, "rwc") != 0)
307 return got_error_from_errno2("unveil", worktree_path);
309 if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
310 return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
312 err = got_privsep_unveil_exec_helpers();
313 if (err != NULL)
314 return err;
316 if (unveil(NULL, NULL) != 0)
317 return got_error_from_errno("unveil");
319 return NULL;
322 __dead static void
323 usage_init(void)
325 fprintf(stderr, "usage: %s init repository-path\n", getprogname());
326 exit(1);
329 static const struct got_error *
330 cmd_init(int argc, char *argv[])
332 const struct got_error *error = NULL;
333 char *repo_path = NULL;
334 int ch;
336 while ((ch = getopt(argc, argv, "")) != -1) {
337 switch (ch) {
338 default:
339 usage_init();
340 /* NOTREACHED */
344 argc -= optind;
345 argv += optind;
347 #ifndef PROFILE
348 if (pledge("stdio rpath wpath cpath unveil", NULL) == -1)
349 err(1, "pledge");
350 #endif
351 if (argc != 1)
352 usage_init();
354 repo_path = strdup(argv[0]);
355 if (repo_path == NULL)
356 return got_error_from_errno("strdup");
358 got_path_strip_trailing_slashes(repo_path);
360 error = got_path_mkdir(repo_path);
361 if (error &&
362 !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
363 goto done;
365 error = apply_unveil(repo_path, 0, NULL);
366 if (error)
367 goto done;
369 error = got_repo_init(repo_path);
370 done:
371 free(repo_path);
372 return error;
375 __dead static void
376 usage_import(void)
378 fprintf(stderr, "usage: %s import [-b branch] [-m message] "
379 "[-r repository-path] [-I pattern] path\n", getprogname());
380 exit(1);
383 int
384 spawn_editor(const char *editor, const char *file)
386 pid_t pid;
387 sig_t sighup, sigint, sigquit;
388 int st = -1;
390 sighup = signal(SIGHUP, SIG_IGN);
391 sigint = signal(SIGINT, SIG_IGN);
392 sigquit = signal(SIGQUIT, SIG_IGN);
394 switch (pid = fork()) {
395 case -1:
396 goto doneediting;
397 case 0:
398 execl(editor, editor, file, (char *)NULL);
399 _exit(127);
402 while (waitpid(pid, &st, 0) == -1)
403 if (errno != EINTR)
404 break;
406 doneediting:
407 (void)signal(SIGHUP, sighup);
408 (void)signal(SIGINT, sigint);
409 (void)signal(SIGQUIT, sigquit);
411 if (!WIFEXITED(st)) {
412 errno = EINTR;
413 return -1;
416 return WEXITSTATUS(st);
419 static const struct got_error *
420 edit_logmsg(char **logmsg, const char *editor, const char *logmsg_path,
421 const char *initial_content)
423 const struct got_error *err = NULL;
424 char buf[1024];
425 struct stat st, st2;
426 FILE *fp;
427 int content_changed = 0;
428 size_t len;
430 *logmsg = NULL;
432 if (stat(logmsg_path, &st) == -1)
433 return got_error_from_errno2("stat", logmsg_path);
435 if (spawn_editor(editor, logmsg_path) == -1)
436 return got_error_from_errno("failed spawning editor");
438 if (stat(logmsg_path, &st2) == -1)
439 return got_error_from_errno("stat");
441 if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size)
442 return got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
443 "no changes made to commit message, aborting");
445 *logmsg = malloc(st2.st_size + 1);
446 if (*logmsg == NULL)
447 return got_error_from_errno("malloc");
448 (*logmsg)[0] = '\0';
449 len = 0;
451 fp = fopen(logmsg_path, "r");
452 if (fp == NULL) {
453 err = got_error_from_errno("fopen");
454 goto done;
456 while (fgets(buf, sizeof(buf), fp) != NULL) {
457 if (!content_changed && strcmp(buf, initial_content) != 0)
458 content_changed = 1;
459 if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
460 continue; /* remove comments and leading empty lines */
461 len = strlcat(*logmsg, buf, st2.st_size);
463 fclose(fp);
465 while (len > 0 && (*logmsg)[len - 1] == '\n') {
466 (*logmsg)[len - 1] = '\0';
467 len--;
470 if (len == 0 || !content_changed)
471 err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
472 "commit message cannot be empty, aborting");
473 done:
474 if (err) {
475 free(*logmsg);
476 *logmsg = NULL;
478 return err;
481 static const struct got_error *
482 collect_import_msg(char **logmsg, char **logmsg_path, const char *editor,
483 const char *path_dir, const char *branch_name)
485 char *initial_content = NULL;
486 const struct got_error *err = NULL;
487 int fd;
489 if (asprintf(&initial_content,
490 "\n# %s to be imported to branch %s\n", path_dir,
491 branch_name) == -1)
492 return got_error_from_errno("asprintf");
494 err = got_opentemp_named_fd(logmsg_path, &fd,
495 GOT_TMPDIR_STR "/got-importmsg");
496 if (err)
497 goto done;
499 dprintf(fd, initial_content);
500 close(fd);
502 err = edit_logmsg(logmsg, editor, *logmsg_path, initial_content);
503 done:
504 free(initial_content);
505 return err;
508 static const struct got_error *
509 import_progress(void *arg, const char *path)
511 printf("A %s\n", path);
512 return NULL;
515 static const struct got_error *
516 get_author(char **author, struct got_repository *repo)
518 const struct got_error *err = NULL;
519 const char *got_author, *name, *email;
521 *author = NULL;
523 name = got_repo_get_gitconfig_author_name(repo);
524 email = got_repo_get_gitconfig_author_email(repo);
525 if (name && email) {
526 if (asprintf(author, "%s <%s>", name, email) == -1)
527 return got_error_from_errno("asprintf");
528 return NULL;
531 got_author = getenv("GOT_AUTHOR");
532 if (got_author == NULL) {
533 name = got_repo_get_global_gitconfig_author_name(repo);
534 email = got_repo_get_global_gitconfig_author_email(repo);
535 if (name && email) {
536 if (asprintf(author, "%s <%s>", name, email) == -1)
537 return got_error_from_errno("asprintf");
538 return NULL;
540 /* TODO: Look up user in password database? */
541 return got_error(GOT_ERR_COMMIT_NO_AUTHOR);
544 *author = strdup(got_author);
545 if (*author == NULL)
546 return got_error_from_errno("strdup");
548 /*
549 * Really dumb email address check; we're only doing this to
550 * avoid git's object parser breaking on commits we create.
551 */
552 while (*got_author && *got_author != '<')
553 got_author++;
554 if (*got_author != '<') {
555 err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
556 goto done;
558 while (*got_author && *got_author != '@')
559 got_author++;
560 if (*got_author != '@') {
561 err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
562 goto done;
564 while (*got_author && *got_author != '>')
565 got_author++;
566 if (*got_author != '>')
567 err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
568 done:
569 if (err) {
570 free(*author);
571 *author = NULL;
573 return err;
576 static const struct got_error *
577 get_gitconfig_path(char **gitconfig_path)
579 const char *homedir = getenv("HOME");
581 *gitconfig_path = NULL;
582 if (homedir) {
583 if (asprintf(gitconfig_path, "%s/.gitconfig", homedir) == -1)
584 return got_error_from_errno("asprintf");
587 return NULL;
590 static const struct got_error *
591 cmd_import(int argc, char *argv[])
593 const struct got_error *error = NULL;
594 char *path_dir = NULL, *repo_path = NULL, *logmsg = NULL;
595 char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
596 const char *branch_name = "main";
597 char *refname = NULL, *id_str = NULL, *logmsg_path = NULL;
598 struct got_repository *repo = NULL;
599 struct got_reference *branch_ref = NULL, *head_ref = NULL;
600 struct got_object_id *new_commit_id = NULL;
601 int ch;
602 struct got_pathlist_head ignores;
603 struct got_pathlist_entry *pe;
604 int preserve_logmsg = 0;
606 TAILQ_INIT(&ignores);
608 while ((ch = getopt(argc, argv, "b:m:r:I:")) != -1) {
609 switch (ch) {
610 case 'b':
611 branch_name = optarg;
612 break;
613 case 'm':
614 logmsg = strdup(optarg);
615 if (logmsg == NULL) {
616 error = got_error_from_errno("strdup");
617 goto done;
619 break;
620 case 'r':
621 repo_path = realpath(optarg, NULL);
622 if (repo_path == NULL) {
623 error = got_error_from_errno2("realpath",
624 optarg);
625 goto done;
627 break;
628 case 'I':
629 if (optarg[0] == '\0')
630 break;
631 error = got_pathlist_insert(&pe, &ignores, optarg,
632 NULL);
633 if (error)
634 goto done;
635 break;
636 default:
637 usage_import();
638 /* NOTREACHED */
642 argc -= optind;
643 argv += optind;
645 #ifndef PROFILE
646 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
647 "unveil",
648 NULL) == -1)
649 err(1, "pledge");
650 #endif
651 if (argc != 1)
652 usage_import();
654 if (repo_path == NULL) {
655 repo_path = getcwd(NULL, 0);
656 if (repo_path == NULL)
657 return got_error_from_errno("getcwd");
659 got_path_strip_trailing_slashes(repo_path);
660 error = get_gitconfig_path(&gitconfig_path);
661 if (error)
662 goto done;
663 error = got_repo_open(&repo, repo_path, gitconfig_path);
664 if (error)
665 goto done;
667 error = get_author(&author, repo);
668 if (error)
669 return error;
671 /*
672 * Don't let the user create a branch name with a leading '-'.
673 * While technically a valid reference name, this case is usually
674 * an unintended typo.
675 */
676 if (branch_name[0] == '-')
677 return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
679 if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
680 error = got_error_from_errno("asprintf");
681 goto done;
684 error = got_ref_open(&branch_ref, repo, refname, 0);
685 if (error) {
686 if (error->code != GOT_ERR_NOT_REF)
687 goto done;
688 } else {
689 error = got_error_msg(GOT_ERR_BRANCH_EXISTS,
690 "import target branch already exists");
691 goto done;
694 path_dir = realpath(argv[0], NULL);
695 if (path_dir == NULL) {
696 error = got_error_from_errno2("realpath", argv[0]);
697 goto done;
699 got_path_strip_trailing_slashes(path_dir);
701 /*
702 * unveil(2) traverses exec(2); if an editor is used we have
703 * to apply unveil after the log message has been written.
704 */
705 if (logmsg == NULL || strlen(logmsg) == 0) {
706 error = get_editor(&editor);
707 if (error)
708 goto done;
709 free(logmsg);
710 error = collect_import_msg(&logmsg, &logmsg_path, editor,
711 path_dir, refname);
712 if (error) {
713 if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
714 logmsg_path != NULL)
715 preserve_logmsg = 1;
716 goto done;
720 if (unveil(path_dir, "r") != 0) {
721 error = got_error_from_errno2("unveil", path_dir);
722 if (logmsg_path)
723 preserve_logmsg = 1;
724 goto done;
727 error = apply_unveil(got_repo_get_path(repo), 0, NULL);
728 if (error) {
729 if (logmsg_path)
730 preserve_logmsg = 1;
731 goto done;
734 error = got_repo_import(&new_commit_id, path_dir, logmsg,
735 author, &ignores, repo, import_progress, NULL);
736 if (error) {
737 if (logmsg_path)
738 preserve_logmsg = 1;
739 goto done;
742 error = got_ref_alloc(&branch_ref, refname, new_commit_id);
743 if (error) {
744 if (logmsg_path)
745 preserve_logmsg = 1;
746 goto done;
749 error = got_ref_write(branch_ref, repo);
750 if (error) {
751 if (logmsg_path)
752 preserve_logmsg = 1;
753 goto done;
756 error = got_object_id_str(&id_str, new_commit_id);
757 if (error) {
758 if (logmsg_path)
759 preserve_logmsg = 1;
760 goto done;
763 error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
764 if (error) {
765 if (error->code != GOT_ERR_NOT_REF) {
766 if (logmsg_path)
767 preserve_logmsg = 1;
768 goto done;
771 error = got_ref_alloc_symref(&head_ref, GOT_REF_HEAD,
772 branch_ref);
773 if (error) {
774 if (logmsg_path)
775 preserve_logmsg = 1;
776 goto done;
779 error = got_ref_write(head_ref, repo);
780 if (error) {
781 if (logmsg_path)
782 preserve_logmsg = 1;
783 goto done;
787 printf("Created branch %s with commit %s\n",
788 got_ref_get_name(branch_ref), id_str);
789 done:
790 if (preserve_logmsg) {
791 fprintf(stderr, "%s: log message preserved in %s\n",
792 getprogname(), logmsg_path);
793 } else if (logmsg_path && unlink(logmsg_path) == -1 && error == NULL)
794 error = got_error_from_errno2("unlink", logmsg_path);
795 free(logmsg);
796 free(logmsg_path);
797 free(repo_path);
798 free(editor);
799 free(refname);
800 free(new_commit_id);
801 free(id_str);
802 free(author);
803 free(gitconfig_path);
804 if (branch_ref)
805 got_ref_close(branch_ref);
806 if (head_ref)
807 got_ref_close(head_ref);
808 return error;
811 __dead static void
812 usage_clone(void)
814 fprintf(stderr, "usage: %s clone [-a] [-b branch] [-l] [-m] [-q] [-v] "
815 "[-R reference] repository-url [directory]\n", getprogname());
816 exit(1);
819 struct got_fetch_progress_arg {
820 char last_scaled_size[FMT_SCALED_STRSIZE];
821 int last_p_indexed;
822 int last_p_resolved;
823 int verbosity;
824 };
826 static const struct got_error *
827 fetch_progress(void *arg, const char *message, off_t packfile_size,
828 int nobj_total, int nobj_indexed, int nobj_loose, int nobj_resolved)
830 struct got_fetch_progress_arg *a = arg;
831 char scaled_size[FMT_SCALED_STRSIZE];
832 int p_indexed, p_resolved;
833 int print_size = 0, print_indexed = 0, print_resolved = 0;
835 if (a->verbosity < 0)
836 return NULL;
838 if (message && message[0] != '\0') {
839 printf("\rserver: %s", message);
840 fflush(stdout);
841 return NULL;
844 if (packfile_size > 0 || nobj_indexed > 0) {
845 if (fmt_scaled(packfile_size, scaled_size) == 0 &&
846 (a->last_scaled_size[0] == '\0' ||
847 strcmp(scaled_size, a->last_scaled_size)) != 0) {
848 print_size = 1;
849 if (strlcpy(a->last_scaled_size, scaled_size,
850 FMT_SCALED_STRSIZE) >= FMT_SCALED_STRSIZE)
851 return got_error(GOT_ERR_NO_SPACE);
853 if (nobj_indexed > 0) {
854 p_indexed = (nobj_indexed * 100) / nobj_total;
855 if (p_indexed != a->last_p_indexed) {
856 a->last_p_indexed = p_indexed;
857 print_indexed = 1;
858 print_size = 1;
861 if (nobj_resolved > 0) {
862 p_resolved = (nobj_resolved * 100) /
863 (nobj_total - nobj_loose);
864 if (p_resolved != a->last_p_resolved) {
865 a->last_p_resolved = p_resolved;
866 print_resolved = 1;
867 print_indexed = 1;
868 print_size = 1;
873 if (print_size || print_indexed || print_resolved)
874 printf("\r");
875 if (print_size)
876 printf("%*s fetched", FMT_SCALED_STRSIZE, scaled_size);
877 if (print_indexed)
878 printf("; indexing %d%%", p_indexed);
879 if (print_resolved)
880 printf("; resolving deltas %d%%", p_resolved);
881 if (print_size || print_indexed || print_resolved)
882 fflush(stdout);
884 return NULL;
887 static const struct got_error *
888 create_symref(const char *refname, struct got_reference *target_ref,
889 int verbosity, struct got_repository *repo)
891 const struct got_error *err;
892 struct got_reference *head_symref;
894 err = got_ref_alloc_symref(&head_symref, refname, target_ref);
895 if (err)
896 return err;
898 err = got_ref_write(head_symref, repo);
899 got_ref_close(head_symref);
900 if (err == NULL && verbosity > 0) {
901 printf("Created reference %s: %s\n", GOT_REF_HEAD,
902 got_ref_get_name(target_ref));
904 return err;
907 static const struct got_error *
908 list_remote_refs(struct got_pathlist_head *symrefs,
909 struct got_pathlist_head *refs)
911 const struct got_error *err;
912 struct got_pathlist_entry *pe;
914 TAILQ_FOREACH(pe, symrefs, entry) {
915 const char *refname = pe->path;
916 const char *targetref = pe->data;
918 printf("%s: %s\n", refname, targetref);
921 TAILQ_FOREACH(pe, refs, entry) {
922 const char *refname = pe->path;
923 struct got_object_id *id = pe->data;
924 char *id_str;
926 err = got_object_id_str(&id_str, id);
927 if (err)
928 return err;
929 printf("%s: %s\n", refname, id_str);
930 free(id_str);
933 return NULL;
936 static const struct got_error *
937 create_ref(const char *refname, struct got_object_id *id,
938 int verbosity, struct got_repository *repo)
940 const struct got_error *err = NULL;
941 struct got_reference *ref;
942 char *id_str;
944 err = got_object_id_str(&id_str, id);
945 if (err)
946 return err;
948 err = got_ref_alloc(&ref, refname, id);
949 if (err)
950 goto done;
952 err = got_ref_write(ref, repo);
953 got_ref_close(ref);
955 if (err == NULL && verbosity >= 0)
956 printf("Created reference %s: %s\n", refname, id_str);
957 done:
958 free(id_str);
959 return err;
962 static int
963 match_wanted_ref(const char *refname, const char *wanted_ref)
965 if (strncmp(refname, "refs/", 5) != 0)
966 return 0;
967 refname += 5;
969 /*
970 * Prevent fetching of references that won't make any
971 * sense outside of the remote repository's context.
972 */
973 if (strncmp(refname, "got/", 4) == 0)
974 return 0;
975 if (strncmp(refname, "remotes/", 8) == 0)
976 return 0;
978 if (strncmp(wanted_ref, "refs/", 5) == 0)
979 wanted_ref += 5;
981 /* Allow prefix match. */
982 if (got_path_is_child(refname, wanted_ref, strlen(wanted_ref)))
983 return 1;
985 /* Allow exact match. */
986 return (strcmp(refname, wanted_ref) == 0);
989 static int
990 is_wanted_ref(struct got_pathlist_head *wanted_refs, const char *refname)
992 struct got_pathlist_entry *pe;
994 TAILQ_FOREACH(pe, wanted_refs, entry) {
995 if (match_wanted_ref(refname, pe->path))
996 return 1;
999 return 0;
1002 static const struct got_error *
1003 create_wanted_ref(const char *refname, struct got_object_id *id,
1004 const char *remote_repo_name, int verbosity, struct got_repository *repo)
1006 const struct got_error *err;
1007 char *remote_refname;
1009 if (strncmp("refs/", refname, 5) == 0)
1010 refname += 5;
1012 if (asprintf(&remote_refname, "refs/remotes/%s/%s",
1013 remote_repo_name, refname) == -1)
1014 return got_error_from_errno("asprintf");
1016 err = create_ref(remote_refname, id, verbosity, repo);
1017 free(remote_refname);
1018 return err;
1021 static const struct got_error *
1022 cmd_clone(int argc, char *argv[])
1024 const struct got_error *error = NULL;
1025 const char *uri, *dirname;
1026 char *proto, *host, *port, *repo_name, *server_path;
1027 char *default_destdir = NULL, *id_str = NULL;
1028 const char *repo_path;
1029 struct got_repository *repo = NULL;
1030 struct got_pathlist_head refs, symrefs, wanted_branches, wanted_refs;
1031 struct got_pathlist_entry *pe;
1032 struct got_object_id *pack_hash = NULL;
1033 int ch, fetchfd = -1, fetchstatus;
1034 pid_t fetchpid = -1;
1035 struct got_fetch_progress_arg fpa;
1036 char *git_url = NULL;
1037 char *gitconfig_path = NULL;
1038 char *gitconfig = NULL;
1039 FILE *gitconfig_file = NULL;
1040 ssize_t n;
1041 int verbosity = 0, fetch_all_branches = 0, mirror_references = 0;
1042 int list_refs_only = 0;
1043 struct got_reference *head_symref = NULL;
1045 TAILQ_INIT(&refs);
1046 TAILQ_INIT(&symrefs);
1047 TAILQ_INIT(&wanted_branches);
1048 TAILQ_INIT(&wanted_refs);
1050 while ((ch = getopt(argc, argv, "ab:lmvqR:")) != -1) {
1051 switch (ch) {
1052 case 'a':
1053 fetch_all_branches = 1;
1054 break;
1055 case 'b':
1056 error = got_pathlist_append(&wanted_branches,
1057 optarg, NULL);
1058 if (error)
1059 return error;
1060 break;
1061 case 'l':
1062 list_refs_only = 1;
1063 break;
1064 case 'm':
1065 mirror_references = 1;
1066 break;
1067 case 'v':
1068 if (verbosity < 0)
1069 verbosity = 0;
1070 else if (verbosity < 3)
1071 verbosity++;
1072 break;
1073 case 'q':
1074 verbosity = -1;
1075 break;
1076 case 'R':
1077 error = got_pathlist_append(&wanted_refs,
1078 optarg, NULL);
1079 if (error)
1080 return error;
1081 break;
1082 default:
1083 usage_clone();
1084 break;
1087 argc -= optind;
1088 argv += optind;
1090 if (fetch_all_branches && !TAILQ_EMPTY(&wanted_branches))
1091 errx(1, "-a and -b options are mutually exclusive");
1092 if (list_refs_only) {
1093 if (!TAILQ_EMPTY(&wanted_branches))
1094 errx(1, "-l and -b options are mutually exclusive");
1095 if (fetch_all_branches)
1096 errx(1, "-l and -a options are mutually exclusive");
1097 if (mirror_references)
1098 errx(1, "-l and -m options are mutually exclusive");
1099 if (verbosity == -1)
1100 errx(1, "-l and -q options are mutually exclusive");
1101 if (!TAILQ_EMPTY(&wanted_refs))
1102 errx(1, "-l and -R options are mutually exclusive");
1105 uri = argv[0];
1107 if (argc == 1)
1108 dirname = NULL;
1109 else if (argc == 2)
1110 dirname = argv[1];
1111 else
1112 usage_clone();
1114 error = got_fetch_parse_uri(&proto, &host, &port, &server_path,
1115 &repo_name, argv[0]);
1116 if (error)
1117 goto done;
1119 if (asprintf(&git_url, "%s://%s%s%s%s%s", proto,
1120 host, port ? ":" : "", port ? port : "",
1121 server_path[0] != '/' ? "/" : "", server_path) == -1) {
1122 error = got_error_from_errno("asprintf");
1123 goto done;
1126 if (strcmp(proto, "git") == 0) {
1127 #ifndef PROFILE
1128 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1129 "sendfd dns inet unveil", NULL) == -1)
1130 err(1, "pledge");
1131 #endif
1132 } else if (strcmp(proto, "git+ssh") == 0 ||
1133 strcmp(proto, "ssh") == 0) {
1134 #ifndef PROFILE
1135 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1136 "sendfd unveil", NULL) == -1)
1137 err(1, "pledge");
1138 #endif
1139 } else if (strcmp(proto, "http") == 0 ||
1140 strcmp(proto, "git+http") == 0) {
1141 error = got_error_path(proto, GOT_ERR_NOT_IMPL);
1142 goto done;
1143 } else {
1144 error = got_error_path(proto, GOT_ERR_BAD_PROTO);
1145 goto done;
1147 if (dirname == NULL) {
1148 if (asprintf(&default_destdir, "%s.git", repo_name) == -1) {
1149 error = got_error_from_errno("asprintf");
1150 goto done;
1152 repo_path = default_destdir;
1153 } else
1154 repo_path = dirname;
1156 if (!list_refs_only) {
1157 error = got_path_mkdir(repo_path);
1158 if (error)
1159 goto done;
1161 error = got_repo_init(repo_path);
1162 if (error)
1163 goto done;
1164 error = got_repo_open(&repo, repo_path, NULL);
1165 if (error)
1166 goto done;
1169 if (strcmp(proto, "git+ssh") == 0 || strcmp(proto, "ssh") == 0) {
1170 if (unveil(GOT_FETCH_PATH_SSH, "x") != 0) {
1171 error = got_error_from_errno2("unveil",
1172 GOT_FETCH_PATH_SSH);
1173 goto done;
1176 error = apply_unveil(repo ? got_repo_get_path(repo) : NULL, 0, NULL);
1177 if (error)
1178 goto done;
1180 if (verbosity >= 0)
1181 printf("Connecting to %s%s%s\n", host,
1182 port ? ":" : "", port ? port : "");
1184 error = got_fetch_connect(&fetchpid, &fetchfd, proto, host, port,
1185 server_path, verbosity);
1186 if (error)
1187 goto done;
1189 fpa.last_scaled_size[0] = '\0';
1190 fpa.last_p_indexed = -1;
1191 fpa.last_p_resolved = -1;
1192 fpa.verbosity = verbosity;
1193 error = got_fetch_pack(&pack_hash, &refs, &symrefs,
1194 GOT_FETCH_DEFAULT_REMOTE_NAME, mirror_references,
1195 fetch_all_branches, &wanted_branches, &wanted_refs,
1196 list_refs_only, verbosity, fetchfd, repo,
1197 fetch_progress, &fpa);
1198 if (error)
1199 goto done;
1201 if (list_refs_only) {
1202 error = list_remote_refs(&symrefs, &refs);
1203 goto done;
1206 error = got_object_id_str(&id_str, pack_hash);
1207 if (error)
1208 goto done;
1209 if (verbosity >= 0)
1210 printf("\nFetched %s.pack\n", id_str);
1211 free(id_str);
1213 /* Set up references provided with the pack file. */
1214 TAILQ_FOREACH(pe, &refs, entry) {
1215 const char *refname = pe->path;
1216 struct got_object_id *id = pe->data;
1217 char *remote_refname;
1219 if (is_wanted_ref(&wanted_refs, refname) &&
1220 !mirror_references) {
1221 error = create_wanted_ref(refname, id,
1222 GOT_FETCH_DEFAULT_REMOTE_NAME,
1223 verbosity - 1, repo);
1224 if (error)
1225 goto done;
1226 continue;
1229 error = create_ref(refname, id, verbosity - 1, repo);
1230 if (error)
1231 goto done;
1233 if (mirror_references)
1234 continue;
1236 if (strncmp("refs/heads/", refname, 11) != 0)
1237 continue;
1239 if (asprintf(&remote_refname,
1240 "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME,
1241 refname + 11) == -1) {
1242 error = got_error_from_errno("asprintf");
1243 goto done;
1245 error = create_ref(remote_refname, id, verbosity - 1, repo);
1246 free(remote_refname);
1247 if (error)
1248 goto done;
1251 /* Set the HEAD reference if the server provided one. */
1252 TAILQ_FOREACH(pe, &symrefs, entry) {
1253 struct got_reference *target_ref;
1254 const char *refname = pe->path;
1255 const char *target = pe->data;
1256 char *remote_refname = NULL, *remote_target = NULL;
1258 if (strcmp(refname, GOT_REF_HEAD) != 0)
1259 continue;
1261 error = got_ref_open(&target_ref, repo, target, 0);
1262 if (error) {
1263 if (error->code == GOT_ERR_NOT_REF) {
1264 error = NULL;
1265 continue;
1267 goto done;
1270 error = create_symref(refname, target_ref, verbosity, repo);
1271 got_ref_close(target_ref);
1272 if (error)
1273 goto done;
1275 if (mirror_references)
1276 continue;
1278 if (strncmp("refs/heads/", target, 11) != 0)
1279 continue;
1281 if (asprintf(&remote_refname,
1282 "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME,
1283 refname) == -1) {
1284 error = got_error_from_errno("asprintf");
1285 goto done;
1287 if (asprintf(&remote_target,
1288 "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME,
1289 target + 11) == -1) {
1290 error = got_error_from_errno("asprintf");
1291 free(remote_refname);
1292 goto done;
1294 error = got_ref_open(&target_ref, repo, remote_target, 0);
1295 if (error) {
1296 free(remote_refname);
1297 free(remote_target);
1298 if (error->code == GOT_ERR_NOT_REF) {
1299 error = NULL;
1300 continue;
1302 goto done;
1304 error = create_symref(remote_refname, target_ref,
1305 verbosity - 1, repo);
1306 free(remote_refname);
1307 free(remote_target);
1308 got_ref_close(target_ref);
1309 if (error)
1310 goto done;
1312 if (pe == NULL) {
1314 * We failed to set the HEAD reference. If we asked for
1315 * a set of wanted branches use the first of one of those
1316 * which could be fetched instead.
1318 TAILQ_FOREACH(pe, &wanted_branches, entry) {
1319 const char *target = pe->path;
1320 struct got_reference *target_ref;
1322 error = got_ref_open(&target_ref, repo, target, 0);
1323 if (error) {
1324 if (error->code == GOT_ERR_NOT_REF) {
1325 error = NULL;
1326 continue;
1328 goto done;
1331 error = create_symref(GOT_REF_HEAD, target_ref,
1332 verbosity, repo);
1333 got_ref_close(target_ref);
1334 if (error)
1335 goto done;
1336 break;
1340 /* Create a config file git-fetch(1) can understand. */
1341 gitconfig_path = got_repo_get_path_gitconfig(repo);
1342 if (gitconfig_path == NULL) {
1343 error = got_error_from_errno("got_repo_get_path_gitconfig");
1344 goto done;
1346 gitconfig_file = fopen(gitconfig_path, "a");
1347 if (gitconfig_file == NULL) {
1348 error = got_error_from_errno2("fopen", gitconfig_path);
1349 goto done;
1351 if (mirror_references) {
1352 if (asprintf(&gitconfig,
1353 "[remote \"%s\"]\n"
1354 "\turl = %s\n"
1355 "\tfetch = +refs/*:refs/*\n"
1356 "\tmirror = true\n",
1357 GOT_FETCH_DEFAULT_REMOTE_NAME, git_url) == -1) {
1358 error = got_error_from_errno("asprintf");
1359 goto done;
1361 } else if (fetch_all_branches) {
1362 if (asprintf(&gitconfig,
1363 "[remote \"%s\"]\n"
1364 "\turl = %s\n"
1365 "\tfetch = +refs/heads/*:refs/remotes/%s/*\n",
1366 GOT_FETCH_DEFAULT_REMOTE_NAME, git_url,
1367 GOT_FETCH_DEFAULT_REMOTE_NAME) == -1) {
1368 error = got_error_from_errno("asprintf");
1369 goto done;
1371 } else {
1372 const char *branchname;
1375 * If the server specified a default branch, use just that one.
1376 * Otherwise fall back to fetching all branches on next fetch.
1378 if (head_symref) {
1379 branchname = got_ref_get_symref_target(head_symref);
1380 if (strncmp(branchname, "refs/heads/", 11) == 0)
1381 branchname += 11;
1382 } else
1383 branchname = "*"; /* fall back to all branches */
1384 if (asprintf(&gitconfig,
1385 "[remote \"%s\"]\n"
1386 "\turl = %s\n"
1387 "\tfetch = +refs/heads/%s:refs/remotes/%s/%s\n",
1388 GOT_FETCH_DEFAULT_REMOTE_NAME, git_url,
1389 branchname, GOT_FETCH_DEFAULT_REMOTE_NAME,
1390 branchname) == -1) {
1391 error = got_error_from_errno("asprintf");
1392 goto done;
1395 n = fwrite(gitconfig, 1, strlen(gitconfig), gitconfig_file);
1396 if (n != strlen(gitconfig)) {
1397 error = got_ferror(gitconfig_file, GOT_ERR_IO);
1398 goto done;
1401 if (verbosity >= 0)
1402 printf("Created %s repository '%s'\n",
1403 mirror_references ? "mirrored" : "cloned", repo_path);
1404 done:
1405 if (fetchpid > 0) {
1406 if (kill(fetchpid, SIGTERM) == -1)
1407 error = got_error_from_errno("kill");
1408 if (waitpid(fetchpid, &fetchstatus, 0) == -1 && error == NULL)
1409 error = got_error_from_errno("waitpid");
1411 if (fetchfd != -1 && close(fetchfd) == -1 && error == NULL)
1412 error = got_error_from_errno("close");
1413 if (gitconfig_file && fclose(gitconfig_file) == EOF && error == NULL)
1414 error = got_error_from_errno("fclose");
1415 if (repo)
1416 got_repo_close(repo);
1417 if (head_symref)
1418 got_ref_close(head_symref);
1419 TAILQ_FOREACH(pe, &refs, entry) {
1420 free((void *)pe->path);
1421 free(pe->data);
1423 got_pathlist_free(&refs);
1424 TAILQ_FOREACH(pe, &symrefs, entry) {
1425 free((void *)pe->path);
1426 free(pe->data);
1428 got_pathlist_free(&symrefs);
1429 got_pathlist_free(&wanted_branches);
1430 got_pathlist_free(&wanted_refs);
1431 free(pack_hash);
1432 free(proto);
1433 free(host);
1434 free(port);
1435 free(server_path);
1436 free(repo_name);
1437 free(default_destdir);
1438 free(gitconfig_path);
1439 free(git_url);
1440 return error;
1443 static const struct got_error *
1444 update_ref(struct got_reference *ref, struct got_object_id *new_id,
1445 int replace_tags, int verbosity, struct got_repository *repo)
1447 const struct got_error *err = NULL;
1448 char *new_id_str = NULL;
1449 struct got_object_id *old_id = NULL;
1451 err = got_object_id_str(&new_id_str, new_id);
1452 if (err)
1453 goto done;
1455 if (!replace_tags &&
1456 strncmp(got_ref_get_name(ref), "refs/tags/", 10) == 0) {
1457 err = got_ref_resolve(&old_id, repo, ref);
1458 if (err)
1459 goto done;
1460 if (got_object_id_cmp(old_id, new_id) == 0)
1461 goto done;
1462 if (verbosity >= 0) {
1463 printf("Rejecting update of existing tag %s: %s\n",
1464 got_ref_get_name(ref), new_id_str);
1466 goto done;
1469 if (got_ref_is_symbolic(ref)) {
1470 if (verbosity >= 0) {
1471 printf("Replacing reference %s: %s\n",
1472 got_ref_get_name(ref),
1473 got_ref_get_symref_target(ref));
1475 err = got_ref_change_symref_to_ref(ref, new_id);
1476 if (err)
1477 goto done;
1478 err = got_ref_write(ref, repo);
1479 if (err)
1480 goto done;
1481 } else {
1482 err = got_ref_resolve(&old_id, repo, ref);
1483 if (err)
1484 goto done;
1485 if (got_object_id_cmp(old_id, new_id) == 0)
1486 goto done;
1488 err = got_ref_change_ref(ref, new_id);
1489 if (err)
1490 goto done;
1491 err = got_ref_write(ref, repo);
1492 if (err)
1493 goto done;
1496 if (verbosity >= 0)
1497 printf("Updated %s: %s\n", got_ref_get_name(ref),
1498 new_id_str);
1499 done:
1500 free(old_id);
1501 free(new_id_str);
1502 return err;
1505 static const struct got_error *
1506 update_symref(const char *refname, struct got_reference *target_ref,
1507 int verbosity, struct got_repository *repo)
1509 const struct got_error *err = NULL, *unlock_err;
1510 struct got_reference *symref;
1511 int symref_is_locked = 0;
1513 err = got_ref_open(&symref, repo, refname, 1);
1514 if (err) {
1515 if (err->code != GOT_ERR_NOT_REF)
1516 return err;
1517 err = got_ref_alloc_symref(&symref, refname, target_ref);
1518 if (err)
1519 goto done;
1521 err = got_ref_write(symref, repo);
1522 if (err)
1523 goto done;
1525 if (verbosity >= 0)
1526 printf("Created reference %s: %s\n",
1527 got_ref_get_name(symref),
1528 got_ref_get_symref_target(symref));
1529 } else {
1530 symref_is_locked = 1;
1532 if (strcmp(got_ref_get_symref_target(symref),
1533 got_ref_get_name(target_ref)) == 0)
1534 goto done;
1536 err = got_ref_change_symref(symref,
1537 got_ref_get_name(target_ref));
1538 if (err)
1539 goto done;
1541 err = got_ref_write(symref, repo);
1542 if (err)
1543 goto done;
1545 if (verbosity >= 0)
1546 printf("Updated %s: %s\n", got_ref_get_name(symref),
1547 got_ref_get_symref_target(symref));
1550 done:
1551 if (symref_is_locked) {
1552 unlock_err = got_ref_unlock(symref);
1553 if (unlock_err && err == NULL)
1554 err = unlock_err;
1556 got_ref_close(symref);
1557 return err;
1560 __dead static void
1561 usage_fetch(void)
1563 fprintf(stderr, "usage: %s fetch [-a] [-b branch] [-d] [-l] "
1564 "[-r repository-path] [-t] [-q] [-v] [-R reference] "
1565 "[remote-repository-name]\n",
1566 getprogname());
1567 exit(1);
1570 static const struct got_error *
1571 delete_missing_ref(struct got_reference *ref,
1572 int verbosity, struct got_repository *repo)
1574 const struct got_error *err = NULL;
1575 struct got_object_id *id = NULL;
1576 char *id_str = NULL;
1578 if (got_ref_is_symbolic(ref)) {
1579 err = got_ref_delete(ref, repo);
1580 if (err)
1581 return err;
1582 if (verbosity >= 0) {
1583 printf("Deleted reference %s: %s\n",
1584 got_ref_get_name(ref),
1585 got_ref_get_symref_target(ref));
1587 } else {
1588 err = got_ref_resolve(&id, repo, ref);
1589 if (err)
1590 return err;
1591 err = got_object_id_str(&id_str, id);
1592 if (err)
1593 goto done;
1595 err = got_ref_delete(ref, repo);
1596 if (err)
1597 goto done;
1598 if (verbosity >= 0) {
1599 printf("Deleted reference %s: %s\n",
1600 got_ref_get_name(ref), id_str);
1603 done:
1604 free(id);
1605 free(id_str);
1606 return NULL;
1609 static const struct got_error *
1610 delete_missing_refs(struct got_pathlist_head *their_refs,
1611 struct got_pathlist_head *their_symrefs, struct got_remote_repo *remote,
1612 int verbosity, struct got_repository *repo)
1614 const struct got_error *err = NULL, *unlock_err;
1615 struct got_reflist_head my_refs;
1616 struct got_reflist_entry *re;
1617 struct got_pathlist_entry *pe;
1618 char *remote_namespace = NULL;
1619 char *local_refname = NULL;
1621 SIMPLEQ_INIT(&my_refs);
1623 if (asprintf(&remote_namespace, "refs/remotes/%s/", remote->name)
1624 == -1)
1625 return got_error_from_errno("asprintf");
1627 err = got_ref_list(&my_refs, repo, NULL, got_ref_cmp_by_name, NULL);
1628 if (err)
1629 goto done;
1631 SIMPLEQ_FOREACH(re, &my_refs, entry) {
1632 const char *refname = got_ref_get_name(re->ref);
1634 if (!remote->mirror_references) {
1635 if (strncmp(refname, remote_namespace,
1636 strlen(remote_namespace)) == 0) {
1637 if (strcmp(refname + strlen(remote_namespace),
1638 GOT_REF_HEAD) == 0)
1639 continue;
1640 if (asprintf(&local_refname, "refs/heads/%s",
1641 refname + strlen(remote_namespace)) == -1) {
1642 err = got_error_from_errno("asprintf");
1643 goto done;
1645 } else if (strncmp(refname, "refs/tags/", 10) != 0)
1646 continue;
1649 TAILQ_FOREACH(pe, their_refs, entry) {
1650 if (strcmp(local_refname, pe->path) == 0)
1651 break;
1653 if (pe != NULL)
1654 continue;
1656 TAILQ_FOREACH(pe, their_symrefs, entry) {
1657 if (strcmp(local_refname, pe->path) == 0)
1658 break;
1660 if (pe != NULL)
1661 continue;
1663 err = delete_missing_ref(re->ref, verbosity, repo);
1664 if (err)
1665 break;
1667 if (local_refname) {
1668 struct got_reference *ref;
1669 err = got_ref_open(&ref, repo, local_refname, 1);
1670 if (err) {
1671 if (err->code != GOT_ERR_NOT_REF)
1672 break;
1673 free(local_refname);
1674 local_refname = NULL;
1675 continue;
1677 err = delete_missing_ref(ref, verbosity, repo);
1678 if (err)
1679 break;
1680 unlock_err = got_ref_unlock(ref);
1681 got_ref_close(ref);
1682 if (unlock_err && err == NULL) {
1683 err = unlock_err;
1684 break;
1687 free(local_refname);
1688 local_refname = NULL;
1691 done:
1692 free(remote_namespace);
1693 free(local_refname);
1694 return err;
1697 static const struct got_error *
1698 update_wanted_ref(const char *refname, struct got_object_id *id,
1699 const char *remote_repo_name, int verbosity, struct got_repository *repo)
1701 const struct got_error *err, *unlock_err;
1702 char *remote_refname;
1703 struct got_reference *ref;
1705 if (strncmp("refs/", refname, 5) == 0)
1706 refname += 5;
1708 if (asprintf(&remote_refname, "refs/remotes/%s/%s",
1709 remote_repo_name, refname) == -1)
1710 return got_error_from_errno("asprintf");
1712 err = got_ref_open(&ref, repo, remote_refname, 1);
1713 if (err) {
1714 if (err->code != GOT_ERR_NOT_REF)
1715 goto done;
1716 err = create_ref(remote_refname, id, verbosity, repo);
1717 } else {
1718 err = update_ref(ref, id, 0, verbosity, repo);
1719 unlock_err = got_ref_unlock(ref);
1720 if (unlock_err && err == NULL)
1721 err = unlock_err;
1722 got_ref_close(ref);
1724 done:
1725 free(remote_refname);
1726 return err;
1729 static const struct got_error *
1730 cmd_fetch(int argc, char *argv[])
1732 const struct got_error *error = NULL, *unlock_err;
1733 char *cwd = NULL, *repo_path = NULL;
1734 const char *remote_name;
1735 char *proto = NULL, *host = NULL, *port = NULL;
1736 char *repo_name = NULL, *server_path = NULL;
1737 struct got_remote_repo *remotes, *remote = NULL;
1738 int nremotes;
1739 char *id_str = NULL;
1740 struct got_repository *repo = NULL;
1741 struct got_worktree *worktree = NULL;
1742 struct got_pathlist_head refs, symrefs, wanted_branches, wanted_refs;
1743 struct got_pathlist_entry *pe;
1744 struct got_object_id *pack_hash = NULL;
1745 int i, ch, fetchfd = -1, fetchstatus;
1746 pid_t fetchpid = -1;
1747 struct got_fetch_progress_arg fpa;
1748 int verbosity = 0, fetch_all_branches = 0, list_refs_only = 0;
1749 int delete_refs = 0, replace_tags = 0;
1751 TAILQ_INIT(&refs);
1752 TAILQ_INIT(&symrefs);
1753 TAILQ_INIT(&wanted_branches);
1754 TAILQ_INIT(&wanted_refs);
1756 while ((ch = getopt(argc, argv, "ab:dlr:tvqR:")) != -1) {
1757 switch (ch) {
1758 case 'a':
1759 fetch_all_branches = 1;
1760 break;
1761 case 'b':
1762 error = got_pathlist_append(&wanted_branches,
1763 optarg, NULL);
1764 if (error)
1765 return error;
1766 break;
1767 case 'd':
1768 delete_refs = 1;
1769 break;
1770 case 'l':
1771 list_refs_only = 1;
1772 break;
1773 case 'r':
1774 repo_path = realpath(optarg, NULL);
1775 if (repo_path == NULL)
1776 return got_error_from_errno2("realpath",
1777 optarg);
1778 got_path_strip_trailing_slashes(repo_path);
1779 break;
1780 case 't':
1781 replace_tags = 1;
1782 break;
1783 case 'v':
1784 if (verbosity < 0)
1785 verbosity = 0;
1786 else if (verbosity < 3)
1787 verbosity++;
1788 break;
1789 case 'q':
1790 verbosity = -1;
1791 break;
1792 case 'R':
1793 error = got_pathlist_append(&wanted_refs,
1794 optarg, NULL);
1795 if (error)
1796 return error;
1797 break;
1798 default:
1799 usage_fetch();
1800 break;
1803 argc -= optind;
1804 argv += optind;
1806 if (fetch_all_branches && !TAILQ_EMPTY(&wanted_branches))
1807 errx(1, "-a and -b options are mutually exclusive");
1808 if (list_refs_only) {
1809 if (!TAILQ_EMPTY(&wanted_branches))
1810 errx(1, "-l and -b options are mutually exclusive");
1811 if (fetch_all_branches)
1812 errx(1, "-l and -a options are mutually exclusive");
1813 if (delete_refs)
1814 errx(1, "-l and -d options are mutually exclusive");
1815 if (verbosity == -1)
1816 errx(1, "-l and -q options are mutually exclusive");
1819 if (argc == 0)
1820 remote_name = GOT_FETCH_DEFAULT_REMOTE_NAME;
1821 else if (argc == 1)
1822 remote_name = argv[0];
1823 else
1824 usage_fetch();
1826 cwd = getcwd(NULL, 0);
1827 if (cwd == NULL) {
1828 error = got_error_from_errno("getcwd");
1829 goto done;
1832 if (repo_path == NULL) {
1833 error = got_worktree_open(&worktree, cwd);
1834 if (error && error->code != GOT_ERR_NOT_WORKTREE)
1835 goto done;
1836 else
1837 error = NULL;
1838 if (worktree) {
1839 repo_path =
1840 strdup(got_worktree_get_repo_path(worktree));
1841 if (repo_path == NULL)
1842 error = got_error_from_errno("strdup");
1843 if (error)
1844 goto done;
1845 } else {
1846 repo_path = strdup(cwd);
1847 if (repo_path == NULL) {
1848 error = got_error_from_errno("strdup");
1849 goto done;
1854 error = got_repo_open(&repo, repo_path, NULL);
1855 if (error)
1856 goto done;
1858 got_repo_get_gitconfig_remotes(&nremotes, &remotes, repo);
1859 for (i = 0; i < nremotes; i++) {
1860 remote = &remotes[i];
1861 if (strcmp(remote->name, remote_name) == 0)
1862 break;
1864 if (i == nremotes) {
1865 error = got_error_path(remote_name, GOT_ERR_NO_REMOTE);
1866 goto done;
1869 error = got_fetch_parse_uri(&proto, &host, &port, &server_path,
1870 &repo_name, remote->url);
1871 if (error)
1872 goto done;
1874 if (strcmp(proto, "git") == 0) {
1875 #ifndef PROFILE
1876 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1877 "sendfd dns inet unveil", NULL) == -1)
1878 err(1, "pledge");
1879 #endif
1880 } else if (strcmp(proto, "git+ssh") == 0 ||
1881 strcmp(proto, "ssh") == 0) {
1882 #ifndef PROFILE
1883 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1884 "sendfd unveil", NULL) == -1)
1885 err(1, "pledge");
1886 #endif
1887 } else if (strcmp(proto, "http") == 0 ||
1888 strcmp(proto, "git+http") == 0) {
1889 error = got_error_path(proto, GOT_ERR_NOT_IMPL);
1890 goto done;
1891 } else {
1892 error = got_error_path(proto, GOT_ERR_BAD_PROTO);
1893 goto done;
1896 if (strcmp(proto, "git+ssh") == 0 || strcmp(proto, "ssh") == 0) {
1897 if (unveil(GOT_FETCH_PATH_SSH, "x") != 0) {
1898 error = got_error_from_errno2("unveil",
1899 GOT_FETCH_PATH_SSH);
1900 goto done;
1903 error = apply_unveil(got_repo_get_path(repo), 0, NULL);
1904 if (error)
1905 goto done;
1907 if (verbosity >= 0)
1908 printf("Connecting to \"%s\" %s%s%s\n", remote->name, host,
1909 port ? ":" : "", port ? port : "");
1911 error = got_fetch_connect(&fetchpid, &fetchfd, proto, host, port,
1912 server_path, verbosity);
1913 if (error)
1914 goto done;
1916 fpa.last_scaled_size[0] = '\0';
1917 fpa.last_p_indexed = -1;
1918 fpa.last_p_resolved = -1;
1919 fpa.verbosity = verbosity;
1920 error = got_fetch_pack(&pack_hash, &refs, &symrefs, remote->name,
1921 remote->mirror_references, fetch_all_branches, &wanted_branches,
1922 &wanted_refs, list_refs_only, verbosity, fetchfd, repo,
1923 fetch_progress, &fpa);
1924 if (error)
1925 goto done;
1927 if (list_refs_only) {
1928 error = list_remote_refs(&symrefs, &refs);
1929 goto done;
1932 if (pack_hash == NULL) {
1933 if (verbosity >= 0)
1934 printf("Already up-to-date\n");
1935 } else if (verbosity >= 0) {
1936 error = got_object_id_str(&id_str, pack_hash);
1937 if (error)
1938 goto done;
1939 printf("\nFetched %s.pack\n", id_str);
1940 free(id_str);
1941 id_str = NULL;
1944 /* Update references provided with the pack file. */
1945 TAILQ_FOREACH(pe, &refs, entry) {
1946 const char *refname = pe->path;
1947 struct got_object_id *id = pe->data;
1948 struct got_reference *ref;
1949 char *remote_refname;
1951 if (is_wanted_ref(&wanted_refs, refname) &&
1952 !remote->mirror_references) {
1953 error = update_wanted_ref(refname, id,
1954 remote->name, verbosity, repo);
1955 if (error)
1956 goto done;
1957 continue;
1960 if (remote->mirror_references ||
1961 strncmp("refs/tags/", refname, 10) == 0) {
1962 error = got_ref_open(&ref, repo, refname, 1);
1963 if (error) {
1964 if (error->code != GOT_ERR_NOT_REF)
1965 goto done;
1966 error = create_ref(refname, id, verbosity,
1967 repo);
1968 if (error)
1969 goto done;
1970 } else {
1971 error = update_ref(ref, id, replace_tags,
1972 verbosity, repo);
1973 unlock_err = got_ref_unlock(ref);
1974 if (unlock_err && error == NULL)
1975 error = unlock_err;
1976 got_ref_close(ref);
1977 if (error)
1978 goto done;
1980 } else if (strncmp("refs/heads/", refname, 11) == 0) {
1981 if (asprintf(&remote_refname, "refs/remotes/%s/%s",
1982 remote_name, refname + 11) == -1) {
1983 error = got_error_from_errno("asprintf");
1984 goto done;
1987 error = got_ref_open(&ref, repo, remote_refname, 1);
1988 if (error) {
1989 if (error->code != GOT_ERR_NOT_REF)
1990 goto done;
1991 error = create_ref(remote_refname, id,
1992 verbosity, repo);
1993 if (error)
1994 goto done;
1995 } else {
1996 error = update_ref(ref, id, replace_tags,
1997 verbosity, repo);
1998 unlock_err = got_ref_unlock(ref);
1999 if (unlock_err && error == NULL)
2000 error = unlock_err;
2001 got_ref_close(ref);
2002 if (error)
2003 goto done;
2006 /* Also create a local branch if none exists yet. */
2007 error = got_ref_open(&ref, repo, refname, 1);
2008 if (error) {
2009 if (error->code != GOT_ERR_NOT_REF)
2010 goto done;
2011 error = create_ref(refname, id, verbosity,
2012 repo);
2013 if (error)
2014 goto done;
2015 } else {
2016 unlock_err = got_ref_unlock(ref);
2017 if (unlock_err && error == NULL)
2018 error = unlock_err;
2019 got_ref_close(ref);
2023 if (delete_refs) {
2024 error = delete_missing_refs(&refs, &symrefs, remote,
2025 verbosity, repo);
2026 if (error)
2027 goto done;
2030 if (!remote->mirror_references) {
2031 /* Update remote HEAD reference if the server provided one. */
2032 TAILQ_FOREACH(pe, &symrefs, entry) {
2033 struct got_reference *target_ref;
2034 const char *refname = pe->path;
2035 const char *target = pe->data;
2036 char *remote_refname = NULL, *remote_target = NULL;
2038 if (strcmp(refname, GOT_REF_HEAD) != 0)
2039 continue;
2041 if (strncmp("refs/heads/", target, 11) != 0)
2042 continue;
2044 if (asprintf(&remote_refname, "refs/remotes/%s/%s",
2045 remote->name, refname) == -1) {
2046 error = got_error_from_errno("asprintf");
2047 goto done;
2049 if (asprintf(&remote_target, "refs/remotes/%s/%s",
2050 remote->name, target + 11) == -1) {
2051 error = got_error_from_errno("asprintf");
2052 free(remote_refname);
2053 goto done;
2056 error = got_ref_open(&target_ref, repo, remote_target,
2057 0);
2058 if (error) {
2059 free(remote_refname);
2060 free(remote_target);
2061 if (error->code == GOT_ERR_NOT_REF) {
2062 error = NULL;
2063 continue;
2065 goto done;
2067 error = update_symref(remote_refname, target_ref,
2068 verbosity, repo);
2069 free(remote_refname);
2070 free(remote_target);
2071 got_ref_close(target_ref);
2072 if (error)
2073 goto done;
2076 done:
2077 if (fetchpid > 0) {
2078 if (kill(fetchpid, SIGTERM) == -1)
2079 error = got_error_from_errno("kill");
2080 if (waitpid(fetchpid, &fetchstatus, 0) == -1 && error == NULL)
2081 error = got_error_from_errno("waitpid");
2083 if (fetchfd != -1 && close(fetchfd) == -1 && error == NULL)
2084 error = got_error_from_errno("close");
2085 if (repo)
2086 got_repo_close(repo);
2087 if (worktree)
2088 got_worktree_close(worktree);
2089 TAILQ_FOREACH(pe, &refs, entry) {
2090 free((void *)pe->path);
2091 free(pe->data);
2093 got_pathlist_free(&refs);
2094 TAILQ_FOREACH(pe, &symrefs, entry) {
2095 free((void *)pe->path);
2096 free(pe->data);
2098 got_pathlist_free(&symrefs);
2099 got_pathlist_free(&wanted_branches);
2100 got_pathlist_free(&wanted_refs);
2101 free(id_str);
2102 free(cwd);
2103 free(repo_path);
2104 free(pack_hash);
2105 free(proto);
2106 free(host);
2107 free(port);
2108 free(server_path);
2109 free(repo_name);
2110 return error;
2114 __dead static void
2115 usage_checkout(void)
2117 fprintf(stderr, "usage: %s checkout [-E] [-b branch] [-c commit] "
2118 "[-p prefix] repository-path [worktree-path]\n", getprogname());
2119 exit(1);
2122 static void
2123 show_worktree_base_ref_warning(void)
2125 fprintf(stderr, "%s: warning: could not create a reference "
2126 "to the work tree's base commit; the commit could be "
2127 "garbage-collected by Git; making the repository "
2128 "writable and running 'got update' will prevent this\n",
2129 getprogname());
2132 struct got_checkout_progress_arg {
2133 const char *worktree_path;
2134 int had_base_commit_ref_error;
2137 static const struct got_error *
2138 checkout_progress(void *arg, unsigned char status, const char *path)
2140 struct got_checkout_progress_arg *a = arg;
2142 /* Base commit bump happens silently. */
2143 if (status == GOT_STATUS_BUMP_BASE)
2144 return NULL;
2146 if (status == GOT_STATUS_BASE_REF_ERR) {
2147 a->had_base_commit_ref_error = 1;
2148 return NULL;
2151 while (path[0] == '/')
2152 path++;
2154 printf("%c %s/%s\n", status, a->worktree_path, path);
2155 return NULL;
2158 static const struct got_error *
2159 check_cancelled(void *arg)
2161 if (sigint_received || sigpipe_received)
2162 return got_error(GOT_ERR_CANCELLED);
2163 return NULL;
2166 static const struct got_error *
2167 check_linear_ancestry(struct got_object_id *commit_id,
2168 struct got_object_id *base_commit_id, int allow_forwards_in_time_only,
2169 struct got_repository *repo)
2171 const struct got_error *err = NULL;
2172 struct got_object_id *yca_id;
2174 err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
2175 commit_id, base_commit_id, repo, check_cancelled, NULL);
2176 if (err)
2177 return err;
2179 if (yca_id == NULL)
2180 return got_error(GOT_ERR_ANCESTRY);
2183 * Require a straight line of history between the target commit
2184 * and the work tree's base commit.
2186 * Non-linear situations such as this require a rebase:
2188 * (commit) D F (base_commit)
2189 * \ /
2190 * C E
2191 * \ /
2192 * B (yca)
2193 * |
2194 * A
2196 * 'got update' only handles linear cases:
2197 * Update forwards in time: A (base/yca) - B - C - D (commit)
2198 * Update backwards in time: D (base) - C - B - A (commit/yca)
2200 if (allow_forwards_in_time_only) {
2201 if (got_object_id_cmp(base_commit_id, yca_id) != 0)
2202 return got_error(GOT_ERR_ANCESTRY);
2203 } else if (got_object_id_cmp(commit_id, yca_id) != 0 &&
2204 got_object_id_cmp(base_commit_id, yca_id) != 0)
2205 return got_error(GOT_ERR_ANCESTRY);
2207 free(yca_id);
2208 return NULL;
2211 static const struct got_error *
2212 check_same_branch(struct got_object_id *commit_id,
2213 struct got_reference *head_ref, struct got_object_id *yca_id,
2214 struct got_repository *repo)
2216 const struct got_error *err = NULL;
2217 struct got_commit_graph *graph = NULL;
2218 struct got_object_id *head_commit_id = NULL;
2219 int is_same_branch = 0;
2221 err = got_ref_resolve(&head_commit_id, repo, head_ref);
2222 if (err)
2223 goto done;
2225 if (got_object_id_cmp(head_commit_id, commit_id) == 0) {
2226 is_same_branch = 1;
2227 goto done;
2229 if (yca_id && got_object_id_cmp(commit_id, yca_id) == 0) {
2230 is_same_branch = 1;
2231 goto done;
2234 err = got_commit_graph_open(&graph, "/", 1);
2235 if (err)
2236 goto done;
2238 err = got_commit_graph_iter_start(graph, head_commit_id, repo,
2239 check_cancelled, NULL);
2240 if (err)
2241 goto done;
2243 for (;;) {
2244 struct got_object_id *id;
2245 err = got_commit_graph_iter_next(&id, graph, repo,
2246 check_cancelled, NULL);
2247 if (err) {
2248 if (err->code == GOT_ERR_ITER_COMPLETED)
2249 err = NULL;
2250 break;
2253 if (id) {
2254 if (yca_id && got_object_id_cmp(id, yca_id) == 0)
2255 break;
2256 if (got_object_id_cmp(id, commit_id) == 0) {
2257 is_same_branch = 1;
2258 break;
2262 done:
2263 if (graph)
2264 got_commit_graph_close(graph);
2265 free(head_commit_id);
2266 if (!err && !is_same_branch)
2267 err = got_error(GOT_ERR_ANCESTRY);
2268 return err;
2271 static const struct got_error *
2272 checkout_ancestry_error(struct got_reference *ref, const char *commit_id_str)
2274 static char msg[512];
2275 const char *branch_name;
2277 if (got_ref_is_symbolic(ref))
2278 branch_name = got_ref_get_symref_target(ref);
2279 else
2280 branch_name = got_ref_get_name(ref);
2282 if (strncmp("refs/heads/", branch_name, 11) == 0)
2283 branch_name += 11;
2285 snprintf(msg, sizeof(msg),
2286 "target commit is not contained in branch '%s'; "
2287 "the branch to use must be specified with -b; "
2288 "if necessary a new branch can be created for "
2289 "this commit with 'got branch -c %s BRANCH_NAME'",
2290 branch_name, commit_id_str);
2292 return got_error_msg(GOT_ERR_ANCESTRY, msg);
2295 static const struct got_error *
2296 cmd_checkout(int argc, char *argv[])
2298 const struct got_error *error = NULL;
2299 struct got_repository *repo = NULL;
2300 struct got_reference *head_ref = NULL;
2301 struct got_worktree *worktree = NULL;
2302 char *repo_path = NULL;
2303 char *worktree_path = NULL;
2304 const char *path_prefix = "";
2305 const char *branch_name = GOT_REF_HEAD;
2306 char *commit_id_str = NULL;
2307 int ch, same_path_prefix, allow_nonempty = 0;
2308 struct got_pathlist_head paths;
2309 struct got_checkout_progress_arg cpa;
2311 TAILQ_INIT(&paths);
2313 while ((ch = getopt(argc, argv, "b:c:Ep:")) != -1) {
2314 switch (ch) {
2315 case 'b':
2316 branch_name = optarg;
2317 break;
2318 case 'c':
2319 commit_id_str = strdup(optarg);
2320 if (commit_id_str == NULL)
2321 return got_error_from_errno("strdup");
2322 break;
2323 case 'E':
2324 allow_nonempty = 1;
2325 break;
2326 case 'p':
2327 path_prefix = optarg;
2328 break;
2329 default:
2330 usage_checkout();
2331 /* NOTREACHED */
2335 argc -= optind;
2336 argv += optind;
2338 #ifndef PROFILE
2339 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
2340 "unveil", NULL) == -1)
2341 err(1, "pledge");
2342 #endif
2343 if (argc == 1) {
2344 char *cwd, *base, *dotgit;
2345 repo_path = realpath(argv[0], NULL);
2346 if (repo_path == NULL)
2347 return got_error_from_errno2("realpath", argv[0]);
2348 cwd = getcwd(NULL, 0);
2349 if (cwd == NULL) {
2350 error = got_error_from_errno("getcwd");
2351 goto done;
2353 if (path_prefix[0]) {
2354 base = basename(path_prefix);
2355 if (base == NULL) {
2356 error = got_error_from_errno2("basename",
2357 path_prefix);
2358 goto done;
2360 } else {
2361 base = basename(repo_path);
2362 if (base == NULL) {
2363 error = got_error_from_errno2("basename",
2364 repo_path);
2365 goto done;
2368 dotgit = strstr(base, ".git");
2369 if (dotgit)
2370 *dotgit = '\0';
2371 if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
2372 error = got_error_from_errno("asprintf");
2373 free(cwd);
2374 goto done;
2376 free(cwd);
2377 } else if (argc == 2) {
2378 repo_path = realpath(argv[0], NULL);
2379 if (repo_path == NULL) {
2380 error = got_error_from_errno2("realpath", argv[0]);
2381 goto done;
2383 worktree_path = realpath(argv[1], NULL);
2384 if (worktree_path == NULL) {
2385 if (errno != ENOENT) {
2386 error = got_error_from_errno2("realpath",
2387 argv[1]);
2388 goto done;
2390 worktree_path = strdup(argv[1]);
2391 if (worktree_path == NULL) {
2392 error = got_error_from_errno("strdup");
2393 goto done;
2396 } else
2397 usage_checkout();
2399 got_path_strip_trailing_slashes(repo_path);
2400 got_path_strip_trailing_slashes(worktree_path);
2402 error = got_repo_open(&repo, repo_path, NULL);
2403 if (error != NULL)
2404 goto done;
2406 /* Pre-create work tree path for unveil(2) */
2407 error = got_path_mkdir(worktree_path);
2408 if (error) {
2409 if (!(error->code == GOT_ERR_ERRNO && errno == EISDIR) &&
2410 !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
2411 goto done;
2412 if (!allow_nonempty &&
2413 !got_path_dir_is_empty(worktree_path)) {
2414 error = got_error_path(worktree_path,
2415 GOT_ERR_DIR_NOT_EMPTY);
2416 goto done;
2420 error = apply_unveil(got_repo_get_path(repo), 0, worktree_path);
2421 if (error)
2422 goto done;
2424 error = got_ref_open(&head_ref, repo, branch_name, 0);
2425 if (error != NULL)
2426 goto done;
2428 error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
2429 if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
2430 goto done;
2432 error = got_worktree_open(&worktree, worktree_path);
2433 if (error != NULL)
2434 goto done;
2436 error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
2437 path_prefix);
2438 if (error != NULL)
2439 goto done;
2440 if (!same_path_prefix) {
2441 error = got_error(GOT_ERR_PATH_PREFIX);
2442 goto done;
2445 if (commit_id_str) {
2446 struct got_object_id *commit_id;
2447 error = got_repo_match_object_id(&commit_id, NULL,
2448 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
2449 if (error)
2450 goto done;
2451 error = check_linear_ancestry(commit_id,
2452 got_worktree_get_base_commit_id(worktree), 0, repo);
2453 if (error != NULL) {
2454 free(commit_id);
2455 if (error->code == GOT_ERR_ANCESTRY) {
2456 error = checkout_ancestry_error(
2457 head_ref, commit_id_str);
2459 goto done;
2461 error = check_same_branch(commit_id, head_ref, NULL, repo);
2462 if (error) {
2463 if (error->code == GOT_ERR_ANCESTRY) {
2464 error = checkout_ancestry_error(
2465 head_ref, commit_id_str);
2467 goto done;
2469 error = got_worktree_set_base_commit_id(worktree, repo,
2470 commit_id);
2471 free(commit_id);
2472 if (error)
2473 goto done;
2476 error = got_pathlist_append(&paths, "", NULL);
2477 if (error)
2478 goto done;
2479 cpa.worktree_path = worktree_path;
2480 cpa.had_base_commit_ref_error = 0;
2481 error = got_worktree_checkout_files(worktree, &paths, repo,
2482 checkout_progress, &cpa, check_cancelled, NULL);
2483 if (error != NULL)
2484 goto done;
2486 printf("Now shut up and hack\n");
2487 if (cpa.had_base_commit_ref_error)
2488 show_worktree_base_ref_warning();
2489 done:
2490 got_pathlist_free(&paths);
2491 free(commit_id_str);
2492 free(repo_path);
2493 free(worktree_path);
2494 return error;
2497 struct got_update_progress_arg {
2498 int did_something;
2499 int conflicts;
2500 int obstructed;
2501 int not_updated;
2504 void
2505 print_update_progress_stats(struct got_update_progress_arg *upa)
2507 if (!upa->did_something)
2508 return;
2510 if (upa->conflicts > 0)
2511 printf("Files with new merge conflicts: %d\n", upa->conflicts);
2512 if (upa->obstructed > 0)
2513 printf("File paths obstructed by a non-regular file: %d\n",
2514 upa->obstructed);
2515 if (upa->not_updated > 0)
2516 printf("Files not updated because of existing merge "
2517 "conflicts: %d\n", upa->not_updated);
2520 __dead static void
2521 usage_update(void)
2523 fprintf(stderr, "usage: %s update [-b branch] [-c commit] [path ...]\n",
2524 getprogname());
2525 exit(1);
2528 static const struct got_error *
2529 update_progress(void *arg, unsigned char status, const char *path)
2531 struct got_update_progress_arg *upa = arg;
2533 if (status == GOT_STATUS_EXISTS ||
2534 status == GOT_STATUS_BASE_REF_ERR)
2535 return NULL;
2537 upa->did_something = 1;
2539 /* Base commit bump happens silently. */
2540 if (status == GOT_STATUS_BUMP_BASE)
2541 return NULL;
2543 if (status == GOT_STATUS_CONFLICT)
2544 upa->conflicts++;
2545 if (status == GOT_STATUS_OBSTRUCTED)
2546 upa->obstructed++;
2547 if (status == GOT_STATUS_CANNOT_UPDATE)
2548 upa->not_updated++;
2550 while (path[0] == '/')
2551 path++;
2552 printf("%c %s\n", status, path);
2553 return NULL;
2556 static const struct got_error *
2557 switch_head_ref(struct got_reference *head_ref,
2558 struct got_object_id *commit_id, struct got_worktree *worktree,
2559 struct got_repository *repo)
2561 const struct got_error *err = NULL;
2562 char *base_id_str;
2563 int ref_has_moved = 0;
2565 /* Trivial case: switching between two different references. */
2566 if (strcmp(got_ref_get_name(head_ref),
2567 got_worktree_get_head_ref_name(worktree)) != 0) {
2568 printf("Switching work tree from %s to %s\n",
2569 got_worktree_get_head_ref_name(worktree),
2570 got_ref_get_name(head_ref));
2571 return got_worktree_set_head_ref(worktree, head_ref);
2574 err = check_linear_ancestry(commit_id,
2575 got_worktree_get_base_commit_id(worktree), 0, repo);
2576 if (err) {
2577 if (err->code != GOT_ERR_ANCESTRY)
2578 return err;
2579 ref_has_moved = 1;
2581 if (!ref_has_moved)
2582 return NULL;
2584 /* Switching to a rebased branch with the same reference name. */
2585 err = got_object_id_str(&base_id_str,
2586 got_worktree_get_base_commit_id(worktree));
2587 if (err)
2588 return err;
2589 printf("Reference %s now points at a different branch\n",
2590 got_worktree_get_head_ref_name(worktree));
2591 printf("Switching work tree from %s to %s\n", base_id_str,
2592 got_worktree_get_head_ref_name(worktree));
2593 return NULL;
2596 static const struct got_error *
2597 check_rebase_or_histedit_in_progress(struct got_worktree *worktree)
2599 const struct got_error *err;
2600 int in_progress;
2602 err = got_worktree_rebase_in_progress(&in_progress, worktree);
2603 if (err)
2604 return err;
2605 if (in_progress)
2606 return got_error(GOT_ERR_REBASING);
2608 err = got_worktree_histedit_in_progress(&in_progress, worktree);
2609 if (err)
2610 return err;
2611 if (in_progress)
2612 return got_error(GOT_ERR_HISTEDIT_BUSY);
2614 return NULL;
2617 static const struct got_error *
2618 get_worktree_paths_from_argv(struct got_pathlist_head *paths, int argc,
2619 char *argv[], struct got_worktree *worktree)
2621 const struct got_error *err = NULL;
2622 char *path;
2623 int i;
2625 if (argc == 0) {
2626 path = strdup("");
2627 if (path == NULL)
2628 return got_error_from_errno("strdup");
2629 return got_pathlist_append(paths, path, NULL);
2632 for (i = 0; i < argc; i++) {
2633 err = got_worktree_resolve_path(&path, worktree, argv[i]);
2634 if (err)
2635 break;
2636 err = got_pathlist_append(paths, path, NULL);
2637 if (err) {
2638 free(path);
2639 break;
2643 return err;
2646 static const struct got_error *
2647 wrap_not_worktree_error(const struct got_error *orig_err,
2648 const char *cmdname, const char *path)
2650 const struct got_error *err;
2651 struct got_repository *repo;
2652 static char msg[512];
2654 err = got_repo_open(&repo, path, NULL);
2655 if (err)
2656 return orig_err;
2658 snprintf(msg, sizeof(msg),
2659 "'got %s' needs a work tree in addition to a git repository\n"
2660 "Work trees can be checked out from this Git repository with "
2661 "'got checkout'.\n"
2662 "The got(1) manual page contains more information.", cmdname);
2663 err = got_error_msg(GOT_ERR_NOT_WORKTREE, msg);
2664 got_repo_close(repo);
2665 return err;
2668 static const struct got_error *
2669 cmd_update(int argc, char *argv[])
2671 const struct got_error *error = NULL;
2672 struct got_repository *repo = NULL;
2673 struct got_worktree *worktree = NULL;
2674 char *worktree_path = NULL;
2675 struct got_object_id *commit_id = NULL;
2676 char *commit_id_str = NULL;
2677 const char *branch_name = NULL;
2678 struct got_reference *head_ref = NULL;
2679 struct got_pathlist_head paths;
2680 struct got_pathlist_entry *pe;
2681 int ch;
2682 struct got_update_progress_arg upa;
2684 TAILQ_INIT(&paths);
2686 while ((ch = getopt(argc, argv, "b:c:")) != -1) {
2687 switch (ch) {
2688 case 'b':
2689 branch_name = optarg;
2690 break;
2691 case 'c':
2692 commit_id_str = strdup(optarg);
2693 if (commit_id_str == NULL)
2694 return got_error_from_errno("strdup");
2695 break;
2696 default:
2697 usage_update();
2698 /* NOTREACHED */
2702 argc -= optind;
2703 argv += optind;
2705 #ifndef PROFILE
2706 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
2707 "unveil", NULL) == -1)
2708 err(1, "pledge");
2709 #endif
2710 worktree_path = getcwd(NULL, 0);
2711 if (worktree_path == NULL) {
2712 error = got_error_from_errno("getcwd");
2713 goto done;
2715 error = got_worktree_open(&worktree, worktree_path);
2716 if (error) {
2717 if (error->code == GOT_ERR_NOT_WORKTREE)
2718 error = wrap_not_worktree_error(error, "update",
2719 worktree_path);
2720 goto done;
2723 error = check_rebase_or_histedit_in_progress(worktree);
2724 if (error)
2725 goto done;
2727 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
2728 NULL);
2729 if (error != NULL)
2730 goto done;
2732 error = apply_unveil(got_repo_get_path(repo), 0,
2733 got_worktree_get_root_path(worktree));
2734 if (error)
2735 goto done;
2737 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
2738 if (error)
2739 goto done;
2741 error = got_ref_open(&head_ref, repo, branch_name ? branch_name :
2742 got_worktree_get_head_ref_name(worktree), 0);
2743 if (error != NULL)
2744 goto done;
2745 if (commit_id_str == NULL) {
2746 error = got_ref_resolve(&commit_id, repo, head_ref);
2747 if (error != NULL)
2748 goto done;
2749 error = got_object_id_str(&commit_id_str, commit_id);
2750 if (error != NULL)
2751 goto done;
2752 } else {
2753 error = got_repo_match_object_id(&commit_id, NULL,
2754 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
2755 free(commit_id_str);
2756 commit_id_str = NULL;
2757 if (error)
2758 goto done;
2759 error = got_object_id_str(&commit_id_str, commit_id);
2760 if (error)
2761 goto done;
2764 if (branch_name) {
2765 struct got_object_id *head_commit_id;
2766 TAILQ_FOREACH(pe, &paths, entry) {
2767 if (pe->path_len == 0)
2768 continue;
2769 error = got_error_msg(GOT_ERR_BAD_PATH,
2770 "switching between branches requires that "
2771 "the entire work tree gets updated");
2772 goto done;
2774 error = got_ref_resolve(&head_commit_id, repo, head_ref);
2775 if (error)
2776 goto done;
2777 error = check_linear_ancestry(commit_id, head_commit_id, 0,
2778 repo);
2779 free(head_commit_id);
2780 if (error != NULL)
2781 goto done;
2782 error = check_same_branch(commit_id, head_ref, NULL, repo);
2783 if (error)
2784 goto done;
2785 error = switch_head_ref(head_ref, commit_id, worktree, repo);
2786 if (error)
2787 goto done;
2788 } else {
2789 error = check_linear_ancestry(commit_id,
2790 got_worktree_get_base_commit_id(worktree), 0, repo);
2791 if (error != NULL) {
2792 if (error->code == GOT_ERR_ANCESTRY)
2793 error = got_error(GOT_ERR_BRANCH_MOVED);
2794 goto done;
2796 error = check_same_branch(commit_id, head_ref, NULL, repo);
2797 if (error)
2798 goto done;
2801 if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
2802 commit_id) != 0) {
2803 error = got_worktree_set_base_commit_id(worktree, repo,
2804 commit_id);
2805 if (error)
2806 goto done;
2809 memset(&upa, 0, sizeof(upa));
2810 error = got_worktree_checkout_files(worktree, &paths, repo,
2811 update_progress, &upa, check_cancelled, NULL);
2812 if (error != NULL)
2813 goto done;
2815 if (upa.did_something)
2816 printf("Updated to commit %s\n", commit_id_str);
2817 else
2818 printf("Already up-to-date\n");
2819 print_update_progress_stats(&upa);
2820 done:
2821 free(worktree_path);
2822 TAILQ_FOREACH(pe, &paths, entry)
2823 free((char *)pe->path);
2824 got_pathlist_free(&paths);
2825 free(commit_id);
2826 free(commit_id_str);
2827 return error;
2830 static const struct got_error *
2831 diff_blobs(struct got_object_id *blob_id1, struct got_object_id *blob_id2,
2832 const char *path, int diff_context, int ignore_whitespace,
2833 struct got_repository *repo)
2835 const struct got_error *err = NULL;
2836 struct got_blob_object *blob1 = NULL, *blob2 = NULL;
2838 if (blob_id1) {
2839 err = got_object_open_as_blob(&blob1, repo, blob_id1, 8192);
2840 if (err)
2841 goto done;
2844 err = got_object_open_as_blob(&blob2, repo, blob_id2, 8192);
2845 if (err)
2846 goto done;
2848 while (path[0] == '/')
2849 path++;
2850 err = got_diff_blob(blob1, blob2, path, path, diff_context,
2851 ignore_whitespace, stdout);
2852 done:
2853 if (blob1)
2854 got_object_blob_close(blob1);
2855 got_object_blob_close(blob2);
2856 return err;
2859 static const struct got_error *
2860 diff_trees(struct got_object_id *tree_id1, struct got_object_id *tree_id2,
2861 const char *path, int diff_context, int ignore_whitespace,
2862 struct got_repository *repo)
2864 const struct got_error *err = NULL;
2865 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
2866 struct got_diff_blob_output_unidiff_arg arg;
2868 if (tree_id1) {
2869 err = got_object_open_as_tree(&tree1, repo, tree_id1);
2870 if (err)
2871 goto done;
2874 err = got_object_open_as_tree(&tree2, repo, tree_id2);
2875 if (err)
2876 goto done;
2878 arg.diff_context = diff_context;
2879 arg.ignore_whitespace = ignore_whitespace;
2880 arg.outfile = stdout;
2881 while (path[0] == '/')
2882 path++;
2883 err = got_diff_tree(tree1, tree2, path, path, repo,
2884 got_diff_blob_output_unidiff, &arg, 1);
2885 done:
2886 if (tree1)
2887 got_object_tree_close(tree1);
2888 if (tree2)
2889 got_object_tree_close(tree2);
2890 return err;
2893 static const struct got_error *
2894 get_changed_paths(struct got_pathlist_head *paths,
2895 struct got_commit_object *commit, struct got_repository *repo)
2897 const struct got_error *err = NULL;
2898 struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
2899 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
2900 struct got_object_qid *qid;
2902 qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
2903 if (qid != NULL) {
2904 struct got_commit_object *pcommit;
2905 err = got_object_open_as_commit(&pcommit, repo,
2906 qid->id);
2907 if (err)
2908 return err;
2910 tree_id1 = got_object_commit_get_tree_id(pcommit);
2911 got_object_commit_close(pcommit);
2915 if (tree_id1) {
2916 err = got_object_open_as_tree(&tree1, repo, tree_id1);
2917 if (err)
2918 goto done;
2921 tree_id2 = got_object_commit_get_tree_id(commit);
2922 err = got_object_open_as_tree(&tree2, repo, tree_id2);
2923 if (err)
2924 goto done;
2926 err = got_diff_tree(tree1, tree2, "", "", repo,
2927 got_diff_tree_collect_changed_paths, paths, 0);
2928 done:
2929 if (tree1)
2930 got_object_tree_close(tree1);
2931 if (tree2)
2932 got_object_tree_close(tree2);
2933 return err;
2936 static const struct got_error *
2937 print_patch(struct got_commit_object *commit, struct got_object_id *id,
2938 const char *path, int diff_context, struct got_repository *repo)
2940 const struct got_error *err = NULL;
2941 struct got_commit_object *pcommit = NULL;
2942 char *id_str1 = NULL, *id_str2 = NULL;
2943 struct got_object_id *obj_id1 = NULL, *obj_id2 = NULL;
2944 struct got_object_qid *qid;
2946 qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
2947 if (qid != NULL) {
2948 err = got_object_open_as_commit(&pcommit, repo,
2949 qid->id);
2950 if (err)
2951 return err;
2954 if (path && path[0] != '\0') {
2955 int obj_type;
2956 err = got_object_id_by_path(&obj_id2, repo, id, path);
2957 if (err)
2958 goto done;
2959 err = got_object_id_str(&id_str2, obj_id2);
2960 if (err) {
2961 free(obj_id2);
2962 goto done;
2964 if (pcommit) {
2965 err = got_object_id_by_path(&obj_id1, repo,
2966 qid->id, path);
2967 if (err) {
2968 if (err->code != GOT_ERR_NO_TREE_ENTRY) {
2969 free(obj_id2);
2970 goto done;
2972 } else {
2973 err = got_object_id_str(&id_str1, obj_id1);
2974 if (err) {
2975 free(obj_id2);
2976 goto done;
2980 err = got_object_get_type(&obj_type, repo, obj_id2);
2981 if (err) {
2982 free(obj_id2);
2983 goto done;
2985 printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
2986 switch (obj_type) {
2987 case GOT_OBJ_TYPE_BLOB:
2988 err = diff_blobs(obj_id1, obj_id2, path, diff_context,
2989 0, repo);
2990 break;
2991 case GOT_OBJ_TYPE_TREE:
2992 err = diff_trees(obj_id1, obj_id2, path, diff_context,
2993 0, repo);
2994 break;
2995 default:
2996 err = got_error(GOT_ERR_OBJ_TYPE);
2997 break;
2999 free(obj_id1);
3000 free(obj_id2);
3001 } else {
3002 obj_id2 = got_object_commit_get_tree_id(commit);
3003 err = got_object_id_str(&id_str2, obj_id2);
3004 if (err)
3005 goto done;
3006 obj_id1 = got_object_commit_get_tree_id(pcommit);
3007 err = got_object_id_str(&id_str1, obj_id1);
3008 if (err)
3009 goto done;
3010 printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
3011 err = diff_trees(obj_id1, obj_id2, "", diff_context, 0, repo);
3013 done:
3014 free(id_str1);
3015 free(id_str2);
3016 if (pcommit)
3017 got_object_commit_close(pcommit);
3018 return err;
3021 static char *
3022 get_datestr(time_t *time, char *datebuf)
3024 struct tm mytm, *tm;
3025 char *p, *s;
3027 tm = gmtime_r(time, &mytm);
3028 if (tm == NULL)
3029 return NULL;
3030 s = asctime_r(tm, datebuf);
3031 if (s == NULL)
3032 return NULL;
3033 p = strchr(s, '\n');
3034 if (p)
3035 *p = '\0';
3036 return s;
3039 static const struct got_error *
3040 match_logmsg(int *have_match, struct got_object_id *id,
3041 struct got_commit_object *commit, regex_t *regex)
3043 const struct got_error *err = NULL;
3044 regmatch_t regmatch;
3045 char *id_str = NULL, *logmsg = NULL;
3047 *have_match = 0;
3049 err = got_object_id_str(&id_str, id);
3050 if (err)
3051 return err;
3053 err = got_object_commit_get_logmsg(&logmsg, commit);
3054 if (err)
3055 goto done;
3057 if (regexec(regex, logmsg, 1, &regmatch, 0) == 0)
3058 *have_match = 1;
3059 done:
3060 free(id_str);
3061 free(logmsg);
3062 return err;
3065 static void
3066 match_changed_paths(int *have_match, struct got_pathlist_head *changed_paths,
3067 regex_t *regex)
3069 regmatch_t regmatch;
3070 struct got_pathlist_entry *pe;
3072 *have_match = 0;
3074 TAILQ_FOREACH(pe, changed_paths, entry) {
3075 if (regexec(regex, pe->path, 1, &regmatch, 0) == 0) {
3076 *have_match = 1;
3077 break;
3082 #define GOT_COMMIT_SEP_STR "-----------------------------------------------\n"
3084 static const struct got_error *
3085 print_commit(struct got_commit_object *commit, struct got_object_id *id,
3086 struct got_repository *repo, const char *path,
3087 struct got_pathlist_head *changed_paths, int show_patch,
3088 int diff_context, struct got_reflist_head *refs)
3090 const struct got_error *err = NULL;
3091 char *id_str, *datestr, *logmsg0, *logmsg, *line;
3092 char datebuf[26];
3093 time_t committer_time;
3094 const char *author, *committer;
3095 char *refs_str = NULL;
3096 struct got_reflist_entry *re;
3098 SIMPLEQ_FOREACH(re, refs, entry) {
3099 char *s;
3100 const char *name;
3101 struct got_tag_object *tag = NULL;
3102 int cmp;
3104 name = got_ref_get_name(re->ref);
3105 if (strcmp(name, GOT_REF_HEAD) == 0)
3106 continue;
3107 if (strncmp(name, "refs/", 5) == 0)
3108 name += 5;
3109 if (strncmp(name, "got/", 4) == 0)
3110 continue;
3111 if (strncmp(name, "heads/", 6) == 0)
3112 name += 6;
3113 if (strncmp(name, "remotes/", 8) == 0) {
3114 name += 8;
3115 s = strstr(name, "/" GOT_REF_HEAD);
3116 if (s != NULL && s[strlen(s)] == '\0')
3117 continue;
3119 if (strncmp(name, "tags/", 5) == 0) {
3120 err = got_object_open_as_tag(&tag, repo, re->id);
3121 if (err) {
3122 if (err->code != GOT_ERR_OBJ_TYPE)
3123 return err;
3124 /* Ref points at something other than a tag. */
3125 err = NULL;
3126 tag = NULL;
3129 cmp = got_object_id_cmp(tag ?
3130 got_object_tag_get_object_id(tag) : re->id, id);
3131 if (tag)
3132 got_object_tag_close(tag);
3133 if (cmp != 0)
3134 continue;
3135 s = refs_str;
3136 if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
3137 name) == -1) {
3138 err = got_error_from_errno("asprintf");
3139 free(s);
3140 return err;
3142 free(s);
3144 err = got_object_id_str(&id_str, id);
3145 if (err)
3146 return err;
3148 printf(GOT_COMMIT_SEP_STR);
3149 printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
3150 refs_str ? refs_str : "", refs_str ? ")" : "");
3151 free(id_str);
3152 id_str = NULL;
3153 free(refs_str);
3154 refs_str = NULL;
3155 printf("from: %s\n", got_object_commit_get_author(commit));
3156 committer_time = got_object_commit_get_committer_time(commit);
3157 datestr = get_datestr(&committer_time, datebuf);
3158 if (datestr)
3159 printf("date: %s UTC\n", datestr);
3160 author = got_object_commit_get_author(commit);
3161 committer = got_object_commit_get_committer(commit);
3162 if (strcmp(author, committer) != 0)
3163 printf("via: %s\n", committer);
3164 if (got_object_commit_get_nparents(commit) > 1) {
3165 const struct got_object_id_queue *parent_ids;
3166 struct got_object_qid *qid;
3167 int n = 1;
3168 parent_ids = got_object_commit_get_parent_ids(commit);
3169 SIMPLEQ_FOREACH(qid, parent_ids, entry) {
3170 err = got_object_id_str(&id_str, qid->id);
3171 if (err)
3172 return err;
3173 printf("parent %d: %s\n", n++, id_str);
3174 free(id_str);
3178 err = got_object_commit_get_logmsg(&logmsg0, commit);
3179 if (err)
3180 return err;
3182 logmsg = logmsg0;
3183 do {
3184 line = strsep(&logmsg, "\n");
3185 if (line)
3186 printf(" %s\n", line);
3187 } while (line);
3188 free(logmsg0);
3190 if (changed_paths) {
3191 struct got_pathlist_entry *pe;
3192 TAILQ_FOREACH(pe, changed_paths, entry) {
3193 struct got_diff_changed_path *cp = pe->data;
3194 printf(" %c %s\n", cp->status, pe->path);
3196 printf("\n");
3198 if (show_patch) {
3199 err = print_patch(commit, id, path, diff_context, repo);
3200 if (err == 0)
3201 printf("\n");
3204 if (fflush(stdout) != 0 && err == NULL)
3205 err = got_error_from_errno("fflush");
3206 return err;
3209 static const struct got_error *
3210 print_commits(struct got_object_id *root_id, struct got_object_id *end_id,
3211 struct got_repository *repo, const char *path, int show_changed_paths,
3212 int show_patch, const char *search_pattern, int diff_context, int limit,
3213 int log_branches, int reverse_display_order, struct got_reflist_head *refs)
3215 const struct got_error *err;
3216 struct got_commit_graph *graph;
3217 regex_t regex;
3218 int have_match;
3219 struct got_object_id_queue reversed_commits;
3220 struct got_object_qid *qid;
3221 struct got_commit_object *commit;
3222 struct got_pathlist_head changed_paths;
3223 struct got_pathlist_entry *pe;
3225 SIMPLEQ_INIT(&reversed_commits);
3226 TAILQ_INIT(&changed_paths);
3228 if (search_pattern && regcomp(&regex, search_pattern,
3229 REG_EXTENDED | REG_NOSUB | REG_NEWLINE))
3230 return got_error_msg(GOT_ERR_REGEX, search_pattern);
3232 err = got_commit_graph_open(&graph, path, !log_branches);
3233 if (err)
3234 return err;
3235 err = got_commit_graph_iter_start(graph, root_id, repo,
3236 check_cancelled, NULL);
3237 if (err)
3238 goto done;
3239 for (;;) {
3240 struct got_object_id *id;
3242 if (sigint_received || sigpipe_received)
3243 break;
3245 err = got_commit_graph_iter_next(&id, graph, repo,
3246 check_cancelled, NULL);
3247 if (err) {
3248 if (err->code == GOT_ERR_ITER_COMPLETED)
3249 err = NULL;
3250 break;
3252 if (id == NULL)
3253 break;
3255 err = got_object_open_as_commit(&commit, repo, id);
3256 if (err)
3257 break;
3259 if (show_changed_paths) {
3260 err = get_changed_paths(&changed_paths, commit, repo);
3261 if (err)
3262 break;
3265 if (search_pattern) {
3266 err = match_logmsg(&have_match, id, commit, &regex);
3267 if (err) {
3268 got_object_commit_close(commit);
3269 break;
3271 if (have_match == 0 && show_changed_paths)
3272 match_changed_paths(&have_match,
3273 &changed_paths, &regex);
3274 if (have_match == 0) {
3275 got_object_commit_close(commit);
3276 TAILQ_FOREACH(pe, &changed_paths, entry) {
3277 free((char *)pe->path);
3278 free(pe->data);
3280 got_pathlist_free(&changed_paths);
3281 continue;
3285 if (reverse_display_order) {
3286 err = got_object_qid_alloc(&qid, id);
3287 if (err)
3288 break;
3289 SIMPLEQ_INSERT_HEAD(&reversed_commits, qid, entry);
3290 got_object_commit_close(commit);
3291 } else {
3292 err = print_commit(commit, id, repo, path,
3293 show_changed_paths ? &changed_paths : NULL,
3294 show_patch, diff_context, refs);
3295 got_object_commit_close(commit);
3296 if (err)
3297 break;
3299 if ((limit && --limit == 0) ||
3300 (end_id && got_object_id_cmp(id, end_id) == 0))
3301 break;
3303 TAILQ_FOREACH(pe, &changed_paths, entry) {
3304 free((char *)pe->path);
3305 free(pe->data);
3307 got_pathlist_free(&changed_paths);
3309 if (reverse_display_order) {
3310 SIMPLEQ_FOREACH(qid, &reversed_commits, entry) {
3311 err = got_object_open_as_commit(&commit, repo, qid->id);
3312 if (err)
3313 break;
3314 err = print_commit(commit, qid->id, repo, path,
3315 show_changed_paths ? &changed_paths : NULL,
3316 show_patch, diff_context, refs);
3317 got_object_commit_close(commit);
3318 if (err)
3319 break;
3322 done:
3323 while (!SIMPLEQ_EMPTY(&reversed_commits)) {
3324 qid = SIMPLEQ_FIRST(&reversed_commits);
3325 SIMPLEQ_REMOVE_HEAD(&reversed_commits, entry);
3326 got_object_qid_free(qid);
3328 TAILQ_FOREACH(pe, &changed_paths, entry) {
3329 free((char *)pe->path);
3330 free(pe->data);
3332 got_pathlist_free(&changed_paths);
3333 if (search_pattern)
3334 regfree(&regex);
3335 got_commit_graph_close(graph);
3336 return err;
3339 __dead static void
3340 usage_log(void)
3342 fprintf(stderr, "usage: %s log [-b] [-c commit] [-C number] [ -l N ] "
3343 "[-p] [-P] [-x commit] [-s search-pattern] [-r repository-path] "
3344 "[-R] [path]\n", getprogname());
3345 exit(1);
3348 static int
3349 get_default_log_limit(void)
3351 const char *got_default_log_limit;
3352 long long n;
3353 const char *errstr;
3355 got_default_log_limit = getenv("GOT_LOG_DEFAULT_LIMIT");
3356 if (got_default_log_limit == NULL)
3357 return 0;
3358 n = strtonum(got_default_log_limit, 0, INT_MAX, &errstr);
3359 if (errstr != NULL)
3360 return 0;
3361 return n;
3364 static const struct got_error *
3365 resolve_commit_arg(struct got_object_id **id, const char *commit_arg,
3366 struct got_repository *repo)
3368 const struct got_error *err = NULL;
3369 struct got_reference *ref;
3371 *id = NULL;
3373 err = got_ref_open(&ref, repo, commit_arg, 0);
3374 if (err == NULL) {
3375 int obj_type;
3376 err = got_ref_resolve(id, repo, ref);
3377 got_ref_close(ref);
3378 if (err)
3379 return err;
3380 err = got_object_get_type(&obj_type, repo, *id);
3381 if (err)
3382 return err;
3383 if (obj_type == GOT_OBJ_TYPE_TAG) {
3384 struct got_tag_object *tag;
3385 err = got_object_open_as_tag(&tag, repo, *id);
3386 if (err)
3387 return err;
3388 if (got_object_tag_get_object_type(tag) !=
3389 GOT_OBJ_TYPE_COMMIT) {
3390 got_object_tag_close(tag);
3391 return got_error(GOT_ERR_OBJ_TYPE);
3393 free(*id);
3394 *id = got_object_id_dup(
3395 got_object_tag_get_object_id(tag));
3396 if (*id == NULL)
3397 err = got_error_from_errno(
3398 "got_object_id_dup");
3399 got_object_tag_close(tag);
3400 if (err)
3401 return err;
3402 } else if (obj_type != GOT_OBJ_TYPE_COMMIT)
3403 return got_error(GOT_ERR_OBJ_TYPE);
3404 } else {
3405 err = got_repo_match_object_id_prefix(id, commit_arg,
3406 GOT_OBJ_TYPE_COMMIT, repo);
3409 return err;
3412 static const struct got_error *
3413 cmd_log(int argc, char *argv[])
3415 const struct got_error *error;
3416 struct got_repository *repo = NULL;
3417 struct got_worktree *worktree = NULL;
3418 struct got_object_id *start_id = NULL, *end_id = NULL;
3419 char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
3420 const char *start_commit = NULL, *end_commit = NULL;
3421 const char *search_pattern = NULL;
3422 int diff_context = -1, ch;
3423 int show_changed_paths = 0, show_patch = 0, limit = 0, log_branches = 0;
3424 int reverse_display_order = 0;
3425 const char *errstr;
3426 struct got_reflist_head refs;
3428 SIMPLEQ_INIT(&refs);
3430 #ifndef PROFILE
3431 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
3432 NULL)
3433 == -1)
3434 err(1, "pledge");
3435 #endif
3437 limit = get_default_log_limit();
3439 while ((ch = getopt(argc, argv, "bpPc:C:l:r:Rs:x:")) != -1) {
3440 switch (ch) {
3441 case 'p':
3442 show_patch = 1;
3443 break;
3444 case 'P':
3445 show_changed_paths = 1;
3446 break;
3447 case 'c':
3448 start_commit = optarg;
3449 break;
3450 case 'C':
3451 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
3452 &errstr);
3453 if (errstr != NULL)
3454 err(1, "-C option %s", errstr);
3455 break;
3456 case 'l':
3457 limit = strtonum(optarg, 0, INT_MAX, &errstr);
3458 if (errstr != NULL)
3459 err(1, "-l option %s", errstr);
3460 break;
3461 case 'b':
3462 log_branches = 1;
3463 break;
3464 case 'r':
3465 repo_path = realpath(optarg, NULL);
3466 if (repo_path == NULL)
3467 return got_error_from_errno2("realpath",
3468 optarg);
3469 got_path_strip_trailing_slashes(repo_path);
3470 break;
3471 case 'R':
3472 reverse_display_order = 1;
3473 break;
3474 case 's':
3475 search_pattern = optarg;
3476 break;
3477 case 'x':
3478 end_commit = optarg;
3479 break;
3480 default:
3481 usage_log();
3482 /* NOTREACHED */
3486 argc -= optind;
3487 argv += optind;
3489 if (diff_context == -1)
3490 diff_context = 3;
3491 else if (!show_patch)
3492 errx(1, "-C reguires -p");
3494 cwd = getcwd(NULL, 0);
3495 if (cwd == NULL) {
3496 error = got_error_from_errno("getcwd");
3497 goto done;
3500 if (repo_path == NULL) {
3501 error = got_worktree_open(&worktree, cwd);
3502 if (error && error->code != GOT_ERR_NOT_WORKTREE)
3503 goto done;
3504 error = NULL;
3507 if (argc == 0) {
3508 path = strdup("");
3509 if (path == NULL) {
3510 error = got_error_from_errno("strdup");
3511 goto done;
3513 } else if (argc == 1) {
3514 if (worktree) {
3515 error = got_worktree_resolve_path(&path, worktree,
3516 argv[0]);
3517 if (error)
3518 goto done;
3519 } else {
3520 path = strdup(argv[0]);
3521 if (path == NULL) {
3522 error = got_error_from_errno("strdup");
3523 goto done;
3526 } else
3527 usage_log();
3529 if (repo_path == NULL) {
3530 repo_path = worktree ?
3531 strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
3533 if (repo_path == NULL) {
3534 error = got_error_from_errno("strdup");
3535 goto done;
3538 error = got_repo_open(&repo, repo_path, NULL);
3539 if (error != NULL)
3540 goto done;
3542 error = apply_unveil(got_repo_get_path(repo), 1,
3543 worktree ? got_worktree_get_root_path(worktree) : NULL);
3544 if (error)
3545 goto done;
3547 if (start_commit == NULL) {
3548 struct got_reference *head_ref;
3549 struct got_commit_object *commit = NULL;
3550 error = got_ref_open(&head_ref, repo,
3551 worktree ? got_worktree_get_head_ref_name(worktree)
3552 : GOT_REF_HEAD, 0);
3553 if (error != NULL)
3554 goto done;
3555 error = got_ref_resolve(&start_id, repo, head_ref);
3556 got_ref_close(head_ref);
3557 if (error != NULL)
3558 goto done;
3559 error = got_object_open_as_commit(&commit, repo,
3560 start_id);
3561 if (error != NULL)
3562 goto done;
3563 got_object_commit_close(commit);
3564 } else {
3565 error = resolve_commit_arg(&start_id, start_commit, repo);
3566 if (error != NULL)
3567 goto done;
3569 if (end_commit != NULL) {
3570 error = resolve_commit_arg(&end_id, end_commit, repo);
3571 if (error != NULL)
3572 goto done;
3575 if (worktree) {
3576 const char *prefix = got_worktree_get_path_prefix(worktree);
3577 char *p;
3578 if (asprintf(&p, "%s%s%s", prefix,
3579 (strcmp(prefix, "/") != 0) ? "/" : "", path) == -1) {
3580 error = got_error_from_errno("asprintf");
3581 goto done;
3583 error = got_repo_map_path(&in_repo_path, repo, p, 0);
3584 free(p);
3585 } else
3586 error = got_repo_map_path(&in_repo_path, repo, path, 1);
3587 if (error != NULL)
3588 goto done;
3589 if (in_repo_path) {
3590 free(path);
3591 path = in_repo_path;
3594 error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
3595 if (error)
3596 goto done;
3598 error = print_commits(start_id, end_id, repo, path, show_changed_paths,
3599 show_patch, search_pattern, diff_context, limit, log_branches,
3600 reverse_display_order, &refs);
3601 done:
3602 free(path);
3603 free(repo_path);
3604 free(cwd);
3605 if (worktree)
3606 got_worktree_close(worktree);
3607 if (repo) {
3608 const struct got_error *repo_error;
3609 repo_error = got_repo_close(repo);
3610 if (error == NULL)
3611 error = repo_error;
3613 got_ref_list_free(&refs);
3614 return error;
3617 __dead static void
3618 usage_diff(void)
3620 fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] [-s] "
3621 "[-w] [object1 object2 | path]\n", getprogname());
3622 exit(1);
3625 struct print_diff_arg {
3626 struct got_repository *repo;
3627 struct got_worktree *worktree;
3628 int diff_context;
3629 const char *id_str;
3630 int header_shown;
3631 int diff_staged;
3632 int ignore_whitespace;
3636 * Create a file which contains the target path of a symlink so we can feed
3637 * it as content to the diff engine.
3639 static const struct got_error *
3640 get_symlink_target_file(int *fd, int dirfd, const char *de_name,
3641 const char *abspath)
3643 const struct got_error *err = NULL;
3644 char target_path[PATH_MAX];
3645 ssize_t target_len, outlen;
3647 *fd = -1;
3649 if (dirfd != -1) {
3650 target_len = readlinkat(dirfd, de_name, target_path, PATH_MAX);
3651 if (target_len == -1)
3652 return got_error_from_errno2("readlinkat", abspath);
3653 } else {
3654 target_len = readlink(abspath, target_path, PATH_MAX);
3655 if (target_len == -1)
3656 return got_error_from_errno2("readlink", abspath);
3659 *fd = got_opentempfd();
3660 if (*fd == -1)
3661 return got_error_from_errno("got_opentempfd");
3663 outlen = write(*fd, target_path, target_len);
3664 if (outlen == -1) {
3665 err = got_error_from_errno("got_opentempfd");
3666 goto done;
3669 if (lseek(*fd, 0, SEEK_SET) == -1) {
3670 err = got_error_from_errno2("lseek", abspath);
3671 goto done;
3673 done:
3674 if (err) {
3675 close(*fd);
3676 *fd = -1;
3678 return err;
3681 static const struct got_error *
3682 print_diff(void *arg, unsigned char status, unsigned char staged_status,
3683 const char *path, struct got_object_id *blob_id,
3684 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
3685 int dirfd, const char *de_name)
3687 struct print_diff_arg *a = arg;
3688 const struct got_error *err = NULL;
3689 struct got_blob_object *blob1 = NULL;
3690 int fd = -1;
3691 FILE *f2 = NULL;
3692 char *abspath = NULL, *label1 = NULL;
3693 struct stat sb;
3695 if (a->diff_staged) {
3696 if (staged_status != GOT_STATUS_MODIFY &&
3697 staged_status != GOT_STATUS_ADD &&
3698 staged_status != GOT_STATUS_DELETE)
3699 return NULL;
3700 } else {
3701 if (staged_status == GOT_STATUS_DELETE)
3702 return NULL;
3703 if (status == GOT_STATUS_NONEXISTENT)
3704 return got_error_set_errno(ENOENT, path);
3705 if (status != GOT_STATUS_MODIFY &&
3706 status != GOT_STATUS_ADD &&
3707 status != GOT_STATUS_DELETE &&
3708 status != GOT_STATUS_CONFLICT)
3709 return NULL;
3712 if (!a->header_shown) {
3713 printf("diff %s %s%s\n", a->id_str,
3714 got_worktree_get_root_path(a->worktree),
3715 a->diff_staged ? " (staged changes)" : "");
3716 a->header_shown = 1;
3719 if (a->diff_staged) {
3720 const char *label1 = NULL, *label2 = NULL;
3721 switch (staged_status) {
3722 case GOT_STATUS_MODIFY:
3723 label1 = path;
3724 label2 = path;
3725 break;
3726 case GOT_STATUS_ADD:
3727 label2 = path;
3728 break;
3729 case GOT_STATUS_DELETE:
3730 label1 = path;
3731 break;
3732 default:
3733 return got_error(GOT_ERR_FILE_STATUS);
3735 return got_diff_objects_as_blobs(blob_id, staged_blob_id,
3736 label1, label2, a->diff_context, a->ignore_whitespace,
3737 a->repo, stdout);
3740 if (staged_status == GOT_STATUS_ADD ||
3741 staged_status == GOT_STATUS_MODIFY) {
3742 char *id_str;
3743 err = got_object_open_as_blob(&blob1, a->repo, staged_blob_id,
3744 8192);
3745 if (err)
3746 goto done;
3747 err = got_object_id_str(&id_str, staged_blob_id);
3748 if (err)
3749 goto done;
3750 if (asprintf(&label1, "%s (staged)", id_str) == -1) {
3751 err = got_error_from_errno("asprintf");
3752 free(id_str);
3753 goto done;
3755 free(id_str);
3756 } else if (status != GOT_STATUS_ADD) {
3757 err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
3758 if (err)
3759 goto done;
3762 if (status != GOT_STATUS_DELETE) {
3763 if (asprintf(&abspath, "%s/%s",
3764 got_worktree_get_root_path(a->worktree), path) == -1) {
3765 err = got_error_from_errno("asprintf");
3766 goto done;
3769 if (dirfd != -1) {
3770 fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
3771 if (fd == -1) {
3772 if (errno != ELOOP) {
3773 err = got_error_from_errno2("openat",
3774 abspath);
3775 goto done;
3777 err = get_symlink_target_file(&fd, dirfd,
3778 de_name, abspath);
3779 if (err)
3780 goto done;
3782 } else {
3783 fd = open(abspath, O_RDONLY | O_NOFOLLOW);
3784 if (fd == -1) {
3785 if (errno != ELOOP) {
3786 err = got_error_from_errno2("open",
3787 abspath);
3788 goto done;
3790 err = get_symlink_target_file(&fd, dirfd,
3791 de_name, abspath);
3792 if (err)
3793 goto done;
3796 if (fstat(fd, &sb) == -1) {
3797 err = got_error_from_errno2("fstat", abspath);
3798 goto done;
3800 f2 = fdopen(fd, "r");
3801 if (f2 == NULL) {
3802 err = got_error_from_errno2("fdopen", abspath);
3803 goto done;
3805 fd = -1;
3806 } else
3807 sb.st_size = 0;
3809 err = got_diff_blob_file(blob1, label1, f2, sb.st_size, path,
3810 a->diff_context, a->ignore_whitespace, stdout);
3811 done:
3812 if (blob1)
3813 got_object_blob_close(blob1);
3814 if (f2 && fclose(f2) == EOF && err == NULL)
3815 err = got_error_from_errno("fclose");
3816 if (fd != -1 && close(fd) == -1 && err == NULL)
3817 err = got_error_from_errno("close");
3818 free(abspath);
3819 return err;
3822 static const struct got_error *
3823 cmd_diff(int argc, char *argv[])
3825 const struct got_error *error;
3826 struct got_repository *repo = NULL;
3827 struct got_worktree *worktree = NULL;
3828 char *cwd = NULL, *repo_path = NULL;
3829 struct got_object_id *id1 = NULL, *id2 = NULL;
3830 const char *id_str1 = NULL, *id_str2 = NULL;
3831 char *label1 = NULL, *label2 = NULL;
3832 int type1, type2;
3833 int diff_context = 3, diff_staged = 0, ignore_whitespace = 0, ch;
3834 const char *errstr;
3835 char *path = NULL;
3837 #ifndef PROFILE
3838 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
3839 NULL) == -1)
3840 err(1, "pledge");
3841 #endif
3843 while ((ch = getopt(argc, argv, "C:r:sw")) != -1) {
3844 switch (ch) {
3845 case 'C':
3846 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
3847 &errstr);
3848 if (errstr != NULL)
3849 err(1, "-C option %s", errstr);
3850 break;
3851 case 'r':
3852 repo_path = realpath(optarg, NULL);
3853 if (repo_path == NULL)
3854 return got_error_from_errno2("realpath",
3855 optarg);
3856 got_path_strip_trailing_slashes(repo_path);
3857 break;
3858 case 's':
3859 diff_staged = 1;
3860 break;
3861 case 'w':
3862 ignore_whitespace = 1;
3863 break;
3864 default:
3865 usage_diff();
3866 /* NOTREACHED */
3870 argc -= optind;
3871 argv += optind;
3873 cwd = getcwd(NULL, 0);
3874 if (cwd == NULL) {
3875 error = got_error_from_errno("getcwd");
3876 goto done;
3878 if (argc <= 1) {
3879 if (repo_path)
3880 errx(1,
3881 "-r option can't be used when diffing a work tree");
3882 error = got_worktree_open(&worktree, cwd);
3883 if (error) {
3884 if (error->code == GOT_ERR_NOT_WORKTREE)
3885 error = wrap_not_worktree_error(error, "diff",
3886 cwd);
3887 goto done;
3889 repo_path = strdup(got_worktree_get_repo_path(worktree));
3890 if (repo_path == NULL) {
3891 error = got_error_from_errno("strdup");
3892 goto done;
3894 if (argc == 1) {
3895 error = got_worktree_resolve_path(&path, worktree,
3896 argv[0]);
3897 if (error)
3898 goto done;
3899 } else {
3900 path = strdup("");
3901 if (path == NULL) {
3902 error = got_error_from_errno("strdup");
3903 goto done;
3906 } else if (argc == 2) {
3907 if (diff_staged)
3908 errx(1, "-s option can't be used when diffing "
3909 "objects in repository");
3910 id_str1 = argv[0];
3911 id_str2 = argv[1];
3912 if (repo_path == NULL) {
3913 error = got_worktree_open(&worktree, cwd);
3914 if (error && error->code != GOT_ERR_NOT_WORKTREE)
3915 goto done;
3916 if (worktree) {
3917 repo_path = strdup(
3918 got_worktree_get_repo_path(worktree));
3919 if (repo_path == NULL) {
3920 error = got_error_from_errno("strdup");
3921 goto done;
3923 } else {
3924 repo_path = strdup(cwd);
3925 if (repo_path == NULL) {
3926 error = got_error_from_errno("strdup");
3927 goto done;
3931 } else
3932 usage_diff();
3934 error = got_repo_open(&repo, repo_path, NULL);
3935 free(repo_path);
3936 if (error != NULL)
3937 goto done;
3939 error = apply_unveil(got_repo_get_path(repo), 1,
3940 worktree ? got_worktree_get_root_path(worktree) : NULL);
3941 if (error)
3942 goto done;
3944 if (argc <= 1) {
3945 struct print_diff_arg arg;
3946 struct got_pathlist_head paths;
3947 char *id_str;
3949 TAILQ_INIT(&paths);
3951 error = got_object_id_str(&id_str,
3952 got_worktree_get_base_commit_id(worktree));
3953 if (error)
3954 goto done;
3955 arg.repo = repo;
3956 arg.worktree = worktree;
3957 arg.diff_context = diff_context;
3958 arg.id_str = id_str;
3959 arg.header_shown = 0;
3960 arg.diff_staged = diff_staged;
3961 arg.ignore_whitespace = ignore_whitespace;
3963 error = got_pathlist_append(&paths, path, NULL);
3964 if (error)
3965 goto done;
3967 error = got_worktree_status(worktree, &paths, repo, print_diff,
3968 &arg, check_cancelled, NULL);
3969 free(id_str);
3970 got_pathlist_free(&paths);
3971 goto done;
3974 error = got_repo_match_object_id(&id1, &label1, id_str1,
3975 GOT_OBJ_TYPE_ANY, 1, repo);
3976 if (error)
3977 goto done;
3979 error = got_repo_match_object_id(&id2, &label2, id_str2,
3980 GOT_OBJ_TYPE_ANY, 1, repo);
3981 if (error)
3982 goto done;
3984 error = got_object_get_type(&type1, repo, id1);
3985 if (error)
3986 goto done;
3988 error = got_object_get_type(&type2, repo, id2);
3989 if (error)
3990 goto done;
3992 if (type1 != type2) {
3993 error = got_error(GOT_ERR_OBJ_TYPE);
3994 goto done;
3997 switch (type1) {
3998 case GOT_OBJ_TYPE_BLOB:
3999 error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
4000 diff_context, ignore_whitespace, repo, stdout);
4001 break;
4002 case GOT_OBJ_TYPE_TREE:
4003 error = got_diff_objects_as_trees(id1, id2, "", "",
4004 diff_context, ignore_whitespace, repo, stdout);
4005 break;
4006 case GOT_OBJ_TYPE_COMMIT:
4007 printf("diff %s %s\n", label1, label2);
4008 error = got_diff_objects_as_commits(id1, id2, diff_context,
4009 ignore_whitespace, repo, stdout);
4010 break;
4011 default:
4012 error = got_error(GOT_ERR_OBJ_TYPE);
4014 done:
4015 free(label1);
4016 free(label2);
4017 free(id1);
4018 free(id2);
4019 free(path);
4020 if (worktree)
4021 got_worktree_close(worktree);
4022 if (repo) {
4023 const struct got_error *repo_error;
4024 repo_error = got_repo_close(repo);
4025 if (error == NULL)
4026 error = repo_error;
4028 return error;
4031 __dead static void
4032 usage_blame(void)
4034 fprintf(stderr,
4035 "usage: %s blame [-c commit] [-r repository-path] path\n",
4036 getprogname());
4037 exit(1);
4040 struct blame_line {
4041 int annotated;
4042 char *id_str;
4043 char *committer;
4044 char datebuf[11]; /* YYYY-MM-DD + NUL */
4047 struct blame_cb_args {
4048 struct blame_line *lines;
4049 int nlines;
4050 int nlines_prec;
4051 int lineno_cur;
4052 off_t *line_offsets;
4053 FILE *f;
4054 struct got_repository *repo;
4057 static const struct got_error *
4058 blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
4060 const struct got_error *err = NULL;
4061 struct blame_cb_args *a = arg;
4062 struct blame_line *bline;
4063 char *line = NULL;
4064 size_t linesize = 0;
4065 struct got_commit_object *commit = NULL;
4066 off_t offset;
4067 struct tm tm;
4068 time_t committer_time;
4070 if (nlines != a->nlines ||
4071 (lineno != -1 && lineno < 1) || lineno > a->nlines)
4072 return got_error(GOT_ERR_RANGE);
4074 if (sigint_received)
4075 return got_error(GOT_ERR_ITER_COMPLETED);
4077 if (lineno == -1)
4078 return NULL; /* no change in this commit */
4080 /* Annotate this line. */
4081 bline = &a->lines[lineno - 1];
4082 if (bline->annotated)
4083 return NULL;
4084 err = got_object_id_str(&bline->id_str, id);
4085 if (err)
4086 return err;
4088 err = got_object_open_as_commit(&commit, a->repo, id);
4089 if (err)
4090 goto done;
4092 bline->committer = strdup(got_object_commit_get_committer(commit));
4093 if (bline->committer == NULL) {
4094 err = got_error_from_errno("strdup");
4095 goto done;
4098 committer_time = got_object_commit_get_committer_time(commit);
4099 if (localtime_r(&committer_time, &tm) == NULL)
4100 return got_error_from_errno("localtime_r");
4101 if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G-%m-%d",
4102 &tm) >= sizeof(bline->datebuf)) {
4103 err = got_error(GOT_ERR_NO_SPACE);
4104 goto done;
4106 bline->annotated = 1;
4108 /* Print lines annotated so far. */
4109 bline = &a->lines[a->lineno_cur - 1];
4110 if (!bline->annotated)
4111 goto done;
4113 offset = a->line_offsets[a->lineno_cur - 1];
4114 if (fseeko(a->f, offset, SEEK_SET) == -1) {
4115 err = got_error_from_errno("fseeko");
4116 goto done;
4119 while (bline->annotated) {
4120 char *smallerthan, *at, *nl, *committer;
4121 size_t len;
4123 if (getline(&line, &linesize, a->f) == -1) {
4124 if (ferror(a->f))
4125 err = got_error_from_errno("getline");
4126 break;
4129 committer = bline->committer;
4130 smallerthan = strchr(committer, '<');
4131 if (smallerthan && smallerthan[1] != '\0')
4132 committer = smallerthan + 1;
4133 at = strchr(committer, '@');
4134 if (at)
4135 *at = '\0';
4136 len = strlen(committer);
4137 if (len >= 9)
4138 committer[8] = '\0';
4140 nl = strchr(line, '\n');
4141 if (nl)
4142 *nl = '\0';
4143 printf("%.*d) %.8s %s %-8s %s\n", a->nlines_prec, a->lineno_cur,
4144 bline->id_str, bline->datebuf, committer, line);
4146 a->lineno_cur++;
4147 bline = &a->lines[a->lineno_cur - 1];
4149 done:
4150 if (commit)
4151 got_object_commit_close(commit);
4152 free(line);
4153 return err;
4156 static const struct got_error *
4157 cmd_blame(int argc, char *argv[])
4159 const struct got_error *error;
4160 struct got_repository *repo = NULL;
4161 struct got_worktree *worktree = NULL;
4162 char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
4163 char *link_target = NULL;
4164 struct got_object_id *obj_id = NULL;
4165 struct got_object_id *commit_id = NULL;
4166 struct got_blob_object *blob = NULL;
4167 char *commit_id_str = NULL;
4168 struct blame_cb_args bca;
4169 int ch, obj_type, i;
4170 size_t filesize;
4172 memset(&bca, 0, sizeof(bca));
4174 #ifndef PROFILE
4175 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4176 NULL) == -1)
4177 err(1, "pledge");
4178 #endif
4180 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
4181 switch (ch) {
4182 case 'c':
4183 commit_id_str = optarg;
4184 break;
4185 case 'r':
4186 repo_path = realpath(optarg, NULL);
4187 if (repo_path == NULL)
4188 return got_error_from_errno2("realpath",
4189 optarg);
4190 got_path_strip_trailing_slashes(repo_path);
4191 break;
4192 default:
4193 usage_blame();
4194 /* NOTREACHED */
4198 argc -= optind;
4199 argv += optind;
4201 if (argc == 1)
4202 path = argv[0];
4203 else
4204 usage_blame();
4206 cwd = getcwd(NULL, 0);
4207 if (cwd == NULL) {
4208 error = got_error_from_errno("getcwd");
4209 goto done;
4211 if (repo_path == NULL) {
4212 error = got_worktree_open(&worktree, cwd);
4213 if (error && error->code != GOT_ERR_NOT_WORKTREE)
4214 goto done;
4215 else
4216 error = NULL;
4217 if (worktree) {
4218 repo_path =
4219 strdup(got_worktree_get_repo_path(worktree));
4220 if (repo_path == NULL) {
4221 error = got_error_from_errno("strdup");
4222 if (error)
4223 goto done;
4225 } else {
4226 repo_path = strdup(cwd);
4227 if (repo_path == NULL) {
4228 error = got_error_from_errno("strdup");
4229 goto done;
4234 error = got_repo_open(&repo, repo_path, NULL);
4235 if (error != NULL)
4236 goto done;
4238 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
4239 if (error)
4240 goto done;
4242 if (worktree) {
4243 const char *prefix = got_worktree_get_path_prefix(worktree);
4244 char *p, *worktree_subdir = cwd +
4245 strlen(got_worktree_get_root_path(worktree));
4246 if (asprintf(&p, "%s%s%s%s%s",
4247 prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
4248 worktree_subdir, worktree_subdir[0] ? "/" : "",
4249 path) == -1) {
4250 error = got_error_from_errno("asprintf");
4251 goto done;
4253 error = got_repo_map_path(&in_repo_path, repo, p, 0);
4254 free(p);
4255 } else {
4256 error = got_repo_map_path(&in_repo_path, repo, path, 1);
4258 if (error)
4259 goto done;
4261 if (commit_id_str == NULL) {
4262 struct got_reference *head_ref;
4263 error = got_ref_open(&head_ref, repo, worktree ?
4264 got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
4265 if (error != NULL)
4266 goto done;
4267 error = got_ref_resolve(&commit_id, repo, head_ref);
4268 got_ref_close(head_ref);
4269 if (error != NULL)
4270 goto done;
4271 } else {
4272 error = got_repo_match_object_id(&commit_id, NULL,
4273 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
4274 if (error)
4275 goto done;
4278 error = got_object_resolve_symlinks(&link_target, in_repo_path,
4279 commit_id, repo);
4280 if (error)
4281 goto done;
4283 error = got_object_id_by_path(&obj_id, repo, commit_id,
4284 link_target ? link_target : in_repo_path);
4285 if (error)
4286 goto done;
4288 error = got_object_get_type(&obj_type, repo, obj_id);
4289 if (error)
4290 goto done;
4292 if (obj_type != GOT_OBJ_TYPE_BLOB) {
4293 error = got_error_path(link_target ? link_target : in_repo_path,
4294 GOT_ERR_OBJ_TYPE);
4295 goto done;
4298 error = got_object_open_as_blob(&blob, repo, obj_id, 8192);
4299 if (error)
4300 goto done;
4301 bca.f = got_opentemp();
4302 if (bca.f == NULL) {
4303 error = got_error_from_errno("got_opentemp");
4304 goto done;
4306 error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
4307 &bca.line_offsets, bca.f, blob);
4308 if (error || bca.nlines == 0)
4309 goto done;
4311 /* Don't include \n at EOF in the blame line count. */
4312 if (bca.line_offsets[bca.nlines - 1] == filesize)
4313 bca.nlines--;
4315 bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
4316 if (bca.lines == NULL) {
4317 error = got_error_from_errno("calloc");
4318 goto done;
4320 bca.lineno_cur = 1;
4321 bca.nlines_prec = 0;
4322 i = bca.nlines;
4323 while (i > 0) {
4324 i /= 10;
4325 bca.nlines_prec++;
4327 bca.repo = repo;
4329 error = got_blame(link_target ? link_target : in_repo_path, commit_id,
4330 repo, blame_cb, &bca, check_cancelled, NULL);
4331 done:
4332 free(in_repo_path);
4333 free(link_target);
4334 free(repo_path);
4335 free(cwd);
4336 free(commit_id);
4337 free(obj_id);
4338 if (blob)
4339 got_object_blob_close(blob);
4340 if (worktree)
4341 got_worktree_close(worktree);
4342 if (repo) {
4343 const struct got_error *repo_error;
4344 repo_error = got_repo_close(repo);
4345 if (error == NULL)
4346 error = repo_error;
4348 if (bca.lines) {
4349 for (i = 0; i < bca.nlines; i++) {
4350 struct blame_line *bline = &bca.lines[i];
4351 free(bline->id_str);
4352 free(bline->committer);
4354 free(bca.lines);
4356 free(bca.line_offsets);
4357 if (bca.f && fclose(bca.f) == EOF && error == NULL)
4358 error = got_error_from_errno("fclose");
4359 return error;
4362 __dead static void
4363 usage_tree(void)
4365 fprintf(stderr,
4366 "usage: %s tree [-c commit] [-r repository-path] [-iR] [path]\n",
4367 getprogname());
4368 exit(1);
4371 static const struct got_error *
4372 print_entry(struct got_tree_entry *te, const char *id, const char *path,
4373 const char *root_path, struct got_repository *repo)
4375 const struct got_error *err = NULL;
4376 int is_root_path = (strcmp(path, root_path) == 0);
4377 const char *modestr = "";
4378 mode_t mode = got_tree_entry_get_mode(te);
4379 char *link_target = NULL;
4381 path += strlen(root_path);
4382 while (path[0] == '/')
4383 path++;
4385 if (got_object_tree_entry_is_submodule(te))
4386 modestr = "$";
4387 else if (S_ISLNK(mode)) {
4388 int i;
4390 err = got_tree_entry_get_symlink_target(&link_target, te, repo);
4391 if (err)
4392 return err;
4393 for (i = 0; i < strlen(link_target); i++) {
4394 if (!isprint((unsigned char)link_target[i]))
4395 link_target[i] = '?';
4398 modestr = "@";
4400 else if (S_ISDIR(mode))
4401 modestr = "/";
4402 else if (mode & S_IXUSR)
4403 modestr = "*";
4405 printf("%s%s%s%s%s%s%s\n", id ? id : "", path,
4406 is_root_path ? "" : "/", got_tree_entry_get_name(te), modestr,
4407 link_target ? " -> ": "", link_target ? link_target : "");
4409 free(link_target);
4410 return NULL;
4413 static const struct got_error *
4414 print_tree(const char *path, struct got_object_id *commit_id,
4415 int show_ids, int recurse, const char *root_path,
4416 struct got_repository *repo)
4418 const struct got_error *err = NULL;
4419 struct got_object_id *tree_id = NULL;
4420 struct got_tree_object *tree = NULL;
4421 int nentries, i;
4423 err = got_object_id_by_path(&tree_id, repo, commit_id, path);
4424 if (err)
4425 goto done;
4427 err = got_object_open_as_tree(&tree, repo, tree_id);
4428 if (err)
4429 goto done;
4430 nentries = got_object_tree_get_nentries(tree);
4431 for (i = 0; i < nentries; i++) {
4432 struct got_tree_entry *te;
4433 char *id = NULL;
4435 if (sigint_received || sigpipe_received)
4436 break;
4438 te = got_object_tree_get_entry(tree, i);
4439 if (show_ids) {
4440 char *id_str;
4441 err = got_object_id_str(&id_str,
4442 got_tree_entry_get_id(te));
4443 if (err)
4444 goto done;
4445 if (asprintf(&id, "%s ", id_str) == -1) {
4446 err = got_error_from_errno("asprintf");
4447 free(id_str);
4448 goto done;
4450 free(id_str);
4452 err = print_entry(te, id, path, root_path, repo);
4453 free(id);
4454 if (err)
4455 goto done;
4457 if (recurse && S_ISDIR(got_tree_entry_get_mode(te))) {
4458 char *child_path;
4459 if (asprintf(&child_path, "%s%s%s", path,
4460 path[0] == '/' && path[1] == '\0' ? "" : "/",
4461 got_tree_entry_get_name(te)) == -1) {
4462 err = got_error_from_errno("asprintf");
4463 goto done;
4465 err = print_tree(child_path, commit_id, show_ids, 1,
4466 root_path, repo);
4467 free(child_path);
4468 if (err)
4469 goto done;
4472 done:
4473 if (tree)
4474 got_object_tree_close(tree);
4475 free(tree_id);
4476 return err;
4479 static const struct got_error *
4480 cmd_tree(int argc, char *argv[])
4482 const struct got_error *error;
4483 struct got_repository *repo = NULL;
4484 struct got_worktree *worktree = NULL;
4485 const char *path, *refname = NULL;
4486 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
4487 struct got_object_id *commit_id = NULL;
4488 char *commit_id_str = NULL;
4489 int show_ids = 0, recurse = 0;
4490 int ch;
4492 #ifndef PROFILE
4493 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4494 NULL) == -1)
4495 err(1, "pledge");
4496 #endif
4498 while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
4499 switch (ch) {
4500 case 'c':
4501 commit_id_str = optarg;
4502 break;
4503 case 'r':
4504 repo_path = realpath(optarg, NULL);
4505 if (repo_path == NULL)
4506 return got_error_from_errno2("realpath",
4507 optarg);
4508 got_path_strip_trailing_slashes(repo_path);
4509 break;
4510 case 'i':
4511 show_ids = 1;
4512 break;
4513 case 'R':
4514 recurse = 1;
4515 break;
4516 default:
4517 usage_tree();
4518 /* NOTREACHED */
4522 argc -= optind;
4523 argv += optind;
4525 if (argc == 1)
4526 path = argv[0];
4527 else if (argc > 1)
4528 usage_tree();
4529 else
4530 path = NULL;
4532 cwd = getcwd(NULL, 0);
4533 if (cwd == NULL) {
4534 error = got_error_from_errno("getcwd");
4535 goto done;
4537 if (repo_path == NULL) {
4538 error = got_worktree_open(&worktree, cwd);
4539 if (error && error->code != GOT_ERR_NOT_WORKTREE)
4540 goto done;
4541 else
4542 error = NULL;
4543 if (worktree) {
4544 repo_path =
4545 strdup(got_worktree_get_repo_path(worktree));
4546 if (repo_path == NULL)
4547 error = got_error_from_errno("strdup");
4548 if (error)
4549 goto done;
4550 } else {
4551 repo_path = strdup(cwd);
4552 if (repo_path == NULL) {
4553 error = got_error_from_errno("strdup");
4554 goto done;
4559 error = got_repo_open(&repo, repo_path, NULL);
4560 if (error != NULL)
4561 goto done;
4563 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
4564 if (error)
4565 goto done;
4567 if (path == NULL) {
4568 if (worktree) {
4569 char *p, *worktree_subdir = cwd +
4570 strlen(got_worktree_get_root_path(worktree));
4571 if (asprintf(&p, "%s/%s",
4572 got_worktree_get_path_prefix(worktree),
4573 worktree_subdir) == -1) {
4574 error = got_error_from_errno("asprintf");
4575 goto done;
4577 error = got_repo_map_path(&in_repo_path, repo, p, 0);
4578 free(p);
4579 if (error)
4580 goto done;
4581 } else
4582 path = "/";
4584 if (in_repo_path == NULL) {
4585 error = got_repo_map_path(&in_repo_path, repo, path, 1);
4586 if (error != NULL)
4587 goto done;
4590 if (commit_id_str == NULL) {
4591 struct got_reference *head_ref;
4592 if (worktree)
4593 refname = got_worktree_get_head_ref_name(worktree);
4594 else
4595 refname = GOT_REF_HEAD;
4596 error = got_ref_open(&head_ref, repo, refname, 0);
4597 if (error != NULL)
4598 goto done;
4599 error = got_ref_resolve(&commit_id, repo, head_ref);
4600 got_ref_close(head_ref);
4601 if (error != NULL)
4602 goto done;
4603 } else {
4604 error = got_repo_match_object_id(&commit_id, NULL,
4605 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
4606 if (error)
4607 goto done;
4610 error = print_tree(in_repo_path, commit_id, show_ids, recurse,
4611 in_repo_path, repo);
4612 done:
4613 free(in_repo_path);
4614 free(repo_path);
4615 free(cwd);
4616 free(commit_id);
4617 if (worktree)
4618 got_worktree_close(worktree);
4619 if (repo) {
4620 const struct got_error *repo_error;
4621 repo_error = got_repo_close(repo);
4622 if (error == NULL)
4623 error = repo_error;
4625 return error;
4628 __dead static void
4629 usage_status(void)
4631 fprintf(stderr, "usage: %s status [path ...]\n", getprogname());
4632 exit(1);
4635 static const struct got_error *
4636 print_status(void *arg, unsigned char status, unsigned char staged_status,
4637 const char *path, struct got_object_id *blob_id,
4638 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4639 int dirfd, const char *de_name)
4641 if (status == staged_status && (status == GOT_STATUS_DELETE))
4642 status = GOT_STATUS_NO_CHANGE;
4643 printf("%c%c %s\n", status, staged_status, path);
4644 return NULL;
4647 static const struct got_error *
4648 cmd_status(int argc, char *argv[])
4650 const struct got_error *error = NULL;
4651 struct got_repository *repo = NULL;
4652 struct got_worktree *worktree = NULL;
4653 char *cwd = NULL;
4654 struct got_pathlist_head paths;
4655 struct got_pathlist_entry *pe;
4656 int ch;
4658 TAILQ_INIT(&paths);
4660 while ((ch = getopt(argc, argv, "")) != -1) {
4661 switch (ch) {
4662 default:
4663 usage_status();
4664 /* NOTREACHED */
4668 argc -= optind;
4669 argv += optind;
4671 #ifndef PROFILE
4672 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4673 NULL) == -1)
4674 err(1, "pledge");
4675 #endif
4676 cwd = getcwd(NULL, 0);
4677 if (cwd == NULL) {
4678 error = got_error_from_errno("getcwd");
4679 goto done;
4682 error = got_worktree_open(&worktree, cwd);
4683 if (error) {
4684 if (error->code == GOT_ERR_NOT_WORKTREE)
4685 error = wrap_not_worktree_error(error, "status", cwd);
4686 goto done;
4689 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4690 NULL);
4691 if (error != NULL)
4692 goto done;
4694 error = apply_unveil(got_repo_get_path(repo), 1,
4695 got_worktree_get_root_path(worktree));
4696 if (error)
4697 goto done;
4699 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4700 if (error)
4701 goto done;
4703 error = got_worktree_status(worktree, &paths, repo, print_status, NULL,
4704 check_cancelled, NULL);
4705 done:
4706 TAILQ_FOREACH(pe, &paths, entry)
4707 free((char *)pe->path);
4708 got_pathlist_free(&paths);
4709 free(cwd);
4710 return error;
4713 __dead static void
4714 usage_ref(void)
4716 fprintf(stderr,
4717 "usage: %s ref [-r repository] [-l] [-c object] [-s reference] "
4718 "[-d] [name]\n",
4719 getprogname());
4720 exit(1);
4723 static const struct got_error *
4724 list_refs(struct got_repository *repo, const char *refname)
4726 static const struct got_error *err = NULL;
4727 struct got_reflist_head refs;
4728 struct got_reflist_entry *re;
4730 SIMPLEQ_INIT(&refs);
4731 err = got_ref_list(&refs, repo, refname, got_ref_cmp_by_name, NULL);
4732 if (err)
4733 return err;
4735 SIMPLEQ_FOREACH(re, &refs, entry) {
4736 char *refstr;
4737 refstr = got_ref_to_str(re->ref);
4738 if (refstr == NULL)
4739 return got_error_from_errno("got_ref_to_str");
4740 printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
4741 free(refstr);
4744 got_ref_list_free(&refs);
4745 return NULL;
4748 static const struct got_error *
4749 delete_ref(struct got_repository *repo, const char *refname)
4751 const struct got_error *err = NULL;
4752 struct got_reference *ref;
4754 err = got_ref_open(&ref, repo, refname, 0);
4755 if (err)
4756 return err;
4758 err = got_ref_delete(ref, repo);
4759 got_ref_close(ref);
4760 return err;
4763 static const struct got_error *
4764 add_ref(struct got_repository *repo, const char *refname, const char *target)
4766 const struct got_error *err = NULL;
4767 struct got_object_id *id;
4768 struct got_reference *ref = NULL;
4771 * Don't let the user create a reference name with a leading '-'.
4772 * While technically a valid reference name, this case is usually
4773 * an unintended typo.
4775 if (refname[0] == '-')
4776 return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
4778 err = got_repo_match_object_id_prefix(&id, target, GOT_OBJ_TYPE_ANY,
4779 repo);
4780 if (err) {
4781 struct got_reference *target_ref;
4783 if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
4784 return err;
4785 err = got_ref_open(&target_ref, repo, target, 0);
4786 if (err)
4787 return err;
4788 err = got_ref_resolve(&id, repo, target_ref);
4789 got_ref_close(target_ref);
4790 if (err)
4791 return err;
4794 err = got_ref_alloc(&ref, refname, id);
4795 if (err)
4796 goto done;
4798 err = got_ref_write(ref, repo);
4799 done:
4800 if (ref)
4801 got_ref_close(ref);
4802 free(id);
4803 return err;
4806 static const struct got_error *
4807 add_symref(struct got_repository *repo, const char *refname, const char *target)
4809 const struct got_error *err = NULL;
4810 struct got_reference *ref = NULL;
4811 struct got_reference *target_ref = NULL;
4814 * Don't let the user create a reference name with a leading '-'.
4815 * While technically a valid reference name, this case is usually
4816 * an unintended typo.
4818 if (refname[0] == '-')
4819 return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
4821 err = got_ref_open(&target_ref, repo, target, 0);
4822 if (err)
4823 return err;
4825 err = got_ref_alloc_symref(&ref, refname, target_ref);
4826 if (err)
4827 goto done;
4829 err = got_ref_write(ref, repo);
4830 done:
4831 if (target_ref)
4832 got_ref_close(target_ref);
4833 if (ref)
4834 got_ref_close(ref);
4835 return err;
4838 static const struct got_error *
4839 cmd_ref(int argc, char *argv[])
4841 const struct got_error *error = NULL;
4842 struct got_repository *repo = NULL;
4843 struct got_worktree *worktree = NULL;
4844 char *cwd = NULL, *repo_path = NULL;
4845 int ch, do_list = 0, do_delete = 0;
4846 const char *obj_arg = NULL, *symref_target= NULL;
4847 char *refname = NULL;
4849 while ((ch = getopt(argc, argv, "c:dr:ls:")) != -1) {
4850 switch (ch) {
4851 case 'c':
4852 obj_arg = optarg;
4853 break;
4854 case 'd':
4855 do_delete = 1;
4856 break;
4857 case 'r':
4858 repo_path = realpath(optarg, NULL);
4859 if (repo_path == NULL)
4860 return got_error_from_errno2("realpath",
4861 optarg);
4862 got_path_strip_trailing_slashes(repo_path);
4863 break;
4864 case 'l':
4865 do_list = 1;
4866 break;
4867 case 's':
4868 symref_target = optarg;
4869 break;
4870 default:
4871 usage_ref();
4872 /* NOTREACHED */
4876 if (obj_arg && do_list)
4877 errx(1, "-c and -l options are mutually exclusive");
4878 if (obj_arg && do_delete)
4879 errx(1, "-c and -d options are mutually exclusive");
4880 if (obj_arg && symref_target)
4881 errx(1, "-c and -s options are mutually exclusive");
4882 if (symref_target && do_delete)
4883 errx(1, "-s and -d options are mutually exclusive");
4884 if (symref_target && do_list)
4885 errx(1, "-s and -l options are mutually exclusive");
4886 if (do_delete && do_list)
4887 errx(1, "-d and -l options are mutually exclusive");
4889 argc -= optind;
4890 argv += optind;
4892 if (do_list) {
4893 if (argc != 0 && argc != 1)
4894 usage_ref();
4895 if (argc == 1) {
4896 refname = strdup(argv[0]);
4897 if (refname == NULL) {
4898 error = got_error_from_errno("strdup");
4899 goto done;
4902 } else {
4903 if (argc != 1)
4904 usage_ref();
4905 refname = strdup(argv[0]);
4906 if (refname == NULL) {
4907 error = got_error_from_errno("strdup");
4908 goto done;
4912 if (refname)
4913 got_path_strip_trailing_slashes(refname);
4915 #ifndef PROFILE
4916 if (do_list) {
4917 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
4918 NULL) == -1)
4919 err(1, "pledge");
4920 } else {
4921 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
4922 "sendfd unveil", NULL) == -1)
4923 err(1, "pledge");
4925 #endif
4926 cwd = getcwd(NULL, 0);
4927 if (cwd == NULL) {
4928 error = got_error_from_errno("getcwd");
4929 goto done;
4932 if (repo_path == NULL) {
4933 error = got_worktree_open(&worktree, cwd);
4934 if (error && error->code != GOT_ERR_NOT_WORKTREE)
4935 goto done;
4936 else
4937 error = NULL;
4938 if (worktree) {
4939 repo_path =
4940 strdup(got_worktree_get_repo_path(worktree));
4941 if (repo_path == NULL)
4942 error = got_error_from_errno("strdup");
4943 if (error)
4944 goto done;
4945 } else {
4946 repo_path = strdup(cwd);
4947 if (repo_path == NULL) {
4948 error = got_error_from_errno("strdup");
4949 goto done;
4954 error = got_repo_open(&repo, repo_path, NULL);
4955 if (error != NULL)
4956 goto done;
4958 error = apply_unveil(got_repo_get_path(repo), do_list,
4959 worktree ? got_worktree_get_root_path(worktree) : NULL);
4960 if (error)
4961 goto done;
4963 if (do_list)
4964 error = list_refs(repo, refname);
4965 else if (do_delete)
4966 error = delete_ref(repo, refname);
4967 else if (symref_target)
4968 error = add_symref(repo, refname, symref_target);
4969 else {
4970 if (obj_arg == NULL)
4971 usage_ref();
4972 error = add_ref(repo, refname, obj_arg);
4974 done:
4975 free(refname);
4976 if (repo)
4977 got_repo_close(repo);
4978 if (worktree)
4979 got_worktree_close(worktree);
4980 free(cwd);
4981 free(repo_path);
4982 return error;
4985 __dead static void
4986 usage_branch(void)
4988 fprintf(stderr,
4989 "usage: %s branch [-c commit] [-d] [-r repository] [-l] [-n] "
4990 "[name]\n", getprogname());
4991 exit(1);
4994 static const struct got_error *
4995 list_branch(struct got_repository *repo, struct got_worktree *worktree,
4996 struct got_reference *ref)
4998 const struct got_error *err = NULL;
4999 const char *refname, *marker = " ";
5000 char *refstr;
5002 refname = got_ref_get_name(ref);
5003 if (worktree && strcmp(refname,
5004 got_worktree_get_head_ref_name(worktree)) == 0) {
5005 struct got_object_id *id = NULL;
5007 err = got_ref_resolve(&id, repo, ref);
5008 if (err)
5009 return err;
5010 if (got_object_id_cmp(id,
5011 got_worktree_get_base_commit_id(worktree)) == 0)
5012 marker = "* ";
5013 else
5014 marker = "~ ";
5015 free(id);
5018 if (strncmp(refname, "refs/heads/", 11) == 0)
5019 refname += 11;
5020 if (strncmp(refname, "refs/got/worktree/", 18) == 0)
5021 refname += 18;
5023 refstr = got_ref_to_str(ref);
5024 if (refstr == NULL)
5025 return got_error_from_errno("got_ref_to_str");
5027 printf("%s%s: %s\n", marker, refname, refstr);
5028 free(refstr);
5029 return NULL;
5032 static const struct got_error *
5033 show_current_branch(struct got_repository *repo, struct got_worktree *worktree)
5035 const char *refname;
5037 if (worktree == NULL)
5038 return got_error(GOT_ERR_NOT_WORKTREE);
5040 refname = got_worktree_get_head_ref_name(worktree);
5042 if (strncmp(refname, "refs/heads/", 11) == 0)
5043 refname += 11;
5044 if (strncmp(refname, "refs/got/worktree/", 18) == 0)
5045 refname += 18;
5047 printf("%s\n", refname);
5049 return NULL;
5052 static const struct got_error *
5053 list_branches(struct got_repository *repo, struct got_worktree *worktree)
5055 static const struct got_error *err = NULL;
5056 struct got_reflist_head refs;
5057 struct got_reflist_entry *re;
5058 struct got_reference *temp_ref = NULL;
5059 int rebase_in_progress, histedit_in_progress;
5061 SIMPLEQ_INIT(&refs);
5063 if (worktree) {
5064 err = got_worktree_rebase_in_progress(&rebase_in_progress,
5065 worktree);
5066 if (err)
5067 return err;
5069 err = got_worktree_histedit_in_progress(&histedit_in_progress,
5070 worktree);
5071 if (err)
5072 return err;
5074 if (rebase_in_progress || histedit_in_progress) {
5075 err = got_ref_open(&temp_ref, repo,
5076 got_worktree_get_head_ref_name(worktree), 0);
5077 if (err)
5078 return err;
5079 list_branch(repo, worktree, temp_ref);
5080 got_ref_close(temp_ref);
5084 err = got_ref_list(&refs, repo, "refs/heads",
5085 got_ref_cmp_by_name, NULL);
5086 if (err)
5087 return err;
5089 SIMPLEQ_FOREACH(re, &refs, entry)
5090 list_branch(repo, worktree, re->ref);
5092 got_ref_list_free(&refs);
5093 return NULL;
5096 static const struct got_error *
5097 delete_branch(struct got_repository *repo, struct got_worktree *worktree,
5098 const char *branch_name)
5100 const struct got_error *err = NULL;
5101 struct got_reference *ref = NULL;
5102 char *refname;
5104 if (asprintf(&refname, "refs/heads/%s", branch_name) == -1)
5105 return got_error_from_errno("asprintf");
5107 err = got_ref_open(&ref, repo, refname, 0);
5108 if (err)
5109 goto done;
5111 if (worktree &&
5112 strcmp(got_worktree_get_head_ref_name(worktree),
5113 got_ref_get_name(ref)) == 0) {
5114 err = got_error_msg(GOT_ERR_SAME_BRANCH,
5115 "will not delete this work tree's current branch");
5116 goto done;
5119 err = got_ref_delete(ref, repo);
5120 done:
5121 if (ref)
5122 got_ref_close(ref);
5123 free(refname);
5124 return err;
5127 static const struct got_error *
5128 add_branch(struct got_repository *repo, const char *branch_name,
5129 struct got_object_id *base_commit_id)
5131 const struct got_error *err = NULL;
5132 struct got_reference *ref = NULL;
5133 char *base_refname = NULL, *refname = NULL;
5136 * Don't let the user create a branch name with a leading '-'.
5137 * While technically a valid reference name, this case is usually
5138 * an unintended typo.
5140 if (branch_name[0] == '-')
5141 return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
5143 if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
5144 err = got_error_from_errno("asprintf");
5145 goto done;
5148 err = got_ref_open(&ref, repo, refname, 0);
5149 if (err == NULL) {
5150 err = got_error(GOT_ERR_BRANCH_EXISTS);
5151 goto done;
5152 } else if (err->code != GOT_ERR_NOT_REF)
5153 goto done;
5155 err = got_ref_alloc(&ref, refname, base_commit_id);
5156 if (err)
5157 goto done;
5159 err = got_ref_write(ref, repo);
5160 done:
5161 if (ref)
5162 got_ref_close(ref);
5163 free(base_refname);
5164 free(refname);
5165 return err;
5168 static const struct got_error *
5169 cmd_branch(int argc, char *argv[])
5171 const struct got_error *error = NULL;
5172 struct got_repository *repo = NULL;
5173 struct got_worktree *worktree = NULL;
5174 char *cwd = NULL, *repo_path = NULL;
5175 int ch, do_list = 0, do_show = 0, do_update = 1;
5176 const char *delref = NULL, *commit_id_arg = NULL;
5177 struct got_reference *ref = NULL;
5178 struct got_pathlist_head paths;
5179 struct got_pathlist_entry *pe;
5180 struct got_object_id *commit_id = NULL;
5181 char *commit_id_str = NULL;
5183 TAILQ_INIT(&paths);
5185 while ((ch = getopt(argc, argv, "c:d:r:ln")) != -1) {
5186 switch (ch) {
5187 case 'c':
5188 commit_id_arg = optarg;
5189 break;
5190 case 'd':
5191 delref = optarg;
5192 break;
5193 case 'r':
5194 repo_path = realpath(optarg, NULL);
5195 if (repo_path == NULL)
5196 return got_error_from_errno2("realpath",
5197 optarg);
5198 got_path_strip_trailing_slashes(repo_path);
5199 break;
5200 case 'l':
5201 do_list = 1;
5202 break;
5203 case 'n':
5204 do_update = 0;
5205 break;
5206 default:
5207 usage_branch();
5208 /* NOTREACHED */
5212 if (do_list && delref)
5213 errx(1, "-l and -d options are mutually exclusive");
5215 argc -= optind;
5216 argv += optind;
5218 if (!do_list && !delref && argc == 0)
5219 do_show = 1;
5221 if ((do_list || delref || do_show) && commit_id_arg != NULL)
5222 errx(1, "-c option can only be used when creating a branch");
5224 if (do_list || delref) {
5225 if (argc > 0)
5226 usage_branch();
5227 } else if (!do_show && argc != 1)
5228 usage_branch();
5230 #ifndef PROFILE
5231 if (do_list || do_show) {
5232 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
5233 NULL) == -1)
5234 err(1, "pledge");
5235 } else {
5236 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
5237 "sendfd unveil", NULL) == -1)
5238 err(1, "pledge");
5240 #endif
5241 cwd = getcwd(NULL, 0);
5242 if (cwd == NULL) {
5243 error = got_error_from_errno("getcwd");
5244 goto done;
5247 if (repo_path == NULL) {
5248 error = got_worktree_open(&worktree, cwd);
5249 if (error && error->code != GOT_ERR_NOT_WORKTREE)
5250 goto done;
5251 else
5252 error = NULL;
5253 if (worktree) {
5254 repo_path =
5255 strdup(got_worktree_get_repo_path(worktree));
5256 if (repo_path == NULL)
5257 error = got_error_from_errno("strdup");
5258 if (error)
5259 goto done;
5260 } else {
5261 repo_path = strdup(cwd);
5262 if (repo_path == NULL) {
5263 error = got_error_from_errno("strdup");
5264 goto done;
5269 error = got_repo_open(&repo, repo_path, NULL);
5270 if (error != NULL)
5271 goto done;
5273 error = apply_unveil(got_repo_get_path(repo), do_list,
5274 worktree ? got_worktree_get_root_path(worktree) : NULL);
5275 if (error)
5276 goto done;
5278 if (do_show)
5279 error = show_current_branch(repo, worktree);
5280 else if (do_list)
5281 error = list_branches(repo, worktree);
5282 else if (delref)
5283 error = delete_branch(repo, worktree, delref);
5284 else {
5285 if (commit_id_arg == NULL)
5286 commit_id_arg = worktree ?
5287 got_worktree_get_head_ref_name(worktree) :
5288 GOT_REF_HEAD;
5289 error = got_repo_match_object_id(&commit_id, NULL,
5290 commit_id_arg, GOT_OBJ_TYPE_COMMIT, 1, repo);
5291 if (error)
5292 goto done;
5293 error = add_branch(repo, argv[0], commit_id);
5294 if (error)
5295 goto done;
5296 if (worktree && do_update) {
5297 struct got_update_progress_arg upa;
5298 char *branch_refname = NULL;
5300 error = got_object_id_str(&commit_id_str, commit_id);
5301 if (error)
5302 goto done;
5303 error = get_worktree_paths_from_argv(&paths, 0, NULL,
5304 worktree);
5305 if (error)
5306 goto done;
5307 if (asprintf(&branch_refname, "refs/heads/%s", argv[0])
5308 == -1) {
5309 error = got_error_from_errno("asprintf");
5310 goto done;
5312 error = got_ref_open(&ref, repo, branch_refname, 0);
5313 free(branch_refname);
5314 if (error)
5315 goto done;
5316 error = switch_head_ref(ref, commit_id, worktree,
5317 repo);
5318 if (error)
5319 goto done;
5320 error = got_worktree_set_base_commit_id(worktree, repo,
5321 commit_id);
5322 if (error)
5323 goto done;
5324 memset(&upa, 0, sizeof(upa));
5325 error = got_worktree_checkout_files(worktree, &paths,
5326 repo, update_progress, &upa, check_cancelled,
5327 NULL);
5328 if (error)
5329 goto done;
5330 if (upa.did_something)
5331 printf("Updated to commit %s\n", commit_id_str);
5332 print_update_progress_stats(&upa);
5335 done:
5336 if (ref)
5337 got_ref_close(ref);
5338 if (repo)
5339 got_repo_close(repo);
5340 if (worktree)
5341 got_worktree_close(worktree);
5342 free(cwd);
5343 free(repo_path);
5344 free(commit_id);
5345 free(commit_id_str);
5346 TAILQ_FOREACH(pe, &paths, entry)
5347 free((char *)pe->path);
5348 got_pathlist_free(&paths);
5349 return error;
5353 __dead static void
5354 usage_tag(void)
5356 fprintf(stderr,
5357 "usage: %s tag [-c commit] [-r repository] [-l] "
5358 "[-m message] name\n", getprogname());
5359 exit(1);
5362 #if 0
5363 static const struct got_error *
5364 sort_tags(struct got_reflist_head *sorted, struct got_reflist_head *tags)
5366 const struct got_error *err = NULL;
5367 struct got_reflist_entry *re, *se, *new;
5368 struct got_object_id *re_id, *se_id;
5369 struct got_tag_object *re_tag, *se_tag;
5370 time_t re_time, se_time;
5372 SIMPLEQ_FOREACH(re, tags, entry) {
5373 se = SIMPLEQ_FIRST(sorted);
5374 if (se == NULL) {
5375 err = got_reflist_entry_dup(&new, re);
5376 if (err)
5377 return err;
5378 SIMPLEQ_INSERT_HEAD(sorted, new, entry);
5379 continue;
5380 } else {
5381 err = got_ref_resolve(&re_id, repo, re->ref);
5382 if (err)
5383 break;
5384 err = got_object_open_as_tag(&re_tag, repo, re_id);
5385 free(re_id);
5386 if (err)
5387 break;
5388 re_time = got_object_tag_get_tagger_time(re_tag);
5389 got_object_tag_close(re_tag);
5392 while (se) {
5393 err = got_ref_resolve(&se_id, repo, re->ref);
5394 if (err)
5395 break;
5396 err = got_object_open_as_tag(&se_tag, repo, se_id);
5397 free(se_id);
5398 if (err)
5399 break;
5400 se_time = got_object_tag_get_tagger_time(se_tag);
5401 got_object_tag_close(se_tag);
5403 if (se_time > re_time) {
5404 err = got_reflist_entry_dup(&new, re);
5405 if (err)
5406 return err;
5407 SIMPLEQ_INSERT_AFTER(sorted, se, new, entry);
5408 break;
5410 se = SIMPLEQ_NEXT(se, entry);
5411 continue;
5414 done:
5415 return err;
5417 #endif
5419 static const struct got_error *
5420 list_tags(struct got_repository *repo, struct got_worktree *worktree)
5422 static const struct got_error *err = NULL;
5423 struct got_reflist_head refs;
5424 struct got_reflist_entry *re;
5426 SIMPLEQ_INIT(&refs);
5428 err = got_ref_list(&refs, repo, "refs/tags", got_ref_cmp_tags, repo);
5429 if (err)
5430 return err;
5432 SIMPLEQ_FOREACH(re, &refs, entry) {
5433 const char *refname;
5434 char *refstr, *tagmsg0, *tagmsg, *line, *id_str, *datestr;
5435 char datebuf[26];
5436 const char *tagger;
5437 time_t tagger_time;
5438 struct got_object_id *id;
5439 struct got_tag_object *tag;
5440 struct got_commit_object *commit = NULL;
5442 refname = got_ref_get_name(re->ref);
5443 if (strncmp(refname, "refs/tags/", 10) != 0)
5444 continue;
5445 refname += 10;
5446 refstr = got_ref_to_str(re->ref);
5447 if (refstr == NULL) {
5448 err = got_error_from_errno("got_ref_to_str");
5449 break;
5451 printf("%stag %s %s\n", GOT_COMMIT_SEP_STR, refname, refstr);
5452 free(refstr);
5454 err = got_ref_resolve(&id, repo, re->ref);
5455 if (err)
5456 break;
5457 err = got_object_open_as_tag(&tag, repo, id);
5458 if (err) {
5459 if (err->code != GOT_ERR_OBJ_TYPE) {
5460 free(id);
5461 break;
5463 /* "lightweight" tag */
5464 err = got_object_open_as_commit(&commit, repo, id);
5465 if (err) {
5466 free(id);
5467 break;
5469 tagger = got_object_commit_get_committer(commit);
5470 tagger_time =
5471 got_object_commit_get_committer_time(commit);
5472 err = got_object_id_str(&id_str, id);
5473 free(id);
5474 if (err)
5475 break;
5476 } else {
5477 free(id);
5478 tagger = got_object_tag_get_tagger(tag);
5479 tagger_time = got_object_tag_get_tagger_time(tag);
5480 err = got_object_id_str(&id_str,
5481 got_object_tag_get_object_id(tag));
5482 if (err)
5483 break;
5485 printf("from: %s\n", tagger);
5486 datestr = get_datestr(&tagger_time, datebuf);
5487 if (datestr)
5488 printf("date: %s UTC\n", datestr);
5489 if (commit)
5490 printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT, id_str);
5491 else {
5492 switch (got_object_tag_get_object_type(tag)) {
5493 case GOT_OBJ_TYPE_BLOB:
5494 printf("object: %s %s\n", GOT_OBJ_LABEL_BLOB,
5495 id_str);
5496 break;
5497 case GOT_OBJ_TYPE_TREE:
5498 printf("object: %s %s\n", GOT_OBJ_LABEL_TREE,
5499 id_str);
5500 break;
5501 case GOT_OBJ_TYPE_COMMIT:
5502 printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT,
5503 id_str);
5504 break;
5505 case GOT_OBJ_TYPE_TAG:
5506 printf("object: %s %s\n", GOT_OBJ_LABEL_TAG,
5507 id_str);
5508 break;
5509 default:
5510 break;
5513 free(id_str);
5514 if (commit) {
5515 err = got_object_commit_get_logmsg(&tagmsg0, commit);
5516 if (err)
5517 break;
5518 got_object_commit_close(commit);
5519 } else {
5520 tagmsg0 = strdup(got_object_tag_get_message(tag));
5521 got_object_tag_close(tag);
5522 if (tagmsg0 == NULL) {
5523 err = got_error_from_errno("strdup");
5524 break;
5528 tagmsg = tagmsg0;
5529 do {
5530 line = strsep(&tagmsg, "\n");
5531 if (line)
5532 printf(" %s\n", line);
5533 } while (line);
5534 free(tagmsg0);
5537 got_ref_list_free(&refs);
5538 return NULL;
5541 static const struct got_error *
5542 get_tag_message(char **tagmsg, char **tagmsg_path, const char *commit_id_str,
5543 const char *tag_name, const char *repo_path)
5545 const struct got_error *err = NULL;
5546 char *template = NULL, *initial_content = NULL;
5547 char *editor = NULL;
5548 int fd = -1;
5550 if (asprintf(&template, GOT_TMPDIR_STR "/got-tagmsg") == -1) {
5551 err = got_error_from_errno("asprintf");
5552 goto done;
5555 if (asprintf(&initial_content, "\n# tagging commit %s as %s\n",
5556 commit_id_str, tag_name) == -1) {
5557 err = got_error_from_errno("asprintf");
5558 goto done;
5561 err = got_opentemp_named_fd(tagmsg_path, &fd, template);
5562 if (err)
5563 goto done;
5565 dprintf(fd, initial_content);
5566 close(fd);
5568 err = get_editor(&editor);
5569 if (err)
5570 goto done;
5571 err = edit_logmsg(tagmsg, editor, *tagmsg_path, initial_content);
5572 done:
5573 free(initial_content);
5574 free(template);
5575 free(editor);
5577 /* Editor is done; we can now apply unveil(2) */
5578 if (err == NULL) {
5579 err = apply_unveil(repo_path, 0, NULL);
5580 if (err) {
5581 free(*tagmsg);
5582 *tagmsg = NULL;
5585 return err;
5588 static const struct got_error *
5589 add_tag(struct got_repository *repo, const char *tag_name,
5590 const char *commit_arg, const char *tagmsg_arg)
5592 const struct got_error *err = NULL;
5593 struct got_object_id *commit_id = NULL, *tag_id = NULL;
5594 char *label = NULL, *commit_id_str = NULL;
5595 struct got_reference *ref = NULL;
5596 char *refname = NULL, *tagmsg = NULL, *tagger = NULL;
5597 char *tagmsg_path = NULL, *tag_id_str = NULL;
5598 int preserve_tagmsg = 0;
5601 * Don't let the user create a tag name with a leading '-'.
5602 * While technically a valid reference name, this case is usually
5603 * an unintended typo.
5605 if (tag_name[0] == '-')
5606 return got_error_path(tag_name, GOT_ERR_REF_NAME_MINUS);
5608 err = get_author(&tagger, repo);
5609 if (err)
5610 return err;
5612 err = got_repo_match_object_id(&commit_id, &label, commit_arg,
5613 GOT_OBJ_TYPE_COMMIT, 1, repo);
5614 if (err)
5615 goto done;
5617 err = got_object_id_str(&commit_id_str, commit_id);
5618 if (err)
5619 goto done;
5621 if (strncmp("refs/tags/", tag_name, 10) == 0) {
5622 refname = strdup(tag_name);
5623 if (refname == NULL) {
5624 err = got_error_from_errno("strdup");
5625 goto done;
5627 tag_name += 10;
5628 } else if (asprintf(&refname, "refs/tags/%s", tag_name) == -1) {
5629 err = got_error_from_errno("asprintf");
5630 goto done;
5633 err = got_ref_open(&ref, repo, refname, 0);
5634 if (err == NULL) {
5635 err = got_error(GOT_ERR_TAG_EXISTS);
5636 goto done;
5637 } else if (err->code != GOT_ERR_NOT_REF)
5638 goto done;
5640 if (tagmsg_arg == NULL) {
5641 err = get_tag_message(&tagmsg, &tagmsg_path, commit_id_str,
5642 tag_name, got_repo_get_path(repo));
5643 if (err) {
5644 if (err->code != GOT_ERR_COMMIT_MSG_EMPTY &&
5645 tagmsg_path != NULL)
5646 preserve_tagmsg = 1;
5647 goto done;
5651 err = got_object_tag_create(&tag_id, tag_name, commit_id,
5652 tagger, time(NULL), tagmsg ? tagmsg : tagmsg_arg, repo);
5653 if (err) {
5654 if (tagmsg_path)
5655 preserve_tagmsg = 1;
5656 goto done;
5659 err = got_ref_alloc(&ref, refname, tag_id);
5660 if (err) {
5661 if (tagmsg_path)
5662 preserve_tagmsg = 1;
5663 goto done;
5666 err = got_ref_write(ref, repo);
5667 if (err) {
5668 if (tagmsg_path)
5669 preserve_tagmsg = 1;
5670 goto done;
5673 err = got_object_id_str(&tag_id_str, tag_id);
5674 if (err) {
5675 if (tagmsg_path)
5676 preserve_tagmsg = 1;
5677 goto done;
5679 printf("Created tag %s\n", tag_id_str);
5680 done:
5681 if (preserve_tagmsg) {
5682 fprintf(stderr, "%s: tag message preserved in %s\n",
5683 getprogname(), tagmsg_path);
5684 } else if (tagmsg_path && unlink(tagmsg_path) == -1 && err == NULL)
5685 err = got_error_from_errno2("unlink", tagmsg_path);
5686 free(tag_id_str);
5687 if (ref)
5688 got_ref_close(ref);
5689 free(commit_id);
5690 free(commit_id_str);
5691 free(refname);
5692 free(tagmsg);
5693 free(tagmsg_path);
5694 free(tagger);
5695 return err;
5698 static const struct got_error *
5699 cmd_tag(int argc, char *argv[])
5701 const struct got_error *error = NULL;
5702 struct got_repository *repo = NULL;
5703 struct got_worktree *worktree = NULL;
5704 char *cwd = NULL, *repo_path = NULL, *commit_id_str = NULL;
5705 char *gitconfig_path = NULL;
5706 const char *tag_name, *commit_id_arg = NULL, *tagmsg = NULL;
5707 int ch, do_list = 0;
5709 while ((ch = getopt(argc, argv, "c:m:r:l")) != -1) {
5710 switch (ch) {
5711 case 'c':
5712 commit_id_arg = optarg;
5713 break;
5714 case 'm':
5715 tagmsg = optarg;
5716 break;
5717 case 'r':
5718 repo_path = realpath(optarg, NULL);
5719 if (repo_path == NULL)
5720 return got_error_from_errno2("realpath",
5721 optarg);
5722 got_path_strip_trailing_slashes(repo_path);
5723 break;
5724 case 'l':
5725 do_list = 1;
5726 break;
5727 default:
5728 usage_tag();
5729 /* NOTREACHED */
5733 argc -= optind;
5734 argv += optind;
5736 if (do_list) {
5737 if (commit_id_arg != NULL)
5738 errx(1,
5739 "-c option can only be used when creating a tag");
5740 if (tagmsg)
5741 errx(1, "-l and -m options are mutually exclusive");
5742 if (argc > 0)
5743 usage_tag();
5744 } else if (argc != 1)
5745 usage_tag();
5747 tag_name = argv[0];
5749 #ifndef PROFILE
5750 if (do_list) {
5751 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
5752 NULL) == -1)
5753 err(1, "pledge");
5754 } else {
5755 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
5756 "sendfd unveil", NULL) == -1)
5757 err(1, "pledge");
5759 #endif
5760 cwd = getcwd(NULL, 0);
5761 if (cwd == NULL) {
5762 error = got_error_from_errno("getcwd");
5763 goto done;
5766 if (repo_path == NULL) {
5767 error = got_worktree_open(&worktree, cwd);
5768 if (error && error->code != GOT_ERR_NOT_WORKTREE)
5769 goto done;
5770 else
5771 error = NULL;
5772 if (worktree) {
5773 repo_path =
5774 strdup(got_worktree_get_repo_path(worktree));
5775 if (repo_path == NULL)
5776 error = got_error_from_errno("strdup");
5777 if (error)
5778 goto done;
5779 } else {
5780 repo_path = strdup(cwd);
5781 if (repo_path == NULL) {
5782 error = got_error_from_errno("strdup");
5783 goto done;
5788 if (do_list) {
5789 error = got_repo_open(&repo, repo_path, NULL);
5790 if (error != NULL)
5791 goto done;
5792 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5793 if (error)
5794 goto done;
5795 error = list_tags(repo, worktree);
5796 } else {
5797 error = get_gitconfig_path(&gitconfig_path);
5798 if (error)
5799 goto done;
5800 error = got_repo_open(&repo, repo_path, gitconfig_path);
5801 if (error != NULL)
5802 goto done;
5804 if (tagmsg) {
5805 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5806 if (error)
5807 goto done;
5810 if (commit_id_arg == NULL) {
5811 struct got_reference *head_ref;
5812 struct got_object_id *commit_id;
5813 error = got_ref_open(&head_ref, repo,
5814 worktree ? got_worktree_get_head_ref_name(worktree)
5815 : GOT_REF_HEAD, 0);
5816 if (error)
5817 goto done;
5818 error = got_ref_resolve(&commit_id, repo, head_ref);
5819 got_ref_close(head_ref);
5820 if (error)
5821 goto done;
5822 error = got_object_id_str(&commit_id_str, commit_id);
5823 free(commit_id);
5824 if (error)
5825 goto done;
5828 error = add_tag(repo, tag_name,
5829 commit_id_str ? commit_id_str : commit_id_arg, tagmsg);
5831 done:
5832 if (repo)
5833 got_repo_close(repo);
5834 if (worktree)
5835 got_worktree_close(worktree);
5836 free(cwd);
5837 free(repo_path);
5838 free(gitconfig_path);
5839 free(commit_id_str);
5840 return error;
5843 __dead static void
5844 usage_add(void)
5846 fprintf(stderr, "usage: %s add [-R] [-I] path ...\n",
5847 getprogname());
5848 exit(1);
5851 static const struct got_error *
5852 add_progress(void *arg, unsigned char status, const char *path)
5854 while (path[0] == '/')
5855 path++;
5856 printf("%c %s\n", status, path);
5857 return NULL;
5860 static const struct got_error *
5861 cmd_add(int argc, char *argv[])
5863 const struct got_error *error = NULL;
5864 struct got_repository *repo = NULL;
5865 struct got_worktree *worktree = NULL;
5866 char *cwd = NULL;
5867 struct got_pathlist_head paths;
5868 struct got_pathlist_entry *pe;
5869 int ch, can_recurse = 0, no_ignores = 0;
5871 TAILQ_INIT(&paths);
5873 while ((ch = getopt(argc, argv, "IR")) != -1) {
5874 switch (ch) {
5875 case 'I':
5876 no_ignores = 1;
5877 break;
5878 case 'R':
5879 can_recurse = 1;
5880 break;
5881 default:
5882 usage_add();
5883 /* NOTREACHED */
5887 argc -= optind;
5888 argv += optind;
5890 #ifndef PROFILE
5891 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
5892 NULL) == -1)
5893 err(1, "pledge");
5894 #endif
5895 if (argc < 1)
5896 usage_add();
5898 cwd = getcwd(NULL, 0);
5899 if (cwd == NULL) {
5900 error = got_error_from_errno("getcwd");
5901 goto done;
5904 error = got_worktree_open(&worktree, cwd);
5905 if (error) {
5906 if (error->code == GOT_ERR_NOT_WORKTREE)
5907 error = wrap_not_worktree_error(error, "add", cwd);
5908 goto done;
5911 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5912 NULL);
5913 if (error != NULL)
5914 goto done;
5916 error = apply_unveil(got_repo_get_path(repo), 1,
5917 got_worktree_get_root_path(worktree));
5918 if (error)
5919 goto done;
5921 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
5922 if (error)
5923 goto done;
5925 if (!can_recurse && no_ignores) {
5926 error = got_error_msg(GOT_ERR_BAD_PATH,
5927 "disregarding ignores requires -R option");
5928 goto done;
5932 if (!can_recurse) {
5933 char *ondisk_path;
5934 struct stat sb;
5935 TAILQ_FOREACH(pe, &paths, entry) {
5936 if (asprintf(&ondisk_path, "%s/%s",
5937 got_worktree_get_root_path(worktree),
5938 pe->path) == -1) {
5939 error = got_error_from_errno("asprintf");
5940 goto done;
5942 if (lstat(ondisk_path, &sb) == -1) {
5943 if (errno == ENOENT) {
5944 free(ondisk_path);
5945 continue;
5947 error = got_error_from_errno2("lstat",
5948 ondisk_path);
5949 free(ondisk_path);
5950 goto done;
5952 free(ondisk_path);
5953 if (S_ISDIR(sb.st_mode)) {
5954 error = got_error_msg(GOT_ERR_BAD_PATH,
5955 "adding directories requires -R option");
5956 goto done;
5961 error = got_worktree_schedule_add(worktree, &paths, add_progress,
5962 NULL, repo, no_ignores);
5963 done:
5964 if (repo)
5965 got_repo_close(repo);
5966 if (worktree)
5967 got_worktree_close(worktree);
5968 TAILQ_FOREACH(pe, &paths, entry)
5969 free((char *)pe->path);
5970 got_pathlist_free(&paths);
5971 free(cwd);
5972 return error;
5975 __dead static void
5976 usage_remove(void)
5978 fprintf(stderr, "usage: %s remove [-f] [-k] [-R] path ...\n",
5979 getprogname());
5980 exit(1);
5983 static const struct got_error *
5984 print_remove_status(void *arg, unsigned char status,
5985 unsigned char staged_status, const char *path)
5987 while (path[0] == '/')
5988 path++;
5989 if (status == GOT_STATUS_NONEXISTENT)
5990 return NULL;
5991 if (status == staged_status && (status == GOT_STATUS_DELETE))
5992 status = GOT_STATUS_NO_CHANGE;
5993 printf("%c%c %s\n", status, staged_status, path);
5994 return NULL;
5997 static const struct got_error *
5998 cmd_remove(int argc, char *argv[])
6000 const struct got_error *error = NULL;
6001 struct got_worktree *worktree = NULL;
6002 struct got_repository *repo = NULL;
6003 char *cwd = NULL;
6004 struct got_pathlist_head paths;
6005 struct got_pathlist_entry *pe;
6006 int ch, delete_local_mods = 0, can_recurse = 0, keep_on_disk = 0;
6008 TAILQ_INIT(&paths);
6010 while ((ch = getopt(argc, argv, "fkR")) != -1) {
6011 switch (ch) {
6012 case 'f':
6013 delete_local_mods = 1;
6014 break;
6015 case 'k':
6016 keep_on_disk = 1;
6017 break;
6018 case 'R':
6019 can_recurse = 1;
6020 break;
6021 default:
6022 usage_remove();
6023 /* NOTREACHED */
6027 argc -= optind;
6028 argv += optind;
6030 #ifndef PROFILE
6031 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
6032 NULL) == -1)
6033 err(1, "pledge");
6034 #endif
6035 if (argc < 1)
6036 usage_remove();
6038 cwd = getcwd(NULL, 0);
6039 if (cwd == NULL) {
6040 error = got_error_from_errno("getcwd");
6041 goto done;
6043 error = got_worktree_open(&worktree, cwd);
6044 if (error) {
6045 if (error->code == GOT_ERR_NOT_WORKTREE)
6046 error = wrap_not_worktree_error(error, "remove", cwd);
6047 goto done;
6050 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6051 NULL);
6052 if (error)
6053 goto done;
6055 error = apply_unveil(got_repo_get_path(repo), 1,
6056 got_worktree_get_root_path(worktree));
6057 if (error)
6058 goto done;
6060 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6061 if (error)
6062 goto done;
6064 if (!can_recurse) {
6065 char *ondisk_path;
6066 struct stat sb;
6067 TAILQ_FOREACH(pe, &paths, entry) {
6068 if (asprintf(&ondisk_path, "%s/%s",
6069 got_worktree_get_root_path(worktree),
6070 pe->path) == -1) {
6071 error = got_error_from_errno("asprintf");
6072 goto done;
6074 if (lstat(ondisk_path, &sb) == -1) {
6075 if (errno == ENOENT) {
6076 free(ondisk_path);
6077 continue;
6079 error = got_error_from_errno2("lstat",
6080 ondisk_path);
6081 free(ondisk_path);
6082 goto done;
6084 free(ondisk_path);
6085 if (S_ISDIR(sb.st_mode)) {
6086 error = got_error_msg(GOT_ERR_BAD_PATH,
6087 "removing directories requires -R option");
6088 goto done;
6093 error = got_worktree_schedule_delete(worktree, &paths,
6094 delete_local_mods, print_remove_status, NULL, repo, keep_on_disk);
6095 done:
6096 if (repo)
6097 got_repo_close(repo);
6098 if (worktree)
6099 got_worktree_close(worktree);
6100 TAILQ_FOREACH(pe, &paths, entry)
6101 free((char *)pe->path);
6102 got_pathlist_free(&paths);
6103 free(cwd);
6104 return error;
6107 __dead static void
6108 usage_revert(void)
6110 fprintf(stderr, "usage: %s revert [-p] [-F response-script] [-R] "
6111 "path ...\n", getprogname());
6112 exit(1);
6115 static const struct got_error *
6116 revert_progress(void *arg, unsigned char status, const char *path)
6118 if (status == GOT_STATUS_UNVERSIONED)
6119 return NULL;
6121 while (path[0] == '/')
6122 path++;
6123 printf("%c %s\n", status, path);
6124 return NULL;
6127 struct choose_patch_arg {
6128 FILE *patch_script_file;
6129 const char *action;
6132 static const struct got_error *
6133 show_change(unsigned char status, const char *path, FILE *patch_file, int n,
6134 int nchanges, const char *action)
6136 char *line = NULL;
6137 size_t linesize = 0;
6138 ssize_t linelen;
6140 switch (status) {
6141 case GOT_STATUS_ADD:
6142 printf("A %s\n%s this addition? [y/n] ", path, action);
6143 break;
6144 case GOT_STATUS_DELETE:
6145 printf("D %s\n%s this deletion? [y/n] ", path, action);
6146 break;
6147 case GOT_STATUS_MODIFY:
6148 if (fseek(patch_file, 0L, SEEK_SET) == -1)
6149 return got_error_from_errno("fseek");
6150 printf(GOT_COMMIT_SEP_STR);
6151 while ((linelen = getline(&line, &linesize, patch_file)) != -1)
6152 printf("%s", line);
6153 if (ferror(patch_file))
6154 return got_error_from_errno("getline");
6155 printf(GOT_COMMIT_SEP_STR);
6156 printf("M %s (change %d of %d)\n%s this change? [y/n/q] ",
6157 path, n, nchanges, action);
6158 break;
6159 default:
6160 return got_error_path(path, GOT_ERR_FILE_STATUS);
6163 return NULL;
6166 static const struct got_error *
6167 choose_patch(int *choice, void *arg, unsigned char status, const char *path,
6168 FILE *patch_file, int n, int nchanges)
6170 const struct got_error *err = NULL;
6171 char *line = NULL;
6172 size_t linesize = 0;
6173 ssize_t linelen;
6174 int resp = ' ';
6175 struct choose_patch_arg *a = arg;
6177 *choice = GOT_PATCH_CHOICE_NONE;
6179 if (a->patch_script_file) {
6180 char *nl;
6181 err = show_change(status, path, patch_file, n, nchanges,
6182 a->action);
6183 if (err)
6184 return err;
6185 linelen = getline(&line, &linesize, a->patch_script_file);
6186 if (linelen == -1) {
6187 if (ferror(a->patch_script_file))
6188 return got_error_from_errno("getline");
6189 return NULL;
6191 nl = strchr(line, '\n');
6192 if (nl)
6193 *nl = '\0';
6194 if (strcmp(line, "y") == 0) {
6195 *choice = GOT_PATCH_CHOICE_YES;
6196 printf("y\n");
6197 } else if (strcmp(line, "n") == 0) {
6198 *choice = GOT_PATCH_CHOICE_NO;
6199 printf("n\n");
6200 } else if (strcmp(line, "q") == 0 &&
6201 status == GOT_STATUS_MODIFY) {
6202 *choice = GOT_PATCH_CHOICE_QUIT;
6203 printf("q\n");
6204 } else
6205 printf("invalid response '%s'\n", line);
6206 free(line);
6207 return NULL;
6210 while (resp != 'y' && resp != 'n' && resp != 'q') {
6211 err = show_change(status, path, patch_file, n, nchanges,
6212 a->action);
6213 if (err)
6214 return err;
6215 resp = getchar();
6216 if (resp == '\n')
6217 resp = getchar();
6218 if (status == GOT_STATUS_MODIFY) {
6219 if (resp != 'y' && resp != 'n' && resp != 'q') {
6220 printf("invalid response '%c'\n", resp);
6221 resp = ' ';
6223 } else if (resp != 'y' && resp != 'n') {
6224 printf("invalid response '%c'\n", resp);
6225 resp = ' ';
6229 if (resp == 'y')
6230 *choice = GOT_PATCH_CHOICE_YES;
6231 else if (resp == 'n')
6232 *choice = GOT_PATCH_CHOICE_NO;
6233 else if (resp == 'q' && status == GOT_STATUS_MODIFY)
6234 *choice = GOT_PATCH_CHOICE_QUIT;
6236 return NULL;
6240 static const struct got_error *
6241 cmd_revert(int argc, char *argv[])
6243 const struct got_error *error = NULL;
6244 struct got_worktree *worktree = NULL;
6245 struct got_repository *repo = NULL;
6246 char *cwd = NULL, *path = NULL;
6247 struct got_pathlist_head paths;
6248 struct got_pathlist_entry *pe;
6249 int ch, can_recurse = 0, pflag = 0;
6250 FILE *patch_script_file = NULL;
6251 const char *patch_script_path = NULL;
6252 struct choose_patch_arg cpa;
6254 TAILQ_INIT(&paths);
6256 while ((ch = getopt(argc, argv, "pF:R")) != -1) {
6257 switch (ch) {
6258 case 'p':
6259 pflag = 1;
6260 break;
6261 case 'F':
6262 patch_script_path = optarg;
6263 break;
6264 case 'R':
6265 can_recurse = 1;
6266 break;
6267 default:
6268 usage_revert();
6269 /* NOTREACHED */
6273 argc -= optind;
6274 argv += optind;
6276 #ifndef PROFILE
6277 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6278 "unveil", NULL) == -1)
6279 err(1, "pledge");
6280 #endif
6281 if (argc < 1)
6282 usage_revert();
6283 if (patch_script_path && !pflag)
6284 errx(1, "-F option can only be used together with -p option");
6286 cwd = getcwd(NULL, 0);
6287 if (cwd == NULL) {
6288 error = got_error_from_errno("getcwd");
6289 goto done;
6291 error = got_worktree_open(&worktree, cwd);
6292 if (error) {
6293 if (error->code == GOT_ERR_NOT_WORKTREE)
6294 error = wrap_not_worktree_error(error, "revert", cwd);
6295 goto done;
6298 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6299 NULL);
6300 if (error != NULL)
6301 goto done;
6303 if (patch_script_path) {
6304 patch_script_file = fopen(patch_script_path, "r");
6305 if (patch_script_file == NULL) {
6306 error = got_error_from_errno2("fopen",
6307 patch_script_path);
6308 goto done;
6311 error = apply_unveil(got_repo_get_path(repo), 1,
6312 got_worktree_get_root_path(worktree));
6313 if (error)
6314 goto done;
6316 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6317 if (error)
6318 goto done;
6320 if (!can_recurse) {
6321 char *ondisk_path;
6322 struct stat sb;
6323 TAILQ_FOREACH(pe, &paths, entry) {
6324 if (asprintf(&ondisk_path, "%s/%s",
6325 got_worktree_get_root_path(worktree),
6326 pe->path) == -1) {
6327 error = got_error_from_errno("asprintf");
6328 goto done;
6330 if (lstat(ondisk_path, &sb) == -1) {
6331 if (errno == ENOENT) {
6332 free(ondisk_path);
6333 continue;
6335 error = got_error_from_errno2("lstat",
6336 ondisk_path);
6337 free(ondisk_path);
6338 goto done;
6340 free(ondisk_path);
6341 if (S_ISDIR(sb.st_mode)) {
6342 error = got_error_msg(GOT_ERR_BAD_PATH,
6343 "reverting directories requires -R option");
6344 goto done;
6349 cpa.patch_script_file = patch_script_file;
6350 cpa.action = "revert";
6351 error = got_worktree_revert(worktree, &paths, revert_progress, NULL,
6352 pflag ? choose_patch : NULL, &cpa, repo);
6353 done:
6354 if (patch_script_file && fclose(patch_script_file) == EOF &&
6355 error == NULL)
6356 error = got_error_from_errno2("fclose", patch_script_path);
6357 if (repo)
6358 got_repo_close(repo);
6359 if (worktree)
6360 got_worktree_close(worktree);
6361 free(path);
6362 free(cwd);
6363 return error;
6366 __dead static void
6367 usage_commit(void)
6369 fprintf(stderr, "usage: %s commit [-m msg] [path ...]\n",
6370 getprogname());
6371 exit(1);
6374 struct collect_commit_logmsg_arg {
6375 const char *cmdline_log;
6376 const char *editor;
6377 const char *worktree_path;
6378 const char *branch_name;
6379 const char *repo_path;
6380 char *logmsg_path;
6384 static const struct got_error *
6385 collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
6386 void *arg)
6388 char *initial_content = NULL;
6389 struct got_pathlist_entry *pe;
6390 const struct got_error *err = NULL;
6391 char *template = NULL;
6392 struct collect_commit_logmsg_arg *a = arg;
6393 int fd;
6394 size_t len;
6396 /* if a message was specified on the command line, just use it */
6397 if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
6398 len = strlen(a->cmdline_log) + 1;
6399 *logmsg = malloc(len + 1);
6400 if (*logmsg == NULL)
6401 return got_error_from_errno("malloc");
6402 strlcpy(*logmsg, a->cmdline_log, len);
6403 return NULL;
6406 if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
6407 return got_error_from_errno("asprintf");
6409 if (asprintf(&initial_content,
6410 "\n# changes to be committed on branch %s:\n",
6411 a->branch_name) == -1)
6412 return got_error_from_errno("asprintf");
6414 err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
6415 if (err)
6416 goto done;
6418 dprintf(fd, initial_content);
6420 TAILQ_FOREACH(pe, commitable_paths, entry) {
6421 struct got_commitable *ct = pe->data;
6422 dprintf(fd, "# %c %s\n",
6423 got_commitable_get_status(ct),
6424 got_commitable_get_path(ct));
6426 close(fd);
6428 err = edit_logmsg(logmsg, a->editor, a->logmsg_path, initial_content);
6429 done:
6430 free(initial_content);
6431 free(template);
6433 /* Editor is done; we can now apply unveil(2) */
6434 if (err == NULL) {
6435 err = apply_unveil(a->repo_path, 0, a->worktree_path);
6436 if (err) {
6437 free(*logmsg);
6438 *logmsg = NULL;
6441 return err;
6444 static const struct got_error *
6445 cmd_commit(int argc, char *argv[])
6447 const struct got_error *error = NULL;
6448 struct got_worktree *worktree = NULL;
6449 struct got_repository *repo = NULL;
6450 char *cwd = NULL, *id_str = NULL;
6451 struct got_object_id *id = NULL;
6452 const char *logmsg = NULL;
6453 struct collect_commit_logmsg_arg cl_arg;
6454 char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
6455 int ch, rebase_in_progress, histedit_in_progress, preserve_logmsg = 0;
6456 struct got_pathlist_head paths;
6458 TAILQ_INIT(&paths);
6459 cl_arg.logmsg_path = NULL;
6461 while ((ch = getopt(argc, argv, "m:")) != -1) {
6462 switch (ch) {
6463 case 'm':
6464 logmsg = optarg;
6465 break;
6466 default:
6467 usage_commit();
6468 /* NOTREACHED */
6472 argc -= optind;
6473 argv += optind;
6475 #ifndef PROFILE
6476 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6477 "unveil", NULL) == -1)
6478 err(1, "pledge");
6479 #endif
6480 cwd = getcwd(NULL, 0);
6481 if (cwd == NULL) {
6482 error = got_error_from_errno("getcwd");
6483 goto done;
6485 error = got_worktree_open(&worktree, cwd);
6486 if (error) {
6487 if (error->code == GOT_ERR_NOT_WORKTREE)
6488 error = wrap_not_worktree_error(error, "commit", cwd);
6489 goto done;
6492 error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
6493 if (error)
6494 goto done;
6495 if (rebase_in_progress) {
6496 error = got_error(GOT_ERR_REBASING);
6497 goto done;
6500 error = got_worktree_histedit_in_progress(&histedit_in_progress,
6501 worktree);
6502 if (error)
6503 goto done;
6505 error = get_gitconfig_path(&gitconfig_path);
6506 if (error)
6507 goto done;
6508 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6509 gitconfig_path);
6510 if (error != NULL)
6511 goto done;
6513 error = get_author(&author, repo);
6514 if (error)
6515 return error;
6518 * unveil(2) traverses exec(2); if an editor is used we have
6519 * to apply unveil after the log message has been written.
6521 if (logmsg == NULL || strlen(logmsg) == 0)
6522 error = get_editor(&editor);
6523 else
6524 error = apply_unveil(got_repo_get_path(repo), 0,
6525 got_worktree_get_root_path(worktree));
6526 if (error)
6527 goto done;
6529 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6530 if (error)
6531 goto done;
6533 cl_arg.editor = editor;
6534 cl_arg.cmdline_log = logmsg;
6535 cl_arg.worktree_path = got_worktree_get_root_path(worktree);
6536 cl_arg.branch_name = got_worktree_get_head_ref_name(worktree);
6537 if (!histedit_in_progress) {
6538 if (strncmp(cl_arg.branch_name, "refs/heads/", 11) != 0) {
6539 error = got_error(GOT_ERR_COMMIT_BRANCH);
6540 goto done;
6542 cl_arg.branch_name += 11;
6544 cl_arg.repo_path = got_repo_get_path(repo);
6545 error = got_worktree_commit(&id, worktree, &paths, author, NULL,
6546 collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
6547 if (error) {
6548 if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
6549 cl_arg.logmsg_path != NULL)
6550 preserve_logmsg = 1;
6551 goto done;
6554 error = got_object_id_str(&id_str, id);
6555 if (error)
6556 goto done;
6557 printf("Created commit %s\n", id_str);
6558 done:
6559 if (preserve_logmsg) {
6560 fprintf(stderr, "%s: log message preserved in %s\n",
6561 getprogname(), cl_arg.logmsg_path);
6562 } else if (cl_arg.logmsg_path && unlink(cl_arg.logmsg_path) == -1 &&
6563 error == NULL)
6564 error = got_error_from_errno2("unlink", cl_arg.logmsg_path);
6565 free(cl_arg.logmsg_path);
6566 if (repo)
6567 got_repo_close(repo);
6568 if (worktree)
6569 got_worktree_close(worktree);
6570 free(cwd);
6571 free(id_str);
6572 free(gitconfig_path);
6573 free(editor);
6574 free(author);
6575 return error;
6578 __dead static void
6579 usage_cherrypick(void)
6581 fprintf(stderr, "usage: %s cherrypick commit-id\n", getprogname());
6582 exit(1);
6585 static const struct got_error *
6586 cmd_cherrypick(int argc, char *argv[])
6588 const struct got_error *error = NULL;
6589 struct got_worktree *worktree = NULL;
6590 struct got_repository *repo = NULL;
6591 char *cwd = NULL, *commit_id_str = NULL;
6592 struct got_object_id *commit_id = NULL;
6593 struct got_commit_object *commit = NULL;
6594 struct got_object_qid *pid;
6595 struct got_reference *head_ref = NULL;
6596 int ch;
6597 struct got_update_progress_arg upa;
6599 while ((ch = getopt(argc, argv, "")) != -1) {
6600 switch (ch) {
6601 default:
6602 usage_cherrypick();
6603 /* NOTREACHED */
6607 argc -= optind;
6608 argv += optind;
6610 #ifndef PROFILE
6611 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6612 "unveil", NULL) == -1)
6613 err(1, "pledge");
6614 #endif
6615 if (argc != 1)
6616 usage_cherrypick();
6618 cwd = getcwd(NULL, 0);
6619 if (cwd == NULL) {
6620 error = got_error_from_errno("getcwd");
6621 goto done;
6623 error = got_worktree_open(&worktree, cwd);
6624 if (error) {
6625 if (error->code == GOT_ERR_NOT_WORKTREE)
6626 error = wrap_not_worktree_error(error, "cherrypick",
6627 cwd);
6628 goto done;
6631 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6632 NULL);
6633 if (error != NULL)
6634 goto done;
6636 error = apply_unveil(got_repo_get_path(repo), 0,
6637 got_worktree_get_root_path(worktree));
6638 if (error)
6639 goto done;
6641 error = got_repo_match_object_id_prefix(&commit_id, argv[0],
6642 GOT_OBJ_TYPE_COMMIT, repo);
6643 if (error != NULL) {
6644 struct got_reference *ref;
6645 if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
6646 goto done;
6647 error = got_ref_open(&ref, repo, argv[0], 0);
6648 if (error != NULL)
6649 goto done;
6650 error = got_ref_resolve(&commit_id, repo, ref);
6651 got_ref_close(ref);
6652 if (error != NULL)
6653 goto done;
6655 error = got_object_id_str(&commit_id_str, commit_id);
6656 if (error)
6657 goto done;
6659 error = got_ref_open(&head_ref, repo,
6660 got_worktree_get_head_ref_name(worktree), 0);
6661 if (error != NULL)
6662 goto done;
6664 error = check_same_branch(commit_id, head_ref, NULL, repo);
6665 if (error) {
6666 if (error->code != GOT_ERR_ANCESTRY)
6667 goto done;
6668 error = NULL;
6669 } else {
6670 error = got_error(GOT_ERR_SAME_BRANCH);
6671 goto done;
6674 error = got_object_open_as_commit(&commit, repo, commit_id);
6675 if (error)
6676 goto done;
6677 pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
6678 memset(&upa, 0, sizeof(upa));
6679 error = got_worktree_merge_files(worktree, pid ? pid->id : NULL,
6680 commit_id, repo, update_progress, &upa, check_cancelled,
6681 NULL);
6682 if (error != NULL)
6683 goto done;
6685 if (upa.did_something)
6686 printf("Merged commit %s\n", commit_id_str);
6687 print_update_progress_stats(&upa);
6688 done:
6689 if (commit)
6690 got_object_commit_close(commit);
6691 free(commit_id_str);
6692 if (head_ref)
6693 got_ref_close(head_ref);
6694 if (worktree)
6695 got_worktree_close(worktree);
6696 if (repo)
6697 got_repo_close(repo);
6698 return error;
6701 __dead static void
6702 usage_backout(void)
6704 fprintf(stderr, "usage: %s backout commit-id\n", getprogname());
6705 exit(1);
6708 static const struct got_error *
6709 cmd_backout(int argc, char *argv[])
6711 const struct got_error *error = NULL;
6712 struct got_worktree *worktree = NULL;
6713 struct got_repository *repo = NULL;
6714 char *cwd = NULL, *commit_id_str = NULL;
6715 struct got_object_id *commit_id = NULL;
6716 struct got_commit_object *commit = NULL;
6717 struct got_object_qid *pid;
6718 struct got_reference *head_ref = NULL;
6719 int ch;
6720 struct got_update_progress_arg upa;
6722 while ((ch = getopt(argc, argv, "")) != -1) {
6723 switch (ch) {
6724 default:
6725 usage_backout();
6726 /* NOTREACHED */
6730 argc -= optind;
6731 argv += optind;
6733 #ifndef PROFILE
6734 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6735 "unveil", NULL) == -1)
6736 err(1, "pledge");
6737 #endif
6738 if (argc != 1)
6739 usage_backout();
6741 cwd = getcwd(NULL, 0);
6742 if (cwd == NULL) {
6743 error = got_error_from_errno("getcwd");
6744 goto done;
6746 error = got_worktree_open(&worktree, cwd);
6747 if (error) {
6748 if (error->code == GOT_ERR_NOT_WORKTREE)
6749 error = wrap_not_worktree_error(error, "backout", cwd);
6750 goto done;
6753 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6754 NULL);
6755 if (error != NULL)
6756 goto done;
6758 error = apply_unveil(got_repo_get_path(repo), 0,
6759 got_worktree_get_root_path(worktree));
6760 if (error)
6761 goto done;
6763 error = got_repo_match_object_id_prefix(&commit_id, argv[0],
6764 GOT_OBJ_TYPE_COMMIT, repo);
6765 if (error != NULL) {
6766 struct got_reference *ref;
6767 if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
6768 goto done;
6769 error = got_ref_open(&ref, repo, argv[0], 0);
6770 if (error != NULL)
6771 goto done;
6772 error = got_ref_resolve(&commit_id, repo, ref);
6773 got_ref_close(ref);
6774 if (error != NULL)
6775 goto done;
6777 error = got_object_id_str(&commit_id_str, commit_id);
6778 if (error)
6779 goto done;
6781 error = got_ref_open(&head_ref, repo,
6782 got_worktree_get_head_ref_name(worktree), 0);
6783 if (error != NULL)
6784 goto done;
6786 error = check_same_branch(commit_id, head_ref, NULL, repo);
6787 if (error)
6788 goto done;
6790 error = got_object_open_as_commit(&commit, repo, commit_id);
6791 if (error)
6792 goto done;
6793 pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
6794 if (pid == NULL) {
6795 error = got_error(GOT_ERR_ROOT_COMMIT);
6796 goto done;
6799 memset(&upa, 0, sizeof(upa));
6800 error = got_worktree_merge_files(worktree, commit_id, pid->id, repo,
6801 update_progress, &upa, check_cancelled, NULL);
6802 if (error != NULL)
6803 goto done;
6805 if (upa.did_something)
6806 printf("Backed out commit %s\n", commit_id_str);
6807 print_update_progress_stats(&upa);
6808 done:
6809 if (commit)
6810 got_object_commit_close(commit);
6811 free(commit_id_str);
6812 if (head_ref)
6813 got_ref_close(head_ref);
6814 if (worktree)
6815 got_worktree_close(worktree);
6816 if (repo)
6817 got_repo_close(repo);
6818 return error;
6821 __dead static void
6822 usage_rebase(void)
6824 fprintf(stderr, "usage: %s rebase [-a] | [-c] | branch\n",
6825 getprogname());
6826 exit(1);
6829 void
6830 trim_logmsg(char *logmsg, int limit)
6832 char *nl;
6833 size_t len;
6835 len = strlen(logmsg);
6836 if (len > limit)
6837 len = limit;
6838 logmsg[len] = '\0';
6839 nl = strchr(logmsg, '\n');
6840 if (nl)
6841 *nl = '\0';
6844 static const struct got_error *
6845 get_short_logmsg(char **logmsg, int limit, struct got_commit_object *commit)
6847 const struct got_error *err;
6848 char *logmsg0 = NULL;
6849 const char *s;
6851 err = got_object_commit_get_logmsg(&logmsg0, commit);
6852 if (err)
6853 return err;
6855 s = logmsg0;
6856 while (isspace((unsigned char)s[0]))
6857 s++;
6859 *logmsg = strdup(s);
6860 if (*logmsg == NULL) {
6861 err = got_error_from_errno("strdup");
6862 goto done;
6865 trim_logmsg(*logmsg, limit);
6866 done:
6867 free(logmsg0);
6868 return err;
6871 static const struct got_error *
6872 show_rebase_merge_conflict(struct got_object_id *id, struct got_repository *repo)
6874 const struct got_error *err;
6875 struct got_commit_object *commit = NULL;
6876 char *id_str = NULL, *logmsg = NULL;
6878 err = got_object_open_as_commit(&commit, repo, id);
6879 if (err)
6880 return err;
6882 err = got_object_id_str(&id_str, id);
6883 if (err)
6884 goto done;
6886 id_str[12] = '\0';
6888 err = get_short_logmsg(&logmsg, 42, commit);
6889 if (err)
6890 goto done;
6892 printf("%s -> merge conflict: %s\n", id_str, logmsg);
6893 done:
6894 free(id_str);
6895 got_object_commit_close(commit);
6896 free(logmsg);
6897 return err;
6900 static const struct got_error *
6901 show_rebase_progress(struct got_commit_object *commit,
6902 struct got_object_id *old_id, struct got_object_id *new_id)
6904 const struct got_error *err;
6905 char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
6907 err = got_object_id_str(&old_id_str, old_id);
6908 if (err)
6909 goto done;
6911 if (new_id) {
6912 err = got_object_id_str(&new_id_str, new_id);
6913 if (err)
6914 goto done;
6917 old_id_str[12] = '\0';
6918 if (new_id_str)
6919 new_id_str[12] = '\0';
6921 err = get_short_logmsg(&logmsg, 42, commit);
6922 if (err)
6923 goto done;
6925 printf("%s -> %s: %s\n", old_id_str,
6926 new_id_str ? new_id_str : "no-op change", logmsg);
6927 done:
6928 free(old_id_str);
6929 free(new_id_str);
6930 free(logmsg);
6931 return err;
6934 static const struct got_error *
6935 rebase_complete(struct got_worktree *worktree, struct got_fileindex *fileindex,
6936 struct got_reference *branch, struct got_reference *new_base_branch,
6937 struct got_reference *tmp_branch, struct got_repository *repo)
6939 printf("Switching work tree to %s\n", got_ref_get_name(branch));
6940 return got_worktree_rebase_complete(worktree, fileindex,
6941 new_base_branch, tmp_branch, branch, repo);
6944 static const struct got_error *
6945 rebase_commit(struct got_pathlist_head *merged_paths,
6946 struct got_worktree *worktree, struct got_fileindex *fileindex,
6947 struct got_reference *tmp_branch,
6948 struct got_object_id *commit_id, struct got_repository *repo)
6950 const struct got_error *error;
6951 struct got_commit_object *commit;
6952 struct got_object_id *new_commit_id;
6954 error = got_object_open_as_commit(&commit, repo, commit_id);
6955 if (error)
6956 return error;
6958 error = got_worktree_rebase_commit(&new_commit_id, merged_paths,
6959 worktree, fileindex, tmp_branch, commit, commit_id, repo);
6960 if (error) {
6961 if (error->code != GOT_ERR_COMMIT_NO_CHANGES)
6962 goto done;
6963 error = show_rebase_progress(commit, commit_id, NULL);
6964 } else {
6965 error = show_rebase_progress(commit, commit_id, new_commit_id);
6966 free(new_commit_id);
6968 done:
6969 got_object_commit_close(commit);
6970 return error;
6973 struct check_path_prefix_arg {
6974 const char *path_prefix;
6975 size_t len;
6976 int errcode;
6979 static const struct got_error *
6980 check_path_prefix_in_diff(void *arg, struct got_blob_object *blob1,
6981 struct got_blob_object *blob2, struct got_object_id *id1,
6982 struct got_object_id *id2, const char *path1, const char *path2,
6983 mode_t mode1, mode_t mode2, struct got_repository *repo)
6985 struct check_path_prefix_arg *a = arg;
6987 if ((path1 && !got_path_is_child(path1, a->path_prefix, a->len)) ||
6988 (path2 && !got_path_is_child(path2, a->path_prefix, a->len)))
6989 return got_error(a->errcode);
6991 return NULL;
6994 static const struct got_error *
6995 check_path_prefix(struct got_object_id *parent_id,
6996 struct got_object_id *commit_id, const char *path_prefix,
6997 int errcode, struct got_repository *repo)
6999 const struct got_error *err;
7000 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
7001 struct got_commit_object *commit = NULL, *parent_commit = NULL;
7002 struct check_path_prefix_arg cpp_arg;
7004 if (got_path_is_root_dir(path_prefix))
7005 return NULL;
7007 err = got_object_open_as_commit(&commit, repo, commit_id);
7008 if (err)
7009 goto done;
7011 err = got_object_open_as_commit(&parent_commit, repo, parent_id);
7012 if (err)
7013 goto done;
7015 err = got_object_open_as_tree(&tree1, repo,
7016 got_object_commit_get_tree_id(parent_commit));
7017 if (err)
7018 goto done;
7020 err = got_object_open_as_tree(&tree2, repo,
7021 got_object_commit_get_tree_id(commit));
7022 if (err)
7023 goto done;
7025 cpp_arg.path_prefix = path_prefix;
7026 while (cpp_arg.path_prefix[0] == '/')
7027 cpp_arg.path_prefix++;
7028 cpp_arg.len = strlen(cpp_arg.path_prefix);
7029 cpp_arg.errcode = errcode;
7030 err = got_diff_tree(tree1, tree2, "", "", repo,
7031 check_path_prefix_in_diff, &cpp_arg, 0);
7032 done:
7033 if (tree1)
7034 got_object_tree_close(tree1);
7035 if (tree2)
7036 got_object_tree_close(tree2);
7037 if (commit)
7038 got_object_commit_close(commit);
7039 if (parent_commit)
7040 got_object_commit_close(parent_commit);
7041 return err;
7044 static const struct got_error *
7045 collect_commits(struct got_object_id_queue *commits,
7046 struct got_object_id *initial_commit_id,
7047 struct got_object_id *iter_start_id, struct got_object_id *iter_stop_id,
7048 const char *path_prefix, int path_prefix_errcode,
7049 struct got_repository *repo)
7051 const struct got_error *err = NULL;
7052 struct got_commit_graph *graph = NULL;
7053 struct got_object_id *parent_id = NULL;
7054 struct got_object_qid *qid;
7055 struct got_object_id *commit_id = initial_commit_id;
7057 err = got_commit_graph_open(&graph, "/", 1);
7058 if (err)
7059 return err;
7061 err = got_commit_graph_iter_start(graph, iter_start_id, repo,
7062 check_cancelled, NULL);
7063 if (err)
7064 goto done;
7065 while (got_object_id_cmp(commit_id, iter_stop_id) != 0) {
7066 err = got_commit_graph_iter_next(&parent_id, graph, repo,
7067 check_cancelled, NULL);
7068 if (err) {
7069 if (err->code == GOT_ERR_ITER_COMPLETED) {
7070 err = got_error_msg(GOT_ERR_ANCESTRY,
7071 "ran out of commits to rebase before "
7072 "youngest common ancestor commit has "
7073 "been reached?!?");
7075 goto done;
7076 } else {
7077 err = check_path_prefix(parent_id, commit_id,
7078 path_prefix, path_prefix_errcode, repo);
7079 if (err)
7080 goto done;
7082 err = got_object_qid_alloc(&qid, commit_id);
7083 if (err)
7084 goto done;
7085 SIMPLEQ_INSERT_HEAD(commits, qid, entry);
7086 commit_id = parent_id;
7089 done:
7090 got_commit_graph_close(graph);
7091 return err;
7094 static const struct got_error *
7095 cmd_rebase(int argc, char *argv[])
7097 const struct got_error *error = NULL;
7098 struct got_worktree *worktree = NULL;
7099 struct got_repository *repo = NULL;
7100 struct got_fileindex *fileindex = NULL;
7101 char *cwd = NULL;
7102 struct got_reference *branch = NULL;
7103 struct got_reference *new_base_branch = NULL, *tmp_branch = NULL;
7104 struct got_object_id *commit_id = NULL, *parent_id = NULL;
7105 struct got_object_id *resume_commit_id = NULL;
7106 struct got_object_id *branch_head_commit_id = NULL, *yca_id = NULL;
7107 struct got_commit_object *commit = NULL;
7108 int ch, rebase_in_progress = 0, abort_rebase = 0, continue_rebase = 0;
7109 int histedit_in_progress = 0;
7110 unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
7111 struct got_object_id_queue commits;
7112 struct got_pathlist_head merged_paths;
7113 const struct got_object_id_queue *parent_ids;
7114 struct got_object_qid *qid, *pid;
7116 SIMPLEQ_INIT(&commits);
7117 TAILQ_INIT(&merged_paths);
7119 while ((ch = getopt(argc, argv, "ac")) != -1) {
7120 switch (ch) {
7121 case 'a':
7122 abort_rebase = 1;
7123 break;
7124 case 'c':
7125 continue_rebase = 1;
7126 break;
7127 default:
7128 usage_rebase();
7129 /* NOTREACHED */
7133 argc -= optind;
7134 argv += optind;
7136 #ifndef PROFILE
7137 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
7138 "unveil", NULL) == -1)
7139 err(1, "pledge");
7140 #endif
7141 if (abort_rebase && continue_rebase)
7142 usage_rebase();
7143 else if (abort_rebase || continue_rebase) {
7144 if (argc != 0)
7145 usage_rebase();
7146 } else if (argc != 1)
7147 usage_rebase();
7149 cwd = getcwd(NULL, 0);
7150 if (cwd == NULL) {
7151 error = got_error_from_errno("getcwd");
7152 goto done;
7154 error = got_worktree_open(&worktree, cwd);
7155 if (error) {
7156 if (error->code == GOT_ERR_NOT_WORKTREE)
7157 error = wrap_not_worktree_error(error, "rebase", cwd);
7158 goto done;
7161 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
7162 NULL);
7163 if (error != NULL)
7164 goto done;
7166 error = apply_unveil(got_repo_get_path(repo), 0,
7167 got_worktree_get_root_path(worktree));
7168 if (error)
7169 goto done;
7171 error = got_worktree_histedit_in_progress(&histedit_in_progress,
7172 worktree);
7173 if (error)
7174 goto done;
7175 if (histedit_in_progress) {
7176 error = got_error(GOT_ERR_HISTEDIT_BUSY);
7177 goto done;
7180 error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
7181 if (error)
7182 goto done;
7184 if (abort_rebase) {
7185 struct got_update_progress_arg upa;
7186 if (!rebase_in_progress) {
7187 error = got_error(GOT_ERR_NOT_REBASING);
7188 goto done;
7190 error = got_worktree_rebase_continue(&resume_commit_id,
7191 &new_base_branch, &tmp_branch, &branch, &fileindex,
7192 worktree, repo);
7193 if (error)
7194 goto done;
7195 printf("Switching work tree to %s\n",
7196 got_ref_get_symref_target(new_base_branch));
7197 memset(&upa, 0, sizeof(upa));
7198 error = got_worktree_rebase_abort(worktree, fileindex, repo,
7199 new_base_branch, update_progress, &upa);
7200 if (error)
7201 goto done;
7202 printf("Rebase of %s aborted\n", got_ref_get_name(branch));
7203 print_update_progress_stats(&upa);
7204 goto done; /* nothing else to do */
7207 if (continue_rebase) {
7208 if (!rebase_in_progress) {
7209 error = got_error(GOT_ERR_NOT_REBASING);
7210 goto done;
7212 error = got_worktree_rebase_continue(&resume_commit_id,
7213 &new_base_branch, &tmp_branch, &branch, &fileindex,
7214 worktree, repo);
7215 if (error)
7216 goto done;
7218 error = rebase_commit(NULL, worktree, fileindex, tmp_branch,
7219 resume_commit_id, repo);
7220 if (error)
7221 goto done;
7223 yca_id = got_object_id_dup(resume_commit_id);
7224 if (yca_id == NULL) {
7225 error = got_error_from_errno("got_object_id_dup");
7226 goto done;
7228 } else {
7229 error = got_ref_open(&branch, repo, argv[0], 0);
7230 if (error != NULL)
7231 goto done;
7234 error = got_ref_resolve(&branch_head_commit_id, repo, branch);
7235 if (error)
7236 goto done;
7238 if (!continue_rebase) {
7239 struct got_object_id *base_commit_id;
7241 base_commit_id = got_worktree_get_base_commit_id(worktree);
7242 error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
7243 base_commit_id, branch_head_commit_id, repo,
7244 check_cancelled, NULL);
7245 if (error)
7246 goto done;
7247 if (yca_id == NULL) {
7248 error = got_error_msg(GOT_ERR_ANCESTRY,
7249 "specified branch shares no common ancestry "
7250 "with work tree's branch");
7251 goto done;
7254 error = check_same_branch(base_commit_id, branch, yca_id, repo);
7255 if (error) {
7256 if (error->code != GOT_ERR_ANCESTRY)
7257 goto done;
7258 error = NULL;
7259 } else {
7260 error = got_error_msg(GOT_ERR_SAME_BRANCH,
7261 "specified branch resolves to a commit which "
7262 "is already contained in work tree's branch");
7263 goto done;
7265 error = got_worktree_rebase_prepare(&new_base_branch,
7266 &tmp_branch, &fileindex, worktree, branch, repo);
7267 if (error)
7268 goto done;
7271 commit_id = branch_head_commit_id;
7272 error = got_object_open_as_commit(&commit, repo, commit_id);
7273 if (error)
7274 goto done;
7276 parent_ids = got_object_commit_get_parent_ids(commit);
7277 pid = SIMPLEQ_FIRST(parent_ids);
7278 if (pid == NULL) {
7279 if (!continue_rebase) {
7280 struct got_update_progress_arg upa;
7281 memset(&upa, 0, sizeof(upa));
7282 error = got_worktree_rebase_abort(worktree, fileindex,
7283 repo, new_base_branch, update_progress, &upa);
7284 if (error)
7285 goto done;
7286 printf("Rebase of %s aborted\n",
7287 got_ref_get_name(branch));
7288 print_update_progress_stats(&upa);
7291 error = got_error(GOT_ERR_EMPTY_REBASE);
7292 goto done;
7294 error = collect_commits(&commits, commit_id, pid->id,
7295 yca_id, got_worktree_get_path_prefix(worktree),
7296 GOT_ERR_REBASE_PATH, repo);
7297 got_object_commit_close(commit);
7298 commit = NULL;
7299 if (error)
7300 goto done;
7302 if (SIMPLEQ_EMPTY(&commits)) {
7303 if (continue_rebase) {
7304 error = rebase_complete(worktree, fileindex,
7305 branch, new_base_branch, tmp_branch, repo);
7306 goto done;
7307 } else {
7308 /* Fast-forward the reference of the branch. */
7309 struct got_object_id *new_head_commit_id;
7310 char *id_str;
7311 error = got_ref_resolve(&new_head_commit_id, repo,
7312 new_base_branch);
7313 if (error)
7314 goto done;
7315 error = got_object_id_str(&id_str, new_head_commit_id);
7316 printf("Forwarding %s to commit %s\n",
7317 got_ref_get_name(branch), id_str);
7318 free(id_str);
7319 error = got_ref_change_ref(branch,
7320 new_head_commit_id);
7321 if (error)
7322 goto done;
7326 pid = NULL;
7327 SIMPLEQ_FOREACH(qid, &commits, entry) {
7328 struct got_update_progress_arg upa;
7330 commit_id = qid->id;
7331 parent_id = pid ? pid->id : yca_id;
7332 pid = qid;
7334 memset(&upa, 0, sizeof(upa));
7335 error = got_worktree_rebase_merge_files(&merged_paths,
7336 worktree, fileindex, parent_id, commit_id, repo,
7337 update_progress, &upa, check_cancelled, NULL);
7338 if (error)
7339 goto done;
7341 print_update_progress_stats(&upa);
7342 if (upa.conflicts > 0)
7343 rebase_status = GOT_STATUS_CONFLICT;
7345 if (rebase_status == GOT_STATUS_CONFLICT) {
7346 error = show_rebase_merge_conflict(qid->id, repo);
7347 if (error)
7348 goto done;
7349 got_worktree_rebase_pathlist_free(&merged_paths);
7350 break;
7353 error = rebase_commit(&merged_paths, worktree, fileindex,
7354 tmp_branch, commit_id, repo);
7355 got_worktree_rebase_pathlist_free(&merged_paths);
7356 if (error)
7357 goto done;
7360 if (rebase_status == GOT_STATUS_CONFLICT) {
7361 error = got_worktree_rebase_postpone(worktree, fileindex);
7362 if (error)
7363 goto done;
7364 error = got_error_msg(GOT_ERR_CONFLICTS,
7365 "conflicts must be resolved before rebasing can continue");
7366 } else
7367 error = rebase_complete(worktree, fileindex, branch,
7368 new_base_branch, tmp_branch, repo);
7369 done:
7370 got_object_id_queue_free(&commits);
7371 free(branch_head_commit_id);
7372 free(resume_commit_id);
7373 free(yca_id);
7374 if (commit)
7375 got_object_commit_close(commit);
7376 if (branch)
7377 got_ref_close(branch);
7378 if (new_base_branch)
7379 got_ref_close(new_base_branch);
7380 if (tmp_branch)
7381 got_ref_close(tmp_branch);
7382 if (worktree)
7383 got_worktree_close(worktree);
7384 if (repo)
7385 got_repo_close(repo);
7386 return error;
7389 __dead static void
7390 usage_histedit(void)
7392 fprintf(stderr, "usage: %s histedit [-a] [-c] [-F histedit-script] [-m]\n",
7393 getprogname());
7394 exit(1);
7397 #define GOT_HISTEDIT_PICK 'p'
7398 #define GOT_HISTEDIT_EDIT 'e'
7399 #define GOT_HISTEDIT_FOLD 'f'
7400 #define GOT_HISTEDIT_DROP 'd'
7401 #define GOT_HISTEDIT_MESG 'm'
7403 static struct got_histedit_cmd {
7404 unsigned char code;
7405 const char *name;
7406 const char *desc;
7407 } got_histedit_cmds[] = {
7408 { GOT_HISTEDIT_PICK, "pick", "use commit" },
7409 { GOT_HISTEDIT_EDIT, "edit", "use commit but stop for amending" },
7410 { GOT_HISTEDIT_FOLD, "fold", "combine with next commit that will "
7411 "be used" },
7412 { GOT_HISTEDIT_DROP, "drop", "remove commit from history" },
7413 { GOT_HISTEDIT_MESG, "mesg",
7414 "single-line log message for commit above (open editor if empty)" },
7417 struct got_histedit_list_entry {
7418 TAILQ_ENTRY(got_histedit_list_entry) entry;
7419 struct got_object_id *commit_id;
7420 const struct got_histedit_cmd *cmd;
7421 char *logmsg;
7423 TAILQ_HEAD(got_histedit_list, got_histedit_list_entry);
7425 static const struct got_error *
7426 histedit_write_commit(struct got_object_id *commit_id, const char *cmdname,
7427 FILE *f, struct got_repository *repo)
7429 const struct got_error *err = NULL;
7430 char *logmsg = NULL, *id_str = NULL;
7431 struct got_commit_object *commit = NULL;
7432 int n;
7434 err = got_object_open_as_commit(&commit, repo, commit_id);
7435 if (err)
7436 goto done;
7438 err = get_short_logmsg(&logmsg, 34, commit);
7439 if (err)
7440 goto done;
7442 err = got_object_id_str(&id_str, commit_id);
7443 if (err)
7444 goto done;
7446 n = fprintf(f, "%s %s %s\n", cmdname, id_str, logmsg);
7447 if (n < 0)
7448 err = got_ferror(f, GOT_ERR_IO);
7449 done:
7450 if (commit)
7451 got_object_commit_close(commit);
7452 free(id_str);
7453 free(logmsg);
7454 return err;
7457 static const struct got_error *
7458 histedit_write_commit_list(struct got_object_id_queue *commits,
7459 FILE *f, int edit_logmsg_only, struct got_repository *repo)
7461 const struct got_error *err = NULL;
7462 struct got_object_qid *qid;
7464 if (SIMPLEQ_EMPTY(commits))
7465 return got_error(GOT_ERR_EMPTY_HISTEDIT);
7467 SIMPLEQ_FOREACH(qid, commits, entry) {
7468 err = histedit_write_commit(qid->id, got_histedit_cmds[0].name,
7469 f, repo);
7470 if (err)
7471 break;
7472 if (edit_logmsg_only) {
7473 int n = fprintf(f, "%c\n", GOT_HISTEDIT_MESG);
7474 if (n < 0) {
7475 err = got_ferror(f, GOT_ERR_IO);
7476 break;
7481 return err;
7484 static const struct got_error *
7485 write_cmd_list(FILE *f, const char *branch_name,
7486 struct got_object_id_queue *commits)
7488 const struct got_error *err = NULL;
7489 int n, i;
7490 char *id_str;
7491 struct got_object_qid *qid;
7493 qid = SIMPLEQ_FIRST(commits);
7494 err = got_object_id_str(&id_str, qid->id);
7495 if (err)
7496 return err;
7498 n = fprintf(f,
7499 "# Editing the history of branch '%s' starting at\n"
7500 "# commit %s\n"
7501 "# Commits will be processed in order from top to "
7502 "bottom of this file.\n", branch_name, id_str);
7503 if (n < 0) {
7504 err = got_ferror(f, GOT_ERR_IO);
7505 goto done;
7508 n = fprintf(f, "# Available histedit commands:\n");
7509 if (n < 0) {
7510 err = got_ferror(f, GOT_ERR_IO);
7511 goto done;
7514 for (i = 0; i < nitems(got_histedit_cmds); i++) {
7515 struct got_histedit_cmd *cmd = &got_histedit_cmds[i];
7516 n = fprintf(f, "# %s (%c): %s\n", cmd->name, cmd->code,
7517 cmd->desc);
7518 if (n < 0) {
7519 err = got_ferror(f, GOT_ERR_IO);
7520 break;
7523 done:
7524 free(id_str);
7525 return err;
7528 static const struct got_error *
7529 histedit_syntax_error(int lineno)
7531 static char msg[42];
7532 int ret;
7534 ret = snprintf(msg, sizeof(msg), "histedit syntax error on line %d",
7535 lineno);
7536 if (ret == -1 || ret >= sizeof(msg))
7537 return got_error(GOT_ERR_HISTEDIT_SYNTAX);
7539 return got_error_msg(GOT_ERR_HISTEDIT_SYNTAX, msg);
7542 static const struct got_error *
7543 append_folded_commit_msg(char **new_msg, struct got_histedit_list_entry *hle,
7544 char *logmsg, struct got_repository *repo)
7546 const struct got_error *err;
7547 struct got_commit_object *folded_commit = NULL;
7548 char *id_str, *folded_logmsg = NULL;
7550 err = got_object_id_str(&id_str, hle->commit_id);
7551 if (err)
7552 return err;
7554 err = got_object_open_as_commit(&folded_commit, repo, hle->commit_id);
7555 if (err)
7556 goto done;
7558 err = got_object_commit_get_logmsg(&folded_logmsg, folded_commit);
7559 if (err)
7560 goto done;
7561 if (asprintf(new_msg, "%s%s# log message of folded commit %s: %s",
7562 logmsg ? logmsg : "", logmsg ? "\n" : "", id_str,
7563 folded_logmsg) == -1) {
7564 err = got_error_from_errno("asprintf");
7566 done:
7567 if (folded_commit)
7568 got_object_commit_close(folded_commit);
7569 free(id_str);
7570 free(folded_logmsg);
7571 return err;
7574 static struct got_histedit_list_entry *
7575 get_folded_commits(struct got_histedit_list_entry *hle)
7577 struct got_histedit_list_entry *prev, *folded = NULL;
7579 prev = TAILQ_PREV(hle, got_histedit_list, entry);
7580 while (prev && (prev->cmd->code == GOT_HISTEDIT_FOLD ||
7581 prev->cmd->code == GOT_HISTEDIT_DROP)) {
7582 if (prev->cmd->code == GOT_HISTEDIT_FOLD)
7583 folded = prev;
7584 prev = TAILQ_PREV(prev, got_histedit_list, entry);
7587 return folded;
7590 static const struct got_error *
7591 histedit_edit_logmsg(struct got_histedit_list_entry *hle,
7592 struct got_repository *repo)
7594 char *logmsg_path = NULL, *id_str = NULL, *orig_logmsg = NULL;
7595 char *logmsg = NULL, *new_msg = NULL, *editor = NULL;
7596 const struct got_error *err = NULL;
7597 struct got_commit_object *commit = NULL;
7598 int fd;
7599 struct got_histedit_list_entry *folded = NULL;
7601 err = got_object_open_as_commit(&commit, repo, hle->commit_id);
7602 if (err)
7603 return err;
7605 folded = get_folded_commits(hle);
7606 if (folded) {
7607 while (folded != hle) {
7608 if (folded->cmd->code == GOT_HISTEDIT_DROP) {
7609 folded = TAILQ_NEXT(folded, entry);
7610 continue;
7612 err = append_folded_commit_msg(&new_msg, folded,
7613 logmsg, repo);
7614 if (err)
7615 goto done;
7616 free(logmsg);
7617 logmsg = new_msg;
7618 folded = TAILQ_NEXT(folded, entry);
7622 err = got_object_id_str(&id_str, hle->commit_id);
7623 if (err)
7624 goto done;
7625 err = got_object_commit_get_logmsg(&orig_logmsg, commit);
7626 if (err)
7627 goto done;
7628 if (asprintf(&new_msg,
7629 "%s\n# original log message of commit %s: %s",
7630 logmsg ? logmsg : "", id_str, orig_logmsg) == -1) {
7631 err = got_error_from_errno("asprintf");
7632 goto done;
7634 free(logmsg);
7635 logmsg = new_msg;
7637 err = got_object_id_str(&id_str, hle->commit_id);
7638 if (err)
7639 goto done;
7641 err = got_opentemp_named_fd(&logmsg_path, &fd,
7642 GOT_TMPDIR_STR "/got-logmsg");
7643 if (err)
7644 goto done;
7646 dprintf(fd, logmsg);
7647 close(fd);
7649 err = get_editor(&editor);
7650 if (err)
7651 goto done;
7653 err = edit_logmsg(&hle->logmsg, editor, logmsg_path, logmsg);
7654 if (err) {
7655 if (err->code != GOT_ERR_COMMIT_MSG_EMPTY)
7656 goto done;
7657 err = got_object_commit_get_logmsg(&hle->logmsg, commit);
7659 done:
7660 if (logmsg_path && unlink(logmsg_path) != 0 && err == NULL)
7661 err = got_error_from_errno2("unlink", logmsg_path);
7662 free(logmsg_path);
7663 free(logmsg);
7664 free(orig_logmsg);
7665 free(editor);
7666 if (commit)
7667 got_object_commit_close(commit);
7668 return err;
7671 static const struct got_error *
7672 histedit_parse_list(struct got_histedit_list *histedit_cmds,
7673 FILE *f, struct got_repository *repo)
7675 const struct got_error *err = NULL;
7676 char *line = NULL, *p, *end;
7677 size_t size;
7678 ssize_t len;
7679 int lineno = 0, i;
7680 const struct got_histedit_cmd *cmd;
7681 struct got_object_id *commit_id = NULL;
7682 struct got_histedit_list_entry *hle = NULL;
7684 for (;;) {
7685 len = getline(&line, &size, f);
7686 if (len == -1) {
7687 const struct got_error *getline_err;
7688 if (feof(f))
7689 break;
7690 getline_err = got_error_from_errno("getline");
7691 err = got_ferror(f, getline_err->code);
7692 break;
7694 lineno++;
7695 p = line;
7696 while (isspace((unsigned char)p[0]))
7697 p++;
7698 if (p[0] == '#' || p[0] == '\0') {
7699 free(line);
7700 line = NULL;
7701 continue;
7703 cmd = NULL;
7704 for (i = 0; i < nitems(got_histedit_cmds); i++) {
7705 cmd = &got_histedit_cmds[i];
7706 if (strncmp(cmd->name, p, strlen(cmd->name)) == 0 &&
7707 isspace((unsigned char)p[strlen(cmd->name)])) {
7708 p += strlen(cmd->name);
7709 break;
7711 if (p[0] == cmd->code && isspace((unsigned char)p[1])) {
7712 p++;
7713 break;
7716 if (i == nitems(got_histedit_cmds)) {
7717 err = histedit_syntax_error(lineno);
7718 break;
7720 while (isspace((unsigned char)p[0]))
7721 p++;
7722 if (cmd->code == GOT_HISTEDIT_MESG) {
7723 if (hle == NULL || hle->logmsg != NULL) {
7724 err = got_error(GOT_ERR_HISTEDIT_CMD);
7725 break;
7727 if (p[0] == '\0') {
7728 err = histedit_edit_logmsg(hle, repo);
7729 if (err)
7730 break;
7731 } else {
7732 hle->logmsg = strdup(p);
7733 if (hle->logmsg == NULL) {
7734 err = got_error_from_errno("strdup");
7735 break;
7738 free(line);
7739 line = NULL;
7740 continue;
7741 } else {
7742 end = p;
7743 while (end[0] && !isspace((unsigned char)end[0]))
7744 end++;
7745 *end = '\0';
7747 err = got_object_resolve_id_str(&commit_id, repo, p);
7748 if (err) {
7749 /* override error code */
7750 err = histedit_syntax_error(lineno);
7751 break;
7754 hle = malloc(sizeof(*hle));
7755 if (hle == NULL) {
7756 err = got_error_from_errno("malloc");
7757 break;
7759 hle->cmd = cmd;
7760 hle->commit_id = commit_id;
7761 hle->logmsg = NULL;
7762 commit_id = NULL;
7763 free(line);
7764 line = NULL;
7765 TAILQ_INSERT_TAIL(histedit_cmds, hle, entry);
7768 free(line);
7769 free(commit_id);
7770 return err;
7773 static const struct got_error *
7774 histedit_check_script(struct got_histedit_list *histedit_cmds,
7775 struct got_object_id_queue *commits, struct got_repository *repo)
7777 const struct got_error *err = NULL;
7778 struct got_object_qid *qid;
7779 struct got_histedit_list_entry *hle;
7780 static char msg[92];
7781 char *id_str;
7783 if (TAILQ_EMPTY(histedit_cmds))
7784 return got_error_msg(GOT_ERR_EMPTY_HISTEDIT,
7785 "histedit script contains no commands");
7786 if (SIMPLEQ_EMPTY(commits))
7787 return got_error(GOT_ERR_EMPTY_HISTEDIT);
7789 TAILQ_FOREACH(hle, histedit_cmds, entry) {
7790 struct got_histedit_list_entry *hle2;
7791 TAILQ_FOREACH(hle2, histedit_cmds, entry) {
7792 if (hle == hle2)
7793 continue;
7794 if (got_object_id_cmp(hle->commit_id,
7795 hle2->commit_id) != 0)
7796 continue;
7797 err = got_object_id_str(&id_str, hle->commit_id);
7798 if (err)
7799 return err;
7800 snprintf(msg, sizeof(msg), "commit %s is listed "
7801 "more than once in histedit script", id_str);
7802 free(id_str);
7803 return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
7807 SIMPLEQ_FOREACH(qid, commits, entry) {
7808 TAILQ_FOREACH(hle, histedit_cmds, entry) {
7809 if (got_object_id_cmp(qid->id, hle->commit_id) == 0)
7810 break;
7812 if (hle == NULL) {
7813 err = got_object_id_str(&id_str, qid->id);
7814 if (err)
7815 return err;
7816 snprintf(msg, sizeof(msg),
7817 "commit %s missing from histedit script", id_str);
7818 free(id_str);
7819 return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
7823 hle = TAILQ_LAST(histedit_cmds, got_histedit_list);
7824 if (hle && hle->cmd->code == GOT_HISTEDIT_FOLD)
7825 return got_error_msg(GOT_ERR_HISTEDIT_CMD,
7826 "last commit in histedit script cannot be folded");
7828 return NULL;
7831 static const struct got_error *
7832 histedit_run_editor(struct got_histedit_list *histedit_cmds,
7833 const char *path, struct got_object_id_queue *commits,
7834 struct got_repository *repo)
7836 const struct got_error *err = NULL;
7837 char *editor;
7838 FILE *f = NULL;
7840 err = get_editor(&editor);
7841 if (err)
7842 return err;
7844 if (spawn_editor(editor, path) == -1) {
7845 err = got_error_from_errno("failed spawning editor");
7846 goto done;
7849 f = fopen(path, "r");
7850 if (f == NULL) {
7851 err = got_error_from_errno("fopen");
7852 goto done;
7854 err = histedit_parse_list(histedit_cmds, f, repo);
7855 if (err)
7856 goto done;
7858 err = histedit_check_script(histedit_cmds, commits, repo);
7859 done:
7860 if (f && fclose(f) != 0 && err == NULL)
7861 err = got_error_from_errno("fclose");
7862 free(editor);
7863 return err;
7866 static const struct got_error *
7867 histedit_edit_list_retry(struct got_histedit_list *, const struct got_error *,
7868 struct got_object_id_queue *, const char *, const char *,
7869 struct got_repository *);
7871 static const struct got_error *
7872 histedit_edit_script(struct got_histedit_list *histedit_cmds,
7873 struct got_object_id_queue *commits, const char *branch_name,
7874 int edit_logmsg_only, struct got_repository *repo)
7876 const struct got_error *err;
7877 FILE *f = NULL;
7878 char *path = NULL;
7880 err = got_opentemp_named(&path, &f, "got-histedit");
7881 if (err)
7882 return err;
7884 err = write_cmd_list(f, branch_name, commits);
7885 if (err)
7886 goto done;
7888 err = histedit_write_commit_list(commits, f, edit_logmsg_only, repo);
7889 if (err)
7890 goto done;
7892 if (edit_logmsg_only) {
7893 rewind(f);
7894 err = histedit_parse_list(histedit_cmds, f, repo);
7895 } else {
7896 if (fclose(f) != 0) {
7897 err = got_error_from_errno("fclose");
7898 goto done;
7900 f = NULL;
7901 err = histedit_run_editor(histedit_cmds, path, commits, repo);
7902 if (err) {
7903 if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
7904 err->code != GOT_ERR_HISTEDIT_CMD)
7905 goto done;
7906 err = histedit_edit_list_retry(histedit_cmds, err,
7907 commits, path, branch_name, repo);
7910 done:
7911 if (f && fclose(f) != 0 && err == NULL)
7912 err = got_error_from_errno("fclose");
7913 if (path && unlink(path) != 0 && err == NULL)
7914 err = got_error_from_errno2("unlink", path);
7915 free(path);
7916 return err;
7919 static const struct got_error *
7920 histedit_save_list(struct got_histedit_list *histedit_cmds,
7921 struct got_worktree *worktree, struct got_repository *repo)
7923 const struct got_error *err = NULL;
7924 char *path = NULL;
7925 FILE *f = NULL;
7926 struct got_histedit_list_entry *hle;
7927 struct got_commit_object *commit = NULL;
7929 err = got_worktree_get_histedit_script_path(&path, worktree);
7930 if (err)
7931 return err;
7933 f = fopen(path, "w");
7934 if (f == NULL) {
7935 err = got_error_from_errno2("fopen", path);
7936 goto done;
7938 TAILQ_FOREACH(hle, histedit_cmds, entry) {
7939 err = histedit_write_commit(hle->commit_id, hle->cmd->name, f,
7940 repo);
7941 if (err)
7942 break;
7944 if (hle->logmsg) {
7945 int n = fprintf(f, "%c %s\n",
7946 GOT_HISTEDIT_MESG, hle->logmsg);
7947 if (n < 0) {
7948 err = got_ferror(f, GOT_ERR_IO);
7949 break;
7953 done:
7954 if (f && fclose(f) != 0 && err == NULL)
7955 err = got_error_from_errno("fclose");
7956 free(path);
7957 if (commit)
7958 got_object_commit_close(commit);
7959 return err;
7962 void
7963 histedit_free_list(struct got_histedit_list *histedit_cmds)
7965 struct got_histedit_list_entry *hle;
7967 while ((hle = TAILQ_FIRST(histedit_cmds))) {
7968 TAILQ_REMOVE(histedit_cmds, hle, entry);
7969 free(hle);
7973 static const struct got_error *
7974 histedit_load_list(struct got_histedit_list *histedit_cmds,
7975 const char *path, struct got_repository *repo)
7977 const struct got_error *err = NULL;
7978 FILE *f = NULL;
7980 f = fopen(path, "r");
7981 if (f == NULL) {
7982 err = got_error_from_errno2("fopen", path);
7983 goto done;
7986 err = histedit_parse_list(histedit_cmds, f, repo);
7987 done:
7988 if (f && fclose(f) != 0 && err == NULL)
7989 err = got_error_from_errno("fclose");
7990 return err;
7993 static const struct got_error *
7994 histedit_edit_list_retry(struct got_histedit_list *histedit_cmds,
7995 const struct got_error *edit_err, struct got_object_id_queue *commits,
7996 const char *path, const char *branch_name, struct got_repository *repo)
7998 const struct got_error *err = NULL, *prev_err = edit_err;
7999 int resp = ' ';
8001 while (resp != 'c' && resp != 'r' && resp != 'a') {
8002 printf("%s: %s\n(c)ontinue editing, (r)estart editing, "
8003 "or (a)bort: ", getprogname(), prev_err->msg);
8004 resp = getchar();
8005 if (resp == '\n')
8006 resp = getchar();
8007 if (resp == 'c') {
8008 histedit_free_list(histedit_cmds);
8009 err = histedit_run_editor(histedit_cmds, path, commits,
8010 repo);
8011 if (err) {
8012 if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
8013 err->code != GOT_ERR_HISTEDIT_CMD)
8014 break;
8015 prev_err = err;
8016 resp = ' ';
8017 continue;
8019 break;
8020 } else if (resp == 'r') {
8021 histedit_free_list(histedit_cmds);
8022 err = histedit_edit_script(histedit_cmds,
8023 commits, branch_name, 0, repo);
8024 if (err) {
8025 if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
8026 err->code != GOT_ERR_HISTEDIT_CMD)
8027 break;
8028 prev_err = err;
8029 resp = ' ';
8030 continue;
8032 break;
8033 } else if (resp == 'a') {
8034 err = got_error(GOT_ERR_HISTEDIT_CANCEL);
8035 break;
8036 } else
8037 printf("invalid response '%c'\n", resp);
8040 return err;
8043 static const struct got_error *
8044 histedit_complete(struct got_worktree *worktree,
8045 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
8046 struct got_reference *branch, struct got_repository *repo)
8048 printf("Switching work tree to %s\n",
8049 got_ref_get_symref_target(branch));
8050 return got_worktree_histedit_complete(worktree, fileindex, tmp_branch,
8051 branch, repo);
8054 static const struct got_error *
8055 show_histedit_progress(struct got_commit_object *commit,
8056 struct got_histedit_list_entry *hle, struct got_object_id *new_id)
8058 const struct got_error *err;
8059 char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
8061 err = got_object_id_str(&old_id_str, hle->commit_id);
8062 if (err)
8063 goto done;
8065 if (new_id) {
8066 err = got_object_id_str(&new_id_str, new_id);
8067 if (err)
8068 goto done;
8071 old_id_str[12] = '\0';
8072 if (new_id_str)
8073 new_id_str[12] = '\0';
8075 if (hle->logmsg) {
8076 logmsg = strdup(hle->logmsg);
8077 if (logmsg == NULL) {
8078 err = got_error_from_errno("strdup");
8079 goto done;
8081 trim_logmsg(logmsg, 42);
8082 } else {
8083 err = get_short_logmsg(&logmsg, 42, commit);
8084 if (err)
8085 goto done;
8088 switch (hle->cmd->code) {
8089 case GOT_HISTEDIT_PICK:
8090 case GOT_HISTEDIT_EDIT:
8091 printf("%s -> %s: %s\n", old_id_str,
8092 new_id_str ? new_id_str : "no-op change", logmsg);
8093 break;
8094 case GOT_HISTEDIT_DROP:
8095 case GOT_HISTEDIT_FOLD:
8096 printf("%s -> %s commit: %s\n", old_id_str, hle->cmd->name,
8097 logmsg);
8098 break;
8099 default:
8100 break;
8102 done:
8103 free(old_id_str);
8104 free(new_id_str);
8105 return err;
8108 static const struct got_error *
8109 histedit_commit(struct got_pathlist_head *merged_paths,
8110 struct got_worktree *worktree, struct got_fileindex *fileindex,
8111 struct got_reference *tmp_branch, struct got_histedit_list_entry *hle,
8112 struct got_repository *repo)
8114 const struct got_error *err;
8115 struct got_commit_object *commit;
8116 struct got_object_id *new_commit_id;
8118 if ((hle->cmd->code == GOT_HISTEDIT_EDIT || get_folded_commits(hle))
8119 && hle->logmsg == NULL) {
8120 err = histedit_edit_logmsg(hle, repo);
8121 if (err)
8122 return err;
8125 err = got_object_open_as_commit(&commit, repo, hle->commit_id);
8126 if (err)
8127 return err;
8129 err = got_worktree_histedit_commit(&new_commit_id, merged_paths,
8130 worktree, fileindex, tmp_branch, commit, hle->commit_id,
8131 hle->logmsg, repo);
8132 if (err) {
8133 if (err->code != GOT_ERR_COMMIT_NO_CHANGES)
8134 goto done;
8135 err = show_histedit_progress(commit, hle, NULL);
8136 } else {
8137 err = show_histedit_progress(commit, hle, new_commit_id);
8138 free(new_commit_id);
8140 done:
8141 got_object_commit_close(commit);
8142 return err;
8145 static const struct got_error *
8146 histedit_skip_commit(struct got_histedit_list_entry *hle,
8147 struct got_worktree *worktree, struct got_repository *repo)
8149 const struct got_error *error;
8150 struct got_commit_object *commit;
8152 error = got_worktree_histedit_skip_commit(worktree, hle->commit_id,
8153 repo);
8154 if (error)
8155 return error;
8157 error = got_object_open_as_commit(&commit, repo, hle->commit_id);
8158 if (error)
8159 return error;
8161 error = show_histedit_progress(commit, hle, NULL);
8162 got_object_commit_close(commit);
8163 return error;
8166 static const struct got_error *
8167 check_local_changes(void *arg, unsigned char status,
8168 unsigned char staged_status, const char *path,
8169 struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
8170 struct got_object_id *commit_id, int dirfd, const char *de_name)
8172 int *have_local_changes = arg;
8174 switch (status) {
8175 case GOT_STATUS_ADD:
8176 case GOT_STATUS_DELETE:
8177 case GOT_STATUS_MODIFY:
8178 case GOT_STATUS_CONFLICT:
8179 *have_local_changes = 1;
8180 return got_error(GOT_ERR_CANCELLED);
8181 default:
8182 break;
8185 switch (staged_status) {
8186 case GOT_STATUS_ADD:
8187 case GOT_STATUS_DELETE:
8188 case GOT_STATUS_MODIFY:
8189 *have_local_changes = 1;
8190 return got_error(GOT_ERR_CANCELLED);
8191 default:
8192 break;
8195 return NULL;
8198 static const struct got_error *
8199 cmd_histedit(int argc, char *argv[])
8201 const struct got_error *error = NULL;
8202 struct got_worktree *worktree = NULL;
8203 struct got_fileindex *fileindex = NULL;
8204 struct got_repository *repo = NULL;
8205 char *cwd = NULL;
8206 struct got_reference *branch = NULL;
8207 struct got_reference *tmp_branch = NULL;
8208 struct got_object_id *resume_commit_id = NULL;
8209 struct got_object_id *base_commit_id = NULL;
8210 struct got_object_id *head_commit_id = NULL;
8211 struct got_commit_object *commit = NULL;
8212 int ch, rebase_in_progress = 0;
8213 struct got_update_progress_arg upa;
8214 int edit_in_progress = 0, abort_edit = 0, continue_edit = 0;
8215 int edit_logmsg_only = 0;
8216 const char *edit_script_path = NULL;
8217 unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
8218 struct got_object_id_queue commits;
8219 struct got_pathlist_head merged_paths;
8220 const struct got_object_id_queue *parent_ids;
8221 struct got_object_qid *pid;
8222 struct got_histedit_list histedit_cmds;
8223 struct got_histedit_list_entry *hle;
8225 SIMPLEQ_INIT(&commits);
8226 TAILQ_INIT(&histedit_cmds);
8227 TAILQ_INIT(&merged_paths);
8228 memset(&upa, 0, sizeof(upa));
8230 while ((ch = getopt(argc, argv, "acF:m")) != -1) {
8231 switch (ch) {
8232 case 'a':
8233 abort_edit = 1;
8234 break;
8235 case 'c':
8236 continue_edit = 1;
8237 break;
8238 case 'F':
8239 edit_script_path = optarg;
8240 break;
8241 case 'm':
8242 edit_logmsg_only = 1;
8243 break;
8244 default:
8245 usage_histedit();
8246 /* NOTREACHED */
8250 argc -= optind;
8251 argv += optind;
8253 #ifndef PROFILE
8254 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8255 "unveil", NULL) == -1)
8256 err(1, "pledge");
8257 #endif
8258 if (abort_edit && continue_edit)
8259 errx(1, "histedit's -a and -c options are mutually exclusive");
8260 if (edit_script_path && edit_logmsg_only)
8261 errx(1, "histedit's -F and -m options are mutually exclusive");
8262 if (abort_edit && edit_logmsg_only)
8263 errx(1, "histedit's -a and -m options are mutually exclusive");
8264 if (continue_edit && edit_logmsg_only)
8265 errx(1, "histedit's -c and -m options are mutually exclusive");
8266 if (argc != 0)
8267 usage_histedit();
8270 * This command cannot apply unveil(2) in all cases because the
8271 * user may choose to run an editor to edit the histedit script
8272 * and to edit individual commit log messages.
8273 * unveil(2) traverses exec(2); if an editor is used we have to
8274 * apply unveil after edit script and log messages have been written.
8275 * XXX TODO: Make use of unveil(2) where possible.
8278 cwd = getcwd(NULL, 0);
8279 if (cwd == NULL) {
8280 error = got_error_from_errno("getcwd");
8281 goto done;
8283 error = got_worktree_open(&worktree, cwd);
8284 if (error) {
8285 if (error->code == GOT_ERR_NOT_WORKTREE)
8286 error = wrap_not_worktree_error(error, "histedit", cwd);
8287 goto done;
8290 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8291 NULL);
8292 if (error != NULL)
8293 goto done;
8295 error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
8296 if (error)
8297 goto done;
8298 if (rebase_in_progress) {
8299 error = got_error(GOT_ERR_REBASING);
8300 goto done;
8303 error = got_worktree_histedit_in_progress(&edit_in_progress, worktree);
8304 if (error)
8305 goto done;
8307 if (edit_in_progress && edit_logmsg_only) {
8308 error = got_error_msg(GOT_ERR_HISTEDIT_BUSY,
8309 "histedit operation is in progress in this "
8310 "work tree and must be continued or aborted "
8311 "before the -m option can be used");
8312 goto done;
8315 if (edit_in_progress && abort_edit) {
8316 error = got_worktree_histedit_continue(&resume_commit_id,
8317 &tmp_branch, &branch, &base_commit_id, &fileindex,
8318 worktree, repo);
8319 if (error)
8320 goto done;
8321 printf("Switching work tree to %s\n",
8322 got_ref_get_symref_target(branch));
8323 error = got_worktree_histedit_abort(worktree, fileindex, repo,
8324 branch, base_commit_id, update_progress, &upa);
8325 if (error)
8326 goto done;
8327 printf("Histedit of %s aborted\n",
8328 got_ref_get_symref_target(branch));
8329 print_update_progress_stats(&upa);
8330 goto done; /* nothing else to do */
8331 } else if (abort_edit) {
8332 error = got_error(GOT_ERR_NOT_HISTEDIT);
8333 goto done;
8336 if (continue_edit) {
8337 char *path;
8339 if (!edit_in_progress) {
8340 error = got_error(GOT_ERR_NOT_HISTEDIT);
8341 goto done;
8344 error = got_worktree_get_histedit_script_path(&path, worktree);
8345 if (error)
8346 goto done;
8348 error = histedit_load_list(&histedit_cmds, path, repo);
8349 free(path);
8350 if (error)
8351 goto done;
8353 error = got_worktree_histedit_continue(&resume_commit_id,
8354 &tmp_branch, &branch, &base_commit_id, &fileindex,
8355 worktree, repo);
8356 if (error)
8357 goto done;
8359 error = got_ref_resolve(&head_commit_id, repo, branch);
8360 if (error)
8361 goto done;
8363 error = got_object_open_as_commit(&commit, repo,
8364 head_commit_id);
8365 if (error)
8366 goto done;
8367 parent_ids = got_object_commit_get_parent_ids(commit);
8368 pid = SIMPLEQ_FIRST(parent_ids);
8369 if (pid == NULL) {
8370 error = got_error(GOT_ERR_EMPTY_HISTEDIT);
8371 goto done;
8373 error = collect_commits(&commits, head_commit_id, pid->id,
8374 base_commit_id, got_worktree_get_path_prefix(worktree),
8375 GOT_ERR_HISTEDIT_PATH, repo);
8376 got_object_commit_close(commit);
8377 commit = NULL;
8378 if (error)
8379 goto done;
8380 } else {
8381 if (edit_in_progress) {
8382 error = got_error(GOT_ERR_HISTEDIT_BUSY);
8383 goto done;
8386 error = got_ref_open(&branch, repo,
8387 got_worktree_get_head_ref_name(worktree), 0);
8388 if (error != NULL)
8389 goto done;
8391 if (strncmp(got_ref_get_name(branch), "refs/heads/", 11) != 0) {
8392 error = got_error_msg(GOT_ERR_COMMIT_BRANCH,
8393 "will not edit commit history of a branch outside "
8394 "the \"refs/heads/\" reference namespace");
8395 goto done;
8398 error = got_ref_resolve(&head_commit_id, repo, branch);
8399 got_ref_close(branch);
8400 branch = NULL;
8401 if (error)
8402 goto done;
8404 error = got_object_open_as_commit(&commit, repo,
8405 head_commit_id);
8406 if (error)
8407 goto done;
8408 parent_ids = got_object_commit_get_parent_ids(commit);
8409 pid = SIMPLEQ_FIRST(parent_ids);
8410 if (pid == NULL) {
8411 error = got_error(GOT_ERR_EMPTY_HISTEDIT);
8412 goto done;
8414 error = collect_commits(&commits, head_commit_id, pid->id,
8415 got_worktree_get_base_commit_id(worktree),
8416 got_worktree_get_path_prefix(worktree),
8417 GOT_ERR_HISTEDIT_PATH, repo);
8418 got_object_commit_close(commit);
8419 commit = NULL;
8420 if (error)
8421 goto done;
8423 if (SIMPLEQ_EMPTY(&commits)) {
8424 error = got_error(GOT_ERR_EMPTY_HISTEDIT);
8425 goto done;
8428 error = got_worktree_histedit_prepare(&tmp_branch, &branch,
8429 &base_commit_id, &fileindex, worktree, repo);
8430 if (error)
8431 goto done;
8433 if (edit_script_path) {
8434 error = histedit_load_list(&histedit_cmds,
8435 edit_script_path, repo);
8436 if (error) {
8437 got_worktree_histedit_abort(worktree, fileindex,
8438 repo, branch, base_commit_id,
8439 update_progress, &upa);
8440 print_update_progress_stats(&upa);
8441 goto done;
8443 } else {
8444 const char *branch_name;
8445 branch_name = got_ref_get_symref_target(branch);
8446 if (strncmp(branch_name, "refs/heads/", 11) == 0)
8447 branch_name += 11;
8448 error = histedit_edit_script(&histedit_cmds, &commits,
8449 branch_name, edit_logmsg_only, repo);
8450 if (error) {
8451 got_worktree_histedit_abort(worktree, fileindex,
8452 repo, branch, base_commit_id,
8453 update_progress, &upa);
8454 print_update_progress_stats(&upa);
8455 goto done;
8460 error = histedit_save_list(&histedit_cmds, worktree,
8461 repo);
8462 if (error) {
8463 got_worktree_histedit_abort(worktree, fileindex,
8464 repo, branch, base_commit_id,
8465 update_progress, &upa);
8466 print_update_progress_stats(&upa);
8467 goto done;
8472 error = histedit_check_script(&histedit_cmds, &commits, repo);
8473 if (error)
8474 goto done;
8476 TAILQ_FOREACH(hle, &histedit_cmds, entry) {
8477 if (resume_commit_id) {
8478 if (got_object_id_cmp(hle->commit_id,
8479 resume_commit_id) != 0)
8480 continue;
8482 resume_commit_id = NULL;
8483 if (hle->cmd->code == GOT_HISTEDIT_DROP ||
8484 hle->cmd->code == GOT_HISTEDIT_FOLD) {
8485 error = histedit_skip_commit(hle, worktree,
8486 repo);
8487 if (error)
8488 goto done;
8489 } else {
8490 struct got_pathlist_head paths;
8491 int have_changes = 0;
8493 TAILQ_INIT(&paths);
8494 error = got_pathlist_append(&paths, "", NULL);
8495 if (error)
8496 goto done;
8497 error = got_worktree_status(worktree, &paths,
8498 repo, check_local_changes, &have_changes,
8499 check_cancelled, NULL);
8500 got_pathlist_free(&paths);
8501 if (error) {
8502 if (error->code != GOT_ERR_CANCELLED)
8503 goto done;
8504 if (sigint_received || sigpipe_received)
8505 goto done;
8507 if (have_changes) {
8508 error = histedit_commit(NULL, worktree,
8509 fileindex, tmp_branch, hle, repo);
8510 if (error)
8511 goto done;
8512 } else {
8513 error = got_object_open_as_commit(
8514 &commit, repo, hle->commit_id);
8515 if (error)
8516 goto done;
8517 error = show_histedit_progress(commit,
8518 hle, NULL);
8519 got_object_commit_close(commit);
8520 commit = NULL;
8521 if (error)
8522 goto done;
8525 continue;
8528 if (hle->cmd->code == GOT_HISTEDIT_DROP) {
8529 error = histedit_skip_commit(hle, worktree, repo);
8530 if (error)
8531 goto done;
8532 continue;
8535 error = got_object_open_as_commit(&commit, repo,
8536 hle->commit_id);
8537 if (error)
8538 goto done;
8539 parent_ids = got_object_commit_get_parent_ids(commit);
8540 pid = SIMPLEQ_FIRST(parent_ids);
8542 error = got_worktree_histedit_merge_files(&merged_paths,
8543 worktree, fileindex, pid->id, hle->commit_id, repo,
8544 update_progress, &upa, check_cancelled, NULL);
8545 if (error)
8546 goto done;
8547 got_object_commit_close(commit);
8548 commit = NULL;
8550 print_update_progress_stats(&upa);
8551 if (upa.conflicts > 0)
8552 rebase_status = GOT_STATUS_CONFLICT;
8554 if (rebase_status == GOT_STATUS_CONFLICT) {
8555 error = show_rebase_merge_conflict(hle->commit_id,
8556 repo);
8557 if (error)
8558 goto done;
8559 got_worktree_rebase_pathlist_free(&merged_paths);
8560 break;
8563 if (hle->cmd->code == GOT_HISTEDIT_EDIT) {
8564 char *id_str;
8565 error = got_object_id_str(&id_str, hle->commit_id);
8566 if (error)
8567 goto done;
8568 printf("Stopping histedit for amending commit %s\n",
8569 id_str);
8570 free(id_str);
8571 got_worktree_rebase_pathlist_free(&merged_paths);
8572 error = got_worktree_histedit_postpone(worktree,
8573 fileindex);
8574 goto done;
8577 if (hle->cmd->code == GOT_HISTEDIT_FOLD) {
8578 error = histedit_skip_commit(hle, worktree, repo);
8579 if (error)
8580 goto done;
8581 continue;
8584 error = histedit_commit(&merged_paths, worktree, fileindex,
8585 tmp_branch, hle, repo);
8586 got_worktree_rebase_pathlist_free(&merged_paths);
8587 if (error)
8588 goto done;
8591 if (rebase_status == GOT_STATUS_CONFLICT) {
8592 error = got_worktree_histedit_postpone(worktree, fileindex);
8593 if (error)
8594 goto done;
8595 error = got_error_msg(GOT_ERR_CONFLICTS,
8596 "conflicts must be resolved before histedit can continue");
8597 } else
8598 error = histedit_complete(worktree, fileindex, tmp_branch,
8599 branch, repo);
8600 done:
8601 got_object_id_queue_free(&commits);
8602 histedit_free_list(&histedit_cmds);
8603 free(head_commit_id);
8604 free(base_commit_id);
8605 free(resume_commit_id);
8606 if (commit)
8607 got_object_commit_close(commit);
8608 if (branch)
8609 got_ref_close(branch);
8610 if (tmp_branch)
8611 got_ref_close(tmp_branch);
8612 if (worktree)
8613 got_worktree_close(worktree);
8614 if (repo)
8615 got_repo_close(repo);
8616 return error;
8619 __dead static void
8620 usage_integrate(void)
8622 fprintf(stderr, "usage: %s integrate branch\n", getprogname());
8623 exit(1);
8626 static const struct got_error *
8627 cmd_integrate(int argc, char *argv[])
8629 const struct got_error *error = NULL;
8630 struct got_repository *repo = NULL;
8631 struct got_worktree *worktree = NULL;
8632 char *cwd = NULL, *refname = NULL, *base_refname = NULL;
8633 const char *branch_arg = NULL;
8634 struct got_reference *branch_ref = NULL, *base_branch_ref = NULL;
8635 struct got_fileindex *fileindex = NULL;
8636 struct got_object_id *commit_id = NULL, *base_commit_id = NULL;
8637 int ch;
8638 struct got_update_progress_arg upa;
8640 while ((ch = getopt(argc, argv, "")) != -1) {
8641 switch (ch) {
8642 default:
8643 usage_integrate();
8644 /* NOTREACHED */
8648 argc -= optind;
8649 argv += optind;
8651 if (argc != 1)
8652 usage_integrate();
8653 branch_arg = argv[0];
8655 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8656 "unveil", NULL) == -1)
8657 err(1, "pledge");
8659 cwd = getcwd(NULL, 0);
8660 if (cwd == NULL) {
8661 error = got_error_from_errno("getcwd");
8662 goto done;
8665 error = got_worktree_open(&worktree, cwd);
8666 if (error) {
8667 if (error->code == GOT_ERR_NOT_WORKTREE)
8668 error = wrap_not_worktree_error(error, "integrate",
8669 cwd);
8670 goto done;
8673 error = check_rebase_or_histedit_in_progress(worktree);
8674 if (error)
8675 goto done;
8677 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8678 NULL);
8679 if (error != NULL)
8680 goto done;
8682 error = apply_unveil(got_repo_get_path(repo), 0,
8683 got_worktree_get_root_path(worktree));
8684 if (error)
8685 goto done;
8687 if (asprintf(&refname, "refs/heads/%s", branch_arg) == -1) {
8688 error = got_error_from_errno("asprintf");
8689 goto done;
8692 error = got_worktree_integrate_prepare(&fileindex, &branch_ref,
8693 &base_branch_ref, worktree, refname, repo);
8694 if (error)
8695 goto done;
8697 refname = strdup(got_ref_get_name(branch_ref));
8698 if (refname == NULL) {
8699 error = got_error_from_errno("strdup");
8700 got_worktree_integrate_abort(worktree, fileindex, repo,
8701 branch_ref, base_branch_ref);
8702 goto done;
8704 base_refname = strdup(got_ref_get_name(base_branch_ref));
8705 if (base_refname == NULL) {
8706 error = got_error_from_errno("strdup");
8707 got_worktree_integrate_abort(worktree, fileindex, repo,
8708 branch_ref, base_branch_ref);
8709 goto done;
8712 error = got_ref_resolve(&commit_id, repo, branch_ref);
8713 if (error)
8714 goto done;
8716 error = got_ref_resolve(&base_commit_id, repo, base_branch_ref);
8717 if (error)
8718 goto done;
8720 if (got_object_id_cmp(commit_id, base_commit_id) == 0) {
8721 error = got_error_msg(GOT_ERR_SAME_BRANCH,
8722 "specified branch has already been integrated");
8723 got_worktree_integrate_abort(worktree, fileindex, repo,
8724 branch_ref, base_branch_ref);
8725 goto done;
8728 error = check_linear_ancestry(commit_id, base_commit_id, 1, repo);
8729 if (error) {
8730 if (error->code == GOT_ERR_ANCESTRY)
8731 error = got_error(GOT_ERR_REBASE_REQUIRED);
8732 got_worktree_integrate_abort(worktree, fileindex, repo,
8733 branch_ref, base_branch_ref);
8734 goto done;
8737 memset(&upa, 0, sizeof(upa));
8738 error = got_worktree_integrate_continue(worktree, fileindex, repo,
8739 branch_ref, base_branch_ref, update_progress, &upa,
8740 check_cancelled, NULL);
8741 if (error)
8742 goto done;
8744 printf("Integrated %s into %s\n", refname, base_refname);
8745 print_update_progress_stats(&upa);
8746 done:
8747 if (repo)
8748 got_repo_close(repo);
8749 if (worktree)
8750 got_worktree_close(worktree);
8751 free(cwd);
8752 free(base_commit_id);
8753 free(commit_id);
8754 free(refname);
8755 free(base_refname);
8756 return error;
8759 __dead static void
8760 usage_stage(void)
8762 fprintf(stderr, "usage: %s stage [-l] | [-p] [-F response-script] "
8763 "[file-path ...]\n",
8764 getprogname());
8765 exit(1);
8768 static const struct got_error *
8769 print_stage(void *arg, unsigned char status, unsigned char staged_status,
8770 const char *path, struct got_object_id *blob_id,
8771 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
8772 int dirfd, const char *de_name)
8774 const struct got_error *err = NULL;
8775 char *id_str = NULL;
8777 if (staged_status != GOT_STATUS_ADD &&
8778 staged_status != GOT_STATUS_MODIFY &&
8779 staged_status != GOT_STATUS_DELETE)
8780 return NULL;
8782 if (staged_status == GOT_STATUS_ADD ||
8783 staged_status == GOT_STATUS_MODIFY)
8784 err = got_object_id_str(&id_str, staged_blob_id);
8785 else
8786 err = got_object_id_str(&id_str, blob_id);
8787 if (err)
8788 return err;
8790 printf("%s %c %s\n", id_str, staged_status, path);
8791 free(id_str);
8792 return NULL;
8795 static const struct got_error *
8796 cmd_stage(int argc, char *argv[])
8798 const struct got_error *error = NULL;
8799 struct got_repository *repo = NULL;
8800 struct got_worktree *worktree = NULL;
8801 char *cwd = NULL;
8802 struct got_pathlist_head paths;
8803 struct got_pathlist_entry *pe;
8804 int ch, list_stage = 0, pflag = 0;
8805 FILE *patch_script_file = NULL;
8806 const char *patch_script_path = NULL;
8807 struct choose_patch_arg cpa;
8809 TAILQ_INIT(&paths);
8811 while ((ch = getopt(argc, argv, "lpF:")) != -1) {
8812 switch (ch) {
8813 case 'l':
8814 list_stage = 1;
8815 break;
8816 case 'p':
8817 pflag = 1;
8818 break;
8819 case 'F':
8820 patch_script_path = optarg;
8821 break;
8822 default:
8823 usage_stage();
8824 /* NOTREACHED */
8828 argc -= optind;
8829 argv += optind;
8831 #ifndef PROFILE
8832 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8833 "unveil", NULL) == -1)
8834 err(1, "pledge");
8835 #endif
8836 if (list_stage && (pflag || patch_script_path))
8837 errx(1, "-l option cannot be used with other options");
8838 if (patch_script_path && !pflag)
8839 errx(1, "-F option can only be used together with -p option");
8841 cwd = getcwd(NULL, 0);
8842 if (cwd == NULL) {
8843 error = got_error_from_errno("getcwd");
8844 goto done;
8847 error = got_worktree_open(&worktree, cwd);
8848 if (error) {
8849 if (error->code == GOT_ERR_NOT_WORKTREE)
8850 error = wrap_not_worktree_error(error, "stage", cwd);
8851 goto done;
8854 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8855 NULL);
8856 if (error != NULL)
8857 goto done;
8859 if (patch_script_path) {
8860 patch_script_file = fopen(patch_script_path, "r");
8861 if (patch_script_file == NULL) {
8862 error = got_error_from_errno2("fopen",
8863 patch_script_path);
8864 goto done;
8867 error = apply_unveil(got_repo_get_path(repo), 0,
8868 got_worktree_get_root_path(worktree));
8869 if (error)
8870 goto done;
8872 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
8873 if (error)
8874 goto done;
8876 if (list_stage)
8877 error = got_worktree_status(worktree, &paths, repo,
8878 print_stage, NULL, check_cancelled, NULL);
8879 else {
8880 cpa.patch_script_file = patch_script_file;
8881 cpa.action = "stage";
8882 error = got_worktree_stage(worktree, &paths,
8883 pflag ? NULL : print_status, NULL,
8884 pflag ? choose_patch : NULL, &cpa, repo);
8886 done:
8887 if (patch_script_file && fclose(patch_script_file) == EOF &&
8888 error == NULL)
8889 error = got_error_from_errno2("fclose", patch_script_path);
8890 if (repo)
8891 got_repo_close(repo);
8892 if (worktree)
8893 got_worktree_close(worktree);
8894 TAILQ_FOREACH(pe, &paths, entry)
8895 free((char *)pe->path);
8896 got_pathlist_free(&paths);
8897 free(cwd);
8898 return error;
8901 __dead static void
8902 usage_unstage(void)
8904 fprintf(stderr, "usage: %s unstage [-p] [-F response-script] "
8905 "[file-path ...]\n",
8906 getprogname());
8907 exit(1);
8911 static const struct got_error *
8912 cmd_unstage(int argc, char *argv[])
8914 const struct got_error *error = NULL;
8915 struct got_repository *repo = NULL;
8916 struct got_worktree *worktree = NULL;
8917 char *cwd = NULL;
8918 struct got_pathlist_head paths;
8919 struct got_pathlist_entry *pe;
8920 int ch, pflag = 0;
8921 struct got_update_progress_arg upa;
8922 FILE *patch_script_file = NULL;
8923 const char *patch_script_path = NULL;
8924 struct choose_patch_arg cpa;
8926 TAILQ_INIT(&paths);
8928 while ((ch = getopt(argc, argv, "pF:")) != -1) {
8929 switch (ch) {
8930 case 'p':
8931 pflag = 1;
8932 break;
8933 case 'F':
8934 patch_script_path = optarg;
8935 break;
8936 default:
8937 usage_unstage();
8938 /* NOTREACHED */
8942 argc -= optind;
8943 argv += optind;
8945 #ifndef PROFILE
8946 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8947 "unveil", NULL) == -1)
8948 err(1, "pledge");
8949 #endif
8950 if (patch_script_path && !pflag)
8951 errx(1, "-F option can only be used together with -p option");
8953 cwd = getcwd(NULL, 0);
8954 if (cwd == NULL) {
8955 error = got_error_from_errno("getcwd");
8956 goto done;
8959 error = got_worktree_open(&worktree, cwd);
8960 if (error) {
8961 if (error->code == GOT_ERR_NOT_WORKTREE)
8962 error = wrap_not_worktree_error(error, "unstage", cwd);
8963 goto done;
8966 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8967 NULL);
8968 if (error != NULL)
8969 goto done;
8971 if (patch_script_path) {
8972 patch_script_file = fopen(patch_script_path, "r");
8973 if (patch_script_file == NULL) {
8974 error = got_error_from_errno2("fopen",
8975 patch_script_path);
8976 goto done;
8980 error = apply_unveil(got_repo_get_path(repo), 0,
8981 got_worktree_get_root_path(worktree));
8982 if (error)
8983 goto done;
8985 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
8986 if (error)
8987 goto done;
8989 cpa.patch_script_file = patch_script_file;
8990 cpa.action = "unstage";
8991 memset(&upa, 0, sizeof(upa));
8992 error = got_worktree_unstage(worktree, &paths, update_progress,
8993 &upa, pflag ? choose_patch : NULL, &cpa, repo);
8994 if (!error)
8995 print_update_progress_stats(&upa);
8996 done:
8997 if (patch_script_file && fclose(patch_script_file) == EOF &&
8998 error == NULL)
8999 error = got_error_from_errno2("fclose", patch_script_path);
9000 if (repo)
9001 got_repo_close(repo);
9002 if (worktree)
9003 got_worktree_close(worktree);
9004 TAILQ_FOREACH(pe, &paths, entry)
9005 free((char *)pe->path);
9006 got_pathlist_free(&paths);
9007 free(cwd);
9008 return error;
9011 __dead static void
9012 usage_cat(void)
9014 fprintf(stderr, "usage: %s cat [-r repository ] [ -c commit ] [ -P ] "
9015 "arg1 [arg2 ...]\n", getprogname());
9016 exit(1);
9019 static const struct got_error *
9020 cat_blob(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
9022 const struct got_error *err;
9023 struct got_blob_object *blob;
9025 err = got_object_open_as_blob(&blob, repo, id, 8192);
9026 if (err)
9027 return err;
9029 err = got_object_blob_dump_to_file(NULL, NULL, NULL, outfile, blob);
9030 got_object_blob_close(blob);
9031 return err;
9034 static const struct got_error *
9035 cat_tree(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
9037 const struct got_error *err;
9038 struct got_tree_object *tree;
9039 int nentries, i;
9041 err = got_object_open_as_tree(&tree, repo, id);
9042 if (err)
9043 return err;
9045 nentries = got_object_tree_get_nentries(tree);
9046 for (i = 0; i < nentries; i++) {
9047 struct got_tree_entry *te;
9048 char *id_str;
9049 if (sigint_received || sigpipe_received)
9050 break;
9051 te = got_object_tree_get_entry(tree, i);
9052 err = got_object_id_str(&id_str, got_tree_entry_get_id(te));
9053 if (err)
9054 break;
9055 fprintf(outfile, "%s %.7o %s\n", id_str,
9056 got_tree_entry_get_mode(te),
9057 got_tree_entry_get_name(te));
9058 free(id_str);
9061 got_object_tree_close(tree);
9062 return err;
9065 static const struct got_error *
9066 cat_commit(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
9068 const struct got_error *err;
9069 struct got_commit_object *commit;
9070 const struct got_object_id_queue *parent_ids;
9071 struct got_object_qid *pid;
9072 char *id_str = NULL;
9073 const char *logmsg = NULL;
9075 err = got_object_open_as_commit(&commit, repo, id);
9076 if (err)
9077 return err;
9079 err = got_object_id_str(&id_str, got_object_commit_get_tree_id(commit));
9080 if (err)
9081 goto done;
9083 fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_TREE, id_str);
9084 parent_ids = got_object_commit_get_parent_ids(commit);
9085 fprintf(outfile, "numparents %d\n",
9086 got_object_commit_get_nparents(commit));
9087 SIMPLEQ_FOREACH(pid, parent_ids, entry) {
9088 char *pid_str;
9089 err = got_object_id_str(&pid_str, pid->id);
9090 if (err)
9091 goto done;
9092 fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_PARENT, pid_str);
9093 free(pid_str);
9095 fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_AUTHOR,
9096 got_object_commit_get_author(commit),
9097 got_object_commit_get_author_time(commit));
9099 fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_COMMITTER,
9100 got_object_commit_get_author(commit),
9101 got_object_commit_get_committer_time(commit));
9103 logmsg = got_object_commit_get_logmsg_raw(commit);
9104 fprintf(outfile, "messagelen %zd\n", strlen(logmsg));
9105 fprintf(outfile, "%s", logmsg);
9106 done:
9107 free(id_str);
9108 got_object_commit_close(commit);
9109 return err;
9112 static const struct got_error *
9113 cat_tag(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
9115 const struct got_error *err;
9116 struct got_tag_object *tag;
9117 char *id_str = NULL;
9118 const char *tagmsg = NULL;
9120 err = got_object_open_as_tag(&tag, repo, id);
9121 if (err)
9122 return err;
9124 err = got_object_id_str(&id_str, got_object_tag_get_object_id(tag));
9125 if (err)
9126 goto done;
9128 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_OBJECT, id_str);
9130 switch (got_object_tag_get_object_type(tag)) {
9131 case GOT_OBJ_TYPE_BLOB:
9132 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
9133 GOT_OBJ_LABEL_BLOB);
9134 break;
9135 case GOT_OBJ_TYPE_TREE:
9136 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
9137 GOT_OBJ_LABEL_TREE);
9138 break;
9139 case GOT_OBJ_TYPE_COMMIT:
9140 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
9141 GOT_OBJ_LABEL_COMMIT);
9142 break;
9143 case GOT_OBJ_TYPE_TAG:
9144 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
9145 GOT_OBJ_LABEL_TAG);
9146 break;
9147 default:
9148 break;
9151 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TAG,
9152 got_object_tag_get_name(tag));
9154 fprintf(outfile, "%s%s %lld +0000\n", GOT_TAG_LABEL_TAGGER,
9155 got_object_tag_get_tagger(tag),
9156 got_object_tag_get_tagger_time(tag));
9158 tagmsg = got_object_tag_get_message(tag);
9159 fprintf(outfile, "messagelen %zd\n", strlen(tagmsg));
9160 fprintf(outfile, "%s", tagmsg);
9161 done:
9162 free(id_str);
9163 got_object_tag_close(tag);
9164 return err;
9167 static const struct got_error *
9168 cmd_cat(int argc, char *argv[])
9170 const struct got_error *error;
9171 struct got_repository *repo = NULL;
9172 struct got_worktree *worktree = NULL;
9173 char *cwd = NULL, *repo_path = NULL, *label = NULL;
9174 const char *commit_id_str = NULL;
9175 struct got_object_id *id = NULL, *commit_id = NULL;
9176 int ch, obj_type, i, force_path = 0;
9178 #ifndef PROFILE
9179 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
9180 NULL) == -1)
9181 err(1, "pledge");
9182 #endif
9184 while ((ch = getopt(argc, argv, "c:r:P")) != -1) {
9185 switch (ch) {
9186 case 'c':
9187 commit_id_str = optarg;
9188 break;
9189 case 'r':
9190 repo_path = realpath(optarg, NULL);
9191 if (repo_path == NULL)
9192 return got_error_from_errno2("realpath",
9193 optarg);
9194 got_path_strip_trailing_slashes(repo_path);
9195 break;
9196 case 'P':
9197 force_path = 1;
9198 break;
9199 default:
9200 usage_cat();
9201 /* NOTREACHED */
9205 argc -= optind;
9206 argv += optind;
9208 cwd = getcwd(NULL, 0);
9209 if (cwd == NULL) {
9210 error = got_error_from_errno("getcwd");
9211 goto done;
9213 error = got_worktree_open(&worktree, cwd);
9214 if (error && error->code != GOT_ERR_NOT_WORKTREE)
9215 goto done;
9216 if (worktree) {
9217 if (repo_path == NULL) {
9218 repo_path = strdup(
9219 got_worktree_get_repo_path(worktree));
9220 if (repo_path == NULL) {
9221 error = got_error_from_errno("strdup");
9222 goto done;
9227 if (repo_path == NULL) {
9228 repo_path = getcwd(NULL, 0);
9229 if (repo_path == NULL)
9230 return got_error_from_errno("getcwd");
9233 error = got_repo_open(&repo, repo_path, NULL);
9234 free(repo_path);
9235 if (error != NULL)
9236 goto done;
9238 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
9239 if (error)
9240 goto done;
9242 if (commit_id_str == NULL)
9243 commit_id_str = GOT_REF_HEAD;
9244 error = got_repo_match_object_id(&commit_id, NULL,
9245 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
9246 if (error)
9247 goto done;
9249 for (i = 0; i < argc; i++) {
9250 if (force_path) {
9251 error = got_object_id_by_path(&id, repo, commit_id,
9252 argv[i]);
9253 if (error)
9254 break;
9255 } else {
9256 error = got_repo_match_object_id(&id, &label, argv[i],
9257 GOT_OBJ_TYPE_ANY, 0, repo);
9258 if (error) {
9259 if (error->code != GOT_ERR_BAD_OBJ_ID_STR &&
9260 error->code != GOT_ERR_NOT_REF)
9261 break;
9262 error = got_object_id_by_path(&id, repo,
9263 commit_id, argv[i]);
9264 if (error)
9265 break;
9269 error = got_object_get_type(&obj_type, repo, id);
9270 if (error)
9271 break;
9273 switch (obj_type) {
9274 case GOT_OBJ_TYPE_BLOB:
9275 error = cat_blob(id, repo, stdout);
9276 break;
9277 case GOT_OBJ_TYPE_TREE:
9278 error = cat_tree(id, repo, stdout);
9279 break;
9280 case GOT_OBJ_TYPE_COMMIT:
9281 error = cat_commit(id, repo, stdout);
9282 break;
9283 case GOT_OBJ_TYPE_TAG:
9284 error = cat_tag(id, repo, stdout);
9285 break;
9286 default:
9287 error = got_error(GOT_ERR_OBJ_TYPE);
9288 break;
9290 if (error)
9291 break;
9292 free(label);
9293 label = NULL;
9294 free(id);
9295 id = NULL;
9297 done:
9298 free(label);
9299 free(id);
9300 free(commit_id);
9301 if (worktree)
9302 got_worktree_close(worktree);
9303 if (repo) {
9304 const struct got_error *repo_error;
9305 repo_error = got_repo_close(repo);
9306 if (error == NULL)
9307 error = repo_error;
9309 return error;