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