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