Fixed a failing hunk.
[rsync/rsync-patches.git] / checksum-updating.diff
CommitLineData
ae10e51e 1This adds a sender optimization feature that allows a cache of checksums
56522462
WD
2to be used when the client specifies the --checksum option, and creates
3and/or updates the .rsyncsums files when --checksum-updating is
4specified.
ae10e51e
WD
5
6To use this patch, run these commands for a successful build:
7
8 patch -p1 <patches/checksum-updating.diff
9 ./configure (optional if already run)
10 make
11
ae10e51e
WD
12--- old/clientserver.c
13+++ new/clientserver.c
a3ba6627 14@@ -37,6 +37,7 @@ extern int sanitize_paths;
ae10e51e
WD
15 extern int filesfrom_fd;
16 extern int remote_protocol;
17 extern int protocol_version;
18+extern int checksum_updating;
19 extern int io_timeout;
20 extern int no_detach;
21 extern int default_af_hint;
a3ba6627 22@@ -641,6 +642,8 @@ static int rsync_module(int f_in, int f_
ae10e51e
WD
23 else if (am_root < 0) /* Treat --fake-super from client as --super. */
24 am_root = 2;
25
26+ checksum_updating = lp_checksum_updating(i);
27+
28 if (filesfrom_fd == 0)
29 filesfrom_fd = f_in;
30
31--- old/flist.c
32+++ new/flist.c
a3ba6627 33@@ -25,6 +25,7 @@
ae10e51e
WD
34 #include "io.h"
35
36 extern int verbose;
37+extern int dry_run;
38 extern int list_only;
39 extern int am_root;
40 extern int am_server;
a3ba6627 41@@ -57,6 +58,7 @@ extern int implied_dirs;
ae10e51e
WD
42 extern int file_extra_cnt;
43 extern int ignore_perishable;
44 extern int non_perishable_cnt;
45+extern int checksum_updating;
46 extern int prune_empty_dirs;
47 extern int copy_links;
48 extern int copy_unsafe_links;
a3ba6627 49@@ -79,6 +81,9 @@ extern iconv_t ic_send, ic_recv;
56522462
WD
50
51 #define PTR_SIZE (sizeof (struct file_struct *))
52
edf38a9d
WD
53+#define FLAG_SUM_MISSING (1<<1) /* F_SUM() data is undefined */
54+#define FLAG_SUM_KEEP (1<<2) /* keep entry when rewriting */
56522462
WD
55+
56 int io_error;
57 int checksum_len;
58 dev_t filesystem_dev; /* used to implement -x */
a3ba6627 59@@ -101,6 +106,10 @@ static char tmp_sum[MAX_DIGEST_LEN];
ae10e51e
WD
60 static char empty_sum[MAX_DIGEST_LEN];
61 static int flist_count_offset; /* for --delete --progress */
62 static int dir_count = 0;
63+static struct file_list *checksum_flist = NULL;
64+static int checksum_matches = 0;
071bf6df 65+static int checksum_updates = 0;
7200c744 66+static int regular_skipped = 0;
ae10e51e
WD
67
68 static void clean_flist(struct file_list *flist, int strip_root);
69 static void output_flist(struct file_list *flist);
e2bccb59 70@@ -317,6 +326,301 @@ static void flist_done_allocating(struct
ae10e51e
WD
71 flist->pool_boundary = ptr;
72 }
73
74+/* The len count is the length of the basename + 1 for the null. */
e2bccb59
WD
75+static int add_checksum(const char *dirname, const char *basename, int len,
76+ OFF_T file_length, time_t mtime, int32 ctime, int32 inode,
77+ const char *sum, const char *alt_sum, int flags)
ae10e51e
WD
78+{
79+ struct file_struct *file;
80+ int alloc_len, extra_len;
81+ char *bp;
82+
56522462 83+ if (len == 10+1 && *basename == '.' && strcmp(basename, ".rsyncsums") == 0)
e2bccb59
WD
84+ return 0;
85+ if (file_length == 0)
86+ return 0;
ae10e51e
WD
87+
88+ if (len < 0)
89+ len = strlen(basename) + 1;
90+
e2bccb59
WD
91+ /* "2" is for a 32-bit ctime num and an 32-bit inode num. */
92+ extra_len = (file_extra_cnt + (file_length > 0xFFFFFFFFu) + SUM_EXTRA_CNT + 2)
7200c744 93+ * EXTRA_LEN;
ae10e51e
WD
94+#if EXTRA_ROUNDING > 0
95+ if (extra_len & (EXTRA_ROUNDING * EXTRA_LEN))
96+ extra_len = (extra_len | (EXTRA_ROUNDING * EXTRA_LEN)) + EXTRA_LEN;
97+#endif
56522462 98+ alloc_len = FILE_STRUCT_LEN + extra_len + len + checksum_len*2 + 1;
ae10e51e
WD
99+ bp = pool_alloc(checksum_flist->file_pool, alloc_len, "add_checksum");
100+
101+ memset(bp, 0, extra_len + FILE_STRUCT_LEN);
102+ bp += extra_len;
103+ file = (struct file_struct *)bp;
104+ bp += FILE_STRUCT_LEN;
105+
106+ memcpy(bp, basename, len);
56522462
WD
107+ if (alt_sum)
108+ strlcpy(bp+len, alt_sum, checksum_len*2 + 1);
109+ else {
110+ memset(bp+len, '=', checksum_len*2);
111+ bp[len+checksum_len*2] = '\0';
112+ }
ae10e51e
WD
113+
114+ file->flags = flags;
115+ file->mode = S_IFREG;
116+ file->modtime = mtime;
117+ file->len32 = (uint32)file_length;
118+ if (file_length > 0xFFFFFFFFu) {
119+ file->flags |= FLAG_LENGTH64;
120+ OPT_EXTRA(file, 0)->unum = (uint32)(file_length >> 32);
121+ }
122+ file->dirname = dirname;
a3ba6627 123+ bp = F_SUM(file);
ae10e51e 124+ memcpy(bp, sum, checksum_len);
e2bccb59
WD
125+ F_CTIME(file) = ctime;
126+ F_INODE(file) = inode;
ae10e51e
WD
127+
128+ flist_expand(checksum_flist, 1);
e2bccb59 129+ checksum_flist->files[checksum_flist->used++] = file;
ae10e51e
WD
130+
131+ checksum_flist->sorted = checksum_flist->files;
e2bccb59
WD
132+
133+ return 1;
ae10e51e
WD
134+}
135+
071bf6df
WD
136+static void write_checksums(const char *next_dirname, int whole_dir)
137+{
138+ static const char *dirname_save;
139+ char fbuf[MAXPATHLEN];
140+ const char *dirname;
e2bccb59 141+ int used, new_entries, counts_match, no_skipped;
071bf6df
WD
142+ FILE *out_fp;
143+ int i;
144+
145+ dirname = dirname_save;
146+ dirname_save = next_dirname;
147+
148+ if (!dirname)
149+ return;
150+
e2bccb59 151+ used = checksum_flist->used;
071bf6df 152+ new_entries = checksum_updates != 0;
e2bccb59 153+ counts_match = used == checksum_matches;
071bf6df
WD
154+ no_skipped = whole_dir && regular_skipped == 0;
155+
156+ clean_flist(checksum_flist, 0);
157+
e2bccb59 158+ checksum_flist->used = 0;
071bf6df
WD
159+ checksum_matches = 0;
160+ checksum_updates = 0;
161+ regular_skipped = 0;
162+
163+ if (dry_run)
164+ return;
165+
166+ if (*dirname) {
167+ if (pathjoin(fbuf, sizeof fbuf, dirname, ".rsyncsums") >= sizeof fbuf)
168+ return;
169+ } else
170+ strlcpy(fbuf, ".rsyncsums", sizeof fbuf);
171+
172+ if (checksum_flist->high - checksum_flist->low < 0 && no_skipped) {
173+ unlink(fbuf);
174+ return;
175+ }
176+
177+ if (!new_entries && (counts_match || !whole_dir))
178+ return;
179+
180+ if (!(out_fp = fopen(fbuf, "w")))
181+ return;
182+
183+ new_entries = 0;
184+ for (i = checksum_flist->low; i <= checksum_flist->high; i++) {
185+ struct file_struct *file = checksum_flist->sorted[i];
186+ const char *cp = F_SUM(file);
187+ const char *end = cp + checksum_len;
188+ const char *alt_sum = file->basename + strlen(file->basename) + 1;
e2bccb59 189+ int32 ctime, inode;
071bf6df
WD
190+ if (whole_dir && !(file->flags & FLAG_SUM_KEEP))
191+ continue;
e2bccb59
WD
192+ ctime = F_CTIME(file);
193+ inode = F_INODE(file);
071bf6df
WD
194+ if (protocol_version >= 30)
195+ fprintf(out_fp, "%s ", alt_sum);
196+ if (file->flags & FLAG_SUM_MISSING) {
197+ new_entries++;
198+ do {
199+ fprintf(out_fp, "==");
200+ } while (++cp != end);
201+ } else {
202+ do {
203+ fprintf(out_fp, "%02x", CVAL(cp, 0));
204+ } while (++cp != end);
205+ }
206+ if (protocol_version < 30)
207+ fprintf(out_fp, " %s", alt_sum);
208+ if (*alt_sum == '=')
209+ new_entries++;
e2bccb59 210+ fprintf(out_fp, " %10.0f %10.0f %10lu %10lu %s\n",
071bf6df 211+ (double)F_LENGTH(file), (double)file->modtime,
e2bccb59 212+ (long)ctime, (long)inode, file->basename);
071bf6df
WD
213+ }
214+
215+ fclose(out_fp);
071bf6df
WD
216+}
217+
ae10e51e
WD
218+/* The direname value must remain unchanged during the lifespan of the
219+ * created checksum_flist object because we use it directly. */
220+static void read_checksums(const char *dirname)
221+{
222+ char line[MAXPATHLEN+1024], fbuf[MAXPATHLEN], sum[MAX_DIGEST_LEN];
56522462 223+ const char *alt_sum = NULL;
ae10e51e 224+ OFF_T file_length;
e2bccb59
WD
225+ time_t mtime;
226+ int32 ctime, inode;
ae10e51e
WD
227+ int len, dlen, i, flags;
228+ char *cp;
229+ FILE *fp;
230+
e2bccb59
WD
231+ if (checksum_updating)
232+ write_checksums(dirname, 0);
071bf6df 233+
ae10e51e
WD
234+ if (checksum_flist) {
235+ /* Reset the pool memory and empty the file-list array. */
236+ pool_free_old(checksum_flist->file_pool,
237+ pool_boundary(checksum_flist->file_pool, 0));
e2bccb59 238+ checksum_flist->used = 0;
ae10e51e
WD
239+ } else
240+ checksum_flist = flist_new(FLIST_TEMP, "read_checksums");
241+
242+ checksum_flist->low = 0;
243+ checksum_flist->high = -1;
244+ checksum_matches = 0;
071bf6df 245+ checksum_updates = 0;
7200c744 246+ regular_skipped = 0;
ae10e51e 247+
071bf6df
WD
248+ if (!dirname)
249+ return;
250+
251+ dlen = strlcpy(fbuf, dirname, sizeof fbuf);
252+ if (dlen >= (int)sizeof fbuf)
253+ return;
254+ if (dlen)
ae10e51e 255+ fbuf[dlen++] = '/';
071bf6df
WD
256+ else
257+ dirname = NULL;
56522462 258+ strlcpy(fbuf+dlen, ".rsyncsums", sizeof fbuf - dlen);
ae10e51e
WD
259+ if (!(fp = fopen(fbuf, "r")))
260+ return;
261+
262+ while (fgets(line, sizeof line, fp)) {
56522462
WD
263+ cp = line;
264+ if (protocol_version >= 30) {
265+ alt_sum = cp;
266+ if (*cp == '=')
267+ while (*++cp == '=') {}
268+ else
269+ while (isXDigit(cp)) cp++;
270+ if (cp - alt_sum != MD4_DIGEST_LEN*2 || *cp != ' ')
271+ break;
272+ while (*++cp == ' ') {}
273+ }
274+
275+ if (*cp == '=') {
276+ for (i = 0; i < checksum_len*2; i++, cp++) {
277+ if (*cp != '=') {
ae10e51e
WD
278+ cp = "";
279+ break;
280+ }
ae10e51e 281+ }
56522462
WD
282+ memset(sum, 0, checksum_len);
283+ flags = FLAG_SUM_MISSING;
284+ } else {
285+ for (i = 0; i < checksum_len*2; i++, cp++) {
286+ int x;
287+ if (isXDigit(cp)) {
288+ if (isDigit(cp))
289+ x = *cp - '0';
290+ else
291+ x = (*cp & 0xF) + 9;
292+ } else {
293+ cp = "";
294+ break;
295+ }
296+ if (i & 1)
297+ sum[i/2] |= x;
298+ else
299+ sum[i/2] = x << 4;
300+ }
301+ flags = 0;
ae10e51e 302+ }
ae10e51e 303+ if (*cp != ' ')
56522462 304+ break;
ae10e51e
WD
305+ while (*++cp == ' ') {}
306+
56522462
WD
307+ if (protocol_version < 30) {
308+ alt_sum = cp;
309+ if (*cp == '=')
310+ while (*++cp == '=') {}
311+ else
312+ while (isXDigit(cp)) cp++;
313+ if (cp - alt_sum != MD5_DIGEST_LEN*2 || *cp != ' ')
314+ break;
315+ while (*++cp == ' ') {}
316+ }
317+
ae10e51e
WD
318+ file_length = 0;
319+ while (isDigit(cp))
320+ file_length = file_length * 10 + *cp++ - '0';
ae10e51e 321+ if (*cp != ' ')
56522462 322+ break;
ae10e51e
WD
323+ while (*++cp == ' ') {}
324+
325+ mtime = 0;
326+ while (isDigit(cp))
327+ mtime = mtime * 10 + *cp++ - '0';
ae10e51e 328+ if (*cp != ' ')
56522462 329+ break;
ae10e51e
WD
330+ while (*++cp == ' ') {}
331+
7200c744
WD
332+ ctime = 0;
333+ while (isDigit(cp))
334+ ctime = ctime * 10 + *cp++ - '0';
335+ if (*cp != ' ')
336+ break;
337+ while (*++cp == ' ') {}
338+
e2bccb59
WD
339+ inode = 0;
340+ while (isDigit(cp))
341+ inode = inode * 10 + *cp++ - '0';
342+ if (*cp != ' ')
343+ break;
344+ while (*++cp == ' ') {}
345+
ae10e51e
WD
346+ len = strlen(cp);
347+ while (len && (cp[len-1] == '\n' || cp[len-1] == '\r'))
348+ len--;
349+ if (!len)
56522462 350+ break;
ae10e51e
WD
351+ cp[len++] = '\0'; /* len now counts the null */
352+ if (strchr(cp, '/') || len > MAXPATHLEN)
56522462 353+ break;
ae10e51e
WD
354+
355+ strlcpy(fbuf+dlen, cp, sizeof fbuf - dlen);
356+ if (is_excluded(fbuf, 0, ALL_FILTERS)) {
edf38a9d 357+ flags |= FLAG_SUM_KEEP;
ae10e51e 358+ checksum_matches++;
56522462 359+ }
ae10e51e 360+
e2bccb59 361+ add_checksum(dirname, cp, len, file_length, mtime, ctime, inode,
56522462 362+ sum, alt_sum, flags);
ae10e51e
WD
363+ }
364+ fclose(fp);
365+
366+ clean_flist(checksum_flist, 0);
367+}
ae10e51e
WD
368+
369 int push_pathname(const char *dir, int len)
370 {
371 if (dir == pathname)
e2bccb59 372@@ -989,7 +1293,7 @@ struct file_struct *make_file(const char
ae10e51e
WD
373 STRUCT_STAT *stp, int flags, int filter_level)
374 {
375 static char *lastdir;
376- static int lastdir_len = -1;
377+ static int lastdir_len = -2;
378 struct file_struct *file;
ae10e51e
WD
379 char thisname[MAXPATHLEN];
380 char linkname[MAXPATHLEN];
e2bccb59 381@@ -1076,6 +1380,8 @@ struct file_struct *make_file(const char
7200c744
WD
382 if (is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level)) {
383 if (ignore_perishable)
384 non_perishable_cnt++;
385+ if (S_ISREG(st.st_mode))
386+ regular_skipped++;
387 return NULL;
388 }
389
e2bccb59 390@@ -1114,9 +1420,16 @@ struct file_struct *make_file(const char
ae10e51e
WD
391 memcpy(lastdir, thisname, len);
392 lastdir[len] = '\0';
393 lastdir_len = len;
394+ if (always_checksum && am_sender && flist)
395+ read_checksums(lastdir);
396 }
397- } else
398+ } else {
399 basename = thisname;
400+ if (always_checksum && am_sender && flist && lastdir_len == -2) {
401+ lastdir_len = -1;
071bf6df 402+ read_checksums("");
ae10e51e
WD
403+ }
404+ }
405 basename_len = strlen(basename) + 1; /* count the '\0' */
406
407 #ifdef SUPPORT_LINKS
e2bccb59 408@@ -1192,11 +1505,44 @@ struct file_struct *make_file(const char
ae10e51e
WD
409 }
410 #endif
411
412- if (always_checksum && am_sender && S_ISREG(st.st_mode))
413- file_checksum(thisname, tmp_sum, st.st_size);
414-
415 F_PATHNAME(file) = pathname;
416
417+ if (always_checksum && am_sender && S_ISREG(st.st_mode)) {
418+ int j;
419+ if (flist && (j = flist_find(checksum_flist, file)) >= 0) {
420+ struct file_struct *fp = checksum_flist->sorted[j];
e2bccb59
WD
421+ int32 ctime = F_CTIME(fp);
422+ int32 inode = F_INODE(fp);
7200c744 423+ if (F_LENGTH(fp) == st.st_size
e2bccb59
WD
424+ && fp->modtime == st.st_mtime
425+ && ctime == (int32)st.st_ctime
426+ && inode == (int32)st.st_ino) {
56522462
WD
427+ if (fp->flags & FLAG_SUM_MISSING) {
428+ fp->flags &= ~FLAG_SUM_MISSING;
e2bccb59 429+ checksum_updates++;
56522462 430+ file_checksum(thisname, tmp_sum, st.st_size);
a3ba6627 431+ memcpy(F_SUM(fp), tmp_sum, MAX_DIGEST_LEN);
56522462
WD
432+ } else {
433+ checksum_matches++;
434+ memcpy(tmp_sum, F_SUM(fp), MAX_DIGEST_LEN);
435+ }
edf38a9d 436+ fp->flags |= FLAG_SUM_KEEP;
ae10e51e
WD
437+ } else {
438+ clear_file(fp);
edf38a9d 439+ goto compute_new_checksum;
ae10e51e
WD
440+ }
441+ } else {
edf38a9d 442+ compute_new_checksum:
ae10e51e
WD
443+ file_checksum(thisname, tmp_sum, st.st_size);
444+ if (checksum_updating && flist) {
e2bccb59
WD
445+ checksum_updates +=
446+ add_checksum(file->dirname, basename, basename_len,
447+ st.st_size, st.st_mtime, st.st_ctime,
448+ st.st_ino, tmp_sum, NULL, FLAG_SUM_KEEP);
ae10e51e
WD
449+ }
450+ }
451+ }
452+
453 /* This code is only used by the receiver when it is building
454 * a list of files for a delete pass. */
455 if (keep_dirlinks && linkname_len && flist) {
e2bccb59 456@@ -1489,6 +1835,9 @@ static void send_directory(int f, struct
ae10e51e
WD
457
458 closedir(d);
459
460+ if (checksum_updating && always_checksum && am_sender && f >= 0)
071bf6df 461+ write_checksums(NULL, 1);
ae10e51e
WD
462+
463 if (f >= 0 && recurse && !divert_dirs) {
9c85142a
WD
464 int i, end = flist->used - 1;
465 /* send_if_directory() bumps flist->used, so use "end". */
e2bccb59 466@@ -1932,7 +2281,11 @@ struct file_list *send_file_list(int f,
071bf6df
WD
467 * file-list to check if this is a 1-file xfer. */
468 send_extra_file_list(f, 1);
469 }
470- }
471+ } else
472+ flist_eof = 1;
473+
474+ if (checksum_updating && always_checksum && flist_eof)
475+ read_checksums(NULL); /* writes any last updates */
476
477 return flist;
478 }
e2bccb59 479@@ -2225,7 +2578,7 @@ void flist_free(struct file_list *flist)
ae10e51e
WD
480
481 if (!flist->prev || !flist_cnt)
482 pool_destroy(flist->file_pool);
483- else
484+ else if (flist->pool_boundary)
485 pool_free_old(flist->file_pool, flist->pool_boundary);
486
487 if (flist->sorted && flist->sorted != flist->files)
ae10e51e
WD
488--- old/loadparm.c
489+++ new/loadparm.c
99650e0d 490@@ -152,6 +152,7 @@ typedef struct
ae10e51e
WD
491 int syslog_facility;
492 int timeout;
493
494+ BOOL checksum_updating;
495 BOOL fake_super;
496 BOOL ignore_errors;
497 BOOL ignore_nonreadable;
99650e0d 498@@ -200,6 +201,7 @@ static service sDefault =
ae10e51e
WD
499 /* syslog_facility; */ LOG_DAEMON,
500 /* timeout; */ 0,
501
502+ /* checksum_updating; */ False,
503 /* fake_super; */ False,
504 /* ignore_errors; */ False,
505 /* ignore_nonreadable; */ False,
99650e0d 506@@ -316,6 +318,7 @@ static struct parm_struct parm_table[] =
ae10e51e
WD
507 {"lock file", P_STRING, P_LOCAL, &sDefault.lock_file, NULL,0},
508 {"log file", P_STRING, P_LOCAL, &sDefault.log_file, NULL,0},
509 {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL,0},
510+ {"checksum updating", P_BOOL, P_LOCAL, &sDefault.checksum_updating, NULL,0},
511 {"max connections", P_INTEGER,P_LOCAL, &sDefault.max_connections, NULL,0},
512 {"max verbosity", P_INTEGER,P_LOCAL, &sDefault.max_verbosity, NULL,0},
513 {"name", P_STRING, P_LOCAL, &sDefault.name, NULL,0},
99650e0d 514@@ -421,6 +424,7 @@ FN_LOCAL_BOOL(lp_fake_super, fake_super)
ae10e51e
WD
515 FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
516 FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
517 FN_LOCAL_BOOL(lp_list, list)
518+FN_LOCAL_BOOL(lp_checksum_updating, checksum_updating)
519 FN_LOCAL_BOOL(lp_read_only, read_only)
520 FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
521 FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
522--- old/options.c
523+++ new/options.c
a3ba6627 524@@ -109,6 +109,7 @@ size_t bwlimit_writemax = 0;
ae10e51e
WD
525 int ignore_existing = 0;
526 int ignore_non_existing = 0;
527 int need_messages_from_generator = 0;
528+int checksum_updating = 0;
99650e0d 529 int max_delete = INT_MIN;
ae10e51e
WD
530 OFF_T max_size = 0;
531 OFF_T min_size = 0;
e2bccb59 532@@ -308,6 +309,7 @@ void usage(enum logcode F)
ae10e51e
WD
533 rprintf(F," -q, --quiet suppress non-error messages\n");
534 rprintf(F," --no-motd suppress daemon-mode MOTD (see manpage caveat)\n");
535 rprintf(F," -c, --checksum skip based on checksum, not mod-time & size\n");
56522462 536+ rprintf(F," --checksum-updating sender updates .rsyncsums files\n");
ae10e51e
WD
537 rprintf(F," -a, --archive archive mode; equals -rlptgoD (no -H,-A,-X)\n");
538 rprintf(F," --no-OPTION turn off an implied OPTION (e.g. --no-D)\n");
539 rprintf(F," -r, --recursive recurse into directories\n");
e2bccb59 540@@ -547,6 +549,7 @@ static struct poptOption long_options[]
ae10e51e
WD
541 {"checksum", 'c', POPT_ARG_VAL, &always_checksum, 1, 0, 0 },
542 {"no-checksum", 0, POPT_ARG_VAL, &always_checksum, 0, 0, 0 },
543 {"no-c", 0, POPT_ARG_VAL, &always_checksum, 0, 0, 0 },
544+ {"checksum-updating",0, POPT_ARG_NONE, &checksum_updating, 0, 0, 0 },
545 {"block-size", 'B', POPT_ARG_LONG, &block_size, 0, 0, 0 },
546 {"compare-dest", 0, POPT_ARG_STRING, 0, OPT_COMPARE_DEST, 0, 0 },
547 {"copy-dest", 0, POPT_ARG_STRING, 0, OPT_COPY_DEST, 0, 0 },
e2bccb59 548@@ -1910,7 +1913,9 @@ void server_options(char **args,int *arg
ae10e51e
WD
549 args[ac++] = basis_dir[i];
550 }
551 }
552- }
553+ } else if (checksum_updating)
554+ args[ac++] = "--checksum-updating";
555+
556
557 if (append_mode)
558 args[ac++] = "--append";
559--- old/rsync.h
560+++ new/rsync.h
e2bccb59
WD
561@@ -641,6 +641,10 @@ extern int xattrs_ndx;
562 #define F_SUM(f) ((char*)OPT_EXTRA(f, LEN64_BUMP(f) + HLINK_BUMP(f) \
563 + SUM_EXTRA_CNT - 1))
7200c744 564
e2bccb59
WD
565+/* These are only valid on an entry read from a checksum file. */
566+#define F_CTIME(f) OPT_EXTRA(f, LEN64_BUMP(f) + SUM_EXTRA_CNT)->num
567+#define F_INODE(f) OPT_EXTRA(f, LEN64_BUMP(f) + SUM_EXTRA_CNT + 1)->num
568+
569 /* Some utility defines: */
570 #define F_IS_ACTIVE(f) (f)->basename[0]
571 #define F_IS_HLINKED(f) ((f)->flags & FLAG_HLINKED)
572@@ -1077,6 +1081,12 @@ isDigit(const char *ptr)
ae10e51e
WD
573 }
574
575 static inline int
56522462 576+isXDigit(const char *ptr)
ae10e51e 577+{
56522462 578+ return isxdigit(*(unsigned char *)ptr);
ae10e51e
WD
579+}
580+
581+static inline int
582 isPrint(const char *ptr)
583 {
584 return isprint(*(unsigned char *)ptr);
585--- old/rsync.yo
586+++ new/rsync.yo
99650e0d 587@@ -322,6 +322,7 @@ to the detailed description below for a
ae10e51e
WD
588 -q, --quiet suppress non-error messages
589 --no-motd suppress daemon-mode MOTD (see caveat)
590 -c, --checksum skip based on checksum, not mod-time & size
56522462 591+ --checksum-updating sender updates .rsyncsums files
ae10e51e
WD
592 -a, --archive archive mode; equals -rlptgoD (no -H,-A,-X)
593 --no-OPTION turn off an implied OPTION (e.g. --no-D)
594 -r, --recursive recurse into directories
99650e0d 595@@ -518,9 +519,9 @@ uses a "quick check" that (by default) c
ae10e51e
WD
596 of last modification match between the sender and receiver. This option
597 changes this to compare a 128-bit MD4 checksum for each file that has a
598 matching size. Generating the checksums means that both sides will expend
599-a lot of disk I/O reading all the data in the files in the transfer (and
600-this is prior to any reading that will be done to transfer changed files),
601-so this can slow things down significantly.
602+a lot of disk I/O reading the data in all the files in the transfer, so
603+this can slow things down significantly (and this is prior to any reading
604+that will be done to transfer the files that have changed).
605
606 The sending side generates its checksums while it is doing the file-system
607 scan that builds the list of the available files. The receiver generates
99650e0d 608@@ -528,12 +529,42 @@ its checksums when it is scanning for ch
ae10e51e
WD
609 file that has the same size as the corresponding sender's file: files with
610 either a changed size or a changed checksum are selected for transfer.
611
612+Starting with version 3.0.0, the sending side will look for a checksum
613+summary file and use a pre-generated checksum that it reads out of the file
614+(as long as it matches the file's size and modified time). This allows a
615+server to support the --checksum option to clients without having to
616+recompute the checksums for each client. See the bf(--checksum-updating)
56522462 617+option for a way to have rsync create/update these checksum files.
ae10e51e
WD
618+
619 Note that rsync always verifies that each em(transferred) file was
620 correctly reconstructed on the receiving side by checking a whole-file
621 checksum that is generated when as the file is transferred, but that
622 automatic after-the-transfer verification has nothing to do with this
623 option's before-the-transfer "Does this file need to be updated?" check.
624
625+dit(bf(--checksum-updating)) This option tells the sending side to create
626+and/or update per-directory checksum files that are used by the
56522462
WD
627+bf(--checksum) option. The file that is updated is named .rsyncsums. If
628+pre-transfer checksums are not being computed, this option has no effect.
ae10e51e
WD
629+
630+The checksum files stores the computed checksum, last-known size,
631+modification time, and name for each file in the current directory. If a
632+later transfer finds that a file matches its prior size and modification
633+time, the checksum is assumed to still be correct. Otherwise it is
634+recomputed and udpated in the file.
635+
636+To avoid transferring the system's checksum files, you can use an exclude
56522462 637+(e.g. bf(--exclude=.rsyncsums)). To make this easier to type, you can use
ae10e51e
WD
638+a popt alias. For instance, adding the following line in your ~/.popt file
639+defines a bf(-cc) option that enables checksum updating and excludes the
640+checksum files:
641+
56522462 642+verb( rsync alias --cc --checksum-updating --exclude=.rsyncsums)
ae10e51e
WD
643+
644+An rsync daemon does not allow the client to control this setting, so see
645+the "checksum updating" daemon config option for information on how to make
646+a daemon maintain these checksum files.
647+
648 dit(bf(-a, --archive)) This is equivalent to bf(-rlptgoD). It is a quick
649 way of saying you want recursion and want to preserve almost
650 everything (with -H being a notable omission).
651--- old/rsyncd.conf.yo
652+++ new/rsyncd.conf.yo
56522462 653@@ -198,6 +198,20 @@ locking on this file to ensure that the
ae10e51e
WD
654 exceeded for the modules sharing the lock file.
655 The default is tt(/var/run/rsyncd.lock).
656
657+dit(bf(checksum updating)) This option tells rsync to update/create the
658+checksum information in the per-directory checksum files when users copy
659+files using the bf(--checksum) option. Any file that has changed since it
660+was last checksummed (or is not mentioned) has its data updated in the
56522462 661+.rsyncsums file.
ae10e51e
WD
662+
663+Note that this updating will occur even if the module is listed as being
664+read-only. If you want to hide these files (and you will almost always
56522462 665+want to do), add ".rsyncsums" to the module's exclude setting.
ae10e51e
WD
666+
667+Note also that the client's command-line option, bf(--checksum-updating),
668+has no effect on a daemon. A daemon will only update/create checksum files
669+if this config option is true.
670+
671 dit(bf(read only)) The "read only" option determines whether clients
672 will be able to upload files or not. If "read only" is true then any
673 attempted uploads will fail. If "read only" is false then uploads will
7200c744
WD
674--- old/support/rsyncsums
675+++ new/support/rsyncsums
e2bccb59 676@@ -0,0 +1,175 @@
7200c744
WD
677+#!/usr/bin/perl -w
678+use strict;
679+
680+use Getopt::Long;
681+use Cwd qw(abs_path cwd);
682+use Digest::MD4;
683+use Digest::MD5;
684+
685+our $SUMS_FILE = '.rsyncsums';
686+
e2bccb59 687+our($recurse_opt, $help_opt);
7200c744
WD
688+our $verbosity = 0;
689+
690+&Getopt::Long::Configure('bundling');
691+&usage if !&GetOptions(
692+ 'recurse|r' => \$recurse_opt,
7200c744
WD
693+ 'verbose|v+' => \$verbosity,
694+ 'help|h' => \$help_opt,
695+) || $help_opt;
696+
697+my $start_dir = cwd();
698+
699+my @dirs = @ARGV;
700+@dirs = '.' unless @dirs;
701+foreach (@dirs) {
702+ $_ = abs_path($_);
703+}
704+
705+$| = 1;
706+
707+my $md4 = Digest::MD4->new;
708+my $md5 = Digest::MD5->new;
709+
710+while (@dirs) {
711+ my $dir = shift @dirs;
712+
713+ if (!chdir($dir)) {
714+ warn "Unable to chdir to $dir: $!\n";
715+ next;
716+ }
717+ if (!opendir(DP, '.')) {
718+ warn "Unable to opendir $dir: $!\n";
719+ next;
720+ }
721+
722+ if ($verbosity) {
723+ my $reldir = $dir;
724+ $reldir =~ s#^$start_dir(/|$)# $1 ? '' : '.' #eo;
725+ print "$reldir ... ";
726+ }
727+
728+ my $sums_mtime = (stat($SUMS_FILE))[9];
729+ my %cache;
7200c744
WD
730+ my @subdirs;
731+ my $cnt = 0;
7200c744
WD
732+ while (defined(my $fn = readdir(DP))) {
733+ next if $fn =~ /^\.\.?$/ || $fn =~ /^\Q$SUMS_FILE\E$/o || -l $fn;
734+ if (-d _) {
735+ push(@subdirs, "$dir/$fn");
736+ next;
737+ }
738+ next unless -f _;
739+
e2bccb59
WD
740+ my($size,$mtime,$ctime,$inode) = (stat(_))[7,9,10,1];
741+ next if $size == 0;
7200c744 742+
e2bccb59 743+ $cache{$fn} = [ $size, $mtime, $ctime & 0xFFFFFFFF, $inode & 0xFFFFFFFF ];
7200c744 744+ $cnt++;
7200c744
WD
745+ }
746+
747+ closedir DP;
748+
749+ unshift(@dirs, sort @subdirs) if $recurse_opt;
750+
751+ if (!$cnt) {
752+ if (defined $sums_mtime) {
753+ print "(removed $SUMS_FILE) " if $verbosity;
754+ unlink($SUMS_FILE);
755+ }
756+ print "empty\n" if $verbosity;
757+ next;
758+ }
759+
7200c744
WD
760+ if (open(FP, '+<', $SUMS_FILE)) {
761+ while (<FP>) {
762+ chomp;
e2bccb59 763+ my($sum4, $sum5, $size, $mtime, $ctime, $inode, $fn) = split(' ', $_, 7);
7200c744
WD
764+ my $ref = $cache{$fn};
765+ if (defined $ref) {
766+ if ($$ref[0] == $size
e2bccb59
WD
767+ && $$ref[1] == $mtime
768+ && $$ref[2] == $ctime
769+ && $$ref[3] == $inode
7200c744 770+ && $sum4 !~ /=/ && $sum5 !~ /=/) {
e2bccb59
WD
771+ $$ref[4] = $sum4;
772+ $$ref[5] = $sum5;
7200c744
WD
773+ $cnt--;
774+ } else {
e2bccb59 775+ $$ref[4] = $$ref[5] = undef;
7200c744
WD
776+ }
777+ } else {
778+ $cnt = -1; # Force rewrite due to removed line.
779+ }
780+ }
781+ } else {
782+ open(FP, '>', $SUMS_FILE) or die "Unable to write $dir/$SUMS_FILE: $!\n";
783+ $cnt = -1;
784+ }
785+
786+ if ($cnt) {
e2bccb59 787+ print "UPDATING\n" if $verbosity;
7200c744
WD
788+ while (my($fn, $ref) = each %cache) {
789+ next if defined $$ref[3] && defined $$ref[4];
790+ if (!open(IN, $fn)) {
791+ print STDERR "Unable to read $fn: $!\n";
792+ delete $cache{$fn};
793+ next;
794+ }
795+
e2bccb59
WD
796+ my($size,$mtime,$ctime,$inode) = (stat(IN))[7,9,10,1];
797+ if ($size == 0) {
798+ close IN;
799+ next;
800+ }
7200c744 801+
e2bccb59 802+ my($sum4, $sum5);
7200c744
WD
803+ while (1) {
804+ while (sysread(IN, $_, 64*1024)) {
805+ $md4->add($_);
806+ $md5->add($_);
807+ }
808+ $sum4 = $md4->hexdigest;
809+ $sum5 = $md5->hexdigest;
edf38a9d
WD
810+ print " $sum4 $sum5" if $verbosity > 2;
811+ print " $fn\n" if $verbosity > 1;
e2bccb59
WD
812+ my($size2,$mtime2,$ctime2,$inode2) = (stat(IN))[7,9,10,1];
813+ last if $size == $size2 && $mtime == $mtime2
814+ && $ctime == $ctime2 && $inode == $inode2;
7200c744
WD
815+ $size = $size2;
816+ $mtime = $mtime2;
817+ $ctime = $ctime2;
e2bccb59 818+ $inode = $inode2;
7200c744
WD
819+ sysseek(IN, 0, 0);
820+ }
821+
822+ close IN;
823+
e2bccb59 824+ $cache{$fn} = [ $size, $mtime, $ctime, $inode, $sum4, $sum5 ];
7200c744
WD
825+ }
826+
7200c744
WD
827+ seek(FP, 0, 0);
828+ foreach my $fn (sort keys %cache) {
829+ my $ref = $cache{$fn};
e2bccb59
WD
830+ my($size, $mtime, $ctime, $inode, $sum4, $sum5) = @$ref;
831+ printf FP '%s %s %10d %10d %10d %10d %s' . "\n", $sum4, $sum5, $size, $mtime, $ctime, $inode, $fn;
7200c744
WD
832+ }
833+ truncate(FP, tell(FP));
834+ } else {
e2bccb59 835+ print "ok\n" if $verbosity;
7200c744
WD
836+ }
837+
838+ close FP;
7200c744
WD
839+}
840+
841+sub usage
842+{
843+ die <<EOT;
844+Usage: rsyncsums [OPTIONS] [DIRS]
845+
846+Options:
847+ -r, --recurse Update $SUMS_FILE files in subdirectories too.
7200c744
WD
848+ -v, --verbose Mention what we're doing. Repeat for more info.
849+ -h, --help Display this help message.
850+EOT
851+}