Tweaked some whitespace to match the latest version from autoconf.
[rsync/rsync.git] / match.c
CommitLineData
1e4f48d6 1/*
c627d613
AT
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
1e4f48d6 4
c627d613
AT
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
1e4f48d6 9
c627d613
AT
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
1e4f48d6 14
c627d613
AT
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20#include "rsync.h"
21
22extern int verbose;
16417f8b 23extern int do_progress;
ba582f75 24extern int checksum_seed;
6cc11982 25extern int append_mode;
a36ffd39
WD
26
27int updating_basis_file;
c627d613 28
c627d613 29static int false_alarms;
900cfcb5 30static int hash_hits;
c627d613 31static int matches;
a800434a 32static int64 data_transfer;
c627d613 33
3a6a366f 34static int total_false_alarms;
900cfcb5 35static int total_hash_hits;
3a6a366f 36static int total_matches;
c627d613 37
a800434a 38extern struct stats stats;
c627d613 39
48cce779
WD
40#define TABLESIZE (1<<16)
41
68207537 42static int32 *hash_table;
c627d613 43
48cce779
WD
44#define SUM2HASH2(s1,s2) (((s1) + (s2)) & 0xFFFF)
45#define SUM2HASH(sum) SUM2HASH2((sum)&0xFFFF,(sum)>>16)
c627d613
AT
46
47static void build_hash_table(struct sum_struct *s)
48{
7cacd47e 49 int32 i;
48cce779
WD
50
51 if (!hash_table) {
52 hash_table = new_array(int32, TABLESIZE);
68207537 53 if (!hash_table)
d9bca0c3
WD
54 out_of_memory("build_hash_table");
55 }
c627d613 56
48cce779 57 memset(hash_table, 0xFF, TABLESIZE * sizeof hash_table[0]);
c627d613 58
0e36d9da 59 for (i = 0; i < s->count; i++) {
fbbe9a01 60 uint32 t = SUM2HASH(s->sums[i].sum1);
68207537
WD
61 s->sums[i].chain = hash_table[t];
62 hash_table[t] = i;
1e4f48d6 63 }
c627d613
AT
64}
65
66
bcacc18b 67static OFF_T last_match;
c627d613
AT
68
69
f5f95a38
MP
70/**
71 * Transmit a literal and/or match token.
72 *
73 * This delightfully-named function is called either when we find a
74 * match and need to transmit all the unmatched data leading up to it,
75 * or when we get bored of accumulating literal data and just need to
76 * transmit it. As a result of this second case, it is called even if
77 * we have not matched at all!
78 *
79 * @param i If >0, the number of a matched token. If 0, indicates we
80 * have only literal data.
81 **/
a06b419d 82static void matched(int f, struct sum_struct *s, struct map_struct *buf,
37a56445 83 OFF_T offset, int32 i)
c627d613 84{
a06b419d
WD
85 int32 n = offset - last_match; /* max value: block_size (int32) */
86 int32 j;
87
88 if (verbose > 2 && i >= 0) {
89 rprintf(FINFO,
90 "match at %.0f last_match=%.0f j=%d len=%ld n=%ld\n",
91 (double)offset, (double)last_match, i,
92 (long)s->sums[i].len, (long)n);
93 }
c627d613 94
a06b419d 95 send_token(f, i, buf, last_match, n, i < 0 ? 0 : s->sums[i].len);
e7ebc36c 96 data_transfer += n;
70d794dc 97
a800434a
AT
98 if (i >= 0) {
99 stats.matched_data += s->sums[i].len;
e7ebc36c 100 n += s->sums[i].len;
a800434a 101 }
1e4f48d6
WD
102
103 for (j = 0; j < n; j += CHUNK_SIZE) {
a06b419d
WD
104 int32 n1 = MIN(CHUNK_SIZE, n - j);
105 sum_update(map_ptr(buf, last_match + j, n1), n1);
e7ebc36c 106 }
9e31c482 107
0d0e2e93 108 if (i >= 0)
e7ebc36c 109 last_match = offset + s->sums[i].len;
0d0e2e93
AT
110 else
111 last_match = offset;
eb86d661 112
0394e34a 113 if (buf && do_progress)
4440b8aa 114 show_progress(last_match, buf->file_size);
9e31c482
AT
115}
116
117
c6e7fcb4 118static void hash_search(int f,struct sum_struct *s,
da9d12f5 119 struct map_struct *buf, OFF_T len)
c627d613 120{
7560c17a 121 OFF_T offset, end, backup;
7cacd47e 122 int32 k, want_i;
e7ebc36c 123 char sum2[SUM_LENGTH];
1e4f48d6 124 uint32 s1, s2, sum;
7560c17a 125 int more;
debb4505 126 schar *map;
e7ebc36c 127
a04d77bc
WD
128 /* want_i is used to encourage adjacent matches, allowing the RLL
129 * coding of the output to work more efficiently. */
130 want_i = 0;
923fa978 131
0e36d9da 132 if (verbose > 2) {
a06b419d
WD
133 rprintf(FINFO, "hash search b=%ld len=%.0f\n",
134 (long)s->blength, (double)len);
0e36d9da 135 }
e7ebc36c 136
a06b419d 137 k = (int32)MIN(len, (OFF_T)s->blength);
1e4f48d6 138
0e36d9da 139 map = (schar *)map_ptr(buf, 0, k);
1e4f48d6 140
e7ebc36c
AT
141 sum = get_checksum1((char *)map, k);
142 s1 = sum & 0xFFFF;
143 s2 = sum >> 16;
144 if (verbose > 3)
a06b419d 145 rprintf(FINFO, "sum=%.8x k=%ld\n", sum, (long)k);
1e4f48d6 146
e7ebc36c 147 offset = 0;
1e4f48d6 148
e7ebc36c 149 end = len + 1 - s->sums[s->count-1].len;
1e4f48d6 150
0e36d9da 151 if (verbose > 3) {
a06b419d
WD
152 rprintf(FINFO, "hash search s->blength=%ld len=%.0f count=%.0f\n",
153 (long)s->blength, (double)len, (double)s->count);
0e36d9da 154 }
1e4f48d6 155
e7ebc36c 156 do {
e7ebc36c 157 int done_csum2 = 0;
d9bca0c3 158 int32 i;
1e4f48d6 159
48cce779
WD
160 if (verbose > 4) {
161 rprintf(FINFO, "offset=%.0f sum=%04x%04x\n",
34f961bb 162 (double)offset, s2 & 0xFFFF, s1 & 0xFFFF);
48cce779 163 }
1e4f48d6 164
48cce779 165 i = hash_table[SUM2HASH2(s1,s2)];
900cfcb5
WD
166 if (i < 0)
167 goto null_hash;
168
48cce779 169 sum = (s1 & 0xffff) | (s2 << 16);
900cfcb5
WD
170 hash_hits++;
171 do {
d9bca0c3 172 int32 l;
1e4f48d6 173
0e36d9da
WD
174 if (sum != s->sums[i].sum1)
175 continue;
1e4f48d6 176
536541d5 177 /* also make sure the two blocks are the same length */
a06b419d 178 l = (int32)MIN((OFF_T)s->blength, len-offset);
0e36d9da
WD
179 if (l != s->sums[i].len)
180 continue;
536541d5 181
a36ffd39 182 /* in-place: ensure chunk's offset is either >= our
a3221d2a 183 * offset or that the data didn't move. */
a36ffd39 184 if (updating_basis_file && s->sums[i].offset < offset
a3221d2a
WD
185 && !(s->sums[i].flags & SUMFLG_SAME_OFFSET))
186 continue;
187
d9bca0c3
WD
188 if (verbose > 3) {
189 rprintf(FINFO,
190 "potential match at %.0f i=%ld sum=%08x\n",
191 (double)offset, (long)i, sum);
192 }
1e4f48d6 193
e7ebc36c 194 if (!done_csum2) {
debb4505 195 map = (schar *)map_ptr(buf,offset,l);
e7ebc36c
AT
196 get_checksum2((char *)map,l,sum2);
197 done_csum2 = 1;
198 }
1e4f48d6 199
fc0257c9 200 if (memcmp(sum2,s->sums[i].sum2,s->s2length) != 0) {
e7ebc36c
AT
201 false_alarms++;
202 continue;
203 }
923fa978 204
a36ffd39 205 /* When updating in-place, the best possible match is
a3221d2a
WD
206 * one with an identical offset, so we prefer that over
207 * the following want_i optimization. */
a36ffd39 208 if (updating_basis_file) {
d9bca0c3
WD
209 int32 i2;
210 for (i2 = i; i2 >= 0; i2 = s->sums[i2].chain) {
a3221d2a
WD
211 if (s->sums[i2].offset != offset)
212 continue;
213 if (i2 != i) {
214 if (sum != s->sums[i2].sum1)
215 break;
216 if (memcmp(sum2, s->sums[i2].sum2,
217 s->s2length) != 0)
218 break;
219 i = i2;
220 }
221 /* This chunk was at the same offset on
222 * both the sender and the receiver. */
223 s->sums[i].flags |= SUMFLG_SAME_OFFSET;
224 goto set_want_i;
d9bca0c3 225 }
a3221d2a
WD
226 }
227
923fa978 228 /* we've found a match, but now check to see
a04d77bc
WD
229 * if want_i can hint at a better match. */
230 if (i != want_i && want_i < s->count
a36ffd39 231 && (!updating_basis_file || s->sums[want_i].offset >= offset
a3221d2a 232 || s->sums[want_i].flags & SUMFLG_SAME_OFFSET)
a04d77bc
WD
233 && sum == s->sums[want_i].sum1
234 && memcmp(sum2, s->sums[want_i].sum2, s->s2length) == 0) {
5e252dea
WD
235 /* we've found an adjacent match - the RLL coder
236 * will be happy */
a04d77bc 237 i = want_i;
923fa978 238 }
a3221d2a 239 set_want_i:
a04d77bc 240 want_i = i + 1;
1e4f48d6 241
e7ebc36c
AT
242 matched(f,s,buf,offset,i);
243 offset += s->sums[i].len - 1;
a06b419d 244 k = (int32)MIN((OFF_T)s->blength, len-offset);
0e36d9da 245 map = (schar *)map_ptr(buf, offset, k);
e7ebc36c
AT
246 sum = get_checksum1((char *)map, k);
247 s1 = sum & 0xFFFF;
248 s2 = sum >> 16;
249 matches++;
250 break;
900cfcb5 251 } while ((i = s->sums[i].chain) >= 0);
1e4f48d6 252
900cfcb5 253 null_hash:
7560c17a
WD
254 backup = offset - last_match;
255 /* We sometimes read 1 byte prior to last_match... */
256 if (backup < 0)
257 backup = 0;
258
e7ebc36c 259 /* Trim off the first byte from the checksum */
7560c17a
WD
260 more = offset + k < len;
261 map = (schar *)map_ptr(buf, offset - backup, k + more + backup)
262 + backup;
e7ebc36c
AT
263 s1 -= map[0] + CHAR_OFFSET;
264 s2 -= k * (map[0]+CHAR_OFFSET);
1e4f48d6 265
e7ebc36c 266 /* Add on the next byte (if there is one) to the checksum */
7560c17a
WD
267 if (more) {
268 s1 += map[k] + CHAR_OFFSET;
e7ebc36c 269 s2 += s1;
0e36d9da 270 } else
e7ebc36c 271 --k;
45f133b9 272
5914bf15
PM
273 /* By matching early we avoid re-reading the
274 data 3 times in the case where a token
275 match comes a long way after last
276 match. The 3 reads are caused by the
277 running match, the checksum update and the
278 literal send. */
a06b419d
WD
279 if (backup >= s->blength+CHUNK_SIZE && end-offset > CHUNK_SIZE)
280 matched(f, s, buf, offset - s->blength, -2);
e7ebc36c 281 } while (++offset < end);
1e4f48d6 282
a06b419d
WD
283 matched(f, s, buf, len, -1);
284 map_ptr(buf, len-1, 1);
c627d613
AT
285}
286
287
f5f95a38
MP
288/**
289 * Scan through a origin file, looking for sections that match
290 * checksums from the generator, and transmit either literal or token
291 * data.
292 *
538ba24f
MP
293 * Also calculates the MD4 checksum of the whole file, using the md
294 * accumulator. This is transmitted with the file as protection
295 * against corruption on the wire.
296 *
f5f95a38
MP
297 * @param s Checksums received from the generator. If <tt>s->count ==
298 * 0</tt>, then there are actually no checksums for this file.
299 *
300 * @param len Length of the file to send.
301 **/
302void match_sums(int f, struct sum_struct *s, struct map_struct *buf, OFF_T len)
c627d613 303{
e7ebc36c
AT
304 char file_sum[MD4_SUM_LENGTH];
305
306 last_match = 0;
307 false_alarms = 0;
900cfcb5 308 hash_hits = 0;
1e4f48d6
WD
309 matches = 0;
310 data_transfer = 0;
e7ebc36c 311
ba582f75 312 sum_init(checksum_seed);
e7ebc36c 313
6cc11982
WD
314 if (append_mode) {
315 OFF_T j = 0;
316 for (j = CHUNK_SIZE; j < s->flength; j += CHUNK_SIZE) {
1f86fcf5
WD
317 if (buf && do_progress)
318 show_progress(last_match, buf->file_size);
6cc11982
WD
319 sum_update(map_ptr(buf, last_match, CHUNK_SIZE),
320 CHUNK_SIZE);
321 last_match = j;
322 }
323 if (last_match < s->flength) {
324 int32 len = s->flength - last_match;
1f86fcf5
WD
325 if (buf && do_progress)
326 show_progress(last_match, buf->file_size);
6cc11982
WD
327 sum_update(map_ptr(buf, last_match, len), len);
328 last_match = s->flength;
329 }
330 s->count = 0;
331 }
332
a06b419d 333 if (len > 0 && s->count > 0) {
e7ebc36c 334 build_hash_table(s);
1e4f48d6
WD
335
336 if (verbose > 2)
9486289c 337 rprintf(FINFO,"built hash table\n");
1e4f48d6 338
e7ebc36c 339 hash_search(f,s,buf,len);
1e4f48d6
WD
340
341 if (verbose > 2)
9486289c 342 rprintf(FINFO,"done hash search\n");
e7ebc36c 343 } else {
eb86d661
AT
344 OFF_T j;
345 /* by doing this in pieces we avoid too many seeks */
6cc11982 346 for (j = last_match + CHUNK_SIZE; j < len; j += CHUNK_SIZE)
a06b419d
WD
347 matched(f, s, buf, j, -2);
348 matched(f, s, buf, len, -1);
e7ebc36c 349 }
9e31c482 350
e7ebc36c 351 sum_end(file_sum);
edecdad5
WD
352 /* If we had a read error, send a bad checksum. */
353 if (buf && buf->status != 0)
354 file_sum[0]++;
c627d613 355
bc63ae3f
S
356 if (verbose > 2)
357 rprintf(FINFO,"sending file_sum\n");
358 write_buf(f,file_sum,MD4_SUM_LENGTH);
c627d613 359
e7ebc36c 360 if (verbose > 2)
900cfcb5
WD
361 rprintf(FINFO, "false_alarms=%d hash_hits=%d matches=%d\n",
362 false_alarms, hash_hits, matches);
1e4f48d6 363
900cfcb5 364 total_hash_hits += hash_hits;
e7ebc36c
AT
365 total_false_alarms += false_alarms;
366 total_matches += matches;
a800434a 367 stats.literal_data += data_transfer;
c627d613
AT
368}
369
370void match_report(void)
371{
e7ebc36c
AT
372 if (verbose <= 1)
373 return;
c627d613 374
9486289c 375 rprintf(FINFO,
900cfcb5
WD
376 "total: matches=%d hash_hits=%d false_alarms=%d data=%.0f\n",
377 total_matches, total_hash_hits, total_false_alarms,
a800434a 378 (double)stats.literal_data);
c627d613 379}