New logging categories added to allow differentiation between
[rsync/rsync.git] / receiver.c
... / ...
CommitLineData
1/*
2 * Routines only used by the receiving process.
3 *
4 * Copyright (C) 1996-2000 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2007 Wayne Davison
7 *
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.
12 *
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.
17 *
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.
20 */
21
22#include "rsync.h"
23
24extern int verbose;
25extern int dry_run;
26extern int do_xfers;
27extern int am_server;
28extern int do_progress;
29extern int inc_recurse;
30extern int log_before_transfer;
31extern int stdout_format_has_i;
32extern int logfile_format_has_i;
33extern int csum_length;
34extern int read_batch;
35extern int write_batch;
36extern int batch_gen_fd;
37extern int protocol_version;
38extern int relative_paths;
39extern int preserve_hard_links;
40extern int preserve_perms;
41extern int preserve_xattrs;
42extern int basis_dir_cnt;
43extern int make_backups;
44extern int cleanup_got_literal;
45extern int remove_source_files;
46extern int append_mode;
47extern int sparse_files;
48extern int keep_partial;
49extern int checksum_seed;
50extern int inplace;
51extern int delay_updates;
52extern mode_t orig_umask;
53extern struct stats stats;
54extern char *tmpdir;
55extern char *partial_dir;
56extern char *basis_dir[];
57extern struct file_list *cur_flist, *first_flist, *dir_flist;
58extern struct filter_list_struct server_filter_list;
59
60static struct bitbag *delayed_bits = NULL;
61static int phase = 0, redoing = 0;
62/* We're either updating the basis file or an identical copy: */
63static int updating_basis_or_equiv;
64
65/*
66 * get_tmpname() - create a tmp filename for a given filename
67 *
68 * If a tmpdir is defined, use that as the directory to
69 * put it in. Otherwise, the tmp filename is in the same
70 * directory as the given name. Note that there may be no
71 * directory at all in the given name!
72 *
73 * The tmp filename is basically the given filename with a
74 * dot prepended, and .XXXXXX appended (for mkstemp() to
75 * put its unique gunk in). Take care to not exceed
76 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
77 * the basename basically becomes 8 chars longer. In that
78 * case, the original name is shortened sufficiently to
79 * make it all fit.
80 *
81 * Of course, there's no real reason for the tmp name to
82 * look like the original, except to satisfy us humans.
83 * As long as it's unique, rsync will work.
84 */
85
86int get_tmpname(char *fnametmp, const char *fname)
87{
88 int maxname, added, length = 0;
89 const char *f;
90
91 if (tmpdir) {
92 /* Note: this can't overflow, so the return value is safe */
93 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
94 fnametmp[length++] = '/';
95 }
96
97 if ((f = strrchr(fname, '/')) != NULL) {
98 ++f;
99 if (!tmpdir) {
100 length = f - fname;
101 /* copy up to and including the slash */
102 strlcpy(fnametmp, fname, length + 1);
103 }
104 } else
105 f = fname;
106 fnametmp[length++] = '.';
107
108 /* The maxname value is bufsize, and includes space for the '\0'.
109 * (Note that NAME_MAX get -8 for the leading '.' above.) */
110 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
111
112 if (maxname < 1) {
113 rprintf(FERROR_XFER, "temporary filename too long: %s\n", fname);
114 fnametmp[0] = '\0';
115 return 0;
116 }
117
118 added = strlcpy(fnametmp + length, f, maxname);
119 if (added >= maxname)
120 added = maxname - 1;
121 memcpy(fnametmp + length + added, ".XXXXXX", 8);
122
123 return 1;
124}
125
126/* Opens a temporary file for writing.
127 * Success: Writes name into fnametmp, returns fd.
128 * Failure: Clobbers fnametmp, returns -1.
129 * Calling cleanup_set() is the caller's job. */
130int open_tmpfile(char *fnametmp, const char *fname, struct file_struct *file)
131{
132 int fd;
133
134 if (!get_tmpname(fnametmp, fname))
135 return -1;
136
137 /* We initially set the perms without the setuid/setgid bits or group
138 * access to ensure that there is no race condition. They will be
139 * correctly updated after the right owner and group info is set.
140 * (Thanks to snabb@epipe.fi for pointing this out.) */
141 fd = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
142
143#if 0
144 /* In most cases parent directories will already exist because their
145 * information should have been previously transferred, but that may
146 * not be the case with -R */
147 if (fd == -1 && relative_paths && errno == ENOENT
148 && create_directory_path(fnametmp) == 0) {
149 /* Get back to name with XXXXXX in it. */
150 get_tmpname(fnametmp, fname);
151 fd = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
152 }
153#endif
154
155 if (fd == -1) {
156 rsyserr(FERROR_XFER, errno, "mkstemp %s failed",
157 full_fname(fnametmp));
158 return -1;
159 }
160
161 return fd;
162}
163
164static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
165 const char *fname, int fd, OFF_T total_size)
166{
167 static char file_sum1[MAX_DIGEST_LEN];
168 static char file_sum2[MAX_DIGEST_LEN];
169 struct map_struct *mapbuf;
170 struct sum_struct sum;
171 int32 len, sum_len;
172 OFF_T offset = 0;
173 OFF_T offset2;
174 char *data;
175 int32 i;
176 char *map = NULL;
177
178 read_sum_head(f_in, &sum);
179
180 if (fd_r >= 0 && size_r > 0) {
181 int32 read_size = MAX(sum.blength * 2, 16*1024);
182 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
183 if (verbose > 2) {
184 rprintf(FINFO, "recv mapped %s of size %.0f\n",
185 fname_r, (double)size_r);
186 }
187 } else
188 mapbuf = NULL;
189
190 sum_init(checksum_seed);
191
192 if (append_mode > 0) {
193 OFF_T j;
194 sum.flength = (OFF_T)sum.count * sum.blength;
195 if (sum.remainder)
196 sum.flength -= sum.blength - sum.remainder;
197 if (append_mode == 2) {
198 for (j = CHUNK_SIZE; j < sum.flength; j += CHUNK_SIZE) {
199 if (do_progress)
200 show_progress(offset, total_size);
201 sum_update(map_ptr(mapbuf, offset, CHUNK_SIZE),
202 CHUNK_SIZE);
203 offset = j;
204 }
205 if (offset < sum.flength) {
206 int32 len = (int32)(sum.flength - offset);
207 if (do_progress)
208 show_progress(offset, total_size);
209 sum_update(map_ptr(mapbuf, offset, len), len);
210 }
211 }
212 offset = sum.flength;
213 if (fd != -1 && (j = do_lseek(fd, offset, SEEK_SET)) != offset) {
214 rsyserr(FERROR_XFER, errno, "lseek of %s returned %.0f, not %.0f",
215 full_fname(fname), (double)j, (double)offset);
216 exit_cleanup(RERR_FILEIO);
217 }
218 }
219
220 while ((i = recv_token(f_in, &data)) != 0) {
221 if (do_progress)
222 show_progress(offset, total_size);
223
224 if (i > 0) {
225 if (verbose > 3) {
226 rprintf(FINFO,"data recv %d at %.0f\n",
227 i,(double)offset);
228 }
229
230 stats.literal_data += i;
231 cleanup_got_literal = 1;
232
233 sum_update(data, i);
234
235 if (fd != -1 && write_file(fd,data,i) != i)
236 goto report_write_error;
237 offset += i;
238 continue;
239 }
240
241 i = -(i+1);
242 offset2 = i * (OFF_T)sum.blength;
243 len = sum.blength;
244 if (i == (int)sum.count-1 && sum.remainder != 0)
245 len = sum.remainder;
246
247 stats.matched_data += len;
248
249 if (verbose > 3) {
250 rprintf(FINFO,
251 "chunk[%d] of size %ld at %.0f offset=%.0f\n",
252 i, (long)len, (double)offset2, (double)offset);
253 }
254
255 if (mapbuf) {
256 map = map_ptr(mapbuf,offset2,len);
257
258 see_token(map, len);
259 sum_update(map, len);
260 }
261
262 if (updating_basis_or_equiv) {
263 if (offset == offset2 && fd != -1) {
264 OFF_T pos;
265 if (flush_write_file(fd) < 0)
266 goto report_write_error;
267 offset += len;
268 if ((pos = do_lseek(fd, len, SEEK_CUR)) != offset) {
269 rsyserr(FERROR_XFER, errno,
270 "lseek of %s returned %.0f, not %.0f",
271 full_fname(fname),
272 (double)pos, (double)offset);
273 exit_cleanup(RERR_FILEIO);
274 }
275 continue;
276 }
277 }
278 if (fd != -1 && map && write_file(fd, map, len) != (int)len)
279 goto report_write_error;
280 offset += len;
281 }
282
283 if (flush_write_file(fd) < 0)
284 goto report_write_error;
285
286#ifdef HAVE_FTRUNCATE
287 if (inplace && fd != -1)
288 ftruncate(fd, offset);
289#endif
290
291 if (do_progress)
292 end_progress(total_size);
293
294 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
295 report_write_error:
296 rsyserr(FERROR_XFER, errno, "write failed on %s",
297 full_fname(fname));
298 exit_cleanup(RERR_FILEIO);
299 }
300
301 sum_len = sum_end(file_sum1);
302
303 if (mapbuf)
304 unmap_file(mapbuf);
305
306 read_buf(f_in, file_sum2, sum_len);
307 if (verbose > 2)
308 rprintf(FINFO,"got file_sum\n");
309 if (fd != -1 && memcmp(file_sum1, file_sum2, sum_len) != 0)
310 return 0;
311 return 1;
312}
313
314
315static void discard_receive_data(int f_in, OFF_T length)
316{
317 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
318}
319
320static void handle_delayed_updates(char *local_name)
321{
322 char *fname, *partialptr;
323 int ndx;
324
325 for (ndx = -1; (ndx = bitbag_next_bit(delayed_bits, ndx)) >= 0; ) {
326 struct file_struct *file = cur_flist->files[ndx];
327 fname = local_name ? local_name : f_name(file, NULL);
328 if ((partialptr = partial_dir_fname(fname)) != NULL) {
329 if (make_backups > 0 && !make_backup(fname))
330 continue;
331 if (verbose > 2) {
332 rprintf(FINFO, "renaming %s to %s\n",
333 partialptr, fname);
334 }
335 /* We don't use robust_rename() here because the
336 * partial-dir must be on the same drive. */
337 if (do_rename(partialptr, fname) < 0) {
338 rsyserr(FERROR_XFER, errno,
339 "rename failed for %s (from %s)",
340 full_fname(fname), partialptr);
341 } else {
342 if (remove_source_files
343 || (preserve_hard_links && F_IS_HLINKED(file)))
344 send_msg_int(MSG_SUCCESS, ndx);
345 handle_partial_dir(partialptr, PDIR_DELETE);
346 }
347 }
348 }
349}
350
351static int get_next_gen_ndx(int fd, int next_gen_ndx, int desired_ndx)
352{
353 while (next_gen_ndx < desired_ndx) {
354 if (next_gen_ndx >= 0) {
355 rprintf(FINFO,
356 "(No batched update for%s \"%s\")\n",
357 redoing ? " resend of" : "",
358 f_name(cur_flist->files[next_gen_ndx], NULL));
359 }
360 next_gen_ndx = read_int(fd);
361 if (next_gen_ndx == -1) {
362 if (inc_recurse)
363 next_gen_ndx = first_flist->prev->used + first_flist->prev->ndx_start;
364 else
365 next_gen_ndx = cur_flist->used;
366 }
367 }
368 return next_gen_ndx;
369}
370
371/**
372 * main routine for receiver process.
373 *
374 * Receiver process runs on the same host as the generator process. */
375int recv_files(int f_in, char *local_name)
376{
377 int next_gen_ndx = -1;
378 int fd1,fd2;
379 STRUCT_STAT st;
380 int iflags, xlen;
381 char *fname, fbuf[MAXPATHLEN];
382 char xname[MAXPATHLEN];
383 char fnametmp[MAXPATHLEN];
384 char *fnamecmp, *partialptr;
385 char fnamecmpbuf[MAXPATHLEN];
386 uchar fnamecmp_type;
387 struct file_struct *file;
388 struct stats initial_stats;
389 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
390 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
391 int max_phase = protocol_version >= 29 ? 2 : 1;
392 int dflt_perms = (ACCESSPERMS & ~orig_umask);
393#ifdef SUPPORT_ACLS
394 const char *parent_dirname = "";
395#endif
396 int ndx, recv_ok;
397
398 if (verbose > 2)
399 rprintf(FINFO, "recv_files(%d) starting\n", cur_flist->used);
400
401 if (delay_updates)
402 delayed_bits = bitbag_create(cur_flist->used + 1);
403
404 while (1) {
405 cleanup_disable();
406
407 /* This call also sets cur_flist. */
408 ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
409 xname, &xlen);
410 if (ndx == NDX_DONE) {
411 if (inc_recurse && first_flist) {
412 flist_free(first_flist);
413 if (first_flist)
414 continue;
415 }
416 if (read_batch && cur_flist) {
417 int high = inc_recurse
418 ? first_flist->prev->used + first_flist->prev->ndx_start
419 : cur_flist->used;
420 get_next_gen_ndx(batch_gen_fd, next_gen_ndx, high);
421 next_gen_ndx = -1;
422 }
423 if (++phase > max_phase)
424 break;
425 if (verbose > 2)
426 rprintf(FINFO, "recv_files phase=%d\n", phase);
427 if (phase == 2 && delay_updates)
428 handle_delayed_updates(local_name);
429 send_msg(MSG_DONE, "", 0, 0);
430 continue;
431 }
432
433 if (ndx - cur_flist->ndx_start >= 0)
434 file = cur_flist->files[ndx - cur_flist->ndx_start];
435 else
436 file = dir_flist->files[cur_flist->parent_ndx];
437 fname = local_name ? local_name : f_name(file, fbuf);
438
439 if (verbose > 2)
440 rprintf(FINFO, "recv_files(%s)\n", fname);
441
442#ifdef SUPPORT_XATTRS
443 if (iflags & ITEM_REPORT_XATTR && !dry_run)
444 recv_xattr_request(file, f_in);
445#endif
446
447 if (!(iflags & ITEM_TRANSFER)) {
448 maybe_log_item(file, iflags, itemizing, xname);
449#ifdef SUPPORT_XATTRS
450 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
451 set_file_attrs(fname, file, NULL, fname, 0);
452#endif
453 continue;
454 }
455 if (phase == 2) {
456 rprintf(FERROR,
457 "got transfer request in phase 2 [%s]\n",
458 who_am_i());
459 exit_cleanup(RERR_PROTOCOL);
460 }
461
462 if (file->flags & FLAG_FILE_SENT) {
463 if (csum_length == SHORT_SUM_LENGTH) {
464 if (keep_partial && !partial_dir)
465 make_backups = -make_backups; /* prevents double backup */
466 if (append_mode)
467 sparse_files = -sparse_files;
468 append_mode = -append_mode;
469 csum_length = SUM_LENGTH;
470 redoing = 1;
471 }
472 } else {
473 if (csum_length != SHORT_SUM_LENGTH) {
474 if (keep_partial && !partial_dir)
475 make_backups = -make_backups;
476 if (append_mode)
477 sparse_files = -sparse_files;
478 append_mode = -append_mode;
479 csum_length = SHORT_SUM_LENGTH;
480 redoing = 0;
481 }
482 }
483
484 stats.current_file_index = ndx;
485 stats.num_transferred_files++;
486 stats.total_transferred_size += F_LENGTH(file);
487 cleanup_got_literal = 0;
488
489 if (server_filter_list.head
490 && check_filter(&server_filter_list, fname, 0) < 0) {
491 rprintf(FERROR, "attempt to hack rsync failed.\n");
492 exit_cleanup(RERR_PROTOCOL);
493 }
494
495 if (!do_xfers) { /* log the transfer */
496 log_item(FCLIENT, file, &stats, iflags, NULL);
497 if (read_batch)
498 discard_receive_data(f_in, F_LENGTH(file));
499 continue;
500 }
501 if (write_batch < 0) {
502 log_item(FINFO, file, &stats, iflags, NULL);
503 if (!am_server)
504 discard_receive_data(f_in, F_LENGTH(file));
505 continue;
506 }
507
508 if (read_batch) {
509 next_gen_ndx = get_next_gen_ndx(batch_gen_fd, next_gen_ndx, ndx);
510 if (ndx < next_gen_ndx) {
511 rprintf(FINFO,
512 "(Skipping batched update for \"%s\")\n",
513 fname);
514 discard_receive_data(f_in, F_LENGTH(file));
515 if (inc_recurse)
516 send_msg_int(MSG_NO_SEND, ndx);
517 continue;
518 }
519 next_gen_ndx = -1;
520 }
521
522 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
523
524 if (protocol_version >= 29) {
525 switch (fnamecmp_type) {
526 case FNAMECMP_FNAME:
527 fnamecmp = fname;
528 break;
529 case FNAMECMP_PARTIAL_DIR:
530 fnamecmp = partialptr;
531 break;
532 case FNAMECMP_BACKUP:
533 fnamecmp = get_backup_name(fname);
534 break;
535 case FNAMECMP_FUZZY:
536 if (file->dirname) {
537 pathjoin(fnamecmpbuf, MAXPATHLEN,
538 file->dirname, xname);
539 fnamecmp = fnamecmpbuf;
540 } else
541 fnamecmp = xname;
542 break;
543 default:
544 if (fnamecmp_type >= basis_dir_cnt) {
545 rprintf(FERROR,
546 "invalid basis_dir index: %d.\n",
547 fnamecmp_type);
548 exit_cleanup(RERR_PROTOCOL);
549 }
550 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
551 basis_dir[fnamecmp_type], fname);
552 fnamecmp = fnamecmpbuf;
553 break;
554 }
555 if (!fnamecmp || (server_filter_list.head
556 && check_filter(&server_filter_list, fname, 0) < 0)) {
557 fnamecmp = fname;
558 fnamecmp_type = FNAMECMP_FNAME;
559 }
560 } else {
561 /* Reminder: --inplace && --partial-dir are never
562 * enabled at the same time. */
563 if (inplace && make_backups > 0) {
564 if (!(fnamecmp = get_backup_name(fname)))
565 fnamecmp = fname;
566 else
567 fnamecmp_type = FNAMECMP_BACKUP;
568 } else if (partial_dir && partialptr)
569 fnamecmp = partialptr;
570 else
571 fnamecmp = fname;
572 }
573
574 initial_stats = stats;
575
576 /* open the file */
577 fd1 = do_open(fnamecmp, O_RDONLY, 0);
578
579 if (fd1 == -1 && protocol_version < 29) {
580 if (fnamecmp != fname) {
581 fnamecmp = fname;
582 fd1 = do_open(fnamecmp, O_RDONLY, 0);
583 }
584
585 if (fd1 == -1 && basis_dir[0]) {
586 /* pre-29 allowed only one alternate basis */
587 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
588 basis_dir[0], fname);
589 fnamecmp = fnamecmpbuf;
590 fd1 = do_open(fnamecmp, O_RDONLY, 0);
591 }
592 }
593
594 updating_basis_or_equiv = inplace
595 && (fnamecmp == fname || fnamecmp_type == FNAMECMP_BACKUP);
596
597 if (fd1 == -1) {
598 st.st_mode = 0;
599 st.st_size = 0;
600 } else if (do_fstat(fd1,&st) != 0) {
601 rsyserr(FERROR_XFER, errno, "fstat %s failed",
602 full_fname(fnamecmp));
603 discard_receive_data(f_in, F_LENGTH(file));
604 close(fd1);
605 if (inc_recurse)
606 send_msg_int(MSG_NO_SEND, ndx);
607 continue;
608 }
609
610 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
611 /* this special handling for directories
612 * wouldn't be necessary if robust_rename()
613 * and the underlying robust_unlink could cope
614 * with directories
615 */
616 rprintf(FERROR_XFER, "recv_files: %s is a directory\n",
617 full_fname(fnamecmp));
618 discard_receive_data(f_in, F_LENGTH(file));
619 close(fd1);
620 if (inc_recurse)
621 send_msg_int(MSG_NO_SEND, ndx);
622 continue;
623 }
624
625 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
626 close(fd1);
627 fd1 = -1;
628 }
629
630 /* If we're not preserving permissions, change the file-list's
631 * mode based on the local permissions and some heuristics. */
632 if (!preserve_perms) {
633 int exists = fd1 != -1;
634#ifdef SUPPORT_ACLS
635 const char *dn = file->dirname ? file->dirname : ".";
636 if (parent_dirname != dn
637 && strcmp(parent_dirname, dn) != 0) {
638 dflt_perms = default_perms_for_dir(dn);
639 parent_dirname = dn;
640 }
641#endif
642 file->mode = dest_mode(file->mode, st.st_mode,
643 dflt_perms, exists);
644 }
645
646 /* We now check to see if we are writing the file "inplace" */
647 if (inplace) {
648 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0600);
649 if (fd2 == -1) {
650 rsyserr(FERROR_XFER, errno, "open %s failed",
651 full_fname(fname));
652 }
653 } else {
654 fd2 = open_tmpfile(fnametmp, fname, file);
655 if (fd2 != -1)
656 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
657 }
658
659 if (fd2 == -1) {
660 discard_receive_data(f_in, F_LENGTH(file));
661 if (fd1 != -1)
662 close(fd1);
663 if (inc_recurse)
664 send_msg_int(MSG_NO_SEND, ndx);
665 continue;
666 }
667
668 /* log the transfer */
669 if (log_before_transfer)
670 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
671 else if (!am_server && verbose && do_progress)
672 rprintf(FINFO, "%s\n", fname);
673
674 /* recv file data */
675 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
676 fname, fd2, F_LENGTH(file));
677
678 log_item(log_code, file, &initial_stats, iflags, NULL);
679
680 if (fd1 != -1)
681 close(fd1);
682 if (close(fd2) < 0) {
683 rsyserr(FERROR, errno, "close failed on %s",
684 full_fname(fnametmp));
685 exit_cleanup(RERR_FILEIO);
686 }
687
688 if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
689 char *temp_copy_name;
690 if (partialptr == fname)
691 partialptr = temp_copy_name = NULL;
692 else if (*partial_dir == '/')
693 temp_copy_name = NULL;
694 else
695 temp_copy_name = partialptr;
696 finish_transfer(fname, fnametmp, fnamecmp,
697 temp_copy_name, file, recv_ok, 1);
698 if (fnamecmp == partialptr) {
699 do_unlink(partialptr);
700 handle_partial_dir(partialptr, PDIR_DELETE);
701 }
702 } else if (keep_partial && partialptr
703 && handle_partial_dir(partialptr, PDIR_CREATE)) {
704 finish_transfer(partialptr, fnametmp, fnamecmp, NULL,
705 file, recv_ok, !partial_dir);
706 if (delay_updates && recv_ok) {
707 bitbag_set_bit(delayed_bits, ndx);
708 recv_ok = -1;
709 }
710 } else {
711 partialptr = NULL;
712 do_unlink(fnametmp);
713 }
714
715 cleanup_disable();
716
717 if (recv_ok > 0) {
718 if (remove_source_files || inc_recurse
719 || (preserve_hard_links && F_IS_HLINKED(file)))
720 send_msg_int(MSG_SUCCESS, ndx);
721 } else if (!recv_ok) {
722 enum logcode msgtype = redoing || read_batch ? FERROR : FWARNING;
723 if (msgtype == FERROR || verbose) {
724 char *errstr, *redostr, *keptstr;
725 if (!(keep_partial && partialptr) && !inplace)
726 keptstr = "discarded";
727 else if (partial_dir)
728 keptstr = "put into partial-dir";
729 else
730 keptstr = "retained";
731 if (msgtype == FERROR) {
732 errstr = "ERROR";
733 redostr = "";
734 } else {
735 errstr = "WARNING";
736 redostr = " (will try again)";
737 }
738 rprintf(msgtype,
739 "%s: %s failed verification -- update %s%s.\n",
740 errstr, fname, keptstr, redostr);
741 }
742 if (!redoing) {
743 send_msg_int(MSG_REDO, ndx);
744 file->flags |= FLAG_FILE_SENT;
745 } else if (inc_recurse)
746 send_msg_int(MSG_NO_SEND, ndx);
747 }
748 }
749 if (make_backups < 0)
750 make_backups = -make_backups;
751
752 if (phase == 2 && delay_updates) /* for protocol_version < 29 */
753 handle_delayed_updates(local_name);
754
755 if (verbose > 2)
756 rprintf(FINFO,"recv_files finished\n");
757
758 return 0;
759}