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