2 * Routines only used by the receiving process.
4 * Copyright (C) 1996-2000 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2009 Wayne Davison
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
29 extern int do_progress
;
30 extern int inc_recurse
;
31 extern int log_before_transfer
;
32 extern int stdout_format_has_i
;
33 extern int logfile_format_has_i
;
34 extern int csum_length
;
35 extern int read_batch
;
36 extern int write_batch
;
37 extern int batch_gen_fd
;
38 extern int protocol_version
;
39 extern int relative_paths
;
40 extern int preserve_hard_links
;
41 extern int preserve_perms
;
42 extern int preserve_xattrs
;
43 extern int basis_dir_cnt
;
44 extern int make_backups
;
45 extern int cleanup_got_literal
;
46 extern int remove_source_files
;
47 extern int append_mode
;
48 extern int sparse_files
;
49 extern int keep_partial
;
50 extern int checksum_seed
;
52 extern int delay_updates
;
53 extern mode_t orig_umask
;
54 extern struct stats stats
;
56 extern char *partial_dir
;
57 extern char *basis_dir
[MAX_BASIS_DIRS
+1];
58 extern struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
59 extern struct filter_list_struct daemon_filter_list
;
61 static struct bitbag
*delayed_bits
= NULL
;
62 static int phase
= 0, redoing
= 0;
63 static flist_ndx_list batch_redo_list
;
64 /* We're either updating the basis file or an identical copy: */
65 static int updating_basis_or_equiv
;
67 #define TMPNAME_SUFFIX ".XXXXXX"
68 #define TMPNAME_SUFFIX_LEN ((int)sizeof TMPNAME_SUFFIX - 1)
70 /* get_tmpname() - create a tmp filename for a given filename
72 * If a tmpdir is defined, use that as the directory to put it in. Otherwise,
73 * the tmp filename is in the same directory as the given name. Note that
74 * there may be no directory at all in the given name!
76 * The tmp filename is basically the given filename with a dot prepended, and
77 * .XXXXXX appended (for mkstemp() to put its unique gunk in). We take care
78 * to not exceed either the MAXPATHLEN or NAME_MAX, especially the last, as
79 * the basename basically becomes 8 characters longer. In such a case, the
80 * original name is shortened sufficiently to make it all fit.
82 * Of course, the only reason the file is based on the original name is to
83 * make it easier to figure out what purpose a temp file is serving when a
84 * transfer is in progress. */
85 int get_tmpname(char *fnametmp
, const char *fname
)
87 int maxname
, added
, length
= 0;
92 /* Note: this can't overflow, so the return value is safe */
93 length
= strlcpy(fnametmp
, tmpdir
, MAXPATHLEN
- 2);
94 fnametmp
[length
++] = '/';
97 if ((f
= strrchr(fname
, '/')) != NULL
) {
101 /* copy up to and including the slash */
102 strlcpy(fnametmp
, fname
, length
+ 1);
106 fnametmp
[length
++] = '.';
108 /* The maxname value is bufsize, and includes space for the '\0'.
109 * NAME_MAX needs an extra -1 for the name's leading dot. */
110 maxname
= MIN(MAXPATHLEN
- length
- TMPNAME_SUFFIX_LEN
,
111 NAME_MAX
- 1 - TMPNAME_SUFFIX_LEN
);
114 rprintf(FERROR_XFER
, "temporary filename too long: %s\n", fname
);
119 added
= strlcpy(fnametmp
+ length
, f
, maxname
);
120 if (added
>= maxname
)
122 suf
= fnametmp
+ length
+ added
;
124 /* Trim any dangling high-bit chars if the first-trimmed char (if any) is
125 * also a high-bit char, just in case we cut into a multi-byte sequence.
126 * We are guaranteed to stop because of the leading '.' we added. */
127 if ((int)f
[added
] & 0x80) {
128 while ((int)suf
[-1] & 0x80)
132 memcpy(suf
, TMPNAME_SUFFIX
, TMPNAME_SUFFIX_LEN
+1);
137 /* Opens a temporary file for writing.
138 * Success: Writes name into fnametmp, returns fd.
139 * Failure: Clobbers fnametmp, returns -1.
140 * Calling cleanup_set() is the caller's job. */
141 int open_tmpfile(char *fnametmp
, const char *fname
, struct file_struct
*file
)
146 if (!get_tmpname(fnametmp
, fname
))
150 /* For --fake-super, the file must be useable by the copying
151 * user, just like it would be for root. */
152 added_perms
= S_IRUSR
|S_IWUSR
;
154 /* For a normal copy, we need to be able to tweak things like xattrs. */
155 added_perms
= S_IWUSR
;
158 /* We initially set the perms without the setuid/setgid bits or group
159 * access to ensure that there is no race condition. They will be
160 * correctly updated after the right owner and group info is set.
161 * (Thanks to snabb@epipe.fi for pointing this out.) */
162 fd
= do_mkstemp(fnametmp
, (file
->mode
|added_perms
) & INITACCESSPERMS
);
165 /* In most cases parent directories will already exist because their
166 * information should have been previously transferred, but that may
167 * not be the case with -R */
168 if (fd
== -1 && relative_paths
&& errno
== ENOENT
169 && create_directory_path(fnametmp
) == 0) {
170 /* Get back to name with XXXXXX in it. */
171 get_tmpname(fnametmp
, fname
);
172 fd
= do_mkstemp(fnametmp
, (file
->mode
|added_perms
) & INITACCESSPERMS
);
177 rsyserr(FERROR_XFER
, errno
, "mkstemp %s failed",
178 full_fname(fnametmp
));
185 static int receive_data(int f_in
, char *fname_r
, int fd_r
, OFF_T size_r
,
186 const char *fname
, int fd
, OFF_T total_size
)
188 static char file_sum1
[MAX_DIGEST_LEN
];
189 static char file_sum2
[MAX_DIGEST_LEN
];
190 struct map_struct
*mapbuf
;
191 struct sum_struct sum
;
199 read_sum_head(f_in
, &sum
);
201 if (fd_r
>= 0 && size_r
> 0) {
202 int32 read_size
= MAX(sum
.blength
* 2, 16*1024);
203 mapbuf
= map_file(fd_r
, size_r
, read_size
, sum
.blength
);
205 rprintf(FINFO
, "recv mapped %s of size %.0f\n",
206 fname_r
, (double)size_r
);
211 sum_init(checksum_seed
);
213 if (append_mode
> 0) {
215 sum
.flength
= (OFF_T
)sum
.count
* sum
.blength
;
217 sum
.flength
-= sum
.blength
- sum
.remainder
;
218 if (append_mode
== 2) {
219 for (j
= CHUNK_SIZE
; j
< sum
.flength
; j
+= CHUNK_SIZE
) {
221 show_progress(offset
, total_size
);
222 sum_update(map_ptr(mapbuf
, offset
, CHUNK_SIZE
),
226 if (offset
< sum
.flength
) {
227 int32 len
= (int32
)(sum
.flength
- offset
);
229 show_progress(offset
, total_size
);
230 sum_update(map_ptr(mapbuf
, offset
, len
), len
);
233 offset
= sum
.flength
;
234 if (fd
!= -1 && (j
= do_lseek(fd
, offset
, SEEK_SET
)) != offset
) {
235 rsyserr(FERROR_XFER
, errno
, "lseek of %s returned %.0f, not %.0f",
236 full_fname(fname
), (double)j
, (double)offset
);
237 exit_cleanup(RERR_FILEIO
);
241 while ((i
= recv_token(f_in
, &data
)) != 0) {
243 show_progress(offset
, total_size
);
247 rprintf(FINFO
,"data recv %d at %.0f\n",
251 stats
.literal_data
+= i
;
252 cleanup_got_literal
= 1;
256 if (fd
!= -1 && write_file(fd
,data
,i
) != i
)
257 goto report_write_error
;
263 offset2
= i
* (OFF_T
)sum
.blength
;
265 if (i
== (int)sum
.count
-1 && sum
.remainder
!= 0)
268 stats
.matched_data
+= len
;
272 "chunk[%d] of size %ld at %.0f offset=%.0f%s\n",
273 i
, (long)len
, (double)offset2
, (double)offset
,
274 updating_basis_or_equiv
&& offset
== offset2
? " (seek)" : "");
278 map
= map_ptr(mapbuf
,offset2
,len
);
281 sum_update(map
, len
);
284 if (updating_basis_or_equiv
) {
285 if (offset
== offset2
&& fd
!= -1) {
287 if (flush_write_file(fd
) < 0)
288 goto report_write_error
;
290 if ((pos
= do_lseek(fd
, len
, SEEK_CUR
)) != offset
) {
291 rsyserr(FERROR_XFER
, errno
,
292 "lseek of %s returned %.0f, not %.0f",
294 (double)pos
, (double)offset
);
295 exit_cleanup(RERR_FILEIO
);
300 if (fd
!= -1 && map
&& write_file(fd
, map
, len
) != (int)len
)
301 goto report_write_error
;
305 if (flush_write_file(fd
) < 0)
306 goto report_write_error
;
308 #ifdef HAVE_FTRUNCATE
309 if (inplace
&& fd
!= -1
310 && ftruncate(fd
, offset
) < 0) {
311 rsyserr(FERROR_XFER
, errno
, "ftruncate failed on %s",
317 end_progress(total_size
);
319 if (fd
!= -1 && offset
> 0 && sparse_end(fd
) != 0) {
321 rsyserr(FERROR_XFER
, errno
, "write failed on %s",
323 exit_cleanup(RERR_FILEIO
);
326 sum_len
= sum_end(file_sum1
);
331 read_buf(f_in
, file_sum2
, sum_len
);
333 rprintf(FINFO
,"got file_sum\n");
334 if (fd
!= -1 && memcmp(file_sum1
, file_sum2
, sum_len
) != 0)
340 static void discard_receive_data(int f_in
, OFF_T length
)
342 receive_data(f_in
, NULL
, -1, 0, NULL
, -1, length
);
345 static void handle_delayed_updates(char *local_name
)
347 char *fname
, *partialptr
;
350 for (ndx
= -1; (ndx
= bitbag_next_bit(delayed_bits
, ndx
)) >= 0; ) {
351 struct file_struct
*file
= cur_flist
->files
[ndx
];
352 fname
= local_name
? local_name
: f_name(file
, NULL
);
353 if ((partialptr
= partial_dir_fname(fname
)) != NULL
) {
354 if (make_backups
> 0 && !make_backup(fname
))
357 rprintf(FINFO
, "renaming %s to %s\n",
360 /* We don't use robust_rename() here because the
361 * partial-dir must be on the same drive. */
362 if (do_rename(partialptr
, fname
) < 0) {
363 rsyserr(FERROR_XFER
, errno
,
364 "rename failed for %s (from %s)",
365 full_fname(fname
), partialptr
);
367 if (remove_source_files
368 || (preserve_hard_links
&& F_IS_HLINKED(file
)))
369 send_msg_int(MSG_SUCCESS
, ndx
);
370 handle_partial_dir(partialptr
, PDIR_DELETE
);
376 static void no_batched_update(int ndx
, BOOL is_redo
)
378 struct file_list
*flist
= flist_for_ndx(ndx
, "no_batched_update");
379 struct file_struct
*file
= flist
->files
[ndx
- flist
->ndx_start
];
381 rprintf(FERROR_XFER
, "(No batched update for%s \"%s\")\n",
382 is_redo
? " resend of" : "", f_name(file
, NULL
));
384 if (inc_recurse
&& !dry_run
)
385 send_msg_int(MSG_NO_SEND
, ndx
);
388 static int we_want_redo(int desired_ndx
)
390 static int redo_ndx
= -1;
392 while (redo_ndx
< desired_ndx
) {
394 no_batched_update(redo_ndx
, True
);
395 if ((redo_ndx
= flist_ndx_pop(&batch_redo_list
)) < 0)
399 if (redo_ndx
== desired_ndx
) {
407 static int gen_wants_ndx(int desired_ndx
)
409 static int next_ndx
= -1;
410 static int done_cnt
= 0;
411 static BOOL got_eof
= False
;
412 int flist_num
= first_flist
->flist_num
;
417 while (next_ndx
< desired_ndx
) {
418 if (inc_recurse
&& flist_num
<= done_cnt
)
421 no_batched_update(next_ndx
, False
);
422 if ((next_ndx
= read_int(batch_gen_fd
)) < 0) {
432 if (next_ndx
== desired_ndx
) {
441 * main routine for receiver process.
443 * Receiver process runs on the same host as the generator process. */
444 int recv_files(int f_in
, char *local_name
)
449 char *fname
, fbuf
[MAXPATHLEN
];
450 char xname
[MAXPATHLEN
];
451 char fnametmp
[MAXPATHLEN
];
452 char *fnamecmp
, *partialptr
;
453 char fnamecmpbuf
[MAXPATHLEN
];
455 struct file_struct
*file
;
456 struct stats initial_stats
;
457 int itemizing
= am_server
? logfile_format_has_i
: stdout_format_has_i
;
458 enum logcode log_code
= log_before_transfer
? FLOG
: FINFO
;
459 int max_phase
= protocol_version
>= 29 ? 2 : 1;
460 int dflt_perms
= (ACCESSPERMS
& ~orig_umask
);
462 const char *parent_dirname
= "";
467 rprintf(FINFO
, "recv_files(%d) starting\n", cur_flist
->used
);
470 delayed_bits
= bitbag_create(cur_flist
->used
+ 1);
475 /* This call also sets cur_flist. */
476 ndx
= read_ndx_and_attrs(f_in
, &iflags
, &fnamecmp_type
,
478 if (ndx
== NDX_DONE
) {
479 if (inc_recurse
&& first_flist
) {
481 gen_wants_ndx(first_flist
->used
+ first_flist
->ndx_start
);
482 flist_free(first_flist
);
485 } else if (read_batch
&& first_flist
)
486 gen_wants_ndx(first_flist
->used
);
487 if (++phase
> max_phase
)
490 rprintf(FINFO
, "recv_files phase=%d\n", phase
);
491 if (phase
== 2 && delay_updates
)
492 handle_delayed_updates(local_name
);
493 send_msg(MSG_DONE
, "", 0, 0);
497 if (ndx
- cur_flist
->ndx_start
>= 0)
498 file
= cur_flist
->files
[ndx
- cur_flist
->ndx_start
];
500 file
= dir_flist
->files
[cur_flist
->parent_ndx
];
501 fname
= local_name
? local_name
: f_name(file
, fbuf
);
504 rprintf(FINFO
, "recv_files(%s)\n", fname
);
506 #ifdef SUPPORT_XATTRS
507 if (iflags
& ITEM_REPORT_XATTR
&& do_xfers
)
508 recv_xattr_request(file
, f_in
);
511 if (!(iflags
& ITEM_TRANSFER
)) {
512 maybe_log_item(file
, iflags
, itemizing
, xname
);
513 #ifdef SUPPORT_XATTRS
514 if (preserve_xattrs
&& iflags
& ITEM_REPORT_XATTR
&& do_xfers
)
515 set_file_attrs(fname
, file
, NULL
, fname
, 0);
521 "got transfer request in phase 2 [%s]\n",
523 exit_cleanup(RERR_PROTOCOL
);
526 if (file
->flags
& FLAG_FILE_SENT
) {
527 if (csum_length
== SHORT_SUM_LENGTH
) {
528 if (keep_partial
&& !partial_dir
)
529 make_backups
= -make_backups
; /* prevents double backup */
531 sparse_files
= -sparse_files
;
532 append_mode
= -append_mode
;
533 csum_length
= SUM_LENGTH
;
537 if (csum_length
!= SHORT_SUM_LENGTH
) {
538 if (keep_partial
&& !partial_dir
)
539 make_backups
= -make_backups
;
541 sparse_files
= -sparse_files
;
542 append_mode
= -append_mode
;
543 csum_length
= SHORT_SUM_LENGTH
;
548 if (!am_server
&& do_progress
)
549 set_current_file_index(file
, ndx
);
550 stats
.num_transferred_files
++;
551 stats
.total_transferred_size
+= F_LENGTH(file
);
553 cleanup_got_literal
= 0;
555 if (daemon_filter_list
.head
556 && check_filter(&daemon_filter_list
, FLOG
, fname
, 0) < 0) {
557 rprintf(FERROR
, "attempt to hack rsync failed.\n");
558 exit_cleanup(RERR_PROTOCOL
);
564 : gen_wants_ndx(ndx
);
567 "(Skipping batched update for%s \"%s\")\n",
568 redoing
? " resend of" : "",
570 discard_receive_data(f_in
, F_LENGTH(file
));
571 file
->flags
|= FLAG_FILE_SENT
;
576 if (!do_xfers
) { /* log the transfer */
577 log_item(FCLIENT
, file
, &stats
, iflags
, NULL
);
579 discard_receive_data(f_in
, F_LENGTH(file
));
582 if (write_batch
< 0) {
583 log_item(FCLIENT
, file
, &stats
, iflags
, NULL
);
585 discard_receive_data(f_in
, F_LENGTH(file
));
589 partialptr
= partial_dir
? partial_dir_fname(fname
) : fname
;
591 if (protocol_version
>= 29) {
592 switch (fnamecmp_type
) {
596 case FNAMECMP_PARTIAL_DIR
:
597 fnamecmp
= partialptr
;
599 case FNAMECMP_BACKUP
:
600 fnamecmp
= get_backup_name(fname
);
604 pathjoin(fnamecmpbuf
, MAXPATHLEN
,
605 file
->dirname
, xname
);
606 fnamecmp
= fnamecmpbuf
;
611 if (fnamecmp_type
>= basis_dir_cnt
) {
613 "invalid basis_dir index: %d.\n",
615 exit_cleanup(RERR_PROTOCOL
);
617 pathjoin(fnamecmpbuf
, sizeof fnamecmpbuf
,
618 basis_dir
[fnamecmp_type
], fname
);
619 fnamecmp
= fnamecmpbuf
;
622 if (!fnamecmp
|| (daemon_filter_list
.head
623 && check_filter(&daemon_filter_list
, FLOG
, fname
, 0) < 0)) {
625 fnamecmp_type
= FNAMECMP_FNAME
;
628 /* Reminder: --inplace && --partial-dir are never
629 * enabled at the same time. */
630 if (inplace
&& make_backups
> 0) {
631 if (!(fnamecmp
= get_backup_name(fname
)))
634 fnamecmp_type
= FNAMECMP_BACKUP
;
635 } else if (partial_dir
&& partialptr
)
636 fnamecmp
= partialptr
;
641 initial_stats
= stats
;
644 fd1
= do_open(fnamecmp
, O_RDONLY
, 0);
646 if (fd1
== -1 && protocol_version
< 29) {
647 if (fnamecmp
!= fname
) {
649 fd1
= do_open(fnamecmp
, O_RDONLY
, 0);
652 if (fd1
== -1 && basis_dir
[0]) {
653 /* pre-29 allowed only one alternate basis */
654 pathjoin(fnamecmpbuf
, sizeof fnamecmpbuf
,
655 basis_dir
[0], fname
);
656 fnamecmp
= fnamecmpbuf
;
657 fd1
= do_open(fnamecmp
, O_RDONLY
, 0);
661 updating_basis_or_equiv
= inplace
662 && (fnamecmp
== fname
|| fnamecmp_type
== FNAMECMP_BACKUP
);
667 } else if (do_fstat(fd1
,&st
) != 0) {
668 rsyserr(FERROR_XFER
, errno
, "fstat %s failed",
669 full_fname(fnamecmp
));
670 discard_receive_data(f_in
, F_LENGTH(file
));
673 send_msg_int(MSG_NO_SEND
, ndx
);
677 if (fd1
!= -1 && S_ISDIR(st
.st_mode
) && fnamecmp
== fname
) {
678 /* this special handling for directories
679 * wouldn't be necessary if robust_rename()
680 * and the underlying robust_unlink could cope
683 rprintf(FERROR_XFER
, "recv_files: %s is a directory\n",
684 full_fname(fnamecmp
));
685 discard_receive_data(f_in
, F_LENGTH(file
));
688 send_msg_int(MSG_NO_SEND
, ndx
);
692 if (fd1
!= -1 && !S_ISREG(st
.st_mode
)) {
697 /* If we're not preserving permissions, change the file-list's
698 * mode based on the local permissions and some heuristics. */
699 if (!preserve_perms
) {
700 int exists
= fd1
!= -1;
702 const char *dn
= file
->dirname
? file
->dirname
: ".";
703 if (parent_dirname
!= dn
704 && strcmp(parent_dirname
, dn
) != 0) {
705 dflt_perms
= default_perms_for_dir(dn
);
709 file
->mode
= dest_mode(file
->mode
, st
.st_mode
,
713 /* We now check to see if we are writing the file "inplace" */
715 fd2
= do_open(fname
, O_WRONLY
|O_CREAT
, 0600);
717 rsyserr(FERROR_XFER
, errno
, "open %s failed",
721 fd2
= open_tmpfile(fnametmp
, fname
, file
);
723 cleanup_set(fnametmp
, partialptr
, file
, fd1
, fd2
);
727 discard_receive_data(f_in
, F_LENGTH(file
));
731 send_msg_int(MSG_NO_SEND
, ndx
);
735 /* log the transfer */
736 if (log_before_transfer
)
737 log_item(FCLIENT
, file
, &initial_stats
, iflags
, NULL
);
738 else if (!am_server
&& verbose
&& do_progress
)
739 rprintf(FINFO
, "%s\n", fname
);
742 recv_ok
= receive_data(f_in
, fnamecmp
, fd1
, st
.st_size
,
743 fname
, fd2
, F_LENGTH(file
));
745 log_item(log_code
, file
, &initial_stats
, iflags
, NULL
);
749 if (close(fd2
) < 0) {
750 rsyserr(FERROR
, errno
, "close failed on %s",
751 full_fname(fnametmp
));
752 exit_cleanup(RERR_FILEIO
);
755 if ((recv_ok
&& (!delay_updates
|| !partialptr
)) || inplace
) {
756 if (partialptr
== fname
)
758 if (!finish_transfer(fname
, fnametmp
, fnamecmp
,
759 partialptr
, file
, recv_ok
, 1))
761 else if (fnamecmp
== partialptr
) {
762 do_unlink(partialptr
);
763 handle_partial_dir(partialptr
, PDIR_DELETE
);
765 } else if (keep_partial
&& partialptr
) {
766 if (!handle_partial_dir(partialptr
, PDIR_CREATE
)) {
768 "Unable to create partial-dir for %s -- discarding %s.\n",
769 local_name
? local_name
: f_name(file
, NULL
),
770 recv_ok
? "completed file" : "partial file");
773 } else if (!finish_transfer(partialptr
, fnametmp
, fnamecmp
, NULL
,
774 file
, recv_ok
, !partial_dir
))
776 else if (delay_updates
&& recv_ok
) {
777 bitbag_set_bit(delayed_bits
, ndx
);
787 file
->flags
|= FLAG_FILE_SENT
;
793 if (remove_source_files
|| inc_recurse
794 || (preserve_hard_links
&& F_IS_HLINKED(file
)))
795 send_msg_int(MSG_SUCCESS
, ndx
);
798 enum logcode msgtype
= redoing
? FERROR_XFER
: FWARNING
;
799 if (msgtype
== FERROR_XFER
|| verbose
) {
800 char *errstr
, *redostr
, *keptstr
;
801 if (!(keep_partial
&& partialptr
) && !inplace
)
802 keptstr
= "discarded";
803 else if (partial_dir
)
804 keptstr
= "put into partial-dir";
806 keptstr
= "retained";
807 if (msgtype
== FERROR_XFER
) {
812 redostr
= read_batch
? " (may try again)"
813 : " (will try again)";
816 "%s: %s failed verification -- update %s%s.\n",
817 errstr
, local_name
? f_name(file
, NULL
) : fname
,
822 flist_ndx_push(&batch_redo_list
, ndx
);
823 send_msg_int(MSG_REDO
, ndx
);
824 file
->flags
|= FLAG_FILE_SENT
;
825 } else if (inc_recurse
)
826 send_msg_int(MSG_NO_SEND
, ndx
);
831 send_msg_int(MSG_NO_SEND
, ndx
);
835 if (make_backups
< 0)
836 make_backups
= -make_backups
;
838 if (phase
== 2 && delay_updates
) /* for protocol_version < 29 */
839 handle_delayed_updates(local_name
);
842 rprintf(FINFO
,"recv_files finished\n");