3 #include "environment.h"
6 #include "object-name.h"
7 #include "parse-options.h"
12 #include "run-command.h"
13 #include "oid-array.h"
19 static GIT_PATH_FUNC(git_path_bisect_terms
, "BISECT_TERMS")
20 static GIT_PATH_FUNC(git_path_bisect_expected_rev
, "BISECT_EXPECTED_REV")
21 static GIT_PATH_FUNC(git_path_bisect_ancestors_ok
, "BISECT_ANCESTORS_OK")
22 static GIT_PATH_FUNC(git_path_bisect_start
, "BISECT_START")
23 static GIT_PATH_FUNC(git_path_bisect_log
, "BISECT_LOG")
24 static GIT_PATH_FUNC(git_path_bisect_names
, "BISECT_NAMES")
25 static GIT_PATH_FUNC(git_path_bisect_first_parent
, "BISECT_FIRST_PARENT")
26 static GIT_PATH_FUNC(git_path_bisect_run
, "BISECT_RUN")
28 #define BUILTIN_GIT_BISECT_START_USAGE \
29 N_("git bisect start [--term-{new,bad}=<term> --term-{old,good}=<term>]" \
30 " [--no-checkout] [--first-parent] [<bad> [<good>...]] [--]" \
32 #define BUILTIN_GIT_BISECT_STATE_USAGE \
33 N_("git bisect (good|bad) [<rev>...]")
34 #define BUILTIN_GIT_BISECT_TERMS_USAGE \
35 "git bisect terms [--term-good | --term-bad]"
36 #define BUILTIN_GIT_BISECT_SKIP_USAGE \
37 N_("git bisect skip [(<rev>|<range>)...]")
38 #define BUILTIN_GIT_BISECT_NEXT_USAGE \
40 #define BUILTIN_GIT_BISECT_RESET_USAGE \
41 N_("git bisect reset [<commit>]")
42 #define BUILTIN_GIT_BISECT_VISUALIZE_USAGE \
43 "git bisect visualize"
44 #define BUILTIN_GIT_BISECT_REPLAY_USAGE \
45 N_("git bisect replay <logfile>")
46 #define BUILTIN_GIT_BISECT_LOG_USAGE \
48 #define BUILTIN_GIT_BISECT_RUN_USAGE \
49 N_("git bisect run <cmd>...")
51 static const char * const git_bisect_usage
[] = {
52 BUILTIN_GIT_BISECT_START_USAGE
,
53 BUILTIN_GIT_BISECT_STATE_USAGE
,
54 BUILTIN_GIT_BISECT_TERMS_USAGE
,
55 BUILTIN_GIT_BISECT_SKIP_USAGE
,
56 BUILTIN_GIT_BISECT_NEXT_USAGE
,
57 BUILTIN_GIT_BISECT_RESET_USAGE
,
58 BUILTIN_GIT_BISECT_VISUALIZE_USAGE
,
59 BUILTIN_GIT_BISECT_REPLAY_USAGE
,
60 BUILTIN_GIT_BISECT_LOG_USAGE
,
61 BUILTIN_GIT_BISECT_RUN_USAGE
,
65 struct add_bisect_ref_data
{
66 struct rev_info
*revs
;
67 unsigned int object_flags
;
75 static void free_terms(struct bisect_terms
*terms
)
77 FREE_AND_NULL(terms
->term_good
);
78 FREE_AND_NULL(terms
->term_bad
);
81 static void set_terms(struct bisect_terms
*terms
, const char *bad
,
84 free((void *)terms
->term_good
);
85 terms
->term_good
= xstrdup(good
);
86 free((void *)terms
->term_bad
);
87 terms
->term_bad
= xstrdup(bad
);
90 static const char vocab_bad
[] = "bad|new";
91 static const char vocab_good
[] = "good|old";
93 static int bisect_autostart(struct bisect_terms
*terms
);
96 * Check whether the string `term` belongs to the set of strings
97 * included in the variable arguments.
100 static int one_of(const char *term
, ...)
106 va_start(matches
, term
);
107 while (!res
&& (match
= va_arg(matches
, const char *)))
108 res
= !strcmp(term
, match
);
115 * return code BISECT_INTERNAL_SUCCESS_MERGE_BASE
116 * and BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND are codes
117 * that indicate special success.
120 static int is_bisect_success(enum bisect_error res
)
123 res
== BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND
||
124 res
== BISECT_INTERNAL_SUCCESS_MERGE_BASE
;
127 static int write_in_file(const char *path
, const char *mode
, const char *format
, va_list args
)
132 if (strcmp(mode
, "w") && strcmp(mode
, "a"))
133 BUG("write-in-file does not support '%s' mode", mode
);
134 fp
= fopen(path
, mode
);
136 return error_errno(_("cannot open file '%s' in mode '%s'"), path
, mode
);
137 res
= vfprintf(fp
, format
, args
);
140 int saved_errno
= errno
;
143 return error_errno(_("could not write to file '%s'"), path
);
149 __attribute__((format (printf
, 2, 3)))
150 static int write_to_file(const char *path
, const char *format
, ...)
155 va_start(args
, format
);
156 res
= write_in_file(path
, "w", format
, args
);
162 __attribute__((format (printf
, 2, 3)))
163 static int append_to_file(const char *path
, const char *format
, ...)
168 va_start(args
, format
);
169 res
= write_in_file(path
, "a", format
, args
);
175 static int print_file_to_stdout(const char *path
)
177 int fd
= open(path
, O_RDONLY
);
181 return error_errno(_("cannot open file '%s' for reading"), path
);
182 if (copy_fd(fd
, 1) < 0)
183 ret
= error_errno(_("failed to read '%s'"), path
);
188 static int check_term_format(const char *term
, const char *orig_term
)
191 char *new_term
= xstrfmt("refs/bisect/%s", term
);
193 res
= check_refname_format(new_term
, 0);
197 return error(_("'%s' is not a valid term"), term
);
199 if (one_of(term
, "help", "start", "skip", "next", "reset",
200 "visualize", "view", "replay", "log", "run", "terms", NULL
))
201 return error(_("can't use the builtin command '%s' as a term"), term
);
204 * In theory, nothing prevents swapping completely good and bad,
205 * but this situation could be confusing and hasn't been tested
206 * enough. Forbid it for now.
209 if ((strcmp(orig_term
, "bad") && one_of(term
, "bad", "new", NULL
)) ||
210 (strcmp(orig_term
, "good") && one_of(term
, "good", "old", NULL
)))
211 return error(_("can't change the meaning of the term '%s'"), term
);
216 static int write_terms(const char *bad
, const char *good
)
220 if (!strcmp(bad
, good
))
221 return error(_("please use two different terms"));
223 if (check_term_format(bad
, "bad") || check_term_format(good
, "good"))
226 res
= write_to_file(git_path_bisect_terms(), "%s\n%s\n", bad
, good
);
231 static int bisect_reset(const char *commit
)
233 struct strbuf branch
= STRBUF_INIT
;
236 if (strbuf_read_file(&branch
, git_path_bisect_start(), 0) < 1) {
237 printf(_("We are not bisecting.\n"));
240 strbuf_rtrim(&branch
);
242 struct object_id oid
;
244 if (repo_get_oid_commit(the_repository
, commit
, &oid
))
245 return error(_("'%s' is not a valid commit"), commit
);
246 strbuf_addstr(&branch
, commit
);
249 if (!ref_exists("BISECT_HEAD")) {
250 struct child_process cmd
= CHILD_PROCESS_INIT
;
253 strvec_pushl(&cmd
.args
, "checkout", "--ignore-other-worktrees",
254 branch
.buf
, "--", NULL
);
255 if (run_command(&cmd
)) {
256 error(_("could not check out original"
257 " HEAD '%s'. Try 'git bisect"
258 " reset <commit>'."), branch
.buf
);
259 strbuf_release(&branch
);
264 strbuf_release(&branch
);
265 return bisect_clean_state();
268 static void log_commit(FILE *fp
, char *fmt
, const char *state
,
269 struct commit
*commit
)
271 struct pretty_print_context pp
= {0};
272 struct strbuf commit_msg
= STRBUF_INIT
;
273 char *label
= xstrfmt(fmt
, state
);
275 repo_format_commit_message(the_repository
, commit
, "%s", &commit_msg
,
278 fprintf(fp
, "# %s: [%s] %s\n", label
, oid_to_hex(&commit
->object
.oid
),
281 strbuf_release(&commit_msg
);
285 static int bisect_write(const char *state
, const char *rev
,
286 const struct bisect_terms
*terms
, int nolog
)
288 struct strbuf tag
= STRBUF_INIT
;
289 struct object_id oid
;
290 struct commit
*commit
;
294 if (!strcmp(state
, terms
->term_bad
)) {
295 strbuf_addf(&tag
, "refs/bisect/%s", state
);
296 } else if (one_of(state
, terms
->term_good
, "skip", NULL
)) {
297 strbuf_addf(&tag
, "refs/bisect/%s-%s", state
, rev
);
299 res
= error(_("Bad bisect_write argument: %s"), state
);
303 if (repo_get_oid(the_repository
, rev
, &oid
)) {
304 res
= error(_("couldn't get the oid of the rev '%s'"), rev
);
308 if (update_ref(NULL
, tag
.buf
, &oid
, NULL
, 0,
309 UPDATE_REFS_MSG_ON_ERR
)) {
314 fp
= fopen(git_path_bisect_log(), "a");
316 res
= error_errno(_("couldn't open the file '%s'"), git_path_bisect_log());
320 commit
= lookup_commit_reference(the_repository
, &oid
);
321 log_commit(fp
, "%s", state
, commit
);
324 fprintf(fp
, "git bisect %s %s\n", state
, rev
);
329 strbuf_release(&tag
);
333 static int check_and_set_terms(struct bisect_terms
*terms
, const char *cmd
)
335 int has_term_file
= !is_empty_or_missing_file(git_path_bisect_terms());
337 if (one_of(cmd
, "skip", "start", "terms", NULL
))
340 if (has_term_file
&& strcmp(cmd
, terms
->term_bad
) &&
341 strcmp(cmd
, terms
->term_good
))
342 return error(_("Invalid command: you're currently in a "
343 "%s/%s bisect"), terms
->term_bad
,
346 if (!has_term_file
) {
347 if (one_of(cmd
, "bad", "good", NULL
)) {
348 set_terms(terms
, "bad", "good");
349 return write_terms(terms
->term_bad
, terms
->term_good
);
351 if (one_of(cmd
, "new", "old", NULL
)) {
352 set_terms(terms
, "new", "old");
353 return write_terms(terms
->term_bad
, terms
->term_good
);
360 static int inc_nr(const char *refname UNUSED
,
361 const struct object_id
*oid UNUSED
,
362 int flag UNUSED
, void *cb_data
)
364 unsigned int *nr
= (unsigned int *)cb_data
;
369 static const char need_bad_and_good_revision_warning
[] =
370 N_("You need to give me at least one %s and %s revision.\n"
371 "You can use \"git bisect %s\" and \"git bisect %s\" for that.");
373 static const char need_bisect_start_warning
[] =
374 N_("You need to start by \"git bisect start\".\n"
375 "You then need to give me at least one %s and %s revision.\n"
376 "You can use \"git bisect %s\" and \"git bisect %s\" for that.");
378 static int decide_next(const struct bisect_terms
*terms
,
379 const char *current_term
, int missing_good
,
382 if (!missing_good
&& !missing_bad
)
387 if (missing_good
&& !missing_bad
&&
388 !strcmp(current_term
, terms
->term_good
)) {
391 * have bad (or new) but not good (or old). We could bisect
392 * although this is less optimum.
394 warning(_("bisecting only with a %s commit"), terms
->term_bad
);
398 * TRANSLATORS: Make sure to include [Y] and [n] in your
399 * translation. The program will only accept English input
402 yesno
= git_prompt(_("Are you sure [Y/n]? "), PROMPT_ECHO
);
403 if (starts_with(yesno
, "N") || starts_with(yesno
, "n"))
408 if (!is_empty_or_missing_file(git_path_bisect_start()))
409 return error(_(need_bad_and_good_revision_warning
),
410 vocab_bad
, vocab_good
, vocab_bad
, vocab_good
);
412 return error(_(need_bisect_start_warning
),
413 vocab_good
, vocab_bad
, vocab_good
, vocab_bad
);
416 static void bisect_status(struct bisect_state
*state
,
417 const struct bisect_terms
*terms
)
419 char *bad_ref
= xstrfmt("refs/bisect/%s", terms
->term_bad
);
420 char *good_glob
= xstrfmt("%s-*", terms
->term_good
);
422 if (ref_exists(bad_ref
))
425 for_each_glob_ref_in(inc_nr
, good_glob
, "refs/bisect/",
426 (void *) &state
->nr_good
);
432 __attribute__((format (printf
, 1, 2)))
433 static void bisect_log_printf(const char *fmt
, ...)
435 struct strbuf buf
= STRBUF_INIT
;
439 strbuf_vaddf(&buf
, fmt
, ap
);
442 printf("%s", buf
.buf
);
443 append_to_file(git_path_bisect_log(), "# %s", buf
.buf
);
445 strbuf_release(&buf
);
448 static void bisect_print_status(const struct bisect_terms
*terms
)
450 struct bisect_state state
= { 0 };
452 bisect_status(&state
, terms
);
454 /* If we had both, we'd already be started, and shouldn't get here. */
455 if (state
.nr_good
&& state
.nr_bad
)
458 if (!state
.nr_good
&& !state
.nr_bad
)
459 bisect_log_printf(_("status: waiting for both good and bad commits\n"));
460 else if (state
.nr_good
)
461 bisect_log_printf(Q_("status: waiting for bad commit, %d good commit known\n",
462 "status: waiting for bad commit, %d good commits known\n",
463 state
.nr_good
), state
.nr_good
);
465 bisect_log_printf(_("status: waiting for good commit(s), bad commit known\n"));
468 static int bisect_next_check(const struct bisect_terms
*terms
,
469 const char *current_term
)
471 struct bisect_state state
= { 0 };
472 bisect_status(&state
, terms
);
473 return decide_next(terms
, current_term
, !state
.nr_good
, !state
.nr_bad
);
476 static int get_terms(struct bisect_terms
*terms
)
478 struct strbuf str
= STRBUF_INIT
;
482 fp
= fopen(git_path_bisect_terms(), "r");
489 strbuf_getline_lf(&str
, fp
);
490 terms
->term_bad
= strbuf_detach(&str
, NULL
);
491 strbuf_getline_lf(&str
, fp
);
492 terms
->term_good
= strbuf_detach(&str
, NULL
);
497 strbuf_release(&str
);
501 static int bisect_terms(struct bisect_terms
*terms
, const char *option
)
503 if (get_terms(terms
))
504 return error(_("no terms defined"));
507 printf(_("Your current terms are %s for the old state\n"
508 "and %s for the new state.\n"),
509 terms
->term_good
, terms
->term_bad
);
512 if (one_of(option
, "--term-good", "--term-old", NULL
))
513 printf("%s\n", terms
->term_good
);
514 else if (one_of(option
, "--term-bad", "--term-new", NULL
))
515 printf("%s\n", terms
->term_bad
);
517 return error(_("invalid argument %s for 'git bisect terms'.\n"
518 "Supported options are: "
519 "--term-good|--term-old and "
520 "--term-bad|--term-new."), option
);
525 static int bisect_append_log_quoted(const char **argv
)
528 FILE *fp
= fopen(git_path_bisect_log(), "a");
529 struct strbuf orig_args
= STRBUF_INIT
;
534 if (fprintf(fp
, "git bisect start") < 1) {
539 sq_quote_argv(&orig_args
, argv
);
540 if (fprintf(fp
, "%s\n", orig_args
.buf
) < 1)
545 strbuf_release(&orig_args
);
549 static int add_bisect_ref(const char *refname
, const struct object_id
*oid
,
550 int flags UNUSED
, void *cb
)
552 struct add_bisect_ref_data
*data
= cb
;
554 add_pending_oid(data
->revs
, refname
, oid
, data
->object_flags
);
559 static int prepare_revs(struct bisect_terms
*terms
, struct rev_info
*revs
)
562 struct add_bisect_ref_data cb
= { revs
};
563 char *good
= xstrfmt("%s-*", terms
->term_good
);
566 * We cannot use terms->term_bad directly in
567 * for_each_glob_ref_in() and we have to append a '*' to it,
568 * otherwise for_each_glob_ref_in() will append '/' and '*'.
570 char *bad
= xstrfmt("%s*", terms
->term_bad
);
573 * It is important to reset the flags used by revision walks
574 * as the previous call to bisect_next_all() in turn
575 * sets up a revision walk.
577 reset_revision_walk();
578 repo_init_revisions(the_repository
, revs
, NULL
);
579 setup_revisions(0, NULL
, revs
, NULL
);
580 for_each_glob_ref_in(add_bisect_ref
, bad
, "refs/bisect/", &cb
);
581 cb
.object_flags
= UNINTERESTING
;
582 for_each_glob_ref_in(add_bisect_ref
, good
, "refs/bisect/", &cb
);
583 if (prepare_revision_walk(revs
))
584 res
= error(_("revision walk setup failed\n"));
591 static int bisect_skipped_commits(struct bisect_terms
*terms
)
595 struct rev_info revs
;
596 struct commit
*commit
;
597 struct pretty_print_context pp
= {0};
598 struct strbuf commit_name
= STRBUF_INIT
;
600 res
= prepare_revs(terms
, &revs
);
604 fp
= fopen(git_path_bisect_log(), "a");
606 return error_errno(_("could not open '%s' for appending"),
607 git_path_bisect_log());
609 if (fprintf(fp
, "# only skipped commits left to test\n") < 0)
610 return error_errno(_("failed to write to '%s'"), git_path_bisect_log());
612 while ((commit
= get_revision(&revs
)) != NULL
) {
613 strbuf_reset(&commit_name
);
614 repo_format_commit_message(the_repository
, commit
, "%s",
616 fprintf(fp
, "# possible first %s commit: [%s] %s\n",
617 terms
->term_bad
, oid_to_hex(&commit
->object
.oid
),
622 * Reset the flags used by revision walks in case
623 * there is another revision walk after this one.
625 reset_revision_walk();
627 strbuf_release(&commit_name
);
628 release_revisions(&revs
);
633 static int bisect_successful(struct bisect_terms
*terms
)
635 struct object_id oid
;
636 struct commit
*commit
;
637 struct pretty_print_context pp
= {0};
638 struct strbuf commit_name
= STRBUF_INIT
;
639 char *bad_ref
= xstrfmt("refs/bisect/%s",terms
->term_bad
);
642 read_ref(bad_ref
, &oid
);
643 commit
= lookup_commit_reference_by_name(bad_ref
);
644 repo_format_commit_message(the_repository
, commit
, "%s", &commit_name
,
647 res
= append_to_file(git_path_bisect_log(), "# first %s commit: [%s] %s\n",
648 terms
->term_bad
, oid_to_hex(&commit
->object
.oid
),
651 strbuf_release(&commit_name
);
656 static enum bisect_error
bisect_next(struct bisect_terms
*terms
, const char *prefix
)
658 enum bisect_error res
;
660 if (bisect_autostart(terms
))
661 return BISECT_FAILED
;
663 if (bisect_next_check(terms
, terms
->term_good
))
664 return BISECT_FAILED
;
666 /* Perform all bisection computation */
667 res
= bisect_next_all(the_repository
, prefix
);
669 if (res
== BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND
) {
670 res
= bisect_successful(terms
);
671 return res
? res
: BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND
;
672 } else if (res
== BISECT_ONLY_SKIPPED_LEFT
) {
673 res
= bisect_skipped_commits(terms
);
674 return res
? res
: BISECT_ONLY_SKIPPED_LEFT
;
679 static enum bisect_error
bisect_auto_next(struct bisect_terms
*terms
, const char *prefix
)
681 if (bisect_next_check(terms
, NULL
)) {
682 bisect_print_status(terms
);
686 return bisect_next(terms
, prefix
);
689 static enum bisect_error
bisect_start(struct bisect_terms
*terms
, int argc
,
693 int first_parent_only
= 0;
694 int i
, has_double_dash
= 0, must_write_terms
= 0, bad_seen
= 0;
695 int flags
, pathspec_pos
;
696 enum bisect_error res
= BISECT_OK
;
697 struct string_list revs
= STRING_LIST_INIT_DUP
;
698 struct string_list states
= STRING_LIST_INIT_DUP
;
699 struct strbuf start_head
= STRBUF_INIT
;
700 struct strbuf bisect_names
= STRBUF_INIT
;
701 struct object_id head_oid
;
702 struct object_id oid
;
705 if (is_bare_repository())
709 * Check for one bad and then some good revisions
711 for (i
= 0; i
< argc
; i
++) {
712 if (!strcmp(argv
[i
], "--")) {
718 for (i
= 0; i
< argc
; i
++) {
719 const char *arg
= argv
[i
];
720 if (!strcmp(argv
[i
], "--")) {
722 } else if (!strcmp(arg
, "--no-checkout")) {
724 } else if (!strcmp(arg
, "--first-parent")) {
725 first_parent_only
= 1;
726 } else if (!strcmp(arg
, "--term-good") ||
727 !strcmp(arg
, "--term-old")) {
730 return error(_("'' is not a valid term"));
731 must_write_terms
= 1;
732 free((void *) terms
->term_good
);
733 terms
->term_good
= xstrdup(argv
[i
]);
734 } else if (skip_prefix(arg
, "--term-good=", &arg
) ||
735 skip_prefix(arg
, "--term-old=", &arg
)) {
736 must_write_terms
= 1;
737 free((void *) terms
->term_good
);
738 terms
->term_good
= xstrdup(arg
);
739 } else if (!strcmp(arg
, "--term-bad") ||
740 !strcmp(arg
, "--term-new")) {
743 return error(_("'' is not a valid term"));
744 must_write_terms
= 1;
745 free((void *) terms
->term_bad
);
746 terms
->term_bad
= xstrdup(argv
[i
]);
747 } else if (skip_prefix(arg
, "--term-bad=", &arg
) ||
748 skip_prefix(arg
, "--term-new=", &arg
)) {
749 must_write_terms
= 1;
750 free((void *) terms
->term_bad
);
751 terms
->term_bad
= xstrdup(arg
);
752 } else if (starts_with(arg
, "--")) {
753 return error(_("unrecognized option: '%s'"), arg
);
754 } else if (!get_oidf(&oid
, "%s^{commit}", arg
)) {
755 string_list_append(&revs
, oid_to_hex(&oid
));
756 } else if (has_double_dash
) {
757 die(_("'%s' does not appear to be a valid "
766 * The user ran "git bisect start <sha1> <sha1>", hence did not
767 * explicitly specify the terms, but we are already starting to
768 * set references named with the default terms, and won't be able
769 * to change afterwards.
772 must_write_terms
= 1;
773 for (i
= 0; i
< revs
.nr
; i
++) {
775 string_list_append(&states
, terms
->term_good
);
778 string_list_append(&states
, terms
->term_bad
);
785 head
= resolve_ref_unsafe("HEAD", 0, &head_oid
, &flags
);
787 if (repo_get_oid(the_repository
, "HEAD", &head_oid
))
788 return error(_("bad HEAD - I need a HEAD"));
791 * Check if we are bisecting
793 if (!is_empty_or_missing_file(git_path_bisect_start())) {
794 /* Reset to the rev from where we started */
795 strbuf_read_file(&start_head
, git_path_bisect_start(), 0);
796 strbuf_trim(&start_head
);
798 struct child_process cmd
= CHILD_PROCESS_INIT
;
801 strvec_pushl(&cmd
.args
, "checkout", start_head
.buf
,
803 if (run_command(&cmd
)) {
804 res
= error(_("checking out '%s' failed."
805 " Try 'git bisect start "
812 /* Get the rev from where we start. */
813 if (!repo_get_oid(the_repository
, head
, &head_oid
) &&
814 !starts_with(head
, "refs/heads/")) {
815 strbuf_reset(&start_head
);
816 strbuf_addstr(&start_head
, oid_to_hex(&head_oid
));
817 } else if (!repo_get_oid(the_repository
, head
, &head_oid
) &&
818 skip_prefix(head
, "refs/heads/", &head
)) {
819 strbuf_addstr(&start_head
, head
);
821 return error(_("bad HEAD - strange symbolic ref"));
826 * Get rid of any old bisect state.
828 if (bisect_clean_state())
829 return BISECT_FAILED
;
832 * Write new start state
834 write_file(git_path_bisect_start(), "%s\n", start_head
.buf
);
836 if (first_parent_only
)
837 write_file(git_path_bisect_first_parent(), "\n");
840 if (repo_get_oid(the_repository
, start_head
.buf
, &oid
) < 0) {
841 res
= error(_("invalid ref: '%s'"), start_head
.buf
);
844 if (update_ref(NULL
, "BISECT_HEAD", &oid
, NULL
, 0,
845 UPDATE_REFS_MSG_ON_ERR
)) {
851 if (pathspec_pos
< argc
- 1)
852 sq_quote_argv(&bisect_names
, argv
+ pathspec_pos
);
853 write_file(git_path_bisect_names(), "%s\n", bisect_names
.buf
);
855 for (i
= 0; i
< states
.nr
; i
++)
856 if (bisect_write(states
.items
[i
].string
,
857 revs
.items
[i
].string
, terms
, 1)) {
862 if (must_write_terms
&& write_terms(terms
->term_bad
,
868 res
= bisect_append_log_quoted(argv
);
873 string_list_clear(&revs
, 0);
874 string_list_clear(&states
, 0);
875 strbuf_release(&start_head
);
876 strbuf_release(&bisect_names
);
880 res
= bisect_auto_next(terms
, NULL
);
881 if (!is_bisect_success(res
))
882 bisect_clean_state();
886 static inline int file_is_not_empty(const char *path
)
888 return !is_empty_or_missing_file(path
);
891 static int bisect_autostart(struct bisect_terms
*terms
)
896 if (file_is_not_empty(git_path_bisect_start()))
899 fprintf_ln(stderr
, _("You need to start by \"git bisect "
902 if (!isatty(STDIN_FILENO
))
906 * TRANSLATORS: Make sure to include [Y] and [n] in your
907 * translation. The program will only accept English input
910 yesno
= git_prompt(_("Do you want me to do it for you "
911 "[Y/n]? "), PROMPT_ECHO
);
912 res
= tolower(*yesno
) == 'n' ?
913 -1 : bisect_start(terms
, 0, empty_strvec
);
918 static enum bisect_error
bisect_state(struct bisect_terms
*terms
, int argc
,
922 int i
, verify_expected
= 1;
923 struct object_id oid
, expected
;
924 struct strbuf buf
= STRBUF_INIT
;
925 struct oid_array revs
= OID_ARRAY_INIT
;
928 return error(_("Please call `--bisect-state` with at least one argument"));
930 if (bisect_autostart(terms
))
931 return BISECT_FAILED
;
934 if (check_and_set_terms(terms
, state
) ||
935 !one_of(state
, terms
->term_good
, terms
->term_bad
, "skip", NULL
))
936 return BISECT_FAILED
;
940 if (argc
> 1 && !strcmp(state
, terms
->term_bad
))
941 return error(_("'git bisect %s' can take only one argument."), terms
->term_bad
);
944 const char *head
= "BISECT_HEAD";
945 enum get_oid_result res_head
= repo_get_oid(the_repository
,
948 if (res_head
== MISSING_OBJECT
) {
950 res_head
= repo_get_oid(the_repository
, head
, &oid
);
954 error(_("Bad rev input: %s"), head
);
955 oid_array_append(&revs
, &oid
);
959 * All input revs must be checked before executing bisect_write()
960 * to discard junk revs.
963 for (; argc
; argc
--, argv
++) {
964 struct commit
*commit
;
966 if (repo_get_oid(the_repository
, *argv
, &oid
)){
967 error(_("Bad rev input: %s"), *argv
);
968 oid_array_clear(&revs
);
969 return BISECT_FAILED
;
972 commit
= lookup_commit_reference(the_repository
, &oid
);
974 die(_("Bad rev input (not a commit): %s"), *argv
);
976 oid_array_append(&revs
, &commit
->object
.oid
);
979 if (strbuf_read_file(&buf
, git_path_bisect_expected_rev(), 0) < the_hash_algo
->hexsz
||
980 get_oid_hex(buf
.buf
, &expected
) < 0)
981 verify_expected
= 0; /* Ignore invalid file contents */
982 strbuf_release(&buf
);
984 for (i
= 0; i
< revs
.nr
; i
++) {
985 if (bisect_write(state
, oid_to_hex(&revs
.oid
[i
]), terms
, 0)) {
986 oid_array_clear(&revs
);
987 return BISECT_FAILED
;
989 if (verify_expected
&& !oideq(&revs
.oid
[i
], &expected
)) {
990 unlink_or_warn(git_path_bisect_ancestors_ok());
991 unlink_or_warn(git_path_bisect_expected_rev());
996 oid_array_clear(&revs
);
997 return bisect_auto_next(terms
, NULL
);
1000 static enum bisect_error
bisect_log(void)
1003 const char* filename
= git_path_bisect_log();
1005 if (is_empty_or_missing_file(filename
))
1006 return error(_("We are not bisecting."));
1008 fd
= open(filename
, O_RDONLY
);
1010 return BISECT_FAILED
;
1012 status
= copy_fd(fd
, STDOUT_FILENO
);
1014 return status
? BISECT_FAILED
: BISECT_OK
;
1017 static int process_replay_line(struct bisect_terms
*terms
, struct strbuf
*line
)
1019 const char *p
= line
->buf
+ strspn(line
->buf
, " \t");
1020 char *word_end
, *rev
;
1022 if ((!skip_prefix(p
, "git bisect", &p
) &&
1023 !skip_prefix(p
, "git-bisect", &p
)) || !isspace(*p
))
1025 p
+= strspn(p
, " \t");
1027 word_end
= (char *)p
+ strcspn(p
, " \t");
1028 rev
= word_end
+ strspn(word_end
, " \t");
1029 *word_end
= '\0'; /* NUL-terminate the word */
1032 if (check_and_set_terms(terms
, p
))
1035 if (!strcmp(p
, "start")) {
1036 struct strvec argv
= STRVEC_INIT
;
1038 sq_dequote_to_strvec(rev
, &argv
);
1039 res
= bisect_start(terms
, argv
.nr
, argv
.v
);
1040 strvec_clear(&argv
);
1044 if (one_of(p
, terms
->term_good
,
1045 terms
->term_bad
, "skip", NULL
))
1046 return bisect_write(p
, rev
, terms
, 0);
1048 if (!strcmp(p
, "terms")) {
1049 struct strvec argv
= STRVEC_INIT
;
1051 sq_dequote_to_strvec(rev
, &argv
);
1052 res
= bisect_terms(terms
, argv
.nr
== 1 ? argv
.v
[0] : NULL
);
1053 strvec_clear(&argv
);
1056 error(_("'%s'?? what are you talking about?"), p
);
1061 static enum bisect_error
bisect_replay(struct bisect_terms
*terms
, const char *filename
)
1064 enum bisect_error res
= BISECT_OK
;
1065 struct strbuf line
= STRBUF_INIT
;
1067 if (is_empty_or_missing_file(filename
))
1068 return error(_("cannot read file '%s' for replaying"), filename
);
1070 if (bisect_reset(NULL
))
1071 return BISECT_FAILED
;
1073 fp
= fopen(filename
, "r");
1075 return BISECT_FAILED
;
1077 while ((strbuf_getline(&line
, fp
) != EOF
) && !res
)
1078 res
= process_replay_line(terms
, &line
);
1080 strbuf_release(&line
);
1084 return BISECT_FAILED
;
1086 return bisect_auto_next(terms
, NULL
);
1089 static enum bisect_error
bisect_skip(struct bisect_terms
*terms
, int argc
,
1093 enum bisect_error res
;
1094 struct strvec argv_state
= STRVEC_INIT
;
1096 strvec_push(&argv_state
, "skip");
1098 for (i
= 0; i
< argc
; i
++) {
1099 const char *dotdot
= strstr(argv
[i
], "..");
1102 struct rev_info revs
;
1103 struct commit
*commit
;
1105 repo_init_revisions(the_repository
, &revs
, NULL
);
1106 setup_revisions(2, argv
+ i
- 1, &revs
, NULL
);
1108 if (prepare_revision_walk(&revs
))
1109 die(_("revision walk setup failed\n"));
1110 while ((commit
= get_revision(&revs
)) != NULL
)
1111 strvec_push(&argv_state
,
1112 oid_to_hex(&commit
->object
.oid
));
1114 reset_revision_walk();
1115 release_revisions(&revs
);
1117 strvec_push(&argv_state
, argv
[i
]);
1120 res
= bisect_state(terms
, argv_state
.nr
, argv_state
.v
);
1122 strvec_clear(&argv_state
);
1126 static int bisect_visualize(struct bisect_terms
*terms
, int argc
,
1129 struct child_process cmd
= CHILD_PROCESS_INIT
;
1130 struct strbuf sb
= STRBUF_INIT
;
1132 if (bisect_next_check(terms
, NULL
) != 0)
1133 return BISECT_FAILED
;
1137 if ((getenv("DISPLAY") || getenv("SESSIONNAME") || getenv("MSYSTEM") ||
1138 getenv("SECURITYSESSIONID")) && exists_in_PATH("gitk")) {
1139 strvec_push(&cmd
.args
, "gitk");
1141 strvec_push(&cmd
.args
, "log");
1145 if (argv
[0][0] == '-') {
1146 strvec_push(&cmd
.args
, "log");
1148 } else if (strcmp(argv
[0], "tig") && !starts_with(argv
[0], "git"))
1151 strvec_pushv(&cmd
.args
, argv
);
1154 strvec_pushl(&cmd
.args
, "--bisect", "--", NULL
);
1156 strbuf_read_file(&sb
, git_path_bisect_names(), 0);
1157 sq_dequote_to_strvec(sb
.buf
, &cmd
.args
);
1158 strbuf_release(&sb
);
1160 return run_command(&cmd
);
1163 static int get_first_good(const char *refname UNUSED
,
1164 const struct object_id
*oid
,
1165 int flag UNUSED
, void *cb_data
)
1167 oidcpy(cb_data
, oid
);
1171 static int do_bisect_run(const char *command
)
1173 struct child_process cmd
= CHILD_PROCESS_INIT
;
1175 printf(_("running %s\n"), command
);
1177 strvec_push(&cmd
.args
, command
);
1178 return run_command(&cmd
);
1181 static int verify_good(const struct bisect_terms
*terms
, const char *command
)
1184 enum bisect_error res
;
1185 struct object_id good_rev
;
1186 struct object_id current_rev
;
1187 char *good_glob
= xstrfmt("%s-*", terms
->term_good
);
1188 int no_checkout
= ref_exists("BISECT_HEAD");
1190 for_each_glob_ref_in(get_first_good
, good_glob
, "refs/bisect/",
1194 if (read_ref(no_checkout
? "BISECT_HEAD" : "HEAD", ¤t_rev
))
1197 res
= bisect_checkout(&good_rev
, no_checkout
);
1198 if (res
!= BISECT_OK
)
1201 rc
= do_bisect_run(command
);
1203 res
= bisect_checkout(¤t_rev
, no_checkout
);
1204 if (res
!= BISECT_OK
)
1210 static int bisect_run(struct bisect_terms
*terms
, int argc
, const char **argv
)
1212 int res
= BISECT_OK
;
1213 struct strbuf command
= STRBUF_INIT
;
1214 const char *new_state
;
1215 int temporary_stdout_fd
, saved_stdout
;
1216 int is_first_run
= 1;
1218 if (bisect_next_check(terms
, NULL
))
1219 return BISECT_FAILED
;
1222 error(_("bisect run failed: no command provided."));
1223 return BISECT_FAILED
;
1226 sq_quote_argv(&command
, argv
);
1227 strbuf_ltrim(&command
);
1229 res
= do_bisect_run(command
.buf
);
1232 * Exit code 126 and 127 can either come from the shell
1233 * if it was unable to execute or even find the script,
1234 * or from the script itself. Check with a known-good
1235 * revision to avoid trashing the bisect run due to a
1236 * missing or non-executable script.
1238 if (is_first_run
&& (res
== 126 || res
== 127)) {
1239 int rc
= verify_good(terms
, command
.buf
);
1241 if (rc
< 0 || 128 <= rc
) {
1242 error(_("unable to verify %s on good"
1243 " revision"), command
.buf
);
1244 res
= BISECT_FAILED
;
1248 error(_("bogus exit code %d for good revision"),
1250 res
= BISECT_FAILED
;
1255 if (res
< 0 || 128 <= res
) {
1256 error(_("bisect run failed: exit code %d from"
1257 " %s is < 0 or >= 128"), res
, command
.buf
);
1264 new_state
= terms
->term_good
;
1266 new_state
= terms
->term_bad
;
1268 temporary_stdout_fd
= open(git_path_bisect_run(), O_CREAT
| O_WRONLY
| O_TRUNC
, 0666);
1270 if (temporary_stdout_fd
< 0) {
1271 res
= error_errno(_("cannot open file '%s' for writing"), git_path_bisect_run());
1276 saved_stdout
= dup(1);
1277 dup2(temporary_stdout_fd
, 1);
1279 res
= bisect_state(terms
, 1, &new_state
);
1282 dup2(saved_stdout
, 1);
1283 close(saved_stdout
);
1284 close(temporary_stdout_fd
);
1286 print_file_to_stdout(git_path_bisect_run());
1288 if (res
== BISECT_ONLY_SKIPPED_LEFT
)
1289 error(_("bisect run cannot continue any more"));
1290 else if (res
== BISECT_INTERNAL_SUCCESS_MERGE_BASE
) {
1291 puts(_("bisect run success"));
1293 } else if (res
== BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND
) {
1294 puts(_("bisect found first bad commit"));
1297 error(_("bisect run failed: 'git bisect %s'"
1298 " exited with error code %d"), new_state
, res
);
1305 strbuf_release(&command
);
1309 static int cmd_bisect__reset(int argc
, const char **argv
, const char *prefix UNUSED
)
1312 return error(_("'%s' requires either no argument or a commit"),
1313 "git bisect reset");
1314 return bisect_reset(argc
? argv
[0] : NULL
);
1317 static int cmd_bisect__terms(int argc
, const char **argv
, const char *prefix UNUSED
)
1320 struct bisect_terms terms
= { 0 };
1323 return error(_("'%s' requires 0 or 1 argument"),
1324 "git bisect terms");
1325 res
= bisect_terms(&terms
, argc
== 1 ? argv
[0] : NULL
);
1330 static int cmd_bisect__start(int argc
, const char **argv
, const char *prefix UNUSED
)
1333 struct bisect_terms terms
= { 0 };
1335 set_terms(&terms
, "bad", "good");
1336 res
= bisect_start(&terms
, argc
, argv
);
1341 static int cmd_bisect__next(int argc
, const char **argv UNUSED
, const char *prefix
)
1344 struct bisect_terms terms
= { 0 };
1347 return error(_("'%s' requires 0 arguments"),
1350 res
= bisect_next(&terms
, prefix
);
1355 static int cmd_bisect__log(int argc UNUSED
, const char **argv UNUSED
, const char *prefix UNUSED
)
1357 return bisect_log();
1360 static int cmd_bisect__replay(int argc
, const char **argv
, const char *prefix UNUSED
)
1363 struct bisect_terms terms
= { 0 };
1366 return error(_("no logfile given"));
1367 set_terms(&terms
, "bad", "good");
1368 res
= bisect_replay(&terms
, argv
[0]);
1373 static int cmd_bisect__skip(int argc
, const char **argv
, const char *prefix UNUSED
)
1376 struct bisect_terms terms
= { 0 };
1378 set_terms(&terms
, "bad", "good");
1380 res
= bisect_skip(&terms
, argc
, argv
);
1385 static int cmd_bisect__visualize(int argc
, const char **argv
, const char *prefix UNUSED
)
1388 struct bisect_terms terms
= { 0 };
1391 res
= bisect_visualize(&terms
, argc
, argv
);
1396 static int cmd_bisect__run(int argc
, const char **argv
, const char *prefix UNUSED
)
1399 struct bisect_terms terms
= { 0 };
1402 return error(_("'%s' failed: no command provided."), "git bisect run");
1404 res
= bisect_run(&terms
, argc
, argv
);
1409 int cmd_bisect(int argc
, const char **argv
, const char *prefix
)
1412 parse_opt_subcommand_fn
*fn
= NULL
;
1413 struct option options
[] = {
1414 OPT_SUBCOMMAND("reset", &fn
, cmd_bisect__reset
),
1415 OPT_SUBCOMMAND("terms", &fn
, cmd_bisect__terms
),
1416 OPT_SUBCOMMAND("start", &fn
, cmd_bisect__start
),
1417 OPT_SUBCOMMAND("next", &fn
, cmd_bisect__next
),
1418 OPT_SUBCOMMAND("log", &fn
, cmd_bisect__log
),
1419 OPT_SUBCOMMAND("replay", &fn
, cmd_bisect__replay
),
1420 OPT_SUBCOMMAND("skip", &fn
, cmd_bisect__skip
),
1421 OPT_SUBCOMMAND("visualize", &fn
, cmd_bisect__visualize
),
1422 OPT_SUBCOMMAND("view", &fn
, cmd_bisect__visualize
),
1423 OPT_SUBCOMMAND("run", &fn
, cmd_bisect__run
),
1426 argc
= parse_options(argc
, argv
, prefix
, options
, git_bisect_usage
,
1427 PARSE_OPT_SUBCOMMAND_OPTIONAL
);
1430 struct bisect_terms terms
= { 0 };
1433 usage_msg_opt(_("need a command"), git_bisect_usage
, options
);
1435 set_terms(&terms
, "bad", "good");
1437 if (check_and_set_terms(&terms
, argv
[0]))
1438 usage_msg_optf(_("unknown command: '%s'"), git_bisect_usage
,
1440 res
= bisect_state(&terms
, argc
, argv
);
1445 res
= fn(argc
, argv
, prefix
);
1448 return is_bisect_success(res
) ? 0 : -res
;