]> git.ipfire.org Git - thirdparty/git.git/blame - rerere.c
rerere: fix benign off-by-one non-bug and clarify code
[thirdparty/git.git] / rerere.c
CommitLineData
5b2fd956 1#include "cache.h"
697cc8ef 2#include "lockfile.h"
c455c87c 3#include "string-list.h"
5b2fd956 4#include "rerere.h"
5b2fd956 5#include "xdiff-interface.h"
dea4562b
JH
6#include "dir.h"
7#include "resolve-undo.h"
8#include "ll-merge.h"
8588567c 9#include "attr.h"
01a10b0a 10#include "pathspec.h"
5b2fd956 11
ac49f5ca
MZ
12#define RESOLVED 0
13#define PUNTED 1
14#define THREE_STAGED 2
15void *RERERE_RESOLVED = &RERERE_RESOLVED;
16
5b2fd956
SB
17/* if rerere_enabled == -1, fall back to detection of .git/rr-cache */
18static int rerere_enabled = -1;
19
20/* automatically update cleanly resolved paths to the index */
21static int rerere_autoupdate;
22
23static char *merge_rr_path;
24
90056966 25const char *rerere_path(const char *hex, const char *file)
5b2fd956 26{
90056966 27 return git_path("rr-cache/%s/%s", hex, file);
5b2fd956
SB
28}
29
7e0d4ab5 30static int has_rerere_resolution(const char *hex)
5b2fd956
SB
31{
32 struct stat st;
90056966 33 return !stat(rerere_path(hex, "postimage"), &st);
5b2fd956
SB
34}
35
c455c87c 36static void read_rr(struct string_list *rr)
5b2fd956 37{
f5800f6a 38 struct strbuf buf = STRBUF_INIT;
5b2fd956 39 FILE *in = fopen(merge_rr_path, "r");
f5800f6a 40
5b2fd956
SB
41 if (!in)
42 return;
f5800f6a
JH
43 while (!strbuf_getwholeline(&buf, in, '\0')) {
44 char *path;
45 unsigned char sha1[20];
46
47 /* There has to be the hash, tab, path and then NUL */
48 if (buf.len < 42 || get_sha1_hex(buf.buf, sha1))
5b2fd956 49 die("corrupt MERGE_RR");
f5800f6a
JH
50
51 if (buf.buf[40] != '\t')
5b2fd956 52 die("corrupt MERGE_RR");
f5800f6a
JH
53 buf.buf[40] = '\0';
54 path = buf.buf + 41;
55
56 string_list_insert(rr, path)->util = xstrdup(buf.buf);
5b2fd956 57 }
f5800f6a 58 strbuf_release(&buf);
5b2fd956
SB
59 fclose(in);
60}
61
62static struct lock_file write_lock;
63
c455c87c 64static int write_rr(struct string_list *rr, int out_fd)
5b2fd956
SB
65{
66 int i;
67 for (i = 0; i < rr->nr; i++) {
e2cb6a95
JH
68 struct strbuf buf = STRBUF_INIT;
69
70 assert(rr->items[i].util != RERERE_RESOLVED);
5b2fd956
SB
71 if (!rr->items[i].util)
72 continue;
e2cb6a95
JH
73 strbuf_addf(&buf, "%s\t%s%c",
74 (char *)rr->items[i].util,
75 rr->items[i].string, 0);
76 if (write_in_full(out_fd, buf.buf, buf.len) != buf.len)
5b2fd956 77 die("unable to write rerere record");
e2cb6a95
JH
78
79 strbuf_release(&buf);
5b2fd956
SB
80 }
81 if (commit_lock_file(&write_lock) != 0)
82 die("unable to write rerere record");
83 return 0;
84}
85
a96847cc
JH
86/*
87 * "rerere" interacts with conflicted file contents using this I/O
88 * abstraction. It reads a conflicted contents from one place via
89 * "getline()" method, and optionally can write it out after
90 * normalizing the conflicted hunks to the "output". Subclasses of
91 * rerere_io embed this structure at the beginning of their own
92 * rerere_io object.
93 */
94struct rerere_io {
95 int (*getline)(struct strbuf *, struct rerere_io *);
96 FILE *output;
97 int wrerror;
98 /* some more stuff */
99};
100
47d32af2
AR
101static void ferr_write(const void *p, size_t count, FILE *fp, int *err)
102{
103 if (!count || *err)
104 return;
105 if (fwrite(p, count, 1, fp) != 1)
106 *err = errno;
107}
108
109static inline void ferr_puts(const char *s, FILE *fp, int *err)
110{
111 ferr_write(s, strlen(s), fp, err);
112}
113
27d6b085
JH
114static void rerere_io_putstr(const char *str, struct rerere_io *io)
115{
116 if (io->output)
117 ferr_puts(str, io->output, &io->wrerror);
118}
119
a96847cc
JH
120/*
121 * Write a conflict marker to io->output (if defined).
122 */
191f2417
JH
123static void rerere_io_putconflict(int ch, int size, struct rerere_io *io)
124{
125 char buf[64];
126
127 while (size) {
d3c2749d 128 if (size <= sizeof(buf) - 2) {
191f2417
JH
129 memset(buf, ch, size);
130 buf[size] = '\n';
131 buf[size + 1] = '\0';
132 size = 0;
133 } else {
134 int sz = sizeof(buf) - 1;
d3c2749d
JH
135
136 /*
137 * Make sure we will not write everything out
138 * in this round by leaving at least 1 byte
139 * for the next round, giving the next round
140 * a chance to add the terminating LF. Yuck.
141 */
191f2417
JH
142 if (size <= sz)
143 sz -= (sz - size) + 1;
144 memset(buf, ch, sz);
145 buf[sz] = '\0';
146 size -= sz;
147 }
148 rerere_io_putstr(buf, io);
149 }
150}
151
27d6b085
JH
152static void rerere_io_putmem(const char *mem, size_t sz, struct rerere_io *io)
153{
154 if (io->output)
155 ferr_write(mem, sz, io->output, &io->wrerror);
156}
157
a96847cc
JH
158/*
159 * Subclass of rerere_io that reads from an on-disk file
160 */
27d6b085
JH
161struct rerere_io_file {
162 struct rerere_io io;
163 FILE *input;
164};
165
a96847cc
JH
166/*
167 * ... and its getline() method implementation
168 */
27d6b085
JH
169static int rerere_file_getline(struct strbuf *sb, struct rerere_io *io_)
170{
171 struct rerere_io_file *io = (struct rerere_io_file *)io_;
172 return strbuf_getwholeline(sb, io->input, '\n');
173}
174
67711cdc
JH
175/*
176 * Require the exact number of conflict marker letters, no more, no
177 * less, followed by SP or any whitespace
178 * (including LF).
179 */
180static int is_cmarker(char *buf, int marker_char, int marker_size)
191f2417 181{
67711cdc
JH
182 int want_sp;
183
184 /*
185 * The beginning of our version and the end of their version
186 * always are labeled like "<<<<< ours" or ">>>>> theirs",
187 * hence we set want_sp for them. Note that the version from
188 * the common ancestor in diff3-style output is not always
189 * labelled (e.g. "||||| common" is often seen but "|||||"
190 * alone is also valid), so we do not set want_sp.
191 */
192 want_sp = (marker_char == '<') || (marker_char == '>');
193
191f2417
JH
194 while (marker_size--)
195 if (*buf++ != marker_char)
196 return 0;
197 if (want_sp && *buf != ' ')
198 return 0;
199 return isspace(*buf);
200}
201
202static int handle_path(unsigned char *sha1, struct rerere_io *io, int marker_size)
5b2fd956 203{
9126f009 204 git_SHA_CTX ctx;
cc58d7df
JH
205 int hunk_no = 0;
206 enum {
4b05548f 207 RR_CONTEXT = 0, RR_SIDE_1, RR_SIDE_2, RR_ORIGINAL
cc58d7df 208 } hunk = RR_CONTEXT;
f285a2d7 209 struct strbuf one = STRBUF_INIT, two = STRBUF_INIT;
d58ee6db 210 struct strbuf buf = STRBUF_INIT;
5b2fd956
SB
211
212 if (sha1)
9126f009 213 git_SHA1_Init(&ctx);
5b2fd956 214
27d6b085 215 while (!io->getline(&buf, io)) {
67711cdc 216 if (is_cmarker(buf.buf, '<', marker_size)) {
cc58d7df 217 if (hunk != RR_CONTEXT)
5b2fd956 218 goto bad;
cc58d7df 219 hunk = RR_SIDE_1;
67711cdc 220 } else if (is_cmarker(buf.buf, '|', marker_size)) {
cc58d7df 221 if (hunk != RR_SIDE_1)
5b2fd956 222 goto bad;
387c9d49 223 hunk = RR_ORIGINAL;
67711cdc 224 } else if (is_cmarker(buf.buf, '=', marker_size)) {
387c9d49 225 if (hunk != RR_SIDE_1 && hunk != RR_ORIGINAL)
5b2fd956 226 goto bad;
cc58d7df 227 hunk = RR_SIDE_2;
67711cdc 228 } else if (is_cmarker(buf.buf, '>', marker_size)) {
cc58d7df 229 if (hunk != RR_SIDE_2)
5b2fd956
SB
230 goto bad;
231 if (strbuf_cmp(&one, &two) > 0)
232 strbuf_swap(&one, &two);
233 hunk_no++;
cc58d7df 234 hunk = RR_CONTEXT;
191f2417 235 rerere_io_putconflict('<', marker_size, io);
27d6b085 236 rerere_io_putmem(one.buf, one.len, io);
191f2417 237 rerere_io_putconflict('=', marker_size, io);
27d6b085 238 rerere_io_putmem(two.buf, two.len, io);
191f2417 239 rerere_io_putconflict('>', marker_size, io);
5b2fd956 240 if (sha1) {
9126f009 241 git_SHA1_Update(&ctx, one.buf ? one.buf : "",
5b2fd956 242 one.len + 1);
9126f009 243 git_SHA1_Update(&ctx, two.buf ? two.buf : "",
5b2fd956
SB
244 two.len + 1);
245 }
246 strbuf_reset(&one);
247 strbuf_reset(&two);
cc58d7df 248 } else if (hunk == RR_SIDE_1)
e992d1eb 249 strbuf_addbuf(&one, &buf);
387c9d49
JH
250 else if (hunk == RR_ORIGINAL)
251 ; /* discard */
cc58d7df 252 else if (hunk == RR_SIDE_2)
e992d1eb 253 strbuf_addbuf(&two, &buf);
27d6b085
JH
254 else
255 rerere_io_putstr(buf.buf, io);
5b2fd956
SB
256 continue;
257 bad:
258 hunk = 99; /* force error exit */
259 break;
260 }
261 strbuf_release(&one);
262 strbuf_release(&two);
d58ee6db 263 strbuf_release(&buf);
5b2fd956 264
5b2fd956 265 if (sha1)
9126f009 266 git_SHA1_Final(sha1, &ctx);
27d6b085
JH
267 if (hunk != RR_CONTEXT)
268 return -1;
269 return hunk_no;
270}
271
272static int handle_file(const char *path, unsigned char *sha1, const char *output)
273{
274 int hunk_no = 0;
275 struct rerere_io_file io;
8588567c 276 int marker_size = ll_merge_marker_size(path);
27d6b085
JH
277
278 memset(&io, 0, sizeof(io));
279 io.io.getline = rerere_file_getline;
280 io.input = fopen(path, "r");
281 io.io.wrerror = 0;
282 if (!io.input)
283 return error("Could not open %s", path);
284
285 if (output) {
286 io.io.output = fopen(output, "w");
287 if (!io.io.output) {
288 fclose(io.input);
289 return error("Could not write %s", output);
290 }
291 }
292
191f2417 293 hunk_no = handle_path(sha1, (struct rerere_io *)&io, marker_size);
27d6b085
JH
294
295 fclose(io.input);
296 if (io.io.wrerror)
297 error("There were errors while writing %s (%s)",
298 path, strerror(io.io.wrerror));
299 if (io.io.output && fclose(io.io.output))
300 io.io.wrerror = error("Failed to flush %s: %s",
301 path, strerror(errno));
302
303 if (hunk_no < 0) {
5b2fd956 304 if (output)
691f1a28 305 unlink_or_warn(output);
5b2fd956
SB
306 return error("Could not parse conflict hunks in %s", path);
307 }
27d6b085 308 if (io.io.wrerror)
47d32af2 309 return -1;
5b2fd956
SB
310 return hunk_no;
311}
312
a96847cc
JH
313/*
314 * Subclass of rerere_io that reads from an in-core buffer that is a
315 * strbuf
316 */
dea4562b
JH
317struct rerere_io_mem {
318 struct rerere_io io;
319 struct strbuf input;
320};
321
a96847cc
JH
322/*
323 * ... and its getline() method implementation
324 */
dea4562b
JH
325static int rerere_mem_getline(struct strbuf *sb, struct rerere_io *io_)
326{
327 struct rerere_io_mem *io = (struct rerere_io_mem *)io_;
328 char *ep;
329 size_t len;
330
331 strbuf_release(sb);
332 if (!io->input.len)
333 return -1;
53d8afaf
JS
334 ep = memchr(io->input.buf, '\n', io->input.len);
335 if (!ep)
336 ep = io->input.buf + io->input.len;
337 else if (*ep == '\n')
dea4562b
JH
338 ep++;
339 len = ep - io->input.buf;
340 strbuf_add(sb, io->input.buf, len);
341 strbuf_remove(&io->input, 0, len);
342 return 0;
343}
344
345static int handle_cache(const char *path, unsigned char *sha1, const char *output)
346{
b9e31f59 347 mmfile_t mmfile[3] = {{NULL}};
dea4562b 348 mmbuffer_t result = {NULL, 0};
9c5e6c80 349 const struct cache_entry *ce;
dea4562b
JH
350 int pos, len, i, hunk_no;
351 struct rerere_io_mem io;
8588567c 352 int marker_size = ll_merge_marker_size(path);
dea4562b
JH
353
354 /*
355 * Reproduce the conflicted merge in-core
356 */
357 len = strlen(path);
358 pos = cache_name_pos(path, len);
359 if (0 <= pos)
47d32af2 360 return -1;
dea4562b
JH
361 pos = -pos - 1;
362
74444d4e 363 while (pos < active_nr) {
dea4562b
JH
364 enum object_type type;
365 unsigned long size;
366
dea4562b 367 ce = active_cache[pos++];
b9e31f59 368 if (ce_namelen(ce) != len || memcmp(ce->name, path, len))
74444d4e
JH
369 break;
370 i = ce_stage(ce) - 1;
7d4053b6
JH
371 if (!mmfile[i].ptr) {
372 mmfile[i].ptr = read_sha1_file(ce->sha1, &type, &size);
373 mmfile[i].size = size;
374 }
dea4562b 375 }
74444d4e 376 for (i = 0; i < 3; i++)
dea4562b
JH
377 if (!mmfile[i].ptr && !mmfile[i].size)
378 mmfile[i].ptr = xstrdup("");
74444d4e 379
18b037a5
JN
380 /*
381 * NEEDSWORK: handle conflicts from merges with
382 * merge.renormalize set, too
383 */
f01de62e 384 ll_merge(&result, path, &mmfile[0], NULL,
dea4562b 385 &mmfile[1], "ours",
712516bc 386 &mmfile[2], "theirs", NULL);
dea4562b
JH
387 for (i = 0; i < 3; i++)
388 free(mmfile[i].ptr);
389
af86debc 390 memset(&io, 0, sizeof(io));
dea4562b
JH
391 io.io.getline = rerere_mem_getline;
392 if (output)
393 io.io.output = fopen(output, "w");
394 else
395 io.io.output = NULL;
396 strbuf_init(&io.input, 0);
397 strbuf_attach(&io.input, result.ptr, result.size, result.size);
398
191f2417 399 hunk_no = handle_path(sha1, (struct rerere_io *)&io, marker_size);
dea4562b
JH
400 strbuf_release(&io.input);
401 if (io.io.output)
402 fclose(io.io.output);
5b2fd956
SB
403 return hunk_no;
404}
405
ac49f5ca 406static int check_one_conflict(int i, int *type)
5b2fd956 407{
9c5e6c80 408 const struct cache_entry *e = active_cache[i];
ac49f5ca
MZ
409
410 if (!ce_stage(e)) {
411 *type = RESOLVED;
412 return i + 1;
413 }
414
415 *type = PUNTED;
5eda906b 416 while (ce_stage(active_cache[i]) == 1)
fb70a06d 417 i++;
ac49f5ca
MZ
418
419 /* Only handle regular files with both stages #2 and #3 */
420 if (i + 1 < active_nr) {
9c5e6c80
NTND
421 const struct cache_entry *e2 = active_cache[i];
422 const struct cache_entry *e3 = active_cache[i + 1];
5b2fd956
SB
423 if (ce_stage(e2) == 2 &&
424 ce_stage(e3) == 3 &&
ac49f5ca 425 ce_same_name(e, e3) &&
5b2fd956 426 S_ISREG(e2->ce_mode) &&
ac49f5ca
MZ
427 S_ISREG(e3->ce_mode))
428 *type = THREE_STAGED;
429 }
430
431 /* Skip the entries with the same name */
432 while (i < active_nr && ce_same_name(e, active_cache[i]))
433 i++;
434 return i;
435}
436
437static int find_conflict(struct string_list *conflict)
438{
439 int i;
440 if (read_cache() < 0)
441 return error("Could not read index");
442
443 for (i = 0; i < active_nr;) {
444 int conflict_type;
9c5e6c80 445 const struct cache_entry *e = active_cache[i];
ac49f5ca
MZ
446 i = check_one_conflict(i, &conflict_type);
447 if (conflict_type == THREE_STAGED)
448 string_list_insert(conflict, (const char *)e->name);
449 }
450 return 0;
451}
452
453int rerere_remaining(struct string_list *merge_rr)
454{
455 int i;
456 if (read_cache() < 0)
457 return error("Could not read index");
458
459 for (i = 0; i < active_nr;) {
460 int conflict_type;
9c5e6c80 461 const struct cache_entry *e = active_cache[i];
ac49f5ca
MZ
462 i = check_one_conflict(i, &conflict_type);
463 if (conflict_type == PUNTED)
464 string_list_insert(merge_rr, (const char *)e->name);
465 else if (conflict_type == RESOLVED) {
466 struct string_list_item *it;
467 it = string_list_lookup(merge_rr, (const char *)e->name);
468 if (it != NULL) {
469 free(it->util);
470 it->util = RERERE_RESOLVED;
471 }
5b2fd956
SB
472 }
473 }
474 return 0;
475}
476
477static int merge(const char *name, const char *path)
478{
479 int ret;
689b8c29 480 mmfile_t cur = {NULL, 0}, base = {NULL, 0}, other = {NULL, 0};
5b2fd956 481 mmbuffer_t result = {NULL, 0};
5b2fd956 482
90056966 483 if (handle_file(path, NULL, rerere_path(name, "thisimage")) < 0)
5b2fd956
SB
484 return 1;
485
90056966
SG
486 if (read_mmfile(&cur, rerere_path(name, "thisimage")) ||
487 read_mmfile(&base, rerere_path(name, "preimage")) ||
689b8c29
BW
488 read_mmfile(&other, rerere_path(name, "postimage"))) {
489 ret = 1;
490 goto out;
491 }
1e4cd68c 492 ret = ll_merge(&result, path, &base, NULL, &cur, "", &other, "", NULL);
5b2fd956 493 if (!ret) {
7d7ff15b
SG
494 FILE *f;
495
496 if (utime(rerere_path(name, "postimage"), NULL) < 0)
497 warning("failed utime() on %s: %s",
498 rerere_path(name, "postimage"),
499 strerror(errno));
500 f = fopen(path, "w");
5b2fd956 501 if (!f)
47d32af2
AR
502 return error("Could not open %s: %s", path,
503 strerror(errno));
504 if (fwrite(result.ptr, result.size, 1, f) != 1)
505 error("Could not write %s: %s", path, strerror(errno));
506 if (fclose(f))
507 return error("Writing %s failed: %s", path,
508 strerror(errno));
5b2fd956
SB
509 }
510
689b8c29 511out:
5b2fd956
SB
512 free(cur.ptr);
513 free(base.ptr);
514 free(other.ptr);
515 free(result.ptr);
516
517 return ret;
518}
519
520static struct lock_file index_lock;
521
89ea9035 522static void update_paths(struct string_list *update)
5b2fd956
SB
523{
524 int i;
5b2fd956 525
89ea9035 526 hold_locked_index(&index_lock, 1);
5b2fd956
SB
527
528 for (i = 0; i < update->nr; i++) {
c455c87c 529 struct string_list_item *item = &update->items[i];
89ea9035
JN
530 if (add_file_to_cache(item->string, 0))
531 exit(128);
a14c7ab8
JH
532 fprintf(stderr, "Staged '%s' using previous resolution.\n",
533 item->string);
5b2fd956
SB
534 }
535
89ea9035 536 if (active_cache_changed) {
03b86647 537 if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK))
5b2fd956 538 die("Unable to write new index file");
89ea9035 539 } else
5b2fd956 540 rollback_lock_file(&index_lock);
5b2fd956
SB
541}
542
c455c87c 543static int do_plain_rerere(struct string_list *rr, int fd)
5b2fd956 544{
183113a5
TF
545 struct string_list conflict = STRING_LIST_INIT_DUP;
546 struct string_list update = STRING_LIST_INIT_DUP;
5b2fd956
SB
547 int i;
548
549 find_conflict(&conflict);
550
551 /*
552 * MERGE_RR records paths with conflicts immediately after merge
553 * failed. Some of the conflicted paths might have been hand resolved
554 * in the working tree since then, but the initial run would catch all
555 * and register their preimages.
556 */
557
558 for (i = 0; i < conflict.nr; i++) {
c455c87c
JS
559 const char *path = conflict.items[i].string;
560 if (!string_list_has_string(rr, path)) {
5b2fd956
SB
561 unsigned char sha1[20];
562 char *hex;
563 int ret;
564 ret = handle_file(path, sha1, NULL);
565 if (ret < 1)
566 continue;
567 hex = xstrdup(sha1_to_hex(sha1));
78a395d3 568 string_list_insert(rr, path)->util = hex;
fd956338 569 if (mkdir_in_gitdir(git_path("rr-cache/%s", hex)))
ba19a808 570 continue;
90056966 571 handle_file(path, NULL, rerere_path(hex, "preimage"));
5b2fd956
SB
572 fprintf(stderr, "Recorded preimage for '%s'\n", path);
573 }
574 }
575
576 /*
577 * Now some of the paths that had conflicts earlier might have been
578 * hand resolved. Others may be similar to a conflict already that
579 * was resolved before.
580 */
581
582 for (i = 0; i < rr->nr; i++) {
583 int ret;
c455c87c 584 const char *path = rr->items[i].string;
5b2fd956
SB
585 const char *name = (const char *)rr->items[i].util;
586
90056966 587 if (has_rerere_resolution(name)) {
a14c7ab8
JH
588 if (merge(name, path))
589 continue;
590
591 if (rerere_autoupdate)
592 string_list_insert(&update, path);
593 else
594 fprintf(stderr,
595 "Resolved '%s' using previous resolution.\n",
596 path);
597 goto mark_resolved;
5b2fd956
SB
598 }
599
600 /* Let's see if we have resolved it. */
601 ret = handle_file(path, NULL, NULL);
602 if (ret)
603 continue;
604
605 fprintf(stderr, "Recorded resolution for '%s'.\n", path);
90056966 606 copy_file(rerere_path(name, "postimage"), path, 0666);
5b2fd956 607 mark_resolved:
8d9b5a4a 608 free(rr->items[i].util);
5b2fd956
SB
609 rr->items[i].util = NULL;
610 }
611
612 if (update.nr)
613 update_paths(&update);
614
615 return write_rr(rr, fd);
616}
617
633e5ad3 618static void git_rerere_config(void)
5b2fd956 619{
633e5ad3
TA
620 git_config_get_bool("rerere.enabled", &rerere_enabled);
621 git_config_get_bool("rerere.autoupdate", &rerere_autoupdate);
622 git_config(git_default_config, NULL);
5b2fd956
SB
623}
624
625static int is_rerere_enabled(void)
626{
5b2fd956
SB
627 const char *rr_cache;
628 int rr_cache_exists;
629
630 if (!rerere_enabled)
631 return 0;
632
633 rr_cache = git_path("rr-cache");
90b4a71c 634 rr_cache_exists = is_directory(rr_cache);
5b2fd956
SB
635 if (rerere_enabled < 0)
636 return rr_cache_exists;
637
90a6464b 638 if (!rr_cache_exists && mkdir_in_gitdir(rr_cache))
5b2fd956
SB
639 die("Could not create directory %s", rr_cache);
640 return 1;
641}
642
cb6020bb 643int setup_rerere(struct string_list *merge_rr, int flags)
5b2fd956
SB
644{
645 int fd;
646
633e5ad3 647 git_rerere_config();
5b2fd956
SB
648 if (!is_rerere_enabled())
649 return -1;
650
cb6020bb
JH
651 if (flags & (RERERE_AUTOUPDATE|RERERE_NOAUTOUPDATE))
652 rerere_autoupdate = !!(flags & RERERE_AUTOUPDATE);
a4f34cbb 653 merge_rr_path = git_pathdup("MERGE_RR");
acd3b9ec
JH
654 fd = hold_lock_file_for_update(&write_lock, merge_rr_path,
655 LOCK_DIE_ON_ERROR);
5b2fd956
SB
656 read_rr(merge_rr);
657 return fd;
658}
659
cb6020bb 660int rerere(int flags)
5b2fd956 661{
183113a5 662 struct string_list merge_rr = STRING_LIST_INIT_DUP;
5b2fd956
SB
663 int fd;
664
cb6020bb 665 fd = setup_rerere(&merge_rr, flags);
5b2fd956
SB
666 if (fd < 0)
667 return 0;
668 return do_plain_rerere(&merge_rr, fd);
669}
dea4562b
JH
670
671static int rerere_forget_one_path(const char *path, struct string_list *rr)
672{
673 const char *filename;
674 char *hex;
675 unsigned char sha1[20];
676 int ret;
8d9b5a4a 677 struct string_list_item *item;
dea4562b
JH
678
679 ret = handle_cache(path, sha1, NULL);
680 if (ret < 1)
681 return error("Could not parse conflict hunks in '%s'", path);
682 hex = xstrdup(sha1_to_hex(sha1));
683 filename = rerere_path(hex, "postimage");
684 if (unlink(filename))
685 return (errno == ENOENT
686 ? error("no remembered resolution for %s", path)
687 : error("cannot unlink %s: %s", filename, strerror(errno)));
688
689 handle_cache(path, sha1, rerere_path(hex, "preimage"));
690 fprintf(stderr, "Updated preimage for '%s'\n", path);
691
8d9b5a4a
JH
692 item = string_list_insert(rr, path);
693 free(item->util);
694 item->util = hex;
dea4562b
JH
695 fprintf(stderr, "Forgot resolution for %s\n", path);
696 return 0;
697}
698
01a10b0a 699int rerere_forget(struct pathspec *pathspec)
dea4562b
JH
700{
701 int i, fd;
183113a5
TF
702 struct string_list conflict = STRING_LIST_INIT_DUP;
703 struct string_list merge_rr = STRING_LIST_INIT_DUP;
dea4562b
JH
704
705 if (read_cache() < 0)
706 return error("Could not read index");
707
6751e047 708 fd = setup_rerere(&merge_rr, RERERE_NOAUTOUPDATE);
dea4562b
JH
709
710 unmerge_cache(pathspec);
711 find_conflict(&conflict);
712 for (i = 0; i < conflict.nr; i++) {
713 struct string_list_item *it = &conflict.items[i];
854b0959 714 if (!match_pathspec(pathspec, it->string,
ae8d0824 715 strlen(it->string), 0, NULL, 0))
dea4562b
JH
716 continue;
717 rerere_forget_one_path(it->string, &merge_rr);
718 }
719 return write_rr(&merge_rr, fd);
720}
0f891e7d
JH
721
722static time_t rerere_created_at(const char *name)
723{
724 struct stat st;
725 return stat(rerere_path(name, "preimage"), &st) ? (time_t) 0 : st.st_mtime;
726}
727
728static time_t rerere_last_used_at(const char *name)
729{
730 struct stat st;
731 return stat(rerere_path(name, "postimage"), &st) ? (time_t) 0 : st.st_mtime;
732}
733
734static void unlink_rr_item(const char *name)
735{
736 unlink(rerere_path(name, "thisimage"));
737 unlink(rerere_path(name, "preimage"));
738 unlink(rerere_path(name, "postimage"));
739 rmdir(git_path("rr-cache/%s", name));
740}
741
0f891e7d
JH
742void rerere_gc(struct string_list *rr)
743{
744 struct string_list to_remove = STRING_LIST_INIT_DUP;
745 DIR *dir;
746 struct dirent *e;
747 int i, cutoff;
748 time_t now = time(NULL), then;
633e5ad3
TA
749 int cutoff_noresolve = 15;
750 int cutoff_resolve = 60;
0f891e7d 751
633e5ad3
TA
752 git_config_get_int("gc.rerereresolved", &cutoff_resolve);
753 git_config_get_int("gc.rerereunresolved", &cutoff_noresolve);
754 git_config(git_default_config, NULL);
0f891e7d
JH
755 dir = opendir(git_path("rr-cache"));
756 if (!dir)
757 die_errno("unable to open rr-cache directory");
758 while ((e = readdir(dir))) {
759 if (is_dot_or_dotdot(e->d_name))
760 continue;
761
762 then = rerere_last_used_at(e->d_name);
763 if (then) {
633e5ad3 764 cutoff = cutoff_resolve;
0f891e7d
JH
765 } else {
766 then = rerere_created_at(e->d_name);
767 if (!then)
768 continue;
633e5ad3 769 cutoff = cutoff_noresolve;
0f891e7d
JH
770 }
771 if (then < now - cutoff * 86400)
772 string_list_append(&to_remove, e->d_name);
773 }
a9930e35 774 closedir(dir);
0f891e7d
JH
775 for (i = 0; i < to_remove.nr; i++)
776 unlink_rr_item(to_remove.items[i].string);
777 string_list_clear(&to_remove, 0);
778}
779
780void rerere_clear(struct string_list *merge_rr)
781{
782 int i;
783
784 for (i = 0; i < merge_rr->nr; i++) {
785 const char *name = (const char *)merge_rr->items[i].util;
786 if (!has_rerere_resolution(name))
787 unlink_rr_item(name);
788 }
789 unlink_or_warn(git_path("MERGE_RR"));
790}