]> git.ipfire.org Git - thirdparty/git.git/blob - bisect.c
bisect: consistently write BISECT_EXPECTED_REV via the refdb
[thirdparty/git.git] / bisect.c
1 #include "git-compat-util.h"
2 #include "config.h"
3 #include "commit.h"
4 #include "diff.h"
5 #include "environment.h"
6 #include "gettext.h"
7 #include "hex.h"
8 #include "revision.h"
9 #include "refs.h"
10 #include "list-objects.h"
11 #include "quote.h"
12 #include "hash-lookup.h"
13 #include "run-command.h"
14 #include "log-tree.h"
15 #include "bisect.h"
16 #include "oid-array.h"
17 #include "strvec.h"
18 #include "commit-slab.h"
19 #include "commit-reach.h"
20 #include "object-name.h"
21 #include "object-store-ll.h"
22 #include "path.h"
23 #include "dir.h"
24
25 static struct oid_array good_revs;
26 static struct oid_array skipped_revs;
27
28 static struct object_id *current_bad_oid;
29
30 static const char *term_bad;
31 static const char *term_good;
32
33 /* Remember to update object flag allocation in object.h */
34 #define COUNTED (1u<<16)
35
36 /*
37 * This is a truly stupid algorithm, but it's only
38 * used for bisection, and we just don't care enough.
39 *
40 * We care just barely enough to avoid recursing for
41 * non-merge entries.
42 */
43 static int count_distance(struct commit_list *entry)
44 {
45 int nr = 0;
46
47 while (entry) {
48 struct commit *commit = entry->item;
49 struct commit_list *p;
50
51 if (commit->object.flags & (UNINTERESTING | COUNTED))
52 break;
53 if (!(commit->object.flags & TREESAME))
54 nr++;
55 commit->object.flags |= COUNTED;
56 p = commit->parents;
57 entry = p;
58 if (p) {
59 p = p->next;
60 while (p) {
61 nr += count_distance(p);
62 p = p->next;
63 }
64 }
65 }
66
67 return nr;
68 }
69
70 static void clear_distance(struct commit_list *list)
71 {
72 while (list) {
73 struct commit *commit = list->item;
74 commit->object.flags &= ~COUNTED;
75 list = list->next;
76 }
77 }
78
79 define_commit_slab(commit_weight, int *);
80 static struct commit_weight commit_weight;
81
82 #define DEBUG_BISECT 0
83
84 static inline int weight(struct commit_list *elem)
85 {
86 return **commit_weight_at(&commit_weight, elem->item);
87 }
88
89 static inline void weight_set(struct commit_list *elem, int weight)
90 {
91 **commit_weight_at(&commit_weight, elem->item) = weight;
92 }
93
94 static int count_interesting_parents(struct commit *commit, unsigned bisect_flags)
95 {
96 struct commit_list *p;
97 int count;
98
99 for (count = 0, p = commit->parents; p; p = p->next) {
100 if (!(p->item->object.flags & UNINTERESTING))
101 count++;
102 if (bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY)
103 break;
104 }
105 return count;
106 }
107
108 static inline int approx_halfway(struct commit_list *p, int nr)
109 {
110 int diff;
111
112 /*
113 * Don't short-cut something we are not going to return!
114 */
115 if (p->item->object.flags & TREESAME)
116 return 0;
117 if (DEBUG_BISECT)
118 return 0;
119 /*
120 * For small number of commits 2 and 3 are halfway of 5, and
121 * 3 is halfway of 6 but 2 and 4 are not.
122 */
123 diff = 2 * weight(p) - nr;
124 switch (diff) {
125 case -1: case 0: case 1:
126 return 1;
127 default:
128 /*
129 * For large number of commits we are not so strict, it's
130 * good enough if it's within ~0.1% of the halfway point,
131 * e.g. 5000 is exactly halfway of 10000, but we consider
132 * the values [4996, 5004] as halfway as well.
133 */
134 if (abs(diff) < nr / 1024)
135 return 1;
136 return 0;
137 }
138 }
139
140 static void show_list(const char *debug, int counted, int nr,
141 struct commit_list *list)
142 {
143 struct commit_list *p;
144
145 if (!DEBUG_BISECT)
146 return;
147
148 fprintf(stderr, "%s (%d/%d)\n", debug, counted, nr);
149
150 for (p = list; p; p = p->next) {
151 struct commit_list *pp;
152 struct commit *commit = p->item;
153 unsigned commit_flags = commit->object.flags;
154 enum object_type type;
155 unsigned long size;
156 char *buf = repo_read_object_file(the_repository,
157 &commit->object.oid, &type,
158 &size);
159 const char *subject_start;
160 int subject_len;
161
162 fprintf(stderr, "%c%c%c ",
163 (commit_flags & TREESAME) ? ' ' : 'T',
164 (commit_flags & UNINTERESTING) ? 'U' : ' ',
165 (commit_flags & COUNTED) ? 'C' : ' ');
166 if (*commit_weight_at(&commit_weight, p->item))
167 fprintf(stderr, "%3d", weight(p));
168 else
169 fprintf(stderr, "---");
170 fprintf(stderr, " %.*s", 8, oid_to_hex(&commit->object.oid));
171 for (pp = commit->parents; pp; pp = pp->next)
172 fprintf(stderr, " %.*s", 8,
173 oid_to_hex(&pp->item->object.oid));
174
175 subject_len = find_commit_subject(buf, &subject_start);
176 if (subject_len)
177 fprintf(stderr, " %.*s", subject_len, subject_start);
178 fprintf(stderr, "\n");
179 }
180 }
181
182 static struct commit_list *best_bisection(struct commit_list *list, int nr)
183 {
184 struct commit_list *p, *best;
185 int best_distance = -1;
186
187 best = list;
188 for (p = list; p; p = p->next) {
189 int distance;
190 unsigned commit_flags = p->item->object.flags;
191
192 if (commit_flags & TREESAME)
193 continue;
194 distance = weight(p);
195 if (nr - distance < distance)
196 distance = nr - distance;
197 if (distance > best_distance) {
198 best = p;
199 best_distance = distance;
200 }
201 }
202
203 return best;
204 }
205
206 struct commit_dist {
207 struct commit *commit;
208 int distance;
209 };
210
211 static int compare_commit_dist(const void *a_, const void *b_)
212 {
213 struct commit_dist *a, *b;
214
215 a = (struct commit_dist *)a_;
216 b = (struct commit_dist *)b_;
217 if (a->distance != b->distance)
218 return b->distance - a->distance; /* desc sort */
219 return oidcmp(&a->commit->object.oid, &b->commit->object.oid);
220 }
221
222 static struct commit_list *best_bisection_sorted(struct commit_list *list, int nr)
223 {
224 struct commit_list *p;
225 struct commit_dist *array = xcalloc(nr, sizeof(*array));
226 struct strbuf buf = STRBUF_INIT;
227 int cnt, i;
228
229 for (p = list, cnt = 0; p; p = p->next) {
230 int distance;
231 unsigned commit_flags = p->item->object.flags;
232
233 if (commit_flags & TREESAME)
234 continue;
235 distance = weight(p);
236 if (nr - distance < distance)
237 distance = nr - distance;
238 array[cnt].commit = p->item;
239 array[cnt].distance = distance;
240 cnt++;
241 }
242 QSORT(array, cnt, compare_commit_dist);
243 for (p = list, i = 0; i < cnt; i++) {
244 struct object *obj = &(array[i].commit->object);
245
246 strbuf_reset(&buf);
247 strbuf_addf(&buf, "dist=%d", array[i].distance);
248 add_name_decoration(DECORATION_NONE, buf.buf, obj);
249
250 p->item = array[i].commit;
251 if (i < cnt - 1)
252 p = p->next;
253 }
254 if (p) {
255 free_commit_list(p->next);
256 p->next = NULL;
257 }
258 strbuf_release(&buf);
259 free(array);
260 return list;
261 }
262
263 /*
264 * zero or positive weight is the number of interesting commits it can
265 * reach, including itself. Especially, weight = 0 means it does not
266 * reach any tree-changing commits (e.g. just above uninteresting one
267 * but traversal is with pathspec).
268 *
269 * weight = -1 means it has one parent and its distance is yet to
270 * be computed.
271 *
272 * weight = -2 means it has more than one parent and its distance is
273 * unknown. After running count_distance() first, they will get zero
274 * or positive distance.
275 */
276 static struct commit_list *do_find_bisection(struct commit_list *list,
277 int nr, int *weights,
278 unsigned bisect_flags)
279 {
280 int n, counted;
281 struct commit_list *p;
282
283 counted = 0;
284
285 for (n = 0, p = list; p; p = p->next) {
286 struct commit *commit = p->item;
287 unsigned commit_flags = commit->object.flags;
288
289 *commit_weight_at(&commit_weight, p->item) = &weights[n++];
290 switch (count_interesting_parents(commit, bisect_flags)) {
291 case 0:
292 if (!(commit_flags & TREESAME)) {
293 weight_set(p, 1);
294 counted++;
295 show_list("bisection 2 count one",
296 counted, nr, list);
297 }
298 /*
299 * otherwise, it is known not to reach any
300 * tree-changing commit and gets weight 0.
301 */
302 break;
303 case 1:
304 weight_set(p, -1);
305 break;
306 default:
307 weight_set(p, -2);
308 break;
309 }
310 }
311
312 show_list("bisection 2 initialize", counted, nr, list);
313
314 /*
315 * If you have only one parent in the resulting set
316 * then you can reach one commit more than that parent
317 * can reach. So we do not have to run the expensive
318 * count_distance() for single strand of pearls.
319 *
320 * However, if you have more than one parents, you cannot
321 * just add their distance and one for yourself, since
322 * they usually reach the same ancestor and you would
323 * end up counting them twice that way.
324 *
325 * So we will first count distance of merges the usual
326 * way, and then fill the blanks using cheaper algorithm.
327 */
328 for (p = list; p; p = p->next) {
329 if (p->item->object.flags & UNINTERESTING)
330 continue;
331 if (weight(p) != -2)
332 continue;
333 if (bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY)
334 BUG("shouldn't be calling count-distance in fp mode");
335 weight_set(p, count_distance(p));
336 clear_distance(list);
337
338 /* Does it happen to be at half-way? */
339 if (!(bisect_flags & FIND_BISECTION_ALL) &&
340 approx_halfway(p, nr))
341 return p;
342 counted++;
343 }
344
345 show_list("bisection 2 count_distance", counted, nr, list);
346
347 while (counted < nr) {
348 for (p = list; p; p = p->next) {
349 struct commit_list *q;
350 unsigned commit_flags = p->item->object.flags;
351
352 if (0 <= weight(p))
353 continue;
354
355 for (q = p->item->parents;
356 q;
357 q = bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY ? NULL : q->next) {
358 if (q->item->object.flags & UNINTERESTING)
359 continue;
360 if (0 <= weight(q))
361 break;
362 }
363 if (!q)
364 continue;
365
366 /*
367 * weight for p is unknown but q is known.
368 * add one for p itself if p is to be counted,
369 * otherwise inherit it from q directly.
370 */
371 if (!(commit_flags & TREESAME)) {
372 weight_set(p, weight(q)+1);
373 counted++;
374 show_list("bisection 2 count one",
375 counted, nr, list);
376 }
377 else
378 weight_set(p, weight(q));
379
380 /* Does it happen to be at half-way? */
381 if (!(bisect_flags & FIND_BISECTION_ALL) &&
382 approx_halfway(p, nr))
383 return p;
384 }
385 }
386
387 show_list("bisection 2 counted all", counted, nr, list);
388
389 if (!(bisect_flags & FIND_BISECTION_ALL))
390 return best_bisection(list, nr);
391 else
392 return best_bisection_sorted(list, nr);
393 }
394
395 void find_bisection(struct commit_list **commit_list, int *reaches,
396 int *all, unsigned bisect_flags)
397 {
398 int nr, on_list;
399 struct commit_list *list, *p, *best, *next, *last;
400 int *weights;
401
402 show_list("bisection 2 entry", 0, 0, *commit_list);
403 init_commit_weight(&commit_weight);
404
405 /*
406 * Count the number of total and tree-changing items on the
407 * list, while reversing the list.
408 */
409 for (nr = on_list = 0, last = NULL, p = *commit_list;
410 p;
411 p = next) {
412 unsigned commit_flags = p->item->object.flags;
413
414 next = p->next;
415 if (commit_flags & UNINTERESTING) {
416 free(p);
417 continue;
418 }
419 p->next = last;
420 last = p;
421 if (!(commit_flags & TREESAME))
422 nr++;
423 on_list++;
424 }
425 list = last;
426 show_list("bisection 2 sorted", 0, nr, list);
427
428 *all = nr;
429 CALLOC_ARRAY(weights, on_list);
430
431 /* Do the real work of finding bisection commit. */
432 best = do_find_bisection(list, nr, weights, bisect_flags);
433 if (best) {
434 if (!(bisect_flags & FIND_BISECTION_ALL)) {
435 list->item = best->item;
436 free_commit_list(list->next);
437 best = list;
438 best->next = NULL;
439 }
440 *reaches = weight(best);
441 }
442 free(weights);
443 *commit_list = best;
444 clear_commit_weight(&commit_weight);
445 }
446
447 static int register_ref(const char *refname, const struct object_id *oid,
448 int flags UNUSED, void *cb_data UNUSED)
449 {
450 struct strbuf good_prefix = STRBUF_INIT;
451 strbuf_addstr(&good_prefix, term_good);
452 strbuf_addstr(&good_prefix, "-");
453
454 if (!strcmp(refname, term_bad)) {
455 current_bad_oid = xmalloc(sizeof(*current_bad_oid));
456 oidcpy(current_bad_oid, oid);
457 } else if (starts_with(refname, good_prefix.buf)) {
458 oid_array_append(&good_revs, oid);
459 } else if (starts_with(refname, "skip-")) {
460 oid_array_append(&skipped_revs, oid);
461 }
462
463 strbuf_release(&good_prefix);
464
465 return 0;
466 }
467
468 static int read_bisect_refs(void)
469 {
470 return for_each_ref_in("refs/bisect/", register_ref, NULL);
471 }
472
473 static GIT_PATH_FUNC(git_path_bisect_names, "BISECT_NAMES")
474 static GIT_PATH_FUNC(git_path_bisect_ancestors_ok, "BISECT_ANCESTORS_OK")
475 static GIT_PATH_FUNC(git_path_bisect_run, "BISECT_RUN")
476 static GIT_PATH_FUNC(git_path_bisect_start, "BISECT_START")
477 static GIT_PATH_FUNC(git_path_bisect_log, "BISECT_LOG")
478 static GIT_PATH_FUNC(git_path_bisect_terms, "BISECT_TERMS")
479 static GIT_PATH_FUNC(git_path_bisect_first_parent, "BISECT_FIRST_PARENT")
480
481 static void read_bisect_paths(struct strvec *array)
482 {
483 struct strbuf str = STRBUF_INIT;
484 const char *filename = git_path_bisect_names();
485 FILE *fp = xfopen(filename, "r");
486
487 while (strbuf_getline_lf(&str, fp) != EOF) {
488 strbuf_trim(&str);
489 if (sq_dequote_to_strvec(str.buf, array))
490 die(_("Badly quoted content in file '%s': %s"),
491 filename, str.buf);
492 }
493
494 strbuf_release(&str);
495 fclose(fp);
496 }
497
498 static char *join_oid_array_hex(struct oid_array *array, char delim)
499 {
500 struct strbuf joined_hexs = STRBUF_INIT;
501 int i;
502
503 for (i = 0; i < array->nr; i++) {
504 strbuf_addstr(&joined_hexs, oid_to_hex(array->oid + i));
505 if (i + 1 < array->nr)
506 strbuf_addch(&joined_hexs, delim);
507 }
508
509 return strbuf_detach(&joined_hexs, NULL);
510 }
511
512 /*
513 * In this function, passing a not NULL skipped_first is very special.
514 * It means that we want to know if the first commit in the list is
515 * skipped because we will want to test a commit away from it if it is
516 * indeed skipped.
517 * So if the first commit is skipped, we cannot take the shortcut to
518 * just "return list" when we find the first non skipped commit, we
519 * have to return a fully filtered list.
520 *
521 * We use (*skipped_first == -1) to mean "it has been found that the
522 * first commit is not skipped". In this case *skipped_first is set back
523 * to 0 just before the function returns.
524 */
525 struct commit_list *filter_skipped(struct commit_list *list,
526 struct commit_list **tried,
527 int show_all,
528 int *count,
529 int *skipped_first)
530 {
531 struct commit_list *filtered = NULL, **f = &filtered;
532
533 *tried = NULL;
534
535 if (skipped_first)
536 *skipped_first = 0;
537 if (count)
538 *count = 0;
539
540 if (!skipped_revs.nr)
541 return list;
542
543 while (list) {
544 struct commit_list *next = list->next;
545 list->next = NULL;
546 if (0 <= oid_array_lookup(&skipped_revs, &list->item->object.oid)) {
547 if (skipped_first && !*skipped_first)
548 *skipped_first = 1;
549 /* Move current to tried list */
550 *tried = list;
551 tried = &list->next;
552 } else {
553 if (!show_all) {
554 if (!skipped_first || !*skipped_first)
555 return list;
556 } else if (skipped_first && !*skipped_first) {
557 /* This means we know it's not skipped */
558 *skipped_first = -1;
559 }
560 /* Move current to filtered list */
561 *f = list;
562 f = &list->next;
563 if (count)
564 (*count)++;
565 }
566 list = next;
567 }
568
569 if (skipped_first && *skipped_first == -1)
570 *skipped_first = 0;
571
572 return filtered;
573 }
574
575 #define PRN_MODULO 32768
576
577 /*
578 * This is a pseudo random number generator based on "man 3 rand".
579 * It is not used properly because the seed is the argument and it
580 * is increased by one between each call, but that should not matter
581 * for this application.
582 */
583 static unsigned get_prn(unsigned count)
584 {
585 count = count * 1103515245 + 12345;
586 return (count/65536) % PRN_MODULO;
587 }
588
589 /*
590 * Custom integer square root from
591 * https://en.wikipedia.org/wiki/Integer_square_root
592 */
593 static int sqrti(int val)
594 {
595 float d, x = val;
596
597 if (!val)
598 return 0;
599
600 do {
601 float y = (x + (float)val / x) / 2;
602 d = (y > x) ? y - x : x - y;
603 x = y;
604 } while (d >= 0.5);
605
606 return (int)x;
607 }
608
609 static struct commit_list *skip_away(struct commit_list *list, int count)
610 {
611 struct commit_list *cur, *previous;
612 int prn, index, i;
613
614 prn = get_prn(count);
615 index = (count * prn / PRN_MODULO) * sqrti(prn) / sqrti(PRN_MODULO);
616
617 cur = list;
618 previous = NULL;
619
620 for (i = 0; cur; cur = cur->next, i++) {
621 if (i == index) {
622 if (!oideq(&cur->item->object.oid, current_bad_oid))
623 return cur;
624 if (previous)
625 return previous;
626 return list;
627 }
628 previous = cur;
629 }
630
631 return list;
632 }
633
634 static struct commit_list *managed_skipped(struct commit_list *list,
635 struct commit_list **tried)
636 {
637 int count, skipped_first;
638
639 *tried = NULL;
640
641 if (!skipped_revs.nr)
642 return list;
643
644 list = filter_skipped(list, tried, 0, &count, &skipped_first);
645
646 if (!skipped_first)
647 return list;
648
649 return skip_away(list, count);
650 }
651
652 static void bisect_rev_setup(struct repository *r, struct rev_info *revs,
653 struct strvec *rev_argv,
654 const char *prefix,
655 const char *bad_format, const char *good_format,
656 int read_paths)
657 {
658 struct setup_revision_opt opt = {
659 .free_removed_argv_elements = 1,
660 };
661 int i;
662
663 repo_init_revisions(r, revs, prefix);
664 revs->abbrev = 0;
665 revs->commit_format = CMIT_FMT_UNSPECIFIED;
666
667 /* rev_argv.argv[0] will be ignored by setup_revisions */
668 strvec_push(rev_argv, "bisect_rev_setup");
669 strvec_pushf(rev_argv, bad_format, oid_to_hex(current_bad_oid));
670 for (i = 0; i < good_revs.nr; i++)
671 strvec_pushf(rev_argv, good_format,
672 oid_to_hex(good_revs.oid + i));
673 strvec_push(rev_argv, "--");
674 if (read_paths)
675 read_bisect_paths(rev_argv);
676
677 setup_revisions(rev_argv->nr, rev_argv->v, revs, &opt);
678 }
679
680 static void bisect_common(struct rev_info *revs)
681 {
682 if (prepare_revision_walk(revs))
683 die("revision walk setup failed");
684 if (revs->tree_objects)
685 mark_edges_uninteresting(revs, NULL, 0);
686 }
687
688 static enum bisect_error error_if_skipped_commits(struct commit_list *tried,
689 const struct object_id *bad)
690 {
691 if (!tried)
692 return BISECT_OK;
693
694 printf("There are only 'skip'ped commits left to test.\n"
695 "The first %s commit could be any of:\n", term_bad);
696
697 for ( ; tried; tried = tried->next)
698 printf("%s\n", oid_to_hex(&tried->item->object.oid));
699
700 if (bad)
701 printf("%s\n", oid_to_hex(bad));
702 printf(_("We cannot bisect more!\n"));
703
704 return BISECT_ONLY_SKIPPED_LEFT;
705 }
706
707 static int is_expected_rev(const struct object_id *oid)
708 {
709 struct object_id expected_oid;
710 if (read_ref("BISECT_EXPECTED_REV", &expected_oid))
711 return 0;
712 return oideq(oid, &expected_oid);
713 }
714
715 enum bisect_error bisect_checkout(const struct object_id *bisect_rev,
716 int no_checkout)
717 {
718 struct commit *commit;
719 struct pretty_print_context pp = {0};
720 struct strbuf commit_msg = STRBUF_INIT;
721
722 update_ref(NULL, "BISECT_EXPECTED_REV", bisect_rev, NULL, 0, UPDATE_REFS_DIE_ON_ERR);
723
724 if (no_checkout) {
725 update_ref(NULL, "BISECT_HEAD", bisect_rev, NULL, 0,
726 UPDATE_REFS_DIE_ON_ERR);
727 } else {
728 struct child_process cmd = CHILD_PROCESS_INIT;
729
730 cmd.git_cmd = 1;
731 strvec_pushl(&cmd.args, "checkout", "-q",
732 oid_to_hex(bisect_rev), "--", NULL);
733 if (run_command(&cmd))
734 /*
735 * Errors in `run_command()` itself, signaled by res < 0,
736 * and errors in the child process, signaled by res > 0
737 * can both be treated as regular BISECT_FAILED (-1).
738 */
739 return BISECT_FAILED;
740 }
741
742 commit = lookup_commit_reference(the_repository, bisect_rev);
743 repo_format_commit_message(the_repository, commit, "[%H] %s%n",
744 &commit_msg, &pp);
745 fputs(commit_msg.buf, stdout);
746 strbuf_release(&commit_msg);
747
748 return BISECT_OK;
749 }
750
751 static struct commit *get_commit_reference(struct repository *r,
752 const struct object_id *oid)
753 {
754 struct commit *c = lookup_commit_reference(r, oid);
755 if (!c)
756 die(_("Not a valid commit name %s"), oid_to_hex(oid));
757 return c;
758 }
759
760 static struct commit **get_bad_and_good_commits(struct repository *r,
761 int *rev_nr)
762 {
763 struct commit **rev;
764 int i, n = 0;
765
766 ALLOC_ARRAY(rev, 1 + good_revs.nr);
767 rev[n++] = get_commit_reference(r, current_bad_oid);
768 for (i = 0; i < good_revs.nr; i++)
769 rev[n++] = get_commit_reference(r, good_revs.oid + i);
770 *rev_nr = n;
771
772 return rev;
773 }
774
775 static enum bisect_error handle_bad_merge_base(void)
776 {
777 if (is_expected_rev(current_bad_oid)) {
778 char *bad_hex = oid_to_hex(current_bad_oid);
779 char *good_hex = join_oid_array_hex(&good_revs, ' ');
780 if (!strcmp(term_bad, "bad") && !strcmp(term_good, "good")) {
781 fprintf(stderr, _("The merge base %s is bad.\n"
782 "This means the bug has been fixed "
783 "between %s and [%s].\n"),
784 bad_hex, bad_hex, good_hex);
785 } else if (!strcmp(term_bad, "new") && !strcmp(term_good, "old")) {
786 fprintf(stderr, _("The merge base %s is new.\n"
787 "The property has changed "
788 "between %s and [%s].\n"),
789 bad_hex, bad_hex, good_hex);
790 } else {
791 fprintf(stderr, _("The merge base %s is %s.\n"
792 "This means the first '%s' commit is "
793 "between %s and [%s].\n"),
794 bad_hex, term_bad, term_good, bad_hex, good_hex);
795 }
796 return BISECT_MERGE_BASE_CHECK;
797 }
798
799 fprintf(stderr, _("Some %s revs are not ancestors of the %s rev.\n"
800 "git bisect cannot work properly in this case.\n"
801 "Maybe you mistook %s and %s revs?\n"),
802 term_good, term_bad, term_good, term_bad);
803 return BISECT_FAILED;
804 }
805
806 static void handle_skipped_merge_base(const struct object_id *mb)
807 {
808 char *mb_hex = oid_to_hex(mb);
809 char *bad_hex = oid_to_hex(current_bad_oid);
810 char *good_hex = join_oid_array_hex(&good_revs, ' ');
811
812 warning(_("the merge base between %s and [%s] "
813 "must be skipped.\n"
814 "So we cannot be sure the first %s commit is "
815 "between %s and %s.\n"
816 "We continue anyway."),
817 bad_hex, good_hex, term_bad, mb_hex, bad_hex);
818 free(good_hex);
819 }
820
821 /*
822 * "check_merge_bases" checks that merge bases are not "bad" (or "new").
823 *
824 * - If one is "bad" (or "new"), it means the user assumed something wrong
825 * and we must return error with a non 0 error code.
826 * - If one is "good" (or "old"), that's good, we have nothing to do.
827 * - If one is "skipped", we can't know but we should warn.
828 * - If we don't know, we should check it out and ask the user to test.
829 * - If a merge base must be tested, on success return
830 * BISECT_INTERNAL_SUCCESS_MERGE_BASE (-11) a special condition
831 * for early success, this will be converted back to 0 in
832 * check_good_are_ancestors_of_bad().
833 */
834 static enum bisect_error check_merge_bases(int rev_nr, struct commit **rev, int no_checkout)
835 {
836 enum bisect_error res = BISECT_OK;
837 struct commit_list *result;
838
839 result = repo_get_merge_bases_many(the_repository, rev[0], rev_nr - 1,
840 rev + 1);
841
842 for (; result; result = result->next) {
843 const struct object_id *mb = &result->item->object.oid;
844 if (oideq(mb, current_bad_oid)) {
845 res = handle_bad_merge_base();
846 break;
847 } else if (0 <= oid_array_lookup(&good_revs, mb)) {
848 continue;
849 } else if (0 <= oid_array_lookup(&skipped_revs, mb)) {
850 handle_skipped_merge_base(mb);
851 } else {
852 printf(_("Bisecting: a merge base must be tested\n"));
853 res = bisect_checkout(mb, no_checkout);
854 if (!res)
855 /* indicate early success */
856 res = BISECT_INTERNAL_SUCCESS_MERGE_BASE;
857 break;
858 }
859 }
860
861 free_commit_list(result);
862 return res;
863 }
864
865 static int check_ancestors(struct repository *r, int rev_nr,
866 struct commit **rev, const char *prefix)
867 {
868 struct strvec rev_argv = STRVEC_INIT;
869 struct rev_info revs;
870 int res;
871
872 bisect_rev_setup(r, &revs, &rev_argv, prefix, "^%s", "%s", 0);
873
874 bisect_common(&revs);
875 res = (revs.commits != NULL);
876
877 /* Clean up objects used, as they will be reused. */
878 clear_commit_marks_many(rev_nr, rev, ALL_REV_FLAGS);
879
880 release_revisions(&revs);
881 strvec_clear(&rev_argv);
882 return res;
883 }
884
885 /*
886 * "check_good_are_ancestors_of_bad" checks that all "good" revs are
887 * ancestor of the "bad" rev.
888 *
889 * If that's not the case, we need to check the merge bases.
890 * If a merge base must be tested by the user, its source code will be
891 * checked out to be tested by the user and we will return.
892 */
893
894 static enum bisect_error check_good_are_ancestors_of_bad(struct repository *r,
895 const char *prefix,
896 int no_checkout)
897 {
898 char *filename;
899 struct stat st;
900 int fd, rev_nr;
901 enum bisect_error res = BISECT_OK;
902 struct commit **rev;
903
904 if (!current_bad_oid)
905 return error(_("a %s revision is needed"), term_bad);
906
907 filename = git_pathdup("BISECT_ANCESTORS_OK");
908
909 /* Check if file BISECT_ANCESTORS_OK exists. */
910 if (!stat(filename, &st) && S_ISREG(st.st_mode))
911 goto done;
912
913 /* Bisecting with no good rev is ok. */
914 if (!good_revs.nr)
915 goto done;
916
917 /* Check if all good revs are ancestor of the bad rev. */
918
919 rev = get_bad_and_good_commits(r, &rev_nr);
920 if (check_ancestors(r, rev_nr, rev, prefix))
921 res = check_merge_bases(rev_nr, rev, no_checkout);
922 free(rev);
923
924 if (!res) {
925 /* Create file BISECT_ANCESTORS_OK. */
926 fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, 0600);
927 if (fd < 0)
928 /*
929 * BISECT_ANCESTORS_OK file is not absolutely necessary,
930 * the bisection process will continue at the next
931 * bisection step.
932 * So, just signal with a warning that something
933 * might be wrong.
934 */
935 warning_errno(_("could not create file '%s'"),
936 filename);
937 else
938 close(fd);
939 }
940 done:
941 free(filename);
942 return res;
943 }
944
945 /*
946 * This does "git diff-tree --pretty COMMIT" without one fork+exec.
947 */
948 static void show_diff_tree(struct repository *r,
949 const char *prefix,
950 struct commit *commit)
951 {
952 const char *argv[] = {
953 "diff-tree", "--pretty", "--stat", "--summary", "--cc", NULL
954 };
955 struct rev_info opt;
956
957 git_config(git_diff_ui_config, NULL);
958 repo_init_revisions(r, &opt, prefix);
959
960 setup_revisions(ARRAY_SIZE(argv) - 1, argv, &opt, NULL);
961 log_tree_commit(&opt, commit);
962 release_revisions(&opt);
963 }
964
965 /*
966 * The terms used for this bisect session are stored in BISECT_TERMS.
967 * We read them and store them to adapt the messages accordingly.
968 * Default is bad/good.
969 */
970 void read_bisect_terms(const char **read_bad, const char **read_good)
971 {
972 struct strbuf str = STRBUF_INIT;
973 const char *filename = git_path_bisect_terms();
974 FILE *fp = fopen(filename, "r");
975
976 if (!fp) {
977 if (errno == ENOENT) {
978 *read_bad = "bad";
979 *read_good = "good";
980 return;
981 } else {
982 die_errno(_("could not read file '%s'"), filename);
983 }
984 } else {
985 strbuf_getline_lf(&str, fp);
986 *read_bad = strbuf_detach(&str, NULL);
987 strbuf_getline_lf(&str, fp);
988 *read_good = strbuf_detach(&str, NULL);
989 }
990 strbuf_release(&str);
991 fclose(fp);
992 }
993
994 /*
995 * We use the convention that return BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND (-10) means
996 * the bisection process finished successfully.
997 * In this case the calling function or command should not turn a
998 * BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND return code into an error or a non zero exit code.
999 *
1000 * Checking BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND
1001 * in bisect_helper::bisect_next() and only transforming it to 0 at
1002 * the end of bisect_helper::cmd_bisect__helper() helps bypassing
1003 * all the code related to finding a commit to test.
1004 */
1005 enum bisect_error bisect_next_all(struct repository *r, const char *prefix)
1006 {
1007 struct strvec rev_argv = STRVEC_INIT;
1008 struct rev_info revs = REV_INFO_INIT;
1009 struct commit_list *tried;
1010 int reaches = 0, all = 0, nr, steps;
1011 enum bisect_error res = BISECT_OK;
1012 struct object_id *bisect_rev;
1013 char *steps_msg;
1014 /*
1015 * If no_checkout is non-zero, the bisection process does not
1016 * checkout the trial commit but instead simply updates BISECT_HEAD.
1017 */
1018 int no_checkout = ref_exists("BISECT_HEAD");
1019 unsigned bisect_flags = 0;
1020
1021 read_bisect_terms(&term_bad, &term_good);
1022 if (read_bisect_refs())
1023 die(_("reading bisect refs failed"));
1024
1025 if (file_exists(git_path_bisect_first_parent()))
1026 bisect_flags |= FIND_BISECTION_FIRST_PARENT_ONLY;
1027
1028 if (skipped_revs.nr)
1029 bisect_flags |= FIND_BISECTION_ALL;
1030
1031 res = check_good_are_ancestors_of_bad(r, prefix, no_checkout);
1032 if (res)
1033 goto cleanup;
1034
1035 bisect_rev_setup(r, &revs, &rev_argv, prefix, "%s", "^%s", 1);
1036
1037 revs.first_parent_only = !!(bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY);
1038 revs.limited = 1;
1039
1040 bisect_common(&revs);
1041
1042 find_bisection(&revs.commits, &reaches, &all, bisect_flags);
1043 revs.commits = managed_skipped(revs.commits, &tried);
1044
1045 if (!revs.commits) {
1046 /*
1047 * We should return error here only if the "bad"
1048 * commit is also a "skip" commit.
1049 */
1050 res = error_if_skipped_commits(tried, NULL);
1051 if (res < 0)
1052 goto cleanup;
1053 printf(_("%s was both %s and %s\n"),
1054 oid_to_hex(current_bad_oid),
1055 term_good,
1056 term_bad);
1057
1058 res = BISECT_FAILED;
1059 goto cleanup;
1060 }
1061
1062 if (!all) {
1063 fprintf(stderr, _("No testable commit found.\n"
1064 "Maybe you started with bad path arguments?\n"));
1065
1066 res = BISECT_NO_TESTABLE_COMMIT;
1067 goto cleanup;
1068 }
1069
1070 bisect_rev = &revs.commits->item->object.oid;
1071
1072 if (oideq(bisect_rev, current_bad_oid)) {
1073 res = error_if_skipped_commits(tried, current_bad_oid);
1074 if (res)
1075 return res;
1076 printf("%s is the first %s commit\n", oid_to_hex(bisect_rev),
1077 term_bad);
1078
1079 show_diff_tree(r, prefix, revs.commits->item);
1080 /*
1081 * This means the bisection process succeeded.
1082 * Using BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND (-10)
1083 * so that the call chain can simply check
1084 * for negative return values for early returns up
1085 * until the cmd_bisect__helper() caller.
1086 */
1087 res = BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND;
1088 goto cleanup;
1089 }
1090
1091 nr = all - reaches - 1;
1092 steps = estimate_bisect_steps(all);
1093
1094 steps_msg = xstrfmt(Q_("(roughly %d step)", "(roughly %d steps)",
1095 steps), steps);
1096 /*
1097 * TRANSLATORS: the last %s will be replaced with "(roughly %d
1098 * steps)" translation.
1099 */
1100 printf(Q_("Bisecting: %d revision left to test after this %s\n",
1101 "Bisecting: %d revisions left to test after this %s\n",
1102 nr), nr, steps_msg);
1103 free(steps_msg);
1104 /* Clean up objects used, as they will be reused. */
1105 repo_clear_commit_marks(r, ALL_REV_FLAGS);
1106
1107 res = bisect_checkout(bisect_rev, no_checkout);
1108 cleanup:
1109 release_revisions(&revs);
1110 strvec_clear(&rev_argv);
1111 return res;
1112 }
1113
1114 static inline int log2i(int n)
1115 {
1116 int log2 = 0;
1117
1118 for (; n > 1; n >>= 1)
1119 log2++;
1120
1121 return log2;
1122 }
1123
1124 static inline int exp2i(int n)
1125 {
1126 return 1 << n;
1127 }
1128
1129 /*
1130 * Estimate the number of bisect steps left (after the current step)
1131 *
1132 * For any x between 0 included and 2^n excluded, the probability for
1133 * n - 1 steps left looks like:
1134 *
1135 * P(2^n + x) == (2^n - x) / (2^n + x)
1136 *
1137 * and P(2^n + x) < 0.5 means 2^n < 3x
1138 */
1139 int estimate_bisect_steps(int all)
1140 {
1141 int n, x, e;
1142
1143 if (all < 3)
1144 return 0;
1145
1146 n = log2i(all);
1147 e = exp2i(n);
1148 x = all - e;
1149
1150 return (e < 3 * x) ? n : n - 1;
1151 }
1152
1153 static int mark_for_removal(const char *refname,
1154 const struct object_id *oid UNUSED,
1155 int flag UNUSED, void *cb_data)
1156 {
1157 struct string_list *refs = cb_data;
1158 char *ref = xstrfmt("refs/bisect%s", refname);
1159 string_list_append(refs, ref);
1160 return 0;
1161 }
1162
1163 int bisect_clean_state(void)
1164 {
1165 int result = 0;
1166
1167 /* There may be some refs packed during bisection */
1168 struct string_list refs_for_removal = STRING_LIST_INIT_NODUP;
1169 for_each_ref_in("refs/bisect", mark_for_removal, (void *) &refs_for_removal);
1170 string_list_append(&refs_for_removal, xstrdup("BISECT_HEAD"));
1171 string_list_append(&refs_for_removal, xstrdup("BISECT_EXPECTED_REV"));
1172 result = delete_refs("bisect: remove", &refs_for_removal, REF_NO_DEREF);
1173 refs_for_removal.strdup_strings = 1;
1174 string_list_clear(&refs_for_removal, 0);
1175 unlink_or_warn(git_path_bisect_ancestors_ok());
1176 unlink_or_warn(git_path_bisect_log());
1177 unlink_or_warn(git_path_bisect_names());
1178 unlink_or_warn(git_path_bisect_run());
1179 unlink_or_warn(git_path_bisect_terms());
1180 unlink_or_warn(git_path_bisect_first_parent());
1181 /*
1182 * Cleanup BISECT_START last to support the --no-checkout option
1183 * introduced in the commit 4796e823a.
1184 */
1185 unlink_or_warn(git_path_bisect_start());
1186
1187 return result;
1188 }