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-2020 Wayne Davison
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
29 extern int stdout_format_has_i
;
30 extern int logfile_format_has_i
;
34 extern int inc_recurse
;
35 extern int relative_paths
;
36 extern int implied_dirs
;
37 extern int keep_dirlinks
;
38 extern int preserve_acls
;
39 extern int preserve_xattrs
;
40 extern int preserve_links
;
41 extern int preserve_devices
;
42 extern int write_devices
;
43 extern int preserve_specials
;
44 extern int preserve_hard_links
;
45 extern int preserve_executability
;
46 extern int preserve_perms
;
47 extern int preserve_times
;
48 extern int delete_mode
;
49 extern int delete_before
;
50 extern int delete_during
;
51 extern int delete_after
;
52 extern int missing_args
;
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 human_readable
;
59 extern int ignore_existing
;
60 extern int ignore_non_existing
;
61 extern int want_xattr_optim
;
62 extern int modify_window
;
64 extern int append_mode
;
65 extern int make_backups
;
66 extern int csum_length
;
67 extern int ignore_times
;
69 extern OFF_T max_size
;
70 extern OFF_T min_size
;
73 extern int allowed_lull
;
74 extern int sock_f_out
;
75 extern int protocol_version
;
76 extern int file_total
;
77 extern int fuzzy_basis
;
78 extern int always_checksum
;
79 extern int flist_csum_len
;
80 extern char *partial_dir
;
81 extern int alt_dest_type
;
82 extern int whole_file
;
84 extern int read_batch
;
85 extern int write_batch
;
86 extern int safe_symlinks
;
87 extern long block_size
; /* "long" because popt can't set an int32. */
88 extern int unsort_ndx
;
89 extern int max_delete
;
90 extern int force_delete
;
91 extern int one_file_system
;
92 extern int skipped_deletes
;
93 extern dev_t filesystem_dev
;
94 extern mode_t orig_umask
;
97 extern char *basis_dir
[MAX_BASIS_DIRS
+1];
98 extern struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
99 extern filter_rule_list filter_list
, daemon_filter_list
;
101 int maybe_ATTRS_REPORT
= 0;
102 int maybe_ATTRS_ACCURATE_TIME
= 0;
104 static dev_t dev_zero
;
105 static int deldelay_size
= 0, deldelay_cnt
= 0;
106 static char *deldelay_buf
= NULL
;
107 static int deldelay_fd
= -1;
108 static int loopchk_limit
;
109 static int dir_tweaking
;
110 static int symlink_timeset_failed_flags
;
111 static int need_retouch_dir_times
;
112 static int need_retouch_dir_perms
;
113 static const char *solo_file
= NULL
;
116 TYPE_DIR
, TYPE_SPECIAL
, TYPE_DEVICE
, TYPE_SYMLINK
119 /* Forward declarations. */
120 #ifdef SUPPORT_HARD_LINKS
121 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
122 enum logcode code
, int f_out
);
125 #define EARLY_DELAY_DONE_MSG() (!delay_updates)
126 #define EARLY_DELETE_DONE_MSG() (!(delete_during == 2 || delete_after))
128 static int start_delete_delay_temp(void)
130 char fnametmp
[MAXPATHLEN
];
131 int save_dry_run
= dry_run
;
134 if (!get_tmpname(fnametmp
, "deldelay", False
)
135 || (deldelay_fd
= do_mkstemp(fnametmp
, 0600)) < 0) {
136 rprintf(FINFO
, "NOTE: Unable to create delete-delay temp file%s.\n",
137 inc_recurse
? "" : " -- switching to --delete-after");
139 delete_after
= !inc_recurse
;
140 dry_run
= save_dry_run
;
144 dry_run
= save_dry_run
;
148 static int flush_delete_delay(void)
150 if (deldelay_fd
< 0 && !start_delete_delay_temp())
152 if (write(deldelay_fd
, deldelay_buf
, deldelay_cnt
) != deldelay_cnt
) {
153 rsyserr(FERROR
, errno
, "flush of delete-delay buffer");
155 delete_after
= !inc_recurse
;
163 static int remember_delete(struct file_struct
*file
, const char *fname
, int flags
)
167 if (deldelay_cnt
== deldelay_size
&& !flush_delete_delay())
170 if (flags
& DEL_NO_UID_WRITE
)
171 deldelay_buf
[deldelay_cnt
++] = '!';
174 len
= snprintf(deldelay_buf
+ deldelay_cnt
, deldelay_size
- deldelay_cnt
,
175 "%x %s%c", (int)file
->mode
, fname
, '\0');
176 if ((deldelay_cnt
+= len
) <= deldelay_size
)
179 if (!flush_delete_delay())
186 static int read_delay_line(char *buf
, int *flags_p
)
188 static int read_pos
= 0;
190 char *bp
, *past_space
;
193 for (j
= read_pos
; j
< deldelay_cnt
&& deldelay_buf
[j
]; j
++) {}
194 if (j
< deldelay_cnt
)
196 if (deldelay_fd
< 0) {
201 deldelay_cnt
-= read_pos
;
202 if (deldelay_cnt
== deldelay_size
)
204 if (deldelay_cnt
&& read_pos
) {
205 memmove(deldelay_buf
, deldelay_buf
+ read_pos
,
208 len
= read(deldelay_fd
, deldelay_buf
+ deldelay_cnt
,
209 deldelay_size
- deldelay_cnt
);
212 rprintf(FERROR
, "ERROR: unexpected EOF in delete-delay file.\n");
217 rsyserr(FERROR
, errno
,
218 "reading delete-delay file");
225 bp
= deldelay_buf
+ read_pos
;
228 *flags_p
= DEL_NO_UID_WRITE
;
232 if (sscanf(bp
, "%x ", &mode
) != 1) {
234 rprintf(FERROR
, "ERROR: invalid data in delete-delay file.\n");
237 past_space
= strchr(bp
, ' ') + 1;
238 len
= j
- read_pos
- (past_space
- bp
) + 1; /* count the '\0' */
241 if (len
> MAXPATHLEN
) {
242 rprintf(FERROR
, "ERROR: filename too long in delete-delay file.\n");
246 /* The caller needs the name in a MAXPATHLEN buffer, so we copy it
247 * instead of returning a pointer to our buffer. */
248 memcpy(buf
, past_space
, len
);
253 static void do_delayed_deletions(char *delbuf
)
257 if (deldelay_fd
>= 0) {
258 if (deldelay_cnt
&& !flush_delete_delay())
260 lseek(deldelay_fd
, 0, 0);
262 while ((mode
= read_delay_line(delbuf
, &flags
)) >= 0)
263 delete_item(delbuf
, mode
, flags
| DEL_RECURSE
);
264 if (deldelay_fd
>= 0)
268 /* This function is used to implement per-directory deletion, and is used by
269 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
270 * MAXPATHLEN buffer with the name of the directory in it (the functions we
271 * call will append names onto the end, but the old dir value will be restored
273 static void delete_in_dir(char *fbuf
, struct file_struct
*file
, dev_t
*fs_dev
)
275 static int already_warned
= 0;
276 static struct hashtable
*dev_tbl
;
277 struct file_list
*dirlist
;
278 char delbuf
[MAXPATHLEN
];
282 change_local_filter_dir(NULL
, 0, 0);
286 if (DEBUG_GTE(DEL
, 2))
287 rprintf(FINFO
, "delete_in_dir(%s)\n", fbuf
);
290 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
292 if (io_error
& IOERR_GENERAL
&& !ignore_errors
) {
296 "IO error encountered -- skipping file deletion\n");
302 change_local_filter_dir(fbuf
, dlen
, F_DEPTH(file
));
304 if (one_file_system
) {
306 dev_tbl
= hashtable_create(16, HT_KEY64
);
307 if (file
->flags
& FLAG_TOP_DIR
) {
308 hashtable_find(dev_tbl
, *fs_dev
+1, "");
309 filesystem_dev
= *fs_dev
;
310 } else if (filesystem_dev
!= *fs_dev
) {
311 if (!hashtable_find(dev_tbl
, *fs_dev
+1, NULL
))
313 filesystem_dev
= *fs_dev
; /* it's a prior top-dir dev */
317 dirlist
= get_dirlist(fbuf
, dlen
, 0);
319 /* If an item in dirlist is not found in flist, delete it
320 * from the filesystem. */
321 for (i
= dirlist
->used
; i
--; ) {
322 struct file_struct
*fp
= dirlist
->files
[i
];
323 if (!F_IS_ACTIVE(fp
))
325 if (fp
->flags
& FLAG_MOUNT_DIR
&& S_ISDIR(fp
->mode
)) {
326 if (INFO_GTE(MOUNT
, 1))
327 rprintf(FINFO
, "cannot delete mount point: %s\n",
331 /* Here we want to match regardless of file type. Replacement
332 * of a file with one of another type is handled separately by
333 * a delete_item call with a DEL_MAKE_ROOM flag. */
334 if (flist_find_ignore_dirness(cur_flist
, fp
) < 0) {
335 int flags
= DEL_RECURSE
;
336 if (!(fp
->mode
& S_IWUSR
) && !am_root
&& fp
->flags
& FLAG_OWNED_BY_US
)
337 flags
|= DEL_NO_UID_WRITE
;
339 if (delete_during
== 2) {
340 if (!remember_delete(fp
, delbuf
, flags
))
343 delete_item(delbuf
, fp
->mode
, flags
);
350 /* This deletes any files on the receiving side that are not present on the
351 * sending side. This is used by --delete-before and --delete-after. */
352 static void do_delete_pass(void)
354 char fbuf
[MAXPATHLEN
];
358 /* dry_run is incremented when the destination doesn't exist yet. */
359 if (dry_run
> 1 || list_only
)
362 for (j
= 0; j
< cur_flist
->used
; j
++) {
363 struct file_struct
*file
= cur_flist
->sorted
[j
];
365 if (!F_IS_ACTIVE(file
))
370 if (!(file
->flags
& FLAG_CONTENT_DIR
)) {
371 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(file
));
375 if (DEBUG_GTE(DEL
, 1) && file
->flags
& FLAG_TOP_DIR
)
376 rprintf(FINFO
, "deleting in %s\n", fbuf
);
378 if (link_stat(fbuf
, &st
, keep_dirlinks
) < 0
379 || !S_ISDIR(st
.st_mode
))
382 delete_in_dir(fbuf
, file
, &st
.st_dev
);
384 delete_in_dir(NULL
, NULL
, &dev_zero
);
386 if (INFO_GTE(FLIST
, 2) && !am_server
)
387 rprintf(FINFO
, " \r");
390 static inline int mtime_differs(STRUCT_STAT
*stp
, struct file_struct
*file
)
393 return !same_time(stp
->st_mtime
, stp
->ST_MTIME_NSEC
, file
->modtime
, F_MOD_NSEC_or_0(file
));
395 return !same_time(stp
->st_mtime
, 0, file
->modtime
, 0);
399 static inline int perms_differ(struct file_struct
*file
, stat_x
*sxp
)
402 return !BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
);
404 if (preserve_executability
)
405 return (sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0);
410 static inline int ownership_differs(struct file_struct
*file
, stat_x
*sxp
)
412 if (am_root
&& uid_ndx
&& sxp
->st
.st_uid
!= (uid_t
)F_OWNER(file
))
415 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
) && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
422 static inline int acls_differ(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
425 if (!ACL_READY(*sxp
))
427 if (set_acl(NULL
, file
, sxp
, file
->mode
))
435 #ifdef SUPPORT_XATTRS
436 static inline int xattrs_differ(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
438 if (preserve_xattrs
) {
439 if (!XATTR_READY(*sxp
))
440 get_xattr(fname
, sxp
);
441 if (xattr_diff(file
, sxp
, 0))
449 int unchanged_attrs(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
451 if (S_ISLNK(file
->mode
)) {
452 #ifdef CAN_SET_SYMLINK_TIMES
453 if (preserve_times
& PRESERVE_LINK_TIMES
&& mtime_differs(&sxp
->st
, file
))
456 #ifdef CAN_CHMOD_SYMLINK
457 if (perms_differ(file
, sxp
))
460 #ifdef CAN_CHOWN_SYMLINK
461 if (ownership_differs(file
, sxp
))
464 #if defined SUPPORT_ACLS && 0 /* no current symlink-ACL support */
465 if (acls_differ(fname
, file
, sxp
))
468 #if defined SUPPORT_XATTRS && !defined NO_SYMLINK_XATTRS
469 if (xattrs_differ(fname
, file
, sxp
))
473 if (preserve_times
&& mtime_differs(&sxp
->st
, file
))
475 if (perms_differ(file
, sxp
))
477 if (ownership_differs(file
, sxp
))
480 if (acls_differ(fname
, file
, sxp
))
483 #ifdef SUPPORT_XATTRS
484 if (xattrs_differ(fname
, file
, sxp
))
492 void itemize(const char *fnamecmp
, struct file_struct
*file
, int ndx
, int statret
,
493 stat_x
*sxp
, int32 iflags
, uchar fnamecmp_type
,
496 if (statret
>= 0) { /* A from-dest-dir statret can == 1! */
497 int keep_time
= !preserve_times
? 0
498 : S_ISDIR(file
->mode
) ? preserve_times
& PRESERVE_DIR_TIMES
499 : S_ISLNK(file
->mode
) ? preserve_times
& PRESERVE_LINK_TIMES
502 if (S_ISREG(file
->mode
) && F_LENGTH(file
) != sxp
->st
.st_size
)
503 iflags
|= ITEM_REPORT_SIZE
;
504 if (file
->flags
& FLAG_TIME_FAILED
) { /* symlinks only */
505 if (iflags
& ITEM_LOCAL_CHANGE
)
506 iflags
|= symlink_timeset_failed_flags
;
508 ? mtime_differs(&sxp
->st
, file
)
509 : iflags
& (ITEM_TRANSFER
|ITEM_LOCAL_CHANGE
) && !(iflags
& ITEM_MATCHED
)
510 && (!(iflags
& ITEM_XNAME_FOLLOWS
) || *xname
))
511 iflags
|= ITEM_REPORT_TIME
;
512 if (atimes_ndx
&& !S_ISDIR(file
->mode
) && !S_ISLNK(file
->mode
)
513 && !same_time(F_ATIME(file
), 0, sxp
->st
.st_atime
, 0))
514 iflags
|= ITEM_REPORT_ATIME
;
515 #if !defined HAVE_LCHMOD && !defined HAVE_SETATTRLIST
516 if (S_ISLNK(file
->mode
)) {
520 if (preserve_perms
) {
521 if (!BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
))
522 iflags
|= ITEM_REPORT_PERMS
;
523 } else if (preserve_executability
524 && ((sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0)))
525 iflags
|= ITEM_REPORT_PERMS
;
526 if (uid_ndx
&& am_root
&& (uid_t
)F_OWNER(file
) != sxp
->st
.st_uid
)
527 iflags
|= ITEM_REPORT_OWNER
;
528 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
) && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
529 iflags
|= ITEM_REPORT_GROUP
;
531 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
532 if (!ACL_READY(*sxp
))
533 get_acl(fnamecmp
, sxp
);
534 if (set_acl(NULL
, file
, sxp
, file
->mode
))
535 iflags
|= ITEM_REPORT_ACL
;
538 #ifdef SUPPORT_XATTRS
539 if (preserve_xattrs
) {
540 if (!XATTR_READY(*sxp
))
541 get_xattr(fnamecmp
, sxp
);
542 if (xattr_diff(file
, sxp
, 1))
543 iflags
|= ITEM_REPORT_XATTR
;
547 #ifdef SUPPORT_XATTRS
548 if (preserve_xattrs
&& xattr_diff(file
, NULL
, 1))
549 iflags
|= ITEM_REPORT_XATTR
;
551 iflags
|= ITEM_IS_NEW
;
555 if ((iflags
& (SIGNIFICANT_ITEM_FLAGS
|ITEM_REPORT_XATTR
) || INFO_GTE(NAME
, 2)
556 || stdout_format_has_i
> 1 || (xname
&& *xname
)) && !read_batch
) {
557 if (protocol_version
>= 29) {
559 write_ndx(sock_f_out
, ndx
);
560 write_shortint(sock_f_out
, iflags
);
561 if (iflags
& ITEM_BASIS_TYPE_FOLLOWS
)
562 write_byte(sock_f_out
, fnamecmp_type
);
563 if (iflags
& ITEM_XNAME_FOLLOWS
)
564 write_vstring(sock_f_out
, xname
, strlen(xname
));
565 #ifdef SUPPORT_XATTRS
566 if (preserve_xattrs
&& do_xfers
567 && iflags
& (ITEM_REPORT_XATTR
|ITEM_TRANSFER
)) {
568 int fd
= iflags
& ITEM_REPORT_XATTR
569 && !(want_xattr_optim
&& BITS_SET(iflags
, ITEM_XNAME_FOLLOWS
|ITEM_LOCAL_CHANGE
))
571 send_xattr_request(NULL
, file
, fd
);
574 } else if (ndx
>= 0) {
575 enum logcode code
= logfile_format_has_i
? FINFO
: FCLIENT
;
576 log_item(code
, file
, iflags
, xname
);
582 /* Perform our quick-check heuristic for determining if a file is unchanged. */
583 int unchanged_file(char *fn
, struct file_struct
*file
, STRUCT_STAT
*st
)
585 if (st
->st_size
!= F_LENGTH(file
))
588 /* if always checksum is set then we use the checksum instead
589 of the file time to determine whether to sync */
590 if (always_checksum
> 0 && S_ISREG(st
->st_mode
)) {
591 char sum
[MAX_DIGEST_LEN
];
592 file_checksum(fn
, st
, sum
);
593 return memcmp(sum
, F_SUM(file
), flist_csum_len
) == 0;
602 return !mtime_differs(st
, file
);
607 * set (initialize) the size entries in the per-file sum_struct
608 * calculating dynamic block and checksum sizes.
610 * This is only called from generate_and_send_sums() but is a separate
611 * function to encapsulate the logic.
613 * The block size is a rounded square root of file length.
615 * The checksum size is determined according to:
616 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
617 * provided by Donovan Baarda which gives a probability of rsync
618 * algorithm corrupting data and falling back using the whole md4
621 * This might be made one of several selectable heuristics.
623 static void sum_sizes_sqroot(struct sum_struct
*sum
, int64 len
)
630 /* The file length overflowed our int64 var, so we can't process this file. */
631 sum
->count
= -1; /* indicate overflow error */
636 blength
= block_size
;
637 else if (len
<= BLOCK_SIZE
* BLOCK_SIZE
)
638 blength
= BLOCK_SIZE
;
640 int32 max_blength
= protocol_version
< 30 ? OLD_MAX_BLOCK_SIZE
: MAX_BLOCK_SIZE
;
643 for (c
= 1, l
= len
, cnt
= 0; l
>>= 2; c
<<= 1, cnt
++) {}
644 if (c
< 0 || c
>= max_blength
)
645 blength
= max_blength
;
650 if (len
< (int64
)blength
* blength
)
653 } while (c
>= 8); /* round to multiple of 8 */
654 blength
= MAX(blength
, BLOCK_SIZE
);
658 if (protocol_version
< 27) {
659 s2length
= csum_length
;
660 } else if (csum_length
== SUM_LENGTH
) {
661 s2length
= SUM_LENGTH
;
664 int b
= BLOCKSUM_BIAS
;
665 for (l
= len
; l
>>= 1; b
+= 2) {}
666 for (c
= blength
; (c
>>= 1) && b
; b
--) {}
667 /* add a bit, subtract rollsum, round up. */
668 s2length
= (b
+ 1 - 32 + 7) / 8; /* --optimize in compiler-- */
669 s2length
= MAX(s2length
, csum_length
);
670 s2length
= MIN(s2length
, SUM_LENGTH
);
674 sum
->blength
= blength
;
675 sum
->s2length
= s2length
;
676 sum
->remainder
= (int32
)(len
% blength
);
677 sum
->count
= (int32
)(l
= (len
/ blength
) + (sum
->remainder
!= 0));
679 if ((int64
)sum
->count
!= l
)
682 if (sum
->count
&& DEBUG_GTE(DELTASUM
, 2)) {
684 "count=%s rem=%ld blength=%ld s2length=%d flength=%s\n",
685 big_num(sum
->count
), (long)sum
->remainder
, (long)sum
->blength
,
686 sum
->s2length
, big_num(sum
->flength
));
692 * Generate and send a stream of signatures/checksums that describe a buffer
694 * Generate approximately one checksum every block_len bytes.
696 static int generate_and_send_sums(int fd
, OFF_T len
, int f_out
, int f_copy
)
699 struct map_struct
*mapbuf
;
700 struct sum_struct sum
;
703 sum_sizes_sqroot(&sum
, len
);
706 write_sum_head(f_out
, &sum
);
708 if (append_mode
> 0 && f_copy
< 0)
712 mapbuf
= map_file(fd
, len
, MAX_MAP_SIZE
, sum
.blength
);
716 for (i
= 0; i
< sum
.count
; i
++) {
717 int32 n1
= (int32
)MIN(len
, (OFF_T
)sum
.blength
);
718 char *map
= map_ptr(mapbuf
, offset
, n1
);
719 char sum2
[SUM_LENGTH
];
726 full_write(f_copy
, map
, n1
);
731 sum1
= get_checksum1(map
, n1
);
732 get_checksum2(map
, n1
, sum2
);
734 if (DEBUG_GTE(DELTASUM
, 3)) {
736 "chunk[%s] offset=%s len=%ld sum1=%08lx\n",
737 big_num(i
), big_num(offset
- n1
), (long)n1
,
738 (unsigned long)sum1
);
740 write_int(f_out
, sum1
);
741 write_buf(f_out
, sum2
, sum
.s2length
);
751 /* Try to find a filename in the same dir as "fname" with a similar name. */
752 static struct file_struct
*find_fuzzy(struct file_struct
*file
, struct file_list
*dirlist_array
[], uchar
*fnamecmp_type_ptr
)
754 int fname_len
, fname_suf_len
;
755 const char *fname_suf
, *fname
= file
->basename
;
756 uint32 lowest_dist
= 25 << 16; /* ignore a distance greater than 25 */
758 struct file_struct
*lowest_fp
= NULL
;
760 fname_len
= strlen(fname
);
761 fname_suf
= find_filename_suffix(fname
, fname_len
, &fname_suf_len
);
763 /* Try to find an exact size+mtime match first. */
764 for (i
= 0; i
< fuzzy_basis
; i
++) {
765 struct file_list
*dirlist
= dirlist_array
[i
];
770 for (j
= 0; j
< dirlist
->used
; j
++) {
771 struct file_struct
*fp
= dirlist
->files
[j
];
773 if (!F_IS_ACTIVE(fp
))
776 if (!S_ISREG(fp
->mode
) || !F_LENGTH(fp
) || fp
->flags
& FLAG_FILE_SENT
)
779 if (F_LENGTH(fp
) == F_LENGTH(file
) && same_time(fp
->modtime
, 0, file
->modtime
, 0)) {
780 if (DEBUG_GTE(FUZZY
, 2))
781 rprintf(FINFO
, "fuzzy size/modtime match for %s\n", f_name(fp
, NULL
));
782 *fnamecmp_type_ptr
= FNAMECMP_FUZZY
+ i
;
789 for (i
= 0; i
< fuzzy_basis
; i
++) {
790 struct file_list
*dirlist
= dirlist_array
[i
];
795 for (j
= 0; j
< dirlist
->used
; j
++) {
796 struct file_struct
*fp
= dirlist
->files
[j
];
797 const char *suf
, *name
;
801 if (!F_IS_ACTIVE(fp
))
804 if (!S_ISREG(fp
->mode
) || !F_LENGTH(fp
) || fp
->flags
& FLAG_FILE_SENT
)
809 suf
= find_filename_suffix(name
, len
, &suf_len
);
811 dist
= fuzzy_distance(name
, len
, fname
, fname_len
);
812 /* Add some extra weight to how well the suffixes match. */
813 dist
+= fuzzy_distance(suf
, suf_len
, fname_suf
, fname_suf_len
) * 10;
814 if (DEBUG_GTE(FUZZY
, 2)) {
815 rprintf(FINFO
, "fuzzy distance for %s = %d.%05d\n",
816 f_name(fp
, NULL
), (int)(dist
>>16), (int)(dist
&0xFFFF));
818 if (dist
<= lowest_dist
) {
821 *fnamecmp_type_ptr
= FNAMECMP_FUZZY
+ i
;
829 /* Copy a file found in our --copy-dest handling. */
830 static int copy_altdest_file(const char *src
, const char *dest
, struct file_struct
*file
)
832 char buf
[MAXPATHLEN
];
833 const char *copy_to
, *partialptr
;
834 int save_preserve_xattrs
= preserve_xattrs
;
838 /* Let copy_file open the destination in place. */
842 fd_w
= open_tmpfile(buf
, dest
, file
);
847 cleanup_set(copy_to
, NULL
, NULL
, -1, -1);
848 if (copy_file(src
, copy_to
, fd_w
, file
->mode
) < 0) {
849 if (INFO_GTE(COPY
, 1)) {
850 rsyserr(FINFO
, errno
, "copy_file %s => %s",
851 full_fname(src
), copy_to
);
853 /* Try to clean up. */
858 partialptr
= partial_dir
? partial_dir_fname(dest
) : NULL
;
859 preserve_xattrs
= 0; /* xattrs were copied with file */
860 ok
= finish_transfer(dest
, copy_to
, src
, partialptr
, file
, 1, 0);
861 preserve_xattrs
= save_preserve_xattrs
;
866 /* This is only called for regular files. We return -2 if we've finished
867 * handling the file, -1 if no dest-linking occurred, or a non-negative
868 * value if we found an alternate basis file. If we're called with the
869 * find_exact_for_existing flag, the destination file already exists, so
870 * we only try to find an exact alt-dest match. In this case, the returns
871 * are only -2 & -1 (both as above). */
872 static int try_dests_reg(struct file_struct
*file
, char *fname
, int ndx
,
873 char *cmpbuf
, stat_x
*sxp
, int find_exact_for_existing
,
874 int itemizing
, enum logcode code
)
876 STRUCT_STAT real_st
= sxp
->st
;
882 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
883 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0 || !S_ISREG(sxp
->st
.st_mode
))
885 if (match_level
== 0) {
889 if (!unchanged_file(cmpbuf
, file
, &sxp
->st
))
891 if (match_level
== 1) {
895 if (unchanged_attrs(cmpbuf
, file
, sxp
)) {
901 } while (basis_dir
[++j
] != NULL
);
904 goto got_nothing_for_ya
;
906 if (j
!= best_match
) {
908 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
909 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
910 goto got_nothing_for_ya
;
913 if (match_level
== 3 && alt_dest_type
!= COPY_DEST
) {
914 if (find_exact_for_existing
) {
915 if (alt_dest_type
== LINK_DEST
&& real_st
.st_dev
== sxp
->st
.st_dev
&& real_st
.st_ino
== sxp
->st
.st_ino
)
917 if (do_unlink(fname
) < 0 && errno
!= ENOENT
)
918 goto got_nothing_for_ya
;
920 #ifdef SUPPORT_HARD_LINKS
921 if (alt_dest_type
== LINK_DEST
) {
922 if (!hard_link_one(file
, fname
, cmpbuf
, 1))
925 set_file_attrs(fname
, file
, sxp
, NULL
, 0);
926 if (preserve_hard_links
&& F_IS_HLINKED(file
))
927 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, j
);
928 if (!maybe_ATTRS_REPORT
&& (INFO_GTE(NAME
, 2) || stdout_format_has_i
> 1)) {
929 itemize(cmpbuf
, file
, ndx
, 1, sxp
,
930 ITEM_LOCAL_CHANGE
| ITEM_XNAME_FOLLOWS
,
937 itemize(cmpbuf
, file
, ndx
, 0, sxp
, 0, 0, NULL
);
939 if (INFO_GTE(NAME
, 2) && maybe_ATTRS_REPORT
)
940 rprintf(FCLIENT
, "%s is uptodate\n", fname
);
944 if (find_exact_for_existing
)
945 goto got_nothing_for_ya
;
947 if (match_level
>= 2) {
948 #ifdef SUPPORT_HARD_LINKS
949 try_a_copy
: /* Copy the file locally. */
951 if (!dry_run
&& copy_altdest_file(cmpbuf
, fname
, file
) < 0) {
952 if (find_exact_for_existing
) /* Can get here via hard-link failure */
953 goto got_nothing_for_ya
;
957 itemize(cmpbuf
, file
, ndx
, 0, sxp
, ITEM_LOCAL_CHANGE
, 0, NULL
);
958 if (maybe_ATTRS_REPORT
959 && ((!itemizing
&& INFO_GTE(NAME
, 1) && match_level
== 2)
960 || (INFO_GTE(NAME
, 2) && match_level
== 3))) {
961 code
= match_level
== 3 ? FCLIENT
: FINFO
;
962 rprintf(code
, "%s%s\n", fname
,
963 match_level
== 3 ? " is uptodate" : "");
965 #ifdef SUPPORT_HARD_LINKS
966 if (preserve_hard_links
&& F_IS_HLINKED(file
))
967 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, -1);
972 return FNAMECMP_BASIS_DIR_LOW
+ j
;
979 /* This is only called for non-regular files. We return -2 if we've finished
980 * handling the file, or -1 if no dest-linking occurred, or a non-negative
981 * value if we found an alternate basis file. */
982 static int try_dests_non(struct file_struct
*file
, char *fname
, int ndx
,
983 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
988 enum nonregtype type
;
991 char lnk
[MAXPATHLEN
];
996 #ifndef SUPPORT_LINKS
997 if (S_ISLNK(file
->mode
))
1000 if (S_ISDIR(file
->mode
)) {
1002 } else if (IS_SPECIAL(file
->mode
))
1003 type
= TYPE_SPECIAL
;
1004 else if (IS_DEVICE(file
->mode
))
1006 #ifdef SUPPORT_LINKS
1007 else if (S_ISLNK(file
->mode
))
1008 type
= TYPE_SYMLINK
;
1012 "internal: try_dests_non() called with invalid mode (%o)\n",
1014 exit_cleanup(RERR_UNSUPPORTED
);
1018 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1019 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1023 if (!S_ISDIR(sxp
->st
.st_mode
))
1027 if (!IS_SPECIAL(sxp
->st
.st_mode
))
1031 if (!IS_DEVICE(sxp
->st
.st_mode
))
1035 #ifdef SUPPORT_LINKS
1036 if (!S_ISLNK(sxp
->st
.st_mode
))
1043 if (match_level
< 1) {
1052 devp
= F_RDEV_P(file
);
1053 if (sxp
->st
.st_rdev
!= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
)))
1057 #ifdef SUPPORT_LINKS
1058 if ((len
= do_readlink(cmpbuf
, lnk
, MAXPATHLEN
-1)) <= 0)
1061 if (strcmp(lnk
, F_SYMLINK(file
)) != 0)
1068 if (match_level
< 2) {
1072 if (unchanged_attrs(cmpbuf
, file
, sxp
)) {
1077 } while (basis_dir
[++j
] != NULL
);
1082 if (j
!= best_match
) {
1084 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1085 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1089 if (match_level
== 3) {
1090 #ifdef SUPPORT_HARD_LINKS
1091 if (alt_dest_type
== LINK_DEST
1092 #ifndef CAN_HARDLINK_SYMLINK
1093 && !S_ISLNK(file
->mode
)
1095 #ifndef CAN_HARDLINK_SPECIAL
1096 && !IS_SPECIAL(file
->mode
) && !IS_DEVICE(file
->mode
)
1098 && !S_ISDIR(file
->mode
)) {
1099 if (do_link(cmpbuf
, fname
) < 0) {
1100 rsyserr(FERROR_XFER
, errno
,
1101 "failed to hard-link %s with %s",
1105 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1106 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1110 if (itemizing
&& stdout_format_has_i
1111 && (INFO_GTE(NAME
, 2) || stdout_format_has_i
> 1)) {
1112 int chg
= alt_dest_type
== COMPARE_DEST
&& type
!= TYPE_DIR
? 0
1113 : ITEM_LOCAL_CHANGE
+ (match_level
== 3 ? ITEM_XNAME_FOLLOWS
: 0);
1114 char *lp
= match_level
== 3 ? "" : NULL
;
1115 itemize(cmpbuf
, file
, ndx
, 0, sxp
, chg
+ ITEM_MATCHED
, 0, lp
);
1117 if (INFO_GTE(NAME
, 2) && maybe_ATTRS_REPORT
) {
1118 rprintf(FCLIENT
, "%s%s is uptodate\n",
1119 fname
, type
== TYPE_DIR
? "/" : "");
1127 static void list_file_entry(struct file_struct
*f
)
1129 char permbuf
[PERMSTRING_SIZE
];
1130 const char *mtime_str
= timestring(f
->modtime
);
1131 int size_width
= human_readable
? 14 : 11;
1132 int mtime_width
= 1 + strlen(mtime_str
);
1133 int atime_width
= atimes_ndx
? mtime_width
: 0;
1135 if (!F_IS_ACTIVE(f
)) {
1136 /* this can happen if duplicate names were removed */
1140 /* TODO: indicate '+' if the entry has an ACL. */
1142 if (missing_args
== 2 && f
->mode
== 0) {
1143 rprintf(FINFO
, "%-*s %s\n",
1144 10 + 1 + size_width
+ mtime_width
+ atime_width
, "*missing",
1147 const char *atime_str
= atimes_ndx
&& !S_ISDIR(f
->mode
) ? timestring(F_ATIME(f
)) : "";
1148 const char *arrow
, *lnk
;
1150 permstring(permbuf
, f
->mode
);
1152 #ifdef SUPPORT_LINKS
1153 if (preserve_links
&& S_ISLNK(f
->mode
)) {
1160 rprintf(FINFO
, "%s %*s %s%*s %s%s%s\n",
1161 permbuf
, size_width
, human_num(F_LENGTH(f
)),
1162 timestring(f
->modtime
), atime_width
, atime_str
,
1163 f_name(f
, NULL
), arrow
, lnk
);
1167 static int phase
= 0;
1168 static int dflt_perms
;
1170 static int implied_dirs_are_missing
;
1171 /* Helper for recv_generator's skip_dir and dry_missing_dir tests. */
1172 static BOOL
is_below(struct file_struct
*file
, struct file_struct
*subtree
)
1174 return F_DEPTH(file
) > F_DEPTH(subtree
)
1175 && (!implied_dirs_are_missing
|| f_name_has_prefix(file
, subtree
));
1178 /* Acts on the indicated item in cur_flist whose name is fname. If a dir,
1179 * make sure it exists, and has the right permissions/timestamp info. For
1180 * all other non-regular files (symlinks, etc.) we create them here. For
1181 * regular files that have changed, we try to find a basis file and then
1182 * start sending checksums. The ndx is the file's unique index value.
1184 * The fname parameter must point to a MAXPATHLEN buffer! (e.g it gets
1185 * passed to delete_item(), which can use it during a recursive delete.)
1187 * Note that f_out is set to -1 when doing final directory-permission and
1188 * modification-time repair. */
1189 static void recv_generator(char *fname
, struct file_struct
*file
, int ndx
,
1190 int itemizing
, enum logcode code
, int f_out
)
1192 static const char *parent_dirname
= "";
1193 static struct file_struct
*prior_dir_file
= NULL
;
1194 /* Missing dir not created due to --dry-run; will still be scanned. */
1195 static struct file_struct
*dry_missing_dir
= NULL
;
1196 /* Missing dir whose contents are skipped altogether due to
1197 * --ignore-non-existing, daemon exclude, or mkdir failure. */
1198 static struct file_struct
*skip_dir
= NULL
;
1199 static struct file_list
*fuzzy_dirlist
[MAX_BASIS_DIRS
+1];
1200 static int need_fuzzy_dirlist
= 0;
1201 struct file_struct
*fuzzy_file
= NULL
;
1202 int fd
= -1, f_copy
= -1;
1204 STRUCT_STAT partial_st
;
1205 struct file_struct
*back_file
= NULL
;
1206 int statret
, real_ret
, stat_errno
;
1207 char *fnamecmp
, *partialptr
, *backupptr
= NULL
;
1208 char fnamecmpbuf
[MAXPATHLEN
];
1209 uchar fnamecmp_type
;
1210 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1211 int is_dir
= !S_ISDIR(file
->mode
) ? 0
1212 : inc_recurse
&& ndx
!= cur_flist
->ndx_start
- 1 ? -1
1215 if (DEBUG_GTE(GENR
, 1))
1216 rprintf(FINFO
, "recv_generator(%s,%d)\n", fname
, ndx
);
1220 || (is_dir
&& !implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
1222 list_file_entry(file
);
1226 maybe_ATTRS_ACCURATE_TIME
= always_checksum
? ATTRS_ACCURATE_TIME
: 0;
1229 if (is_below(file
, skip_dir
)) {
1231 file
->flags
|= FLAG_MISSING_DIR
;
1232 #ifdef SUPPORT_HARD_LINKS
1233 else if (F_IS_HLINKED(file
))
1234 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1242 if (daemon_filter_list
.head
&& (*fname
!= '.' || fname
[1])) {
1243 if (check_filter(&daemon_filter_list
, FLOG
, fname
, is_dir
) < 0) {
1246 #ifdef SUPPORT_HARD_LINKS
1247 if (F_IS_HLINKED(file
))
1248 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1250 rprintf(FERROR_XFER
,
1251 "ERROR: daemon refused to receive %s \"%s\"\n",
1252 is_dir
? "directory" : "file", fname
);
1254 goto skipping_dir_contents
;
1259 if (dry_run
> 1 || (dry_missing_dir
&& is_below(file
, dry_missing_dir
))) {
1261 parent_is_dry_missing
:
1262 for (i
= 0; i
< fuzzy_basis
; i
++) {
1263 if (fuzzy_dirlist
[i
]) {
1264 flist_free(fuzzy_dirlist
[i
]);
1265 fuzzy_dirlist
[i
] = NULL
;
1268 parent_dirname
= "";
1270 stat_errno
= ENOENT
;
1272 const char *dn
= file
->dirname
? file
->dirname
: ".";
1273 dry_missing_dir
= NULL
;
1274 if (parent_dirname
!= dn
&& strcmp(parent_dirname
, dn
) != 0) {
1275 /* Each parent dir must be in the file list or the flist data is bad.
1276 * Optimization: most of the time the parent dir will be the last dir
1277 * this function was asked to process in the file list. */
1279 && (*dn
!= '.' || dn
[1]) /* Avoid an issue with --relative and the "." dir. */
1280 && (!prior_dir_file
|| strcmp(dn
, f_name(prior_dir_file
, NULL
)) != 0)
1281 && flist_find_name(cur_flist
, dn
, 1) < 0) {
1282 /* The --delete-missing-args option can actually put invalid entries into
1283 * the file list, so if that option was specified, we'll just complain about
1284 * it and allow it. */
1285 if (missing_args
== 2 && file
->mode
== 0)
1286 rprintf(FERROR
, "WARNING: parent dir is absent in the file list: %s\n", dn
);
1288 rprintf(FERROR
, "ABORTING due to invalid path from sender: %s/%s\n",
1289 dn
, file
->basename
);
1290 exit_cleanup(RERR_PROTOCOL
);
1293 if (relative_paths
&& !implied_dirs
1294 && do_stat(dn
, &sx
.st
) < 0) {
1296 goto parent_is_dry_missing
;
1297 if (make_path(fname
, MKP_DROP_NAME
| MKP_SKIP_SLASH
) < 0) {
1298 rsyserr(FERROR_XFER
, errno
,
1299 "recv_generator: mkdir %s failed",
1305 for (i
= 0; i
< fuzzy_basis
; i
++) {
1306 if (fuzzy_dirlist
[i
]) {
1307 flist_free(fuzzy_dirlist
[i
]);
1308 fuzzy_dirlist
[i
] = NULL
;
1311 need_fuzzy_dirlist
= 1;
1314 if (!preserve_perms
)
1315 dflt_perms
= default_perms_for_dir(dn
);
1318 parent_dirname
= dn
;
1320 statret
= link_stat(fname
, &sx
.st
, keep_dirlinks
&& is_dir
);
1324 if (missing_args
== 2 && file
->mode
== 0) {
1325 if (filter_list
.head
&& check_filter(&filter_list
, FINFO
, fname
, is_dir
) < 0)
1328 delete_item(fname
, sx
.st
.st_mode
, del_opts
);
1332 if (ignore_non_existing
> 0 && statret
== -1 && stat_errno
== ENOENT
) {
1337 file
->flags
|= FLAG_MISSING_DIR
;
1339 #ifdef SUPPORT_HARD_LINKS
1340 else if (F_IS_HLINKED(file
))
1341 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1343 if (INFO_GTE(SKIP
, 1)) {
1344 rprintf(FINFO
, "not creating new %s \"%s\"\n",
1345 is_dir
? "directory" : "file", fname
);
1350 if (statret
== 0 && !(sx
.st
.st_mode
& S_IWUSR
)
1351 && !am_root
&& sx
.st
.st_uid
== our_uid
)
1352 del_opts
|= DEL_NO_UID_WRITE
;
1354 if (ignore_existing
> 0 && statret
== 0
1355 && (!is_dir
|| !S_ISDIR(sx
.st
.st_mode
))) {
1356 if (INFO_GTE(SKIP
, 1) && is_dir
>= 0)
1357 rprintf(FINFO
, "%s exists\n", fname
);
1358 #ifdef SUPPORT_HARD_LINKS
1359 if (F_IS_HLINKED(file
))
1360 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1369 if (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
)
1372 /* For --fake-super, the dir must be useable by the copying
1373 * user, just like it would be for root. */
1374 added_perms
= S_IRUSR
|S_IWUSR
|S_IXUSR
;
1378 if (!(preserve_times
& PRESERVE_DIR_TIMES
))
1380 /* In inc_recurse mode we want to make sure any missing
1381 * directories get created while we're still processing
1382 * the parent dir (which allows us to touch the parent
1383 * dir's mtime right away). We will handle the dir in
1384 * full later (right before we handle its contents). */
1386 && (S_ISDIR(sx
.st
.st_mode
)
1387 || delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0))
1388 goto cleanup
; /* Any errors get reported later. */
1389 if (do_mkdir(fname
, (file
->mode
|added_perms
) & 0700) == 0)
1390 file
->flags
|= FLAG_DIR_CREATED
;
1393 /* The file to be received is a directory, so we need
1394 * to prepare appropriately. If there is already a
1395 * file of that name and it is *not* a directory, then
1396 * we need to delete it. If it doesn't exist, then
1397 * (perhaps recursively) create it. */
1398 if (statret
== 0 && !S_ISDIR(sx
.st
.st_mode
)) {
1399 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0)
1400 goto skipping_dir_contents
;
1403 if (dry_run
&& statret
!= 0) {
1404 if (!dry_missing_dir
)
1405 dry_missing_dir
= file
;
1406 file
->flags
|= FLAG_MISSING_DIR
;
1408 init_stat_x(&real_sx
);
1411 if (file
->flags
& FLAG_DIR_CREATED
)
1413 if (!preserve_perms
) { /* See comment in non-dir code below. */
1414 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
, dflt_perms
, statret
== 0);
1416 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1417 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
, itemizing
, code
);
1422 } else if (j
>= 0) {
1424 fnamecmp
= fnamecmpbuf
;
1427 if (itemizing
&& f_out
!= -1) {
1428 itemize(fnamecmp
, file
, ndx
, statret
, &sx
,
1429 statret
? ITEM_LOCAL_CHANGE
: 0, 0, NULL
);
1431 if (real_ret
!= 0 && do_mkdir(fname
,file
->mode
|added_perms
) < 0 && errno
!= EEXIST
) {
1432 if (!relative_paths
|| errno
!= ENOENT
1433 || make_path(fname
, MKP_DROP_NAME
| MKP_SKIP_SLASH
) < 0
1434 || (do_mkdir(fname
, file
->mode
|added_perms
) < 0 && errno
!= EEXIST
)) {
1435 rsyserr(FERROR_XFER
, errno
,
1436 "recv_generator: mkdir %s failed",
1438 skipping_dir_contents
:
1439 rprintf(FERROR
, "*** Skipping any contents from this failed directory ***\n");
1441 file
->flags
|= FLAG_MISSING_DIR
;
1446 #ifdef SUPPORT_XATTRS
1447 if (preserve_xattrs
&& statret
== 1)
1448 copy_xattrs(fnamecmpbuf
, fname
);
1450 if (set_file_attrs(fname
, file
, real_ret
? NULL
: &real_sx
, NULL
, 0)
1451 && INFO_GTE(NAME
, 1) && code
!= FNONE
&& f_out
!= -1)
1452 rprintf(code
, "%s/\n", fname
);
1454 /* We need to ensure that the dirs in the transfer have both
1455 * readable and writable permissions during the time we are
1456 * putting files within them. This is then restored to the
1457 * former permissions after the transfer is done. */
1459 if (!am_root
&& (file
->mode
& S_IRWXU
) != S_IRWXU
&& dir_tweaking
) {
1460 mode_t mode
= file
->mode
| S_IRWXU
;
1461 if (do_chmod(fname
, mode
) < 0) {
1462 rsyserr(FERROR_XFER
, errno
,
1463 "failed to modify permissions on %s",
1466 need_retouch_dir_perms
= 1;
1470 if (real_ret
!= 0 && one_file_system
)
1471 real_sx
.st
.st_dev
= filesystem_dev
;
1473 if (one_file_system
) {
1474 uint32
*devp
= F_DIR_DEV_P(file
);
1475 DEV_MAJOR(devp
) = major(real_sx
.st
.st_dev
);
1476 DEV_MINOR(devp
) = minor(real_sx
.st
.st_dev
);
1479 else if (delete_during
&& f_out
!= -1 && !phase
1480 && !(file
->flags
& FLAG_MISSING_DIR
)) {
1481 if (file
->flags
& FLAG_CONTENT_DIR
)
1482 delete_in_dir(fname
, file
, &real_sx
.st
.st_dev
);
1484 change_local_filter_dir(fname
, strlen(fname
), F_DEPTH(file
));
1486 prior_dir_file
= file
;
1490 /* If we're not preserving permissions, change the file-list's
1491 * mode based on the local permissions and some heuristics. */
1492 if (!preserve_perms
) {
1493 int exists
= statret
== 0 && !S_ISDIR(sx
.st
.st_mode
);
1494 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
, dflt_perms
, exists
);
1497 #ifdef SUPPORT_HARD_LINKS
1498 if (preserve_hard_links
&& F_HLINK_NOT_FIRST(file
)
1499 && hard_link_check(file
, ndx
, fname
, statret
, &sx
, itemizing
, code
))
1503 if (preserve_links
&& S_ISLNK(file
->mode
)) {
1504 #ifdef SUPPORT_LINKS
1505 const char *sl
= F_SYMLINK(file
);
1506 if (safe_symlinks
&& unsafe_symlink(sl
, fname
)) {
1507 if (INFO_GTE(NAME
, 1)) {
1509 /* fname contains the destination path, but we
1510 * want to report the source path. */
1511 fname
= f_name(file
, NULL
);
1514 "ignoring unsafe symlink \"%s\" -> \"%s\"\n",
1520 char lnk
[MAXPATHLEN
];
1523 if (S_ISLNK(sx
.st
.st_mode
)
1524 && (len
= do_readlink(fname
, lnk
, MAXPATHLEN
-1)) > 0
1525 && strncmp(lnk
, sl
, len
) == 0 && sl
[len
] == '\0') {
1526 /* The link is pointing to the right place. */
1527 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1529 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1530 #ifdef SUPPORT_HARD_LINKS
1531 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1532 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1534 if (remove_source_files
== 1)
1535 goto return_with_success
;
1538 } else if (basis_dir
[0] != NULL
) {
1539 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
, itemizing
, code
);
1541 #ifndef CAN_HARDLINK_SYMLINK
1542 if (alt_dest_type
== LINK_DEST
) {
1543 /* Resort to --copy-dest behavior. */
1546 if (alt_dest_type
!= COPY_DEST
)
1550 } else if (j
>= 0) {
1552 fnamecmp
= fnamecmpbuf
;
1555 if (atomic_create(file
, fname
, sl
, NULL
, MAKEDEV(0, 0), &sx
, statret
== 0 ? DEL_FOR_SYMLINK
: 0)) {
1556 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1558 if (statret
== 0 && !S_ISLNK(sx
.st
.st_mode
))
1560 itemize(fnamecmp
, file
, ndx
, statret
, &sx
,
1561 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1563 if (code
!= FNONE
&& INFO_GTE(NAME
, 1))
1564 rprintf(code
, "%s -> %s\n", fname
, sl
);
1565 #ifdef SUPPORT_HARD_LINKS
1566 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1567 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1569 /* This does not check remove_source_files == 1
1570 * because this is one of the items that the old
1571 * --remove-sent-files option would remove. */
1572 if (remove_source_files
)
1573 goto return_with_success
;
1579 if ((am_root
&& preserve_devices
&& IS_DEVICE(file
->mode
))
1580 || (preserve_specials
&& IS_SPECIAL(file
->mode
))) {
1582 int del_for_flag
= 0;
1583 if (IS_DEVICE(file
->mode
)) {
1584 uint32
*devp
= F_RDEV_P(file
);
1585 rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
1589 if (IS_DEVICE(file
->mode
)) {
1590 if (!IS_DEVICE(sx
.st
.st_mode
))
1592 del_for_flag
= DEL_FOR_DEVICE
;
1594 if (!IS_SPECIAL(sx
.st
.st_mode
))
1596 del_for_flag
= DEL_FOR_SPECIAL
;
1599 && BITS_EQUAL(sx
.st
.st_mode
, file
->mode
, _S_IFMT
)
1600 && (IS_SPECIAL(sx
.st
.st_mode
) || sx
.st
.st_rdev
== rdev
)) {
1601 /* The device or special file is identical. */
1602 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1604 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1605 #ifdef SUPPORT_HARD_LINKS
1606 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1607 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1609 if (remove_source_files
== 1)
1610 goto return_with_success
;
1613 } else if (basis_dir
[0] != NULL
) {
1614 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
, itemizing
, code
);
1616 #ifndef CAN_HARDLINK_SPECIAL
1617 if (alt_dest_type
== LINK_DEST
) {
1618 /* Resort to --copy-dest behavior. */
1621 if (alt_dest_type
!= COPY_DEST
)
1625 } else if (j
>= 0) {
1627 fnamecmp
= fnamecmpbuf
;
1630 if (DEBUG_GTE(GENR
, 1)) {
1631 rprintf(FINFO
, "mknod(%s, 0%o, [%ld,%ld])\n",
1632 fname
, (int)file
->mode
,
1633 (long)major(rdev
), (long)minor(rdev
));
1635 if (atomic_create(file
, fname
, NULL
, NULL
, rdev
, &sx
, del_for_flag
)) {
1636 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1638 itemize(fnamecmp
, file
, ndx
, statret
, &sx
,
1639 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1641 if (code
!= FNONE
&& INFO_GTE(NAME
, 1))
1642 rprintf(code
, "%s\n", fname
);
1643 #ifdef SUPPORT_HARD_LINKS
1644 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1645 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1647 if (remove_source_files
== 1)
1648 goto return_with_success
;
1653 if (!S_ISREG(file
->mode
)) {
1655 fname
= f_name(file
, NULL
);
1656 rprintf(FINFO
, "skipping non-regular file \"%s\"\n", fname
);
1660 if (max_size
>= 0 && F_LENGTH(file
) > max_size
) {
1661 if (INFO_GTE(SKIP
, 1)) {
1663 fname
= f_name(file
, NULL
);
1664 rprintf(FINFO
, "%s is over max-size\n", fname
);
1668 if (min_size
>= 0 && F_LENGTH(file
) < min_size
) {
1669 if (INFO_GTE(SKIP
, 1)) {
1671 fname
= f_name(file
, NULL
);
1672 rprintf(FINFO
, "%s is under min-size\n", fname
);
1677 if (update_only
> 0 && statret
== 0 && file
->modtime
- sx
.st
.st_mtime
<= modify_window
) {
1678 if (INFO_GTE(SKIP
, 1))
1679 rprintf(FINFO
, "%s is newer\n", fname
);
1680 #ifdef SUPPORT_HARD_LINKS
1681 if (F_IS_HLINKED(file
))
1682 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1687 fnamecmp_type
= FNAMECMP_FNAME
;
1689 if (statret
== 0 && !(S_ISREG(sx
.st
.st_mode
) || (write_devices
&& IS_DEVICE(sx
.st
.st_mode
)))) {
1690 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_FILE
) != 0)
1693 stat_errno
= ENOENT
;
1696 if (basis_dir
[0] != NULL
&& (statret
!= 0 || alt_dest_type
!= COPY_DEST
)) {
1697 int j
= try_dests_reg(file
, fname
, ndx
, fnamecmpbuf
, &sx
, statret
== 0, itemizing
, code
);
1699 if (remove_source_files
== 1)
1700 goto return_with_success
;
1704 fnamecmp
= fnamecmpbuf
;
1710 init_stat_x(&real_sx
);
1711 real_sx
.st
= sx
.st
; /* Don't copy xattr/acl pointers, as they would free wrong. */
1714 if (partial_dir
&& (partialptr
= partial_dir_fname(fname
)) != NULL
1715 && link_stat(partialptr
, &partial_st
, 0) == 0
1716 && S_ISREG(partial_st
.st_mode
)) {
1718 goto prepare_to_open
;
1722 if (statret
!= 0 && fuzzy_basis
) {
1723 if (need_fuzzy_dirlist
&& S_ISREG(file
->mode
)) {
1724 const char *dn
= file
->dirname
? file
->dirname
: ".";
1726 strlcpy(fnamecmpbuf
, dn
, sizeof fnamecmpbuf
);
1727 for (i
= 0; i
< fuzzy_basis
; i
++) {
1728 if (i
&& pathjoin(fnamecmpbuf
, MAXPATHLEN
, basis_dir
[i
-1], dn
) >= MAXPATHLEN
)
1730 fuzzy_dirlist
[i
] = get_dirlist(fnamecmpbuf
, -1, GDL_IGNORE_FILTER_RULES
| GDL_PERHAPS_DIR
);
1731 if (fuzzy_dirlist
[i
] && fuzzy_dirlist
[i
]->used
== 0) {
1732 flist_free(fuzzy_dirlist
[i
]);
1733 fuzzy_dirlist
[i
] = NULL
;
1736 need_fuzzy_dirlist
= 0;
1739 /* Sets fnamecmp_type to FNAMECMP_FUZZY or above. */
1740 fuzzy_file
= find_fuzzy(file
, fuzzy_dirlist
, &fnamecmp_type
);
1742 f_name(fuzzy_file
, fnamecmpbuf
);
1743 if (DEBUG_GTE(FUZZY
, 1)) {
1744 rprintf(FINFO
, "fuzzy basis selected for %s: %s\n",
1745 fname
, fnamecmpbuf
);
1747 sx
.st
.st_size
= F_LENGTH(fuzzy_file
);
1749 fnamecmp
= fnamecmpbuf
;
1754 #ifdef SUPPORT_HARD_LINKS
1755 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1756 cur_flist
->in_progress
++;
1760 if (stat_errno
== ENOENT
)
1762 rsyserr(FERROR_XFER
, stat_errno
, "recv_generator: failed to stat %s",
1767 if (fnamecmp_type
<= FNAMECMP_BASIS_DIR_HIGH
)
1769 else if (fnamecmp_type
>= FNAMECMP_FUZZY
)
1771 else if (unchanged_file(fnamecmp
, file
, &sx
.st
)) {
1773 do_unlink(partialptr
);
1774 handle_partial_dir(partialptr
, PDIR_DELETE
);
1776 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
| maybe_ATTRS_ACCURATE_TIME
);
1778 itemize(fnamecmp
, file
, ndx
, statret
, &sx
, 0, 0, NULL
);
1779 #ifdef SUPPORT_HARD_LINKS
1780 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1781 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1783 if (remove_source_files
!= 1)
1785 return_with_success
:
1787 send_msg_int(MSG_SUCCESS
, ndx
);
1791 if (append_mode
> 0 && sx
.st
.st_size
>= F_LENGTH(file
)) {
1792 #ifdef SUPPORT_HARD_LINKS
1793 if (F_IS_HLINKED(file
))
1794 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1802 fnamecmp
= partialptr
;
1803 fnamecmp_type
= FNAMECMP_PARTIAL_DIR
;
1810 if (read_batch
|| whole_file
) {
1811 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1812 if (!(backupptr
= get_backup_name(fname
)))
1814 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
)))
1815 goto pretend_missing
;
1816 if (copy_file(fname
, backupptr
, -1, back_file
->mode
) < 0) {
1817 unmake_file(back_file
);
1825 if (fuzzy_dirlist
[0]) {
1826 int j
= flist_find(fuzzy_dirlist
[0], file
);
1827 if (j
>= 0) /* don't use changing file as future fuzzy basis */
1828 fuzzy_dirlist
[0]->files
[j
]->flags
|= FLAG_FILE_SENT
;
1832 if ((fd
= do_open(fnamecmp
, O_RDONLY
, 0)) < 0) {
1833 rsyserr(FERROR
, errno
, "failed to open %s, continuing",
1834 full_fname(fnamecmp
));
1836 /* pretend the file didn't exist */
1837 #ifdef SUPPORT_HARD_LINKS
1838 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1839 cur_flist
->in_progress
++;
1843 statret
= real_ret
= -1;
1847 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1848 if (!(backupptr
= get_backup_name(fname
))) {
1852 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
))) {
1854 goto pretend_missing
;
1856 if (robust_unlink(backupptr
) && errno
!= ENOENT
) {
1857 rsyserr(FERROR_XFER
, errno
, "unlink %s",
1858 full_fname(backupptr
));
1859 unmake_file(back_file
);
1864 if ((f_copy
= do_open(backupptr
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, 0600)) < 0) {
1865 rsyserr(FERROR_XFER
, errno
, "open %s", full_fname(backupptr
));
1866 unmake_file(back_file
);
1871 fnamecmp_type
= FNAMECMP_BACKUP
;
1874 if (DEBUG_GTE(DELTASUM
, 3)) {
1875 rprintf(FINFO
, "gen mapped %s of size %s\n",
1876 fnamecmp
, big_num(sx
.st
.st_size
));
1879 if (DEBUG_GTE(DELTASUM
, 2))
1880 rprintf(FINFO
, "generating and sending sums for %d\n", ndx
);
1883 if (remove_source_files
&& !delay_updates
&& !phase
&& !dry_run
)
1884 increment_active_files(ndx
, itemizing
, code
);
1885 if (inc_recurse
&& (!dry_run
|| write_batch
< 0))
1886 cur_flist
->in_progress
++;
1887 #ifdef SUPPORT_HARD_LINKS
1888 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1889 file
->flags
|= FLAG_FILE_SENT
;
1891 write_ndx(f_out
, ndx
);
1893 int iflags
= ITEM_TRANSFER
;
1894 if (always_checksum
> 0)
1895 iflags
|= ITEM_REPORT_CHANGE
;
1896 if (fnamecmp_type
!= FNAMECMP_FNAME
)
1897 iflags
|= ITEM_BASIS_TYPE_FOLLOWS
;
1898 if (fnamecmp_type
>= FNAMECMP_FUZZY
)
1899 iflags
|= ITEM_XNAME_FOLLOWS
;
1900 itemize(fnamecmp
, file
, -1, real_ret
, &real_sx
, iflags
, fnamecmp_type
,
1901 fuzzy_file
? fuzzy_file
->basename
: NULL
);
1902 free_stat_x(&real_sx
);
1906 #ifdef SUPPORT_HARD_LINKS
1907 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1908 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1915 if (statret
!= 0 || whole_file
)
1916 write_sum_head(f_out
, NULL
);
1917 else if (sx
.st
.st_size
<= 0) {
1918 write_sum_head(f_out
, NULL
);
1921 if (generate_and_send_sums(fd
, sx
.st
.st_size
, f_out
, f_copy
) < 0) {
1923 "WARNING: file is too large for checksum sending: %s\n",
1925 write_sum_head(f_out
, NULL
);
1932 int save_preserve_xattrs
= preserve_xattrs
;
1935 #ifdef SUPPORT_XATTRS
1936 if (preserve_xattrs
) {
1937 copy_xattrs(fname
, backupptr
);
1938 preserve_xattrs
= 0;
1941 set_file_attrs(backupptr
, back_file
, NULL
, NULL
, 0);
1942 preserve_xattrs
= save_preserve_xattrs
;
1943 if (INFO_GTE(BACKUP
, 1)) {
1944 rprintf(FINFO
, "backed up %s to %s\n",
1947 unmake_file(back_file
);
1953 /* If we are replacing an existing hard link, symlink, device, or special file,
1954 * create a temp-name item and rename it into place. A symlimk specifies slnk,
1955 * a hard link specifies hlnk, otherwise we create a device based on rdev.
1956 * Specify 0 for the del_for_flag if there is not a file to replace. This
1957 * returns 1 on success and 0 on failure. */
1958 int atomic_create(struct file_struct
*file
, char *fname
, const char *slnk
, const char *hlnk
,
1959 dev_t rdev
, stat_x
*sxp
, int del_for_flag
)
1961 char tmpname
[MAXPATHLEN
];
1962 const char *create_name
;
1963 int skip_atomic
, dir_in_the_way
= del_for_flag
&& S_ISDIR(sxp
->st
.st_mode
);
1965 if (!del_for_flag
|| dir_in_the_way
|| tmpdir
|| !get_tmpname(tmpname
, fname
, True
))
1971 if (make_backups
> 0 && !dir_in_the_way
) {
1972 if (!make_backup(fname
, skip_atomic
))
1974 } else if (skip_atomic
) {
1975 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1976 if (delete_item(fname
, sxp
->st
.st_mode
, del_opts
| del_for_flag
) != 0)
1981 create_name
= skip_atomic
? fname
: tmpname
;
1984 #ifdef SUPPORT_LINKS
1985 if (do_symlink(slnk
, create_name
) < 0) {
1986 rsyserr(FERROR_XFER
, errno
, "symlink %s -> \"%s\" failed",
1987 full_fname(create_name
), slnk
);
1994 #ifdef SUPPORT_HARD_LINKS
1995 if (!hard_link_one(file
, create_name
, hlnk
, 0))
2001 if (do_mknod(create_name
, file
->mode
, rdev
) < 0) {
2002 rsyserr(FERROR_XFER
, errno
, "mknod %s failed",
2003 full_fname(create_name
));
2009 if (do_rename(tmpname
, fname
) < 0) {
2010 rsyserr(FERROR_XFER
, errno
, "rename %s -> \"%s\" failed",
2011 full_fname(tmpname
), full_fname(fname
));
2020 #ifdef SUPPORT_HARD_LINKS
2021 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
2022 enum logcode code
, int f_out
)
2024 char fbuf
[MAXPATHLEN
];
2026 struct file_list
*save_flist
= cur_flist
;
2028 /* If we skip the last item in a chain of links and there was a
2029 * prior non-skipped hard-link waiting to finish, finish it now. */
2030 if ((new_last_ndx
= skip_hard_link(file
, &cur_flist
)) < 0)
2033 file
= cur_flist
->files
[new_last_ndx
- cur_flist
->ndx_start
];
2034 cur_flist
->in_progress
--; /* undo prior increment */
2036 recv_generator(fbuf
, file
, new_last_ndx
, itemizing
, code
, f_out
);
2038 cur_flist
= save_flist
;
2042 static void touch_up_dirs(struct file_list
*flist
, int ndx
)
2044 static int counter
= 0;
2045 struct file_struct
*file
;
2052 end
= flist
->used
- 1;
2056 /* Fix any directory permissions that were modified during the
2057 * transfer and/or re-set any tweaked modified-time values. */
2058 for (i
= start
; i
<= end
; i
++, counter
++) {
2059 file
= flist
->files
[i
];
2060 if (!F_IS_ACTIVE(file
))
2062 if (!S_ISDIR(file
->mode
)
2063 || (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
2065 if (DEBUG_GTE(TIME
, 2)) {
2066 fname
= f_name(file
, NULL
);
2067 rprintf(FINFO
, "touch_up_dirs: %s (%d)\n",
2070 /* Be sure not to retouch permissions with --fake-super. */
2071 fix_dir_perms
= !am_root
&& !(file
->mode
& S_IWUSR
);
2072 if (file
->flags
& FLAG_MISSING_DIR
|| !(need_retouch_dir_times
|| fix_dir_perms
))
2074 fname
= f_name(file
, NULL
);
2076 do_chmod(fname
, file
->mode
);
2077 if (need_retouch_dir_times
) {
2079 if (link_stat(fname
, &st
, 0) == 0 && mtime_differs(&st
, file
)) {
2080 st
.st_mtime
= file
->modtime
;
2081 #ifdef ST_MTIME_NSEC
2082 st
.ST_MTIME_NSEC
= F_MOD_NSEC_or_0(file
);
2084 set_times(fname
, &st
);
2087 if (counter
>= loopchk_limit
) {
2089 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
2091 maybe_flush_socket(0);
2097 void check_for_finished_files(int itemizing
, enum logcode code
, int check_redo
)
2099 struct file_struct
*file
;
2100 struct file_list
*flist
;
2101 char fbuf
[MAXPATHLEN
];
2105 #ifdef SUPPORT_HARD_LINKS
2106 if (preserve_hard_links
&& (ndx
= get_hlink_num()) != -1) {
2107 int send_failed
= (ndx
== -2);
2109 ndx
= get_hlink_num();
2110 flist
= flist_for_ndx(ndx
, "check_for_finished_files.1");
2111 file
= flist
->files
[ndx
- flist
->ndx_start
];
2112 assert(file
->flags
& FLAG_HLINKED
);
2114 handle_skipped_hlink(file
, itemizing
, code
, sock_f_out
);
2116 finish_hard_link(file
, f_name(file
, fbuf
), ndx
, NULL
, itemizing
, code
, -1);
2117 flist
->in_progress
--;
2122 if (check_redo
&& (ndx
= get_redo_num()) != -1) {
2123 OFF_T save_max_size
= max_size
;
2124 OFF_T save_min_size
= min_size
;
2125 csum_length
= SUM_LENGTH
;
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
; /* avoid dup backup w/inplace */
2138 cur_flist
= flist_for_ndx(ndx
, "check_for_finished_files.2");
2140 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
2142 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2145 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, sock_f_out
);
2146 cur_flist
->to_redo
--;
2150 csum_length
= SHORT_SUM_LENGTH
;
2151 max_size
= save_max_size
;
2152 min_size
= save_min_size
;
2153 ignore_existing
= -ignore_existing
;
2154 ignore_non_existing
= -ignore_non_existing
;
2155 update_only
= -update_only
;
2156 always_checksum
= -always_checksum
;
2157 size_only
= -size_only
;
2158 append_mode
= -append_mode
;
2159 make_backups
= -make_backups
;
2164 if (cur_flist
== first_flist
)
2167 /* We only get here if inc_recurse is enabled. */
2168 if (first_flist
->in_progress
|| first_flist
->to_redo
)
2171 write_ndx(sock_f_out
, NDX_DONE
);
2172 if (!read_batch
&& !flist_eof
) {
2174 for (flist
= first_flist
; flist
!= cur_flist
; flist
= flist
->next
)
2175 old_total
+= flist
->used
;
2176 maybe_flush_socket(!flist_eof
&& file_total
- old_total
< MIN_FILECNT_LOOKAHEAD
/2);
2179 if (delete_during
== 2 || !dir_tweaking
) {
2180 /* Skip directory touch-up. */
2181 } else if (first_flist
->parent_ndx
>= 0)
2182 touch_up_dirs(dir_flist
, first_flist
->parent_ndx
);
2184 flist_free(first_flist
); /* updates first_flist */
2188 void generate_files(int f_out
, const char *local_name
)
2190 int i
, ndx
, next_loopchk
= 0;
2191 char fbuf
[MAXPATHLEN
];
2194 int save_info_flist
= info_levels
[INFO_FLIST
];
2195 int save_info_progress
= info_levels
[INFO_PROGRESS
];
2197 if (protocol_version
>= 29) {
2199 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2200 code
= logfile_format_has_i
? FNONE
: FLOG
;
2201 } else if (am_daemon
) {
2202 itemizing
= logfile_format_has_i
&& do_xfers
;
2203 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2204 code
= itemizing
|| !do_xfers
? FCLIENT
: FINFO
;
2205 } else if (!am_server
) {
2206 itemizing
= stdout_format_has_i
;
2207 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2208 code
= itemizing
? FNONE
: FINFO
;
2211 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2214 solo_file
= local_name
;
2215 dir_tweaking
= !(list_only
|| solo_file
|| dry_run
);
2216 need_retouch_dir_times
= preserve_times
& PRESERVE_DIR_TIMES
;
2217 loopchk_limit
= allowed_lull
? allowed_lull
* 5 : 200;
2218 symlink_timeset_failed_flags
= ITEM_REPORT_TIME
2219 | (protocol_version
>= 30 || !am_server
? ITEM_REPORT_TIMEFAIL
: 0);
2220 implied_dirs_are_missing
= relative_paths
&& !implied_dirs
&& protocol_version
< 30;
2222 if (DEBUG_GTE(GENR
, 1))
2223 rprintf(FINFO
, "generator starting pid=%d\n", (int)getpid());
2225 if (delete_before
&& !solo_file
&& cur_flist
->used
> 0)
2227 if (delete_during
== 2) {
2228 deldelay_size
= BIGPATHBUFLEN
* 4;
2229 deldelay_buf
= new_array(char, deldelay_size
);
2231 out_of_memory("delete-delay");
2233 info_levels
[INFO_FLIST
] = info_levels
[INFO_PROGRESS
] = 0;
2235 if (append_mode
> 0 || whole_file
< 0)
2237 if (DEBUG_GTE(FLIST
, 1)) {
2238 rprintf(FINFO
, "delta-transmission %s\n",
2240 ? "disabled for local transfer or --whole-file"
2244 dflt_perms
= (ACCESSPERMS
& ~orig_umask
);
2247 #ifdef SUPPORT_HARD_LINKS
2248 if (preserve_hard_links
&& inc_recurse
) {
2249 while (!flist_eof
&& file_total
< MIN_FILECNT_LOOKAHEAD
/2)
2250 wait_for_receiver();
2254 if (inc_recurse
&& cur_flist
->parent_ndx
>= 0) {
2255 struct file_struct
*fp
= dir_flist
->files
[cur_flist
->parent_ndx
];
2257 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2260 ndx
= cur_flist
->ndx_start
- 1;
2261 recv_generator(fbuf
, fp
, ndx
, itemizing
, code
, f_out
);
2262 if (delete_during
&& dry_run
< 2 && !list_only
2263 && !(fp
->flags
& FLAG_MISSING_DIR
)) {
2264 if (fp
->flags
& FLAG_CONTENT_DIR
) {
2266 if (one_file_system
) {
2267 uint32
*devp
= F_DIR_DEV_P(fp
);
2268 dirdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
2270 dirdev
= MAKEDEV(0, 0);
2271 delete_in_dir(fbuf
, fp
, &dirdev
);
2273 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(fp
));
2276 for (i
= cur_flist
->low
; i
<= cur_flist
->high
; i
++) {
2277 struct file_struct
*file
= cur_flist
->sorted
[i
];
2279 if (!F_IS_ACTIVE(file
))
2285 ndx
= i
+ cur_flist
->ndx_start
;
2288 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2291 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, f_out
);
2293 check_for_finished_files(itemizing
, code
, 0);
2295 if (i
+ cur_flist
->ndx_start
>= next_loopchk
) {
2297 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
2299 maybe_flush_socket(0);
2300 next_loopchk
+= loopchk_limit
;
2305 write_ndx(f_out
, NDX_DONE
);
2310 check_for_finished_files(itemizing
, code
, 1);
2311 if (cur_flist
->next
|| flist_eof
)
2313 wait_for_receiver();
2315 } while ((cur_flist
= cur_flist
->next
) != NULL
);
2318 delete_in_dir(NULL
, NULL
, &dev_zero
);
2320 if (DEBUG_GTE(GENR
, 1))
2321 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2324 check_for_finished_files(itemizing
, code
, 1);
2327 wait_for_receiver();
2331 if (DEBUG_GTE(GENR
, 1))
2332 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2334 write_ndx(f_out
, NDX_DONE
);
2336 /* Reduce round-trip lag-time for a useless delay-updates phase. */
2337 if (protocol_version
>= 29 && EARLY_DELAY_DONE_MSG())
2338 write_ndx(f_out
, NDX_DONE
);
2340 if (protocol_version
>= 31 && EARLY_DELETE_DONE_MSG()) {
2341 if ((INFO_GTE(STATS
, 2) && (delete_mode
|| force_delete
)) || read_batch
)
2342 write_del_stats(f_out
);
2343 if (EARLY_DELAY_DONE_MSG()) /* Can't send this before delay */
2344 write_ndx(f_out
, NDX_DONE
);
2347 /* Read MSG_DONE for the redo phase (and any prior messages). */
2349 check_for_finished_files(itemizing
, code
, 0);
2350 if (msgdone_cnt
> 1)
2352 wait_for_receiver();
2355 if (protocol_version
>= 29) {
2357 if (DEBUG_GTE(GENR
, 1))
2358 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2359 if (!EARLY_DELAY_DONE_MSG()) {
2360 write_ndx(f_out
, NDX_DONE
);
2361 if (protocol_version
>= 31 && EARLY_DELETE_DONE_MSG())
2362 write_ndx(f_out
, NDX_DONE
);
2364 /* Read MSG_DONE for delay-updates phase & prior messages. */
2365 while (msgdone_cnt
== 2)
2366 wait_for_receiver();
2369 info_levels
[INFO_FLIST
] = save_info_flist
;
2370 info_levels
[INFO_PROGRESS
] = save_info_progress
;
2372 if (delete_during
== 2)
2373 do_delayed_deletions(fbuf
);
2374 if (delete_after
&& !solo_file
&& file_total
> 0)
2377 if (max_delete
>= 0 && skipped_deletes
) {
2379 "Deletions stopped due to --max-delete limit (%d skipped)\n",
2381 io_error
|= IOERR_DEL_LIMIT
;
2384 if (protocol_version
>= 31) {
2385 if (!EARLY_DELETE_DONE_MSG()) {
2386 if (INFO_GTE(STATS
, 2) || read_batch
)
2387 write_del_stats(f_out
);
2388 write_ndx(f_out
, NDX_DONE
);
2391 /* Read MSG_DONE for late-delete phase & prior messages. */
2392 while (msgdone_cnt
== 3)
2393 wait_for_receiver();
2396 if ((need_retouch_dir_perms
|| need_retouch_dir_times
)
2397 && dir_tweaking
&& (!inc_recurse
|| delete_during
== 2))
2398 touch_up_dirs(dir_flist
, -1);
2400 if (DEBUG_GTE(GENR
, 1))
2401 rprintf(FINFO
, "generate_files finished\n");