1 /* -*- c-file-style: "linux" -*-
3 rsync -- fast file replication program
5 Copyright (C) 1996-2000 by Andrew Tridgell
6 Copyright (C) Paul Mackerras 1996
7 Copyright (C) 2002 by Martin Pool <mbp@samba.org>
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.
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.
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.
28 extern int relative_paths
;
29 extern int preserve_links
;
31 extern int preserve_devices
;
32 extern int preserve_hard_links
;
33 extern int update_only
;
34 extern int opt_ignore_existing
;
35 extern int csum_length
;
36 extern int ignore_times
;
38 extern int io_timeout
;
39 extern int protocol_version
;
40 extern int always_checksum
;
41 extern int modify_window
;
42 extern char *compare_dest
;
46 /* choose whether to skip a particular file */
47 static int skip_file(char *fname
,
48 struct file_struct
*file
, STRUCT_STAT
*st
)
50 if (st
->st_size
!= file
->length
) {
54 extern int preserve_perms
;
55 extern int preserve_uid
;
56 extern int preserve_gid
;
59 && (st
->st_mode
& ~_S_IFMT
) != (file
->mode
& ~_S_IFMT
))
62 if (preserve_uid
&& st
->st_uid
!= file
->uid
)
65 if (preserve_gid
&& st
->st_gid
!= file
->gid
)
69 /* if always checksum is set then we use the checksum instead
70 of the file time to determine whether to sync */
71 if (always_checksum
&& S_ISREG(st
->st_mode
)) {
72 char sum
[MD4_SUM_LENGTH
];
73 char fnamecmpdest
[MAXPATHLEN
];
75 if (compare_dest
!= NULL
) {
76 if (access(fname
, 0) != 0) {
77 snprintf(fnamecmpdest
,MAXPATHLEN
,"%s/%s",
82 file_checksum(fname
,sum
,st
->st_size
);
83 if (protocol_version
< 21) {
84 return (memcmp(sum
,file
->sum
,2) == 0);
86 return (memcmp(sum
,file
->sum
,MD4_SUM_LENGTH
) == 0);
98 return (cmp_modtime(st
->st_mtime
,file
->modtime
) == 0);
103 * NULL sum_struct means we have no checksums
106 void write_sum_head(int f
, struct sum_struct
*sum
)
108 static struct sum_struct null_sum
;
110 if (sum
== (struct sum_struct
*)NULL
)
113 write_int(f
, sum
->count
);
114 write_int(f
, sum
->blength
);
115 if (protocol_version
>= 27)
116 write_int(f
, sum
->s2length
);
117 write_int(f
, sum
->remainder
);
121 * set (initialize) the size entries in the per-file sum_struct
122 * calulating dynamic block ans checksum sizes.
124 * This is only called from generate_and_send_sums() but is a seperate
125 * function to encapsulate the logic.
127 * The block size is a rounded square root of file length.
129 * The checksum size is determined according to:
130 * blocksum_bits = BLOCKSUM_EXP + 2*log2(file_len) - log2(block_len)
131 * provided by Donovan Baarda which gives a probability of rsync
132 * algorithm corrupting data and falling back using the whole md4
135 * This might be made one of several selectable heuristics.
138 static void sum_sizes_sqroot_baarda(struct sum_struct
*sum
, uint64 len
)
140 extern int block_size
;
141 int blength
, s2length
, b
;
146 blength
= block_size
;
147 } else if (len
<= BLOCK_SIZE
* BLOCK_SIZE
) {
148 blength
= BLOCK_SIZE
;
158 if (len
< (uint64
)blength
* blength
)
161 } while (c
>= 8); /* round to multiple of 8 */
162 blength
= MAX(blength
, BLOCK_SIZE
);
165 if (protocol_version
< 27) {
166 s2length
= csum_length
;
167 } else if (csum_length
== SUM_LENGTH
) {
168 s2length
= SUM_LENGTH
;
176 while (c
>>= 1 && b
) {
179 s2length
= (b
+ 1 - 32 + 7) / 8; /* add a bit,
182 * --optimize in compiler--
184 s2length
= MAX(s2length
, csum_length
);
185 s2length
= MIN(s2length
, SUM_LENGTH
);
189 sum
->blength
= blength
;
190 sum
->s2length
= s2length
;
191 sum
->count
= (len
+ (blength
- 1)) / blength
;
192 sum
->remainder
= (len
% blength
);
194 if (sum
->count
&& verbose
> 2) {
195 rprintf(FINFO
, "count=%ld rem=%ld blength=%ld s2length=%ld flength=%.0f\n",
196 (long) sum
->count
, (long) sum
->remainder
,
197 (long) sum
->blength
, (long) sum
->s2length
,
198 (double) sum
->flength
);
203 * Perhaps we want to just send an empty checksum set for this file,
204 * which will force the whole thing to be literally transferred.
206 * When do we do this? If the user's explicitly said they
207 * want the whole thing, or if { they haven't explicitly
208 * requested a delta, and it's local but not batch mode.}
211 static BOOL
disable_deltas_p(void)
213 extern int whole_file
;
214 extern int local_server
;
215 extern int write_batch
;
219 if (whole_file
== 0 || write_batch
)
226 * Generate and send a stream of signatures/checksums that describe a buffer
228 * Generate approximately one checksum every block_len bytes.
230 static void generate_and_send_sums(struct map_struct
*buf
, OFF_T len
, int f_out
)
233 struct sum_struct sum
;
236 sum_sizes_sqroot_baarda(&sum
, len
);
238 write_sum_head(f_out
, &sum
);
240 for (i
= 0; i
< sum
.count
; i
++) {
241 int n1
= MIN(len
, sum
.blength
);
242 char *map
= map_ptr(buf
, offset
, n1
);
243 uint32 sum1
= get_checksum1(map
, n1
);
244 char sum2
[SUM_LENGTH
];
246 get_checksum2(map
, n1
, sum2
);
250 "chunk[%ld] offset=%.0f len=%d sum1=%08lx\n",
251 (long)i
,(double)offset
,n1
,(unsigned long)sum1
);
253 write_int(f_out
, sum1
);
254 write_buf(f_out
, sum2
, sum
.s2length
);
263 * Acts on file number @p i from @p flist, whose name is @p fname.
265 * First fixes up permissions, then generates checksums for the file.
267 * @note This comment was added later by mbp who was trying to work it
268 * out. It might be wrong.
270 void recv_generator(char *fname
, struct file_list
*flist
, int i
, int f_out
)
274 struct map_struct
*buf
;
276 struct file_struct
*file
= flist
->files
[i
];
278 char fnamecmpbuf
[MAXPATHLEN
];
279 extern char *compare_dest
;
280 extern int list_only
;
281 extern int preserve_perms
;
282 extern int only_existing
;
283 extern int orig_umask
;
285 if (list_only
) return;
288 rprintf(FINFO
,"recv_generator(%s,%d)\n",fname
,i
);
290 statret
= link_stat(fname
,&st
);
292 if (only_existing
&& statret
== -1 && errno
== ENOENT
) {
293 /* we only want to update existing files */
294 if (verbose
> 1) rprintf(FINFO
, "not creating new file \"%s\"\n",fname
);
300 (S_ISDIR(st
.st_mode
) == S_ISDIR(file
->mode
))) {
301 /* if the file exists already and we aren't perserving
302 * permissions then act as though the remote end sent
303 * us the file permissions we already have */
304 file
->mode
= (file
->mode
& _S_IFMT
) | (st
.st_mode
& ~_S_IFMT
);
307 if (S_ISDIR(file
->mode
)) {
308 /* The file to be received is a directory, so we need
309 * to prepare appropriately. If there is already a
310 * file of that name and it is *not* a directory, then
311 * we need to delete it. If it doesn't exist, then
312 * recursively create it. */
314 if (dry_run
) return; /* XXXX -- might cause inaccuracies?? -- mbp */
315 if (statret
== 0 && !S_ISDIR(st
.st_mode
)) {
316 if (robust_unlink(fname
) != 0) {
317 rprintf(FERROR
, RSYNC_NAME
318 ": recv_generator: unlink \"%s\" to make room for directory: %s\n",
319 fname
,strerror(errno
));
324 if (statret
!= 0 && do_mkdir(fname
,file
->mode
) != 0 && errno
!= EEXIST
) {
325 if (!(relative_paths
&& errno
==ENOENT
&&
326 create_directory_path(fname
, orig_umask
)==0 &&
327 do_mkdir(fname
,file
->mode
)==0)) {
328 rprintf(FERROR
, RSYNC_NAME
": recv_generator: mkdir \"%s\": %s (2)\n",
329 fname
,strerror(errno
));
332 /* f_out is set to -1 when doing final directory
333 permission and modification time repair */
334 if (set_perms(fname
,file
,NULL
,0) && verbose
&& (f_out
!= -1))
335 rprintf(FINFO
,"%s/\n",fname
);
339 if (preserve_links
&& S_ISLNK(file
->mode
)) {
341 char lnk
[MAXPATHLEN
];
343 extern int safe_symlinks
;
345 if (safe_symlinks
&& unsafe_symlink(file
->link
, fname
)) {
347 rprintf(FINFO
,"ignoring unsafe symlink \"%s\" -> \"%s\"\n",
353 l
= readlink(fname
,lnk
,MAXPATHLEN
-1);
356 /* A link already pointing to the
357 * right place -- no further action
359 if (strcmp(lnk
,file
->link
) == 0) {
360 set_perms(fname
,file
,&st
,1);
364 /* Not a symlink, so delete whatever's
365 * already there and put a new symlink
369 if (do_symlink(file
->link
,fname
) != 0) {
370 rprintf(FERROR
,RSYNC_NAME
": symlink \"%s\" -> \"%s\": %s\n",
371 fname
,file
->link
,strerror(errno
));
373 set_perms(fname
,file
,NULL
,0);
375 rprintf(FINFO
,"%s -> %s\n", fname
,file
->link
);
383 if (am_root
&& preserve_devices
&& IS_DEVICE(file
->mode
)) {
385 st
.st_mode
!= file
->mode
||
386 (DEV64_T
)st
.st_rdev
!= file
->rdev
) {
389 rprintf(FINFO
,"mknod(%s,0%o,0x%x)\n",
390 fname
,(int)file
->mode
,(int)file
->rdev
);
391 if (do_mknod(fname
,file
->mode
,file
->rdev
) != 0) {
392 rprintf(FERROR
,"mknod %s : %s\n",fname
,strerror(errno
));
394 set_perms(fname
,file
,NULL
,0);
396 rprintf(FINFO
,"%s\n",fname
);
399 set_perms(fname
,file
,&st
,1);
405 if (preserve_hard_links
&& check_hard_link(file
)) {
407 rprintf(FINFO
, "recv_generator: \"%s\" is a hard link\n",f_name(file
));
411 if (!S_ISREG(file
->mode
)) {
412 rprintf(FINFO
, "skipping non-regular file \"%s\"\n",fname
);
418 if ((statret
== -1) && (compare_dest
!= NULL
)) {
419 /* try the file at compare_dest instead */
420 int saveerrno
= errno
;
421 snprintf(fnamecmpbuf
,MAXPATHLEN
,"%s/%s",compare_dest
,fname
);
422 statret
= link_stat(fnamecmpbuf
,&st
);
423 if (!S_ISREG(st
.st_mode
))
428 else if (link_dest
&& !dry_run
) {
429 if (do_link(fnamecmpbuf
, fname
) != 0) {
431 rprintf(FINFO
,"link %s => %s : %s\n",
436 fnamecmp
= fnamecmpbuf
;
440 fnamecmp
= fnamecmpbuf
;
444 if (errno
== ENOENT
) {
446 if (!dry_run
) write_sum_head(f_out
, NULL
);
449 rprintf(FERROR
, RSYNC_NAME
450 ": recv_generator failed to open \"%s\": %s\n",
451 fname
, strerror(errno
));
456 if (!S_ISREG(st
.st_mode
)) {
457 if (delete_file(fname
) != 0) {
461 /* now pretend the file didn't exist */
463 if (!dry_run
) write_sum_head(f_out
, NULL
);
467 if (opt_ignore_existing
&& fnamecmp
== fname
) {
469 rprintf(FINFO
,"%s exists\n",fname
);
473 if (update_only
&& cmp_modtime(st
.st_mtime
,file
->modtime
)>0 && fnamecmp
== fname
) {
475 rprintf(FINFO
,"%s is newer\n",fname
);
479 if (skip_file(fname
, file
, &st
)) {
480 if (fnamecmp
== fname
)
481 set_perms(fname
,file
,&st
,1);
490 if (disable_deltas_p()) {
492 write_sum_head(f_out
, NULL
);
497 fd
= do_open(fnamecmp
, O_RDONLY
, 0);
500 rprintf(FERROR
,RSYNC_NAME
": failed to open \"%s\", continuing : %s\n",fnamecmp
,strerror(errno
));
501 /* pretend the file didn't exist */
503 write_sum_head(f_out
, NULL
);
507 if (st
.st_size
> 0) {
508 buf
= map_file(fd
,st
.st_size
);
514 rprintf(FINFO
,"gen mapped %s of size %.0f\n",fnamecmp
,(double)st
.st_size
);
517 rprintf(FINFO
, "generating and sending sums for %d\n", i
);
520 generate_and_send_sums(buf
, st
.st_size
, f_out
);
523 if (buf
) unmap_file(buf
);
528 void generate_files(int f
,struct file_list
*flist
,char *local_name
,int f_recv
)
534 rprintf(FINFO
,"generator starting pid=%d count=%d\n",
535 (int)getpid(),flist
->count
);
540 ? "delta-transmission disabled for local transfer or --whole-file\n"
541 : "delta transmission enabled\n");
544 /* we expect to just sit around now, so don't exit on a
545 timeout. If we really get a timeout then the other process should
549 for (i
= 0; i
< flist
->count
; i
++) {
550 struct file_struct
*file
= flist
->files
[i
];
551 mode_t saved_mode
= file
->mode
;
552 if (!file
->basename
) continue;
554 /* we need to ensure that any directories we create have writeable
555 permissions initially so that we can create the files within
556 them. This is then fixed after the files are transferred */
557 if (!am_root
&& S_ISDIR(file
->mode
)) {
558 file
->mode
|= S_IWUSR
; /* user write */
559 /* XXX: Could this be causing a problem on SCO? Perhaps their
560 * handling of permissions is strange? */
563 recv_generator(local_name
?local_name
:f_name(file
), flist
,i
,f
);
565 file
->mode
= saved_mode
;
569 csum_length
= SUM_LENGTH
;
573 rprintf(FINFO
,"generate_files phase=%d\n",phase
);
577 /* files can cycle through the system more than once
578 * to catch initial checksum errors */
579 for (i
=read_int(f_recv
); i
!= -1; i
=read_int(f_recv
)) {
580 struct file_struct
*file
= flist
->files
[i
];
581 recv_generator(local_name
?local_name
:f_name(file
), flist
,i
,f
);
586 rprintf(FINFO
,"generate_files phase=%d\n",phase
);