Make use of new variables (log_format_has_i, log_format_has_o_or_i,
[rsync/rsync.git] / receiver.c
CommitLineData
e327acec 1/* -*- c-file-style: "linux" -*-
17fadf7d 2
e327acec 3 Copyright (C) 1996-2000 by Andrew Tridgell
2f03f956 4 Copyright (C) Paul Mackerras 1996
17fadf7d 5
2f03f956
AT
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
17fadf7d 10
2f03f956
AT
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
17fadf7d 15
2f03f956
AT
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
21#include "rsync.h"
22
23extern int verbose;
910e89b9 24extern int log_before_transfer;
e844be4e 25extern int itemize_changes;
92b9eb97 26extern int delete_after;
2f03f956
AT
27extern int csum_length;
28extern struct stats stats;
29extern int dry_run;
16cc9ca2
WD
30extern int read_batch;
31extern int batch_gen_fd;
2f03f956 32extern int am_server;
41cfde6b 33extern int protocol_version;
2f03f956 34extern int relative_paths;
566fce32 35extern int keep_dirlinks;
2f03f956 36extern int preserve_hard_links;
92b9eb97 37extern int preserve_perms;
2f03f956
AT
38extern int io_error;
39extern char *tmpdir;
a7260c40 40extern char *partial_dir;
ee297522 41extern char *basis_dir[];
c56595d7 42extern int basis_dir_cnt;
53dd3135 43extern int make_backups;
16417f8b 44extern int do_progress;
925c517f 45extern int cleanup_got_literal;
92b9eb97
WD
46extern int module_id;
47extern int ignore_errors;
48extern int orig_umask;
55e50d89 49extern int keep_partial;
ba582f75 50extern int checksum_seed;
a3221d2a 51extern int inplace;
48e1c8c6 52extern int delay_updates;
910e89b9 53extern char *log_format;
2f03f956 54
7842418b 55extern struct filter_list_struct server_filter_list;
5ebab6c1
WD
56
57
3ab56a20
WD
58/* This deletes any files on the receiving side that are not present on the
59 * sending side. This is used by --delete-before and --delete-after. */
6957ae33 60void delete_files(struct file_list *flist)
2f03f956 61{
68a94ac3 62 char fbuf[MAXPATHLEN];
3ab56a20 63 int j;
2f03f956 64
1e82e2ce 65 for (j = 0; j < flist->count; j++) {
68a94ac3 66 struct file_struct *file = flist->files[j];
462c51d9 67
68a94ac3 68 if (!(file->flags & FLAG_DEL_HERE))
462c51d9 69 continue;
2430e984 70
68a94ac3
WD
71 f_name_to(file, fbuf);
72 if (verbose > 1 && file->flags & FLAG_TOP_DIR)
73 rprintf(FINFO, "deleting in %s\n", safe_fname(fbuf));
2430e984 74
68a94ac3 75 delete_in_dir(flist, fbuf, file);
2f03f956
AT
76 }
77}
78
79
52d3e106
S
80/*
81 * get_tmpname() - create a tmp filename for a given filename
82 *
83 * If a tmpdir is defined, use that as the directory to
84 * put it in. Otherwise, the tmp filename is in the same
85 * directory as the given name. Note that there may be no
86 * directory at all in the given name!
17fadf7d 87 *
52d3e106
S
88 * The tmp filename is basically the given filename with a
89 * dot prepended, and .XXXXXX appended (for mkstemp() to
90 * put its unique gunk in). Take care to not exceed
91 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
92 * the basename basically becomes 8 chars longer. In that
93 * case, the original name is shortened sufficiently to
94 * make it all fit.
17fadf7d 95 *
52d3e106
S
96 * Of course, there's no real reason for the tmp name to
97 * look like the original, except to satisfy us humans.
98 * As long as it's unique, rsync will work.
99 */
100
2f03f956
AT
101static int get_tmpname(char *fnametmp, char *fname)
102{
103 char *f;
52d3e106
S
104 int length = 0;
105 int maxname;
2f03f956 106
2f03f956 107 if (tmpdir) {
a24639bb 108 /* Note: this can't overflow, so the return value is safe */
b7cee949 109 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
52d3e106
S
110 fnametmp[length++] = '/';
111 fnametmp[length] = '\0'; /* always NULL terminated */
0c2ef5f4 112 }
52d3e106 113
0c2ef5f4 114 if ((f = strrchr(fname, '/')) != NULL) {
52d3e106
S
115 ++f;
116 if (!tmpdir) {
117 length = f - fname;
0c2ef5f4 118 /* copy up to and including the slash */
52d3e106 119 strlcpy(fnametmp, fname, length + 1);
0c2ef5f4 120 }
446e239e 121 } else
52d3e106 122 f = fname;
52d3e106
S
123 fnametmp[length++] = '.';
124 fnametmp[length] = '\0'; /* always NULL terminated */
2f03f956 125
52d3e106 126 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
2f03f956 127
0c2ef5f4 128 if (maxname < 1) {
71903f60
WD
129 rprintf(FERROR, "temporary filename too long: %s\n",
130 safe_fname(fname));
52d3e106 131 fnametmp[0] = '\0';
2f03f956
AT
132 return 0;
133 }
134
17fadf7d 135 strlcpy(fnametmp + length, f, maxname);
52d3e106 136 strcat(fnametmp + length, ".XXXXXX");
2f03f956
AT
137
138 return 1;
139}
140
141
7e5fa372
WD
142static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
143 char *fname, int fd, OFF_T total_size)
2f03f956 144{
7e5fa372
WD
145 static char file_sum1[MD4_SUM_LENGTH];
146 static char file_sum2[MD4_SUM_LENGTH];
147 struct map_struct *mapbuf;
fc0257c9 148 struct sum_struct sum;
6c495e0d 149 int32 len;
2f03f956 150 OFF_T offset = 0;
89e540e6 151 OFF_T offset2;
2f03f956 152 char *data;
6c495e0d 153 int32 i;
e1f67417 154 char *map = NULL;
17fadf7d 155
fc0257c9 156 read_sum_head(f_in, &sum);
17fadf7d 157
7e5fa372 158 if (fd_r >= 0 && size_r > 0) {
80264051
WD
159 int32 read_size = MAX(sum.blength * 2, 16*1024);
160 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
7e5fa372
WD
161 if (verbose > 2) {
162 rprintf(FINFO, "recv mapped %s of size %.0f\n",
ecc81fce 163 safe_fname(fname_r), (double)size_r);
7e5fa372
WD
164 }
165 } else
166 mapbuf = NULL;
167
ba582f75 168 sum_init(checksum_seed);
17fadf7d 169
3f55bd5d 170 while ((i = recv_token(f_in, &data)) != 0) {
16417f8b
WD
171 if (do_progress)
172 show_progress(offset, total_size);
2f03f956
AT
173
174 if (i > 0) {
2f03f956 175 if (verbose > 3) {
5f808dfb
AT
176 rprintf(FINFO,"data recv %d at %.0f\n",
177 i,(double)offset);
2f03f956
AT
178 }
179
180 stats.literal_data += i;
181 cleanup_got_literal = 1;
17fadf7d 182
6c495e0d 183 sum_update(data, i);
2f03f956 184
c52461f9
WD
185 if (fd != -1 && write_file(fd,data,i) != i)
186 goto report_write_error;
2f03f956
AT
187 offset += i;
188 continue;
17fadf7d 189 }
2f03f956
AT
190
191 i = -(i+1);
6c495e0d 192 offset2 = i * (OFF_T)sum.blength;
fc0257c9 193 len = sum.blength;
d2a918b4 194 if (i == (int)sum.count-1 && sum.remainder != 0)
fc0257c9 195 len = sum.remainder;
17fadf7d 196
2f03f956 197 stats.matched_data += len;
17fadf7d 198
6c495e0d
WD
199 if (verbose > 3) {
200 rprintf(FINFO,
201 "chunk[%d] of size %ld at %.0f offset=%.0f\n",
202 i, (long)len, (double)offset2, (double)offset);
203 }
17fadf7d 204
446e239e
WD
205 if (mapbuf) {
206 map = map_ptr(mapbuf,offset2,len);
17fadf7d 207
c55f7021 208 see_token(map, len);
6c495e0d 209 sum_update(map, len);
c55f7021 210 }
17fadf7d 211
fab65a5b 212 if (inplace) {
89e540e6 213 if (offset == offset2 && fd != -1) {
c52461f9
WD
214 if (flush_write_file(fd) < 0)
215 goto report_write_error;
89e540e6
WD
216 offset += len;
217 if (do_lseek(fd, len, SEEK_CUR) != offset) {
fab65a5b
WD
218 rsyserr(FERROR, errno,
219 "lseek failed on %s",
220 full_fname(fname));
221 exit_cleanup(RERR_FILEIO);
222 }
89e540e6 223 continue;
a3221d2a 224 }
2f03f956 225 }
c52461f9
WD
226 if (fd != -1 && write_file(fd, map, len) != (int)len)
227 goto report_write_error;
2f03f956
AT
228 offset += len;
229 }
230
85f14172
WD
231 if (flush_write_file(fd) < 0)
232 goto report_write_error;
76c21947 233
4f5b0756 234#ifdef HAVE_FTRUNCATE
fab65a5b 235 if (inplace && fd != -1)
a3221d2a
WD
236 ftruncate(fd, offset);
237#endif
238
16417f8b
WD
239 if (do_progress)
240 end_progress(total_size);
2f03f956
AT
241
242 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
c52461f9 243 report_write_error:
d62bcc17
WD
244 rsyserr(FERROR, errno, "write failed on %s",
245 full_fname(fname));
65417579 246 exit_cleanup(RERR_FILEIO);
2f03f956
AT
247 }
248
249 sum_end(file_sum1);
250
7e5fa372
WD
251 if (mapbuf)
252 unmap_file(mapbuf);
253
bc63ae3f 254 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
d2a918b4 255 if (verbose > 2)
bc63ae3f 256 rprintf(FINFO,"got file_sum\n");
d2a918b4 257 if (fd != -1 && memcmp(file_sum1, file_sum2, MD4_SUM_LENGTH) != 0)
bc63ae3f 258 return 0;
2f03f956
AT
259 return 1;
260}
261
262
73273075
WD
263static void read_gen_name(int fd, char *dirname, char *buf)
264{
265 int dlen;
266 int len = read_byte(fd);
267
268 if (len & 0x80) {
269#if MAXPATHLEN > 32767
270 uchar lenbuf[2];
271 read_buf(fd, (char *)lenbuf, 2);
272 len = (len & ~0x80) * 0x10000 + lenbuf[0] * 0x100 + lenbuf[1];
273#else
274 len = (len & ~0x80) * 0x100 + read_byte(fd);
275#endif
276 }
277
278 if (dirname) {
279 dlen = strlcpy(buf, dirname, MAXPATHLEN);
280 buf[dlen++] = '/';
281 } else
282 dlen = 0;
283
284 if (dlen + len >= MAXPATHLEN) {
285 rprintf(FERROR, "bogus data on generator name pipe\n");
286 exit_cleanup(RERR_PROTOCOL);
287 }
288
289 read_sbuf(fd, buf + dlen, len);
290}
291
292
8ed9d849
WD
293static void discard_receive_data(int f_in, OFF_T length)
294{
7e5fa372 295 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
8ed9d849
WD
296}
297
298
b35d0d8e
MP
299/**
300 * main routine for receiver process.
301 *
302 * Receiver process runs on the same host as the generator process. */
41cfde6b
WD
303int recv_files(int f_in, struct file_list *flist, char *local_name,
304 int f_in_name)
17fadf7d 305{
16cc9ca2 306 int next_gen_i = -1;
2f03f956
AT
307 int fd1,fd2;
308 STRUCT_STAT st;
910e89b9 309 int iflags;
446e239e 310 char *fname, fbuf[MAXPATHLEN];
f62c17e3 311 char template[MAXPATHLEN];
2f03f956 312 char fnametmp[MAXPATHLEN];
a7260c40 313 char *fnamecmp, *partialptr;
375a4556 314 char fnamecmpbuf[MAXPATHLEN];
48e1c8c6 315 uchar *delayed_bits = NULL;
2f03f956 316 struct file_struct *file;
1b7c47cb 317 struct stats initial_stats;
4e834af1
WD
318 int save_make_backups = make_backups;
319 int i, recv_ok, phase = 0;
11a5a3c7 320
d2a918b4 321 if (verbose > 2)
2f03f956 322 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
2f03f956 323
cb869c26 324 if (flist->hlink_pool) {
9935066b
S
325 pool_destroy(flist->hlink_pool);
326 flist->hlink_pool = NULL;
327 }
328
48e1c8c6
WD
329 if (delay_updates) {
330 int sz = (flist->count + 7) / 8;
dc3afaf6 331 if (!(delayed_bits = new_array(uchar, sz)))
48e1c8c6
WD
332 out_of_memory("recv_files");
333 memset(delayed_bits, 0, sz);
334 }
335
17fadf7d 336 while (1) {
2f03f956
AT
337 cleanup_disable();
338
339 i = read_int(f_in);
340 if (i == -1) {
16cc9ca2 341 if (read_batch) {
41cfde6b
WD
342 if (next_gen_i != flist->count) {
343 do {
344 if (f_in_name >= 0
345 && next_gen_i >= 0)
346 read_byte(f_in_name);
347 } while (read_int(batch_gen_fd) != -1);
348 }
16cc9ca2
WD
349 next_gen_i = -1;
350 }
351
4e834af1
WD
352 if (phase)
353 break;
5ebab6c1 354
4e834af1
WD
355 phase = 1;
356 csum_length = SUM_LENGTH;
357 if (verbose > 2)
358 rprintf(FINFO, "recv_files phase=%d\n", phase);
359 send_msg(MSG_DONE, "", 0);
aec6b9f8 360 if (keep_partial && !partial_dir)
4e834af1
WD
361 make_backups = 0; /* prevents double backup */
362 continue;
2f03f956
AT
363 }
364
365 if (i < 0 || i >= flist->count) {
17fadf7d 366 rprintf(FERROR,"Invalid file index %d in recv_files (count=%d)\n",
2f03f956 367 i, flist->count);
65417579 368 exit_cleanup(RERR_PROTOCOL);
2f03f956
AT
369 }
370
371 file = flist->files[i];
910e89b9 372
4bb0af79 373 if (protocol_version >= 29) {
742be97c 374 iflags = read_shortint(f_in);
910e89b9 375 if (!(iflags & ITEM_UPDATING) || !S_ISREG(file->mode)) {
e844be4e
WD
376 if (am_server)
377 ; /* do nothing */
742be97c 378 else if (itemize_changes || verbose > 1
e844be4e
WD
379 || iflags & ITEM_UPDATING
380 || (S_ISDIR(file->mode)
381 && iflags & ITEM_REPORT_TIME))
910e89b9
WD
382 log_recv(file, &stats, iflags);
383 continue;
384 }
385 } else
386 iflags = ITEM_UPDATING | ITEM_MISSING_DATA;
387
388 if (!S_ISREG(file->mode)) {
389 rprintf(FERROR, "[%s] got index of non-regular file: %d\n",
8c2ffaf0
WD
390 who_am_i(), i);
391 exit_cleanup(RERR_PROTOCOL);
392 }
2f03f956 393
97feb557 394 stats.current_file_index = i;
2f03f956
AT
395 stats.num_transferred_files++;
396 stats.total_transferred_size += file->length;
925c517f 397 cleanup_got_literal = 0;
2f03f956 398
8c2ffaf0
WD
399 fname = local_name ? local_name : f_name_to(file, fbuf);
400
401 if (server_filter_list.head
402 && check_filter(&server_filter_list, fname, 0) < 0) {
403 rprintf(FERROR, "attempt to hack rsync failed.\n");
404 exit_cleanup(RERR_PROTOCOL);
405 }
406
407 if (verbose > 2)
408 rprintf(FINFO, "recv_files(%s)\n", safe_fname(fname));
2f03f956 409
a8ed4958 410 if (dry_run) { /* log the transfer */
4bb0af79 411 if (!am_server && log_format)
910e89b9 412 log_recv(file, &stats, iflags);
2f03f956
AT
413 continue;
414 }
415
16cc9ca2
WD
416 if (read_batch) {
417 while (i > next_gen_i) {
41cfde6b
WD
418 if (f_in_name >= 0 && next_gen_i >= 0)
419 read_byte(f_in_name);
16cc9ca2
WD
420 next_gen_i = read_int(batch_gen_fd);
421 if (next_gen_i == -1)
422 next_gen_i = flist->count;
423 }
424 if (i < next_gen_i) {
425 rprintf(FINFO, "skipping update for \"%s\"\n",
ecc81fce 426 safe_fname(fname));
16cc9ca2
WD
427 discard_receive_data(f_in, file->length);
428 continue;
429 }
41cfde6b 430 next_gen_i = -1;
16cc9ca2
WD
431 }
432
41cfde6b
WD
433 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
434
435 if (f_in_name >= 0) {
ee297522
WD
436 uchar j;
437 switch (j = read_byte(f_in_name)) {
41cfde6b 438 case FNAMECMP_FNAME:
a7260c40 439 fnamecmp = fname;
41cfde6b
WD
440 break;
441 case FNAMECMP_PARTIAL_DIR:
442 fnamecmp = partialptr ? partialptr : fname;
443 break;
444 case FNAMECMP_BACKUP:
445 fnamecmp = get_backup_name(fname);
446 break;
73273075
WD
447 case FNAMECMP_FUZZY:
448 read_gen_name(f_in_name, file->dirname, fnamecmpbuf);
449 fnamecmp = fnamecmpbuf;
450 break;
41cfde6b 451 default:
c56595d7
WD
452 if (j >= basis_dir_cnt) {
453 rprintf(FERROR,
454 "invalid basis_dir index: %d.\n",
455 j);
456 exit_cleanup(RERR_PROTOCOL);
457 }
41cfde6b 458 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
ee297522 459 basis_dir[j], fname);
41cfde6b
WD
460 fnamecmp = fnamecmpbuf;
461 break;
462 }
a7260c40 463 } else
41cfde6b 464 fnamecmp = fname;
dc55d7bd 465
910e89b9
WD
466 initial_stats = stats;
467
17fadf7d 468 /* open the file */
8c9fd200 469 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 470
2f03f956 471 if (fd1 != -1 && do_fstat(fd1,&st) != 0) {
d62bcc17
WD
472 rsyserr(FERROR, errno, "fstat %s failed",
473 full_fname(fnamecmp));
8ed9d849 474 discard_receive_data(f_in, file->length);
2f03f956
AT
475 close(fd1);
476 continue;
477 }
478
350e4e4d
S
479 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
480 /* this special handling for directories
481 * wouldn't be necessary if robust_rename()
482 * and the underlying robust_unlink could cope
483 * with directories
484 */
ea42541f
WD
485 rprintf(FERROR,"recv_files: %s is a directory\n",
486 full_fname(fnamecmp));
8ed9d849 487 discard_receive_data(f_in, file->length);
2f03f956
AT
488 close(fd1);
489 continue;
490 }
491
350e4e4d
S
492 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
493 close(fd1);
494 fd1 = -1;
350e4e4d
S
495 }
496
4df9f368 497 if (fd1 != -1 && !preserve_perms) {
85ed0aa3 498 /* if the file exists already and we aren't preserving
17fadf7d
WD
499 * permissions then act as though the remote end sent
500 * us the file permissions we already have */
4df9f368
AT
501 file->mode = st.st_mode;
502 }
503
a3221d2a
WD
504 /* We now check to see if we are writing file "inplace" */
505 if (inplace) {
dc55d7bd 506 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0);
a3221d2a
WD
507 if (fd2 == -1) {
508 rsyserr(FERROR, errno, "open %s failed",
dc55d7bd 509 full_fname(fname));
8ed9d849 510 discard_receive_data(f_in, file->length);
a3221d2a
WD
511 if (fd1 != -1)
512 close(fd1);
513 continue;
514 }
515 } else {
516 if (!get_tmpname(fnametmp,fname)) {
8ed9d849 517 discard_receive_data(f_in, file->length);
a3221d2a
WD
518 if (fd1 != -1)
519 close(fd1);
520 continue;
521 }
522
523 strlcpy(template, fnametmp, sizeof template);
2f03f956 524
a3221d2a
WD
525 /* we initially set the perms without the
526 * setuid/setgid bits to ensure that there is no race
527 * condition. They are then correctly updated after
528 * the lchown. Thanks to snabb@epipe.fi for pointing
529 * this out. We also set it initially without group
530 * access because of a similar race condition. */
f62c17e3 531 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
17fadf7d 532
a3221d2a
WD
533 /* in most cases parent directories will already exist
534 * because their information should have been previously
535 * transferred, but that may not be the case with -R */
536 if (fd2 == -1 && relative_paths && errno == ENOENT
537 && create_directory_path(fnametmp, orig_umask) == 0) {
538 strlcpy(fnametmp, template, sizeof fnametmp);
539 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
540 }
541 if (fd2 == -1) {
542 rsyserr(FERROR, errno, "mkstemp %s failed",
543 full_fname(fnametmp));
8ed9d849 544 discard_receive_data(f_in, file->length);
a3221d2a
WD
545 if (fd1 != -1)
546 close(fd1);
547 continue;
548 }
549
a7260c40
WD
550 if (partialptr)
551 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
a3221d2a 552 }
2f03f956 553
a8ed4958 554 /* log the transfer */
910e89b9
WD
555 if (log_before_transfer)
556 log_recv(file, &initial_stats, iflags);
4bb0af79 557 else if (!am_server && verbose && do_progress)
ecc81fce 558 rprintf(FINFO, "%s\n", safe_fname(fname));
11a5a3c7 559
2f03f956 560 /* recv file data */
7e5fa372
WD
561 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
562 fname, fd2, file->length);
1b7c47cb 563
910e89b9
WD
564 if (!log_before_transfer)
565 log_recv(file, &initial_stats, iflags);
17fadf7d 566
d2a918b4 567 if (fd1 != -1)
2f03f956 568 close(fd1);
9f27cd8c 569 if (close(fd2) < 0) {
d62bcc17
WD
570 rsyserr(FERROR, errno, "close failed on %s",
571 full_fname(fnametmp));
9f27cd8c
WD
572 exit_cleanup(RERR_FILEIO);
573 }
17fadf7d 574
68795c64 575 if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
aec6b9f8
WD
576 finish_transfer(fname, fnametmp, file, recv_ok, 1);
577 if (partialptr != fname && fnamecmp == partialptr) {
578 do_unlink(partialptr);
579 handle_partial_dir(partialptr, PDIR_DELETE);
580 }
581 } else if (keep_partial && partialptr
582 && handle_partial_dir(partialptr, PDIR_CREATE)) {
583 finish_transfer(partialptr, fnametmp, file, recv_ok,
584 !partial_dir);
48e1c8c6
WD
585 if (delay_updates && recv_ok)
586 delayed_bits[i/8] |= 1 << (i % 8);
aec6b9f8 587 } else {
a7260c40 588 partialptr = NULL;
55e50d89 589 do_unlink(fnametmp);
a7260c40
WD
590 }
591
2f03f956 592 cleanup_disable();
554e0a8d 593
2f03f956 594 if (!recv_ok) {
007e3c0e
WD
595 int msgtype = csum_length == SUM_LENGTH || read_batch ?
596 FERROR : FINFO;
597 if (msgtype == FERROR || verbose) {
a7260c40
WD
598 char *errstr, *redostr, *keptstr;
599 if (!(keep_partial && partialptr) && !inplace)
600 keptstr = "discarded";
601 else if (partial_dir)
602 keptstr = "put into partial-dir";
603 else
604 keptstr = "retained";
007e3c0e
WD
605 if (msgtype == FERROR) {
606 errstr = "ERROR";
607 redostr = "";
608 } else {
609 errstr = "WARNING";
610 redostr = " (will try again)";
611 }
612 rprintf(msgtype,
a7260c40 613 "%s: %s failed verification -- update %s%s.\n",
ecc81fce
WD
614 errstr, safe_fname(fname),
615 keptstr, redostr);
007e3c0e 616 }
e2bc4126 617 if (csum_length != SUM_LENGTH) {
0569a133 618 char buf[4];
0569a133
WD
619 SIVAL(buf, 0, i);
620 send_msg(MSG_REDO, buf, 4);
2f03f956
AT
621 }
622 }
623 }
4e834af1 624 make_backups = save_make_backups;
2f03f956 625
48e1c8c6
WD
626 if (delay_updates) {
627 for (i = 0; i < flist->count; i++) {
628 struct file_struct *file = flist->files[i];
629 if (!file->basename
630 || !(delayed_bits[i/8] & (1 << (i % 8))))
631 continue;
632 fname = local_name ? local_name : f_name(file);
633 partialptr = partial_dir_fname(fname);
634 if (partialptr) {
635 if (make_backups && !make_backup(fname))
636 continue;
637 if (verbose > 2) {
638 rprintf(FINFO, "renaming %s to %s\n",
71903f60
WD
639 safe_fname(partialptr),
640 safe_fname(fname));
48e1c8c6
WD
641 }
642 if (do_rename(partialptr, fname) < 0) {
643 rsyserr(FERROR, errno,
644 "rename failed for %s (from %s)",
71903f60
WD
645 full_fname(fname),
646 safe_fname(partialptr));
48e1c8c6
WD
647 } else {
648 handle_partial_dir(partialptr,
649 PDIR_DELETE);
650 }
651 }
652 }
653 }
654
2430e984 655 if (delete_after && !local_name && flist->count > 0)
3f55bd5d 656 delete_files(flist);
57df171b 657
2f03f956
AT
658 if (verbose > 2)
659 rprintf(FINFO,"recv_files finished\n");
17fadf7d 660
2f03f956
AT
661 return 0;
662}