receiver.c 21.3 KB
Newer Older
1 2 3 4 5
/*
 * Routines only used by the receiving process.
 *
 * Copyright (C) 1996-2000 Andrew Tridgell
 * Copyright (C) 1996 Paul Mackerras
Wayne Davison's avatar
Wayne Davison committed
6
 * Copyright (C) 2003-2009 Wayne Davison
7 8
 *
 * This program is free software; you can redistribute it and/or modify
9 10 11
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
12 13 14 15 16 17
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
18
 * You should have received a copy of the GNU General Public License along
Wayne Davison's avatar
Wayne Davison committed
19
 * with this program; if not, visit the http://fsf.org website.
20
 */
21 22 23 24

#include "rsync.h"

extern int verbose;
25
extern int dry_run;
26
extern int do_xfers;
Wayne Davison's avatar
Wayne Davison committed
27 28
extern int am_server;
extern int do_progress;
29
extern int inc_recurse;
30
extern int log_before_transfer;
31
extern int stdout_format_has_i;
32
extern int logfile_format_has_i;
33
extern int csum_length;
34
extern int read_batch;
35
extern int write_batch;
36
extern int batch_gen_fd;
37
extern int protocol_version;
38
extern int relative_paths;
Wayne Davison's avatar
Wayne Davison committed
39
extern int preserve_hard_links;
40
extern int preserve_perms;
41
extern int preserve_xattrs;
42
extern int basis_dir_cnt;
43
extern int make_backups;
44
extern int cleanup_got_literal;
Wayne Davison's avatar
Wayne Davison committed
45
extern int remove_source_files;
Wayne Davison's avatar
Wayne Davison committed
46
extern int append_mode;
47
extern int sparse_files;
48
extern int keep_partial;
49
extern int checksum_seed;
50
extern int inplace;
51
extern int delay_updates;
52
extern mode_t orig_umask;
Wayne Davison's avatar
Wayne Davison committed
53 54 55
extern struct stats stats;
extern char *tmpdir;
extern char *partial_dir;
56
extern char *basis_dir[MAX_BASIS_DIRS+1];
57
extern struct file_list *cur_flist, *first_flist, *dir_flist;
58
extern struct filter_list_struct daemon_filter_list;
59

60
static struct bitbag *delayed_bits = NULL;
61
static int phase = 0, redoing = 0;
62
static flist_ndx_list batch_redo_list;
63
/* We're either updating the basis file or an identical copy: */
64
static int updating_basis_or_equiv;
65

66 67 68 69 70 71 72
/*
 * get_tmpname() - create a tmp filename for a given filename
 *
 *   If a tmpdir is defined, use that as the directory to
 *   put it in.  Otherwise, the tmp filename is in the same
 *   directory as the given name.  Note that there may be no
 *   directory at all in the given name!
73
 *
74 75 76 77 78 79 80
 *   The tmp filename is basically the given filename with a
 *   dot prepended, and .XXXXXX appended (for mkstemp() to
 *   put its unique gunk in).  Take care to not exceed
 *   either the MAXPATHLEN or NAME_MAX, esp. the last, as
 *   the basename basically becomes 8 chars longer. In that
 *   case, the original name is shortened sufficiently to
 *   make it all fit.
81
 *
82 83 84 85 86
 *   Of course, there's no real reason for the tmp name to
 *   look like the original, except to satisfy us humans.
 *   As long as it's unique, rsync will work.
 */

87
int get_tmpname(char *fnametmp, const char *fname)
88
{
89
	int maxname, added, length = 0;
90
	const char *f;
91 92

	if (tmpdir) {
93
		/* Note: this can't overflow, so the return value is safe */
94
		length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
95
		fnametmp[length++] = '/';
96
	}
97

98
	if ((f = strrchr(fname, '/')) != NULL) {
99 100 101
		++f;
		if (!tmpdir) {
			length = f - fname;
102
			/* copy up to and including the slash */
103
			strlcpy(fnametmp, fname, length + 1);
104
		}
105
	} else
106 107
		f = fname;
	fnametmp[length++] = '.';
108

109 110
	/* The maxname value is bufsize, and includes space for the '\0'.
	 * (Note that NAME_MAX get -8 for the leading '.' above.) */
111
	maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
112

113
	if (maxname < 1) {
114
		rprintf(FERROR_XFER, "temporary filename too long: %s\n", fname);
115
		fnametmp[0] = '\0';
116 117 118
		return 0;
	}

119 120 121 122
	added = strlcpy(fnametmp + length, f, maxname);
	if (added >= maxname)
		added = maxname - 1;
	memcpy(fnametmp + length + added, ".XXXXXX", 8);
123 124 125 126

	return 1;
}

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
/* Opens a temporary file for writing.
 * Success: Writes name into fnametmp, returns fd.
 * Failure: Clobbers fnametmp, returns -1.
 * Calling cleanup_set() is the caller's job. */
