blob: 745ef0a334be90b25e12a68b0f56b1d783f50ce7 [file] [log] [blame]
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini diff implementation for busybox, adapted from OpenBSD diff.
4 *
5 * Copyright (C) 2006 by Robert Sullivan <cogito.ergo.cogito@hotmail.com>
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00006 * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
7 *
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00008 * Sponsored in part by the Defense Advanced Research Projects
9 * Agency (DARPA) and Air Force Research Laboratory, Air Force
10 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
Bernhard Reutner-Fischer14aa06f2006-05-19 13:02:27 +000011 *
Rob Landleye4386342006-04-18 20:41:51 +000012 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000013 */
14
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000016
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +020017#define dbg_error_msg(...) ((void)0)
18//#define dbg_error_msg(...) bb_error_msg(__VA_ARGS__)
19
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +000020// #define FSIZE_MAX 32768
21
22/* NOINLINEs added to prevent gcc from merging too much into diffreg()
23 * (it bites more than it can (efficiently) chew). */
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000024
25/*
26 * Output flags
27 */
Denis Vlasenkoc4c2cd42008-03-24 16:55:13 +000028enum {
29 /* Print a header/footer between files */
30 /* D_HEADER = 1, - unused */
31 /* Treat file as empty (/dev/null) */
32 D_EMPTY1 = 2 * ENABLE_FEATURE_DIFF_DIR,
33 D_EMPTY2 = 4 * ENABLE_FEATURE_DIFF_DIR,
34};
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000035
36/*
37 * Status values for print_status() and diffreg() return values
38 * Guide:
39 * D_SAME - files are the same
40 * D_DIFFER - files differ
41 * D_BINARY - binary files differ
42 * D_COMMON - subdirectory common to both dirs
43 * D_ONLY - file only exists in one dir
Denis Vlasenko04211fd2008-03-24 14:44:59 +000044 * D_ISDIR1 - path1 a dir, path2 a file
45 * D_ISDIR2 - path1 a file, path2 a dir
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000046 * D_ERROR - error occurred
47 * D_SKIPPED1 - skipped path1 as it is a special file
48 * D_SKIPPED2 - skipped path2 as it is a special file
49 */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +000050#define D_SAME 0
51#define D_DIFFER (1 << 0)
52#define D_BINARY (1 << 1)
53#define D_COMMON (1 << 2)
54/*#define D_ONLY (1 << 3) - unused */
Denis Vlasenko04211fd2008-03-24 14:44:59 +000055#define D_ISDIR1 (1 << 4)
56#define D_ISDIR2 (1 << 5)
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +000057#define D_ERROR (1 << 6)
58#define D_SKIPPED1 (1 << 7)
59#define D_SKIPPED2 (1 << 8)
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000060
61/* Command line options */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +000062#define FLAG_a (1 << 0)
63#define FLAG_b (1 << 1)
64#define FLAG_d (1 << 2)
65#define FLAG_i (1 << 3)
66#define FLAG_L (1 << 4)
67#define FLAG_N (1 << 5)
68#define FLAG_q (1 << 6)
69#define FLAG_r (1 << 7)
70#define FLAG_s (1 << 8)
71#define FLAG_S (1 << 9)
72#define FLAG_t (1 << 10)
73#define FLAG_T (1 << 11)
74#define FLAG_U (1 << 12)
75#define FLAG_w (1 << 13)
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000076
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +000077
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000078struct cand {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +000079 int x;
80 int y;
81 int pred;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000082};
83
Denis Vlasenkoef4bb262007-06-04 12:21:53 +000084struct line {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +000085 int serial;
86 int value;
Denis Vlasenkoef4bb262007-06-04 12:21:53 +000087};
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000088
89/*
90 * The following struct is used to record change information
91 * doing a "context" or "unified" diff. (see routine "change" to
92 * understand the highly mnemonic field names)
93 */
94struct context_vec {
Denis Vlasenkoef4bb262007-06-04 12:21:53 +000095 int a; /* start line in old file */
96 int b; /* end line in old file */
97 int c; /* start line in new file */
98 int d; /* end line in new file */
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +000099};
100
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000101
102#define g_read_buf bb_common_bufsiz1
103
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000104struct globals {
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000105 bool anychange;
106 smallint exit_status;
107 int opt_U_context;
Denys Vlasenko3e020502009-09-21 01:22:18 +0200108 int context_idx;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000109 IF_FEATURE_DIFF_DIR(int dl_count;)
110 IF_FEATURE_DIFF_DIR(char **dl;)
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000111 char *opt_S_start;
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000112 const char *label1;
113 const char *label2;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000114 int *J; /* will be overlaid on class */
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000115 int clen;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000116 int pref, suff; /* length of prefix and suffix */
117 int nlen[2];
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000118 int slen[2];
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000119 int clistlen; /* the length of clist */
120 struct cand *clist; /* merely a free storage pot for candidates */
121 long *ixnew; /* will be overlaid on nfile[1] */
122 long *ixold; /* will be overlaid on klist */
123 struct line *nfile[2];
124 struct line *sfile[2]; /* shortened by pruning common prefix/suffix */
Denys Vlasenko3e020502009-09-21 01:22:18 +0200125 struct context_vec *context_vector;
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000126 char *tempname1, *tempname2;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000127 struct stat stb1, stb2;
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000128};
129#define G (*ptr_to_globals)
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000130#define anychange (G.anychange )
131#define exit_status (G.exit_status )
132#define opt_U_context (G.opt_U_context )
Denys Vlasenko3e020502009-09-21 01:22:18 +0200133#define context_idx (G.context_idx )
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000134#define dl_count (G.dl_count )
135#define dl (G.dl )
136#define opt_S_start (G.opt_S_start )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000137#define label1 (G.label1 )
138#define label2 (G.label2 )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000139#define J (G.J )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000140#define clen (G.clen )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000141#define pref (G.pref )
142#define suff (G.suff )
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000143#define nlen (G.nlen )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000144#define slen (G.slen )
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000145#define clistlen (G.clistlen )
146#define clist (G.clist )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000147#define ixnew (G.ixnew )
148#define ixold (G.ixold )
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000149#define nfile (G.nfile )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000150#define sfile (G.sfile )
Denys Vlasenko3e020502009-09-21 01:22:18 +0200151#define context_vector (G.context_vector )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000152#define stb1 (G.stb1 )
153#define stb2 (G.stb2 )
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000154#define tempname1 (G.tempname1 )
155#define tempname2 (G.tempname2 )
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000156#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000157 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000158 opt_U_context = 3; \
Denys Vlasenko3e020502009-09-21 01:22:18 +0200159 context_vector = xrealloc_vector(context_vector, 6, 0); \
Denis Vlasenkoef4bb262007-06-04 12:21:53 +0000160} while (0)
161
162
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000163#if ENABLE_FEATURE_DIFF_DIR
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000164static void print_only(const char *path, const char *entry)
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000165{
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000166 printf("Only in %s: %s\n", path, entry);
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000167}
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000168#endif
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000169
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000170
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000171static void print_status(int val, char *_path1, char *_path2)
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000172{
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000173 /*const char *const _entry = entry ? entry : "";*/
174 /*char *const _path1 = entry ? concat_path_file(path1, _entry) : path1;*/
175 /*char *const _path2 = entry ? concat_path_file(path2, _entry) : path2;*/
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000176
177 switch (val) {
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000178/* case D_ONLY:
179 print_only(path1, entry);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000180 break;
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000181*/
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000182 case D_COMMON:
183 printf("Common subdirectories: %s and %s\n", _path1, _path2);
184 break;
185 case D_BINARY:
186 printf("Binary files %s and %s differ\n", _path1, _path2);
187 break;
188 case D_DIFFER:
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000189 if (option_mask32 & FLAG_q)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000190 printf("Files %s and %s differ\n", _path1, _path2);
191 break;
192 case D_SAME:
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000193 if (option_mask32 & FLAG_s)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000194 printf("Files %s and %s are identical\n", _path1, _path2);
195 break;
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000196 case D_ISDIR1:
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000197 printf("File %s is a %s while file %s is a %s\n",
198 _path1, "directory", _path2, "regular file");
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000199 break;
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000200 case D_ISDIR2:
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000201 printf("File %s is a %s while file %s is a %s\n",
202 _path1, "regular file", _path2, "directory");
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000203 break;
204 case D_SKIPPED1:
205 printf("File %s is not a regular file or directory and was skipped\n",
206 _path1);
207 break;
208 case D_SKIPPED2:
209 printf("File %s is not a regular file or directory and was skipped\n",
210 _path2);
211 break;
212 }
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000213/*
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000214 if (entry) {
215 free(_path1);
216 free(_path2);
217 }
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000218*/
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000219}
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000220
221
222/* Read line, return its nonzero hash. Return 0 if EOF.
223 *
224 * Hash function taken from Robert Sedgewick, Algorithms in C, 3d ed., p 578.
225 */
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000226static ALWAYS_INLINE int fiddle_sum(int sum, int t)
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000227{
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000228 return sum * 127 + t;
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000229}
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000230static int readhash(FILE *fp)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000231{
Denys Vlasenko3e020502009-09-21 01:22:18 +0200232 int i, t;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000233 int sum;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000234
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000235 sum = 1;
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000236 i = 0;
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000237 if (!(option_mask32 & (FLAG_b | FLAG_w))) {
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000238 while ((t = getc(fp)) != '\n') {
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000239 if (t == EOF) {
240 if (i == 0)
241 return 0;
242 break;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000243 }
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000244 sum = fiddle_sum(sum, t);
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000245 i = 1;
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000246 }
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000247 } else {
Denys Vlasenko3e020502009-09-21 01:22:18 +0200248 int space = 0;
249
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000250 while (1) {
Denys Vlasenko3e020502009-09-21 01:22:18 +0200251 t = getc(fp);
252 switch (t) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000253 case '\t':
254 case '\r':
255 case '\v':
256 case '\f':
257 case ' ':
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000258 space = 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000259 continue;
260 default:
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000261 if (space && !(option_mask32 & FLAG_w)) {
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000262 i = 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000263 space = 0;
264 }
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000265 sum = fiddle_sum(sum, t);
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000266 i = 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000267 continue;
268 case EOF:
269 if (i == 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000270 return 0;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000271 /* FALLTHROUGH */
272 case '\n':
273 break;
274 }
275 break;
276 }
277 }
278 /*
279 * There is a remote possibility that we end up with a zero sum.
280 * Zero is used as an EOF marker, so return 1 instead.
281 */
282 return (sum == 0 ? 1 : sum);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000283}
284
285
Denis Vlasenkodccfe052008-03-24 18:40:32 +0000286/* Our diff implementation is using seek.
287 * When we meet non-seekable file, we must make a temp copy.
288 */
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000289static char *make_temp(FILE *f, struct stat *sb)
290{
291 char *name;
292 int fd;
293
Denis Vlasenkoe9d67a82008-03-24 16:28:47 +0000294 if (S_ISREG(sb->st_mode) || S_ISBLK(sb->st_mode))
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000295 return NULL;
296 name = xstrdup("/tmp/difXXXXXX");
297 fd = mkstemp(name);
298 if (fd < 0)
299 bb_perror_msg_and_die("mkstemp");
300 if (bb_copyfd_eof(fileno(f), fd) < 0) {
301 clean_up:
302 unlink(name);
303 xfunc_die(); /* error message is printed by bb_copyfd_eof */
304 }
305 fstat(fd, sb);
306 close(fd);
307 if (freopen(name, "r+", f) == NULL) {
308 bb_perror_msg("freopen");
309 goto clean_up;
310 }
311 return name;
312}
313
314
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000315/*
316 * Check to see if the given files differ.
317 * Returns 0 if they are the same, 1 if different, and -1 on error.
318 */
Denis Vlasenkoc4c2cd42008-03-24 16:55:13 +0000319static NOINLINE int files_differ(FILE *f1, FILE *f2)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000320{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000321 size_t i, j;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000322
Denis Vlasenkoe9d67a82008-03-24 16:28:47 +0000323 /* Prevent making copies for "/dev/null" (too common) */
Denis Vlasenkoe9d67a82008-03-24 16:28:47 +0000324 /* Deal with input from pipes etc */
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000325 tempname1 = make_temp(f1, &stb1);
326 tempname2 = make_temp(f2, &stb2);
Denis Vlasenkoe9d67a82008-03-24 16:28:47 +0000327 if (stb1.st_size != stb2.st_size) {
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000328 return 1;
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000329 }
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000330 while (1) {
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000331 i = fread(g_read_buf, 1, COMMON_BUFSIZE/2, f1);
332 j = fread(g_read_buf + COMMON_BUFSIZE/2, 1, COMMON_BUFSIZE/2, f2);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000333 if (i != j)
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000334 return 1;
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000335 if (i == 0)
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000336 return (ferror(f1) || ferror(f2)) ? -1 : 0;
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000337 if (memcmp(g_read_buf,
338 g_read_buf + COMMON_BUFSIZE/2, i) != 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000339 return 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000340 }
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000341}
342
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000343
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000344static void prepare(int i, FILE *fp /*, off_t filesize*/)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000345{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000346 struct line *p;
347 int h;
348 size_t j, sz;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000349
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000350 rewind(fp);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000351
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000352 /*sz = (filesize <= FSIZE_MAX ? filesize : FSIZE_MAX) / 25;*/
353 /*if (sz < 100)*/
354 sz = 100;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000355
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000356 p = xmalloc((sz + 3) * sizeof(p[0]));
Denis Vlasenko8336f082007-01-07 00:21:41 +0000357 j = 0;
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000358 while ((h = readhash(fp)) != 0) { /* while not EOF */
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000359 if (j == sz) {
360 sz = sz * 3 / 2;
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000361 p = xrealloc(p, (sz + 3) * sizeof(p[0]));
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000362 }
363 p[++j].value = h;
364 }
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000365 nlen[i] = j;
366 nfile[i] = p;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000367}
368
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000369
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000370static void prune(void)
371{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000372 int i, j;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000373
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000374 for (pref = 0; pref < nlen[0] && pref < nlen[1] &&
375 nfile[0][pref + 1].value == nfile[1][pref + 1].value; pref++)
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000376 continue;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000377 for (suff = 0; suff < nlen[0] - pref && suff < nlen[1] - pref &&
378 nfile[0][nlen[0] - suff].value == nfile[1][nlen[1] - suff].value;
379 suff++)
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000380 continue;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000381 for (j = 0; j < 2; j++) {
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000382 sfile[j] = nfile[j] + pref;
383 slen[j] = nlen[j] - pref - suff;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000384 for (i = 0; i <= slen[j]; i++)
385 sfile[j][i].serial = i;
386 }
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000387}
388
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000389
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000390static void equiv(struct line *a, int n, struct line *b, int m, int *c)
391{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000392 int i, j;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000393
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000394 i = j = 1;
395 while (i <= n && j <= m) {
396 if (a[i].value < b[j].value)
397 a[i++].value = 0;
398 else if (a[i].value == b[j].value)
399 a[i++].value = j;
400 else
401 j++;
402 }
403 while (i <= n)
404 a[i++].value = 0;
405 b[m + 1].value = 0;
406 j = 0;
407 while (++j <= m) {
408 c[j] = -b[j].serial;
409 while (b[j + 1].value == b[j].value) {
410 j++;
411 c[j] = b[j].serial;
412 }
413 }
414 c[j] = -1;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000415}
416
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000417
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000418static int isqrt(int n)
419{
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000420 int y, x;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000421
422 if (n == 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000423 return 0;
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000424 x = 1;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000425 do {
426 y = x;
427 x = n / x;
428 x += y;
429 x /= 2;
430 } while ((x - y) > 1 || (x - y) < -1);
431
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000432 return x;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000433}
434
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000435
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000436static int newcand(int x, int y, int pred)
437{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000438 struct cand *q;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000439
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000440 if (clen == clistlen) {
441 clistlen = clistlen * 11 / 10;
442 clist = xrealloc(clist, clistlen * sizeof(struct cand));
443 }
444 q = clist + clen;
445 q->x = x;
446 q->y = y;
447 q->pred = pred;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000448 return clen++;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000449}
450
451
452static int search(int *c, int k, int y)
453{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000454 int i, j, l, t;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000455
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000456 if (clist[c[k]].y < y) /* quick look for typical case */
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000457 return k + 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000458 i = 0;
459 j = k + 1;
460 while (1) {
461 l = i + j;
462 if ((l >>= 1) <= i)
463 break;
464 t = clist[c[l]].y;
465 if (t > y)
466 j = l;
467 else if (t < y)
468 i = l;
469 else
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000470 return l;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000471 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000472 return l + 1;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000473}
474
475
476static int stone(int *a, int n, int *b, int *c)
477{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000478 int i, k, y, j, l;
479 int oldc, tc, oldl;
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +0200480 unsigned numtries;
481 int isq = isqrt(n);
Bernhard Reutner-Fischerbc142142006-04-06 16:07:08 +0000482#if ENABLE_FEATURE_DIFF_MINIMAL
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +0200483 const unsigned bound =
484 (option_mask32 & FLAG_d) ? UINT_MAX : MAX(256, isq);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000485#else
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +0200486 const unsigned bound = MAX(256, isq);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000487#endif
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000488
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000489 k = 0;
490 c[0] = newcand(0, 0, 0);
491 for (i = 1; i <= n; i++) {
492 j = a[i];
493 if (j == 0)
494 continue;
495 y = -b[j];
496 oldl = 0;
497 oldc = c[0];
498 numtries = 0;
499 do {
500 if (y <= clist[oldc].y)
501 continue;
502 l = search(c, k, y);
503 if (l != oldl + 1)
504 oldc = c[l - 1];
505 if (l <= k) {
506 if (clist[c[l]].y <= y)
507 continue;
508 tc = c[l];
509 c[l] = newcand(i, y, oldc);
510 oldc = tc;
511 oldl = l;
512 numtries++;
513 } else {
514 c[l] = newcand(i, y, oldc);
515 k++;
516 break;
517 }
518 } while ((y = b[++j]) > 0 && numtries < bound);
519 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000520 return k;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000521}
522
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000523
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000524static void unravel(int p)
525{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000526 struct cand *q;
527 int i;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000528
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000529 for (i = 0; i <= nlen[0]; i++)
530 J[i] = i <= pref ? i : i > nlen[0] - suff ? i + nlen[1] - nlen[0] : 0;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000531 for (q = clist + p; q->y != 0; q = clist + q->pred)
532 J[q->x + pref] = q->y + pref;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000533}
534
535
536static void unsort(struct line *f, int l, int *b)
537{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000538 int *a, i;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000539
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000540 a = xmalloc((l + 1) * sizeof(int));
541 for (i = 1; i <= l; i++)
542 a[f[i].serial] = f[i].value;
543 for (i = 1; i <= l; i++)
544 b[i] = a[i];
545 free(a);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000546}
547
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000548
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000549static int skipline(FILE *f)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000550{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000551 int i, c;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000552
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000553 for (i = 1; (c = getc(f)) != '\n' && c != EOF; i++)
554 continue;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +0000555 return i;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000556}
557
558
559/*
560 * Check does double duty:
561 * 1. ferret out any fortuitous correspondences due
562 * to confounding by hashing (which result in "jackpot")
563 * 2. collect random access indexes to the two files
564 */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000565static NOINLINE void check(FILE *f1, FILE *f2)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000566{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000567 int i, j, jackpot, c, d;
568 long ctold, ctnew;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000569
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000570 rewind(f1);
571 rewind(f2);
572 j = 1;
573 ixold[0] = ixnew[0] = 0;
574 jackpot = 0;
575 ctold = ctnew = 0;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000576 for (i = 1; i <= nlen[0]; i++) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000577 if (J[i] == 0) {
578 ixold[i] = ctold += skipline(f1);
579 continue;
580 }
581 while (j < J[i]) {
582 ixnew[j] = ctnew += skipline(f2);
583 j++;
584 }
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000585 if (option_mask32 & (FLAG_b | FLAG_w | FLAG_i)) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000586 while (1) {
587 c = getc(f1);
588 d = getc(f2);
589 /*
590 * GNU diff ignores a missing newline
591 * in one file if bflag || wflag.
592 */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000593 if ((option_mask32 & (FLAG_b | FLAG_w))
594 && ((c == EOF && d == '\n') || (c == '\n' && d == EOF))
595 ) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000596 break;
597 }
598 ctold++;
599 ctnew++;
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000600 if ((option_mask32 & FLAG_b) && isspace(c) && isspace(d)) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000601 do {
602 if (c == '\n')
603 break;
604 ctold++;
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000605 c = getc(f1);
606 } while (isspace(c));
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000607 do {
608 if (d == '\n')
609 break;
610 ctnew++;
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000611 d = getc(f2);
612 } while (isspace(d));
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000613 } else if (option_mask32 & FLAG_w) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000614 while (isspace(c) && c != '\n') {
615 c = getc(f1);
616 ctold++;
617 }
618 while (isspace(d) && d != '\n') {
619 d = getc(f2);
620 ctnew++;
621 }
622 }
623 if (c != d) {
624 jackpot++;
625 J[i] = 0;
626 if (c != '\n' && c != EOF)
627 ctold += skipline(f1);
628 if (d != '\n' && c != EOF)
629 ctnew += skipline(f2);
630 break;
631 }
632 if (c == '\n' || c == EOF)
633 break;
634 }
635 } else {
636 while (1) {
637 ctold++;
638 ctnew++;
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000639 c = getc(f1);
640 d = getc(f2);
641 if (c != d) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000642 J[i] = 0;
643 if (c != '\n' && c != EOF)
644 ctold += skipline(f1);
Denis Vlasenkoe9d67a82008-03-24 16:28:47 +0000645/* was buggy? "if (d != '\n' && c != EOF)" */
646 if (d != '\n' && d != EOF)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000647 ctnew += skipline(f2);
648 break;
649 }
650 if (c == '\n' || c == EOF)
651 break;
652 }
653 }
654 ixold[i] = ctold;
655 ixnew[j] = ctnew;
656 j++;
657 }
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000658 for (; j <= nlen[1]; j++)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000659 ixnew[j] = ctnew += skipline(f2);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000660}
661
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000662
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000663/* shellsort CACM #201 */
664static void sort(struct line *a, int n)
665{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000666 struct line *ai, *aim, w;
667 int j, m = 0, k;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000668
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000669 if (n == 0)
670 return;
671 for (j = 1; j <= n; j *= 2)
672 m = 2 * j - 1;
673 for (m /= 2; m != 0; m /= 2) {
674 k = n - m;
675 for (j = 1; j <= k; j++) {
676 for (ai = &a[j]; ai > a; ai -= m) {
677 aim = &ai[m];
678 if (aim < ai)
679 break; /* wraparound */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000680 if (aim->value > ai[0].value
681 || (aim->value == ai[0].value && aim->serial > ai[0].serial)
682 ) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000683 break;
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000684 }
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000685 w.value = ai[0].value;
686 ai[0].value = aim->value;
687 aim->value = w.value;
688 w.serial = ai[0].serial;
689 ai[0].serial = aim->serial;
690 aim->serial = w.serial;
691 }
692 }
693 }
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000694}
695
696
697static void uni_range(int a, int b)
698{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000699 if (a < b)
700 printf("%d,%d", a, b - a + 1);
701 else if (a == b)
702 printf("%d", b);
703 else
704 printf("%d,0", b);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000705}
706
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000707
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000708static void fetch(long *f, int a, int b, FILE *lb, int ch)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000709{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000710 int i, j, c, lastc, col, nc;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000711
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000712 if (a > b)
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000713 return;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000714 for (i = a; i <= b; i++) {
715 fseek(lb, f[i - 1], SEEK_SET);
716 nc = f[i] - f[i - 1];
717 if (ch != '\0') {
718 putchar(ch);
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000719 if (option_mask32 & FLAG_T)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000720 putchar('\t');
721 }
722 col = 0;
723 for (j = 0, lastc = '\0'; j < nc; j++, lastc = c) {
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000724 c = getc(lb);
725 if (c == EOF) {
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000726 printf("\n\\ No newline at end of file\n");
727 return;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000728 }
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000729 if (c == '\t' && (option_mask32 & FLAG_t)) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000730 do {
731 putchar(' ');
732 } while (++col & 7);
733 } else {
734 putchar(c);
735 col++;
736 }
737 }
738 }
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000739}
740
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000741
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000742#if ENABLE_FEATURE_DIFF_BINARY
743static int asciifile(FILE *f)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000744{
Bernhard Reutner-Fischer5fb0fec2006-04-06 11:28:19 +0000745 int i, cnt;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000746
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000747 if (option_mask32 & FLAG_a)
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000748 return 1;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000749 rewind(f);
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000750 cnt = fread(g_read_buf, 1, COMMON_BUFSIZE, f);
Bernhard Reutner-Fischerbc142142006-04-06 16:07:08 +0000751 for (i = 0; i < cnt; i++) {
Denys Vlasenko8684cbb2009-11-18 11:34:43 +0100752 if (!isprint_asciionly(g_read_buf[i])
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000753 && !isspace(g_read_buf[i])
754 ) {
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000755 return 0;
Bernhard Reutner-Fischerbc142142006-04-06 16:07:08 +0000756 }
757 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000758 return 1;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000759}
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000760#else
761#define asciifile(f) 1
762#endif
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000763
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000764
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000765/* dump accumulated "unified" diff changes */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000766static void dump_unified_vec(FILE *f1, FILE *f2)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000767{
Denys Vlasenko3e020502009-09-21 01:22:18 +0200768 struct context_vec *cvp = context_vector;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000769 int lowa, upb, lowc, upd;
770 int a, b, c, d;
771 char ch;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000772
Denys Vlasenko3e020502009-09-21 01:22:18 +0200773 if (context_idx < 0)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000774 return;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000775
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +0200776 dbg_error_msg("dumping %d context_vecs", context_idx+1);
777
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000778 b = d = 0; /* gcc */
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000779 lowa = MAX(1, cvp->a - opt_U_context);
Denys Vlasenko3e020502009-09-21 01:22:18 +0200780 upb = MIN(nlen[0], context_vector[context_idx].b + opt_U_context);
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000781 lowc = MAX(1, cvp->c - opt_U_context);
Denys Vlasenko3e020502009-09-21 01:22:18 +0200782 upd = MIN(nlen[1], context_vector[context_idx].d + opt_U_context);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000783
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000784 printf("@@ -");
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000785 uni_range(lowa, upb);
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000786 printf(" +");
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000787 uni_range(lowc, upd);
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +0000788 printf(" @@\n");
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000789
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000790 /*
791 * Output changes in "unified" diff format--the old and new lines
792 * are printed together.
793 */
Denys Vlasenko3e020502009-09-21 01:22:18 +0200794 for (; cvp <= &context_vector[context_idx]; cvp++) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000795 a = cvp->a;
796 b = cvp->b;
797 c = cvp->c;
798 d = cvp->d;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000799
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000800 /*
801 * c: both new and old changes
802 * d: only changes in the old file
803 * a: only changes in the new file
804 */
805 if (a <= b && c <= d)
806 ch = 'c';
807 else
808 ch = (a <= b) ? 'd' : 'a';
Bernhard Reutner-Fischer1622cb82007-06-07 12:11:24 +0000809#if 0
810 switch (ch) {
811 case 'c':
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000812// fetch() seeks!
Bernhard Reutner-Fischer1622cb82007-06-07 12:11:24 +0000813 fetch(ixold, lowa, a - 1, f1, ' ');
814 fetch(ixold, a, b, f1, '-');
815 fetch(ixnew, c, d, f2, '+');
816 break;
817 case 'd':
818 fetch(ixold, lowa, a - 1, f1, ' ');
819 fetch(ixold, a, b, f1, '-');
820 break;
821 case 'a':
822 fetch(ixnew, lowc, c - 1, f2, ' ');
823 fetch(ixnew, c, d, f2, '+');
824 break;
825 }
826#else
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000827 if (ch == 'c' || ch == 'd') {
828 fetch(ixold, lowa, a - 1, f1, ' ');
829 fetch(ixold, a, b, f1, '-');
830 }
831 if (ch == 'a')
832 fetch(ixnew, lowc, c - 1, f2, ' ');
833 if (ch == 'c' || ch == 'a')
834 fetch(ixnew, c, d, f2, '+');
Bernhard Reutner-Fischer1622cb82007-06-07 12:11:24 +0000835#endif
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000836 lowa = b + 1;
837 lowc = d + 1;
838 }
839 fetch(ixnew, d + 1, upd, f2, ' ');
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000840
Denys Vlasenko3e020502009-09-21 01:22:18 +0200841 context_idx = -1;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000842}
843
844
845static void print_header(const char *file1, const char *file2)
846{
Denis Vlasenko8336f082007-01-07 00:21:41 +0000847 if (label1)
848 printf("--- %s\n", label1);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000849 else
Denis Vlasenko8336f082007-01-07 00:21:41 +0000850 printf("--- %s\t%s", file1, ctime(&stb1.st_mtime));
851 if (label2)
852 printf("+++ %s\n", label2);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000853 else
Denis Vlasenko8336f082007-01-07 00:21:41 +0000854 printf("+++ %s\t%s", file2, ctime(&stb2.st_mtime));
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000855}
856
857
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000858/*
859 * Indicate that there is a difference between lines a and b of the from file
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000860 * to get to lines c to d of the to file. If a is greater than b then there
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000861 * are no lines in the from file involved and this means that there were
862 * lines appended (beginning at b). If c is greater than d then there are
863 * lines missing from the to file.
864 */
Denis Vlasenko4c830252008-11-23 14:40:00 +0000865static void change(const char *file1, FILE *f1, const char *file2, FILE *f2,
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000866 int a, int b, int c, int d)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000867{
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000868 if ((a > b && c > d) || (option_mask32 & FLAG_q)) {
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +0200869//compat BUG: "diff -ub F1 F2" will output nothing, but will exit 1
870//if F1 and F2 differ only in whitespace. "standard" diff exits 0.
871//This is the place where this erroneous exitcode is set:
872 dbg_error_msg("%d: abcd:%d,%d,%d,%d, anychange=1", __LINE__, a,b,c,d);
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000873 anychange = 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000874 return;
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000875 }
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000876
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000877 if (anychange == 0) {
878 /*
879 * Print the context/unidiff header first time through.
880 */
881 print_header(file1, file2);
Denys Vlasenko3e020502009-09-21 01:22:18 +0200882 } else if (a > context_vector[context_idx].b + (2 * opt_U_context) + 1
883 && c > context_vector[context_idx].d + (2 * opt_U_context) + 1
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000884 ) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000885 /*
886 * If this change is more than 'context' lines from the
887 * previous change, dump the record and reset it.
888 */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000889// dump_unified_vec() seeks!
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000890 dump_unified_vec(f1, f2);
891 }
Denys Vlasenko3e020502009-09-21 01:22:18 +0200892 context_idx++;
893 context_vector = xrealloc_vector(context_vector, 6, context_idx);
894 context_vector[context_idx].a = a;
895 context_vector[context_idx].b = b;
896 context_vector[context_idx].c = c;
897 context_vector[context_idx].d = d;
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +0200898 dbg_error_msg("new context_vec[%d]:%d,%d,%d,%d", context_idx, a,b,c,d);
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000899 anychange = 1;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000900}
901
902
Denis Vlasenko4c830252008-11-23 14:40:00 +0000903static void output(const char *file1, FILE *f1, const char *file2, FILE *f2)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000904{
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000905 /* Note that j0 and j1 can't be used as they are defined in math.h.
906 * This also allows the rather amusing variable 'j00'... */
907 int m, i0, i1, j00, j01;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000908
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000909 rewind(f1);
910 rewind(f2);
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000911 m = nlen[0];
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000912 J[0] = 0;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000913 J[m + 1] = nlen[1] + 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000914 for (i0 = 1; i0 <= m; i0 = i1 + 1) {
915 while (i0 <= m && J[i0] == J[i0 - 1] + 1)
916 i0++;
917 j00 = J[i0 - 1] + 1;
918 i1 = i0 - 1;
919 while (i1 < m && J[i1 + 1] == 0)
920 i1++;
921 j01 = J[i1 + 1] - 1;
922 J[i1] = j01;
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000923// change() seeks!
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000924 change(file1, f1, file2, f2, i0, i1, j00, j01);
925 }
926 if (m == 0) {
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000927// change() seeks!
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +0000928 change(file1, f1, file2, f2, 1, 0, 1, nlen[1]);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000929 }
Denis Vlasenko6a1d6612006-12-16 22:18:44 +0000930 if (anychange != 0 && !(option_mask32 & FLAG_q)) {
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000931// dump_unified_vec() seeks!
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +0000932 dump_unified_vec(f1, f2);
933 }
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +0000934}
935
936/*
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000937 * The following code uses an algorithm due to Harold Stone,
938 * which finds a pair of longest identical subsequences in
939 * the two files.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000940 *
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000941 * The major goal is to generate the match vector J.
942 * J[i] is the index of the line in file1 corresponding
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000943 * to line i in file0. J[i] = 0 if there is no
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000944 * such line in file1.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000945 *
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000946 * Lines are hashed so as to work in core. All potential
947 * matches are located by sorting the lines of each file
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000948 * on the hash (called "value"). In particular, this
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000949 * collects the equivalence classes in file1 together.
950 * Subroutine equiv replaces the value of each line in
951 * file0 by the index of the first element of its
952 * matching equivalence in (the reordered) file1.
953 * To save space equiv squeezes file1 into a single
954 * array member in which the equivalence classes
955 * are simply concatenated, except that their first
956 * members are flagged by changing sign.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000957 *
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000958 * Next the indices that point into member are unsorted into
959 * array class according to the original order of file0.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000960 *
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000961 * The cleverness lies in routine stone. This marches
962 * through the lines of file0, developing a vector klist
963 * of "k-candidates". At step i a k-candidate is a matched
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000964 * pair of lines x,y (x in file0, y in file1) such that
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000965 * there is a common subsequence of length k
966 * between the first i lines of file0 and the first y
967 * lines of file1, but there is no such subsequence for
968 * any smaller y. x is the earliest possible mate to y
969 * that occurs in such a subsequence.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000970 *
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000971 * Whenever any of the members of the equivalence class of
972 * lines in file1 matable to a line in file0 has serial number
973 * less than the y of some k-candidate, that k-candidate
974 * with the smallest such y is replaced. The new
975 * k-candidate is chained (via pred) to the current
976 * k-1 candidate so that the actual subsequence can
977 * be recovered. When a member has serial number greater
978 * that the y of all k-candidates, the klist is extended.
979 * At the end, the longest subsequence is pulled out
980 * and placed in the array J by unravel
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000981 *
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000982 * With J in hand, the matches there recorded are
983 * checked against reality to assure that no spurious
984 * matches have crept in due to hashing. If they have,
985 * they are broken, and "jackpot" is recorded--a harmless
986 * matter except that a true match for a spuriously
987 * mated line may now be unnecessarily reported as a change.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000988 *
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000989 * Much of the complexity of the program comes simply
990 * from trying to minimize core utilization and
991 * maximize the range of doable problems by dynamically
992 * allocating what is needed and reusing what is not.
993 * The core requirements for problems larger than somewhat
994 * are (in words) 2*length(file0) + length(file1) +
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +0000995 * 3*(number of k-candidates installed), typically about
Denis Vlasenko02f0c4c2007-03-09 10:08:53 +0000996 * 6n words for files of length n.
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000997 */
Denis Vlasenko04211fd2008-03-24 14:44:59 +0000998/* NB: files can be not REGular. The only sure thing that they
999 * are not both DIRectories. */
Denis Vlasenko4c830252008-11-23 14:40:00 +00001000static unsigned diffreg(const char *file1, const char *file2, int flags)
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001001{
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001002 int *member; /* will be overlaid on nfile[1] */
1003 int *class; /* will be overlaid on nfile[0] */
1004 int *klist; /* will be overlaid on nfile[0] after class */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001005 FILE *f1;
1006 FILE *f2;
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +00001007 unsigned rval;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001008 int i;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001009
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001010 anychange = 0;
Denys Vlasenko3e020502009-09-21 01:22:18 +02001011 context_idx = -1;
Denis Vlasenkoc4c2cd42008-03-24 16:55:13 +00001012 tempname1 = tempname2 = NULL;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001013
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001014 /* Is any of them a directory? Then it's simple */
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001015 if (S_ISDIR(stb1.st_mode) != S_ISDIR(stb2.st_mode))
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001016 return (S_ISDIR(stb1.st_mode) ? D_ISDIR1 : D_ISDIR2);
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +00001017
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001018 /* None of them are directories */
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001019 rval = D_SAME;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001020
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001021 if (flags & D_EMPTY1)
Denis Vlasenkoa05c0712008-06-07 05:19:31 +00001022 /* can't be stdin, but xfopen_stdin() is smaller code */
Denis Vlasenko4c830252008-11-23 14:40:00 +00001023 file1 = bb_dev_null;
1024 f1 = xfopen_stdin(file1);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001025 if (flags & D_EMPTY2)
Denis Vlasenko4c830252008-11-23 14:40:00 +00001026 file2 = bb_dev_null;
1027 f2 = xfopen_stdin(file2);
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001028
Denis Vlasenkoc4c2cd42008-03-24 16:55:13 +00001029 /* NB: if D_EMPTY1/2 is set, other file is always a regular file,
1030 * not pipe/fifo/chardev/etc - D_EMPTY is used by "diff -r" only,
1031 * and it never diffs non-ordinary files in subdirs. */
1032 if (!(flags & (D_EMPTY1 | D_EMPTY2))) {
1033 /* Quick check whether they are different */
1034 /* NB: copies non-REG files to tempfiles and fills tempname1/2 */
1035 i = files_differ(f1, f2);
1036 if (i != 1) { /* not different? */
1037 if (i != 0) /* error? */
1038 exit_status |= 2;
1039 goto closem;
1040 }
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001041 }
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001042
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001043 if (!asciifile(f1) || !asciifile(f2)) {
1044 rval = D_BINARY;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001045 exit_status |= 1;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001046 goto closem;
1047 }
1048
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001049// Rewind inside!
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +00001050 prepare(0, f1 /*, stb1.st_size*/);
1051 prepare(1, f2 /*, stb2.st_size*/);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001052 prune();
1053 sort(sfile[0], slen[0]);
1054 sort(sfile[1], slen[1]);
1055
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001056 member = (int *) nfile[1];
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001057 equiv(sfile[0], slen[0], sfile[1], slen[1], member);
Denis Vlasenkodeeed592008-07-08 05:14:36 +00001058//TODO: xrealloc_vector?
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001059 member = xrealloc(member, (slen[1] + 2) * sizeof(int));
1060
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001061 class = (int *) nfile[0];
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001062 unsort(sfile[0], slen[0], class);
1063 class = xrealloc(class, (slen[0] + 2) * sizeof(int));
1064
1065 klist = xmalloc((slen[0] + 2) * sizeof(int));
1066 clen = 0;
1067 clistlen = 100;
1068 clist = xmalloc(clistlen * sizeof(struct cand));
1069 i = stone(class, slen[0], member, klist);
1070 free(member);
1071 free(class);
1072
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001073 J = xrealloc(J, (nlen[0] + 2) * sizeof(int));
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001074 unravel(klist[i]);
1075 free(clist);
1076 free(klist);
1077
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001078 ixold = xrealloc(ixold, (nlen[0] + 2) * sizeof(long));
1079 ixnew = xrealloc(ixnew, (nlen[1] + 2) * sizeof(long));
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001080// Rewind inside!
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001081 check(f1, f2);
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001082// Rewind inside!
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001083 output(file1, f1, file2, f2);
1084
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001085 closem:
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001086 if (anychange) {
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001087 exit_status |= 1;
Denys Vlasenkod8dd25a2009-09-21 01:23:19 +02001088 dbg_error_msg("exit_status|=1 = %d", exit_status);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001089 if (rval == D_SAME)
1090 rval = D_DIFFER;
1091 }
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +00001092 fclose_if_not_stdin(f1);
1093 fclose_if_not_stdin(f2);
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001094 if (tempname1) {
1095 unlink(tempname1);
1096 free(tempname1);
1097 }
1098 if (tempname2) {
1099 unlink(tempname2);
1100 free(tempname2);
1101 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001102 return rval;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001103}
1104
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001105
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001106#if ENABLE_FEATURE_DIFF_DIR
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001107static void do_diff(char *dir1, char *path1, char *dir2, char *path2)
1108{
Denis Vlasenkoc4c2cd42008-03-24 16:55:13 +00001109 int flags = 0; /*D_HEADER;*/
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001110 int val;
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001111 char *fullpath1 = NULL; /* if -N */
1112 char *fullpath2 = NULL;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001113
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001114 if (path1)
1115 fullpath1 = concat_path_file(dir1, path1);
1116 if (path2)
1117 fullpath2 = concat_path_file(dir2, path2);
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001118
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001119 if (!fullpath1 || stat(fullpath1, &stb1) != 0) {
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001120 flags |= D_EMPTY1;
1121 memset(&stb1, 0, sizeof(stb1));
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001122 if (path2) {
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +00001123 free(fullpath1);
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001124 fullpath1 = concat_path_file(dir1, path2);
1125 }
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001126 }
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001127 if (!fullpath2 || stat(fullpath2, &stb2) != 0) {
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001128 flags |= D_EMPTY2;
1129 memset(&stb2, 0, sizeof(stb2));
1130 stb2.st_mode = stb1.st_mode;
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001131 if (path1) {
Bernhard Reutner-Fischer7ae93f02007-01-07 15:56:09 +00001132 free(fullpath2);
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001133 fullpath2 = concat_path_file(dir2, path1);
1134 }
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001135 }
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001136
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001137 if (stb1.st_mode == 0)
1138 stb1.st_mode = stb2.st_mode;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001139
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001140 if (S_ISDIR(stb1.st_mode) && S_ISDIR(stb2.st_mode)) {
1141 printf("Common subdirectories: %s and %s\n", fullpath1, fullpath2);
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001142 goto ret;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001143 }
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001144
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001145 if (!S_ISREG(stb1.st_mode) && !S_ISDIR(stb1.st_mode))
1146 val = D_SKIPPED1;
1147 else if (!S_ISREG(stb2.st_mode) && !S_ISDIR(stb2.st_mode))
1148 val = D_SKIPPED2;
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001149 else {
1150 /* Both files are either REGular or DIRectories */
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001151 val = diffreg(fullpath1, fullpath2, flags);
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001152 }
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001153
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001154 print_status(val, fullpath1, fullpath2 /*, NULL*/);
Denis Vlasenko3983bd52007-03-26 22:58:21 +00001155 ret:
1156 free(fullpath1);
1157 free(fullpath2);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001158}
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001159#endif
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001160
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001161
Bernhard Reutner-Fischerbc142142006-04-06 16:07:08 +00001162#if ENABLE_FEATURE_DIFF_DIR
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001163/* This function adds a filename to dl, the directory listing. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001164static int FAST_FUNC add_to_dirlist(const char *filename,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001165 struct stat *sb UNUSED_PARAM,
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001166 void *userdata,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001167 int depth UNUSED_PARAM)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001168{
Denis Vlasenkodeeed592008-07-08 05:14:36 +00001169 dl = xrealloc_vector(dl, 5, dl_count);
Denis Vlasenkoa4688bf2007-03-11 10:56:37 +00001170 dl[dl_count] = xstrdup(filename + (int)(ptrdiff_t)userdata);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001171 dl_count++;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001172 return TRUE;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001173}
1174
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001175
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001176/* This returns a sorted directory listing. */
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001177static char **get_recursive_dirlist(char *path)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001178{
Denis Vlasenko6089c2c2007-02-11 19:07:03 +00001179 dl_count = 0;
Denis Vlasenkodf5bbb92007-04-05 21:29:42 +00001180 dl = xzalloc(sizeof(dl[0]));
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001181
Denis Vlasenkodccfe052008-03-24 18:40:32 +00001182 /* We need to trim root directory prefix.
1183 * Using void *userdata to specify its length,
1184 * add_to_dirlist will remove it. */
Denis Vlasenko6089c2c2007-02-11 19:07:03 +00001185 if (option_mask32 & FLAG_r) {
Denis Vlasenkobbd695d2007-04-08 10:52:28 +00001186 recursive_action(path, ACTION_RECURSE|ACTION_FOLLOWLINKS,
Denis Vlasenkodccfe052008-03-24 18:40:32 +00001187 add_to_dirlist, /* file_action */
1188 NULL, /* dir_action */
Denis Vlasenko582dff02008-10-19 19:36:30 +00001189 (void*)(ptrdiff_t)(strlen(path) + 1),
Denis Vlasenkodccfe052008-03-24 18:40:32 +00001190 0);
Denis Vlasenko6089c2c2007-02-11 19:07:03 +00001191 } else {
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001192 DIR *dp;
1193 struct dirent *ep;
Bernhard Reutner-Fischercb448162006-04-12 07:35:12 +00001194
Rob Landleyd921b2e2006-08-03 15:41:12 +00001195 dp = warn_opendir(path);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001196 while ((ep = readdir(dp))) {
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +00001197 if (!strcmp(ep->d_name, "..") || LONE_CHAR(ep->d_name, '.'))
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001198 continue;
Denis Vlasenko6089c2c2007-02-11 19:07:03 +00001199 add_to_dirlist(ep->d_name, NULL, (void*)(int)0, 0);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001200 }
1201 closedir(dp);
1202 }
1203
1204 /* Sort dl alphabetically. */
Denis Vlasenkofb290382008-03-02 12:51:26 +00001205 qsort_string_vector(dl, dl_count);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001206
Denis Vlasenko6089c2c2007-02-11 19:07:03 +00001207 dl[dl_count] = NULL;
1208 return dl;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001209}
1210
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001211
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001212static void diffdir(char *p1, char *p2)
1213{
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001214 char **dirlist1, **dirlist2;
1215 char *dp1, *dp2;
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001216 int pos;
1217
1218 /* Check for trailing slashes. */
Bernhard Reutner-Fischer56b95692006-12-14 11:27:58 +00001219 dp1 = last_char_is(p1, '/');
1220 if (dp1 != NULL)
1221 *dp1 = '\0';
1222 dp2 = last_char_is(p2, '/');
1223 if (dp2 != NULL)
1224 *dp2 = '\0';
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001225
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001226 /* Get directory listings for p1 and p2. */
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001227 dirlist1 = get_recursive_dirlist(p1);
1228 dirlist2 = get_recursive_dirlist(p2);
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001229
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001230 /* If -S was set, find the starting point. */
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001231 if (opt_S_start) {
1232 while (*dirlist1 != NULL && strcmp(*dirlist1, opt_S_start) < 0)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001233 dirlist1++;
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001234 while (*dirlist2 != NULL && strcmp(*dirlist2, opt_S_start) < 0)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001235 dirlist2++;
1236 if ((*dirlist1 == NULL) || (*dirlist2 == NULL))
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +00001237 bb_error_msg(bb_msg_invalid_arg, "NULL", "-S");
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001238 }
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001239
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001240 /* Now that both dirlist1 and dirlist2 contain sorted directory
1241 * listings, we can start to go through dirlist1. If both listings
1242 * contain the same file, then do a normal diff. Otherwise, behaviour
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001243 * is determined by whether the -N flag is set. */
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001244 while (*dirlist1 != NULL || *dirlist2 != NULL) {
1245 dp1 = *dirlist1;
1246 dp2 = *dirlist2;
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001247 pos = dp1 == NULL ? 1 : (dp2 == NULL ? -1 : strcmp(dp1, dp2));
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001248 if (pos == 0) {
1249 do_diff(p1, dp1, p2, dp2);
1250 dirlist1++;
1251 dirlist2++;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001252 } else if (pos < 0) {
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001253 if (option_mask32 & FLAG_N)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001254 do_diff(p1, dp1, p2, NULL);
1255 else
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001256 print_only(p1, dp1);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001257 dirlist1++;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001258 } else {
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001259 if (option_mask32 & FLAG_N)
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001260 do_diff(p1, NULL, p2, dp2);
1261 else
Denis Vlasenkodc1cbf82008-03-24 14:44:20 +00001262 print_only(p2, dp2);
Bernhard Reutner-Fischer693a9362006-04-06 08:15:24 +00001263 dirlist2++;
1264 }
1265 }
1266}
1267#endif
1268
1269
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001270int diff_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001271int diff_main(int argc UNUSED_PARAM, char **argv)
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001272{
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001273 int gotstdin = 0;
Bernhard Reutner-Fischerea9e35f2007-01-06 21:47:09 +00001274 char *f1, *f2;
Bernhard Reutner-Fischerbc142142006-04-06 16:07:08 +00001275 llist_t *L_arg = NULL;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001276
Denis Vlasenkoef4bb262007-06-04 12:21:53 +00001277 INIT_G();
1278
Denis Vlasenko1d426652008-03-17 09:09:09 +00001279 /* exactly 2 params; collect multiple -L <label>; -U N */
1280 opt_complementary = "=2:L::U+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001281 getopt32(argv, "abdiL:NqrsS:tTU:wu"
Denis Vlasenko6a1d6612006-12-16 22:18:44 +00001282 "p" /* ignored (for compatibility) */,
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001283 &L_arg, &opt_S_start, &opt_U_context);
Denis Vlasenko8336f082007-01-07 00:21:41 +00001284 /*argc -= optind;*/
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001285 argv += optind;
Denis Vlasenko8336f082007-01-07 00:21:41 +00001286 while (L_arg) {
1287 if (label1 && label2)
1288 bb_show_usage();
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001289 if (label1) /* then label2 is NULL */
Denis Vlasenko8336f082007-01-07 00:21:41 +00001290 label2 = label1;
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001291 label1 = llist_pop(&L_arg);
Denis Vlasenko8336f082007-01-07 00:21:41 +00001292 }
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001293
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001294 /*
1295 * Do sanity checks, fill in stb1 and stb2 and call the appropriate
1296 * driver routine. Both drivers use the contents of stb1 and stb2.
1297 */
Bernhard Reutner-Fischerea9e35f2007-01-06 21:47:09 +00001298 f1 = argv[0];
1299 f2 = argv[1];
Denys Vlasenko38d90722009-06-09 12:55:13 +02001300 /* Compat: "diff file name_which_doesnt_exist" exits with 2 */
1301 xfunc_error_retval = 2;
Bernhard Reutner-Fischerea9e35f2007-01-06 21:47:09 +00001302 if (LONE_DASH(f1)) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001303 fstat(STDIN_FILENO, &stb1);
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001304 gotstdin++;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001305 } else
Bernhard Reutner-Fischerea9e35f2007-01-06 21:47:09 +00001306 xstat(f1, &stb1);
1307 if (LONE_DASH(f2)) {
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001308 fstat(STDIN_FILENO, &stb2);
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001309 gotstdin++;
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001310 } else
Bernhard Reutner-Fischerea9e35f2007-01-06 21:47:09 +00001311 xstat(f2, &stb2);
Denys Vlasenko38d90722009-06-09 12:55:13 +02001312 xfunc_error_retval = 1;
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001313
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001314 if (gotstdin && (S_ISDIR(stb1.st_mode) || S_ISDIR(stb2.st_mode)))
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001315 bb_error_msg_and_die("can't compare stdin to a directory");
1316
Bernhard Reutner-Fischerbbc225e2006-05-29 12:12:45 +00001317 if (S_ISDIR(stb1.st_mode) && S_ISDIR(stb2.st_mode)) {
Bernhard Reutner-Fischerbc142142006-04-06 16:07:08 +00001318#if ENABLE_FEATURE_DIFF_DIR
Bernhard Reutner-Fischerea9e35f2007-01-06 21:47:09 +00001319 diffdir(f1, f2);
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001320 return exit_status;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001321#else
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001322 bb_error_msg_and_die("no support for directory comparison");
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001323#endif
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001324 }
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001325
1326 if (S_ISDIR(stb1.st_mode)) { /* "diff dir file" */
1327 /* NB: "diff dir dir2/dir3/file" must become
1328 * "diff dir/file dir2/dir3/file" */
1329 char *slash = strrchr(f2, '/');
Denis Vlasenkodccfe052008-03-24 18:40:32 +00001330 f1 = concat_path_file(f1, slash ? slash + 1 : f2);
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001331 xstat(f1, &stb1);
1332 }
1333 if (S_ISDIR(stb2.st_mode)) {
1334 char *slash = strrchr(f1, '/');
Denis Vlasenkodccfe052008-03-24 18:40:32 +00001335 f2 = concat_path_file(f2, slash ? slash + 1 : f1);
Denis Vlasenko04211fd2008-03-24 14:44:59 +00001336 xstat(f2, &stb2);
1337 }
1338
1339 /* diffreg can get non-regular files here,
1340 * they are not both DIRestories */
1341 print_status((gotstdin > 1 ? D_SAME : diffreg(f1, f2, 0)),
1342 f1, f2 /*, NULL*/);
Denis Vlasenko7fe0eba2008-03-24 16:19:21 +00001343 return exit_status;
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +00001344}