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