]> git.ipfire.org Git - thirdparty/git.git/blob - rerere.c
Merge branch 'ps/reftable-unit-test-nfs-workaround'
[thirdparty/git.git] / rerere.c
1 #include "git-compat-util.h"
2 #include "abspath.h"
3 #include "config.h"
4 #include "copy.h"
5 #include "gettext.h"
6 #include "hex.h"
7 #include "lockfile.h"
8 #include "string-list.h"
9 #include "read-cache-ll.h"
10 #include "rerere.h"
11 #include "xdiff-interface.h"
12 #include "dir.h"
13 #include "resolve-undo.h"
14 #include "merge-ll.h"
15 #include "path.h"
16 #include "pathspec.h"
17 #include "object-file.h"
18 #include "object-store-ll.h"
19 #include "strmap.h"
20
21 #define RESOLVED 0
22 #define PUNTED 1
23 #define THREE_STAGED 2
24 void *RERERE_RESOLVED = &RERERE_RESOLVED;
25
26 /* if rerere_enabled == -1, fall back to detection of .git/rr-cache */
27 static int rerere_enabled = -1;
28
29 /* automatically update cleanly resolved paths to the index */
30 static int rerere_autoupdate;
31
32 #define RR_HAS_POSTIMAGE 1
33 #define RR_HAS_PREIMAGE 2
34 struct rerere_dir {
35 int status_alloc, status_nr;
36 unsigned char *status;
37 char name[FLEX_ARRAY];
38 };
39
40 static struct strmap rerere_dirs = STRMAP_INIT;
41
42 static void free_rerere_dirs(void)
43 {
44 struct hashmap_iter iter;
45 struct strmap_entry *ent;
46
47 strmap_for_each_entry(&rerere_dirs, &iter, ent) {
48 struct rerere_dir *rr_dir = ent->value;
49 free(rr_dir->status);
50 free(rr_dir);
51 }
52 strmap_clear(&rerere_dirs, 0);
53 }
54
55 static void free_rerere_id(struct string_list_item *item)
56 {
57 free(item->util);
58 }
59
60 static const char *rerere_id_hex(const struct rerere_id *id)
61 {
62 return id->collection->name;
63 }
64
65 static void fit_variant(struct rerere_dir *rr_dir, int variant)
66 {
67 variant++;
68 ALLOC_GROW(rr_dir->status, variant, rr_dir->status_alloc);
69 if (rr_dir->status_nr < variant) {
70 memset(rr_dir->status + rr_dir->status_nr,
71 '\0', variant - rr_dir->status_nr);
72 rr_dir->status_nr = variant;
73 }
74 }
75
76 static void assign_variant(struct rerere_id *id)
77 {
78 int variant;
79 struct rerere_dir *rr_dir = id->collection;
80
81 variant = id->variant;
82 if (variant < 0) {
83 for (variant = 0; variant < rr_dir->status_nr; variant++)
84 if (!rr_dir->status[variant])
85 break;
86 }
87 fit_variant(rr_dir, variant);
88 id->variant = variant;
89 }
90
91 const char *rerere_path(const struct rerere_id *id, const char *file)
92 {
93 if (!file)
94 return git_path("rr-cache/%s", rerere_id_hex(id));
95
96 if (id->variant <= 0)
97 return git_path("rr-cache/%s/%s", rerere_id_hex(id), file);
98
99 return git_path("rr-cache/%s/%s.%d",
100 rerere_id_hex(id), file, id->variant);
101 }
102
103 static int is_rr_file(const char *name, const char *filename, int *variant)
104 {
105 const char *suffix;
106 char *ep;
107
108 if (!strcmp(name, filename)) {
109 *variant = 0;
110 return 1;
111 }
112 if (!skip_prefix(name, filename, &suffix) || *suffix != '.')
113 return 0;
114
115 errno = 0;
116 *variant = strtol(suffix + 1, &ep, 10);
117 if (errno || *ep)
118 return 0;
119 return 1;
120 }
121
122 static void scan_rerere_dir(struct rerere_dir *rr_dir)
123 {
124 struct dirent *de;
125 DIR *dir = opendir(git_path("rr-cache/%s", rr_dir->name));
126
127 if (!dir)
128 return;
129 while ((de = readdir(dir)) != NULL) {
130 int variant;
131
132 if (is_rr_file(de->d_name, "postimage", &variant)) {
133 fit_variant(rr_dir, variant);
134 rr_dir->status[variant] |= RR_HAS_POSTIMAGE;
135 } else if (is_rr_file(de->d_name, "preimage", &variant)) {
136 fit_variant(rr_dir, variant);
137 rr_dir->status[variant] |= RR_HAS_PREIMAGE;
138 }
139 }
140 closedir(dir);
141 }
142
143 static struct rerere_dir *find_rerere_dir(const char *hex)
144 {
145 struct rerere_dir *rr_dir;
146
147 rr_dir = strmap_get(&rerere_dirs, hex);
148 if (!rr_dir) {
149 FLEX_ALLOC_STR(rr_dir, name, hex);
150 rr_dir->status = NULL;
151 rr_dir->status_nr = 0;
152 rr_dir->status_alloc = 0;
153 strmap_put(&rerere_dirs, hex, rr_dir);
154
155 scan_rerere_dir(rr_dir);
156 }
157 return rr_dir;
158 }
159
160 static int has_rerere_resolution(const struct rerere_id *id)
161 {
162 const int both = RR_HAS_POSTIMAGE|RR_HAS_PREIMAGE;
163 int variant = id->variant;
164
165 if (variant < 0)
166 return 0;
167 return ((id->collection->status[variant] & both) == both);
168 }
169
170 static struct rerere_id *new_rerere_id_hex(char *hex)
171 {
172 struct rerere_id *id = xmalloc(sizeof(*id));
173 id->collection = find_rerere_dir(hex);
174 id->variant = -1; /* not known yet */
175 return id;
176 }
177
178 static struct rerere_id *new_rerere_id(unsigned char *hash)
179 {
180 return new_rerere_id_hex(hash_to_hex(hash));
181 }
182
183 /*
184 * $GIT_DIR/MERGE_RR file is a collection of records, each of which is
185 * "conflict ID", a HT and pathname, terminated with a NUL, and is
186 * used to keep track of the set of paths that "rerere" may need to
187 * work on (i.e. what is left by the previous invocation of "git
188 * rerere" during the current conflict resolution session).
189 */
190 static void read_rr(struct repository *r, struct string_list *rr)
191 {
192 struct strbuf buf = STRBUF_INIT;
193 FILE *in = fopen_or_warn(git_path_merge_rr(r), "r");
194
195 if (!in)
196 return;
197 while (!strbuf_getwholeline(&buf, in, '\0')) {
198 char *path;
199 unsigned char hash[GIT_MAX_RAWSZ];
200 struct rerere_id *id;
201 int variant;
202 const unsigned hexsz = the_hash_algo->hexsz;
203
204 /* There has to be the hash, tab, path and then NUL */
205 if (buf.len < hexsz + 2 || get_hash_hex(buf.buf, hash))
206 die(_("corrupt MERGE_RR"));
207
208 if (buf.buf[hexsz] != '.') {
209 variant = 0;
210 path = buf.buf + hexsz;
211 } else {
212 errno = 0;
213 variant = strtol(buf.buf + hexsz + 1, &path, 10);
214 if (errno)
215 die(_("corrupt MERGE_RR"));
216 }
217 if (*(path++) != '\t')
218 die(_("corrupt MERGE_RR"));
219 buf.buf[hexsz] = '\0';
220 id = new_rerere_id_hex(buf.buf);
221 id->variant = variant;
222 string_list_insert(rr, path)->util = id;
223 }
224 strbuf_release(&buf);
225 fclose(in);
226 }
227
228 static struct lock_file write_lock;
229
230 static int write_rr(struct string_list *rr, int out_fd)
231 {
232 int i;
233 for (i = 0; i < rr->nr; i++) {
234 struct strbuf buf = STRBUF_INIT;
235 struct rerere_id *id;
236
237 assert(rr->items[i].util != RERERE_RESOLVED);
238
239 id = rr->items[i].util;
240 if (!id)
241 continue;
242 assert(id->variant >= 0);
243 if (0 < id->variant)
244 strbuf_addf(&buf, "%s.%d\t%s%c",
245 rerere_id_hex(id), id->variant,
246 rr->items[i].string, 0);
247 else
248 strbuf_addf(&buf, "%s\t%s%c",
249 rerere_id_hex(id),
250 rr->items[i].string, 0);
251
252 if (write_in_full(out_fd, buf.buf, buf.len) < 0)
253 die(_("unable to write rerere record"));
254
255 strbuf_release(&buf);
256 }
257 if (commit_lock_file(&write_lock) != 0)
258 die(_("unable to write rerere record"));
259 return 0;
260 }
261
262 /*
263 * "rerere" interacts with conflicted file contents using this I/O
264 * abstraction. It reads a conflicted contents from one place via
265 * "getline()" method, and optionally can write it out after
266 * normalizing the conflicted hunks to the "output". Subclasses of
267 * rerere_io embed this structure at the beginning of their own
268 * rerere_io object.
269 */
270 struct rerere_io {
271 int (*getline)(struct strbuf *, struct rerere_io *);
272 FILE *output;
273 int wrerror;
274 /* some more stuff */
275 };
276
277 static void ferr_write(const void *p, size_t count, FILE *fp, int *err)
278 {
279 if (!count || *err)
280 return;
281 if (fwrite(p, count, 1, fp) != 1)
282 *err = errno;
283 }
284
285 static inline void ferr_puts(const char *s, FILE *fp, int *err)
286 {
287 ferr_write(s, strlen(s), fp, err);
288 }
289
290 static void rerere_io_putstr(const char *str, struct rerere_io *io)
291 {
292 if (io->output)
293 ferr_puts(str, io->output, &io->wrerror);
294 }
295
296 static void rerere_io_putmem(const char *mem, size_t sz, struct rerere_io *io)
297 {
298 if (io->output)
299 ferr_write(mem, sz, io->output, &io->wrerror);
300 }
301
302 /*
303 * Subclass of rerere_io that reads from an on-disk file
304 */
305 struct rerere_io_file {
306 struct rerere_io io;
307 FILE *input;
308 };
309
310 /*
311 * ... and its getline() method implementation
312 */
313 static int rerere_file_getline(struct strbuf *sb, struct rerere_io *io_)
314 {
315 struct rerere_io_file *io = (struct rerere_io_file *)io_;
316 return strbuf_getwholeline(sb, io->input, '\n');
317 }
318
319 /*
320 * Require the exact number of conflict marker letters, no more, no
321 * less, followed by SP or any whitespace
322 * (including LF).
323 */
324 static int is_cmarker(char *buf, int marker_char, int marker_size)
325 {
326 int want_sp;
327
328 /*
329 * The beginning of our version and the end of their version
330 * always are labeled like "<<<<< ours" or ">>>>> theirs",
331 * hence we set want_sp for them. Note that the version from
332 * the common ancestor in diff3-style output is not always
333 * labelled (e.g. "||||| common" is often seen but "|||||"
334 * alone is also valid), so we do not set want_sp.
335 */
336 want_sp = (marker_char == '<') || (marker_char == '>');
337
338 while (marker_size--)
339 if (*buf++ != marker_char)
340 return 0;
341 if (want_sp && *buf != ' ')
342 return 0;
343 return isspace(*buf);
344 }
345
346 static void rerere_strbuf_putconflict(struct strbuf *buf, int ch, size_t size)
347 {
348 strbuf_addchars(buf, ch, size);
349 strbuf_addch(buf, '\n');
350 }
351
352 static int handle_conflict(struct strbuf *out, struct rerere_io *io,
353 int marker_size, git_hash_ctx *ctx)
354 {
355 enum {
356 RR_SIDE_1 = 0, RR_SIDE_2, RR_ORIGINAL
357 } hunk = RR_SIDE_1;
358 struct strbuf one = STRBUF_INIT, two = STRBUF_INIT;
359 struct strbuf buf = STRBUF_INIT, conflict = STRBUF_INIT;
360 int has_conflicts = -1;
361
362 while (!io->getline(&buf, io)) {
363 if (is_cmarker(buf.buf, '<', marker_size)) {
364 if (handle_conflict(&conflict, io, marker_size, NULL) < 0)
365 break;
366 if (hunk == RR_SIDE_1)
367 strbuf_addbuf(&one, &conflict);
368 else
369 strbuf_addbuf(&two, &conflict);
370 strbuf_release(&conflict);
371 } else if (is_cmarker(buf.buf, '|', marker_size)) {
372 if (hunk != RR_SIDE_1)
373 break;
374 hunk = RR_ORIGINAL;
375 } else if (is_cmarker(buf.buf, '=', marker_size)) {
376 if (hunk != RR_SIDE_1 && hunk != RR_ORIGINAL)
377 break;
378 hunk = RR_SIDE_2;
379 } else if (is_cmarker(buf.buf, '>', marker_size)) {
380 if (hunk != RR_SIDE_2)
381 break;
382 if (strbuf_cmp(&one, &two) > 0)
383 strbuf_swap(&one, &two);
384 has_conflicts = 1;
385 rerere_strbuf_putconflict(out, '<', marker_size);
386 strbuf_addbuf(out, &one);
387 rerere_strbuf_putconflict(out, '=', marker_size);
388 strbuf_addbuf(out, &two);
389 rerere_strbuf_putconflict(out, '>', marker_size);
390 if (ctx) {
391 the_hash_algo->update_fn(ctx, one.buf ?
392 one.buf : "",
393 one.len + 1);
394 the_hash_algo->update_fn(ctx, two.buf ?
395 two.buf : "",
396 two.len + 1);
397 }
398 break;
399 } else if (hunk == RR_SIDE_1)
400 strbuf_addbuf(&one, &buf);
401 else if (hunk == RR_ORIGINAL)
402 ; /* discard */
403 else if (hunk == RR_SIDE_2)
404 strbuf_addbuf(&two, &buf);
405 }
406 strbuf_release(&one);
407 strbuf_release(&two);
408 strbuf_release(&buf);
409
410 return has_conflicts;
411 }
412
413 /*
414 * Read contents a file with conflicts, normalize the conflicts
415 * by (1) discarding the common ancestor version in diff3-style,
416 * (2) reordering our side and their side so that whichever sorts
417 * alphabetically earlier comes before the other one, while
418 * computing the "conflict ID", which is just an SHA-1 hash of
419 * one side of the conflict, NUL, the other side of the conflict,
420 * and NUL concatenated together.
421 *
422 * Return 1 if conflict hunks are found, 0 if there are no conflict
423 * hunks and -1 if an error occurred.
424 */
425 static int handle_path(unsigned char *hash, struct rerere_io *io, int marker_size)
426 {
427 git_hash_ctx ctx;
428 struct strbuf buf = STRBUF_INIT, out = STRBUF_INIT;
429 int has_conflicts = 0;
430 if (hash)
431 the_hash_algo->init_fn(&ctx);
432
433 while (!io->getline(&buf, io)) {
434 if (is_cmarker(buf.buf, '<', marker_size)) {
435 has_conflicts = handle_conflict(&out, io, marker_size,
436 hash ? &ctx : NULL);
437 if (has_conflicts < 0)
438 break;
439 rerere_io_putmem(out.buf, out.len, io);
440 strbuf_reset(&out);
441 } else
442 rerere_io_putstr(buf.buf, io);
443 }
444 strbuf_release(&buf);
445 strbuf_release(&out);
446
447 if (hash)
448 the_hash_algo->final_fn(hash, &ctx);
449
450 return has_conflicts;
451 }
452
453 /*
454 * Scan the path for conflicts, do the "handle_path()" thing above, and
455 * return the number of conflict hunks found.
456 */
457 static int handle_file(struct index_state *istate,
458 const char *path, unsigned char *hash, const char *output)
459 {
460 int has_conflicts = 0;
461 struct rerere_io_file io;
462 int marker_size = ll_merge_marker_size(istate, path);
463
464 memset(&io, 0, sizeof(io));
465 io.io.getline = rerere_file_getline;
466 io.input = fopen(path, "r");
467 io.io.wrerror = 0;
468 if (!io.input)
469 return error_errno(_("could not open '%s'"), path);
470
471 if (output) {
472 io.io.output = fopen(output, "w");
473 if (!io.io.output) {
474 error_errno(_("could not write '%s'"), output);
475 fclose(io.input);
476 return -1;
477 }
478 }
479
480 has_conflicts = handle_path(hash, (struct rerere_io *)&io, marker_size);
481
482 fclose(io.input);
483 if (io.io.wrerror)
484 error(_("there were errors while writing '%s' (%s)"),
485 path, strerror(io.io.wrerror));
486 if (io.io.output && fclose(io.io.output))
487 io.io.wrerror = error_errno(_("failed to flush '%s'"), path);
488
489 if (has_conflicts < 0) {
490 if (output)
491 unlink_or_warn(output);
492 return error(_("could not parse conflict hunks in '%s'"), path);
493 }
494 if (io.io.wrerror)
495 return -1;
496 return has_conflicts;
497 }
498
499 /*
500 * Look at a cache entry at "i" and see if it is not conflicting,
501 * conflicting and we are willing to handle, or conflicting and
502 * we are unable to handle, and return the determination in *type.
503 * Return the cache index to be looked at next, by skipping the
504 * stages we have already looked at in this invocation of this
505 * function.
506 */
507 static int check_one_conflict(struct index_state *istate, int i, int *type)
508 {
509 const struct cache_entry *e = istate->cache[i];
510
511 if (!ce_stage(e)) {
512 *type = RESOLVED;
513 return i + 1;
514 }
515
516 *type = PUNTED;
517 while (i < istate->cache_nr && ce_stage(istate->cache[i]) == 1)
518 i++;
519
520 /* Only handle regular files with both stages #2 and #3 */
521 if (i + 1 < istate->cache_nr) {
522 const struct cache_entry *e2 = istate->cache[i];
523 const struct cache_entry *e3 = istate->cache[i + 1];
524 if (ce_stage(e2) == 2 &&
525 ce_stage(e3) == 3 &&
526 ce_same_name(e, e3) &&
527 S_ISREG(e2->ce_mode) &&
528 S_ISREG(e3->ce_mode))
529 *type = THREE_STAGED;
530 }
531
532 /* Skip the entries with the same name */
533 while (i < istate->cache_nr && ce_same_name(e, istate->cache[i]))
534 i++;
535 return i;
536 }
537
538 /*
539 * Scan the index and find paths that have conflicts that rerere can
540 * handle, i.e. the ones that has both stages #2 and #3.
541 *
542 * NEEDSWORK: we do not record or replay a previous "resolve by
543 * deletion" for a delete-modify conflict, as that is inherently risky
544 * without knowing what modification is being discarded. The only
545 * safe case, i.e. both side doing the deletion and modification that
546 * are identical to the previous round, might want to be handled,
547 * though.
548 */
549 static int find_conflict(struct repository *r, struct string_list *conflict)
550 {
551 int i;
552
553 if (repo_read_index(r) < 0)
554 return error(_("index file corrupt"));
555
556 for (i = 0; i < r->index->cache_nr;) {
557 int conflict_type;
558 const struct cache_entry *e = r->index->cache[i];
559 i = check_one_conflict(r->index, i, &conflict_type);
560 if (conflict_type == THREE_STAGED)
561 string_list_insert(conflict, (const char *)e->name);
562 }
563 return 0;
564 }
565
566 /*
567 * The merge_rr list is meant to hold outstanding conflicted paths
568 * that rerere could handle. Abuse the list by adding other types of
569 * entries to allow the caller to show "rerere remaining".
570 *
571 * - Conflicted paths that rerere does not handle are added
572 * - Conflicted paths that have been resolved are marked as such
573 * by storing RERERE_RESOLVED to .util field (where conflict ID
574 * is expected to be stored).
575 *
576 * Do *not* write MERGE_RR file out after calling this function.
577 *
578 * NEEDSWORK: we may want to fix the caller that implements "rerere
579 * remaining" to do this without abusing merge_rr.
580 */
581 int rerere_remaining(struct repository *r, struct string_list *merge_rr)
582 {
583 int i;
584
585 if (setup_rerere(r, merge_rr, RERERE_READONLY))
586 return 0;
587 if (repo_read_index(r) < 0)
588 return error(_("index file corrupt"));
589
590 for (i = 0; i < r->index->cache_nr;) {
591 int conflict_type;
592 const struct cache_entry *e = r->index->cache[i];
593 i = check_one_conflict(r->index, i, &conflict_type);
594 if (conflict_type == PUNTED)
595 string_list_insert(merge_rr, (const char *)e->name);
596 else if (conflict_type == RESOLVED) {
597 struct string_list_item *it;
598 it = string_list_lookup(merge_rr, (const char *)e->name);
599 if (it) {
600 free_rerere_id(it);
601 it->util = RERERE_RESOLVED;
602 }
603 }
604 }
605 return 0;
606 }
607
608 /*
609 * Try using the given conflict resolution "ID" to see
610 * if that recorded conflict resolves cleanly what we
611 * got in the "cur".
612 */
613 static int try_merge(struct index_state *istate,
614 const struct rerere_id *id, const char *path,
615 mmfile_t *cur, mmbuffer_t *result)
616 {
617 enum ll_merge_result ret;
618 mmfile_t base = {NULL, 0}, other = {NULL, 0};
619
620 if (read_mmfile(&base, rerere_path(id, "preimage")) ||
621 read_mmfile(&other, rerere_path(id, "postimage"))) {
622 ret = LL_MERGE_CONFLICT;
623 } else {
624 /*
625 * A three-way merge. Note that this honors user-customizable
626 * low-level merge driver settings.
627 */
628 ret = ll_merge(result, path, &base, NULL, cur, "", &other, "",
629 istate, NULL);
630 }
631
632 free(base.ptr);
633 free(other.ptr);
634
635 return ret;
636 }
637
638 /*
639 * Find the conflict identified by "id"; the change between its
640 * "preimage" (i.e. a previous contents with conflict markers) and its
641 * "postimage" (i.e. the corresponding contents with conflicts
642 * resolved) may apply cleanly to the contents stored in "path", i.e.
643 * the conflict this time around.
644 *
645 * Returns 0 for successful replay of recorded resolution, or non-zero
646 * for failure.
647 */
648 static int merge(struct index_state *istate, const struct rerere_id *id, const char *path)
649 {
650 FILE *f;
651 int ret;
652 mmfile_t cur = {NULL, 0};
653 mmbuffer_t result = {NULL, 0};
654
655 /*
656 * Normalize the conflicts in path and write it out to
657 * "thisimage" temporary file.
658 */
659 if ((handle_file(istate, path, NULL, rerere_path(id, "thisimage")) < 0) ||
660 read_mmfile(&cur, rerere_path(id, "thisimage"))) {
661 ret = 1;
662 goto out;
663 }
664
665 ret = try_merge(istate, id, path, &cur, &result);
666 if (ret)
667 goto out;
668
669 /*
670 * A successful replay of recorded resolution.
671 * Mark that "postimage" was used to help gc.
672 */
673 if (utime(rerere_path(id, "postimage"), NULL) < 0)
674 warning_errno(_("failed utime() on '%s'"),
675 rerere_path(id, "postimage"));
676
677 /* Update "path" with the resolution */
678 f = fopen(path, "w");
679 if (!f)
680 return error_errno(_("could not open '%s'"), path);
681 if (fwrite(result.ptr, result.size, 1, f) != 1)
682 error_errno(_("could not write '%s'"), path);
683 if (fclose(f))
684 return error_errno(_("writing '%s' failed"), path);
685
686 out:
687 free(cur.ptr);
688 free(result.ptr);
689
690 return ret;
691 }
692
693 static void update_paths(struct repository *r, struct string_list *update)
694 {
695 struct lock_file index_lock = LOCK_INIT;
696 int i;
697
698 repo_hold_locked_index(r, &index_lock, LOCK_DIE_ON_ERROR);
699
700 for (i = 0; i < update->nr; i++) {
701 struct string_list_item *item = &update->items[i];
702 if (add_file_to_index(r->index, item->string, 0))
703 exit(128);
704 fprintf_ln(stderr, _("Staged '%s' using previous resolution."),
705 item->string);
706 }
707
708 if (write_locked_index(r->index, &index_lock,
709 COMMIT_LOCK | SKIP_IF_UNCHANGED))
710 die(_("unable to write new index file"));
711 }
712
713 static void remove_variant(struct rerere_id *id)
714 {
715 unlink_or_warn(rerere_path(id, "postimage"));
716 unlink_or_warn(rerere_path(id, "preimage"));
717 id->collection->status[id->variant] = 0;
718 }
719
720 /*
721 * The path indicated by rr_item may still have conflict for which we
722 * have a recorded resolution, in which case replay it and optionally
723 * update it. Or it may have been resolved by the user and we may
724 * only have the preimage for that conflict, in which case the result
725 * needs to be recorded as a resolution in a postimage file.
726 */
727 static void do_rerere_one_path(struct index_state *istate,
728 struct string_list_item *rr_item,
729 struct string_list *update)
730 {
731 const char *path = rr_item->string;
732 struct rerere_id *id = rr_item->util;
733 struct rerere_dir *rr_dir = id->collection;
734 int variant;
735
736 variant = id->variant;
737
738 /* Has the user resolved it already? */
739 if (variant >= 0) {
740 if (!handle_file(istate, path, NULL, NULL)) {
741 copy_file(rerere_path(id, "postimage"), path, 0666);
742 id->collection->status[variant] |= RR_HAS_POSTIMAGE;
743 fprintf_ln(stderr, _("Recorded resolution for '%s'."), path);
744 free_rerere_id(rr_item);
745 rr_item->util = NULL;
746 return;
747 }
748 /*
749 * There may be other variants that can cleanly
750 * replay. Try them and update the variant number for
751 * this one.
752 */
753 }
754
755 /* Does any existing resolution apply cleanly? */
756 for (variant = 0; variant < rr_dir->status_nr; variant++) {
757 const int both = RR_HAS_PREIMAGE | RR_HAS_POSTIMAGE;
758 struct rerere_id vid = *id;
759
760 if ((rr_dir->status[variant] & both) != both)
761 continue;
762
763 vid.variant = variant;
764 if (merge(istate, &vid, path))
765 continue; /* failed to replay */
766
767 /*
768 * If there already is a different variant that applies
769 * cleanly, there is no point maintaining our own variant.
770 */
771 if (0 <= id->variant && id->variant != variant)
772 remove_variant(id);
773
774 if (rerere_autoupdate)
775 string_list_insert(update, path);
776 else
777 fprintf_ln(stderr,
778 _("Resolved '%s' using previous resolution."),
779 path);
780 free_rerere_id(rr_item);
781 rr_item->util = NULL;
782 return;
783 }
784
785 /* None of the existing one applies; we need a new variant */
786 assign_variant(id);
787
788 variant = id->variant;
789 handle_file(istate, path, NULL, rerere_path(id, "preimage"));
790 if (id->collection->status[variant] & RR_HAS_POSTIMAGE) {
791 const char *path = rerere_path(id, "postimage");
792 if (unlink(path))
793 die_errno(_("cannot unlink stray '%s'"), path);
794 id->collection->status[variant] &= ~RR_HAS_POSTIMAGE;
795 }
796 id->collection->status[variant] |= RR_HAS_PREIMAGE;
797 fprintf_ln(stderr, _("Recorded preimage for '%s'"), path);
798 }
799
800 static int do_plain_rerere(struct repository *r,
801 struct string_list *rr, int fd)
802 {
803 struct string_list conflict = STRING_LIST_INIT_DUP;
804 struct string_list update = STRING_LIST_INIT_DUP;
805 int i;
806
807 find_conflict(r, &conflict);
808
809 /*
810 * MERGE_RR records paths with conflicts immediately after
811 * merge failed. Some of the conflicted paths might have been
812 * hand resolved in the working tree since then, but the
813 * initial run would catch all and register their preimages.
814 */
815 for (i = 0; i < conflict.nr; i++) {
816 struct rerere_id *id;
817 unsigned char hash[GIT_MAX_RAWSZ];
818 const char *path = conflict.items[i].string;
819 int ret;
820
821 /*
822 * Ask handle_file() to scan and assign a
823 * conflict ID. No need to write anything out
824 * yet.
825 */
826 ret = handle_file(r->index, path, hash, NULL);
827 if (ret != 0 && string_list_has_string(rr, path)) {
828 remove_variant(string_list_lookup(rr, path)->util);
829 string_list_remove(rr, path, 1);
830 }
831 if (ret < 1)
832 continue;
833
834 id = new_rerere_id(hash);
835 string_list_insert(rr, path)->util = id;
836
837 /* Ensure that the directory exists. */
838 mkdir_in_gitdir(rerere_path(id, NULL));
839 }
840
841 for (i = 0; i < rr->nr; i++)
842 do_rerere_one_path(r->index, &rr->items[i], &update);
843
844 if (update.nr)
845 update_paths(r, &update);
846
847 return write_rr(rr, fd);
848 }
849
850 static void git_rerere_config(void)
851 {
852 git_config_get_bool("rerere.enabled", &rerere_enabled);
853 git_config_get_bool("rerere.autoupdate", &rerere_autoupdate);
854 git_config(git_default_config, NULL);
855 }
856
857 static GIT_PATH_FUNC(git_path_rr_cache, "rr-cache")
858
859 static int is_rerere_enabled(void)
860 {
861 int rr_cache_exists;
862
863 if (!rerere_enabled)
864 return 0;
865
866 rr_cache_exists = is_directory(git_path_rr_cache());
867 if (rerere_enabled < 0)
868 return rr_cache_exists;
869
870 if (!rr_cache_exists && mkdir_in_gitdir(git_path_rr_cache()))
871 die(_("could not create directory '%s'"), git_path_rr_cache());
872 return 1;
873 }
874
875 int setup_rerere(struct repository *r, struct string_list *merge_rr, int flags)
876 {
877 int fd;
878
879 git_rerere_config();
880 if (!is_rerere_enabled())
881 return -1;
882
883 if (flags & (RERERE_AUTOUPDATE|RERERE_NOAUTOUPDATE))
884 rerere_autoupdate = !!(flags & RERERE_AUTOUPDATE);
885 if (flags & RERERE_READONLY)
886 fd = 0;
887 else
888 fd = hold_lock_file_for_update(&write_lock,
889 git_path_merge_rr(r),
890 LOCK_DIE_ON_ERROR);
891 read_rr(r, merge_rr);
892 return fd;
893 }
894
895 /*
896 * The main entry point that is called internally from codepaths that
897 * perform mergy operations, possibly leaving conflicted index entries
898 * and working tree files.
899 */
900 int repo_rerere(struct repository *r, int flags)
901 {
902 struct string_list merge_rr = STRING_LIST_INIT_DUP;
903 int fd, status;
904
905 fd = setup_rerere(r, &merge_rr, flags);
906 if (fd < 0)
907 return 0;
908 status = do_plain_rerere(r, &merge_rr, fd);
909 free_rerere_dirs();
910 return status;
911 }
912
913 /*
914 * Subclass of rerere_io that reads from an in-core buffer that is a
915 * strbuf
916 */
917 struct rerere_io_mem {
918 struct rerere_io io;
919 struct strbuf input;
920 };
921
922 /*
923 * ... and its getline() method implementation
924 */
925 static int rerere_mem_getline(struct strbuf *sb, struct rerere_io *io_)
926 {
927 struct rerere_io_mem *io = (struct rerere_io_mem *)io_;
928 char *ep;
929 size_t len;
930
931 strbuf_release(sb);
932 if (!io->input.len)
933 return -1;
934 ep = memchr(io->input.buf, '\n', io->input.len);
935 if (!ep)
936 ep = io->input.buf + io->input.len;
937 else if (*ep == '\n')
938 ep++;
939 len = ep - io->input.buf;
940 strbuf_add(sb, io->input.buf, len);
941 strbuf_remove(&io->input, 0, len);
942 return 0;
943 }
944
945 static int handle_cache(struct index_state *istate,
946 const char *path, unsigned char *hash, const char *output)
947 {
948 mmfile_t mmfile[3] = {{NULL}};
949 mmbuffer_t result = {NULL, 0};
950 const struct cache_entry *ce;
951 int pos, len, i, has_conflicts;
952 struct rerere_io_mem io;
953 int marker_size = ll_merge_marker_size(istate, path);
954
955 /*
956 * Reproduce the conflicted merge in-core
957 */
958 len = strlen(path);
959 pos = index_name_pos(istate, path, len);
960 if (0 <= pos)
961 return -1;
962 pos = -pos - 1;
963
964 while (pos < istate->cache_nr) {
965 enum object_type type;
966 unsigned long size;
967
968 ce = istate->cache[pos++];
969 if (ce_namelen(ce) != len || memcmp(ce->name, path, len))
970 break;
971 i = ce_stage(ce) - 1;
972 if (!mmfile[i].ptr) {
973 mmfile[i].ptr = repo_read_object_file(the_repository,
974 &ce->oid, &type,
975 &size);
976 if (!mmfile[i].ptr)
977 die(_("unable to read %s"),
978 oid_to_hex(&ce->oid));
979 mmfile[i].size = size;
980 }
981 }
982 for (i = 0; i < 3; i++)
983 if (!mmfile[i].ptr && !mmfile[i].size)
984 mmfile[i].ptr = xstrdup("");
985
986 /*
987 * NEEDSWORK: handle conflicts from merges with
988 * merge.renormalize set, too?
989 */
990 ll_merge(&result, path, &mmfile[0], NULL,
991 &mmfile[1], "ours",
992 &mmfile[2], "theirs",
993 istate, NULL);
994 for (i = 0; i < 3; i++)
995 free(mmfile[i].ptr);
996
997 memset(&io, 0, sizeof(io));
998 io.io.getline = rerere_mem_getline;
999 if (output)
1000 io.io.output = fopen(output, "w");
1001 else
1002 io.io.output = NULL;
1003 strbuf_init(&io.input, 0);
1004 strbuf_attach(&io.input, result.ptr, result.size, result.size);
1005
1006 /*
1007 * Grab the conflict ID and optionally write the original
1008 * contents with conflict markers out.
1009 */
1010 has_conflicts = handle_path(hash, (struct rerere_io *)&io, marker_size);
1011 strbuf_release(&io.input);
1012 if (io.io.output)
1013 fclose(io.io.output);
1014 return has_conflicts;
1015 }
1016
1017 static int rerere_forget_one_path(struct index_state *istate,
1018 const char *path,
1019 struct string_list *rr)
1020 {
1021 const char *filename;
1022 struct rerere_id *id;
1023 unsigned char hash[GIT_MAX_RAWSZ];
1024 int ret;
1025 struct string_list_item *item;
1026
1027 /*
1028 * Recreate the original conflict from the stages in the
1029 * index and compute the conflict ID
1030 */
1031 ret = handle_cache(istate, path, hash, NULL);
1032 if (ret < 1)
1033 return error(_("could not parse conflict hunks in '%s'"), path);
1034
1035 /* Nuke the recorded resolution for the conflict */
1036 id = new_rerere_id(hash);
1037
1038 for (id->variant = 0;
1039 id->variant < id->collection->status_nr;
1040 id->variant++) {
1041 mmfile_t cur = { NULL, 0 };
1042 mmbuffer_t result = {NULL, 0};
1043 int cleanly_resolved;
1044
1045 if (!has_rerere_resolution(id))
1046 continue;
1047
1048 handle_cache(istate, path, hash, rerere_path(id, "thisimage"));
1049 if (read_mmfile(&cur, rerere_path(id, "thisimage"))) {
1050 free(cur.ptr);
1051 error(_("failed to update conflicted state in '%s'"), path);
1052 goto fail_exit;
1053 }
1054 cleanly_resolved = !try_merge(istate, id, path, &cur, &result);
1055 free(result.ptr);
1056 free(cur.ptr);
1057 if (cleanly_resolved)
1058 break;
1059 }
1060
1061 if (id->collection->status_nr <= id->variant) {
1062 error(_("no remembered resolution for '%s'"), path);
1063 goto fail_exit;
1064 }
1065
1066 filename = rerere_path(id, "postimage");
1067 if (unlink(filename)) {
1068 if (errno == ENOENT)
1069 error(_("no remembered resolution for '%s'"), path);
1070 else
1071 error_errno(_("cannot unlink '%s'"), filename);
1072 goto fail_exit;
1073 }
1074
1075 /*
1076 * Update the preimage so that the user can resolve the
1077 * conflict in the working tree, run us again to record
1078 * the postimage.
1079 */
1080 handle_cache(istate, path, hash, rerere_path(id, "preimage"));
1081 fprintf_ln(stderr, _("Updated preimage for '%s'"), path);
1082
1083 /*
1084 * And remember that we can record resolution for this
1085 * conflict when the user is done.
1086 */
1087 item = string_list_insert(rr, path);
1088 free_rerere_id(item);
1089 item->util = id;
1090 fprintf(stderr, _("Forgot resolution for '%s'\n"), path);
1091 return 0;
1092
1093 fail_exit:
1094 free(id);
1095 return -1;
1096 }
1097
1098 int rerere_forget(struct repository *r, struct pathspec *pathspec)
1099 {
1100 int i, fd;
1101 struct string_list conflict = STRING_LIST_INIT_DUP;
1102 struct string_list merge_rr = STRING_LIST_INIT_DUP;
1103
1104 if (repo_read_index(r) < 0)
1105 return error(_("index file corrupt"));
1106
1107 fd = setup_rerere(r, &merge_rr, RERERE_NOAUTOUPDATE);
1108 if (fd < 0)
1109 return 0;
1110
1111 /*
1112 * The paths may have been resolved (incorrectly);
1113 * recover the original conflicted state and then
1114 * find the conflicted paths.
1115 */
1116 unmerge_index(r->index, pathspec, 0);
1117 find_conflict(r, &conflict);
1118 for (i = 0; i < conflict.nr; i++) {
1119 struct string_list_item *it = &conflict.items[i];
1120 if (!match_pathspec(r->index, pathspec, it->string,
1121 strlen(it->string), 0, NULL, 0))
1122 continue;
1123 rerere_forget_one_path(r->index, it->string, &merge_rr);
1124 }
1125 return write_rr(&merge_rr, fd);
1126 }
1127
1128 /*
1129 * Garbage collection support
1130 */
1131
1132 static timestamp_t rerere_created_at(struct rerere_id *id)
1133 {
1134 struct stat st;
1135
1136 return stat(rerere_path(id, "preimage"), &st) ? (time_t) 0 : st.st_mtime;
1137 }
1138
1139 static timestamp_t rerere_last_used_at(struct rerere_id *id)
1140 {
1141 struct stat st;
1142
1143 return stat(rerere_path(id, "postimage"), &st) ? (time_t) 0 : st.st_mtime;
1144 }
1145
1146 /*
1147 * Remove the recorded resolution for a given conflict ID
1148 */
1149 static void unlink_rr_item(struct rerere_id *id)
1150 {
1151 unlink_or_warn(rerere_path(id, "thisimage"));
1152 remove_variant(id);
1153 id->collection->status[id->variant] = 0;
1154 }
1155
1156 static void prune_one(struct rerere_id *id,
1157 timestamp_t cutoff_resolve, timestamp_t cutoff_noresolve)
1158 {
1159 timestamp_t then;
1160 timestamp_t cutoff;
1161
1162 then = rerere_last_used_at(id);
1163 if (then)
1164 cutoff = cutoff_resolve;
1165 else {
1166 then = rerere_created_at(id);
1167 if (!then)
1168 return;
1169 cutoff = cutoff_noresolve;
1170 }
1171 if (then < cutoff)
1172 unlink_rr_item(id);
1173 }
1174
1175 /* Does the basename in "path" look plausibly like an rr-cache entry? */
1176 static int is_rr_cache_dirname(const char *path)
1177 {
1178 struct object_id oid;
1179 const char *end;
1180 return !parse_oid_hex(path, &oid, &end) && !*end;
1181 }
1182
1183 void rerere_gc(struct repository *r, struct string_list *rr)
1184 {
1185 struct string_list to_remove = STRING_LIST_INIT_DUP;
1186 DIR *dir;
1187 struct dirent *e;
1188 int i;
1189 timestamp_t now = time(NULL);
1190 timestamp_t cutoff_noresolve = now - 15 * 86400;
1191 timestamp_t cutoff_resolve = now - 60 * 86400;
1192
1193 if (setup_rerere(r, rr, 0) < 0)
1194 return;
1195
1196 git_config_get_expiry_in_days("gc.rerereresolved", &cutoff_resolve, now);
1197 git_config_get_expiry_in_days("gc.rerereunresolved", &cutoff_noresolve, now);
1198 git_config(git_default_config, NULL);
1199 dir = opendir(git_path("rr-cache"));
1200 if (!dir)
1201 die_errno(_("unable to open rr-cache directory"));
1202 /* Collect stale conflict IDs ... */
1203 while ((e = readdir_skip_dot_and_dotdot(dir))) {
1204 struct rerere_dir *rr_dir;
1205 struct rerere_id id;
1206 int now_empty;
1207
1208 if (!is_rr_cache_dirname(e->d_name))
1209 continue; /* or should we remove e->d_name? */
1210
1211 rr_dir = find_rerere_dir(e->d_name);
1212
1213 now_empty = 1;
1214 for (id.variant = 0, id.collection = rr_dir;
1215 id.variant < id.collection->status_nr;
1216 id.variant++) {
1217 prune_one(&id, cutoff_resolve, cutoff_noresolve);
1218 if (id.collection->status[id.variant])
1219 now_empty = 0;
1220 }
1221 if (now_empty)
1222 string_list_append(&to_remove, e->d_name);
1223 }
1224 closedir(dir);
1225
1226 /* ... and then remove the empty directories */
1227 for (i = 0; i < to_remove.nr; i++)
1228 rmdir(git_path("rr-cache/%s", to_remove.items[i].string));
1229 string_list_clear(&to_remove, 0);
1230 rollback_lock_file(&write_lock);
1231 }
1232
1233 /*
1234 * During a conflict resolution, after "rerere" recorded the
1235 * preimages, abandon them if the user did not resolve them or
1236 * record their resolutions. And drop $GIT_DIR/MERGE_RR.
1237 *
1238 * NEEDSWORK: shouldn't we be calling this from "reset --hard"?
1239 */
1240 void rerere_clear(struct repository *r, struct string_list *merge_rr)
1241 {
1242 int i;
1243
1244 if (setup_rerere(r, merge_rr, 0) < 0)
1245 return;
1246
1247 for (i = 0; i < merge_rr->nr; i++) {
1248 struct rerere_id *id = merge_rr->items[i].util;
1249 if (!has_rerere_resolution(id)) {
1250 unlink_rr_item(id);
1251 rmdir(rerere_path(id, NULL));
1252 }
1253 }
1254 unlink_or_warn(git_path_merge_rr(r));
1255 rollback_lock_file(&write_lock);
1256 }