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