Blob


1 /* $OpenBSD: diff3.c,v 1.41 2016/10/18 21:06:52 millert Exp $ */
3 /*
4 * Copyright (C) Caldera International Inc. 2001-2002.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code and documentation must retain the above
11 * copyright notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed or owned by Caldera
18 * International, Inc.
19 * 4. Neither the name of Caldera International, Inc. nor the names of other
20 * contributors may be used to endorse or promote products derived from
21 * this software without specific prior written permission.
22 *
23 * USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA
24 * INTERNATIONAL, INC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL CALDERA INTERNATIONAL, INC. BE LIABLE FOR ANY DIRECT,
28 * INDIRECT INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36 /*-
37 * Copyright (c) 1991, 1993
38 * The Regents of the University of California. All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 * 3. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * SUCH DAMAGE.
63 *
64 * @(#)diff3.c 8.1 (Berkeley) 6/6/93
65 */
67 #include <sys/stat.h>
68 #include <sys/queue.h>
70 #include <ctype.h>
71 #include <limits.h>
72 #include <stdio.h>
73 #include <stdarg.h>
74 #include <stdlib.h>
75 #include <string.h>
76 #include <time.h>
77 #include <unistd.h>
79 #include "got_error.h"
80 #include "got_opentemp.h"
81 #include "got_object.h"
83 #include "buf.h"
84 #include "rcsutil.h"
85 #include "got_lib_diff.h"
87 #ifndef nitems
88 #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
89 #endif
91 /* diff3 - 3-way differential file comparison */
93 /* diff3 [-ex3EX] d13 d23 f1 f2 f3 [m1 m3]
94 *
95 * d13 = diff report on f1 vs f3
96 * d23 = diff report on f2 vs f3
97 * f1, f2, f3 the 3 files
98 * if changes in f1 overlap with changes in f3, m1 and m3 are used
99 * to mark the overlaps; otherwise, the file names f1 and f3 are used
100 * (only for options E and X).
101 */
103 /*
104 * "from" is first in range of changed lines; "to" is last+1
105 * from=to=line after point of insertion for added lines.
106 */
107 struct line_range {
108 int from;
109 int to;
110 };
112 struct off_range {
113 off_t from;
114 off_t to;
115 };
117 struct diff {
118 struct line_range old;
119 struct line_range new;
120 struct off_range oldo;
121 struct off_range newo;
122 };
124 struct diff3_state {
125 size_t szchanges;
127 struct diff *d13;
128 struct diff *d23;
130 /*
131 * "de" is used to gather editing scripts. These are later spewed out
132 * in reverse order. Its first element must be all zero, the "new"
133 * component of "de" contains line positions, and "oldo" and "newo"
134 * components contain byte positions.
135 * Array overlap indicates which sections in "de" correspond to lines
136 * that are different in all three files.
137 */
138 struct diff *de;
139 char *overlap;
140 int overlapcnt;
141 FILE *fp[3];
142 int cline[3]; /* # of the last-read line in each file (0-2) */
144 /*
145 * the latest known correspondence between line numbers of the 3 files
146 * is stored in last[1-3];
147 */
148 int last[4];
149 char f1mark[PATH_MAX];
150 char f2mark[PATH_MAX];
151 char f3mark[PATH_MAX];
153 char *buf;
155 BUF *diffbuf;
156 };
159 static const struct got_error *duplicate(int *, int, struct line_range *,
160 struct line_range *, struct diff3_state *);
161 static const struct got_error *edit(struct diff *, int, int *,
162 struct diff3_state *);
163 static const struct got_error *getchange(char **, FILE *, struct diff3_state *);
164 static const struct got_error *get_line(char **, FILE *, size_t *,
165 struct diff3_state *);
166 static int number(char **);
167 static const struct got_error *readin(size_t *, char *, struct diff **,
168 struct diff3_state *);
169 static int ed_patch_lines(struct rcs_lines *, struct rcs_lines *);
170 static const struct got_error *skip(size_t *, int, int, struct diff3_state *);
171 static const struct got_error *edscript(int, struct diff3_state *);
172 static const struct got_error *merge(size_t, size_t, struct diff3_state *);
173 static const struct got_error *prange(struct line_range *, struct diff3_state *);
174 static const struct got_error *repos(int, struct diff3_state *);
175 static const struct got_error *increase(struct diff3_state *);
176 static const struct got_error *diff3_internal(char *, char *, char *,
177 char *, char *, const char *, const char *, struct diff3_state *,
178 const char *, const char *, const char *);
180 static const struct got_error *
181 diff_output(BUF *diffbuf, const char *fmt, ...)
183 const struct got_error *err = NULL;
184 va_list vap;
185 int i;
186 char *str;
187 size_t newsize;
189 va_start(vap, fmt);
190 i = vasprintf(&str, fmt, vap);
191 va_end(vap);
192 if (i == -1)
193 return got_error_from_errno("vasprintf");
194 err = buf_append(&newsize, diffbuf, str, strlen(str));
195 free(str);
196 return err;
199 static const struct got_error*
200 diffreg(BUF **d, const char *path1, const char *path2,
201 enum got_diff_algorithm diff_algo)
203 const struct got_error *err = NULL;
204 FILE *f1 = NULL, *f2 = NULL, *outfile = NULL;
205 char *outpath = NULL;
206 struct got_diffreg_result *diffreg_result = NULL;
208 *d = NULL;
210 f1 = fopen(path1, "r");
211 if (f1 == NULL) {
212 err = got_error_from_errno2("fopen", path1);
213 goto done;
215 f2 = fopen(path2, "r");
216 if (f1 == NULL) {
217 err = got_error_from_errno2("fopen", path2);
218 goto done;
221 err = got_opentemp_named(&outpath, &outfile,
222 GOT_TMPDIR_STR "/got-diffreg");
223 if (err)
224 goto done;
226 err = got_diffreg(&diffreg_result, f1, f2, diff_algo, 0, 1);
227 if (err)
228 goto done;
230 err = got_diffreg_output(NULL, NULL, diffreg_result, 1, 1, "", "",
231 GOT_DIFF_OUTPUT_EDSCRIPT, 0, outfile);
232 if (err)
233 goto done;
235 if (fflush(outfile) != 0) {
236 err = got_error_from_errno2("fflush", outpath);
237 goto done;
239 if (fseek(outfile, 0L, SEEK_SET) == -1) {
240 err = got_ferror(outfile, GOT_ERR_IO);
241 goto done;
244 err = buf_load(d, outfile);
245 done:
246 if (outpath) {
247 if (unlink(outpath) == -1 && err == NULL)
248 err = got_error_from_errno2("unlink", outpath);
249 free(outpath);
251 if (outfile && fclose(outfile) == EOF && err == NULL)
252 err = got_error_from_errno("fclose");
253 if (f1 && fclose(f1) == EOF && err == NULL)
254 err = got_error_from_errno("fclose");
255 if (f2 && fclose(f2) == EOF && err == NULL)
256 err = got_error_from_errno("fclose");
257 return err;
260 /*
261 * For merge(1).
262 */
263 const struct got_error *
264 got_merge_diff3(int *overlapcnt, int outfd, FILE *f1, FILE *f2,
265 FILE *f3, const char *label1, const char *label2, const char *label3,
266 enum got_diff_algorithm diff_algo)
268 const struct got_error *err = NULL;
269 char *dp13, *dp23, *path1, *path2, *path3;
270 BUF *b1, *b2, *b3, *d1, *d2, *diffb;
271 u_char *data, *patch;
272 size_t dlen, plen, i;
273 struct diff3_state *d3s;
275 *overlapcnt = 0;
277 d3s = calloc(1, sizeof(*d3s));
278 if (d3s == NULL)
279 return got_error_from_errno("calloc");
281 b1 = b2 = b3 = d1 = d2 = diffb = NULL;
282 dp13 = dp23 = path1 = path2 = path3 = NULL;
283 data = patch = NULL;
285 err = buf_load(&b1, f1);
286 if (err)
287 goto out;
288 err = buf_load(&b2, f2);
289 if (err)
290 goto out;
291 err = buf_load(&b3, f3);
292 if (err)
293 goto out;
295 err = buf_alloc(&diffb, 128);
296 if (err)
297 goto out;
299 if (asprintf(&path1, GOT_TMPDIR_STR "/got-diff1.XXXXXXXX") == -1) {
300 err = got_error_from_errno("asprintf");
301 goto out;
303 if (asprintf(&path2, GOT_TMPDIR_STR "/got-diff2.XXXXXXXX") == -1) {
304 err = got_error_from_errno("asprintf");
305 goto out;
307 if (asprintf(&path3, GOT_TMPDIR_STR "/got-diff3.XXXXXXXX") == -1) {
308 err = got_error_from_errno("asprintf");
309 goto out;
312 err = buf_write_stmp(b1, path1);
313 if (err)
314 goto out;
315 err = buf_write_stmp(b2, path2);
316 if (err)
317 goto out;
318 err = buf_write_stmp(b3, path3);
319 if (err)
320 goto out;
322 buf_free(b2);
323 b2 = NULL;
325 err = diffreg(&d1, path1, path3, diff_algo);
326 if (err) {
327 buf_free(diffb);
328 diffb = NULL;
329 goto out;
332 err = diffreg(&d2, path2, path3, diff_algo);
333 if (err) {
334 buf_free(diffb);
335 diffb = NULL;
336 goto out;
339 if (asprintf(&dp13, GOT_TMPDIR_STR "/got-d13.XXXXXXXXXX") == -1) {
340 err = got_error_from_errno("asprintf");
341 goto out;
343 err = buf_write_stmp(d1, dp13);
344 if (err)
345 goto out;
347 buf_free(d1);
348 d1 = NULL;
350 if (asprintf(&dp23, GOT_TMPDIR_STR "/got-d23.XXXXXXXXXX") == -1) {
351 err = got_error_from_errno("asprintf");
352 goto out;
354 err = buf_write_stmp(d2, dp23);
355 if (err)
356 goto out;
358 buf_free(d2);
359 d2 = NULL;
361 d3s->diffbuf = diffb;
362 err = diff3_internal(dp13, dp23, path1, path2, path3,
363 label1, label3, d3s, label1, label2, label3);
364 if (err) {
365 buf_free(diffb);
366 diffb = NULL;
367 goto out;
370 plen = buf_len(diffb);
371 patch = buf_release(diffb);
372 dlen = buf_len(b1);
373 data = buf_release(b1);
375 diffb = rcs_patchfile(data, dlen, patch, plen, ed_patch_lines);
376 out:
377 buf_free(b2);
378 buf_free(b3);
379 buf_free(d1);
380 buf_free(d2);
382 if (unlink(path1) == -1 && err == NULL)
383 err = got_error_from_errno2("unlink", path1);
384 if (unlink(path2) == -1 && err == NULL)
385 err = got_error_from_errno2("unlink", path2);
386 if (unlink(path3) == -1 && err == NULL)
387 err = got_error_from_errno2("unlink", path3);
388 if (unlink(dp13) == -1 && err == NULL)
389 err = got_error_from_errno2("unlink", dp13);
390 if (unlink(dp23) == -1 && err == NULL)
391 err = got_error_from_errno2("unlink", dp23);
393 free(path1);
394 free(path2);
395 free(path3);
396 free(dp13);
397 free(dp23);
398 free(data);
399 free(patch);
401 for (i = 0; i < nitems(d3s->fp); i++) {
402 if (d3s->fp[i] && fclose(d3s->fp[i]) == EOF && err == NULL)
403 err = got_error_from_errno("fclose");
405 if (err == NULL && diffb) {
406 if (buf_write_fd(diffb, outfd) < 0)
407 err = got_error_from_errno("buf_write_fd");
408 *overlapcnt = d3s->overlapcnt;
410 free(d3s);
411 buf_free(diffb);
412 return err;
415 static const struct got_error *
416 diff3_internal(char *dp13, char *dp23, char *path1, char *path2, char *path3,
417 const char *fmark, const char *rmark, struct diff3_state *d3s,
418 const char *label1, const char *label2, const char *label3)
420 const struct got_error *err = NULL;
421 ssize_t m, n;
422 int i;
424 i = snprintf(d3s->f1mark, sizeof(d3s->f1mark),
425 "%s%s%s", GOT_DIFF_CONFLICT_MARKER_BEGIN,
426 label1 ? " " : "", label1 ? label1 : "");
427 if (i < 0 || i >= (int)sizeof(d3s->f1mark))
428 return got_error(GOT_ERR_NO_SPACE);
430 i = snprintf(d3s->f2mark, sizeof(d3s->f2mark),
431 "%s%s%s", GOT_DIFF_CONFLICT_MARKER_ORIG,
432 label2 ? " " : "", label2 ? label2 : "");
433 if (i < 0 || i >= (int)sizeof(d3s->f2mark))
434 return got_error(GOT_ERR_NO_SPACE);
436 i = snprintf(d3s->f3mark, sizeof(d3s->f3mark),
437 "%s%s%s", GOT_DIFF_CONFLICT_MARKER_END,
438 label3 ? " " : "", label3 ? label3 : "");
439 if (i < 0 || i >= (int)sizeof(d3s->f3mark))
440 return got_error(GOT_ERR_NO_SPACE);
442 err = increase(d3s);
443 if (err)
444 return err;
446 err = readin(&m, dp13, &d3s->d13, d3s);
447 if (err)
448 return err;
449 err = readin(&n, dp23, &d3s->d23, d3s);
450 if (err)
451 return err;
453 if ((d3s->fp[0] = fopen(path1, "r")) == NULL)
454 return got_error_from_errno2("fopen", path1);
455 if ((d3s->fp[1] = fopen(path2, "r")) == NULL)
456 return got_error_from_errno2("fopen", path2);
457 if ((d3s->fp[2] = fopen(path3, "r")) == NULL)
458 return got_error_from_errno2("fopen", path3);
460 return merge(m, n, d3s);
463 static int
464 ed_patch_lines(struct rcs_lines *dlines, struct rcs_lines *plines)
466 char op, *ep;
467 struct rcs_line *sort, *lp, *dlp, *ndlp, *insert_after;
468 int start, end, i, lineno;
469 u_char tmp;
471 dlp = TAILQ_FIRST(&(dlines->l_lines));
472 lp = TAILQ_FIRST(&(plines->l_lines));
474 end = 0;
475 for (lp = TAILQ_NEXT(lp, l_list); lp != NULL;
476 lp = TAILQ_NEXT(lp, l_list)) {
477 /* Skip blank lines */
478 if (lp->l_len < 2)
479 continue;
481 /* NUL-terminate line buffer for strtol() safety. */
482 tmp = lp->l_line[lp->l_len - 1];
483 lp->l_line[lp->l_len - 1] = '\0';
485 /* len - 1 is NUL terminator so we use len - 2 for 'op' */
486 op = lp->l_line[lp->l_len - 2];
487 start = (int)strtol(lp->l_line, &ep, 10);
489 /* Restore the last byte of the buffer */
490 lp->l_line[lp->l_len - 1] = tmp;
492 if (op == 'a') {
493 if (start > dlines->l_nblines ||
494 start < 0 || *ep != 'a')
495 return -1;
496 } else if (op == 'c') {
497 if (start > dlines->l_nblines ||
498 start < 0 || (*ep != ',' && *ep != 'c'))
499 return -1;
501 if (*ep == ',') {
502 ep++;
503 end = (int)strtol(ep, &ep, 10);
504 if (end < 0 || *ep != 'c')
505 return -1;
506 } else {
507 end = start;
512 for (;;) {
513 if (dlp == NULL)
514 break;
515 if (dlp->l_lineno == start)
516 break;
517 if (dlp->l_lineno > start) {
518 dlp = TAILQ_PREV(dlp, tqh, l_list);
519 } else if (dlp->l_lineno < start) {
520 ndlp = TAILQ_NEXT(dlp, l_list);
521 if (ndlp->l_lineno > start)
522 break;
523 dlp = ndlp;
527 if (dlp == NULL)
528 return -1;
531 if (op == 'c') {
532 insert_after = TAILQ_PREV(dlp, tqh, l_list);
533 for (i = 0; i <= (end - start); i++) {
534 ndlp = TAILQ_NEXT(dlp, l_list);
535 TAILQ_REMOVE(&(dlines->l_lines), dlp, l_list);
536 dlp = ndlp;
538 dlp = insert_after;
541 if (op == 'a' || op == 'c') {
542 for (;;) {
543 ndlp = lp;
544 lp = TAILQ_NEXT(lp, l_list);
545 if (lp == NULL)
546 return -1;
548 if (lp->l_len == 2 &&
549 lp->l_line[0] == '.' &&
550 lp->l_line[1] == '\n')
551 break;
553 if (lp->l_line[0] == ':') {
554 lp->l_line++;
555 lp->l_len--;
557 TAILQ_REMOVE(&(plines->l_lines), lp, l_list);
558 TAILQ_INSERT_AFTER(&(dlines->l_lines), dlp,
559 lp, l_list);
560 dlp = lp;
562 lp->l_lineno = start;
563 lp = ndlp;
567 /*
568 * always resort lines as the markers might be put at the
569 * same line as we first started editing.
570 */
571 lineno = 0;
572 TAILQ_FOREACH(sort, &(dlines->l_lines), l_list)
573 sort->l_lineno = lineno++;
574 dlines->l_nblines = lineno - 1;
577 return (0);
580 /*
581 * Pick up the line numbers of all changes from one change file.
582 * (This puts the numbers in a vector, which is not strictly necessary,
583 * since the vector is processed in one sequential pass.
584 * The vector could be optimized out of existence)
585 */
586 static const struct got_error *
587 readin(size_t *n, char *name, struct diff **dd, struct diff3_state *d3s)
589 const struct got_error *err = NULL;
590 FILE *f;
591 int a, b, c, d;
592 char kind, *p;
593 size_t i = 0;
595 *n = 0;
597 f = fopen(name, "r");
598 if (f == NULL)
599 return got_error_from_errno2("fopen", name);
600 err = getchange(&p, f, d3s);
601 if (err)
602 goto done;
603 for (i = 0; p; i++) {
604 if (i >= d3s->szchanges - 1) {
605 err = increase(d3s);
606 if (err)
607 goto done;
609 a = b = number(&p);
610 if (*p == ',') {
611 p++;
612 b = number(&p);
614 kind = *p++;
615 c = d = number(&p);
616 if (*p == ',') {
617 p++;
618 d = number(&p);
620 if (kind == 'a')
621 a++;
622 if (kind == 'd')
623 c++;
624 b++;
625 d++;
626 (*dd)[i].old.from = a;
627 (*dd)[i].old.to = b;
628 (*dd)[i].new.from = c;
629 (*dd)[i].new.to = d;
631 err = getchange(&p, f, d3s);
632 if (err)
633 goto done;
636 if (i) {
637 (*dd)[i].old.from = (*dd)[i - 1].old.to;
638 (*dd)[i].new.from = (*dd)[i - 1].new.to;
640 done:
641 if (fclose(f) == EOF && err == NULL)
642 err = got_error_from_errno("fclose");
643 if (err == NULL)
644 *n = i;
645 return err;
648 static int
649 number(char **lc)
651 int nn;
653 nn = 0;
654 while (isdigit((unsigned char)(**lc)))
655 nn = nn*10 + *(*lc)++ - '0';
657 return (nn);
660 static const struct got_error *
661 getchange(char **line, FILE *b, struct diff3_state *d3s)
663 const struct got_error *err = NULL;
665 *line = NULL;
666 do {
667 if (*line && isdigit((unsigned char)(*line)[0]))
668 return NULL;
669 err = get_line(line, b, NULL, d3s);
670 if (err)
671 return err;
672 } while (*line);
674 return NULL;
677 static const struct got_error *
678 get_line(char **ret, FILE *b, size_t *n, struct diff3_state *d3s)
680 const struct got_error *err = NULL;
681 char *cp = NULL;
682 size_t size;
683 ssize_t len;
684 char *new;
686 *ret = NULL;
688 len = getline(&cp, &size, b);
689 if (len == -1) {
690 if (ferror(b))
691 err = got_error_from_errno("getline");
692 goto done;
695 if (cp[len - 1] != '\n') {
696 len++;
697 if (len + 1 > size) {
698 new = realloc(cp, len + 1);
699 if (new == NULL) {
700 err = got_error_from_errno("realloc");
701 goto done;
703 cp = new;
705 cp[len - 1] = '\n';
706 cp[len] = '\0';
709 free(d3s->buf);
710 *ret = d3s->buf = cp;
711 cp = NULL;
712 if (n != NULL)
713 *n = len;
714 done:
715 free(cp);
716 return err;
719 static const struct got_error *
720 merge(size_t m1, size_t m2, struct diff3_state *d3s)
722 const struct got_error *err = NULL;
723 struct diff *d1, *d2;
724 int dpl, j, t1, t2;
726 d1 = d3s->d13;
727 d2 = d3s->d23;
728 j = 0;
729 for (;;) {
730 t1 = (d1 < d3s->d13 + m1);
731 t2 = (d2 < d3s->d23 + m2);
732 if (!t1 && !t2)
733 break;
735 /* first file is different from others */
736 if (!t2 || (t1 && d1->new.to < d2->new.from)) {
737 /* stuff peculiar to 1st file */
738 d1++;
739 continue;
742 /* second file is different from others */
743 if (!t1 || (t2 && d2->new.to < d1->new.from)) {
744 d2++;
745 continue;
748 /*
749 * Merge overlapping changes in first file
750 * this happens after extension (see below).
751 */
752 if (d1 + 1 < d3s->d13 + m1 && d1->new.to >= d1[1].new.from) {
753 d1[1].old.from = d1->old.from;
754 d1[1].new.from = d1->new.from;
755 d1++;
756 continue;
759 /* merge overlapping changes in second */
760 if (d2 + 1 < d3s->d23 + m2 && d2->new.to >= d2[1].new.from) {
761 d2[1].old.from = d2->old.from;
762 d2[1].new.from = d2->new.from;
763 d2++;
764 continue;
766 /* stuff peculiar to third file or different in all */
767 if (d1->new.from == d2->new.from && d1->new.to == d2->new.to) {
768 err = duplicate(&dpl, j, &d1->old, &d2->old, d3s);
769 if (err)
770 return err;
772 /*
773 * dpl = 0 means all files differ
774 * dpl = 1 means files 1 and 2 identical
775 */
776 err = edit(d1, dpl, &j, d3s);
777 if (err)
778 return err;
779 d1++;
780 d2++;
781 continue;
784 /*
785 * Overlapping changes from file 1 and 2; extend changes
786 * appropriately to make them coincide.
787 */
788 if (d1->new.from < d2->new.from) {
789 d2->old.from -= d2->new.from - d1->new.from;
790 d2->new.from = d1->new.from;
791 } else if (d2->new.from < d1->new.from) {
792 d1->old.from -= d1->new.from - d2->new.from;
793 d1->new.from = d2->new.from;
795 if (d1->new.to > d2->new.to) {
796 d2->old.to += d1->new.to - d2->new.to;
797 d2->new.to = d1->new.to;
798 } else if (d2->new.to > d1->new.to) {
799 d1->old.to += d2->new.to - d1->new.to;
800 d1->new.to = d2->new.to;
804 return (edscript(j, d3s));
807 /*
808 * print the range of line numbers, rold.from thru rold.to, as n1,n2 or n1
809 */
810 static const struct got_error *
811 prange(struct line_range *rold, struct diff3_state *d3s)
813 const struct got_error *err = NULL;
815 if (rold->to <= rold->from) {
816 err = diff_output(d3s->diffbuf, "%da\n", rold->from - 1);
817 if (err)
818 return err;
819 } else {
820 err = diff_output(d3s->diffbuf, "%d", rold->from);
821 if (err)
822 return err;
823 if (rold->to > rold->from + 1) {
824 err = diff_output(d3s->diffbuf, ",%d", rold->to - 1);
825 if (err)
826 return err;
828 err = diff_output(d3s->diffbuf, "c\n");
829 if (err)
830 return err;
833 return NULL;
836 /*
837 * Skip to just before line number from in file "i".
838 * Return the number of bytes skipped in *nskipped.
839 */
840 static const struct got_error *
841 skip(size_t *nskipped, int i, int from, struct diff3_state *d3s)
843 const struct got_error *err = NULL;
844 size_t len, n;
845 char *line;
847 *nskipped = 0;
848 for (n = 0; d3s->cline[i] < from - 1; n += len) {
849 err = get_line(&line, d3s->fp[i], &len, d3s);
850 if (err)
851 return err;
852 d3s->cline[i]++;
854 *nskipped = n;
855 return NULL;
858 /*
859 * Set *dpl to 1 or 0 according as the old range (in file 1) contains exactly
860 * the same data as the new range (in file 2).
862 * If this change could overlap, remember start/end offsets in file 2 so we
863 * can write out the original lines of text if a merge conflict occurs.
864 */
865 static const struct got_error *
866 duplicate(int *dpl, int j, struct line_range *r1, struct line_range *r2,
867 struct diff3_state *d3s)
869 const struct got_error *err = NULL;
870 int c,d;
871 int nchar;
872 int nline;
873 size_t nskipped;
874 off_t off;
876 *dpl = 0;
878 if (r1->to - r1->from != r2->to - r2->from)
879 return NULL;
881 err = skip(&nskipped, 0, r1->from, d3s);
882 if (err)
883 return err;
884 err = skip(&nskipped, 1, r2->from, d3s);
885 if (err)
886 return err;
888 off = ftello(d3s->fp[1]);
889 if (off == -1)
890 return got_error_from_errno("ftello");
891 d3s->de[j + 1].oldo.from = off; /* original lines start here */
893 nchar = 0;
894 for (nline = 0; nline < r1->to - r1->from; nline++) {
895 do {
896 c = getc(d3s->fp[0]);
897 d = getc(d3s->fp[1]);
898 if (c == EOF && d == EOF)
899 break;
900 else if (c == EOF)
901 return got_ferror(d3s->fp[0], GOT_ERR_EOF);
902 else if (d == EOF)
903 return got_ferror(d3s->fp[1], GOT_ERR_EOF);
904 nchar++;
905 if (c != d) {
906 long orig_line_len = nchar;
907 while (d != '\n') {
908 d = getc(d3s->fp[1]);
909 if (d == EOF)
910 break;
911 orig_line_len++;
913 if (orig_line_len > nchar &&
914 fseek(d3s->fp[1], -(orig_line_len - nchar),
915 SEEK_CUR) == -1)
916 return got_ferror(d3s->fp[1],
917 GOT_ERR_IO);
918 /* original lines end here */
919 d3s->de[j + 1].oldo.to = off + orig_line_len;
920 err = repos(nchar, d3s);
921 if (err)
922 return err;
923 return NULL;
925 } while (c != '\n');
927 err = repos(nchar, d3s);
928 if (err)
929 return err;
930 *dpl = 1;
931 return NULL;
934 static const struct got_error *
935 repos(int nchar, struct diff3_state *d3s)
937 int i;
939 for (i = 0; i < 2; i++) {
940 if (fseek(d3s->fp[i], (long)-nchar, SEEK_CUR) == -1)
941 return got_ferror(d3s->fp[i], GOT_ERR_IO);
944 return NULL;
947 /*
948 * collect an editing script for later regurgitation
949 */
950 static const struct got_error *
951 edit(struct diff *diff, int fdup, int *j, struct diff3_state *d3s)
953 const struct got_error *err = NULL;
954 size_t nskipped;
956 if (((fdup + 1) & 3) == 0)
957 return NULL;
958 (*j)++;
959 d3s->overlap[*j] = !fdup;
960 if (!fdup)
961 d3s->overlapcnt++;
962 d3s->de[*j].old.from = diff->old.from;
963 d3s->de[*j].old.to = diff->old.to;
965 err = skip(&nskipped, 2, diff->new.from, d3s);
966 if (err)
967 return err;
968 d3s->de[*j].newo.from = d3s->de[*j - 1].newo.to + nskipped;
970 err = skip(&nskipped, 2, diff->new.to, d3s);
971 if (err)
972 return err;
973 d3s->de[*j].newo.to = d3s->de[*j].newo.from + nskipped;
974 return NULL;
977 /* regurgitate */
978 static const struct got_error *
979 edscript(int n, struct diff3_state *d3s)
981 const struct got_error *err = NULL;
982 off_t len;
983 char *line = NULL;
984 size_t linesize = 0;
985 ssize_t linelen = 0, k;
987 for (; n > 0; n--) {
988 if (!d3s->overlap[n]) {
989 err = prange(&d3s->de[n].old, d3s);
990 if (err)
991 return err;
992 } else if (d3s->de[n].oldo.from < d3s->de[n].oldo.to) {
993 /* Output a block of 3-way diff base file content. */
994 err = diff_output(d3s->diffbuf, "%da\n:%s\n",
995 d3s->de[n].old.to - 1, d3s->f2mark);
996 if (err)
997 return err;
998 if (fseeko(d3s->fp[1], d3s->de[n].oldo.from, SEEK_SET)
999 == -1)
1000 return got_error_from_errno("fseeko");
1001 len = (d3s->de[n].oldo.to - d3s->de[n].oldo.from);
1002 for (k = 0; k < (ssize_t)len; k += linelen) {
1003 linelen = getline(&line, &linesize, d3s->fp[1]);
1004 if (linelen == -1) {
1005 if (feof(d3s->fp[1]))
1006 break;
1007 err = got_ferror(d3s->fp[1],
1008 GOT_ERR_IO);
1009 goto done;
1011 err = diff_output(d3s->diffbuf, ":%s", line);
1012 if (err)
1013 goto done;
1015 err = diff_output(d3s->diffbuf, "%s%s\n",
1016 linelen > 0 && line[linelen] == '\n' ? ":" : "",
1017 GOT_DIFF_CONFLICT_MARKER_SEP);
1018 if (err)
1019 goto done;
1020 } else {
1021 err = diff_output(d3s->diffbuf, "%da\n:%s\n",
1022 d3s->de[n].old.to -1, GOT_DIFF_CONFLICT_MARKER_SEP);
1023 if (err)
1024 goto done;
1026 if (fseeko(d3s->fp[2], d3s->de[n].newo.from, SEEK_SET)
1027 == -1) {
1028 err = got_error_from_errno("fseek");
1029 goto done;
1031 len = (d3s->de[n].newo.to - d3s->de[n].newo.from);
1032 for (k = 0; k < (ssize_t)len; k += linelen) {
1033 linelen = getline(&line, &linesize, d3s->fp[2]);
1034 if (linelen == -1) {
1035 if (feof(d3s->fp[2]))
1036 break;
1037 err = got_ferror(d3s->fp[2], GOT_ERR_IO);
1038 goto done;
1040 err = diff_output(d3s->diffbuf, ":%s", line);
1041 if (err)
1042 goto done;
1045 if (!d3s->overlap[n]) {
1046 err = diff_output(d3s->diffbuf, ".\n");
1047 if (err)
1048 goto done;
1049 } else {
1050 err = diff_output(d3s->diffbuf, "%s%s\n.\n",
1051 line[linelen] == '\n' ? ":" : "",
1052 d3s->f3mark);
1053 if (err)
1054 goto done;
1055 err = diff_output(d3s->diffbuf, "%da\n:%s\n.\n",
1056 d3s->de[n].old.from - 1, d3s->f1mark);
1057 if (err)
1058 goto done;
1061 done:
1062 free(line);
1063 return err;
1066 static const struct got_error *
1067 increase(struct diff3_state *d3s)
1069 size_t newsz, incr;
1070 struct diff *d;
1071 char *s;
1073 /* are the memset(3) calls needed? */
1074 newsz = d3s->szchanges == 0 ? 64 : 2 * d3s->szchanges;
1075 incr = newsz - d3s->szchanges;
1077 d = reallocarray(d3s->d13, newsz, sizeof(*d3s->d13));
1078 if (d == NULL)
1079 return got_error_from_errno("reallocarray");
1080 d3s->d13 = d;
1081 memset(d3s->d13 + d3s->szchanges, 0, incr * sizeof(*d3s->d13));
1083 d = reallocarray(d3s->d23, newsz, sizeof(*d3s->d23));
1084 if (d == NULL)
1085 return got_error_from_errno("reallocarray");
1086 d3s->d23 = d;
1087 memset(d3s->d23 + d3s->szchanges, 0, incr * sizeof(*d3s->d23));
1089 d = reallocarray(d3s->de, newsz, sizeof(*d3s->de));
1090 if (d == NULL)
1091 return got_error_from_errno("reallocarray");
1092 d3s->de = d;
1093 memset(d3s->de + d3s->szchanges, 0, incr * sizeof(*d3s->de));
1095 s = reallocarray(d3s->overlap, newsz, sizeof(*d3s->overlap));
1096 if (s == NULL)
1097 return got_error_from_errno("reallocarray");
1098 d3s->overlap = s;
1099 memset(d3s->overlap + d3s->szchanges, 0, incr * sizeof(*d3s->overlap));
1100 d3s->szchanges = newsz;
1102 return NULL;