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.
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 protocol_version
;
73 extern int file_total
;
74 extern int fuzzy_basis
;
75 extern int always_checksum
;
76 extern int checksum_len
;
77 extern char *partial_dir
;
78 extern char *basis_dir
[];
79 extern int compare_dest
;
82 extern int whole_file
;
84 extern int read_batch
;
85 extern int safe_symlinks
;
86 extern long block_size
; /* "long" because popt can't set an int32. */
87 extern int unsort_ndx
;
88 extern int max_delete
;
89 extern int force_delete
;
90 extern int one_file_system
;
91 extern struct stats stats
;
92 extern dev_t filesystem_dev
;
93 extern mode_t orig_umask
;
95 extern char *backup_dir
;
96 extern char *backup_suffix
;
97 extern int backup_suffix_len
;
98 extern struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
99 extern struct filter_list_struct daemon_filter_list
;
101 int ignore_perishable
= 0;
102 int non_perishable_cnt
= 0;
103 int maybe_ATTRS_REPORT
= 0;
105 static dev_t dev_zero
;
106 static int deletion_count
= 0; /* used to implement --max-delete */
107 static int deldelay_size
= 0, deldelay_cnt
= 0;
108 static char *deldelay_buf
= NULL
;
109 static int deldelay_fd
= -1;
110 static int loopchk_limit
;
111 static int dir_tweaking
;
112 static int symlink_timeset_failed_flags
;
113 static int need_retouch_dir_times
;
114 static int need_retouch_dir_perms
;
115 static const char *solo_file
= NULL
;
117 /* For calling delete_item() and delete_dir_contents(). */
118 #define DEL_NO_UID_WRITE (1<<0) /* file/dir has our uid w/o write perm */
119 #define DEL_RECURSE (1<<1) /* if dir, delete all contents */
120 #define DEL_DIR_IS_EMPTY (1<<2) /* internal delete_FUNCTIONS use only */
121 #define DEL_FOR_FILE (1<<3) /* making room for a replacement file */
122 #define DEL_FOR_DIR (1<<4) /* making room for a replacement dir */
123 #define DEL_FOR_SYMLINK (1<<5) /* making room for a replacement symlink */
124 #define DEL_FOR_DEVICE (1<<6) /* making room for a replacement device */
125 #define DEL_FOR_SPECIAL (1<<7) /* making room for a replacement special */
127 #define DEL_MAKE_ROOM (DEL_FOR_FILE|DEL_FOR_DIR|DEL_FOR_SYMLINK|DEL_FOR_DEVICE|DEL_FOR_SPECIAL)
130 TYPE_DIR
, TYPE_SPECIAL
, TYPE_DEVICE
, TYPE_SYMLINK
134 DR_SUCCESS
= 0, DR_FAILURE
, DR_AT_LIMIT
, DR_NOT_EMPTY
137 /* Forward declarations. */
138 static enum delret
delete_dir_contents(char *fname
, uint16 flags
);
139 #ifdef SUPPORT_HARD_LINKS
140 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
141 enum logcode code
, int f_out
);
144 static int is_backup_file(char *fn
)
146 int k
= strlen(fn
) - backup_suffix_len
;
147 return k
> 0 && strcmp(fn
+k
, backup_suffix
) == 0;
150 /* Delete a file or directory. If DEL_RECURSE is set in the flags, this will
151 * delete recursively.
153 * Note that fbuf must point to a MAXPATHLEN buffer if the mode indicates it's
154 * a directory! (The buffer is used for recursion, but returned unchanged.)
156 static enum delret
delete_item(char *fbuf
, uint16 mode
, uint16 flags
)
163 rprintf(FINFO
, "delete_item(%s) mode=%o flags=%d\n",
164 fbuf
, (int)mode
, (int)flags
);
167 if (flags
& DEL_NO_UID_WRITE
)
168 do_chmod(fbuf
, mode
| S_IWUSR
);
170 if (S_ISDIR(mode
) && !(flags
& DEL_DIR_IS_EMPTY
)) {
171 int save_uid_ndx
= uid_ndx
;
172 /* This only happens on the first call to delete_item() since
173 * delete_dir_contents() always calls us w/DEL_DIR_IS_EMPTY. */
175 uid_ndx
= ++file_extra_cnt
;
176 ignore_perishable
= 1;
177 /* If DEL_RECURSE is not set, this just reports emptiness. */
178 ret
= delete_dir_contents(fbuf
, flags
);
179 ignore_perishable
= 0;
184 if (ret
== DR_NOT_EMPTY
|| ret
== DR_AT_LIMIT
)
186 /* OK: try to delete the directory. */
189 if (!(flags
& DEL_MAKE_ROOM
) && max_delete
>= 0 && ++deletion_count
> max_delete
)
194 ok
= do_rmdir(fbuf
) == 0;
195 } else if (make_backups
> 0 && (backup_dir
|| !is_backup_file(fbuf
))) {
196 what
= "make_backup";
197 ok
= make_backup(fbuf
);
200 ok
= robust_unlink(fbuf
) == 0;
204 if (!(flags
& DEL_MAKE_ROOM
))
205 log_delete(fbuf
, mode
);
208 if (S_ISDIR(mode
) && errno
== ENOTEMPTY
) {
209 rprintf(FINFO
, "cannot delete non-empty directory: %s\n",
212 } else if (errno
!= ENOENT
) {
213 rsyserr(FERROR
, errno
, "delete_file: %s(%s) failed",
223 if (ret
!= DR_SUCCESS
&& flags
& DEL_MAKE_ROOM
) {
225 switch (flags
& DEL_MAKE_ROOM
) {
226 case DEL_FOR_FILE
: desc
= "regular file"; break;
227 case DEL_FOR_DIR
: desc
= "directory"; break;
228 case DEL_FOR_SYMLINK
: desc
= "symlink"; break;
229 case DEL_FOR_DEVICE
: desc
= "device file"; break;
230 case DEL_FOR_SPECIAL
: desc
= "special file"; break;
231 default: exit_cleanup(RERR_UNSUPPORTED
); /* IMPOSSIBLE */
233 rprintf(FERROR_XFER
, "could not make way for new %s: %s\n",
239 /* The directory is about to be deleted: if DEL_RECURSE is given, delete all
240 * its contents, otherwise just checks for content. Returns DR_SUCCESS or
241 * DR_NOT_EMPTY. Note that fname must point to a MAXPATHLEN buffer! (The
242 * buffer is used for recursion, but returned unchanged.)
244 static enum delret
delete_dir_contents(char *fname
, uint16 flags
)
246 struct file_list
*dirlist
;
254 rprintf(FINFO
, "delete_dir_contents(%s) flags=%d\n",
258 dlen
= strlen(fname
);
259 save_filters
= push_local_filters(fname
, dlen
);
261 non_perishable_cnt
= 0;
262 dirlist
= get_dirlist(fname
, dlen
, 0);
263 ret
= non_perishable_cnt
? DR_NOT_EMPTY
: DR_SUCCESS
;
268 if (!(flags
& DEL_RECURSE
)) {
274 if (dlen
!= 1 || *fname
!= '/')
276 remainder
= MAXPATHLEN
- (p
- fname
);
278 /* We do our own recursion, so make delete_item() non-recursive. */
279 flags
= (flags
& ~(DEL_RECURSE
|DEL_MAKE_ROOM
|DEL_NO_UID_WRITE
))
282 for (j
= dirlist
->used
; j
--; ) {
283 struct file_struct
*fp
= dirlist
->files
[j
];
285 if (fp
->flags
& FLAG_MOUNT_DIR
&& S_ISDIR(fp
->mode
)) {
288 "mount point, %s, pins parent directory\n",
295 strlcpy(p
, fp
->basename
, remainder
);
296 if (!(fp
->mode
& S_IWUSR
) && !am_root
&& (uid_t
)F_OWNER(fp
) == our_uid
)
297 do_chmod(fname
, fp
->mode
| S_IWUSR
);
298 /* Save stack by recursing to ourself directly. */
299 if (S_ISDIR(fp
->mode
)) {
300 if (delete_dir_contents(fname
, flags
| DEL_RECURSE
) != DR_SUCCESS
)
303 if (delete_item(fname
, fp
->mode
, flags
) != DR_SUCCESS
)
311 pop_local_filters(save_filters
);
313 if (ret
== DR_NOT_EMPTY
) {
314 rprintf(FINFO
, "cannot delete non-empty directory: %s\n",
320 static int start_delete_delay_temp(void)
322 char fnametmp
[MAXPATHLEN
];
323 int save_dry_run
= dry_run
;
326 if (!get_tmpname(fnametmp
, "deldelay")
327 || (deldelay_fd
= do_mkstemp(fnametmp
, 0600)) < 0) {
328 rprintf(FINFO
, "NOTE: Unable to create delete-delay temp file%s.\n",
329 inc_recurse
? "" : " -- switching to --delete-after");
331 delete_after
= !inc_recurse
;
332 dry_run
= save_dry_run
;
336 dry_run
= save_dry_run
;
340 static int flush_delete_delay(void)
342 if (deldelay_fd
< 0 && !start_delete_delay_temp())
344 if (write(deldelay_fd
, deldelay_buf
, deldelay_cnt
) != deldelay_cnt
) {
345 rsyserr(FERROR
, errno
, "flush of delete-delay buffer");
347 delete_after
= !inc_recurse
;
355 static int remember_delete(struct file_struct
*file
, const char *fname
, int flags
)
359 if (deldelay_cnt
== deldelay_size
&& !flush_delete_delay())
362 if (flags
& DEL_NO_UID_WRITE
)
363 deldelay_buf
[deldelay_cnt
++] = '!';
366 len
= snprintf(deldelay_buf
+ deldelay_cnt
,
367 deldelay_size
- deldelay_cnt
,
369 (int)file
->mode
, fname
, '\0');
370 if ((deldelay_cnt
+= len
) <= deldelay_size
)
373 if (!flush_delete_delay())
380 static int read_delay_line(char *buf
, int *flags_p
)
382 static int read_pos
= 0;
384 char *bp
, *past_space
;
387 for (j
= read_pos
; j
< deldelay_cnt
&& deldelay_buf
[j
]; j
++) {}
388 if (j
< deldelay_cnt
)
390 if (deldelay_fd
< 0) {
395 deldelay_cnt
-= read_pos
;
396 if (deldelay_cnt
== deldelay_size
)
398 if (deldelay_cnt
&& read_pos
) {
399 memmove(deldelay_buf
, deldelay_buf
+ read_pos
,
402 len
= read(deldelay_fd
, deldelay_buf
+ deldelay_cnt
,
403 deldelay_size
- deldelay_cnt
);
407 "ERROR: unexpected EOF in delete-delay file.\n");
412 rsyserr(FERROR
, errno
,
413 "reading delete-delay file");
420 bp
= deldelay_buf
+ read_pos
;
423 *flags_p
= DEL_NO_UID_WRITE
;
427 if (sscanf(bp
, "%x ", &mode
) != 1) {
429 rprintf(FERROR
, "ERROR: invalid data in delete-delay file.\n");
432 past_space
= strchr(bp
, ' ') + 1;
433 len
= j
- read_pos
- (past_space
- bp
) + 1; /* count the '\0' */
436 if (len
> MAXPATHLEN
) {
437 rprintf(FERROR
, "ERROR: filename too long in delete-delay file.\n");
441 /* The caller needs the name in a MAXPATHLEN buffer, so we copy it
442 * instead of returning a pointer to our buffer. */
443 memcpy(buf
, past_space
, len
);
448 static void do_delayed_deletions(char *delbuf
)
452 if (deldelay_fd
>= 0) {
453 if (deldelay_cnt
&& !flush_delete_delay())
455 lseek(deldelay_fd
, 0, 0);
457 while ((mode
= read_delay_line(delbuf
, &flags
)) >= 0)
458 delete_item(delbuf
, mode
, flags
| DEL_RECURSE
);
459 if (deldelay_fd
>= 0)
463 /* This function is used to implement per-directory deletion, and is used by
464 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
465 * MAXPATHLEN buffer with the name of the directory in it (the functions we
466 * call will append names onto the end, but the old dir value will be restored
468 static void delete_in_dir(char *fbuf
, struct file_struct
*file
, dev_t
*fs_dev
)
470 static int already_warned
= 0;
471 struct file_list
*dirlist
;
472 char delbuf
[MAXPATHLEN
];
474 int save_uid_ndx
= uid_ndx
;
477 change_local_filter_dir(NULL
, 0, 0);
482 rprintf(FINFO
, "delete_in_dir(%s)\n", fbuf
);
485 maybe_send_keepalive();
487 if (io_error
&& !ignore_errors
) {
491 "IO error encountered -- skipping file deletion\n");
497 change_local_filter_dir(fbuf
, dlen
, F_DEPTH(file
));
499 if (one_file_system
) {
500 if (file
->flags
& FLAG_TOP_DIR
)
501 filesystem_dev
= *fs_dev
;
502 else if (filesystem_dev
!= *fs_dev
)
507 uid_ndx
= ++file_extra_cnt
;
509 dirlist
= get_dirlist(fbuf
, dlen
, 0);
511 /* If an item in dirlist is not found in flist, delete it
512 * from the filesystem. */
513 for (i
= dirlist
->used
; i
--; ) {
514 struct file_struct
*fp
= dirlist
->files
[i
];
515 if (!F_IS_ACTIVE(fp
))
517 if (fp
->flags
& FLAG_MOUNT_DIR
&& S_ISDIR(fp
->mode
)) {
519 rprintf(FINFO
, "cannot delete mount point: %s\n",
523 /* Here we want to match regardless of file type. Replacement
524 * of a file with one of another type is handled separately by
525 * a delete_item call with a DEL_MAKE_ROOM flag. */
526 if (flist_find_ignore_dirness(cur_flist
, fp
) < 0) {
527 int flags
= DEL_RECURSE
;
528 if (!(fp
->mode
& S_IWUSR
) && !am_root
&& (uid_t
)F_OWNER(fp
) == our_uid
)
529 flags
|= DEL_NO_UID_WRITE
;
531 if (delete_during
== 2) {
532 if (!remember_delete(fp
, delbuf
, flags
))
535 delete_item(delbuf
, fp
->mode
, flags
);
547 /* This deletes any files on the receiving side that are not present on the
548 * sending side. This is used by --delete-before and --delete-after. */
549 static void do_delete_pass(void)
551 char fbuf
[MAXPATHLEN
];
555 /* dry_run is incremented when the destination doesn't exist yet. */
556 if (dry_run
> 1 || list_only
)
559 for (j
= 0; j
< cur_flist
->used
; j
++) {
560 struct file_struct
*file
= cur_flist
->sorted
[j
];
564 if (!(file
->flags
& FLAG_CONTENT_DIR
)) {
565 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(file
));
569 if (verbose
> 1 && file
->flags
& FLAG_TOP_DIR
)
570 rprintf(FINFO
, "deleting in %s\n", fbuf
);
572 if (link_stat(fbuf
, &st
, keep_dirlinks
) < 0
573 || !S_ISDIR(st
.st_mode
))
576 delete_in_dir(fbuf
, file
, &st
.st_dev
);
578 delete_in_dir(NULL
, NULL
, &dev_zero
);
580 if (do_progress
&& !am_server
)
581 rprintf(FINFO
, " \r");
584 int unchanged_attrs(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
586 #if !defined HAVE_LUTIMES || !defined HAVE_UTIMES
587 if (S_ISLNK(file
->mode
)) {
591 if (preserve_times
&& cmp_time(sxp
->st
.st_mtime
, file
->modtime
) != 0)
594 if (preserve_perms
) {
595 if (!BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
))
597 } else if (preserve_executability
598 && ((sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0)))
601 if (am_root
&& uid_ndx
&& sxp
->st
.st_uid
!= (uid_t
)F_OWNER(file
))
604 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
) && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
608 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
609 if (!ACL_READY(*sxp
))
611 if (set_acl(NULL
, file
, sxp
) == 0)
615 #ifdef SUPPORT_XATTRS
616 if (preserve_xattrs
) {
617 if (!XATTR_READY(*sxp
))
618 get_xattr(fname
, sxp
);
619 if (xattr_diff(file
, sxp
, 0))
627 void itemize(const char *fnamecmp
, struct file_struct
*file
, int ndx
, int statret
,
628 stat_x
*sxp
, int32 iflags
, uchar fnamecmp_type
,
631 if (statret
>= 0) { /* A from-dest-dir statret can == 1! */
632 int keep_time
= !preserve_times
? 0
633 : S_ISDIR(file
->mode
) ? preserve_times
> 1 :
634 #if defined HAVE_LUTIMES && defined HAVE_UTIMES
637 !S_ISLNK(file
->mode
);
640 if (S_ISREG(file
->mode
) && F_LENGTH(file
) != sxp
->st
.st_size
)
641 iflags
|= ITEM_REPORT_SIZE
;
642 if (file
->flags
& FLAG_TIME_FAILED
) { /* symlinks only */
643 if (iflags
& ITEM_LOCAL_CHANGE
)
644 iflags
|= symlink_timeset_failed_flags
;
646 ? cmp_time(file
->modtime
, sxp
->st
.st_mtime
) != 0
647 : iflags
& (ITEM_TRANSFER
|ITEM_LOCAL_CHANGE
) && !(iflags
& ITEM_MATCHED
)
648 && (!(iflags
& ITEM_XNAME_FOLLOWS
) || *xname
))
649 iflags
|= ITEM_REPORT_TIME
;
650 #if !defined HAVE_LCHMOD && !defined HAVE_SETATTRLIST
651 if (S_ISLNK(file
->mode
)) {
655 if (preserve_perms
) {
656 if (!BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
))
657 iflags
|= ITEM_REPORT_PERMS
;
658 } else if (preserve_executability
659 && ((sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0)))
660 iflags
|= ITEM_REPORT_PERMS
;
661 if (uid_ndx
&& am_root
&& (uid_t
)F_OWNER(file
) != sxp
->st
.st_uid
)
662 iflags
|= ITEM_REPORT_OWNER
;
663 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
)
664 && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
665 iflags
|= ITEM_REPORT_GROUP
;
667 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
668 if (!ACL_READY(*sxp
))
669 get_acl(fnamecmp
, sxp
);
670 if (set_acl(NULL
, file
, sxp
) == 0)
671 iflags
|= ITEM_REPORT_ACL
;
674 #ifdef SUPPORT_XATTRS
675 if (preserve_xattrs
) {
676 if (!XATTR_READY(*sxp
))
677 get_xattr(fnamecmp
, sxp
);
678 if (xattr_diff(file
, sxp
, 1))
679 iflags
|= ITEM_REPORT_XATTR
;
683 #ifdef SUPPORT_XATTRS
684 if (preserve_xattrs
&& xattr_diff(file
, NULL
, 1))
685 iflags
|= ITEM_REPORT_XATTR
;
687 iflags
|= ITEM_IS_NEW
;
691 if ((iflags
& (SIGNIFICANT_ITEM_FLAGS
|ITEM_REPORT_XATTR
) || verbose
> 1
692 || stdout_format_has_i
> 1 || (xname
&& *xname
)) && !read_batch
) {
693 if (protocol_version
>= 29) {
695 write_ndx(sock_f_out
, ndx
);
696 write_shortint(sock_f_out
, iflags
);
697 if (iflags
& ITEM_BASIS_TYPE_FOLLOWS
)
698 write_byte(sock_f_out
, fnamecmp_type
);
699 if (iflags
& ITEM_XNAME_FOLLOWS
)
700 write_vstring(sock_f_out
, xname
, strlen(xname
));
701 #ifdef SUPPORT_XATTRS
702 if (preserve_xattrs
&& do_xfers
703 && iflags
& (ITEM_REPORT_XATTR
|ITEM_TRANSFER
)) {
704 send_xattr_request(NULL
, file
,
705 iflags
& ITEM_REPORT_XATTR
? sock_f_out
: -1);
708 } else if (ndx
>= 0) {
709 enum logcode code
= logfile_format_has_i
? FINFO
: FCLIENT
;
710 log_item(code
, file
, &stats
, iflags
, xname
);
716 /* Perform our quick-check heuristic for determining if a file is unchanged. */
717 int unchanged_file(char *fn
, struct file_struct
*file
, STRUCT_STAT
*st
)
719 if (st
->st_size
!= F_LENGTH(file
))
722 /* if always checksum is set then we use the checksum instead
723 of the file time to determine whether to sync */
724 if (always_checksum
> 0 && S_ISREG(st
->st_mode
)) {
725 char sum
[MAX_DIGEST_LEN
];
726 file_checksum(fn
, sum
, st
->st_size
);
727 return memcmp(sum
, F_SUM(file
), checksum_len
) == 0;
736 return cmp_time(st
->st_mtime
, file
->modtime
) == 0;
741 * set (initialize) the size entries in the per-file sum_struct
742 * calculating dynamic block and checksum sizes.
744 * This is only called from generate_and_send_sums() but is a separate
745 * function to encapsulate the logic.
747 * The block size is a rounded square root of file length.
749 * The checksum size is determined according to:
750 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
751 * provided by Donovan Baarda which gives a probability of rsync
752 * algorithm corrupting data and falling back using the whole md4
755 * This might be made one of several selectable heuristics.
757 static void sum_sizes_sqroot(struct sum_struct
*sum
, int64 len
)
764 blength
= block_size
;
765 else if (len
<= BLOCK_SIZE
* BLOCK_SIZE
)
766 blength
= BLOCK_SIZE
;
768 int32 max_blength
= protocol_version
< 30 ? OLD_MAX_BLOCK_SIZE
: MAX_BLOCK_SIZE
;
771 for (c
= 1, l
= len
, cnt
= 0; l
>>= 2; c
<<= 1, cnt
++) {}
772 if (c
< 0 || c
>= max_blength
)
773 blength
= max_blength
;
778 if (len
< (int64
)blength
* blength
)
781 } while (c
>= 8); /* round to multiple of 8 */
782 blength
= MAX(blength
, BLOCK_SIZE
);
786 if (protocol_version
< 27) {
787 s2length
= csum_length
;
788 } else if (csum_length
== SUM_LENGTH
) {
789 s2length
= SUM_LENGTH
;
792 int b
= BLOCKSUM_BIAS
;
793 for (l
= len
; l
>>= 1; b
+= 2) {}
794 for (c
= blength
; (c
>>= 1) && b
; b
--) {}
795 /* add a bit, subtract rollsum, round up. */
796 s2length
= (b
+ 1 - 32 + 7) / 8; /* --optimize in compiler-- */
797 s2length
= MAX(s2length
, csum_length
);
798 s2length
= MIN(s2length
, SUM_LENGTH
);
802 sum
->blength
= blength
;
803 sum
->s2length
= s2length
;
804 sum
->remainder
= (int32
)(len
% blength
);
805 sum
->count
= (int32
)(l
= (len
/ blength
) + (sum
->remainder
!= 0));
807 if ((int64
)sum
->count
!= l
)
810 if (sum
->count
&& verbose
> 2) {
812 "count=%.0f rem=%ld blength=%ld s2length=%d flength=%.0f\n",
813 (double)sum
->count
, (long)sum
->remainder
, (long)sum
->blength
,
814 sum
->s2length
, (double)sum
->flength
);
820 * Generate and send a stream of signatures/checksums that describe a buffer
822 * Generate approximately one checksum every block_len bytes.
824 static int generate_and_send_sums(int fd
, OFF_T len
, int f_out
, int f_copy
)
827 struct map_struct
*mapbuf
;
828 struct sum_struct sum
;
831 sum_sizes_sqroot(&sum
, len
);
834 write_sum_head(f_out
, &sum
);
836 if (append_mode
> 0 && f_copy
< 0)
840 mapbuf
= map_file(fd
, len
, MAX_MAP_SIZE
, sum
.blength
);
844 for (i
= 0; i
< sum
.count
; i
++) {
845 int32 n1
= (int32
)MIN(len
, (OFF_T
)sum
.blength
);
846 char *map
= map_ptr(mapbuf
, offset
, n1
);
847 char sum2
[SUM_LENGTH
];
854 full_write(f_copy
, map
, n1
);
859 sum1
= get_checksum1(map
, n1
);
860 get_checksum2(map
, n1
, sum2
);
864 "chunk[%.0f] offset=%.0f len=%ld sum1=%08lx\n",
865 (double)i
, (double)offset
- n1
, (long)n1
,
866 (unsigned long)sum1
);
868 write_int(f_out
, sum1
);
869 write_buf(f_out
, sum2
, sum
.s2length
);
879 /* Try to find a filename in the same dir as "fname" with a similar name. */
880 static int find_fuzzy(struct file_struct
*file
, struct file_list
*dirlist
)
882 int fname_len
, fname_suf_len
;
883 const char *fname_suf
, *fname
= file
->basename
;
884 uint32 lowest_dist
= 25 << 16; /* ignore a distance greater than 25 */
885 int j
, lowest_j
= -1;
887 fname_len
= strlen(fname
);
888 fname_suf
= find_filename_suffix(fname
, fname_len
, &fname_suf_len
);
890 for (j
= 0; j
< dirlist
->used
; j
++) {
891 struct file_struct
*fp
= dirlist
->files
[j
];
892 const char *suf
, *name
;
896 if (!S_ISREG(fp
->mode
) || !F_LENGTH(fp
)
897 || fp
->flags
& FLAG_FILE_SENT
)
902 if (F_LENGTH(fp
) == F_LENGTH(file
)
903 && cmp_time(fp
->modtime
, file
->modtime
) == 0) {
906 "fuzzy size/modtime match for %s\n",
913 suf
= find_filename_suffix(name
, len
, &suf_len
);
915 dist
= fuzzy_distance(name
, len
, fname
, fname_len
);
916 /* Add some extra weight to how well the suffixes match. */
917 dist
+= fuzzy_distance(suf
, suf_len
, fname_suf
, fname_suf_len
)
920 rprintf(FINFO
, "fuzzy distance for %s = %d.%05d\n",
921 name
, (int)(dist
>>16), (int)(dist
&0xFFFF));
923 if (dist
<= lowest_dist
) {
932 /* Copy a file found in our --copy-dest handling. */
933 static int copy_altdest_file(const char *src
, const char *dest
, struct file_struct
*file
)
935 char buf
[MAXPATHLEN
];
936 const char *copy_to
, *partialptr
;
937 int save_preserve_xattrs
= preserve_xattrs
;
941 /* Let copy_file open the destination in place. */
945 fd_w
= open_tmpfile(buf
, dest
, file
);
950 cleanup_set(copy_to
, NULL
, NULL
, -1, -1);
951 if (copy_file(src
, copy_to
, fd_w
, file
->mode
, 0) < 0) {
953 rsyserr(FINFO
, errno
, "copy_file %s => %s",
954 full_fname(src
), copy_to
);
956 /* Try to clean up. */
961 partialptr
= partial_dir
? partial_dir_fname(dest
) : NULL
;
962 preserve_xattrs
= 0; /* xattrs were copied with file */
963 ok
= finish_transfer(dest
, copy_to
, src
, partialptr
, file
, 1, 0);
964 preserve_xattrs
= save_preserve_xattrs
;
969 /* This is only called for regular files. We return -2 if we've finished
970 * handling the file, -1 if no dest-linking occurred, or a non-negative
971 * value if we found an alternate basis file. */
972 static int try_dests_reg(struct file_struct
*file
, char *fname
, int ndx
,
973 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
981 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
982 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0 || !S_ISREG(sxp
->st
.st_mode
))
984 switch (match_level
) {
990 if (!unchanged_file(cmpbuf
, file
, &sxp
->st
))
996 if (!unchanged_attrs(cmpbuf
, file
, sxp
))
1003 } while (basis_dir
[++j
] != NULL
);
1008 if (j
!= best_match
) {
1010 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1011 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1015 if (match_level
== 3 && !copy_dest
) {
1016 #ifdef SUPPORT_HARD_LINKS
1018 if (!hard_link_one(file
, fname
, cmpbuf
, 1))
1020 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1021 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, j
);
1022 if (!maybe_ATTRS_REPORT
&& (verbose
> 1 || stdout_format_has_i
> 1)) {
1023 itemize(cmpbuf
, file
, ndx
, 1, sxp
,
1024 ITEM_LOCAL_CHANGE
| ITEM_XNAME_FOLLOWS
,
1030 itemize(cmpbuf
, file
, ndx
, 0, sxp
, 0, 0, NULL
);
1031 if (verbose
> 1 && maybe_ATTRS_REPORT
)
1032 rprintf(FCLIENT
, "%s is uptodate\n", fname
);
1036 if (match_level
>= 2) {
1037 #ifdef SUPPORT_HARD_LINKS
1038 try_a_copy
: /* Copy the file locally. */
1040 if (!dry_run
&& copy_altdest_file(cmpbuf
, fname
, file
) < 0)
1043 itemize(cmpbuf
, file
, ndx
, 0, sxp
, ITEM_LOCAL_CHANGE
, 0, NULL
);
1044 if (maybe_ATTRS_REPORT
1045 && ((!itemizing
&& verbose
&& match_level
== 2)
1046 || (verbose
> 1 && match_level
== 3))) {
1047 code
= match_level
== 3 ? FCLIENT
: FINFO
;
1048 rprintf(code
, "%s%s\n", fname
,
1049 match_level
== 3 ? " is uptodate" : "");
1051 #ifdef SUPPORT_HARD_LINKS
1052 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1053 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, -1);
1058 return FNAMECMP_BASIS_DIR_LOW
+ j
;
1061 /* This is only called for non-regular files. We return -2 if we've finished
1062 * handling the file, or -1 if no dest-linking occurred, or a non-negative
1063 * value if we found an alternate basis file. */
1064 static int try_dests_non(struct file_struct
*file
, char *fname
, int ndx
,
1065 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
1068 char lnk
[MAXPATHLEN
];
1069 int best_match
= -1;
1070 int match_level
= 0;
1071 enum nonregtype type
;
1075 #ifndef SUPPORT_LINKS
1076 if (S_ISLNK(file
->mode
))
1079 if (S_ISDIR(file
->mode
)) {
1081 } else if (IS_SPECIAL(file
->mode
))
1082 type
= TYPE_SPECIAL
;
1083 else if (IS_DEVICE(file
->mode
))
1085 #ifdef SUPPORT_LINKS
1086 else if (S_ISLNK(file
->mode
))
1087 type
= TYPE_SYMLINK
;
1091 "internal: try_dests_non() called with invalid mode (%o)\n",
1093 exit_cleanup(RERR_UNSUPPORTED
);
1097 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1098 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1102 if (!S_ISDIR(sxp
->st
.st_mode
))
1106 if (!IS_SPECIAL(sxp
->st
.st_mode
))
1110 if (!IS_DEVICE(sxp
->st
.st_mode
))
1113 #ifdef SUPPORT_LINKS
1115 if (!S_ISLNK(sxp
->st
.st_mode
))
1120 if (match_level
< 1) {
1129 devp
= F_RDEV_P(file
);
1130 if (sxp
->st
.st_rdev
!= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
)))
1133 #ifdef SUPPORT_LINKS
1135 if ((len
= readlink(cmpbuf
, lnk
, MAXPATHLEN
-1)) <= 0)
1138 if (strcmp(lnk
, F_SYMLINK(file
)) != 0)
1143 if (match_level
< 2) {
1147 if (unchanged_attrs(cmpbuf
, file
, sxp
)) {
1152 } while (basis_dir
[++j
] != NULL
);
1157 if (j
!= best_match
) {
1159 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1160 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1164 if (match_level
== 3) {
1165 #ifdef SUPPORT_HARD_LINKS
1167 #ifndef CAN_HARDLINK_SYMLINK
1168 && !S_ISLNK(file
->mode
)
1170 #ifndef CAN_HARDLINK_SPECIAL
1171 && !IS_SPECIAL(file
->mode
) && !IS_DEVICE(file
->mode
)
1173 && !S_ISDIR(file
->mode
)) {
1174 if (do_link(cmpbuf
, fname
) < 0) {
1175 rsyserr(FERROR_XFER
, errno
,
1176 "failed to hard-link %s with %s",
1180 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1181 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1185 if (itemizing
&& stdout_format_has_i
1186 && (verbose
> 1 || stdout_format_has_i
> 1)) {
1187 int chg
= compare_dest
&& type
!= TYPE_DIR
? 0
1188 : ITEM_LOCAL_CHANGE
+ (match_level
== 3 ? ITEM_XNAME_FOLLOWS
: 0);
1189 char *lp
= match_level
== 3 ? "" : NULL
;
1190 itemize(cmpbuf
, file
, ndx
, 0, sxp
, chg
+ ITEM_MATCHED
, 0, lp
);
1192 if (verbose
> 1 && maybe_ATTRS_REPORT
) {
1193 rprintf(FCLIENT
, "%s%s is uptodate\n",
1194 fname
, type
== TYPE_DIR
? "/" : "");
1202 static void list_file_entry(struct file_struct
*f
)
1204 char permbuf
[PERMSTRING_SIZE
];
1207 if (!F_IS_ACTIVE(f
)) {
1208 /* this can happen if duplicate names were removed */
1212 permstring(permbuf
, f
->mode
);
1215 /* TODO: indicate '+' if the entry has an ACL. */
1217 #ifdef SUPPORT_LINKS
1218 if (preserve_links
&& S_ISLNK(f
->mode
)) {
1219 rprintf(FINFO
, "%s %11.0f %s %s -> %s\n",
1220 permbuf
, len
, timestring(f
->modtime
),
1221 f_name(f
, NULL
), F_SYMLINK(f
));
1225 rprintf(FINFO
, "%s %11.0f %s %s\n",
1226 permbuf
, len
, timestring(f
->modtime
),
1231 static int phase
= 0;
1232 static int dflt_perms
;
1234 static int implied_dirs_are_missing
;
1235 /* Helper for recv_generator's skip_dir and dry_missing_dir tests. */
1236 static BOOL
is_below(struct file_struct
*file
, struct file_struct
*subtree
)
1238 return F_DEPTH(file
) > F_DEPTH(subtree
)
1239 && (!implied_dirs_are_missing
|| f_name_has_prefix(file
, subtree
));
1242 /* Acts on the indicated item in cur_flist whose name is fname. If a dir,
1243 * make sure it exists, and has the right permissions/timestamp info. For
1244 * all other non-regular files (symlinks, etc.) we create them here. For
1245 * regular files that have changed, we try to find a basis file and then
1246 * start sending checksums. The ndx is the file's unique index value.
1248 * The fname parameter must point to a MAXPATHLEN buffer! (e.g it gets
1249 * passed to delete_item(), which can use it during a recursive delete.)
1251 * Note that f_out is set to -1 when doing final directory-permission and
1252 * modification-time repair. */
1253 static void recv_generator(char *fname
, struct file_struct
*file
, int ndx
,
1254 int itemizing
, enum logcode code
, int f_out
)
1256 static const char *parent_dirname
= "";
1257 /* Missing dir not created due to --dry-run; will still be scanned. */
1258 static struct file_struct
*dry_missing_dir
= NULL
;
1259 /* Missing dir whose contents are skipped altogether due to
1260 * --ignore-non-existing, daemon exclude, or mkdir failure. */
1261 static struct file_struct
*skip_dir
= NULL
;
1262 static struct file_list
*fuzzy_dirlist
= NULL
;
1263 static int need_fuzzy_dirlist
= 0;
1264 struct file_struct
*fuzzy_file
= NULL
;
1265 int fd
= -1, f_copy
= -1;
1267 STRUCT_STAT partial_st
;
1268 struct file_struct
*back_file
= NULL
;
1269 int statret
, real_ret
, stat_errno
;
1270 char *fnamecmp
, *partialptr
, *backupptr
= NULL
;
1271 char fnamecmpbuf
[MAXPATHLEN
];
1272 uchar fnamecmp_type
;
1273 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1274 int is_dir
= !S_ISDIR(file
->mode
) ? 0
1275 : inc_recurse
&& ndx
!= cur_flist
->ndx_start
- 1 ? -1
1279 rprintf(FINFO
, "recv_generator(%s,%d)\n", fname
, ndx
);
1283 || (is_dir
&& !implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
1285 list_file_entry(file
);
1290 if (is_below(file
, skip_dir
)) {
1292 file
->flags
|= FLAG_MISSING_DIR
;
1293 #ifdef SUPPORT_HARD_LINKS
1294 else if (F_IS_HLINKED(file
))
1295 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1302 if (daemon_filter_list
.head
&& (*fname
!= '.' || fname
[1])) {
1303 if (check_filter(&daemon_filter_list
, FLOG
, fname
, is_dir
) < 0) {
1306 #ifdef SUPPORT_HARD_LINKS
1307 if (F_IS_HLINKED(file
))
1308 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1310 rprintf(FERROR_XFER
,
1311 "skipping daemon-excluded %s \"%s\"\n",
1312 is_dir
? "directory" : "file", fname
);
1314 goto skipping_dir_contents
;
1320 sx
.acc_acl
= sx
.def_acl
= NULL
;
1322 #ifdef SUPPORT_XATTRS
1325 if (dry_run
> 1 || (dry_missing_dir
&& is_below(file
, dry_missing_dir
))) {
1326 parent_is_dry_missing
:
1327 if (fuzzy_dirlist
) {
1328 flist_free(fuzzy_dirlist
);
1329 fuzzy_dirlist
= NULL
;
1331 parent_dirname
= "";
1333 stat_errno
= ENOENT
;
1335 const char *dn
= file
->dirname
? file
->dirname
: ".";
1336 dry_missing_dir
= NULL
;
1337 if (parent_dirname
!= dn
&& strcmp(parent_dirname
, dn
) != 0) {
1338 if (relative_paths
&& !implied_dirs
1339 && do_stat(dn
, &sx
.st
) < 0) {
1341 goto parent_is_dry_missing
;
1342 if (create_directory_path(fname
) < 0) {
1343 rsyserr(FERROR_XFER
, errno
,
1344 "recv_generator: mkdir %s failed",
1348 if (fuzzy_dirlist
) {
1349 flist_free(fuzzy_dirlist
);
1350 fuzzy_dirlist
= NULL
;
1353 need_fuzzy_dirlist
= 1;
1355 if (!preserve_perms
)
1356 dflt_perms
= default_perms_for_dir(dn
);
1359 parent_dirname
= dn
;
1361 if (need_fuzzy_dirlist
&& S_ISREG(file
->mode
)) {
1362 strlcpy(fnamecmpbuf
, dn
, sizeof fnamecmpbuf
);
1363 fuzzy_dirlist
= get_dirlist(fnamecmpbuf
, -1, 1);
1364 need_fuzzy_dirlist
= 0;
1367 statret
= link_stat(fname
, &sx
.st
, keep_dirlinks
&& is_dir
);
1371 if (ignore_non_existing
> 0 && statret
== -1 && stat_errno
== ENOENT
) {
1376 file
->flags
|= FLAG_MISSING_DIR
;
1378 #ifdef SUPPORT_HARD_LINKS
1379 else if (F_IS_HLINKED(file
))
1380 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1383 rprintf(FINFO
, "not creating new %s \"%s\"\n",
1384 is_dir
? "directory" : "file", fname
);
1389 if (statret
== 0 && !(sx
.st
.st_mode
& S_IWUSR
)
1390 && !am_root
&& sx
.st
.st_uid
== our_uid
)
1391 del_opts
|= DEL_NO_UID_WRITE
;
1393 if (ignore_existing
> 0 && statret
== 0
1394 && (!is_dir
|| !S_ISDIR(sx
.st
.st_mode
))) {
1395 if (verbose
> 1 && is_dir
>= 0)
1396 rprintf(FINFO
, "%s exists\n", fname
);
1397 #ifdef SUPPORT_HARD_LINKS
1398 if (F_IS_HLINKED(file
))
1399 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1405 if (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
)
1408 /* In inc_recurse mode we want to make sure any missing
1409 * directories get created while we're still processing
1410 * the parent dir (which allows us to touch the parent
1411 * dir's mtime right away). We will handle the dir in
1412 * full later (right before we handle its contents). */
1414 && (S_ISDIR(sx
.st
.st_mode
)
1415 || delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0))
1416 goto cleanup
; /* Any errors get reported later. */
1417 if (do_mkdir(fname
, file
->mode
& 0700) == 0)
1418 file
->flags
|= FLAG_DIR_CREATED
;
1421 /* The file to be received is a directory, so we need
1422 * to prepare appropriately. If there is already a
1423 * file of that name and it is *not* a directory, then
1424 * we need to delete it. If it doesn't exist, then
1425 * (perhaps recursively) create it. */
1426 if (statret
== 0 && !S_ISDIR(sx
.st
.st_mode
)) {
1427 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0)
1428 goto skipping_dir_contents
;
1431 if (dry_run
&& statret
!= 0) {
1432 if (!dry_missing_dir
)
1433 dry_missing_dir
= file
;
1434 file
->flags
|= FLAG_MISSING_DIR
;
1438 if (file
->flags
& FLAG_DIR_CREATED
)
1440 if (!preserve_perms
) { /* See comment in non-dir code below. */
1441 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
,
1442 dflt_perms
, statret
== 0);
1444 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1445 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1454 if (itemizing
&& f_out
!= -1) {
1455 itemize(fname
, file
, ndx
, statret
, &sx
,
1456 statret
? ITEM_LOCAL_CHANGE
: 0, 0, NULL
);
1458 if (real_ret
!= 0 && do_mkdir(fname
,file
->mode
) < 0 && errno
!= EEXIST
) {
1459 if (!relative_paths
|| errno
!= ENOENT
1460 || create_directory_path(fname
) < 0
1461 || (do_mkdir(fname
, file
->mode
) < 0 && errno
!= EEXIST
)) {
1462 rsyserr(FERROR_XFER
, errno
,
1463 "recv_generator: mkdir %s failed",
1465 skipping_dir_contents
:
1467 "*** Skipping any contents from this failed directory ***\n");
1469 file
->flags
|= FLAG_MISSING_DIR
;
1473 #ifdef SUPPORT_XATTRS
1474 if (preserve_xattrs
&& statret
== 1)
1475 copy_xattrs(fnamecmpbuf
, fname
);
1477 if (set_file_attrs(fname
, file
, real_ret
? NULL
: &real_sx
, NULL
, 0)
1478 && verbose
&& code
!= FNONE
&& f_out
!= -1)
1479 rprintf(code
, "%s/\n", fname
);
1481 /* We need to ensure that the dirs in the transfer have writable
1482 * permissions during the time we are putting files within them.
1483 * This is then fixed after the transfer is done. */
1485 if (!am_root
&& !(file
->mode
& S_IWUSR
) && dir_tweaking
) {
1486 mode_t mode
= file
->mode
| S_IWUSR
;
1487 if (do_chmod(fname
, mode
) < 0) {
1488 rsyserr(FERROR_XFER
, errno
,
1489 "failed to modify permissions on %s",
1492 need_retouch_dir_perms
= 1;
1496 if (real_ret
!= 0 && one_file_system
)
1497 real_sx
.st
.st_dev
= filesystem_dev
;
1499 if (one_file_system
) {
1500 uint32
*devp
= F_DIR_DEV_P(file
);
1501 DEV_MAJOR(devp
) = major(real_sx
.st
.st_dev
);
1502 DEV_MINOR(devp
) = minor(real_sx
.st
.st_dev
);
1505 else if (delete_during
&& f_out
!= -1 && !phase
1506 && !(file
->flags
& FLAG_MISSING_DIR
)) {
1507 if (file
->flags
& FLAG_CONTENT_DIR
)
1508 delete_in_dir(fname
, file
, &real_sx
.st
.st_dev
);
1510 change_local_filter_dir(fname
, strlen(fname
), F_DEPTH(file
));
1515 /* If we're not preserving permissions, change the file-list's
1516 * mode based on the local permissions and some heuristics. */
1517 if (!preserve_perms
) {
1518 int exists
= statret
== 0 && !S_ISDIR(sx
.st
.st_mode
);
1519 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
, dflt_perms
,
1523 #ifdef SUPPORT_HARD_LINKS
1524 if (preserve_hard_links
&& F_HLINK_NOT_FIRST(file
)
1525 && hard_link_check(file
, ndx
, fname
, statret
, &sx
, itemizing
, code
))
1529 if (preserve_links
&& S_ISLNK(file
->mode
)) {
1530 #ifdef SUPPORT_LINKS
1531 const char *sl
= F_SYMLINK(file
);
1532 if (safe_symlinks
&& unsafe_symlink(sl
, fname
)) {
1535 fname
= f_name(file
, NULL
);
1537 "ignoring unsafe symlink %s -> \"%s\"\n",
1538 full_fname(fname
), sl
);
1543 char lnk
[MAXPATHLEN
];
1546 if (!S_ISLNK(sx
.st
.st_mode
))
1548 else if ((len
= readlink(fname
, lnk
, MAXPATHLEN
-1)) > 0
1549 && strncmp(lnk
, sl
, len
) == 0 && sl
[len
] == '\0') {
1550 /* The link is pointing to the right place. */
1551 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1553 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1554 #if defined SUPPORT_HARD_LINKS && defined CAN_HARDLINK_SYMLINK
1555 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1556 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1558 if (remove_source_files
== 1)
1559 goto return_with_success
;
1562 /* Not the right symlink (or not a symlink), so
1564 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_SYMLINK
) != 0)
1566 } else if (basis_dir
[0] != NULL
) {
1567 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1570 #ifndef CAN_HARDLINK_SYMLINK
1572 /* Resort to --copy-dest behavior. */
1582 #ifdef SUPPORT_HARD_LINKS
1583 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1584 cur_flist
->in_progress
++;
1588 if (do_symlink(sl
, fname
) != 0) {
1589 rsyserr(FERROR_XFER
, errno
, "symlink %s -> \"%s\" failed",
1590 full_fname(fname
), sl
);
1592 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1594 itemize(fname
, file
, ndx
, statret
, &sx
,
1595 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1597 if (code
!= FNONE
&& verbose
)
1598 rprintf(code
, "%s -> %s\n", fname
, sl
);
1599 #ifdef SUPPORT_HARD_LINKS
1600 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1601 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1603 /* This does not check remove_source_files == 1
1604 * because this is one of the items that the old
1605 * --remove-sent-files option would remove. */
1606 if (remove_source_files
)
1607 goto return_with_success
;
1613 if ((am_root
&& preserve_devices
&& IS_DEVICE(file
->mode
))
1614 || (preserve_specials
&& IS_SPECIAL(file
->mode
))) {
1616 if (IS_DEVICE(file
->mode
)) {
1617 uint32
*devp
= F_RDEV_P(file
);
1618 rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
1623 if (IS_DEVICE(file
->mode
)) {
1624 if (!IS_DEVICE(sx
.st
.st_mode
))
1626 del_for_flag
= DEL_FOR_DEVICE
;
1628 if (!IS_SPECIAL(sx
.st
.st_mode
))
1630 del_for_flag
= DEL_FOR_SPECIAL
;
1633 && BITS_EQUAL(sx
.st
.st_mode
, file
->mode
, _S_IFMT
)
1634 && (IS_SPECIAL(sx
.st
.st_mode
) || sx
.st
.st_rdev
== rdev
)) {
1635 /* The device or special file is identical. */
1636 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1638 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1639 #ifdef SUPPORT_HARD_LINKS
1640 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1641 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1643 if (remove_source_files
== 1)
1644 goto return_with_success
;
1647 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| del_for_flag
) != 0)
1649 } else if (basis_dir
[0] != NULL
) {
1650 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1653 #ifndef CAN_HARDLINK_SPECIAL
1655 /* Resort to --copy-dest behavior. */
1665 #ifdef SUPPORT_HARD_LINKS
1666 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1667 cur_flist
->in_progress
++;
1672 rprintf(FINFO
, "mknod(%s, 0%o, [%ld,%ld])\n",
1673 fname
, (int)file
->mode
,
1674 (long)major(rdev
), (long)minor(rdev
));
1676 if (do_mknod(fname
, file
->mode
, rdev
) < 0) {
1677 rsyserr(FERROR_XFER
, errno
, "mknod %s failed",
1680 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1682 itemize(fname
, file
, ndx
, statret
, &sx
,
1683 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1685 if (code
!= FNONE
&& verbose
)
1686 rprintf(code
, "%s\n", fname
);
1687 #ifdef SUPPORT_HARD_LINKS
1688 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1689 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1691 if (remove_source_files
== 1)
1692 goto return_with_success
;
1697 if (!S_ISREG(file
->mode
)) {
1699 fname
= f_name(file
, NULL
);
1700 rprintf(FINFO
, "skipping non-regular file \"%s\"\n", fname
);
1704 if (max_size
> 0 && F_LENGTH(file
) > max_size
) {
1707 fname
= f_name(file
, NULL
);
1708 rprintf(FINFO
, "%s is over max-size\n", fname
);
1712 if (min_size
> 0 && F_LENGTH(file
) < min_size
) {
1715 fname
= f_name(file
, NULL
);
1716 rprintf(FINFO
, "%s is under min-size\n", fname
);
1721 if (update_only
> 0 && statret
== 0
1722 && cmp_time(sx
.st
.st_mtime
, file
->modtime
) > 0) {
1724 rprintf(FINFO
, "%s is newer\n", fname
);
1725 #ifdef SUPPORT_HARD_LINKS
1726 if (F_IS_HLINKED(file
))
1727 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1733 fnamecmp_type
= FNAMECMP_FNAME
;
1735 if (statret
== 0 && !S_ISREG(sx
.st
.st_mode
)) {
1736 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_FILE
) != 0)
1739 stat_errno
= ENOENT
;
1742 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1743 int j
= try_dests_reg(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1746 if (remove_source_files
== 1)
1747 goto return_with_success
;
1751 fnamecmp
= fnamecmpbuf
;
1760 if (partial_dir
&& (partialptr
= partial_dir_fname(fname
)) != NULL
1761 && link_stat(partialptr
, &partial_st
, 0) == 0
1762 && S_ISREG(partial_st
.st_mode
)) {
1764 goto prepare_to_open
;
1768 if (statret
!= 0 && fuzzy_dirlist
) {
1769 int j
= find_fuzzy(file
, fuzzy_dirlist
);
1771 fuzzy_file
= fuzzy_dirlist
->files
[j
];
1772 f_name(fuzzy_file
, fnamecmpbuf
);
1774 rprintf(FINFO
, "fuzzy basis selected for %s: %s\n",
1775 fname
, fnamecmpbuf
);
1777 sx
.st
.st_size
= F_LENGTH(fuzzy_file
);
1779 fnamecmp
= fnamecmpbuf
;
1780 fnamecmp_type
= FNAMECMP_FUZZY
;
1785 #ifdef SUPPORT_HARD_LINKS
1786 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1787 cur_flist
->in_progress
++;
1791 if (stat_errno
== ENOENT
)
1793 rsyserr(FERROR_XFER
, stat_errno
, "recv_generator: failed to stat %s",
1798 if (fnamecmp_type
<= FNAMECMP_BASIS_DIR_HIGH
)
1800 else if (fnamecmp_type
== FNAMECMP_FUZZY
)
1802 else if (unchanged_file(fnamecmp
, file
, &sx
.st
)) {
1804 do_unlink(partialptr
);
1805 handle_partial_dir(partialptr
, PDIR_DELETE
);
1807 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1809 itemize(fnamecmp
, file
, ndx
, statret
, &sx
, 0, 0, NULL
);
1810 #ifdef SUPPORT_HARD_LINKS
1811 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1812 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1814 if (remove_source_files
!= 1)
1816 return_with_success
:
1818 send_msg_int(MSG_SUCCESS
, ndx
);
1822 if (append_mode
> 0 && sx
.st
.st_size
>= F_LENGTH(file
)) {
1823 #ifdef SUPPORT_HARD_LINKS
1824 if (F_IS_HLINKED(file
))
1825 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1833 fnamecmp
= partialptr
;
1834 fnamecmp_type
= FNAMECMP_PARTIAL_DIR
;
1841 if (read_batch
|| whole_file
) {
1842 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1843 if (!(backupptr
= get_backup_name(fname
)))
1845 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
)))
1846 goto pretend_missing
;
1847 if (copy_file(fname
, backupptr
, -1, back_file
->mode
, 1) < 0) {
1848 unmake_file(back_file
);
1856 if (fuzzy_dirlist
) {
1857 int j
= flist_find(fuzzy_dirlist
, file
);
1858 if (j
>= 0) /* don't use changing file as future fuzzy basis */
1859 fuzzy_dirlist
->files
[j
]->flags
|= FLAG_FILE_SENT
;
1863 if ((fd
= do_open(fnamecmp
, O_RDONLY
, 0)) < 0) {
1864 rsyserr(FERROR
, errno
, "failed to open %s, continuing",
1865 full_fname(fnamecmp
));
1867 /* pretend the file didn't exist */
1868 #ifdef SUPPORT_HARD_LINKS
1869 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1870 cur_flist
->in_progress
++;
1874 statret
= real_ret
= -1;
1878 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1879 if (!(backupptr
= get_backup_name(fname
))) {
1883 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
))) {
1885 goto pretend_missing
;
1887 if (robust_unlink(backupptr
) && errno
!= ENOENT
) {
1888 rsyserr(FERROR_XFER
, errno
, "unlink %s",
1889 full_fname(backupptr
));
1890 unmake_file(back_file
);
1895 if ((f_copy
= do_open(backupptr
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, 0600)) < 0) {
1896 int save_errno
= errno
? errno
: EINVAL
; /* 0 paranoia */
1897 if (errno
== ENOENT
&& make_bak_dir(backupptr
) == 0) {
1898 if ((f_copy
= do_open(backupptr
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, 0600)) < 0)
1899 save_errno
= errno
? errno
: save_errno
;
1904 rsyserr(FERROR_XFER
, save_errno
, "open %s", full_fname(backupptr
));
1905 unmake_file(back_file
);
1911 fnamecmp_type
= FNAMECMP_BACKUP
;
1915 rprintf(FINFO
, "gen mapped %s of size %.0f\n",
1916 fnamecmp
, (double)sx
.st
.st_size
);
1920 rprintf(FINFO
, "generating and sending sums for %d\n", ndx
);
1923 if (remove_source_files
&& !delay_updates
&& !phase
&& !dry_run
)
1924 increment_active_files(ndx
, itemizing
, code
);
1925 if (inc_recurse
&& !dry_run
)
1926 cur_flist
->in_progress
++;
1927 #ifdef SUPPORT_HARD_LINKS
1928 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1929 file
->flags
|= FLAG_FILE_SENT
;
1931 write_ndx(f_out
, ndx
);
1933 int iflags
= ITEM_TRANSFER
;
1934 if (always_checksum
> 0)
1935 iflags
|= ITEM_REPORT_CHANGE
;
1936 if (fnamecmp_type
!= FNAMECMP_FNAME
)
1937 iflags
|= ITEM_BASIS_TYPE_FOLLOWS
;
1938 if (fnamecmp_type
== FNAMECMP_FUZZY
)
1939 iflags
|= ITEM_XNAME_FOLLOWS
;
1940 itemize(fnamecmp
, file
, -1, real_ret
, &real_sx
, iflags
, fnamecmp_type
,
1941 fuzzy_file
? fuzzy_file
->basename
: NULL
);
1946 #ifdef SUPPORT_XATTRS
1947 if (preserve_xattrs
)
1948 free_xattr(&real_sx
);
1953 #ifdef SUPPORT_HARD_LINKS
1954 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1955 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1962 if (statret
!= 0 || whole_file
)
1963 write_sum_head(f_out
, NULL
);
1964 else if (sx
.st
.st_size
<= 0) {
1965 write_sum_head(f_out
, NULL
);
1968 if (generate_and_send_sums(fd
, sx
.st
.st_size
, f_out
, f_copy
) < 0) {
1970 "WARNING: file is too large for checksum sending: %s\n",
1972 write_sum_head(f_out
, NULL
);
1979 int save_preserve_xattrs
= preserve_xattrs
;
1982 #ifdef SUPPORT_XATTRS
1983 if (preserve_xattrs
) {
1984 copy_xattrs(fname
, backupptr
);
1985 preserve_xattrs
= 0;
1988 set_file_attrs(backupptr
, back_file
, NULL
, NULL
, 0);
1989 preserve_xattrs
= save_preserve_xattrs
;
1991 rprintf(FINFO
, "backed up %s to %s\n",
1994 unmake_file(back_file
);
2001 #ifdef SUPPORT_XATTRS
2002 if (preserve_xattrs
)
2008 #ifdef SUPPORT_HARD_LINKS
2009 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
2010 enum logcode code
, int f_out
)
2012 char fbuf
[MAXPATHLEN
];
2014 struct file_list
*save_flist
= cur_flist
;
2016 /* If we skip the last item in a chain of links and there was a
2017 * prior non-skipped hard-link waiting to finish, finish it now. */
2018 if ((new_last_ndx
= skip_hard_link(file
, &cur_flist
)) < 0)
2021 file
= cur_flist
->files
[new_last_ndx
- cur_flist
->ndx_start
];
2022 cur_flist
->in_progress
--; /* undo prior increment */
2024 recv_generator(fbuf
, file
, new_last_ndx
, itemizing
, code
, f_out
);
2026 cur_flist
= save_flist
;
2030 static void touch_up_dirs(struct file_list
*flist
, int ndx
)
2032 static int counter
= 0;
2033 struct file_struct
*file
;
2040 end
= flist
->used
- 1;
2044 /* Fix any directory permissions that were modified during the
2045 * transfer and/or re-set any tweaked modified-time values. */
2046 for (i
= start
; i
<= end
; i
++, counter
++) {
2047 file
= flist
->files
[i
];
2048 if (!S_ISDIR(file
->mode
)
2049 || (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
2052 fname
= f_name(file
, NULL
);
2053 rprintf(FINFO
, "touch_up_dirs: %s (%d)\n",
2056 /* Be sure not to retouch permissions with --fake-super. */
2057 fix_dir_perms
= !am_root
&& !(file
->mode
& S_IWUSR
);
2058 if (!F_IS_ACTIVE(file
) || file
->flags
& FLAG_MISSING_DIR
2059 || !(need_retouch_dir_times
|| fix_dir_perms
))
2061 fname
= f_name(file
, NULL
);
2063 do_chmod(fname
, file
->mode
);
2064 if (need_retouch_dir_times
) {
2066 if (link_stat(fname
, &st
, 0) == 0
2067 && cmp_time(st
.st_mtime
, file
->modtime
) != 0)
2068 set_modtime(fname
, file
->modtime
, file
->mode
);
2070 if (counter
>= loopchk_limit
) {
2072 maybe_send_keepalive();
2074 maybe_flush_socket(0);
2080 void check_for_finished_files(int itemizing
, enum logcode code
, int check_redo
)
2082 struct file_struct
*file
;
2083 struct file_list
*flist
;
2084 char fbuf
[MAXPATHLEN
];
2088 #ifdef SUPPORT_HARD_LINKS
2089 if (preserve_hard_links
&& (ndx
= get_hlink_num()) != -1) {
2090 flist
= flist_for_ndx(ndx
, "check_for_finished_files.1");
2091 file
= flist
->files
[ndx
- flist
->ndx_start
];
2092 assert(file
->flags
& FLAG_HLINKED
);
2093 finish_hard_link(file
, f_name(file
, fbuf
), ndx
, NULL
, itemizing
, code
, -1);
2094 flist
->in_progress
--;
2099 if (check_redo
&& (ndx
= get_redo_num()) != -1) {
2100 csum_length
= SUM_LENGTH
;
2101 max_size
= -max_size
;
2102 min_size
= -min_size
;
2103 ignore_existing
= -ignore_existing
;
2104 ignore_non_existing
= -ignore_non_existing
;
2105 update_only
= -update_only
;
2106 always_checksum
= -always_checksum
;
2107 size_only
= -size_only
;
2108 append_mode
= -append_mode
;
2109 make_backups
= -make_backups
; /* avoid dup backup w/inplace */
2113 cur_flist
= flist_for_ndx(ndx
, "check_for_finished_files.2");
2115 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
2117 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2120 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, sock_f_out
);
2121 cur_flist
->to_redo
--;
2125 csum_length
= SHORT_SUM_LENGTH
;
2126 max_size
= -max_size
;
2127 min_size
= -min_size
;
2128 ignore_existing
= -ignore_existing
;
2129 ignore_non_existing
= -ignore_non_existing
;
2130 update_only
= -update_only
;
2131 always_checksum
= -always_checksum
;
2132 size_only
= -size_only
;
2133 append_mode
= -append_mode
;
2134 make_backups
= -make_backups
;
2139 if (cur_flist
== first_flist
)
2142 /* We only get here if inc_recurse is enabled. */
2143 if (first_flist
->in_progress
|| first_flist
->to_redo
)
2146 write_ndx(sock_f_out
, NDX_DONE
);
2148 maybe_flush_socket(1);
2150 if (delete_during
== 2 || !dir_tweaking
) {
2151 /* Skip directory touch-up. */
2152 } else if (first_flist
->parent_ndx
>= 0)
2153 touch_up_dirs(dir_flist
, first_flist
->parent_ndx
);
2155 flist_free(first_flist
); /* updates first_flist */
2159 void generate_files(int f_out
, const char *local_name
)
2161 int i
, ndx
, next_loopchk
= 0;
2162 char fbuf
[MAXPATHLEN
];
2165 int save_do_progress
= do_progress
;
2167 if (protocol_version
>= 29) {
2169 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2170 code
= logfile_format_has_i
? FNONE
: FLOG
;
2171 } else if (am_daemon
) {
2172 itemizing
= logfile_format_has_i
&& do_xfers
;
2173 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2174 code
= itemizing
|| !do_xfers
? FCLIENT
: FINFO
;
2175 } else if (!am_server
) {
2176 itemizing
= stdout_format_has_i
;
2177 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2178 code
= itemizing
? FNONE
: FINFO
;
2181 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2184 solo_file
= local_name
;
2185 dir_tweaking
= !(list_only
|| solo_file
|| dry_run
);
2186 need_retouch_dir_times
= preserve_times
> 1;
2187 loopchk_limit
= allowed_lull
? allowed_lull
* 5 : 200;
2188 symlink_timeset_failed_flags
= ITEM_REPORT_TIME
2189 | (protocol_version
>= 30 || !am_server
? ITEM_REPORT_TIMEFAIL
: 0);
2190 implied_dirs_are_missing
= relative_paths
&& !implied_dirs
&& protocol_version
< 30;
2193 rprintf(FINFO
, "generator starting pid=%ld\n", (long)getpid());
2195 if (delete_before
&& !solo_file
&& cur_flist
->used
> 0)
2197 if (delete_during
== 2) {
2198 deldelay_size
= BIGPATHBUFLEN
* 4;
2199 deldelay_buf
= new_array(char, deldelay_size
);
2201 out_of_memory("delete-delay");
2205 if (append_mode
> 0 || whole_file
< 0)
2208 rprintf(FINFO
, "delta-transmission %s\n",
2210 ? "disabled for local transfer or --whole-file"
2214 dflt_perms
= (ACCESSPERMS
& ~orig_umask
);
2217 #ifdef SUPPORT_HARD_LINKS
2218 if (preserve_hard_links
&& inc_recurse
) {
2219 while (!flist_eof
&& file_total
< FILECNT_LOOKAHEAD
/2)
2220 wait_for_receiver();
2224 if (inc_recurse
&& cur_flist
->parent_ndx
>= 0) {
2225 struct file_struct
*fp
= dir_flist
->files
[cur_flist
->parent_ndx
];
2227 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2230 ndx
= cur_flist
->ndx_start
- 1;
2231 recv_generator(fbuf
, fp
, ndx
, itemizing
, code
, f_out
);
2232 if (delete_during
&& dry_run
< 2 && !list_only
2233 && !(fp
->flags
& FLAG_MISSING_DIR
)) {
2234 if (fp
->flags
& FLAG_CONTENT_DIR
) {
2236 if (one_file_system
) {
2237 uint32
*devp
= F_DIR_DEV_P(fp
);
2238 dirdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
2240 dirdev
= MAKEDEV(0, 0);
2241 delete_in_dir(fbuf
, fp
, &dirdev
);
2243 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(fp
));
2246 for (i
= cur_flist
->low
; i
<= cur_flist
->high
; i
++) {
2247 struct file_struct
*file
= cur_flist
->sorted
[i
];
2249 if (!F_IS_ACTIVE(file
))
2255 ndx
= i
+ cur_flist
->ndx_start
;
2258 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2261 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, f_out
);
2263 check_for_finished_files(itemizing
, code
, 0);
2265 if (i
+ cur_flist
->ndx_start
>= next_loopchk
) {
2267 maybe_send_keepalive();
2269 maybe_flush_socket(0);
2270 next_loopchk
+= loopchk_limit
;
2275 write_ndx(f_out
, NDX_DONE
);
2280 check_for_finished_files(itemizing
, code
, 1);
2281 if (cur_flist
->next
|| flist_eof
)
2283 wait_for_receiver();
2285 } while ((cur_flist
= cur_flist
->next
) != NULL
);
2288 delete_in_dir(NULL
, NULL
, &dev_zero
);
2291 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2294 check_for_finished_files(itemizing
, code
, 1);
2297 wait_for_receiver();
2302 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2304 write_ndx(f_out
, NDX_DONE
);
2306 /* Reduce round-trip lag-time for a useless delay-updates phase. */
2307 if (protocol_version
>= 29 && !delay_updates
)
2308 write_ndx(f_out
, NDX_DONE
);
2310 /* Read MSG_DONE for the redo phase (and any prior messages). */
2312 check_for_finished_files(itemizing
, code
, 0);
2313 if (msgdone_cnt
> 1)
2315 wait_for_receiver();
2318 if (protocol_version
>= 29) {
2321 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2323 write_ndx(f_out
, NDX_DONE
);
2324 /* Read MSG_DONE for delay-updates phase & prior messages. */
2325 while (msgdone_cnt
== 2)
2326 wait_for_receiver();
2329 do_progress
= save_do_progress
;
2330 if (delete_during
== 2)
2331 do_delayed_deletions(fbuf
);
2332 if (delete_after
&& !solo_file
&& file_total
> 0)
2335 if ((need_retouch_dir_perms
|| need_retouch_dir_times
)
2336 && dir_tweaking
&& (!inc_recurse
|| delete_during
== 2))
2337 touch_up_dirs(dir_flist
, -1);
2339 if (max_delete
>= 0 && deletion_count
> max_delete
) {
2341 "Deletions stopped due to --max-delete limit (%d skipped)\n",
2342 deletion_count
- max_delete
);
2343 io_error
|= IOERR_DEL_LIMIT
;
2347 rprintf(FINFO
, "generate_files finished\n");