Avoid type-punned compiler warnings for the byteorder.h macros
[rsync/rsync.git] / receiver.c
... / ...
CommitLineData
1/*
2 * Routines only used by the receiving process.
3 *
4 * Copyright (C) 1996-2000 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2009 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
20 */
21
22#include "rsync.h"
23#include "inums.h"
24
25extern int dry_run;
26extern int do_xfers;
27extern int am_server;
28extern int inc_recurse;
29extern int log_before_transfer;
30extern int stdout_format_has_i;
31extern int logfile_format_has_i;
32extern int csum_length;
33extern int read_batch;
34extern int write_batch;
35extern int batch_gen_fd;
36extern int protocol_version;
37extern int relative_paths;
38extern int preserve_hard_links;
39extern int preserve_perms;
40extern int preserve_xattrs;
41extern int basis_dir_cnt;
42extern int make_backups;
43extern int cleanup_got_literal;
44extern int remove_source_files;
45extern int append_mode;
46extern int sparse_files;
47extern int keep_partial;
48extern int checksum_len;
49extern int checksum_seed;
50extern int inplace;
51extern int delay_updates;
52extern mode_t orig_umask;
53extern struct stats stats;
54extern char *tmpdir;
55extern char *partial_dir;
56extern char *basis_dir[MAX_BASIS_DIRS+1];
57extern char sender_file_sum[MAX_DIGEST_LEN];
58extern struct file_list *cur_flist, *first_flist, *dir_flist;
59extern filter_rule_list daemon_filter_list;
60
61static struct bitbag *delayed_bits = NULL;
62static int phase = 0, redoing = 0;
63static flist_ndx_list batch_redo_list;
64/* We're either updating the basis file or an identical copy: */
65static int updating_basis_or_equiv;
66
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
73 *
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!
77 *
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.
83 *
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)
93{
94 int maxname, added, length = 0;
95 const char *f;
96 char *suf;
97
98 if (tmpdir) {
99 /* Note: this can't overflow, so the return value is safe */
100 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
101 fnametmp[length++] = '/';
102 }
103
104 if ((f = strrchr(fname, '/')) != NULL) {
105 ++f;
106 if (!tmpdir) {
107 length = f - fname;
108 /* copy up to and including the slash */
109 strlcpy(fnametmp, fname, length + 1);
110 }
111 } else
112 f = fname;
113 fnametmp[length++] = '.';
114
115 /* The maxname value is bufsize, and includes space for the '\0'.
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);
119
120 if (maxname < 1) {
121 rprintf(FERROR_XFER, "temporary filename too long: %s\n", fname);
122 fnametmp[0] = '\0';
123 return 0;
124 }
125
126 added = strlcpy(fnametmp + length, f, maxname);
127 if (added >= maxname)
128 added = maxname - 1;
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);
156
157 return 1;
158}
159
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
168 if (!get_tmpname(fnametmp, fname, False))
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
182 && make_path(fnametmp, MKP_SKIP_SLASH | MKP_DROP_NAME) == 0) {
183 /* Get back to name with XXXXXX in it. */
184 get_tmpname(fnametmp, fname, False);
185 fd = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
186 }
187#endif
188
189 if (fd == -1) {
190 rsyserr(FERROR_XFER, errno, "mkstemp %s failed",
191 full_fname(fnametmp));
192 return -1;
193 }
194
195 return fd;
196}
197
198static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
199 const char *fname, int fd, OFF_T total_size)
200{
201 static char file_sum1[MAX_DIGEST_LEN];
202 struct map_struct *mapbuf;
203 struct sum_struct sum;
204 int32 len;
205 OFF_T offset = 0;
206 OFF_T offset2;
207 char *data;
208 int32 i;
209 char *map = NULL;
210
211 read_sum_head(f_in, &sum);
212
213 if (fd_r >= 0 && size_r > 0) {
214 int32 read_size = MAX(sum.blength * 2, 16*1024);
215 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
216 if (DEBUG_GTE(DELTASUM, 2)) {
217 rprintf(FINFO, "recv mapped %s of size %s\n",
218 fname_r, big_num(size_r));
219 }
220 } else
221 mapbuf = NULL;
222
223 sum_init(checksum_seed);
224
225 if (append_mode > 0) {
226 OFF_T j;
227 sum.flength = (OFF_T)sum.count * sum.blength;
228 if (sum.remainder)
229 sum.flength -= sum.blength - sum.remainder;
230 if (append_mode == 2) {
231 for (j = CHUNK_SIZE; j < sum.flength; j += CHUNK_SIZE) {
232 if (INFO_GTE(PROGRESS, 1))
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);
240 if (INFO_GTE(PROGRESS, 1))
241 show_progress(offset, total_size);
242 sum_update(map_ptr(mapbuf, offset, len), len);
243 }
244 }
245 offset = sum.flength;
246 if (fd != -1 && (j = do_lseek(fd, offset, SEEK_SET)) != offset) {
247 rsyserr(FERROR_XFER, errno, "lseek of %s returned %s, not %s",
248 full_fname(fname), big_num(j), big_num(offset));
249 exit_cleanup(RERR_FILEIO);
250 }
251 }
252
253 while ((i = recv_token(f_in, &data)) != 0) {
254 if (INFO_GTE(PROGRESS, 1))
255 show_progress(offset, total_size);
256
257 if (i > 0) {
258 if (DEBUG_GTE(DELTASUM, 3)) {
259 rprintf(FINFO,"data recv %d at %s\n",
260 i, big_num(offset));
261 }
262
263 stats.literal_data += i;
264 cleanup_got_literal = 1;
265
266 sum_update(data, i);
267
268 if (fd != -1 && write_file(fd,data,i) != i)
269 goto report_write_error;
270 offset += i;
271 continue;
272 }
273
274 i = -(i+1);
275 offset2 = i * (OFF_T)sum.blength;
276 len = sum.blength;
277 if (i == (int)sum.count-1 && sum.remainder != 0)
278 len = sum.remainder;
279
280 stats.matched_data += len;
281
282 if (DEBUG_GTE(DELTASUM, 3)) {
283 rprintf(FINFO,
284 "chunk[%d] of size %ld at %s offset=%s\n",
285 i, (long)len, big_num(offset2), big_num(offset));
286 }
287
288 if (mapbuf) {
289 map = map_ptr(mapbuf,offset2,len);
290
291 see_token(map, len);
292 sum_update(map, len);
293 }
294
295 if (updating_basis_or_equiv) {
296 if (offset == offset2 && fd != -1) {
297 OFF_T pos;
298 if (flush_write_file(fd) < 0)
299 goto report_write_error;
300 offset += len;
301 if ((pos = do_lseek(fd, len, SEEK_CUR)) != offset) {
302 rsyserr(FERROR_XFER, errno,
303 "lseek of %s returned %s, not %s",
304 full_fname(fname),
305 big_num(pos), big_num(offset));
306 exit_cleanup(RERR_FILEIO);
307 }
308 continue;
309 }
310 }
311 if (fd != -1 && map && write_file(fd, map, len) != (int)len)
312 goto report_write_error;
313 offset += len;
314 }
315
316 if (flush_write_file(fd) < 0)
317 goto report_write_error;
318
319#ifdef HAVE_FTRUNCATE
320 if (inplace && fd != -1
321 && ftruncate(fd, offset) < 0) {
322 rsyserr(FERROR_XFER, errno, "ftruncate failed on %s",
323 full_fname(fname));
324 }
325#endif
326
327 if (INFO_GTE(PROGRESS, 1))
328 end_progress(total_size);
329
330 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
331 report_write_error:
332 rsyserr(FERROR_XFER, errno, "write failed on %s",
333 full_fname(fname));
334 exit_cleanup(RERR_FILEIO);
335 }
336
337 if (sum_end(file_sum1) != checksum_len)
338 overflow_exit("checksum_len"); /* Impossible... */
339
340 if (mapbuf)
341 unmap_file(mapbuf);
342
343 read_buf(f_in, sender_file_sum, checksum_len);
344 if (DEBUG_GTE(DELTASUM, 2))
345 rprintf(FINFO,"got file_sum\n");
346 if (fd != -1 && memcmp(file_sum1, sender_file_sum, checksum_len) != 0)
347 return 0;
348 return 1;
349}
350
351
352static void discard_receive_data(int f_in, OFF_T length)
353{
354 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
355}
356
357static void handle_delayed_updates(char *local_name)
358{
359 char *fname, *partialptr;
360 int ndx;
361
362 for (ndx = -1; (ndx = bitbag_next_bit(delayed_bits, ndx)) >= 0; ) {
363 struct file_struct *file = cur_flist->files[ndx];
364 fname = local_name ? local_name : f_name(file, NULL);
365 if ((partialptr = partial_dir_fname(fname)) != NULL) {
366 if (make_backups > 0 && !make_backup(fname, False))
367 continue;
368 if (DEBUG_GTE(RECV, 1)) {
369 rprintf(FINFO, "renaming %s to %s\n",
370 partialptr, fname);
371 }
372 /* We don't use robust_rename() here because the
373 * partial-dir must be on the same drive. */
374 if (do_rename(partialptr, fname) < 0) {
375 rsyserr(FERROR_XFER, errno,
376 "rename failed for %s (from %s)",
377 full_fname(fname), partialptr);
378 } else {
379 if (remove_source_files
380 || (preserve_hard_links && F_IS_HLINKED(file)))
381 send_msg_int(MSG_SUCCESS, ndx);
382 handle_partial_dir(partialptr, PDIR_DELETE);
383 }
384 }
385 }
386}
387
388static void no_batched_update(int ndx, BOOL is_redo)
389{
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
396 if (inc_recurse && !dry_run)
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
419static int gen_wants_ndx(int desired_ndx, int flist_num)
420{
421 static int next_ndx = -1;
422 static int done_cnt = 0;
423 static BOOL got_eof = False;
424
425 if (got_eof)
426 return 0;
427
428 while (next_ndx < desired_ndx) {
429 if (inc_recurse && flist_num <= done_cnt)
430 return 0;
431 if (next_ndx >= 0)
432 no_batched_update(next_ndx, False);
433 if ((next_ndx = read_int(batch_gen_fd)) < 0) {
434 if (inc_recurse) {
435 done_cnt++;
436 continue;
437 }
438 got_eof = True;
439 return 0;
440 }
441 }
442
443 if (next_ndx == desired_ndx) {
444 next_ndx = -1;
445 return 1;
446 }
447
448 return 0;
449}
450
451/**
452 * main routine for receiver process.
453 *
454 * Receiver process runs on the same host as the generator process. */
455int recv_files(int f_in, char *local_name)
456{
457 int fd1,fd2;
458 STRUCT_STAT st;
459 int iflags, xlen;
460 char *fname, fbuf[MAXPATHLEN];
461 char xname[MAXPATHLEN];
462 char fnametmp[MAXPATHLEN];
463 char *fnamecmp, *partialptr;
464 char fnamecmpbuf[MAXPATHLEN];
465 uchar fnamecmp_type;
466 struct file_struct *file;
467 struct stats initial_stats;
468 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
469 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
470 int max_phase = protocol_version >= 29 ? 2 : 1;
471 int dflt_perms = (ACCESSPERMS & ~orig_umask);
472#ifdef SUPPORT_ACLS
473 const char *parent_dirname = "";
474#endif
475 int ndx, recv_ok;
476
477 if (DEBUG_GTE(RECV, 1))
478 rprintf(FINFO, "recv_files(%d) starting\n", cur_flist->used);
479
480 if (delay_updates)
481 delayed_bits = bitbag_create(cur_flist->used + 1);
482
483 while (1) {
484 cleanup_disable();
485
486 /* This call also sets cur_flist. */
487 ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
488 xname, &xlen);
489 if (ndx == NDX_DONE) {
490 if (!am_server && INFO_GTE(PROGRESS, 2) && cur_flist) {
491 set_current_file_index(NULL, 0);
492 end_progress(0);
493 }
494 if (inc_recurse && first_flist) {
495 if (read_batch) {
496 ndx = first_flist->used + first_flist->ndx_start;
497 gen_wants_ndx(ndx, first_flist->flist_num);
498 }
499 flist_free(first_flist);
500 if (first_flist)
501 continue;
502 } else if (read_batch && first_flist) {
503 ndx = first_flist->used;
504 gen_wants_ndx(ndx, first_flist->flist_num);
505 }
506 if (++phase > max_phase)
507 break;
508 if (DEBUG_GTE(RECV, 1))
509 rprintf(FINFO, "recv_files phase=%d\n", phase);
510 if (phase == 2 && delay_updates)
511 handle_delayed_updates(local_name);
512 send_msg(MSG_DONE, "", 0, 0);
513 continue;
514 }
515
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];
520 fname = local_name ? local_name : f_name(file, fbuf);
521
522 if (DEBUG_GTE(RECV, 1))
523 rprintf(FINFO, "recv_files(%s)\n", fname);
524
525#ifdef SUPPORT_XATTRS
526 if (iflags & ITEM_REPORT_XATTR && do_xfers)
527 recv_xattr_request(file, f_in);
528#endif
529
530 if (!(iflags & ITEM_TRANSFER)) {
531 maybe_log_item(file, iflags, itemizing, xname);
532#ifdef SUPPORT_XATTRS
533 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && do_xfers)
534 set_file_attrs(fname, file, NULL, fname, 0);
535#endif
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 }
551 continue;
552 }
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 }
559
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 */
564 if (append_mode)
565 sparse_files = -sparse_files;
566 append_mode = -append_mode;
567 csum_length = SUM_LENGTH;
568 redoing = 1;
569 }
570 } else {
571 if (csum_length != SHORT_SUM_LENGTH) {
572 if (keep_partial && !partial_dir)
573 make_backups = -make_backups;
574 if (append_mode)
575 sparse_files = -sparse_files;
576 append_mode = -append_mode;
577 csum_length = SHORT_SUM_LENGTH;
578 redoing = 0;
579 }
580 if (iflags & ITEM_IS_NEW)
581 stats.created_files++;
582 }
583
584 if (!am_server && INFO_GTE(PROGRESS, 1))
585 set_current_file_index(file, ndx);
586 stats.xferred_files++;
587 stats.total_transferred_size += F_LENGTH(file);
588
589 cleanup_got_literal = 0;
590
591 if (daemon_filter_list.head
592 && check_filter(&daemon_filter_list, FLOG, fname, 0) < 0) {
593 rprintf(FERROR, "attempt to hack rsync failed.\n");
594 exit_cleanup(RERR_PROTOCOL);
595 }
596
597 if (read_batch) {
598 int wanted = redoing
599 ? we_want_redo(ndx)
600 : gen_wants_ndx(ndx, cur_flist->flist_num);
601 if (!wanted) {
602 rprintf(FINFO,
603 "(Skipping batched update for%s \"%s\")\n",
604 redoing ? " resend of" : "",
605 fname);
606 discard_receive_data(f_in, F_LENGTH(file));
607 file->flags |= FLAG_FILE_SENT;
608 continue;
609 }
610 }
611
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
625 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
626
627 if (protocol_version >= 29) {
628 switch (fnamecmp_type) {
629 case FNAMECMP_FNAME:
630 fnamecmp = fname;
631 break;
632 case FNAMECMP_PARTIAL_DIR:
633 fnamecmp = partialptr;
634 break;
635 case FNAMECMP_BACKUP:
636 fnamecmp = get_backup_name(fname);
637 break;
638 case FNAMECMP_FUZZY:
639 if (file->dirname) {
640 pathjoin(fnamecmpbuf, MAXPATHLEN,
641 file->dirname, xname);
642 fnamecmp = fnamecmpbuf;
643 } else
644 fnamecmp = xname;
645 break;
646 default:
647 if (fnamecmp_type >= basis_dir_cnt) {
648 rprintf(FERROR,
649 "invalid basis_dir index: %d.\n",
650 fnamecmp_type);
651 exit_cleanup(RERR_PROTOCOL);
652 }
653 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
654 basis_dir[fnamecmp_type], fname);
655 fnamecmp = fnamecmpbuf;
656 break;
657 }
658 if (!fnamecmp || (daemon_filter_list.head
659 && check_filter(&daemon_filter_list, FLOG, fname, 0) < 0)) {
660 fnamecmp = fname;
661 fnamecmp_type = FNAMECMP_FNAME;
662 }
663 } else {
664 /* Reminder: --inplace && --partial-dir are never
665 * enabled at the same time. */
666 if (inplace && make_backups > 0) {
667 if (!(fnamecmp = get_backup_name(fname)))
668 fnamecmp = fname;
669 else
670 fnamecmp_type = FNAMECMP_BACKUP;
671 } else if (partial_dir && partialptr)
672 fnamecmp = partialptr;
673 else
674 fnamecmp = fname;
675 }
676
677 initial_stats = stats;
678
679 /* open the file */
680 fd1 = do_open(fnamecmp, O_RDONLY, 0);
681
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 }
696
697 updating_basis_or_equiv = inplace
698 && (fnamecmp == fname || fnamecmp_type == FNAMECMP_BACKUP);
699
700 if (fd1 == -1) {
701 st.st_mode = 0;
702 st.st_size = 0;
703 } else if (do_fstat(fd1,&st) != 0) {
704 rsyserr(FERROR_XFER, errno, "fstat %s failed",
705 full_fname(fnamecmp));
706 discard_receive_data(f_in, F_LENGTH(file));
707 close(fd1);
708 if (inc_recurse)
709 send_msg_int(MSG_NO_SEND, ndx);
710 continue;
711 }
712
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 */
719 rprintf(FERROR_XFER, "recv_files: %s is a directory\n",
720 full_fname(fnamecmp));
721 discard_receive_data(f_in, F_LENGTH(file));
722 close(fd1);
723 if (inc_recurse)
724 send_msg_int(MSG_NO_SEND, ndx);
725 continue;
726 }
727
728 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
729 close(fd1);
730 fd1 = -1;
731 }
732
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;
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);
747 }
748
749 /* We now check to see if we are writing the file "inplace" */
750 if (inplace) {
751 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0600);
752 if (fd2 == -1) {
753 rsyserr(FERROR_XFER, errno, "open %s failed",
754 full_fname(fname));
755 }
756 } else {
757 fd2 = open_tmpfile(fnametmp, fname, file);
758 if (fd2 != -1)
759 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
760 }
761
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;
769 }
770
771 /* log the transfer */
772 if (log_before_transfer)
773 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
774 else if (!am_server && INFO_GTE(NAME, 1) && INFO_EQ(PROGRESS, 1))
775 rprintf(FINFO, "%s\n", fname);
776
777 /* recv file data */
778 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
779 fname, fd2, F_LENGTH(file));
780
781 log_item(log_code, file, &initial_stats, iflags, NULL);
782
783 if (fd1 != -1)
784 close(fd1);
785 if (close(fd2) < 0) {
786 rsyserr(FERROR, errno, "close failed on %s",
787 full_fname(fnametmp));
788 exit_cleanup(RERR_FILEIO);
789 }
790
791 if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
792 if (partialptr == fname)
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) {
798 do_unlink(partialptr);
799 handle_partial_dir(partialptr, PDIR_DELETE);
800 }
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))
811 recv_ok = -1;
812 else if (delay_updates && recv_ok) {
813 bitbag_set_bit(delayed_bits, ndx);
814 recv_ok = 2;
815 } else
816 partialptr = NULL;
817 } else
818 do_unlink(fnametmp);
819
820 cleanup_disable();
821
822 if (read_batch)
823 file->flags |= FLAG_FILE_SENT;
824
825 switch (recv_ok) {
826 case 2:
827 break;
828 case 1:
829 if (remove_source_files || inc_recurse
830 || (preserve_hard_links && F_IS_HLINKED(file)))
831 send_msg_int(MSG_SUCCESS, ndx);
832 break;
833 case 0: {
834 enum logcode msgtype = redoing ? FERROR_XFER : FWARNING;
835 if (msgtype == FERROR_XFER || INFO_GTE(NAME, 1)) {
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";
843 if (msgtype == FERROR_XFER) {
844 errstr = "ERROR";
845 redostr = "";
846 } else {
847 errstr = "WARNING";
848 redostr = read_batch ? " (may try again)"
849 : " (will try again)";
850 }
851 rprintf(msgtype,
852 "%s: %s failed verification -- update %s%s.\n",
853 errstr, local_name ? f_name(file, NULL) : fname,
854 keptstr, redostr);
855 }
856 if (!redoing) {
857 if (read_batch)
858 flist_ndx_push(&batch_redo_list, ndx);
859 send_msg_int(MSG_REDO, ndx);
860 file->flags |= FLAG_FILE_SENT;
861 } else if (inc_recurse)
862 send_msg_int(MSG_NO_SEND, ndx);
863 break;
864 }
865 case -1:
866 if (inc_recurse)
867 send_msg_int(MSG_NO_SEND, ndx);
868 break;
869 }
870 }
871 if (make_backups < 0)
872 make_backups = -make_backups;
873
874 if (phase == 2 && delay_updates) /* for protocol_version < 29 */
875 handle_delayed_updates(local_name);
876
877 if (DEBUG_GTE(RECV, 1))
878 rprintf(FINFO,"recv_files finished\n");
879
880 return 0;
881}