int open_tmpfile(char *fnametmp, const char *fname, struct file_struct *file)
{
	int fd;

	if (!get_tmpname(fnametmp, fname))
		return -1;

	/* We initially set the perms without the setuid/setgid bits or group
	 * access to ensure that there is no race condition.  They will be
	 * correctly updated after the right owner and group info is set.
	 * (Thanks to snabb@epipe.fi for pointing this out.) */
	fd = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);

#if 0
	/* In most cases parent directories will already exist because their
	 * information should have been previously transferred, but that may
	 * not be the case with -R */
	if (fd == -1 && relative_paths && errno == ENOENT
	    && create_directory_path(fnametmp) == 0) {
		/* Get back to name with XXXXXX in it. */
		get_tmpname(fnametmp, fname);
		fd = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
	}
#endif

	if (fd == -1) {
157
		rsyserr(FERROR_XFER, errno, "mkstemp %s failed",
158 159 160 161 162 163
			full_fname(fnametmp));
		return -1;
	}

	return fd;
}
164

165
static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
Wayne Davison's avatar
Wayne Davison committed
166
			const char *fname, int fd, OFF_T total_size)
167
{
168 169
	static char file_sum1[MAX_DIGEST_LEN];
	static char file_sum2[MAX_DIGEST_LEN];
170
	struct map_struct *mapbuf;
171
	struct sum_struct sum;
172
	int32 len, sum_len;
173
	OFF_T offset = 0;
Wayne Davison's avatar
Wayne Davison committed
174
	OFF_T offset2;
175
	char *data;
176
	int32 i;
Wayne Davison's avatar
Wayne Davison committed
177
	char *map = NULL;
178

179
	read_sum_head(f_in, &sum);
180

181
	if (fd_r >= 0 && size_r > 0) {
182 183
		int32 read_size = MAX(sum.blength * 2, 16*1024);
		mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
184 185
		if (verbose > 2) {
			rprintf(FINFO, "recv mapped %s of size %.0f\n",
186
				fname_r, (double)size_r);
187 188 189 190
		}
	} else
		mapbuf = NULL;

191
	sum_init(checksum_seed);
192

193
	if (append_mode > 0) {
Wayne Davison's avatar
Wayne Davison committed
194 195 196 197
		OFF_T j;
		sum.flength = (OFF_T)sum.count * sum.blength;
		if (sum.remainder)
			sum.flength -= sum.blength - sum.remainder;
198 199 200 201 202 203 204 205 206 207 208 209 210 211
		if (append_mode == 2) {
			for (j = CHUNK_SIZE; j < sum.flength; j += CHUNK_SIZE) {
				if (do_progress)
					show_progress(offset, total_size);
				sum_update(map_ptr(mapbuf, offset, CHUNK_SIZE),
					   CHUNK_SIZE);
				offset = j;
			}
			if (offset < sum.flength) {
				int32 len = (int32)(sum.flength - offset);
				if (do_progress)
					show_progress(offset, total_size);
				sum_update(map_ptr(mapbuf, offset, len), len);
			}
Wayne Davison's avatar
Wayne Davison committed
212
		}
213
		offset = sum.flength;
214
		if (fd != -1 && (j = do_lseek(fd, offset, SEEK_SET)) != offset) {
215
			rsyserr(FERROR_XFER, errno, "lseek of %s returned %.0f, not %.0f",
216
				full_fname(fname), (double)j, (double)offset);
Wayne Davison's avatar
Wayne Davison committed
217 218 219 220
			exit_cleanup(RERR_FILEIO);
		}
	}

221
	while ((i = recv_token(f_in, &data)) != 0) {
222 223
		if (do_progress)
			show_progress(offset, total_size);
224 225 226

		if (i > 0) {
			if (verbose > 3) {
227 228
				rprintf(FINFO,"data recv %d at %.0f\n",
					i,(double)offset);
229 230 231 232
			}

			stats.literal_data += i;
			cleanup_got_literal = 1;
233

234
			sum_update(data, i);
235

236 237
			if (fd != -1 && write_file(fd,data,i) != i)
				goto report_write_error;
238 239
			offset += i;
			continue;
240
		}
241 242

		i = -(i+1);
243
		offset2 = i * (OFF_T)sum.blength;
244
		len = sum.blength;
Wayne Davison's avatar
Wayne Davison committed
245
		if (i == (int)sum.count-1 && sum.remainder != 0)
246
			len = sum.remainder;
247

248
		stats.matched_data += len;
249

250 251 252 253 254
		if (verbose > 3) {
			rprintf(FINFO,
				"chunk[%d] of size %ld at %.0f offset=%.0f\n",
				i, (long)len, (double)offset2, (double)offset);
		}
255

256 257
		if (mapbuf) {
			map = map_ptr(mapbuf,offset2,len);
258

259
			see_token(map, len);
260
			sum_update(map, len);
261
		}
262

263
		if (updating_basis_or_equiv) {
Wayne Davison's avatar
Wayne Davison committed
264
			if (offset == offset2 && fd != -1) {
265
				OFF_T pos;
266 267
				if (flush_write_file(fd) < 0)
					goto report_write_error;
Wayne Davison's avatar
Wayne Davison committed
268
				offset += len;
269
				if ((pos = do_lseek(fd, len, SEEK_CUR)) != offset) {
270
					rsyserr(FERROR_XFER, errno,
271 272 273
						"lseek of %s returned %.0f, not %.0f",
						full_fname(fname),
						(double)pos, (double)offset);
274 275
					exit_cleanup(RERR_FILEIO);
				}
Wayne Davison's avatar
Wayne Davison committed
276
				continue;
277
			}
278
		}
279
		if (fd != -1 && map && write_file(fd, map, len) != (int)len)
280
			goto report_write_error;
281 282 283
		offset += len;
	}

284 285
	if (flush_write_file(fd) < 0)
		goto report_write_error;
286

287
#ifdef HAVE_FTRUNCATE
288 289 290 291
	if (inplace && fd != -1
	 && ftruncate(fd, offset) < 0) {
		rsyserr(FERROR_XFER, errno, "ftruncate failed on %s",
			full_fname(fname));
292
	}
293 294
#endif

295 296
	if (do_progress)
		end_progress(total_size);
297 298

	if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
299
	    report_write_error:
300
		rsyserr(FERROR_XFER, errno, "write failed on %s",
301
			full_fname(fname));
302
		exit_cleanup(RERR_FILEIO);
303 304
	}

