2 * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
4 * Copyright (c) 2020 Ori Bernstein <ori@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include "got_compat.h"
21 #include <sys/queue.h>
23 #include <sys/types.h>
44 #include "got_version.h"
45 #include "got_error.h"
46 #include "got_object.h"
47 #include "got_reference.h"
48 #include "got_repository.h"
50 #include "got_cancel.h"
51 #include "got_worktree.h"
53 #include "got_commit_graph.h"
54 #include "got_fetch.h"
56 #include "got_blame.h"
57 #include "got_privsep.h"
58 #include "got_opentemp.h"
59 #include "got_gotconfig.h"
61 #include "got_patch.h"
66 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
69 static volatile sig_atomic_t sigint_received
;
70 static volatile sig_atomic_t sigpipe_received
;
73 catch_sigint(int signo
)
79 catch_sigpipe(int signo
)
87 const struct got_error
*(*cmd_main
)(int, char *[]);
88 void (*cmd_usage
)(void);
89 const char *cmd_alias
;
92 __dead
static void usage(int, int);
93 __dead
static void usage_import(void);
94 __dead
static void usage_clone(void);
95 __dead
static void usage_fetch(void);
96 __dead
static void usage_checkout(void);
97 __dead
static void usage_update(void);
98 __dead
static void usage_log(void);
99 __dead
static void usage_diff(void);
100 __dead
static void usage_blame(void);
101 __dead
static void usage_tree(void);
102 __dead
static void usage_status(void);
103 __dead
static void usage_ref(void);
104 __dead
static void usage_branch(void);
105 __dead
static void usage_tag(void);
106 __dead
static void usage_add(void);
107 __dead
static void usage_remove(void);
108 __dead
static void usage_patch(void);
109 __dead
static void usage_revert(void);
110 __dead
static void usage_commit(void);
111 __dead
static void usage_send(void);
112 __dead
static void usage_cherrypick(void);
113 __dead
static void usage_backout(void);
114 __dead
static void usage_rebase(void);
115 __dead
static void usage_histedit(void);
116 __dead
static void usage_integrate(void);
117 __dead
static void usage_merge(void);
118 __dead
static void usage_stage(void);
119 __dead
static void usage_unstage(void);
120 __dead
static void usage_cat(void);
121 __dead
static void usage_info(void);
123 static const struct got_error
* cmd_import(int, char *[]);
124 static const struct got_error
* cmd_clone(int, char *[]);
125 static const struct got_error
* cmd_fetch(int, char *[]);
126 static const struct got_error
* cmd_checkout(int, char *[]);
127 static const struct got_error
* cmd_update(int, char *[]);
128 static const struct got_error
* cmd_log(int, char *[]);
129 static const struct got_error
* cmd_diff(int, char *[]);
130 static const struct got_error
* cmd_blame(int, char *[]);
131 static const struct got_error
* cmd_tree(int, char *[]);
132 static const struct got_error
* cmd_status(int, char *[]);
133 static const struct got_error
* cmd_ref(int, char *[]);
134 static const struct got_error
* cmd_branch(int, char *[]);
135 static const struct got_error
* cmd_tag(int, char *[]);
136 static const struct got_error
* cmd_add(int, char *[]);
137 static const struct got_error
* cmd_remove(int, char *[]);
138 static const struct got_error
* cmd_patch(int, char *[]);
139 static const struct got_error
* cmd_revert(int, char *[]);
140 static const struct got_error
* cmd_commit(int, char *[]);
141 static const struct got_error
* cmd_send(int, char *[]);
142 static const struct got_error
* cmd_cherrypick(int, char *[]);
143 static const struct got_error
* cmd_backout(int, char *[]);
144 static const struct got_error
* cmd_rebase(int, char *[]);
145 static const struct got_error
* cmd_histedit(int, char *[]);
146 static const struct got_error
* cmd_integrate(int, char *[]);
147 static const struct got_error
* cmd_merge(int, char *[]);
148 static const struct got_error
* cmd_stage(int, char *[]);
149 static const struct got_error
* cmd_unstage(int, char *[]);
150 static const struct got_error
* cmd_cat(int, char *[]);
151 static const struct got_error
* cmd_info(int, char *[]);
153 static const struct got_cmd got_commands
[] = {
154 { "import", cmd_import
, usage_import
, "im" },
155 { "clone", cmd_clone
, usage_clone
, "cl" },
156 { "fetch", cmd_fetch
, usage_fetch
, "fe" },
157 { "checkout", cmd_checkout
, usage_checkout
, "co" },
158 { "update", cmd_update
, usage_update
, "up" },
159 { "log", cmd_log
, usage_log
, "" },
160 { "diff", cmd_diff
, usage_diff
, "di" },
161 { "blame", cmd_blame
, usage_blame
, "bl" },
162 { "tree", cmd_tree
, usage_tree
, "tr" },
163 { "status", cmd_status
, usage_status
, "st" },
164 { "ref", cmd_ref
, usage_ref
, "" },
165 { "branch", cmd_branch
, usage_branch
, "br" },
166 { "tag", cmd_tag
, usage_tag
, "" },
167 { "add", cmd_add
, usage_add
, "" },
168 { "remove", cmd_remove
, usage_remove
, "rm" },
169 { "patch", cmd_patch
, usage_patch
, "pa" },
170 { "revert", cmd_revert
, usage_revert
, "rv" },
171 { "commit", cmd_commit
, usage_commit
, "ci" },
172 { "send", cmd_send
, usage_send
, "se" },
173 { "cherrypick", cmd_cherrypick
, usage_cherrypick
, "cy" },
174 { "backout", cmd_backout
, usage_backout
, "bo" },
175 { "rebase", cmd_rebase
, usage_rebase
, "rb" },
176 { "histedit", cmd_histedit
, usage_histedit
, "he" },
177 { "integrate", cmd_integrate
, usage_integrate
,"ig" },
178 { "merge", cmd_merge
, usage_merge
, "mg" },
179 { "stage", cmd_stage
, usage_stage
, "sg" },
180 { "unstage", cmd_unstage
, usage_unstage
, "ug" },
181 { "cat", cmd_cat
, usage_cat
, "" },
182 { "info", cmd_info
, usage_info
, "" },
186 list_commands(FILE *fp
)
190 fprintf(fp
, "commands:");
191 for (i
= 0; i
< nitems(got_commands
); i
++) {
192 const struct got_cmd
*cmd
= &got_commands
[i
];
193 fprintf(fp
, " %s", cmd
->cmd_name
);
199 option_conflict(char a
, char b
)
201 errx(1, "-%c and -%c options are mutually exclusive", a
, b
);
205 main(int argc
, char *argv
[])
207 const struct got_cmd
*cmd
;
210 int hflag
= 0, Vflag
= 0;
211 static const struct option longopts
[] = {
212 { "version", no_argument
, NULL
, 'V' },
216 setlocale(LC_CTYPE
, "");
218 while ((ch
= getopt_long(argc
, argv
, "+hV", longopts
, NULL
)) != -1) {
238 got_version_print_str();
243 usage(hflag
, hflag
? 0 : 1);
245 signal(SIGINT
, catch_sigint
);
246 signal(SIGPIPE
, catch_sigpipe
);
248 for (i
= 0; i
< nitems(got_commands
); i
++) {
249 const struct got_error
*error
;
251 cmd
= &got_commands
[i
];
253 if (strcmp(cmd
->cmd_name
, argv
[0]) != 0 &&
254 strcmp(cmd
->cmd_alias
, argv
[0]) != 0)
260 error
= cmd
->cmd_main(argc
, argv
);
261 if (error
&& error
->code
!= GOT_ERR_CANCELLED
&&
262 error
->code
!= GOT_ERR_PRIVSEP_EXIT
&&
263 !(sigpipe_received
&&
264 error
->code
== GOT_ERR_ERRNO
&& errno
== EPIPE
) &&
266 error
->code
== GOT_ERR_ERRNO
&& errno
== EINTR
)) {
268 fprintf(stderr
, "%s: %s\n", getprogname(), error
->msg
);
275 fprintf(stderr
, "%s: unknown command '%s'\n", getprogname(), argv
[0]);
276 list_commands(stderr
);
281 usage(int hflag
, int status
)
283 FILE *fp
= (status
== 0) ? stdout
: stderr
;
285 fprintf(fp
, "usage: %s [-hV] command [arg ...]\n",
292 static const struct got_error
*
293 get_editor(char **abspath
)
295 const struct got_error
*err
= NULL
;
300 editor
= getenv("VISUAL");
302 editor
= getenv("EDITOR");
305 err
= got_path_find_prog(abspath
, editor
);
310 if (*abspath
== NULL
) {
311 *abspath
= strdup("/usr/bin/vi");
312 if (*abspath
== NULL
)
313 return got_error_from_errno("strdup");
319 static const struct got_error
*
320 apply_unveil(const char *repo_path
, int repo_read_only
,
321 const char *worktree_path
)
323 const struct got_error
*err
;
326 if (unveil("gmon.out", "rwc") != 0)
327 return got_error_from_errno2("unveil", "gmon.out");
329 if (repo_path
&& unveil(repo_path
, repo_read_only
? "r" : "rwc") != 0)
330 return got_error_from_errno2("unveil", repo_path
);
332 if (worktree_path
&& unveil(worktree_path
, "rwc") != 0)
333 return got_error_from_errno2("unveil", worktree_path
);
335 if (unveil(GOT_TMPDIR_STR
, "rwc") != 0)
336 return got_error_from_errno2("unveil", GOT_TMPDIR_STR
);
338 err
= got_privsep_unveil_exec_helpers();
342 if (unveil(NULL
, NULL
) != 0)
343 return got_error_from_errno("unveil");
351 fprintf(stderr
, "usage: %s import [-b branch] [-I pattern] [-m message] "
352 "[-r repository-path] directory\n", getprogname());
357 spawn_editor(const char *editor
, const char *file
)
360 sig_t sighup
, sigint
, sigquit
;
363 sighup
= signal(SIGHUP
, SIG_IGN
);
364 sigint
= signal(SIGINT
, SIG_IGN
);
365 sigquit
= signal(SIGQUIT
, SIG_IGN
);
367 switch (pid
= fork()) {
371 execl(editor
, editor
, file
, (char *)NULL
);
375 while (waitpid(pid
, &st
, 0) == -1)
380 (void)signal(SIGHUP
, sighup
);
381 (void)signal(SIGINT
, sigint
);
382 (void)signal(SIGQUIT
, sigquit
);
384 if (!WIFEXITED(st
)) {
389 return WEXITSTATUS(st
);
392 static const struct got_error
*
393 read_logmsg(char **logmsg
, size_t *len
, FILE *fp
, size_t filesize
)
395 const struct got_error
*err
= NULL
;
402 if (fseeko(fp
, 0L, SEEK_SET
) == -1)
403 return got_error_from_errno("fseeko");
405 *logmsg
= malloc(filesize
+ 1);
407 return got_error_from_errno("malloc");
410 while (getline(&line
, &linesize
, fp
) != -1) {
411 if (line
[0] == '#' || (*len
== 0 && line
[0] == '\n'))
412 continue; /* remove comments and leading empty lines */
413 *len
= strlcat(*logmsg
, line
, filesize
+ 1);
414 if (*len
>= filesize
+ 1) {
415 err
= got_error(GOT_ERR_NO_SPACE
);
420 err
= got_ferror(fp
, GOT_ERR_IO
);
424 while (*len
> 0 && (*logmsg
)[*len
- 1] == '\n') {
425 (*logmsg
)[*len
- 1] = '\0';
438 static const struct got_error
*
439 edit_logmsg(char **logmsg
, const char *editor
, const char *logmsg_path
,
440 const char *initial_content
, size_t initial_content_len
,
441 int require_modification
)
443 const struct got_error
*err
= NULL
;
450 if (stat(logmsg_path
, &st
) == -1)
451 return got_error_from_errno2("stat", logmsg_path
);
453 if (spawn_editor(editor
, logmsg_path
) == -1)
454 return got_error_from_errno("failed spawning editor");
456 if (require_modification
) {
457 struct timespec timeout
;
461 nanosleep(&timeout
, NULL
);
464 if (stat(logmsg_path
, &st2
) == -1)
465 return got_error_from_errno("stat");
467 if (require_modification
&& st
.st_size
== st2
.st_size
&&
468 timespeccmp(&st
.st_mtim
, &st2
.st_mtim
, ==))
469 return got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY
,
470 "no changes made to commit message, aborting");
472 fp
= fopen(logmsg_path
, "re");
474 err
= got_error_from_errno("fopen");
478 /* strip comments and leading/trailing newlines */
479 err
= read_logmsg(logmsg
, &logmsg_len
, fp
, st2
.st_size
);
482 if (logmsg_len
== 0) {
483 err
= got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY
,
484 "commit message cannot be empty, aborting");
488 if (fp
&& fclose(fp
) == EOF
&& err
== NULL
)
489 err
= got_error_from_errno("fclose");
497 static const struct got_error
*
498 collect_import_msg(char **logmsg
, char **logmsg_path
, const char *editor
,
499 const char *path_dir
, const char *branch_name
)
501 char *initial_content
= NULL
;
502 const struct got_error
*err
= NULL
;
503 int initial_content_len
;
506 initial_content_len
= asprintf(&initial_content
,
507 "\n# %s to be imported to branch %s\n", path_dir
,
509 if (initial_content_len
== -1)
510 return got_error_from_errno("asprintf");
512 err
= got_opentemp_named_fd(logmsg_path
, &fd
,
513 GOT_TMPDIR_STR
"/got-importmsg", "");
517 if (write(fd
, initial_content
, initial_content_len
) == -1) {
518 err
= got_error_from_errno2("write", *logmsg_path
);
521 if (close(fd
) == -1) {
522 err
= got_error_from_errno2("close", *logmsg_path
);
527 err
= edit_logmsg(logmsg
, editor
, *logmsg_path
, initial_content
,
528 initial_content_len
, 1);
530 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
531 err
= got_error_from_errno2("close", *logmsg_path
);
532 free(initial_content
);
540 static const struct got_error
*
541 import_progress(void *arg
, const char *path
)
543 printf("A %s\n", path
);
547 static const struct got_error
*
548 valid_author(const char *author
)
550 const char *email
= author
;
553 * Git' expects the author (or committer) to be in the form
554 * "name <email>", which are mostly free form (see the
555 * "committer" description in git-fast-import(1)). We're only
556 * doing this to avoid git's object parser breaking on commits
560 while (*author
&& *author
!= '\n' && *author
!= '<' && *author
!= '>')
562 if (author
!= email
&& *author
== '<' && *(author
- 1) != ' ')
563 return got_error_fmt(GOT_ERR_COMMIT_BAD_AUTHOR
, "%s: space "
564 "between author name and email required", email
);
565 if (*author
++ != '<')
566 return got_error_fmt(GOT_ERR_COMMIT_NO_EMAIL
, "%s", email
);
567 while (*author
&& *author
!= '\n' && *author
!= '<' && *author
!= '>')
569 if (strcmp(author
, ">") != 0)
570 return got_error_fmt(GOT_ERR_COMMIT_NO_EMAIL
, "%s", email
);
574 static const struct got_error
*
575 get_author(char **author
, struct got_repository
*repo
,
576 struct got_worktree
*worktree
)
578 const struct got_error
*err
= NULL
;
579 const char *got_author
= NULL
, *name
, *email
;
580 const struct got_gotconfig
*worktree_conf
= NULL
, *repo_conf
= NULL
;
585 worktree_conf
= got_worktree_get_gotconfig(worktree
);
586 repo_conf
= got_repo_get_gotconfig(repo
);
589 * Priority of potential author information sources, from most
590 * significant to least significant:
591 * 1) work tree's .got/got.conf file
592 * 2) repository's got.conf file
593 * 3) repository's git config file
594 * 4) environment variables
595 * 5) global git config files (in user's home directory or /etc)
599 got_author
= got_gotconfig_get_author(worktree_conf
);
600 if (got_author
== NULL
)
601 got_author
= got_gotconfig_get_author(repo_conf
);
602 if (got_author
== NULL
) {
603 name
= got_repo_get_gitconfig_author_name(repo
);
604 email
= got_repo_get_gitconfig_author_email(repo
);
606 if (asprintf(author
, "%s <%s>", name
, email
) == -1)
607 return got_error_from_errno("asprintf");
611 got_author
= getenv("GOT_AUTHOR");
612 if (got_author
== NULL
) {
613 name
= got_repo_get_global_gitconfig_author_name(repo
);
614 email
= got_repo_get_global_gitconfig_author_email(
617 if (asprintf(author
, "%s <%s>", name
, email
)
619 return got_error_from_errno("asprintf");
622 /* TODO: Look up user in password database? */
623 return got_error(GOT_ERR_COMMIT_NO_AUTHOR
);
627 *author
= strdup(got_author
);
629 return got_error_from_errno("strdup");
631 err
= valid_author(*author
);
639 static const struct got_error
*
640 get_allowed_signers(char **allowed_signers
, struct got_repository
*repo
,
641 struct got_worktree
*worktree
)
643 const char *got_allowed_signers
= NULL
;
644 const struct got_gotconfig
*worktree_conf
= NULL
, *repo_conf
= NULL
;
646 *allowed_signers
= NULL
;
649 worktree_conf
= got_worktree_get_gotconfig(worktree
);
650 repo_conf
= got_repo_get_gotconfig(repo
);
653 * Priority of potential author information sources, from most
654 * significant to least significant:
655 * 1) work tree's .got/got.conf file
656 * 2) repository's got.conf file
660 got_allowed_signers
= got_gotconfig_get_allowed_signers_file(
662 if (got_allowed_signers
== NULL
)
663 got_allowed_signers
= got_gotconfig_get_allowed_signers_file(
666 if (got_allowed_signers
) {
667 *allowed_signers
= strdup(got_allowed_signers
);
668 if (*allowed_signers
== NULL
)
669 return got_error_from_errno("strdup");
674 static const struct got_error
*
675 get_revoked_signers(char **revoked_signers
, struct got_repository
*repo
,
676 struct got_worktree
*worktree
)
678 const char *got_revoked_signers
= NULL
;
679 const struct got_gotconfig
*worktree_conf
= NULL
, *repo_conf
= NULL
;
681 *revoked_signers
= NULL
;
684 worktree_conf
= got_worktree_get_gotconfig(worktree
);
685 repo_conf
= got_repo_get_gotconfig(repo
);
688 * Priority of potential author information sources, from most
689 * significant to least significant:
690 * 1) work tree's .got/got.conf file
691 * 2) repository's got.conf file
695 got_revoked_signers
= got_gotconfig_get_revoked_signers_file(
697 if (got_revoked_signers
== NULL
)
698 got_revoked_signers
= got_gotconfig_get_revoked_signers_file(
701 if (got_revoked_signers
) {
702 *revoked_signers
= strdup(got_revoked_signers
);
703 if (*revoked_signers
== NULL
)
704 return got_error_from_errno("strdup");
710 get_signer_id(struct got_repository
*repo
, struct got_worktree
*worktree
)
712 const char *got_signer_id
= NULL
;
713 const struct got_gotconfig
*worktree_conf
= NULL
, *repo_conf
= NULL
;
716 worktree_conf
= got_worktree_get_gotconfig(worktree
);
717 repo_conf
= got_repo_get_gotconfig(repo
);
720 * Priority of potential author information sources, from most
721 * significant to least significant:
722 * 1) work tree's .got/got.conf file
723 * 2) repository's got.conf file
727 got_signer_id
= got_gotconfig_get_signer_id(worktree_conf
);
728 if (got_signer_id
== NULL
)
729 got_signer_id
= got_gotconfig_get_signer_id(repo_conf
);
731 return got_signer_id
;
734 static const struct got_error
*
735 get_gitconfig_path(char **gitconfig_path
)
737 const char *homedir
= getenv("HOME");
739 *gitconfig_path
= NULL
;
741 if (asprintf(gitconfig_path
, "%s/.gitconfig", homedir
) == -1)
742 return got_error_from_errno("asprintf");
748 static const struct got_error
*
749 cmd_import(int argc
, char *argv
[])
751 const struct got_error
*error
= NULL
;
752 char *path_dir
= NULL
, *repo_path
= NULL
, *logmsg
= NULL
;
753 char *gitconfig_path
= NULL
, *editor
= NULL
, *author
= NULL
;
754 const char *branch_name
= NULL
;
755 char *id_str
= NULL
, *logmsg_path
= NULL
;
756 char refname
[PATH_MAX
] = "refs/heads/";
757 struct got_repository
*repo
= NULL
;
758 struct got_reference
*branch_ref
= NULL
, *head_ref
= NULL
;
759 struct got_object_id
*new_commit_id
= NULL
;
761 struct got_pathlist_head ignores
;
762 struct got_pathlist_entry
*pe
;
763 int preserve_logmsg
= 0;
764 int *pack_fds
= NULL
;
766 TAILQ_INIT(&ignores
);
769 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
775 while ((ch
= getopt(argc
, argv
, "b:I:m:r:")) != -1) {
778 branch_name
= optarg
;
781 if (optarg
[0] == '\0')
783 error
= got_pathlist_insert(&pe
, &ignores
, optarg
,
789 logmsg
= strdup(optarg
);
790 if (logmsg
== NULL
) {
791 error
= got_error_from_errno("strdup");
796 repo_path
= realpath(optarg
, NULL
);
797 if (repo_path
== NULL
) {
798 error
= got_error_from_errno2("realpath",
815 if (repo_path
== NULL
) {
816 repo_path
= getcwd(NULL
, 0);
817 if (repo_path
== NULL
)
818 return got_error_from_errno("getcwd");
820 got_path_strip_trailing_slashes(repo_path
);
821 error
= get_gitconfig_path(&gitconfig_path
);
824 error
= got_repo_pack_fds_open(&pack_fds
);
827 error
= got_repo_open(&repo
, repo_path
, gitconfig_path
, pack_fds
);
831 error
= get_author(&author
, repo
, NULL
);
836 * Don't let the user create a branch name with a leading '-'.
837 * While technically a valid reference name, this case is usually
838 * an unintended typo.
840 if (branch_name
&& branch_name
[0] == '-')
841 return got_error_path(branch_name
, GOT_ERR_REF_NAME_MINUS
);
843 error
= got_ref_open(&head_ref
, repo
, GOT_REF_HEAD
, 0);
844 if (error
&& error
->code
!= GOT_ERR_NOT_REF
)
848 n
= strlcat(refname
, branch_name
, sizeof(refname
));
849 else if (head_ref
&& got_ref_is_symbolic(head_ref
))
850 n
= strlcpy(refname
, got_ref_get_symref_target(head_ref
),
853 n
= strlcat(refname
, "main", sizeof(refname
));
854 if (n
>= sizeof(refname
)) {
855 error
= got_error(GOT_ERR_NO_SPACE
);
859 error
= got_ref_open(&branch_ref
, repo
, refname
, 0);
861 if (error
->code
!= GOT_ERR_NOT_REF
)
864 error
= got_error_msg(GOT_ERR_BRANCH_EXISTS
,
865 "import target branch already exists");
869 path_dir
= realpath(argv
[0], NULL
);
870 if (path_dir
== NULL
) {
871 error
= got_error_from_errno2("realpath", argv
[0]);
874 got_path_strip_trailing_slashes(path_dir
);
877 * unveil(2) traverses exec(2); if an editor is used we have
878 * to apply unveil after the log message has been written.
880 if (logmsg
== NULL
|| strlen(logmsg
) == 0) {
881 error
= get_editor(&editor
);
885 error
= collect_import_msg(&logmsg
, &logmsg_path
, editor
,
888 if (error
->code
!= GOT_ERR_COMMIT_MSG_EMPTY
&&
895 if (unveil(path_dir
, "r") != 0) {
896 error
= got_error_from_errno2("unveil", path_dir
);
902 error
= apply_unveil(got_repo_get_path(repo
), 0, NULL
);
909 error
= got_repo_import(&new_commit_id
, path_dir
, logmsg
,
910 author
, &ignores
, repo
, import_progress
, NULL
);
917 error
= got_ref_alloc(&branch_ref
, refname
, new_commit_id
);
924 error
= got_ref_write(branch_ref
, repo
);
931 error
= got_object_id_str(&id_str
, new_commit_id
);
938 error
= got_ref_open(&head_ref
, repo
, GOT_REF_HEAD
, 0);
940 if (error
->code
!= GOT_ERR_NOT_REF
) {
946 error
= got_ref_alloc_symref(&head_ref
, GOT_REF_HEAD
,
954 error
= got_ref_write(head_ref
, repo
);
962 printf("Created branch %s with commit %s\n",
963 got_ref_get_name(branch_ref
), id_str
);
966 const struct got_error
*pack_err
=
967 got_repo_pack_fds_close(pack_fds
);
972 const struct got_error
*close_err
= got_repo_close(repo
);
976 if (preserve_logmsg
) {
977 fprintf(stderr
, "%s: log message preserved in %s\n",
978 getprogname(), logmsg_path
);
979 } else if (logmsg_path
&& unlink(logmsg_path
) == -1 && error
== NULL
)
980 error
= got_error_from_errno2("unlink", logmsg_path
);
988 free(gitconfig_path
);
990 got_ref_close(branch_ref
);
992 got_ref_close(head_ref
);
999 fprintf(stderr
, "usage: %s clone [-almqv] [-b branch] [-R reference] "
1000 "repository-URL [directory]\n", getprogname());
1004 struct got_fetch_progress_arg
{
1005 char last_scaled_size
[FMT_SCALED_STRSIZE
];
1007 int last_p_resolved
;
1010 struct got_repository
*repo
;
1013 int configs_created
;
1015 struct got_pathlist_head
*symrefs
;
1016 struct got_pathlist_head
*wanted_branches
;
1017 struct got_pathlist_head
*wanted_refs
;
1021 const char *remote_repo_path
;
1022 const char *git_url
;
1023 int fetch_all_branches
;
1024 int mirror_references
;
1028 /* XXX forward declaration */
1029 static const struct got_error
*
1030 create_config_files(const char *proto
, const char *host
, const char *port
,
1031 const char *remote_repo_path
, const char *git_url
, int fetch_all_branches
,
1032 int mirror_references
, struct got_pathlist_head
*symrefs
,
1033 struct got_pathlist_head
*wanted_branches
,
1034 struct got_pathlist_head
*wanted_refs
, struct got_repository
*repo
);
1036 static const struct got_error
*
1037 fetch_progress(void *arg
, const char *message
, off_t packfile_size
,
1038 int nobj_total
, int nobj_indexed
, int nobj_loose
, int nobj_resolved
)
1040 const struct got_error
*err
= NULL
;
1041 struct got_fetch_progress_arg
*a
= arg
;
1042 char scaled_size
[FMT_SCALED_STRSIZE
];
1043 int p_indexed
, p_resolved
;
1044 int print_size
= 0, print_indexed
= 0, print_resolved
= 0;
1047 * In order to allow a failed clone to be resumed with 'got fetch'
1048 * we try to create configuration files as soon as possible.
1049 * Once the server has sent information about its default branch
1050 * we have all required information.
1052 if (a
->create_configs
&& !a
->configs_created
&&
1053 !TAILQ_EMPTY(a
->config_info
.symrefs
)) {
1054 err
= create_config_files(a
->config_info
.proto
,
1055 a
->config_info
.host
, a
->config_info
.port
,
1056 a
->config_info
.remote_repo_path
,
1057 a
->config_info
.git_url
,
1058 a
->config_info
.fetch_all_branches
,
1059 a
->config_info
.mirror_references
,
1060 a
->config_info
.symrefs
,
1061 a
->config_info
.wanted_branches
,
1062 a
->config_info
.wanted_refs
, a
->repo
);
1065 a
->configs_created
= 1;
1068 if (a
->verbosity
< 0)
1071 if (message
&& message
[0] != '\0') {
1072 printf("\rserver: %s", message
);
1077 if (packfile_size
> 0 || nobj_indexed
> 0) {
1078 if (fmt_scaled(packfile_size
, scaled_size
) == 0 &&
1079 (a
->last_scaled_size
[0] == '\0' ||
1080 strcmp(scaled_size
, a
->last_scaled_size
)) != 0) {
1082 if (strlcpy(a
->last_scaled_size
, scaled_size
,
1083 FMT_SCALED_STRSIZE
) >= FMT_SCALED_STRSIZE
)
1084 return got_error(GOT_ERR_NO_SPACE
);
1086 if (nobj_indexed
> 0) {
1087 p_indexed
= (nobj_indexed
* 100) / nobj_total
;
1088 if (p_indexed
!= a
->last_p_indexed
) {
1089 a
->last_p_indexed
= p_indexed
;
1094 if (nobj_resolved
> 0) {
1095 p_resolved
= (nobj_resolved
* 100) /
1096 (nobj_total
- nobj_loose
);
1097 if (p_resolved
!= a
->last_p_resolved
) {
1098 a
->last_p_resolved
= p_resolved
;
1106 if (print_size
|| print_indexed
|| print_resolved
)
1109 printf("%*s fetched", FMT_SCALED_STRSIZE
- 2, scaled_size
);
1111 printf("; indexing %d%%", p_indexed
);
1113 printf("; resolving deltas %d%%", p_resolved
);
1114 if (print_size
|| print_indexed
|| print_resolved
)
1120 static const struct got_error
*
1121 create_symref(const char *refname
, struct got_reference
*target_ref
,
1122 int verbosity
, struct got_repository
*repo
)
1124 const struct got_error
*err
;
1125 struct got_reference
*head_symref
;
1127 err
= got_ref_alloc_symref(&head_symref
, refname
, target_ref
);
1131 err
= got_ref_write(head_symref
, repo
);
1132 if (err
== NULL
&& verbosity
> 0) {
1133 printf("Created reference %s: %s\n", GOT_REF_HEAD
,
1134 got_ref_get_name(target_ref
));
1136 got_ref_close(head_symref
);
1140 static const struct got_error
*
1141 list_remote_refs(struct got_pathlist_head
*symrefs
,
1142 struct got_pathlist_head
*refs
)
1144 const struct got_error
*err
;
1145 struct got_pathlist_entry
*pe
;
1147 TAILQ_FOREACH(pe
, symrefs
, entry
) {
1148 const char *refname
= pe
->path
;
1149 const char *targetref
= pe
->data
;
1151 printf("%s: %s\n", refname
, targetref
);
1154 TAILQ_FOREACH(pe
, refs
, entry
) {
1155 const char *refname
= pe
->path
;
1156 struct got_object_id
*id
= pe
->data
;
1159 err
= got_object_id_str(&id_str
, id
);
1162 printf("%s: %s\n", refname
, id_str
);
1169 static const struct got_error
*
1170 create_ref(const char *refname
, struct got_object_id
*id
,
1171 int verbosity
, struct got_repository
*repo
)
1173 const struct got_error
*err
= NULL
;
1174 struct got_reference
*ref
;
1177 err
= got_object_id_str(&id_str
, id
);
1181 err
= got_ref_alloc(&ref
, refname
, id
);
1185 err
= got_ref_write(ref
, repo
);
1188 if (err
== NULL
&& verbosity
>= 0)
1189 printf("Created reference %s: %s\n", refname
, id_str
);
1196 match_wanted_ref(const char *refname
, const char *wanted_ref
)
1198 if (strncmp(refname
, "refs/", 5) != 0)
1203 * Prevent fetching of references that won't make any
1204 * sense outside of the remote repository's context.
1206 if (strncmp(refname
, "got/", 4) == 0)
1208 if (strncmp(refname
, "remotes/", 8) == 0)
1211 if (strncmp(wanted_ref
, "refs/", 5) == 0)
1214 /* Allow prefix match. */
1215 if (got_path_is_child(refname
, wanted_ref
, strlen(wanted_ref
)))
1218 /* Allow exact match. */
1219 return (strcmp(refname
, wanted_ref
) == 0);
1223 is_wanted_ref(struct got_pathlist_head
*wanted_refs
, const char *refname
)
1225 struct got_pathlist_entry
*pe
;
1227 TAILQ_FOREACH(pe
, wanted_refs
, entry
) {
1228 if (match_wanted_ref(refname
, pe
->path
))
1235 static const struct got_error
*
1236 create_wanted_ref(const char *refname
, struct got_object_id
*id
,
1237 const char *remote_repo_name
, int verbosity
, struct got_repository
*repo
)
1239 const struct got_error
*err
;
1240 char *remote_refname
;
1242 if (strncmp("refs/", refname
, 5) == 0)
1245 if (asprintf(&remote_refname
, "refs/remotes/%s/%s",
1246 remote_repo_name
, refname
) == -1)
1247 return got_error_from_errno("asprintf");
1249 err
= create_ref(remote_refname
, id
, verbosity
, repo
);
1250 free(remote_refname
);
1254 static const struct got_error
*
1255 create_gotconfig(const char *proto
, const char *host
, const char *port
,
1256 const char *remote_repo_path
, const char *default_branch
,
1257 int fetch_all_branches
, struct got_pathlist_head
*wanted_branches
,
1258 struct got_pathlist_head
*wanted_refs
, int mirror_references
,
1259 struct got_repository
*repo
)
1261 const struct got_error
*err
= NULL
;
1262 char *gotconfig_path
= NULL
;
1263 char *gotconfig
= NULL
;
1264 FILE *gotconfig_file
= NULL
;
1265 const char *branchname
= NULL
;
1266 char *branches
= NULL
, *refs
= NULL
;
1269 if (!fetch_all_branches
&& !TAILQ_EMPTY(wanted_branches
)) {
1270 struct got_pathlist_entry
*pe
;
1271 TAILQ_FOREACH(pe
, wanted_branches
, entry
) {
1273 branchname
= pe
->path
;
1274 if (strncmp(branchname
, "refs/heads/", 11) == 0)
1276 if (asprintf(&s
, "%s\"%s\" ",
1277 branches
? branches
: "", branchname
) == -1) {
1278 err
= got_error_from_errno("asprintf");
1284 } else if (!fetch_all_branches
&& default_branch
) {
1285 branchname
= default_branch
;
1286 if (strncmp(branchname
, "refs/heads/", 11) == 0)
1288 if (asprintf(&branches
, "\"%s\" ", branchname
) == -1) {
1289 err
= got_error_from_errno("asprintf");
1293 if (!TAILQ_EMPTY(wanted_refs
)) {
1294 struct got_pathlist_entry
*pe
;
1295 TAILQ_FOREACH(pe
, wanted_refs
, entry
) {
1297 const char *refname
= pe
->path
;
1298 if (strncmp(refname
, "refs/", 5) == 0)
1300 if (asprintf(&s
, "%s\"%s\" ",
1301 refs
? refs
: "", refname
) == -1) {
1302 err
= got_error_from_errno("asprintf");
1310 /* Create got.conf(5). */
1311 gotconfig_path
= got_repo_get_path_gotconfig(repo
);
1312 if (gotconfig_path
== NULL
) {
1313 err
= got_error_from_errno("got_repo_get_path_gotconfig");
1316 gotconfig_file
= fopen(gotconfig_path
, "ae");
1317 if (gotconfig_file
== NULL
) {
1318 err
= got_error_from_errno2("fopen", gotconfig_path
);
1321 if (asprintf(&gotconfig
,
1326 "\trepository \"%s\"\n"
1332 GOT_FETCH_DEFAULT_REMOTE_NAME
, host
, proto
,
1333 port
? "\tport " : "", port
? port
: "", port
? "\n" : "",
1334 remote_repo_path
, branches
? "\tbranch { " : "",
1335 branches
? branches
: "", branches
? "}\n" : "",
1336 refs
? "\treference { " : "", refs
? refs
: "", refs
? "}\n" : "",
1337 mirror_references
? "\tmirror_references yes\n" : "",
1338 fetch_all_branches
? "\tfetch_all_branches yes\n" : "") == -1) {
1339 err
= got_error_from_errno("asprintf");
1342 n
= fwrite(gotconfig
, 1, strlen(gotconfig
), gotconfig_file
);
1343 if (n
!= strlen(gotconfig
)) {
1344 err
= got_ferror(gotconfig_file
, GOT_ERR_IO
);
1349 if (gotconfig_file
&& fclose(gotconfig_file
) == EOF
&& err
== NULL
)
1350 err
= got_error_from_errno2("fclose", gotconfig_path
);
1351 free(gotconfig_path
);
1356 static const struct got_error
*
1357 create_gitconfig(const char *git_url
, const char *default_branch
,
1358 int fetch_all_branches
, struct got_pathlist_head
*wanted_branches
,
1359 struct got_pathlist_head
*wanted_refs
, int mirror_references
,
1360 struct got_repository
*repo
)
1362 const struct got_error
*err
= NULL
;
1363 char *gitconfig_path
= NULL
;
1364 char *gitconfig
= NULL
;
1365 FILE *gitconfig_file
= NULL
;
1366 char *branches
= NULL
, *refs
= NULL
;
1367 const char *branchname
;
1370 /* Create a config file Git can understand. */
1371 gitconfig_path
= got_repo_get_path_gitconfig(repo
);
1372 if (gitconfig_path
== NULL
) {
1373 err
= got_error_from_errno("got_repo_get_path_gitconfig");
1376 gitconfig_file
= fopen(gitconfig_path
, "ae");
1377 if (gitconfig_file
== NULL
) {
1378 err
= got_error_from_errno2("fopen", gitconfig_path
);
1381 if (fetch_all_branches
) {
1382 if (mirror_references
) {
1383 if (asprintf(&branches
,
1384 "\tfetch = refs/heads/*:refs/heads/*\n") == -1) {
1385 err
= got_error_from_errno("asprintf");
1388 } else if (asprintf(&branches
,
1389 "\tfetch = refs/heads/*:refs/remotes/%s/*\n",
1390 GOT_FETCH_DEFAULT_REMOTE_NAME
) == -1) {
1391 err
= got_error_from_errno("asprintf");
1394 } else if (!TAILQ_EMPTY(wanted_branches
)) {
1395 struct got_pathlist_entry
*pe
;
1396 TAILQ_FOREACH(pe
, wanted_branches
, entry
) {
1398 branchname
= pe
->path
;
1399 if (strncmp(branchname
, "refs/heads/", 11) == 0)
1401 if (mirror_references
) {
1403 "%s\tfetch = refs/heads/%s:refs/heads/%s\n",
1404 branches
? branches
: "",
1405 branchname
, branchname
) == -1) {
1406 err
= got_error_from_errno("asprintf");
1409 } else if (asprintf(&s
,
1410 "%s\tfetch = refs/heads/%s:refs/remotes/%s/%s\n",
1411 branches
? branches
: "",
1412 branchname
, GOT_FETCH_DEFAULT_REMOTE_NAME
,
1413 branchname
) == -1) {
1414 err
= got_error_from_errno("asprintf");
1422 * If the server specified a default branch, use just that one.
1423 * Otherwise fall back to fetching all branches on next fetch.
1425 if (default_branch
) {
1426 branchname
= default_branch
;
1427 if (strncmp(branchname
, "refs/heads/", 11) == 0)
1430 branchname
= "*"; /* fall back to all branches */
1431 if (mirror_references
) {
1432 if (asprintf(&branches
,
1433 "\tfetch = refs/heads/%s:refs/heads/%s\n",
1434 branchname
, branchname
) == -1) {
1435 err
= got_error_from_errno("asprintf");
1438 } else if (asprintf(&branches
,
1439 "\tfetch = refs/heads/%s:refs/remotes/%s/%s\n",
1440 branchname
, GOT_FETCH_DEFAULT_REMOTE_NAME
,
1441 branchname
) == -1) {
1442 err
= got_error_from_errno("asprintf");
1446 if (!TAILQ_EMPTY(wanted_refs
)) {
1447 struct got_pathlist_entry
*pe
;
1448 TAILQ_FOREACH(pe
, wanted_refs
, entry
) {
1450 const char *refname
= pe
->path
;
1451 if (strncmp(refname
, "refs/", 5) == 0)
1453 if (mirror_references
) {
1455 "%s\tfetch = refs/%s:refs/%s\n",
1456 refs
? refs
: "", refname
, refname
) == -1) {
1457 err
= got_error_from_errno("asprintf");
1460 } else if (asprintf(&s
,
1461 "%s\tfetch = refs/%s:refs/remotes/%s/%s\n",
1463 refname
, GOT_FETCH_DEFAULT_REMOTE_NAME
,
1465 err
= got_error_from_errno("asprintf");
1473 if (asprintf(&gitconfig
,
1478 "\tfetch = refs/tags/*:refs/tags/*\n",
1479 GOT_FETCH_DEFAULT_REMOTE_NAME
, git_url
, branches
? branches
: "",
1480 refs
? refs
: "") == -1) {
1481 err
= got_error_from_errno("asprintf");
1484 n
= fwrite(gitconfig
, 1, strlen(gitconfig
), gitconfig_file
);
1485 if (n
!= strlen(gitconfig
)) {
1486 err
= got_ferror(gitconfig_file
, GOT_ERR_IO
);
1490 if (gitconfig_file
&& fclose(gitconfig_file
) == EOF
&& err
== NULL
)
1491 err
= got_error_from_errno2("fclose", gitconfig_path
);
1492 free(gitconfig_path
);
1497 static const struct got_error
*
1498 create_config_files(const char *proto
, const char *host
, const char *port
,
1499 const char *remote_repo_path
, const char *git_url
, int fetch_all_branches
,
1500 int mirror_references
, struct got_pathlist_head
*symrefs
,
1501 struct got_pathlist_head
*wanted_branches
,
1502 struct got_pathlist_head
*wanted_refs
, struct got_repository
*repo
)
1504 const struct got_error
*err
= NULL
;
1505 const char *default_branch
= NULL
;
1506 struct got_pathlist_entry
*pe
;
1509 * If we asked for a set of wanted branches then use the first
1512 if (!TAILQ_EMPTY(wanted_branches
)) {
1513 pe
= TAILQ_FIRST(wanted_branches
);
1514 default_branch
= pe
->path
;
1516 /* First HEAD ref listed by server is the default branch. */
1517 TAILQ_FOREACH(pe
, symrefs
, entry
) {
1518 const char *refname
= pe
->path
;
1519 const char *target
= pe
->data
;
1521 if (strcmp(refname
, GOT_REF_HEAD
) != 0)
1524 default_branch
= target
;
1529 /* Create got.conf(5). */
1530 err
= create_gotconfig(proto
, host
, port
, remote_repo_path
,
1531 default_branch
, fetch_all_branches
, wanted_branches
,
1532 wanted_refs
, mirror_references
, repo
);
1536 /* Create a config file Git can understand. */
1537 return create_gitconfig(git_url
, default_branch
, fetch_all_branches
,
1538 wanted_branches
, wanted_refs
, mirror_references
, repo
);
1541 static const struct got_error
*
1542 cmd_clone(int argc
, char *argv
[])
1544 const struct got_error
*error
= NULL
;
1545 const char *uri
, *dirname
;
1546 char *proto
, *host
, *port
, *repo_name
, *server_path
;
1547 char *default_destdir
= NULL
, *id_str
= NULL
;
1548 const char *repo_path
;
1549 struct got_repository
*repo
= NULL
;
1550 struct got_pathlist_head refs
, symrefs
, wanted_branches
, wanted_refs
;
1551 struct got_pathlist_entry
*pe
;
1552 struct got_object_id
*pack_hash
= NULL
;
1553 int ch
, fetchfd
= -1, fetchstatus
;
1554 pid_t fetchpid
= -1;
1555 struct got_fetch_progress_arg fpa
;
1556 char *git_url
= NULL
;
1557 int verbosity
= 0, fetch_all_branches
= 0, mirror_references
= 0;
1558 int bflag
= 0, list_refs_only
= 0;
1559 int *pack_fds
= NULL
;
1562 TAILQ_INIT(&symrefs
);
1563 TAILQ_INIT(&wanted_branches
);
1564 TAILQ_INIT(&wanted_refs
);
1566 while ((ch
= getopt(argc
, argv
, "ab:lmqR:v")) != -1) {
1569 fetch_all_branches
= 1;
1572 error
= got_pathlist_append(&wanted_branches
,
1582 mirror_references
= 1;
1588 error
= got_pathlist_append(&wanted_refs
,
1596 else if (verbosity
< 3)
1607 if (fetch_all_branches
&& !TAILQ_EMPTY(&wanted_branches
))
1608 option_conflict('a', 'b');
1609 if (list_refs_only
) {
1610 if (!TAILQ_EMPTY(&wanted_branches
))
1611 option_conflict('l', 'b');
1612 if (fetch_all_branches
)
1613 option_conflict('l', 'a');
1614 if (mirror_references
)
1615 option_conflict('l', 'm');
1616 if (!TAILQ_EMPTY(&wanted_refs
))
1617 option_conflict('l', 'R');
1629 error
= got_dial_parse_uri(&proto
, &host
, &port
, &server_path
,
1634 if (asprintf(&git_url
, "%s://%s%s%s%s%s", proto
,
1635 host
, port
? ":" : "", port
? port
: "",
1636 server_path
[0] != '/' ? "/" : "", server_path
) == -1) {
1637 error
= got_error_from_errno("asprintf");
1641 if (strcmp(proto
, "git") == 0) {
1643 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1644 "sendfd dns inet unveil", NULL
) == -1)
1647 } else if (strcmp(proto
, "git+ssh") == 0 ||
1648 strcmp(proto
, "ssh") == 0) {
1650 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1651 "sendfd unveil", NULL
) == -1)
1654 } else if (strcmp(proto
, "http") == 0 ||
1655 strcmp(proto
, "git+http") == 0) {
1656 error
= got_error_path(proto
, GOT_ERR_NOT_IMPL
);
1659 error
= got_error_path(proto
, GOT_ERR_BAD_PROTO
);
1662 if (dirname
== NULL
) {
1663 if (asprintf(&default_destdir
, "%s.git", repo_name
) == -1) {
1664 error
= got_error_from_errno("asprintf");
1667 repo_path
= default_destdir
;
1669 repo_path
= dirname
;
1671 if (!list_refs_only
) {
1672 error
= got_path_mkdir(repo_path
);
1674 (!(error
->code
== GOT_ERR_ERRNO
&& errno
== EISDIR
) &&
1675 !(error
->code
== GOT_ERR_ERRNO
&& errno
== EEXIST
)))
1677 if (!got_path_dir_is_empty(repo_path
)) {
1678 error
= got_error_path(repo_path
,
1679 GOT_ERR_DIR_NOT_EMPTY
);
1684 error
= got_dial_apply_unveil(proto
);
1688 error
= apply_unveil(repo_path
, 0, NULL
);
1693 printf("Connecting to %s\n", git_url
);
1695 error
= got_fetch_connect(&fetchpid
, &fetchfd
, proto
, host
, port
,
1696 server_path
, verbosity
);
1700 if (!list_refs_only
) {
1701 error
= got_repo_init(repo_path
, NULL
);
1704 error
= got_repo_pack_fds_open(&pack_fds
);
1707 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
1712 fpa
.last_scaled_size
[0] = '\0';
1713 fpa
.last_p_indexed
= -1;
1714 fpa
.last_p_resolved
= -1;
1715 fpa
.verbosity
= verbosity
;
1716 fpa
.create_configs
= 1;
1717 fpa
.configs_created
= 0;
1719 fpa
.config_info
.symrefs
= &symrefs
;
1720 fpa
.config_info
.wanted_branches
= &wanted_branches
;
1721 fpa
.config_info
.wanted_refs
= &wanted_refs
;
1722 fpa
.config_info
.proto
= proto
;
1723 fpa
.config_info
.host
= host
;
1724 fpa
.config_info
.port
= port
;
1725 fpa
.config_info
.remote_repo_path
= server_path
;
1726 fpa
.config_info
.git_url
= git_url
;
1727 fpa
.config_info
.fetch_all_branches
= fetch_all_branches
;
1728 fpa
.config_info
.mirror_references
= mirror_references
;
1729 error
= got_fetch_pack(&pack_hash
, &refs
, &symrefs
,
1730 GOT_FETCH_DEFAULT_REMOTE_NAME
, mirror_references
,
1731 fetch_all_branches
, &wanted_branches
, &wanted_refs
,
1732 list_refs_only
, verbosity
, fetchfd
, repo
, NULL
, NULL
, bflag
,
1733 fetch_progress
, &fpa
);
1737 if (list_refs_only
) {
1738 error
= list_remote_refs(&symrefs
, &refs
);
1742 if (pack_hash
== NULL
) {
1743 error
= got_error_fmt(GOT_ERR_FETCH_FAILED
, "%s",
1744 "server sent an empty pack file");
1747 error
= got_object_id_str(&id_str
, pack_hash
);
1751 printf("\nFetched %s.pack\n", id_str
);
1754 /* Set up references provided with the pack file. */
1755 TAILQ_FOREACH(pe
, &refs
, entry
) {
1756 const char *refname
= pe
->path
;
1757 struct got_object_id
*id
= pe
->data
;
1758 char *remote_refname
;
1760 if (is_wanted_ref(&wanted_refs
, refname
) &&
1761 !mirror_references
) {
1762 error
= create_wanted_ref(refname
, id
,
1763 GOT_FETCH_DEFAULT_REMOTE_NAME
,
1764 verbosity
- 1, repo
);
1770 error
= create_ref(refname
, id
, verbosity
- 1, repo
);
1774 if (mirror_references
)
1777 if (strncmp("refs/heads/", refname
, 11) != 0)
1780 if (asprintf(&remote_refname
,
1781 "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME
,
1782 refname
+ 11) == -1) {
1783 error
= got_error_from_errno("asprintf");
1786 error
= create_ref(remote_refname
, id
, verbosity
- 1, repo
);
1787 free(remote_refname
);
1792 /* Set the HEAD reference if the server provided one. */
1793 TAILQ_FOREACH(pe
, &symrefs
, entry
) {
1794 struct got_reference
*target_ref
;
1795 const char *refname
= pe
->path
;
1796 const char *target
= pe
->data
;
1797 char *remote_refname
= NULL
, *remote_target
= NULL
;
1799 if (strcmp(refname
, GOT_REF_HEAD
) != 0)
1802 error
= got_ref_open(&target_ref
, repo
, target
, 0);
1804 if (error
->code
== GOT_ERR_NOT_REF
) {
1811 error
= create_symref(refname
, target_ref
, verbosity
, repo
);
1812 got_ref_close(target_ref
);
1816 if (mirror_references
)
1819 if (strncmp("refs/heads/", target
, 11) != 0)
1822 if (asprintf(&remote_refname
,
1823 "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME
,
1825 error
= got_error_from_errno("asprintf");
1828 if (asprintf(&remote_target
,
1829 "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME
,
1830 target
+ 11) == -1) {
1831 error
= got_error_from_errno("asprintf");
1832 free(remote_refname
);
1835 error
= got_ref_open(&target_ref
, repo
, remote_target
, 0);
1837 free(remote_refname
);
1838 free(remote_target
);
1839 if (error
->code
== GOT_ERR_NOT_REF
) {
1845 error
= create_symref(remote_refname
, target_ref
,
1846 verbosity
- 1, repo
);
1847 free(remote_refname
);
1848 free(remote_target
);
1849 got_ref_close(target_ref
);
1855 * We failed to set the HEAD reference. If we asked for
1856 * a set of wanted branches use the first of one of those
1857 * which could be fetched instead.
1859 TAILQ_FOREACH(pe
, &wanted_branches
, entry
) {
1860 const char *target
= pe
->path
;
1861 struct got_reference
*target_ref
;
1863 error
= got_ref_open(&target_ref
, repo
, target
, 0);
1865 if (error
->code
== GOT_ERR_NOT_REF
) {
1872 error
= create_symref(GOT_REF_HEAD
, target_ref
,
1874 got_ref_close(target_ref
);
1880 if (!fpa
.configs_created
&& pe
!= NULL
) {
1881 error
= create_config_files(fpa
.config_info
.proto
,
1882 fpa
.config_info
.host
, fpa
.config_info
.port
,
1883 fpa
.config_info
.remote_repo_path
,
1884 fpa
.config_info
.git_url
,
1885 fpa
.config_info
.fetch_all_branches
,
1886 fpa
.config_info
.mirror_references
,
1887 fpa
.config_info
.symrefs
,
1888 fpa
.config_info
.wanted_branches
,
1889 fpa
.config_info
.wanted_refs
, fpa
.repo
);
1896 printf("Created %s repository '%s'\n",
1897 mirror_references
? "mirrored" : "cloned", repo_path
);
1900 const struct got_error
*pack_err
=
1901 got_repo_pack_fds_close(pack_fds
);
1906 if (kill(fetchpid
, SIGTERM
) == -1)
1907 error
= got_error_from_errno("kill");
1908 if (waitpid(fetchpid
, &fetchstatus
, 0) == -1 && error
== NULL
)
1909 error
= got_error_from_errno("waitpid");
1911 if (fetchfd
!= -1 && close(fetchfd
) == -1 && error
== NULL
)
1912 error
= got_error_from_errno("close");
1914 const struct got_error
*close_err
= got_repo_close(repo
);
1918 got_pathlist_free(&refs
, GOT_PATHLIST_FREE_ALL
);
1919 got_pathlist_free(&symrefs
, GOT_PATHLIST_FREE_ALL
);
1920 got_pathlist_free(&wanted_branches
, GOT_PATHLIST_FREE_NONE
);
1921 got_pathlist_free(&wanted_refs
, GOT_PATHLIST_FREE_NONE
);
1928 free(default_destdir
);
1933 static const struct got_error
*
1934 update_ref(struct got_reference
*ref
, struct got_object_id
*new_id
,
1935 int replace_tags
, int verbosity
, struct got_repository
*repo
)
1937 const struct got_error
*err
= NULL
;
1938 char *new_id_str
= NULL
;
1939 struct got_object_id
*old_id
= NULL
;
1941 err
= got_object_id_str(&new_id_str
, new_id
);
1945 if (!replace_tags
&&
1946 strncmp(got_ref_get_name(ref
), "refs/tags/", 10) == 0) {
1947 err
= got_ref_resolve(&old_id
, repo
, ref
);
1950 if (got_object_id_cmp(old_id
, new_id
) == 0)
1952 if (verbosity
>= 0) {
1953 printf("Rejecting update of existing tag %s: %s\n",
1954 got_ref_get_name(ref
), new_id_str
);
1959 if (got_ref_is_symbolic(ref
)) {
1960 if (verbosity
>= 0) {
1961 printf("Replacing reference %s: %s\n",
1962 got_ref_get_name(ref
),
1963 got_ref_get_symref_target(ref
));
1965 err
= got_ref_change_symref_to_ref(ref
, new_id
);
1968 err
= got_ref_write(ref
, repo
);
1972 err
= got_ref_resolve(&old_id
, repo
, ref
);
1975 if (got_object_id_cmp(old_id
, new_id
) == 0)
1978 err
= got_ref_change_ref(ref
, new_id
);
1981 err
= got_ref_write(ref
, repo
);
1987 printf("Updated %s: %s\n", got_ref_get_name(ref
),
1995 static const struct got_error
*
1996 update_symref(const char *refname
, struct got_reference
*target_ref
,
1997 int verbosity
, struct got_repository
*repo
)
1999 const struct got_error
*err
= NULL
, *unlock_err
;
2000 struct got_reference
*symref
;
2001 int symref_is_locked
= 0;
2003 err
= got_ref_open(&symref
, repo
, refname
, 1);
2005 if (err
->code
!= GOT_ERR_NOT_REF
)
2007 err
= got_ref_alloc_symref(&symref
, refname
, target_ref
);
2011 err
= got_ref_write(symref
, repo
);
2016 printf("Created reference %s: %s\n",
2017 got_ref_get_name(symref
),
2018 got_ref_get_symref_target(symref
));
2020 symref_is_locked
= 1;
2022 if (strcmp(got_ref_get_symref_target(symref
),
2023 got_ref_get_name(target_ref
)) == 0)
2026 err
= got_ref_change_symref(symref
,
2027 got_ref_get_name(target_ref
));
2031 err
= got_ref_write(symref
, repo
);
2036 printf("Updated %s: %s\n", got_ref_get_name(symref
),
2037 got_ref_get_symref_target(symref
));
2041 if (symref_is_locked
) {
2042 unlock_err
= got_ref_unlock(symref
);
2043 if (unlock_err
&& err
== NULL
)
2046 got_ref_close(symref
);
2053 fprintf(stderr
, "usage: %s fetch [-adlqtvX] [-b branch] "
2054 "[-R reference] [-r repository-path] [remote-repository]\n",
2059 static const struct got_error
*
2060 delete_missing_ref(struct got_reference
*ref
,
2061 int verbosity
, struct got_repository
*repo
)
2063 const struct got_error
*err
= NULL
;
2064 struct got_object_id
*id
= NULL
;
2065 char *id_str
= NULL
;
2067 if (got_ref_is_symbolic(ref
)) {
2068 err
= got_ref_delete(ref
, repo
);
2071 if (verbosity
>= 0) {
2072 printf("Deleted %s: %s\n",
2073 got_ref_get_name(ref
),
2074 got_ref_get_symref_target(ref
));
2077 err
= got_ref_resolve(&id
, repo
, ref
);
2080 err
= got_object_id_str(&id_str
, id
);
2084 err
= got_ref_delete(ref
, repo
);
2087 if (verbosity
>= 0) {
2088 printf("Deleted %s: %s\n",
2089 got_ref_get_name(ref
), id_str
);
2098 static const struct got_error
*
2099 delete_missing_refs(struct got_pathlist_head
*their_refs
,
2100 struct got_pathlist_head
*their_symrefs
,
2101 const struct got_remote_repo
*remote
,
2102 int verbosity
, struct got_repository
*repo
)
2104 const struct got_error
*err
= NULL
, *unlock_err
;
2105 struct got_reflist_head my_refs
;
2106 struct got_reflist_entry
*re
;
2107 struct got_pathlist_entry
*pe
;
2108 char *remote_namespace
= NULL
;
2109 char *local_refname
= NULL
;
2111 TAILQ_INIT(&my_refs
);
2113 if (asprintf(&remote_namespace
, "refs/remotes/%s/", remote
->name
)
2115 return got_error_from_errno("asprintf");
2117 err
= got_ref_list(&my_refs
, repo
, NULL
, got_ref_cmp_by_name
, NULL
);
2121 TAILQ_FOREACH(re
, &my_refs
, entry
) {
2122 const char *refname
= got_ref_get_name(re
->ref
);
2123 const char *their_refname
;
2125 if (remote
->mirror_references
) {
2126 their_refname
= refname
;
2128 if (strncmp(refname
, remote_namespace
,
2129 strlen(remote_namespace
)) == 0) {
2130 if (strcmp(refname
+ strlen(remote_namespace
),
2133 if (asprintf(&local_refname
, "refs/heads/%s",
2134 refname
+ strlen(remote_namespace
)) == -1) {
2135 err
= got_error_from_errno("asprintf");
2138 } else if (strncmp(refname
, "refs/tags/", 10) != 0)
2141 their_refname
= local_refname
;
2144 TAILQ_FOREACH(pe
, their_refs
, entry
) {
2145 if (strcmp(their_refname
, pe
->path
) == 0)
2151 TAILQ_FOREACH(pe
, their_symrefs
, entry
) {
2152 if (strcmp(their_refname
, pe
->path
) == 0)
2158 err
= delete_missing_ref(re
->ref
, verbosity
, repo
);
2162 if (local_refname
) {
2163 struct got_reference
*ref
;
2164 err
= got_ref_open(&ref
, repo
, local_refname
, 1);
2166 if (err
->code
!= GOT_ERR_NOT_REF
)
2168 free(local_refname
);
2169 local_refname
= NULL
;
2172 err
= delete_missing_ref(ref
, verbosity
, repo
);
2175 unlock_err
= got_ref_unlock(ref
);
2177 if (unlock_err
&& err
== NULL
) {
2182 free(local_refname
);
2183 local_refname
= NULL
;
2187 got_ref_list_free(&my_refs
);
2188 free(remote_namespace
);
2189 free(local_refname
);
2193 static const struct got_error
*
2194 update_wanted_ref(const char *refname
, struct got_object_id
*id
,
2195 const char *remote_repo_name
, int verbosity
, struct got_repository
*repo
)
2197 const struct got_error
*err
, *unlock_err
;
2198 char *remote_refname
;
2199 struct got_reference
*ref
;
2201 if (strncmp("refs/", refname
, 5) == 0)
2204 if (asprintf(&remote_refname
, "refs/remotes/%s/%s",
2205 remote_repo_name
, refname
) == -1)
2206 return got_error_from_errno("asprintf");
2208 err
= got_ref_open(&ref
, repo
, remote_refname
, 1);
2210 if (err
->code
!= GOT_ERR_NOT_REF
)
2212 err
= create_ref(remote_refname
, id
, verbosity
, repo
);
2214 err
= update_ref(ref
, id
, 0, verbosity
, repo
);
2215 unlock_err
= got_ref_unlock(ref
);
2216 if (unlock_err
&& err
== NULL
)
2221 free(remote_refname
);
2225 static const struct got_error
*
2226 delete_ref(struct got_repository
*repo
, struct got_reference
*ref
)
2228 const struct got_error
*err
= NULL
;
2229 struct got_object_id
*id
= NULL
;
2230 char *id_str
= NULL
;
2233 if (got_ref_is_symbolic(ref
)) {
2234 target
= got_ref_get_symref_target(ref
);
2236 err
= got_ref_resolve(&id
, repo
, ref
);
2239 err
= got_object_id_str(&id_str
, id
);
2245 err
= got_ref_delete(ref
, repo
);
2249 printf("Deleted %s: %s\n", got_ref_get_name(ref
), target
);
2256 static const struct got_error
*
2257 delete_refs_for_remote(struct got_repository
*repo
, const char *remote_name
)
2259 const struct got_error
*err
= NULL
;
2260 struct got_reflist_head refs
;
2261 struct got_reflist_entry
*re
;
2266 if (asprintf(&prefix
, "refs/remotes/%s", remote_name
) == -1) {
2267 err
= got_error_from_errno("asprintf");
2270 err
= got_ref_list(&refs
, repo
, prefix
, got_ref_cmp_by_name
, NULL
);
2274 TAILQ_FOREACH(re
, &refs
, entry
)
2275 delete_ref(repo
, re
->ref
);
2277 got_ref_list_free(&refs
);
2281 static const struct got_error
*
2282 cmd_fetch(int argc
, char *argv
[])
2284 const struct got_error
*error
= NULL
, *unlock_err
;
2285 char *cwd
= NULL
, *repo_path
= NULL
;
2286 const char *remote_name
;
2287 char *proto
= NULL
, *host
= NULL
, *port
= NULL
;
2288 char *repo_name
= NULL
, *server_path
= NULL
;
2289 const struct got_remote_repo
*remotes
, *remote
= NULL
;
2291 char *id_str
= NULL
;
2292 struct got_repository
*repo
= NULL
;
2293 struct got_worktree
*worktree
= NULL
;
2294 const struct got_gotconfig
*repo_conf
= NULL
, *worktree_conf
= NULL
;
2295 struct got_pathlist_head refs
, symrefs
, wanted_branches
, wanted_refs
;
2296 struct got_pathlist_entry
*pe
;
2297 struct got_reflist_head remote_refs
;
2298 struct got_reflist_entry
*re
;
2299 struct got_object_id
*pack_hash
= NULL
;
2300 int i
, ch
, fetchfd
= -1, fetchstatus
;
2301 pid_t fetchpid
= -1;
2302 struct got_fetch_progress_arg fpa
;
2303 int verbosity
= 0, fetch_all_branches
= 0, list_refs_only
= 0;
2304 int delete_refs
= 0, replace_tags
= 0, delete_remote
= 0;
2305 int *pack_fds
= NULL
, have_bflag
= 0;
2306 const char *remote_head
= NULL
, *worktree_branch
= NULL
;
2309 TAILQ_INIT(&symrefs
);
2310 TAILQ_INIT(&remote_refs
);
2311 TAILQ_INIT(&wanted_branches
);
2312 TAILQ_INIT(&wanted_refs
);
2314 while ((ch
= getopt(argc
, argv
, "ab:dlqR:r:tvX")) != -1) {
2317 fetch_all_branches
= 1;
2320 error
= got_pathlist_append(&wanted_branches
,
2336 error
= got_pathlist_append(&wanted_refs
,
2342 repo_path
= realpath(optarg
, NULL
);
2343 if (repo_path
== NULL
)
2344 return got_error_from_errno2("realpath",
2346 got_path_strip_trailing_slashes(repo_path
);
2354 else if (verbosity
< 3)
2368 if (fetch_all_branches
&& !TAILQ_EMPTY(&wanted_branches
))
2369 option_conflict('a', 'b');
2370 if (list_refs_only
) {
2371 if (!TAILQ_EMPTY(&wanted_branches
))
2372 option_conflict('l', 'b');
2373 if (fetch_all_branches
)
2374 option_conflict('l', 'a');
2376 option_conflict('l', 'd');
2378 option_conflict('l', 'X');
2380 if (delete_remote
) {
2381 if (fetch_all_branches
)
2382 option_conflict('X', 'a');
2383 if (!TAILQ_EMPTY(&wanted_branches
))
2384 option_conflict('X', 'b');
2386 option_conflict('X', 'd');
2388 option_conflict('X', 't');
2389 if (!TAILQ_EMPTY(&wanted_refs
))
2390 option_conflict('X', 'R');
2395 errx(1, "-X option requires a remote name");
2396 remote_name
= GOT_FETCH_DEFAULT_REMOTE_NAME
;
2397 } else if (argc
== 1)
2398 remote_name
= argv
[0];
2402 cwd
= getcwd(NULL
, 0);
2404 error
= got_error_from_errno("getcwd");
2408 error
= got_repo_pack_fds_open(&pack_fds
);
2412 if (repo_path
== NULL
) {
2413 error
= got_worktree_open(&worktree
, cwd
);
2414 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
2420 strdup(got_worktree_get_repo_path(worktree
));
2421 if (repo_path
== NULL
)
2422 error
= got_error_from_errno("strdup");
2426 repo_path
= strdup(cwd
);
2427 if (repo_path
== NULL
) {
2428 error
= got_error_from_errno("strdup");
2434 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
2438 if (delete_remote
) {
2439 error
= delete_refs_for_remote(repo
, remote_name
);
2440 goto done
; /* nothing else to do */
2444 worktree_conf
= got_worktree_get_gotconfig(worktree
);
2445 if (worktree_conf
) {
2446 got_gotconfig_get_remotes(&nremotes
, &remotes
,
2448 for (i
= 0; i
< nremotes
; i
++) {
2449 if (strcmp(remotes
[i
].name
, remote_name
) == 0) {
2450 remote
= &remotes
[i
];
2456 if (remote
== NULL
) {
2457 repo_conf
= got_repo_get_gotconfig(repo
);
2459 got_gotconfig_get_remotes(&nremotes
, &remotes
,
2461 for (i
= 0; i
< nremotes
; i
++) {
2462 if (strcmp(remotes
[i
].name
, remote_name
) == 0) {
2463 remote
= &remotes
[i
];
2469 if (remote
== NULL
) {
2470 got_repo_get_gitconfig_remotes(&nremotes
, &remotes
, repo
);
2471 for (i
= 0; i
< nremotes
; i
++) {
2472 if (strcmp(remotes
[i
].name
, remote_name
) == 0) {
2473 remote
= &remotes
[i
];
2478 if (remote
== NULL
) {
2479 error
= got_error_path(remote_name
, GOT_ERR_NO_REMOTE
);
2483 if (TAILQ_EMPTY(&wanted_branches
)) {
2484 if (!fetch_all_branches
)
2485 fetch_all_branches
= remote
->fetch_all_branches
;
2486 for (i
= 0; i
< remote
->nfetch_branches
; i
++) {
2487 error
= got_pathlist_append(&wanted_branches
,
2488 remote
->fetch_branches
[i
], NULL
);
2493 if (TAILQ_EMPTY(&wanted_refs
)) {
2494 for (i
= 0; i
< remote
->nfetch_refs
; i
++) {
2495 error
= got_pathlist_append(&wanted_refs
,
2496 remote
->fetch_refs
[i
], NULL
);
2502 error
= got_dial_parse_uri(&proto
, &host
, &port
, &server_path
,
2503 &repo_name
, remote
->fetch_url
);
2507 if (strcmp(proto
, "git") == 0) {
2509 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2510 "sendfd dns inet unveil", NULL
) == -1)
2513 } else if (strcmp(proto
, "git+ssh") == 0 ||
2514 strcmp(proto
, "ssh") == 0) {
2516 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2517 "sendfd unveil", NULL
) == -1)
2520 } else if (strcmp(proto
, "http") == 0 ||
2521 strcmp(proto
, "git+http") == 0) {
2522 error
= got_error_path(proto
, GOT_ERR_NOT_IMPL
);
2525 error
= got_error_path(proto
, GOT_ERR_BAD_PROTO
);
2529 error
= got_dial_apply_unveil(proto
);
2533 error
= apply_unveil(got_repo_get_path(repo
), 0, NULL
);
2537 if (verbosity
>= 0) {
2538 printf("Connecting to \"%s\" %s://%s%s%s%s%s\n",
2539 remote
->name
, proto
, host
,
2540 port
? ":" : "", port
? port
: "",
2541 *server_path
== '/' ? "" : "/", server_path
);
2544 error
= got_fetch_connect(&fetchpid
, &fetchfd
, proto
, host
, port
,
2545 server_path
, verbosity
);
2551 * If set, get this remote's HEAD ref target so
2552 * if it has changed on the server we can fetch it.
2554 error
= got_ref_list(&remote_refs
, repo
, "refs/remotes",
2555 got_ref_cmp_by_name
, repo
);
2559 TAILQ_FOREACH(re
, &remote_refs
, entry
) {
2560 const char *remote_refname
, *remote_target
;
2561 size_t remote_name_len
;
2563 if (!got_ref_is_symbolic(re
->ref
))
2566 remote_name_len
= strlen(remote
->name
);
2567 remote_refname
= got_ref_get_name(re
->ref
);
2569 /* we only want refs/remotes/$remote->name/HEAD */
2570 if (strncmp(remote_refname
+ 13, remote
->name
,
2571 remote_name_len
) != 0)
2574 if (strcmp(remote_refname
+ remote_name_len
+ 14,
2579 * Take the name itself because we already
2580 * only match with refs/heads/ in fetch_pack().
2582 remote_target
= got_ref_get_symref_target(re
->ref
);
2583 remote_head
= remote_target
+ remote_name_len
+ 14;
2588 const char *refname
;
2590 refname
= got_worktree_get_head_ref_name(worktree
);
2591 if (strncmp(refname
, "refs/heads/", 11) == 0)
2592 worktree_branch
= refname
;
2596 fpa
.last_scaled_size
[0] = '\0';
2597 fpa
.last_p_indexed
= -1;
2598 fpa
.last_p_resolved
= -1;
2599 fpa
.verbosity
= verbosity
;
2601 fpa
.create_configs
= 0;
2602 fpa
.configs_created
= 0;
2603 memset(&fpa
.config_info
, 0, sizeof(fpa
.config_info
));
2605 error
= got_fetch_pack(&pack_hash
, &refs
, &symrefs
, remote
->name
,
2606 remote
->mirror_references
, fetch_all_branches
, &wanted_branches
,
2607 &wanted_refs
, list_refs_only
, verbosity
, fetchfd
, repo
,
2608 worktree_branch
, remote_head
, have_bflag
, fetch_progress
, &fpa
);
2612 if (list_refs_only
) {
2613 error
= list_remote_refs(&symrefs
, &refs
);
2617 if (pack_hash
== NULL
) {
2619 printf("Already up-to-date\n");
2620 } else if (verbosity
>= 0) {
2621 error
= got_object_id_str(&id_str
, pack_hash
);
2624 printf("\nFetched %s.pack\n", id_str
);
2629 /* Update references provided with the pack file. */
2630 TAILQ_FOREACH(pe
, &refs
, entry
) {
2631 const char *refname
= pe
->path
;
2632 struct got_object_id
*id
= pe
->data
;
2633 struct got_reference
*ref
;
2634 char *remote_refname
;
2636 if (is_wanted_ref(&wanted_refs
, refname
) &&
2637 !remote
->mirror_references
) {
2638 error
= update_wanted_ref(refname
, id
,
2639 remote
->name
, verbosity
, repo
);
2645 if (remote
->mirror_references
||
2646 strncmp("refs/tags/", refname
, 10) == 0) {
2647 error
= got_ref_open(&ref
, repo
, refname
, 1);
2649 if (error
->code
!= GOT_ERR_NOT_REF
)
2651 error
= create_ref(refname
, id
, verbosity
,
2656 error
= update_ref(ref
, id
, replace_tags
,
2658 unlock_err
= got_ref_unlock(ref
);
2659 if (unlock_err
&& error
== NULL
)
2665 } else if (strncmp("refs/heads/", refname
, 11) == 0) {
2666 if (asprintf(&remote_refname
, "refs/remotes/%s/%s",
2667 remote_name
, refname
+ 11) == -1) {
2668 error
= got_error_from_errno("asprintf");
2672 error
= got_ref_open(&ref
, repo
, remote_refname
, 1);
2674 if (error
->code
!= GOT_ERR_NOT_REF
)
2676 error
= create_ref(remote_refname
, id
,
2681 error
= update_ref(ref
, id
, replace_tags
,
2683 unlock_err
= got_ref_unlock(ref
);
2684 if (unlock_err
&& error
== NULL
)
2691 /* Also create a local branch if none exists yet. */
2692 error
= got_ref_open(&ref
, repo
, refname
, 1);
2694 if (error
->code
!= GOT_ERR_NOT_REF
)
2696 error
= create_ref(refname
, id
, verbosity
,
2701 unlock_err
= got_ref_unlock(ref
);
2702 if (unlock_err
&& error
== NULL
)
2709 error
= delete_missing_refs(&refs
, &symrefs
, remote
,
2715 if (!remote
->mirror_references
) {
2716 /* Update remote HEAD reference if the server provided one. */
2717 TAILQ_FOREACH(pe
, &symrefs
, entry
) {
2718 struct got_reference
*target_ref
;
2719 const char *refname
= pe
->path
;
2720 const char *target
= pe
->data
;
2721 char *remote_refname
= NULL
, *remote_target
= NULL
;
2723 if (strcmp(refname
, GOT_REF_HEAD
) != 0)
2726 if (strncmp("refs/heads/", target
, 11) != 0)
2729 if (asprintf(&remote_refname
, "refs/remotes/%s/%s",
2730 remote
->name
, refname
) == -1) {
2731 error
= got_error_from_errno("asprintf");
2734 if (asprintf(&remote_target
, "refs/remotes/%s/%s",
2735 remote
->name
, target
+ 11) == -1) {
2736 error
= got_error_from_errno("asprintf");
2737 free(remote_refname
);
2741 error
= got_ref_open(&target_ref
, repo
, remote_target
,
2744 free(remote_refname
);
2745 free(remote_target
);
2746 if (error
->code
== GOT_ERR_NOT_REF
) {
2752 error
= update_symref(remote_refname
, target_ref
,
2754 free(remote_refname
);
2755 free(remote_target
);
2756 got_ref_close(target_ref
);
2763 if (kill(fetchpid
, SIGTERM
) == -1)
2764 error
= got_error_from_errno("kill");
2765 if (waitpid(fetchpid
, &fetchstatus
, 0) == -1 && error
== NULL
)
2766 error
= got_error_from_errno("waitpid");
2768 if (fetchfd
!= -1 && close(fetchfd
) == -1 && error
== NULL
)
2769 error
= got_error_from_errno("close");
2771 const struct got_error
*close_err
= got_repo_close(repo
);
2776 got_worktree_close(worktree
);
2778 const struct got_error
*pack_err
=
2779 got_repo_pack_fds_close(pack_fds
);
2783 got_pathlist_free(&refs
, GOT_PATHLIST_FREE_ALL
);
2784 got_pathlist_free(&symrefs
, GOT_PATHLIST_FREE_ALL
);
2785 got_pathlist_free(&wanted_branches
, GOT_PATHLIST_FREE_NONE
);
2786 got_pathlist_free(&wanted_refs
, GOT_PATHLIST_FREE_NONE
);
2787 got_ref_list_free(&remote_refs
);
2802 usage_checkout(void)
2804 fprintf(stderr
, "usage: %s checkout [-Eq] [-b branch] [-c commit] "
2805 "[-p path-prefix] repository-path [work-tree-path]\n",
2811 show_worktree_base_ref_warning(void)
2813 fprintf(stderr
, "%s: warning: could not create a reference "
2814 "to the work tree's base commit; the commit could be "
2815 "garbage-collected by Git or 'gotadmin cleanup'; making the "
2816 "repository writable and running 'got update' will prevent this\n",
2820 struct got_checkout_progress_arg
{
2821 const char *worktree_path
;
2822 int had_base_commit_ref_error
;
2826 static const struct got_error
*
2827 checkout_progress(void *arg
, unsigned char status
, const char *path
)
2829 struct got_checkout_progress_arg
*a
= arg
;
2831 /* Base commit bump happens silently. */
2832 if (status
== GOT_STATUS_BUMP_BASE
)
2835 if (status
== GOT_STATUS_BASE_REF_ERR
) {
2836 a
->had_base_commit_ref_error
= 1;
2840 while (path
[0] == '/')
2843 if (a
->verbosity
>= 0)
2844 printf("%c %s/%s\n", status
, a
->worktree_path
, path
);
2849 static const struct got_error
*
2850 check_cancelled(void *arg
)
2852 if (sigint_received
|| sigpipe_received
)
2853 return got_error(GOT_ERR_CANCELLED
);
2857 static const struct got_error
*
2858 check_linear_ancestry(struct got_object_id
*commit_id
,
2859 struct got_object_id
*base_commit_id
, int allow_forwards_in_time_only
,
2860 struct got_repository
*repo
)
2862 const struct got_error
*err
= NULL
;
2863 struct got_object_id
*yca_id
;
2865 err
= got_commit_graph_find_youngest_common_ancestor(&yca_id
,
2866 commit_id
, base_commit_id
, 1, repo
, check_cancelled
, NULL
);
2871 return got_error(GOT_ERR_ANCESTRY
);
2874 * Require a straight line of history between the target commit
2875 * and the work tree's base commit.
2877 * Non-linear situations such as this require a rebase:
2879 * (commit) D F (base_commit)
2887 * 'got update' only handles linear cases:
2888 * Update forwards in time: A (base/yca) - B - C - D (commit)
2889 * Update backwards in time: D (base) - C - B - A (commit/yca)
2891 if (allow_forwards_in_time_only
) {
2892 if (got_object_id_cmp(base_commit_id
, yca_id
) != 0)
2893 return got_error(GOT_ERR_ANCESTRY
);
2894 } else if (got_object_id_cmp(commit_id
, yca_id
) != 0 &&
2895 got_object_id_cmp(base_commit_id
, yca_id
) != 0)
2896 return got_error(GOT_ERR_ANCESTRY
);
2902 static const struct got_error
*
2903 check_same_branch(struct got_object_id
*commit_id
,
2904 struct got_reference
*head_ref
, struct got_repository
*repo
)
2906 const struct got_error
*err
= NULL
;
2907 struct got_commit_graph
*graph
= NULL
;
2908 struct got_object_id
*head_commit_id
= NULL
;
2910 err
= got_ref_resolve(&head_commit_id
, repo
, head_ref
);
2914 if (got_object_id_cmp(head_commit_id
, commit_id
) == 0)
2917 err
= got_commit_graph_open(&graph
, "/", 1);
2921 err
= got_commit_graph_iter_start(graph
, head_commit_id
, repo
,
2922 check_cancelled
, NULL
);
2927 struct got_object_id id
;
2929 err
= got_commit_graph_iter_next(&id
, graph
, repo
,
2930 check_cancelled
, NULL
);
2932 if (err
->code
== GOT_ERR_ITER_COMPLETED
)
2933 err
= got_error(GOT_ERR_ANCESTRY
);
2937 if (got_object_id_cmp(&id
, commit_id
) == 0)
2942 got_commit_graph_close(graph
);
2943 free(head_commit_id
);
2947 static const struct got_error
*
2948 checkout_ancestry_error(struct got_reference
*ref
, const char *commit_id_str
)
2950 static char msg
[512];
2951 const char *branch_name
;
2953 if (got_ref_is_symbolic(ref
))
2954 branch_name
= got_ref_get_symref_target(ref
);
2956 branch_name
= got_ref_get_name(ref
);
2958 if (strncmp("refs/heads/", branch_name
, 11) == 0)
2961 snprintf(msg
, sizeof(msg
),
2962 "target commit is not contained in branch '%s'; "
2963 "the branch to use must be specified with -b; "
2964 "if necessary a new branch can be created for "
2965 "this commit with 'got branch -c %s BRANCH_NAME'",
2966 branch_name
, commit_id_str
);
2968 return got_error_msg(GOT_ERR_ANCESTRY
, msg
);
2971 static const struct got_error
*
2972 cmd_checkout(int argc
, char *argv
[])
2974 const struct got_error
*error
= NULL
;
2975 struct got_repository
*repo
= NULL
;
2976 struct got_reference
*head_ref
= NULL
, *ref
= NULL
;
2977 struct got_worktree
*worktree
= NULL
;
2978 char *repo_path
= NULL
;
2979 char *worktree_path
= NULL
;
2980 const char *path_prefix
= "";
2981 const char *branch_name
= GOT_REF_HEAD
, *refname
= NULL
;
2982 char *commit_id_str
= NULL
;
2983 struct got_object_id
*commit_id
= NULL
;
2985 int ch
, same_path_prefix
, allow_nonempty
= 0, verbosity
= 0;
2986 struct got_pathlist_head paths
;
2987 struct got_checkout_progress_arg cpa
;
2988 int *pack_fds
= NULL
;
2993 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
2994 "unveil", NULL
) == -1)
2998 while ((ch
= getopt(argc
, argv
, "b:c:Ep:q")) != -1) {
3001 branch_name
= optarg
;
3004 commit_id_str
= strdup(optarg
);
3005 if (commit_id_str
== NULL
)
3006 return got_error_from_errno("strdup");
3012 path_prefix
= optarg
;
3027 char *base
, *dotgit
;
3029 repo_path
= realpath(argv
[0], NULL
);
3030 if (repo_path
== NULL
)
3031 return got_error_from_errno2("realpath", argv
[0]);
3032 cwd
= getcwd(NULL
, 0);
3034 error
= got_error_from_errno("getcwd");
3041 error
= got_path_basename(&base
, path
);
3044 dotgit
= strstr(base
, ".git");
3047 if (asprintf(&worktree_path
, "%s/%s", cwd
, base
) == -1) {
3048 error
= got_error_from_errno("asprintf");
3053 } else if (argc
== 2) {
3054 repo_path
= realpath(argv
[0], NULL
);
3055 if (repo_path
== NULL
) {
3056 error
= got_error_from_errno2("realpath", argv
[0]);
3059 worktree_path
= realpath(argv
[1], NULL
);
3060 if (worktree_path
== NULL
) {
3061 if (errno
!= ENOENT
) {
3062 error
= got_error_from_errno2("realpath",
3066 worktree_path
= strdup(argv
[1]);
3067 if (worktree_path
== NULL
) {
3068 error
= got_error_from_errno("strdup");
3075 got_path_strip_trailing_slashes(repo_path
);
3076 got_path_strip_trailing_slashes(worktree_path
);
3078 error
= got_repo_pack_fds_open(&pack_fds
);
3082 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
3086 /* Pre-create work tree path for unveil(2) */
3087 error
= got_path_mkdir(worktree_path
);
3089 if (!(error
->code
== GOT_ERR_ERRNO
&& errno
== EISDIR
) &&
3090 !(error
->code
== GOT_ERR_ERRNO
&& errno
== EEXIST
))
3092 if (!allow_nonempty
&&
3093 !got_path_dir_is_empty(worktree_path
)) {
3094 error
= got_error_path(worktree_path
,
3095 GOT_ERR_DIR_NOT_EMPTY
);
3100 error
= apply_unveil(got_repo_get_path(repo
), 0, worktree_path
);
3104 error
= got_ref_open(&head_ref
, repo
, branch_name
, 0);
3108 error
= got_worktree_init(worktree_path
, head_ref
, path_prefix
, repo
);
3109 if (error
!= NULL
&& !(error
->code
== GOT_ERR_ERRNO
&& errno
== EEXIST
))
3112 error
= got_worktree_open(&worktree
, worktree_path
);
3116 error
= got_worktree_match_path_prefix(&same_path_prefix
, worktree
,
3120 if (!same_path_prefix
) {
3121 error
= got_error(GOT_ERR_PATH_PREFIX
);
3125 if (commit_id_str
) {
3126 struct got_reflist_head refs
;
3128 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
,
3132 error
= got_repo_match_object_id(&commit_id
, NULL
,
3133 commit_id_str
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
3134 got_ref_list_free(&refs
);
3137 error
= check_linear_ancestry(commit_id
,
3138 got_worktree_get_base_commit_id(worktree
), 0, repo
);
3139 if (error
!= NULL
) {
3140 if (error
->code
== GOT_ERR_ANCESTRY
) {
3141 error
= checkout_ancestry_error(
3142 head_ref
, commit_id_str
);
3146 error
= check_same_branch(commit_id
, head_ref
, repo
);
3148 if (error
->code
== GOT_ERR_ANCESTRY
) {
3149 error
= checkout_ancestry_error(
3150 head_ref
, commit_id_str
);
3154 error
= got_worktree_set_base_commit_id(worktree
, repo
,
3158 /* Expand potentially abbreviated commit ID string. */
3159 free(commit_id_str
);
3160 error
= got_object_id_str(&commit_id_str
, commit_id
);
3164 commit_id
= got_object_id_dup(
3165 got_worktree_get_base_commit_id(worktree
));
3166 if (commit_id
== NULL
) {
3167 error
= got_error_from_errno("got_object_id_dup");
3170 error
= got_object_id_str(&commit_id_str
, commit_id
);
3175 error
= got_pathlist_append(&paths
, "", NULL
);
3178 cpa
.worktree_path
= worktree_path
;
3179 cpa
.had_base_commit_ref_error
= 0;
3180 cpa
.verbosity
= verbosity
;
3181 error
= got_worktree_checkout_files(worktree
, &paths
, repo
,
3182 checkout_progress
, &cpa
, check_cancelled
, NULL
);
3186 if (got_ref_is_symbolic(head_ref
)) {
3187 error
= got_ref_resolve_symbolic(&ref
, repo
, head_ref
);
3190 refname
= got_ref_get_name(ref
);
3192 refname
= got_ref_get_name(head_ref
);
3193 printf("Checked out %s: %s\n", refname
, commit_id_str
);
3194 printf("Now shut up and hack\n");
3195 if (cpa
.had_base_commit_ref_error
)
3196 show_worktree_base_ref_warning();
3199 const struct got_error
*pack_err
=
3200 got_repo_pack_fds_close(pack_fds
);
3205 got_ref_close(head_ref
);
3209 const struct got_error
*close_err
= got_repo_close(repo
);
3213 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_NONE
);
3214 free(commit_id_str
);
3217 free(worktree_path
);
3222 struct got_update_progress_arg
{
3234 print_update_progress_stats(struct got_update_progress_arg
*upa
)
3236 if (!upa
->did_something
)
3239 if (upa
->conflicts
> 0)
3240 printf("Files with new merge conflicts: %d\n", upa
->conflicts
);
3241 if (upa
->obstructed
> 0)
3242 printf("File paths obstructed by a non-regular file: %d\n",
3244 if (upa
->not_updated
> 0)
3245 printf("Files not updated because of existing merge "
3246 "conflicts: %d\n", upa
->not_updated
);
3250 * The meaning of some status codes differs between merge-style operations and
3251 * update operations. For example, the ! status code means "file was missing"
3252 * if changes were merged into the work tree, and "missing file was restored"
3253 * if the work tree was updated. This function should be used by any operation
3254 * which merges changes into the work tree without updating the work tree.
3257 print_merge_progress_stats(struct got_update_progress_arg
*upa
)
3259 if (!upa
->did_something
)
3262 if (upa
->conflicts
> 0)
3263 printf("Files with new merge conflicts: %d\n", upa
->conflicts
);
3264 if (upa
->obstructed
> 0)
3265 printf("File paths obstructed by a non-regular file: %d\n",
3267 if (upa
->missing
> 0)
3268 printf("Files which had incoming changes but could not be "
3269 "found in the work tree: %d\n", upa
->missing
);
3270 if (upa
->not_deleted
> 0)
3271 printf("Files not deleted due to differences in deleted "
3272 "content: %d\n", upa
->not_deleted
);
3273 if (upa
->unversioned
> 0)
3274 printf("Files not merged because an unversioned file was "
3275 "found in the work tree: %d\n", upa
->unversioned
);
3281 fprintf(stderr
, "usage: %s update [-q] [-b branch] [-c commit] "
3282 "[path ...]\n", getprogname());
3286 static const struct got_error
*
3287 update_progress(void *arg
, unsigned char status
, const char *path
)
3289 struct got_update_progress_arg
*upa
= arg
;
3291 if (status
== GOT_STATUS_EXISTS
||
3292 status
== GOT_STATUS_BASE_REF_ERR
)
3295 upa
->did_something
= 1;
3297 /* Base commit bump happens silently. */
3298 if (status
== GOT_STATUS_BUMP_BASE
)
3301 if (status
== GOT_STATUS_CONFLICT
)
3303 if (status
== GOT_STATUS_OBSTRUCTED
)
3305 if (status
== GOT_STATUS_CANNOT_UPDATE
)
3307 if (status
== GOT_STATUS_MISSING
)
3309 if (status
== GOT_STATUS_CANNOT_DELETE
)
3311 if (status
== GOT_STATUS_UNVERSIONED
)
3314 while (path
[0] == '/')
3316 if (upa
->verbosity
>= 0)
3317 printf("%c %s\n", status
, path
);
3322 static const struct got_error
*
3323 switch_head_ref(struct got_reference
*head_ref
,
3324 struct got_object_id
*commit_id
, struct got_worktree
*worktree
,
3325 struct got_repository
*repo
)
3327 const struct got_error
*err
= NULL
;
3329 int ref_has_moved
= 0;
3331 /* Trivial case: switching between two different references. */
3332 if (strcmp(got_ref_get_name(head_ref
),
3333 got_worktree_get_head_ref_name(worktree
)) != 0) {
3334 printf("Switching work tree from %s to %s\n",
3335 got_worktree_get_head_ref_name(worktree
),
3336 got_ref_get_name(head_ref
));
3337 return got_worktree_set_head_ref(worktree
, head_ref
);
3340 err
= check_linear_ancestry(commit_id
,
3341 got_worktree_get_base_commit_id(worktree
), 0, repo
);
3343 if (err
->code
!= GOT_ERR_ANCESTRY
)
3350 /* Switching to a rebased branch with the same reference name. */
3351 err
= got_object_id_str(&base_id_str
,
3352 got_worktree_get_base_commit_id(worktree
));
3355 printf("Reference %s now points at a different branch\n",
3356 got_worktree_get_head_ref_name(worktree
));
3357 printf("Switching work tree from %s to %s\n", base_id_str
,
3358 got_worktree_get_head_ref_name(worktree
));
3362 static const struct got_error
*
3363 check_rebase_or_histedit_in_progress(struct got_worktree
*worktree
)
3365 const struct got_error
*err
;
3368 err
= got_worktree_rebase_in_progress(&in_progress
, worktree
);
3372 return got_error(GOT_ERR_REBASING
);
3374 err
= got_worktree_histedit_in_progress(&in_progress
, worktree
);
3378 return got_error(GOT_ERR_HISTEDIT_BUSY
);
3383 static const struct got_error
*
3384 check_merge_in_progress(struct got_worktree
*worktree
,
3385 struct got_repository
*repo
)
3387 const struct got_error
*err
;
3390 err
= got_worktree_merge_in_progress(&in_progress
, worktree
, repo
);
3394 return got_error(GOT_ERR_MERGE_BUSY
);
3399 static const struct got_error
*
3400 get_worktree_paths_from_argv(struct got_pathlist_head
*paths
, int argc
,
3401 char *argv
[], struct got_worktree
*worktree
)
3403 const struct got_error
*err
= NULL
;
3405 struct got_pathlist_entry
*new;
3411 return got_error_from_errno("strdup");
3412 return got_pathlist_append(paths
, path
, NULL
);
3415 for (i
= 0; i
< argc
; i
++) {
3416 err
= got_worktree_resolve_path(&path
, worktree
, argv
[i
]);
3419 err
= got_pathlist_insert(&new, paths
, path
, NULL
);
3420 if (err
|| new == NULL
/* duplicate */) {
3430 static const struct got_error
*
3431 wrap_not_worktree_error(const struct got_error
*orig_err
,
3432 const char *cmdname
, const char *path
)
3434 const struct got_error
*err
;
3435 struct got_repository
*repo
;
3436 static char msg
[512];
3437 int *pack_fds
= NULL
;
3439 err
= got_repo_pack_fds_open(&pack_fds
);
3443 err
= got_repo_open(&repo
, path
, NULL
, pack_fds
);
3447 snprintf(msg
, sizeof(msg
),
3448 "'got %s' needs a work tree in addition to a git repository\n"
3449 "Work trees can be checked out from this Git repository with "
3451 "The got(1) manual page contains more information.", cmdname
);
3452 err
= got_error_msg(GOT_ERR_NOT_WORKTREE
, msg
);
3454 const struct got_error
*close_err
= got_repo_close(repo
);
3455 if (close_err
== NULL
)
3459 const struct got_error
*pack_err
=
3460 got_repo_pack_fds_close(pack_fds
);
3467 static const struct got_error
*
3468 cmd_update(int argc
, char *argv
[])
3470 const struct got_error
*error
= NULL
;
3471 struct got_repository
*repo
= NULL
;
3472 struct got_worktree
*worktree
= NULL
;
3473 char *worktree_path
= NULL
;
3474 struct got_object_id
*commit_id
= NULL
;
3475 char *commit_id_str
= NULL
;
3476 const char *branch_name
= NULL
;
3477 struct got_reference
*head_ref
= NULL
;
3478 struct got_pathlist_head paths
;
3479 struct got_pathlist_entry
*pe
;
3480 int ch
, verbosity
= 0;
3481 struct got_update_progress_arg upa
;
3482 int *pack_fds
= NULL
;
3487 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
3488 "unveil", NULL
) == -1)
3492 while ((ch
= getopt(argc
, argv
, "b:c:q")) != -1) {
3495 branch_name
= optarg
;
3498 commit_id_str
= strdup(optarg
);
3499 if (commit_id_str
== NULL
)
3500 return got_error_from_errno("strdup");
3514 worktree_path
= getcwd(NULL
, 0);
3515 if (worktree_path
== NULL
) {
3516 error
= got_error_from_errno("getcwd");
3520 error
= got_repo_pack_fds_open(&pack_fds
);
3524 error
= got_worktree_open(&worktree
, worktree_path
);
3526 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
3527 error
= wrap_not_worktree_error(error
, "update",
3532 error
= check_rebase_or_histedit_in_progress(worktree
);
3536 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
3541 error
= apply_unveil(got_repo_get_path(repo
), 0,
3542 got_worktree_get_root_path(worktree
));
3546 error
= check_merge_in_progress(worktree
, repo
);
3550 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
3554 error
= got_ref_open(&head_ref
, repo
, branch_name
? branch_name
:
3555 got_worktree_get_head_ref_name(worktree
), 0);
3558 if (commit_id_str
== NULL
) {
3559 error
= got_ref_resolve(&commit_id
, repo
, head_ref
);
3562 error
= got_object_id_str(&commit_id_str
, commit_id
);
3566 struct got_reflist_head refs
;
3568 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
,
3572 error
= got_repo_match_object_id(&commit_id
, NULL
,
3573 commit_id_str
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
3574 got_ref_list_free(&refs
);
3575 free(commit_id_str
);
3576 commit_id_str
= NULL
;
3579 error
= got_object_id_str(&commit_id_str
, commit_id
);
3585 struct got_object_id
*head_commit_id
;
3586 TAILQ_FOREACH(pe
, &paths
, entry
) {
3587 if (pe
->path_len
== 0)
3589 error
= got_error_msg(GOT_ERR_BAD_PATH
,
3590 "switching between branches requires that "
3591 "the entire work tree gets updated");
3594 error
= got_ref_resolve(&head_commit_id
, repo
, head_ref
);
3597 error
= check_linear_ancestry(commit_id
, head_commit_id
, 0,
3599 free(head_commit_id
);
3602 error
= check_same_branch(commit_id
, head_ref
, repo
);
3605 error
= switch_head_ref(head_ref
, commit_id
, worktree
, repo
);
3609 error
= check_linear_ancestry(commit_id
,
3610 got_worktree_get_base_commit_id(worktree
), 0, repo
);
3611 if (error
!= NULL
) {
3612 if (error
->code
== GOT_ERR_ANCESTRY
)
3613 error
= got_error(GOT_ERR_BRANCH_MOVED
);
3616 error
= check_same_branch(commit_id
, head_ref
, repo
);
3621 if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree
),
3623 error
= got_worktree_set_base_commit_id(worktree
, repo
,
3629 memset(&upa
, 0, sizeof(upa
));
3630 upa
.verbosity
= verbosity
;
3631 error
= got_worktree_checkout_files(worktree
, &paths
, repo
,
3632 update_progress
, &upa
, check_cancelled
, NULL
);
3636 if (upa
.did_something
) {
3637 printf("Updated to %s: %s\n",
3638 got_worktree_get_head_ref_name(worktree
), commit_id_str
);
3640 printf("Already up-to-date\n");
3642 print_update_progress_stats(&upa
);
3645 const struct got_error
*pack_err
=
3646 got_repo_pack_fds_close(pack_fds
);
3651 const struct got_error
*close_err
= got_repo_close(repo
);
3655 free(worktree_path
);
3656 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
3658 free(commit_id_str
);
3662 static const struct got_error
*
3663 diff_blobs(struct got_object_id
*blob_id1
, struct got_object_id
*blob_id2
,
3664 const char *path
, int diff_context
, int ignore_whitespace
,
3665 int force_text_diff
, struct got_diffstat_cb_arg
*dsa
,
3666 struct got_repository
*repo
, FILE *outfile
)
3668 const struct got_error
*err
= NULL
;
3669 struct got_blob_object
*blob1
= NULL
, *blob2
= NULL
;
3670 FILE *f1
= NULL
, *f2
= NULL
;
3671 int fd1
= -1, fd2
= -1;
3673 fd1
= got_opentempfd();
3675 return got_error_from_errno("got_opentempfd");
3676 fd2
= got_opentempfd();
3678 err
= got_error_from_errno("got_opentempfd");
3683 err
= got_object_open_as_blob(&blob1
, repo
, blob_id1
, 8192,
3689 err
= got_object_open_as_blob(&blob2
, repo
, blob_id2
, 8192, fd2
);
3693 f1
= got_opentemp();
3695 err
= got_error_from_errno("got_opentemp");
3698 f2
= got_opentemp();
3700 err
= got_error_from_errno("got_opentemp");
3704 while (path
[0] == '/')
3706 err
= got_diff_blob(NULL
, NULL
, blob1
, blob2
, f1
, f2
, path
, path
,
3707 GOT_DIFF_ALGORITHM_PATIENCE
, diff_context
, ignore_whitespace
,
3708 force_text_diff
, dsa
, outfile
);
3710 if (fd1
!= -1 && close(fd1
) == -1 && err
== NULL
)
3711 err
= got_error_from_errno("close");
3713 got_object_blob_close(blob1
);
3714 if (fd2
!= -1 && close(fd2
) == -1 && err
== NULL
)
3715 err
= got_error_from_errno("close");
3717 got_object_blob_close(blob2
);
3718 if (f1
&& fclose(f1
) == EOF
&& err
== NULL
)
3719 err
= got_error_from_errno("fclose");
3720 if (f2
&& fclose(f2
) == EOF
&& err
== NULL
)
3721 err
= got_error_from_errno("fclose");
3725 static const struct got_error
*
3726 diff_trees(struct got_object_id
*tree_id1
, struct got_object_id
*tree_id2
,
3727 const char *path
, int diff_context
, int ignore_whitespace
,
3728 int force_text_diff
, struct got_diffstat_cb_arg
*dsa
,
3729 struct got_repository
*repo
, FILE *outfile
)
3731 const struct got_error
*err
= NULL
;
3732 struct got_tree_object
*tree1
= NULL
, *tree2
= NULL
;
3733 struct got_diff_blob_output_unidiff_arg arg
;
3734 FILE *f1
= NULL
, *f2
= NULL
;
3735 int fd1
= -1, fd2
= -1;
3738 err
= got_object_open_as_tree(&tree1
, repo
, tree_id1
);
3741 fd1
= got_opentempfd();
3743 err
= got_error_from_errno("got_opentempfd");
3748 err
= got_object_open_as_tree(&tree2
, repo
, tree_id2
);
3752 f1
= got_opentemp();
3754 err
= got_error_from_errno("got_opentemp");
3758 f2
= got_opentemp();
3760 err
= got_error_from_errno("got_opentemp");
3763 fd2
= got_opentempfd();
3765 err
= got_error_from_errno("got_opentempfd");
3768 arg
.diff_context
= diff_context
;
3769 arg
.ignore_whitespace
= ignore_whitespace
;
3770 arg
.force_text_diff
= force_text_diff
;
3772 arg
.diff_algo
= GOT_DIFF_ALGORITHM_PATIENCE
;
3773 arg
.outfile
= outfile
;
3776 while (path
[0] == '/')
3778 err
= got_diff_tree(tree1
, tree2
, f1
, f2
, fd1
, fd2
, path
, path
, repo
,
3779 got_diff_blob_output_unidiff
, &arg
, 1);
3782 got_object_tree_close(tree1
);
3784 got_object_tree_close(tree2
);
3785 if (f1
&& fclose(f1
) == EOF
&& err
== NULL
)
3786 err
= got_error_from_errno("fclose");
3787 if (f2
&& fclose(f2
) == EOF
&& err
== NULL
)
3788 err
= got_error_from_errno("fclose");
3789 if (fd1
!= -1 && close(fd1
) == -1 && err
== NULL
)
3790 err
= got_error_from_errno("close");
3791 if (fd2
!= -1 && close(fd2
) == -1 && err
== NULL
)
3792 err
= got_error_from_errno("close");
3796 static const struct got_error
*
3797 get_changed_paths(struct got_pathlist_head
*paths
,
3798 struct got_commit_object
*commit
, struct got_repository
*repo
,
3799 struct got_diffstat_cb_arg
*dsa
)
3801 const struct got_error
*err
= NULL
;
3802 struct got_object_id
*tree_id1
= NULL
, *tree_id2
= NULL
;
3803 struct got_tree_object
*tree1
= NULL
, *tree2
= NULL
;
3804 struct got_object_qid
*qid
;
3805 got_diff_blob_cb cb
= got_diff_tree_collect_changed_paths
;
3806 FILE *f1
= NULL
, *f2
= NULL
;
3807 int fd1
= -1, fd2
= -1;
3810 cb
= got_diff_tree_compute_diffstat
;
3812 f1
= got_opentemp();
3814 err
= got_error_from_errno("got_opentemp");
3817 f2
= got_opentemp();
3819 err
= got_error_from_errno("got_opentemp");
3822 fd1
= got_opentempfd();
3824 err
= got_error_from_errno("got_opentempfd");
3827 fd2
= got_opentempfd();
3829 err
= got_error_from_errno("got_opentempfd");
3834 qid
= STAILQ_FIRST(got_object_commit_get_parent_ids(commit
));
3836 struct got_commit_object
*pcommit
;
3837 err
= got_object_open_as_commit(&pcommit
, repo
,
3842 tree_id1
= got_object_id_dup(
3843 got_object_commit_get_tree_id(pcommit
));
3844 if (tree_id1
== NULL
) {
3845 got_object_commit_close(pcommit
);
3846 return got_error_from_errno("got_object_id_dup");
3848 got_object_commit_close(pcommit
);
3853 err
= got_object_open_as_tree(&tree1
, repo
, tree_id1
);
3858 tree_id2
= got_object_commit_get_tree_id(commit
);
3859 err
= got_object_open_as_tree(&tree2
, repo
, tree_id2
);
3863 err
= got_diff_tree(tree1
, tree2
, f1
, f2
, fd1
, fd2
, "", "", repo
,
3864 cb
, dsa
? (void *)dsa
: paths
, dsa
? 1 : 0);
3867 got_object_tree_close(tree1
);
3869 got_object_tree_close(tree2
);
3870 if (fd1
!= -1 && close(fd1
) == -1 && err
== NULL
)
3871 err
= got_error_from_errno("close");
3872 if (fd2
!= -1 && close(fd2
) == -1 && err
== NULL
)
3873 err
= got_error_from_errno("close");
3874 if (f1
&& fclose(f1
) == EOF
&& err
== NULL
)
3875 err
= got_error_from_errno("fclose");
3876 if (f2
&& fclose(f2
) == EOF
&& err
== NULL
)
3877 err
= got_error_from_errno("fclose");
3882 static const struct got_error
*
3883 print_patch(struct got_commit_object
*commit
, struct got_object_id
*id
,
3884 const char *path
, int diff_context
, struct got_diffstat_cb_arg
*dsa
,
3885 struct got_repository
*repo
, FILE *outfile
)
3887 const struct got_error
*err
= NULL
;
3888 struct got_commit_object
*pcommit
= NULL
;
3889 char *id_str1
= NULL
, *id_str2
= NULL
;
3890 struct got_object_id
*obj_id1
= NULL
, *obj_id2
= NULL
;
3891 struct got_object_qid
*qid
;
3893 qid
= STAILQ_FIRST(got_object_commit_get_parent_ids(commit
));
3895 err
= got_object_open_as_commit(&pcommit
, repo
,
3899 err
= got_object_id_str(&id_str1
, &qid
->id
);
3904 err
= got_object_id_str(&id_str2
, id
);
3908 if (path
&& path
[0] != '\0') {
3910 err
= got_object_id_by_path(&obj_id2
, repo
, commit
, path
);
3914 err
= got_object_id_by_path(&obj_id1
, repo
,
3917 if (err
->code
!= GOT_ERR_NO_TREE_ENTRY
) {
3923 err
= got_object_get_type(&obj_type
, repo
, obj_id2
);
3929 "diff %s %s\n", id_str1
? id_str1
: "/dev/null", id_str2
);
3930 fprintf(outfile
, "commit - %s\n",
3931 id_str1
? id_str1
: "/dev/null");
3932 fprintf(outfile
, "commit + %s\n", id_str2
);
3934 case GOT_OBJ_TYPE_BLOB
:
3935 err
= diff_blobs(obj_id1
, obj_id2
, path
, diff_context
,
3936 0, 0, dsa
, repo
, outfile
);
3938 case GOT_OBJ_TYPE_TREE
:
3939 err
= diff_trees(obj_id1
, obj_id2
, path
, diff_context
,
3940 0, 0, dsa
, repo
, outfile
);
3943 err
= got_error(GOT_ERR_OBJ_TYPE
);
3949 obj_id2
= got_object_commit_get_tree_id(commit
);
3951 obj_id1
= got_object_commit_get_tree_id(pcommit
);
3953 "diff %s %s\n", id_str1
? id_str1
: "/dev/null", id_str2
);
3954 fprintf(outfile
, "commit - %s\n",
3955 id_str1
? id_str1
: "/dev/null");
3956 fprintf(outfile
, "commit + %s\n", id_str2
);
3957 err
= diff_trees(obj_id1
, obj_id2
, "", diff_context
, 0, 0,
3958 dsa
, repo
, outfile
);
3964 got_object_commit_close(pcommit
);
3969 get_datestr(time_t *time
, char *datebuf
)
3971 struct tm mytm
, *tm
;
3974 tm
= gmtime_r(time
, &mytm
);
3977 s
= asctime_r(tm
, datebuf
);
3980 p
= strchr(s
, '\n');
3986 static const struct got_error
*
3987 match_commit(int *have_match
, struct got_object_id
*id
,
3988 struct got_commit_object
*commit
, regex_t
*regex
)
3990 const struct got_error
*err
= NULL
;
3991 regmatch_t regmatch
;
3992 char *id_str
= NULL
, *logmsg
= NULL
;
3996 err
= got_object_id_str(&id_str
, id
);
4000 err
= got_object_commit_get_logmsg(&logmsg
, commit
);
4004 if (regexec(regex
, got_object_commit_get_author(commit
), 1,
4005 ®match
, 0) == 0 ||
4006 regexec(regex
, got_object_commit_get_committer(commit
), 1,
4007 ®match
, 0) == 0 ||
4008 regexec(regex
, id_str
, 1, ®match
, 0) == 0 ||
4009 regexec(regex
, logmsg
, 1, ®match
, 0) == 0)
4018 match_changed_paths(int *have_match
, struct got_pathlist_head
*changed_paths
,
4021 regmatch_t regmatch
;
4022 struct got_pathlist_entry
*pe
;
4026 TAILQ_FOREACH(pe
, changed_paths
, entry
) {
4027 if (regexec(regex
, pe
->path
, 1, ®match
, 0) == 0) {
4034 static const struct got_error
*
4035 match_patch(int *have_match
, struct got_commit_object
*commit
,
4036 struct got_object_id
*id
, const char *path
, int diff_context
,
4037 struct got_repository
*repo
, regex_t
*regex
, FILE *f
)
4039 const struct got_error
*err
= NULL
;
4041 size_t linesize
= 0;
4042 regmatch_t regmatch
;
4046 err
= got_opentemp_truncate(f
);
4050 err
= print_patch(commit
, id
, path
, diff_context
, NULL
, repo
, f
);
4054 if (fseeko(f
, 0L, SEEK_SET
) == -1) {
4055 err
= got_error_from_errno("fseeko");
4059 while (getline(&line
, &linesize
, f
) != -1) {
4060 if (regexec(regex
, line
, 1, ®match
, 0) == 0) {
4070 #define GOT_COMMIT_SEP_STR "-----------------------------------------------\n"
4072 static const struct got_error
*
4073 build_refs_str(char **refs_str
, struct got_reflist_head
*refs
,
4074 struct got_object_id
*id
, struct got_repository
*repo
,
4077 static const struct got_error
*err
= NULL
;
4078 struct got_reflist_entry
*re
;
4084 TAILQ_FOREACH(re
, refs
, entry
) {
4085 struct got_tag_object
*tag
= NULL
;
4086 struct got_object_id
*ref_id
;
4089 name
= got_ref_get_name(re
->ref
);
4090 if (strcmp(name
, GOT_REF_HEAD
) == 0)
4092 if (strncmp(name
, "refs/", 5) == 0)
4094 if (strncmp(name
, "got/", 4) == 0)
4096 if (strncmp(name
, "heads/", 6) == 0)
4098 if (strncmp(name
, "remotes/", 8) == 0) {
4102 s
= strstr(name
, "/" GOT_REF_HEAD
);
4103 if (s
!= NULL
&& s
[strlen(s
)] == '\0')
4106 err
= got_ref_resolve(&ref_id
, repo
, re
->ref
);
4109 if (strncmp(name
, "tags/", 5) == 0) {
4110 err
= got_object_open_as_tag(&tag
, repo
, ref_id
);
4112 if (err
->code
!= GOT_ERR_OBJ_TYPE
) {
4116 /* Ref points at something other than a tag. */
4121 cmp
= got_object_id_cmp(tag
?
4122 got_object_tag_get_object_id(tag
) : ref_id
, id
);
4125 got_object_tag_close(tag
);
4129 if (asprintf(refs_str
, "%s%s%s", s
? s
: "",
4130 s
? ", " : "", name
) == -1) {
4131 err
= got_error_from_errno("asprintf");
4142 static const struct got_error
*
4143 print_commit_oneline(struct got_commit_object
*commit
, struct got_object_id
*id
,
4144 struct got_repository
*repo
, struct got_reflist_object_id_map
*refs_idmap
)
4146 const struct got_error
*err
= NULL
;
4147 char *ref_str
= NULL
, *id_str
= NULL
, *logmsg0
= NULL
;
4148 char *comma
, *s
, *nl
;
4149 struct got_reflist_head
*refs
;
4150 char datebuf
[12]; /* YYYY-MM-DD + SPACE + NUL */
4152 time_t committer_time
;
4154 refs
= got_reflist_object_id_map_lookup(refs_idmap
, id
);
4156 err
= build_refs_str(&ref_str
, refs
, id
, repo
, 1);
4160 /* Display the first matching ref only. */
4161 if (ref_str
&& (comma
= strchr(ref_str
, ',')) != NULL
)
4165 if (ref_str
== NULL
) {
4166 err
= got_object_id_str(&id_str
, id
);
4171 committer_time
= got_object_commit_get_committer_time(commit
);
4172 if (gmtime_r(&committer_time
, &tm
) == NULL
) {
4173 err
= got_error_from_errno("gmtime_r");
4176 if (strftime(datebuf
, sizeof(datebuf
), "%G-%m-%d ", &tm
) == 0) {
4177 err
= got_error(GOT_ERR_NO_SPACE
);
4181 err
= got_object_commit_get_logmsg(&logmsg0
, commit
);
4186 while (isspace((unsigned char)s
[0]))
4189 nl
= strchr(s
, '\n');
4195 printf("%s%-7s %s\n", datebuf
, ref_str
, s
);
4197 printf("%s%.7s %s\n", datebuf
, id_str
, s
);
4199 if (fflush(stdout
) != 0 && err
== NULL
)
4200 err
= got_error_from_errno("fflush");
4208 static const struct got_error
*
4209 print_diffstat(struct got_diffstat_cb_arg
*dsa
, const char *header
)
4211 struct got_pathlist_entry
*pe
;
4214 printf("%s\n", header
);
4216 TAILQ_FOREACH(pe
, dsa
->paths
, entry
) {
4217 struct got_diff_changed_path
*cp
= pe
->data
;
4218 int pad
= dsa
->max_path_len
- pe
->path_len
+ 1;
4220 printf(" %c %s%*c | %*d+ %*d-\n", cp
->status
, pe
->path
, pad
,
4221 ' ', dsa
->add_cols
+ 1, cp
->add
, dsa
->rm_cols
+ 1, cp
->rm
);
4223 printf("\n%d file%s changed, %d insertion%s(+), %d deletion%s(-)\n\n",
4224 dsa
->nfiles
, dsa
->nfiles
> 1 ? "s" : "", dsa
->ins
,
4225 dsa
->ins
!= 1 ? "s" : "", dsa
->del
, dsa
->del
!= 1 ? "s" : "");
4227 if (fflush(stdout
) != 0)
4228 return got_error_from_errno("fflush");
4233 static const struct got_error
*
4239 if (fseeko(f
, 0L, SEEK_SET
) == -1)
4240 return got_error_from_errno("fseek");
4243 r
= fread(buf
, 1, sizeof(buf
), f
);
4246 return got_error_from_errno("fread");
4250 if (fwrite(buf
, 1, r
, stdout
) != r
)
4251 return got_ferror(stdout
, GOT_ERR_IO
);
4257 static const struct got_error
*
4258 print_commit(struct got_commit_object
*commit
, struct got_object_id
*id
,
4259 struct got_repository
*repo
, const char *path
,
4260 struct got_pathlist_head
*changed_paths
,
4261 struct got_diffstat_cb_arg
*diffstat
, int show_patch
, int diff_context
,
4262 struct got_reflist_object_id_map
*refs_idmap
, const char *custom_refs_str
,
4265 const struct got_error
*err
= NULL
;
4267 char *id_str
, *datestr
, *logmsg0
, *logmsg
, *line
;
4269 time_t committer_time
;
4270 const char *author
, *committer
;
4271 char *refs_str
= NULL
;
4273 err
= got_object_id_str(&id_str
, id
);
4277 if (custom_refs_str
== NULL
) {
4278 struct got_reflist_head
*refs
;
4279 refs
= got_reflist_object_id_map_lookup(refs_idmap
, id
);
4281 err
= build_refs_str(&refs_str
, refs
, id
, repo
, 0);
4287 printf(GOT_COMMIT_SEP_STR
);
4288 if (custom_refs_str
)
4289 printf("%s %s (%s)\n", prefix
? prefix
: "commit", id_str
,
4292 printf("%s %s%s%s%s\n", prefix
? prefix
: "commit", id_str
,
4293 refs_str
? " (" : "", refs_str
? refs_str
: "",
4294 refs_str
? ")" : "");
4299 printf("from: %s\n", got_object_commit_get_author(commit
));
4300 author
= got_object_commit_get_author(commit
);
4301 committer
= got_object_commit_get_committer(commit
);
4302 if (strcmp(author
, committer
) != 0)
4303 printf("via: %s\n", committer
);
4304 committer_time
= got_object_commit_get_committer_time(commit
);
4305 datestr
= get_datestr(&committer_time
, datebuf
);
4307 printf("date: %s UTC\n", datestr
);
4308 if (got_object_commit_get_nparents(commit
) > 1) {
4309 const struct got_object_id_queue
*parent_ids
;
4310 struct got_object_qid
*qid
;
4312 parent_ids
= got_object_commit_get_parent_ids(commit
);
4313 STAILQ_FOREACH(qid
, parent_ids
, entry
) {
4314 err
= got_object_id_str(&id_str
, &qid
->id
);
4317 printf("parent %d: %s\n", n
++, id_str
);
4323 err
= got_object_commit_get_logmsg(&logmsg0
, commit
);
4329 line
= strsep(&logmsg
, "\n");
4331 printf(" %s\n", line
);
4335 if (changed_paths
&& diffstat
== NULL
) {
4336 struct got_pathlist_entry
*pe
;
4338 TAILQ_FOREACH(pe
, changed_paths
, entry
) {
4339 struct got_diff_changed_path
*cp
= pe
->data
;
4341 printf(" %c %s\n", cp
->status
, pe
->path
);
4349 err
= got_error_from_errno("got_opentemp");
4354 err
= print_patch(commit
, id
, path
, diff_context
, diffstat
,
4355 repo
, diffstat
== NULL
? stdout
: f
);
4360 err
= print_diffstat(diffstat
, NULL
);
4372 if (fflush(stdout
) != 0 && err
== NULL
)
4373 err
= got_error_from_errno("fflush");
4375 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
4376 err
= got_error_from_errno("fclose");
4382 static const struct got_error
*
4383 print_commits(struct got_object_id
*root_id
, struct got_object_id
*end_id
,
4384 struct got_repository
*repo
, const char *path
, int show_changed_paths
,
4385 int show_diffstat
, int show_patch
, const char *search_pattern
,
4386 int diff_context
, int limit
, int log_branches
, int reverse_display_order
,
4387 struct got_reflist_object_id_map
*refs_idmap
, int one_line
,
4390 const struct got_error
*err
;
4391 struct got_commit_graph
*graph
;
4394 struct got_object_id_queue reversed_commits
;
4395 struct got_object_qid
*qid
;
4396 struct got_commit_object
*commit
;
4397 struct got_pathlist_head changed_paths
;
4399 STAILQ_INIT(&reversed_commits
);
4400 TAILQ_INIT(&changed_paths
);
4402 if (search_pattern
&& regcomp(®ex
, search_pattern
,
4403 REG_EXTENDED
| REG_NOSUB
| REG_NEWLINE
))
4404 return got_error_msg(GOT_ERR_REGEX
, search_pattern
);
4406 err
= got_commit_graph_open(&graph
, path
, !log_branches
);
4409 err
= got_commit_graph_iter_start(graph
, root_id
, repo
,
4410 check_cancelled
, NULL
);
4414 struct got_object_id id
;
4415 struct got_diffstat_cb_arg dsa
= { 0, 0, 0, 0, 0, 0,
4416 &changed_paths
, 0, 0, GOT_DIFF_ALGORITHM_PATIENCE
};
4418 if (sigint_received
|| sigpipe_received
)
4421 err
= got_commit_graph_iter_next(&id
, graph
, repo
,
4422 check_cancelled
, NULL
);
4424 if (err
->code
== GOT_ERR_ITER_COMPLETED
)
4429 err
= got_object_open_as_commit(&commit
, repo
, &id
);
4433 if ((show_changed_paths
|| (show_diffstat
&& !show_patch
))
4434 && !reverse_display_order
) {
4435 err
= get_changed_paths(&changed_paths
, commit
, repo
,
4436 show_diffstat
? &dsa
: NULL
);
4441 if (search_pattern
) {
4442 err
= match_commit(&have_match
, &id
, commit
, ®ex
);
4444 got_object_commit_close(commit
);
4447 if (have_match
== 0 && show_changed_paths
)
4448 match_changed_paths(&have_match
,
4449 &changed_paths
, ®ex
);
4450 if (have_match
== 0 && show_patch
) {
4451 err
= match_patch(&have_match
, commit
, &id
,
4452 path
, diff_context
, repo
, ®ex
, tmpfile
);
4456 if (have_match
== 0) {
4457 got_object_commit_close(commit
);
4458 got_pathlist_free(&changed_paths
,
4459 GOT_PATHLIST_FREE_ALL
);
4464 if (reverse_display_order
) {
4465 err
= got_object_qid_alloc(&qid
, &id
);
4468 STAILQ_INSERT_HEAD(&reversed_commits
, qid
, entry
);
4469 got_object_commit_close(commit
);
4472 err
= print_commit_oneline(commit
, &id
,
4475 err
= print_commit(commit
, &id
, repo
, path
,
4476 (show_changed_paths
|| show_diffstat
) ?
4477 &changed_paths
: NULL
,
4478 show_diffstat
? &dsa
: NULL
, show_patch
,
4479 diff_context
, refs_idmap
, NULL
, NULL
);
4480 got_object_commit_close(commit
);
4484 if ((limit
&& --limit
== 0) ||
4485 (end_id
&& got_object_id_cmp(&id
, end_id
) == 0))
4488 got_pathlist_free(&changed_paths
, GOT_PATHLIST_FREE_ALL
);
4490 if (reverse_display_order
) {
4491 STAILQ_FOREACH(qid
, &reversed_commits
, entry
) {
4492 struct got_diffstat_cb_arg dsa
= { 0, 0, 0, 0, 0, 0,
4493 &changed_paths
, 0, 0, GOT_DIFF_ALGORITHM_PATIENCE
};
4495 err
= got_object_open_as_commit(&commit
, repo
,
4499 if (show_changed_paths
||
4500 (show_diffstat
&& !show_patch
)) {
4501 err
= get_changed_paths(&changed_paths
, commit
,
4502 repo
, show_diffstat
? &dsa
: NULL
);
4507 err
= print_commit_oneline(commit
, &qid
->id
,
4510 err
= print_commit(commit
, &qid
->id
, repo
, path
,
4511 (show_changed_paths
|| show_diffstat
) ?
4512 &changed_paths
: NULL
,
4513 show_diffstat
? &dsa
: NULL
, show_patch
,
4514 diff_context
, refs_idmap
, NULL
, NULL
);
4515 got_object_commit_close(commit
);
4518 got_pathlist_free(&changed_paths
, GOT_PATHLIST_FREE_ALL
);
4522 while (!STAILQ_EMPTY(&reversed_commits
)) {
4523 qid
= STAILQ_FIRST(&reversed_commits
);
4524 STAILQ_REMOVE_HEAD(&reversed_commits
, entry
);
4525 got_object_qid_free(qid
);
4527 got_pathlist_free(&changed_paths
, GOT_PATHLIST_FREE_ALL
);
4530 got_commit_graph_close(graph
);
4537 fprintf(stderr
, "usage: %s log [-bdPpRs] [-C number] [-c commit] "
4538 "[-l N] [-r repository-path] [-S search-pattern] [-x commit] "
4539 "[path]\n", getprogname());
4544 get_default_log_limit(void)
4546 const char *got_default_log_limit
;
4550 got_default_log_limit
= getenv("GOT_LOG_DEFAULT_LIMIT");
4551 if (got_default_log_limit
== NULL
)
4553 n
= strtonum(got_default_log_limit
, 0, INT_MAX
, &errstr
);
4559 static const struct got_error
*
4560 cmd_log(int argc
, char *argv
[])
4562 const struct got_error
*error
;
4563 struct got_repository
*repo
= NULL
;
4564 struct got_worktree
*worktree
= NULL
;
4565 struct got_object_id
*start_id
= NULL
, *end_id
= NULL
;
4566 char *repo_path
= NULL
, *path
= NULL
, *cwd
= NULL
, *in_repo_path
= NULL
;
4567 const char *start_commit
= NULL
, *end_commit
= NULL
;
4568 const char *search_pattern
= NULL
;
4569 int diff_context
= -1, ch
;
4570 int show_changed_paths
= 0, show_patch
= 0, limit
= 0, log_branches
= 0;
4571 int show_diffstat
= 0, reverse_display_order
= 0, one_line
= 0;
4573 struct got_reflist_head refs
;
4574 struct got_reflist_object_id_map
*refs_idmap
= NULL
;
4575 FILE *tmpfile
= NULL
;
4576 int *pack_fds
= NULL
;
4581 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4587 limit
= get_default_log_limit();
4589 while ((ch
= getopt(argc
, argv
, "bC:c:dl:PpRr:S:sx:")) != -1) {
4595 diff_context
= strtonum(optarg
, 0, GOT_DIFF_MAX_CONTEXT
,
4598 errx(1, "number of context lines is %s: %s",
4602 start_commit
= optarg
;
4608 limit
= strtonum(optarg
, 0, INT_MAX
, &errstr
);
4610 errx(1, "number of commits is %s: %s",
4614 show_changed_paths
= 1;
4620 reverse_display_order
= 1;
4623 repo_path
= realpath(optarg
, NULL
);
4624 if (repo_path
== NULL
)
4625 return got_error_from_errno2("realpath",
4627 got_path_strip_trailing_slashes(repo_path
);
4630 search_pattern
= optarg
;
4636 end_commit
= optarg
;
4647 if (diff_context
== -1)
4649 else if (!show_patch
)
4650 errx(1, "-C requires -p");
4652 if (one_line
&& (show_patch
|| show_changed_paths
|| show_diffstat
))
4653 errx(1, "cannot use -s with -d, -p or -P");
4655 cwd
= getcwd(NULL
, 0);
4657 error
= got_error_from_errno("getcwd");
4661 error
= got_repo_pack_fds_open(&pack_fds
);
4665 if (repo_path
== NULL
) {
4666 error
= got_worktree_open(&worktree
, cwd
);
4667 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
4674 error
= got_worktree_resolve_path(&path
, worktree
,
4679 path
= strdup(argv
[0]);
4681 error
= got_error_from_errno("strdup");
4685 } else if (argc
!= 0)
4688 if (repo_path
== NULL
) {
4689 repo_path
= worktree
?
4690 strdup(got_worktree_get_repo_path(worktree
)) : strdup(cwd
);
4692 if (repo_path
== NULL
) {
4693 error
= got_error_from_errno("strdup");
4697 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
4701 error
= apply_unveil(got_repo_get_path(repo
), 1,
4702 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
4706 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
, NULL
);
4710 error
= got_reflist_object_id_map_create(&refs_idmap
, &refs
, repo
);
4714 if (start_commit
== NULL
) {
4715 struct got_reference
*head_ref
;
4716 struct got_commit_object
*commit
= NULL
;
4717 error
= got_ref_open(&head_ref
, repo
,
4718 worktree
? got_worktree_get_head_ref_name(worktree
)
4722 error
= got_ref_resolve(&start_id
, repo
, head_ref
);
4723 got_ref_close(head_ref
);
4726 error
= got_object_open_as_commit(&commit
, repo
,
4730 got_object_commit_close(commit
);
4732 error
= got_repo_match_object_id(&start_id
, NULL
,
4733 start_commit
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
4737 if (end_commit
!= NULL
) {
4738 error
= got_repo_match_object_id(&end_id
, NULL
,
4739 end_commit
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
4746 * If a path was specified on the command line it was resolved
4747 * to a path in the work tree above. Prepend the work tree's
4748 * path prefix to obtain the corresponding in-repository path.
4752 prefix
= got_worktree_get_path_prefix(worktree
);
4753 if (asprintf(&in_repo_path
, "%s%s%s", prefix
,
4754 (path
[0] != '\0') ? "/" : "", path
) == -1) {
4755 error
= got_error_from_errno("asprintf");
4760 error
= got_repo_map_path(&in_repo_path
, repo
,
4766 path
= in_repo_path
;
4770 /* Release work tree lock. */
4771 got_worktree_close(worktree
);
4775 if (search_pattern
&& show_patch
) {
4776 tmpfile
= got_opentemp();
4777 if (tmpfile
== NULL
) {
4778 error
= got_error_from_errno("got_opentemp");
4783 error
= print_commits(start_id
, end_id
, repo
, path
? path
: "",
4784 show_changed_paths
, show_diffstat
, show_patch
, search_pattern
,
4785 diff_context
, limit
, log_branches
, reverse_display_order
,
4786 refs_idmap
, one_line
, tmpfile
);
4792 got_worktree_close(worktree
);
4794 const struct got_error
*close_err
= got_repo_close(repo
);
4799 const struct got_error
*pack_err
=
4800 got_repo_pack_fds_close(pack_fds
);
4805 got_reflist_object_id_map_free(refs_idmap
);
4806 if (tmpfile
&& fclose(tmpfile
) == EOF
&& error
== NULL
)
4807 error
= got_error_from_errno("fclose");
4808 got_ref_list_free(&refs
);
4815 fprintf(stderr
, "usage: %s diff [-adPsw] [-C number] [-c commit] "
4816 "[-r repository-path] [object1 object2 | path ...]\n",
4821 struct print_diff_arg
{
4822 struct got_repository
*repo
;
4823 struct got_worktree
*worktree
;
4824 struct got_diffstat_cb_arg
*diffstat
;
4829 enum got_diff_algorithm diff_algo
;
4830 int ignore_whitespace
;
4831 int force_text_diff
;
4838 * Create a file which contains the target path of a symlink so we can feed
4839 * it as content to the diff engine.
4841 static const struct got_error
*
4842 get_symlink_target_file(int *fd
, int dirfd
, const char *de_name
,
4843 const char *abspath
)
4845 const struct got_error
*err
= NULL
;
4846 char target_path
[PATH_MAX
];
4847 ssize_t target_len
, outlen
;
4852 target_len
= readlinkat(dirfd
, de_name
, target_path
, PATH_MAX
);
4853 if (target_len
== -1)
4854 return got_error_from_errno2("readlinkat", abspath
);
4856 target_len
= readlink(abspath
, target_path
, PATH_MAX
);
4857 if (target_len
== -1)
4858 return got_error_from_errno2("readlink", abspath
);
4861 *fd
= got_opentempfd();
4863 return got_error_from_errno("got_opentempfd");
4865 outlen
= write(*fd
, target_path
, target_len
);
4867 err
= got_error_from_errno("got_opentempfd");
4871 if (lseek(*fd
, 0, SEEK_SET
) == -1) {
4872 err
= got_error_from_errno2("lseek", abspath
);
4883 static const struct got_error
*
4884 print_diff(void *arg
, unsigned char status
, unsigned char staged_status
,
4885 const char *path
, struct got_object_id
*blob_id
,
4886 struct got_object_id
*staged_blob_id
, struct got_object_id
*commit_id
,
4887 int dirfd
, const char *de_name
)
4889 struct print_diff_arg
*a
= arg
;
4890 const struct got_error
*err
= NULL
;
4891 struct got_blob_object
*blob1
= NULL
;
4892 int fd
= -1, fd1
= -1, fd2
= -1;
4894 char *abspath
= NULL
, *label1
= NULL
;
4899 memset(&sb
, 0, sizeof(sb
));
4901 if (a
->diff_staged
) {
4902 if (staged_status
!= GOT_STATUS_MODIFY
&&
4903 staged_status
!= GOT_STATUS_ADD
&&
4904 staged_status
!= GOT_STATUS_DELETE
)
4907 if (staged_status
== GOT_STATUS_DELETE
)
4909 if (status
== GOT_STATUS_NONEXISTENT
)
4910 return got_error_set_errno(ENOENT
, path
);
4911 if (status
!= GOT_STATUS_MODIFY
&&
4912 status
!= GOT_STATUS_ADD
&&
4913 status
!= GOT_STATUS_DELETE
&&
4914 status
!= GOT_STATUS_CONFLICT
)
4918 err
= got_opentemp_truncate(a
->f1
);
4920 return got_error_from_errno("got_opentemp_truncate");
4921 err
= got_opentemp_truncate(a
->f2
);
4923 return got_error_from_errno("got_opentemp_truncate");
4925 if (!a
->header_shown
) {
4926 if (fprintf(a
->outfile
, "diff %s%s\n",
4927 a
->diff_staged
? "-s " : "",
4928 got_worktree_get_root_path(a
->worktree
)) < 0) {
4929 err
= got_error_from_errno("fprintf");
4932 if (fprintf(a
->outfile
, "commit - %s\n", a
->id_str
) < 0) {
4933 err
= got_error_from_errno("fprintf");
4936 if (fprintf(a
->outfile
, "path + %s%s\n",
4937 got_worktree_get_root_path(a
->worktree
),
4938 a
->diff_staged
? " (staged changes)" : "") < 0) {
4939 err
= got_error_from_errno("fprintf");
4942 a
->header_shown
= 1;
4945 if (a
->diff_staged
) {
4946 const char *label1
= NULL
, *label2
= NULL
;
4947 switch (staged_status
) {
4948 case GOT_STATUS_MODIFY
:
4952 case GOT_STATUS_ADD
:
4955 case GOT_STATUS_DELETE
:
4959 return got_error(GOT_ERR_FILE_STATUS
);
4961 fd1
= got_opentempfd();
4963 err
= got_error_from_errno("got_opentempfd");
4966 fd2
= got_opentempfd();
4968 err
= got_error_from_errno("got_opentempfd");
4971 err
= got_diff_objects_as_blobs(NULL
, NULL
, a
->f1
, a
->f2
,
4972 fd1
, fd2
, blob_id
, staged_blob_id
, label1
, label2
,
4973 a
->diff_algo
, a
->diff_context
, a
->ignore_whitespace
,
4974 a
->force_text_diff
, a
->diffstat
, a
->repo
, a
->outfile
);
4978 fd1
= got_opentempfd();
4980 err
= got_error_from_errno("got_opentempfd");
4984 if (staged_status
== GOT_STATUS_ADD
||
4985 staged_status
== GOT_STATUS_MODIFY
) {
4987 err
= got_object_open_as_blob(&blob1
, a
->repo
, staged_blob_id
,
4991 err
= got_object_id_str(&id_str
, staged_blob_id
);
4994 if (asprintf(&label1
, "%s (staged)", id_str
) == -1) {
4995 err
= got_error_from_errno("asprintf");
5000 } else if (status
!= GOT_STATUS_ADD
) {
5001 err
= got_object_open_as_blob(&blob1
, a
->repo
, blob_id
, 8192,
5007 if (status
!= GOT_STATUS_DELETE
) {
5008 if (asprintf(&abspath
, "%s/%s",
5009 got_worktree_get_root_path(a
->worktree
), path
) == -1) {
5010 err
= got_error_from_errno("asprintf");
5015 fd
= openat(dirfd
, de_name
,
5016 O_RDONLY
| O_NOFOLLOW
| O_CLOEXEC
);
5018 if (!got_err_open_nofollow_on_symlink()) {
5019 err
= got_error_from_errno2("openat",
5023 err
= get_symlink_target_file(&fd
, dirfd
,
5029 fd
= open(abspath
, O_RDONLY
| O_NOFOLLOW
| O_CLOEXEC
);
5031 if (!got_err_open_nofollow_on_symlink()) {
5032 err
= got_error_from_errno2("open",
5036 err
= get_symlink_target_file(&fd
, dirfd
,
5042 if (fstatat(fd
, abspath
, &sb
, AT_SYMLINK_NOFOLLOW
) == -1) {
5043 err
= got_error_from_errno2("fstatat", abspath
);
5046 f2
= fdopen(fd
, "r");
5048 err
= got_error_from_errno2("fdopen", abspath
);
5056 err
= got_object_blob_dump_to_file(&size1
, NULL
, NULL
,
5062 err
= got_diff_blob_file(blob1
, a
->f1
, size1
, label1
, f2
? f2
: a
->f2
,
5063 f2_exists
, &sb
, path
, GOT_DIFF_ALGORITHM_PATIENCE
, a
->diff_context
,
5064 a
->ignore_whitespace
, a
->force_text_diff
, a
->diffstat
, a
->outfile
);
5066 if (fd1
!= -1 && close(fd1
) == -1 && err
== NULL
)
5067 err
= got_error_from_errno("close");
5068 if (fd2
!= -1 && close(fd2
) == -1 && err
== NULL
)
5069 err
= got_error_from_errno("close");
5071 got_object_blob_close(blob1
);
5072 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
5073 err
= got_error_from_errno("close");
5074 if (f2
&& fclose(f2
) == EOF
&& err
== NULL
)
5075 err
= got_error_from_errno("fclose");
5080 static const struct got_error
*
5081 cmd_diff(int argc
, char *argv
[])
5083 const struct got_error
*error
;
5084 struct got_repository
*repo
= NULL
;
5085 struct got_worktree
*worktree
= NULL
;
5086 char *cwd
= NULL
, *repo_path
= NULL
;
5087 const char *commit_args
[2] = { NULL
, NULL
};
5088 int ncommit_args
= 0;
5089 struct got_object_id
*ids
[2] = { NULL
, NULL
};
5090 char *labels
[2] = { NULL
, NULL
};
5091 int type1
= GOT_OBJ_TYPE_ANY
, type2
= GOT_OBJ_TYPE_ANY
;
5092 int diff_context
= 3, diff_staged
= 0, ignore_whitespace
= 0, ch
, i
;
5093 int force_text_diff
= 0, force_path
= 0, rflag
= 0, show_diffstat
= 0;
5095 struct got_reflist_head refs
;
5096 struct got_pathlist_head diffstat_paths
, paths
;
5097 FILE *f1
= NULL
, *f2
= NULL
, *outfile
= NULL
;
5098 int fd1
= -1, fd2
= -1;
5099 int *pack_fds
= NULL
;
5100 struct got_diffstat_cb_arg dsa
;
5102 memset(&dsa
, 0, sizeof(dsa
));
5106 TAILQ_INIT(&diffstat_paths
);
5109 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
5114 while ((ch
= getopt(argc
, argv
, "aC:c:dPr:sw")) != -1) {
5117 force_text_diff
= 1;
5120 diff_context
= strtonum(optarg
, 0, GOT_DIFF_MAX_CONTEXT
,
5123 errx(1, "number of context lines is %s: %s",
5127 if (ncommit_args
>= 2)
5128 errx(1, "too many -c options used");
5129 commit_args
[ncommit_args
++] = optarg
;
5138 repo_path
= realpath(optarg
, NULL
);
5139 if (repo_path
== NULL
)
5140 return got_error_from_errno2("realpath",
5142 got_path_strip_trailing_slashes(repo_path
);
5149 ignore_whitespace
= 1;
5160 cwd
= getcwd(NULL
, 0);
5162 error
= got_error_from_errno("getcwd");
5166 error
= got_repo_pack_fds_open(&pack_fds
);
5170 if (repo_path
== NULL
) {
5171 error
= got_worktree_open(&worktree
, cwd
);
5172 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
5178 strdup(got_worktree_get_repo_path(worktree
));
5179 if (repo_path
== NULL
) {
5180 error
= got_error_from_errno("strdup");
5184 repo_path
= strdup(cwd
);
5185 if (repo_path
== NULL
) {
5186 error
= got_error_from_errno("strdup");
5192 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
5197 if (show_diffstat
) {
5198 dsa
.paths
= &diffstat_paths
;
5199 dsa
.force_text
= force_text_diff
;
5200 dsa
.ignore_ws
= ignore_whitespace
;
5201 dsa
.diff_algo
= GOT_DIFF_ALGORITHM_PATIENCE
;
5204 if (rflag
|| worktree
== NULL
|| ncommit_args
> 0) {
5206 error
= got_error_msg(GOT_ERR_NOT_IMPL
,
5207 "-P option can only be used when diffing "
5212 error
= got_error_msg(GOT_ERR_NOT_IMPL
,
5213 "-s option can only be used when diffing "
5219 error
= apply_unveil(got_repo_get_path(repo
), 1,
5220 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
5224 if ((!force_path
&& argc
== 2) || ncommit_args
> 0) {
5225 int obj_type
= (ncommit_args
> 0 ?
5226 GOT_OBJ_TYPE_COMMIT
: GOT_OBJ_TYPE_ANY
);
5227 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
,
5231 for (i
= 0; i
< (ncommit_args
> 0 ? ncommit_args
: argc
); i
++) {
5233 if (ncommit_args
> 0)
5234 arg
= commit_args
[i
];
5237 error
= got_repo_match_object_id(&ids
[i
], &labels
[i
],
5238 arg
, obj_type
, &refs
, repo
);
5240 if (error
->code
!= GOT_ERR_NOT_REF
&&
5241 error
->code
!= GOT_ERR_NO_OBJ
)
5243 if (ncommit_args
> 0)
5251 f1
= got_opentemp();
5253 error
= got_error_from_errno("got_opentemp");
5257 f2
= got_opentemp();
5259 error
= got_error_from_errno("got_opentemp");
5263 outfile
= got_opentemp();
5264 if (outfile
== NULL
) {
5265 error
= got_error_from_errno("got_opentemp");
5269 if (ncommit_args
== 0 && (ids
[0] == NULL
|| ids
[1] == NULL
)) {
5270 struct print_diff_arg arg
;
5273 if (worktree
== NULL
) {
5274 if (argc
== 2 && ids
[0] == NULL
) {
5275 error
= got_error_path(argv
[0], GOT_ERR_NO_OBJ
);
5277 } else if (argc
== 2 && ids
[1] == NULL
) {
5278 error
= got_error_path(argv
[1], GOT_ERR_NO_OBJ
);
5280 } else if (argc
> 0) {
5281 error
= got_error_fmt(GOT_ERR_NOT_WORKTREE
,
5282 "%s", "specified paths cannot be resolved");
5285 error
= got_error(GOT_ERR_NOT_WORKTREE
);
5290 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
,
5295 error
= got_object_id_str(&id_str
,
5296 got_worktree_get_base_commit_id(worktree
));
5300 arg
.worktree
= worktree
;
5301 arg
.diff_algo
= GOT_DIFF_ALGORITHM_PATIENCE
;
5302 arg
.diff_context
= diff_context
;
5303 arg
.id_str
= id_str
;
5304 arg
.header_shown
= 0;
5305 arg
.diff_staged
= diff_staged
;
5306 arg
.ignore_whitespace
= ignore_whitespace
;
5307 arg
.force_text_diff
= force_text_diff
;
5308 arg
.diffstat
= show_diffstat
? &dsa
: NULL
;
5311 arg
.outfile
= outfile
;
5313 error
= got_worktree_status(worktree
, &paths
, repo
, 0,
5314 print_diff
, &arg
, check_cancelled
, NULL
);
5319 if (show_diffstat
&& dsa
.nfiles
> 0) {
5322 if (asprintf(&header
, "diffstat %s%s",
5323 diff_staged
? "-s " : "",
5324 got_worktree_get_root_path(worktree
)) == -1) {
5325 error
= got_error_from_errno("asprintf");
5329 error
= print_diffstat(&dsa
, header
);
5335 error
= printfile(outfile
);
5339 if (ncommit_args
== 1) {
5340 struct got_commit_object
*commit
;
5341 error
= got_object_open_as_commit(&commit
, repo
, ids
[0]);
5345 labels
[1] = labels
[0];
5347 if (got_object_commit_get_nparents(commit
) > 0) {
5348 const struct got_object_id_queue
*pids
;
5349 struct got_object_qid
*pid
;
5350 pids
= got_object_commit_get_parent_ids(commit
);
5351 pid
= STAILQ_FIRST(pids
);
5352 ids
[0] = got_object_id_dup(&pid
->id
);
5353 if (ids
[0] == NULL
) {
5354 error
= got_error_from_errno(
5355 "got_object_id_dup");
5356 got_object_commit_close(commit
);
5359 error
= got_object_id_str(&labels
[0], ids
[0]);
5361 got_object_commit_close(commit
);
5366 labels
[0] = strdup("/dev/null");
5367 if (labels
[0] == NULL
) {
5368 error
= got_error_from_errno("strdup");
5369 got_object_commit_close(commit
);
5374 got_object_commit_close(commit
);
5377 if (ncommit_args
== 0 && argc
> 2) {
5378 error
= got_error_msg(GOT_ERR_BAD_PATH
,
5379 "path arguments cannot be used when diffing two objects");
5384 error
= got_object_get_type(&type1
, repo
, ids
[0]);
5389 error
= got_object_get_type(&type2
, repo
, ids
[1]);
5392 if (type1
!= GOT_OBJ_TYPE_ANY
&& type1
!= type2
) {
5393 error
= got_error(GOT_ERR_OBJ_TYPE
);
5396 if (type1
== GOT_OBJ_TYPE_BLOB
&& argc
> 2) {
5397 error
= got_error_msg(GOT_ERR_OBJ_TYPE
,
5398 "path arguments cannot be used when diffing blobs");
5402 for (i
= 0; ncommit_args
> 0 && i
< argc
; i
++) {
5404 struct got_pathlist_entry
*new;
5408 error
= got_worktree_resolve_path(&p
, worktree
,
5412 prefix
= got_worktree_get_path_prefix(worktree
);
5413 while (prefix
[0] == '/')
5415 if (asprintf(&in_repo_path
, "%s%s%s", prefix
,
5416 (p
[0] != '\0' && prefix
[0] != '\0') ? "/" : "",
5418 error
= got_error_from_errno("asprintf");
5424 char *mapped_path
, *s
;
5425 error
= got_repo_map_path(&mapped_path
, repo
, argv
[i
]);
5431 in_repo_path
= strdup(s
);
5432 if (in_repo_path
== NULL
) {
5433 error
= got_error_from_errno("asprintf");
5440 error
= got_pathlist_insert(&new, &paths
, in_repo_path
, NULL
);
5441 if (error
|| new == NULL
/* duplicate */)
5448 /* Release work tree lock. */
5449 got_worktree_close(worktree
);
5453 fd1
= got_opentempfd();
5455 error
= got_error_from_errno("got_opentempfd");
5459 fd2
= got_opentempfd();
5461 error
= got_error_from_errno("got_opentempfd");
5465 switch (type1
== GOT_OBJ_TYPE_ANY
? type2
: type1
) {
5466 case GOT_OBJ_TYPE_BLOB
:
5467 error
= got_diff_objects_as_blobs(NULL
, NULL
, f1
, f2
,
5468 fd1
, fd2
, ids
[0], ids
[1], NULL
, NULL
,
5469 GOT_DIFF_ALGORITHM_PATIENCE
, diff_context
,
5470 ignore_whitespace
, force_text_diff
,
5471 show_diffstat
? &dsa
: NULL
, repo
, outfile
);
5473 case GOT_OBJ_TYPE_TREE
:
5474 error
= got_diff_objects_as_trees(NULL
, NULL
, f1
, f2
, fd1
, fd2
,
5475 ids
[0], ids
[1], &paths
, "", "",
5476 GOT_DIFF_ALGORITHM_PATIENCE
, diff_context
,
5477 ignore_whitespace
, force_text_diff
,
5478 show_diffstat
? &dsa
: NULL
, repo
, outfile
);
5480 case GOT_OBJ_TYPE_COMMIT
:
5481 fprintf(outfile
, "diff %s %s\n", labels
[0], labels
[1]);
5482 error
= got_diff_objects_as_commits(NULL
, NULL
, f1
, f2
,
5483 fd1
, fd2
, ids
[0], ids
[1], &paths
,
5484 GOT_DIFF_ALGORITHM_PATIENCE
, diff_context
,
5485 ignore_whitespace
, force_text_diff
,
5486 show_diffstat
? &dsa
: NULL
, repo
, outfile
);
5489 error
= got_error(GOT_ERR_OBJ_TYPE
);
5494 if (show_diffstat
&& dsa
.nfiles
> 0) {
5495 char *header
= NULL
;
5497 if (asprintf(&header
, "diffstat %s %s",
5498 labels
[0], labels
[1]) == -1) {
5499 error
= got_error_from_errno("asprintf");
5503 error
= print_diffstat(&dsa
, header
);
5509 error
= printfile(outfile
);
5517 got_worktree_close(worktree
);
5519 const struct got_error
*close_err
= got_repo_close(repo
);
5524 const struct got_error
*pack_err
=
5525 got_repo_pack_fds_close(pack_fds
);
5529 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
5530 got_pathlist_free(&diffstat_paths
, GOT_PATHLIST_FREE_ALL
);
5531 got_ref_list_free(&refs
);
5532 if (outfile
&& fclose(outfile
) == EOF
&& error
== NULL
)
5533 error
= got_error_from_errno("fclose");
5534 if (f1
&& fclose(f1
) == EOF
&& error
== NULL
)
5535 error
= got_error_from_errno("fclose");
5536 if (f2
&& fclose(f2
) == EOF
&& error
== NULL
)
5537 error
= got_error_from_errno("fclose");
5538 if (fd1
!= -1 && close(fd1
) == -1 && error
== NULL
)
5539 error
= got_error_from_errno("close");
5540 if (fd2
!= -1 && close(fd2
) == -1 && error
== NULL
)
5541 error
= got_error_from_errno("close");
5549 "usage: %s blame [-c commit] [-r repository-path] path\n",
5558 char datebuf
[11]; /* YYYY-MM-DD + NUL */
5561 struct blame_cb_args
{
5562 struct blame_line
*lines
;
5566 off_t
*line_offsets
;
5568 struct got_repository
*repo
;
5571 static const struct got_error
*
5572 blame_cb(void *arg
, int nlines
, int lineno
,
5573 struct got_commit_object
*commit
, struct got_object_id
*id
)
5575 const struct got_error
*err
= NULL
;
5576 struct blame_cb_args
*a
= arg
;
5577 struct blame_line
*bline
;
5579 size_t linesize
= 0;
5582 time_t committer_time
;
5584 if (nlines
!= a
->nlines
||
5585 (lineno
!= -1 && lineno
< 1) || lineno
> a
->nlines
)
5586 return got_error(GOT_ERR_RANGE
);
5588 if (sigint_received
)
5589 return got_error(GOT_ERR_ITER_COMPLETED
);
5592 return NULL
; /* no change in this commit */
5594 /* Annotate this line. */
5595 bline
= &a
->lines
[lineno
- 1];
5596 if (bline
->annotated
)
5598 err
= got_object_id_str(&bline
->id_str
, id
);
5602 bline
->committer
= strdup(got_object_commit_get_committer(commit
));
5603 if (bline
->committer
== NULL
) {
5604 err
= got_error_from_errno("strdup");
5608 committer_time
= got_object_commit_get_committer_time(commit
);
5609 if (gmtime_r(&committer_time
, &tm
) == NULL
)
5610 return got_error_from_errno("gmtime_r");
5611 if (strftime(bline
->datebuf
, sizeof(bline
->datebuf
), "%G-%m-%d",
5613 err
= got_error(GOT_ERR_NO_SPACE
);
5616 bline
->annotated
= 1;
5618 /* Print lines annotated so far. */
5619 bline
= &a
->lines
[a
->lineno_cur
- 1];
5620 if (!bline
->annotated
)
5623 offset
= a
->line_offsets
[a
->lineno_cur
- 1];
5624 if (fseeko(a
->f
, offset
, SEEK_SET
) == -1) {
5625 err
= got_error_from_errno("fseeko");
5629 while (a
->lineno_cur
<= a
->nlines
&& bline
->annotated
) {
5630 char *smallerthan
, *at
, *nl
, *committer
;
5633 if (getline(&line
, &linesize
, a
->f
) == -1) {
5635 err
= got_error_from_errno("getline");
5639 committer
= bline
->committer
;
5640 smallerthan
= strchr(committer
, '<');
5641 if (smallerthan
&& smallerthan
[1] != '\0')
5642 committer
= smallerthan
+ 1;
5643 at
= strchr(committer
, '@');
5646 len
= strlen(committer
);
5648 committer
[8] = '\0';
5650 nl
= strchr(line
, '\n');
5653 printf("%.*d) %.8s %s %-8s %s\n", a
->nlines_prec
, a
->lineno_cur
,
5654 bline
->id_str
, bline
->datebuf
, committer
, line
);
5657 bline
= &a
->lines
[a
->lineno_cur
- 1];
5664 static const struct got_error
*
5665 cmd_blame(int argc
, char *argv
[])
5667 const struct got_error
*error
;
5668 struct got_repository
*repo
= NULL
;
5669 struct got_worktree
*worktree
= NULL
;
5670 char *path
, *cwd
= NULL
, *repo_path
= NULL
, *in_repo_path
= NULL
;
5671 char *link_target
= NULL
;
5672 struct got_object_id
*obj_id
= NULL
;
5673 struct got_object_id
*commit_id
= NULL
;
5674 struct got_commit_object
*commit
= NULL
;
5675 struct got_blob_object
*blob
= NULL
;
5676 char *commit_id_str
= NULL
;
5677 struct blame_cb_args bca
;
5678 int ch
, obj_type
, i
, fd1
= -1, fd2
= -1, fd3
= -1;
5680 int *pack_fds
= NULL
;
5681 FILE *f1
= NULL
, *f2
= NULL
;
5683 fd1
= got_opentempfd();
5685 return got_error_from_errno("got_opentempfd");
5687 memset(&bca
, 0, sizeof(bca
));
5690 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
5695 while ((ch
= getopt(argc
, argv
, "c:r:")) != -1) {
5698 commit_id_str
= optarg
;
5701 repo_path
= realpath(optarg
, NULL
);
5702 if (repo_path
== NULL
)
5703 return got_error_from_errno2("realpath",
5705 got_path_strip_trailing_slashes(repo_path
);
5721 cwd
= getcwd(NULL
, 0);
5723 error
= got_error_from_errno("getcwd");
5727 error
= got_repo_pack_fds_open(&pack_fds
);
5731 if (repo_path
== NULL
) {
5732 error
= got_worktree_open(&worktree
, cwd
);
5733 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
5739 strdup(got_worktree_get_repo_path(worktree
));
5740 if (repo_path
== NULL
) {
5741 error
= got_error_from_errno("strdup");
5746 repo_path
= strdup(cwd
);
5747 if (repo_path
== NULL
) {
5748 error
= got_error_from_errno("strdup");
5754 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
5759 const char *prefix
= got_worktree_get_path_prefix(worktree
);
5762 error
= got_worktree_resolve_path(&p
, worktree
, path
);
5765 if (asprintf(&in_repo_path
, "%s%s%s", prefix
,
5766 (p
[0] != '\0' && !got_path_is_root_dir(prefix
)) ? "/" : "",
5768 error
= got_error_from_errno("asprintf");
5773 error
= apply_unveil(got_repo_get_path(repo
), 1, NULL
);
5775 error
= apply_unveil(got_repo_get_path(repo
), 1, NULL
);
5778 error
= got_repo_map_path(&in_repo_path
, repo
, path
);
5783 if (commit_id_str
== NULL
) {
5784 struct got_reference
*head_ref
;
5785 error
= got_ref_open(&head_ref
, repo
, worktree
?
5786 got_worktree_get_head_ref_name(worktree
) : GOT_REF_HEAD
, 0);
5789 error
= got_ref_resolve(&commit_id
, repo
, head_ref
);
5790 got_ref_close(head_ref
);
5794 struct got_reflist_head refs
;
5796 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
,
5800 error
= got_repo_match_object_id(&commit_id
, NULL
,
5801 commit_id_str
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
5802 got_ref_list_free(&refs
);
5808 /* Release work tree lock. */
5809 got_worktree_close(worktree
);
5813 error
= got_object_open_as_commit(&commit
, repo
, commit_id
);
5817 error
= got_object_resolve_symlinks(&link_target
, in_repo_path
,
5822 error
= got_object_id_by_path(&obj_id
, repo
, commit
,
5823 link_target
? link_target
: in_repo_path
);
5827 error
= got_object_get_type(&obj_type
, repo
, obj_id
);
5831 if (obj_type
!= GOT_OBJ_TYPE_BLOB
) {
5832 error
= got_error_path(link_target
? link_target
: in_repo_path
,
5837 error
= got_object_open_as_blob(&blob
, repo
, obj_id
, 8192, fd1
);
5840 bca
.f
= got_opentemp();
5841 if (bca
.f
== NULL
) {
5842 error
= got_error_from_errno("got_opentemp");
5845 error
= got_object_blob_dump_to_file(&filesize
, &bca
.nlines
,
5846 &bca
.line_offsets
, bca
.f
, blob
);
5847 if (error
|| bca
.nlines
== 0)
5850 /* Don't include \n at EOF in the blame line count. */
5851 if (bca
.line_offsets
[bca
.nlines
- 1] == filesize
)
5854 bca
.lines
= calloc(bca
.nlines
, sizeof(*bca
.lines
));
5855 if (bca
.lines
== NULL
) {
5856 error
= got_error_from_errno("calloc");
5860 bca
.nlines_prec
= 0;
5868 fd2
= got_opentempfd();
5870 error
= got_error_from_errno("got_opentempfd");
5873 fd3
= got_opentempfd();
5875 error
= got_error_from_errno("got_opentempfd");
5878 f1
= got_opentemp();
5880 error
= got_error_from_errno("got_opentemp");
5883 f2
= got_opentemp();
5885 error
= got_error_from_errno("got_opentemp");
5888 error
= got_blame(link_target
? link_target
: in_repo_path
, commit_id
,
5889 repo
, GOT_DIFF_ALGORITHM_PATIENCE
, blame_cb
, &bca
,
5890 check_cancelled
, NULL
, fd2
, fd3
, f1
, f2
);
5899 got_object_commit_close(commit
);
5901 if (fd1
!= -1 && close(fd1
) == -1 && error
== NULL
)
5902 error
= got_error_from_errno("close");
5903 if (fd2
!= -1 && close(fd2
) == -1 && error
== NULL
)
5904 error
= got_error_from_errno("close");
5905 if (fd3
!= -1 && close(fd3
) == -1 && error
== NULL
)
5906 error
= got_error_from_errno("close");
5907 if (f1
&& fclose(f1
) == EOF
&& error
== NULL
)
5908 error
= got_error_from_errno("fclose");
5909 if (f2
&& fclose(f2
) == EOF
&& error
== NULL
)
5910 error
= got_error_from_errno("fclose");
5913 got_object_blob_close(blob
);
5915 got_worktree_close(worktree
);
5917 const struct got_error
*close_err
= got_repo_close(repo
);
5922 const struct got_error
*pack_err
=
5923 got_repo_pack_fds_close(pack_fds
);
5928 for (i
= 0; i
< bca
.nlines
; i
++) {
5929 struct blame_line
*bline
= &bca
.lines
[i
];
5930 free(bline
->id_str
);
5931 free(bline
->committer
);
5935 free(bca
.line_offsets
);
5936 if (bca
.f
&& fclose(bca
.f
) == EOF
&& error
== NULL
)
5937 error
= got_error_from_errno("fclose");
5944 fprintf(stderr
, "usage: %s tree [-iR] [-c commit] [-r repository-path] "
5945 "[path]\n", getprogname());
5949 static const struct got_error
*
5950 print_entry(struct got_tree_entry
*te
, const char *id
, const char *path
,
5951 const char *root_path
, struct got_repository
*repo
)
5953 const struct got_error
*err
= NULL
;
5954 int is_root_path
= (strcmp(path
, root_path
) == 0);
5955 const char *modestr
= "";
5956 mode_t mode
= got_tree_entry_get_mode(te
);
5957 char *link_target
= NULL
;
5959 path
+= strlen(root_path
);
5960 while (path
[0] == '/')
5963 if (got_object_tree_entry_is_submodule(te
))
5965 else if (S_ISLNK(mode
)) {
5968 err
= got_tree_entry_get_symlink_target(&link_target
, te
, repo
);
5971 for (i
= 0; i
< strlen(link_target
); i
++) {
5972 if (!isprint((unsigned char)link_target
[i
]))
5973 link_target
[i
] = '?';
5978 else if (S_ISDIR(mode
))
5980 else if (mode
& S_IXUSR
)
5983 printf("%s%s%s%s%s%s%s\n", id
? id
: "", path
,
5984 is_root_path
? "" : "/", got_tree_entry_get_name(te
), modestr
,
5985 link_target
? " -> ": "", link_target
? link_target
: "");
5991 static const struct got_error
*
5992 print_tree(const char *path
, struct got_commit_object
*commit
,
5993 int show_ids
, int recurse
, const char *root_path
,
5994 struct got_repository
*repo
)
5996 const struct got_error
*err
= NULL
;
5997 struct got_object_id
*tree_id
= NULL
;
5998 struct got_tree_object
*tree
= NULL
;
6001 err
= got_object_id_by_path(&tree_id
, repo
, commit
, path
);
6005 err
= got_object_open_as_tree(&tree
, repo
, tree_id
);
6008 nentries
= got_object_tree_get_nentries(tree
);
6009 for (i
= 0; i
< nentries
; i
++) {
6010 struct got_tree_entry
*te
;
6013 if (sigint_received
|| sigpipe_received
)
6016 te
= got_object_tree_get_entry(tree
, i
);
6019 err
= got_object_id_str(&id_str
,
6020 got_tree_entry_get_id(te
));
6023 if (asprintf(&id
, "%s ", id_str
) == -1) {
6024 err
= got_error_from_errno("asprintf");
6030 err
= print_entry(te
, id
, path
, root_path
, repo
);
6035 if (recurse
&& S_ISDIR(got_tree_entry_get_mode(te
))) {
6037 if (asprintf(&child_path
, "%s%s%s", path
,
6038 path
[0] == '/' && path
[1] == '\0' ? "" : "/",
6039 got_tree_entry_get_name(te
)) == -1) {
6040 err
= got_error_from_errno("asprintf");
6043 err
= print_tree(child_path
, commit
, show_ids
, 1,
6052 got_object_tree_close(tree
);
6057 static const struct got_error
*
6058 cmd_tree(int argc
, char *argv
[])
6060 const struct got_error
*error
;
6061 struct got_repository
*repo
= NULL
;
6062 struct got_worktree
*worktree
= NULL
;
6063 const char *path
, *refname
= NULL
;
6064 char *cwd
= NULL
, *repo_path
= NULL
, *in_repo_path
= NULL
;
6065 struct got_object_id
*commit_id
= NULL
;
6066 struct got_commit_object
*commit
= NULL
;
6067 char *commit_id_str
= NULL
;
6068 int show_ids
= 0, recurse
= 0;
6070 int *pack_fds
= NULL
;
6073 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
6078 while ((ch
= getopt(argc
, argv
, "c:iRr:")) != -1) {
6081 commit_id_str
= optarg
;
6090 repo_path
= realpath(optarg
, NULL
);
6091 if (repo_path
== NULL
)
6092 return got_error_from_errno2("realpath",
6094 got_path_strip_trailing_slashes(repo_path
);
6112 cwd
= getcwd(NULL
, 0);
6114 error
= got_error_from_errno("getcwd");
6118 error
= got_repo_pack_fds_open(&pack_fds
);
6122 if (repo_path
== NULL
) {
6123 error
= got_worktree_open(&worktree
, cwd
);
6124 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
6130 strdup(got_worktree_get_repo_path(worktree
));
6131 if (repo_path
== NULL
)
6132 error
= got_error_from_errno("strdup");
6136 repo_path
= strdup(cwd
);
6137 if (repo_path
== NULL
) {
6138 error
= got_error_from_errno("strdup");
6144 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
6149 const char *prefix
= got_worktree_get_path_prefix(worktree
);
6154 error
= got_worktree_resolve_path(&p
, worktree
, path
);
6157 if (asprintf(&in_repo_path
, "%s%s%s", prefix
,
6158 (p
[0] != '\0' && !got_path_is_root_dir(prefix
)) ? "/" : "",
6160 error
= got_error_from_errno("asprintf");
6165 error
= apply_unveil(got_repo_get_path(repo
), 1, NULL
);
6169 error
= apply_unveil(got_repo_get_path(repo
), 1, NULL
);
6174 error
= got_repo_map_path(&in_repo_path
, repo
, path
);
6179 if (commit_id_str
== NULL
) {
6180 struct got_reference
*head_ref
;
6182 refname
= got_worktree_get_head_ref_name(worktree
);
6184 refname
= GOT_REF_HEAD
;
6185 error
= got_ref_open(&head_ref
, repo
, refname
, 0);
6188 error
= got_ref_resolve(&commit_id
, repo
, head_ref
);
6189 got_ref_close(head_ref
);
6193 struct got_reflist_head refs
;
6195 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
,
6199 error
= got_repo_match_object_id(&commit_id
, NULL
,
6200 commit_id_str
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
6201 got_ref_list_free(&refs
);
6207 /* Release work tree lock. */
6208 got_worktree_close(worktree
);
6212 error
= got_object_open_as_commit(&commit
, repo
, commit_id
);
6216 error
= print_tree(in_repo_path
, commit
, show_ids
, recurse
,
6217 in_repo_path
, repo
);
6224 got_object_commit_close(commit
);
6226 got_worktree_close(worktree
);
6228 const struct got_error
*close_err
= got_repo_close(repo
);
6233 const struct got_error
*pack_err
=
6234 got_repo_pack_fds_close(pack_fds
);
6244 fprintf(stderr
, "usage: %s status [-I] [-S status-codes] "
6245 "[-s status-codes] [path ...]\n", getprogname());
6249 struct got_status_arg
{
6254 static const struct got_error
*
6255 print_status(void *arg
, unsigned char status
, unsigned char staged_status
,
6256 const char *path
, struct got_object_id
*blob_id
,
6257 struct got_object_id
*staged_blob_id
, struct got_object_id
*commit_id
,
6258 int dirfd
, const char *de_name
)
6260 struct got_status_arg
*st
= arg
;
6262 if (status
== staged_status
&& (status
== GOT_STATUS_DELETE
))
6263 status
= GOT_STATUS_NO_CHANGE
;
6264 if (st
!= NULL
&& st
->status_codes
) {
6265 size_t ncodes
= strlen(st
->status_codes
);
6268 for (i
= 0; i
< ncodes
; i
++) {
6270 if (status
== st
->status_codes
[i
] ||
6271 staged_status
== st
->status_codes
[i
]) {
6276 if (status
== st
->status_codes
[i
] ||
6277 staged_status
== st
->status_codes
[i
])
6282 if (st
->suppress
&& j
== 0)
6289 printf("%c%c %s\n", status
, staged_status
, path
);
6293 static const struct got_error
*
6294 cmd_status(int argc
, char *argv
[])
6296 const struct got_error
*error
= NULL
;
6297 struct got_repository
*repo
= NULL
;
6298 struct got_worktree
*worktree
= NULL
;
6299 struct got_status_arg st
;
6301 struct got_pathlist_head paths
;
6302 int ch
, i
, no_ignores
= 0;
6303 int *pack_fds
= NULL
;
6307 memset(&st
, 0, sizeof(st
));
6308 st
.status_codes
= NULL
;
6312 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
6317 while ((ch
= getopt(argc
, argv
, "IS:s:")) != -1) {
6323 if (st
.status_codes
!= NULL
&& st
.suppress
== 0)
6324 option_conflict('S', 's');
6328 for (i
= 0; i
< strlen(optarg
); i
++) {
6329 switch (optarg
[i
]) {
6330 case GOT_STATUS_MODIFY
:
6331 case GOT_STATUS_ADD
:
6332 case GOT_STATUS_DELETE
:
6333 case GOT_STATUS_CONFLICT
:
6334 case GOT_STATUS_MISSING
:
6335 case GOT_STATUS_OBSTRUCTED
:
6336 case GOT_STATUS_UNVERSIONED
:
6337 case GOT_STATUS_MODE_CHANGE
:
6338 case GOT_STATUS_NONEXISTENT
:
6341 errx(1, "invalid status code '%c'",
6345 if (ch
== 's' && st
.suppress
)
6346 option_conflict('s', 'S');
6347 st
.status_codes
= optarg
;
6358 cwd
= getcwd(NULL
, 0);
6360 error
= got_error_from_errno("getcwd");
6364 error
= got_repo_pack_fds_open(&pack_fds
);
6368 error
= got_worktree_open(&worktree
, cwd
);
6370 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
6371 error
= wrap_not_worktree_error(error
, "status", cwd
);
6375 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
6380 error
= apply_unveil(got_repo_get_path(repo
), 1,
6381 got_worktree_get_root_path(worktree
));
6385 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
6389 error
= got_worktree_status(worktree
, &paths
, repo
, no_ignores
,
6390 print_status
, &st
, check_cancelled
, NULL
);
6393 const struct got_error
*pack_err
=
6394 got_repo_pack_fds_close(pack_fds
);
6399 const struct got_error
*close_err
= got_repo_close(repo
);
6404 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
6412 fprintf(stderr
, "usage: %s ref [-dlt] [-c object] [-r repository-path] "
6413 "[-s reference] [name]\n", getprogname());
6417 static const struct got_error
*
6418 list_refs(struct got_repository
*repo
, const char *refname
, int sort_by_time
)
6420 static const struct got_error
*err
= NULL
;
6421 struct got_reflist_head refs
;
6422 struct got_reflist_entry
*re
;
6425 err
= got_ref_list(&refs
, repo
, refname
, sort_by_time
?
6426 got_ref_cmp_by_commit_timestamp_descending
: got_ref_cmp_by_name
,
6431 TAILQ_FOREACH(re
, &refs
, entry
) {
6433 refstr
= got_ref_to_str(re
->ref
);
6434 if (refstr
== NULL
) {
6435 err
= got_error_from_errno("got_ref_to_str");
6438 printf("%s: %s\n", got_ref_get_name(re
->ref
), refstr
);
6442 got_ref_list_free(&refs
);
6446 static const struct got_error
*
6447 delete_ref_by_name(struct got_repository
*repo
, const char *refname
)
6449 const struct got_error
*err
;
6450 struct got_reference
*ref
;
6452 err
= got_ref_open(&ref
, repo
, refname
, 0);
6456 err
= delete_ref(repo
, ref
);
6461 static const struct got_error
*
6462 add_ref(struct got_repository
*repo
, const char *refname
, const char *target
)
6464 const struct got_error
*err
= NULL
;
6465 struct got_object_id
*id
= NULL
;
6466 struct got_reference
*ref
= NULL
;
6467 struct got_reflist_head refs
;
6470 * Don't let the user create a reference name with a leading '-'.
6471 * While technically a valid reference name, this case is usually
6472 * an unintended typo.
6474 if (refname
[0] == '-')
6475 return got_error_path(refname
, GOT_ERR_REF_NAME_MINUS
);
6478 err
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
, NULL
);
6481 err
= got_repo_match_object_id(&id
, NULL
, target
, GOT_OBJ_TYPE_ANY
,
6483 got_ref_list_free(&refs
);
6487 err
= got_ref_alloc(&ref
, refname
, id
);
6491 err
= got_ref_write(ref
, repo
);
6499 static const struct got_error
*
6500 add_symref(struct got_repository
*repo
, const char *refname
, const char *target
)
6502 const struct got_error
*err
= NULL
;
6503 struct got_reference
*ref
= NULL
;
6504 struct got_reference
*target_ref
= NULL
;
6507 * Don't let the user create a reference name with a leading '-'.
6508 * While technically a valid reference name, this case is usually
6509 * an unintended typo.
6511 if (refname
[0] == '-')
6512 return got_error_path(refname
, GOT_ERR_REF_NAME_MINUS
);
6514 err
= got_ref_open(&target_ref
, repo
, target
, 0);
6518 err
= got_ref_alloc_symref(&ref
, refname
, target_ref
);
6522 err
= got_ref_write(ref
, repo
);
6525 got_ref_close(target_ref
);
6531 static const struct got_error
*
6532 cmd_ref(int argc
, char *argv
[])
6534 const struct got_error
*error
= NULL
;
6535 struct got_repository
*repo
= NULL
;
6536 struct got_worktree
*worktree
= NULL
;
6537 char *cwd
= NULL
, *repo_path
= NULL
;
6538 int ch
, do_list
= 0, do_delete
= 0, sort_by_time
= 0;
6539 const char *obj_arg
= NULL
, *symref_target
= NULL
;
6540 char *refname
= NULL
;
6541 int *pack_fds
= NULL
;
6544 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
6545 "sendfd unveil", NULL
) == -1)
6549 while ((ch
= getopt(argc
, argv
, "c:dlr:s:t")) != -1) {
6561 repo_path
= realpath(optarg
, NULL
);
6562 if (repo_path
== NULL
)
6563 return got_error_from_errno2("realpath",
6565 got_path_strip_trailing_slashes(repo_path
);
6568 symref_target
= optarg
;
6579 if (obj_arg
&& do_list
)
6580 option_conflict('c', 'l');
6581 if (obj_arg
&& do_delete
)
6582 option_conflict('c', 'd');
6583 if (obj_arg
&& symref_target
)
6584 option_conflict('c', 's');
6585 if (symref_target
&& do_delete
)
6586 option_conflict('s', 'd');
6587 if (symref_target
&& do_list
)
6588 option_conflict('s', 'l');
6589 if (do_delete
&& do_list
)
6590 option_conflict('d', 'l');
6591 if (sort_by_time
&& !do_list
)
6592 errx(1, "-t option requires -l option");
6598 if (argc
!= 0 && argc
!= 1)
6601 refname
= strdup(argv
[0]);
6602 if (refname
== NULL
) {
6603 error
= got_error_from_errno("strdup");
6610 refname
= strdup(argv
[0]);
6611 if (refname
== NULL
) {
6612 error
= got_error_from_errno("strdup");
6618 got_path_strip_trailing_slashes(refname
);
6620 cwd
= getcwd(NULL
, 0);
6622 error
= got_error_from_errno("getcwd");
6626 error
= got_repo_pack_fds_open(&pack_fds
);
6630 if (repo_path
== NULL
) {
6631 error
= got_worktree_open(&worktree
, cwd
);
6632 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
6638 strdup(got_worktree_get_repo_path(worktree
));
6639 if (repo_path
== NULL
)
6640 error
= got_error_from_errno("strdup");
6644 repo_path
= strdup(cwd
);
6645 if (repo_path
== NULL
) {
6646 error
= got_error_from_errno("strdup");
6652 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
6658 /* Remove "cpath" promise. */
6659 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
6665 error
= apply_unveil(got_repo_get_path(repo
), do_list
,
6666 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
6671 error
= list_refs(repo
, refname
, sort_by_time
);
6673 error
= delete_ref_by_name(repo
, refname
);
6674 else if (symref_target
)
6675 error
= add_symref(repo
, refname
, symref_target
);
6677 if (obj_arg
== NULL
)
6679 error
= add_ref(repo
, refname
, obj_arg
);
6684 const struct got_error
*close_err
= got_repo_close(repo
);
6689 got_worktree_close(worktree
);
6691 const struct got_error
*pack_err
=
6692 got_repo_pack_fds_close(pack_fds
);
6704 fprintf(stderr
, "usage: %s branch [-lnt] [-c commit] [-d name] "
6705 "[-r repository-path] [name]\n", getprogname());
6709 static const struct got_error
*
6710 list_branch(struct got_repository
*repo
, struct got_worktree
*worktree
,
6711 struct got_reference
*ref
)
6713 const struct got_error
*err
= NULL
;
6714 const char *refname
, *marker
= " ";
6717 refname
= got_ref_get_name(ref
);
6718 if (worktree
&& strcmp(refname
,
6719 got_worktree_get_head_ref_name(worktree
)) == 0) {
6720 struct got_object_id
*id
= NULL
;
6722 err
= got_ref_resolve(&id
, repo
, ref
);
6725 if (got_object_id_cmp(id
,
6726 got_worktree_get_base_commit_id(worktree
)) == 0)
6733 if (strncmp(refname
, "refs/heads/", 11) == 0)
6735 if (strncmp(refname
, "refs/got/worktree/", 18) == 0)
6737 if (strncmp(refname
, "refs/remotes/", 13) == 0)
6740 refstr
= got_ref_to_str(ref
);
6742 return got_error_from_errno("got_ref_to_str");
6744 printf("%s%s: %s\n", marker
, refname
, refstr
);
6749 static const struct got_error
*
6750 show_current_branch(struct got_repository
*repo
, struct got_worktree
*worktree
)
6752 const char *refname
;
6754 if (worktree
== NULL
)
6755 return got_error(GOT_ERR_NOT_WORKTREE
);
6757 refname
= got_worktree_get_head_ref_name(worktree
);
6759 if (strncmp(refname
, "refs/heads/", 11) == 0)
6761 if (strncmp(refname
, "refs/got/worktree/", 18) == 0)
6764 printf("%s\n", refname
);
6769 static const struct got_error
*
6770 list_branches(struct got_repository
*repo
, struct got_worktree
*worktree
,
6773 static const struct got_error
*err
= NULL
;
6774 struct got_reflist_head refs
;
6775 struct got_reflist_entry
*re
;
6776 struct got_reference
*temp_ref
= NULL
;
6777 int rebase_in_progress
, histedit_in_progress
;
6782 err
= got_worktree_rebase_in_progress(&rebase_in_progress
,
6787 err
= got_worktree_histedit_in_progress(&histedit_in_progress
,
6792 if (rebase_in_progress
|| histedit_in_progress
) {
6793 err
= got_ref_open(&temp_ref
, repo
,
6794 got_worktree_get_head_ref_name(worktree
), 0);
6797 list_branch(repo
, worktree
, temp_ref
);
6798 got_ref_close(temp_ref
);
6802 err
= got_ref_list(&refs
, repo
, "refs/heads", sort_by_time
?
6803 got_ref_cmp_by_commit_timestamp_descending
: got_ref_cmp_by_name
,
6808 TAILQ_FOREACH(re
, &refs
, entry
)
6809 list_branch(repo
, worktree
, re
->ref
);
6811 got_ref_list_free(&refs
);
6813 err
= got_ref_list(&refs
, repo
, "refs/remotes", sort_by_time
?
6814 got_ref_cmp_by_commit_timestamp_descending
: got_ref_cmp_by_name
,
6819 TAILQ_FOREACH(re
, &refs
, entry
)
6820 list_branch(repo
, worktree
, re
->ref
);
6822 got_ref_list_free(&refs
);
6827 static const struct got_error
*
6828 delete_branch(struct got_repository
*repo
, struct got_worktree
*worktree
,
6829 const char *branch_name
)
6831 const struct got_error
*err
= NULL
;
6832 struct got_reference
*ref
= NULL
;
6833 char *refname
, *remote_refname
= NULL
;
6835 if (strncmp(branch_name
, "refs/", 5) == 0)
6837 if (strncmp(branch_name
, "heads/", 6) == 0)
6839 else if (strncmp(branch_name
, "remotes/", 8) == 0)
6842 if (asprintf(&refname
, "refs/heads/%s", branch_name
) == -1)
6843 return got_error_from_errno("asprintf");
6845 if (asprintf(&remote_refname
, "refs/remotes/%s",
6846 branch_name
) == -1) {
6847 err
= got_error_from_errno("asprintf");
6851 err
= got_ref_open(&ref
, repo
, refname
, 0);
6853 const struct got_error
*err2
;
6854 if (err
->code
!= GOT_ERR_NOT_REF
)
6857 * Keep 'err' intact such that if neither branch exists
6858 * we report "refs/heads" rather than "refs/remotes" in
6859 * our error message.
6861 err2
= got_ref_open(&ref
, repo
, remote_refname
, 0);
6868 strcmp(got_worktree_get_head_ref_name(worktree
),
6869 got_ref_get_name(ref
)) == 0) {
6870 err
= got_error_msg(GOT_ERR_SAME_BRANCH
,
6871 "will not delete this work tree's current branch");
6875 err
= delete_ref(repo
, ref
);
6880 free(remote_refname
);
6884 static const struct got_error
*
6885 add_branch(struct got_repository
*repo
, const char *branch_name
,
6886 struct got_object_id
*base_commit_id
)
6888 const struct got_error
*err
= NULL
;
6889 struct got_reference
*ref
= NULL
;
6890 char *refname
= NULL
;
6893 * Don't let the user create a branch name with a leading '-'.
6894 * While technically a valid reference name, this case is usually
6895 * an unintended typo.
6897 if (branch_name
[0] == '-')
6898 return got_error_path(branch_name
, GOT_ERR_REF_NAME_MINUS
);
6900 if (strncmp(branch_name
, "refs/heads/", 11) == 0)
6903 if (asprintf(&refname
, "refs/heads/%s", branch_name
) == -1) {
6904 err
= got_error_from_errno("asprintf");
6908 err
= got_ref_open(&ref
, repo
, refname
, 0);
6910 err
= got_error(GOT_ERR_BRANCH_EXISTS
);
6912 } else if (err
->code
!= GOT_ERR_NOT_REF
)
6915 err
= got_ref_alloc(&ref
, refname
, base_commit_id
);
6919 err
= got_ref_write(ref
, repo
);
6927 static const struct got_error
*
6928 cmd_branch(int argc
, char *argv
[])
6930 const struct got_error
*error
= NULL
;
6931 struct got_repository
*repo
= NULL
;
6932 struct got_worktree
*worktree
= NULL
;
6933 char *cwd
= NULL
, *repo_path
= NULL
;
6934 int ch
, do_list
= 0, do_show
= 0, do_update
= 1, sort_by_time
= 0;
6935 const char *delref
= NULL
, *commit_id_arg
= NULL
;
6936 struct got_reference
*ref
= NULL
;
6937 struct got_pathlist_head paths
;
6938 struct got_object_id
*commit_id
= NULL
;
6939 char *commit_id_str
= NULL
;
6940 int *pack_fds
= NULL
;
6945 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
6946 "sendfd unveil", NULL
) == -1)
6950 while ((ch
= getopt(argc
, argv
, "c:d:lnr:t")) != -1) {
6953 commit_id_arg
= optarg
;
6965 repo_path
= realpath(optarg
, NULL
);
6966 if (repo_path
== NULL
)
6967 return got_error_from_errno2("realpath",
6969 got_path_strip_trailing_slashes(repo_path
);
6980 if (do_list
&& delref
)
6981 option_conflict('l', 'd');
6982 if (sort_by_time
&& !do_list
)
6983 errx(1, "-t option requires -l option");
6988 if (!do_list
&& !delref
&& argc
== 0)
6991 if ((do_list
|| delref
|| do_show
) && commit_id_arg
!= NULL
)
6992 errx(1, "-c option can only be used when creating a branch");
6994 if (do_list
|| delref
) {
6997 } else if (!do_show
&& argc
!= 1)
7000 cwd
= getcwd(NULL
, 0);
7002 error
= got_error_from_errno("getcwd");
7006 error
= got_repo_pack_fds_open(&pack_fds
);
7010 if (repo_path
== NULL
) {
7011 error
= got_worktree_open(&worktree
, cwd
);
7012 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
7018 strdup(got_worktree_get_repo_path(worktree
));
7019 if (repo_path
== NULL
)
7020 error
= got_error_from_errno("strdup");
7024 repo_path
= strdup(cwd
);
7025 if (repo_path
== NULL
) {
7026 error
= got_error_from_errno("strdup");
7032 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
7037 if (do_list
|| do_show
) {
7038 /* Remove "cpath" promise. */
7039 if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
7045 error
= apply_unveil(got_repo_get_path(repo
), do_list
,
7046 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
7051 error
= show_current_branch(repo
, worktree
);
7053 error
= list_branches(repo
, worktree
, sort_by_time
);
7055 error
= delete_branch(repo
, worktree
, delref
);
7057 struct got_reflist_head refs
;
7059 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
,
7063 if (commit_id_arg
== NULL
)
7064 commit_id_arg
= worktree
?
7065 got_worktree_get_head_ref_name(worktree
) :
7067 error
= got_repo_match_object_id(&commit_id
, NULL
,
7068 commit_id_arg
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
7069 got_ref_list_free(&refs
);
7072 error
= add_branch(repo
, argv
[0], commit_id
);
7075 if (worktree
&& do_update
) {
7076 struct got_update_progress_arg upa
;
7077 char *branch_refname
= NULL
;
7079 error
= got_object_id_str(&commit_id_str
, commit_id
);
7082 error
= get_worktree_paths_from_argv(&paths
, 0, NULL
,
7086 if (asprintf(&branch_refname
, "refs/heads/%s", argv
[0])
7088 error
= got_error_from_errno("asprintf");
7091 error
= got_ref_open(&ref
, repo
, branch_refname
, 0);
7092 free(branch_refname
);
7095 error
= switch_head_ref(ref
, commit_id
, worktree
,
7099 error
= got_worktree_set_base_commit_id(worktree
, repo
,
7103 memset(&upa
, 0, sizeof(upa
));
7104 error
= got_worktree_checkout_files(worktree
, &paths
,
7105 repo
, update_progress
, &upa
, check_cancelled
,
7109 if (upa
.did_something
) {
7110 printf("Updated to %s: %s\n",
7111 got_worktree_get_head_ref_name(worktree
),
7114 print_update_progress_stats(&upa
);
7121 const struct got_error
*close_err
= got_repo_close(repo
);
7126 got_worktree_close(worktree
);
7128 const struct got_error
*pack_err
=
7129 got_repo_pack_fds_close(pack_fds
);
7136 free(commit_id_str
);
7137 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
7145 fprintf(stderr
, "usage: %s tag [-lVv] [-c commit] [-m message] "
7146 "[-r repository-path] [-s signer-id] name\n", getprogname());
7151 static const struct got_error
*
7152 sort_tags(struct got_reflist_head
*sorted
, struct got_reflist_head
*tags
)
7154 const struct got_error
*err
= NULL
;
7155 struct got_reflist_entry
*re
, *se
, *new;
7156 struct got_object_id
*re_id
, *se_id
;
7157 struct got_tag_object
*re_tag
, *se_tag
;
7158 time_t re_time
, se_time
;
7160 STAILQ_FOREACH(re
, tags
, entry
) {
7161 se
= STAILQ_FIRST(sorted
);
7163 err
= got_reflist_entry_dup(&new, re
);
7166 STAILQ_INSERT_HEAD(sorted
, new, entry
);
7169 err
= got_ref_resolve(&re_id
, repo
, re
->ref
);
7172 err
= got_object_open_as_tag(&re_tag
, repo
, re_id
);
7176 re_time
= got_object_tag_get_tagger_time(re_tag
);
7177 got_object_tag_close(re_tag
);
7181 err
= got_ref_resolve(&se_id
, repo
, re
->ref
);
7184 err
= got_object_open_as_tag(&se_tag
, repo
, se_id
);
7188 se_time
= got_object_tag_get_tagger_time(se_tag
);
7189 got_object_tag_close(se_tag
);
7191 if (se_time
> re_time
) {
7192 err
= got_reflist_entry_dup(&new, re
);
7195 STAILQ_INSERT_AFTER(sorted
, se
, new, entry
);
7198 se
= STAILQ_NEXT(se
, entry
);
7207 static const struct got_error
*
7208 get_tag_refname(char **refname
, const char *tag_name
)
7210 const struct got_error
*err
;
7212 if (strncmp("refs/tags/", tag_name
, 10) == 0) {
7213 *refname
= strdup(tag_name
);
7214 if (*refname
== NULL
)
7215 return got_error_from_errno("strdup");
7216 } else if (asprintf(refname
, "refs/tags/%s", tag_name
) == -1) {
7217 err
= got_error_from_errno("asprintf");
7225 static const struct got_error
*
7226 list_tags(struct got_repository
*repo
, const char *tag_name
, int verify_tags
,
7227 const char *allowed_signers
, const char *revoked_signers
, int verbosity
)
7229 static const struct got_error
*err
= NULL
;
7230 struct got_reflist_head refs
;
7231 struct got_reflist_entry
*re
;
7232 char *wanted_refname
= NULL
;
7237 err
= got_ref_list(&refs
, repo
, "refs/tags", got_ref_cmp_tags
, repo
);
7242 struct got_reference
*ref
;
7243 err
= get_tag_refname(&wanted_refname
, tag_name
);
7246 /* Wanted tag reference should exist. */
7247 err
= got_ref_open(&ref
, repo
, wanted_refname
, 0);
7253 TAILQ_FOREACH(re
, &refs
, entry
) {
7254 const char *refname
;
7255 char *refstr
, *tagmsg0
, *tagmsg
, *line
, *id_str
, *datestr
;
7257 const char *tagger
, *ssh_sig
= NULL
;
7258 char *sig_msg
= NULL
;
7260 struct got_object_id
*id
;
7261 struct got_tag_object
*tag
;
7262 struct got_commit_object
*commit
= NULL
;
7264 refname
= got_ref_get_name(re
->ref
);
7265 if (strncmp(refname
, "refs/tags/", 10) != 0 ||
7266 (wanted_refname
&& strcmp(refname
, wanted_refname
) != 0))
7269 refstr
= got_ref_to_str(re
->ref
);
7270 if (refstr
== NULL
) {
7271 err
= got_error_from_errno("got_ref_to_str");
7275 err
= got_ref_resolve(&id
, repo
, re
->ref
);
7278 err
= got_object_open_as_tag(&tag
, repo
, id
);
7280 if (err
->code
!= GOT_ERR_OBJ_TYPE
) {
7284 /* "lightweight" tag */
7285 err
= got_object_open_as_commit(&commit
, repo
, id
);
7290 tagger
= got_object_commit_get_committer(commit
);
7292 got_object_commit_get_committer_time(commit
);
7293 err
= got_object_id_str(&id_str
, id
);
7299 tagger
= got_object_tag_get_tagger(tag
);
7300 tagger_time
= got_object_tag_get_tagger_time(tag
);
7301 err
= got_object_id_str(&id_str
,
7302 got_object_tag_get_object_id(tag
));
7307 if (tag
&& verify_tags
) {
7308 ssh_sig
= got_sigs_get_tagmsg_ssh_signature(
7309 got_object_tag_get_message(tag
));
7310 if (ssh_sig
&& allowed_signers
== NULL
) {
7311 err
= got_error_msg(
7312 GOT_ERR_VERIFY_TAG_SIGNATURE
,
7313 "SSH signature verification requires "
7314 "setting allowed_signers in "
7320 printf("%stag %s %s\n", GOT_COMMIT_SEP_STR
, refname
, refstr
);
7322 printf("from: %s\n", tagger
);
7323 datestr
= get_datestr(&tagger_time
, datebuf
);
7325 printf("date: %s UTC\n", datestr
);
7327 printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT
, id_str
);
7329 switch (got_object_tag_get_object_type(tag
)) {
7330 case GOT_OBJ_TYPE_BLOB
:
7331 printf("object: %s %s\n", GOT_OBJ_LABEL_BLOB
,
7334 case GOT_OBJ_TYPE_TREE
:
7335 printf("object: %s %s\n", GOT_OBJ_LABEL_TREE
,
7338 case GOT_OBJ_TYPE_COMMIT
:
7339 printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT
,
7342 case GOT_OBJ_TYPE_TAG
:
7343 printf("object: %s %s\n", GOT_OBJ_LABEL_TAG
,
7353 err
= got_sigs_verify_tag_ssh(&sig_msg
, tag
, ssh_sig
,
7354 allowed_signers
, revoked_signers
, verbosity
);
7355 if (err
&& err
->code
== GOT_ERR_BAD_TAG_SIGNATURE
)
7359 printf("signature: %s", sig_msg
);
7365 err
= got_object_commit_get_logmsg(&tagmsg0
, commit
);
7368 got_object_commit_close(commit
);
7370 tagmsg0
= strdup(got_object_tag_get_message(tag
));
7371 got_object_tag_close(tag
);
7372 if (tagmsg0
== NULL
) {
7373 err
= got_error_from_errno("strdup");
7380 line
= strsep(&tagmsg
, "\n");
7382 printf(" %s\n", line
);
7387 got_ref_list_free(&refs
);
7388 free(wanted_refname
);
7390 if (err
== NULL
&& bad_sigs
)
7391 err
= got_error(GOT_ERR_BAD_TAG_SIGNATURE
);
7395 static const struct got_error
*
7396 get_tag_message(char **tagmsg
, char **tagmsg_path
, const char *commit_id_str
,
7397 const char *tag_name
, const char *repo_path
)
7399 const struct got_error
*err
= NULL
;
7400 char *template = NULL
, *initial_content
= NULL
;
7401 char *editor
= NULL
;
7402 int initial_content_len
;
7405 if (asprintf(&template, GOT_TMPDIR_STR
"/got-tagmsg") == -1) {
7406 err
= got_error_from_errno("asprintf");
7410 initial_content_len
= asprintf(&initial_content
,
7411 "\n# tagging commit %s as %s\n",
7412 commit_id_str
, tag_name
);
7413 if (initial_content_len
== -1) {
7414 err
= got_error_from_errno("asprintf");
7418 err
= got_opentemp_named_fd(tagmsg_path
, &fd
, template, "");
7422 if (write(fd
, initial_content
, initial_content_len
) == -1) {
7423 err
= got_error_from_errno2("write", *tagmsg_path
);
7426 if (close(fd
) == -1) {
7427 err
= got_error_from_errno2("close", *tagmsg_path
);
7432 err
= get_editor(&editor
);
7435 err
= edit_logmsg(tagmsg
, editor
, *tagmsg_path
, initial_content
,
7436 initial_content_len
, 1);
7438 free(initial_content
);
7442 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
7443 err
= got_error_from_errno2("close", *tagmsg_path
);
7452 static const struct got_error
*
7453 add_tag(struct got_repository
*repo
, const char *tagger
,
7454 const char *tag_name
, const char *commit_arg
, const char *tagmsg_arg
,
7455 const char *signer_id
, int verbosity
)
7457 const struct got_error
*err
= NULL
;
7458 struct got_object_id
*commit_id
= NULL
, *tag_id
= NULL
;
7459 char *label
= NULL
, *commit_id_str
= NULL
;
7460 struct got_reference
*ref
= NULL
;
7461 char *refname
= NULL
, *tagmsg
= NULL
;
7462 char *tagmsg_path
= NULL
, *tag_id_str
= NULL
;
7463 int preserve_tagmsg
= 0;
7464 struct got_reflist_head refs
;
7469 * Don't let the user create a tag name with a leading '-'.
7470 * While technically a valid reference name, this case is usually
7471 * an unintended typo.
7473 if (tag_name
[0] == '-')
7474 return got_error_path(tag_name
, GOT_ERR_REF_NAME_MINUS
);
7476 err
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
, NULL
);
7480 err
= got_repo_match_object_id(&commit_id
, &label
, commit_arg
,
7481 GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
7485 err
= got_object_id_str(&commit_id_str
, commit_id
);
7489 err
= get_tag_refname(&refname
, tag_name
);
7492 if (strncmp("refs/tags/", tag_name
, 10) == 0)
7495 err
= got_ref_open(&ref
, repo
, refname
, 0);
7497 err
= got_error(GOT_ERR_TAG_EXISTS
);
7499 } else if (err
->code
!= GOT_ERR_NOT_REF
)
7502 if (tagmsg_arg
== NULL
) {
7503 err
= get_tag_message(&tagmsg
, &tagmsg_path
, commit_id_str
,
7504 tag_name
, got_repo_get_path(repo
));
7506 if (err
->code
!= GOT_ERR_COMMIT_MSG_EMPTY
&&
7507 tagmsg_path
!= NULL
)
7508 preserve_tagmsg
= 1;
7511 /* Editor is done; we can now apply unveil(2) */
7512 err
= got_sigs_apply_unveil();
7515 err
= apply_unveil(got_repo_get_path(repo
), 0, NULL
);
7520 err
= got_object_tag_create(&tag_id
, tag_name
, commit_id
,
7521 tagger
, time(NULL
), tagmsg
? tagmsg
: tagmsg_arg
, signer_id
, repo
,
7525 preserve_tagmsg
= 1;
7529 err
= got_ref_alloc(&ref
, refname
, tag_id
);
7532 preserve_tagmsg
= 1;
7536 err
= got_ref_write(ref
, repo
);
7539 preserve_tagmsg
= 1;
7543 err
= got_object_id_str(&tag_id_str
, tag_id
);
7546 preserve_tagmsg
= 1;
7549 printf("Created tag %s\n", tag_id_str
);
7551 if (preserve_tagmsg
) {
7552 fprintf(stderr
, "%s: tag message preserved in %s\n",
7553 getprogname(), tagmsg_path
);
7554 } else if (tagmsg_path
&& unlink(tagmsg_path
) == -1 && err
== NULL
)
7555 err
= got_error_from_errno2("unlink", tagmsg_path
);
7560 free(commit_id_str
);
7564 got_ref_list_free(&refs
);
7568 static const struct got_error
*
7569 cmd_tag(int argc
, char *argv
[])
7571 const struct got_error
*error
= NULL
;
7572 struct got_repository
*repo
= NULL
;
7573 struct got_worktree
*worktree
= NULL
;
7574 char *cwd
= NULL
, *repo_path
= NULL
, *commit_id_str
= NULL
;
7575 char *gitconfig_path
= NULL
, *tagger
= NULL
;
7576 char *allowed_signers
= NULL
, *revoked_signers
= NULL
;
7577 const char *signer_id
= NULL
;
7578 const char *tag_name
= NULL
, *commit_id_arg
= NULL
, *tagmsg
= NULL
;
7579 int ch
, do_list
= 0, verify_tags
= 0, verbosity
= 0;
7580 int *pack_fds
= NULL
;
7583 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
7584 "sendfd unveil", NULL
) == -1)
7588 while ((ch
= getopt(argc
, argv
, "c:lm:r:s:Vv")) != -1) {
7591 commit_id_arg
= optarg
;
7600 repo_path
= realpath(optarg
, NULL
);
7601 if (repo_path
== NULL
) {
7602 error
= got_error_from_errno2("realpath",
7606 got_path_strip_trailing_slashes(repo_path
);
7617 else if (verbosity
< 3)
7629 if (do_list
|| verify_tags
) {
7630 if (commit_id_arg
!= NULL
)
7632 "-c option can only be used when creating a tag");
7635 option_conflict('l', 'm');
7637 option_conflict('V', 'm');
7641 option_conflict('l', 's');
7643 option_conflict('V', 's');
7647 } else if (argc
!= 1)
7653 cwd
= getcwd(NULL
, 0);
7655 error
= got_error_from_errno("getcwd");
7659 error
= got_repo_pack_fds_open(&pack_fds
);
7663 if (repo_path
== NULL
) {
7664 error
= got_worktree_open(&worktree
, cwd
);
7665 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
7671 strdup(got_worktree_get_repo_path(worktree
));
7672 if (repo_path
== NULL
)
7673 error
= got_error_from_errno("strdup");
7677 repo_path
= strdup(cwd
);
7678 if (repo_path
== NULL
) {
7679 error
= got_error_from_errno("strdup");
7685 if (do_list
|| verify_tags
) {
7686 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
7689 error
= get_allowed_signers(&allowed_signers
, repo
, worktree
);
7692 error
= get_revoked_signers(&revoked_signers
, repo
, worktree
);
7696 /* Release work tree lock. */
7697 got_worktree_close(worktree
);
7702 * Remove "cpath" promise unless needed for signature tmpfile
7706 got_sigs_apply_unveil();
7709 if (pledge("stdio rpath wpath flock proc exec sendfd "
7710 "unveil", NULL
) == -1)
7714 error
= apply_unveil(got_repo_get_path(repo
), 1, NULL
);
7717 error
= list_tags(repo
, tag_name
, verify_tags
, allowed_signers
,
7718 revoked_signers
, verbosity
);
7720 error
= get_gitconfig_path(&gitconfig_path
);
7723 error
= got_repo_open(&repo
, repo_path
, gitconfig_path
,
7728 error
= get_author(&tagger
, repo
, worktree
);
7731 if (signer_id
== NULL
)
7732 signer_id
= get_signer_id(repo
, worktree
);
7736 error
= got_sigs_apply_unveil();
7740 error
= apply_unveil(got_repo_get_path(repo
), 0, NULL
);
7745 if (commit_id_arg
== NULL
) {
7746 struct got_reference
*head_ref
;
7747 struct got_object_id
*commit_id
;
7748 error
= got_ref_open(&head_ref
, repo
,
7749 worktree
? got_worktree_get_head_ref_name(worktree
)
7753 error
= got_ref_resolve(&commit_id
, repo
, head_ref
);
7754 got_ref_close(head_ref
);
7757 error
= got_object_id_str(&commit_id_str
, commit_id
);
7764 /* Release work tree lock. */
7765 got_worktree_close(worktree
);
7769 error
= add_tag(repo
, tagger
, tag_name
,
7770 commit_id_str
? commit_id_str
: commit_id_arg
, tagmsg
,
7771 signer_id
, verbosity
);
7775 const struct got_error
*close_err
= got_repo_close(repo
);
7780 got_worktree_close(worktree
);
7782 const struct got_error
*pack_err
=
7783 got_repo_pack_fds_close(pack_fds
);
7789 free(gitconfig_path
);
7790 free(commit_id_str
);
7792 free(allowed_signers
);
7793 free(revoked_signers
);
7800 fprintf(stderr
, "usage: %s add [-IR] path ...\n", getprogname());
7804 static const struct got_error
*
7805 add_progress(void *arg
, unsigned char status
, const char *path
)
7807 while (path
[0] == '/')
7809 printf("%c %s\n", status
, path
);
7813 static const struct got_error
*
7814 cmd_add(int argc
, char *argv
[])
7816 const struct got_error
*error
= NULL
;
7817 struct got_repository
*repo
= NULL
;
7818 struct got_worktree
*worktree
= NULL
;
7820 struct got_pathlist_head paths
;
7821 struct got_pathlist_entry
*pe
;
7822 int ch
, can_recurse
= 0, no_ignores
= 0;
7823 int *pack_fds
= NULL
;
7828 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
7833 while ((ch
= getopt(argc
, argv
, "IR")) != -1) {
7853 cwd
= getcwd(NULL
, 0);
7855 error
= got_error_from_errno("getcwd");
7859 error
= got_repo_pack_fds_open(&pack_fds
);
7863 error
= got_worktree_open(&worktree
, cwd
);
7865 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
7866 error
= wrap_not_worktree_error(error
, "add", cwd
);
7870 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
7875 error
= apply_unveil(got_repo_get_path(repo
), 1,
7876 got_worktree_get_root_path(worktree
));
7880 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
7887 TAILQ_FOREACH(pe
, &paths
, entry
) {
7888 if (asprintf(&ondisk_path
, "%s/%s",
7889 got_worktree_get_root_path(worktree
),
7891 error
= got_error_from_errno("asprintf");
7894 if (lstat(ondisk_path
, &sb
) == -1) {
7895 if (errno
== ENOENT
) {
7899 error
= got_error_from_errno2("lstat",
7905 if (S_ISDIR(sb
.st_mode
)) {
7906 error
= got_error_msg(GOT_ERR_BAD_PATH
,
7907 "adding directories requires -R option");
7913 error
= got_worktree_schedule_add(worktree
, &paths
, add_progress
,
7914 NULL
, repo
, no_ignores
);
7917 const struct got_error
*close_err
= got_repo_close(repo
);
7922 got_worktree_close(worktree
);
7924 const struct got_error
*pack_err
=
7925 got_repo_pack_fds_close(pack_fds
);
7929 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
7937 fprintf(stderr
, "usage: %s remove [-fkR] [-s status-codes] path ...\n",
7942 static const struct got_error
*
7943 print_remove_status(void *arg
, unsigned char status
,
7944 unsigned char staged_status
, const char *path
)
7946 while (path
[0] == '/')
7948 if (status
== GOT_STATUS_NONEXISTENT
)
7950 if (status
== staged_status
&& (status
== GOT_STATUS_DELETE
))
7951 status
= GOT_STATUS_NO_CHANGE
;
7952 printf("%c%c %s\n", status
, staged_status
, path
);
7956 static const struct got_error
*
7957 cmd_remove(int argc
, char *argv
[])
7959 const struct got_error
*error
= NULL
;
7960 struct got_worktree
*worktree
= NULL
;
7961 struct got_repository
*repo
= NULL
;
7962 const char *status_codes
= NULL
;
7964 struct got_pathlist_head paths
;
7965 struct got_pathlist_entry
*pe
;
7966 int ch
, delete_local_mods
= 0, can_recurse
= 0, keep_on_disk
= 0, i
;
7967 int ignore_missing_paths
= 0;
7968 int *pack_fds
= NULL
;
7973 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
7978 while ((ch
= getopt(argc
, argv
, "fkRs:")) != -1) {
7981 delete_local_mods
= 1;
7982 ignore_missing_paths
= 1;
7991 for (i
= 0; i
< strlen(optarg
); i
++) {
7992 switch (optarg
[i
]) {
7993 case GOT_STATUS_MODIFY
:
7994 delete_local_mods
= 1;
7996 case GOT_STATUS_MISSING
:
7997 ignore_missing_paths
= 1;
8000 errx(1, "invalid status code '%c'",
8004 status_codes
= optarg
;
8018 cwd
= getcwd(NULL
, 0);
8020 error
= got_error_from_errno("getcwd");
8024 error
= got_repo_pack_fds_open(&pack_fds
);
8028 error
= got_worktree_open(&worktree
, cwd
);
8030 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
8031 error
= wrap_not_worktree_error(error
, "remove", cwd
);
8035 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
8040 error
= apply_unveil(got_repo_get_path(repo
), 1,
8041 got_worktree_get_root_path(worktree
));
8045 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
8052 TAILQ_FOREACH(pe
, &paths
, entry
) {
8053 if (asprintf(&ondisk_path
, "%s/%s",
8054 got_worktree_get_root_path(worktree
),
8056 error
= got_error_from_errno("asprintf");
8059 if (lstat(ondisk_path
, &sb
) == -1) {
8060 if (errno
== ENOENT
) {
8064 error
= got_error_from_errno2("lstat",
8070 if (S_ISDIR(sb
.st_mode
)) {
8071 error
= got_error_msg(GOT_ERR_BAD_PATH
,
8072 "removing directories requires -R option");
8078 error
= got_worktree_schedule_delete(worktree
, &paths
,
8079 delete_local_mods
, status_codes
, print_remove_status
, NULL
,
8080 repo
, keep_on_disk
, ignore_missing_paths
);
8083 const struct got_error
*close_err
= got_repo_close(repo
);
8088 got_worktree_close(worktree
);
8090 const struct got_error
*pack_err
=
8091 got_repo_pack_fds_close(pack_fds
);
8095 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
8103 fprintf(stderr
, "usage: %s patch [-nR] [-c commit] [-p strip-count] "
8104 "[patchfile]\n", getprogname());
8108 static const struct got_error
*
8109 patch_from_stdin(int *patchfd
)
8111 const struct got_error
*err
= NULL
;
8114 sig_t sighup
, sigint
, sigquit
;
8116 *patchfd
= got_opentempfd();
8118 return got_error_from_errno("got_opentempfd");
8120 sighup
= signal(SIGHUP
, SIG_DFL
);
8121 sigint
= signal(SIGINT
, SIG_DFL
);
8122 sigquit
= signal(SIGQUIT
, SIG_DFL
);
8125 r
= read(0, buf
, sizeof(buf
));
8127 err
= got_error_from_errno("read");
8132 if (write(*patchfd
, buf
, r
) == -1) {
8133 err
= got_error_from_errno("write");
8138 signal(SIGHUP
, sighup
);
8139 signal(SIGINT
, sigint
);
8140 signal(SIGQUIT
, sigquit
);
8142 if (err
== NULL
&& lseek(*patchfd
, 0, SEEK_SET
) == -1)
8143 err
= got_error_from_errno("lseek");
8153 struct got_patch_progress_arg
{
8159 static const struct got_error
*
8160 patch_progress(void *arg
, const char *old
, const char *new,
8161 unsigned char status
, const struct got_error
*error
, int old_from
,
8162 int old_lines
, int new_from
, int new_lines
, int offset
,
8163 int ws_mangled
, const struct got_error
*hunk_err
)
8165 const char *path
= new == NULL
? old
: new;
8166 struct got_patch_progress_arg
*a
= arg
;
8168 while (*path
== '/')
8171 if (status
!= GOT_STATUS_NO_CHANGE
&&
8172 status
!= 0 /* per-hunk progress */) {
8173 printf("%c %s\n", status
, path
);
8174 a
->did_something
= 1;
8177 if (hunk_err
== NULL
) {
8178 if (status
== GOT_STATUS_CANNOT_UPDATE
)
8180 else if (status
== GOT_STATUS_CONFLICT
)
8185 fprintf(stderr
, "%s: %s\n", getprogname(), error
->msg
);
8187 if (offset
!= 0 || hunk_err
!= NULL
|| ws_mangled
) {
8188 printf("@@ -%d,%d +%d,%d @@ ", old_from
,
8189 old_lines
, new_from
, new_lines
);
8190 if (hunk_err
!= NULL
)
8191 printf("%s\n", hunk_err
->msg
);
8192 else if (offset
!= 0)
8193 printf("applied with offset %d\n", offset
);
8195 printf("hunk contains mangled whitespace\n");
8202 print_patch_progress_stats(struct got_patch_progress_arg
*ppa
)
8204 if (!ppa
->did_something
)
8207 if (ppa
->conflicts
> 0)
8208 printf("Files with merge conflicts: %d\n", ppa
->conflicts
);
8210 if (ppa
->rejects
> 0) {
8211 printf("Files where patch failed to apply: %d\n",
8216 static const struct got_error
*
8217 cmd_patch(int argc
, char *argv
[])
8219 const struct got_error
*error
= NULL
, *close_error
= NULL
;
8220 struct got_worktree
*worktree
= NULL
;
8221 struct got_repository
*repo
= NULL
;
8222 struct got_reflist_head refs
;
8223 struct got_object_id
*commit_id
= NULL
;
8224 const char *commit_id_str
= NULL
;
8228 int ch
, nop
= 0, strip
= -1, reverse
= 0;
8230 int *pack_fds
= NULL
;
8231 struct got_patch_progress_arg ppa
;
8236 if (pledge("stdio rpath wpath cpath fattr proc exec sendfd flock "
8237 "unveil", NULL
) == -1)
8241 while ((ch
= getopt(argc
, argv
, "c:np:R")) != -1) {
8244 commit_id_str
= optarg
;
8250 strip
= strtonum(optarg
, 0, INT_MAX
, &errstr
);
8252 errx(1, "pathname strip count is %s: %s",
8268 error
= patch_from_stdin(&patchfd
);
8271 } else if (argc
== 1) {
8272 patchfd
= open(argv
[0], O_RDONLY
);
8273 if (patchfd
== -1) {
8274 error
= got_error_from_errno2("open", argv
[0]);
8277 if (fstat(patchfd
, &sb
) == -1) {
8278 error
= got_error_from_errno2("fstat", argv
[0]);
8281 if (!S_ISREG(sb
.st_mode
)) {
8282 error
= got_error_path(argv
[0], GOT_ERR_BAD_FILETYPE
);
8288 if ((cwd
= getcwd(NULL
, 0)) == NULL
) {
8289 error
= got_error_from_errno("getcwd");
8293 error
= got_repo_pack_fds_open(&pack_fds
);
8297 error
= got_worktree_open(&worktree
, cwd
);
8301 const char *repo_path
= got_worktree_get_repo_path(worktree
);
8302 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
8306 error
= apply_unveil(got_repo_get_path(repo
), 0,
8307 got_worktree_get_root_path(worktree
));
8311 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
, NULL
);
8315 if (commit_id_str
!= NULL
) {
8316 error
= got_repo_match_object_id(&commit_id
, NULL
,
8317 commit_id_str
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
8322 memset(&ppa
, 0, sizeof(ppa
));
8323 error
= got_patch(patchfd
, worktree
, repo
, nop
, strip
, reverse
,
8324 commit_id
, patch_progress
, &ppa
, check_cancelled
, NULL
);
8325 print_patch_progress_stats(&ppa
);
8327 got_ref_list_free(&refs
);
8330 close_error
= got_repo_close(repo
);
8332 error
= close_error
;
8334 if (worktree
!= NULL
) {
8335 close_error
= got_worktree_close(worktree
);
8337 error
= close_error
;
8340 const struct got_error
*pack_err
=
8341 got_repo_pack_fds_close(pack_fds
);
8352 fprintf(stderr
, "usage: %s revert [-pR] [-F response-script] path ...\n",
8357 static const struct got_error
*
8358 revert_progress(void *arg
, unsigned char status
, const char *path
)
8360 if (status
== GOT_STATUS_UNVERSIONED
)
8363 while (path
[0] == '/')
8365 printf("%c %s\n", status
, path
);
8369 struct choose_patch_arg
{
8370 FILE *patch_script_file
;
8374 static const struct got_error
*
8375 show_change(unsigned char status
, const char *path
, FILE *patch_file
, int n
,
8376 int nchanges
, const char *action
)
8378 const struct got_error
*err
;
8380 size_t linesize
= 0;
8384 case GOT_STATUS_ADD
:
8385 printf("A %s\n%s this addition? [y/n] ", path
, action
);
8387 case GOT_STATUS_DELETE
:
8388 printf("D %s\n%s this deletion? [y/n] ", path
, action
);
8390 case GOT_STATUS_MODIFY
:
8391 if (fseek(patch_file
, 0L, SEEK_SET
) == -1)
8392 return got_error_from_errno("fseek");
8393 printf(GOT_COMMIT_SEP_STR
);
8394 while ((linelen
= getline(&line
, &linesize
, patch_file
)) != -1)
8396 if (linelen
== -1 && ferror(patch_file
)) {
8397 err
= got_error_from_errno("getline");
8402 printf(GOT_COMMIT_SEP_STR
);
8403 printf("M %s (change %d of %d)\n%s this change? [y/n/q] ",
8404 path
, n
, nchanges
, action
);
8407 return got_error_path(path
, GOT_ERR_FILE_STATUS
);
8414 static const struct got_error
*
8415 choose_patch(int *choice
, void *arg
, unsigned char status
, const char *path
,
8416 FILE *patch_file
, int n
, int nchanges
)
8418 const struct got_error
*err
= NULL
;
8420 size_t linesize
= 0;
8423 struct choose_patch_arg
*a
= arg
;
8425 *choice
= GOT_PATCH_CHOICE_NONE
;
8427 if (a
->patch_script_file
) {
8429 err
= show_change(status
, path
, patch_file
, n
, nchanges
,
8433 linelen
= getline(&line
, &linesize
, a
->patch_script_file
);
8434 if (linelen
== -1) {
8435 if (ferror(a
->patch_script_file
))
8436 return got_error_from_errno("getline");
8439 nl
= strchr(line
, '\n');
8442 if (strcmp(line
, "y") == 0) {
8443 *choice
= GOT_PATCH_CHOICE_YES
;
8445 } else if (strcmp(line
, "n") == 0) {
8446 *choice
= GOT_PATCH_CHOICE_NO
;
8448 } else if (strcmp(line
, "q") == 0 &&
8449 status
== GOT_STATUS_MODIFY
) {
8450 *choice
= GOT_PATCH_CHOICE_QUIT
;
8453 printf("invalid response '%s'\n", line
);
8458 while (resp
!= 'y' && resp
!= 'n' && resp
!= 'q') {
8459 err
= show_change(status
, path
, patch_file
, n
, nchanges
,
8466 if (status
== GOT_STATUS_MODIFY
) {
8467 if (resp
!= 'y' && resp
!= 'n' && resp
!= 'q') {
8468 printf("invalid response '%c'\n", resp
);
8471 } else if (resp
!= 'y' && resp
!= 'n') {
8472 printf("invalid response '%c'\n", resp
);
8478 *choice
= GOT_PATCH_CHOICE_YES
;
8479 else if (resp
== 'n')
8480 *choice
= GOT_PATCH_CHOICE_NO
;
8481 else if (resp
== 'q' && status
== GOT_STATUS_MODIFY
)
8482 *choice
= GOT_PATCH_CHOICE_QUIT
;
8487 struct wt_commitable_path_arg
{
8488 struct got_pathlist_head
*commit_paths
;
8493 * Shortcut work tree status callback to determine if the set of paths scanned
8494 * has at least one versioned path that is being modified and, if not NULL, is
8495 * in the arg->commit_paths list. Set arg and return GOT_ERR_FILE_MODIFIED as
8496 * soon as a path is passed with a status that satisfies this criteria.
8498 static const struct got_error
*
8499 worktree_has_commitable_path(void *arg
, unsigned char status
,
8500 unsigned char staged_status
, const char *path
,
8501 struct got_object_id
*blob_id
, struct got_object_id
*staged_blob_id
,
8502 struct got_object_id
*commit_id
, int dirfd
, const char *de_name
)
8504 struct wt_commitable_path_arg
*a
= arg
;
8506 if (status
== staged_status
&& (status
== GOT_STATUS_DELETE
))
8507 status
= GOT_STATUS_NO_CHANGE
;
8509 if (!(status
== GOT_STATUS_NO_CHANGE
||
8510 status
== GOT_STATUS_UNVERSIONED
) ||
8511 staged_status
!= GOT_STATUS_NO_CHANGE
) {
8512 if (a
->commit_paths
!= NULL
) {
8513 struct got_pathlist_entry
*pe
;
8515 TAILQ_FOREACH(pe
, a
->commit_paths
, entry
) {
8516 if (strncmp(path
, pe
->path
,
8517 pe
->path_len
) == 0) {
8518 *a
->has_changes
= 1;
8523 *a
->has_changes
= 1;
8525 if (*a
->has_changes
)
8526 return got_error(GOT_ERR_FILE_MODIFIED
);
8533 * Check that the changeset of the commit identified by id is
8534 * comprised of at least one modified path that is being committed.
8536 static const struct got_error
*
8537 commit_path_changed_in_worktree(struct wt_commitable_path_arg
*wcpa
,
8538 struct got_object_id
*id
, struct got_worktree
*worktree
,
8539 struct got_repository
*repo
)
8541 const struct got_error
*err
;
8542 struct got_pathlist_head paths
;
8543 struct got_commit_object
*commit
= NULL
, *pcommit
= NULL
;
8544 struct got_tree_object
*tree
= NULL
, *ptree
= NULL
;
8545 struct got_object_qid
*pid
;
8549 err
= got_object_open_as_commit(&commit
, repo
, id
);
8553 err
= got_object_open_as_tree(&tree
, repo
,
8554 got_object_commit_get_tree_id(commit
));
8558 pid
= STAILQ_FIRST(got_object_commit_get_parent_ids(commit
));
8560 err
= got_object_open_as_commit(&pcommit
, repo
, &pid
->id
);
8564 err
= got_object_open_as_tree(&ptree
, repo
,
8565 got_object_commit_get_tree_id(pcommit
));
8570 err
= got_diff_tree(ptree
, tree
, NULL
, NULL
, -1, -1, "", "", repo
,
8571 got_diff_tree_collect_changed_paths
, &paths
, 0);
8575 err
= got_worktree_status(worktree
, &paths
, repo
, 0,
8576 worktree_has_commitable_path
, wcpa
, check_cancelled
, NULL
);
8577 if (err
&& err
->code
== GOT_ERR_FILE_MODIFIED
) {
8579 * At least one changed path in the referenced commit is
8580 * modified in the work tree, that's all we need to know!
8586 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_ALL
);
8588 got_object_commit_close(commit
);
8590 got_object_commit_close(pcommit
);
8592 got_object_tree_close(tree
);
8594 got_object_tree_close(ptree
);
8599 * Remove any "logmsg" reference comprised entirely of paths that have
8600 * been reverted in this work tree. If any path in the logmsg ref changeset
8601 * remains in a changed state in the worktree, do not remove the reference.
8603 static const struct got_error
*
8604 rm_logmsg_ref(struct got_worktree
*worktree
, struct got_repository
*repo
)
8606 const struct got_error
*err
;
8607 struct got_reflist_head refs
;
8608 struct got_reflist_entry
*re
;
8609 struct got_commit_object
*commit
= NULL
;
8610 struct got_object_id
*commit_id
= NULL
;
8611 struct wt_commitable_path_arg wcpa
;
8612 char *uuidstr
= NULL
;
8616 err
= got_worktree_get_uuid(&uuidstr
, worktree
);
8620 err
= got_ref_list(&refs
, repo
, "refs/got/worktree",
8621 got_ref_cmp_by_name
, repo
);
8625 TAILQ_FOREACH(re
, &refs
, entry
) {
8626 const char *refname
;
8627 int has_changes
= 0;
8629 refname
= got_ref_get_name(re
->ref
);
8631 if (!strncmp(refname
, GOT_WORKTREE_CHERRYPICK_REF_PREFIX
,
8632 GOT_WORKTREE_CHERRYPICK_REF_PREFIX_LEN
))
8633 refname
+= GOT_WORKTREE_CHERRYPICK_REF_PREFIX_LEN
+ 1;
8634 else if (!strncmp(refname
, GOT_WORKTREE_BACKOUT_REF_PREFIX
,
8635 GOT_WORKTREE_BACKOUT_REF_PREFIX_LEN
))
8636 refname
+= GOT_WORKTREE_BACKOUT_REF_PREFIX_LEN
+ 1;
8640 if (strncmp(refname
, uuidstr
, GOT_WORKTREE_UUID_STRLEN
) == 0)
8641 refname
+= GOT_WORKTREE_UUID_STRLEN
+ 1; /* skip '-' */
8645 err
= got_repo_match_object_id(&commit_id
, NULL
, refname
,
8646 GOT_OBJ_TYPE_COMMIT
, NULL
, repo
);
8650 err
= got_object_open_as_commit(&commit
, repo
, commit_id
);
8654 wcpa
.commit_paths
= NULL
;
8655 wcpa
.has_changes
= &has_changes
;
8657 err
= commit_path_changed_in_worktree(&wcpa
, commit_id
,
8663 err
= got_ref_delete(re
->ref
, repo
);
8668 got_object_commit_close(commit
);
8677 got_ref_list_free(&refs
);
8679 got_object_commit_close(commit
);
8683 static const struct got_error
*
8684 cmd_revert(int argc
, char *argv
[])
8686 const struct got_error
*error
= NULL
;
8687 struct got_worktree
*worktree
= NULL
;
8688 struct got_repository
*repo
= NULL
;
8689 char *cwd
= NULL
, *path
= NULL
;
8690 struct got_pathlist_head paths
;
8691 struct got_pathlist_entry
*pe
;
8692 int ch
, can_recurse
= 0, pflag
= 0;
8693 FILE *patch_script_file
= NULL
;
8694 const char *patch_script_path
= NULL
;
8695 struct choose_patch_arg cpa
;
8696 int *pack_fds
= NULL
;
8701 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8702 "unveil", NULL
) == -1)
8706 while ((ch
= getopt(argc
, argv
, "F:pR")) != -1) {
8709 patch_script_path
= optarg
;
8728 if (patch_script_path
&& !pflag
)
8729 errx(1, "-F option can only be used together with -p option");
8731 cwd
= getcwd(NULL
, 0);
8733 error
= got_error_from_errno("getcwd");
8737 error
= got_repo_pack_fds_open(&pack_fds
);
8741 error
= got_worktree_open(&worktree
, cwd
);
8743 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
8744 error
= wrap_not_worktree_error(error
, "revert", cwd
);
8748 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
8753 if (patch_script_path
) {
8754 patch_script_file
= fopen(patch_script_path
, "re");
8755 if (patch_script_file
== NULL
) {
8756 error
= got_error_from_errno2("fopen",
8763 * XXX "c" perm needed on repo dir to delete merge references.
8765 error
= apply_unveil(got_repo_get_path(repo
), 0,
8766 got_worktree_get_root_path(worktree
));
8770 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
8777 TAILQ_FOREACH(pe
, &paths
, entry
) {
8778 if (asprintf(&ondisk_path
, "%s/%s",
8779 got_worktree_get_root_path(worktree
),
8781 error
= got_error_from_errno("asprintf");
8784 if (lstat(ondisk_path
, &sb
) == -1) {
8785 if (errno
== ENOENT
) {
8789 error
= got_error_from_errno2("lstat",
8795 if (S_ISDIR(sb
.st_mode
)) {
8796 error
= got_error_msg(GOT_ERR_BAD_PATH
,
8797 "reverting directories requires -R option");
8803 cpa
.patch_script_file
= patch_script_file
;
8804 cpa
.action
= "revert";
8805 error
= got_worktree_revert(worktree
, &paths
, revert_progress
, NULL
,
8806 pflag
? choose_patch
: NULL
, &cpa
, repo
);
8808 error
= rm_logmsg_ref(worktree
, repo
);
8810 if (patch_script_file
&& fclose(patch_script_file
) == EOF
&&
8812 error
= got_error_from_errno2("fclose", patch_script_path
);
8814 const struct got_error
*close_err
= got_repo_close(repo
);
8819 got_worktree_close(worktree
);
8821 const struct got_error
*pack_err
=
8822 got_repo_pack_fds_close(pack_fds
);
8826 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
8835 fprintf(stderr
, "usage: %s commit [-CNnS] [-A author] [-F path] "
8836 "[-m message] [path ...]\n", getprogname());
8840 struct collect_commit_logmsg_arg
{
8841 const char *cmdline_log
;
8842 const char *prepared_log
;
8843 const char *merged_log
;
8844 int non_interactive
;
8846 const char *worktree_path
;
8847 const char *branch_name
;
8848 const char *repo_path
;
8853 static const struct got_error
*
8854 read_prepared_logmsg(char **logmsg
, const char *path
)
8856 const struct got_error
*err
= NULL
;
8862 memset(&sb
, 0, sizeof(sb
));
8864 f
= fopen(path
, "re");
8866 return got_error_from_errno2("fopen", path
);
8868 if (fstat(fileno(f
), &sb
) == -1) {
8869 err
= got_error_from_errno2("fstat", path
);
8872 if (sb
.st_size
== 0) {
8873 err
= got_error(GOT_ERR_COMMIT_MSG_EMPTY
);
8877 *logmsg
= malloc(sb
.st_size
+ 1);
8878 if (*logmsg
== NULL
) {
8879 err
= got_error_from_errno("malloc");
8883 r
= fread(*logmsg
, 1, sb
.st_size
, f
);
8884 if (r
!= sb
.st_size
) {
8886 err
= got_error_from_errno2("fread", path
);
8888 err
= got_error(GOT_ERR_IO
);
8891 (*logmsg
)[sb
.st_size
] = '\0';
8893 if (fclose(f
) == EOF
&& err
== NULL
)
8894 err
= got_error_from_errno2("fclose", path
);
8902 static const struct got_error
*
8903 collect_commit_logmsg(struct got_pathlist_head
*commitable_paths
,
8904 const char *diff_path
, char **logmsg
, void *arg
)
8906 char *initial_content
= NULL
;
8907 struct got_pathlist_entry
*pe
;
8908 const struct got_error
*err
= NULL
;
8909 char *template = NULL
;
8910 char *prepared_msg
= NULL
, *merged_msg
= NULL
;
8911 struct collect_commit_logmsg_arg
*a
= arg
;
8912 int initial_content_len
;
8916 /* if a message was specified on the command line, just use it */
8917 if (a
->cmdline_log
!= NULL
&& strlen(a
->cmdline_log
) != 0) {
8918 len
= strlen(a
->cmdline_log
) + 1;
8919 *logmsg
= malloc(len
+ 1);
8920 if (*logmsg
== NULL
)
8921 return got_error_from_errno("malloc");
8922 strlcpy(*logmsg
, a
->cmdline_log
, len
);
8924 } else if (a
->prepared_log
!= NULL
&& a
->non_interactive
)
8925 return read_prepared_logmsg(logmsg
, a
->prepared_log
);
8927 if (asprintf(&template, "%s/logmsg", a
->worktree_path
) == -1)
8928 return got_error_from_errno("asprintf");
8930 err
= got_opentemp_named_fd(&a
->logmsg_path
, &fd
, template, "");
8934 if (a
->prepared_log
) {
8935 err
= read_prepared_logmsg(&prepared_msg
, a
->prepared_log
);
8938 } else if (a
->merged_log
) {
8939 err
= read_prepared_logmsg(&merged_msg
, a
->merged_log
);
8944 initial_content_len
= asprintf(&initial_content
,
8945 "%s%s\n# changes to be committed on branch %s:\n",
8946 prepared_msg
? prepared_msg
: "",
8947 merged_msg
? merged_msg
: "", a
->branch_name
);
8948 if (initial_content_len
== -1) {
8949 err
= got_error_from_errno("asprintf");
8953 if (write(fd
, initial_content
, initial_content_len
) == -1) {
8954 err
= got_error_from_errno2("write", a
->logmsg_path
);
8958 TAILQ_FOREACH(pe
, commitable_paths
, entry
) {
8959 struct got_commitable
*ct
= pe
->data
;
8960 dprintf(fd
, "# %c %s\n",
8961 got_commitable_get_status(ct
),
8962 got_commitable_get_path(ct
));
8966 dprintf(fd
, "# detailed changes can be viewed in %s\n",
8970 if (close(fd
) == -1) {
8971 err
= got_error_from_errno2("close", a
->logmsg_path
);
8976 err
= edit_logmsg(logmsg
, a
->editor
, a
->logmsg_path
, initial_content
,
8977 initial_content_len
, a
->prepared_log
? 0 : 1);
8979 free(initial_content
);
8984 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
8985 err
= got_error_from_errno2("close", a
->logmsg_path
);
8987 /* Editor is done; we can now apply unveil(2) */
8989 err
= apply_unveil(a
->repo_path
, 0, a
->worktree_path
);
8997 static const struct got_error
*
8998 cat_logmsg(FILE *f
, struct got_commit_object
*commit
, const char *idstr
,
8999 const char *type
, int has_content
)
9001 const struct got_error
*err
= NULL
;
9002 char *logmsg
= NULL
;
9004 err
= got_object_commit_get_logmsg(&logmsg
, commit
);
9008 if (fprintf(f
, "%s# log message of %s commit %s:%s",
9009 has_content
? "\n" : "", type
, idstr
, logmsg
) < 0)
9010 err
= got_ferror(f
, GOT_ERR_IO
);
9017 * Lookup "logmsg" references of backed-out and cherrypicked commits
9018 * belonging to the current work tree. If found, and the worktree has
9019 * at least one modified file that was changed in the referenced commit,
9020 * add its log message to a new temporary file at *logmsg_path.
9021 * Add all refs found to matched_refs to be scheduled for removal on
9022 * successful commit.
9024 static const struct got_error
*
9025 lookup_logmsg_ref(char **logmsg_path
, struct got_pathlist_head
*paths
,
9026 struct got_reflist_head
*matched_refs
, struct got_worktree
*worktree
,
9027 struct got_repository
*repo
)
9029 const struct got_error
*err
;
9030 struct got_commit_object
*commit
= NULL
;
9031 struct got_object_id
*id
= NULL
;
9032 struct got_reflist_head refs
;
9033 struct got_reflist_entry
*re
, *re_match
;
9035 char *uuidstr
= NULL
;
9036 int added_logmsg
= 0;
9040 *logmsg_path
= NULL
;
9042 err
= got_worktree_get_uuid(&uuidstr
, worktree
);
9046 err
= got_ref_list(&refs
, repo
, "refs/got/worktree",
9047 got_ref_cmp_by_name
, repo
);
9051 TAILQ_FOREACH(re
, &refs
, entry
) {
9052 const char *refname
, *type
;
9053 struct wt_commitable_path_arg wcpa
;
9056 refname
= got_ref_get_name(re
->ref
);
9058 if (strncmp(refname
, GOT_WORKTREE_CHERRYPICK_REF_PREFIX
,
9059 GOT_WORKTREE_CHERRYPICK_REF_PREFIX_LEN
) == 0) {
9060 refname
+= GOT_WORKTREE_CHERRYPICK_REF_PREFIX_LEN
+ 1;
9061 type
= "cherrypicked";
9062 } else if (strncmp(refname
, GOT_WORKTREE_BACKOUT_REF_PREFIX
,
9063 GOT_WORKTREE_BACKOUT_REF_PREFIX_LEN
) == 0) {
9064 refname
+= GOT_WORKTREE_BACKOUT_REF_PREFIX_LEN
+ 1;
9065 type
= "backed-out";
9069 if (strncmp(refname
, uuidstr
, GOT_WORKTREE_UUID_STRLEN
) == 0)
9070 refname
+= GOT_WORKTREE_UUID_STRLEN
+ 1; /* skip '-' */
9074 err
= got_repo_match_object_id(&id
, NULL
, refname
,
9075 GOT_OBJ_TYPE_COMMIT
, NULL
, repo
);
9079 err
= got_object_open_as_commit(&commit
, repo
, id
);
9083 wcpa
.commit_paths
= paths
;
9084 wcpa
.has_changes
= &add_logmsg
;
9086 err
= commit_path_changed_in_worktree(&wcpa
, id
,
9093 err
= got_opentemp_named(logmsg_path
, &f
,
9094 "got-commit-logmsg", "");
9098 err
= cat_logmsg(f
, commit
, refname
, type
,
9105 err
= got_reflist_entry_dup(&re_match
, re
);
9108 TAILQ_INSERT_HEAD(matched_refs
, re_match
, entry
);
9111 got_object_commit_close(commit
);
9120 got_ref_list_free(&refs
);
9122 got_object_commit_close(commit
);
9123 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
9124 err
= got_error_from_errno("fclose");
9125 if (!added_logmsg
) {
9126 if (*logmsg_path
&& unlink(*logmsg_path
) != 0 && err
== NULL
)
9127 err
= got_error_from_errno2("unlink", *logmsg_path
);
9128 *logmsg_path
= NULL
;
9133 static const struct got_error
*
9134 cmd_commit(int argc
, char *argv
[])
9136 const struct got_error
*error
= NULL
;
9137 struct got_worktree
*worktree
= NULL
;
9138 struct got_repository
*repo
= NULL
;
9139 char *cwd
= NULL
, *id_str
= NULL
;
9140 struct got_object_id
*id
= NULL
;
9141 const char *logmsg
= NULL
;
9142 char *prepared_logmsg
= NULL
, *merged_logmsg
= NULL
;
9143 struct collect_commit_logmsg_arg cl_arg
;
9144 const char *author
= NULL
;
9145 char *gitconfig_path
= NULL
, *editor
= NULL
, *committer
= NULL
;
9146 int ch
, rebase_in_progress
, histedit_in_progress
, preserve_logmsg
= 0;
9147 int allow_bad_symlinks
= 0, non_interactive
= 0, merge_in_progress
= 0;
9148 int show_diff
= 1, commit_conflicts
= 0;
9149 struct got_pathlist_head paths
;
9150 struct got_reflist_head refs
;
9151 struct got_reflist_entry
*re
;
9152 int *pack_fds
= NULL
;
9156 cl_arg
.logmsg_path
= NULL
;
9159 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
9160 "unveil", NULL
) == -1)
9164 while ((ch
= getopt(argc
, argv
, "A:CF:m:NnS")) != -1) {
9168 error
= valid_author(author
);
9173 commit_conflicts
= 1;
9177 option_conflict('F', 'm');
9178 prepared_logmsg
= realpath(optarg
, NULL
);
9179 if (prepared_logmsg
== NULL
)
9180 return got_error_from_errno2("realpath",
9184 if (prepared_logmsg
)
9185 option_conflict('m', 'F');
9189 non_interactive
= 1;
9195 allow_bad_symlinks
= 1;
9206 cwd
= getcwd(NULL
, 0);
9208 error
= got_error_from_errno("getcwd");
9212 error
= got_repo_pack_fds_open(&pack_fds
);
9216 error
= got_worktree_open(&worktree
, cwd
);
9218 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
9219 error
= wrap_not_worktree_error(error
, "commit", cwd
);
9223 error
= got_worktree_rebase_in_progress(&rebase_in_progress
, worktree
);
9226 if (rebase_in_progress
) {
9227 error
= got_error(GOT_ERR_REBASING
);
9231 error
= got_worktree_histedit_in_progress(&histedit_in_progress
,
9236 error
= get_gitconfig_path(&gitconfig_path
);
9239 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
9240 gitconfig_path
, pack_fds
);
9244 error
= got_worktree_merge_in_progress(&merge_in_progress
, worktree
, repo
);
9247 if (merge_in_progress
) {
9248 error
= got_error(GOT_ERR_MERGE_BUSY
);
9252 error
= get_author(&committer
, repo
, worktree
);
9260 * unveil(2) traverses exec(2); if an editor is used we have
9261 * to apply unveil after the log message has been written.
9263 if (logmsg
== NULL
|| strlen(logmsg
) == 0)
9264 error
= get_editor(&editor
);
9266 error
= apply_unveil(got_repo_get_path(repo
), 0,
9267 got_worktree_get_root_path(worktree
));
9271 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
9275 if (prepared_logmsg
== NULL
) {
9276 error
= lookup_logmsg_ref(&merged_logmsg
,
9277 argc
> 0 ? &paths
: NULL
, &refs
, worktree
, repo
);
9282 cl_arg
.editor
= editor
;
9283 cl_arg
.cmdline_log
= logmsg
;
9284 cl_arg
.prepared_log
= prepared_logmsg
;
9285 cl_arg
.merged_log
= merged_logmsg
;
9286 cl_arg
.non_interactive
= non_interactive
;
9287 cl_arg
.worktree_path
= got_worktree_get_root_path(worktree
);
9288 cl_arg
.branch_name
= got_worktree_get_head_ref_name(worktree
);
9289 if (!histedit_in_progress
) {
9290 if (strncmp(cl_arg
.branch_name
, "refs/heads/", 11) != 0) {
9291 error
= got_error(GOT_ERR_COMMIT_BRANCH
);
9294 cl_arg
.branch_name
+= 11;
9296 cl_arg
.repo_path
= got_repo_get_path(repo
);
9297 error
= got_worktree_commit(&id
, worktree
, &paths
, author
, committer
,
9298 allow_bad_symlinks
, show_diff
, commit_conflicts
,
9299 collect_commit_logmsg
, &cl_arg
, print_status
, NULL
, repo
);
9301 if (error
->code
!= GOT_ERR_COMMIT_MSG_EMPTY
&&
9302 cl_arg
.logmsg_path
!= NULL
)
9303 preserve_logmsg
= 1;
9307 error
= got_object_id_str(&id_str
, id
);
9310 printf("Created commit %s\n", id_str
);
9312 TAILQ_FOREACH(re
, &refs
, entry
) {
9313 error
= got_ref_delete(re
->ref
, repo
);
9319 if (preserve_logmsg
) {
9320 fprintf(stderr
, "%s: log message preserved in %s\n",
9321 getprogname(), cl_arg
.logmsg_path
);
9322 } else if (cl_arg
.logmsg_path
&& unlink(cl_arg
.logmsg_path
) == -1 &&
9324 error
= got_error_from_errno2("unlink", cl_arg
.logmsg_path
);
9325 free(cl_arg
.logmsg_path
);
9326 if (merged_logmsg
&& unlink(merged_logmsg
) == -1 && error
== NULL
)
9327 error
= got_error_from_errno2("unlink", merged_logmsg
);
9328 free(merged_logmsg
);
9330 const struct got_error
*close_err
= got_repo_close(repo
);
9335 got_worktree_close(worktree
);
9337 const struct got_error
*pack_err
=
9338 got_repo_pack_fds_close(pack_fds
);
9342 got_ref_list_free(&refs
);
9343 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
9346 free(gitconfig_path
);
9349 free(prepared_logmsg
);
9356 fprintf(stderr
, "usage: %s send [-afqTv] [-b branch] [-d branch] "
9357 "[-r repository-path] [-t tag] [remote-repository]\n",
9363 print_load_info(int print_colored
, int print_found
, int print_trees
,
9364 int ncolored
, int nfound
, int ntrees
)
9366 if (print_colored
) {
9367 printf("%d commit%s colored", ncolored
,
9368 ncolored
== 1 ? "" : "s");
9371 printf("%s%d object%s found",
9372 ncolored
> 0 ? "; " : "",
9373 nfound
, nfound
== 1 ? "" : "s");
9376 printf("; %d tree%s scanned", ntrees
,
9377 ntrees
== 1 ? "" : "s");
9381 struct got_send_progress_arg
{
9382 char last_scaled_packsize
[FMT_SCALED_STRSIZE
];
9389 int last_nobj_total
;
9393 int printed_something
;
9395 struct got_pathlist_head
*delete_branches
;
9398 static const struct got_error
*
9399 send_progress(void *arg
, int ncolored
, int nfound
, int ntrees
,
9400 off_t packfile_size
, int ncommits
, int nobj_total
, int nobj_deltify
,
9401 int nobj_written
, off_t bytes_sent
, const char *refname
,
9402 const char *errmsg
, int success
)
9404 struct got_send_progress_arg
*a
= arg
;
9405 char scaled_packsize
[FMT_SCALED_STRSIZE
];
9406 char scaled_sent
[FMT_SCALED_STRSIZE
];
9407 int p_deltify
= 0, p_written
= 0, p_sent
= 0;
9408 int print_colored
= 0, print_found
= 0, print_trees
= 0;
9409 int print_searching
= 0, print_total
= 0;
9410 int print_deltify
= 0, print_written
= 0, print_sent
= 0;
9412 if (a
->verbosity
< 0)
9416 const char *status
= success
? "accepted" : "rejected";
9419 struct got_pathlist_entry
*pe
;
9420 TAILQ_FOREACH(pe
, a
->delete_branches
, entry
) {
9421 const char *branchname
= pe
->path
;
9422 if (got_path_cmp(branchname
, refname
,
9423 strlen(branchname
), strlen(refname
)) == 0) {
9425 a
->sent_something
= 1;
9431 if (a
->printed_something
)
9433 printf("Server has %s %s", status
, refname
);
9435 printf(": %s", errmsg
);
9436 a
->printed_something
= 1;
9440 if (a
->last_ncolored
!= ncolored
) {
9442 a
->last_ncolored
= ncolored
;
9445 if (a
->last_nfound
!= nfound
) {
9448 a
->last_nfound
= nfound
;
9451 if (a
->last_ntrees
!= ntrees
) {
9455 a
->last_ntrees
= ntrees
;
9458 if ((print_colored
|| print_found
|| print_trees
) &&
9461 print_load_info(print_colored
, print_found
, print_trees
,
9462 ncolored
, nfound
, ntrees
);
9463 a
->printed_something
= 1;
9466 } else if (!a
->loading_done
) {
9468 print_load_info(1, 1, 1, ncolored
, nfound
, ntrees
);
9470 a
->loading_done
= 1;
9473 if (fmt_scaled(packfile_size
, scaled_packsize
) == -1)
9474 return got_error_from_errno("fmt_scaled");
9475 if (fmt_scaled(bytes_sent
, scaled_sent
) == -1)
9476 return got_error_from_errno("fmt_scaled");
9478 if (a
->last_ncommits
!= ncommits
) {
9479 print_searching
= 1;
9480 a
->last_ncommits
= ncommits
;
9483 if (a
->last_nobj_total
!= nobj_total
) {
9484 print_searching
= 1;
9486 a
->last_nobj_total
= nobj_total
;
9489 if (packfile_size
> 0 && (a
->last_scaled_packsize
[0] == '\0' ||
9490 strcmp(scaled_packsize
, a
->last_scaled_packsize
)) != 0) {
9491 if (strlcpy(a
->last_scaled_packsize
, scaled_packsize
,
9492 FMT_SCALED_STRSIZE
) >= FMT_SCALED_STRSIZE
)
9493 return got_error(GOT_ERR_NO_SPACE
);
9496 if (nobj_deltify
> 0 || nobj_written
> 0) {
9497 if (nobj_deltify
> 0) {
9498 p_deltify
= (nobj_deltify
* 100) / nobj_total
;
9499 if (p_deltify
!= a
->last_p_deltify
) {
9500 a
->last_p_deltify
= p_deltify
;
9501 print_searching
= 1;
9506 if (nobj_written
> 0) {
9507 p_written
= (nobj_written
* 100) / nobj_total
;
9508 if (p_written
!= a
->last_p_written
) {
9509 a
->last_p_written
= p_written
;
9510 print_searching
= 1;
9518 if (bytes_sent
> 0) {
9519 p_sent
= (bytes_sent
* 100) / packfile_size
;
9520 if (p_sent
!= a
->last_p_sent
) {
9521 a
->last_p_sent
= p_sent
;
9522 print_searching
= 1;
9528 a
->sent_something
= 1;
9531 if (print_searching
|| print_total
|| print_deltify
|| print_written
||
9534 if (print_searching
)
9535 printf("packing %d reference%s", ncommits
,
9536 ncommits
== 1 ? "" : "s");
9538 printf("; %d object%s", nobj_total
,
9539 nobj_total
== 1 ? "" : "s");
9541 printf("; deltify: %d%%", p_deltify
);
9543 printf("; uploading pack: %*s %d%%", FMT_SCALED_STRSIZE
- 2,
9544 scaled_packsize
, p_sent
);
9545 else if (print_written
)
9546 printf("; writing pack: %*s %d%%", FMT_SCALED_STRSIZE
- 2,
9547 scaled_packsize
, p_written
);
9548 if (print_searching
|| print_total
|| print_deltify
||
9549 print_written
|| print_sent
) {
9550 a
->printed_something
= 1;
9556 static const struct got_error
*
9557 cmd_send(int argc
, char *argv
[])
9559 const struct got_error
*error
= NULL
;
9560 char *cwd
= NULL
, *repo_path
= NULL
;
9561 const char *remote_name
;
9562 char *proto
= NULL
, *host
= NULL
, *port
= NULL
;
9563 char *repo_name
= NULL
, *server_path
= NULL
;
9564 const struct got_remote_repo
*remotes
, *remote
= NULL
;
9565 int nremotes
, nbranches
= 0, ndelete_branches
= 0;
9566 struct got_repository
*repo
= NULL
;
9567 struct got_worktree
*worktree
= NULL
;
9568 const struct got_gotconfig
*repo_conf
= NULL
, *worktree_conf
= NULL
;
9569 struct got_pathlist_head branches
;
9570 struct got_pathlist_head tags
;
9571 struct got_reflist_head all_branches
;
9572 struct got_reflist_head all_tags
;
9573 struct got_pathlist_head delete_args
;
9574 struct got_pathlist_head delete_branches
;
9575 struct got_reflist_entry
*re
;
9576 struct got_pathlist_entry
*pe
;
9577 int i
, ch
, sendfd
= -1, sendstatus
;
9579 struct got_send_progress_arg spa
;
9580 int verbosity
= 0, overwrite_refs
= 0;
9581 int send_all_branches
= 0, send_all_tags
= 0;
9582 struct got_reference
*ref
= NULL
;
9583 int *pack_fds
= NULL
;
9585 TAILQ_INIT(&branches
);
9587 TAILQ_INIT(&all_branches
);
9588 TAILQ_INIT(&all_tags
);
9589 TAILQ_INIT(&delete_args
);
9590 TAILQ_INIT(&delete_branches
);
9592 while ((ch
= getopt(argc
, argv
, "ab:d:fqr:Tt:v")) != -1) {
9595 send_all_branches
= 1;
9598 error
= got_pathlist_append(&branches
, optarg
, NULL
);
9604 error
= got_pathlist_append(&delete_args
, optarg
, NULL
);
9615 repo_path
= realpath(optarg
, NULL
);
9616 if (repo_path
== NULL
)
9617 return got_error_from_errno2("realpath",
9619 got_path_strip_trailing_slashes(repo_path
);
9625 error
= got_pathlist_append(&tags
, optarg
, NULL
);
9632 else if (verbosity
< 3)
9643 if (send_all_branches
&& !TAILQ_EMPTY(&branches
))
9644 option_conflict('a', 'b');
9645 if (send_all_tags
&& !TAILQ_EMPTY(&tags
))
9646 option_conflict('T', 't');
9650 remote_name
= GOT_SEND_DEFAULT_REMOTE_NAME
;
9652 remote_name
= argv
[0];
9656 cwd
= getcwd(NULL
, 0);
9658 error
= got_error_from_errno("getcwd");
9662 error
= got_repo_pack_fds_open(&pack_fds
);
9666 if (repo_path
== NULL
) {
9667 error
= got_worktree_open(&worktree
, cwd
);
9668 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
9674 strdup(got_worktree_get_repo_path(worktree
));
9675 if (repo_path
== NULL
)
9676 error
= got_error_from_errno("strdup");
9680 repo_path
= strdup(cwd
);
9681 if (repo_path
== NULL
) {
9682 error
= got_error_from_errno("strdup");
9688 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
9693 worktree_conf
= got_worktree_get_gotconfig(worktree
);
9694 if (worktree_conf
) {
9695 got_gotconfig_get_remotes(&nremotes
, &remotes
,
9697 for (i
= 0; i
< nremotes
; i
++) {
9698 if (strcmp(remotes
[i
].name
, remote_name
) == 0) {
9699 remote
= &remotes
[i
];
9705 if (remote
== NULL
) {
9706 repo_conf
= got_repo_get_gotconfig(repo
);
9708 got_gotconfig_get_remotes(&nremotes
, &remotes
,
9710 for (i
= 0; i
< nremotes
; i
++) {
9711 if (strcmp(remotes
[i
].name
, remote_name
) == 0) {
9712 remote
= &remotes
[i
];
9718 if (remote
== NULL
) {
9719 got_repo_get_gitconfig_remotes(&nremotes
, &remotes
, repo
);
9720 for (i
= 0; i
< nremotes
; i
++) {
9721 if (strcmp(remotes
[i
].name
, remote_name
) == 0) {
9722 remote
= &remotes
[i
];
9727 if (remote
== NULL
) {
9728 error
= got_error_path(remote_name
, GOT_ERR_NO_REMOTE
);
9732 error
= got_dial_parse_uri(&proto
, &host
, &port
, &server_path
,
9733 &repo_name
, remote
->send_url
);
9737 if (strcmp(proto
, "git") == 0) {
9739 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
9740 "sendfd dns inet unveil", NULL
) == -1)
9743 } else if (strcmp(proto
, "git+ssh") == 0 ||
9744 strcmp(proto
, "ssh") == 0) {
9746 if (pledge("stdio rpath wpath cpath fattr flock proc exec "
9747 "sendfd unveil", NULL
) == -1)
9750 } else if (strcmp(proto
, "http") == 0 ||
9751 strcmp(proto
, "git+http") == 0) {
9752 error
= got_error_path(proto
, GOT_ERR_NOT_IMPL
);
9755 error
= got_error_path(proto
, GOT_ERR_BAD_PROTO
);
9759 error
= got_dial_apply_unveil(proto
);
9763 error
= apply_unveil(got_repo_get_path(repo
), 0, NULL
);
9767 if (send_all_branches
) {
9768 error
= got_ref_list(&all_branches
, repo
, "refs/heads",
9769 got_ref_cmp_by_name
, NULL
);
9772 TAILQ_FOREACH(re
, &all_branches
, entry
) {
9773 const char *branchname
= got_ref_get_name(re
->ref
);
9774 error
= got_pathlist_append(&branches
,
9780 } else if (nbranches
== 0) {
9781 for (i
= 0; i
< remote
->nsend_branches
; i
++) {
9782 error
= got_pathlist_append(&branches
,
9783 remote
->send_branches
[i
], NULL
);
9789 if (send_all_tags
) {
9790 error
= got_ref_list(&all_tags
, repo
, "refs/tags",
9791 got_ref_cmp_by_name
, NULL
);
9794 TAILQ_FOREACH(re
, &all_tags
, entry
) {
9795 const char *tagname
= got_ref_get_name(re
->ref
);
9796 error
= got_pathlist_append(&tags
,
9804 * To prevent accidents only branches in refs/heads/ can be deleted
9805 * with 'got send -d'.
9806 * Deleting anything else requires local repository access or Git.
9808 TAILQ_FOREACH(pe
, &delete_args
, entry
) {
9809 const char *branchname
= pe
->path
;
9811 struct got_pathlist_entry
*new;
9812 if (strncmp(branchname
, "refs/heads/", 11) == 0) {
9813 s
= strdup(branchname
);
9815 error
= got_error_from_errno("strdup");
9819 if (asprintf(&s
, "refs/heads/%s", branchname
) == -1) {
9820 error
= got_error_from_errno("asprintf");
9824 error
= got_pathlist_insert(&new, &delete_branches
, s
, NULL
);
9825 if (error
|| new == NULL
/* duplicate */)
9832 if (nbranches
== 0 && ndelete_branches
== 0) {
9833 struct got_reference
*head_ref
;
9835 error
= got_ref_open(&head_ref
, repo
,
9836 got_worktree_get_head_ref_name(worktree
), 0);
9838 error
= got_ref_open(&head_ref
, repo
, GOT_REF_HEAD
, 0);
9841 if (got_ref_is_symbolic(head_ref
)) {
9842 error
= got_ref_resolve_symbolic(&ref
, repo
, head_ref
);
9843 got_ref_close(head_ref
);
9848 error
= got_pathlist_append(&branches
, got_ref_get_name(ref
),
9855 if (verbosity
>= 0) {
9856 printf("Connecting to \"%s\" %s://%s%s%s%s%s\n",
9857 remote
->name
, proto
, host
,
9858 port
? ":" : "", port
? port
: "",
9859 *server_path
== '/' ? "" : "/", server_path
);
9862 error
= got_send_connect(&sendpid
, &sendfd
, proto
, host
, port
,
9863 server_path
, verbosity
);
9867 memset(&spa
, 0, sizeof(spa
));
9868 spa
.last_scaled_packsize
[0] = '\0';
9869 spa
.last_p_deltify
= -1;
9870 spa
.last_p_written
= -1;
9871 spa
.verbosity
= verbosity
;
9872 spa
.delete_branches
= &delete_branches
;
9873 error
= got_send_pack(remote_name
, &branches
, &tags
, &delete_branches
,
9874 verbosity
, overwrite_refs
, sendfd
, repo
, send_progress
, &spa
,
9875 check_cancelled
, NULL
);
9876 if (spa
.printed_something
)
9880 if (!spa
.sent_something
&& verbosity
>= 0)
9881 printf("Already up-to-date\n");
9884 if (kill(sendpid
, SIGTERM
) == -1)
9885 error
= got_error_from_errno("kill");
9886 if (waitpid(sendpid
, &sendstatus
, 0) == -1 && error
== NULL
)
9887 error
= got_error_from_errno("waitpid");
9889 if (sendfd
!= -1 && close(sendfd
) == -1 && error
== NULL
)
9890 error
= got_error_from_errno("close");
9892 const struct got_error
*close_err
= got_repo_close(repo
);
9897 got_worktree_close(worktree
);
9899 const struct got_error
*pack_err
=
9900 got_repo_pack_fds_close(pack_fds
);
9906 got_pathlist_free(&branches
, GOT_PATHLIST_FREE_NONE
);
9907 got_pathlist_free(&tags
, GOT_PATHLIST_FREE_NONE
);
9908 got_ref_list_free(&all_branches
);
9909 got_ref_list_free(&all_tags
);
9910 got_pathlist_free(&delete_args
, GOT_PATHLIST_FREE_NONE
);
9911 got_pathlist_free(&delete_branches
, GOT_PATHLIST_FREE_PATH
);
9923 * Print and if delete is set delete all ref_prefix references.
9924 * If wanted_ref is not NULL, only print or delete this reference.
9926 static const struct got_error
*
9927 process_logmsg_refs(const char *ref_prefix
, size_t prefix_len
,
9928 const char *wanted_ref
, int delete, struct got_worktree
*worktree
,
9929 struct got_repository
*repo
)
9931 const struct got_error
*err
;
9932 struct got_pathlist_head paths
;
9933 struct got_reflist_head refs
;
9934 struct got_reflist_entry
*re
;
9935 struct got_reflist_object_id_map
*refs_idmap
= NULL
;
9936 struct got_commit_object
*commit
= NULL
;
9937 struct got_object_id
*id
= NULL
;
9938 const char *header_prefix
;
9939 char *uuidstr
= NULL
;
9945 err
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
, repo
);
9949 err
= got_reflist_object_id_map_create(&refs_idmap
, &refs
, repo
);
9953 if (worktree
!= NULL
) {
9954 err
= got_worktree_get_uuid(&uuidstr
, worktree
);
9960 if (strncmp(wanted_ref
, "refs/heads/", 11) == 0)
9964 if (strcmp(ref_prefix
, GOT_WORKTREE_BACKOUT_REF_PREFIX
) == 0)
9965 header_prefix
= "backout";
9967 header_prefix
= "cherrypick";
9969 TAILQ_FOREACH(re
, &refs
, entry
) {
9970 const char *refname
, *wt
;
9972 refname
= got_ref_get_name(re
->ref
);
9974 err
= check_cancelled(NULL
);
9978 if (strncmp(refname
, ref_prefix
, prefix_len
) == 0)
9979 refname
+= prefix_len
+ 1; /* skip '-' delimiter */
9985 if (worktree
== NULL
|| strncmp(refname
, uuidstr
,
9986 GOT_WORKTREE_UUID_STRLEN
) == 0)
9987 refname
+= GOT_WORKTREE_UUID_STRLEN
+ 1; /* skip '-' */
9991 err
= got_repo_match_object_id(&id
, NULL
, refname
,
9992 GOT_OBJ_TYPE_COMMIT
, NULL
, repo
);
9996 err
= got_object_open_as_commit(&commit
, repo
, id
);
10001 found
= strncmp(wanted_ref
, refname
,
10002 strlen(wanted_ref
)) == 0;
10003 if (wanted_ref
&& !found
) {
10004 struct got_reflist_head
*ci_refs
;
10006 ci_refs
= got_reflist_object_id_map_lookup(refs_idmap
,
10010 char *refs_str
= NULL
;
10011 char const *r
= NULL
;
10013 err
= build_refs_str(&refs_str
, ci_refs
, id
,
10020 if (strncmp(r
, wanted_ref
,
10021 strlen(wanted_ref
)) == 0) {
10025 r
= strchr(r
, ' ');
10033 if (wanted_ref
== NULL
|| found
) {
10035 err
= got_ref_delete(re
->ref
, repo
);
10038 printf("Deleted: ");
10039 err
= print_commit_oneline(commit
, id
, repo
,
10043 * Print paths modified by commit to help
10044 * associate commits with worktree changes.
10046 err
= get_changed_paths(&paths
, commit
,
10051 err
= print_commit(commit
, id
, repo
, NULL
,
10052 &paths
, NULL
, 0, 0, refs_idmap
, NULL
,
10054 got_pathlist_free(&paths
,
10055 GOT_PATHLIST_FREE_ALL
);
10057 if (worktree
== NULL
)
10058 printf("work tree: %.*s\n\n",
10059 GOT_WORKTREE_UUID_STRLEN
, wt
);
10065 got_object_commit_close(commit
);
10071 if (wanted_ref
!= NULL
&& !found
)
10072 err
= got_error_fmt(GOT_ERR_NOT_REF
, "%s", wanted_ref
);
10077 got_ref_list_free(&refs
);
10078 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_ALL
);
10080 got_reflist_object_id_map_free(refs_idmap
);
10082 got_object_commit_close(commit
);
10087 * Create new temp "logmsg" ref of the backed-out or cherrypicked commit
10088 * identified by id for log messages to prepopulate the editor on commit.
10090 static const struct got_error
*
10091 logmsg_ref(struct got_object_id
*id
, const char *prefix
,
10092 struct got_worktree
*worktree
, struct got_repository
*repo
)
10094 const struct got_error
*err
= NULL
;
10095 char *idstr
, *ref
= NULL
, *refname
= NULL
;
10096 int histedit_in_progress
;
10097 int rebase_in_progress
, merge_in_progress
;
10100 * Silenty refuse to create merge reference if any histedit, merge,
10101 * or rebase operation is in progress.
10103 err
= got_worktree_histedit_in_progress(&histedit_in_progress
,
10107 if (histedit_in_progress
)
10110 err
= got_worktree_rebase_in_progress(&rebase_in_progress
, worktree
);
10113 if (rebase_in_progress
)
10116 err
= got_worktree_merge_in_progress(&merge_in_progress
, worktree
,
10120 if (merge_in_progress
)
10123 err
= got_object_id_str(&idstr
, id
);
10127 err
= got_worktree_get_logmsg_ref_name(&refname
, worktree
, prefix
);
10131 if (asprintf(&ref
, "%s-%s", refname
, idstr
) == -1) {
10132 err
= got_error_from_errno("asprintf");
10136 err
= create_ref(ref
, got_worktree_get_base_commit_id(worktree
),
10146 usage_cherrypick(void)
10148 fprintf(stderr
, "usage: %s cherrypick [-lX] [commit-id]\n",
10153 static const struct got_error
*
10154 cmd_cherrypick(int argc
, char *argv
[])
10156 const struct got_error
*error
= NULL
;
10157 struct got_worktree
*worktree
= NULL
;
10158 struct got_repository
*repo
= NULL
;
10159 char *cwd
= NULL
, *commit_id_str
= NULL
;
10160 struct got_object_id
*commit_id
= NULL
;
10161 struct got_commit_object
*commit
= NULL
;
10162 struct got_object_qid
*pid
;
10163 int ch
, list_refs
= 0, remove_refs
= 0;
10164 struct got_update_progress_arg upa
;
10165 int *pack_fds
= NULL
;
10168 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
10169 "unveil", NULL
) == -1)
10173 while ((ch
= getopt(argc
, argv
, "lX")) != -1) {
10182 usage_cherrypick();
10190 if (list_refs
|| remove_refs
) {
10191 if (argc
!= 0 && argc
!= 1)
10192 usage_cherrypick();
10193 } else if (argc
!= 1)
10194 usage_cherrypick();
10195 if (list_refs
&& remove_refs
)
10196 option_conflict('l', 'X');
10198 cwd
= getcwd(NULL
, 0);
10200 error
= got_error_from_errno("getcwd");
10204 error
= got_repo_pack_fds_open(&pack_fds
);
10208 error
= got_worktree_open(&worktree
, cwd
);
10210 if (list_refs
|| remove_refs
) {
10211 if (error
->code
!= GOT_ERR_NOT_WORKTREE
)
10214 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
10215 error
= wrap_not_worktree_error(error
,
10216 "cherrypick", cwd
);
10221 error
= got_repo_open(&repo
,
10222 worktree
? got_worktree_get_repo_path(worktree
) : cwd
,
10227 error
= apply_unveil(got_repo_get_path(repo
), 0,
10228 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
10232 if (list_refs
|| remove_refs
) {
10233 error
= process_logmsg_refs(GOT_WORKTREE_CHERRYPICK_REF_PREFIX
,
10234 GOT_WORKTREE_CHERRYPICK_REF_PREFIX_LEN
,
10235 argc
== 1 ? argv
[0] : NULL
, remove_refs
, worktree
, repo
);
10239 error
= got_repo_match_object_id(&commit_id
, NULL
, argv
[0],
10240 GOT_OBJ_TYPE_COMMIT
, NULL
, repo
);
10243 error
= got_object_id_str(&commit_id_str
, commit_id
);
10247 error
= got_object_open_as_commit(&commit
, repo
, commit_id
);
10250 pid
= STAILQ_FIRST(got_object_commit_get_parent_ids(commit
));
10251 memset(&upa
, 0, sizeof(upa
));
10252 error
= got_worktree_merge_files(worktree
, pid
? &pid
->id
: NULL
,
10253 commit_id
, repo
, update_progress
, &upa
, check_cancelled
,
10258 if (upa
.did_something
) {
10259 error
= logmsg_ref(commit_id
,
10260 GOT_WORKTREE_CHERRYPICK_REF_PREFIX
, worktree
, repo
);
10263 printf("Merged commit %s\n", commit_id_str
);
10265 print_merge_progress_stats(&upa
);
10269 got_object_commit_close(commit
);
10270 free(commit_id_str
);
10272 got_worktree_close(worktree
);
10274 const struct got_error
*close_err
= got_repo_close(repo
);
10279 const struct got_error
*pack_err
=
10280 got_repo_pack_fds_close(pack_fds
);
10289 usage_backout(void)
10291 fprintf(stderr
, "usage: %s backout [-lX] [commit-id]\n", getprogname());
10295 static const struct got_error
*
10296 cmd_backout(int argc
, char *argv
[])
10298 const struct got_error
*error
= NULL
;
10299 struct got_worktree
*worktree
= NULL
;
10300 struct got_repository
*repo
= NULL
;
10301 char *cwd
= NULL
, *commit_id_str
= NULL
;
10302 struct got_object_id
*commit_id
= NULL
;
10303 struct got_commit_object
*commit
= NULL
;
10304 struct got_object_qid
*pid
;
10305 int ch
, list_refs
= 0, remove_refs
= 0;
10306 struct got_update_progress_arg upa
;
10307 int *pack_fds
= NULL
;
10310 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
10311 "unveil", NULL
) == -1)
10315 while ((ch
= getopt(argc
, argv
, "lX")) != -1) {
10332 if (list_refs
|| remove_refs
) {
10333 if (argc
!= 0 && argc
!= 1)
10335 } else if (argc
!= 1)
10337 if (list_refs
&& remove_refs
)
10338 option_conflict('l', 'X');
10340 cwd
= getcwd(NULL
, 0);
10342 error
= got_error_from_errno("getcwd");
10346 error
= got_repo_pack_fds_open(&pack_fds
);
10350 error
= got_worktree_open(&worktree
, cwd
);
10352 if (list_refs
|| remove_refs
) {
10353 if (error
->code
!= GOT_ERR_NOT_WORKTREE
)
10356 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
10357 error
= wrap_not_worktree_error(error
,
10363 error
= got_repo_open(&repo
,
10364 worktree
? got_worktree_get_repo_path(worktree
) : cwd
,
10369 error
= apply_unveil(got_repo_get_path(repo
), 0,
10370 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
10374 if (list_refs
|| remove_refs
) {
10375 error
= process_logmsg_refs(GOT_WORKTREE_BACKOUT_REF_PREFIX
,
10376 GOT_WORKTREE_BACKOUT_REF_PREFIX_LEN
,
10377 argc
== 1 ? argv
[0] : NULL
, remove_refs
, worktree
, repo
);
10381 error
= got_repo_match_object_id(&commit_id
, NULL
, argv
[0],
10382 GOT_OBJ_TYPE_COMMIT
, NULL
, repo
);
10385 error
= got_object_id_str(&commit_id_str
, commit_id
);
10389 error
= got_object_open_as_commit(&commit
, repo
, commit_id
);
10392 pid
= STAILQ_FIRST(got_object_commit_get_parent_ids(commit
));
10394 error
= got_error(GOT_ERR_ROOT_COMMIT
);
10398 memset(&upa
, 0, sizeof(upa
));
10399 error
= got_worktree_merge_files(worktree
, commit_id
, &pid
->id
,
10400 repo
, update_progress
, &upa
, check_cancelled
, NULL
);
10404 if (upa
.did_something
) {
10405 error
= logmsg_ref(commit_id
, GOT_WORKTREE_BACKOUT_REF_PREFIX
,
10409 printf("Backed out commit %s\n", commit_id_str
);
10411 print_merge_progress_stats(&upa
);
10415 got_object_commit_close(commit
);
10416 free(commit_id_str
);
10418 got_worktree_close(worktree
);
10420 const struct got_error
*close_err
= got_repo_close(repo
);
10425 const struct got_error
*pack_err
=
10426 got_repo_pack_fds_close(pack_fds
);
10436 fprintf(stderr
, "usage: %s rebase [-aCclX] [branch]\n", getprogname());
10441 trim_logmsg(char *logmsg
, int limit
)
10446 len
= strlen(logmsg
);
10449 logmsg
[len
] = '\0';
10450 nl
= strchr(logmsg
, '\n');
10455 static const struct got_error
*
10456 get_short_logmsg(char **logmsg
, int limit
, struct got_commit_object
*commit
)
10458 const struct got_error
*err
;
10459 char *logmsg0
= NULL
;
10462 err
= got_object_commit_get_logmsg(&logmsg0
, commit
);
10467 while (isspace((unsigned char)s
[0]))
10470 *logmsg
= strdup(s
);
10471 if (*logmsg
== NULL
) {
10472 err
= got_error_from_errno("strdup");
10476 trim_logmsg(*logmsg
, limit
);
10482 static const struct got_error
*
10483 show_rebase_merge_conflict(struct got_object_id
*id
,
10484 struct got_repository
*repo
)
10486 const struct got_error
*err
;
10487 struct got_commit_object
*commit
= NULL
;
10488 char *id_str
= NULL
, *logmsg
= NULL
;
10490 err
= got_object_open_as_commit(&commit
, repo
, id
);
10494 err
= got_object_id_str(&id_str
, id
);
10500 err
= get_short_logmsg(&logmsg
, 42, commit
);
10504 printf("%s -> merge conflict: %s\n", id_str
, logmsg
);
10507 got_object_commit_close(commit
);
10512 static const struct got_error
*
10513 show_rebase_progress(struct got_commit_object
*commit
,
10514 struct got_object_id
*old_id
, struct got_object_id
*new_id
)
10516 const struct got_error
*err
;
10517 char *old_id_str
= NULL
, *new_id_str
= NULL
, *logmsg
= NULL
;
10519 err
= got_object_id_str(&old_id_str
, old_id
);
10524 err
= got_object_id_str(&new_id_str
, new_id
);
10529 old_id_str
[12] = '\0';
10531 new_id_str
[12] = '\0';
10533 err
= get_short_logmsg(&logmsg
, 42, commit
);
10537 printf("%s -> %s: %s\n", old_id_str
,
10538 new_id_str
? new_id_str
: "no-op change", logmsg
);
10546 static const struct got_error
*
10547 rebase_complete(struct got_worktree
*worktree
, struct got_fileindex
*fileindex
,
10548 struct got_reference
*branch
, struct got_reference
*tmp_branch
,
10549 struct got_repository
*repo
, int create_backup
)
10551 printf("Switching work tree to %s\n", got_ref_get_name(branch
));
10552 return got_worktree_rebase_complete(worktree
, fileindex
,
10553 tmp_branch
, branch
, repo
, create_backup
);
10556 static const struct got_error
*
10557 rebase_commit(struct got_pathlist_head
*merged_paths
,
10558 struct got_worktree
*worktree
, struct got_fileindex
*fileindex
,
10559 struct got_reference
*tmp_branch
, const char *committer
,
10560 struct got_object_id
*commit_id
, int allow_conflict
,
10561 struct got_repository
*repo
)
10563 const struct got_error
*error
;
10564 struct got_commit_object
*commit
;
10565 struct got_object_id
*new_commit_id
;
10567 error
= got_object_open_as_commit(&commit
, repo
, commit_id
);
10571 error
= got_worktree_rebase_commit(&new_commit_id
, merged_paths
,
10572 worktree
, fileindex
, tmp_branch
, committer
, commit
, commit_id
,
10573 allow_conflict
, repo
);
10575 if (error
->code
!= GOT_ERR_COMMIT_NO_CHANGES
)
10577 error
= show_rebase_progress(commit
, commit_id
, NULL
);
10579 error
= show_rebase_progress(commit
, commit_id
, new_commit_id
);
10580 free(new_commit_id
);
10583 got_object_commit_close(commit
);
10587 struct check_path_prefix_arg
{
10588 const char *path_prefix
;
10593 static const struct got_error
*
10594 check_path_prefix_in_diff(void *arg
, struct got_blob_object
*blob1
,
10595 struct got_blob_object
*blob2
, FILE *f1
, FILE *f2
,
10596 struct got_object_id
*id1
, struct got_object_id
*id2
,
10597 const char *path1
, const char *path2
,
10598 mode_t mode1
, mode_t mode2
, struct got_repository
*repo
)
10600 struct check_path_prefix_arg
*a
= arg
;
10602 if ((path1
&& !got_path_is_child(path1
, a
->path_prefix
, a
->len
)) ||
10603 (path2
&& !got_path_is_child(path2
, a
->path_prefix
, a
->len
)))
10604 return got_error(a
->errcode
);
10609 static const struct got_error
*
10610 check_path_prefix(struct got_object_id
*parent_id
,
10611 struct got_object_id
*commit_id
, const char *path_prefix
,
10612 int errcode
, struct got_repository
*repo
)
10614 const struct got_error
*err
;
10615 struct got_tree_object
*tree1
= NULL
, *tree2
= NULL
;
10616 struct got_commit_object
*commit
= NULL
, *parent_commit
= NULL
;
10617 struct check_path_prefix_arg cpp_arg
;
10619 if (got_path_is_root_dir(path_prefix
))
10622 err
= got_object_open_as_commit(&commit
, repo
, commit_id
);
10626 err
= got_object_open_as_commit(&parent_commit
, repo
, parent_id
);
10630 err
= got_object_open_as_tree(&tree1
, repo
,
10631 got_object_commit_get_tree_id(parent_commit
));
10635 err
= got_object_open_as_tree(&tree2
, repo
,
10636 got_object_commit_get_tree_id(commit
));
10640 cpp_arg
.path_prefix
= path_prefix
;
10641 while (cpp_arg
.path_prefix
[0] == '/')
10642 cpp_arg
.path_prefix
++;
10643 cpp_arg
.len
= strlen(cpp_arg
.path_prefix
);
10644 cpp_arg
.errcode
= errcode
;
10645 err
= got_diff_tree(tree1
, tree2
, NULL
, NULL
, -1, -1, "", "", repo
,
10646 check_path_prefix_in_diff
, &cpp_arg
, 0);
10649 got_object_tree_close(tree1
);
10651 got_object_tree_close(tree2
);
10653 got_object_commit_close(commit
);
10655 got_object_commit_close(parent_commit
);
10659 static const struct got_error
*
10660 collect_commits(struct got_object_id_queue
*commits
,
10661 struct got_object_id
*initial_commit_id
,
10662 struct got_object_id
*iter_start_id
, struct got_object_id
*iter_stop_id
,
10663 const char *path_prefix
, int path_prefix_errcode
,
10664 struct got_repository
*repo
)
10666 const struct got_error
*err
= NULL
;
10667 struct got_commit_graph
*graph
= NULL
;
10668 struct got_object_id parent_id
, commit_id
;
10669 struct got_object_qid
*qid
;
10671 err
= got_commit_graph_open(&graph
, "/", 1);
10675 err
= got_commit_graph_iter_start(graph
, iter_start_id
, repo
,
10676 check_cancelled
, NULL
);
10680 memcpy(&commit_id
, initial_commit_id
, sizeof(commit_id
));
10681 while (got_object_id_cmp(&commit_id
, iter_stop_id
) != 0) {
10682 err
= got_commit_graph_iter_next(&parent_id
, graph
, repo
,
10683 check_cancelled
, NULL
);
10685 if (err
->code
== GOT_ERR_ITER_COMPLETED
) {
10686 err
= got_error_msg(GOT_ERR_ANCESTRY
,
10687 "ran out of commits to rebase before "
10688 "youngest common ancestor commit has "
10689 "been reached?!?");
10693 err
= check_path_prefix(&parent_id
, &commit_id
,
10694 path_prefix
, path_prefix_errcode
, repo
);
10698 err
= got_object_qid_alloc(&qid
, &commit_id
);
10701 STAILQ_INSERT_HEAD(commits
, qid
, entry
);
10703 memcpy(&commit_id
, &parent_id
, sizeof(commit_id
));
10707 got_commit_graph_close(graph
);
10711 static const struct got_error
*
10712 get_commit_brief_str(char **brief_str
, struct got_commit_object
*commit
)
10714 const struct got_error
*err
= NULL
;
10715 time_t committer_time
;
10717 char datebuf
[11]; /* YYYY-MM-DD + NUL */
10718 char *author0
= NULL
, *author
, *smallerthan
;
10719 char *logmsg0
= NULL
, *logmsg
, *newline
;
10721 committer_time
= got_object_commit_get_committer_time(commit
);
10722 if (gmtime_r(&committer_time
, &tm
) == NULL
)
10723 return got_error_from_errno("gmtime_r");
10724 if (strftime(datebuf
, sizeof(datebuf
), "%G-%m-%d", &tm
) == 0)
10725 return got_error(GOT_ERR_NO_SPACE
);
10727 author0
= strdup(got_object_commit_get_author(commit
));
10728 if (author0
== NULL
)
10729 return got_error_from_errno("strdup");
10731 smallerthan
= strchr(author
, '<');
10732 if (smallerthan
&& smallerthan
[1] != '\0')
10733 author
= smallerthan
+ 1;
10734 author
[strcspn(author
, "@>")] = '\0';
10736 err
= got_object_commit_get_logmsg(&logmsg0
, commit
);
10740 while (*logmsg
== '\n')
10742 newline
= strchr(logmsg
, '\n');
10746 if (asprintf(brief_str
, "%s %s %s",
10747 datebuf
, author
, logmsg
) == -1)
10748 err
= got_error_from_errno("asprintf");
10755 static const struct got_error
*
10756 delete_backup_ref(struct got_reference
*ref
, struct got_object_id
*id
,
10757 struct got_repository
*repo
)
10759 const struct got_error
*err
;
10762 err
= got_object_id_str(&id_str
, id
);
10766 err
= got_ref_delete(ref
, repo
);
10770 printf("Deleted %s: %s\n", got_ref_get_name(ref
), id_str
);
10776 static const struct got_error
*
10777 print_backup_ref(const char *branch_name
, const char *new_id_str
,
10778 struct got_object_id
*old_commit_id
, struct got_commit_object
*old_commit
,
10779 struct got_reflist_object_id_map
*refs_idmap
,
10780 struct got_repository
*repo
)
10782 const struct got_error
*err
= NULL
;
10783 struct got_reflist_head
*refs
;
10784 char *refs_str
= NULL
;
10785 struct got_object_id
*new_commit_id
= NULL
;
10786 struct got_commit_object
*new_commit
= NULL
;
10787 char *new_commit_brief_str
= NULL
;
10788 struct got_object_id
*yca_id
= NULL
;
10789 struct got_commit_object
*yca_commit
= NULL
;
10790 char *yca_id_str
= NULL
, *yca_brief_str
= NULL
;
10791 char *custom_refs_str
;
10793 if (asprintf(&custom_refs_str
, "formerly %s", branch_name
) == -1)
10794 return got_error_from_errno("asprintf");
10796 err
= print_commit(old_commit
, old_commit_id
, repo
, NULL
, NULL
, NULL
,
10797 0, 0, refs_idmap
, custom_refs_str
, NULL
);
10801 err
= got_object_resolve_id_str(&new_commit_id
, repo
, new_id_str
);
10805 refs
= got_reflist_object_id_map_lookup(refs_idmap
, new_commit_id
);
10807 err
= build_refs_str(&refs_str
, refs
, new_commit_id
, repo
, 0);
10812 err
= got_object_open_as_commit(&new_commit
, repo
, new_commit_id
);
10816 err
= get_commit_brief_str(&new_commit_brief_str
, new_commit
);
10820 err
= got_commit_graph_find_youngest_common_ancestor(&yca_id
,
10821 old_commit_id
, new_commit_id
, 1, repo
, check_cancelled
, NULL
);
10825 printf("has become commit %s%s%s%s\n %s\n", new_id_str
,
10826 refs_str
? " (" : "", refs_str
? refs_str
: "",
10827 refs_str
? ")" : "", new_commit_brief_str
);
10828 if (yca_id
&& got_object_id_cmp(yca_id
, new_commit_id
) != 0 &&
10829 got_object_id_cmp(yca_id
, old_commit_id
) != 0) {
10833 err
= got_object_open_as_commit(&yca_commit
, repo
, yca_id
);
10837 err
= get_commit_brief_str(&yca_brief_str
, yca_commit
);
10841 err
= got_object_id_str(&yca_id_str
, yca_id
);
10845 refs
= got_reflist_object_id_map_lookup(refs_idmap
, yca_id
);
10847 err
= build_refs_str(&refs_str
, refs
, yca_id
, repo
, 0);
10851 printf("history forked at %s%s%s%s\n %s\n",
10853 refs_str
? " (" : "", refs_str
? refs_str
: "",
10854 refs_str
? ")" : "", yca_brief_str
);
10857 free(custom_refs_str
);
10858 free(new_commit_id
);
10862 free(yca_brief_str
);
10864 got_object_commit_close(new_commit
);
10866 got_object_commit_close(yca_commit
);
10871 static const struct got_error
*
10872 worktree_has_logmsg_ref(const char *caller
, struct got_worktree
*worktree
,
10873 struct got_repository
*repo
)
10875 const struct got_error
*err
;
10876 struct got_reflist_head refs
;
10877 struct got_reflist_entry
*re
;
10878 char *uuidstr
= NULL
;
10879 static char msg
[160];
10883 err
= got_worktree_get_uuid(&uuidstr
, worktree
);
10887 err
= got_ref_list(&refs
, repo
, "refs/got/worktree",
10888 got_ref_cmp_by_name
, repo
);
10892 TAILQ_FOREACH(re
, &refs
, entry
) {
10893 const char *cmd
, *refname
, *type
;
10895 refname
= got_ref_get_name(re
->ref
);
10897 if (strncmp(refname
, GOT_WORKTREE_CHERRYPICK_REF_PREFIX
,
10898 GOT_WORKTREE_CHERRYPICK_REF_PREFIX_LEN
) == 0) {
10899 refname
+= GOT_WORKTREE_CHERRYPICK_REF_PREFIX_LEN
+ 1;
10900 cmd
= "cherrypick";
10901 type
= "cherrypicked";
10902 } else if (strncmp(refname
, GOT_WORKTREE_BACKOUT_REF_PREFIX
,
10903 GOT_WORKTREE_BACKOUT_REF_PREFIX_LEN
) == 0) {
10904 refname
+= GOT_WORKTREE_BACKOUT_REF_PREFIX_LEN
+ 1;
10906 type
= "backed-out";
10910 if (strncmp(refname
, uuidstr
, GOT_WORKTREE_UUID_STRLEN
) != 0)
10913 snprintf(msg
, sizeof(msg
),
10914 "work tree has references created by %s commits which "
10915 "must be removed with 'got %s -X' before running the %s "
10916 "command", type
, cmd
, caller
);
10917 err
= got_error_msg(GOT_ERR_WORKTREE_META
, msg
);
10923 got_ref_list_free(&refs
);
10927 static const struct got_error
*
10928 process_backup_refs(const char *backup_ref_prefix
,
10929 const char *wanted_branch_name
,
10930 int delete, struct got_repository
*repo
)
10932 const struct got_error
*err
;
10933 struct got_reflist_head refs
, backup_refs
;
10934 struct got_reflist_entry
*re
;
10935 const size_t backup_ref_prefix_len
= strlen(backup_ref_prefix
);
10936 struct got_object_id
*old_commit_id
= NULL
;
10937 char *branch_name
= NULL
;
10938 struct got_commit_object
*old_commit
= NULL
;
10939 struct got_reflist_object_id_map
*refs_idmap
= NULL
;
10940 int wanted_branch_found
= 0;
10943 TAILQ_INIT(&backup_refs
);
10945 err
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
, NULL
);
10949 err
= got_reflist_object_id_map_create(&refs_idmap
, &refs
, repo
);
10953 if (wanted_branch_name
) {
10954 if (strncmp(wanted_branch_name
, "refs/heads/", 11) == 0)
10955 wanted_branch_name
+= 11;
10958 err
= got_ref_list(&backup_refs
, repo
, backup_ref_prefix
,
10959 got_ref_cmp_by_commit_timestamp_descending
, repo
);
10963 TAILQ_FOREACH(re
, &backup_refs
, entry
) {
10964 const char *refname
= got_ref_get_name(re
->ref
);
10967 err
= check_cancelled(NULL
);
10971 err
= got_ref_resolve(&old_commit_id
, repo
, re
->ref
);
10975 err
= got_object_open_as_commit(&old_commit
, repo
,
10980 if (strncmp(backup_ref_prefix
, refname
,
10981 backup_ref_prefix_len
) == 0)
10982 refname
+= backup_ref_prefix_len
;
10984 while (refname
[0] == '/')
10987 branch_name
= strdup(refname
);
10988 if (branch_name
== NULL
) {
10989 err
= got_error_from_errno("strdup");
10992 slash
= strrchr(branch_name
, '/');
10995 refname
+= strlen(branch_name
) + 1;
10998 if (wanted_branch_name
== NULL
||
10999 strcmp(wanted_branch_name
, branch_name
) == 0) {
11000 wanted_branch_found
= 1;
11002 err
= delete_backup_ref(re
->ref
,
11003 old_commit_id
, repo
);
11005 err
= print_backup_ref(branch_name
, refname
,
11006 old_commit_id
, old_commit
, refs_idmap
,
11013 free(old_commit_id
);
11014 old_commit_id
= NULL
;
11016 branch_name
= NULL
;
11017 got_object_commit_close(old_commit
);
11021 if (wanted_branch_name
&& !wanted_branch_found
) {
11022 err
= got_error_fmt(GOT_ERR_NOT_REF
,
11023 "%s/%s/", backup_ref_prefix
, wanted_branch_name
);
11027 got_reflist_object_id_map_free(refs_idmap
);
11028 got_ref_list_free(&refs
);
11029 got_ref_list_free(&backup_refs
);
11030 free(old_commit_id
);
11033 got_object_commit_close(old_commit
);
11037 static const struct got_error
*
11038 abort_progress(void *arg
, unsigned char status
, const char *path
)
11041 * Unversioned files should not clutter progress output when
11042 * an operation is aborted.
11044 if (status
== GOT_STATUS_UNVERSIONED
)
11047 return update_progress(arg
, status
, path
);
11050 static const struct got_error
*
11051 cmd_rebase(int argc
, char *argv
[])
11053 const struct got_error
*error
= NULL
;
11054 struct got_worktree
*worktree
= NULL
;
11055 struct got_repository
*repo
= NULL
;
11056 struct got_fileindex
*fileindex
= NULL
;
11057 char *cwd
= NULL
, *committer
= NULL
, *gitconfig_path
= NULL
;
11058 struct got_reference
*branch
= NULL
;
11059 struct got_reference
*new_base_branch
= NULL
, *tmp_branch
= NULL
;
11060 struct got_object_id
*commit_id
= NULL
, *parent_id
= NULL
;
11061 struct got_object_id
*resume_commit_id
= NULL
;
11062 struct got_object_id
*branch_head_commit_id
= NULL
, *yca_id
= NULL
;
11063 struct got_object_id
*head_commit_id
= NULL
;
11064 struct got_reference
*head_ref
= NULL
;
11065 struct got_commit_object
*commit
= NULL
;
11066 int ch
, rebase_in_progress
= 0, abort_rebase
= 0, continue_rebase
= 0;
11067 int histedit_in_progress
= 0, merge_in_progress
= 0;
11068 int create_backup
= 1, list_backups
= 0, delete_backups
= 0;
11069 int allow_conflict
= 0;
11070 struct got_object_id_queue commits
;
11071 struct got_pathlist_head merged_paths
;
11072 const struct got_object_id_queue
*parent_ids
;
11073 struct got_object_qid
*qid
, *pid
;
11074 struct got_update_progress_arg upa
;
11075 int *pack_fds
= NULL
;
11077 STAILQ_INIT(&commits
);
11078 TAILQ_INIT(&merged_paths
);
11079 memset(&upa
, 0, sizeof(upa
));
11082 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
11083 "unveil", NULL
) == -1)
11087 while ((ch
= getopt(argc
, argv
, "aCclX")) != -1) {
11093 allow_conflict
= 1;
11096 continue_rebase
= 1;
11102 delete_backups
= 1;
11113 if (list_backups
) {
11115 option_conflict('l', 'a');
11116 if (allow_conflict
)
11117 option_conflict('l', 'C');
11118 if (continue_rebase
)
11119 option_conflict('l', 'c');
11120 if (delete_backups
)
11121 option_conflict('l', 'X');
11122 if (argc
!= 0 && argc
!= 1)
11124 } else if (delete_backups
) {
11126 option_conflict('X', 'a');
11127 if (allow_conflict
)
11128 option_conflict('X', 'C');
11129 if (continue_rebase
)
11130 option_conflict('X', 'c');
11132 option_conflict('l', 'X');
11133 if (argc
!= 0 && argc
!= 1)
11135 } else if (allow_conflict
) {
11137 option_conflict('C', 'a');
11138 if (!continue_rebase
)
11139 errx(1, "-C option requires -c");
11141 if (abort_rebase
&& continue_rebase
)
11143 else if (abort_rebase
|| continue_rebase
) {
11146 } else if (argc
!= 1)
11150 cwd
= getcwd(NULL
, 0);
11152 error
= got_error_from_errno("getcwd");
11156 error
= got_repo_pack_fds_open(&pack_fds
);
11160 error
= got_worktree_open(&worktree
, cwd
);
11162 if (list_backups
|| delete_backups
) {
11163 if (error
->code
!= GOT_ERR_NOT_WORKTREE
)
11166 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
11167 error
= wrap_not_worktree_error(error
,
11173 error
= get_gitconfig_path(&gitconfig_path
);
11176 error
= got_repo_open(&repo
,
11177 worktree
? got_worktree_get_repo_path(worktree
) : cwd
,
11178 gitconfig_path
, pack_fds
);
11182 if (worktree
!= NULL
&& !list_backups
&& !delete_backups
) {
11183 error
= worktree_has_logmsg_ref("rebase", worktree
, repo
);
11188 error
= get_author(&committer
, repo
, worktree
);
11189 if (error
&& error
->code
!= GOT_ERR_COMMIT_NO_AUTHOR
)
11192 error
= apply_unveil(got_repo_get_path(repo
), 0,
11193 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
11197 if (list_backups
|| delete_backups
) {
11198 error
= process_backup_refs(
11199 GOT_WORKTREE_REBASE_BACKUP_REF_PREFIX
,
11200 argc
== 1 ? argv
[0] : NULL
, delete_backups
, repo
);
11201 goto done
; /* nothing else to do */
11204 error
= got_worktree_histedit_in_progress(&histedit_in_progress
,
11208 if (histedit_in_progress
) {
11209 error
= got_error(GOT_ERR_HISTEDIT_BUSY
);
11213 error
= got_worktree_merge_in_progress(&merge_in_progress
,
11217 if (merge_in_progress
) {
11218 error
= got_error(GOT_ERR_MERGE_BUSY
);
11222 error
= got_worktree_rebase_in_progress(&rebase_in_progress
, worktree
);
11226 if (abort_rebase
) {
11227 if (!rebase_in_progress
) {
11228 error
= got_error(GOT_ERR_NOT_REBASING
);
11231 error
= got_worktree_rebase_continue(&resume_commit_id
,
11232 &new_base_branch
, &tmp_branch
, &branch
, &fileindex
,
11236 printf("Switching work tree to %s\n",
11237 got_ref_get_symref_target(new_base_branch
));
11238 error
= got_worktree_rebase_abort(worktree
, fileindex
, repo
,
11239 new_base_branch
, abort_progress
, &upa
);
11242 printf("Rebase of %s aborted\n", got_ref_get_name(branch
));
11243 print_merge_progress_stats(&upa
);
11244 goto done
; /* nothing else to do */
11247 if (continue_rebase
) {
11248 if (!rebase_in_progress
) {
11249 error
= got_error(GOT_ERR_NOT_REBASING
);
11252 error
= got_worktree_rebase_continue(&resume_commit_id
,
11253 &new_base_branch
, &tmp_branch
, &branch
, &fileindex
,
11258 error
= rebase_commit(NULL
, worktree
, fileindex
, tmp_branch
,
11259 committer
, resume_commit_id
, allow_conflict
, repo
);
11263 yca_id
= got_object_id_dup(resume_commit_id
);
11264 if (yca_id
== NULL
) {
11265 error
= got_error_from_errno("got_object_id_dup");
11269 error
= got_ref_open(&branch
, repo
, argv
[0], 0);
11272 if (strncmp(got_ref_get_name(branch
), "refs/heads/", 11) != 0) {
11273 error
= got_error_msg(GOT_ERR_COMMIT_BRANCH
,
11274 "will not rebase a branch which lives outside "
11275 "the \"refs/heads/\" reference namespace");
11280 error
= got_ref_resolve(&branch_head_commit_id
, repo
, branch
);
11284 if (!continue_rebase
) {
11285 struct got_object_id
*base_commit_id
;
11287 error
= got_ref_open(&head_ref
, repo
,
11288 got_worktree_get_head_ref_name(worktree
), 0);
11291 error
= got_ref_resolve(&head_commit_id
, repo
, head_ref
);
11294 base_commit_id
= got_worktree_get_base_commit_id(worktree
);
11295 if (got_object_id_cmp(base_commit_id
, head_commit_id
) != 0) {
11296 error
= got_error(GOT_ERR_REBASE_OUT_OF_DATE
);
11300 error
= got_commit_graph_find_youngest_common_ancestor(&yca_id
,
11301 base_commit_id
, branch_head_commit_id
, 1, repo
,
11302 check_cancelled
, NULL
);
11304 if (error
->code
== GOT_ERR_ANCESTRY
) {
11305 error
= got_error_msg(GOT_ERR_ANCESTRY
,
11306 "specified branch shares no common "
11307 "ancestry with work tree's branch");
11312 if (got_object_id_cmp(base_commit_id
, yca_id
) == 0) {
11313 struct got_pathlist_head paths
;
11314 printf("%s is already based on %s\n",
11315 got_ref_get_name(branch
),
11316 got_worktree_get_head_ref_name(worktree
));
11317 error
= switch_head_ref(branch
, branch_head_commit_id
,
11321 error
= got_worktree_set_base_commit_id(worktree
, repo
,
11322 branch_head_commit_id
);
11325 TAILQ_INIT(&paths
);
11326 error
= got_pathlist_append(&paths
, "", NULL
);
11329 error
= got_worktree_checkout_files(worktree
,
11330 &paths
, repo
, update_progress
, &upa
,
11331 check_cancelled
, NULL
);
11332 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_NONE
);
11335 if (upa
.did_something
) {
11337 error
= got_object_id_str(&id_str
,
11338 branch_head_commit_id
);
11341 printf("Updated to %s: %s\n",
11342 got_worktree_get_head_ref_name(worktree
),
11346 printf("Already up-to-date\n");
11347 print_update_progress_stats(&upa
);
11352 commit_id
= branch_head_commit_id
;
11353 error
= got_object_open_as_commit(&commit
, repo
, commit_id
);
11357 parent_ids
= got_object_commit_get_parent_ids(commit
);
11358 pid
= STAILQ_FIRST(parent_ids
);
11360 error
= collect_commits(&commits
, commit_id
, &pid
->id
,
11361 yca_id
, got_worktree_get_path_prefix(worktree
),
11362 GOT_ERR_REBASE_PATH
, repo
);
11367 got_object_commit_close(commit
);
11370 if (!continue_rebase
) {
11371 error
= got_worktree_rebase_prepare(&new_base_branch
,
11372 &tmp_branch
, &fileindex
, worktree
, branch
, repo
);
11377 if (STAILQ_EMPTY(&commits
)) {
11378 if (continue_rebase
) {
11379 error
= rebase_complete(worktree
, fileindex
,
11380 branch
, tmp_branch
, repo
, create_backup
);
11383 /* Fast-forward the reference of the branch. */
11384 struct got_object_id
*new_head_commit_id
;
11386 error
= got_ref_resolve(&new_head_commit_id
, repo
,
11390 error
= got_object_id_str(&id_str
, new_head_commit_id
);
11393 printf("Forwarding %s to commit %s\n",
11394 got_ref_get_name(branch
), id_str
);
11396 error
= got_ref_change_ref(branch
,
11397 new_head_commit_id
);
11400 /* No backup needed since objects did not change. */
11406 STAILQ_FOREACH(qid
, &commits
, entry
) {
11408 commit_id
= &qid
->id
;
11409 parent_id
= pid
? &pid
->id
: yca_id
;
11412 memset(&upa
, 0, sizeof(upa
));
11413 error
= got_worktree_rebase_merge_files(&merged_paths
,
11414 worktree
, fileindex
, parent_id
, commit_id
, repo
,
11415 update_progress
, &upa
, check_cancelled
, NULL
);
11419 print_merge_progress_stats(&upa
);
11420 if (upa
.conflicts
> 0 || upa
.missing
> 0 ||
11421 upa
.not_deleted
> 0 || upa
.unversioned
> 0) {
11422 if (upa
.conflicts
> 0) {
11423 error
= show_rebase_merge_conflict(&qid
->id
,
11428 got_pathlist_free(&merged_paths
, GOT_PATHLIST_FREE_PATH
);
11432 error
= rebase_commit(&merged_paths
, worktree
, fileindex
,
11433 tmp_branch
, committer
, commit_id
, 0, repo
);
11434 got_pathlist_free(&merged_paths
, GOT_PATHLIST_FREE_PATH
);
11439 if (upa
.conflicts
> 0 || upa
.missing
> 0 ||
11440 upa
.not_deleted
> 0 || upa
.unversioned
> 0) {
11441 error
= got_worktree_rebase_postpone(worktree
, fileindex
);
11444 if (upa
.conflicts
> 0 && upa
.missing
== 0 &&
11445 upa
.not_deleted
== 0 && upa
.unversioned
== 0) {
11446 error
= got_error_msg(GOT_ERR_CONFLICTS
,
11447 "conflicts must be resolved before rebasing "
11449 } else if (upa
.conflicts
> 0) {
11450 error
= got_error_msg(GOT_ERR_CONFLICTS
,
11451 "conflicts must be resolved before rebasing "
11452 "can continue; changes destined for some "
11453 "files were not yet merged and should be "
11454 "merged manually if required before the "
11455 "rebase operation is continued");
11457 error
= got_error_msg(GOT_ERR_CONFLICTS
,
11458 "changes destined for some files were not "
11459 "yet merged and should be merged manually "
11460 "if required before the rebase operation "
11464 error
= rebase_complete(worktree
, fileindex
, branch
,
11465 tmp_branch
, repo
, create_backup
);
11469 free(gitconfig_path
);
11470 got_object_id_queue_free(&commits
);
11471 free(branch_head_commit_id
);
11472 free(resume_commit_id
);
11473 free(head_commit_id
);
11476 got_object_commit_close(commit
);
11478 got_ref_close(branch
);
11479 if (new_base_branch
)
11480 got_ref_close(new_base_branch
);
11482 got_ref_close(tmp_branch
);
11484 got_ref_close(head_ref
);
11486 got_worktree_close(worktree
);
11488 const struct got_error
*close_err
= got_repo_close(repo
);
11493 const struct got_error
*pack_err
=
11494 got_repo_pack_fds_close(pack_fds
);
11502 usage_histedit(void)
11504 fprintf(stderr
, "usage: %s histedit [-aCcdeflmX] [-F histedit-script] "
11505 "[branch]\n", getprogname());
11509 #define GOT_HISTEDIT_PICK 'p'
11510 #define GOT_HISTEDIT_EDIT 'e'
11511 #define GOT_HISTEDIT_FOLD 'f'
11512 #define GOT_HISTEDIT_DROP 'd'
11513 #define GOT_HISTEDIT_MESG 'm'
11515 static const struct got_histedit_cmd
{
11516 unsigned char code
;
11519 } got_histedit_cmds
[] = {
11520 { GOT_HISTEDIT_PICK
, "pick", "use commit" },
11521 { GOT_HISTEDIT_EDIT
, "edit", "use commit but stop for amending" },
11522 { GOT_HISTEDIT_FOLD
, "fold", "combine with next commit that will "
11524 { GOT_HISTEDIT_DROP
, "drop", "remove commit from history" },
11525 { GOT_HISTEDIT_MESG
, "mesg",
11526 "single-line log message for commit above (open editor if empty)" },
11529 struct got_histedit_list_entry
{
11530 TAILQ_ENTRY(got_histedit_list_entry
) entry
;
11531 struct got_object_id
*commit_id
;
11532 const struct got_histedit_cmd
*cmd
;
11535 TAILQ_HEAD(got_histedit_list
, got_histedit_list_entry
);
11537 static const struct got_error
*
11538 histedit_write_commit(struct got_object_id
*commit_id
, const char *cmdname
,
11539 FILE *f
, struct got_repository
*repo
)
11541 const struct got_error
*err
= NULL
;
11542 char *logmsg
= NULL
, *id_str
= NULL
;
11543 struct got_commit_object
*commit
= NULL
;
11546 err
= got_object_open_as_commit(&commit
, repo
, commit_id
);
11550 err
= get_short_logmsg(&logmsg
, 34, commit
);
11554 err
= got_object_id_str(&id_str
, commit_id
);
11558 n
= fprintf(f
, "%s %s %s\n", cmdname
, id_str
, logmsg
);
11560 err
= got_ferror(f
, GOT_ERR_IO
);
11563 got_object_commit_close(commit
);
11569 static const struct got_error
*
11570 histedit_write_commit_list(struct got_object_id_queue
*commits
,
11571 FILE *f
, int edit_logmsg_only
, int fold_only
, int drop_only
,
11572 int edit_only
, struct got_repository
*repo
)
11574 const struct got_error
*err
= NULL
;
11575 struct got_object_qid
*qid
;
11576 const char *histedit_cmd
= NULL
;
11578 if (STAILQ_EMPTY(commits
))
11579 return got_error(GOT_ERR_EMPTY_HISTEDIT
);
11581 STAILQ_FOREACH(qid
, commits
, entry
) {
11582 histedit_cmd
= got_histedit_cmds
[0].name
;
11584 histedit_cmd
= "drop";
11585 else if (edit_only
)
11586 histedit_cmd
= "edit";
11587 else if (fold_only
&& STAILQ_NEXT(qid
, entry
) != NULL
)
11588 histedit_cmd
= "fold";
11589 err
= histedit_write_commit(&qid
->id
, histedit_cmd
, f
, repo
);
11592 if (edit_logmsg_only
) {
11593 int n
= fprintf(f
, "%c\n", GOT_HISTEDIT_MESG
);
11595 err
= got_ferror(f
, GOT_ERR_IO
);
11604 static const struct got_error
*
11605 write_cmd_list(FILE *f
, const char *branch_name
,
11606 struct got_object_id_queue
*commits
)
11608 const struct got_error
*err
= NULL
;
11612 struct got_object_qid
*qid
;
11614 qid
= STAILQ_FIRST(commits
);
11615 err
= got_object_id_str(&id_str
, &qid
->id
);
11620 "# Editing the history of branch '%s' starting at\n"
11622 "# Commits will be processed in order from top to "
11623 "bottom of this file.\n", branch_name
, id_str
);
11625 err
= got_ferror(f
, GOT_ERR_IO
);
11629 n
= fprintf(f
, "# Available histedit commands:\n");
11631 err
= got_ferror(f
, GOT_ERR_IO
);
11635 for (i
= 0; i
< nitems(got_histedit_cmds
); i
++) {
11636 const struct got_histedit_cmd
*cmd
= &got_histedit_cmds
[i
];
11637 n
= fprintf(f
, "# %s (%c): %s\n", cmd
->name
, cmd
->code
,
11640 err
= got_ferror(f
, GOT_ERR_IO
);
11649 static const struct got_error
*
11650 histedit_syntax_error(int lineno
)
11652 static char msg
[42];
11655 ret
= snprintf(msg
, sizeof(msg
), "histedit syntax error on line %d",
11657 if (ret
< 0 || (size_t)ret
>= sizeof(msg
))
11658 return got_error(GOT_ERR_HISTEDIT_SYNTAX
);
11660 return got_error_msg(GOT_ERR_HISTEDIT_SYNTAX
, msg
);
11663 static const struct got_error
*
11664 append_folded_commit_msg(char **new_msg
, struct got_histedit_list_entry
*hle
,
11665 char *logmsg
, struct got_repository
*repo
)
11667 const struct got_error
*err
;
11668 struct got_commit_object
*folded_commit
= NULL
;
11669 char *id_str
, *folded_logmsg
= NULL
;
11671 err
= got_object_id_str(&id_str
, hle
->commit_id
);
11675 err
= got_object_open_as_commit(&folded_commit
, repo
, hle
->commit_id
);
11679 err
= got_object_commit_get_logmsg(&folded_logmsg
, folded_commit
);
11682 if (asprintf(new_msg
, "%s%s# log message of folded commit %s: %s",
11683 logmsg
? logmsg
: "", logmsg
? "\n" : "", id_str
,
11684 folded_logmsg
) == -1) {
11685 err
= got_error_from_errno("asprintf");
11689 got_object_commit_close(folded_commit
);
11691 free(folded_logmsg
);
11695 static struct got_histedit_list_entry
*
11696 get_folded_commits(struct got_histedit_list_entry
*hle
)
11698 struct got_histedit_list_entry
*prev
, *folded
= NULL
;
11700 prev
= TAILQ_PREV(hle
, got_histedit_list
, entry
);
11701 while (prev
&& (prev
->cmd
->code
== GOT_HISTEDIT_FOLD
||
11702 prev
->cmd
->code
== GOT_HISTEDIT_DROP
)) {
11703 if (prev
->cmd
->code
== GOT_HISTEDIT_FOLD
)
11705 prev
= TAILQ_PREV(prev
, got_histedit_list
, entry
);
11711 static const struct got_error
*
11712 histedit_edit_logmsg(struct got_histedit_list_entry
*hle
,
11713 struct got_repository
*repo
)
11715 char *logmsg_path
= NULL
, *id_str
= NULL
, *orig_logmsg
= NULL
;
11716 char *logmsg
= NULL
, *new_msg
= NULL
, *editor
= NULL
;
11717 const struct got_error
*err
= NULL
;
11718 struct got_commit_object
*commit
= NULL
;
11721 struct got_histedit_list_entry
*folded
= NULL
;
11723 err
= got_object_open_as_commit(&commit
, repo
, hle
->commit_id
);
11727 folded
= get_folded_commits(hle
);
11729 while (folded
!= hle
) {
11730 if (folded
->cmd
->code
== GOT_HISTEDIT_DROP
) {
11731 folded
= TAILQ_NEXT(folded
, entry
);
11734 err
= append_folded_commit_msg(&new_msg
, folded
,
11740 folded
= TAILQ_NEXT(folded
, entry
);
11744 err
= got_object_id_str(&id_str
, hle
->commit_id
);
11747 err
= got_object_commit_get_logmsg(&orig_logmsg
, commit
);
11750 logmsg_len
= asprintf(&new_msg
,
11751 "%s\n# original log message of commit %s: %s",
11752 logmsg
? logmsg
: "", id_str
, orig_logmsg
);
11753 if (logmsg_len
== -1) {
11754 err
= got_error_from_errno("asprintf");
11760 err
= got_object_id_str(&id_str
, hle
->commit_id
);
11764 err
= got_opentemp_named_fd(&logmsg_path
, &fd
,
11765 GOT_TMPDIR_STR
"/got-logmsg", "");
11769 if (write(fd
, logmsg
, logmsg_len
) == -1) {
11770 err
= got_error_from_errno2("write", logmsg_path
);
11773 if (close(fd
) == -1) {
11774 err
= got_error_from_errno2("close", logmsg_path
);
11779 err
= get_editor(&editor
);
11783 err
= edit_logmsg(&hle
->logmsg
, editor
, logmsg_path
, logmsg
,
11786 if (err
->code
!= GOT_ERR_COMMIT_MSG_EMPTY
)
11789 hle
->logmsg
= strdup(new_msg
);
11790 if (hle
->logmsg
== NULL
)
11791 err
= got_error_from_errno("strdup");
11794 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
11795 err
= got_error_from_errno2("close", logmsg_path
);
11796 if (logmsg_path
&& unlink(logmsg_path
) != 0 && err
== NULL
)
11797 err
= got_error_from_errno2("unlink", logmsg_path
);
11803 got_object_commit_close(commit
);
11807 static const struct got_error
*
11808 histedit_parse_list(struct got_histedit_list
*histedit_cmds
,
11809 FILE *f
, struct got_repository
*repo
)
11811 const struct got_error
*err
= NULL
;
11812 char *line
= NULL
, *p
, *end
;
11813 size_t i
, linesize
= 0;
11815 int lineno
= 0, lastcmd
= -1;
11816 const struct got_histedit_cmd
*cmd
;
11817 struct got_object_id
*commit_id
= NULL
;
11818 struct got_histedit_list_entry
*hle
= NULL
;
11821 linelen
= getline(&line
, &linesize
, f
);
11822 if (linelen
== -1) {
11823 const struct got_error
*getline_err
;
11826 getline_err
= got_error_from_errno("getline");
11827 err
= got_ferror(f
, getline_err
->code
);
11832 while (isspace((unsigned char)p
[0]))
11834 if (p
[0] == '#' || p
[0] == '\0')
11837 for (i
= 0; i
< nitems(got_histedit_cmds
); i
++) {
11838 cmd
= &got_histedit_cmds
[i
];
11839 if (strncmp(cmd
->name
, p
, strlen(cmd
->name
)) == 0 &&
11840 isspace((unsigned char)p
[strlen(cmd
->name
)])) {
11841 p
+= strlen(cmd
->name
);
11844 if (p
[0] == cmd
->code
&& isspace((unsigned char)p
[1])) {
11849 if (i
== nitems(got_histedit_cmds
)) {
11850 err
= histedit_syntax_error(lineno
);
11853 while (isspace((unsigned char)p
[0]))
11855 if (cmd
->code
== GOT_HISTEDIT_MESG
) {
11856 if (lastcmd
!= GOT_HISTEDIT_PICK
&&
11857 lastcmd
!= GOT_HISTEDIT_EDIT
) {
11858 err
= got_error(GOT_ERR_HISTEDIT_CMD
);
11861 if (p
[0] == '\0') {
11862 err
= histedit_edit_logmsg(hle
, repo
);
11866 hle
->logmsg
= strdup(p
);
11867 if (hle
->logmsg
== NULL
) {
11868 err
= got_error_from_errno("strdup");
11872 lastcmd
= cmd
->code
;
11876 while (end
[0] && !isspace((unsigned char)end
[0]))
11880 err
= got_object_resolve_id_str(&commit_id
, repo
, p
);
11882 /* override error code */
11883 err
= histedit_syntax_error(lineno
);
11887 hle
= malloc(sizeof(*hle
));
11889 err
= got_error_from_errno("malloc");
11893 hle
->commit_id
= commit_id
;
11894 hle
->logmsg
= NULL
;
11896 TAILQ_INSERT_TAIL(histedit_cmds
, hle
, entry
);
11897 lastcmd
= cmd
->code
;
11905 static const struct got_error
*
11906 histedit_check_script(struct got_histedit_list
*histedit_cmds
,
11907 struct got_object_id_queue
*commits
, struct got_repository
*repo
)
11909 const struct got_error
*err
= NULL
;
11910 struct got_object_qid
*qid
;
11911 struct got_histedit_list_entry
*hle
;
11912 static char msg
[92];
11915 if (TAILQ_EMPTY(histedit_cmds
))
11916 return got_error_msg(GOT_ERR_EMPTY_HISTEDIT
,
11917 "histedit script contains no commands");
11918 if (STAILQ_EMPTY(commits
))
11919 return got_error(GOT_ERR_EMPTY_HISTEDIT
);
11921 TAILQ_FOREACH(hle
, histedit_cmds
, entry
) {
11922 struct got_histedit_list_entry
*hle2
;
11923 TAILQ_FOREACH(hle2
, histedit_cmds
, entry
) {
11926 if (got_object_id_cmp(hle
->commit_id
,
11927 hle2
->commit_id
) != 0)
11929 err
= got_object_id_str(&id_str
, hle
->commit_id
);
11932 snprintf(msg
, sizeof(msg
), "commit %s is listed "
11933 "more than once in histedit script", id_str
);
11935 return got_error_msg(GOT_ERR_HISTEDIT_CMD
, msg
);
11939 STAILQ_FOREACH(qid
, commits
, entry
) {
11940 TAILQ_FOREACH(hle
, histedit_cmds
, entry
) {
11941 if (got_object_id_cmp(&qid
->id
, hle
->commit_id
) == 0)
11945 err
= got_object_id_str(&id_str
, &qid
->id
);
11948 snprintf(msg
, sizeof(msg
),
11949 "commit %s missing from histedit script", id_str
);
11951 return got_error_msg(GOT_ERR_HISTEDIT_CMD
, msg
);
11955 hle
= TAILQ_LAST(histedit_cmds
, got_histedit_list
);
11956 if (hle
&& hle
->cmd
->code
== GOT_HISTEDIT_FOLD
)
11957 return got_error_msg(GOT_ERR_HISTEDIT_CMD
,
11958 "last commit in histedit script cannot be folded");
11963 static const struct got_error
*
11964 histedit_run_editor(struct got_histedit_list
*histedit_cmds
,
11965 const char *path
, struct got_object_id_queue
*commits
,
11966 struct got_repository
*repo
)
11968 const struct got_error
*err
= NULL
;
11972 err
= get_editor(&editor
);
11976 if (spawn_editor(editor
, path
) == -1) {
11977 err
= got_error_from_errno("failed spawning editor");
11981 f
= fopen(path
, "re");
11983 err
= got_error_from_errno("fopen");
11986 err
= histedit_parse_list(histedit_cmds
, f
, repo
);
11990 err
= histedit_check_script(histedit_cmds
, commits
, repo
);
11992 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
11993 err
= got_error_from_errno("fclose");
11998 static const struct got_error
*
11999 histedit_edit_list_retry(struct got_histedit_list
*, const struct got_error
*,
12000 struct got_object_id_queue
*, const char *, const char *,
12001 struct got_repository
*);
12003 static const struct got_error
*
12004 histedit_edit_script(struct got_histedit_list
*histedit_cmds
,
12005 struct got_object_id_queue
*commits
, const char *branch_name
,
12006 int edit_logmsg_only
, int fold_only
, int drop_only
, int edit_only
,
12007 struct got_repository
*repo
)
12009 const struct got_error
*err
;
12013 err
= got_opentemp_named(&path
, &f
, "got-histedit", "");
12017 err
= write_cmd_list(f
, branch_name
, commits
);
12021 err
= histedit_write_commit_list(commits
, f
, edit_logmsg_only
,
12022 fold_only
, drop_only
, edit_only
, repo
);
12026 if (drop_only
|| edit_logmsg_only
|| fold_only
|| edit_only
) {
12028 err
= histedit_parse_list(histedit_cmds
, f
, repo
);
12030 if (fclose(f
) == EOF
) {
12031 err
= got_error_from_errno("fclose");
12035 err
= histedit_run_editor(histedit_cmds
, path
, commits
, repo
);
12037 if (err
->code
!= GOT_ERR_HISTEDIT_SYNTAX
&&
12038 err
->code
!= GOT_ERR_HISTEDIT_CMD
)
12040 err
= histedit_edit_list_retry(histedit_cmds
, err
,
12041 commits
, path
, branch_name
, repo
);
12045 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
12046 err
= got_error_from_errno("fclose");
12047 if (path
&& unlink(path
) != 0 && err
== NULL
)
12048 err
= got_error_from_errno2("unlink", path
);
12053 static const struct got_error
*
12054 histedit_save_list(struct got_histedit_list
*histedit_cmds
,
12055 struct got_worktree
*worktree
, struct got_repository
*repo
)
12057 const struct got_error
*err
= NULL
;
12060 struct got_histedit_list_entry
*hle
;
12061 struct got_commit_object
*commit
= NULL
;
12063 err
= got_worktree_get_histedit_script_path(&path
, worktree
);
12067 f
= fopen(path
, "we");
12069 err
= got_error_from_errno2("fopen", path
);
12072 TAILQ_FOREACH(hle
, histedit_cmds
, entry
) {
12073 err
= histedit_write_commit(hle
->commit_id
, hle
->cmd
->name
, f
,
12079 int n
= fprintf(f
, "%c %s\n",
12080 GOT_HISTEDIT_MESG
, hle
->logmsg
);
12082 err
= got_ferror(f
, GOT_ERR_IO
);
12088 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
12089 err
= got_error_from_errno("fclose");
12092 got_object_commit_close(commit
);
12097 histedit_free_list(struct got_histedit_list
*histedit_cmds
)
12099 struct got_histedit_list_entry
*hle
;
12101 while ((hle
= TAILQ_FIRST(histedit_cmds
))) {
12102 TAILQ_REMOVE(histedit_cmds
, hle
, entry
);
12107 static const struct got_error
*
12108 histedit_load_list(struct got_histedit_list
*histedit_cmds
,
12109 const char *path
, struct got_repository
*repo
)
12111 const struct got_error
*err
= NULL
;
12114 f
= fopen(path
, "re");
12116 err
= got_error_from_errno2("fopen", path
);
12120 err
= histedit_parse_list(histedit_cmds
, f
, repo
);
12122 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
12123 err
= got_error_from_errno("fclose");
12127 static const struct got_error
*
12128 histedit_edit_list_retry(struct got_histedit_list
*histedit_cmds
,
12129 const struct got_error
*edit_err
, struct got_object_id_queue
*commits
,
12130 const char *path
, const char *branch_name
, struct got_repository
*repo
)
12132 const struct got_error
*err
= NULL
, *prev_err
= edit_err
;
12135 while (resp
!= 'c' && resp
!= 'r' && resp
!= 'a') {
12136 printf("%s: %s\n(c)ontinue editing, (r)estart editing, "
12137 "or (a)bort: ", getprogname(), prev_err
->msg
);
12142 histedit_free_list(histedit_cmds
);
12143 err
= histedit_run_editor(histedit_cmds
, path
, commits
,
12146 if (err
->code
!= GOT_ERR_HISTEDIT_SYNTAX
&&
12147 err
->code
!= GOT_ERR_HISTEDIT_CMD
)
12154 } else if (resp
== 'r') {
12155 histedit_free_list(histedit_cmds
);
12156 err
= histedit_edit_script(histedit_cmds
,
12157 commits
, branch_name
, 0, 0, 0, 0, repo
);
12159 if (err
->code
!= GOT_ERR_HISTEDIT_SYNTAX
&&
12160 err
->code
!= GOT_ERR_HISTEDIT_CMD
)
12167 } else if (resp
== 'a') {
12168 err
= got_error(GOT_ERR_HISTEDIT_CANCEL
);
12171 printf("invalid response '%c'\n", resp
);
12177 static const struct got_error
*
12178 histedit_complete(struct got_worktree
*worktree
,
12179 struct got_fileindex
*fileindex
, struct got_reference
*tmp_branch
,
12180 struct got_reference
*branch
, struct got_repository
*repo
)
12182 printf("Switching work tree to %s\n",
12183 got_ref_get_symref_target(branch
));
12184 return got_worktree_histedit_complete(worktree
, fileindex
, tmp_branch
,
12188 static const struct got_error
*
12189 show_histedit_progress(struct got_commit_object
*commit
,
12190 struct got_histedit_list_entry
*hle
, struct got_object_id
*new_id
)
12192 const struct got_error
*err
;
12193 char *old_id_str
= NULL
, *new_id_str
= NULL
, *logmsg
= NULL
;
12195 err
= got_object_id_str(&old_id_str
, hle
->commit_id
);
12200 err
= got_object_id_str(&new_id_str
, new_id
);
12205 old_id_str
[12] = '\0';
12207 new_id_str
[12] = '\0';
12210 logmsg
= strdup(hle
->logmsg
);
12211 if (logmsg
== NULL
) {
12212 err
= got_error_from_errno("strdup");
12215 trim_logmsg(logmsg
, 42);
12217 err
= get_short_logmsg(&logmsg
, 42, commit
);
12222 switch (hle
->cmd
->code
) {
12223 case GOT_HISTEDIT_PICK
:
12224 case GOT_HISTEDIT_EDIT
:
12225 printf("%s -> %s: %s\n", old_id_str
,
12226 new_id_str
? new_id_str
: "no-op change", logmsg
);
12228 case GOT_HISTEDIT_DROP
:
12229 case GOT_HISTEDIT_FOLD
:
12230 printf("%s -> %s commit: %s\n", old_id_str
, hle
->cmd
->name
,
12242 static const struct got_error
*
12243 histedit_commit(struct got_pathlist_head
*merged_paths
,
12244 struct got_worktree
*worktree
, struct got_fileindex
*fileindex
,
12245 struct got_reference
*tmp_branch
, struct got_histedit_list_entry
*hle
,
12246 const char *committer
, int allow_conflict
, struct got_repository
*repo
)
12248 const struct got_error
*err
;
12249 struct got_commit_object
*commit
;
12250 struct got_object_id
*new_commit_id
;
12252 if ((hle
->cmd
->code
== GOT_HISTEDIT_EDIT
|| get_folded_commits(hle
))
12253 && hle
->logmsg
== NULL
) {
12254 err
= histedit_edit_logmsg(hle
, repo
);
12259 err
= got_object_open_as_commit(&commit
, repo
, hle
->commit_id
);
12263 err
= got_worktree_histedit_commit(&new_commit_id
, merged_paths
,
12264 worktree
, fileindex
, tmp_branch
, committer
, commit
, hle
->commit_id
,
12265 hle
->logmsg
, allow_conflict
, repo
);
12267 if (err
->code
!= GOT_ERR_COMMIT_NO_CHANGES
)
12269 err
= show_histedit_progress(commit
, hle
, NULL
);
12271 err
= show_histedit_progress(commit
, hle
, new_commit_id
);
12272 free(new_commit_id
);
12275 got_object_commit_close(commit
);
12279 static const struct got_error
*
12280 histedit_skip_commit(struct got_histedit_list_entry
*hle
,
12281 struct got_worktree
*worktree
, struct got_repository
*repo
)
12283 const struct got_error
*error
;
12284 struct got_commit_object
*commit
;
12286 error
= got_worktree_histedit_skip_commit(worktree
, hle
->commit_id
,
12291 error
= got_object_open_as_commit(&commit
, repo
, hle
->commit_id
);
12295 error
= show_histedit_progress(commit
, hle
, NULL
);
12296 got_object_commit_close(commit
);
12300 static const struct got_error
*
12301 check_local_changes(void *arg
, unsigned char status
,
12302 unsigned char staged_status
, const char *path
,
12303 struct got_object_id
*blob_id
, struct got_object_id
*staged_blob_id
,
12304 struct got_object_id
*commit_id
, int dirfd
, const char *de_name
)
12306 int *have_local_changes
= arg
;
12309 case GOT_STATUS_ADD
:
12310 case GOT_STATUS_DELETE
:
12311 case GOT_STATUS_MODIFY
:
12312 case GOT_STATUS_CONFLICT
:
12313 *have_local_changes
= 1;
12314 return got_error(GOT_ERR_CANCELLED
);
12319 switch (staged_status
) {
12320 case GOT_STATUS_ADD
:
12321 case GOT_STATUS_DELETE
:
12322 case GOT_STATUS_MODIFY
:
12323 *have_local_changes
= 1;
12324 return got_error(GOT_ERR_CANCELLED
);
12332 static const struct got_error
*
12333 cmd_histedit(int argc
, char *argv
[])
12335 const struct got_error
*error
= NULL
;
12336 struct got_worktree
*worktree
= NULL
;
12337 struct got_fileindex
*fileindex
= NULL
;
12338 struct got_repository
*repo
= NULL
;
12339 char *cwd
= NULL
, *committer
= NULL
, *gitconfig_path
= NULL
;
12340 struct got_reference
*branch
= NULL
;
12341 struct got_reference
*tmp_branch
= NULL
;
12342 struct got_object_id
*resume_commit_id
= NULL
;
12343 struct got_object_id
*base_commit_id
= NULL
;
12344 struct got_object_id
*head_commit_id
= NULL
;
12345 struct got_commit_object
*commit
= NULL
;
12346 int ch
, rebase_in_progress
= 0, merge_in_progress
= 0;
12347 struct got_update_progress_arg upa
;
12348 int edit_in_progress
= 0, abort_edit
= 0, continue_edit
= 0;
12349 int drop_only
= 0, edit_logmsg_only
= 0, fold_only
= 0, edit_only
= 0;
12350 int allow_conflict
= 0, list_backups
= 0, delete_backups
= 0;
12351 const char *edit_script_path
= NULL
;
12352 struct got_object_id_queue commits
;
12353 struct got_pathlist_head merged_paths
;
12354 const struct got_object_id_queue
*parent_ids
;
12355 struct got_object_qid
*pid
;
12356 struct got_histedit_list histedit_cmds
;
12357 struct got_histedit_list_entry
*hle
;
12358 int *pack_fds
= NULL
;
12360 STAILQ_INIT(&commits
);
12361 TAILQ_INIT(&histedit_cmds
);
12362 TAILQ_INIT(&merged_paths
);
12363 memset(&upa
, 0, sizeof(upa
));
12366 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
12367 "unveil", NULL
) == -1)
12371 while ((ch
= getopt(argc
, argv
, "aCcdeF:flmX")) != -1) {
12377 allow_conflict
= 1;
12389 edit_script_path
= optarg
;
12398 edit_logmsg_only
= 1;
12401 delete_backups
= 1;
12412 if (abort_edit
&& allow_conflict
)
12413 option_conflict('a', 'C');
12414 if (abort_edit
&& continue_edit
)
12415 option_conflict('a', 'c');
12416 if (edit_script_path
&& allow_conflict
)
12417 option_conflict('F', 'C');
12418 if (edit_script_path
&& edit_logmsg_only
)
12419 option_conflict('F', 'm');
12420 if (abort_edit
&& edit_logmsg_only
)
12421 option_conflict('a', 'm');
12422 if (edit_logmsg_only
&& allow_conflict
)
12423 option_conflict('m', 'C');
12424 if (continue_edit
&& edit_logmsg_only
)
12425 option_conflict('c', 'm');
12426 if (abort_edit
&& fold_only
)
12427 option_conflict('a', 'f');
12428 if (fold_only
&& allow_conflict
)
12429 option_conflict('f', 'C');
12430 if (continue_edit
&& fold_only
)
12431 option_conflict('c', 'f');
12432 if (fold_only
&& edit_logmsg_only
)
12433 option_conflict('f', 'm');
12434 if (edit_script_path
&& fold_only
)
12435 option_conflict('F', 'f');
12436 if (abort_edit
&& edit_only
)
12437 option_conflict('a', 'e');
12438 if (continue_edit
&& edit_only
)
12439 option_conflict('c', 'e');
12440 if (edit_only
&& edit_logmsg_only
)
12441 option_conflict('e', 'm');
12442 if (edit_script_path
&& edit_only
)
12443 option_conflict('F', 'e');
12444 if (fold_only
&& edit_only
)
12445 option_conflict('f', 'e');
12446 if (drop_only
&& abort_edit
)
12447 option_conflict('d', 'a');
12448 if (drop_only
&& allow_conflict
)
12449 option_conflict('d', 'C');
12450 if (drop_only
&& continue_edit
)
12451 option_conflict('d', 'c');
12452 if (drop_only
&& edit_logmsg_only
)
12453 option_conflict('d', 'm');
12454 if (drop_only
&& edit_only
)
12455 option_conflict('d', 'e');
12456 if (drop_only
&& edit_script_path
)
12457 option_conflict('d', 'F');
12458 if (drop_only
&& fold_only
)
12459 option_conflict('d', 'f');
12460 if (list_backups
) {
12462 option_conflict('l', 'a');
12463 if (allow_conflict
)
12464 option_conflict('l', 'C');
12466 option_conflict('l', 'c');
12467 if (edit_script_path
)
12468 option_conflict('l', 'F');
12469 if (edit_logmsg_only
)
12470 option_conflict('l', 'm');
12472 option_conflict('l', 'd');
12474 option_conflict('l', 'f');
12476 option_conflict('l', 'e');
12477 if (delete_backups
)
12478 option_conflict('l', 'X');
12479 if (argc
!= 0 && argc
!= 1)
12481 } else if (delete_backups
) {
12483 option_conflict('X', 'a');
12484 if (allow_conflict
)
12485 option_conflict('X', 'C');
12487 option_conflict('X', 'c');
12489 option_conflict('X', 'd');
12490 if (edit_script_path
)
12491 option_conflict('X', 'F');
12492 if (edit_logmsg_only
)
12493 option_conflict('X', 'm');
12495 option_conflict('X', 'f');
12497 option_conflict('X', 'e');
12499 option_conflict('X', 'l');
12500 if (argc
!= 0 && argc
!= 1)
12502 } else if (allow_conflict
&& !continue_edit
)
12503 errx(1, "-C option requires -c");
12504 else if (argc
!= 0)
12508 * This command cannot apply unveil(2) in all cases because the
12509 * user may choose to run an editor to edit the histedit script
12510 * and to edit individual commit log messages.
12511 * unveil(2) traverses exec(2); if an editor is used we have to
12512 * apply unveil after edit script and log messages have been written.
12513 * XXX TODO: Make use of unveil(2) where possible.
12516 cwd
= getcwd(NULL
, 0);
12518 error
= got_error_from_errno("getcwd");
12522 error
= got_repo_pack_fds_open(&pack_fds
);
12526 error
= got_worktree_open(&worktree
, cwd
);
12528 if (list_backups
|| delete_backups
) {
12529 if (error
->code
!= GOT_ERR_NOT_WORKTREE
)
12532 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
12533 error
= wrap_not_worktree_error(error
,
12539 if (list_backups
|| delete_backups
) {
12540 error
= got_repo_open(&repo
,
12541 worktree
? got_worktree_get_repo_path(worktree
) : cwd
,
12545 error
= apply_unveil(got_repo_get_path(repo
), 0,
12546 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
12549 error
= process_backup_refs(
12550 GOT_WORKTREE_HISTEDIT_BACKUP_REF_PREFIX
,
12551 argc
== 1 ? argv
[0] : NULL
, delete_backups
, repo
);
12552 goto done
; /* nothing else to do */
12555 error
= get_gitconfig_path(&gitconfig_path
);
12558 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
12559 gitconfig_path
, pack_fds
);
12563 if (worktree
!= NULL
&& !list_backups
&& !delete_backups
) {
12564 error
= worktree_has_logmsg_ref("histedit", worktree
, repo
);
12569 error
= got_worktree_rebase_in_progress(&rebase_in_progress
, worktree
);
12572 if (rebase_in_progress
) {
12573 error
= got_error(GOT_ERR_REBASING
);
12577 error
= got_worktree_merge_in_progress(&merge_in_progress
, worktree
,
12581 if (merge_in_progress
) {
12582 error
= got_error(GOT_ERR_MERGE_BUSY
);
12586 error
= got_worktree_histedit_in_progress(&edit_in_progress
, worktree
);
12590 if (edit_in_progress
&& edit_logmsg_only
) {
12591 error
= got_error_msg(GOT_ERR_HISTEDIT_BUSY
,
12592 "histedit operation is in progress in this "
12593 "work tree and must be continued or aborted "
12594 "before the -m option can be used");
12597 if (edit_in_progress
&& drop_only
) {
12598 error
= got_error_msg(GOT_ERR_HISTEDIT_BUSY
,
12599 "histedit operation is in progress in this "
12600 "work tree and must be continued or aborted "
12601 "before the -d option can be used");
12604 if (edit_in_progress
&& fold_only
) {
12605 error
= got_error_msg(GOT_ERR_HISTEDIT_BUSY
,
12606 "histedit operation is in progress in this "
12607 "work tree and must be continued or aborted "
12608 "before the -f option can be used");
12611 if (edit_in_progress
&& edit_only
) {
12612 error
= got_error_msg(GOT_ERR_HISTEDIT_BUSY
,
12613 "histedit operation is in progress in this "
12614 "work tree and must be continued or aborted "
12615 "before the -e option can be used");
12619 if (edit_in_progress
&& abort_edit
) {
12620 error
= got_worktree_histedit_continue(&resume_commit_id
,
12621 &tmp_branch
, &branch
, &base_commit_id
, &fileindex
,
12625 printf("Switching work tree to %s\n",
12626 got_ref_get_symref_target(branch
));
12627 error
= got_worktree_histedit_abort(worktree
, fileindex
, repo
,
12628 branch
, base_commit_id
, abort_progress
, &upa
);
12631 printf("Histedit of %s aborted\n",
12632 got_ref_get_symref_target(branch
));
12633 print_merge_progress_stats(&upa
);
12634 goto done
; /* nothing else to do */
12635 } else if (abort_edit
) {
12636 error
= got_error(GOT_ERR_NOT_HISTEDIT
);
12640 error
= get_author(&committer
, repo
, worktree
);
12644 if (continue_edit
) {
12647 if (!edit_in_progress
) {
12648 error
= got_error(GOT_ERR_NOT_HISTEDIT
);
12652 error
= got_worktree_get_histedit_script_path(&path
, worktree
);
12656 error
= histedit_load_list(&histedit_cmds
, path
, repo
);
12661 error
= got_worktree_histedit_continue(&resume_commit_id
,
12662 &tmp_branch
, &branch
, &base_commit_id
, &fileindex
,
12667 error
= got_ref_resolve(&head_commit_id
, repo
, branch
);
12671 error
= got_object_open_as_commit(&commit
, repo
,
12675 parent_ids
= got_object_commit_get_parent_ids(commit
);
12676 pid
= STAILQ_FIRST(parent_ids
);
12678 error
= got_error(GOT_ERR_EMPTY_HISTEDIT
);
12681 error
= collect_commits(&commits
, head_commit_id
, &pid
->id
,
12682 base_commit_id
, got_worktree_get_path_prefix(worktree
),
12683 GOT_ERR_HISTEDIT_PATH
, repo
);
12684 got_object_commit_close(commit
);
12689 if (edit_in_progress
) {
12690 error
= got_error(GOT_ERR_HISTEDIT_BUSY
);
12694 error
= got_ref_open(&branch
, repo
,
12695 got_worktree_get_head_ref_name(worktree
), 0);
12699 if (strncmp(got_ref_get_name(branch
), "refs/heads/", 11) != 0) {
12700 error
= got_error_msg(GOT_ERR_COMMIT_BRANCH
,
12701 "will not edit commit history of a branch outside "
12702 "the \"refs/heads/\" reference namespace");
12706 error
= got_ref_resolve(&head_commit_id
, repo
, branch
);
12707 got_ref_close(branch
);
12712 error
= got_object_open_as_commit(&commit
, repo
,
12716 parent_ids
= got_object_commit_get_parent_ids(commit
);
12717 pid
= STAILQ_FIRST(parent_ids
);
12719 error
= got_error(GOT_ERR_EMPTY_HISTEDIT
);
12722 error
= collect_commits(&commits
, head_commit_id
, &pid
->id
,
12723 got_worktree_get_base_commit_id(worktree
),
12724 got_worktree_get_path_prefix(worktree
),
12725 GOT_ERR_HISTEDIT_PATH
, repo
);
12726 got_object_commit_close(commit
);
12731 if (STAILQ_EMPTY(&commits
)) {
12732 error
= got_error(GOT_ERR_EMPTY_HISTEDIT
);
12736 error
= got_worktree_histedit_prepare(&tmp_branch
, &branch
,
12737 &base_commit_id
, &fileindex
, worktree
, repo
);
12741 if (edit_script_path
) {
12742 error
= histedit_load_list(&histedit_cmds
,
12743 edit_script_path
, repo
);
12745 got_worktree_histedit_abort(worktree
, fileindex
,
12746 repo
, branch
, base_commit_id
,
12747 abort_progress
, &upa
);
12748 print_merge_progress_stats(&upa
);
12752 const char *branch_name
;
12753 branch_name
= got_ref_get_symref_target(branch
);
12754 if (strncmp(branch_name
, "refs/heads/", 11) == 0)
12756 error
= histedit_edit_script(&histedit_cmds
, &commits
,
12757 branch_name
, edit_logmsg_only
, fold_only
,
12758 drop_only
, edit_only
, repo
);
12760 got_worktree_histedit_abort(worktree
, fileindex
,
12761 repo
, branch
, base_commit_id
,
12762 abort_progress
, &upa
);
12763 print_merge_progress_stats(&upa
);
12769 error
= histedit_save_list(&histedit_cmds
, worktree
,
12772 got_worktree_histedit_abort(worktree
, fileindex
,
12773 repo
, branch
, base_commit_id
,
12774 abort_progress
, &upa
);
12775 print_merge_progress_stats(&upa
);
12781 error
= histedit_check_script(&histedit_cmds
, &commits
, repo
);
12785 TAILQ_FOREACH(hle
, &histedit_cmds
, entry
) {
12786 if (resume_commit_id
) {
12787 if (got_object_id_cmp(hle
->commit_id
,
12788 resume_commit_id
) != 0)
12791 resume_commit_id
= NULL
;
12792 if (hle
->cmd
->code
== GOT_HISTEDIT_DROP
||
12793 hle
->cmd
->code
== GOT_HISTEDIT_FOLD
) {
12794 error
= histedit_skip_commit(hle
, worktree
,
12799 struct got_pathlist_head paths
;
12800 int have_changes
= 0;
12802 TAILQ_INIT(&paths
);
12803 error
= got_pathlist_append(&paths
, "", NULL
);
12806 error
= got_worktree_status(worktree
, &paths
,
12807 repo
, 0, check_local_changes
, &have_changes
,
12808 check_cancelled
, NULL
);
12809 got_pathlist_free(&paths
,
12810 GOT_PATHLIST_FREE_NONE
);
12812 if (error
->code
!= GOT_ERR_CANCELLED
)
12814 if (sigint_received
|| sigpipe_received
)
12817 if (have_changes
) {
12818 error
= histedit_commit(NULL
, worktree
,
12819 fileindex
, tmp_branch
, hle
,
12820 committer
, allow_conflict
, repo
);
12824 error
= got_object_open_as_commit(
12825 &commit
, repo
, hle
->commit_id
);
12828 error
= show_histedit_progress(commit
,
12830 got_object_commit_close(commit
);
12839 if (hle
->cmd
->code
== GOT_HISTEDIT_DROP
) {
12840 error
= histedit_skip_commit(hle
, worktree
, repo
);
12846 error
= got_object_open_as_commit(&commit
, repo
,
12850 parent_ids
= got_object_commit_get_parent_ids(commit
);
12851 pid
= STAILQ_FIRST(parent_ids
);
12853 error
= got_worktree_histedit_merge_files(&merged_paths
,
12854 worktree
, fileindex
, &pid
->id
, hle
->commit_id
, repo
,
12855 update_progress
, &upa
, check_cancelled
, NULL
);
12858 got_object_commit_close(commit
);
12861 print_merge_progress_stats(&upa
);
12862 if (upa
.conflicts
> 0 || upa
.missing
> 0 ||
12863 upa
.not_deleted
> 0 || upa
.unversioned
> 0) {
12864 if (upa
.conflicts
> 0) {
12865 error
= show_rebase_merge_conflict(
12866 hle
->commit_id
, repo
);
12870 got_pathlist_free(&merged_paths
, GOT_PATHLIST_FREE_PATH
);
12874 if (hle
->cmd
->code
== GOT_HISTEDIT_EDIT
) {
12876 error
= got_object_id_str(&id_str
, hle
->commit_id
);
12879 printf("Stopping histedit for amending commit %s\n",
12882 got_pathlist_free(&merged_paths
, GOT_PATHLIST_FREE_PATH
);
12883 error
= got_worktree_histedit_postpone(worktree
,
12888 if (hle
->cmd
->code
== GOT_HISTEDIT_FOLD
) {
12889 error
= histedit_skip_commit(hle
, worktree
, repo
);
12895 error
= histedit_commit(&merged_paths
, worktree
, fileindex
,
12896 tmp_branch
, hle
, committer
, allow_conflict
, repo
);
12897 got_pathlist_free(&merged_paths
, GOT_PATHLIST_FREE_PATH
);
12902 if (upa
.conflicts
> 0 || upa
.missing
> 0 ||
12903 upa
.not_deleted
> 0 || upa
.unversioned
> 0) {
12904 error
= got_worktree_histedit_postpone(worktree
, fileindex
);
12907 if (upa
.conflicts
> 0 && upa
.missing
== 0 &&
12908 upa
.not_deleted
== 0 && upa
.unversioned
== 0) {
12909 error
= got_error_msg(GOT_ERR_CONFLICTS
,
12910 "conflicts must be resolved before histedit "
12912 } else if (upa
.conflicts
> 0) {
12913 error
= got_error_msg(GOT_ERR_CONFLICTS
,
12914 "conflicts must be resolved before histedit "
12915 "can continue; changes destined for some "
12916 "files were not yet merged and should be "
12917 "merged manually if required before the "
12918 "histedit operation is continued");
12920 error
= got_error_msg(GOT_ERR_CONFLICTS
,
12921 "changes destined for some files were not "
12922 "yet merged and should be merged manually "
12923 "if required before the histedit operation "
12927 error
= histedit_complete(worktree
, fileindex
, tmp_branch
,
12932 free(gitconfig_path
);
12933 got_object_id_queue_free(&commits
);
12934 histedit_free_list(&histedit_cmds
);
12935 free(head_commit_id
);
12936 free(base_commit_id
);
12937 free(resume_commit_id
);
12939 got_object_commit_close(commit
);
12941 got_ref_close(branch
);
12943 got_ref_close(tmp_branch
);
12945 got_worktree_close(worktree
);
12947 const struct got_error
*close_err
= got_repo_close(repo
);
12952 const struct got_error
*pack_err
=
12953 got_repo_pack_fds_close(pack_fds
);
12961 usage_integrate(void)
12963 fprintf(stderr
, "usage: %s integrate branch\n", getprogname());
12967 static const struct got_error
*
12968 cmd_integrate(int argc
, char *argv
[])
12970 const struct got_error
*error
= NULL
;
12971 struct got_repository
*repo
= NULL
;
12972 struct got_worktree
*worktree
= NULL
;
12973 char *cwd
= NULL
, *refname
= NULL
, *base_refname
= NULL
;
12974 const char *branch_arg
= NULL
;
12975 struct got_reference
*branch_ref
= NULL
, *base_branch_ref
= NULL
;
12976 struct got_fileindex
*fileindex
= NULL
;
12977 struct got_object_id
*commit_id
= NULL
, *base_commit_id
= NULL
;
12979 struct got_update_progress_arg upa
;
12980 int *pack_fds
= NULL
;
12983 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
12984 "unveil", NULL
) == -1)
12988 while ((ch
= getopt(argc
, argv
, "")) != -1) {
13001 branch_arg
= argv
[0];
13003 cwd
= getcwd(NULL
, 0);
13005 error
= got_error_from_errno("getcwd");
13009 error
= got_repo_pack_fds_open(&pack_fds
);
13013 error
= got_worktree_open(&worktree
, cwd
);
13015 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
13016 error
= wrap_not_worktree_error(error
, "integrate",
13021 error
= check_rebase_or_histedit_in_progress(worktree
);
13025 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
13030 error
= apply_unveil(got_repo_get_path(repo
), 0,
13031 got_worktree_get_root_path(worktree
));
13035 error
= check_merge_in_progress(worktree
, repo
);
13039 if (asprintf(&refname
, "refs/heads/%s", branch_arg
) == -1) {
13040 error
= got_error_from_errno("asprintf");
13044 error
= got_worktree_integrate_prepare(&fileindex
, &branch_ref
,
13045 &base_branch_ref
, worktree
, refname
, repo
);
13049 refname
= strdup(got_ref_get_name(branch_ref
));
13050 if (refname
== NULL
) {
13051 error
= got_error_from_errno("strdup");
13052 got_worktree_integrate_abort(worktree
, fileindex
, repo
,
13053 branch_ref
, base_branch_ref
);
13056 base_refname
= strdup(got_ref_get_name(base_branch_ref
));
13057 if (base_refname
== NULL
) {
13058 error
= got_error_from_errno("strdup");
13059 got_worktree_integrate_abort(worktree
, fileindex
, repo
,
13060 branch_ref
, base_branch_ref
);
13063 if (strncmp(base_refname
, "refs/heads/", 11) != 0) {
13064 error
= got_error(GOT_ERR_INTEGRATE_BRANCH
);
13065 got_worktree_integrate_abort(worktree
, fileindex
, repo
,
13066 branch_ref
, base_branch_ref
);
13070 error
= got_ref_resolve(&commit_id
, repo
, branch_ref
);
13074 error
= got_ref_resolve(&base_commit_id
, repo
, base_branch_ref
);
13078 if (got_object_id_cmp(commit_id
, base_commit_id
) == 0) {
13079 error
= got_error_msg(GOT_ERR_SAME_BRANCH
,
13080 "specified branch has already been integrated");
13081 got_worktree_integrate_abort(worktree
, fileindex
, repo
,
13082 branch_ref
, base_branch_ref
);
13086 error
= check_linear_ancestry(commit_id
, base_commit_id
, 1, repo
);
13088 if (error
->code
== GOT_ERR_ANCESTRY
)
13089 error
= got_error(GOT_ERR_REBASE_REQUIRED
);
13090 got_worktree_integrate_abort(worktree
, fileindex
, repo
,
13091 branch_ref
, base_branch_ref
);
13095 memset(&upa
, 0, sizeof(upa
));
13096 error
= got_worktree_integrate_continue(worktree
, fileindex
, repo
,
13097 branch_ref
, base_branch_ref
, update_progress
, &upa
,
13098 check_cancelled
, NULL
);
13102 printf("Integrated %s into %s\n", refname
, base_refname
);
13103 print_update_progress_stats(&upa
);
13106 const struct got_error
*close_err
= got_repo_close(repo
);
13111 got_worktree_close(worktree
);
13113 const struct got_error
*pack_err
=
13114 got_repo_pack_fds_close(pack_fds
);
13119 free(base_commit_id
);
13122 free(base_refname
);
13129 fprintf(stderr
, "usage: %s merge [-aCcn] [branch]\n", getprogname());
13133 static const struct got_error
*
13134 cmd_merge(int argc
, char *argv
[])
13136 const struct got_error
*error
= NULL
;
13137 struct got_worktree
*worktree
= NULL
;
13138 struct got_repository
*repo
= NULL
;
13139 struct got_fileindex
*fileindex
= NULL
;
13140 char *cwd
= NULL
, *id_str
= NULL
, *author
= NULL
;
13141 char *gitconfig_path
= NULL
;
13142 struct got_reference
*branch
= NULL
, *wt_branch
= NULL
;
13143 struct got_object_id
*branch_tip
= NULL
, *yca_id
= NULL
;
13144 struct got_object_id
*wt_branch_tip
= NULL
;
13145 int ch
, merge_in_progress
= 0, abort_merge
= 0, continue_merge
= 0;
13146 int allow_conflict
= 0, interrupt_merge
= 0;
13147 struct got_update_progress_arg upa
;
13148 struct got_object_id
*merge_commit_id
= NULL
;
13149 char *branch_name
= NULL
;
13150 int *pack_fds
= NULL
;
13152 memset(&upa
, 0, sizeof(upa
));
13155 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
13156 "unveil", NULL
) == -1)
13160 while ((ch
= getopt(argc
, argv
, "aCcn")) != -1) {
13166 allow_conflict
= 1;
13168 continue_merge
= 1;
13171 interrupt_merge
= 1;
13182 if (allow_conflict
) {
13184 option_conflict('a', 'C');
13185 if (!continue_merge
)
13186 errx(1, "-C option requires -c");
13188 if (abort_merge
&& continue_merge
)
13189 option_conflict('a', 'c');
13190 if (abort_merge
|| continue_merge
) {
13193 } else if (argc
!= 1)
13196 cwd
= getcwd(NULL
, 0);
13198 error
= got_error_from_errno("getcwd");
13202 error
= got_repo_pack_fds_open(&pack_fds
);
13206 error
= got_worktree_open(&worktree
, cwd
);
13208 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
13209 error
= wrap_not_worktree_error(error
,
13214 error
= get_gitconfig_path(&gitconfig_path
);
13217 error
= got_repo_open(&repo
,
13218 worktree
? got_worktree_get_repo_path(worktree
) : cwd
,
13219 gitconfig_path
, pack_fds
);
13223 if (worktree
!= NULL
) {
13224 error
= worktree_has_logmsg_ref("merge", worktree
, repo
);
13229 error
= apply_unveil(got_repo_get_path(repo
), 0,
13230 worktree
? got_worktree_get_root_path(worktree
) : NULL
);
13234 error
= check_rebase_or_histedit_in_progress(worktree
);
13238 error
= got_worktree_merge_in_progress(&merge_in_progress
, worktree
,
13244 if (!merge_in_progress
) {
13245 error
= got_error(GOT_ERR_NOT_MERGING
);
13248 error
= got_worktree_merge_continue(&branch_name
,
13249 &branch_tip
, &fileindex
, worktree
, repo
);
13252 error
= got_worktree_merge_abort(worktree
, fileindex
, repo
,
13253 abort_progress
, &upa
);
13256 printf("Merge of %s aborted\n", branch_name
);
13257 goto done
; /* nothing else to do */
13260 error
= get_author(&author
, repo
, worktree
);
13264 if (continue_merge
) {
13265 if (!merge_in_progress
) {
13266 error
= got_error(GOT_ERR_NOT_MERGING
);
13269 error
= got_worktree_merge_continue(&branch_name
,
13270 &branch_tip
, &fileindex
, worktree
, repo
);
13274 error
= got_ref_open(&branch
, repo
, argv
[0], 0);
13277 branch_name
= strdup(got_ref_get_name(branch
));
13278 if (branch_name
== NULL
) {
13279 error
= got_error_from_errno("strdup");
13282 error
= got_ref_resolve(&branch_tip
, repo
, branch
);
13287 error
= got_ref_open(&wt_branch
, repo
,
13288 got_worktree_get_head_ref_name(worktree
), 0);
13291 error
= got_ref_resolve(&wt_branch_tip
, repo
, wt_branch
);
13294 error
= got_commit_graph_find_youngest_common_ancestor(&yca_id
,
13295 wt_branch_tip
, branch_tip
, 0, repo
,
13296 check_cancelled
, NULL
);
13297 if (error
&& error
->code
!= GOT_ERR_ANCESTRY
)
13300 if (!continue_merge
) {
13301 error
= check_path_prefix(wt_branch_tip
, branch_tip
,
13302 got_worktree_get_path_prefix(worktree
),
13303 GOT_ERR_MERGE_PATH
, repo
);
13306 if (yca_id
&& got_object_id_cmp(wt_branch_tip
, yca_id
) == 0) {
13307 static char msg
[512];
13308 snprintf(msg
, sizeof(msg
),
13309 "cannot create a merge commit because %s is based "
13310 "on %s; %s can be integrated with 'got integrate' "
13311 "instead", branch_name
,
13312 got_worktree_get_head_ref_name(worktree
),
13314 error
= got_error_msg(GOT_ERR_SAME_BRANCH
, msg
);
13317 error
= got_worktree_merge_prepare(&fileindex
, worktree
,
13322 error
= got_worktree_merge_branch(worktree
, fileindex
,
13323 yca_id
, branch_tip
, repo
, update_progress
, &upa
,
13324 check_cancelled
, NULL
);
13327 print_merge_progress_stats(&upa
);
13328 if (!upa
.did_something
) {
13329 error
= got_worktree_merge_abort(worktree
, fileindex
,
13330 repo
, abort_progress
, &upa
);
13333 printf("Already up-to-date\n");
13338 if (interrupt_merge
) {
13339 error
= got_worktree_merge_postpone(worktree
, fileindex
);
13342 printf("Merge of %s interrupted on request\n", branch_name
);
13343 } else if (upa
.conflicts
> 0 || upa
.missing
> 0 ||
13344 upa
.not_deleted
> 0 || upa
.unversioned
> 0) {
13345 error
= got_worktree_merge_postpone(worktree
, fileindex
);
13348 if (upa
.conflicts
> 0 && upa
.missing
== 0 &&
13349 upa
.not_deleted
== 0 && upa
.unversioned
== 0) {
13350 error
= got_error_msg(GOT_ERR_CONFLICTS
,
13351 "conflicts must be resolved before merging "
13353 } else if (upa
.conflicts
> 0) {
13354 error
= got_error_msg(GOT_ERR_CONFLICTS
,
13355 "conflicts must be resolved before merging "
13356 "can continue; changes destined for some "
13357 "files were not yet merged and "
13358 "should be merged manually if required before the "
13359 "merge operation is continued");
13361 error
= got_error_msg(GOT_ERR_CONFLICTS
,
13362 "changes destined for some "
13363 "files were not yet merged and should be "
13364 "merged manually if required before the "
13365 "merge operation is continued");
13369 error
= got_worktree_merge_commit(&merge_commit_id
, worktree
,
13370 fileindex
, author
, NULL
, 1, branch_tip
, branch_name
,
13371 allow_conflict
, repo
, continue_merge
? print_status
: NULL
,
13375 error
= got_worktree_merge_complete(worktree
, fileindex
, repo
);
13378 error
= got_object_id_str(&id_str
, merge_commit_id
);
13381 printf("Merged %s into %s: %s\n", branch_name
,
13382 got_worktree_get_head_ref_name(worktree
),
13387 free(gitconfig_path
);
13389 free(merge_commit_id
);
13395 got_ref_close(branch
);
13397 got_ref_close(wt_branch
);
13399 got_worktree_close(worktree
);
13401 const struct got_error
*close_err
= got_repo_close(repo
);
13406 const struct got_error
*pack_err
=
13407 got_repo_pack_fds_close(pack_fds
);
13417 fprintf(stderr
, "usage: %s stage [-lpS] [-F response-script] "
13418 "[path ...]\n", getprogname());
13422 static const struct got_error
*
13423 print_stage(void *arg
, unsigned char status
, unsigned char staged_status
,
13424 const char *path
, struct got_object_id
*blob_id
,
13425 struct got_object_id
*staged_blob_id
, struct got_object_id
*commit_id
,
13426 int dirfd
, const char *de_name
)
13428 const struct got_error
*err
= NULL
;
13429 char *id_str
= NULL
;
13431 if (staged_status
!= GOT_STATUS_ADD
&&
13432 staged_status
!= GOT_STATUS_MODIFY
&&
13433 staged_status
!= GOT_STATUS_DELETE
)
13436 if (staged_status
== GOT_STATUS_ADD
||
13437 staged_status
== GOT_STATUS_MODIFY
)
13438 err
= got_object_id_str(&id_str
, staged_blob_id
);
13440 err
= got_object_id_str(&id_str
, blob_id
);
13444 printf("%s %c %s\n", id_str
, staged_status
, path
);
13449 static const struct got_error
*
13450 cmd_stage(int argc
, char *argv
[])
13452 const struct got_error
*error
= NULL
;
13453 struct got_repository
*repo
= NULL
;
13454 struct got_worktree
*worktree
= NULL
;
13456 struct got_pathlist_head paths
;
13457 int ch
, list_stage
= 0, pflag
= 0, allow_bad_symlinks
= 0;
13458 FILE *patch_script_file
= NULL
;
13459 const char *patch_script_path
= NULL
;
13460 struct choose_patch_arg cpa
;
13461 int *pack_fds
= NULL
;
13463 TAILQ_INIT(&paths
);
13466 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
13467 "unveil", NULL
) == -1)
13471 while ((ch
= getopt(argc
, argv
, "F:lpS")) != -1) {
13474 patch_script_path
= optarg
;
13483 allow_bad_symlinks
= 1;
13494 if (list_stage
&& (pflag
|| patch_script_path
))
13495 errx(1, "-l option cannot be used with other options");
13496 if (patch_script_path
&& !pflag
)
13497 errx(1, "-F option can only be used together with -p option");
13499 cwd
= getcwd(NULL
, 0);
13501 error
= got_error_from_errno("getcwd");
13505 error
= got_repo_pack_fds_open(&pack_fds
);
13509 error
= got_worktree_open(&worktree
, cwd
);
13511 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
13512 error
= wrap_not_worktree_error(error
, "stage", cwd
);
13516 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
13521 if (patch_script_path
) {
13522 patch_script_file
= fopen(patch_script_path
, "re");
13523 if (patch_script_file
== NULL
) {
13524 error
= got_error_from_errno2("fopen",
13525 patch_script_path
);
13529 error
= apply_unveil(got_repo_get_path(repo
), 0,
13530 got_worktree_get_root_path(worktree
));
13534 error
= check_merge_in_progress(worktree
, repo
);
13538 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
13543 error
= got_worktree_status(worktree
, &paths
, repo
, 0,
13544 print_stage
, NULL
, check_cancelled
, NULL
);
13546 cpa
.patch_script_file
= patch_script_file
;
13547 cpa
.action
= "stage";
13548 error
= got_worktree_stage(worktree
, &paths
,
13549 pflag
? NULL
: print_status
, NULL
,
13550 pflag
? choose_patch
: NULL
, &cpa
,
13551 allow_bad_symlinks
, repo
);
13554 if (patch_script_file
&& fclose(patch_script_file
) == EOF
&&
13556 error
= got_error_from_errno2("fclose", patch_script_path
);
13558 const struct got_error
*close_err
= got_repo_close(repo
);
13563 got_worktree_close(worktree
);
13565 const struct got_error
*pack_err
=
13566 got_repo_pack_fds_close(pack_fds
);
13570 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
13576 usage_unstage(void)
13578 fprintf(stderr
, "usage: %s unstage [-p] [-F response-script] "
13579 "[path ...]\n", getprogname());
13584 static const struct got_error
*
13585 cmd_unstage(int argc
, char *argv
[])
13587 const struct got_error
*error
= NULL
;
13588 struct got_repository
*repo
= NULL
;
13589 struct got_worktree
*worktree
= NULL
;
13591 struct got_pathlist_head paths
;
13593 struct got_update_progress_arg upa
;
13594 FILE *patch_script_file
= NULL
;
13595 const char *patch_script_path
= NULL
;
13596 struct choose_patch_arg cpa
;
13597 int *pack_fds
= NULL
;
13599 TAILQ_INIT(&paths
);
13602 if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
13603 "unveil", NULL
) == -1)
13607 while ((ch
= getopt(argc
, argv
, "F:p")) != -1) {
13610 patch_script_path
= optarg
;
13624 if (patch_script_path
&& !pflag
)
13625 errx(1, "-F option can only be used together with -p option");
13627 cwd
= getcwd(NULL
, 0);
13629 error
= got_error_from_errno("getcwd");
13633 error
= got_repo_pack_fds_open(&pack_fds
);
13637 error
= got_worktree_open(&worktree
, cwd
);
13639 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
13640 error
= wrap_not_worktree_error(error
, "unstage", cwd
);
13644 error
= got_repo_open(&repo
, got_worktree_get_repo_path(worktree
),
13649 if (patch_script_path
) {
13650 patch_script_file
= fopen(patch_script_path
, "re");
13651 if (patch_script_file
== NULL
) {
13652 error
= got_error_from_errno2("fopen",
13653 patch_script_path
);
13658 error
= apply_unveil(got_repo_get_path(repo
), 0,
13659 got_worktree_get_root_path(worktree
));
13663 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
, worktree
);
13667 cpa
.patch_script_file
= patch_script_file
;
13668 cpa
.action
= "unstage";
13669 memset(&upa
, 0, sizeof(upa
));
13670 error
= got_worktree_unstage(worktree
, &paths
, update_progress
,
13671 &upa
, pflag
? choose_patch
: NULL
, &cpa
, repo
);
13673 print_merge_progress_stats(&upa
);
13675 if (patch_script_file
&& fclose(patch_script_file
) == EOF
&&
13677 error
= got_error_from_errno2("fclose", patch_script_path
);
13679 const struct got_error
*close_err
= got_repo_close(repo
);
13684 got_worktree_close(worktree
);
13686 const struct got_error
*pack_err
=
13687 got_repo_pack_fds_close(pack_fds
);
13691 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);
13699 fprintf(stderr
, "usage: %s cat [-P] [-c commit] [-r repository-path] "
13700 "arg ...\n", getprogname());
13704 static const struct got_error
*
13705 cat_blob(struct got_object_id
*id
, struct got_repository
*repo
, FILE *outfile
)
13707 const struct got_error
*err
;
13708 struct got_blob_object
*blob
;
13711 fd
= got_opentempfd();
13713 return got_error_from_errno("got_opentempfd");
13715 err
= got_object_open_as_blob(&blob
, repo
, id
, 8192, fd
);
13719 err
= got_object_blob_dump_to_file(NULL
, NULL
, NULL
, outfile
, blob
);
13721 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
13722 err
= got_error_from_errno("close");
13724 got_object_blob_close(blob
);
13728 static const struct got_error
*
13729 cat_tree(struct got_object_id
*id
, struct got_repository
*repo
, FILE *outfile
)
13731 const struct got_error
*err
;
13732 struct got_tree_object
*tree
;
13735 err
= got_object_open_as_tree(&tree
, repo
, id
);
13739 nentries
= got_object_tree_get_nentries(tree
);
13740 for (i
= 0; i
< nentries
; i
++) {
13741 struct got_tree_entry
*te
;
13743 if (sigint_received
|| sigpipe_received
)
13745 te
= got_object_tree_get_entry(tree
, i
);
13746 err
= got_object_id_str(&id_str
, got_tree_entry_get_id(te
));
13749 fprintf(outfile
, "%s %.7o %s\n", id_str
,
13750 got_tree_entry_get_mode(te
),
13751 got_tree_entry_get_name(te
));
13755 got_object_tree_close(tree
);
13759 static const struct got_error
*
13760 cat_commit(struct got_object_id
*id
, struct got_repository
*repo
, FILE *outfile
)
13762 const struct got_error
*err
;
13763 struct got_commit_object
*commit
;
13764 const struct got_object_id_queue
*parent_ids
;
13765 struct got_object_qid
*pid
;
13766 char *id_str
= NULL
;
13767 const char *logmsg
= NULL
;
13770 err
= got_object_open_as_commit(&commit
, repo
, id
);
13774 err
= got_object_id_str(&id_str
, got_object_commit_get_tree_id(commit
));
13778 fprintf(outfile
, "%s%s\n", GOT_COMMIT_LABEL_TREE
, id_str
);
13779 parent_ids
= got_object_commit_get_parent_ids(commit
);
13780 fprintf(outfile
, "numparents %d\n",
13781 got_object_commit_get_nparents(commit
));
13782 STAILQ_FOREACH(pid
, parent_ids
, entry
) {
13784 err
= got_object_id_str(&pid_str
, &pid
->id
);
13787 fprintf(outfile
, "%s%s\n", GOT_COMMIT_LABEL_PARENT
, pid_str
);
13790 got_date_format_gmtoff(gmtoff
, sizeof(gmtoff
),
13791 got_object_commit_get_author_gmtoff(commit
));
13792 fprintf(outfile
, "%s%s %lld %s\n", GOT_COMMIT_LABEL_AUTHOR
,
13793 got_object_commit_get_author(commit
),
13794 (long long)got_object_commit_get_author_time(commit
),
13797 got_date_format_gmtoff(gmtoff
, sizeof(gmtoff
),
13798 got_object_commit_get_committer_gmtoff(commit
));
13799 fprintf(outfile
, "%s%s %lld %s\n", GOT_COMMIT_LABEL_COMMITTER
,
13800 got_object_commit_get_committer(commit
),
13801 (long long)got_object_commit_get_committer_time(commit
),
13804 logmsg
= got_object_commit_get_logmsg_raw(commit
);
13805 fprintf(outfile
, "messagelen %zd\n", strlen(logmsg
));
13806 fprintf(outfile
, "%s", logmsg
);
13809 got_object_commit_close(commit
);
13813 static const struct got_error
*
13814 cat_tag(struct got_object_id
*id
, struct got_repository
*repo
, FILE *outfile
)
13816 const struct got_error
*err
;
13817 struct got_tag_object
*tag
;
13818 char *id_str
= NULL
;
13819 const char *tagmsg
= NULL
;
13822 err
= got_object_open_as_tag(&tag
, repo
, id
);
13826 err
= got_object_id_str(&id_str
, got_object_tag_get_object_id(tag
));
13830 fprintf(outfile
, "%s%s\n", GOT_TAG_LABEL_OBJECT
, id_str
);
13832 switch (got_object_tag_get_object_type(tag
)) {
13833 case GOT_OBJ_TYPE_BLOB
:
13834 fprintf(outfile
, "%s%s\n", GOT_TAG_LABEL_TYPE
,
13835 GOT_OBJ_LABEL_BLOB
);
13837 case GOT_OBJ_TYPE_TREE
:
13838 fprintf(outfile
, "%s%s\n", GOT_TAG_LABEL_TYPE
,
13839 GOT_OBJ_LABEL_TREE
);
13841 case GOT_OBJ_TYPE_COMMIT
:
13842 fprintf(outfile
, "%s%s\n", GOT_TAG_LABEL_TYPE
,
13843 GOT_OBJ_LABEL_COMMIT
);
13845 case GOT_OBJ_TYPE_TAG
:
13846 fprintf(outfile
, "%s%s\n", GOT_TAG_LABEL_TYPE
,
13847 GOT_OBJ_LABEL_TAG
);
13853 fprintf(outfile
, "%s%s\n", GOT_TAG_LABEL_TAG
,
13854 got_object_tag_get_name(tag
));
13856 got_date_format_gmtoff(gmtoff
, sizeof(gmtoff
),
13857 got_object_tag_get_tagger_gmtoff(tag
));
13858 fprintf(outfile
, "%s%s %lld %s\n", GOT_TAG_LABEL_TAGGER
,
13859 got_object_tag_get_tagger(tag
),
13860 (long long)got_object_tag_get_tagger_time(tag
),
13863 tagmsg
= got_object_tag_get_message(tag
);
13864 fprintf(outfile
, "messagelen %zd\n", strlen(tagmsg
));
13865 fprintf(outfile
, "%s", tagmsg
);
13868 got_object_tag_close(tag
);
13872 static const struct got_error
*
13873 cmd_cat(int argc
, char *argv
[])
13875 const struct got_error
*error
;
13876 struct got_repository
*repo
= NULL
;
13877 struct got_worktree
*worktree
= NULL
;
13878 char *cwd
= NULL
, *repo_path
= NULL
, *label
= NULL
;
13879 const char *commit_id_str
= NULL
;
13880 struct got_object_id
*id
= NULL
, *commit_id
= NULL
;
13881 struct got_commit_object
*commit
= NULL
;
13882 int ch
, obj_type
, i
, force_path
= 0;
13883 struct got_reflist_head refs
;
13884 int *pack_fds
= NULL
;
13889 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
13894 while ((ch
= getopt(argc
, argv
, "c:Pr:")) != -1) {
13897 commit_id_str
= optarg
;
13903 repo_path
= realpath(optarg
, NULL
);
13904 if (repo_path
== NULL
)
13905 return got_error_from_errno2("realpath",
13907 got_path_strip_trailing_slashes(repo_path
);
13918 cwd
= getcwd(NULL
, 0);
13920 error
= got_error_from_errno("getcwd");
13924 error
= got_repo_pack_fds_open(&pack_fds
);
13928 if (repo_path
== NULL
) {
13929 error
= got_worktree_open(&worktree
, cwd
);
13930 if (error
&& error
->code
!= GOT_ERR_NOT_WORKTREE
)
13933 repo_path
= strdup(
13934 got_worktree_get_repo_path(worktree
));
13935 if (repo_path
== NULL
) {
13936 error
= got_error_from_errno("strdup");
13940 /* Release work tree lock. */
13941 got_worktree_close(worktree
);
13946 if (repo_path
== NULL
) {
13947 repo_path
= strdup(cwd
);
13948 if (repo_path
== NULL
)
13949 return got_error_from_errno("strdup");
13952 error
= got_repo_open(&repo
, repo_path
, NULL
, pack_fds
);
13957 error
= apply_unveil(got_repo_get_path(repo
), 1, NULL
);
13961 error
= got_ref_list(&refs
, repo
, NULL
, got_ref_cmp_by_name
, NULL
);
13965 if (commit_id_str
== NULL
)
13966 commit_id_str
= GOT_REF_HEAD
;
13967 error
= got_repo_match_object_id(&commit_id
, NULL
,
13968 commit_id_str
, GOT_OBJ_TYPE_COMMIT
, &refs
, repo
);
13972 error
= got_object_open_as_commit(&commit
, repo
, commit_id
);
13976 for (i
= 0; i
< argc
; i
++) {
13978 error
= got_object_id_by_path(&id
, repo
, commit
,
13983 error
= got_repo_match_object_id(&id
, &label
, argv
[i
],
13984 GOT_OBJ_TYPE_ANY
, NULL
/* do not resolve tags */,
13987 if (error
->code
!= GOT_ERR_BAD_OBJ_ID_STR
&&
13988 error
->code
!= GOT_ERR_NOT_REF
)
13990 error
= got_object_id_by_path(&id
, repo
,
13997 error
= got_object_get_type(&obj_type
, repo
, id
);
14001 switch (obj_type
) {
14002 case GOT_OBJ_TYPE_BLOB
:
14003 error
= cat_blob(id
, repo
, stdout
);
14005 case GOT_OBJ_TYPE_TREE
:
14006 error
= cat_tree(id
, repo
, stdout
);
14008 case GOT_OBJ_TYPE_COMMIT
:
14009 error
= cat_commit(id
, repo
, stdout
);
14011 case GOT_OBJ_TYPE_TAG
:
14012 error
= cat_tag(id
, repo
, stdout
);
14015 error
= got_error(GOT_ERR_OBJ_TYPE
);
14030 got_object_commit_close(commit
);
14032 got_worktree_close(worktree
);
14034 const struct got_error
*close_err
= got_repo_close(repo
);
14039 const struct got_error
*pack_err
=
14040 got_repo_pack_fds_close(pack_fds
);
14045 got_ref_list_free(&refs
);
14052 fprintf(stderr
, "usage: %s info [path ...]\n",
14057 static const struct got_error
*
14058 print_path_info(void *arg
, const char *path
, mode_t mode
, time_t mtime
,
14059 struct got_object_id
*blob_id
, struct got_object_id
*staged_blob_id
,
14060 struct got_object_id
*commit_id
)
14062 const struct got_error
*err
= NULL
;
14063 char *id_str
= NULL
;
14065 struct tm mytm
, *tm
;
14066 struct got_pathlist_head
*paths
= arg
;
14067 struct got_pathlist_entry
*pe
;
14070 * Clear error indication from any of the path arguments which
14071 * would cause this file index entry to be displayed.
14073 TAILQ_FOREACH(pe
, paths
, entry
) {
14074 if (got_path_cmp(path
, pe
->path
, strlen(path
),
14075 pe
->path_len
) == 0 ||
14076 got_path_is_child(path
, pe
->path
, pe
->path_len
))
14077 pe
->data
= NULL
; /* no error */
14080 printf(GOT_COMMIT_SEP_STR
);
14082 printf("symlink: %s\n", path
);
14083 else if (S_ISREG(mode
)) {
14084 printf("file: %s\n", path
);
14085 printf("mode: %o\n", mode
& (S_IRWXU
| S_IRWXG
| S_IRWXO
));
14086 } else if (S_ISDIR(mode
))
14087 printf("directory: %s\n", path
);
14089 printf("something: %s\n", path
);
14091 tm
= localtime_r(&mtime
, &mytm
);
14094 if (strftime(datebuf
, sizeof(datebuf
), "%c %Z", tm
) == 0)
14095 return got_error(GOT_ERR_NO_SPACE
);
14096 printf("timestamp: %s\n", datebuf
);
14099 err
= got_object_id_str(&id_str
, blob_id
);
14102 printf("based on blob: %s\n", id_str
);
14106 if (staged_blob_id
) {
14107 err
= got_object_id_str(&id_str
, staged_blob_id
);
14110 printf("based on staged blob: %s\n", id_str
);
14115 err
= got_object_id_str(&id_str
, commit_id
);
14118 printf("based on commit: %s\n", id_str
);
14125 static const struct got_error
*
14126 cmd_info(int argc
, char *argv
[])
14128 const struct got_error
*error
= NULL
;
14129 struct got_worktree
*worktree
= NULL
;
14130 char *cwd
= NULL
, *id_str
= NULL
;
14131 struct got_pathlist_head paths
;
14132 char *uuidstr
= NULL
;
14133 int ch
, show_files
= 0;
14135 TAILQ_INIT(&paths
);
14138 if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
14143 while ((ch
= getopt(argc
, argv
, "")) != -1) {
14154 cwd
= getcwd(NULL
, 0);
14156 error
= got_error_from_errno("getcwd");
14160 error
= got_worktree_open(&worktree
, cwd
);
14162 if (error
->code
== GOT_ERR_NOT_WORKTREE
)
14163 error
= wrap_not_worktree_error(error
, "info", cwd
);
14168 /* Remove "wpath cpath proc exec sendfd" promises. */
14169 if (pledge("stdio rpath flock unveil", NULL
) == -1)
14172 error
= apply_unveil(NULL
, 0, got_worktree_get_root_path(worktree
));
14177 error
= get_worktree_paths_from_argv(&paths
, argc
, argv
,
14184 error
= got_object_id_str(&id_str
,
14185 got_worktree_get_base_commit_id(worktree
));
14189 error
= got_worktree_get_uuid(&uuidstr
, worktree
);
14193 printf("work tree: %s\n", got_worktree_get_root_path(worktree
));
14194 printf("work tree base commit: %s\n", id_str
);
14195 printf("work tree path prefix: %s\n",
14196 got_worktree_get_path_prefix(worktree
));
14197 printf("work tree branch reference: %s\n",
14198 got_worktree_get_head_ref_name(worktree
));
14199 printf("work tree UUID: %s\n", uuidstr
);
14200 printf("repository: %s\n", got_worktree_get_repo_path(worktree
));
14203 struct got_pathlist_entry
*pe
;
14204 TAILQ_FOREACH(pe
, &paths
, entry
) {
14205 if (pe
->path_len
== 0)
14208 * Assume this path will fail. This will be corrected
14209 * in print_path_info() in case the path does suceeed.
14211 pe
->data
= (void *)got_error(GOT_ERR_BAD_PATH
);
14213 error
= got_worktree_path_info(worktree
, &paths
,
14214 print_path_info
, &paths
, check_cancelled
, NULL
);
14217 TAILQ_FOREACH(pe
, &paths
, entry
) {
14218 if (pe
->data
!= NULL
) {
14219 const struct got_error
*perr
;
14222 error
= got_error_fmt(perr
->code
, "%s",
14230 got_worktree_close(worktree
);
14231 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_PATH
);