Blob


1 /*
2 * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 #include <sys/queue.h>
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <sys/param.h>
22 #include <sys/wait.h>
24 #include <err.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <limits.h>
28 #include <locale.h>
29 #include <ctype.h>
30 #include <signal.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
35 #include <libgen.h>
36 #include <time.h>
37 #include <paths.h>
38 #include <regex.h>
39 #include <getopt.h>
41 #include "got_version.h"
42 #include "got_error.h"
43 #include "got_object.h"
44 #include "got_reference.h"
45 #include "got_repository.h"
46 #include "got_path.h"
47 #include "got_cancel.h"
48 #include "got_worktree.h"
49 #include "got_diff.h"
50 #include "got_commit_graph.h"
51 #include "got_blame.h"
52 #include "got_privsep.h"
53 #include "got_opentemp.h"
55 #ifndef nitems
56 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
57 #endif
59 static volatile sig_atomic_t sigint_received;
60 static volatile sig_atomic_t sigpipe_received;
62 static void
63 catch_sigint(int signo)
64 {
65 sigint_received = 1;
66 }
68 static void
69 catch_sigpipe(int signo)
70 {
71 sigpipe_received = 1;
72 }
75 struct got_cmd {
76 const char *cmd_name;
77 const struct got_error *(*cmd_main)(int, char *[]);
78 void (*cmd_usage)(void);
79 const char *cmd_alias;
80 };
82 __dead static void usage(int);
83 __dead static void usage_init(void);
84 __dead static void usage_import(void);
85 __dead static void usage_checkout(void);
86 __dead static void usage_update(void);
87 __dead static void usage_log(void);
88 __dead static void usage_diff(void);
89 __dead static void usage_blame(void);
90 __dead static void usage_tree(void);
91 __dead static void usage_status(void);
92 __dead static void usage_ref(void);
93 __dead static void usage_branch(void);
94 __dead static void usage_tag(void);
95 __dead static void usage_add(void);
96 __dead static void usage_remove(void);
97 __dead static void usage_revert(void);
98 __dead static void usage_commit(void);
99 __dead static void usage_cherrypick(void);
100 __dead static void usage_backout(void);
101 __dead static void usage_rebase(void);
102 __dead static void usage_histedit(void);
103 __dead static void usage_integrate(void);
104 __dead static void usage_stage(void);
105 __dead static void usage_unstage(void);
106 __dead static void usage_cat(void);
108 static const struct got_error* cmd_init(int, char *[]);
109 static const struct got_error* cmd_import(int, char *[]);
110 static const struct got_error* cmd_checkout(int, char *[]);
111 static const struct got_error* cmd_update(int, char *[]);
112 static const struct got_error* cmd_log(int, char *[]);
113 static const struct got_error* cmd_diff(int, char *[]);
114 static const struct got_error* cmd_blame(int, char *[]);
115 static const struct got_error* cmd_tree(int, char *[]);
116 static const struct got_error* cmd_status(int, char *[]);
117 static const struct got_error* cmd_ref(int, char *[]);
118 static const struct got_error* cmd_branch(int, char *[]);
119 static const struct got_error* cmd_tag(int, char *[]);
120 static const struct got_error* cmd_add(int, char *[]);
121 static const struct got_error* cmd_remove(int, char *[]);
122 static const struct got_error* cmd_revert(int, char *[]);
123 static const struct got_error* cmd_commit(int, char *[]);
124 static const struct got_error* cmd_cherrypick(int, char *[]);
125 static const struct got_error* cmd_backout(int, char *[]);
126 static const struct got_error* cmd_rebase(int, char *[]);
127 static const struct got_error* cmd_histedit(int, char *[]);
128 static const struct got_error* cmd_integrate(int, char *[]);
129 static const struct got_error* cmd_stage(int, char *[]);
130 static const struct got_error* cmd_unstage(int, char *[]);
131 static const struct got_error* cmd_cat(int, char *[]);
133 static struct got_cmd got_commands[] = {
134 { "init", cmd_init, usage_init, "in" },
135 { "import", cmd_import, usage_import, "im" },
136 { "checkout", cmd_checkout, usage_checkout, "co" },
137 { "update", cmd_update, usage_update, "up" },
138 { "log", cmd_log, usage_log, "" },
139 { "diff", cmd_diff, usage_diff, "di" },
140 { "blame", cmd_blame, usage_blame, "bl" },
141 { "tree", cmd_tree, usage_tree, "tr" },
142 { "status", cmd_status, usage_status, "st" },
143 { "ref", cmd_ref, usage_ref, "" },
144 { "branch", cmd_branch, usage_branch, "br" },
145 { "tag", cmd_tag, usage_tag, "" },
146 { "add", cmd_add, usage_add, "" },
147 { "remove", cmd_remove, usage_remove, "rm" },
148 { "revert", cmd_revert, usage_revert, "rv" },
149 { "commit", cmd_commit, usage_commit, "ci" },
150 { "cherrypick", cmd_cherrypick, usage_cherrypick, "cy" },
151 { "backout", cmd_backout, usage_backout, "bo" },
152 { "rebase", cmd_rebase, usage_rebase, "rb" },
153 { "histedit", cmd_histedit, usage_histedit, "he" },
154 { "integrate", cmd_integrate, usage_integrate,"ig" },
155 { "stage", cmd_stage, usage_stage, "sg" },
156 { "unstage", cmd_unstage, usage_unstage, "ug" },
157 { "cat", cmd_cat, usage_cat, "" },
158 };
160 static void
161 list_commands(void)
163 int i;
165 fprintf(stderr, "commands:");
166 for (i = 0; i < nitems(got_commands); i++) {
167 struct got_cmd *cmd = &got_commands[i];
168 fprintf(stderr, " %s", cmd->cmd_name);
170 fputc('\n', stderr);
173 int
174 main(int argc, char *argv[])
176 struct got_cmd *cmd;
177 unsigned int i;
178 int ch;
179 int hflag = 0, Vflag = 0;
180 static struct option longopts[] = {
181 { "version", no_argument, NULL, 'V' },
182 { NULL, 0, NULL, 0}
183 };
185 setlocale(LC_CTYPE, "");
187 while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
188 switch (ch) {
189 case 'h':
190 hflag = 1;
191 break;
192 case 'V':
193 Vflag = 1;
194 break;
195 default:
196 usage(hflag);
197 /* NOTREACHED */
201 argc -= optind;
202 argv += optind;
203 optind = 0;
205 if (Vflag) {
206 got_version_print_str();
207 return 1;
210 if (argc <= 0)
211 usage(hflag);
213 signal(SIGINT, catch_sigint);
214 signal(SIGPIPE, catch_sigpipe);
216 for (i = 0; i < nitems(got_commands); i++) {
217 const struct got_error *error;
219 cmd = &got_commands[i];
221 if (strcmp(cmd->cmd_name, argv[0]) != 0 &&
222 strcmp(cmd->cmd_alias, argv[0]) != 0)
223 continue;
225 if (hflag)
226 got_commands[i].cmd_usage();
228 error = got_commands[i].cmd_main(argc, argv);
229 if (error && error->code != GOT_ERR_CANCELLED &&
230 error->code != GOT_ERR_PRIVSEP_EXIT &&
231 !(sigpipe_received &&
232 error->code == GOT_ERR_ERRNO && errno == EPIPE) &&
233 !(sigint_received &&
234 error->code == GOT_ERR_ERRNO && errno == EINTR)) {
235 fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
236 return 1;
239 return 0;
242 fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
243 list_commands();
244 return 1;
247 __dead static void
248 usage(int hflag)
250 fprintf(stderr, "usage: %s [-h] [-V | --version] command [arg ...]\n",
251 getprogname());
252 if (hflag)
253 list_commands();
254 exit(1);
257 static const struct got_error *
258 get_editor(char **abspath)
260 const struct got_error *err = NULL;
261 const char *editor;
263 *abspath = NULL;
265 editor = getenv("VISUAL");
266 if (editor == NULL)
267 editor = getenv("EDITOR");
269 if (editor) {
270 err = got_path_find_prog(abspath, editor);
271 if (err)
272 return err;
275 if (*abspath == NULL) {
276 *abspath = strdup("/bin/ed");
277 if (*abspath == NULL)
278 return got_error_from_errno("strdup");
281 return NULL;
284 static const struct got_error *
285 apply_unveil(const char *repo_path, int repo_read_only,
286 const char *worktree_path)
288 const struct got_error *err;
290 #ifdef PROFILE
291 if (unveil("gmon.out", "rwc") != 0)
292 return got_error_from_errno2("unveil", "gmon.out");
293 #endif
294 if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
295 return got_error_from_errno2("unveil", repo_path);
297 if (worktree_path && unveil(worktree_path, "rwc") != 0)
298 return got_error_from_errno2("unveil", worktree_path);
300 if (unveil("/tmp", "rwc") != 0)
301 return got_error_from_errno2("unveil", "/tmp");
303 err = got_privsep_unveil_exec_helpers();
304 if (err != NULL)
305 return err;
307 if (unveil(NULL, NULL) != 0)
308 return got_error_from_errno("unveil");
310 return NULL;
313 __dead static void
314 usage_init(void)
316 fprintf(stderr, "usage: %s init repository-path\n", getprogname());
317 exit(1);
320 static const struct got_error *
321 cmd_init(int argc, char *argv[])
323 const struct got_error *error = NULL;
324 char *repo_path = NULL;
325 int ch;
327 while ((ch = getopt(argc, argv, "")) != -1) {
328 switch (ch) {
329 default:
330 usage_init();
331 /* NOTREACHED */
335 argc -= optind;
336 argv += optind;
338 #ifndef PROFILE
339 if (pledge("stdio rpath wpath cpath unveil", NULL) == -1)
340 err(1, "pledge");
341 #endif
342 if (argc != 1)
343 usage_init();
345 repo_path = strdup(argv[0]);
346 if (repo_path == NULL)
347 return got_error_from_errno("strdup");
349 got_path_strip_trailing_slashes(repo_path);
351 error = got_path_mkdir(repo_path);
352 if (error &&
353 !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
354 goto done;
356 error = apply_unveil(repo_path, 0, NULL);
357 if (error)
358 goto done;
360 error = got_repo_init(repo_path);
361 done:
362 free(repo_path);
363 return error;
366 __dead static void
367 usage_import(void)
369 fprintf(stderr, "usage: %s import [-b branch] [-m message] "
370 "[-r repository-path] [-I pattern] path\n", getprogname());
371 exit(1);
374 int
375 spawn_editor(const char *editor, const char *file)
377 pid_t pid;
378 sig_t sighup, sigint, sigquit;
379 int st = -1;
381 sighup = signal(SIGHUP, SIG_IGN);
382 sigint = signal(SIGINT, SIG_IGN);
383 sigquit = signal(SIGQUIT, SIG_IGN);
385 switch (pid = fork()) {
386 case -1:
387 goto doneediting;
388 case 0:
389 execl(editor, editor, file, (char *)NULL);
390 _exit(127);
393 while (waitpid(pid, &st, 0) == -1)
394 if (errno != EINTR)
395 break;
397 doneediting:
398 (void)signal(SIGHUP, sighup);
399 (void)signal(SIGINT, sigint);
400 (void)signal(SIGQUIT, sigquit);
402 if (!WIFEXITED(st)) {
403 errno = EINTR;
404 return -1;
407 return WEXITSTATUS(st);
410 static const struct got_error *
411 edit_logmsg(char **logmsg, const char *editor, const char *logmsg_path,
412 const char *initial_content)
414 const struct got_error *err = NULL;
415 char buf[1024];
416 struct stat st, st2;
417 FILE *fp;
418 int content_changed = 0;
419 size_t len;
421 *logmsg = NULL;
423 if (stat(logmsg_path, &st) == -1)
424 return got_error_from_errno2("stat", logmsg_path);
426 if (spawn_editor(editor, logmsg_path) == -1)
427 return got_error_from_errno("failed spawning editor");
429 if (stat(logmsg_path, &st2) == -1)
430 return got_error_from_errno("stat");
432 if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size)
433 return got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
434 "no changes made to commit message, aborting");
436 *logmsg = malloc(st2.st_size + 1);
437 if (*logmsg == NULL)
438 return got_error_from_errno("malloc");
439 (*logmsg)[0] = '\0';
440 len = 0;
442 fp = fopen(logmsg_path, "r");
443 if (fp == NULL) {
444 err = got_error_from_errno("fopen");
445 goto done;
447 while (fgets(buf, sizeof(buf), fp) != NULL) {
448 if (!content_changed && strcmp(buf, initial_content) != 0)
449 content_changed = 1;
450 if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
451 continue; /* remove comments and leading empty lines */
452 len = strlcat(*logmsg, buf, st2.st_size);
454 fclose(fp);
456 while (len > 0 && (*logmsg)[len - 1] == '\n') {
457 (*logmsg)[len - 1] = '\0';
458 len--;
461 if (len == 0 || !content_changed)
462 err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
463 "commit message cannot be empty, aborting");
464 done:
465 if (err) {
466 free(*logmsg);
467 *logmsg = NULL;
469 return err;
472 static const struct got_error *
473 collect_import_msg(char **logmsg, char **logmsg_path, const char *editor,
474 const char *path_dir, const char *branch_name)
476 char *initial_content = NULL;
477 const struct got_error *err = NULL;
478 int fd;
480 if (asprintf(&initial_content,
481 "\n# %s to be imported to branch %s\n", path_dir,
482 branch_name) == -1)
483 return got_error_from_errno("asprintf");
485 err = got_opentemp_named_fd(logmsg_path, &fd, "/tmp/got-importmsg");
486 if (err)
487 goto done;
489 dprintf(fd, initial_content);
490 close(fd);
492 err = edit_logmsg(logmsg, editor, *logmsg_path, initial_content);
493 done:
494 free(initial_content);
495 return err;
498 static const struct got_error *
499 import_progress(void *arg, const char *path)
501 printf("A %s\n", path);
502 return NULL;
505 static const struct got_error *
506 get_author(char **author, struct got_repository *repo)
508 const struct got_error *err = NULL;
509 const char *got_author, *name, *email;
511 *author = NULL;
513 name = got_repo_get_gitconfig_author_name(repo);
514 email = got_repo_get_gitconfig_author_email(repo);
515 if (name && email) {
516 if (asprintf(author, "%s <%s>", name, email) == -1)
517 return got_error_from_errno("asprintf");
518 return NULL;
521 got_author = getenv("GOT_AUTHOR");
522 if (got_author == NULL) {
523 name = got_repo_get_global_gitconfig_author_name(repo);
524 email = got_repo_get_global_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;
530 /* TODO: Look up user in password database? */
531 return got_error(GOT_ERR_COMMIT_NO_AUTHOR);
534 *author = strdup(got_author);
535 if (*author == NULL)
536 return got_error_from_errno("strdup");
538 /*
539 * Really dumb email address check; we're only doing this to
540 * avoid git's object parser breaking on commits we create.
541 */
542 while (*got_author && *got_author != '<')
543 got_author++;
544 if (*got_author != '<') {
545 err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
546 goto done;
548 while (*got_author && *got_author != '@')
549 got_author++;
550 if (*got_author != '@') {
551 err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
552 goto done;
554 while (*got_author && *got_author != '>')
555 got_author++;
556 if (*got_author != '>')
557 err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
558 done:
559 if (err) {
560 free(*author);
561 *author = NULL;
563 return err;
566 static const struct got_error *
567 get_gitconfig_path(char **gitconfig_path)
569 const char *homedir = getenv("HOME");
571 *gitconfig_path = NULL;
572 if (homedir) {
573 if (asprintf(gitconfig_path, "%s/.gitconfig", homedir) == -1)
574 return got_error_from_errno("asprintf");
577 return NULL;
580 static const struct got_error *
581 cmd_import(int argc, char *argv[])
583 const struct got_error *error = NULL;
584 char *path_dir = NULL, *repo_path = NULL, *logmsg = NULL;
585 char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
586 const char *branch_name = "main";
587 char *refname = NULL, *id_str = NULL, *logmsg_path = NULL;
588 struct got_repository *repo = NULL;
589 struct got_reference *branch_ref = NULL, *head_ref = NULL;
590 struct got_object_id *new_commit_id = NULL;
591 int ch;
592 struct got_pathlist_head ignores;
593 struct got_pathlist_entry *pe;
594 int preserve_logmsg = 0;
596 TAILQ_INIT(&ignores);
598 while ((ch = getopt(argc, argv, "b:m:r:I:")) != -1) {
599 switch (ch) {
600 case 'b':
601 branch_name = optarg;
602 break;
603 case 'm':
604 logmsg = strdup(optarg);
605 if (logmsg == NULL) {
606 error = got_error_from_errno("strdup");
607 goto done;
609 break;
610 case 'r':
611 repo_path = realpath(optarg, NULL);
612 if (repo_path == NULL) {
613 error = got_error_from_errno2("realpath",
614 optarg);
615 goto done;
617 break;
618 case 'I':
619 if (optarg[0] == '\0')
620 break;
621 error = got_pathlist_insert(&pe, &ignores, optarg,
622 NULL);
623 if (error)
624 goto done;
625 break;
626 default:
627 usage_import();
628 /* NOTREACHED */
632 argc -= optind;
633 argv += optind;
635 #ifndef PROFILE
636 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
637 "unveil",
638 NULL) == -1)
639 err(1, "pledge");
640 #endif
641 if (argc != 1)
642 usage_import();
644 if (repo_path == NULL) {
645 repo_path = getcwd(NULL, 0);
646 if (repo_path == NULL)
647 return got_error_from_errno("getcwd");
649 got_path_strip_trailing_slashes(repo_path);
650 error = get_gitconfig_path(&gitconfig_path);
651 if (error)
652 goto done;
653 error = got_repo_open(&repo, repo_path, gitconfig_path);
654 if (error)
655 goto done;
657 error = get_author(&author, repo);
658 if (error)
659 return error;
661 /*
662 * Don't let the user create a branch name with a leading '-'.
663 * While technically a valid reference name, this case is usually
664 * an unintended typo.
665 */
666 if (branch_name[0] == '-')
667 return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
669 if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
670 error = got_error_from_errno("asprintf");
671 goto done;
674 error = got_ref_open(&branch_ref, repo, refname, 0);
675 if (error) {
676 if (error->code != GOT_ERR_NOT_REF)
677 goto done;
678 } else {
679 error = got_error_msg(GOT_ERR_BRANCH_EXISTS,
680 "import target branch already exists");
681 goto done;
684 path_dir = realpath(argv[0], NULL);
685 if (path_dir == NULL) {
686 error = got_error_from_errno2("realpath", argv[0]);
687 goto done;
689 got_path_strip_trailing_slashes(path_dir);
691 /*
692 * unveil(2) traverses exec(2); if an editor is used we have
693 * to apply unveil after the log message has been written.
694 */
695 if (logmsg == NULL || strlen(logmsg) == 0) {
696 error = get_editor(&editor);
697 if (error)
698 goto done;
699 free(logmsg);
700 error = collect_import_msg(&logmsg, &logmsg_path, editor,
701 path_dir, refname);
702 if (error) {
703 if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
704 logmsg_path != NULL)
705 preserve_logmsg = 1;
706 goto done;
710 if (unveil(path_dir, "r") != 0) {
711 error = got_error_from_errno2("unveil", path_dir);
712 if (logmsg_path)
713 preserve_logmsg = 1;
714 goto done;
717 error = apply_unveil(got_repo_get_path(repo), 0, NULL);
718 if (error) {
719 if (logmsg_path)
720 preserve_logmsg = 1;
721 goto done;
724 error = got_repo_import(&new_commit_id, path_dir, logmsg,
725 author, &ignores, repo, import_progress, NULL);
726 if (error) {
727 if (logmsg_path)
728 preserve_logmsg = 1;
729 goto done;
732 error = got_ref_alloc(&branch_ref, refname, new_commit_id);
733 if (error) {
734 if (logmsg_path)
735 preserve_logmsg = 1;
736 goto done;
739 error = got_ref_write(branch_ref, repo);
740 if (error) {
741 if (logmsg_path)
742 preserve_logmsg = 1;
743 goto done;
746 error = got_object_id_str(&id_str, new_commit_id);
747 if (error) {
748 if (logmsg_path)
749 preserve_logmsg = 1;
750 goto done;
753 error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
754 if (error) {
755 if (error->code != GOT_ERR_NOT_REF) {
756 if (logmsg_path)
757 preserve_logmsg = 1;
758 goto done;
761 error = got_ref_alloc_symref(&head_ref, GOT_REF_HEAD,
762 branch_ref);
763 if (error) {
764 if (logmsg_path)
765 preserve_logmsg = 1;
766 goto done;
769 error = got_ref_write(head_ref, repo);
770 if (error) {
771 if (logmsg_path)
772 preserve_logmsg = 1;
773 goto done;
777 printf("Created branch %s with commit %s\n",
778 got_ref_get_name(branch_ref), id_str);
779 done:
780 if (preserve_logmsg) {
781 fprintf(stderr, "%s: log message preserved in %s\n",
782 getprogname(), logmsg_path);
783 } else if (logmsg_path && unlink(logmsg_path) == -1 && error == NULL)
784 error = got_error_from_errno2("unlink", logmsg_path);
785 free(logmsg);
786 free(logmsg_path);
787 free(repo_path);
788 free(editor);
789 free(refname);
790 free(new_commit_id);
791 free(id_str);
792 free(author);
793 free(gitconfig_path);
794 if (branch_ref)
795 got_ref_close(branch_ref);
796 if (head_ref)
797 got_ref_close(head_ref);
798 return error;
801 __dead static void
802 usage_checkout(void)
804 fprintf(stderr, "usage: %s checkout [-E] [-b branch] [-c commit] "
805 "[-p prefix] repository-path [worktree-path]\n", getprogname());
806 exit(1);
809 static void
810 show_worktree_base_ref_warning(void)
812 fprintf(stderr, "%s: warning: could not create a reference "
813 "to the work tree's base commit; the commit could be "
814 "garbage-collected by Git; making the repository "
815 "writable and running 'got update' will prevent this\n",
816 getprogname());
819 struct got_checkout_progress_arg {
820 const char *worktree_path;
821 int had_base_commit_ref_error;
822 };
824 static const struct got_error *
825 checkout_progress(void *arg, unsigned char status, const char *path)
827 struct got_checkout_progress_arg *a = arg;
829 /* Base commit bump happens silently. */
830 if (status == GOT_STATUS_BUMP_BASE)
831 return NULL;
833 if (status == GOT_STATUS_BASE_REF_ERR) {
834 a->had_base_commit_ref_error = 1;
835 return NULL;
838 while (path[0] == '/')
839 path++;
841 printf("%c %s/%s\n", status, a->worktree_path, path);
842 return NULL;
845 static const struct got_error *
846 check_cancelled(void *arg)
848 if (sigint_received || sigpipe_received)
849 return got_error(GOT_ERR_CANCELLED);
850 return NULL;
853 static const struct got_error *
854 check_linear_ancestry(struct got_object_id *commit_id,
855 struct got_object_id *base_commit_id, int allow_forwards_in_time_only,
856 struct got_repository *repo)
858 const struct got_error *err = NULL;
859 struct got_object_id *yca_id;
861 err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
862 commit_id, base_commit_id, repo, check_cancelled, NULL);
863 if (err)
864 return err;
866 if (yca_id == NULL)
867 return got_error(GOT_ERR_ANCESTRY);
869 /*
870 * Require a straight line of history between the target commit
871 * and the work tree's base commit.
873 * Non-linear situations such as this require a rebase:
875 * (commit) D F (base_commit)
876 * \ /
877 * C E
878 * \ /
879 * B (yca)
880 * |
881 * A
883 * 'got update' only handles linear cases:
884 * Update forwards in time: A (base/yca) - B - C - D (commit)
885 * Update backwards in time: D (base) - C - B - A (commit/yca)
886 */
887 if (allow_forwards_in_time_only) {
888 if (got_object_id_cmp(base_commit_id, yca_id) != 0)
889 return got_error(GOT_ERR_ANCESTRY);
890 } else if (got_object_id_cmp(commit_id, yca_id) != 0 &&
891 got_object_id_cmp(base_commit_id, yca_id) != 0)
892 return got_error(GOT_ERR_ANCESTRY);
894 free(yca_id);
895 return NULL;
898 static const struct got_error *
899 check_same_branch(struct got_object_id *commit_id,
900 struct got_reference *head_ref, struct got_object_id *yca_id,
901 struct got_repository *repo)
903 const struct got_error *err = NULL;
904 struct got_commit_graph *graph = NULL;
905 struct got_object_id *head_commit_id = NULL;
906 int is_same_branch = 0;
908 err = got_ref_resolve(&head_commit_id, repo, head_ref);
909 if (err)
910 goto done;
912 if (got_object_id_cmp(head_commit_id, commit_id) == 0) {
913 is_same_branch = 1;
914 goto done;
916 if (yca_id && got_object_id_cmp(commit_id, yca_id) == 0) {
917 is_same_branch = 1;
918 goto done;
921 err = got_commit_graph_open(&graph, "/", 1);
922 if (err)
923 goto done;
925 err = got_commit_graph_iter_start(graph, head_commit_id, repo,
926 check_cancelled, NULL);
927 if (err)
928 goto done;
930 for (;;) {
931 struct got_object_id *id;
932 err = got_commit_graph_iter_next(&id, graph, repo,
933 check_cancelled, NULL);
934 if (err) {
935 if (err->code == GOT_ERR_ITER_COMPLETED)
936 err = NULL;
937 break;
940 if (id) {
941 if (yca_id && got_object_id_cmp(id, yca_id) == 0)
942 break;
943 if (got_object_id_cmp(id, commit_id) == 0) {
944 is_same_branch = 1;
945 break;
949 done:
950 if (graph)
951 got_commit_graph_close(graph);
952 free(head_commit_id);
953 if (!err && !is_same_branch)
954 err = got_error(GOT_ERR_ANCESTRY);
955 return err;
958 static const struct got_error *
959 cmd_checkout(int argc, char *argv[])
961 const struct got_error *error = NULL;
962 struct got_repository *repo = NULL;
963 struct got_reference *head_ref = NULL;
964 struct got_worktree *worktree = NULL;
965 char *repo_path = NULL;
966 char *worktree_path = NULL;
967 const char *path_prefix = "";
968 const char *branch_name = GOT_REF_HEAD;
969 char *commit_id_str = NULL;
970 int ch, same_path_prefix, allow_nonempty = 0;
971 struct got_pathlist_head paths;
972 struct got_checkout_progress_arg cpa;
974 TAILQ_INIT(&paths);
976 while ((ch = getopt(argc, argv, "b:c:Ep:")) != -1) {
977 switch (ch) {
978 case 'b':
979 branch_name = optarg;
980 break;
981 case 'c':
982 commit_id_str = strdup(optarg);
983 if (commit_id_str == NULL)
984 return got_error_from_errno("strdup");
985 break;
986 case 'E':
987 allow_nonempty = 1;
988 break;
989 case 'p':
990 path_prefix = optarg;
991 break;
992 default:
993 usage_checkout();
994 /* NOTREACHED */
998 argc -= optind;
999 argv += optind;
1001 #ifndef PROFILE
1002 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
1003 "unveil", NULL) == -1)
1004 err(1, "pledge");
1005 #endif
1006 if (argc == 1) {
1007 char *cwd, *base, *dotgit;
1008 repo_path = realpath(argv[0], NULL);
1009 if (repo_path == NULL)
1010 return got_error_from_errno2("realpath", argv[0]);
1011 cwd = getcwd(NULL, 0);
1012 if (cwd == NULL) {
1013 error = got_error_from_errno("getcwd");
1014 goto done;
1016 if (path_prefix[0]) {
1017 base = basename(path_prefix);
1018 if (base == NULL) {
1019 error = got_error_from_errno2("basename",
1020 path_prefix);
1021 goto done;
1023 } else {
1024 base = basename(repo_path);
1025 if (base == NULL) {
1026 error = got_error_from_errno2("basename",
1027 repo_path);
1028 goto done;
1031 dotgit = strstr(base, ".git");
1032 if (dotgit)
1033 *dotgit = '\0';
1034 if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
1035 error = got_error_from_errno("asprintf");
1036 free(cwd);
1037 goto done;
1039 free(cwd);
1040 } else if (argc == 2) {
1041 repo_path = realpath(argv[0], NULL);
1042 if (repo_path == NULL) {
1043 error = got_error_from_errno2("realpath", argv[0]);
1044 goto done;
1046 worktree_path = realpath(argv[1], NULL);
1047 if (worktree_path == NULL) {
1048 if (errno != ENOENT) {
1049 error = got_error_from_errno2("realpath",
1050 argv[1]);
1051 goto done;
1053 worktree_path = strdup(argv[1]);
1054 if (worktree_path == NULL) {
1055 error = got_error_from_errno("strdup");
1056 goto done;
1059 } else
1060 usage_checkout();
1062 got_path_strip_trailing_slashes(repo_path);
1063 got_path_strip_trailing_slashes(worktree_path);
1065 error = got_repo_open(&repo, repo_path, NULL);
1066 if (error != NULL)
1067 goto done;
1069 /* Pre-create work tree path for unveil(2) */
1070 error = got_path_mkdir(worktree_path);
1071 if (error) {
1072 if (!(error->code == GOT_ERR_ERRNO && errno == EISDIR) &&
1073 !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
1074 goto done;
1075 if (!allow_nonempty &&
1076 !got_path_dir_is_empty(worktree_path)) {
1077 error = got_error_path(worktree_path,
1078 GOT_ERR_DIR_NOT_EMPTY);
1079 goto done;
1083 error = apply_unveil(got_repo_get_path(repo), 0, worktree_path);
1084 if (error)
1085 goto done;
1087 error = got_ref_open(&head_ref, repo, branch_name, 0);
1088 if (error != NULL)
1089 goto done;
1091 error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
1092 if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
1093 goto done;
1095 error = got_worktree_open(&worktree, worktree_path);
1096 if (error != NULL)
1097 goto done;
1099 error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
1100 path_prefix);
1101 if (error != NULL)
1102 goto done;
1103 if (!same_path_prefix) {
1104 error = got_error(GOT_ERR_PATH_PREFIX);
1105 goto done;
1108 if (commit_id_str) {
1109 struct got_object_id *commit_id;
1110 error = got_repo_match_object_id(&commit_id, NULL,
1111 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
1112 if (error)
1113 goto done;
1114 error = check_linear_ancestry(commit_id,
1115 got_worktree_get_base_commit_id(worktree), 0, repo);
1116 if (error != NULL) {
1117 free(commit_id);
1118 goto done;
1120 error = check_same_branch(commit_id, head_ref, NULL, repo);
1121 if (error)
1122 goto done;
1123 error = got_worktree_set_base_commit_id(worktree, repo,
1124 commit_id);
1125 free(commit_id);
1126 if (error)
1127 goto done;
1130 error = got_pathlist_append(&paths, "", NULL);
1131 if (error)
1132 goto done;
1133 cpa.worktree_path = worktree_path;
1134 cpa.had_base_commit_ref_error = 0;
1135 error = got_worktree_checkout_files(worktree, &paths, repo,
1136 checkout_progress, &cpa, check_cancelled, NULL);
1137 if (error != NULL)
1138 goto done;
1140 printf("Now shut up and hack\n");
1141 if (cpa.had_base_commit_ref_error)
1142 show_worktree_base_ref_warning();
1143 done:
1144 got_pathlist_free(&paths);
1145 free(commit_id_str);
1146 free(repo_path);
1147 free(worktree_path);
1148 return error;
1151 __dead static void
1152 usage_update(void)
1154 fprintf(stderr, "usage: %s update [-b branch] [-c commit] [path ...]\n",
1155 getprogname());
1156 exit(1);
1159 static const struct got_error *
1160 update_progress(void *arg, unsigned char status, const char *path)
1162 int *did_something = arg;
1164 if (status == GOT_STATUS_EXISTS ||
1165 status == GOT_STATUS_BASE_REF_ERR)
1166 return NULL;
1168 *did_something = 1;
1170 /* Base commit bump happens silently. */
1171 if (status == GOT_STATUS_BUMP_BASE)
1172 return NULL;
1174 while (path[0] == '/')
1175 path++;
1176 printf("%c %s\n", status, path);
1177 return NULL;
1180 static const struct got_error *
1181 switch_head_ref(struct got_reference *head_ref,
1182 struct got_object_id *commit_id, struct got_worktree *worktree,
1183 struct got_repository *repo)
1185 const struct got_error *err = NULL;
1186 char *base_id_str;
1187 int ref_has_moved = 0;
1189 /* Trivial case: switching between two different references. */
1190 if (strcmp(got_ref_get_name(head_ref),
1191 got_worktree_get_head_ref_name(worktree)) != 0) {
1192 printf("Switching work tree from %s to %s\n",
1193 got_worktree_get_head_ref_name(worktree),
1194 got_ref_get_name(head_ref));
1195 return got_worktree_set_head_ref(worktree, head_ref);
1198 err = check_linear_ancestry(commit_id,
1199 got_worktree_get_base_commit_id(worktree), 0, repo);
1200 if (err) {
1201 if (err->code != GOT_ERR_ANCESTRY)
1202 return err;
1203 ref_has_moved = 1;
1205 if (!ref_has_moved)
1206 return NULL;
1208 /* Switching to a rebased branch with the same reference name. */
1209 err = got_object_id_str(&base_id_str,
1210 got_worktree_get_base_commit_id(worktree));
1211 if (err)
1212 return err;
1213 printf("Reference %s now points at a different branch\n",
1214 got_worktree_get_head_ref_name(worktree));
1215 printf("Switching work tree from %s to %s\n", base_id_str,
1216 got_worktree_get_head_ref_name(worktree));
1217 return NULL;
1220 static const struct got_error *
1221 check_rebase_or_histedit_in_progress(struct got_worktree *worktree)
1223 const struct got_error *err;
1224 int in_progress;
1226 err = got_worktree_rebase_in_progress(&in_progress, worktree);
1227 if (err)
1228 return err;
1229 if (in_progress)
1230 return got_error(GOT_ERR_REBASING);
1232 err = got_worktree_histedit_in_progress(&in_progress, worktree);
1233 if (err)
1234 return err;
1235 if (in_progress)
1236 return got_error(GOT_ERR_HISTEDIT_BUSY);
1238 return NULL;
1241 static const struct got_error *
1242 get_worktree_paths_from_argv(struct got_pathlist_head *paths, int argc,
1243 char *argv[], struct got_worktree *worktree)
1245 const struct got_error *err = NULL;
1246 char *path;
1247 int i;
1249 if (argc == 0) {
1250 path = strdup("");
1251 if (path == NULL)
1252 return got_error_from_errno("strdup");
1253 return got_pathlist_append(paths, path, NULL);
1256 for (i = 0; i < argc; i++) {
1257 err = got_worktree_resolve_path(&path, worktree, argv[i]);
1258 if (err)
1259 break;
1260 err = got_pathlist_append(paths, path, NULL);
1261 if (err) {
1262 free(path);
1263 break;
1267 return err;
1270 static const struct got_error *
1271 cmd_update(int argc, char *argv[])
1273 const struct got_error *error = NULL;
1274 struct got_repository *repo = NULL;
1275 struct got_worktree *worktree = NULL;
1276 char *worktree_path = NULL;
1277 struct got_object_id *commit_id = NULL;
1278 char *commit_id_str = NULL;
1279 const char *branch_name = NULL;
1280 struct got_reference *head_ref = NULL;
1281 struct got_pathlist_head paths;
1282 struct got_pathlist_entry *pe;
1283 int ch, did_something = 0;
1285 TAILQ_INIT(&paths);
1287 while ((ch = getopt(argc, argv, "b:c:")) != -1) {
1288 switch (ch) {
1289 case 'b':
1290 branch_name = optarg;
1291 break;
1292 case 'c':
1293 commit_id_str = strdup(optarg);
1294 if (commit_id_str == NULL)
1295 return got_error_from_errno("strdup");
1296 break;
1297 default:
1298 usage_update();
1299 /* NOTREACHED */
1303 argc -= optind;
1304 argv += optind;
1306 #ifndef PROFILE
1307 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
1308 "unveil", NULL) == -1)
1309 err(1, "pledge");
1310 #endif
1311 worktree_path = getcwd(NULL, 0);
1312 if (worktree_path == NULL) {
1313 error = got_error_from_errno("getcwd");
1314 goto done;
1316 error = got_worktree_open(&worktree, worktree_path);
1317 if (error)
1318 goto done;
1320 error = check_rebase_or_histedit_in_progress(worktree);
1321 if (error)
1322 goto done;
1324 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
1325 NULL);
1326 if (error != NULL)
1327 goto done;
1329 error = apply_unveil(got_repo_get_path(repo), 0,
1330 got_worktree_get_root_path(worktree));
1331 if (error)
1332 goto done;
1334 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
1335 if (error)
1336 goto done;
1338 error = got_ref_open(&head_ref, repo, branch_name ? branch_name :
1339 got_worktree_get_head_ref_name(worktree), 0);
1340 if (error != NULL)
1341 goto done;
1342 if (commit_id_str == NULL) {
1343 error = got_ref_resolve(&commit_id, repo, head_ref);
1344 if (error != NULL)
1345 goto done;
1346 error = got_object_id_str(&commit_id_str, commit_id);
1347 if (error != NULL)
1348 goto done;
1349 } else {
1350 error = got_repo_match_object_id(&commit_id, NULL,
1351 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
1352 free(commit_id_str);
1353 commit_id_str = NULL;
1354 if (error)
1355 goto done;
1356 error = got_object_id_str(&commit_id_str, commit_id);
1357 if (error)
1358 goto done;
1361 if (branch_name) {
1362 struct got_object_id *head_commit_id;
1363 TAILQ_FOREACH(pe, &paths, entry) {
1364 if (pe->path_len == 0)
1365 continue;
1366 error = got_error_msg(GOT_ERR_BAD_PATH,
1367 "switching between branches requires that "
1368 "the entire work tree gets updated");
1369 goto done;
1371 error = got_ref_resolve(&head_commit_id, repo, head_ref);
1372 if (error)
1373 goto done;
1374 error = check_linear_ancestry(commit_id, head_commit_id, 0,
1375 repo);
1376 free(head_commit_id);
1377 if (error != NULL)
1378 goto done;
1379 error = check_same_branch(commit_id, head_ref, NULL, repo);
1380 if (error)
1381 goto done;
1382 error = switch_head_ref(head_ref, commit_id, worktree, repo);
1383 if (error)
1384 goto done;
1385 } else {
1386 error = check_linear_ancestry(commit_id,
1387 got_worktree_get_base_commit_id(worktree), 0, repo);
1388 if (error != NULL) {
1389 if (error->code == GOT_ERR_ANCESTRY)
1390 error = got_error(GOT_ERR_BRANCH_MOVED);
1391 goto done;
1393 error = check_same_branch(commit_id, head_ref, NULL, repo);
1394 if (error)
1395 goto done;
1398 if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
1399 commit_id) != 0) {
1400 error = got_worktree_set_base_commit_id(worktree, repo,
1401 commit_id);
1402 if (error)
1403 goto done;
1406 error = got_worktree_checkout_files(worktree, &paths, repo,
1407 update_progress, &did_something, check_cancelled, NULL);
1408 if (error != NULL)
1409 goto done;
1411 if (did_something)
1412 printf("Updated to commit %s\n", commit_id_str);
1413 else
1414 printf("Already up-to-date\n");
1415 done:
1416 free(worktree_path);
1417 TAILQ_FOREACH(pe, &paths, entry)
1418 free((char *)pe->path);
1419 got_pathlist_free(&paths);
1420 free(commit_id);
1421 free(commit_id_str);
1422 return error;
1425 static const struct got_error *
1426 diff_blobs(struct got_object_id *blob_id1, struct got_object_id *blob_id2,
1427 const char *path, int diff_context, int ignore_whitespace,
1428 struct got_repository *repo)
1430 const struct got_error *err = NULL;
1431 struct got_blob_object *blob1 = NULL, *blob2 = NULL;
1433 if (blob_id1) {
1434 err = got_object_open_as_blob(&blob1, repo, blob_id1, 8192);
1435 if (err)
1436 goto done;
1439 err = got_object_open_as_blob(&blob2, repo, blob_id2, 8192);
1440 if (err)
1441 goto done;
1443 while (path[0] == '/')
1444 path++;
1445 err = got_diff_blob(blob1, blob2, path, path, diff_context,
1446 ignore_whitespace, stdout);
1447 done:
1448 if (blob1)
1449 got_object_blob_close(blob1);
1450 got_object_blob_close(blob2);
1451 return err;
1454 static const struct got_error *
1455 diff_trees(struct got_object_id *tree_id1, struct got_object_id *tree_id2,
1456 const char *path, int diff_context, int ignore_whitespace,
1457 struct got_repository *repo)
1459 const struct got_error *err = NULL;
1460 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1461 struct got_diff_blob_output_unidiff_arg arg;
1463 if (tree_id1) {
1464 err = got_object_open_as_tree(&tree1, repo, tree_id1);
1465 if (err)
1466 goto done;
1469 err = got_object_open_as_tree(&tree2, repo, tree_id2);
1470 if (err)
1471 goto done;
1473 arg.diff_context = diff_context;
1474 arg.ignore_whitespace = ignore_whitespace;
1475 arg.outfile = stdout;
1476 while (path[0] == '/')
1477 path++;
1478 err = got_diff_tree(tree1, tree2, path, path, repo,
1479 got_diff_blob_output_unidiff, &arg, 1);
1480 done:
1481 if (tree1)
1482 got_object_tree_close(tree1);
1483 if (tree2)
1484 got_object_tree_close(tree2);
1485 return err;
1488 static const struct got_error *
1489 print_patch(struct got_commit_object *commit, struct got_object_id *id,
1490 const char *path, int diff_context, struct got_repository *repo)
1492 const struct got_error *err = NULL;
1493 struct got_commit_object *pcommit = NULL;
1494 char *id_str1 = NULL, *id_str2 = NULL;
1495 struct got_object_id *obj_id1 = NULL, *obj_id2 = NULL;
1496 struct got_object_qid *qid;
1498 qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
1499 if (qid != NULL) {
1500 err = got_object_open_as_commit(&pcommit, repo,
1501 qid->id);
1502 if (err)
1503 return err;
1506 if (path && path[0] != '\0') {
1507 int obj_type;
1508 err = got_object_id_by_path(&obj_id2, repo, id, path);
1509 if (err)
1510 goto done;
1511 err = got_object_id_str(&id_str2, obj_id2);
1512 if (err) {
1513 free(obj_id2);
1514 goto done;
1516 if (pcommit) {
1517 err = got_object_id_by_path(&obj_id1, repo,
1518 qid->id, path);
1519 if (err) {
1520 free(obj_id2);
1521 goto done;
1523 err = got_object_id_str(&id_str1, obj_id1);
1524 if (err) {
1525 free(obj_id2);
1526 goto done;
1529 err = got_object_get_type(&obj_type, repo, obj_id2);
1530 if (err) {
1531 free(obj_id2);
1532 goto done;
1534 printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
1535 switch (obj_type) {
1536 case GOT_OBJ_TYPE_BLOB:
1537 err = diff_blobs(obj_id1, obj_id2, path, diff_context,
1538 0, repo);
1539 break;
1540 case GOT_OBJ_TYPE_TREE:
1541 err = diff_trees(obj_id1, obj_id2, path, diff_context,
1542 0, repo);
1543 break;
1544 default:
1545 err = got_error(GOT_ERR_OBJ_TYPE);
1546 break;
1548 free(obj_id1);
1549 free(obj_id2);
1550 } else {
1551 obj_id2 = got_object_commit_get_tree_id(commit);
1552 err = got_object_id_str(&id_str2, obj_id2);
1553 if (err)
1554 goto done;
1555 obj_id1 = got_object_commit_get_tree_id(pcommit);
1556 err = got_object_id_str(&id_str1, obj_id1);
1557 if (err)
1558 goto done;
1559 printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
1560 err = diff_trees(obj_id1, obj_id2, "", diff_context, 0, repo);
1562 done:
1563 free(id_str1);
1564 free(id_str2);
1565 if (pcommit)
1566 got_object_commit_close(pcommit);
1567 return err;
1570 static char *
1571 get_datestr(time_t *time, char *datebuf)
1573 struct tm mytm, *tm;
1574 char *p, *s;
1576 tm = gmtime_r(time, &mytm);
1577 if (tm == NULL)
1578 return NULL;
1579 s = asctime_r(tm, datebuf);
1580 if (s == NULL)
1581 return NULL;
1582 p = strchr(s, '\n');
1583 if (p)
1584 *p = '\0';
1585 return s;
1588 static const struct got_error *
1589 match_logmsg(int *have_match, struct got_object_id *id,
1590 struct got_commit_object *commit, regex_t *regex)
1592 const struct got_error *err = NULL;
1593 regmatch_t regmatch;
1594 char *id_str = NULL, *logmsg = NULL;
1596 *have_match = 0;
1598 err = got_object_id_str(&id_str, id);
1599 if (err)
1600 return err;
1602 err = got_object_commit_get_logmsg(&logmsg, commit);
1603 if (err)
1604 goto done;
1606 if (regexec(regex, logmsg, 1, &regmatch, 0) == 0)
1607 *have_match = 1;
1608 done:
1609 free(id_str);
1610 free(logmsg);
1611 return err;
1614 #define GOT_COMMIT_SEP_STR "-----------------------------------------------\n"
1616 static const struct got_error *
1617 print_commit(struct got_commit_object *commit, struct got_object_id *id,
1618 struct got_repository *repo, const char *path, int show_patch,
1619 int diff_context, struct got_reflist_head *refs)
1621 const struct got_error *err = NULL;
1622 char *id_str, *datestr, *logmsg0, *logmsg, *line;
1623 char datebuf[26];
1624 time_t committer_time;
1625 const char *author, *committer;
1626 char *refs_str = NULL;
1627 struct got_reflist_entry *re;
1629 SIMPLEQ_FOREACH(re, refs, entry) {
1630 char *s;
1631 const char *name;
1632 struct got_tag_object *tag = NULL;
1633 int cmp;
1635 name = got_ref_get_name(re->ref);
1636 if (strcmp(name, GOT_REF_HEAD) == 0)
1637 continue;
1638 if (strncmp(name, "refs/", 5) == 0)
1639 name += 5;
1640 if (strncmp(name, "got/", 4) == 0)
1641 continue;
1642 if (strncmp(name, "heads/", 6) == 0)
1643 name += 6;
1644 if (strncmp(name, "remotes/", 8) == 0)
1645 name += 8;
1646 if (strncmp(name, "tags/", 5) == 0) {
1647 err = got_object_open_as_tag(&tag, repo, re->id);
1648 if (err) {
1649 if (err->code != GOT_ERR_OBJ_TYPE)
1650 return err;
1651 /* Ref points at something other than a tag. */
1652 err = NULL;
1653 tag = NULL;
1656 cmp = got_object_id_cmp(tag ?
1657 got_object_tag_get_object_id(tag) : re->id, id);
1658 if (tag)
1659 got_object_tag_close(tag);
1660 if (cmp != 0)
1661 continue;
1662 s = refs_str;
1663 if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
1664 name) == -1) {
1665 err = got_error_from_errno("asprintf");
1666 free(s);
1667 return err;
1669 free(s);
1671 err = got_object_id_str(&id_str, id);
1672 if (err)
1673 return err;
1675 printf(GOT_COMMIT_SEP_STR);
1676 printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
1677 refs_str ? refs_str : "", refs_str ? ")" : "");
1678 free(id_str);
1679 id_str = NULL;
1680 free(refs_str);
1681 refs_str = NULL;
1682 printf("from: %s\n", got_object_commit_get_author(commit));
1683 committer_time = got_object_commit_get_committer_time(commit);
1684 datestr = get_datestr(&committer_time, datebuf);
1685 if (datestr)
1686 printf("date: %s UTC\n", datestr);
1687 author = got_object_commit_get_author(commit);
1688 committer = got_object_commit_get_committer(commit);
1689 if (strcmp(author, committer) != 0)
1690 printf("via: %s\n", committer);
1691 if (got_object_commit_get_nparents(commit) > 1) {
1692 const struct got_object_id_queue *parent_ids;
1693 struct got_object_qid *qid;
1694 int n = 1;
1695 parent_ids = got_object_commit_get_parent_ids(commit);
1696 SIMPLEQ_FOREACH(qid, parent_ids, entry) {
1697 err = got_object_id_str(&id_str, qid->id);
1698 if (err)
1699 return err;
1700 printf("parent %d: %s\n", n++, id_str);
1701 free(id_str);
1705 err = got_object_commit_get_logmsg(&logmsg0, commit);
1706 if (err)
1707 return err;
1709 logmsg = logmsg0;
1710 do {
1711 line = strsep(&logmsg, "\n");
1712 if (line)
1713 printf(" %s\n", line);
1714 } while (line);
1715 free(logmsg0);
1717 if (show_patch) {
1718 err = print_patch(commit, id, path, diff_context, repo);
1719 if (err == 0)
1720 printf("\n");
1723 if (fflush(stdout) != 0 && err == NULL)
1724 err = got_error_from_errno("fflush");
1725 return err;
1728 static const struct got_error *
1729 print_commits(struct got_object_id *root_id, struct got_repository *repo,
1730 const char *path, int show_patch, const char *search_pattern,
1731 int diff_context, int limit, int first_parent_traversal,
1732 struct got_reflist_head *refs)
1734 const struct got_error *err;
1735 struct got_commit_graph *graph;
1736 regex_t regex;
1737 int have_match;
1739 if (search_pattern &&
1740 regcomp(&regex, search_pattern, REG_EXTENDED | REG_NOSUB | REG_NEWLINE))
1741 return got_error_msg(GOT_ERR_REGEX, search_pattern);
1743 err = got_commit_graph_open(&graph, path, first_parent_traversal);
1744 if (err)
1745 return err;
1746 err = got_commit_graph_iter_start(graph, root_id, repo,
1747 check_cancelled, NULL);
1748 if (err)
1749 goto done;
1750 for (;;) {
1751 struct got_commit_object *commit;
1752 struct got_object_id *id;
1754 if (sigint_received || sigpipe_received)
1755 break;
1757 err = got_commit_graph_iter_next(&id, graph, repo,
1758 check_cancelled, NULL);
1759 if (err) {
1760 if (err->code == GOT_ERR_ITER_COMPLETED)
1761 err = NULL;
1762 break;
1764 if (id == NULL)
1765 break;
1767 err = got_object_open_as_commit(&commit, repo, id);
1768 if (err)
1769 break;
1771 if (search_pattern) {
1772 err = match_logmsg(&have_match, id, commit, &regex);
1773 if (err) {
1774 got_object_commit_close(commit);
1775 break;
1777 if (have_match == 0) {
1778 got_object_commit_close(commit);
1779 continue;
1783 err = print_commit(commit, id, repo, path, show_patch,
1784 diff_context, refs);
1785 got_object_commit_close(commit);
1786 if (err || (limit && --limit == 0))
1787 break;
1789 done:
1790 if (search_pattern)
1791 regfree(&regex);
1792 got_commit_graph_close(graph);
1793 return err;
1796 __dead static void
1797 usage_log(void)
1799 fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
1800 "[-s search-pattern] [-r repository-path] [path]\n", getprogname());
1801 exit(1);
1804 static int
1805 get_default_log_limit(void)
1807 const char *got_default_log_limit;
1808 long long n;
1809 const char *errstr;
1811 got_default_log_limit = getenv("GOT_LOG_DEFAULT_LIMIT");
1812 if (got_default_log_limit == NULL)
1813 return 0;
1814 n = strtonum(got_default_log_limit, 0, INT_MAX, &errstr);
1815 if (errstr != NULL)
1816 return 0;
1817 return n;
1820 static const struct got_error *
1821 cmd_log(int argc, char *argv[])
1823 const struct got_error *error;
1824 struct got_repository *repo = NULL;
1825 struct got_worktree *worktree = NULL;
1826 struct got_commit_object *commit = NULL;
1827 struct got_object_id *id = NULL;
1828 char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
1829 const char *start_commit = NULL, *search_pattern = NULL;
1830 int diff_context = -1, ch;
1831 int show_patch = 0, limit = 0, first_parent_traversal = 0;
1832 const char *errstr;
1833 struct got_reflist_head refs;
1835 SIMPLEQ_INIT(&refs);
1837 #ifndef PROFILE
1838 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1839 NULL)
1840 == -1)
1841 err(1, "pledge");
1842 #endif
1844 limit = get_default_log_limit();
1846 while ((ch = getopt(argc, argv, "b:pc:C:l:fr:s:")) != -1) {
1847 switch (ch) {
1848 case 'p':
1849 show_patch = 1;
1850 break;
1851 case 'c':
1852 start_commit = optarg;
1853 break;
1854 case 'C':
1855 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
1856 &errstr);
1857 if (errstr != NULL)
1858 err(1, "-C option %s", errstr);
1859 break;
1860 case 'l':
1861 limit = strtonum(optarg, 0, INT_MAX, &errstr);
1862 if (errstr != NULL)
1863 err(1, "-l option %s", errstr);
1864 break;
1865 case 'f':
1866 first_parent_traversal = 1;
1867 break;
1868 case 'r':
1869 repo_path = realpath(optarg, NULL);
1870 if (repo_path == NULL)
1871 return got_error_from_errno2("realpath",
1872 optarg);
1873 got_path_strip_trailing_slashes(repo_path);
1874 break;
1875 case 's':
1876 search_pattern = optarg;
1877 break;
1878 default:
1879 usage_log();
1880 /* NOTREACHED */
1884 argc -= optind;
1885 argv += optind;
1887 if (diff_context == -1)
1888 diff_context = 3;
1889 else if (!show_patch)
1890 errx(1, "-C reguires -p");
1892 cwd = getcwd(NULL, 0);
1893 if (cwd == NULL) {
1894 error = got_error_from_errno("getcwd");
1895 goto done;
1898 error = got_worktree_open(&worktree, cwd);
1899 if (error && error->code != GOT_ERR_NOT_WORKTREE)
1900 goto done;
1901 error = NULL;
1903 if (argc == 0) {
1904 path = strdup("");
1905 if (path == NULL) {
1906 error = got_error_from_errno("strdup");
1907 goto done;
1909 } else if (argc == 1) {
1910 if (worktree) {
1911 error = got_worktree_resolve_path(&path, worktree,
1912 argv[0]);
1913 if (error)
1914 goto done;
1915 } else {
1916 path = strdup(argv[0]);
1917 if (path == NULL) {
1918 error = got_error_from_errno("strdup");
1919 goto done;
1922 } else
1923 usage_log();
1925 if (repo_path == NULL) {
1926 repo_path = worktree ?
1927 strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
1929 if (repo_path == NULL) {
1930 error = got_error_from_errno("strdup");
1931 goto done;
1934 error = got_repo_open(&repo, repo_path, NULL);
1935 if (error != NULL)
1936 goto done;
1938 error = apply_unveil(got_repo_get_path(repo), 1,
1939 worktree ? got_worktree_get_root_path(worktree) : NULL);
1940 if (error)
1941 goto done;
1943 if (start_commit == NULL) {
1944 struct got_reference *head_ref;
1945 error = got_ref_open(&head_ref, repo,
1946 worktree ? got_worktree_get_head_ref_name(worktree)
1947 : GOT_REF_HEAD, 0);
1948 if (error != NULL)
1949 return error;
1950 error = got_ref_resolve(&id, repo, head_ref);
1951 got_ref_close(head_ref);
1952 if (error != NULL)
1953 return error;
1954 error = got_object_open_as_commit(&commit, repo, id);
1955 } else {
1956 struct got_reference *ref;
1957 error = got_ref_open(&ref, repo, start_commit, 0);
1958 if (error == NULL) {
1959 int obj_type;
1960 error = got_ref_resolve(&id, repo, ref);
1961 got_ref_close(ref);
1962 if (error != NULL)
1963 goto done;
1964 error = got_object_get_type(&obj_type, repo, id);
1965 if (error != NULL)
1966 goto done;
1967 if (obj_type == GOT_OBJ_TYPE_TAG) {
1968 struct got_tag_object *tag;
1969 error = got_object_open_as_tag(&tag, repo, id);
1970 if (error != NULL)
1971 goto done;
1972 if (got_object_tag_get_object_type(tag) !=
1973 GOT_OBJ_TYPE_COMMIT) {
1974 got_object_tag_close(tag);
1975 error = got_error(GOT_ERR_OBJ_TYPE);
1976 goto done;
1978 free(id);
1979 id = got_object_id_dup(
1980 got_object_tag_get_object_id(tag));
1981 if (id == NULL)
1982 error = got_error_from_errno(
1983 "got_object_id_dup");
1984 got_object_tag_close(tag);
1985 if (error)
1986 goto done;
1987 } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
1988 error = got_error(GOT_ERR_OBJ_TYPE);
1989 goto done;
1991 error = got_object_open_as_commit(&commit, repo, id);
1992 if (error != NULL)
1993 goto done;
1995 if (commit == NULL) {
1996 error = got_repo_match_object_id_prefix(&id,
1997 start_commit, GOT_OBJ_TYPE_COMMIT, repo);
1998 if (error != NULL)
1999 return error;
2002 if (error != NULL)
2003 goto done;
2005 if (worktree) {
2006 const char *prefix = got_worktree_get_path_prefix(worktree);
2007 char *p;
2008 if (asprintf(&p, "%s%s%s", prefix,
2009 (strcmp(prefix, "/") != 0) ? "/" : "", path) == -1) {
2010 error = got_error_from_errno("asprintf");
2011 goto done;
2013 error = got_repo_map_path(&in_repo_path, repo, p, 1);
2014 free(p);
2015 } else
2016 error = got_repo_map_path(&in_repo_path, repo, path, 1);
2017 if (error != NULL)
2018 goto done;
2019 if (in_repo_path) {
2020 free(path);
2021 path = in_repo_path;
2024 error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
2025 if (error)
2026 goto done;
2028 error = print_commits(id, repo, path, show_patch, search_pattern,
2029 diff_context, limit, first_parent_traversal, &refs);
2030 done:
2031 free(path);
2032 free(repo_path);
2033 free(cwd);
2034 free(id);
2035 if (worktree)
2036 got_worktree_close(worktree);
2037 if (repo) {
2038 const struct got_error *repo_error;
2039 repo_error = got_repo_close(repo);
2040 if (error == NULL)
2041 error = repo_error;
2043 got_ref_list_free(&refs);
2044 return error;
2047 __dead static void
2048 usage_diff(void)
2050 fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] [-s] "
2051 "[-w] [object1 object2 | path]\n", getprogname());
2052 exit(1);
2055 struct print_diff_arg {
2056 struct got_repository *repo;
2057 struct got_worktree *worktree;
2058 int diff_context;
2059 const char *id_str;
2060 int header_shown;
2061 int diff_staged;
2062 int ignore_whitespace;
2065 static const struct got_error *
2066 print_diff(void *arg, unsigned char status, unsigned char staged_status,
2067 const char *path, struct got_object_id *blob_id,
2068 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
2069 int dirfd, const char *de_name)
2071 struct print_diff_arg *a = arg;
2072 const struct got_error *err = NULL;
2073 struct got_blob_object *blob1 = NULL;
2074 int fd = -1;
2075 FILE *f2 = NULL;
2076 char *abspath = NULL, *label1 = NULL;
2077 struct stat sb;
2079 if (a->diff_staged) {
2080 if (staged_status != GOT_STATUS_MODIFY &&
2081 staged_status != GOT_STATUS_ADD &&
2082 staged_status != GOT_STATUS_DELETE)
2083 return NULL;
2084 } else {
2085 if (staged_status == GOT_STATUS_DELETE)
2086 return NULL;
2087 if (status == GOT_STATUS_NONEXISTENT)
2088 return got_error_set_errno(ENOENT, path);
2089 if (status != GOT_STATUS_MODIFY &&
2090 status != GOT_STATUS_ADD &&
2091 status != GOT_STATUS_DELETE &&
2092 status != GOT_STATUS_CONFLICT)
2093 return NULL;
2096 if (!a->header_shown) {
2097 printf("diff %s %s%s\n", a->id_str,
2098 got_worktree_get_root_path(a->worktree),
2099 a->diff_staged ? " (staged changes)" : "");
2100 a->header_shown = 1;
2103 if (a->diff_staged) {
2104 const char *label1 = NULL, *label2 = NULL;
2105 switch (staged_status) {
2106 case GOT_STATUS_MODIFY:
2107 label1 = path;
2108 label2 = path;
2109 break;
2110 case GOT_STATUS_ADD:
2111 label2 = path;
2112 break;
2113 case GOT_STATUS_DELETE:
2114 label1 = path;
2115 break;
2116 default:
2117 return got_error(GOT_ERR_FILE_STATUS);
2119 return got_diff_objects_as_blobs(blob_id, staged_blob_id,
2120 label1, label2, a->diff_context, a->ignore_whitespace,
2121 a->repo, stdout);
2124 if (staged_status == GOT_STATUS_ADD ||
2125 staged_status == GOT_STATUS_MODIFY) {
2126 char *id_str;
2127 err = got_object_open_as_blob(&blob1, a->repo, staged_blob_id,
2128 8192);
2129 if (err)
2130 goto done;
2131 err = got_object_id_str(&id_str, staged_blob_id);
2132 if (err)
2133 goto done;
2134 if (asprintf(&label1, "%s (staged)", id_str) == -1) {
2135 err = got_error_from_errno("asprintf");
2136 free(id_str);
2137 goto done;
2139 free(id_str);
2140 } else if (status != GOT_STATUS_ADD) {
2141 err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
2142 if (err)
2143 goto done;
2146 if (status != GOT_STATUS_DELETE) {
2147 if (asprintf(&abspath, "%s/%s",
2148 got_worktree_get_root_path(a->worktree), path) == -1) {
2149 err = got_error_from_errno("asprintf");
2150 goto done;
2153 if (dirfd != -1) {
2154 fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
2155 if (fd == -1) {
2156 err = got_error_from_errno2("openat", abspath);
2157 goto done;
2159 } else {
2160 fd = open(abspath, O_RDONLY | O_NOFOLLOW);
2161 if (fd == -1) {
2162 err = got_error_from_errno2("open", abspath);
2163 goto done;
2166 if (fstat(fd, &sb) == -1) {
2167 err = got_error_from_errno2("fstat", abspath);
2168 goto done;
2170 f2 = fdopen(fd, "r");
2171 if (f2 == NULL) {
2172 err = got_error_from_errno2("fdopen", abspath);
2173 goto done;
2175 fd = -1;
2176 } else
2177 sb.st_size = 0;
2179 err = got_diff_blob_file(blob1, label1, f2, sb.st_size, path,
2180 a->diff_context, a->ignore_whitespace, stdout);
2181 done:
2182 if (blob1)
2183 got_object_blob_close(blob1);
2184 if (f2 && fclose(f2) == EOF && err == NULL)
2185 err = got_error_from_errno("fclose");
2186 if (fd != -1 && close(fd) == -1 && err == NULL)
2187 err = got_error_from_errno("close");
2188 free(abspath);
2189 return err;
2192 static const struct got_error *
2193 cmd_diff(int argc, char *argv[])
2195 const struct got_error *error;
2196 struct got_repository *repo = NULL;
2197 struct got_worktree *worktree = NULL;
2198 char *cwd = NULL, *repo_path = NULL;
2199 struct got_object_id *id1 = NULL, *id2 = NULL;
2200 const char *id_str1 = NULL, *id_str2 = NULL;
2201 char *label1 = NULL, *label2 = NULL;
2202 int type1, type2;
2203 int diff_context = 3, diff_staged = 0, ignore_whitespace = 0, ch;
2204 const char *errstr;
2205 char *path = NULL;
2207 #ifndef PROFILE
2208 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
2209 NULL) == -1)
2210 err(1, "pledge");
2211 #endif
2213 while ((ch = getopt(argc, argv, "C:r:sw")) != -1) {
2214 switch (ch) {
2215 case 'C':
2216 diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
2217 &errstr);
2218 if (errstr != NULL)
2219 err(1, "-C option %s", errstr);
2220 break;
2221 case 'r':
2222 repo_path = realpath(optarg, NULL);
2223 if (repo_path == NULL)
2224 return got_error_from_errno2("realpath",
2225 optarg);
2226 got_path_strip_trailing_slashes(repo_path);
2227 break;
2228 case 's':
2229 diff_staged = 1;
2230 break;
2231 case 'w':
2232 ignore_whitespace = 1;
2233 break;
2234 default:
2235 usage_diff();
2236 /* NOTREACHED */
2240 argc -= optind;
2241 argv += optind;
2243 cwd = getcwd(NULL, 0);
2244 if (cwd == NULL) {
2245 error = got_error_from_errno("getcwd");
2246 goto done;
2248 error = got_worktree_open(&worktree, cwd);
2249 if (error && error->code != GOT_ERR_NOT_WORKTREE)
2250 goto done;
2251 if (argc <= 1) {
2252 if (worktree == NULL) {
2253 error = got_error(GOT_ERR_NOT_WORKTREE);
2254 goto done;
2256 if (repo_path)
2257 errx(1,
2258 "-r option can't be used when diffing a work tree");
2259 repo_path = strdup(got_worktree_get_repo_path(worktree));
2260 if (repo_path == NULL) {
2261 error = got_error_from_errno("strdup");
2262 goto done;
2264 if (argc == 1) {
2265 error = got_worktree_resolve_path(&path, worktree,
2266 argv[0]);
2267 if (error)
2268 goto done;
2269 } else {
2270 path = strdup("");
2271 if (path == NULL) {
2272 error = got_error_from_errno("strdup");
2273 goto done;
2276 } else if (argc == 2) {
2277 if (diff_staged)
2278 errx(1, "-s option can't be used when diffing "
2279 "objects in repository");
2280 id_str1 = argv[0];
2281 id_str2 = argv[1];
2282 if (worktree && repo_path == NULL) {
2283 repo_path =
2284 strdup(got_worktree_get_repo_path(worktree));
2285 if (repo_path == NULL) {
2286 error = got_error_from_errno("strdup");
2287 goto done;
2290 } else
2291 usage_diff();
2293 if (repo_path == NULL) {
2294 repo_path = getcwd(NULL, 0);
2295 if (repo_path == NULL)
2296 return got_error_from_errno("getcwd");
2299 error = got_repo_open(&repo, repo_path, NULL);
2300 free(repo_path);
2301 if (error != NULL)
2302 goto done;
2304 error = apply_unveil(got_repo_get_path(repo), 1,
2305 worktree ? got_worktree_get_root_path(worktree) : NULL);
2306 if (error)
2307 goto done;
2309 if (argc <= 1) {
2310 struct print_diff_arg arg;
2311 struct got_pathlist_head paths;
2312 char *id_str;
2314 TAILQ_INIT(&paths);
2316 error = got_object_id_str(&id_str,
2317 got_worktree_get_base_commit_id(worktree));
2318 if (error)
2319 goto done;
2320 arg.repo = repo;
2321 arg.worktree = worktree;
2322 arg.diff_context = diff_context;
2323 arg.id_str = id_str;
2324 arg.header_shown = 0;
2325 arg.diff_staged = diff_staged;
2326 arg.ignore_whitespace = ignore_whitespace;
2328 error = got_pathlist_append(&paths, path, NULL);
2329 if (error)
2330 goto done;
2332 error = got_worktree_status(worktree, &paths, repo, print_diff,
2333 &arg, check_cancelled, NULL);
2334 free(id_str);
2335 got_pathlist_free(&paths);
2336 goto done;
2339 error = got_repo_match_object_id(&id1, &label1, id_str1,
2340 GOT_OBJ_TYPE_ANY, 1, repo);
2341 if (error)
2342 goto done;
2344 error = got_repo_match_object_id(&id2, &label2, id_str2,
2345 GOT_OBJ_TYPE_ANY, 1, repo);
2346 if (error)
2347 goto done;
2349 error = got_object_get_type(&type1, repo, id1);
2350 if (error)
2351 goto done;
2353 error = got_object_get_type(&type2, repo, id2);
2354 if (error)
2355 goto done;
2357 if (type1 != type2) {
2358 error = got_error(GOT_ERR_OBJ_TYPE);
2359 goto done;
2362 switch (type1) {
2363 case GOT_OBJ_TYPE_BLOB:
2364 error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
2365 diff_context, ignore_whitespace, repo, stdout);
2366 break;
2367 case GOT_OBJ_TYPE_TREE:
2368 error = got_diff_objects_as_trees(id1, id2, "", "",
2369 diff_context, ignore_whitespace, repo, stdout);
2370 break;
2371 case GOT_OBJ_TYPE_COMMIT:
2372 printf("diff %s %s\n", label1, label2);
2373 error = got_diff_objects_as_commits(id1, id2, diff_context,
2374 ignore_whitespace, repo, stdout);
2375 break;
2376 default:
2377 error = got_error(GOT_ERR_OBJ_TYPE);
2379 done:
2380 free(label1);
2381 free(label2);
2382 free(id1);
2383 free(id2);
2384 free(path);
2385 if (worktree)
2386 got_worktree_close(worktree);
2387 if (repo) {
2388 const struct got_error *repo_error;
2389 repo_error = got_repo_close(repo);
2390 if (error == NULL)
2391 error = repo_error;
2393 return error;
2396 __dead static void
2397 usage_blame(void)
2399 fprintf(stderr,
2400 "usage: %s blame [-c commit] [-r repository-path] path\n",
2401 getprogname());
2402 exit(1);
2405 struct blame_line {
2406 int annotated;
2407 char *id_str;
2408 char *committer;
2409 char datebuf[11]; /* YYYY-MM-DD + NUL */
2412 struct blame_cb_args {
2413 struct blame_line *lines;
2414 int nlines;
2415 int nlines_prec;
2416 int lineno_cur;
2417 off_t *line_offsets;
2418 FILE *f;
2419 struct got_repository *repo;
2422 static const struct got_error *
2423 blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
2425 const struct got_error *err = NULL;
2426 struct blame_cb_args *a = arg;
2427 struct blame_line *bline;
2428 char *line = NULL;
2429 size_t linesize = 0;
2430 struct got_commit_object *commit = NULL;
2431 off_t offset;
2432 struct tm tm;
2433 time_t committer_time;
2435 if (nlines != a->nlines ||
2436 (lineno != -1 && lineno < 1) || lineno > a->nlines)
2437 return got_error(GOT_ERR_RANGE);
2439 if (sigint_received)
2440 return got_error(GOT_ERR_ITER_COMPLETED);
2442 if (lineno == -1)
2443 return NULL; /* no change in this commit */
2445 /* Annotate this line. */
2446 bline = &a->lines[lineno - 1];
2447 if (bline->annotated)
2448 return NULL;
2449 err = got_object_id_str(&bline->id_str, id);
2450 if (err)
2451 return err;
2453 err = got_object_open_as_commit(&commit, a->repo, id);
2454 if (err)
2455 goto done;
2457 bline->committer = strdup(got_object_commit_get_committer(commit));
2458 if (bline->committer == NULL) {
2459 err = got_error_from_errno("strdup");
2460 goto done;
2463 committer_time = got_object_commit_get_committer_time(commit);
2464 if (localtime_r(&committer_time, &tm) == NULL)
2465 return got_error_from_errno("localtime_r");
2466 if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G-%m-%d",
2467 &tm) >= sizeof(bline->datebuf)) {
2468 err = got_error(GOT_ERR_NO_SPACE);
2469 goto done;
2471 bline->annotated = 1;
2473 /* Print lines annotated so far. */
2474 bline = &a->lines[a->lineno_cur - 1];
2475 if (!bline->annotated)
2476 goto done;
2478 offset = a->line_offsets[a->lineno_cur - 1];
2479 if (fseeko(a->f, offset, SEEK_SET) == -1) {
2480 err = got_error_from_errno("fseeko");
2481 goto done;
2484 while (bline->annotated) {
2485 char *smallerthan, *at, *nl, *committer;
2486 size_t len;
2488 if (getline(&line, &linesize, a->f) == -1) {
2489 if (ferror(a->f))
2490 err = got_error_from_errno("getline");
2491 break;
2494 committer = bline->committer;
2495 smallerthan = strchr(committer, '<');
2496 if (smallerthan && smallerthan[1] != '\0')
2497 committer = smallerthan + 1;
2498 at = strchr(committer, '@');
2499 if (at)
2500 *at = '\0';
2501 len = strlen(committer);
2502 if (len >= 9)
2503 committer[8] = '\0';
2505 nl = strchr(line, '\n');
2506 if (nl)
2507 *nl = '\0';
2508 printf("%.*d) %.8s %s %-8s %s\n", a->nlines_prec, a->lineno_cur,
2509 bline->id_str, bline->datebuf, committer, line);
2511 a->lineno_cur++;
2512 bline = &a->lines[a->lineno_cur - 1];
2514 done:
2515 if (commit)
2516 got_object_commit_close(commit);
2517 free(line);
2518 return err;
2521 static const struct got_error *
2522 cmd_blame(int argc, char *argv[])
2524 const struct got_error *error;
2525 struct got_repository *repo = NULL;
2526 struct got_worktree *worktree = NULL;
2527 char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
2528 struct got_object_id *obj_id = NULL;
2529 struct got_object_id *commit_id = NULL;
2530 struct got_blob_object *blob = NULL;
2531 char *commit_id_str = NULL;
2532 struct blame_cb_args bca;
2533 int ch, obj_type, i;
2534 size_t filesize;
2536 memset(&bca, 0, sizeof(bca));
2538 #ifndef PROFILE
2539 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
2540 NULL) == -1)
2541 err(1, "pledge");
2542 #endif
2544 while ((ch = getopt(argc, argv, "c:r:")) != -1) {
2545 switch (ch) {
2546 case 'c':
2547 commit_id_str = optarg;
2548 break;
2549 case 'r':
2550 repo_path = realpath(optarg, NULL);
2551 if (repo_path == NULL)
2552 return got_error_from_errno2("realpath",
2553 optarg);
2554 got_path_strip_trailing_slashes(repo_path);
2555 break;
2556 default:
2557 usage_blame();
2558 /* NOTREACHED */
2562 argc -= optind;
2563 argv += optind;
2565 if (argc == 1)
2566 path = argv[0];
2567 else
2568 usage_blame();
2570 cwd = getcwd(NULL, 0);
2571 if (cwd == NULL) {
2572 error = got_error_from_errno("getcwd");
2573 goto done;
2575 if (repo_path == NULL) {
2576 error = got_worktree_open(&worktree, cwd);
2577 if (error && error->code != GOT_ERR_NOT_WORKTREE)
2578 goto done;
2579 else
2580 error = NULL;
2581 if (worktree) {
2582 repo_path =
2583 strdup(got_worktree_get_repo_path(worktree));
2584 if (repo_path == NULL)
2585 error = got_error_from_errno("strdup");
2586 if (error)
2587 goto done;
2588 } else {
2589 repo_path = strdup(cwd);
2590 if (repo_path == NULL) {
2591 error = got_error_from_errno("strdup");
2592 goto done;
2597 error = got_repo_open(&repo, repo_path, NULL);
2598 if (error != NULL)
2599 goto done;
2601 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
2602 if (error)
2603 goto done;
2605 if (worktree) {
2606 const char *prefix = got_worktree_get_path_prefix(worktree);
2607 char *p, *worktree_subdir = cwd +
2608 strlen(got_worktree_get_root_path(worktree));
2609 if (asprintf(&p, "%s%s%s%s%s",
2610 prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
2611 worktree_subdir, worktree_subdir[0] ? "/" : "",
2612 path) == -1) {
2613 error = got_error_from_errno("asprintf");
2614 goto done;
2616 error = got_repo_map_path(&in_repo_path, repo, p, 0);
2617 free(p);
2618 } else {
2619 error = got_repo_map_path(&in_repo_path, repo, path, 1);
2621 if (error)
2622 goto done;
2624 if (commit_id_str == NULL) {
2625 struct got_reference *head_ref;
2626 error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
2627 if (error != NULL)
2628 goto done;
2629 error = got_ref_resolve(&commit_id, repo, head_ref);
2630 got_ref_close(head_ref);
2631 if (error != NULL)
2632 goto done;
2633 } else {
2634 error = got_repo_match_object_id(&commit_id, NULL,
2635 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
2636 if (error)
2637 goto done;
2640 error = got_object_id_by_path(&obj_id, repo, commit_id, in_repo_path);
2641 if (error)
2642 goto done;
2643 if (obj_id == NULL) {
2644 error = got_error(GOT_ERR_NO_OBJ);
2645 goto done;
2648 error = got_object_get_type(&obj_type, repo, obj_id);
2649 if (error)
2650 goto done;
2652 if (obj_type != GOT_OBJ_TYPE_BLOB) {
2653 error = got_error(GOT_ERR_OBJ_TYPE);
2654 goto done;
2657 error = got_object_open_as_blob(&blob, repo, obj_id, 8192);
2658 if (error)
2659 goto done;
2660 bca.f = got_opentemp();
2661 if (bca.f == NULL) {
2662 error = got_error_from_errno("got_opentemp");
2663 goto done;
2665 error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
2666 &bca.line_offsets, bca.f, blob);
2667 if (error || bca.nlines == 0)
2668 goto done;
2670 /* Don't include \n at EOF in the blame line count. */
2671 if (bca.line_offsets[bca.nlines - 1] == filesize)
2672 bca.nlines--;
2674 bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
2675 if (bca.lines == NULL) {
2676 error = got_error_from_errno("calloc");
2677 goto done;
2679 bca.lineno_cur = 1;
2680 bca.nlines_prec = 0;
2681 i = bca.nlines;
2682 while (i > 0) {
2683 i /= 10;
2684 bca.nlines_prec++;
2686 bca.repo = repo;
2688 error = got_blame(in_repo_path, commit_id, repo, blame_cb, &bca,
2689 check_cancelled, NULL);
2690 done:
2691 free(in_repo_path);
2692 free(repo_path);
2693 free(cwd);
2694 free(commit_id);
2695 free(obj_id);
2696 if (blob)
2697 got_object_blob_close(blob);
2698 if (worktree)
2699 got_worktree_close(worktree);
2700 if (repo) {
2701 const struct got_error *repo_error;
2702 repo_error = got_repo_close(repo);
2703 if (error == NULL)
2704 error = repo_error;
2706 if (bca.lines) {
2707 for (i = 0; i < bca.nlines; i++) {
2708 struct blame_line *bline = &bca.lines[i];
2709 free(bline->id_str);
2710 free(bline->committer);
2712 free(bca.lines);
2714 free(bca.line_offsets);
2715 if (bca.f && fclose(bca.f) == EOF && error == NULL)
2716 error = got_error_from_errno("fclose");
2717 return error;
2720 __dead static void
2721 usage_tree(void)
2723 fprintf(stderr,
2724 "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
2725 getprogname());
2726 exit(1);
2729 static void
2730 print_entry(struct got_tree_entry *te, const char *id, const char *path,
2731 const char *root_path)
2733 int is_root_path = (strcmp(path, root_path) == 0);
2734 const char *modestr = "";
2735 mode_t mode = got_tree_entry_get_mode(te);
2737 path += strlen(root_path);
2738 while (path[0] == '/')
2739 path++;
2741 if (got_object_tree_entry_is_submodule(te))
2742 modestr = "$";
2743 else if (S_ISLNK(mode))
2744 modestr = "@";
2745 else if (S_ISDIR(mode))
2746 modestr = "/";
2747 else if (mode & S_IXUSR)
2748 modestr = "*";
2750 printf("%s%s%s%s%s\n", id ? id : "", path,
2751 is_root_path ? "" : "/", got_tree_entry_get_name(te), modestr);
2754 static const struct got_error *
2755 print_tree(const char *path, struct got_object_id *commit_id,
2756 int show_ids, int recurse, const char *root_path,
2757 struct got_repository *repo)
2759 const struct got_error *err = NULL;
2760 struct got_object_id *tree_id = NULL;
2761 struct got_tree_object *tree = NULL;
2762 int nentries, i;
2764 err = got_object_id_by_path(&tree_id, repo, commit_id, path);
2765 if (err)
2766 goto done;
2768 err = got_object_open_as_tree(&tree, repo, tree_id);
2769 if (err)
2770 goto done;
2771 nentries = got_object_tree_get_nentries(tree);
2772 for (i = 0; i < nentries; i++) {
2773 struct got_tree_entry *te;
2774 char *id = NULL;
2776 if (sigint_received || sigpipe_received)
2777 break;
2779 te = got_object_tree_get_entry(tree, i);
2780 if (show_ids) {
2781 char *id_str;
2782 err = got_object_id_str(&id_str,
2783 got_tree_entry_get_id(te));
2784 if (err)
2785 goto done;
2786 if (asprintf(&id, "%s ", id_str) == -1) {
2787 err = got_error_from_errno("asprintf");
2788 free(id_str);
2789 goto done;
2791 free(id_str);
2793 print_entry(te, id, path, root_path);
2794 free(id);
2796 if (recurse && S_ISDIR(got_tree_entry_get_mode(te))) {
2797 char *child_path;
2798 if (asprintf(&child_path, "%s%s%s", path,
2799 path[0] == '/' && path[1] == '\0' ? "" : "/",
2800 got_tree_entry_get_name(te)) == -1) {
2801 err = got_error_from_errno("asprintf");
2802 goto done;
2804 err = print_tree(child_path, commit_id, show_ids, 1,
2805 root_path, repo);
2806 free(child_path);
2807 if (err)
2808 goto done;
2811 done:
2812 if (tree)
2813 got_object_tree_close(tree);
2814 free(tree_id);
2815 return err;
2818 static const struct got_error *
2819 cmd_tree(int argc, char *argv[])
2821 const struct got_error *error;
2822 struct got_repository *repo = NULL;
2823 struct got_worktree *worktree = NULL;
2824 const char *path;
2825 char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
2826 struct got_object_id *commit_id = NULL;
2827 char *commit_id_str = NULL;
2828 int show_ids = 0, recurse = 0;
2829 int ch;
2831 #ifndef PROFILE
2832 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
2833 NULL) == -1)
2834 err(1, "pledge");
2835 #endif
2837 while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
2838 switch (ch) {
2839 case 'c':
2840 commit_id_str = optarg;
2841 break;
2842 case 'r':
2843 repo_path = realpath(optarg, NULL);
2844 if (repo_path == NULL)
2845 return got_error_from_errno2("realpath",
2846 optarg);
2847 got_path_strip_trailing_slashes(repo_path);
2848 break;
2849 case 'i':
2850 show_ids = 1;
2851 break;
2852 case 'R':
2853 recurse = 1;
2854 break;
2855 default:
2856 usage_tree();
2857 /* NOTREACHED */
2861 argc -= optind;
2862 argv += optind;
2864 if (argc == 1)
2865 path = argv[0];
2866 else if (argc > 1)
2867 usage_tree();
2868 else
2869 path = NULL;
2871 cwd = getcwd(NULL, 0);
2872 if (cwd == NULL) {
2873 error = got_error_from_errno("getcwd");
2874 goto done;
2876 if (repo_path == NULL) {
2877 error = got_worktree_open(&worktree, cwd);
2878 if (error && error->code != GOT_ERR_NOT_WORKTREE)
2879 goto done;
2880 else
2881 error = NULL;
2882 if (worktree) {
2883 repo_path =
2884 strdup(got_worktree_get_repo_path(worktree));
2885 if (repo_path == NULL)
2886 error = got_error_from_errno("strdup");
2887 if (error)
2888 goto done;
2889 } else {
2890 repo_path = strdup(cwd);
2891 if (repo_path == NULL) {
2892 error = got_error_from_errno("strdup");
2893 goto done;
2898 error = got_repo_open(&repo, repo_path, NULL);
2899 if (error != NULL)
2900 goto done;
2902 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
2903 if (error)
2904 goto done;
2906 if (path == NULL) {
2907 if (worktree) {
2908 char *p, *worktree_subdir = cwd +
2909 strlen(got_worktree_get_root_path(worktree));
2910 if (asprintf(&p, "%s/%s",
2911 got_worktree_get_path_prefix(worktree),
2912 worktree_subdir) == -1) {
2913 error = got_error_from_errno("asprintf");
2914 goto done;
2916 error = got_repo_map_path(&in_repo_path, repo, p, 1);
2917 free(p);
2918 if (error)
2919 goto done;
2920 } else
2921 path = "/";
2923 if (in_repo_path == NULL) {
2924 error = got_repo_map_path(&in_repo_path, repo, path, 1);
2925 if (error != NULL)
2926 goto done;
2929 if (commit_id_str == NULL) {
2930 struct got_reference *head_ref;
2931 error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
2932 if (error != NULL)
2933 goto done;
2934 error = got_ref_resolve(&commit_id, repo, head_ref);
2935 got_ref_close(head_ref);
2936 if (error != NULL)
2937 goto done;
2938 } else {
2939 error = got_repo_match_object_id(&commit_id, NULL,
2940 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
2941 if (error)
2942 goto done;
2945 error = print_tree(in_repo_path, commit_id, show_ids, recurse,
2946 in_repo_path, repo);
2947 done:
2948 free(in_repo_path);
2949 free(repo_path);
2950 free(cwd);
2951 free(commit_id);
2952 if (worktree)
2953 got_worktree_close(worktree);
2954 if (repo) {
2955 const struct got_error *repo_error;
2956 repo_error = got_repo_close(repo);
2957 if (error == NULL)
2958 error = repo_error;
2960 return error;
2963 __dead static void
2964 usage_status(void)
2966 fprintf(stderr, "usage: %s status [path ...]\n", getprogname());
2967 exit(1);
2970 static const struct got_error *
2971 print_status(void *arg, unsigned char status, unsigned char staged_status,
2972 const char *path, struct got_object_id *blob_id,
2973 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
2974 int dirfd, const char *de_name)
2976 if (status == staged_status && (status == GOT_STATUS_DELETE))
2977 status = GOT_STATUS_NO_CHANGE;
2978 printf("%c%c %s\n", status, staged_status, path);
2979 return NULL;
2982 static const struct got_error *
2983 cmd_status(int argc, char *argv[])
2985 const struct got_error *error = NULL;
2986 struct got_repository *repo = NULL;
2987 struct got_worktree *worktree = NULL;
2988 char *cwd = NULL;
2989 struct got_pathlist_head paths;
2990 struct got_pathlist_entry *pe;
2991 int ch;
2993 TAILQ_INIT(&paths);
2995 while ((ch = getopt(argc, argv, "")) != -1) {
2996 switch (ch) {
2997 default:
2998 usage_status();
2999 /* NOTREACHED */
3003 argc -= optind;
3004 argv += optind;
3006 #ifndef PROFILE
3007 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
3008 NULL) == -1)
3009 err(1, "pledge");
3010 #endif
3011 cwd = getcwd(NULL, 0);
3012 if (cwd == NULL) {
3013 error = got_error_from_errno("getcwd");
3014 goto done;
3017 error = got_worktree_open(&worktree, cwd);
3018 if (error != NULL)
3019 goto done;
3021 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
3022 NULL);
3023 if (error != NULL)
3024 goto done;
3026 error = apply_unveil(got_repo_get_path(repo), 1,
3027 got_worktree_get_root_path(worktree));
3028 if (error)
3029 goto done;
3031 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
3032 if (error)
3033 goto done;
3035 error = got_worktree_status(worktree, &paths, repo, print_status, NULL,
3036 check_cancelled, NULL);
3037 done:
3038 TAILQ_FOREACH(pe, &paths, entry)
3039 free((char *)pe->path);
3040 got_pathlist_free(&paths);
3041 free(cwd);
3042 return error;
3045 __dead static void
3046 usage_ref(void)
3048 fprintf(stderr,
3049 "usage: %s ref [-r repository] -l | -d name | [-s] name target\n",
3050 getprogname());
3051 exit(1);
3054 static const struct got_error *
3055 list_refs(struct got_repository *repo)
3057 static const struct got_error *err = NULL;
3058 struct got_reflist_head refs;
3059 struct got_reflist_entry *re;
3061 SIMPLEQ_INIT(&refs);
3062 err = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
3063 if (err)
3064 return err;
3066 SIMPLEQ_FOREACH(re, &refs, entry) {
3067 char *refstr;
3068 refstr = got_ref_to_str(re->ref);
3069 if (refstr == NULL)
3070 return got_error_from_errno("got_ref_to_str");
3071 printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
3072 free(refstr);
3075 got_ref_list_free(&refs);
3076 return NULL;
3079 static const struct got_error *
3080 delete_ref(struct got_repository *repo, const char *refname)
3082 const struct got_error *err = NULL;
3083 struct got_reference *ref;
3085 err = got_ref_open(&ref, repo, refname, 0);
3086 if (err)
3087 return err;
3089 err = got_ref_delete(ref, repo);
3090 got_ref_close(ref);
3091 return err;
3094 static const struct got_error *
3095 add_ref(struct got_repository *repo, const char *refname, const char *target)
3097 const struct got_error *err = NULL;
3098 struct got_object_id *id;
3099 struct got_reference *ref = NULL;
3102 * Don't let the user create a reference name with a leading '-'.
3103 * While technically a valid reference name, this case is usually
3104 * an unintended typo.
3106 if (refname[0] == '-')
3107 return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
3109 err = got_repo_match_object_id_prefix(&id, target, GOT_OBJ_TYPE_ANY,
3110 repo);
3111 if (err) {
3112 struct got_reference *target_ref;
3114 if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
3115 return err;
3116 err = got_ref_open(&target_ref, repo, target, 0);
3117 if (err)
3118 return err;
3119 err = got_ref_resolve(&id, repo, target_ref);
3120 got_ref_close(target_ref);
3121 if (err)
3122 return err;
3125 err = got_ref_alloc(&ref, refname, id);
3126 if (err)
3127 goto done;
3129 err = got_ref_write(ref, repo);
3130 done:
3131 if (ref)
3132 got_ref_close(ref);
3133 free(id);
3134 return err;
3137 static const struct got_error *
3138 add_symref(struct got_repository *repo, const char *refname, const char *target)
3140 const struct got_error *err = NULL;
3141 struct got_reference *ref = NULL;
3142 struct got_reference *target_ref = NULL;
3145 * Don't let the user create a reference name with a leading '-'.
3146 * While technically a valid reference name, this case is usually
3147 * an unintended typo.
3149 if (refname[0] == '-')
3150 return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
3152 err = got_ref_open(&target_ref, repo, target, 0);
3153 if (err)
3154 return err;
3156 err = got_ref_alloc_symref(&ref, refname, target_ref);
3157 if (err)
3158 goto done;
3160 err = got_ref_write(ref, repo);
3161 done:
3162 if (target_ref)
3163 got_ref_close(target_ref);
3164 if (ref)
3165 got_ref_close(ref);
3166 return err;
3169 static const struct got_error *
3170 cmd_ref(int argc, char *argv[])
3172 const struct got_error *error = NULL;
3173 struct got_repository *repo = NULL;
3174 struct got_worktree *worktree = NULL;
3175 char *cwd = NULL, *repo_path = NULL;
3176 int ch, do_list = 0, create_symref = 0;
3177 const char *delref = NULL;
3179 /* TODO: Add -s option for adding symbolic references. */
3180 while ((ch = getopt(argc, argv, "d:r:ls")) != -1) {
3181 switch (ch) {
3182 case 'd':
3183 delref = optarg;
3184 break;
3185 case 'r':
3186 repo_path = realpath(optarg, NULL);
3187 if (repo_path == NULL)
3188 return got_error_from_errno2("realpath",
3189 optarg);
3190 got_path_strip_trailing_slashes(repo_path);
3191 break;
3192 case 'l':
3193 do_list = 1;
3194 break;
3195 case 's':
3196 create_symref = 1;
3197 break;
3198 default:
3199 usage_ref();
3200 /* NOTREACHED */
3204 if (do_list && delref)
3205 errx(1, "-l and -d options are mutually exclusive\n");
3207 argc -= optind;
3208 argv += optind;
3210 if (do_list || delref) {
3211 if (create_symref)
3212 errx(1, "-s option cannot be used together with the "
3213 "-l or -d options");
3214 if (argc > 0)
3215 usage_ref();
3216 } else if (argc != 2)
3217 usage_ref();
3219 #ifndef PROFILE
3220 if (do_list) {
3221 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
3222 NULL) == -1)
3223 err(1, "pledge");
3224 } else {
3225 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
3226 "sendfd unveil", NULL) == -1)
3227 err(1, "pledge");
3229 #endif
3230 cwd = getcwd(NULL, 0);
3231 if (cwd == NULL) {
3232 error = got_error_from_errno("getcwd");
3233 goto done;
3236 if (repo_path == NULL) {
3237 error = got_worktree_open(&worktree, cwd);
3238 if (error && error->code != GOT_ERR_NOT_WORKTREE)
3239 goto done;
3240 else
3241 error = NULL;
3242 if (worktree) {
3243 repo_path =
3244 strdup(got_worktree_get_repo_path(worktree));
3245 if (repo_path == NULL)
3246 error = got_error_from_errno("strdup");
3247 if (error)
3248 goto done;
3249 } else {
3250 repo_path = strdup(cwd);
3251 if (repo_path == NULL) {
3252 error = got_error_from_errno("strdup");
3253 goto done;
3258 error = got_repo_open(&repo, repo_path, NULL);
3259 if (error != NULL)
3260 goto done;
3262 error = apply_unveil(got_repo_get_path(repo), do_list,
3263 worktree ? got_worktree_get_root_path(worktree) : NULL);
3264 if (error)
3265 goto done;
3267 if (do_list)
3268 error = list_refs(repo);
3269 else if (delref)
3270 error = delete_ref(repo, delref);
3271 else if (create_symref)
3272 error = add_symref(repo, argv[0], argv[1]);
3273 else
3274 error = add_ref(repo, argv[0], argv[1]);
3275 done:
3276 if (repo)
3277 got_repo_close(repo);
3278 if (worktree)
3279 got_worktree_close(worktree);
3280 free(cwd);
3281 free(repo_path);
3282 return error;
3285 __dead static void
3286 usage_branch(void)
3288 fprintf(stderr,
3289 "usage: %s branch [-c commit] [-r repository] [-l] | -d name | "
3290 "[name]\n", getprogname());
3291 exit(1);
3294 static const struct got_error *
3295 list_branch(struct got_repository *repo, struct got_worktree *worktree,
3296 struct got_reference *ref)
3298 const struct got_error *err = NULL;
3299 const char *refname, *marker = " ";
3300 char *refstr;
3302 refname = got_ref_get_name(ref);
3303 if (worktree && strcmp(refname,
3304 got_worktree_get_head_ref_name(worktree)) == 0) {
3305 struct got_object_id *id = NULL;
3307 err = got_ref_resolve(&id, repo, ref);
3308 if (err)
3309 return err;
3310 if (got_object_id_cmp(id,
3311 got_worktree_get_base_commit_id(worktree)) == 0)
3312 marker = "* ";
3313 else
3314 marker = "~ ";
3315 free(id);
3318 if (strncmp(refname, "refs/heads/", 11) == 0)
3319 refname += 11;
3320 if (strncmp(refname, "refs/got/worktree/", 18) == 0)
3321 refname += 18;
3323 refstr = got_ref_to_str(ref);
3324 if (refstr == NULL)
3325 return got_error_from_errno("got_ref_to_str");
3327 printf("%s%s: %s\n", marker, refname, refstr);
3328 free(refstr);
3329 return NULL;
3332 static const struct got_error *
3333 show_current_branch(struct got_repository *repo, struct got_worktree *worktree)
3335 const char *refname;
3337 if (worktree == NULL)
3338 return got_error(GOT_ERR_NOT_WORKTREE);
3340 refname = got_worktree_get_head_ref_name(worktree);
3342 if (strncmp(refname, "refs/heads/", 11) == 0)
3343 refname += 11;
3344 if (strncmp(refname, "refs/got/worktree/", 18) == 0)
3345 refname += 18;
3347 printf("%s\n", refname);
3349 return NULL;
3352 static const struct got_error *
3353 list_branches(struct got_repository *repo, struct got_worktree *worktree)
3355 static const struct got_error *err = NULL;
3356 struct got_reflist_head refs;
3357 struct got_reflist_entry *re;
3358 struct got_reference *temp_ref = NULL;
3359 int rebase_in_progress, histedit_in_progress;
3361 SIMPLEQ_INIT(&refs);
3363 if (worktree) {
3364 err = got_worktree_rebase_in_progress(&rebase_in_progress,
3365 worktree);
3366 if (err)
3367 return err;
3369 err = got_worktree_histedit_in_progress(&histedit_in_progress,
3370 worktree);
3371 if (err)
3372 return err;
3374 if (rebase_in_progress || histedit_in_progress) {
3375 err = got_ref_open(&temp_ref, repo,
3376 got_worktree_get_head_ref_name(worktree), 0);
3377 if (err)
3378 return err;
3379 list_branch(repo, worktree, temp_ref);
3380 got_ref_close(temp_ref);
3384 err = got_ref_list(&refs, repo, "refs/heads",
3385 got_ref_cmp_by_name, NULL);
3386 if (err)
3387 return err;
3389 SIMPLEQ_FOREACH(re, &refs, entry)
3390 list_branch(repo, worktree, re->ref);
3392 got_ref_list_free(&refs);
3393 return NULL;
3396 static const struct got_error *
3397 delete_branch(struct got_repository *repo, struct got_worktree *worktree,
3398 const char *branch_name)
3400 const struct got_error *err = NULL;
3401 struct got_reference *ref = NULL;
3402 char *refname;
3404 if (asprintf(&refname, "refs/heads/%s", branch_name) == -1)
3405 return got_error_from_errno("asprintf");
3407 err = got_ref_open(&ref, repo, refname, 0);
3408 if (err)
3409 goto done;
3411 if (worktree &&
3412 strcmp(got_worktree_get_head_ref_name(worktree),
3413 got_ref_get_name(ref)) == 0) {
3414 err = got_error_msg(GOT_ERR_SAME_BRANCH,
3415 "will not delete this work tree's current branch");
3416 goto done;
3419 err = got_ref_delete(ref, repo);
3420 done:
3421 if (ref)
3422 got_ref_close(ref);
3423 free(refname);
3424 return err;
3427 static const struct got_error *
3428 add_branch(struct got_repository *repo, const char *branch_name,
3429 struct got_object_id *base_commit_id)
3431 const struct got_error *err = NULL;
3432 struct got_reference *ref = NULL;
3433 char *base_refname = NULL, *refname = NULL;
3436 * Don't let the user create a branch name with a leading '-'.
3437 * While technically a valid reference name, this case is usually
3438 * an unintended typo.
3440 if (branch_name[0] == '-')
3441 return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
3443 if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
3444 err = got_error_from_errno("asprintf");
3445 goto done;
3448 err = got_ref_open(&ref, repo, refname, 0);
3449 if (err == NULL) {
3450 err = got_error(GOT_ERR_BRANCH_EXISTS);
3451 goto done;
3452 } else if (err->code != GOT_ERR_NOT_REF)
3453 goto done;
3455 err = got_ref_alloc(&ref, refname, base_commit_id);
3456 if (err)
3457 goto done;
3459 err = got_ref_write(ref, repo);
3460 done:
3461 if (ref)
3462 got_ref_close(ref);
3463 free(base_refname);
3464 free(refname);
3465 return err;
3468 static const struct got_error *
3469 cmd_branch(int argc, char *argv[])
3471 const struct got_error *error = NULL;
3472 struct got_repository *repo = NULL;
3473 struct got_worktree *worktree = NULL;
3474 char *cwd = NULL, *repo_path = NULL;
3475 int ch, do_list = 0, do_show = 0;
3476 const char *delref = NULL, *commit_id_arg = NULL;
3478 while ((ch = getopt(argc, argv, "c:d:r:l")) != -1) {
3479 switch (ch) {
3480 case 'c':
3481 commit_id_arg = optarg;
3482 break;
3483 case 'd':
3484 delref = optarg;
3485 break;
3486 case 'r':
3487 repo_path = realpath(optarg, NULL);
3488 if (repo_path == NULL)
3489 return got_error_from_errno2("realpath",
3490 optarg);
3491 got_path_strip_trailing_slashes(repo_path);
3492 break;
3493 case 'l':
3494 do_list = 1;
3495 break;
3496 default:
3497 usage_branch();
3498 /* NOTREACHED */
3502 if (do_list && delref)
3503 errx(1, "-l and -d options are mutually exclusive\n");
3505 argc -= optind;
3506 argv += optind;
3508 if (!do_list && !delref && argc == 0)
3509 do_show = 1;
3511 if ((do_list || delref || do_show) && commit_id_arg != NULL)
3512 errx(1, "-c option can only be used when creating a branch");
3514 if (do_list || delref) {
3515 if (argc > 0)
3516 usage_branch();
3517 } else if (!do_show && argc != 1)
3518 usage_branch();
3520 #ifndef PROFILE
3521 if (do_list || do_show) {
3522 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
3523 NULL) == -1)
3524 err(1, "pledge");
3525 } else {
3526 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
3527 "sendfd unveil", NULL) == -1)
3528 err(1, "pledge");
3530 #endif
3531 cwd = getcwd(NULL, 0);
3532 if (cwd == NULL) {
3533 error = got_error_from_errno("getcwd");
3534 goto done;
3537 if (repo_path == NULL) {
3538 error = got_worktree_open(&worktree, cwd);
3539 if (error && error->code != GOT_ERR_NOT_WORKTREE)
3540 goto done;
3541 else
3542 error = NULL;
3543 if (worktree) {
3544 repo_path =
3545 strdup(got_worktree_get_repo_path(worktree));
3546 if (repo_path == NULL)
3547 error = got_error_from_errno("strdup");
3548 if (error)
3549 goto done;
3550 } else {
3551 repo_path = strdup(cwd);
3552 if (repo_path == NULL) {
3553 error = got_error_from_errno("strdup");
3554 goto done;
3559 error = got_repo_open(&repo, repo_path, NULL);
3560 if (error != NULL)
3561 goto done;
3563 error = apply_unveil(got_repo_get_path(repo), do_list,
3564 worktree ? got_worktree_get_root_path(worktree) : NULL);
3565 if (error)
3566 goto done;
3568 if (do_show)
3569 error = show_current_branch(repo, worktree);
3570 else if (do_list)
3571 error = list_branches(repo, worktree);
3572 else if (delref)
3573 error = delete_branch(repo, worktree, delref);
3574 else {
3575 struct got_object_id *commit_id;
3576 if (commit_id_arg == NULL)
3577 commit_id_arg = worktree ?
3578 got_worktree_get_head_ref_name(worktree) :
3579 GOT_REF_HEAD;
3580 error = got_repo_match_object_id(&commit_id, NULL,
3581 commit_id_arg, GOT_OBJ_TYPE_COMMIT, 1, repo);
3582 if (error)
3583 goto done;
3584 error = add_branch(repo, argv[0], commit_id);
3585 free(commit_id);
3587 done:
3588 if (repo)
3589 got_repo_close(repo);
3590 if (worktree)
3591 got_worktree_close(worktree);
3592 free(cwd);
3593 free(repo_path);
3594 return error;
3598 __dead static void
3599 usage_tag(void)
3601 fprintf(stderr,
3602 "usage: %s tag [-r repository] | -l | "
3603 "[-m message] name [commit]\n", getprogname());
3604 exit(1);
3607 #if 0
3608 static const struct got_error *
3609 sort_tags(struct got_reflist_head *sorted, struct got_reflist_head *tags)
3611 const struct got_error *err = NULL;
3612 struct got_reflist_entry *re, *se, *new;
3613 struct got_object_id *re_id, *se_id;
3614 struct got_tag_object *re_tag, *se_tag;
3615 time_t re_time, se_time;
3617 SIMPLEQ_FOREACH(re, tags, entry) {
3618 se = SIMPLEQ_FIRST(sorted);
3619 if (se == NULL) {
3620 err = got_reflist_entry_dup(&new, re);
3621 if (err)
3622 return err;
3623 SIMPLEQ_INSERT_HEAD(sorted, new, entry);
3624 continue;
3625 } else {
3626 err = got_ref_resolve(&re_id, repo, re->ref);
3627 if (err)
3628 break;
3629 err = got_object_open_as_tag(&re_tag, repo, re_id);
3630 free(re_id);
3631 if (err)
3632 break;
3633 re_time = got_object_tag_get_tagger_time(re_tag);
3634 got_object_tag_close(re_tag);
3637 while (se) {
3638 err = got_ref_resolve(&se_id, repo, re->ref);
3639 if (err)
3640 break;
3641 err = got_object_open_as_tag(&se_tag, repo, se_id);
3642 free(se_id);
3643 if (err)
3644 break;
3645 se_time = got_object_tag_get_tagger_time(se_tag);
3646 got_object_tag_close(se_tag);
3648 if (se_time > re_time) {
3649 err = got_reflist_entry_dup(&new, re);
3650 if (err)
3651 return err;
3652 SIMPLEQ_INSERT_AFTER(sorted, se, new, entry);
3653 break;
3655 se = SIMPLEQ_NEXT(se, entry);
3656 continue;
3659 done:
3660 return err;
3662 #endif
3664 static const struct got_error *
3665 list_tags(struct got_repository *repo, struct got_worktree *worktree)
3667 static const struct got_error *err = NULL;
3668 struct got_reflist_head refs;
3669 struct got_reflist_entry *re;
3671 SIMPLEQ_INIT(&refs);
3673 err = got_ref_list(&refs, repo, "refs/tags", got_ref_cmp_tags, repo);
3674 if (err)
3675 return err;
3677 SIMPLEQ_FOREACH(re, &refs, entry) {
3678 const char *refname;
3679 char *refstr, *tagmsg0, *tagmsg, *line, *id_str, *datestr;
3680 char datebuf[26];
3681 const char *tagger;
3682 time_t tagger_time;
3683 struct got_object_id *id;
3684 struct got_tag_object *tag;
3685 struct got_commit_object *commit = NULL;
3687 refname = got_ref_get_name(re->ref);
3688 if (strncmp(refname, "refs/tags/", 10) != 0)
3689 continue;
3690 refname += 10;
3691 refstr = got_ref_to_str(re->ref);
3692 if (refstr == NULL) {
3693 err = got_error_from_errno("got_ref_to_str");
3694 break;
3696 printf("%stag %s %s\n", GOT_COMMIT_SEP_STR, refname, refstr);
3697 free(refstr);
3699 err = got_ref_resolve(&id, repo, re->ref);
3700 if (err)
3701 break;
3702 err = got_object_open_as_tag(&tag, repo, id);
3703 if (err) {
3704 if (err->code != GOT_ERR_OBJ_TYPE) {
3705 free(id);
3706 break;
3708 /* "lightweight" tag */
3709 err = got_object_open_as_commit(&commit, repo, id);
3710 if (err) {
3711 free(id);
3712 break;
3714 tagger = got_object_commit_get_committer(commit);
3715 tagger_time =
3716 got_object_commit_get_committer_time(commit);
3717 err = got_object_id_str(&id_str, id);
3718 free(id);
3719 if (err)
3720 break;
3721 } else {
3722 free(id);
3723 tagger = got_object_tag_get_tagger(tag);
3724 tagger_time = got_object_tag_get_tagger_time(tag);
3725 err = got_object_id_str(&id_str,
3726 got_object_tag_get_object_id(tag));
3727 if (err)
3728 break;
3730 printf("from: %s\n", tagger);
3731 datestr = get_datestr(&tagger_time, datebuf);
3732 if (datestr)
3733 printf("date: %s UTC\n", datestr);
3734 if (commit)
3735 printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT, id_str);
3736 else {
3737 switch (got_object_tag_get_object_type(tag)) {
3738 case GOT_OBJ_TYPE_BLOB:
3739 printf("object: %s %s\n", GOT_OBJ_LABEL_BLOB,
3740 id_str);
3741 break;
3742 case GOT_OBJ_TYPE_TREE:
3743 printf("object: %s %s\n", GOT_OBJ_LABEL_TREE,
3744 id_str);
3745 break;
3746 case GOT_OBJ_TYPE_COMMIT:
3747 printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT,
3748 id_str);
3749 break;
3750 case GOT_OBJ_TYPE_TAG:
3751 printf("object: %s %s\n", GOT_OBJ_LABEL_TAG,
3752 id_str);
3753 break;
3754 default:
3755 break;
3758 free(id_str);
3759 if (commit) {
3760 err = got_object_commit_get_logmsg(&tagmsg0, commit);
3761 if (err)
3762 break;
3763 got_object_commit_close(commit);
3764 } else {
3765 tagmsg0 = strdup(got_object_tag_get_message(tag));
3766 got_object_tag_close(tag);
3767 if (tagmsg0 == NULL) {
3768 err = got_error_from_errno("strdup");
3769 break;
3773 tagmsg = tagmsg0;
3774 do {
3775 line = strsep(&tagmsg, "\n");
3776 if (line)
3777 printf(" %s\n", line);
3778 } while (line);
3779 free(tagmsg0);
3782 got_ref_list_free(&refs);
3783 return NULL;
3786 static const struct got_error *
3787 get_tag_message(char **tagmsg, char **tagmsg_path, const char *commit_id_str,
3788 const char *tag_name, const char *repo_path)
3790 const struct got_error *err = NULL;
3791 char *template = NULL, *initial_content = NULL;
3792 char *editor = NULL;
3793 int fd = -1;
3795 if (asprintf(&template, "/tmp/got-tagmsg") == -1) {
3796 err = got_error_from_errno("asprintf");
3797 goto done;
3800 if (asprintf(&initial_content, "\n# tagging commit %s as %s\n",
3801 commit_id_str, tag_name) == -1) {
3802 err = got_error_from_errno("asprintf");
3803 goto done;
3806 err = got_opentemp_named_fd(tagmsg_path, &fd, template);
3807 if (err)
3808 goto done;
3810 dprintf(fd, initial_content);
3811 close(fd);
3813 err = get_editor(&editor);
3814 if (err)
3815 goto done;
3816 err = edit_logmsg(tagmsg, editor, *tagmsg_path, initial_content);
3817 done:
3818 free(initial_content);
3819 free(template);
3820 free(editor);
3822 /* Editor is done; we can now apply unveil(2) */
3823 if (err == NULL) {
3824 err = apply_unveil(repo_path, 0, NULL);
3825 if (err) {
3826 free(*tagmsg);
3827 *tagmsg = NULL;
3830 return err;
3833 static const struct got_error *
3834 add_tag(struct got_repository *repo, const char *tag_name,
3835 const char *commit_arg, const char *tagmsg_arg)
3837 const struct got_error *err = NULL;
3838 struct got_object_id *commit_id = NULL, *tag_id = NULL;
3839 char *label = NULL, *commit_id_str = NULL;
3840 struct got_reference *ref = NULL;
3841 char *refname = NULL, *tagmsg = NULL, *tagger = NULL;
3842 char *tagmsg_path = NULL, *tag_id_str = NULL;
3843 int preserve_tagmsg = 0;
3846 * Don't let the user create a tag name with a leading '-'.
3847 * While technically a valid reference name, this case is usually
3848 * an unintended typo.
3850 if (tag_name[0] == '-')
3851 return got_error_path(tag_name, GOT_ERR_REF_NAME_MINUS);
3853 err = get_author(&tagger, repo);
3854 if (err)
3855 return err;
3857 err = got_repo_match_object_id(&commit_id, &label, commit_arg,
3858 GOT_OBJ_TYPE_COMMIT, 1, repo);
3859 if (err)
3860 goto done;
3862 err = got_object_id_str(&commit_id_str, commit_id);
3863 if (err)
3864 goto done;
3866 if (strncmp("refs/tags/", tag_name, 10) == 0) {
3867 refname = strdup(tag_name);
3868 if (refname == NULL) {
3869 err = got_error_from_errno("strdup");
3870 goto done;
3872 tag_name += 10;
3873 } else if (asprintf(&refname, "refs/tags/%s", tag_name) == -1) {
3874 err = got_error_from_errno("asprintf");
3875 goto done;
3878 err = got_ref_open(&ref, repo, refname, 0);
3879 if (err == NULL) {
3880 err = got_error(GOT_ERR_TAG_EXISTS);
3881 goto done;
3882 } else if (err->code != GOT_ERR_NOT_REF)
3883 goto done;
3885 if (tagmsg_arg == NULL) {
3886 err = get_tag_message(&tagmsg, &tagmsg_path, commit_id_str,
3887 tag_name, got_repo_get_path(repo));
3888 if (err) {
3889 if (err->code != GOT_ERR_COMMIT_MSG_EMPTY &&
3890 tagmsg_path != NULL)
3891 preserve_tagmsg = 1;
3892 goto done;
3896 err = got_object_tag_create(&tag_id, tag_name, commit_id,
3897 tagger, time(NULL), tagmsg ? tagmsg : tagmsg_arg, repo);
3898 if (err) {
3899 if (tagmsg_path)
3900 preserve_tagmsg = 1;
3901 goto done;
3904 err = got_ref_alloc(&ref, refname, tag_id);
3905 if (err) {
3906 if (tagmsg_path)
3907 preserve_tagmsg = 1;
3908 goto done;
3911 err = got_ref_write(ref, repo);
3912 if (err) {
3913 if (tagmsg_path)
3914 preserve_tagmsg = 1;
3915 goto done;
3918 err = got_object_id_str(&tag_id_str, tag_id);
3919 if (err) {
3920 if (tagmsg_path)
3921 preserve_tagmsg = 1;
3922 goto done;
3924 printf("Created tag %s\n", tag_id_str);
3925 done:
3926 if (preserve_tagmsg) {
3927 fprintf(stderr, "%s: tag message preserved in %s\n",
3928 getprogname(), tagmsg_path);
3929 } else if (tagmsg_path && unlink(tagmsg_path) == -1 && err == NULL)
3930 err = got_error_from_errno2("unlink", tagmsg_path);
3931 free(tag_id_str);
3932 if (ref)
3933 got_ref_close(ref);
3934 free(commit_id);
3935 free(commit_id_str);
3936 free(refname);
3937 free(tagmsg);
3938 free(tagmsg_path);
3939 free(tagger);
3940 return err;
3943 static const struct got_error *
3944 cmd_tag(int argc, char *argv[])
3946 const struct got_error *error = NULL;
3947 struct got_repository *repo = NULL;
3948 struct got_worktree *worktree = NULL;
3949 char *cwd = NULL, *repo_path = NULL, *commit_id_str = NULL;
3950 char *gitconfig_path = NULL;
3951 const char *tag_name, *commit_id_arg = NULL, *tagmsg = NULL;
3952 int ch, do_list = 0;
3954 while ((ch = getopt(argc, argv, "m:r:l")) != -1) {
3955 switch (ch) {
3956 case 'm':
3957 tagmsg = optarg;
3958 break;
3959 case 'r':
3960 repo_path = realpath(optarg, NULL);
3961 if (repo_path == NULL)
3962 return got_error_from_errno2("realpath",
3963 optarg);
3964 got_path_strip_trailing_slashes(repo_path);
3965 break;
3966 case 'l':
3967 do_list = 1;
3968 break;
3969 default:
3970 usage_tag();
3971 /* NOTREACHED */
3975 argc -= optind;
3976 argv += optind;
3978 if (do_list) {
3979 if (tagmsg)
3980 errx(1, "-l and -m options are mutually exclusive\n");
3981 if (argc > 0)
3982 usage_tag();
3983 } else if (argc < 1 || argc > 2)
3984 usage_tag();
3985 else if (argc > 1)
3986 commit_id_arg = argv[1];
3987 tag_name = argv[0];
3989 #ifndef PROFILE
3990 if (do_list) {
3991 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
3992 NULL) == -1)
3993 err(1, "pledge");
3994 } else {
3995 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
3996 "sendfd unveil", NULL) == -1)
3997 err(1, "pledge");
3999 #endif
4000 cwd = getcwd(NULL, 0);
4001 if (cwd == NULL) {
4002 error = got_error_from_errno("getcwd");
4003 goto done;
4006 if (repo_path == NULL) {
4007 error = got_worktree_open(&worktree, cwd);
4008 if (error && error->code != GOT_ERR_NOT_WORKTREE)
4009 goto done;
4010 else
4011 error = NULL;
4012 if (worktree) {
4013 repo_path =
4014 strdup(got_worktree_get_repo_path(worktree));
4015 if (repo_path == NULL)
4016 error = got_error_from_errno("strdup");
4017 if (error)
4018 goto done;
4019 } else {
4020 repo_path = strdup(cwd);
4021 if (repo_path == NULL) {
4022 error = got_error_from_errno("strdup");
4023 goto done;
4028 if (do_list) {
4029 error = got_repo_open(&repo, repo_path, NULL);
4030 if (error != NULL)
4031 goto done;
4032 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
4033 if (error)
4034 goto done;
4035 error = list_tags(repo, worktree);
4036 } else {
4037 error = get_gitconfig_path(&gitconfig_path);
4038 if (error)
4039 goto done;
4040 error = got_repo_open(&repo, repo_path, gitconfig_path);
4041 if (error != NULL)
4042 goto done;
4044 if (tagmsg) {
4045 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
4046 if (error)
4047 goto done;
4050 if (commit_id_arg == NULL) {
4051 struct got_reference *head_ref;
4052 struct got_object_id *commit_id;
4053 error = got_ref_open(&head_ref, repo,
4054 worktree ? got_worktree_get_head_ref_name(worktree)
4055 : GOT_REF_HEAD, 0);
4056 if (error)
4057 goto done;
4058 error = got_ref_resolve(&commit_id, repo, head_ref);
4059 got_ref_close(head_ref);
4060 if (error)
4061 goto done;
4062 error = got_object_id_str(&commit_id_str, commit_id);
4063 free(commit_id);
4064 if (error)
4065 goto done;
4068 error = add_tag(repo, tag_name,
4069 commit_id_str ? commit_id_str : commit_id_arg, tagmsg);
4071 done:
4072 if (repo)
4073 got_repo_close(repo);
4074 if (worktree)
4075 got_worktree_close(worktree);
4076 free(cwd);
4077 free(repo_path);
4078 free(gitconfig_path);
4079 free(commit_id_str);
4080 return error;
4083 __dead static void
4084 usage_add(void)
4086 fprintf(stderr, "usage: %s add [-R] [-I] path ...\n",
4087 getprogname());
4088 exit(1);
4091 static const struct got_error *
4092 add_progress(void *arg, unsigned char status, const char *path)
4094 while (path[0] == '/')
4095 path++;
4096 printf("%c %s\n", status, path);
4097 return NULL;
4100 static const struct got_error *
4101 cmd_add(int argc, char *argv[])
4103 const struct got_error *error = NULL;
4104 struct got_repository *repo = NULL;
4105 struct got_worktree *worktree = NULL;
4106 char *cwd = NULL;
4107 struct got_pathlist_head paths;
4108 struct got_pathlist_entry *pe;
4109 int ch, can_recurse = 0, no_ignores = 0;
4111 TAILQ_INIT(&paths);
4113 while ((ch = getopt(argc, argv, "IR")) != -1) {
4114 switch (ch) {
4115 case 'I':
4116 no_ignores = 1;
4117 break;
4118 case 'R':
4119 can_recurse = 1;
4120 break;
4121 default:
4122 usage_add();
4123 /* NOTREACHED */
4127 argc -= optind;
4128 argv += optind;
4130 #ifndef PROFILE
4131 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4132 NULL) == -1)
4133 err(1, "pledge");
4134 #endif
4135 if (argc < 1)
4136 usage_add();
4138 cwd = getcwd(NULL, 0);
4139 if (cwd == NULL) {
4140 error = got_error_from_errno("getcwd");
4141 goto done;
4144 error = got_worktree_open(&worktree, cwd);
4145 if (error)
4146 goto done;
4148 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4149 NULL);
4150 if (error != NULL)
4151 goto done;
4153 error = apply_unveil(got_repo_get_path(repo), 1,
4154 got_worktree_get_root_path(worktree));
4155 if (error)
4156 goto done;
4158 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4159 if (error)
4160 goto done;
4162 if (!can_recurse && no_ignores) {
4163 error = got_error_msg(GOT_ERR_BAD_PATH,
4164 "disregarding ignores requires -R option");
4165 goto done;
4169 if (!can_recurse) {
4170 char *ondisk_path;
4171 struct stat sb;
4172 TAILQ_FOREACH(pe, &paths, entry) {
4173 if (asprintf(&ondisk_path, "%s/%s",
4174 got_worktree_get_root_path(worktree),
4175 pe->path) == -1) {
4176 error = got_error_from_errno("asprintf");
4177 goto done;
4179 if (lstat(ondisk_path, &sb) == -1) {
4180 if (errno == ENOENT) {
4181 free(ondisk_path);
4182 continue;
4184 error = got_error_from_errno2("lstat",
4185 ondisk_path);
4186 free(ondisk_path);
4187 goto done;
4189 free(ondisk_path);
4190 if (S_ISDIR(sb.st_mode)) {
4191 error = got_error_msg(GOT_ERR_BAD_PATH,
4192 "adding directories requires -R option");
4193 goto done;
4198 error = got_worktree_schedule_add(worktree, &paths, add_progress,
4199 NULL, repo, no_ignores);
4200 done:
4201 if (repo)
4202 got_repo_close(repo);
4203 if (worktree)
4204 got_worktree_close(worktree);
4205 TAILQ_FOREACH(pe, &paths, entry)
4206 free((char *)pe->path);
4207 got_pathlist_free(&paths);
4208 free(cwd);
4209 return error;
4212 __dead static void
4213 usage_remove(void)
4215 fprintf(stderr, "usage: %s remove [-f] [-k] [-R] path ...\n",
4216 getprogname());
4217 exit(1);
4220 static const struct got_error *
4221 print_remove_status(void *arg, unsigned char status,
4222 unsigned char staged_status, const char *path)
4224 while (path[0] == '/')
4225 path++;
4226 if (status == GOT_STATUS_NONEXISTENT)
4227 return NULL;
4228 if (status == staged_status && (status == GOT_STATUS_DELETE))
4229 status = GOT_STATUS_NO_CHANGE;
4230 printf("%c%c %s\n", status, staged_status, path);
4231 return NULL;
4234 static const struct got_error *
4235 cmd_remove(int argc, char *argv[])
4237 const struct got_error *error = NULL;
4238 struct got_worktree *worktree = NULL;
4239 struct got_repository *repo = NULL;
4240 char *cwd = NULL;
4241 struct got_pathlist_head paths;
4242 struct got_pathlist_entry *pe;
4243 int ch, delete_local_mods = 0, can_recurse = 0, keep_on_disk = 0;
4245 TAILQ_INIT(&paths);
4247 while ((ch = getopt(argc, argv, "fkR")) != -1) {
4248 switch (ch) {
4249 case 'f':
4250 delete_local_mods = 1;
4251 break;
4252 case 'k':
4253 keep_on_disk = 1;
4254 break;
4255 case 'R':
4256 can_recurse = 1;
4257 break;
4258 default:
4259 usage_remove();
4260 /* NOTREACHED */
4264 argc -= optind;
4265 argv += optind;
4267 #ifndef PROFILE
4268 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4269 NULL) == -1)
4270 err(1, "pledge");
4271 #endif
4272 if (argc < 1)
4273 usage_remove();
4275 cwd = getcwd(NULL, 0);
4276 if (cwd == NULL) {
4277 error = got_error_from_errno("getcwd");
4278 goto done;
4280 error = got_worktree_open(&worktree, cwd);
4281 if (error)
4282 goto done;
4284 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4285 NULL);
4286 if (error)
4287 goto done;
4289 error = apply_unveil(got_repo_get_path(repo), 1,
4290 got_worktree_get_root_path(worktree));
4291 if (error)
4292 goto done;
4294 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4295 if (error)
4296 goto done;
4298 if (!can_recurse) {
4299 char *ondisk_path;
4300 struct stat sb;
4301 TAILQ_FOREACH(pe, &paths, entry) {
4302 if (asprintf(&ondisk_path, "%s/%s",
4303 got_worktree_get_root_path(worktree),
4304 pe->path) == -1) {
4305 error = got_error_from_errno("asprintf");
4306 goto done;
4308 if (lstat(ondisk_path, &sb) == -1) {
4309 if (errno == ENOENT) {
4310 free(ondisk_path);
4311 continue;
4313 error = got_error_from_errno2("lstat",
4314 ondisk_path);
4315 free(ondisk_path);
4316 goto done;
4318 free(ondisk_path);
4319 if (S_ISDIR(sb.st_mode)) {
4320 error = got_error_msg(GOT_ERR_BAD_PATH,
4321 "removing directories requires -R option");
4322 goto done;
4327 error = got_worktree_schedule_delete(worktree, &paths,
4328 delete_local_mods, print_remove_status, NULL, repo, keep_on_disk);
4329 done:
4330 if (repo)
4331 got_repo_close(repo);
4332 if (worktree)
4333 got_worktree_close(worktree);
4334 TAILQ_FOREACH(pe, &paths, entry)
4335 free((char *)pe->path);
4336 got_pathlist_free(&paths);
4337 free(cwd);
4338 return error;
4341 __dead static void
4342 usage_revert(void)
4344 fprintf(stderr, "usage: %s revert [-p] [-F response-script] [-R] "
4345 "path ...\n", getprogname());
4346 exit(1);
4349 static const struct got_error *
4350 revert_progress(void *arg, unsigned char status, const char *path)
4352 while (path[0] == '/')
4353 path++;
4354 printf("%c %s\n", status, path);
4355 return NULL;
4358 struct choose_patch_arg {
4359 FILE *patch_script_file;
4360 const char *action;
4363 static const struct got_error *
4364 show_change(unsigned char status, const char *path, FILE *patch_file, int n,
4365 int nchanges, const char *action)
4367 char *line = NULL;
4368 size_t linesize = 0;
4369 ssize_t linelen;
4371 switch (status) {
4372 case GOT_STATUS_ADD:
4373 printf("A %s\n%s this addition? [y/n] ", path, action);
4374 break;
4375 case GOT_STATUS_DELETE:
4376 printf("D %s\n%s this deletion? [y/n] ", path, action);
4377 break;
4378 case GOT_STATUS_MODIFY:
4379 if (fseek(patch_file, 0L, SEEK_SET) == -1)
4380 return got_error_from_errno("fseek");
4381 printf(GOT_COMMIT_SEP_STR);
4382 while ((linelen = getline(&line, &linesize, patch_file)) != -1)
4383 printf("%s", line);
4384 if (ferror(patch_file))
4385 return got_error_from_errno("getline");
4386 printf(GOT_COMMIT_SEP_STR);
4387 printf("M %s (change %d of %d)\n%s this change? [y/n/q] ",
4388 path, n, nchanges, action);
4389 break;
4390 default:
4391 return got_error_path(path, GOT_ERR_FILE_STATUS);
4394 return NULL;
4397 static const struct got_error *
4398 choose_patch(int *choice, void *arg, unsigned char status, const char *path,
4399 FILE *patch_file, int n, int nchanges)
4401 const struct got_error *err = NULL;
4402 char *line = NULL;
4403 size_t linesize = 0;
4404 ssize_t linelen;
4405 int resp = ' ';
4406 struct choose_patch_arg *a = arg;
4408 *choice = GOT_PATCH_CHOICE_NONE;
4410 if (a->patch_script_file) {
4411 char *nl;
4412 err = show_change(status, path, patch_file, n, nchanges,
4413 a->action);
4414 if (err)
4415 return err;
4416 linelen = getline(&line, &linesize, a->patch_script_file);
4417 if (linelen == -1) {
4418 if (ferror(a->patch_script_file))
4419 return got_error_from_errno("getline");
4420 return NULL;
4422 nl = strchr(line, '\n');
4423 if (nl)
4424 *nl = '\0';
4425 if (strcmp(line, "y") == 0) {
4426 *choice = GOT_PATCH_CHOICE_YES;
4427 printf("y\n");
4428 } else if (strcmp(line, "n") == 0) {
4429 *choice = GOT_PATCH_CHOICE_NO;
4430 printf("n\n");
4431 } else if (strcmp(line, "q") == 0 &&
4432 status == GOT_STATUS_MODIFY) {
4433 *choice = GOT_PATCH_CHOICE_QUIT;
4434 printf("q\n");
4435 } else
4436 printf("invalid response '%s'\n", line);
4437 free(line);
4438 return NULL;
4441 while (resp != 'y' && resp != 'n' && resp != 'q') {
4442 err = show_change(status, path, patch_file, n, nchanges,
4443 a->action);
4444 if (err)
4445 return err;
4446 resp = getchar();
4447 if (resp == '\n')
4448 resp = getchar();
4449 if (status == GOT_STATUS_MODIFY) {
4450 if (resp != 'y' && resp != 'n' && resp != 'q') {
4451 printf("invalid response '%c'\n", resp);
4452 resp = ' ';
4454 } else if (resp != 'y' && resp != 'n') {
4455 printf("invalid response '%c'\n", resp);
4456 resp = ' ';
4460 if (resp == 'y')
4461 *choice = GOT_PATCH_CHOICE_YES;
4462 else if (resp == 'n')
4463 *choice = GOT_PATCH_CHOICE_NO;
4464 else if (resp == 'q' && status == GOT_STATUS_MODIFY)
4465 *choice = GOT_PATCH_CHOICE_QUIT;
4467 return NULL;
4471 static const struct got_error *
4472 cmd_revert(int argc, char *argv[])
4474 const struct got_error *error = NULL;
4475 struct got_worktree *worktree = NULL;
4476 struct got_repository *repo = NULL;
4477 char *cwd = NULL, *path = NULL;
4478 struct got_pathlist_head paths;
4479 struct got_pathlist_entry *pe;
4480 int ch, can_recurse = 0, pflag = 0;
4481 FILE *patch_script_file = NULL;
4482 const char *patch_script_path = NULL;
4483 struct choose_patch_arg cpa;
4485 TAILQ_INIT(&paths);
4487 while ((ch = getopt(argc, argv, "pF:R")) != -1) {
4488 switch (ch) {
4489 case 'p':
4490 pflag = 1;
4491 break;
4492 case 'F':
4493 patch_script_path = optarg;
4494 break;
4495 case 'R':
4496 can_recurse = 1;
4497 break;
4498 default:
4499 usage_revert();
4500 /* NOTREACHED */
4504 argc -= optind;
4505 argv += optind;
4507 #ifndef PROFILE
4508 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4509 "unveil", NULL) == -1)
4510 err(1, "pledge");
4511 #endif
4512 if (argc < 1)
4513 usage_revert();
4514 if (patch_script_path && !pflag)
4515 errx(1, "-F option can only be used together with -p option");
4517 cwd = getcwd(NULL, 0);
4518 if (cwd == NULL) {
4519 error = got_error_from_errno("getcwd");
4520 goto done;
4522 error = got_worktree_open(&worktree, cwd);
4523 if (error)
4524 goto done;
4526 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4527 NULL);
4528 if (error != NULL)
4529 goto done;
4531 if (patch_script_path) {
4532 patch_script_file = fopen(patch_script_path, "r");
4533 if (patch_script_file == NULL) {
4534 error = got_error_from_errno2("fopen",
4535 patch_script_path);
4536 goto done;
4539 error = apply_unveil(got_repo_get_path(repo), 1,
4540 got_worktree_get_root_path(worktree));
4541 if (error)
4542 goto done;
4544 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4545 if (error)
4546 goto done;
4548 if (!can_recurse) {
4549 char *ondisk_path;
4550 struct stat sb;
4551 TAILQ_FOREACH(pe, &paths, entry) {
4552 if (asprintf(&ondisk_path, "%s/%s",
4553 got_worktree_get_root_path(worktree),
4554 pe->path) == -1) {
4555 error = got_error_from_errno("asprintf");
4556 goto done;
4558 if (lstat(ondisk_path, &sb) == -1) {
4559 if (errno == ENOENT) {
4560 free(ondisk_path);
4561 continue;
4563 error = got_error_from_errno2("lstat",
4564 ondisk_path);
4565 free(ondisk_path);
4566 goto done;
4568 free(ondisk_path);
4569 if (S_ISDIR(sb.st_mode)) {
4570 error = got_error_msg(GOT_ERR_BAD_PATH,
4571 "reverting directories requires -R option");
4572 goto done;
4577 cpa.patch_script_file = patch_script_file;
4578 cpa.action = "revert";
4579 error = got_worktree_revert(worktree, &paths, revert_progress, NULL,
4580 pflag ? choose_patch : NULL, &cpa, repo);
4581 done:
4582 if (patch_script_file && fclose(patch_script_file) == EOF &&
4583 error == NULL)
4584 error = got_error_from_errno2("fclose", patch_script_path);
4585 if (repo)
4586 got_repo_close(repo);
4587 if (worktree)
4588 got_worktree_close(worktree);
4589 free(path);
4590 free(cwd);
4591 return error;
4594 __dead static void
4595 usage_commit(void)
4597 fprintf(stderr, "usage: %s commit [-m msg] [path ...]\n",
4598 getprogname());
4599 exit(1);
4602 struct collect_commit_logmsg_arg {
4603 const char *cmdline_log;
4604 const char *editor;
4605 const char *worktree_path;
4606 const char *branch_name;
4607 const char *repo_path;
4608 char *logmsg_path;
4612 static const struct got_error *
4613 collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
4614 void *arg)
4616 char *initial_content = NULL;
4617 struct got_pathlist_entry *pe;
4618 const struct got_error *err = NULL;
4619 char *template = NULL;
4620 struct collect_commit_logmsg_arg *a = arg;
4621 int fd;
4622 size_t len;
4624 /* if a message was specified on the command line, just use it */
4625 if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
4626 len = strlen(a->cmdline_log) + 1;
4627 *logmsg = malloc(len + 1);
4628 if (*logmsg == NULL)
4629 return got_error_from_errno("malloc");
4630 strlcpy(*logmsg, a->cmdline_log, len);
4631 return NULL;
4634 if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
4635 return got_error_from_errno("asprintf");
4637 if (asprintf(&initial_content,
4638 "\n# changes to be committed on branch %s:\n",
4639 a->branch_name) == -1)
4640 return got_error_from_errno("asprintf");
4642 err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
4643 if (err)
4644 goto done;
4646 dprintf(fd, initial_content);
4648 TAILQ_FOREACH(pe, commitable_paths, entry) {
4649 struct got_commitable *ct = pe->data;
4650 dprintf(fd, "# %c %s\n",
4651 got_commitable_get_status(ct),
4652 got_commitable_get_path(ct));
4654 close(fd);
4656 err = edit_logmsg(logmsg, a->editor, a->logmsg_path, initial_content);
4657 done:
4658 free(initial_content);
4659 free(template);
4661 /* Editor is done; we can now apply unveil(2) */
4662 if (err == NULL) {
4663 err = apply_unveil(a->repo_path, 0, a->worktree_path);
4664 if (err) {
4665 free(*logmsg);
4666 *logmsg = NULL;
4669 return err;
4672 static const struct got_error *
4673 cmd_commit(int argc, char *argv[])
4675 const struct got_error *error = NULL;
4676 struct got_worktree *worktree = NULL;
4677 struct got_repository *repo = NULL;
4678 char *cwd = NULL, *id_str = NULL;
4679 struct got_object_id *id = NULL;
4680 const char *logmsg = NULL;
4681 struct collect_commit_logmsg_arg cl_arg;
4682 char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
4683 int ch, rebase_in_progress, histedit_in_progress, preserve_logmsg = 0;
4684 struct got_pathlist_head paths;
4686 TAILQ_INIT(&paths);
4687 cl_arg.logmsg_path = NULL;
4689 while ((ch = getopt(argc, argv, "m:")) != -1) {
4690 switch (ch) {
4691 case 'm':
4692 logmsg = optarg;
4693 break;
4694 default:
4695 usage_commit();
4696 /* NOTREACHED */
4700 argc -= optind;
4701 argv += optind;
4703 #ifndef PROFILE
4704 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4705 "unveil", NULL) == -1)
4706 err(1, "pledge");
4707 #endif
4708 cwd = getcwd(NULL, 0);
4709 if (cwd == NULL) {
4710 error = got_error_from_errno("getcwd");
4711 goto done;
4713 error = got_worktree_open(&worktree, cwd);
4714 if (error)
4715 goto done;
4717 error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
4718 if (error)
4719 goto done;
4720 if (rebase_in_progress) {
4721 error = got_error(GOT_ERR_REBASING);
4722 goto done;
4725 error = got_worktree_histedit_in_progress(&histedit_in_progress,
4726 worktree);
4727 if (error)
4728 goto done;
4730 error = get_gitconfig_path(&gitconfig_path);
4731 if (error)
4732 goto done;
4733 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4734 gitconfig_path);
4735 if (error != NULL)
4736 goto done;
4738 error = get_author(&author, repo);
4739 if (error)
4740 return error;
4743 * unveil(2) traverses exec(2); if an editor is used we have
4744 * to apply unveil after the log message has been written.
4746 if (logmsg == NULL || strlen(logmsg) == 0)
4747 error = get_editor(&editor);
4748 else
4749 error = apply_unveil(got_repo_get_path(repo), 0,
4750 got_worktree_get_root_path(worktree));
4751 if (error)
4752 goto done;
4754 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4755 if (error)
4756 goto done;
4758 cl_arg.editor = editor;
4759 cl_arg.cmdline_log = logmsg;
4760 cl_arg.worktree_path = got_worktree_get_root_path(worktree);
4761 cl_arg.branch_name = got_worktree_get_head_ref_name(worktree);
4762 if (!histedit_in_progress) {
4763 if (strncmp(cl_arg.branch_name, "refs/heads/", 11) != 0) {
4764 error = got_error(GOT_ERR_COMMIT_BRANCH);
4765 goto done;
4767 cl_arg.branch_name += 11;
4769 cl_arg.repo_path = got_repo_get_path(repo);
4770 error = got_worktree_commit(&id, worktree, &paths, author, NULL,
4771 collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
4772 if (error) {
4773 if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
4774 cl_arg.logmsg_path != NULL)
4775 preserve_logmsg = 1;
4776 goto done;
4779 error = got_object_id_str(&id_str, id);
4780 if (error)
4781 goto done;
4782 printf("Created commit %s\n", id_str);
4783 done:
4784 if (preserve_logmsg) {
4785 fprintf(stderr, "%s: log message preserved in %s\n",
4786 getprogname(), cl_arg.logmsg_path);
4787 } else if (cl_arg.logmsg_path && unlink(cl_arg.logmsg_path) == -1 &&
4788 error == NULL)
4789 error = got_error_from_errno2("unlink", cl_arg.logmsg_path);
4790 free(cl_arg.logmsg_path);
4791 if (repo)
4792 got_repo_close(repo);
4793 if (worktree)
4794 got_worktree_close(worktree);
4795 free(cwd);
4796 free(id_str);
4797 free(gitconfig_path);
4798 free(editor);
4799 free(author);
4800 return error;
4803 __dead static void
4804 usage_cherrypick(void)
4806 fprintf(stderr, "usage: %s cherrypick commit-id\n", getprogname());
4807 exit(1);
4810 static const struct got_error *
4811 cmd_cherrypick(int argc, char *argv[])
4813 const struct got_error *error = NULL;
4814 struct got_worktree *worktree = NULL;
4815 struct got_repository *repo = NULL;
4816 char *cwd = NULL, *commit_id_str = NULL;
4817 struct got_object_id *commit_id = NULL;
4818 struct got_commit_object *commit = NULL;
4819 struct got_object_qid *pid;
4820 struct got_reference *head_ref = NULL;
4821 int ch, did_something = 0;
4823 while ((ch = getopt(argc, argv, "")) != -1) {
4824 switch (ch) {
4825 default:
4826 usage_cherrypick();
4827 /* NOTREACHED */
4831 argc -= optind;
4832 argv += optind;
4834 #ifndef PROFILE
4835 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4836 "unveil", NULL) == -1)
4837 err(1, "pledge");
4838 #endif
4839 if (argc != 1)
4840 usage_cherrypick();
4842 cwd = getcwd(NULL, 0);
4843 if (cwd == NULL) {
4844 error = got_error_from_errno("getcwd");
4845 goto done;
4847 error = got_worktree_open(&worktree, cwd);
4848 if (error)
4849 goto done;
4851 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4852 NULL);
4853 if (error != NULL)
4854 goto done;
4856 error = apply_unveil(got_repo_get_path(repo), 0,
4857 got_worktree_get_root_path(worktree));
4858 if (error)
4859 goto done;
4861 error = got_repo_match_object_id_prefix(&commit_id, argv[0],
4862 GOT_OBJ_TYPE_COMMIT, repo);
4863 if (error != NULL) {
4864 struct got_reference *ref;
4865 if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
4866 goto done;
4867 error = got_ref_open(&ref, repo, argv[0], 0);
4868 if (error != NULL)
4869 goto done;
4870 error = got_ref_resolve(&commit_id, repo, ref);
4871 got_ref_close(ref);
4872 if (error != NULL)
4873 goto done;
4875 error = got_object_id_str(&commit_id_str, commit_id);
4876 if (error)
4877 goto done;
4879 error = got_ref_open(&head_ref, repo,
4880 got_worktree_get_head_ref_name(worktree), 0);
4881 if (error != NULL)
4882 goto done;
4884 error = check_same_branch(commit_id, head_ref, NULL, repo);
4885 if (error) {
4886 if (error->code != GOT_ERR_ANCESTRY)
4887 goto done;
4888 error = NULL;
4889 } else {
4890 error = got_error(GOT_ERR_SAME_BRANCH);
4891 goto done;
4894 error = got_object_open_as_commit(&commit, repo, commit_id);
4895 if (error)
4896 goto done;
4897 pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
4898 error = got_worktree_merge_files(worktree, pid ? pid->id : NULL,
4899 commit_id, repo, update_progress, &did_something, check_cancelled,
4900 NULL);
4901 if (error != NULL)
4902 goto done;
4904 if (did_something)
4905 printf("Merged commit %s\n", commit_id_str);
4906 done:
4907 if (commit)
4908 got_object_commit_close(commit);
4909 free(commit_id_str);
4910 if (head_ref)
4911 got_ref_close(head_ref);
4912 if (worktree)
4913 got_worktree_close(worktree);
4914 if (repo)
4915 got_repo_close(repo);
4916 return error;
4919 __dead static void
4920 usage_backout(void)
4922 fprintf(stderr, "usage: %s backout commit-id\n", getprogname());
4923 exit(1);
4926 static const struct got_error *
4927 cmd_backout(int argc, char *argv[])
4929 const struct got_error *error = NULL;
4930 struct got_worktree *worktree = NULL;
4931 struct got_repository *repo = NULL;
4932 char *cwd = NULL, *commit_id_str = NULL;
4933 struct got_object_id *commit_id = NULL;
4934 struct got_commit_object *commit = NULL;
4935 struct got_object_qid *pid;
4936 struct got_reference *head_ref = NULL;
4937 int ch, did_something = 0;
4939 while ((ch = getopt(argc, argv, "")) != -1) {
4940 switch (ch) {
4941 default:
4942 usage_backout();
4943 /* NOTREACHED */
4947 argc -= optind;
4948 argv += optind;
4950 #ifndef PROFILE
4951 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4952 "unveil", NULL) == -1)
4953 err(1, "pledge");
4954 #endif
4955 if (argc != 1)
4956 usage_backout();
4958 cwd = getcwd(NULL, 0);
4959 if (cwd == NULL) {
4960 error = got_error_from_errno("getcwd");
4961 goto done;
4963 error = got_worktree_open(&worktree, cwd);
4964 if (error)
4965 goto done;
4967 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4968 NULL);
4969 if (error != NULL)
4970 goto done;
4972 error = apply_unveil(got_repo_get_path(repo), 0,
4973 got_worktree_get_root_path(worktree));
4974 if (error)
4975 goto done;
4977 error = got_repo_match_object_id_prefix(&commit_id, argv[0],
4978 GOT_OBJ_TYPE_COMMIT, repo);
4979 if (error != NULL) {
4980 struct got_reference *ref;
4981 if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
4982 goto done;
4983 error = got_ref_open(&ref, repo, argv[0], 0);
4984 if (error != NULL)
4985 goto done;
4986 error = got_ref_resolve(&commit_id, repo, ref);
4987 got_ref_close(ref);
4988 if (error != NULL)
4989 goto done;
4991 error = got_object_id_str(&commit_id_str, commit_id);
4992 if (error)
4993 goto done;
4995 error = got_ref_open(&head_ref, repo,
4996 got_worktree_get_head_ref_name(worktree), 0);
4997 if (error != NULL)
4998 goto done;
5000 error = check_same_branch(commit_id, head_ref, NULL, repo);
5001 if (error)
5002 goto done;
5004 error = got_object_open_as_commit(&commit, repo, commit_id);
5005 if (error)
5006 goto done;
5007 pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
5008 if (pid == NULL) {
5009 error = got_error(GOT_ERR_ROOT_COMMIT);
5010 goto done;
5013 error = got_worktree_merge_files(worktree, commit_id, pid->id, repo,
5014 update_progress, &did_something, check_cancelled, NULL);
5015 if (error != NULL)
5016 goto done;
5018 if (did_something)
5019 printf("Backed out commit %s\n", commit_id_str);
5020 done:
5021 if (commit)
5022 got_object_commit_close(commit);
5023 free(commit_id_str);
5024 if (head_ref)
5025 got_ref_close(head_ref);
5026 if (worktree)
5027 got_worktree_close(worktree);
5028 if (repo)
5029 got_repo_close(repo);
5030 return error;
5033 __dead static void
5034 usage_rebase(void)
5036 fprintf(stderr, "usage: %s rebase [-a] | [-c] | branch\n",
5037 getprogname());
5038 exit(1);
5041 void
5042 trim_logmsg(char *logmsg, int limit)
5044 char *nl;
5045 size_t len;
5047 len = strlen(logmsg);
5048 if (len > limit)
5049 len = limit;
5050 logmsg[len] = '\0';
5051 nl = strchr(logmsg, '\n');
5052 if (nl)
5053 *nl = '\0';
5056 static const struct got_error *
5057 get_short_logmsg(char **logmsg, int limit, struct got_commit_object *commit)
5059 const struct got_error *err;
5060 char *logmsg0 = NULL;
5061 const char *s;
5063 err = got_object_commit_get_logmsg(&logmsg0, commit);
5064 if (err)
5065 return err;
5067 s = logmsg0;
5068 while (isspace((unsigned char)s[0]))
5069 s++;
5071 *logmsg = strdup(s);
5072 if (*logmsg == NULL) {
5073 err = got_error_from_errno("strdup");
5074 goto done;
5077 trim_logmsg(*logmsg, limit);
5078 done:
5079 free(logmsg0);
5080 return err;
5083 static const struct got_error *
5084 show_rebase_progress(struct got_commit_object *commit,
5085 struct got_object_id *old_id, struct got_object_id *new_id)
5087 const struct got_error *err;
5088 char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
5090 err = got_object_id_str(&old_id_str, old_id);
5091 if (err)
5092 goto done;
5094 if (new_id) {
5095 err = got_object_id_str(&new_id_str, new_id);
5096 if (err)
5097 goto done;
5100 old_id_str[12] = '\0';
5101 if (new_id_str)
5102 new_id_str[12] = '\0';
5104 err = get_short_logmsg(&logmsg, 42, commit);
5105 if (err)
5106 goto done;
5108 printf("%s -> %s: %s\n", old_id_str,
5109 new_id_str ? new_id_str : "no-op change", logmsg);
5110 done:
5111 free(old_id_str);
5112 free(new_id_str);
5113 return err;
5116 static const struct got_error *
5117 rebase_progress(void *arg, unsigned char status, const char *path)
5119 unsigned char *rebase_status = arg;
5121 while (path[0] == '/')
5122 path++;
5123 printf("%c %s\n", status, path);
5125 if (*rebase_status == GOT_STATUS_CONFLICT)
5126 return NULL;
5127 if (status == GOT_STATUS_CONFLICT || status == GOT_STATUS_MERGE)
5128 *rebase_status = status;
5129 return NULL;
5132 static const struct got_error *
5133 rebase_complete(struct got_worktree *worktree, struct got_fileindex *fileindex,
5134 struct got_reference *branch, struct got_reference *new_base_branch,
5135 struct got_reference *tmp_branch, struct got_repository *repo)
5137 printf("Switching work tree to %s\n", got_ref_get_name(branch));
5138 return got_worktree_rebase_complete(worktree, fileindex,
5139 new_base_branch, tmp_branch, branch, repo);
5142 static const struct got_error *
5143 rebase_commit(struct got_pathlist_head *merged_paths,
5144 struct got_worktree *worktree, struct got_fileindex *fileindex,
5145 struct got_reference *tmp_branch,
5146 struct got_object_id *commit_id, struct got_repository *repo)
5148 const struct got_error *error;
5149 struct got_commit_object *commit;
5150 struct got_object_id *new_commit_id;
5152 error = got_object_open_as_commit(&commit, repo, commit_id);
5153 if (error)
5154 return error;
5156 error = got_worktree_rebase_commit(&new_commit_id, merged_paths,
5157 worktree, fileindex, tmp_branch, commit, commit_id, repo);
5158 if (error) {
5159 if (error->code != GOT_ERR_COMMIT_NO_CHANGES)
5160 goto done;
5161 error = show_rebase_progress(commit, commit_id, NULL);
5162 } else {
5163 error = show_rebase_progress(commit, commit_id, new_commit_id);
5164 free(new_commit_id);
5166 done:
5167 got_object_commit_close(commit);
5168 return error;
5171 struct check_path_prefix_arg {
5172 const char *path_prefix;
5173 size_t len;
5174 int errcode;
5177 static const struct got_error *
5178 check_path_prefix_in_diff(void *arg, struct got_blob_object *blob1,
5179 struct got_blob_object *blob2, struct got_object_id *id1,
5180 struct got_object_id *id2, const char *path1, const char *path2,
5181 mode_t mode1, mode_t mode2, struct got_repository *repo)
5183 struct check_path_prefix_arg *a = arg;
5185 if ((path1 && !got_path_is_child(path1, a->path_prefix, a->len)) ||
5186 (path2 && !got_path_is_child(path2, a->path_prefix, a->len)))
5187 return got_error(a->errcode);
5189 return NULL;
5192 static const struct got_error *
5193 check_path_prefix(struct got_object_id *parent_id,
5194 struct got_object_id *commit_id, const char *path_prefix,
5195 int errcode, struct got_repository *repo)
5197 const struct got_error *err;
5198 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
5199 struct got_commit_object *commit = NULL, *parent_commit = NULL;
5200 struct check_path_prefix_arg cpp_arg;
5202 if (got_path_is_root_dir(path_prefix))
5203 return NULL;
5205 err = got_object_open_as_commit(&commit, repo, commit_id);
5206 if (err)
5207 goto done;
5209 err = got_object_open_as_commit(&parent_commit, repo, parent_id);
5210 if (err)
5211 goto done;
5213 err = got_object_open_as_tree(&tree1, repo,
5214 got_object_commit_get_tree_id(parent_commit));
5215 if (err)
5216 goto done;
5218 err = got_object_open_as_tree(&tree2, repo,
5219 got_object_commit_get_tree_id(commit));
5220 if (err)
5221 goto done;
5223 cpp_arg.path_prefix = path_prefix;
5224 while (cpp_arg.path_prefix[0] == '/')
5225 cpp_arg.path_prefix++;
5226 cpp_arg.len = strlen(cpp_arg.path_prefix);
5227 cpp_arg.errcode = errcode;
5228 err = got_diff_tree(tree1, tree2, "", "", repo,
5229 check_path_prefix_in_diff, &cpp_arg, 0);
5230 done:
5231 if (tree1)
5232 got_object_tree_close(tree1);
5233 if (tree2)
5234 got_object_tree_close(tree2);
5235 if (commit)
5236 got_object_commit_close(commit);
5237 if (parent_commit)
5238 got_object_commit_close(parent_commit);
5239 return err;
5242 static const struct got_error *
5243 collect_commits(struct got_object_id_queue *commits,
5244 struct got_object_id *initial_commit_id,
5245 struct got_object_id *iter_start_id, struct got_object_id *iter_stop_id,
5246 const char *path_prefix, int path_prefix_errcode,
5247 struct got_repository *repo)
5249 const struct got_error *err = NULL;
5250 struct got_commit_graph *graph = NULL;
5251 struct got_object_id *parent_id = NULL;
5252 struct got_object_qid *qid;
5253 struct got_object_id *commit_id = initial_commit_id;
5255 err = got_commit_graph_open(&graph, "/", 1);
5256 if (err)
5257 return err;
5259 err = got_commit_graph_iter_start(graph, iter_start_id, repo,
5260 check_cancelled, NULL);
5261 if (err)
5262 goto done;
5263 while (got_object_id_cmp(commit_id, iter_stop_id) != 0) {
5264 err = got_commit_graph_iter_next(&parent_id, graph, repo,
5265 check_cancelled, NULL);
5266 if (err) {
5267 if (err->code == GOT_ERR_ITER_COMPLETED) {
5268 err = got_error_msg(GOT_ERR_ANCESTRY,
5269 "ran out of commits to rebase before "
5270 "youngest common ancestor commit has "
5271 "been reached?!?");
5273 goto done;
5274 } else {
5275 err = check_path_prefix(parent_id, commit_id,
5276 path_prefix, path_prefix_errcode, repo);
5277 if (err)
5278 goto done;
5280 err = got_object_qid_alloc(&qid, commit_id);
5281 if (err)
5282 goto done;
5283 SIMPLEQ_INSERT_HEAD(commits, qid, entry);
5284 commit_id = parent_id;
5287 done:
5288 got_commit_graph_close(graph);
5289 return err;
5292 static const struct got_error *
5293 cmd_rebase(int argc, char *argv[])
5295 const struct got_error *error = NULL;
5296 struct got_worktree *worktree = NULL;
5297 struct got_repository *repo = NULL;
5298 struct got_fileindex *fileindex = NULL;
5299 char *cwd = NULL;
5300 struct got_reference *branch = NULL;
5301 struct got_reference *new_base_branch = NULL, *tmp_branch = NULL;
5302 struct got_object_id *commit_id = NULL, *parent_id = NULL;
5303 struct got_object_id *resume_commit_id = NULL;
5304 struct got_object_id *branch_head_commit_id = NULL, *yca_id = NULL;
5305 struct got_commit_object *commit = NULL;
5306 int ch, rebase_in_progress = 0, abort_rebase = 0, continue_rebase = 0;
5307 unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
5308 struct got_object_id_queue commits;
5309 struct got_pathlist_head merged_paths;
5310 const struct got_object_id_queue *parent_ids;
5311 struct got_object_qid *qid, *pid;
5313 SIMPLEQ_INIT(&commits);
5314 TAILQ_INIT(&merged_paths);
5316 while ((ch = getopt(argc, argv, "ac")) != -1) {
5317 switch (ch) {
5318 case 'a':
5319 abort_rebase = 1;
5320 break;
5321 case 'c':
5322 continue_rebase = 1;
5323 break;
5324 default:
5325 usage_rebase();
5326 /* NOTREACHED */
5330 argc -= optind;
5331 argv += optind;
5333 #ifndef PROFILE
5334 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
5335 "unveil", NULL) == -1)
5336 err(1, "pledge");
5337 #endif
5338 if (abort_rebase && continue_rebase)
5339 usage_rebase();
5340 else if (abort_rebase || continue_rebase) {
5341 if (argc != 0)
5342 usage_rebase();
5343 } else if (argc != 1)
5344 usage_rebase();
5346 cwd = getcwd(NULL, 0);
5347 if (cwd == NULL) {
5348 error = got_error_from_errno("getcwd");
5349 goto done;
5351 error = got_worktree_open(&worktree, cwd);
5352 if (error)
5353 goto done;
5355 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5356 NULL);
5357 if (error != NULL)
5358 goto done;
5360 error = apply_unveil(got_repo_get_path(repo), 0,
5361 got_worktree_get_root_path(worktree));
5362 if (error)
5363 goto done;
5365 error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
5366 if (error)
5367 goto done;
5369 if (abort_rebase) {
5370 int did_something;
5371 if (!rebase_in_progress) {
5372 error = got_error(GOT_ERR_NOT_REBASING);
5373 goto done;
5375 error = got_worktree_rebase_continue(&resume_commit_id,
5376 &new_base_branch, &tmp_branch, &branch, &fileindex,
5377 worktree, repo);
5378 if (error)
5379 goto done;
5380 printf("Switching work tree to %s\n",
5381 got_ref_get_symref_target(new_base_branch));
5382 error = got_worktree_rebase_abort(worktree, fileindex, repo,
5383 new_base_branch, update_progress, &did_something);
5384 if (error)
5385 goto done;
5386 printf("Rebase of %s aborted\n", got_ref_get_name(branch));
5387 goto done; /* nothing else to do */
5390 if (continue_rebase) {
5391 if (!rebase_in_progress) {
5392 error = got_error(GOT_ERR_NOT_REBASING);
5393 goto done;
5395 error = got_worktree_rebase_continue(&resume_commit_id,
5396 &new_base_branch, &tmp_branch, &branch, &fileindex,
5397 worktree, repo);
5398 if (error)
5399 goto done;
5401 error = rebase_commit(NULL, worktree, fileindex, tmp_branch,
5402 resume_commit_id, repo);
5403 if (error)
5404 goto done;
5406 yca_id = got_object_id_dup(resume_commit_id);
5407 if (yca_id == NULL) {
5408 error = got_error_from_errno("got_object_id_dup");
5409 goto done;
5411 } else {
5412 error = got_ref_open(&branch, repo, argv[0], 0);
5413 if (error != NULL)
5414 goto done;
5417 error = got_ref_resolve(&branch_head_commit_id, repo, branch);
5418 if (error)
5419 goto done;
5421 if (!continue_rebase) {
5422 struct got_object_id *base_commit_id;
5424 base_commit_id = got_worktree_get_base_commit_id(worktree);
5425 error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
5426 base_commit_id, branch_head_commit_id, repo,
5427 check_cancelled, NULL);
5428 if (error)
5429 goto done;
5430 if (yca_id == NULL) {
5431 error = got_error_msg(GOT_ERR_ANCESTRY,
5432 "specified branch shares no common ancestry "
5433 "with work tree's branch");
5434 goto done;
5437 error = check_same_branch(base_commit_id, branch, yca_id, repo);
5438 if (error) {
5439 if (error->code != GOT_ERR_ANCESTRY)
5440 goto done;
5441 error = NULL;
5442 } else {
5443 error = got_error_msg(GOT_ERR_SAME_BRANCH,
5444 "specified branch resolves to a commit which "
5445 "is already contained in work tree's branch");
5446 goto done;
5448 error = got_worktree_rebase_prepare(&new_base_branch,
5449 &tmp_branch, &fileindex, worktree, branch, repo);
5450 if (error)
5451 goto done;
5454 commit_id = branch_head_commit_id;
5455 error = got_object_open_as_commit(&commit, repo, commit_id);
5456 if (error)
5457 goto done;
5459 parent_ids = got_object_commit_get_parent_ids(commit);
5460 pid = SIMPLEQ_FIRST(parent_ids);
5461 if (pid == NULL) {
5462 if (!continue_rebase) {
5463 int did_something;
5464 error = got_worktree_rebase_abort(worktree, fileindex,
5465 repo, new_base_branch, update_progress,
5466 &did_something);
5467 if (error)
5468 goto done;
5469 printf("Rebase of %s aborted\n",
5470 got_ref_get_name(branch));
5472 error = got_error(GOT_ERR_EMPTY_REBASE);
5473 goto done;
5475 error = collect_commits(&commits, commit_id, pid->id,
5476 yca_id, got_worktree_get_path_prefix(worktree),
5477 GOT_ERR_REBASE_PATH, repo);
5478 got_object_commit_close(commit);
5479 commit = NULL;
5480 if (error)
5481 goto done;
5483 if (SIMPLEQ_EMPTY(&commits)) {
5484 if (continue_rebase) {
5485 error = rebase_complete(worktree, fileindex,
5486 branch, new_base_branch, tmp_branch, repo);
5487 goto done;
5488 } else {
5489 /* Fast-forward the reference of the branch. */
5490 struct got_object_id *new_head_commit_id;
5491 char *id_str;
5492 error = got_ref_resolve(&new_head_commit_id, repo,
5493 new_base_branch);
5494 if (error)
5495 goto done;
5496 error = got_object_id_str(&id_str, new_head_commit_id);
5497 printf("Forwarding %s to commit %s\n",
5498 got_ref_get_name(branch), id_str);
5499 free(id_str);
5500 error = got_ref_change_ref(branch,
5501 new_head_commit_id);
5502 if (error)
5503 goto done;
5507 pid = NULL;
5508 SIMPLEQ_FOREACH(qid, &commits, entry) {
5509 commit_id = qid->id;
5510 parent_id = pid ? pid->id : yca_id;
5511 pid = qid;
5513 error = got_worktree_rebase_merge_files(&merged_paths,
5514 worktree, fileindex, parent_id, commit_id, repo,
5515 rebase_progress, &rebase_status, check_cancelled, NULL);
5516 if (error)
5517 goto done;
5519 if (rebase_status == GOT_STATUS_CONFLICT) {
5520 got_worktree_rebase_pathlist_free(&merged_paths);
5521 break;
5524 error = rebase_commit(&merged_paths, worktree, fileindex,
5525 tmp_branch, commit_id, repo);
5526 got_worktree_rebase_pathlist_free(&merged_paths);
5527 if (error)
5528 goto done;
5531 if (rebase_status == GOT_STATUS_CONFLICT) {
5532 error = got_worktree_rebase_postpone(worktree, fileindex);
5533 if (error)
5534 goto done;
5535 error = got_error_msg(GOT_ERR_CONFLICTS,
5536 "conflicts must be resolved before rebasing can continue");
5537 } else
5538 error = rebase_complete(worktree, fileindex, branch,
5539 new_base_branch, tmp_branch, repo);
5540 done:
5541 got_object_id_queue_free(&commits);
5542 free(branch_head_commit_id);
5543 free(resume_commit_id);
5544 free(yca_id);
5545 if (commit)
5546 got_object_commit_close(commit);
5547 if (branch)
5548 got_ref_close(branch);
5549 if (new_base_branch)
5550 got_ref_close(new_base_branch);
5551 if (tmp_branch)
5552 got_ref_close(tmp_branch);
5553 if (worktree)
5554 got_worktree_close(worktree);
5555 if (repo)
5556 got_repo_close(repo);
5557 return error;
5560 __dead static void
5561 usage_histedit(void)
5563 fprintf(stderr, "usage: %s histedit [-a] [-c] [-F histedit-script]\n",
5564 getprogname());
5565 exit(1);
5568 #define GOT_HISTEDIT_PICK 'p'
5569 #define GOT_HISTEDIT_EDIT 'e'
5570 #define GOT_HISTEDIT_FOLD 'f'
5571 #define GOT_HISTEDIT_DROP 'd'
5572 #define GOT_HISTEDIT_MESG 'm'
5574 static struct got_histedit_cmd {
5575 unsigned char code;
5576 const char *name;
5577 const char *desc;
5578 } got_histedit_cmds[] = {
5579 { GOT_HISTEDIT_PICK, "pick", "use commit" },
5580 { GOT_HISTEDIT_EDIT, "edit", "use commit but stop for amending" },
5581 { GOT_HISTEDIT_FOLD, "fold", "combine with commit below" },
5582 { GOT_HISTEDIT_DROP, "drop", "remove commit from history" },
5583 { GOT_HISTEDIT_MESG, "mesg",
5584 "single-line log message for commit above (open editor if empty)" },
5587 struct got_histedit_list_entry {
5588 TAILQ_ENTRY(got_histedit_list_entry) entry;
5589 struct got_object_id *commit_id;
5590 const struct got_histedit_cmd *cmd;
5591 char *logmsg;
5593 TAILQ_HEAD(got_histedit_list, got_histedit_list_entry);
5595 static const struct got_error *
5596 histedit_write_commit(struct got_object_id *commit_id, const char *cmdname,
5597 FILE *f, struct got_repository *repo)
5599 const struct got_error *err = NULL;
5600 char *logmsg = NULL, *id_str = NULL;
5601 struct got_commit_object *commit = NULL;
5602 int n;
5604 err = got_object_open_as_commit(&commit, repo, commit_id);
5605 if (err)
5606 goto done;
5608 err = get_short_logmsg(&logmsg, 34, commit);
5609 if (err)
5610 goto done;
5612 err = got_object_id_str(&id_str, commit_id);
5613 if (err)
5614 goto done;
5616 n = fprintf(f, "%s %s %s\n", cmdname, id_str, logmsg);
5617 if (n < 0)
5618 err = got_ferror(f, GOT_ERR_IO);
5619 done:
5620 if (commit)
5621 got_object_commit_close(commit);
5622 free(id_str);
5623 free(logmsg);
5624 return err;
5627 static const struct got_error *
5628 histedit_write_commit_list(struct got_object_id_queue *commits, FILE *f,
5629 struct got_repository *repo)
5631 const struct got_error *err = NULL;
5632 struct got_object_qid *qid;
5634 if (SIMPLEQ_EMPTY(commits))
5635 return got_error(GOT_ERR_EMPTY_HISTEDIT);
5637 SIMPLEQ_FOREACH(qid, commits, entry) {
5638 err = histedit_write_commit(qid->id, got_histedit_cmds[0].name,
5639 f, repo);
5640 if (err)
5641 break;
5644 return err;
5647 static const struct got_error *
5648 write_cmd_list(FILE *f)
5650 const struct got_error *err = NULL;
5651 int n, i;
5653 n = fprintf(f, "# Available histedit commands:\n");
5654 if (n < 0)
5655 return got_ferror(f, GOT_ERR_IO);
5657 for (i = 0; i < nitems(got_histedit_cmds); i++) {
5658 struct got_histedit_cmd *cmd = &got_histedit_cmds[i];
5659 n = fprintf(f, "# %s (%c): %s\n", cmd->name, cmd->code,
5660 cmd->desc);
5661 if (n < 0) {
5662 err = got_ferror(f, GOT_ERR_IO);
5663 break;
5666 n = fprintf(f, "# Commits will be processed in order from top to "
5667 "bottom of this file.\n");
5668 if (n < 0)
5669 return got_ferror(f, GOT_ERR_IO);
5670 return err;
5673 static const struct got_error *
5674 histedit_syntax_error(int lineno)
5676 static char msg[42];
5677 int ret;
5679 ret = snprintf(msg, sizeof(msg), "histedit syntax error on line %d",
5680 lineno);
5681 if (ret == -1 || ret >= sizeof(msg))
5682 return got_error(GOT_ERR_HISTEDIT_SYNTAX);
5684 return got_error_msg(GOT_ERR_HISTEDIT_SYNTAX, msg);
5687 static const struct got_error *
5688 append_folded_commit_msg(char **new_msg, struct got_histedit_list_entry *hle,
5689 char *logmsg, struct got_repository *repo)
5691 const struct got_error *err;
5692 struct got_commit_object *folded_commit = NULL;
5693 char *id_str, *folded_logmsg = NULL;
5695 err = got_object_id_str(&id_str, hle->commit_id);
5696 if (err)
5697 return err;
5699 err = got_object_open_as_commit(&folded_commit, repo, hle->commit_id);
5700 if (err)
5701 goto done;
5703 err = got_object_commit_get_logmsg(&folded_logmsg, folded_commit);
5704 if (err)
5705 goto done;
5706 if (asprintf(new_msg, "%s%s# log message of folded commit %s: %s",
5707 logmsg ? logmsg : "", logmsg ? "\n" : "", id_str,
5708 folded_logmsg) == -1) {
5709 err = got_error_from_errno("asprintf");
5711 done:
5712 if (folded_commit)
5713 got_object_commit_close(folded_commit);
5714 free(id_str);
5715 free(folded_logmsg);
5716 return err;
5719 static struct got_histedit_list_entry *
5720 get_folded_commits(struct got_histedit_list_entry *hle)
5722 struct got_histedit_list_entry *prev, *folded = NULL;
5724 prev = TAILQ_PREV(hle, got_histedit_list, entry);
5725 while (prev && (prev->cmd->code == GOT_HISTEDIT_FOLD ||
5726 prev->cmd->code == GOT_HISTEDIT_DROP)) {
5727 if (prev->cmd->code == GOT_HISTEDIT_FOLD)
5728 folded = prev;
5729 prev = TAILQ_PREV(prev, got_histedit_list, entry);
5732 return folded;
5735 static const struct got_error *
5736 histedit_edit_logmsg(struct got_histedit_list_entry *hle,
5737 struct got_repository *repo)
5739 char *logmsg_path = NULL, *id_str = NULL, *orig_logmsg = NULL;
5740 char *logmsg = NULL, *new_msg = NULL, *editor = NULL;
5741 const struct got_error *err = NULL;
5742 struct got_commit_object *commit = NULL;
5743 int fd;
5744 struct got_histedit_list_entry *folded = NULL;
5746 err = got_object_open_as_commit(&commit, repo, hle->commit_id);
5747 if (err)
5748 return err;
5750 folded = get_folded_commits(hle);
5751 if (folded) {
5752 while (folded != hle) {
5753 if (folded->cmd->code == GOT_HISTEDIT_DROP) {
5754 folded = TAILQ_NEXT(folded, entry);
5755 continue;
5757 err = append_folded_commit_msg(&new_msg, folded,
5758 logmsg, repo);
5759 if (err)
5760 goto done;
5761 free(logmsg);
5762 logmsg = new_msg;
5763 folded = TAILQ_NEXT(folded, entry);
5767 err = got_object_id_str(&id_str, hle->commit_id);
5768 if (err)
5769 goto done;
5770 err = got_object_commit_get_logmsg(&orig_logmsg, commit);
5771 if (err)
5772 goto done;
5773 if (asprintf(&new_msg,
5774 "%s\n# original log message of commit %s: %s",
5775 logmsg ? logmsg : "", id_str, orig_logmsg) == -1) {
5776 err = got_error_from_errno("asprintf");
5777 goto done;
5779 free(logmsg);
5780 logmsg = new_msg;
5782 err = got_object_id_str(&id_str, hle->commit_id);
5783 if (err)
5784 goto done;
5786 err = got_opentemp_named_fd(&logmsg_path, &fd, "/tmp/got-logmsg");
5787 if (err)
5788 goto done;
5790 dprintf(fd, logmsg);
5791 close(fd);
5793 err = get_editor(&editor);
5794 if (err)
5795 goto done;
5797 err = edit_logmsg(&hle->logmsg, editor, logmsg_path, logmsg);
5798 if (err) {
5799 if (err->code != GOT_ERR_COMMIT_MSG_EMPTY)
5800 goto done;
5801 err = got_object_commit_get_logmsg(&hle->logmsg, commit);
5803 done:
5804 if (logmsg_path && unlink(logmsg_path) != 0 && err == NULL)
5805 err = got_error_from_errno2("unlink", logmsg_path);
5806 free(logmsg_path);
5807 free(logmsg);
5808 free(orig_logmsg);
5809 free(editor);
5810 if (commit)
5811 got_object_commit_close(commit);
5812 return err;
5815 static const struct got_error *
5816 histedit_parse_list(struct got_histedit_list *histedit_cmds,
5817 FILE *f, struct got_repository *repo)
5819 const struct got_error *err = NULL;
5820 char *line = NULL, *p, *end;
5821 size_t size;
5822 ssize_t len;
5823 int lineno = 0, i;
5824 const struct got_histedit_cmd *cmd;
5825 struct got_object_id *commit_id = NULL;
5826 struct got_histedit_list_entry *hle = NULL;
5828 for (;;) {
5829 len = getline(&line, &size, f);
5830 if (len == -1) {
5831 const struct got_error *getline_err;
5832 if (feof(f))
5833 break;
5834 getline_err = got_error_from_errno("getline");
5835 err = got_ferror(f, getline_err->code);
5836 break;
5838 lineno++;
5839 p = line;
5840 while (isspace((unsigned char)p[0]))
5841 p++;
5842 if (p[0] == '#' || p[0] == '\0') {
5843 free(line);
5844 line = NULL;
5845 continue;
5847 cmd = NULL;
5848 for (i = 0; i < nitems(got_histedit_cmds); i++) {
5849 cmd = &got_histedit_cmds[i];
5850 if (strncmp(cmd->name, p, strlen(cmd->name)) == 0 &&
5851 isspace((unsigned char)p[strlen(cmd->name)])) {
5852 p += strlen(cmd->name);
5853 break;
5855 if (p[0] == cmd->code && isspace((unsigned char)p[1])) {
5856 p++;
5857 break;
5860 if (i == nitems(got_histedit_cmds)) {
5861 err = histedit_syntax_error(lineno);
5862 break;
5864 while (isspace((unsigned char)p[0]))
5865 p++;
5866 if (cmd->code == GOT_HISTEDIT_MESG) {
5867 if (hle == NULL || hle->logmsg != NULL) {
5868 err = got_error(GOT_ERR_HISTEDIT_CMD);
5869 break;
5871 if (p[0] == '\0') {
5872 err = histedit_edit_logmsg(hle, repo);
5873 if (err)
5874 break;
5875 } else {
5876 hle->logmsg = strdup(p);
5877 if (hle->logmsg == NULL) {
5878 err = got_error_from_errno("strdup");
5879 break;
5882 free(line);
5883 line = NULL;
5884 continue;
5885 } else {
5886 end = p;
5887 while (end[0] && !isspace((unsigned char)end[0]))
5888 end++;
5889 *end = '\0';
5891 err = got_object_resolve_id_str(&commit_id, repo, p);
5892 if (err) {
5893 /* override error code */
5894 err = histedit_syntax_error(lineno);
5895 break;
5898 hle = malloc(sizeof(*hle));
5899 if (hle == NULL) {
5900 err = got_error_from_errno("malloc");
5901 break;
5903 hle->cmd = cmd;
5904 hle->commit_id = commit_id;
5905 hle->logmsg = NULL;
5906 commit_id = NULL;
5907 free(line);
5908 line = NULL;
5909 TAILQ_INSERT_TAIL(histedit_cmds, hle, entry);
5912 free(line);
5913 free(commit_id);
5914 return err;
5917 static const struct got_error *
5918 histedit_check_script(struct got_histedit_list *histedit_cmds,
5919 struct got_object_id_queue *commits, struct got_repository *repo)
5921 const struct got_error *err = NULL;
5922 struct got_object_qid *qid;
5923 struct got_histedit_list_entry *hle;
5924 static char msg[80];
5925 char *id_str;
5927 if (TAILQ_EMPTY(histedit_cmds))
5928 return got_error_msg(GOT_ERR_EMPTY_HISTEDIT,
5929 "histedit script contains no commands");
5930 if (SIMPLEQ_EMPTY(commits))
5931 return got_error(GOT_ERR_EMPTY_HISTEDIT);
5933 SIMPLEQ_FOREACH(qid, commits, entry) {
5934 TAILQ_FOREACH(hle, histedit_cmds, entry) {
5935 if (got_object_id_cmp(qid->id, hle->commit_id) == 0)
5936 break;
5938 if (hle == NULL) {
5939 err = got_object_id_str(&id_str, qid->id);
5940 if (err)
5941 return err;
5942 snprintf(msg, sizeof(msg),
5943 "commit %s missing from histedit script", id_str);
5944 free(id_str);
5945 return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
5949 hle = TAILQ_LAST(histedit_cmds, got_histedit_list);
5950 if (hle && hle->cmd->code == GOT_HISTEDIT_FOLD)
5951 return got_error_msg(GOT_ERR_HISTEDIT_CMD,
5952 "last commit in histedit script cannot be folded");
5954 return NULL;
5957 static const struct got_error *
5958 histedit_run_editor(struct got_histedit_list *histedit_cmds,
5959 const char *path, struct got_object_id_queue *commits,
5960 struct got_repository *repo)
5962 const struct got_error *err = NULL;
5963 char *editor;
5964 FILE *f = NULL;
5966 err = get_editor(&editor);
5967 if (err)
5968 return err;
5970 if (spawn_editor(editor, path) == -1) {
5971 err = got_error_from_errno("failed spawning editor");
5972 goto done;
5975 f = fopen(path, "r");
5976 if (f == NULL) {
5977 err = got_error_from_errno("fopen");
5978 goto done;
5980 err = histedit_parse_list(histedit_cmds, f, repo);
5981 if (err)
5982 goto done;
5984 err = histedit_check_script(histedit_cmds, commits, repo);
5985 done:
5986 if (f && fclose(f) != 0 && err == NULL)
5987 err = got_error_from_errno("fclose");
5988 free(editor);
5989 return err;
5992 static const struct got_error *
5993 histedit_edit_list_retry(struct got_histedit_list *, const struct got_error *,
5994 struct got_object_id_queue *, const char *, struct got_repository *);
5996 static const struct got_error *
5997 histedit_edit_script(struct got_histedit_list *histedit_cmds,
5998 struct got_object_id_queue *commits, struct got_repository *repo)
6000 const struct got_error *err;
6001 FILE *f = NULL;
6002 char *path = NULL;
6004 err = got_opentemp_named(&path, &f, "got-histedit");
6005 if (err)
6006 return err;
6008 err = write_cmd_list(f);
6009 if (err)
6010 goto done;
6012 err = histedit_write_commit_list(commits, f, repo);
6013 if (err)
6014 goto done;
6016 if (fclose(f) != 0) {
6017 err = got_error_from_errno("fclose");
6018 goto done;
6020 f = NULL;
6022 err = histedit_run_editor(histedit_cmds, path, commits, repo);
6023 if (err) {
6024 if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
6025 err->code != GOT_ERR_HISTEDIT_CMD)
6026 goto done;
6027 err = histedit_edit_list_retry(histedit_cmds, err,
6028 commits, path, repo);
6030 done:
6031 if (f && fclose(f) != 0 && err == NULL)
6032 err = got_error_from_errno("fclose");
6033 if (path && unlink(path) != 0 && err == NULL)
6034 err = got_error_from_errno2("unlink", path);
6035 free(path);
6036 return err;
6039 static const struct got_error *
6040 histedit_save_list(struct got_histedit_list *histedit_cmds,
6041 struct got_worktree *worktree, struct got_repository *repo)
6043 const struct got_error *err = NULL;
6044 char *path = NULL;
6045 FILE *f = NULL;
6046 struct got_histedit_list_entry *hle;
6047 struct got_commit_object *commit = NULL;
6049 err = got_worktree_get_histedit_script_path(&path, worktree);
6050 if (err)
6051 return err;
6053 f = fopen(path, "w");
6054 if (f == NULL) {
6055 err = got_error_from_errno2("fopen", path);
6056 goto done;
6058 TAILQ_FOREACH(hle, histedit_cmds, entry) {
6059 err = histedit_write_commit(hle->commit_id, hle->cmd->name, f,
6060 repo);
6061 if (err)
6062 break;
6064 if (hle->logmsg) {
6065 int n = fprintf(f, "%c %s\n",
6066 GOT_HISTEDIT_MESG, hle->logmsg);
6067 if (n < 0) {
6068 err = got_ferror(f, GOT_ERR_IO);
6069 break;
6073 done:
6074 if (f && fclose(f) != 0 && err == NULL)
6075 err = got_error_from_errno("fclose");
6076 free(path);
6077 if (commit)
6078 got_object_commit_close(commit);
6079 return err;
6082 void
6083 histedit_free_list(struct got_histedit_list *histedit_cmds)
6085 struct got_histedit_list_entry *hle;
6087 while ((hle = TAILQ_FIRST(histedit_cmds))) {
6088 TAILQ_REMOVE(histedit_cmds, hle, entry);
6089 free(hle);
6093 static const struct got_error *
6094 histedit_load_list(struct got_histedit_list *histedit_cmds,
6095 const char *path, struct got_repository *repo)
6097 const struct got_error *err = NULL;
6098 FILE *f = NULL;
6100 f = fopen(path, "r");
6101 if (f == NULL) {
6102 err = got_error_from_errno2("fopen", path);
6103 goto done;
6106 err = histedit_parse_list(histedit_cmds, f, repo);
6107 done:
6108 if (f && fclose(f) != 0 && err == NULL)
6109 err = got_error_from_errno("fclose");
6110 return err;
6113 static const struct got_error *
6114 histedit_edit_list_retry(struct got_histedit_list *histedit_cmds,
6115 const struct got_error *edit_err, struct got_object_id_queue *commits,
6116 const char *path, struct got_repository *repo)
6118 const struct got_error *err = NULL, *prev_err = edit_err;
6119 int resp = ' ';
6121 while (resp != 'c' && resp != 'r' && resp != 'a') {
6122 printf("%s: %s\n(c)ontinue editing, (r)estart editing, "
6123 "or (a)bort: ", getprogname(), prev_err->msg);
6124 resp = getchar();
6125 if (resp == '\n')
6126 resp = getchar();
6127 if (resp == 'c') {
6128 histedit_free_list(histedit_cmds);
6129 err = histedit_run_editor(histedit_cmds, path, commits,
6130 repo);
6131 if (err) {
6132 if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
6133 err->code != GOT_ERR_HISTEDIT_CMD)
6134 break;
6135 prev_err = err;
6136 resp = ' ';
6137 continue;
6139 break;
6140 } else if (resp == 'r') {
6141 histedit_free_list(histedit_cmds);
6142 err = histedit_edit_script(histedit_cmds,
6143 commits, repo);
6144 if (err) {
6145 if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
6146 err->code != GOT_ERR_HISTEDIT_CMD)
6147 break;
6148 prev_err = err;
6149 resp = ' ';
6150 continue;
6152 break;
6153 } else if (resp == 'a') {
6154 err = got_error(GOT_ERR_HISTEDIT_CANCEL);
6155 break;
6156 } else
6157 printf("invalid response '%c'\n", resp);
6160 return err;
6163 static const struct got_error *
6164 histedit_complete(struct got_worktree *worktree,
6165 struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6166 struct got_reference *branch, struct got_repository *repo)
6168 printf("Switching work tree to %s\n",
6169 got_ref_get_symref_target(branch));
6170 return got_worktree_histedit_complete(worktree, fileindex, tmp_branch,
6171 branch, repo);
6174 static const struct got_error *
6175 show_histedit_progress(struct got_commit_object *commit,
6176 struct got_histedit_list_entry *hle, struct got_object_id *new_id)
6178 const struct got_error *err;
6179 char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
6181 err = got_object_id_str(&old_id_str, hle->commit_id);
6182 if (err)
6183 goto done;
6185 if (new_id) {
6186 err = got_object_id_str(&new_id_str, new_id);
6187 if (err)
6188 goto done;
6191 old_id_str[12] = '\0';
6192 if (new_id_str)
6193 new_id_str[12] = '\0';
6195 if (hle->logmsg) {
6196 logmsg = strdup(hle->logmsg);
6197 if (logmsg == NULL) {
6198 err = got_error_from_errno("strdup");
6199 goto done;
6201 trim_logmsg(logmsg, 42);
6202 } else {
6203 err = get_short_logmsg(&logmsg, 42, commit);
6204 if (err)
6205 goto done;
6208 switch (hle->cmd->code) {
6209 case GOT_HISTEDIT_PICK:
6210 case GOT_HISTEDIT_EDIT:
6211 printf("%s -> %s: %s\n", old_id_str,
6212 new_id_str ? new_id_str : "no-op change", logmsg);
6213 break;
6214 case GOT_HISTEDIT_DROP:
6215 case GOT_HISTEDIT_FOLD:
6216 printf("%s -> %s commit: %s\n", old_id_str, hle->cmd->name,
6217 logmsg);
6218 break;
6219 default:
6220 break;
6222 done:
6223 free(old_id_str);
6224 free(new_id_str);
6225 return err;
6228 static const struct got_error *
6229 histedit_commit(struct got_pathlist_head *merged_paths,
6230 struct got_worktree *worktree, struct got_fileindex *fileindex,
6231 struct got_reference *tmp_branch, struct got_histedit_list_entry *hle,
6232 struct got_repository *repo)
6234 const struct got_error *err;
6235 struct got_commit_object *commit;
6236 struct got_object_id *new_commit_id;
6238 if ((hle->cmd->code == GOT_HISTEDIT_EDIT || get_folded_commits(hle))
6239 && hle->logmsg == NULL) {
6240 err = histedit_edit_logmsg(hle, repo);
6241 if (err)
6242 return err;
6245 err = got_object_open_as_commit(&commit, repo, hle->commit_id);
6246 if (err)
6247 return err;
6249 err = got_worktree_histedit_commit(&new_commit_id, merged_paths,
6250 worktree, fileindex, tmp_branch, commit, hle->commit_id,
6251 hle->logmsg, repo);
6252 if (err) {
6253 if (err->code != GOT_ERR_COMMIT_NO_CHANGES)
6254 goto done;
6255 err = show_histedit_progress(commit, hle, NULL);
6256 } else {
6257 err = show_histedit_progress(commit, hle, new_commit_id);
6258 free(new_commit_id);
6260 done:
6261 got_object_commit_close(commit);
6262 return err;
6265 static const struct got_error *
6266 histedit_skip_commit(struct got_histedit_list_entry *hle,
6267 struct got_worktree *worktree, struct got_repository *repo)
6269 const struct got_error *error;
6270 struct got_commit_object *commit;
6272 error = got_worktree_histedit_skip_commit(worktree, hle->commit_id,
6273 repo);
6274 if (error)
6275 return error;
6277 error = got_object_open_as_commit(&commit, repo, hle->commit_id);
6278 if (error)
6279 return error;
6281 error = show_histedit_progress(commit, hle, NULL);
6282 got_object_commit_close(commit);
6283 return error;
6286 static const struct got_error *
6287 cmd_histedit(int argc, char *argv[])
6289 const struct got_error *error = NULL;
6290 struct got_worktree *worktree = NULL;
6291 struct got_fileindex *fileindex = NULL;
6292 struct got_repository *repo = NULL;
6293 char *cwd = NULL;
6294 struct got_reference *branch = NULL;
6295 struct got_reference *tmp_branch = NULL;
6296 struct got_object_id *resume_commit_id = NULL;
6297 struct got_object_id *base_commit_id = NULL;
6298 struct got_object_id *head_commit_id = NULL;
6299 struct got_commit_object *commit = NULL;
6300 int ch, rebase_in_progress = 0, did_something;
6301 int edit_in_progress = 0, abort_edit = 0, continue_edit = 0;
6302 const char *edit_script_path = NULL;
6303 unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
6304 struct got_object_id_queue commits;
6305 struct got_pathlist_head merged_paths;
6306 const struct got_object_id_queue *parent_ids;
6307 struct got_object_qid *pid;
6308 struct got_histedit_list histedit_cmds;
6309 struct got_histedit_list_entry *hle;
6311 SIMPLEQ_INIT(&commits);
6312 TAILQ_INIT(&histedit_cmds);
6313 TAILQ_INIT(&merged_paths);
6315 while ((ch = getopt(argc, argv, "acF:")) != -1) {
6316 switch (ch) {
6317 case 'a':
6318 abort_edit = 1;
6319 break;
6320 case 'c':
6321 continue_edit = 1;
6322 break;
6323 case 'F':
6324 edit_script_path = optarg;
6325 break;
6326 default:
6327 usage_histedit();
6328 /* NOTREACHED */
6332 argc -= optind;
6333 argv += optind;
6335 #ifndef PROFILE
6336 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6337 "unveil", NULL) == -1)
6338 err(1, "pledge");
6339 #endif
6340 if (abort_edit && continue_edit)
6341 usage_histedit();
6342 if (argc != 0)
6343 usage_histedit();
6346 * This command cannot apply unveil(2) in all cases because the
6347 * user may choose to run an editor to edit the histedit script
6348 * and to edit individual commit log messages.
6349 * unveil(2) traverses exec(2); if an editor is used we have to
6350 * apply unveil after edit script and log messages have been written.
6351 * XXX TODO: Make use of unveil(2) where possible.
6354 cwd = getcwd(NULL, 0);
6355 if (cwd == NULL) {
6356 error = got_error_from_errno("getcwd");
6357 goto done;
6359 error = got_worktree_open(&worktree, cwd);
6360 if (error)
6361 goto done;
6363 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6364 NULL);
6365 if (error != NULL)
6366 goto done;
6368 error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
6369 if (error)
6370 goto done;
6371 if (rebase_in_progress) {
6372 error = got_error(GOT_ERR_REBASING);
6373 goto done;
6376 error = got_worktree_histedit_in_progress(&edit_in_progress, worktree);
6377 if (error)
6378 goto done;
6380 if (edit_in_progress && abort_edit) {
6381 error = got_worktree_histedit_continue(&resume_commit_id,
6382 &tmp_branch, &branch, &base_commit_id, &fileindex,
6383 worktree, repo);
6384 if (error)
6385 goto done;
6386 printf("Switching work tree to %s\n",
6387 got_ref_get_symref_target(branch));
6388 error = got_worktree_histedit_abort(worktree, fileindex, repo,
6389 branch, base_commit_id, update_progress, &did_something);
6390 if (error)
6391 goto done;
6392 printf("Histedit of %s aborted\n",
6393 got_ref_get_symref_target(branch));
6394 goto done; /* nothing else to do */
6395 } else if (abort_edit) {
6396 error = got_error(GOT_ERR_NOT_HISTEDIT);
6397 goto done;
6400 if (continue_edit) {
6401 char *path;
6403 if (!edit_in_progress) {
6404 error = got_error(GOT_ERR_NOT_HISTEDIT);
6405 goto done;
6408 error = got_worktree_get_histedit_script_path(&path, worktree);
6409 if (error)
6410 goto done;
6412 error = histedit_load_list(&histedit_cmds, path, repo);
6413 free(path);
6414 if (error)
6415 goto done;
6417 error = got_worktree_histedit_continue(&resume_commit_id,
6418 &tmp_branch, &branch, &base_commit_id, &fileindex,
6419 worktree, repo);
6420 if (error)
6421 goto done;
6423 error = got_ref_resolve(&head_commit_id, repo, branch);
6424 if (error)
6425 goto done;
6427 error = got_object_open_as_commit(&commit, repo,
6428 head_commit_id);
6429 if (error)
6430 goto done;
6431 parent_ids = got_object_commit_get_parent_ids(commit);
6432 pid = SIMPLEQ_FIRST(parent_ids);
6433 if (pid == NULL) {
6434 error = got_error(GOT_ERR_EMPTY_HISTEDIT);
6435 goto done;
6437 error = collect_commits(&commits, head_commit_id, pid->id,
6438 base_commit_id, got_worktree_get_path_prefix(worktree),
6439 GOT_ERR_HISTEDIT_PATH, repo);
6440 got_object_commit_close(commit);
6441 commit = NULL;
6442 if (error)
6443 goto done;
6444 } else {
6445 if (edit_in_progress) {
6446 error = got_error(GOT_ERR_HISTEDIT_BUSY);
6447 goto done;
6450 error = got_ref_open(&branch, repo,
6451 got_worktree_get_head_ref_name(worktree), 0);
6452 if (error != NULL)
6453 goto done;
6455 if (strncmp(got_ref_get_name(branch), "refs/heads/", 11) != 0) {
6456 error = got_error_msg(GOT_ERR_COMMIT_BRANCH,
6457 "will not edit commit history of a branch outside "
6458 "the \"refs/heads/\" reference namespace");
6459 goto done;
6462 error = got_ref_resolve(&head_commit_id, repo, branch);
6463 got_ref_close(branch);
6464 branch = NULL;
6465 if (error)
6466 goto done;
6468 error = got_object_open_as_commit(&commit, repo,
6469 head_commit_id);
6470 if (error)
6471 goto done;
6472 parent_ids = got_object_commit_get_parent_ids(commit);
6473 pid = SIMPLEQ_FIRST(parent_ids);
6474 if (pid == NULL) {
6475 error = got_error(GOT_ERR_EMPTY_HISTEDIT);
6476 goto done;
6478 error = collect_commits(&commits, head_commit_id, pid->id,
6479 got_worktree_get_base_commit_id(worktree),
6480 got_worktree_get_path_prefix(worktree),
6481 GOT_ERR_HISTEDIT_PATH, repo);
6482 got_object_commit_close(commit);
6483 commit = NULL;
6484 if (error)
6485 goto done;
6487 error = got_worktree_histedit_prepare(&tmp_branch, &branch,
6488 &base_commit_id, &fileindex, worktree, repo);
6489 if (error)
6490 goto done;
6492 if (edit_script_path) {
6493 error = histedit_load_list(&histedit_cmds,
6494 edit_script_path, repo);
6495 if (error) {
6496 got_worktree_histedit_abort(worktree, fileindex,
6497 repo, branch, base_commit_id,
6498 update_progress, &did_something);
6499 goto done;
6501 } else {
6502 error = histedit_edit_script(&histedit_cmds, &commits,
6503 repo);
6504 if (error) {
6505 got_worktree_histedit_abort(worktree, fileindex,
6506 repo, branch, base_commit_id,
6507 update_progress, &did_something);
6508 goto done;
6513 error = histedit_save_list(&histedit_cmds, worktree,
6514 repo);
6515 if (error) {
6516 got_worktree_histedit_abort(worktree, fileindex,
6517 repo, branch, base_commit_id,
6518 update_progress, &did_something);
6519 goto done;
6524 error = histedit_check_script(&histedit_cmds, &commits, repo);
6525 if (error)
6526 goto done;
6528 TAILQ_FOREACH(hle, &histedit_cmds, entry) {
6529 if (resume_commit_id) {
6530 if (got_object_id_cmp(hle->commit_id,
6531 resume_commit_id) != 0)
6532 continue;
6534 resume_commit_id = NULL;
6535 if (hle->cmd->code == GOT_HISTEDIT_DROP ||
6536 hle->cmd->code == GOT_HISTEDIT_FOLD) {
6537 error = histedit_skip_commit(hle, worktree,
6538 repo);
6539 } else {
6540 error = histedit_commit(NULL, worktree,
6541 fileindex, tmp_branch, hle, repo);
6543 if (error)
6544 goto done;
6545 continue;
6548 if (hle->cmd->code == GOT_HISTEDIT_DROP) {
6549 error = histedit_skip_commit(hle, worktree, repo);
6550 if (error)
6551 goto done;
6552 continue;
6555 error = got_object_open_as_commit(&commit, repo,
6556 hle->commit_id);
6557 if (error)
6558 goto done;
6559 parent_ids = got_object_commit_get_parent_ids(commit);
6560 pid = SIMPLEQ_FIRST(parent_ids);
6562 error = got_worktree_histedit_merge_files(&merged_paths,
6563 worktree, fileindex, pid->id, hle->commit_id, repo,
6564 rebase_progress, &rebase_status, check_cancelled, NULL);
6565 if (error)
6566 goto done;
6567 got_object_commit_close(commit);
6568 commit = NULL;
6570 if (rebase_status == GOT_STATUS_CONFLICT) {
6571 got_worktree_rebase_pathlist_free(&merged_paths);
6572 break;
6575 if (hle->cmd->code == GOT_HISTEDIT_EDIT) {
6576 char *id_str;
6577 error = got_object_id_str(&id_str, hle->commit_id);
6578 if (error)
6579 goto done;
6580 printf("Stopping histedit for amending commit %s\n",
6581 id_str);
6582 free(id_str);
6583 got_worktree_rebase_pathlist_free(&merged_paths);
6584 error = got_worktree_histedit_postpone(worktree,
6585 fileindex);
6586 goto done;
6589 if (hle->cmd->code == GOT_HISTEDIT_FOLD) {
6590 error = histedit_skip_commit(hle, worktree, repo);
6591 if (error)
6592 goto done;
6593 continue;
6596 error = histedit_commit(&merged_paths, worktree, fileindex,
6597 tmp_branch, hle, repo);
6598 got_worktree_rebase_pathlist_free(&merged_paths);
6599 if (error)
6600 goto done;
6603 if (rebase_status == GOT_STATUS_CONFLICT) {
6604 error = got_worktree_histedit_postpone(worktree, fileindex);
6605 if (error)
6606 goto done;
6607 error = got_error_msg(GOT_ERR_CONFLICTS,
6608 "conflicts must be resolved before rebasing can continue");
6609 } else
6610 error = histedit_complete(worktree, fileindex, tmp_branch,
6611 branch, repo);
6612 done:
6613 got_object_id_queue_free(&commits);
6614 histedit_free_list(&histedit_cmds);
6615 free(head_commit_id);
6616 free(base_commit_id);
6617 free(resume_commit_id);
6618 if (commit)
6619 got_object_commit_close(commit);
6620 if (branch)
6621 got_ref_close(branch);
6622 if (tmp_branch)
6623 got_ref_close(tmp_branch);
6624 if (worktree)
6625 got_worktree_close(worktree);
6626 if (repo)
6627 got_repo_close(repo);
6628 return error;
6631 __dead static void
6632 usage_integrate(void)
6634 fprintf(stderr, "usage: %s integrate branch\n", getprogname());
6635 exit(1);
6638 static const struct got_error *
6639 cmd_integrate(int argc, char *argv[])
6641 const struct got_error *error = NULL;
6642 struct got_repository *repo = NULL;
6643 struct got_worktree *worktree = NULL;
6644 char *cwd = NULL, *refname = NULL, *base_refname = NULL;
6645 const char *branch_arg = NULL;
6646 struct got_reference *branch_ref = NULL, *base_branch_ref = NULL;
6647 struct got_fileindex *fileindex = NULL;
6648 struct got_object_id *commit_id = NULL, *base_commit_id = NULL;
6649 int ch, did_something = 0;
6651 while ((ch = getopt(argc, argv, "")) != -1) {
6652 switch (ch) {
6653 default:
6654 usage_integrate();
6655 /* NOTREACHED */
6659 argc -= optind;
6660 argv += optind;
6662 if (argc != 1)
6663 usage_integrate();
6664 branch_arg = argv[0];
6666 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6667 "unveil", NULL) == -1)
6668 err(1, "pledge");
6670 cwd = getcwd(NULL, 0);
6671 if (cwd == NULL) {
6672 error = got_error_from_errno("getcwd");
6673 goto done;
6676 error = got_worktree_open(&worktree, cwd);
6677 if (error)
6678 goto done;
6680 error = check_rebase_or_histedit_in_progress(worktree);
6681 if (error)
6682 goto done;
6684 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6685 NULL);
6686 if (error != NULL)
6687 goto done;
6689 error = apply_unveil(got_repo_get_path(repo), 0,
6690 got_worktree_get_root_path(worktree));
6691 if (error)
6692 goto done;
6694 if (asprintf(&refname, "refs/heads/%s", branch_arg) == -1) {
6695 error = got_error_from_errno("asprintf");
6696 goto done;
6699 error = got_worktree_integrate_prepare(&fileindex, &branch_ref,
6700 &base_branch_ref, worktree, refname, repo);
6701 if (error)
6702 goto done;
6704 refname = strdup(got_ref_get_name(branch_ref));
6705 if (refname == NULL) {
6706 error = got_error_from_errno("strdup");
6707 got_worktree_integrate_abort(worktree, fileindex, repo,
6708 branch_ref, base_branch_ref);
6709 goto done;
6711 base_refname = strdup(got_ref_get_name(base_branch_ref));
6712 if (base_refname == NULL) {
6713 error = got_error_from_errno("strdup");
6714 got_worktree_integrate_abort(worktree, fileindex, repo,
6715 branch_ref, base_branch_ref);
6716 goto done;
6719 error = got_ref_resolve(&commit_id, repo, branch_ref);
6720 if (error)
6721 goto done;
6723 error = got_ref_resolve(&base_commit_id, repo, base_branch_ref);
6724 if (error)
6725 goto done;
6727 if (got_object_id_cmp(commit_id, base_commit_id) == 0) {
6728 error = got_error_msg(GOT_ERR_SAME_BRANCH,
6729 "specified branch has already been integrated");
6730 got_worktree_integrate_abort(worktree, fileindex, repo,
6731 branch_ref, base_branch_ref);
6732 goto done;
6735 error = check_linear_ancestry(commit_id, base_commit_id, 1, repo);
6736 if (error) {
6737 if (error->code == GOT_ERR_ANCESTRY)
6738 error = got_error(GOT_ERR_REBASE_REQUIRED);
6739 got_worktree_integrate_abort(worktree, fileindex, repo,
6740 branch_ref, base_branch_ref);
6741 goto done;
6744 error = got_worktree_integrate_continue(worktree, fileindex, repo,
6745 branch_ref, base_branch_ref, update_progress, &did_something,
6746 check_cancelled, NULL);
6747 if (error)
6748 goto done;
6750 printf("Integrated %s into %s\n", refname, base_refname);
6751 done:
6752 if (repo)
6753 got_repo_close(repo);
6754 if (worktree)
6755 got_worktree_close(worktree);
6756 free(cwd);
6757 free(base_commit_id);
6758 free(commit_id);
6759 free(refname);
6760 free(base_refname);
6761 return error;
6764 __dead static void
6765 usage_stage(void)
6767 fprintf(stderr, "usage: %s stage [-l] | [-p] [-F response-script] "
6768 "[file-path ...]\n",
6769 getprogname());
6770 exit(1);
6773 static const struct got_error *
6774 print_stage(void *arg, unsigned char status, unsigned char staged_status,
6775 const char *path, struct got_object_id *blob_id,
6776 struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
6777 int dirfd, const char *de_name)
6779 const struct got_error *err = NULL;
6780 char *id_str = NULL;
6782 if (staged_status != GOT_STATUS_ADD &&
6783 staged_status != GOT_STATUS_MODIFY &&
6784 staged_status != GOT_STATUS_DELETE)
6785 return NULL;
6787 if (staged_status == GOT_STATUS_ADD ||
6788 staged_status == GOT_STATUS_MODIFY)
6789 err = got_object_id_str(&id_str, staged_blob_id);
6790 else
6791 err = got_object_id_str(&id_str, blob_id);
6792 if (err)
6793 return err;
6795 printf("%s %c %s\n", id_str, staged_status, path);
6796 free(id_str);
6797 return NULL;
6800 static const struct got_error *
6801 cmd_stage(int argc, char *argv[])
6803 const struct got_error *error = NULL;
6804 struct got_repository *repo = NULL;
6805 struct got_worktree *worktree = NULL;
6806 char *cwd = NULL;
6807 struct got_pathlist_head paths;
6808 struct got_pathlist_entry *pe;
6809 int ch, list_stage = 0, pflag = 0;
6810 FILE *patch_script_file = NULL;
6811 const char *patch_script_path = NULL;
6812 struct choose_patch_arg cpa;
6814 TAILQ_INIT(&paths);
6816 while ((ch = getopt(argc, argv, "lpF:")) != -1) {
6817 switch (ch) {
6818 case 'l':
6819 list_stage = 1;
6820 break;
6821 case 'p':
6822 pflag = 1;
6823 break;
6824 case 'F':
6825 patch_script_path = optarg;
6826 break;
6827 default:
6828 usage_stage();
6829 /* NOTREACHED */
6833 argc -= optind;
6834 argv += optind;
6836 #ifndef PROFILE
6837 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6838 "unveil", NULL) == -1)
6839 err(1, "pledge");
6840 #endif
6841 if (list_stage && (pflag || patch_script_path))
6842 errx(1, "-l option cannot be used with other options");
6843 if (patch_script_path && !pflag)
6844 errx(1, "-F option can only be used together with -p option");
6846 cwd = getcwd(NULL, 0);
6847 if (cwd == NULL) {
6848 error = got_error_from_errno("getcwd");
6849 goto done;
6852 error = got_worktree_open(&worktree, cwd);
6853 if (error)
6854 goto done;
6856 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6857 NULL);
6858 if (error != NULL)
6859 goto done;
6861 if (patch_script_path) {
6862 patch_script_file = fopen(patch_script_path, "r");
6863 if (patch_script_file == NULL) {
6864 error = got_error_from_errno2("fopen",
6865 patch_script_path);
6866 goto done;
6869 error = apply_unveil(got_repo_get_path(repo), 0,
6870 got_worktree_get_root_path(worktree));
6871 if (error)
6872 goto done;
6874 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6875 if (error)
6876 goto done;
6878 if (list_stage)
6879 error = got_worktree_status(worktree, &paths, repo,
6880 print_stage, NULL, check_cancelled, NULL);
6881 else {
6882 cpa.patch_script_file = patch_script_file;
6883 cpa.action = "stage";
6884 error = got_worktree_stage(worktree, &paths,
6885 pflag ? NULL : print_status, NULL,
6886 pflag ? choose_patch : NULL, &cpa, repo);
6888 done:
6889 if (patch_script_file && fclose(patch_script_file) == EOF &&
6890 error == NULL)
6891 error = got_error_from_errno2("fclose", patch_script_path);
6892 if (repo)
6893 got_repo_close(repo);
6894 if (worktree)
6895 got_worktree_close(worktree);
6896 TAILQ_FOREACH(pe, &paths, entry)
6897 free((char *)pe->path);
6898 got_pathlist_free(&paths);
6899 free(cwd);
6900 return error;
6903 __dead static void
6904 usage_unstage(void)
6906 fprintf(stderr, "usage: %s unstage [-p] [-F response-script] "
6907 "[file-path ...]\n",
6908 getprogname());
6909 exit(1);
6913 static const struct got_error *
6914 cmd_unstage(int argc, char *argv[])
6916 const struct got_error *error = NULL;
6917 struct got_repository *repo = NULL;
6918 struct got_worktree *worktree = NULL;
6919 char *cwd = NULL;
6920 struct got_pathlist_head paths;
6921 struct got_pathlist_entry *pe;
6922 int ch, did_something = 0, pflag = 0;
6923 FILE *patch_script_file = NULL;
6924 const char *patch_script_path = NULL;
6925 struct choose_patch_arg cpa;
6927 TAILQ_INIT(&paths);
6929 while ((ch = getopt(argc, argv, "pF:")) != -1) {
6930 switch (ch) {
6931 case 'p':
6932 pflag = 1;
6933 break;
6934 case 'F':
6935 patch_script_path = optarg;
6936 break;
6937 default:
6938 usage_unstage();
6939 /* NOTREACHED */
6943 argc -= optind;
6944 argv += optind;
6946 #ifndef PROFILE
6947 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6948 "unveil", NULL) == -1)
6949 err(1, "pledge");
6950 #endif
6951 if (patch_script_path && !pflag)
6952 errx(1, "-F option can only be used together with -p option");
6954 cwd = getcwd(NULL, 0);
6955 if (cwd == NULL) {
6956 error = got_error_from_errno("getcwd");
6957 goto done;
6960 error = got_worktree_open(&worktree, cwd);
6961 if (error)
6962 goto done;
6964 error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6965 NULL);
6966 if (error != NULL)
6967 goto done;
6969 if (patch_script_path) {
6970 patch_script_file = fopen(patch_script_path, "r");
6971 if (patch_script_file == NULL) {
6972 error = got_error_from_errno2("fopen",
6973 patch_script_path);
6974 goto done;
6978 error = apply_unveil(got_repo_get_path(repo), 0,
6979 got_worktree_get_root_path(worktree));
6980 if (error)
6981 goto done;
6983 error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6984 if (error)
6985 goto done;
6987 cpa.patch_script_file = patch_script_file;
6988 cpa.action = "unstage";
6989 error = got_worktree_unstage(worktree, &paths, update_progress,
6990 &did_something, pflag ? choose_patch : NULL, &cpa, repo);
6991 done:
6992 if (patch_script_file && fclose(patch_script_file) == EOF &&
6993 error == NULL)
6994 error = got_error_from_errno2("fclose", patch_script_path);
6995 if (repo)
6996 got_repo_close(repo);
6997 if (worktree)
6998 got_worktree_close(worktree);
6999 TAILQ_FOREACH(pe, &paths, entry)
7000 free((char *)pe->path);
7001 got_pathlist_free(&paths);
7002 free(cwd);
7003 return error;
7006 __dead static void
7007 usage_cat(void)
7009 fprintf(stderr, "usage: %s cat [-r repository ] [ -c commit ] [ -P ] "
7010 "arg1 [arg2 ...]\n", getprogname());
7011 exit(1);
7014 static const struct got_error *
7015 cat_blob(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
7017 const struct got_error *err;
7018 struct got_blob_object *blob;
7020 err = got_object_open_as_blob(&blob, repo, id, 8192);
7021 if (err)
7022 return err;
7024 err = got_object_blob_dump_to_file(NULL, NULL, NULL, outfile, blob);
7025 got_object_blob_close(blob);
7026 return err;
7029 static const struct got_error *
7030 cat_tree(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
7032 const struct got_error *err;
7033 struct got_tree_object *tree;
7034 int nentries, i;
7036 err = got_object_open_as_tree(&tree, repo, id);
7037 if (err)
7038 return err;
7040 nentries = got_object_tree_get_nentries(tree);
7041 for (i = 0; i < nentries; i++) {
7042 struct got_tree_entry *te;
7043 char *id_str;
7044 if (sigint_received || sigpipe_received)
7045 break;
7046 te = got_object_tree_get_entry(tree, i);
7047 err = got_object_id_str(&id_str, got_tree_entry_get_id(te));
7048 if (err)
7049 break;
7050 fprintf(outfile, "%s %.7o %s\n", id_str,
7051 got_tree_entry_get_mode(te),
7052 got_tree_entry_get_name(te));
7053 free(id_str);
7056 got_object_tree_close(tree);
7057 return err;
7060 static const struct got_error *
7061 cat_commit(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
7063 const struct got_error *err;
7064 struct got_commit_object *commit;
7065 const struct got_object_id_queue *parent_ids;
7066 struct got_object_qid *pid;
7067 char *id_str = NULL;
7068 const char *logmsg = NULL;
7070 err = got_object_open_as_commit(&commit, repo, id);
7071 if (err)
7072 return err;
7074 err = got_object_id_str(&id_str, got_object_commit_get_tree_id(commit));
7075 if (err)
7076 goto done;
7078 fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_TREE, id_str);
7079 parent_ids = got_object_commit_get_parent_ids(commit);
7080 fprintf(outfile, "numparents %d\n",
7081 got_object_commit_get_nparents(commit));
7082 SIMPLEQ_FOREACH(pid, parent_ids, entry) {
7083 char *pid_str;
7084 err = got_object_id_str(&pid_str, pid->id);
7085 if (err)
7086 goto done;
7087 fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_PARENT, pid_str);
7088 free(pid_str);
7090 fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_AUTHOR,
7091 got_object_commit_get_author(commit),
7092 got_object_commit_get_author_time(commit));
7094 fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_COMMITTER,
7095 got_object_commit_get_author(commit),
7096 got_object_commit_get_committer_time(commit));
7098 logmsg = got_object_commit_get_logmsg_raw(commit);
7099 fprintf(outfile, "messagelen %zd\n", strlen(logmsg));
7100 fprintf(outfile, "%s", logmsg);
7101 done:
7102 free(id_str);
7103 got_object_commit_close(commit);
7104 return err;
7107 static const struct got_error *
7108 cat_tag(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
7110 const struct got_error *err;
7111 struct got_tag_object *tag;
7112 char *id_str = NULL;
7113 const char *tagmsg = NULL;
7115 err = got_object_open_as_tag(&tag, repo, id);
7116 if (err)
7117 return err;
7119 err = got_object_id_str(&id_str, got_object_tag_get_object_id(tag));
7120 if (err)
7121 goto done;
7123 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_OBJECT, id_str);
7125 switch (got_object_tag_get_object_type(tag)) {
7126 case GOT_OBJ_TYPE_BLOB:
7127 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7128 GOT_OBJ_LABEL_BLOB);
7129 break;
7130 case GOT_OBJ_TYPE_TREE:
7131 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7132 GOT_OBJ_LABEL_TREE);
7133 break;
7134 case GOT_OBJ_TYPE_COMMIT:
7135 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7136 GOT_OBJ_LABEL_COMMIT);
7137 break;
7138 case GOT_OBJ_TYPE_TAG:
7139 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7140 GOT_OBJ_LABEL_TAG);
7141 break;
7142 default:
7143 break;
7146 fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TAG,
7147 got_object_tag_get_name(tag));
7149 fprintf(outfile, "%s%s %lld +0000\n", GOT_TAG_LABEL_TAGGER,
7150 got_object_tag_get_tagger(tag),
7151 got_object_tag_get_tagger_time(tag));
7153 tagmsg = got_object_tag_get_message(tag);
7154 fprintf(outfile, "messagelen %zd\n", strlen(tagmsg));
7155 fprintf(outfile, "%s", tagmsg);
7156 done:
7157 free(id_str);
7158 got_object_tag_close(tag);
7159 return err;
7162 static const struct got_error *
7163 cmd_cat(int argc, char *argv[])
7165 const struct got_error *error;
7166 struct got_repository *repo = NULL;
7167 struct got_worktree *worktree = NULL;
7168 char *cwd = NULL, *repo_path = NULL, *label = NULL;
7169 const char *commit_id_str = NULL;
7170 struct got_object_id *id = NULL, *commit_id = NULL;
7171 int ch, obj_type, i, force_path = 0;
7173 #ifndef PROFILE
7174 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
7175 NULL) == -1)
7176 err(1, "pledge");
7177 #endif
7179 while ((ch = getopt(argc, argv, "c:r:P")) != -1) {
7180 switch (ch) {
7181 case 'c':
7182 commit_id_str = optarg;
7183 break;
7184 case 'r':
7185 repo_path = realpath(optarg, NULL);
7186 if (repo_path == NULL)
7187 return got_error_from_errno2("realpath",
7188 optarg);
7189 got_path_strip_trailing_slashes(repo_path);
7190 break;
7191 case 'P':
7192 force_path = 1;
7193 break;
7194 default:
7195 usage_cat();
7196 /* NOTREACHED */
7200 argc -= optind;
7201 argv += optind;
7203 cwd = getcwd(NULL, 0);
7204 if (cwd == NULL) {
7205 error = got_error_from_errno("getcwd");
7206 goto done;
7208 error = got_worktree_open(&worktree, cwd);
7209 if (error && error->code != GOT_ERR_NOT_WORKTREE)
7210 goto done;
7211 if (worktree) {
7212 if (repo_path == NULL) {
7213 repo_path = strdup(
7214 got_worktree_get_repo_path(worktree));
7215 if (repo_path == NULL) {
7216 error = got_error_from_errno("strdup");
7217 goto done;
7222 if (repo_path == NULL) {
7223 repo_path = getcwd(NULL, 0);
7224 if (repo_path == NULL)
7225 return got_error_from_errno("getcwd");
7228 error = got_repo_open(&repo, repo_path, NULL);
7229 free(repo_path);
7230 if (error != NULL)
7231 goto done;
7233 error = apply_unveil(got_repo_get_path(repo), 1, NULL);
7234 if (error)
7235 goto done;
7237 if (commit_id_str == NULL)
7238 commit_id_str = GOT_REF_HEAD;
7239 error = got_repo_match_object_id(&commit_id, NULL,
7240 commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
7241 if (error)
7242 goto done;
7244 for (i = 0; i < argc; i++) {
7245 if (force_path) {
7246 error = got_object_id_by_path(&id, repo, commit_id,
7247 argv[i]);
7248 if (error)
7249 break;
7250 } else {
7251 error = got_repo_match_object_id(&id, &label, argv[i],
7252 GOT_OBJ_TYPE_ANY, 0, repo);
7253 if (error) {
7254 if (error->code != GOT_ERR_BAD_OBJ_ID_STR &&
7255 error->code != GOT_ERR_NOT_REF)
7256 break;
7257 error = got_object_id_by_path(&id, repo,
7258 commit_id, argv[i]);
7259 if (error)
7260 break;
7264 error = got_object_get_type(&obj_type, repo, id);
7265 if (error)
7266 break;
7268 switch (obj_type) {
7269 case GOT_OBJ_TYPE_BLOB:
7270 error = cat_blob(id, repo, stdout);
7271 break;
7272 case GOT_OBJ_TYPE_TREE:
7273 error = cat_tree(id, repo, stdout);
7274 break;
7275 case GOT_OBJ_TYPE_COMMIT:
7276 error = cat_commit(id, repo, stdout);
7277 break;
7278 case GOT_OBJ_TYPE_TAG:
7279 error = cat_tag(id, repo, stdout);
7280 break;
7281 default:
7282 error = got_error(GOT_ERR_OBJ_TYPE);
7283 break;
7285 if (error)
7286 break;
7287 free(label);
7288 label = NULL;
7289 free(id);
7290 id = NULL;
7292 done:
7293 free(label);
7294 free(id);
7295 free(commit_id);
7296 if (worktree)
7297 got_worktree_close(worktree);
7298 if (repo) {
7299 const struct got_error *repo_error;
7300 repo_error = got_repo_close(repo);
7301 if (error == NULL)
7302 error = repo_error;
7304 return error;