305
	sum_len = sum_end(file_sum1);
306

307 308 309
	if (mapbuf)
		unmap_file(mapbuf);

310
	read_buf(f_in, file_sum2, sum_len);
Wayne Davison's avatar
Wayne Davison committed
311
	if (verbose > 2)
312
		rprintf(FINFO,"got file_sum\n");
313
	if (fd != -1 && memcmp(file_sum1, file_sum2, sum_len) != 0)
314
		return 0;
315 316 317 318
	return 1;
}


319 320
static void discard_receive_data(int f_in, OFF_T length)
{
321
	receive_data(f_in, NULL, -1, 0, NULL, -1, length);
322 323
}

324
static void handle_delayed_updates(char *local_name)
325
{
326
	char *fname, *partialptr;
327
	int ndx;
328

329
	for (ndx = -1; (ndx = bitbag_next_bit(delayed_bits, ndx)) >= 0; ) {
330
		struct file_struct *file = cur_flist->files[ndx];
331
		fname = local_name ? local_name : f_name(file, NULL);
332
		if ((partialptr = partial_dir_fname(fname)) != NULL) {
333
			if (make_backups > 0 && !make_backup(fname))
334 335 336
				continue;
			if (verbose > 2) {
				rprintf(FINFO, "renaming %s to %s\n",
337
					partialptr, fname);
338
			}
Wayne Davison's avatar
Wayne Davison committed
339 340
			/* We don't use robust_rename() here because the
			 * partial-dir must be on the same drive. */
341
			if (do_rename(partialptr, fname) < 0) {
342
				rsyserr(FERROR_XFER, errno,
343
					"rename failed for %s (from %s)",
344
					full_fname(fname), partialptr);
345
			} else {
346
				if (remove_source_files
347
				 || (preserve_hard_links && F_IS_HLINKED(file)))
348
					send_msg_int(MSG_SUCCESS, ndx);
349
				handle_partial_dir(partialptr, PDIR_DELETE);
350 351 352 353 354
			}
		}
	}
}

