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