My modified version of Chris Shoemaker's improved batch-file handling.
[rsync/rsync.git] / generator.c
CommitLineData
ef1aa910 1/* -*- c-file-style: "linux" -*-
91262d5d
MP
2
3 rsync -- fast file replication program
2cda2560
WD
4
5 Copyright (C) 1996-2000 by Andrew Tridgell
2f03f956 6 Copyright (C) Paul Mackerras 1996
91262d5d 7 Copyright (C) 2002 by Martin Pool <mbp@samba.org>
2cda2560 8
2f03f956
AT
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
2cda2560 13
2f03f956
AT
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
2cda2560 18
2f03f956
AT
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#include "rsync.h"
25
26extern int verbose;
27extern int dry_run;
28extern int relative_paths;
716e73d4 29extern int keep_dirlinks;
2f03f956
AT
30extern int preserve_links;
31extern int am_root;
32extern int preserve_devices;
33extern int preserve_hard_links;
6744b62d
WD
34extern int preserve_perms;
35extern int preserve_uid;
36extern int preserve_gid;
2f03f956 37extern int update_only;
3d6feada 38extern int opt_ignore_existing;
2f03f956
AT
39extern int csum_length;
40extern int ignore_times;
f83f0548 41extern int size_only;
2f03f956 42extern int io_timeout;
d04e9c51 43extern int protocol_version;
2f03f956 44extern int always_checksum;
60c8d7bc 45extern char *compare_dest;
59c95e42 46extern int link_dest;
5774786f
WD
47extern int whole_file;
48extern int local_server;
5774786f 49extern int list_only;
b9f592fb 50extern int read_batch;
5774786f
WD
51extern int only_existing;
52extern int orig_umask;
53extern int safe_symlinks;
ec8290c8 54extern unsigned int block_size;
2f03f956 55
97f9dcae
WD
56extern struct exclude_list_struct server_exclude_list;
57
2f03f956
AT
58
59/* choose whether to skip a particular file */
dfd5ba6a 60static int skip_file(char *fname, struct file_struct *file, STRUCT_STAT *st)
2f03f956 61{
cc1e997d 62 if (st->st_size != file->length)
84acca07 63 return 0;
59c95e42 64 if (link_dest) {
e7bc9b64 65 if (preserve_perms
67e78a82 66 && (st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
84acca07 67 return 0;
bb24028f 68
6744b62d 69 if (am_root && preserve_uid && st->st_uid != file->uid)
84acca07 70 return 0;
bb24028f 71
a60e2dca
S
72 if (preserve_gid && file->gid != GID_NONE
73 && st->st_gid != file->gid)
84acca07 74 return 0;
59c95e42
DD
75 }
76
2cda2560 77 /* if always checksum is set then we use the checksum instead
2f03f956
AT
78 of the file time to determine whether to sync */
79 if (always_checksum && S_ISREG(st->st_mode)) {
80 char sum[MD4_SUM_LENGTH];
60c8d7bc
DD
81 char fnamecmpdest[MAXPATHLEN];
82
83 if (compare_dest != NULL) {
84 if (access(fname, 0) != 0) {
248ed45f
WD
85 pathjoin(fnamecmpdest, sizeof fnamecmpdest,
86 compare_dest, fname);
60c8d7bc
DD
87 fname = fnamecmpdest;
88 }
89 }
2f03f956 90 file_checksum(fname,sum,st->st_size);
728d0922 91 return memcmp(sum, file->u.sum, protocol_version < 21 ? 2
84acca07 92 : MD4_SUM_LENGTH) == 0;
2f03f956
AT
93 }
94
cc1e997d 95 if (size_only)
84acca07 96 return 1;
2f03f956 97
cc1e997d 98 if (ignore_times)
84acca07 99 return 0;
cc1e997d 100
84acca07 101 return cmp_modtime(st->st_mtime, file->modtime) == 0;
2f03f956
AT
102}
103
104
2f03f956 105/*
0e36d9da 106 * NULL sum_struct means we have no checksums
195bd906 107 */
fc0257c9 108void write_sum_head(int f, struct sum_struct *sum)
2f03f956 109{
fc0257c9
S
110 static struct sum_struct null_sum;
111
c338460d 112 if (sum == NULL)
fc0257c9
S
113 sum = &null_sum;
114
115 write_int(f, sum->count);
116 write_int(f, sum->blength);
d04e9c51 117 if (protocol_version >= 27)
fc0257c9
S
118 write_int(f, sum->s2length);
119 write_int(f, sum->remainder);
2f03f956
AT
120}
121
ec8290c8 122/*
195bd906 123 * set (initialize) the size entries in the per-file sum_struct
ec8290c8 124 * calculating dynamic block and checksum sizes.
195bd906 125 *
ec8290c8 126 * This is only called from generate_and_send_sums() but is a separate
195bd906
S
127 * function to encapsulate the logic.
128 *
129 * The block size is a rounded square root of file length.
130 *
131 * The checksum size is determined according to:
132 * blocksum_bits = BLOCKSUM_EXP + 2*log2(file_len) - log2(block_len)
133 * provided by Donovan Baarda which gives a probability of rsync
134 * algorithm corrupting data and falling back using the whole md4
135 * checksums.
136 *
137 * This might be made one of several selectable heuristics.
138 */
bceec82f 139
423dba8e 140static void sum_sizes_sqroot(struct sum_struct *sum, uint64 len)
195bd906 141{
da9d12f5
WD
142 unsigned int blength;
143 int s2length;
195bd906
S
144 uint32 c;
145 uint64 l;
146
147 if (block_size) {
148 blength = block_size;
149 } else if (len <= BLOCK_SIZE * BLOCK_SIZE) {
150 blength = BLOCK_SIZE;
151 } else {
152 l = len;
153 c = 1;
154 while (l >>= 2) {
155 c <<= 1;
156 }
157 blength = 0;
158 do {
159 blength |= c;
fb55e28d 160 if (len < (uint64)blength * blength)
195bd906
S
161 blength &= ~c;
162 c >>= 1;
163 } while (c >= 8); /* round to multiple of 8 */
164 blength = MAX(blength, BLOCK_SIZE);
165 }
166
d04e9c51 167 if (protocol_version < 27) {
195bd906
S
168 s2length = csum_length;
169 } else if (csum_length == SUM_LENGTH) {
170 s2length = SUM_LENGTH;
171 } else {
da9d12f5 172 int b = BLOCKSUM_BIAS;
195bd906
S
173 l = len;
174 while (l >>= 1) {
175 b += 2;
176 }
177 c = blength;
178 while (c >>= 1 && b) {
179 b--;
180 }
181 s2length = (b + 1 - 32 + 7) / 8; /* add a bit,
182 * subtract rollsum,
183 * round up
184 * --optimize in compiler--
185 */
186 s2length = MAX(s2length, csum_length);
187 s2length = MIN(s2length, SUM_LENGTH);
188 }
189
190 sum->flength = len;
191 sum->blength = blength;
192 sum->s2length = s2length;
193 sum->count = (len + (blength - 1)) / blength;
194 sum->remainder = (len % blength);
195
196 if (sum->count && verbose > 2) {
0e36d9da
WD
197 rprintf(FINFO, "count=%.0f rem=%u blength=%u s2length=%d flength=%.0f\n",
198 (double)sum->count, sum->remainder, sum->blength,
da9d12f5 199 sum->s2length, (double)sum->flength);
195bd906
S
200 }
201}
80605142 202
bceec82f 203
80605142
WD
204/*
205 * Generate and send a stream of signatures/checksums that describe a buffer
e66dfd18 206 *
80605142
WD
207 * Generate approximately one checksum every block_len bytes.
208 */
9774cc33 209static void generate_and_send_sums(struct map_struct *buf, OFF_T len, int f_out)
2f03f956 210{
80605142
WD
211 size_t i;
212 struct sum_struct sum;
2f03f956
AT
213 OFF_T offset = 0;
214
423dba8e 215 sum_sizes_sqroot(&sum, len);
e66dfd18 216
fc0257c9 217 write_sum_head(f_out, &sum);
2f03f956 218
80605142 219 for (i = 0; i < sum.count; i++) {
0e36d9da 220 unsigned int n1 = MIN(len, sum.blength);
e66dfd18 221 char *map = map_ptr(buf, offset, n1);
80605142
WD
222 uint32 sum1 = get_checksum1(map, n1);
223 char sum2[SUM_LENGTH];
2f03f956 224
80605142 225 get_checksum2(map, n1, sum2);
2f03f956 226
80605142 227 if (verbose > 3) {
e66dfd18 228 rprintf(FINFO,
0e36d9da
WD
229 "chunk[%.0f] offset=%.0f len=%u sum1=%08lx\n",
230 (double)i, (double)offset, n1,
231 (unsigned long)sum1);
80605142
WD
232 }
233 write_int(f_out, sum1);
fc0257c9 234 write_buf(f_out, sum2, sum.s2length);
2f03f956
AT
235 len -= n1;
236 offset += n1;
237 }
2f03f956
AT
238}
239
240
ef1aa910 241
fd322eef 242/*
420ef2c4 243 * Acts on file number @p i from @p flist, whose name is @p fname.
ef1aa910
MP
244 *
245 * First fixes up permissions, then generates checksums for the file.
246 *
420ef2c4
MP
247 * @note This comment was added later by mbp who was trying to work it
248 * out. It might be wrong.
fd322eef
WD
249 */
250static void recv_generator(char *fname, struct file_struct *file, int i,
251 int f_out)
2cda2560 252{
2f03f956
AT
253 int fd;
254 STRUCT_STAT st;
968c8030 255 struct map_struct *mapbuf;
2f03f956 256 int statret;
375a4556
DD
257 char *fnamecmp;
258 char fnamecmpbuf[MAXPATHLEN];
f7632fc6 259
dfd5ba6a
WD
260 if (list_only)
261 return;
2f03f956
AT
262
263 if (verbose > 2)
264 rprintf(FINFO,"recv_generator(%s,%d)\n",fname,i);
265
97f9dcae
WD
266 if (server_exclude_list.head
267 && check_exclude(&server_exclude_list, fname,
3e35c34b
WD
268 S_ISDIR(file->mode)) < 0) {
269 if (verbose) {
270 rprintf(FINFO, "skipping server-excluded file \"%s\"\n",
271 fname);
272 }
97f9dcae 273 return;
3e35c34b 274 }
97f9dcae 275
6218c7bf 276 statret = link_stat(fname, &st, keep_dirlinks && S_ISDIR(file->mode));
63787382 277
1347d512
AT
278 if (only_existing && statret == -1 && errno == ENOENT) {
279 /* we only want to update existing files */
3e35c34b
WD
280 if (verbose > 1)
281 rprintf(FINFO, "not creating new file \"%s\"\n", fname);
1347d512
AT
282 return;
283 }
284
2cda2560
WD
285 if (statret == 0 &&
286 !preserve_perms &&
4df9f368
AT
287 (S_ISDIR(st.st_mode) == S_ISDIR(file->mode))) {
288 /* if the file exists already and we aren't perserving
2cda2560
WD
289 * permissions then act as though the remote end sent
290 * us the file permissions we already have */
67e78a82
WD
291 file->mode = (file->mode & ~CHMOD_BITS)
292 | (st.st_mode & CHMOD_BITS);
4df9f368
AT
293 }
294
2f03f956 295 if (S_ISDIR(file->mode)) {
2cda2560
WD
296 /* The file to be received is a directory, so we need
297 * to prepare appropriately. If there is already a
298 * file of that name and it is *not* a directory, then
299 * we need to delete it. If it doesn't exist, then
300 * recursively create it. */
301
ec8290c8
WD
302 if (dry_run)
303 return; /* TODO: causes inaccuracies -- fix */
2f03f956 304 if (statret == 0 && !S_ISDIR(st.st_mode)) {
c7c11a0d 305 if (robust_unlink(fname) != 0) {
d62bcc17
WD
306 rsyserr(FERROR, errno,
307 "recv_generator: unlink %s to make room for directory",
308 full_fname(fname));
2f03f956
AT
309 return;
310 }
311 statret = -1;
312 }
313 if (statret != 0 && do_mkdir(fname,file->mode) != 0 && errno != EEXIST) {
d62bcc17
WD
314 if (!(relative_paths && errno == ENOENT
315 && create_directory_path(fname, orig_umask) == 0
316 && do_mkdir(fname, file->mode) == 0)) {
317 rsyserr(FERROR, errno,
318 "recv_generator: mkdir %s failed",
319 full_fname(fname));
2f03f956
AT
320 }
321 }
716e73d4
WD
322 /* f_out is set to -1 when doing final directory-permission
323 * and modification-time repair. */
324 if (set_perms(fname, file, statret ? NULL : &st, 0)
325 && verbose && f_out != -1)
2f03f956
AT
326 rprintf(FINFO,"%s/\n",fname);
327 return;
328 }
329
b9f592fb
WD
330 if (read_batch)
331 return;
332
2f03f956
AT
333 if (preserve_links && S_ISLNK(file->mode)) {
334#if SUPPORT_LINKS
335 char lnk[MAXPATHLEN];
336 int l;
2f03f956 337
728d0922 338 if (safe_symlinks && unsafe_symlink(file->u.link, fname)) {
2f03f956 339 if (verbose) {
ea42541f 340 rprintf(FINFO, "ignoring unsafe symlink %s -> \"%s\"\n",
728d0922 341 full_fname(fname), file->u.link);
2f03f956
AT
342 }
343 return;
344 }
345 if (statret == 0) {
346 l = readlink(fname,lnk,MAXPATHLEN-1);
347 if (l > 0) {
348 lnk[l] = 0;
85d4d142
MP
349 /* A link already pointing to the
350 * right place -- no further action
351 * required. */
728d0922 352 if (strcmp(lnk,file->u.link) == 0) {
c41b52c4
WD
353 set_perms(fname, file, &st,
354 PERMS_REPORT);
2f03f956
AT
355 return;
356 }
2cda2560 357 }
85d4d142
MP
358 /* Not a symlink, so delete whatever's
359 * already there and put a new symlink
2cda2560 360 * in place. */
4b3977bf 361 delete_file(fname);
2f03f956 362 }
728d0922 363 if (do_symlink(file->u.link,fname) != 0) {
d62bcc17
WD
364 rsyserr(FERROR, errno, "symlink %s -> \"%s\" failed",
365 full_fname(fname), file->u.link);
2f03f956
AT
366 } else {
367 set_perms(fname,file,NULL,0);
368 if (verbose) {
728d0922 369 rprintf(FINFO,"%s -> %s\n", fname,file->u.link);
2f03f956
AT
370 }
371 }
372#endif
373 return;
374 }
375
376#ifdef HAVE_MKNOD
377 if (am_root && preserve_devices && IS_DEVICE(file->mode)) {
2cda2560 378 if (statret != 0 ||
2f03f956 379 st.st_mode != file->mode ||
3915fd75 380 st.st_rdev != file->u.rdev) {
2f03f956 381 delete_file(fname);
d62bcc17 382 if (verbose > 2) {
2f03f956 383 rprintf(FINFO,"mknod(%s,0%o,0x%x)\n",
728d0922 384 fname,(int)file->mode,(int)file->u.rdev);
d62bcc17 385 }
728d0922 386 if (do_mknod(fname,file->mode,file->u.rdev) != 0) {
d62bcc17
WD
387 rsyserr(FERROR, errno, "mknod %s failed",
388 full_fname(fname));
2f03f956
AT
389 } else {
390 set_perms(fname,file,NULL,0);
391 if (verbose)
392 rprintf(FINFO,"%s\n",fname);
393 }
394 } else {
c41b52c4 395 set_perms(fname, file, &st, PERMS_REPORT);
2f03f956
AT
396 }
397 return;
398 }
399#endif
400
6dff5992 401 if (preserve_hard_links && hard_link_check(file, HL_CHECK_MASTER))
2f03f956 402 return;
2f03f956
AT
403
404 if (!S_ISREG(file->mode)) {
1bbd10fe 405 rprintf(FINFO, "skipping non-regular file \"%s\"\n",fname);
2f03f956
AT
406 return;
407 }
408
375a4556
DD
409 fnamecmp = fname;
410
c338460d 411 if (statret == -1 && compare_dest != NULL) {
375a4556
DD
412 /* try the file at compare_dest instead */
413 int saveerrno = errno;
248ed45f 414 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf, compare_dest, fname);
6218c7bf 415 statret = link_stat(fnamecmpbuf, &st, 0);
375a4556
DD
416 if (!S_ISREG(st.st_mode))
417 statret = -1;
418 if (statret == -1)
419 errno = saveerrno;
59c95e42
DD
420#if HAVE_LINK
421 else if (link_dest && !dry_run) {
422 if (do_link(fnamecmpbuf, fname) != 0) {
e7bc9b64 423 if (verbose > 0) {
d62bcc17
WD
424 rsyserr(FINFO, errno, "link %s => %s",
425 fnamecmpbuf, fname);
e7bc9b64 426 }
59c95e42
DD
427 }
428 fnamecmp = fnamecmpbuf;
429 }
430#endif
375a4556
DD
431 else
432 fnamecmp = fnamecmpbuf;
433 }
434
2f03f956 435 if (statret == -1) {
6dff5992
WD
436 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
437 return;
2f03f956
AT
438 if (errno == ENOENT) {
439 write_int(f_out,i);
ec8290c8
WD
440 if (!dry_run)
441 write_sum_head(f_out, NULL);
ea42541f 442 } else if (verbose > 1) {
d62bcc17
WD
443 rsyserr(FERROR, errno,
444 "recv_generator: failed to open %s",
445 full_fname(fname));
2f03f956
AT
446 }
447 return;
448 }
449
450 if (!S_ISREG(st.st_mode)) {
451 if (delete_file(fname) != 0) {
452 return;
453 }
454
455 /* now pretend the file didn't exist */
6dff5992
WD
456 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
457 return;
2f03f956 458 write_int(f_out,i);
ec8290c8
WD
459 if (!dry_run)
460 write_sum_head(f_out, NULL);
2f03f956
AT
461 return;
462 }
463
2cda2560 464 if (opt_ignore_existing && fnamecmp == fname) {
3d6feada
MP
465 if (verbose > 1)
466 rprintf(FINFO,"%s exists\n",fname);
467 return;
2cda2560 468 }
3d6feada 469
d3a4375f
WD
470 if (update_only && fnamecmp == fname
471 && cmp_modtime(st.st_mtime, file->modtime) > 0) {
2f03f956
AT
472 if (verbose > 1)
473 rprintf(FINFO,"%s is newer\n",fname);
474 return;
475 }
476
84acca07 477 if (skip_file(fname, file, &st)) {
bd4ed7f7 478 if (fnamecmp == fname)
c41b52c4 479 set_perms(fname, file, &st, PERMS_REPORT);
2f03f956
AT
480 return;
481 }
482
483 if (dry_run) {
484 write_int(f_out,i);
485 return;
486 }
487
f38bd4a0 488 if (whole_file > 0) {
2f03f956 489 write_int(f_out,i);
fc0257c9 490 write_sum_head(f_out, NULL);
2f03f956
AT
491 return;
492 }
493
2cda2560 494 /* open the file */
8c9fd200 495 fd = do_open(fnamecmp, O_RDONLY, 0);
2f03f956
AT
496
497 if (fd == -1) {
d62bcc17
WD
498 rsyserr(FERROR, errno, "failed to open %s, continuing",
499 full_fname(fnamecmp));
60be6acf 500 /* pretend the file didn't exist */
6dff5992
WD
501 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
502 return;
60be6acf 503 write_int(f_out,i);
fc0257c9 504 write_sum_head(f_out, NULL);
2f03f956
AT
505 return;
506 }
507
968c8030
WD
508 if (st.st_size > 0)
509 mapbuf = map_file(fd,st.st_size);
510 else
511 mapbuf = NULL;
2f03f956 512
dfd5ba6a
WD
513 if (verbose > 3) {
514 rprintf(FINFO,"gen mapped %s of size %.0f\n", fnamecmp,
515 (double)st.st_size);
516 }
2f03f956 517
2f03f956 518 if (verbose > 2)
80605142 519 rprintf(FINFO, "generating and sending sums for %d\n", i);
2f03f956
AT
520
521 write_int(f_out,i);
968c8030 522 generate_and_send_sums(mapbuf, st.st_size, f_out);
2f03f956
AT
523
524 close(fd);
ec8290c8
WD
525 if (mapbuf)
526 unmap_file(mapbuf);
2f03f956
AT
527}
528
529
7daccb8e 530void generate_files(int f_out, struct file_list *flist, char *local_name)
2f03f956
AT
531{
532 int i;
e1f67417 533 int phase = 0;
968c8030 534 char fbuf[MAXPATHLEN];
2f03f956 535
45e08edb
WD
536 if (verbose > 2) {
537 rprintf(FINFO, "generator starting pid=%ld count=%d\n",
538 (long)getpid(), flist->count);
539 }
2f03f956 540
3e7053ac
MP
541 if (verbose >= 2) {
542 rprintf(FINFO,
f38bd4a0 543 whole_file > 0
3e7053ac
MP
544 ? "delta-transmission disabled for local transfer or --whole-file\n"
545 : "delta transmission enabled\n");
546 }
2cda2560 547
a57873b7
AT
548 /* we expect to just sit around now, so don't exit on a
549 timeout. If we really get a timeout then the other process should
550 exit */
551 io_timeout = 0;
552
2f03f956
AT
553 for (i = 0; i < flist->count; i++) {
554 struct file_struct *file = flist->files[i];
dfd5ba6a 555 struct file_struct copy;
2f03f956 556
dfd5ba6a
WD
557 if (!file->basename)
558 continue;
2f03f956
AT
559 /* we need to ensure that any directories we create have writeable
560 permissions initially so that we can create the files within
561 them. This is then fixed after the files are transferred */
dfd5ba6a
WD
562 if (!am_root && S_ISDIR(file->mode) && !(file->mode & S_IWUSR)) {
563 copy = *file;
2cda2560
WD
564 /* XXX: Could this be causing a problem on SCO? Perhaps their
565 * handling of permissions is strange? */
dfd5ba6a
WD
566 copy.mode |= S_IWUSR; /* user write */
567 file = &copy;
2f03f956
AT
568 }
569
3fef5364 570 recv_generator(local_name ? local_name : f_name_to(file, fbuf),
7daccb8e 571 file, i, f_out);
2f03f956
AT
572 }
573
574 phase++;
575 csum_length = SUM_LENGTH;
e1f67417 576 ignore_times = 1;
2f03f956
AT
577
578 if (verbose > 2)
579 rprintf(FINFO,"generate_files phase=%d\n",phase);
580
7daccb8e 581 write_int(f_out, -1);
2f03f956 582
bc63ae3f
S
583 /* files can cycle through the system more than once
584 * to catch initial checksum errors */
b9b15fb1 585 while ((i = get_redo_num()) != -1) {
bc63ae3f 586 struct file_struct *file = flist->files[i];
3fef5364 587 recv_generator(local_name ? local_name : f_name_to(file, fbuf),
7daccb8e 588 file, i, f_out);
bc63ae3f 589 }
2f03f956 590
bc63ae3f
S
591 phase++;
592 if (verbose > 2)
593 rprintf(FINFO,"generate_files phase=%d\n",phase);
2f03f956 594
7daccb8e 595 write_int(f_out, -1);
6dff5992
WD
596
597 if (preserve_hard_links)
598 do_hard_links();
599
600 /* now we need to fix any directory permissions that were
601 * modified during the transfer */
602 for (i = 0; i < flist->count; i++) {
603 struct file_struct *file = flist->files[i];
ec8290c8
WD
604 if (!file->basename || !S_ISDIR(file->mode))
605 continue;
6dff5992
WD
606 recv_generator(local_name ? local_name : f_name(file),
607 file, i, -1);
608 }
609
610 if (verbose > 2)
611 rprintf(FINFO,"generate_files finished\n");
2f03f956 612}