355
static void no_batched_update(int ndx, BOOL is_redo)
356
{
357 358 359 360 361 362
	struct file_list *flist = flist_for_ndx(ndx, "no_batched_update");
	struct file_struct *file = flist->files[ndx - flist->ndx_start];

	rprintf(FERROR_XFER, "(No batched update for%s \"%s\")\n",
		is_redo ? " resend of" : "", f_name(file, NULL));

363
	if (inc_recurse && !dry_run)
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
		send_msg_int(MSG_NO_SEND, ndx);
}

static int we_want_redo(int desired_ndx)
{
	static int redo_ndx = -1;

	while (redo_ndx < desired_ndx) {
		if (redo_ndx >= 0)
			no_batched_update(redo_ndx, True);
		if ((redo_ndx = flist_ndx_pop(&batch_redo_list)) < 0)
			return 0;
	}

	if (redo_ndx == desired_ndx) {
		redo_ndx = -1;
		return 1;
	}

	return 0;
}

static int gen_wants_ndx(int desired_ndx)
{
	static int next_ndx = -1;
389 390 391
	static int done_cnt = 0;
	static BOOL got_eof = False;
	int flist_num = first_flist->flist_num;
392 393 394 395 396

	if (got_eof)
		return 0;

	while (next_ndx < desired_ndx) {
397 398
		if (inc_recurse && flist_num <= done_cnt)
			return 0;
399 400 401
		if (next_ndx >= 0)
			no_batched_update(next_ndx, False);
		if ((next_ndx = read_int(batch_gen_fd)) < 0) {
402 403 404 405
			if (inc_recurse) {
				done_cnt++;
				continue;
			}
406 407
			got_eof = True;
			return 0;
408 409
		}
	}
410 411 412 413 414 415 416

	if (next_ndx == desired_ndx) {
		next_ndx = -1;
		return 1;
	}

	return 0;
417 418
}

419 420 421 422
/**
 * main routine for receiver process.
 *
 * Receiver process runs on the same host as the generator process. */
423
int recv_files(int f_in, char *local_name)
424
{
425 426
	int fd1,fd2;
	STRUCT_STAT st;
427
	int iflags, xlen;
428
	char *fname, fbuf[MAXPATHLEN];
429
	char xname[MAXPATHLEN];
430
	char fnametmp[MAXPATHLEN];
431
	char *fnamecmp, *partialptr;
432
	char fnamecmpbuf[MAXPATHLEN];
433
	uchar fnamecmp_type;
434
	struct file_struct *file;
435
	struct stats initial_stats;
436 437
	int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
	enum logcode log_code = log_before_transfer ? FLOG : FINFO;
438
	int max_phase = protocol_version >= 29 ? 2 : 1;
439 440 441 442
	int dflt_perms = (ACCESSPERMS & ~orig_umask);
#ifdef SUPPORT_ACLS
	const char *parent_dirname = "";
#endif
443
	int ndx, recv_ok;
444

Wayne Davison's avatar
Wayne Davison committed
445
	if (verbose > 2)
446
		rprintf(FINFO, "recv_files(%d) starting\n", cur_flist->used);
447

448
	if (delay_updates)
449
		delayed_bits = bitbag_create(cur_flist->used + 1);
450

451
	while (1) {
452 453
		cleanup_disable();

454
		/* This call also sets cur_flist. */
455 456
		ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
					 xname, &xlen);
457
		if (ndx == NDX_DONE) {
458
			if (inc_recurse && first_flist) {
459 460
				if (read_batch)
					gen_wants_ndx(first_flist->used + first_flist->ndx_start);
461 462 463
				flist_free(first_flist);
				if (first_flist)
					continue;
464 465
			} else if (read_batch && first_flist)
				gen_wants_ndx(first_flist->used);
466
			if (++phase > max_phase)
467 468 469
				break;
			if (verbose > 2)
				rprintf(FINFO, "recv_files phase=%d\n", phase);
470
			if (phase == 2 && delay_updates)
471
				handle_delayed_updates(local_name);
472
			send_msg(MSG_DONE, "", 0, 0);
473
			continue;
474 475
		}

476 477 478 479
		if (ndx - cur_flist->ndx_start >= 0)
			file = cur_flist->files[ndx - cur_flist->ndx_start];
		else
			file = dir_flist->files[cur_flist->parent_ndx];
480
		fname = local_name ? local_name : f_name(file, fbuf);
481 482

		if (verbose > 2)
483
			rprintf(FINFO, "recv_files(%s)\n", fname);
484

485
#ifdef SUPPORT_XATTRS
486
		if (iflags & ITEM_REPORT_XATTR && do_xfers)
487 488 489
			recv_xattr_request(file, f_in);
#endif

490
		if (!(iflags & ITEM_TRANSFER)) {
491
			maybe_log_item(file, iflags, itemizing, xname);
492
#ifdef SUPPORT_XATTRS
493
			if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && do_xfers)
494 495
				set_file_attrs(fname, file, NULL, fname, 0);
#endif
496 497
			continue;
		}
