]> git.ipfire.org Git - thirdparty/git.git/blame - bisect.c
log: refactor "rev.pending" code in cmd_show()
[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"
5#include "revision.h"
1bf072e3
CC
6#include "refs.h"
7#include "list-objects.h"
3b437b0d 8#include "quote.h"
bc626927 9#include "hash-lookup.h"
ef24c7ca 10#include "run-command.h"
e22278c0 11#include "log-tree.h"
a2ad79ce 12#include "bisect.h"
fe299ec5 13#include "oid-array.h"
dbbcd44f 14#include "strvec.h"
bb408ac9 15#include "commit-slab.h"
64043556 16#include "commit-reach.h"
b0eb92bb 17#include "object-store.h"
e8861ffc 18#include "dir.h"
6212b1aa 19
910650d2 20static struct oid_array good_revs;
21static struct oid_array skipped_revs;
1bf072e3 22
3c5ff995 23static struct object_id *current_bad_oid;
ef24c7ca 24
ef24c7ca 25static const char *argv_checkout[] = {"checkout", "-q", NULL, "--", NULL};
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,
1bf072e3
CC
444 int flags, void *cb_data)
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")
fb71a329 477static GIT_PATH_FUNC(git_path_head_name, "head-name")
f932729c 478
ef8d7ac4 479static void read_bisect_paths(struct strvec *array)
3b437b0d
CC
480{
481 struct strbuf str = STRBUF_INIT;
f932729c 482 const char *filename = git_path_bisect_names();
23a9e071 483 FILE *fp = xfopen(filename, "r");
3b437b0d 484
8f309aeb 485 while (strbuf_getline_lf(&str, fp) != EOF) {
3b437b0d 486 strbuf_trim(&str);
2745b6b4 487 if (sq_dequote_to_strvec(str.buf, array))
14dc4899 488 die(_("Badly quoted content in file '%s': %s"),
8a534b61 489 filename, str.buf);
3b437b0d
CC
490 }
491
492 strbuf_release(&str);
493 fclose(fp);
494}
495
7383b25d 496static char *join_oid_array_hex(struct oid_array *array, char delim)
c0537662
CC
497{
498 struct strbuf joined_hexs = STRBUF_INIT;
499 int i;
500
902bb364 501 for (i = 0; i < array->nr; i++) {
ee3051bd 502 strbuf_addstr(&joined_hexs, oid_to_hex(array->oid + i));
902bb364 503 if (i + 1 < array->nr)
c0537662
CC
504 strbuf_addch(&joined_hexs, delim);
505 }
506
507 return strbuf_detach(&joined_hexs, NULL);
508}
509
9af3589e
CC
510/*
511 * In this function, passing a not NULL skipped_first is very special.
512 * It means that we want to know if the first commit in the list is
513 * skipped because we will want to test a commit away from it if it is
514 * indeed skipped.
515 * So if the first commit is skipped, we cannot take the shortcut to
516 * just "return list" when we find the first non skipped commit, we
517 * have to return a fully filtered list.
518 *
519 * We use (*skipped_first == -1) to mean "it has been found that the
520 * first commit is not skipped". In this case *skipped_first is set back
521 * to 0 just before the function returns.
522 */
95188648
CC
523struct commit_list *filter_skipped(struct commit_list *list,
524 struct commit_list **tried,
9af3589e
CC
525 int show_all,
526 int *count,
527 int *skipped_first)
95188648
CC
528{
529 struct commit_list *filtered = NULL, **f = &filtered;
530
531 *tried = NULL;
532
9af3589e
CC
533 if (skipped_first)
534 *skipped_first = 0;
535 if (count)
536 *count = 0;
537
902bb364 538 if (!skipped_revs.nr)
95188648
CC
539 return list;
540
95188648
CC
541 while (list) {
542 struct commit_list *next = list->next;
543 list->next = NULL;
910650d2 544 if (0 <= oid_array_lookup(&skipped_revs, &list->item->object.oid)) {
9af3589e
CC
545 if (skipped_first && !*skipped_first)
546 *skipped_first = 1;
95188648
CC
547 /* Move current to tried list */
548 *tried = list;
549 tried = &list->next;
550 } else {
9af3589e
CC
551 if (!show_all) {
552 if (!skipped_first || !*skipped_first)
553 return list;
554 } else if (skipped_first && !*skipped_first) {
555 /* This means we know it's not skipped */
556 *skipped_first = -1;
557 }
95188648
CC
558 /* Move current to filtered list */
559 *f = list;
560 f = &list->next;
9af3589e
CC
561 if (count)
562 (*count)++;
95188648
CC
563 }
564 list = next;
565 }
566
9af3589e
CC
567 if (skipped_first && *skipped_first == -1)
568 *skipped_first = 0;
569
95188648
CC
570 return filtered;
571}
1bf072e3 572
ebc9529f
CC
573#define PRN_MODULO 32768
574
575/*
576 * This is a pseudo random number generator based on "man 3 rand".
577 * It is not used properly because the seed is the argument and it
578 * is increased by one between each call, but that should not matter
579 * for this application.
580 */
3b335762
NTND
581static unsigned get_prn(unsigned count)
582{
ebc9529f 583 count = count * 1103515245 + 12345;
7b96d888 584 return (count/65536) % PRN_MODULO;
ebc9529f
CC
585}
586
587/*
588 * Custom integer square root from
5e68729f 589 * https://en.wikipedia.org/wiki/Integer_square_root
ebc9529f
CC
590 */
591static int sqrti(int val)
592{
593 float d, x = val;
594
b8e3b2f3 595 if (!val)
ebc9529f
CC
596 return 0;
597
598 do {
599 float y = (x + (float)val / x) / 2;
600 d = (y > x) ? y - x : x - y;
601 x = y;
602 } while (d >= 0.5);
603
604 return (int)x;
605}
606
607static struct commit_list *skip_away(struct commit_list *list, int count)
62d0b0da 608{
62d0b0da 609 struct commit_list *cur, *previous;
ebc9529f
CC
610 int prn, index, i;
611
612 prn = get_prn(count);
613 index = (count * prn / PRN_MODULO) * sqrti(prn) / sqrti(PRN_MODULO);
62d0b0da
CC
614
615 cur = list;
616 previous = NULL;
62d0b0da
CC
617
618 for (i = 0; cur; cur = cur->next, i++) {
619 if (i == index) {
9001dc2a 620 if (!oideq(&cur->item->object.oid, current_bad_oid))
62d0b0da
CC
621 return cur;
622 if (previous)
623 return previous;
624 return list;
625 }
626 previous = cur;
627 }
628
629 return list;
630}
631
632static struct commit_list *managed_skipped(struct commit_list *list,
633 struct commit_list **tried)
634{
635 int count, skipped_first;
62d0b0da
CC
636
637 *tried = NULL;
638
902bb364 639 if (!skipped_revs.nr)
62d0b0da
CC
640 return list;
641
642 list = filter_skipped(list, tried, 0, &count, &skipped_first);
643
644 if (!skipped_first)
645 return list;
646
ebc9529f 647 return skip_away(list, count);
62d0b0da
CC
648}
649
69d2cfe6
NTND
650static void bisect_rev_setup(struct repository *r, struct rev_info *revs,
651 const char *prefix,
a22347c6
CC
652 const char *bad_format, const char *good_format,
653 int read_paths)
1bf072e3 654{
ef8d7ac4 655 struct strvec rev_argv = STRVEC_INIT;
fad2d31d
CC
656 int i;
657
69d2cfe6 658 repo_init_revisions(r, revs, prefix);
3b437b0d
CC
659 revs->abbrev = 0;
660 revs->commit_format = CMIT_FMT_UNSPECIFIED;
1bf072e3 661
1c953a1f 662 /* rev_argv.argv[0] will be ignored by setup_revisions */
ef8d7ac4
JK
663 strvec_push(&rev_argv, "bisect_rev_setup");
664 strvec_pushf(&rev_argv, bad_format, oid_to_hex(current_bad_oid));
902bb364 665 for (i = 0; i < good_revs.nr; i++)
ef8d7ac4 666 strvec_pushf(&rev_argv, good_format,
f6d8942b 667 oid_to_hex(good_revs.oid + i));
ef8d7ac4 668 strvec_push(&rev_argv, "--");
a22347c6
CC
669 if (read_paths)
670 read_bisect_paths(&rev_argv);
3b437b0d 671
d70a9eb6 672 setup_revisions(rev_argv.nr, rev_argv.v, revs, NULL);
8a534b61 673 /* XXX leak rev_argv, as "revs" may still be pointing to it */
3b437b0d
CC
674}
675
a22347c6 676static void bisect_common(struct rev_info *revs)
2ace9727 677{
2ace9727
CC
678 if (prepare_revision_walk(revs))
679 die("revision walk setup failed");
680 if (revs->tree_objects)
4f6d26b1 681 mark_edges_uninteresting(revs, NULL, 0);
2ace9727
CC
682}
683
ce58b5d8 684static enum bisect_error error_if_skipped_commits(struct commit_list *tried,
3c5ff995 685 const struct object_id *bad)
ef24c7ca
CC
686{
687 if (!tried)
ce58b5d8 688 return BISECT_OK;
ef24c7ca
CC
689
690 printf("There are only 'skip'ped commits left to test.\n"
43f9d9f3 691 "The first %s commit could be any of:\n", term_bad);
54307ea7
JH
692
693 for ( ; tried; tried = tried->next)
694 printf("%s\n", oid_to_hex(&tried->item->object.oid));
695
ef24c7ca 696 if (bad)
3c5ff995 697 printf("%s\n", oid_to_hex(bad));
14dc4899 698 printf(_("We cannot bisect more!\n"));
ce58b5d8
PB
699
700 return BISECT_ONLY_SKIPPED_LEFT;
ef24c7ca
CC
701}
702
3c5ff995 703static int is_expected_rev(const struct object_id *oid)
c0537662 704{
f932729c 705 const char *filename = git_path_bisect_expected_rev();
c0537662
CC
706 struct stat st;
707 struct strbuf str = STRBUF_INIT;
708 FILE *fp;
709 int res = 0;
710
711 if (stat(filename, &st) || !S_ISREG(st.st_mode))
712 return 0;
713
e9d983f1 714 fp = fopen_or_warn(filename, "r");
c0537662
CC
715 if (!fp)
716 return 0;
717
8f309aeb 718 if (strbuf_getline_lf(&str, fp) != EOF)
3c5ff995 719 res = !strcmp(str.buf, oid_to_hex(oid));
c0537662
CC
720
721 strbuf_release(&str);
722 fclose(fp);
723
724 return res;
725}
726
48af1fde
RS
727enum bisect_error bisect_checkout(const struct object_id *bisect_rev,
728 int no_checkout)
ef24c7ca 729{
dc01505f 730 char bisect_rev_hex[GIT_MAX_HEXSZ + 1];
ffcb4e94
JH
731 struct commit *commit;
732 struct pretty_print_context pp = {0};
733 struct strbuf commit_msg = STRBUF_INIT;
ef24c7ca 734
7d23ff81 735 oid_to_hex_r(bisect_rev_hex, bisect_rev);
ae077771 736 update_ref(NULL, "BISECT_EXPECTED_REV", bisect_rev, NULL, 0, UPDATE_REFS_DIE_ON_ERR);
ef24c7ca
CC
737
738 argv_checkout[2] = bisect_rev_hex;
fee92fc1 739 if (no_checkout) {
ae077771 740 update_ref(NULL, "BISECT_HEAD", bisect_rev, NULL, 0,
741 UPDATE_REFS_DIE_ON_ERR);
fee92fc1 742 } else {
1fcc40cd 743 if (run_command_v_opt(argv_checkout, RUN_GIT_CMD))
e8e3ce67
PB
744 /*
745 * Errors in `run_command()` itself, signaled by res < 0,
746 * and errors in the child process, signaled by res > 0
1fcc40cd 747 * can both be treated as regular BISECT_FAILED (-1).
e8e3ce67 748 */
1fcc40cd 749 return BISECT_FAILED;
fee92fc1 750 }
ef24c7ca 751
ffcb4e94
JH
752 commit = lookup_commit_reference(the_repository, bisect_rev);
753 format_commit_message(commit, "[%H] %s%n", &commit_msg, &pp);
754 fputs(commit_msg.buf, stdout);
755 strbuf_release(&commit_msg);
756
1fcc40cd 757 return BISECT_OK;
ef24c7ca
CC
758}
759
69d2cfe6
NTND
760static struct commit *get_commit_reference(struct repository *r,
761 const struct object_id *oid)
c0537662 762{
69d2cfe6
NTND
763 struct commit *c = lookup_commit_reference(r, oid);
764 if (!c)
ee3051bd 765 die(_("Not a valid commit name %s"), oid_to_hex(oid));
69d2cfe6 766 return c;
c0537662
CC
767}
768
69d2cfe6
NTND
769static struct commit **get_bad_and_good_commits(struct repository *r,
770 int *rev_nr)
c0537662 771{
b32fa95f 772 struct commit **rev;
c0537662
CC
773 int i, n = 0;
774
b32fa95f 775 ALLOC_ARRAY(rev, 1 + good_revs.nr);
69d2cfe6 776 rev[n++] = get_commit_reference(r, current_bad_oid);
902bb364 777 for (i = 0; i < good_revs.nr; i++)
69d2cfe6 778 rev[n++] = get_commit_reference(r, good_revs.oid + i);
c0537662
CC
779 *rev_nr = n;
780
781 return rev;
782}
783
9ec598e0 784static enum bisect_error handle_bad_merge_base(void)
c0537662 785{
3c5ff995 786 if (is_expected_rev(current_bad_oid)) {
787 char *bad_hex = oid_to_hex(current_bad_oid);
7383b25d 788 char *good_hex = join_oid_array_hex(&good_revs, ' ');
43f9d9f3 789 if (!strcmp(term_bad, "bad") && !strcmp(term_good, "good")) {
14dc4899 790 fprintf(stderr, _("The merge base %s is bad.\n"
43f9d9f3 791 "This means the bug has been fixed "
14dc4899 792 "between %s and [%s].\n"),
43f9d9f3 793 bad_hex, bad_hex, good_hex);
21e5cfd8 794 } else if (!strcmp(term_bad, "new") && !strcmp(term_good, "old")) {
14dc4899 795 fprintf(stderr, _("The merge base %s is new.\n"
21e5cfd8 796 "The property has changed "
14dc4899 797 "between %s and [%s].\n"),
21e5cfd8 798 bad_hex, bad_hex, good_hex);
43f9d9f3 799 } else {
14dc4899 800 fprintf(stderr, _("The merge base %s is %s.\n"
43f9d9f3 801 "This means the first '%s' commit is "
14dc4899 802 "between %s and [%s].\n"),
43f9d9f3
AD
803 bad_hex, term_bad, term_good, bad_hex, good_hex);
804 }
9ec598e0 805 return BISECT_MERGE_BASE_CHECK;
c0537662
CC
806 }
807
3f407b76 808 fprintf(stderr, _("Some %s revs are not ancestors of the %s rev.\n"
c0537662 809 "git bisect cannot work properly in this case.\n"
14dc4899 810 "Maybe you mistook %s and %s revs?\n"),
43f9d9f3 811 term_good, term_bad, term_good, term_bad);
9ec598e0 812 return BISECT_FAILED;
c0537662
CC
813}
814
4ce3621a 815static void handle_skipped_merge_base(const struct object_id *mb)
c0537662 816{
4ce3621a 817 char *mb_hex = oid_to_hex(mb);
c368dde9 818 char *bad_hex = oid_to_hex(current_bad_oid);
7383b25d 819 char *good_hex = join_oid_array_hex(&good_revs, ' ');
c0537662 820
14dc4899 821 warning(_("the merge base between %s and [%s] "
c0537662 822 "must be skipped.\n"
43f9d9f3 823 "So we cannot be sure the first %s commit is "
c0537662 824 "between %s and %s.\n"
14dc4899 825 "We continue anyway."),
43f9d9f3 826 bad_hex, good_hex, term_bad, mb_hex, bad_hex);
c0537662
CC
827 free(good_hex);
828}
829
830/*
21e5cfd8 831 * "check_merge_bases" checks that merge bases are not "bad" (or "new").
c0537662 832 *
21e5cfd8 833 * - If one is "bad" (or "new"), it means the user assumed something wrong
cdd4dc2d 834 * and we must return error with a non 0 error code.
21e5cfd8 835 * - If one is "good" (or "old"), that's good, we have nothing to do.
c0537662
CC
836 * - If one is "skipped", we can't know but we should warn.
837 * - If we don't know, we should check it out and ask the user to test.
cdd4dc2d
PB
838 * - If a merge base must be tested, on success return
839 * BISECT_INTERNAL_SUCCESS_MERGE_BASE (-11) a special condition
840 * for early success, this will be converted back to 0 in
841 * check_good_are_ancestors_of_bad().
c0537662 842 */
cdd4dc2d 843static enum bisect_error check_merge_bases(int rev_nr, struct commit **rev, int no_checkout)
c0537662 844{
cdd4dc2d 845 enum bisect_error res = BISECT_OK;
c0537662 846 struct commit_list *result;
c0537662 847
2ce406cc 848 result = get_merge_bases_many(rev[0], rev_nr - 1, rev + 1);
c0537662
CC
849
850 for (; result; result = result->next) {
4ce3621a 851 const struct object_id *mb = &result->item->object.oid;
4a7e27e9 852 if (oideq(mb, current_bad_oid)) {
9ec598e0
PB
853 res = handle_bad_merge_base();
854 break;
910650d2 855 } else if (0 <= oid_array_lookup(&good_revs, mb)) {
c0537662 856 continue;
910650d2 857 } else if (0 <= oid_array_lookup(&skipped_revs, mb)) {
c0537662
CC
858 handle_skipped_merge_base(mb);
859 } else {
14dc4899 860 printf(_("Bisecting: a merge base must be tested\n"));
cdd4dc2d
PB
861 res = bisect_checkout(mb, no_checkout);
862 if (!res)
863 /* indicate early success */
864 res = BISECT_INTERNAL_SUCCESS_MERGE_BASE;
865 break;
c0537662
CC
866 }
867 }
868
c0537662 869 free_commit_list(result);
cdd4dc2d 870 return res;
c0537662
CC
871}
872
69d2cfe6
NTND
873static int check_ancestors(struct repository *r, int rev_nr,
874 struct commit **rev, const char *prefix)
d937d4ac 875{
2d938fc7 876 struct rev_info revs;
86a0a408 877 int res;
d937d4ac 878
69d2cfe6 879 bisect_rev_setup(r, &revs, prefix, "^%s", "%s", 0);
d937d4ac 880
2d938fc7
CC
881 bisect_common(&revs);
882 res = (revs.commits != NULL);
883
884 /* Clean up objects used, as they will be reused. */
148f14ab 885 clear_commit_marks_many(rev_nr, rev, ALL_REV_FLAGS);
d937d4ac 886
2108fe4a 887 release_revisions(&revs);
2d938fc7 888 return res;
d937d4ac
CC
889}
890
891/*
892 * "check_good_are_ancestors_of_bad" checks that all "good" revs are
893 * ancestor of the "bad" rev.
894 *
895 * If that's not the case, we need to check the merge bases.
896 * If a merge base must be tested by the user, its source code will be
45b63708 897 * checked out to be tested by the user and we will return.
d937d4ac 898 */
45b63708
PB
899
900static enum bisect_error check_good_are_ancestors_of_bad(struct repository *r,
69d2cfe6
NTND
901 const char *prefix,
902 int no_checkout)
d937d4ac 903{
45b63708 904 char *filename;
d937d4ac 905 struct stat st;
148f14ab 906 int fd, rev_nr;
cdd4dc2d 907 enum bisect_error res = BISECT_OK;
148f14ab 908 struct commit **rev;
d937d4ac 909
3c5ff995 910 if (!current_bad_oid)
45b63708
PB
911 return error(_("a %s revision is needed"), term_bad);
912
913 filename = git_pathdup("BISECT_ANCESTORS_OK");
d937d4ac
CC
914
915 /* Check if file BISECT_ANCESTORS_OK exists. */
916 if (!stat(filename, &st) && S_ISREG(st.st_mode))
144e7090 917 goto done;
d937d4ac
CC
918
919 /* Bisecting with no good rev is ok. */
b8e3b2f3 920 if (!good_revs.nr)
144e7090 921 goto done;
d937d4ac 922
2d938fc7 923 /* Check if all good revs are ancestor of the bad rev. */
cdd4dc2d 924
69d2cfe6
NTND
925 rev = get_bad_and_good_commits(r, &rev_nr);
926 if (check_ancestors(r, rev_nr, rev, prefix))
cdd4dc2d 927 res = check_merge_bases(rev_nr, rev, no_checkout);
148f14ab 928 free(rev);
d937d4ac 929
45b63708
PB
930 if (!res) {
931 /* Create file BISECT_ANCESTORS_OK. */
932 fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, 0600);
933 if (fd < 0)
934 /*
935 * BISECT_ANCESTORS_OK file is not absolutely necessary,
936 * the bisection process will continue at the next
937 * bisection step.
938 * So, just signal with a warning that something
939 * might be wrong.
940 */
941 warning_errno(_("could not create file '%s'"),
942 filename);
943 else
944 close(fd);
945 }
144e7090
MH
946 done:
947 free(filename);
45b63708 948 return res;
d937d4ac
CC
949}
950
e22278c0
CC
951/*
952 * This does "git diff-tree --pretty COMMIT" without one fork+exec.
953 */
69d2cfe6
NTND
954static void show_diff_tree(struct repository *r,
955 const char *prefix,
956 struct commit *commit)
e22278c0 957{
2008f290 958 const char *argv[] = {
b02be8b9 959 "diff-tree", "--pretty", "--stat", "--summary", "--cc", NULL
2008f290 960 };
e22278c0
CC
961 struct rev_info opt;
962
b02be8b9 963 git_config(git_diff_ui_config, NULL);
40ae3d3e 964 repo_init_revisions(r, &opt, prefix);
e22278c0 965
2008f290 966 setup_revisions(ARRAY_SIZE(argv) - 1, argv, &opt, NULL);
e22278c0 967 log_tree_commit(&opt, commit);
2108fe4a 968 release_revisions(&opt);
e22278c0
CC
969}
970
cb46d630
AD
971/*
972 * The terms used for this bisect session are stored in BISECT_TERMS.
973 * We read them and store them to adapt the messages accordingly.
974 * Default is bad/good.
975 */
976void read_bisect_terms(const char **read_bad, const char **read_good)
977{
978 struct strbuf str = STRBUF_INIT;
f5d284f6 979 const char *filename = git_path_bisect_terms();
cb46d630
AD
980 FILE *fp = fopen(filename, "r");
981
982 if (!fp) {
983 if (errno == ENOENT) {
984 *read_bad = "bad";
985 *read_good = "good";
986 return;
987 } else {
14dc4899 988 die_errno(_("could not read file '%s'"), filename);
cb46d630
AD
989 }
990 } else {
8f309aeb 991 strbuf_getline_lf(&str, fp);
cb46d630 992 *read_bad = strbuf_detach(&str, NULL);
8f309aeb 993 strbuf_getline_lf(&str, fp);
cb46d630
AD
994 *read_good = strbuf_detach(&str, NULL);
995 }
996 strbuf_release(&str);
997 fclose(fp);
998}
999
ef24c7ca 1000/*
6c69f222 1001 * We use the convention that return BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND (-10) means
ef24c7ca 1002 * the bisection process finished successfully.
6c69f222
PB
1003 * In this case the calling function or command should not turn a
1004 * BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND return code into an error or a non zero exit code.
517ecb31
PB
1005 *
1006 * Checking BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND
1007 * in bisect_helper::bisect_next() and only transforming it to 0 at
1008 * the end of bisect_helper::cmd_bisect__helper() helps bypassing
1009 * all the code related to finding a commit to test.
ef24c7ca 1010 */
be5fe200 1011enum bisect_error bisect_next_all(struct repository *r, const char *prefix)
ef24c7ca 1012{
f196c1e9 1013 struct rev_info revs = REV_INFO_INIT;
ef24c7ca 1014 struct commit_list *tried;
6329bade 1015 int reaches = 0, all = 0, nr, steps;
ce58b5d8 1016 enum bisect_error res = BISECT_OK;
4be0deec 1017 struct object_id *bisect_rev;
2cfa8357 1018 char *steps_msg;
517ecb31
PB
1019 /*
1020 * If no_checkout is non-zero, the bisection process does not
1021 * checkout the trial commit but instead simply updates BISECT_HEAD.
1022 */
be5fe200 1023 int no_checkout = ref_exists("BISECT_HEAD");
ad464a4e 1024 unsigned bisect_flags = 0;
ef24c7ca 1025
cb46d630 1026 read_bisect_terms(&term_bad, &term_good);
2b020695 1027 if (read_bisect_refs())
14dc4899 1028 die(_("reading bisect refs failed"));
2b020695 1029
ad464a4e
AL
1030 if (file_exists(git_path_bisect_first_parent()))
1031 bisect_flags |= FIND_BISECTION_FIRST_PARENT_ONLY;
1032
1033 if (skipped_revs.nr)
1034 bisect_flags |= FIND_BISECTION_ALL;
1035
45b63708
PB
1036 res = check_good_are_ancestors_of_bad(r, prefix, no_checkout);
1037 if (res)
f196c1e9 1038 goto cleanup;
0871984d 1039
69d2cfe6 1040 bisect_rev_setup(r, &revs, prefix, "%s", "^%s", 1);
ad464a4e
AL
1041
1042 revs.first_parent_only = !!(bisect_flags & FIND_BISECTION_FIRST_PARENT_ONLY);
a22347c6 1043 revs.limited = 1;
2b020695 1044
a22347c6 1045 bisect_common(&revs);
ef24c7ca 1046
ad464a4e 1047 find_bisection(&revs.commits, &reaches, &all, bisect_flags);
62d0b0da 1048 revs.commits = managed_skipped(revs.commits, &tried);
ef24c7ca
CC
1049
1050 if (!revs.commits) {
1051 /*
6c69f222 1052 * We should return error here only if the "bad"
ef24c7ca
CC
1053 * commit is also a "skip" commit.
1054 */
ce58b5d8
PB
1055 res = error_if_skipped_commits(tried, NULL);
1056 if (res < 0)
c5365e93 1057 goto cleanup;
14dc4899 1058 printf(_("%s was both %s and %s\n"),
43f9d9f3
AD
1059 oid_to_hex(current_bad_oid),
1060 term_good,
1061 term_bad);
6c69f222 1062
f196c1e9
ÆAB
1063 res = BISECT_FAILED;
1064 goto cleanup;
ef24c7ca
CC
1065 }
1066
8f69f72f 1067 if (!all) {
14dc4899 1068 fprintf(stderr, _("No testable commit found.\n"
b8657347 1069 "Maybe you started with bad path arguments?\n"));
6c69f222 1070
f196c1e9
ÆAB
1071 res = BISECT_NO_TESTABLE_COMMIT;
1072 goto cleanup;
8f69f72f
CC
1073 }
1074
4be0deec 1075 bisect_rev = &revs.commits->item->object.oid;
ef24c7ca 1076
4a7e27e9 1077 if (oideq(bisect_rev, current_bad_oid)) {
ce58b5d8
PB
1078 res = error_if_skipped_commits(tried, current_bad_oid);
1079 if (res)
6c69f222 1080 return res;
4be0deec 1081 printf("%s is the first %s commit\n", oid_to_hex(bisect_rev),
43f9d9f3 1082 term_bad);
6c69f222 1083
69d2cfe6 1084 show_diff_tree(r, prefix, revs.commits->item);
6c69f222
PB
1085 /*
1086 * This means the bisection process succeeded.
1087 * Using BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND (-10)
1088 * so that the call chain can simply check
1089 * for negative return values for early returns up
1090 * until the cmd_bisect__helper() caller.
1091 */
f196c1e9
ÆAB
1092 res = BISECT_INTERNAL_SUCCESS_1ST_BAD_FOUND;
1093 goto cleanup;
ef24c7ca
CC
1094 }
1095
1096 nr = all - reaches - 1;
6329bade 1097 steps = estimate_bisect_steps(all);
2cfa8357
MM
1098
1099 steps_msg = xstrfmt(Q_("(roughly %d step)", "(roughly %d steps)",
1100 steps), steps);
66f5f6dc
ÆAB
1101 /*
1102 * TRANSLATORS: the last %s will be replaced with "(roughly %d
1103 * steps)" translation.
1104 */
14dc4899
VA
1105 printf(Q_("Bisecting: %d revision left to test after this %s\n",
1106 "Bisecting: %d revisions left to test after this %s\n",
1107 nr), nr, steps_msg);
2cfa8357 1108 free(steps_msg);
c7a7f48f 1109 /* Clean up objects used, as they will be reused. */
0795df4b 1110 repo_clear_commit_marks(r, ALL_REV_FLAGS);
ef24c7ca 1111
f196c1e9
ÆAB
1112 res = bisect_checkout(bisect_rev, no_checkout);
1113cleanup:
1114 release_revisions(&revs);
1115 return res;
ef24c7ca
CC
1116}
1117
c43cb386
NTND
1118static inline int log2i(int n)
1119{
1120 int log2 = 0;
1121
1122 for (; n > 1; n >>= 1)
1123 log2++;
1124
1125 return log2;
1126}
1127
1128static inline int exp2i(int n)
1129{
1130 return 1 << n;
1131}
1132
1133/*
1134 * Estimate the number of bisect steps left (after the current step)
1135 *
1136 * For any x between 0 included and 2^n excluded, the probability for
1137 * n - 1 steps left looks like:
1138 *
1139 * P(2^n + x) == (2^n - x) / (2^n + x)
1140 *
1141 * and P(2^n + x) < 0.5 means 2^n < 3x
1142 */
1143int estimate_bisect_steps(int all)
1144{
1145 int n, x, e;
1146
1147 if (all < 3)
1148 return 0;
1149
1150 n = log2i(all);
1151 e = exp2i(n);
1152 x = all - e;
1153
1154 return (e < 3 * x) ? n : n - 1;
1155}
fb71a329
PB
1156
1157static int mark_for_removal(const char *refname, const struct object_id *oid,
1158 int flag, void *cb_data)
1159{
1160 struct string_list *refs = cb_data;
1161 char *ref = xstrfmt("refs/bisect%s", refname);
1162 string_list_append(refs, ref);
1163 return 0;
1164}
1165
1166int bisect_clean_state(void)
1167{
1168 int result = 0;
1169
1170 /* There may be some refs packed during bisection */
1171 struct string_list refs_for_removal = STRING_LIST_INIT_NODUP;
1172 for_each_ref_in("refs/bisect", mark_for_removal, (void *) &refs_for_removal);
1173 string_list_append(&refs_for_removal, xstrdup("BISECT_HEAD"));
a9722297 1174 result = delete_refs("bisect: remove", &refs_for_removal, REF_NO_DEREF);
fb71a329
PB
1175 refs_for_removal.strdup_strings = 1;
1176 string_list_clear(&refs_for_removal, 0);
1177 unlink_or_warn(git_path_bisect_expected_rev());
1178 unlink_or_warn(git_path_bisect_ancestors_ok());
1179 unlink_or_warn(git_path_bisect_log());
1180 unlink_or_warn(git_path_bisect_names());
1181 unlink_or_warn(git_path_bisect_run());
1182 unlink_or_warn(git_path_bisect_terms());
e8861ffc 1183 unlink_or_warn(git_path_bisect_first_parent());
fb71a329
PB
1184 /* Cleanup head-name if it got left by an old version of git-bisect */
1185 unlink_or_warn(git_path_head_name());
1186 /*
1187 * Cleanup BISECT_START last to support the --no-checkout option
1188 * introduced in the commit 4796e823a.
1189 */
1190 unlink_or_warn(git_path_bisect_start());
1191
1192 return result;
1193}