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