498 499 500 501 502 503
		if (phase == 2) {
			rprintf(FERROR,
				"got transfer request in phase 2 [%s]\n",
				who_am_i());
			exit_cleanup(RERR_PROTOCOL);
		}
504

505 506 507 508
		if (file->flags & FLAG_FILE_SENT) {
			if (csum_length == SHORT_SUM_LENGTH) {
				if (keep_partial && !partial_dir)
					make_backups = -make_backups; /* prevents double backup */
509 510
				if (append_mode)
					sparse_files = -sparse_files;
511 512
				append_mode = -append_mode;
				csum_length = SUM_LENGTH;
513
				redoing = 1;
514 515 516 517 518
			}
		} else {
			if (csum_length != SHORT_SUM_LENGTH) {
				if (keep_partial && !partial_dir)
					make_backups = -make_backups;
519 520
				if (append_mode)
					sparse_files = -sparse_files;
521 522
				append_mode = -append_mode;
				csum_length = SHORT_SUM_LENGTH;
523
				redoing = 0;
524 525 526
			}
		}

527 528
		if (!am_server && do_progress)
			set_current_file_index(file, ndx);
529
		stats.num_transferred_files++;
530
		stats.total_transferred_size += F_LENGTH(file);
531

532
		cleanup_got_literal = 0;
533

534
		if (daemon_filter_list.head
535
		    && check_filter(&daemon_filter_list, FLOG, fname, 0) < 0) {
536 537 538 539
			rprintf(FERROR, "attempt to hack rsync failed.\n");
			exit_cleanup(RERR_PROTOCOL);
		}

540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
		if (read_batch) {
			int wanted = redoing
				   ? we_want_redo(ndx)
				   : gen_wants_ndx(ndx);
			if (!wanted) {
				rprintf(FINFO,
					"(Skipping batched update for%s \"%s\")\n",
					redoing ? " resend of" : "",
					fname);
				discard_receive_data(f_in, F_LENGTH(file));
				file->flags |= FLAG_FILE_SENT;
				continue;
			}
		}

555
		if (!do_xfers) { /* log the transfer */
556
			log_item(FCLIENT, file, &stats, iflags, NULL);
557
			if (read_batch)
558
				discard_receive_data(f_in, F_LENGTH(file));
559 560
			continue;
		}
561
		if (write_batch < 0) {
562
			log_item(FCLIENT, file, &stats, iflags, NULL);
563
			if (!am_server)
564
				discard_receive_data(f_in, F_LENGTH(file));
565 566
			continue;
		}
567

568 569
		partialptr = partial_dir ? partial_dir_fname(fname) : fname;

570 571
		if (protocol_version >= 29) {
			switch (fnamecmp_type) {
572
			case FNAMECMP_FNAME:
573
				fnamecmp = fname;
574 575
				break;
			case FNAMECMP_PARTIAL_DIR:
576
				fnamecmp = partialptr;
577 578 579 580
				break;
			case FNAMECMP_BACKUP:
				fnamecmp = get_backup_name(fname);
				break;
581
			case FNAMECMP_FUZZY:
582 583 584 585 586 587
				if (file->dirname) {
					pathjoin(fnamecmpbuf, MAXPATHLEN,
						 file->dirname, xname);
					fnamecmp = fnamecmpbuf;
				} else
					fnamecmp = xname;
588
				break;
589
			default:
590
				if (fnamecmp_type >= basis_dir_cnt) {
591 592
					rprintf(FERROR,
						"invalid basis_dir index: %d.\n",
593
						fnamecmp_type);
594 595
					exit_cleanup(RERR_PROTOCOL);
				}
596
				pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
597
					 basis_dir[fnamecmp_type], fname);
598 599 600
				fnamecmp = fnamecmpbuf;
				break;
			}
