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