Sender realigns chunks with generator during an --inplace copy
[rsync/rsync.git] / match.c
1 /*
2  * Block matching used by the file-transfer code.
3  *
4  * Copyright (C) 1996 Andrew Tridgell
5  * Copyright (C) 1996 Paul Mackerras
6  * Copyright (C) 2003-2009 Wayne Davison
7  *
8  * This program is free software; you can redistribute it and/or modify
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.
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  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, visit the http://fsf.org website.
20  */
21
22 #include "rsync.h"
23 #include "inums.h"
24
25 extern int checksum_seed;
26 extern int append_mode;
27 extern int checksum_len;
28
29 int updating_basis_file;
30 char sender_file_sum[MAX_DIGEST_LEN];
31
32 static int false_alarms;
33 static int hash_hits;
34 static int matches;
35 static int64 data_transfer;
36
37 static int total_false_alarms;
38 static int total_hash_hits;
39 static int total_matches;
40
41 extern struct stats stats;
42
43 #define TRADITIONAL_TABLESIZE (1<<16)
44
45 static uint32 tablesize;
46 static int32 *hash_table;
47
48 #define SUM2HASH2(s1,s2) (((s1) + (s2)) & 0xFFFF)
49 #define SUM2HASH(sum) SUM2HASH2((sum)&0xFFFF,(sum)>>16)
50
51 #define BIG_SUM2HASH(sum) ((sum)%tablesize)
52
53 static void build_hash_table(struct sum_struct *s)
54 {
55         static uint32 alloc_size;
56         int32 i;
57
58         /* Dynamically calculate the hash table size so that the hash load
59          * for big files is about 80%.  A number greater than the traditional
60          * size must be odd or s2 will not be able to span the entire set. */
61         tablesize = (uint32)(s->count/8) * 10 + 11;
62         if (tablesize < TRADITIONAL_TABLESIZE)
63                 tablesize = TRADITIONAL_TABLESIZE;
64         if (tablesize > alloc_size || tablesize < alloc_size - 16*1024) {
65                 if (hash_table)
66                         free(hash_table);
67                 hash_table = new_array(int32, tablesize);
68                 if (!hash_table)
69                         out_of_memory("build_hash_table");
70                 alloc_size = tablesize;
71         }
72
73         memset(hash_table, 0xFF, tablesize * sizeof hash_table[0]);
74
75         if (tablesize == TRADITIONAL_TABLESIZE) {
76                 for (i = 0; i < s->count; i++) {
77                         uint32 t = SUM2HASH(s->sums[i].sum1);
78                         s->sums[i].chain = hash_table[t];
79                         hash_table[t] = i;
80                 }
81         } else {
82                 for (i = 0; i < s->count; i++) {
83                         uint32 t = BIG_SUM2HASH(s->sums[i].sum1);
84                         s->sums[i].chain = hash_table[t];
85                         hash_table[t] = i;
86                 }
87         }
88 }
89
90
91 static OFF_T last_match;
92
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  * If i >= 0, the number of a matched token.  If < 0, indicates we have
103  * only literal data.  A -1 will send a 0-token-int too, and a -2 sends
104  * only literal data, w/o any token-int. */
105 static void matched(int f, struct sum_struct *s, struct map_struct *buf,
106                     OFF_T offset, int32 i)
107 {
108         int32 n = (int32)(offset - last_match); /* max value: block_size (int32) */
109         int32 j;
110
111         if (DEBUG_GTE(DELTASUM, 2) && i >= 0) {
112                 rprintf(FINFO,
113                         "match at %s last_match=%s j=%d len=%ld n=%ld\n",
114                         big_num(offset), big_num(last_match), i,
115                         (long)s->sums[i].len, (long)n);
116         }
117
118         send_token(f, i, buf, last_match, n, i < 0 ? 0 : s->sums[i].len);
119         data_transfer += n;
120
121         if (i >= 0) {
122                 stats.matched_data += s->sums[i].len;
123                 n += s->sums[i].len;
124         }
125
126         for (j = 0; j < n; j += CHUNK_SIZE) {
127                 int32 n1 = MIN(CHUNK_SIZE, n - j);
128                 sum_update(map_ptr(buf, last_match + j, n1), n1);
129         }
130
131         if (i >= 0)
132                 last_match = offset + s->sums[i].len;
133         else
134                 last_match = offset;
135
136         if (buf && INFO_GTE(PROGRESS, 1))
137                 show_progress(last_match, buf->file_size);
138 }
139
140
141 static void hash_search(int f,struct sum_struct *s,
142                         struct map_struct *buf, OFF_T len)
143 {
144         OFF_T offset, aligned_offset, end;
145         int32 k, want_i, backup;
146         char sum2[SUM_LENGTH];
147         uint32 s1, s2, sum;
148         int more;
149         schar *map;
150
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;
154
155         if (DEBUG_GTE(DELTASUM, 2)) {
156                 rprintf(FINFO, "hash search b=%ld len=%s\n",
157                         (long)s->blength, big_num(len));
158         }
159
160         k = (int32)MIN(len, (OFF_T)s->blength);
161
162         map = (schar *)map_ptr(buf, 0, k);
163
164         sum = get_checksum1((char *)map, k);
165         s1 = sum & 0xFFFF;
166         s2 = sum >> 16;
167         if (DEBUG_GTE(DELTASUM, 3))
168                 rprintf(FINFO, "sum=%.8x k=%ld\n", sum, (long)k);
169
170         offset = aligned_offset = 0;
171
172         end = len + 1 - s->sums[s->count-1].len;
173
174         if (DEBUG_GTE(DELTASUM, 3)) {
175                 rprintf(FINFO, "hash search s->blength=%ld len=%s count=%s\n",
176                         (long)s->blength, big_num(len), big_num(s->count));
177         }
178
179         do {
180                 int done_csum2 = 0;
181                 int32 i;
182
183                 if (DEBUG_GTE(DELTASUM, 4)) {
184                         rprintf(FINFO, "offset=%s sum=%04x%04x\n",
185                                 big_num(offset), s2 & 0xFFFF, s1 & 0xFFFF);
186                 }
187
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                 }
197
198                 hash_hits++;
199                 do {
200                         int32 l;
201
202                         if (sum != s->sums[i].sum1)
203                                 continue;
204
205                         /* also make sure the two blocks are the same length */
206                         l = (int32)MIN((OFF_T)s->blength, len-offset);
207                         if (l != s->sums[i].len)
208                                 continue;
209
210                         /* in-place: ensure chunk's offset is either >= our
211                          * offset or that the data didn't move. */
212                         if (updating_basis_file && s->sums[i].offset < offset
213                             && !(s->sums[i].flags & SUMFLG_SAME_OFFSET))
214                                 continue;
215
216                         if (DEBUG_GTE(DELTASUM, 3)) {
217                                 rprintf(FINFO,
218                                         "potential match at %s i=%ld sum=%08x\n",
219                                         big_num(offset), (long)i, sum);
220                         }
221
222                         if (!done_csum2) {
223                                 map = (schar *)map_ptr(buf,offset,l);
224                                 get_checksum2((char *)map,l,sum2);
225                                 done_csum2 = 1;
226                         }
227
228                         if (memcmp(sum2,s->sums[i].sum2,s->s2length) != 0) {
229                                 false_alarms++;
230                                 continue;
231                         }
232
233                         /* When updating in-place, the best possible match is
234                          * one with an identical offset, so we prefer that over
235                          * the adjacent want_i optimization. */
236                         if (updating_basis_file) {
237                                 /* All the generator's chunks start at blength boundaries. */
238                                 while (aligned_offset < offset)
239                                         aligned_offset += s->blength;
240                                 if (offset == aligned_offset
241                                  || (sum == 0 && l == s->blength && aligned_offset + l <= len)) {
242                                         int32 i2;
243                                         for (i2 = i; i2 >= 0; i2 = s->sums[i2].chain) {
244                                                 if (s->sums[i2].offset != aligned_offset)
245                                                         continue;
246                                                 if (i2 != i) {
247                                                         if (sum != s->sums[i2].sum1
248                                                          || l != s->sums[i2].len
249                                                          || memcmp(sum2, s->sums[i2].sum2, s->s2length) != 0)
250                                                                 break;
251                                                         i = i2;
252                                                 }
253                                                 want_i = i;
254                                                 if (offset != aligned_offset) {
255                                                         /* We've matched some zeros in a spot that is also zeros
256                                                          * further along in the basis file, if we find zeros ahead
257                                                          * in the sender's file, we'll output enough literal data
258                                                          * to re-align with the basis file, and get back to seeking
259                                                          * instead of writing. */
260                                                         map = (schar *)map_ptr(buf, aligned_offset, l);
261                                                         sum = get_checksum1((char *)map, l);
262                                                         if (sum != s->sums[i2].sum1)
263                                                                 break;
264                                                         get_checksum2((char *)map, l, sum2);
265                                                         if (memcmp(sum2, s->sums[i2].sum2, s->s2length) != 0)
266                                                                 break;
267                                                         /* OK, we have a re-alignment match.  Bump the offset
268                                                          * forward to the new match point. */
269                                                         offset = aligned_offset;
270                                                 }
271                                                 /* This chunk remained in the same spot in the old and new file. */
272                                                 s->sums[i].flags |= SUMFLG_SAME_OFFSET;
273                                                 break;
274                                         }
275                                 }
276                         }
277
278                         /* we've found a match, but now check to see
279                          * if want_i can hint at a better match. */
280                         if (i != want_i && want_i < s->count
281                             && (!updating_basis_file || s->sums[want_i].offset >= offset
282                              || s->sums[want_i].flags & SUMFLG_SAME_OFFSET)
283                             && sum == s->sums[want_i].sum1
284                             && memcmp(sum2, s->sums[want_i].sum2, s->s2length) == 0) {
285                                 /* we've found an adjacent match - the RLL coder
286                                  * will be happy */
287                                 i = want_i;
288                         }
289                         want_i = i + 1;
290
291                         matched(f,s,buf,offset,i);
292                         offset += s->sums[i].len - 1;
293                         k = (int32)MIN((OFF_T)s->blength, len-offset);
294                         map = (schar *)map_ptr(buf, offset, k);
295                         sum = get_checksum1((char *)map, k);
296                         s1 = sum & 0xFFFF;
297                         s2 = sum >> 16;
298                         matches++;
299                         break;
300                 } while ((i = s->sums[i].chain) >= 0);
301
302           null_hash:
303                 backup = (int32)(offset - last_match);
304                 /* We sometimes read 1 byte prior to last_match... */
305                 if (backup < 0)
306                         backup = 0;
307
308                 /* Trim off the first byte from the checksum */
309                 more = offset + k < len;
310                 map = (schar *)map_ptr(buf, offset - backup, k + more + backup)
311                     + backup;
312                 s1 -= map[0] + CHAR_OFFSET;
313                 s2 -= k * (map[0]+CHAR_OFFSET);
314
315                 /* Add on the next byte (if there is one) to the checksum */
316                 if (more) {
317                         s1 += map[k] + CHAR_OFFSET;
318                         s2 += s1;
319                 } else
320                         --k;
321
322                 /* By matching early we avoid re-reading the
323                    data 3 times in the case where a token
324                    match comes a long way after last
325                    match. The 3 reads are caused by the
326                    running match, the checksum update and the
327                    literal send. */
328                 if (backup >= s->blength+CHUNK_SIZE && end-offset > CHUNK_SIZE)
329                         matched(f, s, buf, offset - s->blength, -2);
330         } while (++offset < end);
331
332         matched(f, s, buf, len, -1);
333         map_ptr(buf, len-1, 1);
334 }
335
336
337 /**
338  * Scan through a origin file, looking for sections that match
339  * checksums from the generator, and transmit either literal or token
340  * data.
341  *
342  * Also calculates the MD4 checksum of the whole file, using the md
343  * accumulator.  This is transmitted with the file as protection
344  * against corruption on the wire.
345  *
346  * @param s Checksums received from the generator.  If <tt>s->count ==
347  * 0</tt>, then there are actually no checksums for this file.
348  *
349  * @param len Length of the file to send.
350  **/
351 void match_sums(int f, struct sum_struct *s, struct map_struct *buf, OFF_T len)
352 {
353         last_match = 0;
354         false_alarms = 0;
355         hash_hits = 0;
356         matches = 0;
357         data_transfer = 0;
358
359         sum_init(checksum_seed);
360
361         if (append_mode > 0) {
362                 if (append_mode == 2) {
363                         OFF_T j = 0;
364                         for (j = CHUNK_SIZE; j < s->flength; j += CHUNK_SIZE) {
365                                 if (buf && INFO_GTE(PROGRESS, 1))
366                                         show_progress(last_match, buf->file_size);
367                                 sum_update(map_ptr(buf, last_match, CHUNK_SIZE),
368                                            CHUNK_SIZE);
369                                 last_match = j;
370                         }
371                         if (last_match < s->flength) {
372                                 int32 n = (int32)(s->flength - last_match);
373                                 if (buf && INFO_GTE(PROGRESS, 1))
374                                         show_progress(last_match, buf->file_size);
375                                 sum_update(map_ptr(buf, last_match, n), n);
376                         }
377                 }
378                 last_match = s->flength;
379                 s->count = 0;
380         }
381
382         if (len > 0 && s->count > 0) {
383                 build_hash_table(s);
384
385                 if (DEBUG_GTE(DELTASUM, 2))
386                         rprintf(FINFO,"built hash table\n");
387
388                 hash_search(f, s, buf, len);
389
390                 if (DEBUG_GTE(DELTASUM, 2))
391                         rprintf(FINFO,"done hash search\n");
392         } else {
393                 OFF_T j;
394                 /* by doing this in pieces we avoid too many seeks */
395                 for (j = last_match + CHUNK_SIZE; j < len; j += CHUNK_SIZE)
396                         matched(f, s, buf, j, -2);
397                 matched(f, s, buf, len, -1);
398         }
399
400         if (sum_end(sender_file_sum) != checksum_len)
401                 overflow_exit("checksum_len"); /* Impossible... */
402
403         /* If we had a read error, send a bad checksum.  We use all bits
404          * off as long as the checksum doesn't happen to be that, in
405          * which case we turn the last 0 bit into a 1. */
406         if (buf && buf->status != 0) {
407                 int i;
408                 for (i = 0; i < checksum_len && sender_file_sum[i] == 0; i++) {}
409                 memset(sender_file_sum, 0, checksum_len);
410                 if (i == checksum_len)
411                         sender_file_sum[i-1]++;
412         }
413
414         if (DEBUG_GTE(DELTASUM, 2))
415                 rprintf(FINFO,"sending file_sum\n");
416         write_buf(f, sender_file_sum, checksum_len);
417
418         if (DEBUG_GTE(DELTASUM, 2)) {
419                 rprintf(FINFO, "false_alarms=%d hash_hits=%d matches=%d\n",
420                         false_alarms, hash_hits, matches);
421         }
422
423         total_hash_hits += hash_hits;
424         total_false_alarms += false_alarms;
425         total_matches += matches;
426         stats.literal_data += data_transfer;
427 }
428
429 void match_report(void)
430 {
431         if (!DEBUG_GTE(DELTASUM, 1))
432                 return;
433
434         rprintf(FINFO,
435                 "total: matches=%d  hash_hits=%d  false_alarms=%d data=%s\n",
436                 total_matches, total_hash_hits, total_false_alarms,
437                 big_num(stats.literal_data));
438 }