601
			if (!fnamecmp || (daemon_filter_list.head
602
			  && check_filter(&daemon_filter_list, FLOG, fname, 0) < 0)) {
603
				fnamecmp = fname;
604 605
				fnamecmp_type = FNAMECMP_FNAME;
			}
606 607 608
		} else {
			/* Reminder: --inplace && --partial-dir are never
			 * enabled at the same time. */
609
			if (inplace && make_backups > 0) {
610 611
				if (!(fnamecmp = get_backup_name(fname)))
					fnamecmp = fname;
612 613
				else
					fnamecmp_type = FNAMECMP_BACKUP;
614 615 616 617 618
			} else if (partial_dir && partialptr)
				fnamecmp = partialptr;
			else
				fnamecmp = fname;
		}
619

620 621
		initial_stats = stats;

622
		/* open the file */
623
		fd1 = do_open(fnamecmp, O_RDONLY, 0);
624

625 626 627 628 629 630 631 632 633 634 635 636 637 638
		if (fd1 == -1 && protocol_version < 29) {
			if (fnamecmp != fname) {
				fnamecmp = fname;
				fd1 = do_open(fnamecmp, O_RDONLY, 0);
			}

			if (fd1 == -1 && basis_dir[0]) {
				/* pre-29 allowed only one alternate basis */
				pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
					 basis_dir[0], fname);
				fnamecmp = fnamecmpbuf;
				fd1 = do_open(fnamecmp, O_RDONLY, 0);
			}
		}
639 640 641

		updating_basis_or_equiv = inplace
		    && (fnamecmp == fname || fnamecmp_type == FNAMECMP_BACKUP);
642

643 644 645 646
		if (fd1 == -1) {
			st.st_mode = 0;
			st.st_size = 0;
		} else if (do_fstat(fd1,&st) != 0) {
647
			rsyserr(FERROR_XFER, errno, "fstat %s failed",
648
				full_fname(fnamecmp));
649
			discard_receive_data(f_in, F_LENGTH(file));
650
			close(fd1);
651 652
			if (inc_recurse)
				send_msg_int(MSG_NO_SEND, ndx);
653 654 655
			continue;
		}

656 657 658 659 660 661
		if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
			/* this special handling for directories
			 * wouldn't be necessary if robust_rename()
			 * and the underlying robust_unlink could cope
			 * with directories
			 */
662
			rprintf(FERROR_XFER, "recv_files: %s is a directory\n",
663
				full_fname(fnamecmp));
664
			discard_receive_data(f_in, F_LENGTH(file));
665
			close(fd1);
666 667
			if (inc_recurse)
				send_msg_int(MSG_NO_SEND, ndx);
668 669 670
			continue;
		}

671 672 673 674 675
		if (fd1 != -1 && !S_ISREG(st.st_mode)) {
			close(fd1);
			fd1 = -1;
		}

676 677 678 679
		/* If we're not preserving permissions, change the file-list's
		 * mode based on the local permissions and some heuristics. */
		if (!preserve_perms) {
			int exists = fd1 != -1;
680 681 682 683 684 685 686 687 688 689
#ifdef SUPPORT_ACLS
			const char *dn = file->dirname ? file->dirname : ".";
			if (parent_dirname != dn
			 && strcmp(parent_dirname, dn) != 0) {
				dflt_perms = default_perms_for_dir(dn);
				parent_dirname = dn;
			}
#endif
			file->mode = dest_mode(file->mode, st.st_mode,
					       dflt_perms, exists);
690 691
		}

692
		/* We now check to see if we are writing the file "inplace" */
693
		if (inplace)  {
694
			fd2 = do_open(fname, O_WRONLY|O_CREAT, 0600);
695
			if (fd2 == -1) {
696
				rsyserr(FERROR_XFER, errno, "open %s failed",
697
					full_fname(fname));
698 699
			}
		} else {
700 701 702 703
			fd2 = open_tmpfile(fnametmp, fname, file);
			if (fd2 != -1)
				cleanup_set(fnametmp, partialptr, file, fd1, fd2);
		}
704

705 706 707 708 709 710 711
		if (fd2 == -1) {
			discard_receive_data(f_in, F_LENGTH(file));
			if (fd1 != -1)
				close(fd1);
			if (inc_recurse)
				send_msg_int(MSG_NO_SEND, ndx);
			continue;
712
		}
