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