2 * Routines that are exclusive to the generator process.
4 * Copyright (C) 1996-2000 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2003-2009 Wayne Davison
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 3 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 along
20 * with this program; if not, visit the http://fsf.org website.
29 extern int stdout_format_has_i
;
30 extern int logfile_format_has_i
;
34 extern int inc_recurse
;
35 extern int relative_paths
;
36 extern int implied_dirs
;
37 extern int keep_dirlinks
;
38 extern int preserve_acls
;
39 extern int preserve_xattrs
;
40 extern int preserve_links
;
41 extern int preserve_devices
;
42 extern int preserve_specials
;
43 extern int preserve_hard_links
;
44 extern int preserve_executability
;
45 extern int preserve_perms
;
46 extern int preserve_times
;
49 extern int delete_mode
;
50 extern int delete_before
;
51 extern int delete_during
;
52 extern int delete_after
;
53 extern int missing_args
;
54 extern int msgdone_cnt
;
55 extern int ignore_errors
;
56 extern int remove_source_files
;
57 extern int delay_updates
;
58 extern int update_only
;
59 extern int human_readable
;
60 extern int ignore_existing
;
61 extern int ignore_non_existing
;
63 extern int append_mode
;
64 extern int make_backups
;
65 extern int csum_length
;
66 extern int ignore_times
;
68 extern OFF_T max_size
;
69 extern OFF_T min_size
;
72 extern int allowed_lull
;
73 extern int sock_f_out
;
74 extern int protocol_version
;
75 extern int file_total
;
76 extern int fuzzy_basis
;
77 extern int always_checksum
;
78 extern int checksum_len
;
79 extern char *partial_dir
;
80 extern int compare_dest
;
83 extern int whole_file
;
85 extern int read_batch
;
86 extern int safe_symlinks
;
87 extern long block_size
; /* "long" because popt can't set an int32. */
88 extern int unsort_ndx
;
89 extern int max_delete
;
90 extern int force_delete
;
91 extern int one_file_system
;
92 extern int skipped_deletes
;
93 extern dev_t filesystem_dev
;
94 extern mode_t orig_umask
;
97 extern char *basis_dir
[MAX_BASIS_DIRS
+1];
98 extern struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
99 extern filter_rule_list filter_list
, daemon_filter_list
;
101 int maybe_ATTRS_REPORT
= 0;
103 static dev_t dev_zero
;
104 static int deldelay_size
= 0, deldelay_cnt
= 0;
105 static char *deldelay_buf
= NULL
;
106 static int deldelay_fd
= -1;
107 static int loopchk_limit
;
108 static int dir_tweaking
;
109 static int symlink_timeset_failed_flags
;
110 static int need_retouch_dir_times
;
111 static int need_retouch_dir_perms
;
112 static const char *solo_file
= NULL
;
115 TYPE_DIR
, TYPE_SPECIAL
, TYPE_DEVICE
, TYPE_SYMLINK
118 /* Forward declarations. */
119 #ifdef SUPPORT_HARD_LINKS
120 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
121 enum logcode code
, int f_out
);
124 #define EARLY_DELAY_DONE_MSG() (!delay_updates)
125 #define EARLY_DELETE_DONE_MSG() (!(delete_during == 2 || delete_after))
127 static int start_delete_delay_temp(void)
129 char fnametmp
[MAXPATHLEN
];
130 int save_dry_run
= dry_run
;
133 if (!get_tmpname(fnametmp
, "deldelay", False
)
134 || (deldelay_fd
= do_mkstemp(fnametmp
, 0600)) < 0) {
135 rprintf(FINFO
, "NOTE: Unable to create delete-delay temp file%s.\n",
136 inc_recurse
? "" : " -- switching to --delete-after");
138 delete_after
= !inc_recurse
;
139 dry_run
= save_dry_run
;
143 dry_run
= save_dry_run
;
147 static int flush_delete_delay(void)
149 if (deldelay_fd
< 0 && !start_delete_delay_temp())
151 if (write(deldelay_fd
, deldelay_buf
, deldelay_cnt
) != deldelay_cnt
) {
152 rsyserr(FERROR
, errno
, "flush of delete-delay buffer");
154 delete_after
= !inc_recurse
;
162 static int remember_delete(struct file_struct
*file
, const char *fname
, int flags
)
166 if (deldelay_cnt
== deldelay_size
&& !flush_delete_delay())
169 if (flags
& DEL_NO_UID_WRITE
)
170 deldelay_buf
[deldelay_cnt
++] = '!';
173 len
= snprintf(deldelay_buf
+ deldelay_cnt
,
174 deldelay_size
- deldelay_cnt
,
176 (int)file
->mode
, fname
, '\0');
177 if ((deldelay_cnt
+= len
) <= deldelay_size
)
180 if (!flush_delete_delay())
187 static int read_delay_line(char *buf
, int *flags_p
)
189 static int read_pos
= 0;
191 char *bp
, *past_space
;
194 for (j
= read_pos
; j
< deldelay_cnt
&& deldelay_buf
[j
]; j
++) {}
195 if (j
< deldelay_cnt
)
197 if (deldelay_fd
< 0) {
202 deldelay_cnt
-= read_pos
;
203 if (deldelay_cnt
== deldelay_size
)
205 if (deldelay_cnt
&& read_pos
) {
206 memmove(deldelay_buf
, deldelay_buf
+ read_pos
,
209 len
= read(deldelay_fd
, deldelay_buf
+ deldelay_cnt
,
210 deldelay_size
- deldelay_cnt
);
214 "ERROR: unexpected EOF in delete-delay file.\n");
219 rsyserr(FERROR
, errno
,
220 "reading delete-delay file");
227 bp
= deldelay_buf
+ read_pos
;
230 *flags_p
= DEL_NO_UID_WRITE
;
234 if (sscanf(bp
, "%x ", &mode
) != 1) {
236 rprintf(FERROR
, "ERROR: invalid data in delete-delay file.\n");
239 past_space
= strchr(bp
, ' ') + 1;
240 len
= j
- read_pos
- (past_space
- bp
) + 1; /* count the '\0' */
243 if (len
> MAXPATHLEN
) {
244 rprintf(FERROR
, "ERROR: filename too long in delete-delay file.\n");
248 /* The caller needs the name in a MAXPATHLEN buffer, so we copy it
249 * instead of returning a pointer to our buffer. */
250 memcpy(buf
, past_space
, len
);
255 static void do_delayed_deletions(char *delbuf
)
259 if (deldelay_fd
>= 0) {
260 if (deldelay_cnt
&& !flush_delete_delay())
262 lseek(deldelay_fd
, 0, 0);
264 while ((mode
= read_delay_line(delbuf
, &flags
)) >= 0)
265 delete_item(delbuf
, mode
, flags
| DEL_RECURSE
);
266 if (deldelay_fd
>= 0)
270 /* This function is used to implement per-directory deletion, and is used by
271 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
272 * MAXPATHLEN buffer with the name of the directory in it (the functions we
273 * call will append names onto the end, but the old dir value will be restored
275 static void delete_in_dir(char *fbuf
, struct file_struct
*file
, dev_t
*fs_dev
)
277 static int already_warned
= 0;
278 struct file_list
*dirlist
;
279 char delbuf
[MAXPATHLEN
];
281 int save_uid_ndx
= uid_ndx
;
284 change_local_filter_dir(NULL
, 0, 0);
288 if (DEBUG_GTE(DEL
, 2))
289 rprintf(FINFO
, "delete_in_dir(%s)\n", fbuf
);
292 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
294 if (io_error
&& !ignore_errors
) {
298 "IO error encountered -- skipping file deletion\n");
304 change_local_filter_dir(fbuf
, dlen
, F_DEPTH(file
));
306 if (one_file_system
) {
307 if (file
->flags
& FLAG_TOP_DIR
)
308 filesystem_dev
= *fs_dev
;
309 else if (filesystem_dev
!= *fs_dev
)
314 uid_ndx
= ++file_extra_cnt
;
316 dirlist
= get_dirlist(fbuf
, dlen
, 0);
318 /* If an item in dirlist is not found in flist, delete it
319 * from the filesystem. */
320 for (i
= dirlist
->used
; i
--; ) {
321 struct file_struct
*fp
= dirlist
->files
[i
];
322 if (!F_IS_ACTIVE(fp
))
324 if (fp
->flags
& FLAG_MOUNT_DIR
&& S_ISDIR(fp
->mode
)) {
325 if (INFO_GTE(MOUNT
, 1))
326 rprintf(FINFO
, "cannot delete mount point: %s\n",
330 /* Here we want to match regardless of file type. Replacement
331 * of a file with one of another type is handled separately by
332 * a delete_item call with a DEL_MAKE_ROOM flag. */
333 if (flist_find_ignore_dirness(cur_flist
, fp
) < 0) {
334 int flags
= DEL_RECURSE
;
335 if (!(fp
->mode
& S_IWUSR
) && !am_root
&& (uid_t
)F_OWNER(fp
) == our_uid
)
336 flags
|= DEL_NO_UID_WRITE
;
338 if (delete_during
== 2) {
339 if (!remember_delete(fp
, delbuf
, flags
))
342 delete_item(delbuf
, fp
->mode
, flags
);
354 /* This deletes any files on the receiving side that are not present on the
355 * sending side. This is used by --delete-before and --delete-after. */
356 static void do_delete_pass(void)
358 char fbuf
[MAXPATHLEN
];
362 /* dry_run is incremented when the destination doesn't exist yet. */
363 if (dry_run
> 1 || list_only
)
366 for (j
= 0; j
< cur_flist
->used
; j
++) {
367 struct file_struct
*file
= cur_flist
->sorted
[j
];
371 if (!(file
->flags
& FLAG_CONTENT_DIR
)) {
372 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(file
));
376 if (DEBUG_GTE(DEL
, 1) && file
->flags
& FLAG_TOP_DIR
)
377 rprintf(FINFO
, "deleting in %s\n", fbuf
);
379 if (link_stat(fbuf
, &st
, keep_dirlinks
) < 0
380 || !S_ISDIR(st
.st_mode
))
383 delete_in_dir(fbuf
, file
, &st
.st_dev
);
385 delete_in_dir(NULL
, NULL
, &dev_zero
);
387 if (INFO_GTE(FLIST
, 2) && !am_server
)
388 rprintf(FINFO
, " \r");
391 static inline int time_differs(struct file_struct
*file
, stat_x
*sxp
)
393 return cmp_time(sxp
->st
.st_mtime
, file
->modtime
);
396 static inline int perms_differ(struct file_struct
*file
, stat_x
*sxp
)
399 return !BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
);
401 if (preserve_executability
)
402 return (sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0);
407 static inline int ownership_differs(struct file_struct
*file
, stat_x
*sxp
)
409 if (am_root
&& uid_ndx
&& sxp
->st
.st_uid
!= (uid_t
)F_OWNER(file
))
412 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
) && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
419 static inline int acls_differ(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
422 if (!ACL_READY(*sxp
))
424 if (set_acl(NULL
, file
, sxp
, file
->mode
))
432 #ifdef SUPPORT_XATTRS
433 static inline int xattrs_differ(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
435 if (preserve_xattrs
) {
436 if (!XATTR_READY(*sxp
))
437 get_xattr(fname
, sxp
);
438 if (xattr_diff(file
, sxp
, 0))
446 int unchanged_attrs(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
448 if (S_ISLNK(file
->mode
)) {
449 #ifdef CAN_SET_SYMLINK_TIMES
450 if (preserve_times
& PRESERVE_LINK_TIMES
&& time_differs(file
, sxp
))
453 #ifdef CAN_CHMOD_SYMLINK
454 if (perms_differ(file
, sxp
))
457 #ifndef CAN_CHOWN_SYMLINK
458 if (ownership_differs(file
, sxp
))
461 #if defined SUPPORT_ACLS && 0 /* no current symlink-ACL support */
462 if (acls_differ(fname
, file
, sxp
))
465 #if defined SUPPORT_XATTRS && !defined NO_SYMLINK_XATTRS
466 if (xattrs_differ(fname
, file
, sxp
))
470 if (preserve_times
&& time_differs(file
, sxp
))
472 if (perms_differ(file
, sxp
))
474 if (ownership_differs(file
, sxp
))
477 if (acls_differ(fname
, file
, sxp
))
480 #ifdef SUPPORT_XATTRS
481 if (xattrs_differ(fname
, file
, sxp
))
489 void itemize(const char *fnamecmp
, struct file_struct
*file
, int ndx
, int statret
,
490 stat_x
*sxp
, int32 iflags
, uchar fnamecmp_type
,
493 if (statret
>= 0) { /* A from-dest-dir statret can == 1! */
494 int keep_time
= !preserve_times
? 0
495 : S_ISDIR(file
->mode
) ? preserve_times
& PRESERVE_DIR_TIMES
496 : S_ISLNK(file
->mode
) ? preserve_times
& PRESERVE_LINK_TIMES
499 if (S_ISREG(file
->mode
) && F_LENGTH(file
) != sxp
->st
.st_size
)
500 iflags
|= ITEM_REPORT_SIZE
;
501 if (file
->flags
& FLAG_TIME_FAILED
) { /* symlinks only */
502 if (iflags
& ITEM_LOCAL_CHANGE
)
503 iflags
|= symlink_timeset_failed_flags
;
505 ? cmp_time(file
->modtime
, sxp
->st
.st_mtime
) != 0
506 : iflags
& (ITEM_TRANSFER
|ITEM_LOCAL_CHANGE
) && !(iflags
& ITEM_MATCHED
)
507 && (!(iflags
& ITEM_XNAME_FOLLOWS
) || *xname
))
508 iflags
|= ITEM_REPORT_TIME
;
509 #if !defined HAVE_LCHMOD && !defined HAVE_SETATTRLIST
510 if (S_ISLNK(file
->mode
)) {
514 if (preserve_perms
) {
515 if (!BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
))
516 iflags
|= ITEM_REPORT_PERMS
;
517 } else if (preserve_executability
518 && ((sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0)))
519 iflags
|= ITEM_REPORT_PERMS
;
520 if (uid_ndx
&& am_root
&& (uid_t
)F_OWNER(file
) != sxp
->st
.st_uid
)
521 iflags
|= ITEM_REPORT_OWNER
;
522 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
)
523 && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
524 iflags
|= ITEM_REPORT_GROUP
;
526 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
527 if (!ACL_READY(*sxp
))
528 get_acl(fnamecmp
, sxp
);
529 if (set_acl(NULL
, file
, sxp
, file
->mode
))
530 iflags
|= ITEM_REPORT_ACL
;
533 #ifdef SUPPORT_XATTRS
534 if (preserve_xattrs
) {
535 if (!XATTR_READY(*sxp
))
536 get_xattr(fnamecmp
, sxp
);
537 if (xattr_diff(file
, sxp
, 1))
538 iflags
|= ITEM_REPORT_XATTR
;
542 #ifdef SUPPORT_XATTRS
543 if (preserve_xattrs
&& xattr_diff(file
, NULL
, 1))
544 iflags
|= ITEM_REPORT_XATTR
;
546 iflags
|= ITEM_IS_NEW
;
550 if ((iflags
& (SIGNIFICANT_ITEM_FLAGS
|ITEM_REPORT_XATTR
) || INFO_GTE(NAME
, 2)
551 || stdout_format_has_i
> 1 || (xname
&& *xname
)) && !read_batch
) {
552 if (protocol_version
>= 29) {
554 write_ndx(sock_f_out
, ndx
);
555 write_shortint(sock_f_out
, iflags
);
556 if (iflags
& ITEM_BASIS_TYPE_FOLLOWS
)
557 write_byte(sock_f_out
, fnamecmp_type
);
558 if (iflags
& ITEM_XNAME_FOLLOWS
)
559 write_vstring(sock_f_out
, xname
, strlen(xname
));
560 #ifdef SUPPORT_XATTRS
561 if (preserve_xattrs
&& do_xfers
562 && iflags
& (ITEM_REPORT_XATTR
|ITEM_TRANSFER
)) {
563 send_xattr_request(NULL
, file
,
564 iflags
& ITEM_REPORT_XATTR
? sock_f_out
: -1);
567 } else if (ndx
>= 0) {
568 enum logcode code
= logfile_format_has_i
? FINFO
: FCLIENT
;
569 log_item(code
, file
, iflags
, xname
);
575 /* Perform our quick-check heuristic for determining if a file is unchanged. */
576 int unchanged_file(char *fn
, struct file_struct
*file
, STRUCT_STAT
*st
)
578 if (st
->st_size
!= F_LENGTH(file
))
581 /* if always checksum is set then we use the checksum instead
582 of the file time to determine whether to sync */
583 if (always_checksum
> 0 && S_ISREG(st
->st_mode
)) {
584 char sum
[MAX_DIGEST_LEN
];
585 file_checksum(fn
, sum
, st
->st_size
);
586 return memcmp(sum
, F_SUM(file
), checksum_len
) == 0;
595 return cmp_time(st
->st_mtime
, file
->modtime
) == 0;
600 * set (initialize) the size entries in the per-file sum_struct
601 * calculating dynamic block and checksum sizes.
603 * This is only called from generate_and_send_sums() but is a separate
604 * function to encapsulate the logic.
606 * The block size is a rounded square root of file length.
608 * The checksum size is determined according to:
609 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
610 * provided by Donovan Baarda which gives a probability of rsync
611 * algorithm corrupting data and falling back using the whole md4
614 * This might be made one of several selectable heuristics.
616 static void sum_sizes_sqroot(struct sum_struct
*sum
, int64 len
)
623 /* The file length overflowed our int64 var, so we can't process this file. */
624 sum
->count
= -1; /* indicate overflow error */
629 blength
= block_size
;
630 else if (len
<= BLOCK_SIZE
* BLOCK_SIZE
)
631 blength
= BLOCK_SIZE
;
633 int32 max_blength
= protocol_version
< 30 ? OLD_MAX_BLOCK_SIZE
: MAX_BLOCK_SIZE
;
636 for (c
= 1, l
= len
, cnt
= 0; l
>>= 2; c
<<= 1, cnt
++) {}
637 if (c
< 0 || c
>= max_blength
)
638 blength
= max_blength
;
643 if (len
< (int64
)blength
* blength
)
646 } while (c
>= 8); /* round to multiple of 8 */
647 blength
= MAX(blength
, BLOCK_SIZE
);
651 if (protocol_version
< 27) {
652 s2length
= csum_length
;
653 } else if (csum_length
== SUM_LENGTH
) {
654 s2length
= SUM_LENGTH
;
657 int b
= BLOCKSUM_BIAS
;
658 for (l
= len
; l
>>= 1; b
+= 2) {}
659 for (c
= blength
; (c
>>= 1) && b
; b
--) {}
660 /* add a bit, subtract rollsum, round up. */
661 s2length
= (b
+ 1 - 32 + 7) / 8; /* --optimize in compiler-- */
662 s2length
= MAX(s2length
, csum_length
);
663 s2length
= MIN(s2length
, SUM_LENGTH
);
667 sum
->blength
= blength
;
668 sum
->s2length
= s2length
;
669 sum
->remainder
= (int32
)(len
% blength
);
670 sum
->count
= (int32
)(l
= (len
/ blength
) + (sum
->remainder
!= 0));
672 if ((int64
)sum
->count
!= l
)
675 if (sum
->count
&& DEBUG_GTE(DELTASUM
, 2)) {
677 "count=%s rem=%ld blength=%ld s2length=%d flength=%s\n",
678 big_num(sum
->count
), (long)sum
->remainder
, (long)sum
->blength
,
679 sum
->s2length
, big_num(sum
->flength
));
685 * Generate and send a stream of signatures/checksums that describe a buffer
687 * Generate approximately one checksum every block_len bytes.
689 static int generate_and_send_sums(int fd
, OFF_T len
, int f_out
, int f_copy
)
692 struct map_struct
*mapbuf
;
693 struct sum_struct sum
;
696 sum_sizes_sqroot(&sum
, len
);
699 write_sum_head(f_out
, &sum
);
701 if (append_mode
> 0 && f_copy
< 0)
705 mapbuf
= map_file(fd
, len
, MAX_MAP_SIZE
, sum
.blength
);
709 for (i
= 0; i
< sum
.count
; i
++) {
710 int32 n1
= (int32
)MIN(len
, (OFF_T
)sum
.blength
);
711 char *map
= map_ptr(mapbuf
, offset
, n1
);
712 char sum2
[SUM_LENGTH
];
719 full_write(f_copy
, map
, n1
);
724 sum1
= get_checksum1(map
, n1
);
725 get_checksum2(map
, n1
, sum2
);
727 if (DEBUG_GTE(DELTASUM
, 3)) {
729 "chunk[%s] offset=%s len=%ld sum1=%08lx\n",
730 big_num(i
), big_num(offset
- n1
), (long)n1
,
731 (unsigned long)sum1
);
733 write_int(f_out
, sum1
);
734 write_buf(f_out
, sum2
, sum
.s2length
);
744 /* Try to find a filename in the same dir as "fname" with a similar name. */
745 static int find_fuzzy(struct file_struct
*file
, struct file_list
*dirlist
)
747 int fname_len
, fname_suf_len
;
748 const char *fname_suf
, *fname
= file
->basename
;
749 uint32 lowest_dist
= 25 << 16; /* ignore a distance greater than 25 */
750 int j
, lowest_j
= -1;
752 fname_len
= strlen(fname
);
753 fname_suf
= find_filename_suffix(fname
, fname_len
, &fname_suf_len
);
755 for (j
= 0; j
< dirlist
->used
; j
++) {
756 struct file_struct
*fp
= dirlist
->files
[j
];
757 const char *suf
, *name
;
761 if (!S_ISREG(fp
->mode
) || !F_LENGTH(fp
)
762 || fp
->flags
& FLAG_FILE_SENT
)
767 if (F_LENGTH(fp
) == F_LENGTH(file
)
768 && cmp_time(fp
->modtime
, file
->modtime
) == 0) {
769 if (DEBUG_GTE(FUZZY
, 2)) {
771 "fuzzy size/modtime match for %s\n",
778 suf
= find_filename_suffix(name
, len
, &suf_len
);
780 dist
= fuzzy_distance(name
, len
, fname
, fname_len
);
781 /* Add some extra weight to how well the suffixes match. */
782 dist
+= fuzzy_distance(suf
, suf_len
, fname_suf
, fname_suf_len
)
784 if (DEBUG_GTE(FUZZY
, 2)) {
785 rprintf(FINFO
, "fuzzy distance for %s = %d.%05d\n",
786 name
, (int)(dist
>>16), (int)(dist
&0xFFFF));
788 if (dist
<= lowest_dist
) {
797 /* Copy a file found in our --copy-dest handling. */
798 static int copy_altdest_file(const char *src
, const char *dest
, struct file_struct
*file
)
800 char buf
[MAXPATHLEN
];
801 const char *copy_to
, *partialptr
;
802 int save_preserve_xattrs
= preserve_xattrs
;
806 /* Let copy_file open the destination in place. */
810 fd_w
= open_tmpfile(buf
, dest
, file
);
815 cleanup_set(copy_to
, NULL
, NULL
, -1, -1);
816 if (copy_file(src
, copy_to
, fd_w
, file
->mode
) < 0) {
817 if (INFO_GTE(COPY
, 1)) {
818 rsyserr(FINFO
, errno
, "copy_file %s => %s",
819 full_fname(src
), copy_to
);
821 /* Try to clean up. */
826 partialptr
= partial_dir
? partial_dir_fname(dest
) : NULL
;
827 preserve_xattrs
= 0; /* xattrs were copied with file */
828 ok
= finish_transfer(dest
, copy_to
, src
, partialptr
, file
, 1, 0);
829 preserve_xattrs
= save_preserve_xattrs
;
834 /* This is only called for regular files. We return -2 if we've finished
835 * handling the file, -1 if no dest-linking occurred, or a non-negative
836 * value if we found an alternate basis file. */
837 static int try_dests_reg(struct file_struct
*file
, char *fname
, int ndx
,
838 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
846 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
847 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0 || !S_ISREG(sxp
->st
.st_mode
))
849 switch (match_level
) {
855 if (!unchanged_file(cmpbuf
, file
, &sxp
->st
))
861 if (!unchanged_attrs(cmpbuf
, file
, sxp
))
868 } while (basis_dir
[++j
] != NULL
);
873 if (j
!= best_match
) {
875 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
876 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
880 if (match_level
== 3 && !copy_dest
) {
881 #ifdef SUPPORT_HARD_LINKS
883 if (!hard_link_one(file
, fname
, cmpbuf
, 1))
885 if (preserve_hard_links
&& F_IS_HLINKED(file
))
886 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, j
);
887 if (!maybe_ATTRS_REPORT
&& (INFO_GTE(NAME
, 2) || stdout_format_has_i
> 1)) {
888 itemize(cmpbuf
, file
, ndx
, 1, sxp
,
889 ITEM_LOCAL_CHANGE
| ITEM_XNAME_FOLLOWS
,
895 itemize(cmpbuf
, file
, ndx
, 0, sxp
, 0, 0, NULL
);
896 if (INFO_GTE(NAME
, 2) && maybe_ATTRS_REPORT
)
897 rprintf(FCLIENT
, "%s is uptodate\n", fname
);
901 if (match_level
>= 2) {
902 #ifdef SUPPORT_HARD_LINKS
903 try_a_copy
: /* Copy the file locally. */
905 if (!dry_run
&& copy_altdest_file(cmpbuf
, fname
, file
) < 0)
908 itemize(cmpbuf
, file
, ndx
, 0, sxp
, ITEM_LOCAL_CHANGE
, 0, NULL
);
909 if (maybe_ATTRS_REPORT
910 && ((!itemizing
&& INFO_GTE(NAME
, 1) && match_level
== 2)
911 || (INFO_GTE(NAME
, 2) && match_level
== 3))) {
912 code
= match_level
== 3 ? FCLIENT
: FINFO
;
913 rprintf(code
, "%s%s\n", fname
,
914 match_level
== 3 ? " is uptodate" : "");
916 #ifdef SUPPORT_HARD_LINKS
917 if (preserve_hard_links
&& F_IS_HLINKED(file
))
918 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, -1);
923 return FNAMECMP_BASIS_DIR_LOW
+ j
;
926 /* This is only called for non-regular files. We return -2 if we've finished
927 * handling the file, or -1 if no dest-linking occurred, or a non-negative
928 * value if we found an alternate basis file. */
929 static int try_dests_non(struct file_struct
*file
, char *fname
, int ndx
,
930 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
935 enum nonregtype type
;
938 char lnk
[MAXPATHLEN
];
943 #ifndef SUPPORT_LINKS
944 if (S_ISLNK(file
->mode
))
947 if (S_ISDIR(file
->mode
)) {
949 } else if (IS_SPECIAL(file
->mode
))
951 else if (IS_DEVICE(file
->mode
))
954 else if (S_ISLNK(file
->mode
))
959 "internal: try_dests_non() called with invalid mode (%o)\n",
961 exit_cleanup(RERR_UNSUPPORTED
);
965 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
966 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
970 if (!S_ISDIR(sxp
->st
.st_mode
))
974 if (!IS_SPECIAL(sxp
->st
.st_mode
))
978 if (!IS_DEVICE(sxp
->st
.st_mode
))
983 if (!S_ISLNK(sxp
->st
.st_mode
))
990 if (match_level
< 1) {
999 devp
= F_RDEV_P(file
);
1000 if (sxp
->st
.st_rdev
!= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
)))
1004 #ifdef SUPPORT_LINKS
1005 if ((len
= do_readlink(cmpbuf
, lnk
, MAXPATHLEN
-1)) <= 0)
1008 if (strcmp(lnk
, F_SYMLINK(file
)) != 0)
1015 if (match_level
< 2) {
1019 if (unchanged_attrs(cmpbuf
, file
, sxp
)) {
1024 } while (basis_dir
[++j
] != NULL
);
1029 if (j
!= best_match
) {
1031 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1032 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1036 if (match_level
== 3) {
1037 #ifdef SUPPORT_HARD_LINKS
1039 #ifndef CAN_HARDLINK_SYMLINK
1040 && !S_ISLNK(file
->mode
)
1042 #ifndef CAN_HARDLINK_SPECIAL
1043 && !IS_SPECIAL(file
->mode
) && !IS_DEVICE(file
->mode
)
1045 && !S_ISDIR(file
->mode
)) {
1046 if (do_link(cmpbuf
, fname
) < 0) {
1047 rsyserr(FERROR_XFER
, errno
,
1048 "failed to hard-link %s with %s",
1052 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1053 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1057 if (itemizing
&& stdout_format_has_i
1058 && (INFO_GTE(NAME
, 2) || stdout_format_has_i
> 1)) {
1059 int chg
= compare_dest
&& type
!= TYPE_DIR
? 0
1060 : ITEM_LOCAL_CHANGE
+ (match_level
== 3 ? ITEM_XNAME_FOLLOWS
: 0);
1061 char *lp
= match_level
== 3 ? "" : NULL
;
1062 itemize(cmpbuf
, file
, ndx
, 0, sxp
, chg
+ ITEM_MATCHED
, 0, lp
);
1064 if (INFO_GTE(NAME
, 2) && maybe_ATTRS_REPORT
) {
1065 rprintf(FCLIENT
, "%s%s is uptodate\n",
1066 fname
, type
== TYPE_DIR
? "/" : "");
1074 static void list_file_entry(struct file_struct
*f
)
1076 char permbuf
[PERMSTRING_SIZE
];
1078 int colwidth
= human_readable
? 14 : 11;
1080 if (!F_IS_ACTIVE(f
)) {
1081 /* this can happen if duplicate names were removed */
1085 permstring(permbuf
, f
->mode
);
1088 /* TODO: indicate '+' if the entry has an ACL. */
1090 #ifdef SUPPORT_LINKS
1091 if (preserve_links
&& S_ISLNK(f
->mode
)) {
1092 rprintf(FINFO
, "%s %*s %s %s -> %s\n",
1093 permbuf
, colwidth
, human_num(len
),
1094 timestring(f
->modtime
), f_name(f
, NULL
),
1098 if (missing_args
== 2 && f
->mode
== 0) {
1099 rprintf(FINFO
, "%-*s %s\n",
1100 colwidth
+ 31, "*missing",
1103 rprintf(FINFO
, "%s %*s %s %s\n",
1104 permbuf
, colwidth
, human_num(len
),
1105 timestring(f
->modtime
), f_name(f
, NULL
));
1109 static int phase
= 0;
1110 static int dflt_perms
;
1112 static int implied_dirs_are_missing
;
1113 /* Helper for recv_generator's skip_dir and dry_missing_dir tests. */
1114 static BOOL
is_below(struct file_struct
*file
, struct file_struct
*subtree
)
1116 return F_DEPTH(file
) > F_DEPTH(subtree
)
1117 && (!implied_dirs_are_missing
|| f_name_has_prefix(file
, subtree
));
1120 /* Acts on the indicated item in cur_flist whose name is fname. If a dir,
1121 * make sure it exists, and has the right permissions/timestamp info. For
1122 * all other non-regular files (symlinks, etc.) we create them here. For
1123 * regular files that have changed, we try to find a basis file and then
1124 * start sending checksums. The ndx is the file's unique index value.
1126 * The fname parameter must point to a MAXPATHLEN buffer! (e.g it gets
1127 * passed to delete_item(), which can use it during a recursive delete.)
1129 * Note that f_out is set to -1 when doing final directory-permission and
1130 * modification-time repair. */
1131 static void recv_generator(char *fname
, struct file_struct
*file
, int ndx
,
1132 int itemizing
, enum logcode code
, int f_out
)
1134 static const char *parent_dirname
= "";
1135 /* Missing dir not created due to --dry-run; will still be scanned. */
1136 static struct file_struct
*dry_missing_dir
= NULL
;
1137 /* Missing dir whose contents are skipped altogether due to
1138 * --ignore-non-existing, daemon exclude, or mkdir failure. */
1139 static struct file_struct
*skip_dir
= NULL
;
1140 static struct file_list
*fuzzy_dirlist
= NULL
;
1141 static int need_fuzzy_dirlist
= 0;
1142 struct file_struct
*fuzzy_file
= NULL
;
1143 int fd
= -1, f_copy
= -1;
1145 STRUCT_STAT partial_st
;
1146 struct file_struct
*back_file
= NULL
;
1147 int statret
, real_ret
, stat_errno
;
1148 char *fnamecmp
, *partialptr
, *backupptr
= NULL
;
1149 char fnamecmpbuf
[MAXPATHLEN
];
1150 uchar fnamecmp_type
;
1151 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1152 int is_dir
= !S_ISDIR(file
->mode
) ? 0
1153 : inc_recurse
&& ndx
!= cur_flist
->ndx_start
- 1 ? -1
1156 if (DEBUG_GTE(GENR
, 1))
1157 rprintf(FINFO
, "recv_generator(%s,%d)\n", fname
, ndx
);
1161 || (is_dir
&& !implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
1163 list_file_entry(file
);
1168 if (is_below(file
, skip_dir
)) {
1170 file
->flags
|= FLAG_MISSING_DIR
;
1171 #ifdef SUPPORT_HARD_LINKS
1172 else if (F_IS_HLINKED(file
))
1173 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1181 if (daemon_filter_list
.head
&& (*fname
!= '.' || fname
[1])) {
1182 if (check_filter(&daemon_filter_list
, FLOG
, fname
, is_dir
) < 0) {
1185 #ifdef SUPPORT_HARD_LINKS
1186 if (F_IS_HLINKED(file
))
1187 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1189 rprintf(FERROR_XFER
,
1190 "skipping daemon-excluded %s \"%s\"\n",
1191 is_dir
? "directory" : "file", fname
);
1193 goto skipping_dir_contents
;
1198 if (dry_run
> 1 || (dry_missing_dir
&& is_below(file
, dry_missing_dir
))) {
1199 parent_is_dry_missing
:
1200 if (fuzzy_dirlist
) {
1201 flist_free(fuzzy_dirlist
);
1202 fuzzy_dirlist
= NULL
;
1204 parent_dirname
= "";
1206 stat_errno
= ENOENT
;
1208 const char *dn
= file
->dirname
? file
->dirname
: ".";
1209 dry_missing_dir
= NULL
;
1210 if (parent_dirname
!= dn
&& strcmp(parent_dirname
, dn
) != 0) {
1211 if (relative_paths
&& !implied_dirs
1212 && do_stat(dn
, &sx
.st
) < 0) {
1214 goto parent_is_dry_missing
;
1215 if (make_path(fname
, MKP_DROP_NAME
| MKP_SKIP_SLASH
) < 0) {
1216 rsyserr(FERROR_XFER
, errno
,
1217 "recv_generator: mkdir %s failed",
1221 if (fuzzy_dirlist
) {
1222 flist_free(fuzzy_dirlist
);
1223 fuzzy_dirlist
= NULL
;
1226 need_fuzzy_dirlist
= 1;
1228 if (!preserve_perms
)
1229 dflt_perms
= default_perms_for_dir(dn
);
1232 parent_dirname
= dn
;
1234 if (need_fuzzy_dirlist
&& S_ISREG(file
->mode
)) {
1235 strlcpy(fnamecmpbuf
, dn
, sizeof fnamecmpbuf
);
1236 fuzzy_dirlist
= get_dirlist(fnamecmpbuf
, -1, 1);
1237 need_fuzzy_dirlist
= 0;
1240 statret
= link_stat(fname
, &sx
.st
, keep_dirlinks
&& is_dir
);
1244 if (missing_args
== 2 && file
->mode
== 0) {
1245 if (filter_list
.head
&& check_filter(&filter_list
, FINFO
, fname
, is_dir
) < 0)
1248 delete_item(fname
, sx
.st
.st_mode
, del_opts
);
1252 if (ignore_non_existing
> 0 && statret
== -1 && stat_errno
== ENOENT
) {
1257 file
->flags
|= FLAG_MISSING_DIR
;
1259 #ifdef SUPPORT_HARD_LINKS
1260 else if (F_IS_HLINKED(file
))
1261 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1263 if (INFO_GTE(SKIP
, 1)) {
1264 rprintf(FINFO
, "not creating new %s \"%s\"\n",
1265 is_dir
? "directory" : "file", fname
);
1270 if (statret
== 0 && !(sx
.st
.st_mode
& S_IWUSR
)
1271 && !am_root
&& sx
.st
.st_uid
== our_uid
)
1272 del_opts
|= DEL_NO_UID_WRITE
;
1274 if (ignore_existing
> 0 && statret
== 0
1275 && (!is_dir
|| !S_ISDIR(sx
.st
.st_mode
))) {
1276 if (INFO_GTE(SKIP
, 1) && is_dir
>= 0)
1277 rprintf(FINFO
, "%s exists\n", fname
);
1278 #ifdef SUPPORT_HARD_LINKS
1279 if (F_IS_HLINKED(file
))
1280 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1288 if (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
)
1291 /* In inc_recurse mode we want to make sure any missing
1292 * directories get created while we're still processing
1293 * the parent dir (which allows us to touch the parent
1294 * dir's mtime right away). We will handle the dir in
1295 * full later (right before we handle its contents). */
1297 && (S_ISDIR(sx
.st
.st_mode
)
1298 || delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0))
1299 goto cleanup
; /* Any errors get reported later. */
1300 if (do_mkdir(fname
, file
->mode
& 0700) == 0)
1301 file
->flags
|= FLAG_DIR_CREATED
;
1304 /* The file to be received is a directory, so we need
1305 * to prepare appropriately. If there is already a
1306 * file of that name and it is *not* a directory, then
1307 * we need to delete it. If it doesn't exist, then
1308 * (perhaps recursively) create it. */
1309 if (statret
== 0 && !S_ISDIR(sx
.st
.st_mode
)) {
1310 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0)
1311 goto skipping_dir_contents
;
1314 if (dry_run
&& statret
!= 0) {
1315 if (!dry_missing_dir
)
1316 dry_missing_dir
= file
;
1317 file
->flags
|= FLAG_MISSING_DIR
;
1321 if (file
->flags
& FLAG_DIR_CREATED
)
1323 if (!preserve_perms
) { /* See comment in non-dir code below. */
1324 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
,
1325 dflt_perms
, statret
== 0);
1327 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1328 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1334 } else if (j
>= 0) {
1336 fnamecmp
= fnamecmpbuf
;
1339 if (itemizing
&& f_out
!= -1) {
1340 itemize(fnamecmp
, file
, ndx
, statret
, &sx
,
1341 statret
? ITEM_LOCAL_CHANGE
: 0, 0, NULL
);
1343 if (real_ret
!= 0 && do_mkdir(fname
,file
->mode
) < 0 && errno
!= EEXIST
) {
1344 if (!relative_paths
|| errno
!= ENOENT
1345 || make_path(fname
, MKP_DROP_NAME
| MKP_SKIP_SLASH
) < 0
1346 || (do_mkdir(fname
, file
->mode
) < 0 && errno
!= EEXIST
)) {
1347 rsyserr(FERROR_XFER
, errno
,
1348 "recv_generator: mkdir %s failed",
1350 skipping_dir_contents
:
1352 "*** Skipping any contents from this failed directory ***\n");
1354 file
->flags
|= FLAG_MISSING_DIR
;
1358 #ifdef SUPPORT_XATTRS
1359 if (preserve_xattrs
&& statret
== 1)
1360 copy_xattrs(fnamecmpbuf
, fname
);
1362 if (set_file_attrs(fname
, file
, real_ret
? NULL
: &real_sx
, NULL
, 0)
1363 && INFO_GTE(NAME
, 1) && code
!= FNONE
&& f_out
!= -1)
1364 rprintf(code
, "%s/\n", fname
);
1366 /* We need to ensure that the dirs in the transfer have writable
1367 * permissions during the time we are putting files within them.
1368 * This is then fixed after the transfer is done. */
1370 if (!am_root
&& !(file
->mode
& S_IWUSR
) && dir_tweaking
) {
1371 mode_t mode
= file
->mode
| S_IWUSR
;
1372 if (do_chmod(fname
, mode
) < 0) {
1373 rsyserr(FERROR_XFER
, errno
,
1374 "failed to modify permissions on %s",
1377 need_retouch_dir_perms
= 1;
1381 if (real_ret
!= 0 && one_file_system
)
1382 real_sx
.st
.st_dev
= filesystem_dev
;
1384 if (one_file_system
) {
1385 uint32
*devp
= F_DIR_DEV_P(file
);
1386 DEV_MAJOR(devp
) = major(real_sx
.st
.st_dev
);
1387 DEV_MINOR(devp
) = minor(real_sx
.st
.st_dev
);
1390 else if (delete_during
&& f_out
!= -1 && !phase
1391 && !(file
->flags
& FLAG_MISSING_DIR
)) {
1392 if (file
->flags
& FLAG_CONTENT_DIR
)
1393 delete_in_dir(fname
, file
, &real_sx
.st
.st_dev
);
1395 change_local_filter_dir(fname
, strlen(fname
), F_DEPTH(file
));
1400 /* If we're not preserving permissions, change the file-list's
1401 * mode based on the local permissions and some heuristics. */
1402 if (!preserve_perms
) {
1403 int exists
= statret
== 0 && !S_ISDIR(sx
.st
.st_mode
);
1404 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
, dflt_perms
,
1408 #ifdef SUPPORT_HARD_LINKS
1409 if (preserve_hard_links
&& F_HLINK_NOT_FIRST(file
)
1410 && hard_link_check(file
, ndx
, fname
, statret
, &sx
, itemizing
, code
))
1414 if (preserve_links
&& S_ISLNK(file
->mode
)) {
1415 #ifdef SUPPORT_LINKS
1416 const char *sl
= F_SYMLINK(file
);
1417 if (safe_symlinks
&& unsafe_symlink(sl
, fname
)) {
1418 if (INFO_GTE(NAME
, 1)) {
1420 /* fname contains the destination path, but we
1421 * want to report the source path. */
1422 fname
= f_name(file
, NULL
);
1425 "ignoring unsafe symlink \"%s\" -> \"%s\"\n",
1431 char lnk
[MAXPATHLEN
];
1434 if (S_ISLNK(sx
.st
.st_mode
)
1435 && (len
= do_readlink(fname
, lnk
, MAXPATHLEN
-1)) > 0
1436 && strncmp(lnk
, sl
, len
) == 0 && sl
[len
] == '\0') {
1437 /* The link is pointing to the right place. */
1438 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1440 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1441 #if defined SUPPORT_HARD_LINKS && defined CAN_HARDLINK_SYMLINK
1442 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1443 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1445 if (remove_source_files
== 1)
1446 goto return_with_success
;
1449 } else if (basis_dir
[0] != NULL
) {
1450 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1453 #ifndef CAN_HARDLINK_SYMLINK
1455 /* Resort to --copy-dest behavior. */
1465 if (atomic_create(file
, fname
, sl
, MAKEDEV(0, 0), &sx
, statret
== 0 ? DEL_FOR_SYMLINK
: 0)) {
1466 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1468 if (statret
== 0 && !S_ISLNK(sx
.st
.st_mode
))
1470 itemize(fname
, file
, ndx
, statret
, &sx
,
1471 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1473 if (code
!= FNONE
&& INFO_GTE(NAME
, 1))
1474 rprintf(code
, "%s -> %s\n", fname
, sl
);
1475 #ifdef SUPPORT_HARD_LINKS
1476 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1477 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1479 /* This does not check remove_source_files == 1
1480 * because this is one of the items that the old
1481 * --remove-sent-files option would remove. */
1482 if (remove_source_files
)
1483 goto return_with_success
;
1489 if ((am_root
&& preserve_devices
&& IS_DEVICE(file
->mode
))
1490 || (preserve_specials
&& IS_SPECIAL(file
->mode
))) {
1492 int del_for_flag
= 0;
1493 if (IS_DEVICE(file
->mode
)) {
1494 uint32
*devp
= F_RDEV_P(file
);
1495 rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
1499 if (IS_DEVICE(file
->mode
)) {
1500 if (!IS_DEVICE(sx
.st
.st_mode
))
1502 del_for_flag
= DEL_FOR_DEVICE
;
1504 if (!IS_SPECIAL(sx
.st
.st_mode
))
1506 del_for_flag
= DEL_FOR_SPECIAL
;
1509 && BITS_EQUAL(sx
.st
.st_mode
, file
->mode
, _S_IFMT
)
1510 && (IS_SPECIAL(sx
.st
.st_mode
) || sx
.st
.st_rdev
== rdev
)) {
1511 /* The device or special file is identical. */
1512 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1514 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1515 #ifdef SUPPORT_HARD_LINKS
1516 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1517 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1519 if (remove_source_files
== 1)
1520 goto return_with_success
;
1523 } else if (basis_dir
[0] != NULL
) {
1524 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1527 #ifndef CAN_HARDLINK_SPECIAL
1529 /* Resort to --copy-dest behavior. */
1539 if (DEBUG_GTE(GENR
, 1)) {
1540 rprintf(FINFO
, "mknod(%s, 0%o, [%ld,%ld])\n",
1541 fname
, (int)file
->mode
,
1542 (long)major(rdev
), (long)minor(rdev
));
1544 if (atomic_create(file
, fname
, NULL
, rdev
, &sx
, del_for_flag
)) {
1545 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1547 itemize(fname
, file
, ndx
, statret
, &sx
,
1548 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1550 if (code
!= FNONE
&& INFO_GTE(NAME
, 1))
1551 rprintf(code
, "%s\n", fname
);
1552 #ifdef SUPPORT_HARD_LINKS
1553 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1554 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1556 if (remove_source_files
== 1)
1557 goto return_with_success
;
1562 if (!S_ISREG(file
->mode
)) {
1564 fname
= f_name(file
, NULL
);
1565 rprintf(FINFO
, "skipping non-regular file \"%s\"\n", fname
);
1569 if (max_size
> 0 && F_LENGTH(file
) > max_size
) {
1570 if (INFO_GTE(SKIP
, 1)) {
1572 fname
= f_name(file
, NULL
);
1573 rprintf(FINFO
, "%s is over max-size\n", fname
);
1577 if (min_size
> 0 && F_LENGTH(file
) < min_size
) {
1578 if (INFO_GTE(SKIP
, 1)) {
1580 fname
= f_name(file
, NULL
);
1581 rprintf(FINFO
, "%s is under min-size\n", fname
);
1586 if (update_only
> 0 && statret
== 0
1587 && cmp_time(sx
.st
.st_mtime
, file
->modtime
) > 0) {
1588 if (INFO_GTE(SKIP
, 1))
1589 rprintf(FINFO
, "%s is newer\n", fname
);
1590 #ifdef SUPPORT_HARD_LINKS
1591 if (F_IS_HLINKED(file
))
1592 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1597 fnamecmp_type
= FNAMECMP_FNAME
;
1599 if (statret
== 0 && !S_ISREG(sx
.st
.st_mode
)) {
1600 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_FILE
) != 0)
1603 stat_errno
= ENOENT
;
1606 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1607 int j
= try_dests_reg(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1610 if (remove_source_files
== 1)
1611 goto return_with_success
;
1615 fnamecmp
= fnamecmpbuf
;
1624 if (partial_dir
&& (partialptr
= partial_dir_fname(fname
)) != NULL
1625 && link_stat(partialptr
, &partial_st
, 0) == 0
1626 && S_ISREG(partial_st
.st_mode
)) {
1628 goto prepare_to_open
;
1632 if (statret
!= 0 && fuzzy_dirlist
) {
1633 int j
= find_fuzzy(file
, fuzzy_dirlist
);
1635 fuzzy_file
= fuzzy_dirlist
->files
[j
];
1636 f_name(fuzzy_file
, fnamecmpbuf
);
1637 if (DEBUG_GTE(FUZZY
, 1)) {
1638 rprintf(FINFO
, "fuzzy basis selected for %s: %s\n",
1639 fname
, fnamecmpbuf
);
1641 sx
.st
.st_size
= F_LENGTH(fuzzy_file
);
1643 fnamecmp
= fnamecmpbuf
;
1644 fnamecmp_type
= FNAMECMP_FUZZY
;
1649 #ifdef SUPPORT_HARD_LINKS
1650 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1651 cur_flist
->in_progress
++;
1655 if (stat_errno
== ENOENT
)
1657 rsyserr(FERROR_XFER
, stat_errno
, "recv_generator: failed to stat %s",
1662 if (fnamecmp_type
<= FNAMECMP_BASIS_DIR_HIGH
)
1664 else if (fnamecmp_type
== FNAMECMP_FUZZY
)
1666 else if (unchanged_file(fnamecmp
, file
, &sx
.st
)) {
1668 do_unlink(partialptr
);
1669 handle_partial_dir(partialptr
, PDIR_DELETE
);
1671 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1673 itemize(fnamecmp
, file
, ndx
, statret
, &sx
, 0, 0, NULL
);
1674 #ifdef SUPPORT_HARD_LINKS
1675 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1676 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1678 if (remove_source_files
!= 1)
1680 return_with_success
:
1682 send_msg_int(MSG_SUCCESS
, ndx
);
1686 if (append_mode
> 0 && sx
.st
.st_size
>= F_LENGTH(file
)) {
1687 #ifdef SUPPORT_HARD_LINKS
1688 if (F_IS_HLINKED(file
))
1689 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1697 fnamecmp
= partialptr
;
1698 fnamecmp_type
= FNAMECMP_PARTIAL_DIR
;
1705 if (read_batch
|| whole_file
) {
1706 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1707 if (!(backupptr
= get_backup_name(fname
)))
1709 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
)))
1710 goto pretend_missing
;
1711 if (copy_file(fname
, backupptr
, -1, back_file
->mode
) < 0) {
1712 unmake_file(back_file
);
1720 if (fuzzy_dirlist
) {
1721 int j
= flist_find(fuzzy_dirlist
, file
);
1722 if (j
>= 0) /* don't use changing file as future fuzzy basis */
1723 fuzzy_dirlist
->files
[j
]->flags
|= FLAG_FILE_SENT
;
1727 if ((fd
= do_open(fnamecmp
, O_RDONLY
, 0)) < 0) {
1728 rsyserr(FERROR
, errno
, "failed to open %s, continuing",
1729 full_fname(fnamecmp
));
1731 /* pretend the file didn't exist */
1732 #ifdef SUPPORT_HARD_LINKS
1733 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1734 cur_flist
->in_progress
++;
1738 statret
= real_ret
= -1;
1742 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1743 if (!(backupptr
= get_backup_name(fname
))) {
1747 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
))) {
1749 goto pretend_missing
;
1751 if (robust_unlink(backupptr
) && errno
!= ENOENT
) {
1752 rsyserr(FERROR_XFER
, errno
, "unlink %s",
1753 full_fname(backupptr
));
1754 unmake_file(back_file
);
1759 if ((f_copy
= do_open(backupptr
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, 0600)) < 0) {
1760 rsyserr(FERROR_XFER
, errno
, "open %s", full_fname(backupptr
));
1761 unmake_file(back_file
);
1766 fnamecmp_type
= FNAMECMP_BACKUP
;
1769 if (DEBUG_GTE(DELTASUM
, 3)) {
1770 rprintf(FINFO
, "gen mapped %s of size %s\n",
1771 fnamecmp
, big_num(sx
.st
.st_size
));
1774 if (DEBUG_GTE(DELTASUM
, 2))
1775 rprintf(FINFO
, "generating and sending sums for %d\n", ndx
);
1778 if (remove_source_files
&& !delay_updates
&& !phase
&& !dry_run
)
1779 increment_active_files(ndx
, itemizing
, code
);
1780 if (inc_recurse
&& !dry_run
)
1781 cur_flist
->in_progress
++;
1782 #ifdef SUPPORT_HARD_LINKS
1783 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1784 file
->flags
|= FLAG_FILE_SENT
;
1786 write_ndx(f_out
, ndx
);
1788 int iflags
= ITEM_TRANSFER
;
1789 if (always_checksum
> 0)
1790 iflags
|= ITEM_REPORT_CHANGE
;
1791 if (fnamecmp_type
!= FNAMECMP_FNAME
)
1792 iflags
|= ITEM_BASIS_TYPE_FOLLOWS
;
1793 if (fnamecmp_type
== FNAMECMP_FUZZY
)
1794 iflags
|= ITEM_XNAME_FOLLOWS
;
1795 itemize(fnamecmp
, file
, -1, real_ret
, &real_sx
, iflags
, fnamecmp_type
,
1796 fuzzy_file
? fuzzy_file
->basename
: NULL
);
1801 #ifdef SUPPORT_XATTRS
1802 if (preserve_xattrs
)
1803 free_xattr(&real_sx
);
1808 #ifdef SUPPORT_HARD_LINKS
1809 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1810 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1817 if (statret
!= 0 || whole_file
)
1818 write_sum_head(f_out
, NULL
);
1819 else if (sx
.st
.st_size
<= 0) {
1820 write_sum_head(f_out
, NULL
);
1823 if (generate_and_send_sums(fd
, sx
.st
.st_size
, f_out
, f_copy
) < 0) {
1825 "WARNING: file is too large for checksum sending: %s\n",
1827 write_sum_head(f_out
, NULL
);
1834 int save_preserve_xattrs
= preserve_xattrs
;
1837 #ifdef SUPPORT_XATTRS
1838 if (preserve_xattrs
) {
1839 copy_xattrs(fname
, backupptr
);
1840 preserve_xattrs
= 0;
1843 set_file_attrs(backupptr
, back_file
, NULL
, NULL
, 0);
1844 preserve_xattrs
= save_preserve_xattrs
;
1845 if (INFO_GTE(BACKUP
, 1)) {
1846 rprintf(FINFO
, "backed up %s to %s\n",
1849 unmake_file(back_file
);
1856 #ifdef SUPPORT_XATTRS
1857 if (preserve_xattrs
)
1863 /* If we are replacing an existing hard link, symlink, device, or special file,
1864 * create a temp-name item and rename it into place. Only a symlink or hard
1865 * link puts a non-NULL value into the lnk arg. Only a device puts a non-0
1866 * value into the rdev arg. Specify 0 for the del_for_flag if there is not a
1867 * file to replace. This returns 1 on success and 0 on failure. */
1868 int atomic_create(struct file_struct
*file
, char *fname
, const char *lnk
,
1869 dev_t rdev
, stat_x
*sxp
, int del_for_flag
)
1871 char tmpname
[MAXPATHLEN
];
1872 const char *create_name
;
1873 int skip_atomic
, dir_in_the_way
= del_for_flag
&& S_ISDIR(sxp
->st
.st_mode
);
1875 if (!del_for_flag
|| dir_in_the_way
|| tmpdir
|| !get_tmpname(tmpname
, fname
, True
))
1881 if (make_backups
> 0 && !dir_in_the_way
) {
1882 if (!make_backup(fname
, skip_atomic
))
1884 } else if (skip_atomic
) {
1885 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1886 if (delete_item(fname
, sxp
->st
.st_mode
, del_opts
| del_for_flag
) != 0)
1891 create_name
= skip_atomic
? fname
: tmpname
;
1894 #ifdef SUPPORT_LINKS
1895 if (S_ISLNK(file
->mode
)
1896 #ifdef SUPPORT_HARD_LINKS /* The first symlink in a hard-linked cluster is always created. */
1897 && (!F_IS_HLINKED(file
) || file
->flags
& FLAG_HLINK_FIRST
)
1900 if (do_symlink(lnk
, create_name
) < 0) {
1901 rsyserr(FERROR_XFER
, errno
, "symlink %s -> \"%s\" failed",
1902 full_fname(create_name
), lnk
);
1907 #ifdef SUPPORT_HARD_LINKS
1908 if (!hard_link_one(file
, create_name
, lnk
, 0))
1912 if (do_mknod(create_name
, file
->mode
, rdev
) < 0) {
1913 rsyserr(FERROR_XFER
, errno
, "mknod %s failed",
1914 full_fname(create_name
));
1920 if (do_rename(tmpname
, fname
) < 0) {
1921 rsyserr(FERROR_XFER
, errno
, "rename %s -> \"%s\" failed",
1922 full_fname(tmpname
), full_fname(fname
));
1931 #ifdef SUPPORT_HARD_LINKS
1932 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
1933 enum logcode code
, int f_out
)
1935 char fbuf
[MAXPATHLEN
];
1937 struct file_list
*save_flist
= cur_flist
;
1939 /* If we skip the last item in a chain of links and there was a
1940 * prior non-skipped hard-link waiting to finish, finish it now. */
1941 if ((new_last_ndx
= skip_hard_link(file
, &cur_flist
)) < 0)
1944 file
= cur_flist
->files
[new_last_ndx
- cur_flist
->ndx_start
];
1945 cur_flist
->in_progress
--; /* undo prior increment */
1947 recv_generator(fbuf
, file
, new_last_ndx
, itemizing
, code
, f_out
);
1949 cur_flist
= save_flist
;
1953 static void touch_up_dirs(struct file_list
*flist
, int ndx
)
1955 static int counter
= 0;
1956 struct file_struct
*file
;
1963 end
= flist
->used
- 1;
1967 /* Fix any directory permissions that were modified during the
1968 * transfer and/or re-set any tweaked modified-time values. */
1969 for (i
= start
; i
<= end
; i
++, counter
++) {
1970 file
= flist
->files
[i
];
1971 if (!S_ISDIR(file
->mode
)
1972 || (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
1974 if (DEBUG_GTE(TIME
, 2)) {
1975 fname
= f_name(file
, NULL
);
1976 rprintf(FINFO
, "touch_up_dirs: %s (%d)\n",
1979 /* Be sure not to retouch permissions with --fake-super. */
1980 fix_dir_perms
= !am_root
&& !(file
->mode
& S_IWUSR
);
1981 if (!F_IS_ACTIVE(file
) || file
->flags
& FLAG_MISSING_DIR
1982 || !(need_retouch_dir_times
|| fix_dir_perms
))
1984 fname
= f_name(file
, NULL
);
1986 do_chmod(fname
, file
->mode
);
1987 if (need_retouch_dir_times
) {
1989 if (link_stat(fname
, &st
, 0) == 0
1990 && cmp_time(st
.st_mtime
, file
->modtime
) != 0)
1991 set_modtime(fname
, file
->modtime
, F_MOD_NSEC(file
), file
->mode
);
1993 if (counter
>= loopchk_limit
) {
1995 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
1997 maybe_flush_socket(0);
2003 void check_for_finished_files(int itemizing
, enum logcode code
, int check_redo
)
2005 struct file_struct
*file
;
2006 struct file_list
*flist
;
2007 char fbuf
[MAXPATHLEN
];
2011 #ifdef SUPPORT_HARD_LINKS
2012 if (preserve_hard_links
&& (ndx
= get_hlink_num()) != -1) {
2013 flist
= flist_for_ndx(ndx
, "check_for_finished_files.1");
2014 file
= flist
->files
[ndx
- flist
->ndx_start
];
2015 assert(file
->flags
& FLAG_HLINKED
);
2016 finish_hard_link(file
, f_name(file
, fbuf
), ndx
, NULL
, itemizing
, code
, -1);
2017 flist
->in_progress
--;
2022 if (check_redo
&& (ndx
= get_redo_num()) != -1) {
2023 csum_length
= SUM_LENGTH
;
2024 max_size
= -max_size
;
2025 min_size
= -min_size
;
2026 ignore_existing
= -ignore_existing
;
2027 ignore_non_existing
= -ignore_non_existing
;
2028 update_only
= -update_only
;
2029 always_checksum
= -always_checksum
;
2030 size_only
= -size_only
;
2031 append_mode
= -append_mode
;
2032 make_backups
= -make_backups
; /* avoid dup backup w/inplace */
2036 cur_flist
= flist_for_ndx(ndx
, "check_for_finished_files.2");
2038 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
2040 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2043 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, sock_f_out
);
2044 cur_flist
->to_redo
--;
2048 csum_length
= SHORT_SUM_LENGTH
;
2049 max_size
= -max_size
;
2050 min_size
= -min_size
;
2051 ignore_existing
= -ignore_existing
;
2052 ignore_non_existing
= -ignore_non_existing
;
2053 update_only
= -update_only
;
2054 always_checksum
= -always_checksum
;
2055 size_only
= -size_only
;
2056 append_mode
= -append_mode
;
2057 make_backups
= -make_backups
;
2062 if (cur_flist
== first_flist
)
2065 /* We only get here if inc_recurse is enabled. */
2066 if (first_flist
->in_progress
|| first_flist
->to_redo
)
2069 write_ndx(sock_f_out
, NDX_DONE
);
2070 if (!read_batch
&& !flist_eof
) {
2072 for (flist
= first_flist
; flist
!= cur_flist
; flist
= flist
->next
)
2073 old_total
+= flist
->used
;
2074 maybe_flush_socket(!flist_eof
&& file_total
- old_total
< MIN_FILECNT_LOOKAHEAD
/2);
2077 if (delete_during
== 2 || !dir_tweaking
) {
2078 /* Skip directory touch-up. */
2079 } else if (first_flist
->parent_ndx
>= 0)
2080 touch_up_dirs(dir_flist
, first_flist
->parent_ndx
);
2082 flist_free(first_flist
); /* updates first_flist */
2086 void generate_files(int f_out
, const char *local_name
)
2088 int i
, ndx
, next_loopchk
= 0;
2089 char fbuf
[MAXPATHLEN
];
2092 int save_info_flist
= info_levels
[INFO_FLIST
];
2093 int save_info_progress
= info_levels
[INFO_PROGRESS
];
2095 if (protocol_version
>= 29) {
2097 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2098 code
= logfile_format_has_i
? FNONE
: FLOG
;
2099 } else if (am_daemon
) {
2100 itemizing
= logfile_format_has_i
&& do_xfers
;
2101 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2102 code
= itemizing
|| !do_xfers
? FCLIENT
: FINFO
;
2103 } else if (!am_server
) {
2104 itemizing
= stdout_format_has_i
;
2105 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2106 code
= itemizing
? FNONE
: FINFO
;
2109 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2112 solo_file
= local_name
;
2113 dir_tweaking
= !(list_only
|| solo_file
|| dry_run
);
2114 need_retouch_dir_times
= preserve_times
& PRESERVE_DIR_TIMES
;
2115 loopchk_limit
= allowed_lull
? allowed_lull
* 5 : 200;
2116 symlink_timeset_failed_flags
= ITEM_REPORT_TIME
2117 | (protocol_version
>= 30 || !am_server
? ITEM_REPORT_TIMEFAIL
: 0);
2118 implied_dirs_are_missing
= relative_paths
&& !implied_dirs
&& protocol_version
< 30;
2120 if (DEBUG_GTE(GENR
, 1))
2121 rprintf(FINFO
, "generator starting pid=%ld\n", (long)getpid());
2123 if (delete_before
&& !solo_file
&& cur_flist
->used
> 0)
2125 if (delete_during
== 2) {
2126 deldelay_size
= BIGPATHBUFLEN
* 4;
2127 deldelay_buf
= new_array(char, deldelay_size
);
2129 out_of_memory("delete-delay");
2131 info_levels
[INFO_FLIST
] = info_levels
[INFO_PROGRESS
] = 0;
2133 if (append_mode
> 0 || whole_file
< 0)
2135 if (DEBUG_GTE(FLIST
, 1)) {
2136 rprintf(FINFO
, "delta-transmission %s\n",
2138 ? "disabled for local transfer or --whole-file"
2142 dflt_perms
= (ACCESSPERMS
& ~orig_umask
);
2145 #ifdef SUPPORT_HARD_LINKS
2146 if (preserve_hard_links
&& inc_recurse
) {
2147 while (!flist_eof
&& file_total
< MIN_FILECNT_LOOKAHEAD
/2)
2148 wait_for_receiver();
2152 if (inc_recurse
&& cur_flist
->parent_ndx
>= 0) {
2153 struct file_struct
*fp
= dir_flist
->files
[cur_flist
->parent_ndx
];
2155 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2158 ndx
= cur_flist
->ndx_start
- 1;
2159 recv_generator(fbuf
, fp
, ndx
, itemizing
, code
, f_out
);
2160 if (delete_during
&& dry_run
< 2 && !list_only
2161 && !(fp
->flags
& FLAG_MISSING_DIR
)) {
2162 if (fp
->flags
& FLAG_CONTENT_DIR
) {
2164 if (one_file_system
) {
2165 uint32
*devp
= F_DIR_DEV_P(fp
);
2166 dirdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
2168 dirdev
= MAKEDEV(0, 0);
2169 delete_in_dir(fbuf
, fp
, &dirdev
);
2171 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(fp
));
2174 for (i
= cur_flist
->low
; i
<= cur_flist
->high
; i
++) {
2175 struct file_struct
*file
= cur_flist
->sorted
[i
];
2177 if (!F_IS_ACTIVE(file
))
2183 ndx
= i
+ cur_flist
->ndx_start
;
2186 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2189 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, f_out
);
2191 check_for_finished_files(itemizing
, code
, 0);
2193 if (i
+ cur_flist
->ndx_start
>= next_loopchk
) {
2195 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
2197 maybe_flush_socket(0);
2198 next_loopchk
+= loopchk_limit
;
2203 write_ndx(f_out
, NDX_DONE
);
2208 check_for_finished_files(itemizing
, code
, 1);
2209 if (cur_flist
->next
|| flist_eof
)
2211 wait_for_receiver();
2213 } while ((cur_flist
= cur_flist
->next
) != NULL
);
2216 delete_in_dir(NULL
, NULL
, &dev_zero
);
2218 if (DEBUG_GTE(GENR
, 1))
2219 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2222 check_for_finished_files(itemizing
, code
, 1);
2225 wait_for_receiver();
2229 if (DEBUG_GTE(GENR
, 1))
2230 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2232 write_ndx(f_out
, NDX_DONE
);
2234 /* Reduce round-trip lag-time for a useless delay-updates phase. */
2235 if (protocol_version
>= 29 && EARLY_DELAY_DONE_MSG())
2236 write_ndx(f_out
, NDX_DONE
);
2238 if (protocol_version
>= 31 && EARLY_DELETE_DONE_MSG()) {
2239 if ((INFO_GTE(STATS
, 2) && (delete_mode
|| force_delete
)) || read_batch
)
2240 write_del_stats(f_out
);
2241 if (EARLY_DELAY_DONE_MSG()) /* Can't send this before delay */
2242 write_ndx(f_out
, NDX_DONE
);
2245 /* Read MSG_DONE for the redo phase (and any prior messages). */
2247 check_for_finished_files(itemizing
, code
, 0);
2248 if (msgdone_cnt
> 1)
2250 wait_for_receiver();
2253 if (protocol_version
>= 29) {
2255 if (DEBUG_GTE(GENR
, 1))
2256 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2257 if (!EARLY_DELAY_DONE_MSG()) {
2258 write_ndx(f_out
, NDX_DONE
);
2259 if (protocol_version
>= 31 && EARLY_DELETE_DONE_MSG())
2260 write_ndx(f_out
, NDX_DONE
);
2262 /* Read MSG_DONE for delay-updates phase & prior messages. */
2263 while (msgdone_cnt
== 2)
2264 wait_for_receiver();
2267 info_levels
[INFO_FLIST
] = save_info_flist
;
2268 info_levels
[INFO_PROGRESS
] = save_info_progress
;
2270 if (delete_during
== 2)
2271 do_delayed_deletions(fbuf
);
2272 if (delete_after
&& !solo_file
&& file_total
> 0)
2275 if (max_delete
>= 0 && skipped_deletes
) {
2277 "Deletions stopped due to --max-delete limit (%d skipped)\n",
2279 io_error
|= IOERR_DEL_LIMIT
;
2282 if (protocol_version
>= 31) {
2283 if (!EARLY_DELETE_DONE_MSG()) {
2284 if (INFO_GTE(STATS
, 2) || read_batch
)
2285 write_del_stats(f_out
);
2286 write_ndx(f_out
, NDX_DONE
);
2289 /* Read MSG_DONE for late-delete phase & prior messages. */
2290 while (msgdone_cnt
== 3)
2291 wait_for_receiver();
2294 if ((need_retouch_dir_perms
|| need_retouch_dir_times
)
2295 && dir_tweaking
&& (!inc_recurse
|| delete_during
== 2))
2296 touch_up_dirs(dir_flist
, -1);
2298 if (DEBUG_GTE(GENR
, 1))
2299 rprintf(FINFO
, "generate_files finished\n");