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