Switch over to testing --remove-source-files, not *-sent-*.
[rsync/rsync.git] / receiver.c
CommitLineData
0f78b815
WD
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, 2004, 2005, 2006 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 2 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 *
e7c67065
WD
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
0f78b815 21 */
2f03f956
AT
22
23#include "rsync.h"
24
25extern int verbose;
a0009fc3 26extern int do_xfers;
8715db2c
WD
27extern int am_server;
28extern int do_progress;
910e89b9 29extern int log_before_transfer;
2fedf3d5 30extern int stdout_format_has_i;
ecc7623e 31extern int logfile_format_has_i;
2f03f956 32extern int csum_length;
16cc9ca2 33extern int read_batch;
a0009fc3 34extern int write_batch;
16cc9ca2 35extern int batch_gen_fd;
41cfde6b 36extern int protocol_version;
2f03f956
AT
37extern int relative_paths;
38extern int preserve_hard_links;
92b9eb97 39extern int preserve_perms;
c56595d7 40extern int basis_dir_cnt;
53dd3135 41extern int make_backups;
925c517f 42extern int cleanup_got_literal;
47c11975 43extern int remove_source_files;
6cc11982 44extern int append_mode;
e7ee91de 45extern int sparse_files;
55e50d89 46extern int keep_partial;
ba582f75 47extern int checksum_seed;
a3221d2a 48extern int inplace;
48e1c8c6 49extern int delay_updates;
8715db2c 50extern struct stats stats;
2fedf3d5 51extern char *stdout_format;
8715db2c
WD
52extern char *tmpdir;
53extern char *partial_dir;
54extern char *basis_dir[];
154cdaaa 55extern struct file_list *the_file_list;
7842418b 56extern struct filter_list_struct server_filter_list;
5ebab6c1 57
10f994a5 58static struct bitbag *delayed_bits = NULL;
1ed91a04 59static int phase = 0;
48459ba1
WD
60/* We're either updating the basis file or an identical copy: */
61static int updating_basis;
3e7934a5 62
2f03f956 63
52d3e106
S
64/*
65 * get_tmpname() - create a tmp filename for a given filename
66 *
67 * If a tmpdir is defined, use that as the directory to
68 * put it in. Otherwise, the tmp filename is in the same
69 * directory as the given name. Note that there may be no
70 * directory at all in the given name!
17fadf7d 71 *
52d3e106
S
72 * The tmp filename is basically the given filename with a
73 * dot prepended, and .XXXXXX appended (for mkstemp() to
74 * put its unique gunk in). Take care to not exceed
75 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
76 * the basename basically becomes 8 chars longer. In that
77 * case, the original name is shortened sufficiently to
78 * make it all fit.
17fadf7d 79 *
52d3e106
S
80 * Of course, there's no real reason for the tmp name to
81 * look like the original, except to satisfy us humans.
82 * As long as it's unique, rsync will work.
83 */
84
2f03f956
AT
85static int get_tmpname(char *fnametmp, char *fname)
86{
d5dcb6f7 87 int maxname, added, length = 0;
2f03f956
AT
88 char *f;
89
2f03f956 90 if (tmpdir) {
a24639bb 91 /* Note: this can't overflow, so the return value is safe */
b7cee949 92 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
52d3e106 93 fnametmp[length++] = '/';
0c2ef5f4 94 }
52d3e106 95
0c2ef5f4 96 if ((f = strrchr(fname, '/')) != NULL) {
52d3e106
S
97 ++f;
98 if (!tmpdir) {
99 length = f - fname;
0c2ef5f4 100 /* copy up to and including the slash */
52d3e106 101 strlcpy(fnametmp, fname, length + 1);
0c2ef5f4 102 }
446e239e 103 } else
52d3e106 104 f = fname;
52d3e106 105 fnametmp[length++] = '.';
2f03f956 106
d5dcb6f7
WD
107 /* The maxname value is bufsize, and includes space for the '\0'.
108 * (Note that NAME_MAX get -8 for the leading '.' above.) */
52d3e106 109 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
2f03f956 110
0c2ef5f4 111 if (maxname < 1) {
45c49b52 112 rprintf(FERROR, "temporary filename too long: %s\n", fname);
52d3e106 113 fnametmp[0] = '\0';
2f03f956
AT
114 return 0;
115 }
116
d5dcb6f7
WD
117 added = strlcpy(fnametmp + length, f, maxname);
118 if (added >= maxname)
119 added = maxname - 1;
120 memcpy(fnametmp + length + added, ".XXXXXX", 8);
2f03f956
AT
121
122 return 1;
123}
124
125
7e5fa372
WD
126static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
127 char *fname, int fd, OFF_T total_size)
2f03f956 128{
7e5fa372
WD
129 static char file_sum1[MD4_SUM_LENGTH];
130 static char file_sum2[MD4_SUM_LENGTH];
131 struct map_struct *mapbuf;
fc0257c9 132 struct sum_struct sum;
6c495e0d 133 int32 len;
2f03f956 134 OFF_T offset = 0;
89e540e6 135 OFF_T offset2;
2f03f956 136 char *data;
6c495e0d 137 int32 i;
e1f67417 138 char *map = NULL;
17fadf7d 139
fc0257c9 140 read_sum_head(f_in, &sum);
17fadf7d 141
7e5fa372 142 if (fd_r >= 0 && size_r > 0) {
80264051
WD
143 int32 read_size = MAX(sum.blength * 2, 16*1024);
144 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
7e5fa372
WD
145 if (verbose > 2) {
146 rprintf(FINFO, "recv mapped %s of size %.0f\n",
45c49b52 147 fname_r, (double)size_r);
7e5fa372
WD
148 }
149 } else
150 mapbuf = NULL;
151
ba582f75 152 sum_init(checksum_seed);
17fadf7d 153
6cc11982
WD
154 if (append_mode) {
155 OFF_T j;
156 sum.flength = (OFF_T)sum.count * sum.blength;
157 if (sum.remainder)
158 sum.flength -= sum.blength - sum.remainder;
159 for (j = CHUNK_SIZE; j < sum.flength; j += CHUNK_SIZE) {
97894c64
WD
160 if (do_progress)
161 show_progress(offset, total_size);
6cc11982
WD
162 sum_update(map_ptr(mapbuf, offset, CHUNK_SIZE),
163 CHUNK_SIZE);
164 offset = j;
165 }
166 if (offset < sum.flength) {
53593085 167 int32 len = (int32)(sum.flength - offset);
97894c64
WD
168 if (do_progress)
169 show_progress(offset, total_size);
6cc11982
WD
170 sum_update(map_ptr(mapbuf, offset, len), len);
171 offset = sum.flength;
172 }
ffa8ab8e
WD
173 if (fd != -1 && (j = do_lseek(fd, offset, SEEK_SET)) != offset) {
174 rsyserr(FERROR, errno, "lseek of %s returned %.0f, not %.0f",
175 full_fname(fname), (double)j, (double)offset);
6cc11982
WD
176 exit_cleanup(RERR_FILEIO);
177 }
178 }
179
3f55bd5d 180 while ((i = recv_token(f_in, &data)) != 0) {
16417f8b
WD
181 if (do_progress)
182 show_progress(offset, total_size);
2f03f956
AT
183
184 if (i > 0) {
2f03f956 185 if (verbose > 3) {
5f808dfb
AT
186 rprintf(FINFO,"data recv %d at %.0f\n",
187 i,(double)offset);
2f03f956
AT
188 }
189
190 stats.literal_data += i;
191 cleanup_got_literal = 1;
17fadf7d 192
6c495e0d 193 sum_update(data, i);
2f03f956 194
c52461f9
WD
195 if (fd != -1 && write_file(fd,data,i) != i)
196 goto report_write_error;
2f03f956
AT
197 offset += i;
198 continue;
17fadf7d 199 }
2f03f956
AT
200
201 i = -(i+1);
6c495e0d 202 offset2 = i * (OFF_T)sum.blength;
fc0257c9 203 len = sum.blength;
d2a918b4 204 if (i == (int)sum.count-1 && sum.remainder != 0)
fc0257c9 205 len = sum.remainder;
17fadf7d 206
2f03f956 207 stats.matched_data += len;
17fadf7d 208
6c495e0d
WD
209 if (verbose > 3) {
210 rprintf(FINFO,
211 "chunk[%d] of size %ld at %.0f offset=%.0f\n",
212 i, (long)len, (double)offset2, (double)offset);
213 }
17fadf7d 214
446e239e
WD
215 if (mapbuf) {
216 map = map_ptr(mapbuf,offset2,len);
17fadf7d 217
c55f7021 218 see_token(map, len);
6c495e0d 219 sum_update(map, len);
c55f7021 220 }
17fadf7d 221
48459ba1 222 if (updating_basis) {
89e540e6 223 if (offset == offset2 && fd != -1) {
ffa8ab8e 224 OFF_T pos;
c52461f9
WD
225 if (flush_write_file(fd) < 0)
226 goto report_write_error;
89e540e6 227 offset += len;
ffa8ab8e 228 if ((pos = do_lseek(fd, len, SEEK_CUR)) != offset) {
fab65a5b 229 rsyserr(FERROR, errno,
ffa8ab8e
WD
230 "lseek of %s returned %.0f, not %.0f",
231 full_fname(fname),
232 (double)pos, (double)offset);
fab65a5b
WD
233 exit_cleanup(RERR_FILEIO);
234 }
89e540e6 235 continue;
a3221d2a 236 }
2f03f956 237 }
1ed91a04 238 if (fd != -1 && map && write_file(fd, map, len) != (int)len)
c52461f9 239 goto report_write_error;
2f03f956
AT
240 offset += len;
241 }
242
85f14172
WD
243 if (flush_write_file(fd) < 0)
244 goto report_write_error;
76c21947 245
4f5b0756 246#ifdef HAVE_FTRUNCATE
fab65a5b 247 if (inplace && fd != -1)
a3221d2a
WD
248 ftruncate(fd, offset);
249#endif
250
16417f8b
WD
251 if (do_progress)
252 end_progress(total_size);
2f03f956
AT
253
254 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
c52461f9 255 report_write_error:
d62bcc17
WD
256 rsyserr(FERROR, errno, "write failed on %s",
257 full_fname(fname));
65417579 258 exit_cleanup(RERR_FILEIO);
2f03f956
AT
259 }
260
261 sum_end(file_sum1);
262
7e5fa372
WD
263 if (mapbuf)
264 unmap_file(mapbuf);
265
bc63ae3f 266 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
d2a918b4 267 if (verbose > 2)
bc63ae3f 268 rprintf(FINFO,"got file_sum\n");
d2a918b4 269 if (fd != -1 && memcmp(file_sum1, file_sum2, MD4_SUM_LENGTH) != 0)
bc63ae3f 270 return 0;
2f03f956
AT
271 return 1;
272}
273
274
8ed9d849
WD
275static void discard_receive_data(int f_in, OFF_T length)
276{
7e5fa372 277 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
8ed9d849
WD
278}
279
42be5320
WD
280static void handle_delayed_updates(struct file_list *flist, char *local_name)
281{
282 char *fname, *partialptr, numbuf[4];
283 int i;
284
10f994a5 285 for (i = -1; (i = bitbag_next_bit(delayed_bits, i)) >= 0; ) {
42be5320 286 struct file_struct *file = flist->files[i];
6cbde57d 287 fname = local_name ? local_name : f_name(file, NULL);
42be5320
WD
288 if ((partialptr = partial_dir_fname(fname)) != NULL) {
289 if (make_backups && !make_backup(fname))
290 continue;
291 if (verbose > 2) {
292 rprintf(FINFO, "renaming %s to %s\n",
45c49b52 293 partialptr, fname);
42be5320 294 }
6a94c58b
WD
295 /* We don't use robust_rename() here because the
296 * partial-dir must be on the same drive. */
42be5320
WD
297 if (do_rename(partialptr, fname) < 0) {
298 rsyserr(FERROR, errno,
299 "rename failed for %s (from %s)",
45c49b52 300 full_fname(fname), partialptr);
42be5320 301 } else {
47c11975 302 if (remove_source_files
42be5320
WD
303 || (preserve_hard_links
304 && file->link_u.links)) {
305 SIVAL(numbuf, 0, i);
306 send_msg(MSG_SUCCESS,numbuf,4);
307 }
45c49b52 308 handle_partial_dir(partialptr, PDIR_DELETE);
42be5320
WD
309 }
310 }
311 }
312}
313
154cdaaa
WD
314static int get_next_gen_i(int batch_gen_fd, int next_gen_i, int desired_i)
315{
316 while (next_gen_i < desired_i) {
317 if (next_gen_i >= 0) {
318 rprintf(FINFO,
1ed91a04
WD
319 "(No batched update for%s \"%s\")\n",
320 phase ? " resend of" : "",
6cbde57d 321 f_name(the_file_list->files[next_gen_i], NULL));
154cdaaa
WD
322 }
323 next_gen_i = read_int(batch_gen_fd);
324 if (next_gen_i == -1)
325 next_gen_i = the_file_list->count;
326 }
327 return next_gen_i;
328}
329
8ed9d849 330
b35d0d8e
MP
331/**
332 * main routine for receiver process.
333 *
334 * Receiver process runs on the same host as the generator process. */
9e4a8d29 335int recv_files(int f_in, struct file_list *flist, char *local_name)
17fadf7d 336{
16cc9ca2 337 int next_gen_i = -1;
2f03f956
AT
338 int fd1,fd2;
339 STRUCT_STAT st;
b9232d45 340 int iflags, xlen;
446e239e 341 char *fname, fbuf[MAXPATHLEN];
b9232d45 342 char xname[MAXPATHLEN];
2f03f956 343 char fnametmp[MAXPATHLEN];
3e870a64 344 char *fnamecmp, *partialptr, numbuf[4];
375a4556 345 char fnamecmpbuf[MAXPATHLEN];
9e4a8d29 346 uchar fnamecmp_type;
2f03f956 347 struct file_struct *file;
1b7c47cb 348 struct stats initial_stats;
4e834af1 349 int save_make_backups = make_backups;
2fedf3d5
WD
350 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
351 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
1ed91a04 352 int max_phase = protocol_version >= 29 ? 2 : 1;
ac3f7b81 353 int i, recv_ok;
11a5a3c7 354
d2a918b4 355 if (verbose > 2)
2f03f956 356 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
2f03f956 357
cb869c26 358 if (flist->hlink_pool) {
9935066b
S
359 pool_destroy(flist->hlink_pool);
360 flist->hlink_pool = NULL;
361 }
362
3e7934a5 363 if (delay_updates)
10f994a5 364 delayed_bits = bitbag_create(flist->count);
48e1c8c6 365
48459ba1
WD
366 updating_basis = inplace;
367
17fadf7d 368 while (1) {
2f03f956
AT
369 cleanup_disable();
370
371 i = read_int(f_in);
372 if (i == -1) {
16cc9ca2 373 if (read_batch) {
154cdaaa
WD
374 get_next_gen_i(batch_gen_fd, next_gen_i,
375 flist->count);
16cc9ca2
WD
376 next_gen_i = -1;
377 }
ac3f7b81 378 if (++phase > max_phase)
4e834af1 379 break;
4e834af1
WD
380 csum_length = SUM_LENGTH;
381 if (verbose > 2)
382 rprintf(FINFO, "recv_files phase=%d\n", phase);
ac3f7b81 383 if (phase == 2 && delay_updates)
42be5320 384 handle_delayed_updates(flist, local_name);
4e834af1 385 send_msg(MSG_DONE, "", 0);
aec6b9f8 386 if (keep_partial && !partial_dir)
4e834af1 387 make_backups = 0; /* prevents double backup */
e7ee91de
WD
388 if (append_mode) {
389 append_mode = 0;
390 sparse_files = 0;
391 }
4e834af1 392 continue;
2f03f956
AT
393 }
394
b9232d45
WD
395 iflags = read_item_attrs(f_in, -1, i, &fnamecmp_type,
396 xname, &xlen);
58a14ed9
WD
397 if (iflags == ITEM_IS_NEW) /* no-op packet */
398 continue;
2f03f956
AT
399
400 file = flist->files[i];
6cbde57d 401 fname = local_name ? local_name : f_name(file, fbuf);
227a9c41
WD
402
403 if (verbose > 2)
45c49b52 404 rprintf(FINFO, "recv_files(%s)\n", fname);
910e89b9 405
22907b6b 406 if (!(iflags & ITEM_TRANSFER)) {
b9232d45 407 maybe_log_item(file, iflags, itemizing, xname);
58a14ed9
WD
408 continue;
409 }
ac3f7b81
WD
410 if (phase == 2) {
411 rprintf(FERROR,
412 "got transfer request in phase 2 [%s]\n",
413 who_am_i());
414 exit_cleanup(RERR_PROTOCOL);
415 }
910e89b9 416
97feb557 417 stats.current_file_index = i;
2f03f956
AT
418 stats.num_transferred_files++;
419 stats.total_transferred_size += file->length;
925c517f 420 cleanup_got_literal = 0;
2f03f956 421
8c2ffaf0
WD
422 if (server_filter_list.head
423 && check_filter(&server_filter_list, fname, 0) < 0) {
424 rprintf(FERROR, "attempt to hack rsync failed.\n");
425 exit_cleanup(RERR_PROTOCOL);
426 }
427
a0009fc3 428 if (!do_xfers) { /* log the transfer */
85909931 429 log_item(FCLIENT, file, &stats, iflags, NULL);
f957e8fd
WD
430 if (read_batch)
431 discard_receive_data(f_in, file->length);
2f03f956
AT
432 continue;
433 }
a0009fc3 434 if (write_batch < 0) {
2fedf3d5 435 log_item(FINFO, file, &stats, iflags, NULL);
b10917a4
WD
436 if (!am_server)
437 discard_receive_data(f_in, file->length);
a0009fc3
WD
438 continue;
439 }
2f03f956 440
16cc9ca2 441 if (read_batch) {
154cdaaa 442 next_gen_i = get_next_gen_i(batch_gen_fd, next_gen_i, i);
16cc9ca2 443 if (i < next_gen_i) {
45c49b52
WD
444 rprintf(FINFO,
445 "(Skipping batched update for \"%s\")\n",
446 fname);
16cc9ca2
WD
447 discard_receive_data(f_in, file->length);
448 continue;
449 }
41cfde6b 450 next_gen_i = -1;
16cc9ca2
WD
451 }
452
41cfde6b
WD
453 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
454
9e4a8d29
WD
455 if (protocol_version >= 29) {
456 switch (fnamecmp_type) {
41cfde6b 457 case FNAMECMP_FNAME:
a7260c40 458 fnamecmp = fname;
41cfde6b
WD
459 break;
460 case FNAMECMP_PARTIAL_DIR:
9e4a8d29 461 fnamecmp = partialptr;
41cfde6b
WD
462 break;
463 case FNAMECMP_BACKUP:
464 fnamecmp = get_backup_name(fname);
465 break;
73273075 466 case FNAMECMP_FUZZY:
48459ba1 467 updating_basis = 0;
b9232d45
WD
468 if (file->dirname) {
469 pathjoin(fnamecmpbuf, MAXPATHLEN,
470 file->dirname, xname);
471 fnamecmp = fnamecmpbuf;
472 } else
473 fnamecmp = xname;
73273075 474 break;
41cfde6b 475 default:
48459ba1 476 updating_basis = 0;
9e4a8d29 477 if (fnamecmp_type >= basis_dir_cnt) {
c56595d7
WD
478 rprintf(FERROR,
479 "invalid basis_dir index: %d.\n",
9e4a8d29 480 fnamecmp_type);
c56595d7
WD
481 exit_cleanup(RERR_PROTOCOL);
482 }
41cfde6b 483 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
9e4a8d29 484 basis_dir[fnamecmp_type], fname);
41cfde6b
WD
485 fnamecmp = fnamecmpbuf;
486 break;
487 }
9e4a8d29
WD
488 if (!fnamecmp || (server_filter_list.head
489 && check_filter(&server_filter_list, fname, 0) < 0))
490 fnamecmp = fname;
491 } else {
492 /* Reminder: --inplace && --partial-dir are never
493 * enabled at the same time. */
494 if (inplace && make_backups) {
495 if (!(fnamecmp = get_backup_name(fname)))
496 fnamecmp = fname;
497 } else if (partial_dir && partialptr)
498 fnamecmp = partialptr;
499 else
500 fnamecmp = fname;
501 }
dc55d7bd 502
910e89b9
WD
503 initial_stats = stats;
504
17fadf7d 505 /* open the file */
8c9fd200 506 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 507
9e4a8d29
WD
508 if (fd1 == -1 && protocol_version < 29) {
509 if (fnamecmp != fname) {
510 fnamecmp = fname;
511 fd1 = do_open(fnamecmp, O_RDONLY, 0);
512 }
513
514 if (fd1 == -1 && basis_dir[0]) {
515 /* pre-29 allowed only one alternate basis */
516 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
517 basis_dir[0], fname);
518 fnamecmp = fnamecmpbuf;
519 fd1 = do_open(fnamecmp, O_RDONLY, 0);
520 }
521 }
522
d5dcb6f7
WD
523 if (fd1 == -1) {
524 st.st_mode = 0;
525 st.st_size = 0;
526 } else if (do_fstat(fd1,&st) != 0) {
d62bcc17
WD
527 rsyserr(FERROR, errno, "fstat %s failed",
528 full_fname(fnamecmp));
8ed9d849 529 discard_receive_data(f_in, file->length);
2f03f956
AT
530 close(fd1);
531 continue;
532 }
533
350e4e4d
S
534 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
535 /* this special handling for directories
536 * wouldn't be necessary if robust_rename()
537 * and the underlying robust_unlink could cope
538 * with directories
539 */
ea42541f
WD
540 rprintf(FERROR,"recv_files: %s is a directory\n",
541 full_fname(fnamecmp));
8ed9d849 542 discard_receive_data(f_in, file->length);
2f03f956
AT
543 close(fd1);
544 continue;
545 }
546
350e4e4d
S
547 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
548 close(fd1);
549 fd1 = -1;
350e4e4d
S
550 }
551
a9d6e6fc
WD
552 /* If we're not preserving permissions, change the file-list's
553 * mode based on the local permissions and some heuristics. */
554 if (!preserve_perms) {
555 int exists = fd1 != -1;
556 file->mode = dest_mode(file->mode, st.st_mode, exists);
4df9f368
AT
557 }
558
48459ba1 559 /* We now check to see if we are writing the file "inplace" */
a3221d2a 560 if (inplace) {
97894c64 561 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0600);
a3221d2a
WD
562 if (fd2 == -1) {
563 rsyserr(FERROR, errno, "open %s failed",
dc55d7bd 564 full_fname(fname));
8ed9d849 565 discard_receive_data(f_in, file->length);
a3221d2a
WD
566 if (fd1 != -1)
567 close(fd1);
568 continue;
569 }
570 } else {
571 if (!get_tmpname(fnametmp,fname)) {
8ed9d849 572 discard_receive_data(f_in, file->length);
a3221d2a
WD
573 if (fd1 != -1)
574 close(fd1);
575 continue;
576 }
577
a3221d2a
WD
578 /* we initially set the perms without the
579 * setuid/setgid bits to ensure that there is no race
580 * condition. They are then correctly updated after
581 * the lchown. Thanks to snabb@epipe.fi for pointing
582 * this out. We also set it initially without group
583 * access because of a similar race condition. */
f62c17e3 584 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
17fadf7d 585
a3221d2a
WD
586 /* in most cases parent directories will already exist
587 * because their information should have been previously
588 * transferred, but that may not be the case with -R */
589 if (fd2 == -1 && relative_paths && errno == ENOENT
904e5af1 590 && create_directory_path(fnametmp) == 0) {
b9232d45
WD
591 /* Get back to name with XXXXXX in it. */
592 get_tmpname(fnametmp, fname);
a3221d2a
WD
593 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
594 }
595 if (fd2 == -1) {
596 rsyserr(FERROR, errno, "mkstemp %s failed",
597 full_fname(fnametmp));
8ed9d849 598 discard_receive_data(f_in, file->length);
a3221d2a
WD
599 if (fd1 != -1)
600 close(fd1);
601 continue;
602 }
603
95ae5224 604 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
a3221d2a 605 }
2f03f956 606
a8ed4958 607 /* log the transfer */
910e89b9 608 if (log_before_transfer)
85909931 609 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
4bb0af79 610 else if (!am_server && verbose && do_progress)
45c49b52 611 rprintf(FINFO, "%s\n", fname);
11a5a3c7 612
2f03f956 613 /* recv file data */
7e5fa372
WD
614 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
615 fname, fd2, file->length);
1b7c47cb 616
2fedf3d5 617 log_item(log_code, file, &initial_stats, iflags, NULL);
17fadf7d 618
d2a918b4 619 if (fd1 != -1)
2f03f956 620 close(fd1);
9f27cd8c 621 if (close(fd2) < 0) {
d62bcc17
WD
622 rsyserr(FERROR, errno, "close failed on %s",
623 full_fname(fnametmp));
9f27cd8c
WD
624 exit_cleanup(RERR_FILEIO);
625 }
17fadf7d 626
68795c64 627 if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
01d124d9
WD
628 char *temp_copy_name;
629 if (partialptr == fname)
630 partialptr = temp_copy_name = NULL;
631 else if (*partial_dir == '/')
632 temp_copy_name = NULL;
633 else
634 temp_copy_name = partialptr;
635 finish_transfer(fname, fnametmp, temp_copy_name,
4a4d2b1b
WD
636 file, recv_ok, 1);
637 if (fnamecmp == partialptr) {
aec6b9f8
WD
638 do_unlink(partialptr);
639 handle_partial_dir(partialptr, PDIR_DELETE);
640 }
641 } else if (keep_partial && partialptr
642 && handle_partial_dir(partialptr, PDIR_CREATE)) {
4a4d2b1b
WD
643 finish_transfer(partialptr, fnametmp, NULL,
644 file, recv_ok, !partial_dir);
3e7934a5 645 if (delay_updates && recv_ok) {
10f994a5 646 bitbag_set_bit(delayed_bits, i);
3e7934a5
WD
647 recv_ok = -1;
648 }
aec6b9f8 649 } else {
a7260c40 650 partialptr = NULL;
55e50d89 651 do_unlink(fnametmp);
a7260c40
WD
652 }
653
2f03f956 654 cleanup_disable();
554e0a8d 655
22907b6b 656 if (recv_ok > 0) {
47c11975 657 if (remove_source_files
22907b6b 658 || (preserve_hard_links && file->link_u.links)) {
3e870a64
WD
659 SIVAL(numbuf, 0, i);
660 send_msg(MSG_SUCCESS, numbuf, 4);
661 }
22907b6b 662 } else if (!recv_ok) {
53593085 663 enum logcode msgtype = phase || read_batch ? FERROR : FINFO;
007e3c0e 664 if (msgtype == FERROR || verbose) {
a7260c40
WD
665 char *errstr, *redostr, *keptstr;
666 if (!(keep_partial && partialptr) && !inplace)
667 keptstr = "discarded";
668 else if (partial_dir)
669 keptstr = "put into partial-dir";
670 else
671 keptstr = "retained";
007e3c0e
WD
672 if (msgtype == FERROR) {
673 errstr = "ERROR";
674 redostr = "";
675 } else {
676 errstr = "WARNING";
677 redostr = " (will try again)";
678 }
679 rprintf(msgtype,
a7260c40 680 "%s: %s failed verification -- update %s%s.\n",
45c49b52 681 errstr, fname, keptstr, redostr);
007e3c0e 682 }
ed7e7955 683 if (!phase) {
3e870a64
WD
684 SIVAL(numbuf, 0, i);
685 send_msg(MSG_REDO, numbuf, 4);
2f03f956
AT
686 }
687 }
688 }
4e834af1 689 make_backups = save_make_backups;
2f03f956 690
ac3f7b81
WD
691 if (phase == 2 && delay_updates) /* for protocol_version < 29 */
692 handle_delayed_updates(flist, local_name);
48e1c8c6 693
2f03f956
AT
694 if (verbose > 2)
695 rprintf(FINFO,"recv_files finished\n");
17fadf7d 696
2f03f956
AT
697 return 0;
698}