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-2008 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.
28 extern int stdout_format_has_i
;
29 extern int logfile_format_has_i
;
33 extern int inc_recurse
;
34 extern int do_progress
;
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 msgdone_cnt
;
54 extern int ignore_errors
;
55 extern int remove_source_files
;
56 extern int delay_updates
;
57 extern int update_only
;
58 extern int ignore_existing
;
59 extern int ignore_non_existing
;
61 extern int append_mode
;
62 extern int make_backups
;
63 extern int csum_length
;
64 extern int ignore_times
;
66 extern OFF_T max_size
;
67 extern OFF_T min_size
;
70 extern int allowed_lull
;
71 extern int sock_f_out
;
72 extern int ignore_timeout
;
73 extern int protocol_version
;
74 extern int file_total
;
75 extern int fuzzy_basis
;
76 extern int always_checksum
;
77 extern int checksum_len
;
78 extern char *partial_dir
;
79 extern char *basis_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 struct stats stats
;
93 extern dev_t filesystem_dev
;
94 extern mode_t orig_umask
;
96 extern char *backup_dir
;
97 extern char *backup_suffix
;
98 extern int backup_suffix_len
;
99 extern struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
100 extern struct filter_list_struct daemon_filter_list
;
102 int ignore_perishable
= 0;
103 int non_perishable_cnt
= 0;
104 int maybe_ATTRS_REPORT
= 0;
106 static dev_t dev_zero
;
107 static int deletion_count
= 0; /* used to implement --max-delete */
108 static int deldelay_size
= 0, deldelay_cnt
= 0;
109 static char *deldelay_buf
= NULL
;
110 static int deldelay_fd
= -1;
112 static int dir_tweaking
;
113 static int symlink_timeset_failed_flags
;
114 static int need_retouch_dir_times
;
115 static int need_retouch_dir_perms
;
116 static const char *solo_file
= NULL
;
118 /* For calling delete_item() and delete_dir_contents(). */
119 #define DEL_NO_UID_WRITE (1<<0) /* file/dir has our uid w/o write perm */
120 #define DEL_RECURSE (1<<1) /* if dir, delete all contents */
121 #define DEL_DIR_IS_EMPTY (1<<2) /* internal delete_FUNCTIONS use only */
122 #define DEL_FOR_FILE (1<<3) /* making room for a replacement file */
123 #define DEL_FOR_DIR (1<<4) /* making room for a replacement dir */
124 #define DEL_FOR_SYMLINK (1<<5) /* making room for a replacement symlink */
125 #define DEL_FOR_DEVICE (1<<6) /* making room for a replacement device */
126 #define DEL_FOR_SPECIAL (1<<7) /* making room for a replacement special */
128 #define DEL_MAKE_ROOM (DEL_FOR_FILE|DEL_FOR_DIR|DEL_FOR_SYMLINK|DEL_FOR_DEVICE|DEL_FOR_SPECIAL)
131 TYPE_DIR
, TYPE_SPECIAL
, TYPE_DEVICE
, TYPE_SYMLINK
135 DR_SUCCESS
= 0, DR_FAILURE
, DR_AT_LIMIT
, DR_NOT_EMPTY
138 /* Forward declarations. */
139 static enum delret
delete_dir_contents(char *fname
, uint16 flags
);
140 #ifdef SUPPORT_HARD_LINKS
141 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
142 enum logcode code
, int f_out
);
145 static int is_backup_file(char *fn
)
147 int k
= strlen(fn
) - backup_suffix_len
;
148 return k
> 0 && strcmp(fn
+k
, backup_suffix
) == 0;
151 /* Delete a file or directory. If DEL_RECURSE is set in the flags, this will
152 * delete recursively.
154 * Note that fbuf must point to a MAXPATHLEN buffer if the mode indicates it's
155 * a directory! (The buffer is used for recursion, but returned unchanged.)
157 static enum delret
delete_item(char *fbuf
, uint16 mode
, uint16 flags
)
164 rprintf(FINFO
, "delete_item(%s) mode=%o flags=%d\n",
165 fbuf
, (int)mode
, (int)flags
);
168 if (flags
& DEL_NO_UID_WRITE
)
169 do_chmod(fbuf
, mode
| S_IWUSR
);
171 if (S_ISDIR(mode
) && !(flags
& DEL_DIR_IS_EMPTY
)) {
172 int save_uid_ndx
= uid_ndx
;
173 /* This only happens on the first call to delete_item() since
174 * delete_dir_contents() always calls us w/DEL_DIR_IS_EMPTY. */
176 uid_ndx
= ++file_extra_cnt
;
177 ignore_perishable
= 1;
178 /* If DEL_RECURSE is not set, this just reports emptiness. */
179 ret
= delete_dir_contents(fbuf
, flags
);
180 ignore_perishable
= 0;
185 if (ret
== DR_NOT_EMPTY
|| ret
== DR_AT_LIMIT
)
187 /* OK: try to delete the directory. */
190 if (!(flags
& DEL_MAKE_ROOM
) && max_delete
>= 0 && ++deletion_count
> max_delete
)
195 ok
= do_rmdir(fbuf
) == 0;
196 } else if (make_backups
> 0 && (backup_dir
|| !is_backup_file(fbuf
))) {
197 what
= "make_backup";
198 ok
= make_backup(fbuf
);
201 ok
= robust_unlink(fbuf
) == 0;
205 if (!(flags
& DEL_MAKE_ROOM
))
206 log_delete(fbuf
, mode
);
209 if (S_ISDIR(mode
) && errno
== ENOTEMPTY
) {
210 rprintf(FINFO
, "cannot delete non-empty directory: %s\n",
213 } else if (errno
!= ENOENT
) {
214 rsyserr(FERROR
, errno
, "delete_file: %s(%s) failed",
224 if (ret
!= DR_SUCCESS
&& flags
& DEL_MAKE_ROOM
) {
226 switch (flags
& DEL_MAKE_ROOM
) {
227 case DEL_FOR_FILE
: desc
= "regular file"; break;
228 case DEL_FOR_DIR
: desc
= "directory"; break;
229 case DEL_FOR_SYMLINK
: desc
= "symlink"; break;
230 case DEL_FOR_DEVICE
: desc
= "device file"; break;
231 case DEL_FOR_SPECIAL
: desc
= "special file"; break;
232 default: exit_cleanup(RERR_UNSUPPORTED
); /* IMPOSSIBLE */
234 rprintf(FERROR_XFER
, "could not make way for new %s: %s\n",
240 /* The directory is about to be deleted: if DEL_RECURSE is given, delete all
241 * its contents, otherwise just checks for content. Returns DR_SUCCESS or
242 * DR_NOT_EMPTY. Note that fname must point to a MAXPATHLEN buffer! (The
243 * buffer is used for recursion, but returned unchanged.)
245 static enum delret
delete_dir_contents(char *fname
, uint16 flags
)
247 struct file_list
*dirlist
;
255 rprintf(FINFO
, "delete_dir_contents(%s) flags=%d\n",
259 dlen
= strlen(fname
);
260 save_filters
= push_local_filters(fname
, dlen
);
262 non_perishable_cnt
= 0;
263 dirlist
= get_dirlist(fname
, dlen
, 0);
264 ret
= non_perishable_cnt
? DR_NOT_EMPTY
: DR_SUCCESS
;
269 if (!(flags
& DEL_RECURSE
)) {
275 if (dlen
!= 1 || *fname
!= '/')
277 remainder
= MAXPATHLEN
- (p
- fname
);
279 /* We do our own recursion, so make delete_item() non-recursive. */
280 flags
= (flags
& ~(DEL_RECURSE
|DEL_MAKE_ROOM
|DEL_NO_UID_WRITE
))
283 for (j
= dirlist
->used
; j
--; ) {
284 struct file_struct
*fp
= dirlist
->files
[j
];
286 if (fp
->flags
& FLAG_MOUNT_DIR
&& S_ISDIR(fp
->mode
)) {
289 "mount point, %s, pins parent directory\n",
296 strlcpy(p
, fp
->basename
, remainder
);
297 if (!(fp
->mode
& S_IWUSR
) && !am_root
&& (uid_t
)F_OWNER(fp
) == our_uid
)
298 do_chmod(fname
, fp
->mode
| S_IWUSR
);
299 /* Save stack by recursing to ourself directly. */
300 if (S_ISDIR(fp
->mode
)) {
301 if (delete_dir_contents(fname
, flags
| DEL_RECURSE
) != DR_SUCCESS
)
304 if (delete_item(fname
, fp
->mode
, flags
) != DR_SUCCESS
)
312 pop_local_filters(save_filters
);
314 if (ret
== DR_NOT_EMPTY
) {
315 rprintf(FINFO
, "cannot delete non-empty directory: %s\n",
321 static int start_delete_delay_temp(void)
323 char fnametmp
[MAXPATHLEN
];
324 int save_dry_run
= dry_run
;
327 if (!get_tmpname(fnametmp
, "deldelay")
328 || (deldelay_fd
= do_mkstemp(fnametmp
, 0600)) < 0) {
329 rprintf(FINFO
, "NOTE: Unable to create delete-delay temp file%s.\n",
330 inc_recurse
? "" : " -- switching to --delete-after");
332 delete_after
= !inc_recurse
;
333 dry_run
= save_dry_run
;
337 dry_run
= save_dry_run
;
341 static int flush_delete_delay(void)
343 if (deldelay_fd
< 0 && !start_delete_delay_temp())
345 if (write(deldelay_fd
, deldelay_buf
, deldelay_cnt
) != deldelay_cnt
) {
346 rsyserr(FERROR
, errno
, "flush of delete-delay buffer");
348 delete_after
= !inc_recurse
;
356 static int remember_delete(struct file_struct
*file
, const char *fname
, int flags
)
360 if (deldelay_cnt
== deldelay_size
&& !flush_delete_delay())
363 if (flags
& DEL_NO_UID_WRITE
)
364 deldelay_buf
[deldelay_cnt
++] = '!';
367 len
= snprintf(deldelay_buf
+ deldelay_cnt
,
368 deldelay_size
- deldelay_cnt
,
370 (int)file
->mode
, fname
, '\0');
371 if ((deldelay_cnt
+= len
) <= deldelay_size
)
374 if (!flush_delete_delay())
381 static int read_delay_line(char *buf
, int *flags_p
)
383 static int read_pos
= 0;
385 char *bp
, *past_space
;
388 for (j
= read_pos
; j
< deldelay_cnt
&& deldelay_buf
[j
]; j
++) {}
389 if (j
< deldelay_cnt
)
391 if (deldelay_fd
< 0) {
396 deldelay_cnt
-= read_pos
;
397 if (deldelay_cnt
== deldelay_size
)
399 if (deldelay_cnt
&& read_pos
) {
400 memmove(deldelay_buf
, deldelay_buf
+ read_pos
,
403 len
= read(deldelay_fd
, deldelay_buf
+ deldelay_cnt
,
404 deldelay_size
- deldelay_cnt
);
408 "ERROR: unexpected EOF in delete-delay file.\n");
413 rsyserr(FERROR
, errno
,
414 "reading delete-delay file");
421 bp
= deldelay_buf
+ read_pos
;
424 *flags_p
= DEL_NO_UID_WRITE
;
428 if (sscanf(bp
, "%x ", &mode
) != 1) {
430 rprintf(FERROR
, "ERROR: invalid data in delete-delay file.\n");
433 past_space
= strchr(bp
, ' ') + 1;
434 len
= j
- read_pos
- (past_space
- bp
) + 1; /* count the '\0' */
437 if (len
> MAXPATHLEN
) {
438 rprintf(FERROR
, "ERROR: filename too long in delete-delay file.\n");
442 /* The caller needs the name in a MAXPATHLEN buffer, so we copy it
443 * instead of returning a pointer to our buffer. */
444 memcpy(buf
, past_space
, len
);
449 static void do_delayed_deletions(char *delbuf
)
453 if (deldelay_fd
>= 0) {
454 if (deldelay_cnt
&& !flush_delete_delay())
456 lseek(deldelay_fd
, 0, 0);
458 while ((mode
= read_delay_line(delbuf
, &flags
)) >= 0)
459 delete_item(delbuf
, mode
, flags
| DEL_RECURSE
);
460 if (deldelay_fd
>= 0)
464 /* This function is used to implement per-directory deletion, and is used by
465 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
466 * MAXPATHLEN buffer with the name of the directory in it (the functions we
467 * call will append names onto the end, but the old dir value will be restored
469 static void delete_in_dir(char *fbuf
, struct file_struct
*file
, dev_t
*fs_dev
)
471 static int already_warned
= 0;
472 struct file_list
*dirlist
;
473 char delbuf
[MAXPATHLEN
];
475 int save_uid_ndx
= uid_ndx
;
478 change_local_filter_dir(NULL
, 0, 0);
483 rprintf(FINFO
, "delete_in_dir(%s)\n", fbuf
);
486 maybe_send_keepalive();
488 if (io_error
&& !ignore_errors
) {
492 "IO error encountered -- skipping file deletion\n");
498 change_local_filter_dir(fbuf
, dlen
, F_DEPTH(file
));
500 if (one_file_system
) {
501 if (file
->flags
& FLAG_TOP_DIR
)
502 filesystem_dev
= *fs_dev
;
503 else if (filesystem_dev
!= *fs_dev
)
508 uid_ndx
= ++file_extra_cnt
;
510 dirlist
= get_dirlist(fbuf
, dlen
, 0);
512 /* If an item in dirlist is not found in flist, delete it
513 * from the filesystem. */
514 for (i
= dirlist
->used
; i
--; ) {
515 struct file_struct
*fp
= dirlist
->files
[i
];
516 if (!F_IS_ACTIVE(fp
))
518 if (fp
->flags
& FLAG_MOUNT_DIR
&& S_ISDIR(fp
->mode
)) {
520 rprintf(FINFO
, "cannot delete mount point: %s\n",
524 if (flist_find(cur_flist
, fp
) < 0) {
525 int flags
= DEL_RECURSE
;
526 if (!(fp
->mode
& S_IWUSR
) && !am_root
&& (uid_t
)F_OWNER(fp
) == our_uid
)
527 flags
|= DEL_NO_UID_WRITE
;
529 if (delete_during
== 2) {
530 if (!remember_delete(fp
, delbuf
, flags
))
533 delete_item(delbuf
, fp
->mode
, flags
);
545 /* This deletes any files on the receiving side that are not present on the
546 * sending side. This is used by --delete-before and --delete-after. */
547 static void do_delete_pass(void)
549 char fbuf
[MAXPATHLEN
];
553 /* dry_run is incremented when the destination doesn't exist yet. */
554 if (dry_run
> 1 || list_only
)
557 for (j
= 0; j
< cur_flist
->used
; j
++) {
558 struct file_struct
*file
= cur_flist
->sorted
[j
];
562 if (!(file
->flags
& FLAG_CONTENT_DIR
)) {
563 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(file
));
567 if (verbose
> 1 && file
->flags
& FLAG_TOP_DIR
)
568 rprintf(FINFO
, "deleting in %s\n", fbuf
);
570 if (link_stat(fbuf
, &st
, keep_dirlinks
) < 0
571 || !S_ISDIR(st
.st_mode
))
574 delete_in_dir(fbuf
, file
, &st
.st_dev
);
576 delete_in_dir(NULL
, NULL
, &dev_zero
);
578 if (do_progress
&& !am_server
)
579 rprintf(FINFO
, " \r");
582 int unchanged_attrs(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
584 #if !defined HAVE_LUTIMES || !defined HAVE_UTIMES
585 if (S_ISLNK(file
->mode
)) {
589 if (preserve_times
&& cmp_time(sxp
->st
.st_mtime
, file
->modtime
) != 0)
592 if (preserve_perms
) {
593 if (!BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
))
595 } else if (preserve_executability
596 && ((sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0)))
599 if (am_root
&& uid_ndx
&& sxp
->st
.st_uid
!= (uid_t
)F_OWNER(file
))
602 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
) && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
606 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
607 if (!ACL_READY(*sxp
))
609 if (set_acl(NULL
, file
, sxp
) == 0)
613 #ifdef SUPPORT_XATTRS
614 if (preserve_xattrs
) {
615 if (!XATTR_READY(*sxp
))
616 get_xattr(fname
, sxp
);
617 if (xattr_diff(file
, sxp
, 0))
625 void itemize(const char *fnamecmp
, struct file_struct
*file
, int ndx
, int statret
,
626 stat_x
*sxp
, int32 iflags
, uchar fnamecmp_type
,
629 if (statret
>= 0) { /* A from-dest-dir statret can == 1! */
630 int keep_time
= !preserve_times
? 0
631 : S_ISDIR(file
->mode
) ? preserve_times
> 1 :
632 #if defined HAVE_LUTIMES && defined HAVE_UTIMES
635 !S_ISLNK(file
->mode
);
638 if (S_ISREG(file
->mode
) && F_LENGTH(file
) != sxp
->st
.st_size
)
639 iflags
|= ITEM_REPORT_SIZE
;
640 if (file
->flags
& FLAG_TIME_FAILED
) { /* symlinks only */
641 if (iflags
& ITEM_LOCAL_CHANGE
)
642 iflags
|= symlink_timeset_failed_flags
;
644 ? cmp_time(file
->modtime
, sxp
->st
.st_mtime
) != 0
645 : iflags
& (ITEM_TRANSFER
|ITEM_LOCAL_CHANGE
) && !(iflags
& ITEM_MATCHED
)
646 && (!(iflags
& ITEM_XNAME_FOLLOWS
) || *xname
))
647 iflags
|= ITEM_REPORT_TIME
;
648 #if !defined HAVE_LCHMOD && !defined HAVE_SETATTRLIST
649 if (S_ISLNK(file
->mode
)) {
653 if (preserve_perms
) {
654 if (!BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
))
655 iflags
|= ITEM_REPORT_PERMS
;
656 } else if (preserve_executability
657 && ((sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0)))
658 iflags
|= ITEM_REPORT_PERMS
;
659 if (uid_ndx
&& am_root
&& (uid_t
)F_OWNER(file
) != sxp
->st
.st_uid
)
660 iflags
|= ITEM_REPORT_OWNER
;
661 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
)
662 && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
663 iflags
|= ITEM_REPORT_GROUP
;
665 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
666 if (!ACL_READY(*sxp
))
667 get_acl(fnamecmp
, sxp
);
668 if (set_acl(NULL
, file
, sxp
) == 0)
669 iflags
|= ITEM_REPORT_ACL
;
672 #ifdef SUPPORT_XATTRS
673 if (preserve_xattrs
) {
674 if (!XATTR_READY(*sxp
))
675 get_xattr(fnamecmp
, sxp
);
676 if (xattr_diff(file
, sxp
, 1))
677 iflags
|= ITEM_REPORT_XATTR
;
681 #ifdef SUPPORT_XATTRS
682 if (preserve_xattrs
&& xattr_diff(file
, NULL
, 1))
683 iflags
|= ITEM_REPORT_XATTR
;
685 iflags
|= ITEM_IS_NEW
;
689 if ((iflags
& (SIGNIFICANT_ITEM_FLAGS
|ITEM_REPORT_XATTR
) || verbose
> 1
690 || stdout_format_has_i
> 1 || (xname
&& *xname
)) && !read_batch
) {
691 if (protocol_version
>= 29) {
693 write_ndx(sock_f_out
, ndx
);
694 write_shortint(sock_f_out
, iflags
);
695 if (iflags
& ITEM_BASIS_TYPE_FOLLOWS
)
696 write_byte(sock_f_out
, fnamecmp_type
);
697 if (iflags
& ITEM_XNAME_FOLLOWS
)
698 write_vstring(sock_f_out
, xname
, strlen(xname
));
699 #ifdef SUPPORT_XATTRS
700 if (iflags
& ITEM_REPORT_XATTR
&& !dry_run
)
701 send_xattr_request(NULL
, file
, sock_f_out
);
703 } else if (ndx
>= 0) {
704 enum logcode code
= logfile_format_has_i
? FINFO
: FCLIENT
;
705 log_item(code
, file
, &stats
, iflags
, xname
);
711 /* Perform our quick-check heuristic for determining if a file is unchanged. */
712 int unchanged_file(char *fn
, struct file_struct
*file
, STRUCT_STAT
*st
)
714 if (st
->st_size
!= F_LENGTH(file
))
717 /* if always checksum is set then we use the checksum instead
718 of the file time to determine whether to sync */
719 if (always_checksum
> 0 && S_ISREG(st
->st_mode
)) {
720 char sum
[MAX_DIGEST_LEN
];
721 file_checksum(fn
, sum
, st
->st_size
);
722 return memcmp(sum
, F_SUM(file
), checksum_len
) == 0;
731 return cmp_time(st
->st_mtime
, file
->modtime
) == 0;
736 * set (initialize) the size entries in the per-file sum_struct
737 * calculating dynamic block and checksum sizes.
739 * This is only called from generate_and_send_sums() but is a separate
740 * function to encapsulate the logic.
742 * The block size is a rounded square root of file length.
744 * The checksum size is determined according to:
745 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
746 * provided by Donovan Baarda which gives a probability of rsync
747 * algorithm corrupting data and falling back using the whole md4
750 * This might be made one of several selectable heuristics.
752 static void sum_sizes_sqroot(struct sum_struct
*sum
, int64 len
)
759 blength
= block_size
;
760 else if (len
<= BLOCK_SIZE
* BLOCK_SIZE
)
761 blength
= BLOCK_SIZE
;
765 for (c
= 1, l
= len
, cnt
= 0; l
>>= 2; c
<<= 1, cnt
++) {}
766 if (cnt
>= 31 || c
>= MAX_BLOCK_SIZE
)
767 blength
= MAX_BLOCK_SIZE
;
772 if (len
< (int64
)blength
* blength
)
775 } while (c
>= 8); /* round to multiple of 8 */
776 blength
= MAX(blength
, BLOCK_SIZE
);
780 if (protocol_version
< 27) {
781 s2length
= csum_length
;
782 } else if (csum_length
== SUM_LENGTH
) {
783 s2length
= SUM_LENGTH
;
786 int b
= BLOCKSUM_BIAS
;
787 for (l
= len
; l
>>= 1; b
+= 2) {}
788 for (c
= blength
; (c
>>= 1) && b
; b
--) {}
789 /* add a bit, subtract rollsum, round up. */
790 s2length
= (b
+ 1 - 32 + 7) / 8; /* --optimize in compiler-- */
791 s2length
= MAX(s2length
, csum_length
);
792 s2length
= MIN(s2length
, SUM_LENGTH
);
796 sum
->blength
= blength
;
797 sum
->s2length
= s2length
;
798 sum
->remainder
= (int32
)(len
% blength
);
799 sum
->count
= (int32
)(l
= (len
/ blength
) + (sum
->remainder
!= 0));
801 if ((int64
)sum
->count
!= l
)
804 if (sum
->count
&& verbose
> 2) {
806 "count=%.0f rem=%ld blength=%ld s2length=%d flength=%.0f\n",
807 (double)sum
->count
, (long)sum
->remainder
, (long)sum
->blength
,
808 sum
->s2length
, (double)sum
->flength
);
814 * Generate and send a stream of signatures/checksums that describe a buffer
816 * Generate approximately one checksum every block_len bytes.
818 static int generate_and_send_sums(int fd
, OFF_T len
, int f_out
, int f_copy
)
821 struct map_struct
*mapbuf
;
822 struct sum_struct sum
;
825 sum_sizes_sqroot(&sum
, len
);
828 write_sum_head(f_out
, &sum
);
830 if (append_mode
> 0 && f_copy
< 0)
834 mapbuf
= map_file(fd
, len
, MAX_MAP_SIZE
, sum
.blength
);
838 for (i
= 0; i
< sum
.count
; i
++) {
839 int32 n1
= (int32
)MIN(len
, (OFF_T
)sum
.blength
);
840 char *map
= map_ptr(mapbuf
, offset
, n1
);
841 char sum2
[SUM_LENGTH
];
848 full_write(f_copy
, map
, n1
);
853 sum1
= get_checksum1(map
, n1
);
854 get_checksum2(map
, n1
, sum2
);
858 "chunk[%.0f] offset=%.0f len=%ld sum1=%08lx\n",
859 (double)i
, (double)offset
- n1
, (long)n1
,
860 (unsigned long)sum1
);
862 write_int(f_out
, sum1
);
863 write_buf(f_out
, sum2
, sum
.s2length
);
873 /* Try to find a filename in the same dir as "fname" with a similar name. */
874 static int find_fuzzy(struct file_struct
*file
, struct file_list
*dirlist
)
876 int fname_len
, fname_suf_len
;
877 const char *fname_suf
, *fname
= file
->basename
;
878 uint32 lowest_dist
= 25 << 16; /* ignore a distance greater than 25 */
879 int j
, lowest_j
= -1;
881 fname_len
= strlen(fname
);
882 fname_suf
= find_filename_suffix(fname
, fname_len
, &fname_suf_len
);
884 for (j
= 0; j
< dirlist
->used
; j
++) {
885 struct file_struct
*fp
= dirlist
->files
[j
];
886 const char *suf
, *name
;
890 if (!S_ISREG(fp
->mode
) || !F_LENGTH(fp
)
891 || fp
->flags
& FLAG_FILE_SENT
)
896 if (F_LENGTH(fp
) == F_LENGTH(file
)
897 && cmp_time(fp
->modtime
, file
->modtime
) == 0) {
900 "fuzzy size/modtime match for %s\n",
907 suf
= find_filename_suffix(name
, len
, &suf_len
);
909 dist
= fuzzy_distance(name
, len
, fname
, fname_len
);
910 /* Add some extra weight to how well the suffixes match. */
911 dist
+= fuzzy_distance(suf
, suf_len
, fname_suf
, fname_suf_len
)
914 rprintf(FINFO
, "fuzzy distance for %s = %d.%05d\n",
915 name
, (int)(dist
>>16), (int)(dist
&0xFFFF));
917 if (dist
<= lowest_dist
) {
926 /* Copy a file found in our --copy-dest handling. */
927 static int copy_altdest_file(const char *src
, const char *dest
, struct file_struct
*file
)
929 char buf
[MAXPATHLEN
];
930 const char *copy_to
, *partialptr
;
931 int save_preserve_xattrs
= preserve_xattrs
;
935 /* Let copy_file open the destination in place. */
939 fd_w
= open_tmpfile(buf
, dest
, file
);
944 cleanup_set(copy_to
, NULL
, NULL
, -1, -1);
945 if (copy_file(src
, copy_to
, fd_w
, file
->mode
, 0) < 0) {
947 rsyserr(FINFO
, errno
, "copy_file %s => %s",
948 full_fname(src
), copy_to
);
950 /* Try to clean up. */
955 partialptr
= partial_dir
? partial_dir_fname(dest
) : NULL
;
956 preserve_xattrs
= 0; /* xattrs were copied with file */
957 ok
= finish_transfer(dest
, copy_to
, src
, partialptr
, file
, 1, 0);
958 preserve_xattrs
= save_preserve_xattrs
;
963 /* This is only called for regular files. We return -2 if we've finished
964 * handling the file, -1 if no dest-linking occurred, or a non-negative
965 * value if we found an alternate basis file. */
966 static int try_dests_reg(struct file_struct
*file
, char *fname
, int ndx
,
967 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
975 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
976 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0 || !S_ISREG(sxp
->st
.st_mode
))
978 switch (match_level
) {
984 if (!unchanged_file(cmpbuf
, file
, &sxp
->st
))
990 if (!unchanged_attrs(cmpbuf
, file
, sxp
))
997 } while (basis_dir
[++j
] != NULL
);
1002 if (j
!= best_match
) {
1004 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1005 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1009 if (match_level
== 3 && !copy_dest
) {
1010 #ifdef SUPPORT_HARD_LINKS
1012 if (!hard_link_one(file
, fname
, cmpbuf
, 1))
1014 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1015 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, j
);
1016 if (!maybe_ATTRS_REPORT
&& (verbose
> 1 || stdout_format_has_i
> 1)) {
1017 itemize(cmpbuf
, file
, ndx
, 1, sxp
,
1018 ITEM_LOCAL_CHANGE
| ITEM_XNAME_FOLLOWS
,
1024 itemize(cmpbuf
, file
, ndx
, 0, sxp
, 0, 0, NULL
);
1025 if (verbose
> 1 && maybe_ATTRS_REPORT
)
1026 rprintf(FCLIENT
, "%s is uptodate\n", fname
);
1030 if (match_level
>= 2) {
1031 #ifdef SUPPORT_HARD_LINKS
1032 try_a_copy
: /* Copy the file locally. */
1034 if (!dry_run
&& copy_altdest_file(cmpbuf
, fname
, file
) < 0)
1037 itemize(cmpbuf
, file
, ndx
, 0, sxp
, ITEM_LOCAL_CHANGE
, 0, NULL
);
1038 if (maybe_ATTRS_REPORT
1039 && ((!itemizing
&& verbose
&& match_level
== 2)
1040 || (verbose
> 1 && match_level
== 3))) {
1041 code
= match_level
== 3 ? FCLIENT
: FINFO
;
1042 rprintf(code
, "%s%s\n", fname
,
1043 match_level
== 3 ? " is uptodate" : "");
1045 #ifdef SUPPORT_HARD_LINKS
1046 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1047 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, -1);
1052 return FNAMECMP_BASIS_DIR_LOW
+ j
;
1055 /* This is only called for non-regular files. We return -2 if we've finished
1056 * handling the file, or -1 if no dest-linking occurred, or a non-negative
1057 * value if we found an alternate basis file. */
1058 static int try_dests_non(struct file_struct
*file
, char *fname
, int ndx
,
1059 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
1062 char lnk
[MAXPATHLEN
];
1063 int best_match
= -1;
1064 int match_level
= 0;
1065 enum nonregtype type
;
1069 #ifndef SUPPORT_LINKS
1070 if (S_ISLNK(file
->mode
))
1073 if (S_ISDIR(file
->mode
)) {
1075 } else if (IS_SPECIAL(file
->mode
))
1076 type
= TYPE_SPECIAL
;
1077 else if (IS_DEVICE(file
->mode
))
1079 #ifdef SUPPORT_LINKS
1080 else if (S_ISLNK(file
->mode
))
1081 type
= TYPE_SYMLINK
;
1085 "internal: try_dests_non() called with invalid mode (%o)\n",
1087 exit_cleanup(RERR_UNSUPPORTED
);
1091 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1092 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1096 if (!S_ISDIR(sxp
->st
.st_mode
))
1100 if (!IS_SPECIAL(sxp
->st
.st_mode
))
1104 if (!IS_DEVICE(sxp
->st
.st_mode
))
1107 #ifdef SUPPORT_LINKS
1109 if (!S_ISLNK(sxp
->st
.st_mode
))
1114 if (match_level
< 1) {
1123 devp
= F_RDEV_P(file
);
1124 if (sxp
->st
.st_rdev
!= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
)))
1127 #ifdef SUPPORT_LINKS
1129 if ((len
= readlink(cmpbuf
, lnk
, MAXPATHLEN
-1)) <= 0)
1132 if (strcmp(lnk
, F_SYMLINK(file
)) != 0)
1137 if (match_level
< 2) {
1141 if (unchanged_attrs(cmpbuf
, file
, sxp
)) {
1146 } while (basis_dir
[++j
] != NULL
);
1151 if (j
!= best_match
) {
1153 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1154 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1158 if (match_level
== 3) {
1159 #ifdef SUPPORT_HARD_LINKS
1161 #ifndef CAN_HARDLINK_SYMLINK
1162 && !S_ISLNK(file
->mode
)
1164 #ifndef CAN_HARDLINK_SPECIAL
1165 && !IS_SPECIAL(file
->mode
) && !IS_DEVICE(file
->mode
)
1167 && !S_ISDIR(file
->mode
)) {
1168 if (do_link(cmpbuf
, fname
) < 0) {
1169 rsyserr(FERROR_XFER
, errno
,
1170 "failed to hard-link %s with %s",
1174 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1175 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1179 if (itemizing
&& stdout_format_has_i
1180 && (verbose
> 1 || stdout_format_has_i
> 1)) {
1181 int chg
= compare_dest
&& type
!= TYPE_DIR
? 0
1182 : ITEM_LOCAL_CHANGE
+ (match_level
== 3 ? ITEM_XNAME_FOLLOWS
: 0);
1183 char *lp
= match_level
== 3 ? "" : NULL
;
1184 itemize(cmpbuf
, file
, ndx
, 0, sxp
, chg
+ ITEM_MATCHED
, 0, lp
);
1186 if (verbose
> 1 && maybe_ATTRS_REPORT
) {
1187 rprintf(FCLIENT
, "%s%s is uptodate\n",
1188 fname
, type
== TYPE_DIR
? "/" : "");
1196 static void list_file_entry(struct file_struct
*f
)
1198 char permbuf
[PERMSTRING_SIZE
];
1201 if (!F_IS_ACTIVE(f
)) {
1202 /* this can happen if duplicate names were removed */
1206 permstring(permbuf
, f
->mode
);
1209 /* TODO: indicate '+' if the entry has an ACL. */
1211 #ifdef SUPPORT_LINKS
1212 if (preserve_links
&& S_ISLNK(f
->mode
)) {
1213 rprintf(FINFO
, "%s %11.0f %s %s -> %s\n",
1214 permbuf
, len
, timestring(f
->modtime
),
1215 f_name(f
, NULL
), F_SYMLINK(f
));
1219 rprintf(FINFO
, "%s %11.0f %s %s\n",
1220 permbuf
, len
, timestring(f
->modtime
),
1225 static int phase
= 0;
1226 static int dflt_perms
;
1228 static int implied_dirs_are_missing
;
1229 /* Helper for recv_generator's skip_dir and dry_missing_dir tests. */
1230 static BOOL
is_below(struct file_struct
*file
, struct file_struct
*subtree
)
1232 return F_DEPTH(file
) > F_DEPTH(subtree
)
1233 && (!implied_dirs_are_missing
|| f_name_has_prefix(file
, subtree
));
1236 /* Acts on the indicated item in cur_flist whose name is fname. If a dir,
1237 * make sure it exists, and has the right permissions/timestamp info. For
1238 * all other non-regular files (symlinks, etc.) we create them here. For
1239 * regular files that have changed, we try to find a basis file and then
1240 * start sending checksums. The ndx is the file's unique index value.
1242 * The fname parameter must point to a MAXPATHLEN buffer! (e.g it gets
1243 * passed to delete_item(), which can use it during a recursive delete.)
1245 * Note that f_out is set to -1 when doing final directory-permission and
1246 * modification-time repair. */
1247 static void recv_generator(char *fname
, struct file_struct
*file
, int ndx
,
1248 int itemizing
, enum logcode code
, int f_out
)
1250 static const char *parent_dirname
= "";
1251 /* Missing dir not created due to --dry-run; will still be scanned. */
1252 static struct file_struct
*dry_missing_dir
= NULL
;
1253 /* Missing dir whose contents are skipped altogether due to
1254 * --ignore-non-existing, daemon exclude, or mkdir failure. */
1255 static struct file_struct
*skip_dir
= NULL
;
1256 static struct file_list
*fuzzy_dirlist
= NULL
;
1257 static int need_fuzzy_dirlist
= 0;
1258 struct file_struct
*fuzzy_file
= NULL
;
1259 int fd
= -1, f_copy
= -1;
1261 STRUCT_STAT partial_st
;
1262 struct file_struct
*back_file
= NULL
;
1263 int statret
, real_ret
, stat_errno
;
1264 char *fnamecmp
, *partialptr
, *backupptr
= NULL
;
1265 char fnamecmpbuf
[MAXPATHLEN
];
1266 uchar fnamecmp_type
;
1267 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1268 int is_dir
= !S_ISDIR(file
->mode
) ? 0
1269 : inc_recurse
&& ndx
!= cur_flist
->ndx_start
- 1 ? -1
1273 rprintf(FINFO
, "recv_generator(%s,%d)\n", fname
, ndx
);
1277 || (is_dir
&& !implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
1279 list_file_entry(file
);
1284 if (is_below(file
, skip_dir
)) {
1286 file
->flags
|= FLAG_MISSING_DIR
;
1287 #ifdef SUPPORT_HARD_LINKS
1288 else if (F_IS_HLINKED(file
))
1289 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1296 if (daemon_filter_list
.head
&& (*fname
!= '.' || fname
[1])) {
1297 if (check_filter(&daemon_filter_list
, FLOG
, fname
, is_dir
) < 0) {
1300 #ifdef SUPPORT_HARD_LINKS
1301 if (F_IS_HLINKED(file
))
1302 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1304 rprintf(FERROR_XFER
,
1305 "skipping daemon-excluded %s \"%s\"\n",
1306 is_dir
? "directory" : "file", fname
);
1308 goto skipping_dir_contents
;
1314 sx
.acc_acl
= sx
.def_acl
= NULL
;
1316 #ifdef SUPPORT_XATTRS
1319 if (dry_run
> 1 || (dry_missing_dir
&& is_below(file
, dry_missing_dir
))) {
1320 parent_is_dry_missing
:
1321 if (fuzzy_dirlist
) {
1322 flist_free(fuzzy_dirlist
);
1323 fuzzy_dirlist
= NULL
;
1325 parent_dirname
= "";
1327 stat_errno
= ENOENT
;
1329 const char *dn
= file
->dirname
? file
->dirname
: ".";
1330 dry_missing_dir
= NULL
;
1331 if (parent_dirname
!= dn
&& strcmp(parent_dirname
, dn
) != 0) {
1332 if (relative_paths
&& !implied_dirs
1333 && do_stat(dn
, &sx
.st
) < 0) {
1335 goto parent_is_dry_missing
;
1336 if (create_directory_path(fname
) < 0) {
1337 rsyserr(FERROR_XFER
, errno
,
1338 "recv_generator: mkdir %s failed",
1342 if (fuzzy_dirlist
) {
1343 flist_free(fuzzy_dirlist
);
1344 fuzzy_dirlist
= NULL
;
1347 need_fuzzy_dirlist
= 1;
1349 if (!preserve_perms
)
1350 dflt_perms
= default_perms_for_dir(dn
);
1353 parent_dirname
= dn
;
1355 if (need_fuzzy_dirlist
&& S_ISREG(file
->mode
)) {
1356 strlcpy(fnamecmpbuf
, dn
, sizeof fnamecmpbuf
);
1357 fuzzy_dirlist
= get_dirlist(fnamecmpbuf
, -1, 1);
1358 need_fuzzy_dirlist
= 0;
1361 statret
= link_stat(fname
, &sx
.st
, keep_dirlinks
&& is_dir
);
1365 if (ignore_non_existing
> 0 && statret
== -1 && stat_errno
== ENOENT
) {
1370 file
->flags
|= FLAG_MISSING_DIR
;
1372 #ifdef SUPPORT_HARD_LINKS
1373 else if (F_IS_HLINKED(file
))
1374 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1377 rprintf(FINFO
, "not creating new %s \"%s\"\n",
1378 is_dir
? "directory" : "file", fname
);
1383 if (statret
== 0 && !(sx
.st
.st_mode
& S_IWUSR
)
1384 && !am_root
&& sx
.st
.st_uid
== our_uid
)
1385 del_opts
|= DEL_NO_UID_WRITE
;
1387 if (ignore_existing
> 0 && statret
== 0
1388 && (!is_dir
|| !S_ISDIR(sx
.st
.st_mode
))) {
1389 if (verbose
> 1 && is_dir
>= 0)
1390 rprintf(FINFO
, "%s exists\n", fname
);
1391 #ifdef SUPPORT_HARD_LINKS
1392 if (F_IS_HLINKED(file
))
1393 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1399 if (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
)
1402 /* In inc_recurse mode we want to make sure any missing
1403 * directories get created while we're still processing
1404 * the parent dir (which allows us to touch the parent
1405 * dir's mtime right away). We will handle the dir in
1406 * full later (right before we handle its contents). */
1408 && (S_ISDIR(sx
.st
.st_mode
)
1409 || delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0))
1410 goto cleanup
; /* Any errors get reported later. */
1411 if (do_mkdir(fname
, file
->mode
& 0700) == 0)
1412 file
->flags
|= FLAG_DIR_CREATED
;
1415 /* The file to be received is a directory, so we need
1416 * to prepare appropriately. If there is already a
1417 * file of that name and it is *not* a directory, then
1418 * we need to delete it. If it doesn't exist, then
1419 * (perhaps recursively) create it. */
1420 if (statret
== 0 && !S_ISDIR(sx
.st
.st_mode
)) {
1421 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0)
1422 goto skipping_dir_contents
;
1425 if (dry_run
&& statret
!= 0) {
1426 if (!dry_missing_dir
)
1427 dry_missing_dir
= file
;
1428 file
->flags
|= FLAG_MISSING_DIR
;
1432 if (file
->flags
& FLAG_DIR_CREATED
)
1434 if (!preserve_perms
) { /* See comment in non-dir code below. */
1435 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
,
1436 dflt_perms
, statret
== 0);
1438 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1439 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1447 if (itemizing
&& f_out
!= -1) {
1448 itemize(fname
, file
, ndx
, statret
, &sx
,
1449 statret
? ITEM_LOCAL_CHANGE
: 0, 0, NULL
);
1451 if (real_ret
!= 0 && do_mkdir(fname
,file
->mode
) < 0 && errno
!= EEXIST
) {
1452 if (!relative_paths
|| errno
!= ENOENT
1453 || create_directory_path(fname
) < 0
1454 || (do_mkdir(fname
, file
->mode
) < 0 && errno
!= EEXIST
)) {
1455 rsyserr(FERROR_XFER
, errno
,
1456 "recv_generator: mkdir %s failed",
1458 skipping_dir_contents
:
1460 "*** Skipping any contents from this failed directory ***\n");
1462 file
->flags
|= FLAG_MISSING_DIR
;
1466 if (set_file_attrs(fname
, file
, real_ret
? NULL
: &real_sx
, NULL
, 0)
1467 && verbose
&& code
!= FNONE
&& f_out
!= -1)
1468 rprintf(code
, "%s/\n", fname
);
1470 /* We need to ensure that the dirs in the transfer have writable
1471 * permissions during the time we are putting files within them.
1472 * This is then fixed after the transfer is done. */
1474 if (!am_root
&& !(file
->mode
& S_IWUSR
) && dir_tweaking
) {
1475 mode_t mode
= file
->mode
| S_IWUSR
;
1476 if (do_chmod(fname
, mode
) < 0) {
1477 rsyserr(FERROR_XFER
, errno
,
1478 "failed to modify permissions on %s",
1481 need_retouch_dir_perms
= 1;
1485 if (real_ret
!= 0 && one_file_system
)
1486 real_sx
.st
.st_dev
= filesystem_dev
;
1488 if (one_file_system
) {
1489 uint32
*devp
= F_DIR_DEV_P(file
);
1490 DEV_MAJOR(devp
) = major(real_sx
.st
.st_dev
);
1491 DEV_MINOR(devp
) = minor(real_sx
.st
.st_dev
);
1494 else if (delete_during
&& f_out
!= -1 && !phase
1495 && !(file
->flags
& FLAG_MISSING_DIR
)) {
1496 if (file
->flags
& FLAG_CONTENT_DIR
)
1497 delete_in_dir(fname
, file
, &real_sx
.st
.st_dev
);
1499 change_local_filter_dir(fname
, strlen(fname
), F_DEPTH(file
));
1504 /* If we're not preserving permissions, change the file-list's
1505 * mode based on the local permissions and some heuristics. */
1506 if (!preserve_perms
) {
1507 int exists
= statret
== 0 && !S_ISDIR(sx
.st
.st_mode
);
1508 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
, dflt_perms
,
1512 #ifdef SUPPORT_HARD_LINKS
1513 if (preserve_hard_links
&& F_HLINK_NOT_FIRST(file
)
1514 && hard_link_check(file
, ndx
, fname
, statret
, &sx
, itemizing
, code
))
1518 if (preserve_links
&& S_ISLNK(file
->mode
)) {
1519 #ifdef SUPPORT_LINKS
1520 const char *sl
= F_SYMLINK(file
);
1521 if (safe_symlinks
&& unsafe_symlink(sl
, fname
)) {
1524 fname
= f_name(file
, NULL
);
1526 "ignoring unsafe symlink %s -> \"%s\"\n",
1527 full_fname(fname
), sl
);
1532 char lnk
[MAXPATHLEN
];
1535 if (!S_ISLNK(sx
.st
.st_mode
))
1537 else if ((len
= readlink(fname
, lnk
, MAXPATHLEN
-1)) > 0
1538 && strncmp(lnk
, sl
, len
) == 0 && sl
[len
] == '\0') {
1539 /* The link is pointing to the right place. */
1540 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1542 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1543 #if defined SUPPORT_HARD_LINKS && defined CAN_HARDLINK_SYMLINK
1544 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1545 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1547 if (remove_source_files
== 1)
1548 goto return_with_success
;
1551 /* Not the right symlink (or not a symlink), so
1553 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_SYMLINK
) != 0)
1555 } else if (basis_dir
[0] != NULL
) {
1556 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1559 #ifndef CAN_HARDLINK_SYMLINK
1561 /* Resort to --copy-dest behavior. */
1571 #ifdef SUPPORT_HARD_LINKS
1572 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1573 cur_flist
->in_progress
++;
1577 if (do_symlink(sl
, fname
) != 0) {
1578 rsyserr(FERROR_XFER
, errno
, "symlink %s -> \"%s\" failed",
1579 full_fname(fname
), sl
);
1581 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1583 itemize(fname
, file
, ndx
, statret
, &sx
,
1584 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1586 if (code
!= FNONE
&& verbose
)
1587 rprintf(code
, "%s -> %s\n", fname
, sl
);
1588 #ifdef SUPPORT_HARD_LINKS
1589 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1590 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1592 /* This does not check remove_source_files == 1
1593 * because this is one of the items that the old
1594 * --remove-sent-files option would remove. */
1595 if (remove_source_files
)
1596 goto return_with_success
;
1602 if ((am_root
&& preserve_devices
&& IS_DEVICE(file
->mode
))
1603 || (preserve_specials
&& IS_SPECIAL(file
->mode
))) {
1604 uint32
*devp
= F_RDEV_P(file
);
1605 dev_t rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
1608 if (IS_DEVICE(file
->mode
)) {
1609 if (!IS_DEVICE(sx
.st
.st_mode
))
1611 del_for_flag
= DEL_FOR_DEVICE
;
1613 if (!IS_SPECIAL(sx
.st
.st_mode
))
1615 del_for_flag
= DEL_FOR_SPECIAL
;
1618 && BITS_EQUAL(sx
.st
.st_mode
, file
->mode
, _S_IFMT
)
1619 && sx
.st
.st_rdev
== rdev
) {
1620 /* The device or special file is identical. */
1621 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1623 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1624 #ifdef SUPPORT_HARD_LINKS
1625 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1626 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1628 if (remove_source_files
== 1)
1629 goto return_with_success
;
1632 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| del_for_flag
) != 0)
1634 } else if (basis_dir
[0] != NULL
) {
1635 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1638 #ifndef CAN_HARDLINK_SPECIAL
1640 /* Resort to --copy-dest behavior. */
1650 #ifdef SUPPORT_HARD_LINKS
1651 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1652 cur_flist
->in_progress
++;
1657 rprintf(FINFO
, "mknod(%s, 0%o, [%ld,%ld])\n",
1658 fname
, (int)file
->mode
,
1659 (long)major(rdev
), (long)minor(rdev
));
1661 if (do_mknod(fname
, file
->mode
, rdev
) < 0) {
1662 rsyserr(FERROR_XFER
, errno
, "mknod %s failed",
1665 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1667 itemize(fname
, file
, ndx
, statret
, &sx
,
1668 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1670 if (code
!= FNONE
&& verbose
)
1671 rprintf(code
, "%s\n", fname
);
1672 #ifdef SUPPORT_HARD_LINKS
1673 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1674 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1676 if (remove_source_files
== 1)
1677 goto return_with_success
;
1682 if (!S_ISREG(file
->mode
)) {
1684 fname
= f_name(file
, NULL
);
1685 rprintf(FINFO
, "skipping non-regular file \"%s\"\n", fname
);
1689 if (max_size
> 0 && F_LENGTH(file
) > max_size
) {
1692 fname
= f_name(file
, NULL
);
1693 rprintf(FINFO
, "%s is over max-size\n", fname
);
1697 if (min_size
> 0 && F_LENGTH(file
) < min_size
) {
1700 fname
= f_name(file
, NULL
);
1701 rprintf(FINFO
, "%s is under min-size\n", fname
);
1706 if (update_only
> 0 && statret
== 0
1707 && cmp_time(sx
.st
.st_mtime
, file
->modtime
) > 0) {
1709 rprintf(FINFO
, "%s is newer\n", fname
);
1710 #ifdef SUPPORT_HARD_LINKS
1711 if (F_IS_HLINKED(file
))
1712 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1718 fnamecmp_type
= FNAMECMP_FNAME
;
1720 if (statret
== 0 && !S_ISREG(sx
.st
.st_mode
)) {
1721 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_FILE
) != 0)
1724 stat_errno
= ENOENT
;
1727 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1728 int j
= try_dests_reg(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1731 if (remove_source_files
== 1)
1732 goto return_with_success
;
1736 fnamecmp
= fnamecmpbuf
;
1745 if (partial_dir
&& (partialptr
= partial_dir_fname(fname
)) != NULL
1746 && link_stat(partialptr
, &partial_st
, 0) == 0
1747 && S_ISREG(partial_st
.st_mode
)) {
1749 goto prepare_to_open
;
1753 if (statret
!= 0 && fuzzy_dirlist
) {
1754 int j
= find_fuzzy(file
, fuzzy_dirlist
);
1756 fuzzy_file
= fuzzy_dirlist
->files
[j
];
1757 f_name(fuzzy_file
, fnamecmpbuf
);
1759 rprintf(FINFO
, "fuzzy basis selected for %s: %s\n",
1760 fname
, fnamecmpbuf
);
1762 sx
.st
.st_size
= F_LENGTH(fuzzy_file
);
1764 fnamecmp
= fnamecmpbuf
;
1765 fnamecmp_type
= FNAMECMP_FUZZY
;
1770 #ifdef SUPPORT_HARD_LINKS
1771 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1772 cur_flist
->in_progress
++;
1776 if (stat_errno
== ENOENT
)
1778 rsyserr(FERROR_XFER
, stat_errno
, "recv_generator: failed to stat %s",
1783 if (fnamecmp_type
<= FNAMECMP_BASIS_DIR_HIGH
)
1785 else if (fnamecmp_type
== FNAMECMP_FUZZY
)
1787 else if (unchanged_file(fnamecmp
, file
, &sx
.st
)) {
1789 do_unlink(partialptr
);
1790 handle_partial_dir(partialptr
, PDIR_DELETE
);
1792 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1794 itemize(fnamecmp
, file
, ndx
, statret
, &sx
, 0, 0, NULL
);
1795 #ifdef SUPPORT_HARD_LINKS
1796 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1797 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1799 if (remove_source_files
!= 1)
1801 return_with_success
:
1803 send_msg_int(MSG_SUCCESS
, ndx
);
1807 if (append_mode
> 0 && sx
.st
.st_size
>= F_LENGTH(file
)) {
1808 #ifdef SUPPORT_HARD_LINKS
1809 if (F_IS_HLINKED(file
))
1810 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1818 fnamecmp
= partialptr
;
1819 fnamecmp_type
= FNAMECMP_PARTIAL_DIR
;
1826 if (read_batch
|| whole_file
) {
1827 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1828 if (!(backupptr
= get_backup_name(fname
)))
1830 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
)))
1831 goto pretend_missing
;
1832 if (copy_file(fname
, backupptr
, -1, back_file
->mode
, 1) < 0) {
1833 unmake_file(back_file
);
1841 if (fuzzy_dirlist
) {
1842 int j
= flist_find(fuzzy_dirlist
, file
);
1843 if (j
>= 0) /* don't use changing file as future fuzzy basis */
1844 fuzzy_dirlist
->files
[j
]->flags
|= FLAG_FILE_SENT
;
1848 if ((fd
= do_open(fnamecmp
, O_RDONLY
, 0)) < 0) {
1849 rsyserr(FERROR
, errno
, "failed to open %s, continuing",
1850 full_fname(fnamecmp
));
1852 /* pretend the file didn't exist */
1853 #ifdef SUPPORT_HARD_LINKS
1854 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1855 cur_flist
->in_progress
++;
1859 statret
= real_ret
= -1;
1863 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1864 if (!(backupptr
= get_backup_name(fname
))) {
1868 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
))) {
1870 goto pretend_missing
;
1872 if (robust_unlink(backupptr
) && errno
!= ENOENT
) {
1873 rsyserr(FERROR_XFER
, errno
, "unlink %s",
1874 full_fname(backupptr
));
1875 unmake_file(back_file
);
1880 if ((f_copy
= do_open(backupptr
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, 0600)) < 0) {
1881 int save_errno
= errno
? errno
: EINVAL
; /* 0 paranoia */
1882 if (errno
== ENOENT
&& make_bak_dir(backupptr
) == 0) {
1883 if ((f_copy
= do_open(backupptr
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, 0600)) < 0)
1884 save_errno
= errno
? errno
: save_errno
;
1889 rsyserr(FERROR_XFER
, save_errno
, "open %s", full_fname(backupptr
));
1890 unmake_file(back_file
);
1896 fnamecmp_type
= FNAMECMP_BACKUP
;
1900 rprintf(FINFO
, "gen mapped %s of size %.0f\n",
1901 fnamecmp
, (double)sx
.st
.st_size
);
1905 rprintf(FINFO
, "generating and sending sums for %d\n", ndx
);
1908 if (remove_source_files
&& !delay_updates
&& !phase
&& !dry_run
)
1909 increment_active_files(ndx
, itemizing
, code
);
1910 if (inc_recurse
&& !dry_run
)
1911 cur_flist
->in_progress
++;
1912 #ifdef SUPPORT_HARD_LINKS
1913 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1914 file
->flags
|= FLAG_FILE_SENT
;
1916 write_ndx(f_out
, ndx
);
1918 int iflags
= ITEM_TRANSFER
;
1919 if (always_checksum
> 0)
1920 iflags
|= ITEM_REPORT_CHANGE
;
1921 if (fnamecmp_type
!= FNAMECMP_FNAME
)
1922 iflags
|= ITEM_BASIS_TYPE_FOLLOWS
;
1923 if (fnamecmp_type
== FNAMECMP_FUZZY
)
1924 iflags
|= ITEM_XNAME_FOLLOWS
;
1925 itemize(fnamecmp
, file
, -1, real_ret
, &real_sx
, iflags
, fnamecmp_type
,
1926 fuzzy_file
? fuzzy_file
->basename
: NULL
);
1931 #ifdef SUPPORT_XATTRS
1932 if (preserve_xattrs
)
1933 free_xattr(&real_sx
);
1938 #ifdef SUPPORT_HARD_LINKS
1939 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1940 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1947 if (statret
!= 0 || whole_file
|| sx
.st
.st_size
<= 0)
1948 write_sum_head(f_out
, NULL
);
1950 if (generate_and_send_sums(fd
, sx
.st
.st_size
, f_out
, f_copy
) < 0) {
1952 "WARNING: file is too large for checksum sending: %s\n",
1954 write_sum_head(f_out
, NULL
);
1961 int save_preserve_xattrs
= preserve_xattrs
;
1964 #ifdef SUPPORT_XATTRS
1965 if (preserve_xattrs
) {
1966 copy_xattrs(fname
, backupptr
);
1967 preserve_xattrs
= 0;
1970 set_file_attrs(backupptr
, back_file
, NULL
, NULL
, 0);
1971 preserve_xattrs
= save_preserve_xattrs
;
1973 rprintf(FINFO
, "backed up %s to %s\n",
1976 unmake_file(back_file
);
1983 #ifdef SUPPORT_XATTRS
1984 if (preserve_xattrs
)
1990 #ifdef SUPPORT_HARD_LINKS
1991 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
1992 enum logcode code
, int f_out
)
1994 char fbuf
[MAXPATHLEN
];
1996 struct file_list
*save_flist
= cur_flist
;
1998 /* If we skip the last item in a chain of links and there was a
1999 * prior non-skipped hard-link waiting to finish, finish it now. */
2000 if ((new_last_ndx
= skip_hard_link(file
, &cur_flist
)) < 0)
2003 file
= cur_flist
->files
[new_last_ndx
- cur_flist
->ndx_start
];
2004 cur_flist
->in_progress
--; /* undo prior increment */
2006 recv_generator(fbuf
, file
, new_last_ndx
, itemizing
, code
, f_out
);
2008 cur_flist
= save_flist
;
2012 static void touch_up_dirs(struct file_list
*flist
, int ndx
)
2014 static int counter
= 0;
2015 struct file_struct
*file
;
2021 end
= flist
->used
- 1;
2025 /* Fix any directory permissions that were modified during the
2026 * transfer and/or re-set any tweaked modified-time values. */
2027 for (i
= start
; i
<= end
; i
++, counter
++) {
2028 file
= flist
->files
[i
];
2029 if (!S_ISDIR(file
->mode
)
2030 || (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
2033 fname
= f_name(file
, NULL
);
2034 rprintf(FINFO
, "touch_up_dirs: %s (%d)\n",
2037 if (!F_IS_ACTIVE(file
) || file
->flags
& FLAG_MISSING_DIR
2038 || (!need_retouch_dir_times
&& file
->mode
& S_IWUSR
))
2040 fname
= f_name(file
, NULL
);
2041 if (!(file
->mode
& S_IWUSR
))
2042 do_chmod(fname
, file
->mode
);
2043 if (need_retouch_dir_times
) {
2045 if (link_stat(fname
, &st
, 0) == 0
2046 && cmp_time(st
.st_mtime
, file
->modtime
) != 0)
2047 set_modtime(fname
, file
->modtime
, file
->mode
);
2049 if (allowed_lull
&& !(counter
% lull_mod
))
2050 maybe_send_keepalive();
2051 else if (!(counter
& 0xFF))
2052 maybe_flush_socket(0);
2056 void check_for_finished_files(int itemizing
, enum logcode code
, int check_redo
)
2058 struct file_struct
*file
;
2059 struct file_list
*flist
;
2060 char fbuf
[MAXPATHLEN
];
2064 #ifdef SUPPORT_HARD_LINKS
2065 if (preserve_hard_links
&& (ndx
= get_hlink_num()) != -1) {
2066 flist
= flist_for_ndx(ndx
);
2067 assert(flist
!= NULL
);
2068 file
= flist
->files
[ndx
- flist
->ndx_start
];
2069 assert(file
->flags
& FLAG_HLINKED
);
2070 finish_hard_link(file
, f_name(file
, fbuf
), ndx
, NULL
, itemizing
, code
, -1);
2071 flist
->in_progress
--;
2076 if (check_redo
&& (ndx
= get_redo_num()) != -1) {
2077 csum_length
= SUM_LENGTH
;
2078 max_size
= -max_size
;
2079 min_size
= -min_size
;
2080 ignore_existing
= -ignore_existing
;
2081 ignore_non_existing
= -ignore_non_existing
;
2082 update_only
= -update_only
;
2083 always_checksum
= -always_checksum
;
2084 size_only
= -size_only
;
2085 append_mode
= -append_mode
;
2086 make_backups
= -make_backups
; /* avoid dup backup w/inplace */
2090 cur_flist
= flist_for_ndx(ndx
);
2092 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
2094 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2097 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, sock_f_out
);
2098 cur_flist
->to_redo
--;
2102 csum_length
= SHORT_SUM_LENGTH
;
2103 max_size
= -max_size
;
2104 min_size
= -min_size
;
2105 ignore_existing
= -ignore_existing
;
2106 ignore_non_existing
= -ignore_non_existing
;
2107 update_only
= -update_only
;
2108 always_checksum
= -always_checksum
;
2109 size_only
= -size_only
;
2110 append_mode
= -append_mode
;
2111 make_backups
= -make_backups
;
2116 if (cur_flist
== first_flist
)
2119 /* We only get here if inc_recurse is enabled. */
2120 if (first_flist
->in_progress
|| first_flist
->to_redo
)
2124 write_ndx(sock_f_out
, NDX_DONE
);
2125 maybe_flush_socket(1);
2128 if (delete_during
== 2 || !dir_tweaking
) {
2129 /* Skip directory touch-up. */
2130 } else if (first_flist
->parent_ndx
>= 0)
2131 touch_up_dirs(dir_flist
, first_flist
->parent_ndx
);
2133 flist_free(first_flist
); /* updates first_flist */
2137 void generate_files(int f_out
, const char *local_name
)
2140 char fbuf
[MAXPATHLEN
];
2143 int save_do_progress
= do_progress
;
2145 if (protocol_version
>= 29) {
2147 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2148 code
= logfile_format_has_i
? FNONE
: FLOG
;
2149 } else if (am_daemon
) {
2150 itemizing
= logfile_format_has_i
&& do_xfers
;
2151 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2152 code
= itemizing
|| !do_xfers
? FCLIENT
: FINFO
;
2153 } else if (!am_server
) {
2154 itemizing
= stdout_format_has_i
;
2155 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2156 code
= itemizing
? FNONE
: FINFO
;
2159 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2162 solo_file
= local_name
;
2163 dir_tweaking
= !(list_only
|| solo_file
|| dry_run
);
2164 need_retouch_dir_times
= preserve_times
> 1;
2165 lull_mod
= allowed_lull
* 5;
2166 symlink_timeset_failed_flags
= ITEM_REPORT_TIME
2167 | (protocol_version
>= 30 || !am_server
? ITEM_REPORT_TIMEFAIL
: 0);
2168 implied_dirs_are_missing
= relative_paths
&& !implied_dirs
&& protocol_version
< 30;
2171 rprintf(FINFO
, "generator starting pid=%ld\n", (long)getpid());
2173 if (delete_before
&& !solo_file
&& cur_flist
->used
> 0)
2175 if (delete_during
== 2) {
2176 deldelay_size
= BIGPATHBUFLEN
* 4;
2177 deldelay_buf
= new_array(char, deldelay_size
);
2179 out_of_memory("delete-delay");
2183 if (append_mode
> 0 || whole_file
< 0)
2186 rprintf(FINFO
, "delta-transmission %s\n",
2188 ? "disabled for local transfer or --whole-file"
2192 /* Since we often fill up the outgoing socket and then just sit around
2193 * waiting for the other 2 processes to do their thing, we don't want
2194 * to exit on a timeout. If the data stops flowing, the receiver will
2195 * notice that and let us know via the redo pipe (or its closing). */
2198 dflt_perms
= (ACCESSPERMS
& ~orig_umask
);
2201 #ifdef SUPPORT_HARD_LINKS
2202 if (preserve_hard_links
&& inc_recurse
) {
2203 while (!flist_eof
&& file_total
< FILECNT_LOOKAHEAD
/2)
2204 wait_for_receiver();
2208 if (inc_recurse
&& cur_flist
->parent_ndx
>= 0) {
2209 struct file_struct
*fp
= dir_flist
->files
[cur_flist
->parent_ndx
];
2211 ndx
= cur_flist
->ndx_start
- 1;
2212 recv_generator(fbuf
, fp
, ndx
, itemizing
, code
, f_out
);
2213 if (delete_during
&& dry_run
< 2 && !list_only
2214 && !(fp
->flags
& FLAG_MISSING_DIR
)) {
2215 if (fp
->flags
& FLAG_CONTENT_DIR
) {
2217 if (one_file_system
) {
2218 uint32
*devp
= F_DIR_DEV_P(fp
);
2219 dirdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
2221 dirdev
= MAKEDEV(0, 0);
2222 delete_in_dir(fbuf
, fp
, &dirdev
);
2224 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(fp
));
2227 for (i
= cur_flist
->low
; i
<= cur_flist
->high
; i
++) {
2228 struct file_struct
*file
= cur_flist
->sorted
[i
];
2230 if (!F_IS_ACTIVE(file
))
2236 ndx
= i
+ cur_flist
->ndx_start
;
2239 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2242 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, f_out
);
2244 check_for_finished_files(itemizing
, code
, 0);
2246 if (allowed_lull
&& !(i
% lull_mod
))
2247 maybe_send_keepalive();
2248 else if (!(i
& 0xFF))
2249 maybe_flush_socket(0);
2253 write_ndx(f_out
, NDX_DONE
);
2258 check_for_finished_files(itemizing
, code
, 1);
2259 if (cur_flist
->next
|| flist_eof
)
2261 wait_for_receiver();
2263 } while ((cur_flist
= cur_flist
->next
) != NULL
);
2266 delete_in_dir(NULL
, NULL
, &dev_zero
);
2269 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2272 check_for_finished_files(itemizing
, code
, 1);
2275 wait_for_receiver();
2280 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2282 write_ndx(f_out
, NDX_DONE
);
2283 /* Reduce round-trip lag-time for a useless delay-updates phase. */
2284 if (protocol_version
>= 29 && !delay_updates
)
2285 write_ndx(f_out
, NDX_DONE
);
2287 /* Read MSG_DONE for the redo phase (and any prior messages). */
2289 check_for_finished_files(itemizing
, code
, 0);
2290 if (msgdone_cnt
> 1)
2292 wait_for_receiver();
2295 if (protocol_version
>= 29) {
2298 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2300 write_ndx(f_out
, NDX_DONE
);
2301 /* Read MSG_DONE for delay-updates phase & prior messages. */
2302 while (msgdone_cnt
== 2)
2303 wait_for_receiver();
2306 do_progress
= save_do_progress
;
2307 if (delete_during
== 2)
2308 do_delayed_deletions(fbuf
);
2309 if (delete_after
&& !solo_file
&& file_total
> 0)
2312 if ((need_retouch_dir_perms
|| need_retouch_dir_times
)
2313 && dir_tweaking
&& (!inc_recurse
|| delete_during
== 2))
2314 touch_up_dirs(dir_flist
, -1);
2316 if (max_delete
>= 0 && deletion_count
> max_delete
) {
2318 "Deletions stopped due to --max-delete limit (%d skipped)\n",
2319 deletion_count
- max_delete
);
2320 io_error
|= IOERR_DEL_LIMIT
;
2324 rprintf(FINFO
, "generate_files finished\n");