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