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