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