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-2014 Wayne Davison
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
29 extern int stdout_format_has_i
;
30 extern int logfile_format_has_i
;
34 extern int inc_recurse
;
35 extern int relative_paths
;
36 extern int implied_dirs
;
37 extern int keep_dirlinks
;
38 extern int preserve_acls
;
39 extern int preserve_xattrs
;
40 extern int preserve_links
;
41 extern int preserve_devices
;
42 extern int preserve_specials
;
43 extern int preserve_hard_links
;
44 extern int preserve_executability
;
45 extern int preserve_perms
;
46 extern int preserve_times
;
47 extern int delete_mode
;
48 extern int delete_before
;
49 extern int delete_during
;
50 extern int delete_after
;
51 extern int missing_args
;
52 extern int msgdone_cnt
;
53 extern int ignore_errors
;
54 extern int remove_source_files
;
55 extern int delay_updates
;
56 extern int update_only
;
57 extern int human_readable
;
58 extern int ignore_existing
;
59 extern int ignore_non_existing
;
60 extern int want_xattr_optim
;
62 extern int append_mode
;
63 extern int make_backups
;
64 extern int csum_length
;
65 extern int ignore_times
;
67 extern OFF_T max_size
;
68 extern OFF_T min_size
;
71 extern int allowed_lull
;
72 extern int sock_f_out
;
73 extern int protocol_version
;
74 extern int file_total
;
75 extern int fuzzy_basis
;
76 extern int always_checksum
;
77 extern int checksum_len
;
78 extern char *partial_dir
;
79 extern int compare_dest
;
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;
103 static dev_t dev_zero
;
104 static int deldelay_size
= 0, deldelay_cnt
= 0;
105 static char *deldelay_buf
= NULL
;
106 static int deldelay_fd
= -1;
107 static int loopchk_limit
;
108 static int dir_tweaking
;
109 static int symlink_timeset_failed_flags
;
110 static int need_retouch_dir_times
;
111 static int need_retouch_dir_perms
;
112 static const char *solo_file
= NULL
;
115 TYPE_DIR
, TYPE_SPECIAL
, TYPE_DEVICE
, TYPE_SYMLINK
118 /* Forward declarations. */
119 #ifdef SUPPORT_HARD_LINKS
120 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
121 enum logcode code
, int f_out
);
124 #define EARLY_DELAY_DONE_MSG() (!delay_updates)
125 #define EARLY_DELETE_DONE_MSG() (!(delete_during == 2 || delete_after))
127 static int start_delete_delay_temp(void)
129 char fnametmp
[MAXPATHLEN
];
130 int save_dry_run
= dry_run
;
133 if (!get_tmpname(fnametmp
, "deldelay", False
)
134 || (deldelay_fd
= do_mkstemp(fnametmp
, 0600)) < 0) {
135 rprintf(FINFO
, "NOTE: Unable to create delete-delay temp file%s.\n",
136 inc_recurse
? "" : " -- switching to --delete-after");
138 delete_after
= !inc_recurse
;
139 dry_run
= save_dry_run
;
143 dry_run
= save_dry_run
;
147 static int flush_delete_delay(void)
149 if (deldelay_fd
< 0 && !start_delete_delay_temp())
151 if (write(deldelay_fd
, deldelay_buf
, deldelay_cnt
) != deldelay_cnt
) {
152 rsyserr(FERROR
, errno
, "flush of delete-delay buffer");
154 delete_after
= !inc_recurse
;
162 static int remember_delete(struct file_struct
*file
, const char *fname
, int flags
)
166 if (deldelay_cnt
== deldelay_size
&& !flush_delete_delay())
169 if (flags
& DEL_NO_UID_WRITE
)
170 deldelay_buf
[deldelay_cnt
++] = '!';
173 len
= snprintf(deldelay_buf
+ deldelay_cnt
,
174 deldelay_size
- deldelay_cnt
,
176 (int)file
->mode
, fname
, '\0');
177 if ((deldelay_cnt
+= len
) <= deldelay_size
)
180 if (!flush_delete_delay())
187 static int read_delay_line(char *buf
, int *flags_p
)
189 static int read_pos
= 0;
191 char *bp
, *past_space
;
194 for (j
= read_pos
; j
< deldelay_cnt
&& deldelay_buf
[j
]; j
++) {}
195 if (j
< deldelay_cnt
)
197 if (deldelay_fd
< 0) {
202 deldelay_cnt
-= read_pos
;
203 if (deldelay_cnt
== deldelay_size
)
205 if (deldelay_cnt
&& read_pos
) {
206 memmove(deldelay_buf
, deldelay_buf
+ read_pos
,
209 len
= read(deldelay_fd
, deldelay_buf
+ deldelay_cnt
,
210 deldelay_size
- deldelay_cnt
);
214 "ERROR: unexpected EOF in delete-delay file.\n");
219 rsyserr(FERROR
, errno
,
220 "reading delete-delay file");
227 bp
= deldelay_buf
+ read_pos
;
230 *flags_p
= DEL_NO_UID_WRITE
;
234 if (sscanf(bp
, "%x ", &mode
) != 1) {
236 rprintf(FERROR
, "ERROR: invalid data in delete-delay file.\n");
239 past_space
= strchr(bp
, ' ') + 1;
240 len
= j
- read_pos
- (past_space
- bp
) + 1; /* count the '\0' */
243 if (len
> MAXPATHLEN
) {
244 rprintf(FERROR
, "ERROR: filename too long in delete-delay file.\n");
248 /* The caller needs the name in a MAXPATHLEN buffer, so we copy it
249 * instead of returning a pointer to our buffer. */
250 memcpy(buf
, past_space
, len
);
255 static void do_delayed_deletions(char *delbuf
)
259 if (deldelay_fd
>= 0) {
260 if (deldelay_cnt
&& !flush_delete_delay())
262 lseek(deldelay_fd
, 0, 0);
264 while ((mode
= read_delay_line(delbuf
, &flags
)) >= 0)
265 delete_item(delbuf
, mode
, flags
| DEL_RECURSE
);
266 if (deldelay_fd
>= 0)
270 /* This function is used to implement per-directory deletion, and is used by
271 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
272 * MAXPATHLEN buffer with the name of the directory in it (the functions we
273 * call will append names onto the end, but the old dir value will be restored
275 static void delete_in_dir(char *fbuf
, struct file_struct
*file
, dev_t
*fs_dev
)
277 static int already_warned
= 0;
278 struct file_list
*dirlist
;
279 char delbuf
[MAXPATHLEN
];
283 change_local_filter_dir(NULL
, 0, 0);
287 if (DEBUG_GTE(DEL
, 2))
288 rprintf(FINFO
, "delete_in_dir(%s)\n", fbuf
);
291 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
293 if (io_error
& IOERR_GENERAL
&& !ignore_errors
) {
297 "IO error encountered -- skipping file deletion\n");
303 change_local_filter_dir(fbuf
, dlen
, F_DEPTH(file
));
305 if (one_file_system
) {
306 if (file
->flags
& FLAG_TOP_DIR
)
307 filesystem_dev
= *fs_dev
;
308 else if (filesystem_dev
!= *fs_dev
)
312 dirlist
= get_dirlist(fbuf
, dlen
, 0);
314 /* If an item in dirlist is not found in flist, delete it
315 * from the filesystem. */
316 for (i
= dirlist
->used
; i
--; ) {
317 struct file_struct
*fp
= dirlist
->files
[i
];
318 if (!F_IS_ACTIVE(fp
))
320 if (fp
->flags
& FLAG_MOUNT_DIR
&& S_ISDIR(fp
->mode
)) {
321 if (INFO_GTE(MOUNT
, 1))
322 rprintf(FINFO
, "cannot delete mount point: %s\n",
326 /* Here we want to match regardless of file type. Replacement
327 * of a file with one of another type is handled separately by
328 * a delete_item call with a DEL_MAKE_ROOM flag. */
329 if (flist_find_ignore_dirness(cur_flist
, fp
) < 0) {
330 int flags
= DEL_RECURSE
;
331 if (!(fp
->mode
& S_IWUSR
) && !am_root
&& fp
->flags
& FLAG_OWNED_BY_US
)
332 flags
|= DEL_NO_UID_WRITE
;
334 if (delete_during
== 2) {
335 if (!remember_delete(fp
, delbuf
, flags
))
338 delete_item(delbuf
, fp
->mode
, flags
);
345 /* This deletes any files on the receiving side that are not present on the
346 * sending side. This is used by --delete-before and --delete-after. */
347 static void do_delete_pass(void)
349 char fbuf
[MAXPATHLEN
];
353 /* dry_run is incremented when the destination doesn't exist yet. */
354 if (dry_run
> 1 || list_only
)
357 for (j
= 0; j
< cur_flist
->used
; j
++) {
358 struct file_struct
*file
= cur_flist
->sorted
[j
];
360 if (!F_IS_ACTIVE(file
))
365 if (!(file
->flags
& FLAG_CONTENT_DIR
)) {
366 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(file
));
370 if (DEBUG_GTE(DEL
, 1) && file
->flags
& FLAG_TOP_DIR
)
371 rprintf(FINFO
, "deleting in %s\n", fbuf
);
373 if (link_stat(fbuf
, &st
, keep_dirlinks
) < 0
374 || !S_ISDIR(st
.st_mode
))
377 delete_in_dir(fbuf
, file
, &st
.st_dev
);
379 delete_in_dir(NULL
, NULL
, &dev_zero
);
381 if (INFO_GTE(FLIST
, 2) && !am_server
)
382 rprintf(FINFO
, " \r");
385 static inline int time_differs(struct file_struct
*file
, stat_x
*sxp
)
387 return cmp_time(sxp
->st
.st_mtime
, file
->modtime
);
390 static inline int perms_differ(struct file_struct
*file
, stat_x
*sxp
)
393 return !BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
);
395 if (preserve_executability
)
396 return (sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0);
401 static inline int ownership_differs(struct file_struct
*file
, stat_x
*sxp
)
403 if (am_root
&& uid_ndx
&& sxp
->st
.st_uid
!= (uid_t
)F_OWNER(file
))
406 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
) && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
413 static inline int acls_differ(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
416 if (!ACL_READY(*sxp
))
418 if (set_acl(NULL
, file
, sxp
, file
->mode
))
426 #ifdef SUPPORT_XATTRS
427 static inline int xattrs_differ(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
429 if (preserve_xattrs
) {
430 if (!XATTR_READY(*sxp
))
431 get_xattr(fname
, sxp
);
432 if (xattr_diff(file
, sxp
, 0))
440 int unchanged_attrs(const char *fname
, struct file_struct
*file
, stat_x
*sxp
)
442 if (S_ISLNK(file
->mode
)) {
443 #ifdef CAN_SET_SYMLINK_TIMES
444 if (preserve_times
& PRESERVE_LINK_TIMES
&& time_differs(file
, sxp
))
447 #ifdef CAN_CHMOD_SYMLINK
448 if (perms_differ(file
, sxp
))
451 #ifdef CAN_CHOWN_SYMLINK
452 if (ownership_differs(file
, sxp
))
455 #if defined SUPPORT_ACLS && 0 /* no current symlink-ACL support */
456 if (acls_differ(fname
, file
, sxp
))
459 #if defined SUPPORT_XATTRS && !defined NO_SYMLINK_XATTRS
460 if (xattrs_differ(fname
, file
, sxp
))
464 if (preserve_times
&& time_differs(file
, sxp
))
466 if (perms_differ(file
, sxp
))
468 if (ownership_differs(file
, sxp
))
471 if (acls_differ(fname
, file
, sxp
))
474 #ifdef SUPPORT_XATTRS
475 if (xattrs_differ(fname
, file
, sxp
))
483 void itemize(const char *fnamecmp
, struct file_struct
*file
, int ndx
, int statret
,
484 stat_x
*sxp
, int32 iflags
, uchar fnamecmp_type
,
487 if (statret
>= 0) { /* A from-dest-dir statret can == 1! */
488 int keep_time
= !preserve_times
? 0
489 : S_ISDIR(file
->mode
) ? preserve_times
& PRESERVE_DIR_TIMES
490 : S_ISLNK(file
->mode
) ? preserve_times
& PRESERVE_LINK_TIMES
493 if (S_ISREG(file
->mode
) && F_LENGTH(file
) != sxp
->st
.st_size
)
494 iflags
|= ITEM_REPORT_SIZE
;
495 if (file
->flags
& FLAG_TIME_FAILED
) { /* symlinks only */
496 if (iflags
& ITEM_LOCAL_CHANGE
)
497 iflags
|= symlink_timeset_failed_flags
;
499 ? cmp_time(file
->modtime
, sxp
->st
.st_mtime
) != 0
500 : iflags
& (ITEM_TRANSFER
|ITEM_LOCAL_CHANGE
) && !(iflags
& ITEM_MATCHED
)
501 && (!(iflags
& ITEM_XNAME_FOLLOWS
) || *xname
))
502 iflags
|= ITEM_REPORT_TIME
;
503 #if !defined HAVE_LCHMOD && !defined HAVE_SETATTRLIST
504 if (S_ISLNK(file
->mode
)) {
508 if (preserve_perms
) {
509 if (!BITS_EQUAL(sxp
->st
.st_mode
, file
->mode
, CHMOD_BITS
))
510 iflags
|= ITEM_REPORT_PERMS
;
511 } else if (preserve_executability
512 && ((sxp
->st
.st_mode
& 0111 ? 1 : 0) ^ (file
->mode
& 0111 ? 1 : 0)))
513 iflags
|= ITEM_REPORT_PERMS
;
514 if (uid_ndx
&& am_root
&& (uid_t
)F_OWNER(file
) != sxp
->st
.st_uid
)
515 iflags
|= ITEM_REPORT_OWNER
;
516 if (gid_ndx
&& !(file
->flags
& FLAG_SKIP_GROUP
)
517 && sxp
->st
.st_gid
!= (gid_t
)F_GROUP(file
))
518 iflags
|= ITEM_REPORT_GROUP
;
520 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
521 if (!ACL_READY(*sxp
))
522 get_acl(fnamecmp
, sxp
);
523 if (set_acl(NULL
, file
, sxp
, file
->mode
))
524 iflags
|= ITEM_REPORT_ACL
;
527 #ifdef SUPPORT_XATTRS
528 if (preserve_xattrs
) {
529 if (!XATTR_READY(*sxp
))
530 get_xattr(fnamecmp
, sxp
);
531 if (xattr_diff(file
, sxp
, 1))
532 iflags
|= ITEM_REPORT_XATTR
;
536 #ifdef SUPPORT_XATTRS
537 if (preserve_xattrs
&& xattr_diff(file
, NULL
, 1))
538 iflags
|= ITEM_REPORT_XATTR
;
540 iflags
|= ITEM_IS_NEW
;
544 if ((iflags
& (SIGNIFICANT_ITEM_FLAGS
|ITEM_REPORT_XATTR
) || INFO_GTE(NAME
, 2)
545 || stdout_format_has_i
> 1 || (xname
&& *xname
)) && !read_batch
) {
546 if (protocol_version
>= 29) {
548 write_ndx(sock_f_out
, ndx
);
549 write_shortint(sock_f_out
, iflags
);
550 if (iflags
& ITEM_BASIS_TYPE_FOLLOWS
)
551 write_byte(sock_f_out
, fnamecmp_type
);
552 if (iflags
& ITEM_XNAME_FOLLOWS
)
553 write_vstring(sock_f_out
, xname
, strlen(xname
));
554 #ifdef SUPPORT_XATTRS
555 if (preserve_xattrs
&& do_xfers
556 && iflags
& (ITEM_REPORT_XATTR
|ITEM_TRANSFER
)) {
557 int fd
= iflags
& ITEM_REPORT_XATTR
558 && !(want_xattr_optim
&& BITS_SET(iflags
, ITEM_XNAME_FOLLOWS
|ITEM_LOCAL_CHANGE
))
560 send_xattr_request(NULL
, file
, fd
);
563 } else if (ndx
>= 0) {
564 enum logcode code
= logfile_format_has_i
? FINFO
: FCLIENT
;
565 log_item(code
, file
, iflags
, xname
);
571 /* Perform our quick-check heuristic for determining if a file is unchanged. */
572 int unchanged_file(char *fn
, struct file_struct
*file
, STRUCT_STAT
*st
)
574 if (st
->st_size
!= F_LENGTH(file
))
577 /* if always checksum is set then we use the checksum instead
578 of the file time to determine whether to sync */
579 if (always_checksum
> 0 && S_ISREG(st
->st_mode
)) {
580 char sum
[MAX_DIGEST_LEN
];
581 file_checksum(fn
, st
, sum
);
582 return memcmp(sum
, F_SUM(file
), checksum_len
) == 0;
591 return cmp_time(st
->st_mtime
, file
->modtime
) == 0;
596 * set (initialize) the size entries in the per-file sum_struct
597 * calculating dynamic block and checksum sizes.
599 * This is only called from generate_and_send_sums() but is a separate
600 * function to encapsulate the logic.
602 * The block size is a rounded square root of file length.
604 * The checksum size is determined according to:
605 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
606 * provided by Donovan Baarda which gives a probability of rsync
607 * algorithm corrupting data and falling back using the whole md4
610 * This might be made one of several selectable heuristics.
612 static void sum_sizes_sqroot(struct sum_struct
*sum
, int64 len
)
619 /* The file length overflowed our int64 var, so we can't process this file. */
620 sum
->count
= -1; /* indicate overflow error */
625 blength
= block_size
;
626 else if (len
<= BLOCK_SIZE
* BLOCK_SIZE
)
627 blength
= BLOCK_SIZE
;
629 int32 max_blength
= protocol_version
< 30 ? OLD_MAX_BLOCK_SIZE
: MAX_BLOCK_SIZE
;
632 for (c
= 1, l
= len
, cnt
= 0; l
>>= 2; c
<<= 1, cnt
++) {}
633 if (c
< 0 || c
>= max_blength
)
634 blength
= max_blength
;
639 if (len
< (int64
)blength
* blength
)
642 } while (c
>= 8); /* round to multiple of 8 */
643 blength
= MAX(blength
, BLOCK_SIZE
);
647 if (protocol_version
< 27) {
648 s2length
= csum_length
;
649 } else if (csum_length
== SUM_LENGTH
) {
650 s2length
= SUM_LENGTH
;
653 int b
= BLOCKSUM_BIAS
;
654 for (l
= len
; l
>>= 1; b
+= 2) {}
655 for (c
= blength
; (c
>>= 1) && b
; b
--) {}
656 /* add a bit, subtract rollsum, round up. */
657 s2length
= (b
+ 1 - 32 + 7) / 8; /* --optimize in compiler-- */
658 s2length
= MAX(s2length
, csum_length
);
659 s2length
= MIN(s2length
, SUM_LENGTH
);
663 sum
->blength
= blength
;
664 sum
->s2length
= s2length
;
665 sum
->remainder
= (int32
)(len
% blength
);
666 sum
->count
= (int32
)(l
= (len
/ blength
) + (sum
->remainder
!= 0));
668 if ((int64
)sum
->count
!= l
)
671 if (sum
->count
&& DEBUG_GTE(DELTASUM
, 2)) {
673 "count=%s rem=%ld blength=%ld s2length=%d flength=%s\n",
674 big_num(sum
->count
), (long)sum
->remainder
, (long)sum
->blength
,
675 sum
->s2length
, big_num(sum
->flength
));
681 * Generate and send a stream of signatures/checksums that describe a buffer
683 * Generate approximately one checksum every block_len bytes.
685 static int generate_and_send_sums(int fd
, OFF_T len
, int f_out
, int f_copy
)
688 struct map_struct
*mapbuf
;
689 struct sum_struct sum
;
692 sum_sizes_sqroot(&sum
, len
);
695 write_sum_head(f_out
, &sum
);
697 if (append_mode
> 0 && f_copy
< 0)
701 mapbuf
= map_file(fd
, len
, MAX_MAP_SIZE
, sum
.blength
);
705 for (i
= 0; i
< sum
.count
; i
++) {
706 int32 n1
= (int32
)MIN(len
, (OFF_T
)sum
.blength
);
707 char *map
= map_ptr(mapbuf
, offset
, n1
);
708 char sum2
[SUM_LENGTH
];
715 full_write(f_copy
, map
, n1
);
720 sum1
= get_checksum1(map
, n1
);
721 get_checksum2(map
, n1
, sum2
);
723 if (DEBUG_GTE(DELTASUM
, 3)) {
725 "chunk[%s] offset=%s len=%ld sum1=%08lx\n",
726 big_num(i
), big_num(offset
- n1
), (long)n1
,
727 (unsigned long)sum1
);
729 write_int(f_out
, sum1
);
730 write_buf(f_out
, sum2
, sum
.s2length
);
740 /* Try to find a filename in the same dir as "fname" with a similar name. */
741 static struct file_struct
*find_fuzzy(struct file_struct
*file
, struct file_list
*dirlist_array
[], uchar
*fnamecmp_type_ptr
)
743 int fname_len
, fname_suf_len
;
744 const char *fname_suf
, *fname
= file
->basename
;
745 uint32 lowest_dist
= 25 << 16; /* ignore a distance greater than 25 */
747 struct file_struct
*lowest_fp
= NULL
;
749 fname_len
= strlen(fname
);
750 fname_suf
= find_filename_suffix(fname
, fname_len
, &fname_suf_len
);
752 /* Try to find an exact size+mtime match first. */
753 for (i
= 0; i
< fuzzy_basis
; i
++) {
754 struct file_list
*dirlist
= dirlist_array
[i
];
759 for (j
= 0; j
< dirlist
->used
; j
++) {
760 struct file_struct
*fp
= dirlist
->files
[j
];
762 if (!F_IS_ACTIVE(fp
))
765 if (!S_ISREG(fp
->mode
) || !F_LENGTH(fp
) || fp
->flags
& FLAG_FILE_SENT
)
768 if (F_LENGTH(fp
) == F_LENGTH(file
) && cmp_time(fp
->modtime
, file
->modtime
) == 0) {
769 if (DEBUG_GTE(FUZZY
, 2))
770 rprintf(FINFO
, "fuzzy size/modtime match for %s\n", f_name(fp
, NULL
));
771 *fnamecmp_type_ptr
= FNAMECMP_FUZZY
+ i
;
778 for (i
= 0; i
< fuzzy_basis
; i
++) {
779 struct file_list
*dirlist
= dirlist_array
[i
];
784 for (j
= 0; j
< dirlist
->used
; j
++) {
785 struct file_struct
*fp
= dirlist
->files
[j
];
786 const char *suf
, *name
;
790 if (!F_IS_ACTIVE(fp
))
793 if (!S_ISREG(fp
->mode
) || !F_LENGTH(fp
) || fp
->flags
& FLAG_FILE_SENT
)
798 suf
= find_filename_suffix(name
, len
, &suf_len
);
800 dist
= fuzzy_distance(name
, len
, fname
, fname_len
);
801 /* Add some extra weight to how well the suffixes match. */
802 dist
+= fuzzy_distance(suf
, suf_len
, fname_suf
, fname_suf_len
) * 10;
803 if (DEBUG_GTE(FUZZY
, 2)) {
804 rprintf(FINFO
, "fuzzy distance for %s = %d.%05d\n",
805 f_name(fp
, NULL
), (int)(dist
>>16), (int)(dist
&0xFFFF));
807 if (dist
<= lowest_dist
) {
810 *fnamecmp_type_ptr
= FNAMECMP_FUZZY
+ i
;
818 /* Copy a file found in our --copy-dest handling. */
819 static int copy_altdest_file(const char *src
, const char *dest
, struct file_struct
*file
)
821 char buf
[MAXPATHLEN
];
822 const char *copy_to
, *partialptr
;
823 int save_preserve_xattrs
= preserve_xattrs
;
827 /* Let copy_file open the destination in place. */
831 fd_w
= open_tmpfile(buf
, dest
, file
);
836 cleanup_set(copy_to
, NULL
, NULL
, -1, -1);
837 if (copy_file(src
, copy_to
, fd_w
, file
->mode
) < 0) {
838 if (INFO_GTE(COPY
, 1)) {
839 rsyserr(FINFO
, errno
, "copy_file %s => %s",
840 full_fname(src
), copy_to
);
842 /* Try to clean up. */
847 partialptr
= partial_dir
? partial_dir_fname(dest
) : NULL
;
848 preserve_xattrs
= 0; /* xattrs were copied with file */
849 ok
= finish_transfer(dest
, copy_to
, src
, partialptr
, file
, 1, 0);
850 preserve_xattrs
= save_preserve_xattrs
;
855 /* This is only called for regular files. We return -2 if we've finished
856 * handling the file, -1 if no dest-linking occurred, or a non-negative
857 * value if we found an alternate basis file. If we're called with the
858 * find_exact_for_existing flag, the destination file already exists, so
859 * we only try to find an exact alt-dest match. In this case, the returns
860 * are only -2 & -1 (both as above). */
861 static int try_dests_reg(struct file_struct
*file
, char *fname
, int ndx
,
862 char *cmpbuf
, stat_x
*sxp
, int find_exact_for_existing
,
863 int itemizing
, enum logcode code
)
865 STRUCT_STAT real_st
= sxp
->st
;
871 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
872 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0 || !S_ISREG(sxp
->st
.st_mode
))
874 switch (match_level
) {
880 if (!unchanged_file(cmpbuf
, file
, &sxp
->st
))
886 if (!unchanged_attrs(cmpbuf
, file
, sxp
)) {
895 } while (basis_dir
[++j
] != NULL
);
900 if (j
!= best_match
) {
902 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
903 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
907 if (match_level
== 3 && !copy_dest
) {
908 if (find_exact_for_existing
) {
909 if (link_dest
&& real_st
.st_dev
== sxp
->st
.st_dev
&& real_st
.st_ino
== sxp
->st
.st_ino
)
911 if (do_unlink(fname
) < 0 && errno
!= ENOENT
) {
916 #ifdef SUPPORT_HARD_LINKS
918 if (!hard_link_one(file
, fname
, cmpbuf
, 1))
920 if (preserve_hard_links
&& F_IS_HLINKED(file
))
921 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, j
);
922 if (!maybe_ATTRS_REPORT
&& (INFO_GTE(NAME
, 2) || stdout_format_has_i
> 1)) {
923 itemize(cmpbuf
, file
, ndx
, 1, sxp
,
924 ITEM_LOCAL_CHANGE
| ITEM_XNAME_FOLLOWS
,
931 itemize(cmpbuf
, file
, ndx
, 0, sxp
, 0, 0, NULL
);
933 if (INFO_GTE(NAME
, 2) && maybe_ATTRS_REPORT
)
934 rprintf(FCLIENT
, "%s is uptodate\n", fname
);
938 if (find_exact_for_existing
) {
943 if (match_level
>= 2) {
944 #ifdef SUPPORT_HARD_LINKS
945 try_a_copy
: /* Copy the file locally. */
947 if (!dry_run
&& copy_altdest_file(cmpbuf
, fname
, file
) < 0) {
948 if (find_exact_for_existing
) /* Can get here via hard-link failure */
953 itemize(cmpbuf
, file
, ndx
, 0, sxp
, ITEM_LOCAL_CHANGE
, 0, NULL
);
954 if (maybe_ATTRS_REPORT
955 && ((!itemizing
&& INFO_GTE(NAME
, 1) && match_level
== 2)
956 || (INFO_GTE(NAME
, 2) && match_level
== 3))) {
957 code
= match_level
== 3 ? FCLIENT
: FINFO
;
958 rprintf(code
, "%s%s\n", fname
,
959 match_level
== 3 ? " is uptodate" : "");
961 #ifdef SUPPORT_HARD_LINKS
962 if (preserve_hard_links
&& F_IS_HLINKED(file
))
963 finish_hard_link(file
, fname
, ndx
, &sxp
->st
, itemizing
, code
, -1);
968 return FNAMECMP_BASIS_DIR_LOW
+ j
;
971 /* This is only called for non-regular files. We return -2 if we've finished
972 * handling the file, or -1 if no dest-linking occurred, or a non-negative
973 * value if we found an alternate basis file. */
974 static int try_dests_non(struct file_struct
*file
, char *fname
, int ndx
,
975 char *cmpbuf
, stat_x
*sxp
, int itemizing
,
980 enum nonregtype type
;
983 char lnk
[MAXPATHLEN
];
988 #ifndef SUPPORT_LINKS
989 if (S_ISLNK(file
->mode
))
992 if (S_ISDIR(file
->mode
)) {
994 } else if (IS_SPECIAL(file
->mode
))
996 else if (IS_DEVICE(file
->mode
))
999 else if (S_ISLNK(file
->mode
))
1000 type
= TYPE_SYMLINK
;
1004 "internal: try_dests_non() called with invalid mode (%o)\n",
1006 exit_cleanup(RERR_UNSUPPORTED
);
1010 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1011 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1015 if (!S_ISDIR(sxp
->st
.st_mode
))
1019 if (!IS_SPECIAL(sxp
->st
.st_mode
))
1023 if (!IS_DEVICE(sxp
->st
.st_mode
))
1027 #ifdef SUPPORT_LINKS
1028 if (!S_ISLNK(sxp
->st
.st_mode
))
1035 if (match_level
< 1) {
1044 devp
= F_RDEV_P(file
);
1045 if (sxp
->st
.st_rdev
!= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
)))
1049 #ifdef SUPPORT_LINKS
1050 if ((len
= do_readlink(cmpbuf
, lnk
, MAXPATHLEN
-1)) <= 0)
1053 if (strcmp(lnk
, F_SYMLINK(file
)) != 0)
1060 if (match_level
< 2) {
1064 if (unchanged_attrs(cmpbuf
, file
, sxp
)) {
1069 } while (basis_dir
[++j
] != NULL
);
1074 if (j
!= best_match
) {
1076 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
1077 if (link_stat(cmpbuf
, &sxp
->st
, 0) < 0)
1081 if (match_level
== 3) {
1082 #ifdef SUPPORT_HARD_LINKS
1084 #ifndef CAN_HARDLINK_SYMLINK
1085 && !S_ISLNK(file
->mode
)
1087 #ifndef CAN_HARDLINK_SPECIAL
1088 && !IS_SPECIAL(file
->mode
) && !IS_DEVICE(file
->mode
)
1090 && !S_ISDIR(file
->mode
)) {
1091 if (do_link(cmpbuf
, fname
) < 0) {
1092 rsyserr(FERROR_XFER
, errno
,
1093 "failed to hard-link %s with %s",
1097 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1098 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1102 if (itemizing
&& stdout_format_has_i
1103 && (INFO_GTE(NAME
, 2) || stdout_format_has_i
> 1)) {
1104 int chg
= compare_dest
&& type
!= TYPE_DIR
? 0
1105 : ITEM_LOCAL_CHANGE
+ (match_level
== 3 ? ITEM_XNAME_FOLLOWS
: 0);
1106 char *lp
= match_level
== 3 ? "" : NULL
;
1107 itemize(cmpbuf
, file
, ndx
, 0, sxp
, chg
+ ITEM_MATCHED
, 0, lp
);
1109 if (INFO_GTE(NAME
, 2) && maybe_ATTRS_REPORT
) {
1110 rprintf(FCLIENT
, "%s%s is uptodate\n",
1111 fname
, type
== TYPE_DIR
? "/" : "");
1119 static void list_file_entry(struct file_struct
*f
)
1121 char permbuf
[PERMSTRING_SIZE
];
1123 int colwidth
= human_readable
? 14 : 11;
1125 if (!F_IS_ACTIVE(f
)) {
1126 /* this can happen if duplicate names were removed */
1130 permstring(permbuf
, f
->mode
);
1133 /* TODO: indicate '+' if the entry has an ACL. */
1135 #ifdef SUPPORT_LINKS
1136 if (preserve_links
&& S_ISLNK(f
->mode
)) {
1137 rprintf(FINFO
, "%s %*s %s %s -> %s\n",
1138 permbuf
, colwidth
, human_num(len
),
1139 timestring(f
->modtime
), f_name(f
, NULL
),
1143 if (missing_args
== 2 && f
->mode
== 0) {
1144 rprintf(FINFO
, "%-*s %s\n",
1145 colwidth
+ 31, "*missing",
1148 rprintf(FINFO
, "%s %*s %s %s\n",
1149 permbuf
, colwidth
, human_num(len
),
1150 timestring(f
->modtime
), f_name(f
, NULL
));
1154 static int phase
= 0;
1155 static int dflt_perms
;
1157 static int implied_dirs_are_missing
;
1158 /* Helper for recv_generator's skip_dir and dry_missing_dir tests. */
1159 static BOOL
is_below(struct file_struct
*file
, struct file_struct
*subtree
)
1161 return F_DEPTH(file
) > F_DEPTH(subtree
)
1162 && (!implied_dirs_are_missing
|| f_name_has_prefix(file
, subtree
));
1165 /* Acts on the indicated item in cur_flist whose name is fname. If a dir,
1166 * make sure it exists, and has the right permissions/timestamp info. For
1167 * all other non-regular files (symlinks, etc.) we create them here. For
1168 * regular files that have changed, we try to find a basis file and then
1169 * start sending checksums. The ndx is the file's unique index value.
1171 * The fname parameter must point to a MAXPATHLEN buffer! (e.g it gets
1172 * passed to delete_item(), which can use it during a recursive delete.)
1174 * Note that f_out is set to -1 when doing final directory-permission and
1175 * modification-time repair. */
1176 static void recv_generator(char *fname
, struct file_struct
*file
, int ndx
,
1177 int itemizing
, enum logcode code
, int f_out
)
1179 static const char *parent_dirname
= "";
1180 /* Missing dir not created due to --dry-run; will still be scanned. */
1181 static struct file_struct
*dry_missing_dir
= NULL
;
1182 /* Missing dir whose contents are skipped altogether due to
1183 * --ignore-non-existing, daemon exclude, or mkdir failure. */
1184 static struct file_struct
*skip_dir
= NULL
;
1185 static struct file_list
*fuzzy_dirlist
[MAX_BASIS_DIRS
+1];
1186 static int need_fuzzy_dirlist
= 0;
1187 struct file_struct
*fuzzy_file
= NULL
;
1188 int fd
= -1, f_copy
= -1;
1190 STRUCT_STAT partial_st
;
1191 struct file_struct
*back_file
= NULL
;
1192 int statret
, real_ret
, stat_errno
;
1193 char *fnamecmp
, *partialptr
, *backupptr
= NULL
;
1194 char fnamecmpbuf
[MAXPATHLEN
];
1195 uchar fnamecmp_type
;
1196 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1197 int is_dir
= !S_ISDIR(file
->mode
) ? 0
1198 : inc_recurse
&& ndx
!= cur_flist
->ndx_start
- 1 ? -1
1201 if (DEBUG_GTE(GENR
, 1))
1202 rprintf(FINFO
, "recv_generator(%s,%d)\n", fname
, ndx
);
1206 || (is_dir
&& !implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
1208 list_file_entry(file
);
1213 if (is_below(file
, skip_dir
)) {
1215 file
->flags
|= FLAG_MISSING_DIR
;
1216 #ifdef SUPPORT_HARD_LINKS
1217 else if (F_IS_HLINKED(file
))
1218 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1226 if (daemon_filter_list
.head
&& (*fname
!= '.' || fname
[1])) {
1227 if (check_filter(&daemon_filter_list
, FLOG
, fname
, is_dir
) < 0) {
1230 #ifdef SUPPORT_HARD_LINKS
1231 if (F_IS_HLINKED(file
))
1232 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1234 rprintf(FERROR_XFER
,
1235 "ERROR: daemon refused to receive %s \"%s\"\n",
1236 is_dir
? "directory" : "file", fname
);
1238 goto skipping_dir_contents
;
1243 if (dry_run
> 1 || (dry_missing_dir
&& is_below(file
, dry_missing_dir
))) {
1245 parent_is_dry_missing
:
1246 for (i
= 0; i
< fuzzy_basis
; i
++) {
1247 if (fuzzy_dirlist
[i
]) {
1248 flist_free(fuzzy_dirlist
[i
]);
1249 fuzzy_dirlist
[i
] = NULL
;
1252 parent_dirname
= "";
1254 stat_errno
= ENOENT
;
1256 const char *dn
= file
->dirname
? file
->dirname
: ".";
1257 dry_missing_dir
= NULL
;
1258 if (parent_dirname
!= dn
&& strcmp(parent_dirname
, dn
) != 0) {
1259 if (relative_paths
&& !implied_dirs
1260 && do_stat(dn
, &sx
.st
) < 0) {
1262 goto parent_is_dry_missing
;
1263 if (make_path(fname
, MKP_DROP_NAME
| MKP_SKIP_SLASH
) < 0) {
1264 rsyserr(FERROR_XFER
, errno
,
1265 "recv_generator: mkdir %s failed",
1271 for (i
= 0; i
< fuzzy_basis
; i
++) {
1272 if (fuzzy_dirlist
[i
]) {
1273 flist_free(fuzzy_dirlist
[i
]);
1274 fuzzy_dirlist
[i
] = NULL
;
1277 need_fuzzy_dirlist
= 1;
1280 if (!preserve_perms
)
1281 dflt_perms
= default_perms_for_dir(dn
);
1284 parent_dirname
= dn
;
1286 if (need_fuzzy_dirlist
&& S_ISREG(file
->mode
)) {
1288 strlcpy(fnamecmpbuf
, dn
, sizeof fnamecmpbuf
);
1289 for (i
= 0; i
< fuzzy_basis
; i
++) {
1290 if (i
&& pathjoin(fnamecmpbuf
, MAXPATHLEN
, basis_dir
[i
-1], dn
) >= MAXPATHLEN
)
1292 fuzzy_dirlist
[i
] = get_dirlist(fnamecmpbuf
, -1, GDL_IGNORE_FILTER_RULES
);
1293 if (fuzzy_dirlist
[i
] && fuzzy_dirlist
[i
]->used
== 0) {
1294 flist_free(fuzzy_dirlist
[i
]);
1295 fuzzy_dirlist
[i
] = NULL
;
1298 need_fuzzy_dirlist
= 0;
1301 statret
= link_stat(fname
, &sx
.st
, keep_dirlinks
&& is_dir
);
1305 if (missing_args
== 2 && file
->mode
== 0) {
1306 if (filter_list
.head
&& check_filter(&filter_list
, FINFO
, fname
, is_dir
) < 0)
1309 delete_item(fname
, sx
.st
.st_mode
, del_opts
);
1313 if (ignore_non_existing
> 0 && statret
== -1 && stat_errno
== ENOENT
) {
1318 file
->flags
|= FLAG_MISSING_DIR
;
1320 #ifdef SUPPORT_HARD_LINKS
1321 else if (F_IS_HLINKED(file
))
1322 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1324 if (INFO_GTE(SKIP
, 1)) {
1325 rprintf(FINFO
, "not creating new %s \"%s\"\n",
1326 is_dir
? "directory" : "file", fname
);
1331 if (statret
== 0 && !(sx
.st
.st_mode
& S_IWUSR
)
1332 && !am_root
&& sx
.st
.st_uid
== our_uid
)
1333 del_opts
|= DEL_NO_UID_WRITE
;
1335 if (ignore_existing
> 0 && statret
== 0
1336 && (!is_dir
|| !S_ISDIR(sx
.st
.st_mode
))) {
1337 if (INFO_GTE(SKIP
, 1) && is_dir
>= 0)
1338 rprintf(FINFO
, "%s exists\n", fname
);
1339 #ifdef SUPPORT_HARD_LINKS
1340 if (F_IS_HLINKED(file
))
1341 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1350 if (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
)
1353 /* For --fake-super, the dir must be useable by the copying
1354 * user, just like it would be for root. */
1355 added_perms
= S_IRUSR
|S_IWUSR
|S_IXUSR
;
1359 if (!(preserve_times
& PRESERVE_DIR_TIMES
))
1361 /* In inc_recurse mode we want to make sure any missing
1362 * directories get created while we're still processing
1363 * the parent dir (which allows us to touch the parent
1364 * dir's mtime right away). We will handle the dir in
1365 * full later (right before we handle its contents). */
1367 && (S_ISDIR(sx
.st
.st_mode
)
1368 || delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0))
1369 goto cleanup
; /* Any errors get reported later. */
1370 if (do_mkdir(fname
, (file
->mode
|added_perms
) & 0700) == 0)
1371 file
->flags
|= FLAG_DIR_CREATED
;
1374 /* The file to be received is a directory, so we need
1375 * to prepare appropriately. If there is already a
1376 * file of that name and it is *not* a directory, then
1377 * we need to delete it. If it doesn't exist, then
1378 * (perhaps recursively) create it. */
1379 if (statret
== 0 && !S_ISDIR(sx
.st
.st_mode
)) {
1380 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_DIR
) != 0)
1381 goto skipping_dir_contents
;
1384 if (dry_run
&& statret
!= 0) {
1385 if (!dry_missing_dir
)
1386 dry_missing_dir
= file
;
1387 file
->flags
|= FLAG_MISSING_DIR
;
1389 init_stat_x(&real_sx
);
1392 if (file
->flags
& FLAG_DIR_CREATED
)
1394 if (!preserve_perms
) { /* See comment in non-dir code below. */
1395 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
,
1396 dflt_perms
, statret
== 0);
1398 if (statret
!= 0 && basis_dir
[0] != NULL
) {
1399 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1405 } else if (j
>= 0) {
1407 fnamecmp
= fnamecmpbuf
;
1410 if (itemizing
&& f_out
!= -1) {
1411 itemize(fnamecmp
, file
, ndx
, statret
, &sx
,
1412 statret
? ITEM_LOCAL_CHANGE
: 0, 0, NULL
);
1414 if (real_ret
!= 0 && do_mkdir(fname
,file
->mode
|added_perms
) < 0 && errno
!= EEXIST
) {
1415 if (!relative_paths
|| errno
!= ENOENT
1416 || make_path(fname
, MKP_DROP_NAME
| MKP_SKIP_SLASH
) < 0
1417 || (do_mkdir(fname
, file
->mode
|added_perms
) < 0 && errno
!= EEXIST
)) {
1418 rsyserr(FERROR_XFER
, errno
,
1419 "recv_generator: mkdir %s failed",
1421 skipping_dir_contents
:
1423 "*** Skipping any contents from this failed directory ***\n");
1425 file
->flags
|= FLAG_MISSING_DIR
;
1430 #ifdef SUPPORT_XATTRS
1431 if (preserve_xattrs
&& statret
== 1)
1432 copy_xattrs(fnamecmpbuf
, fname
);
1434 if (set_file_attrs(fname
, file
, real_ret
? NULL
: &real_sx
, NULL
, 0)
1435 && INFO_GTE(NAME
, 1) && code
!= FNONE
&& f_out
!= -1)
1436 rprintf(code
, "%s/\n", fname
);
1438 /* We need to ensure that the dirs in the transfer have both
1439 * readable and writable permissions during the time we are
1440 * putting files within them. This is then restored to the
1441 * former permissions after the transfer is done. */
1443 if (!am_root
&& (file
->mode
& S_IRWXU
) != S_IRWXU
&& dir_tweaking
) {
1444 mode_t mode
= file
->mode
| S_IRWXU
;
1445 if (do_chmod(fname
, mode
) < 0) {
1446 rsyserr(FERROR_XFER
, errno
,
1447 "failed to modify permissions on %s",
1450 need_retouch_dir_perms
= 1;
1454 if (real_ret
!= 0 && one_file_system
)
1455 real_sx
.st
.st_dev
= filesystem_dev
;
1457 if (one_file_system
) {
1458 uint32
*devp
= F_DIR_DEV_P(file
);
1459 DEV_MAJOR(devp
) = major(real_sx
.st
.st_dev
);
1460 DEV_MINOR(devp
) = minor(real_sx
.st
.st_dev
);
1463 else if (delete_during
&& f_out
!= -1 && !phase
1464 && !(file
->flags
& FLAG_MISSING_DIR
)) {
1465 if (file
->flags
& FLAG_CONTENT_DIR
)
1466 delete_in_dir(fname
, file
, &real_sx
.st
.st_dev
);
1468 change_local_filter_dir(fname
, strlen(fname
), F_DEPTH(file
));
1473 /* If we're not preserving permissions, change the file-list's
1474 * mode based on the local permissions and some heuristics. */
1475 if (!preserve_perms
) {
1476 int exists
= statret
== 0 && !S_ISDIR(sx
.st
.st_mode
);
1477 file
->mode
= dest_mode(file
->mode
, sx
.st
.st_mode
, dflt_perms
,
1481 #ifdef SUPPORT_HARD_LINKS
1482 if (preserve_hard_links
&& F_HLINK_NOT_FIRST(file
)
1483 && hard_link_check(file
, ndx
, fname
, statret
, &sx
, itemizing
, code
))
1487 if (preserve_links
&& S_ISLNK(file
->mode
)) {
1488 #ifdef SUPPORT_LINKS
1489 const char *sl
= F_SYMLINK(file
);
1490 if (safe_symlinks
&& unsafe_symlink(sl
, fname
)) {
1491 if (INFO_GTE(NAME
, 1)) {
1493 /* fname contains the destination path, but we
1494 * want to report the source path. */
1495 fname
= f_name(file
, NULL
);
1498 "ignoring unsafe symlink \"%s\" -> \"%s\"\n",
1504 char lnk
[MAXPATHLEN
];
1507 if (S_ISLNK(sx
.st
.st_mode
)
1508 && (len
= do_readlink(fname
, lnk
, MAXPATHLEN
-1)) > 0
1509 && strncmp(lnk
, sl
, len
) == 0 && sl
[len
] == '\0') {
1510 /* The link is pointing to the right place. */
1511 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1513 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1514 #ifdef SUPPORT_HARD_LINKS
1515 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1516 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1518 if (remove_source_files
== 1)
1519 goto return_with_success
;
1522 } else if (basis_dir
[0] != NULL
) {
1523 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1526 #ifndef CAN_HARDLINK_SYMLINK
1528 /* Resort to --copy-dest behavior. */
1535 } else if (j
>= 0) {
1537 fnamecmp
= fnamecmpbuf
;
1540 if (atomic_create(file
, fname
, sl
, NULL
, MAKEDEV(0, 0), &sx
, statret
== 0 ? DEL_FOR_SYMLINK
: 0)) {
1541 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1543 if (statret
== 0 && !S_ISLNK(sx
.st
.st_mode
))
1545 itemize(fnamecmp
, file
, ndx
, statret
, &sx
,
1546 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1548 if (code
!= FNONE
&& INFO_GTE(NAME
, 1))
1549 rprintf(code
, "%s -> %s\n", fname
, sl
);
1550 #ifdef SUPPORT_HARD_LINKS
1551 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1552 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1554 /* This does not check remove_source_files == 1
1555 * because this is one of the items that the old
1556 * --remove-sent-files option would remove. */
1557 if (remove_source_files
)
1558 goto return_with_success
;
1564 if ((am_root
&& preserve_devices
&& IS_DEVICE(file
->mode
))
1565 || (preserve_specials
&& IS_SPECIAL(file
->mode
))) {
1567 int del_for_flag
= 0;
1568 if (IS_DEVICE(file
->mode
)) {
1569 uint32
*devp
= F_RDEV_P(file
);
1570 rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
1574 if (IS_DEVICE(file
->mode
)) {
1575 if (!IS_DEVICE(sx
.st
.st_mode
))
1577 del_for_flag
= DEL_FOR_DEVICE
;
1579 if (!IS_SPECIAL(sx
.st
.st_mode
))
1581 del_for_flag
= DEL_FOR_SPECIAL
;
1584 && BITS_EQUAL(sx
.st
.st_mode
, file
->mode
, _S_IFMT
)
1585 && (IS_SPECIAL(sx
.st
.st_mode
) || sx
.st
.st_rdev
== rdev
)) {
1586 /* The device or special file is identical. */
1587 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1589 itemize(fname
, file
, ndx
, 0, &sx
, 0, 0, NULL
);
1590 #ifdef SUPPORT_HARD_LINKS
1591 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1592 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1594 if (remove_source_files
== 1)
1595 goto return_with_success
;
1598 } else if (basis_dir
[0] != NULL
) {
1599 int j
= try_dests_non(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1602 #ifndef CAN_HARDLINK_SPECIAL
1604 /* Resort to --copy-dest behavior. */
1611 } else if (j
>= 0) {
1613 fnamecmp
= fnamecmpbuf
;
1616 if (DEBUG_GTE(GENR
, 1)) {
1617 rprintf(FINFO
, "mknod(%s, 0%o, [%ld,%ld])\n",
1618 fname
, (int)file
->mode
,
1619 (long)major(rdev
), (long)minor(rdev
));
1621 if (atomic_create(file
, fname
, NULL
, NULL
, rdev
, &sx
, del_for_flag
)) {
1622 set_file_attrs(fname
, file
, NULL
, NULL
, 0);
1624 itemize(fnamecmp
, file
, ndx
, statret
, &sx
,
1625 ITEM_LOCAL_CHANGE
|ITEM_REPORT_CHANGE
, 0, NULL
);
1627 if (code
!= FNONE
&& INFO_GTE(NAME
, 1))
1628 rprintf(code
, "%s\n", fname
);
1629 #ifdef SUPPORT_HARD_LINKS
1630 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1631 finish_hard_link(file
, fname
, ndx
, NULL
, itemizing
, code
, -1);
1633 if (remove_source_files
== 1)
1634 goto return_with_success
;
1639 if (!S_ISREG(file
->mode
)) {
1641 fname
= f_name(file
, NULL
);
1642 rprintf(FINFO
, "skipping non-regular file \"%s\"\n", fname
);
1646 if (max_size
>= 0 && F_LENGTH(file
) > max_size
) {
1647 if (INFO_GTE(SKIP
, 1)) {
1649 fname
= f_name(file
, NULL
);
1650 rprintf(FINFO
, "%s is over max-size\n", fname
);
1654 if (min_size
>= 0 && F_LENGTH(file
) < min_size
) {
1655 if (INFO_GTE(SKIP
, 1)) {
1657 fname
= f_name(file
, NULL
);
1658 rprintf(FINFO
, "%s is under min-size\n", fname
);
1663 if (update_only
> 0 && statret
== 0
1664 && cmp_time(sx
.st
.st_mtime
, file
->modtime
) > 0) {
1665 if (INFO_GTE(SKIP
, 1))
1666 rprintf(FINFO
, "%s is newer\n", fname
);
1667 #ifdef SUPPORT_HARD_LINKS
1668 if (F_IS_HLINKED(file
))
1669 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1674 fnamecmp_type
= FNAMECMP_FNAME
;
1676 if (statret
== 0 && !S_ISREG(sx
.st
.st_mode
)) {
1677 if (delete_item(fname
, sx
.st
.st_mode
, del_opts
| DEL_FOR_FILE
) != 0)
1680 stat_errno
= ENOENT
;
1683 if (basis_dir
[0] != NULL
&& (statret
!= 0 || !copy_dest
)) {
1684 int j
= try_dests_reg(file
, fname
, ndx
, fnamecmpbuf
, &sx
,
1685 statret
== 0, itemizing
, code
);
1687 if (remove_source_files
== 1)
1688 goto return_with_success
;
1692 fnamecmp
= fnamecmpbuf
;
1698 init_stat_x(&real_sx
);
1699 real_sx
.st
= sx
.st
; /* Don't copy xattr/acl pointers, as they would free wrong. */
1702 if (partial_dir
&& (partialptr
= partial_dir_fname(fname
)) != NULL
1703 && link_stat(partialptr
, &partial_st
, 0) == 0
1704 && S_ISREG(partial_st
.st_mode
)) {
1706 goto prepare_to_open
;
1710 if (statret
!= 0 && fuzzy_basis
) {
1711 /* Sets fnamecmp_type to FNAMECMP_FUZZY or above. */
1712 fuzzy_file
= find_fuzzy(file
, fuzzy_dirlist
, &fnamecmp_type
);
1714 f_name(fuzzy_file
, fnamecmpbuf
);
1715 if (DEBUG_GTE(FUZZY
, 1)) {
1716 rprintf(FINFO
, "fuzzy basis selected for %s: %s\n",
1717 fname
, fnamecmpbuf
);
1719 sx
.st
.st_size
= F_LENGTH(fuzzy_file
);
1721 fnamecmp
= fnamecmpbuf
;
1726 #ifdef SUPPORT_HARD_LINKS
1727 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1728 cur_flist
->in_progress
++;
1732 if (stat_errno
== ENOENT
)
1734 rsyserr(FERROR_XFER
, stat_errno
, "recv_generator: failed to stat %s",
1739 if (fnamecmp_type
<= FNAMECMP_BASIS_DIR_HIGH
)
1741 else if (fnamecmp_type
== FNAMECMP_FUZZY
)
1743 else if (unchanged_file(fnamecmp
, file
, &sx
.st
)) {
1745 do_unlink(partialptr
);
1746 handle_partial_dir(partialptr
, PDIR_DELETE
);
1748 set_file_attrs(fname
, file
, &sx
, NULL
, maybe_ATTRS_REPORT
);
1750 itemize(fnamecmp
, file
, ndx
, statret
, &sx
, 0, 0, NULL
);
1751 #ifdef SUPPORT_HARD_LINKS
1752 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1753 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1755 if (remove_source_files
!= 1)
1757 return_with_success
:
1759 send_msg_int(MSG_SUCCESS
, ndx
);
1763 if (append_mode
> 0 && sx
.st
.st_size
>= F_LENGTH(file
)) {
1764 #ifdef SUPPORT_HARD_LINKS
1765 if (F_IS_HLINKED(file
))
1766 handle_skipped_hlink(file
, itemizing
, code
, f_out
);
1774 fnamecmp
= partialptr
;
1775 fnamecmp_type
= FNAMECMP_PARTIAL_DIR
;
1782 if (read_batch
|| whole_file
) {
1783 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1784 if (!(backupptr
= get_backup_name(fname
)))
1786 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
)))
1787 goto pretend_missing
;
1788 if (copy_file(fname
, backupptr
, -1, back_file
->mode
) < 0) {
1789 unmake_file(back_file
);
1797 if (fuzzy_dirlist
[0]) {
1798 int j
= flist_find(fuzzy_dirlist
[0], file
);
1799 if (j
>= 0) /* don't use changing file as future fuzzy basis */
1800 fuzzy_dirlist
[0]->files
[j
]->flags
|= FLAG_FILE_SENT
;
1804 if ((fd
= do_open(fnamecmp
, O_RDONLY
, 0)) < 0) {
1805 rsyserr(FERROR
, errno
, "failed to open %s, continuing",
1806 full_fname(fnamecmp
));
1808 /* pretend the file didn't exist */
1809 #ifdef SUPPORT_HARD_LINKS
1810 if (preserve_hard_links
&& F_HLINK_NOT_LAST(file
)) {
1811 cur_flist
->in_progress
++;
1815 statret
= real_ret
= -1;
1819 if (inplace
&& make_backups
> 0 && fnamecmp_type
== FNAMECMP_FNAME
) {
1820 if (!(backupptr
= get_backup_name(fname
))) {
1824 if (!(back_file
= make_file(fname
, NULL
, NULL
, 0, NO_FILTERS
))) {
1826 goto pretend_missing
;
1828 if (robust_unlink(backupptr
) && errno
!= ENOENT
) {
1829 rsyserr(FERROR_XFER
, errno
, "unlink %s",
1830 full_fname(backupptr
));
1831 unmake_file(back_file
);
1836 if ((f_copy
= do_open(backupptr
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXCL
, 0600)) < 0) {
1837 rsyserr(FERROR_XFER
, errno
, "open %s", full_fname(backupptr
));
1838 unmake_file(back_file
);
1843 fnamecmp_type
= FNAMECMP_BACKUP
;
1846 if (DEBUG_GTE(DELTASUM
, 3)) {
1847 rprintf(FINFO
, "gen mapped %s of size %s\n",
1848 fnamecmp
, big_num(sx
.st
.st_size
));
1851 if (DEBUG_GTE(DELTASUM
, 2))
1852 rprintf(FINFO
, "generating and sending sums for %d\n", ndx
);
1855 if (remove_source_files
&& !delay_updates
&& !phase
&& !dry_run
)
1856 increment_active_files(ndx
, itemizing
, code
);
1857 if (inc_recurse
&& (!dry_run
|| write_batch
< 0))
1858 cur_flist
->in_progress
++;
1859 #ifdef SUPPORT_HARD_LINKS
1860 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1861 file
->flags
|= FLAG_FILE_SENT
;
1863 write_ndx(f_out
, ndx
);
1865 int iflags
= ITEM_TRANSFER
;
1866 if (always_checksum
> 0)
1867 iflags
|= ITEM_REPORT_CHANGE
;
1868 if (fnamecmp_type
!= FNAMECMP_FNAME
)
1869 iflags
|= ITEM_BASIS_TYPE_FOLLOWS
;
1870 if (fnamecmp_type
>= FNAMECMP_FUZZY
)
1871 iflags
|= ITEM_XNAME_FOLLOWS
;
1872 itemize(fnamecmp
, file
, -1, real_ret
, &real_sx
, iflags
, fnamecmp_type
,
1873 fuzzy_file
? fuzzy_file
->basename
: NULL
);
1874 free_stat_x(&real_sx
);
1878 #ifdef SUPPORT_HARD_LINKS
1879 if (preserve_hard_links
&& F_IS_HLINKED(file
))
1880 finish_hard_link(file
, fname
, ndx
, &sx
.st
, itemizing
, code
, -1);
1887 if (statret
!= 0 || whole_file
)
1888 write_sum_head(f_out
, NULL
);
1889 else if (sx
.st
.st_size
<= 0) {
1890 write_sum_head(f_out
, NULL
);
1893 if (generate_and_send_sums(fd
, sx
.st
.st_size
, f_out
, f_copy
) < 0) {
1895 "WARNING: file is too large for checksum sending: %s\n",
1897 write_sum_head(f_out
, NULL
);
1904 int save_preserve_xattrs
= preserve_xattrs
;
1907 #ifdef SUPPORT_XATTRS
1908 if (preserve_xattrs
) {
1909 copy_xattrs(fname
, backupptr
);
1910 preserve_xattrs
= 0;
1913 set_file_attrs(backupptr
, back_file
, NULL
, NULL
, 0);
1914 preserve_xattrs
= save_preserve_xattrs
;
1915 if (INFO_GTE(BACKUP
, 1)) {
1916 rprintf(FINFO
, "backed up %s to %s\n",
1919 unmake_file(back_file
);
1925 /* If we are replacing an existing hard link, symlink, device, or special file,
1926 * create a temp-name item and rename it into place. A symlimk specifies slnk,
1927 * a hard link specifies hlnk, otherwise we create a device based on rdev.
1928 * Specify 0 for the del_for_flag if there is not a file to replace. This
1929 * returns 1 on success and 0 on failure. */
1930 int atomic_create(struct file_struct
*file
, char *fname
, const char *slnk
, const char *hlnk
,
1931 dev_t rdev
, stat_x
*sxp
, int del_for_flag
)
1933 char tmpname
[MAXPATHLEN
];
1934 const char *create_name
;
1935 int skip_atomic
, dir_in_the_way
= del_for_flag
&& S_ISDIR(sxp
->st
.st_mode
);
1937 if (!del_for_flag
|| dir_in_the_way
|| tmpdir
|| !get_tmpname(tmpname
, fname
, True
))
1943 if (make_backups
> 0 && !dir_in_the_way
) {
1944 if (!make_backup(fname
, skip_atomic
))
1946 } else if (skip_atomic
) {
1947 int del_opts
= delete_mode
|| force_delete
? DEL_RECURSE
: 0;
1948 if (delete_item(fname
, sxp
->st
.st_mode
, del_opts
| del_for_flag
) != 0)
1953 create_name
= skip_atomic
? fname
: tmpname
;
1956 #ifdef SUPPORT_LINKS
1957 if (do_symlink(slnk
, create_name
) < 0) {
1958 rsyserr(FERROR_XFER
, errno
, "symlink %s -> \"%s\" failed",
1959 full_fname(create_name
), slnk
);
1966 #ifdef SUPPORT_HARD_LINKS
1967 if (!hard_link_one(file
, create_name
, hlnk
, 0))
1973 if (do_mknod(create_name
, file
->mode
, rdev
) < 0) {
1974 rsyserr(FERROR_XFER
, errno
, "mknod %s failed",
1975 full_fname(create_name
));
1981 if (do_rename(tmpname
, fname
) < 0) {
1982 rsyserr(FERROR_XFER
, errno
, "rename %s -> \"%s\" failed",
1983 full_fname(tmpname
), full_fname(fname
));
1992 #ifdef SUPPORT_HARD_LINKS
1993 static void handle_skipped_hlink(struct file_struct
*file
, int itemizing
,
1994 enum logcode code
, int f_out
)
1996 char fbuf
[MAXPATHLEN
];
1998 struct file_list
*save_flist
= cur_flist
;
2000 /* If we skip the last item in a chain of links and there was a
2001 * prior non-skipped hard-link waiting to finish, finish it now. */
2002 if ((new_last_ndx
= skip_hard_link(file
, &cur_flist
)) < 0)
2005 file
= cur_flist
->files
[new_last_ndx
- cur_flist
->ndx_start
];
2006 cur_flist
->in_progress
--; /* undo prior increment */
2008 recv_generator(fbuf
, file
, new_last_ndx
, itemizing
, code
, f_out
);
2010 cur_flist
= save_flist
;
2014 static void touch_up_dirs(struct file_list
*flist
, int ndx
)
2016 static int counter
= 0;
2017 struct file_struct
*file
;
2024 end
= flist
->used
- 1;
2028 /* Fix any directory permissions that were modified during the
2029 * transfer and/or re-set any tweaked modified-time values. */
2030 for (i
= start
; i
<= end
; i
++, counter
++) {
2031 file
= flist
->files
[i
];
2032 if (!F_IS_ACTIVE(file
))
2034 if (!S_ISDIR(file
->mode
)
2035 || (!implied_dirs
&& file
->flags
& FLAG_IMPLIED_DIR
))
2037 if (DEBUG_GTE(TIME
, 2)) {
2038 fname
= f_name(file
, NULL
);
2039 rprintf(FINFO
, "touch_up_dirs: %s (%d)\n",
2042 /* Be sure not to retouch permissions with --fake-super. */
2043 fix_dir_perms
= !am_root
&& !(file
->mode
& S_IWUSR
);
2044 if (file
->flags
& FLAG_MISSING_DIR
|| !(need_retouch_dir_times
|| fix_dir_perms
))
2046 fname
= f_name(file
, NULL
);
2048 do_chmod(fname
, file
->mode
);
2049 if (need_retouch_dir_times
) {
2051 if (link_stat(fname
, &st
, 0) == 0
2052 && cmp_time(st
.st_mtime
, file
->modtime
) != 0)
2053 set_modtime(fname
, file
->modtime
, F_MOD_NSEC(file
), file
->mode
);
2055 if (counter
>= loopchk_limit
) {
2057 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
2059 maybe_flush_socket(0);
2065 void check_for_finished_files(int itemizing
, enum logcode code
, int check_redo
)
2067 struct file_struct
*file
;
2068 struct file_list
*flist
;
2069 char fbuf
[MAXPATHLEN
];
2073 #ifdef SUPPORT_HARD_LINKS
2074 if (preserve_hard_links
&& (ndx
= get_hlink_num()) != -1) {
2075 int send_failed
= (ndx
== -2);
2077 ndx
= get_hlink_num();
2078 flist
= flist_for_ndx(ndx
, "check_for_finished_files.1");
2079 file
= flist
->files
[ndx
- flist
->ndx_start
];
2080 assert(file
->flags
& FLAG_HLINKED
);
2082 handle_skipped_hlink(file
, itemizing
, code
, sock_f_out
);
2084 finish_hard_link(file
, f_name(file
, fbuf
), ndx
, NULL
, itemizing
, code
, -1);
2085 flist
->in_progress
--;
2090 if (check_redo
&& (ndx
= get_redo_num()) != -1) {
2091 OFF_T save_max_size
= max_size
;
2092 OFF_T save_min_size
= min_size
;
2093 csum_length
= SUM_LENGTH
;
2096 ignore_existing
= -ignore_existing
;
2097 ignore_non_existing
= -ignore_non_existing
;
2098 update_only
= -update_only
;
2099 always_checksum
= -always_checksum
;
2100 size_only
= -size_only
;
2101 append_mode
= -append_mode
;
2102 make_backups
= -make_backups
; /* avoid dup backup w/inplace */
2106 cur_flist
= flist_for_ndx(ndx
, "check_for_finished_files.2");
2108 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
2110 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2113 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, sock_f_out
);
2114 cur_flist
->to_redo
--;
2118 csum_length
= SHORT_SUM_LENGTH
;
2119 max_size
= save_max_size
;
2120 min_size
= save_min_size
;
2121 ignore_existing
= -ignore_existing
;
2122 ignore_non_existing
= -ignore_non_existing
;
2123 update_only
= -update_only
;
2124 always_checksum
= -always_checksum
;
2125 size_only
= -size_only
;
2126 append_mode
= -append_mode
;
2127 make_backups
= -make_backups
;
2132 if (cur_flist
== first_flist
)
2135 /* We only get here if inc_recurse is enabled. */
2136 if (first_flist
->in_progress
|| first_flist
->to_redo
)
2139 write_ndx(sock_f_out
, NDX_DONE
);
2140 if (!read_batch
&& !flist_eof
) {
2142 for (flist
= first_flist
; flist
!= cur_flist
; flist
= flist
->next
)
2143 old_total
+= flist
->used
;
2144 maybe_flush_socket(!flist_eof
&& file_total
- old_total
< MIN_FILECNT_LOOKAHEAD
/2);
2147 if (delete_during
== 2 || !dir_tweaking
) {
2148 /* Skip directory touch-up. */
2149 } else if (first_flist
->parent_ndx
>= 0)
2150 touch_up_dirs(dir_flist
, first_flist
->parent_ndx
);
2152 flist_free(first_flist
); /* updates first_flist */
2156 void generate_files(int f_out
, const char *local_name
)
2158 int i
, ndx
, next_loopchk
= 0;
2159 char fbuf
[MAXPATHLEN
];
2162 int save_info_flist
= info_levels
[INFO_FLIST
];
2163 int save_info_progress
= info_levels
[INFO_PROGRESS
];
2165 if (protocol_version
>= 29) {
2167 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2168 code
= logfile_format_has_i
? FNONE
: FLOG
;
2169 } else if (am_daemon
) {
2170 itemizing
= logfile_format_has_i
&& do_xfers
;
2171 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2172 code
= itemizing
|| !do_xfers
? FCLIENT
: FINFO
;
2173 } else if (!am_server
) {
2174 itemizing
= stdout_format_has_i
;
2175 maybe_ATTRS_REPORT
= stdout_format_has_i
? 0 : ATTRS_REPORT
;
2176 code
= itemizing
? FNONE
: FINFO
;
2179 maybe_ATTRS_REPORT
= ATTRS_REPORT
;
2182 solo_file
= local_name
;
2183 dir_tweaking
= !(list_only
|| solo_file
|| dry_run
);
2184 need_retouch_dir_times
= preserve_times
& PRESERVE_DIR_TIMES
;
2185 loopchk_limit
= allowed_lull
? allowed_lull
* 5 : 200;
2186 symlink_timeset_failed_flags
= ITEM_REPORT_TIME
2187 | (protocol_version
>= 30 || !am_server
? ITEM_REPORT_TIMEFAIL
: 0);
2188 implied_dirs_are_missing
= relative_paths
&& !implied_dirs
&& protocol_version
< 30;
2190 if (DEBUG_GTE(GENR
, 1))
2191 rprintf(FINFO
, "generator starting pid=%d\n", (int)getpid());
2193 if (delete_before
&& !solo_file
&& cur_flist
->used
> 0)
2195 if (delete_during
== 2) {
2196 deldelay_size
= BIGPATHBUFLEN
* 4;
2197 deldelay_buf
= new_array(char, deldelay_size
);
2199 out_of_memory("delete-delay");
2201 info_levels
[INFO_FLIST
] = info_levels
[INFO_PROGRESS
] = 0;
2203 if (append_mode
> 0 || whole_file
< 0)
2205 if (DEBUG_GTE(FLIST
, 1)) {
2206 rprintf(FINFO
, "delta-transmission %s\n",
2208 ? "disabled for local transfer or --whole-file"
2212 dflt_perms
= (ACCESSPERMS
& ~orig_umask
);
2215 #ifdef SUPPORT_HARD_LINKS
2216 if (preserve_hard_links
&& inc_recurse
) {
2217 while (!flist_eof
&& file_total
< MIN_FILECNT_LOOKAHEAD
/2)
2218 wait_for_receiver();
2222 if (inc_recurse
&& cur_flist
->parent_ndx
>= 0) {
2223 struct file_struct
*fp
= dir_flist
->files
[cur_flist
->parent_ndx
];
2225 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2228 ndx
= cur_flist
->ndx_start
- 1;
2229 recv_generator(fbuf
, fp
, ndx
, itemizing
, code
, f_out
);
2230 if (delete_during
&& dry_run
< 2 && !list_only
2231 && !(fp
->flags
& FLAG_MISSING_DIR
)) {
2232 if (fp
->flags
& FLAG_CONTENT_DIR
) {
2234 if (one_file_system
) {
2235 uint32
*devp
= F_DIR_DEV_P(fp
);
2236 dirdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
2238 dirdev
= MAKEDEV(0, 0);
2239 delete_in_dir(fbuf
, fp
, &dirdev
);
2241 change_local_filter_dir(fbuf
, strlen(fbuf
), F_DEPTH(fp
));
2244 for (i
= cur_flist
->low
; i
<= cur_flist
->high
; i
++) {
2245 struct file_struct
*file
= cur_flist
->sorted
[i
];
2247 if (!F_IS_ACTIVE(file
))
2253 ndx
= i
+ cur_flist
->ndx_start
;
2256 strlcpy(fbuf
, solo_file
, sizeof fbuf
);
2259 recv_generator(fbuf
, file
, ndx
, itemizing
, code
, f_out
);
2261 check_for_finished_files(itemizing
, code
, 0);
2263 if (i
+ cur_flist
->ndx_start
>= next_loopchk
) {
2265 maybe_send_keepalive(time(NULL
), MSK_ALLOW_FLUSH
);
2267 maybe_flush_socket(0);
2268 next_loopchk
+= loopchk_limit
;
2273 write_ndx(f_out
, NDX_DONE
);
2278 check_for_finished_files(itemizing
, code
, 1);
2279 if (cur_flist
->next
|| flist_eof
)
2281 wait_for_receiver();
2283 } while ((cur_flist
= cur_flist
->next
) != NULL
);
2286 delete_in_dir(NULL
, NULL
, &dev_zero
);
2288 if (DEBUG_GTE(GENR
, 1))
2289 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2292 check_for_finished_files(itemizing
, code
, 1);
2295 wait_for_receiver();
2299 if (DEBUG_GTE(GENR
, 1))
2300 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2302 write_ndx(f_out
, NDX_DONE
);
2304 /* Reduce round-trip lag-time for a useless delay-updates phase. */
2305 if (protocol_version
>= 29 && EARLY_DELAY_DONE_MSG())
2306 write_ndx(f_out
, NDX_DONE
);
2308 if (protocol_version
>= 31 && EARLY_DELETE_DONE_MSG()) {
2309 if ((INFO_GTE(STATS
, 2) && (delete_mode
|| force_delete
)) || read_batch
)
2310 write_del_stats(f_out
);
2311 if (EARLY_DELAY_DONE_MSG()) /* Can't send this before delay */
2312 write_ndx(f_out
, NDX_DONE
);
2315 /* Read MSG_DONE for the redo phase (and any prior messages). */
2317 check_for_finished_files(itemizing
, code
, 0);
2318 if (msgdone_cnt
> 1)
2320 wait_for_receiver();
2323 if (protocol_version
>= 29) {
2325 if (DEBUG_GTE(GENR
, 1))
2326 rprintf(FINFO
, "generate_files phase=%d\n", phase
);
2327 if (!EARLY_DELAY_DONE_MSG()) {
2328 write_ndx(f_out
, NDX_DONE
);
2329 if (protocol_version
>= 31 && EARLY_DELETE_DONE_MSG())
2330 write_ndx(f_out
, NDX_DONE
);
2332 /* Read MSG_DONE for delay-updates phase & prior messages. */
2333 while (msgdone_cnt
== 2)
2334 wait_for_receiver();
2337 info_levels
[INFO_FLIST
] = save_info_flist
;
2338 info_levels
[INFO_PROGRESS
] = save_info_progress
;
2340 if (delete_during
== 2)
2341 do_delayed_deletions(fbuf
);
2342 if (delete_after
&& !solo_file
&& file_total
> 0)
2345 if (max_delete
>= 0 && skipped_deletes
) {
2347 "Deletions stopped due to --max-delete limit (%d skipped)\n",
2349 io_error
|= IOERR_DEL_LIMIT
;
2352 if (protocol_version
>= 31) {
2353 if (!EARLY_DELETE_DONE_MSG()) {
2354 if (INFO_GTE(STATS
, 2) || read_batch
)
2355 write_del_stats(f_out
);
2356 write_ndx(f_out
, NDX_DONE
);
2359 /* Read MSG_DONE for late-delete phase & prior messages. */
2360 while (msgdone_cnt
== 3)
2361 wait_for_receiver();
2364 if ((need_retouch_dir_perms
|| need_retouch_dir_times
)
2365 && dir_tweaking
&& (!inc_recurse
|| delete_during
== 2))
2366 touch_up_dirs(dir_flist
, -1);
2368 if (DEBUG_GTE(GENR
, 1))
2369 rprintf(FINFO
, "generate_files finished\n");