713

714
		/* log the transfer */
715
		if (log_before_transfer)
716
			log_item(FCLIENT, file, &initial_stats, iflags, NULL);
717
		else if (!am_server && verbose && do_progress)
718
			rprintf(FINFO, "%s\n", fname);
719

720
		/* recv file data */
721
		recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
722
				       fname, fd2, F_LENGTH(file));
723

724
		log_item(log_code, file, &initial_stats, iflags, NULL);
725

Wayne Davison's avatar
Wayne Davison committed
726
		if (fd1 != -1)
727
			close(fd1);
728
		if (close(fd2) < 0) {
729 730
			rsyserr(FERROR, errno, "close failed on %s",
				full_fname(fnametmp));
731 732
			exit_cleanup(RERR_FILEIO);
		}
733

734
		if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
735
			if (partialptr == fname)
736 737 738 739 740
				partialptr = NULL;
			if (!finish_transfer(fname, fnametmp, fnamecmp,
					     partialptr, file, recv_ok, 1))
				recv_ok = -1;
			else if (fnamecmp == partialptr) {
741 742 743
				do_unlink(partialptr);
				handle_partial_dir(partialptr, PDIR_DELETE);
			}
744 745 746 747 748 749 750 751 752 753
		} else if (keep_partial && partialptr) {
			if (!handle_partial_dir(partialptr, PDIR_CREATE)) {
				rprintf(FERROR,
				    "Unable to create partial-dir for %s -- discarding %s.\n",
				    local_name ? local_name : f_name(file, NULL),
				    recv_ok ? "completed file" : "partial file");
				do_unlink(fnametmp);
				recv_ok = -1;
			} else if (!finish_transfer(partialptr, fnametmp, fnamecmp, NULL,
						    file, recv_ok, !partial_dir))
754
				recv_ok = -1;
755 756 757
			else if (delay_updates && recv_ok) {
				bitbag_set_bit(delayed_bits, ndx);
				recv_ok = 2;
758 759 760
			} else
				partialptr = NULL;
		} else
761
			do_unlink(fnametmp);
762

763
		cleanup_disable();
764

765 766 767
		if (read_batch)
			file->flags |= FLAG_FILE_SENT;

768
		switch (recv_ok) {
769 770
		case 2:
			break;
771
		case 1:
772
			if (remove_source_files || inc_recurse
773
			 || (preserve_hard_links && F_IS_HLINKED(file)))
774
				send_msg_int(MSG_SUCCESS, ndx);
775 776
			break;
		case 0: {
777 778
			enum logcode msgtype = redoing ? FERROR_XFER : FWARNING;
			if (msgtype == FERROR_XFER || verbose) {
779 780 781 782 783 784 785
				char *errstr, *redostr, *keptstr;
				if (!(keep_partial && partialptr) && !inplace)
					keptstr = "discarded";
				else if (partial_dir)
					keptstr = "put into partial-dir";
				else
					keptstr = "retained";
786
				if (msgtype == FERROR_XFER) {
787 788 789 790
					errstr = "ERROR";
					redostr = "";
				} else {
					errstr = "WARNING";
791 792
					redostr = read_batch ? " (may try again)"
							     : " (will try again)";
793 794
				}
				rprintf(msgtype,
795
					"%s: %s failed verification -- update %s%s.\n",
796 797
					errstr, local_name ? f_name(file, NULL) : fname,
					keptstr, redostr);
798
			}
799
			if (!redoing) {
800 801
				if (read_batch)
					flist_ndx_push(&batch_redo_list, ndx);
802
				send_msg_int(MSG_REDO, ndx);
803
				file->flags |= FLAG_FILE_SENT;
804
			} else if (inc_recurse)
805
				send_msg_int(MSG_NO_SEND, ndx);
806 807 808 809 810 811
			break;
		    }
		case -1:
			if (inc_recurse)
				send_msg_int(MSG_NO_SEND, ndx);
			break;
812 813
		}
	}
814 815
	if (make_backups < 0)
		make_backups = -make_backups;
816

817
	if (phase == 2 && delay_updates) /* for protocol_version < 29 */
818
		handle_delayed_updates(local_name);
819

820 821
	if (verbose > 2)
		rprintf(FINFO,"recv_files finished\n");
822

823 824
	return 0;
}