Fixed a length problem parsing an arg of "./".
[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 62/* We're either updating the basis file or an identical copy: */
77943e69 63static int updating_basis_or_equiv;
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
93204cca 86int get_tmpname(char *fnametmp, const char *fname)
2f03f956 87{
d5dcb6f7 88 int maxname, added, length = 0;
93204cca 89 const char *f;
2f03f956 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) {
3f0211b6 113 rprintf(FERROR_XFER, "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
2cce7545
WD
126/* Opens a temporary file for writing.
127 * Success: Writes name into fnametmp, returns fd.
128 * Failure: Clobbers fnametmp, returns -1.
129 * Calling cleanup_set() is the caller's job. */
130int open_tmpfile(char *fnametmp, const char *fname, struct file_struct *file)
131{
132 int fd;
133
134 if (!get_tmpname(fnametmp, fname))
135 return -1;
136
137 /* We initially set the perms without the setuid/setgid bits or group
138 * access to ensure that there is no race condition. They will be
139 * correctly updated after the right owner and group info is set.
140 * (Thanks to snabb@epipe.fi for pointing this out.) */
141 fd = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
142
143#if 0
144 /* In most cases parent directories will already exist because their
145 * information should have been previously transferred, but that may
146 * not be the case with -R */
147 if (fd == -1 && relative_paths && errno == ENOENT
148 && create_directory_path(fnametmp) == 0) {
149 /* Get back to name with XXXXXX in it. */
150 get_tmpname(fnametmp, fname);
151 fd = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
152 }
153#endif
154
155 if (fd == -1) {
3f0211b6 156 rsyserr(FERROR_XFER, errno, "mkstemp %s failed",
2cce7545
WD
157 full_fname(fnametmp));
158 return -1;
159 }
160
161 return fd;
162}
2f03f956 163
7e5fa372 164static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
55edf18c 165 const char *fname, int fd, OFF_T total_size)
2f03f956 166{
a0456b9c
WD
167 static char file_sum1[MAX_DIGEST_LEN];
168 static char file_sum2[MAX_DIGEST_LEN];
7e5fa372 169 struct map_struct *mapbuf;
fc0257c9 170 struct sum_struct sum;
a0456b9c 171 int32 len, sum_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);
7e5fa372
WD
183 if (verbose > 2) {
184 rprintf(FINFO, "recv mapped %s of size %.0f\n",
45c49b52 185 fname_r, (double)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) {
199 if (do_progress)
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);
207 if (do_progress)
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) {
3f0211b6 214 rsyserr(FERROR_XFER, errno, "lseek of %s returned %.0f, not %.0f",
ffa8ab8e 215 full_fname(fname), (double)j, (double)offset);
6cc11982
WD
216 exit_cleanup(RERR_FILEIO);
217 }
218 }
219
3f55bd5d 220 while ((i = recv_token(f_in, &data)) != 0) {
16417f8b
WD
221 if (do_progress)
222 show_progress(offset, total_size);
2f03f956
AT
223
224 if (i > 0) {
2f03f956 225 if (verbose > 3) {
5f808dfb
AT
226 rprintf(FINFO,"data recv %d at %.0f\n",
227 i,(double)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
6c495e0d
WD
249 if (verbose > 3) {
250 rprintf(FINFO,
251 "chunk[%d] of size %ld at %.0f offset=%.0f\n",
252 i, (long)len, (double)offset2, (double)offset);
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,
ffa8ab8e
WD
270 "lseek of %s returned %.0f, not %.0f",
271 full_fname(fname),
272 (double)pos, (double)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
16417f8b
WD
291 if (do_progress)
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
a0456b9c 301 sum_len = sum_end(file_sum1);
2f03f956 302
7e5fa372
WD
303 if (mapbuf)
304 unmap_file(mapbuf);
305
a0456b9c 306 read_buf(f_in, file_sum2, sum_len);
d2a918b4 307 if (verbose > 2)
bc63ae3f 308 rprintf(FINFO,"got file_sum\n");
a0456b9c 309 if (fd != -1 && memcmp(file_sum1, file_sum2, sum_len) != 0)
bc63ae3f 310 return 0;
2f03f956
AT
311 return 1;
312}
313
314
8ed9d849
WD
315static void discard_receive_data(int f_in, OFF_T length)
316{
7e5fa372 317 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
8ed9d849
WD
318}
319
f3d6d480 320static void handle_delayed_updates(char *local_name)
42be5320 321{
663b2857 322 char *fname, *partialptr;
0395130c 323 int ndx;
42be5320 324
0395130c 325 for (ndx = -1; (ndx = bitbag_next_bit(delayed_bits, ndx)) >= 0; ) {
f3d6d480 326 struct file_struct *file = cur_flist->files[ndx];
6cbde57d 327 fname = local_name ? local_name : f_name(file, NULL);
42be5320 328 if ((partialptr = partial_dir_fname(fname)) != NULL) {
f3d6d480 329 if (make_backups > 0 && !make_backup(fname))
42be5320
WD
330 continue;
331 if (verbose > 2) {
332 rprintf(FINFO, "renaming %s to %s\n",
45c49b52 333 partialptr, fname);
42be5320 334 }
6a94c58b
WD
335 /* We don't use robust_rename() here because the
336 * partial-dir must be on the same drive. */
42be5320 337 if (do_rename(partialptr, fname) < 0) {
3f0211b6 338 rsyserr(FERROR_XFER, errno,
42be5320 339 "rename failed for %s (from %s)",
45c49b52 340 full_fname(fname), partialptr);
42be5320 341 } else {
47c11975 342 if (remove_source_files
112d728f 343 || (preserve_hard_links && F_IS_HLINKED(file)))
0395130c 344 send_msg_int(MSG_SUCCESS, ndx);
45c49b52 345 handle_partial_dir(partialptr, PDIR_DELETE);
42be5320
WD
346 }
347 }
348 }
349}
350
f3d6d480 351static int get_next_gen_ndx(int fd, int next_gen_ndx, int desired_ndx)
154cdaaa 352{
0395130c
WD
353 while (next_gen_ndx < desired_ndx) {
354 if (next_gen_ndx >= 0) {
154cdaaa 355 rprintf(FINFO,
1ed91a04 356 "(No batched update for%s \"%s\")\n",
d0221f1d 357 redoing ? " resend of" : "",
f3d6d480
WD
358 f_name(cur_flist->files[next_gen_ndx], NULL));
359 }
360 next_gen_ndx = read_int(fd);
361 if (next_gen_ndx == -1) {
3ea6e0e7 362 if (inc_recurse)
9decb4d2 363 next_gen_ndx = first_flist->prev->used + first_flist->prev->ndx_start;
f3d6d480 364 else
9decb4d2 365 next_gen_ndx = cur_flist->used;
154cdaaa 366 }
154cdaaa 367 }
0395130c 368 return next_gen_ndx;
154cdaaa
WD
369}
370
b35d0d8e
MP
371/**
372 * main routine for receiver process.
373 *
374 * Receiver process runs on the same host as the generator process. */
f3d6d480 375int recv_files(int f_in, char *local_name)
17fadf7d 376{
0395130c 377 int next_gen_ndx = -1;
2f03f956
AT
378 int fd1,fd2;
379 STRUCT_STAT st;
b9232d45 380 int iflags, xlen;
446e239e 381 char *fname, fbuf[MAXPATHLEN];
b9232d45 382 char xname[MAXPATHLEN];
2f03f956 383 char fnametmp[MAXPATHLEN];
663b2857 384 char *fnamecmp, *partialptr;
375a4556 385 char fnamecmpbuf[MAXPATHLEN];
9e4a8d29 386 uchar fnamecmp_type;
2f03f956 387 struct file_struct *file;
1b7c47cb 388 struct stats initial_stats;
2fedf3d5
WD
389 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
390 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
1ed91a04 391 int max_phase = protocol_version >= 29 ? 2 : 1;
1c3344a1
WD
392 int dflt_perms = (ACCESSPERMS & ~orig_umask);
393#ifdef SUPPORT_ACLS
394 const char *parent_dirname = "";
395#endif
0395130c 396 int ndx, recv_ok;
11a5a3c7 397
d2a918b4 398 if (verbose > 2)
9decb4d2 399 rprintf(FINFO, "recv_files(%d) starting\n", cur_flist->used);
2f03f956 400
3e7934a5 401 if (delay_updates)
9decb4d2 402 delayed_bits = bitbag_create(cur_flist->used + 1);
48e1c8c6 403
17fadf7d 404 while (1) {
2f03f956
AT
405 cleanup_disable();
406
f3d6d480 407 /* This call also sets cur_flist. */
16edf865
WD
408 ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
409 xname, &xlen);
0395130c 410 if (ndx == NDX_DONE) {
3ea6e0e7 411 if (inc_recurse && first_flist) {
f3d6d480
WD
412 flist_free(first_flist);
413 if (first_flist)
414 continue;
415 }
416 if (read_batch && cur_flist) {
3ea6e0e7 417 int high = inc_recurse
9decb4d2
WD
418 ? first_flist->prev->used + first_flist->prev->ndx_start
419 : cur_flist->used;
f3d6d480 420 get_next_gen_ndx(batch_gen_fd, next_gen_ndx, high);
0395130c 421 next_gen_ndx = -1;
16cc9ca2 422 }
ac3f7b81 423 if (++phase > max_phase)
4e834af1 424 break;
4e834af1
WD
425 if (verbose > 2)
426 rprintf(FINFO, "recv_files phase=%d\n", phase);
ac3f7b81 427 if (phase == 2 && delay_updates)
f3d6d480 428 handle_delayed_updates(local_name);
332cf6df 429 send_msg(MSG_DONE, "", 0, 0);
4e834af1 430 continue;
2f03f956
AT
431 }
432
6755a7d7
WD
433 if (ndx - cur_flist->ndx_start >= 0)
434 file = cur_flist->files[ndx - cur_flist->ndx_start];
435 else
436 file = dir_flist->files[cur_flist->parent_ndx];
6cbde57d 437 fname = local_name ? local_name : f_name(file, fbuf);
227a9c41
WD
438
439 if (verbose > 2)
45c49b52 440 rprintf(FINFO, "recv_files(%s)\n", fname);
910e89b9 441
16edf865
WD
442#ifdef SUPPORT_XATTRS
443 if (iflags & ITEM_REPORT_XATTR && !dry_run)
444 recv_xattr_request(file, f_in);
445#endif
446
22907b6b 447 if (!(iflags & ITEM_TRANSFER)) {
b9232d45 448 maybe_log_item(file, iflags, itemizing, xname);
16edf865
WD
449#ifdef SUPPORT_XATTRS
450 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
451 set_file_attrs(fname, file, NULL, fname, 0);
452#endif
58a14ed9
WD
453 continue;
454 }
ac3f7b81
WD
455 if (phase == 2) {
456 rprintf(FERROR,
457 "got transfer request in phase 2 [%s]\n",
458 who_am_i());
459 exit_cleanup(RERR_PROTOCOL);
460 }
910e89b9 461
f3d6d480
WD
462 if (file->flags & FLAG_FILE_SENT) {
463 if (csum_length == SHORT_SUM_LENGTH) {
464 if (keep_partial && !partial_dir)
465 make_backups = -make_backups; /* prevents double backup */
936fa865
WD
466 if (append_mode)
467 sparse_files = -sparse_files;
f3d6d480 468 append_mode = -append_mode;
f3d6d480 469 csum_length = SUM_LENGTH;
d0221f1d 470 redoing = 1;
f3d6d480
WD
471 }
472 } else {
473 if (csum_length != SHORT_SUM_LENGTH) {
474 if (keep_partial && !partial_dir)
475 make_backups = -make_backups;
936fa865
WD
476 if (append_mode)
477 sparse_files = -sparse_files;
f3d6d480 478 append_mode = -append_mode;
f3d6d480 479 csum_length = SHORT_SUM_LENGTH;
d0221f1d 480 redoing = 0;
f3d6d480
WD
481 }
482 }
483
65b4e4b2
WD
484 if (!am_server && do_progress)
485 set_current_file_index(file, ndx);
2f03f956 486 stats.num_transferred_files++;
112d728f 487 stats.total_transferred_size += F_LENGTH(file);
65b4e4b2 488
925c517f 489 cleanup_got_literal = 0;
2f03f956 490
8c2ffaf0
WD
491 if (server_filter_list.head
492 && check_filter(&server_filter_list, fname, 0) < 0) {
493 rprintf(FERROR, "attempt to hack rsync failed.\n");
494 exit_cleanup(RERR_PROTOCOL);
495 }
496
a0009fc3 497 if (!do_xfers) { /* log the transfer */
85909931 498 log_item(FCLIENT, file, &stats, iflags, NULL);
f957e8fd 499 if (read_batch)
112d728f 500 discard_receive_data(f_in, F_LENGTH(file));
2f03f956
AT
501 continue;
502 }
a0009fc3 503 if (write_batch < 0) {
2fedf3d5 504 log_item(FINFO, file, &stats, iflags, NULL);
b10917a4 505 if (!am_server)
112d728f 506 discard_receive_data(f_in, F_LENGTH(file));
a0009fc3
WD
507 continue;
508 }
2f03f956 509
16cc9ca2 510 if (read_batch) {
0395130c
WD
511 next_gen_ndx = get_next_gen_ndx(batch_gen_fd, next_gen_ndx, ndx);
512 if (ndx < next_gen_ndx) {
45c49b52
WD
513 rprintf(FINFO,
514 "(Skipping batched update for \"%s\")\n",
515 fname);
112d728f 516 discard_receive_data(f_in, F_LENGTH(file));
a430691d
WD
517 if (inc_recurse)
518 send_msg_int(MSG_NO_SEND, ndx);
16cc9ca2
WD
519 continue;
520 }
0395130c 521 next_gen_ndx = -1;
16cc9ca2
WD
522 }
523
41cfde6b
WD
524 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
525
9e4a8d29
WD
526 if (protocol_version >= 29) {
527 switch (fnamecmp_type) {
41cfde6b 528 case FNAMECMP_FNAME:
a7260c40 529 fnamecmp = fname;
41cfde6b
WD
530 break;
531 case FNAMECMP_PARTIAL_DIR:
9e4a8d29 532 fnamecmp = partialptr;
41cfde6b
WD
533 break;
534 case FNAMECMP_BACKUP:
535 fnamecmp = get_backup_name(fname);
536 break;
73273075 537 case FNAMECMP_FUZZY:
b9232d45
WD
538 if (file->dirname) {
539 pathjoin(fnamecmpbuf, MAXPATHLEN,
540 file->dirname, xname);
541 fnamecmp = fnamecmpbuf;
542 } else
543 fnamecmp = xname;
73273075 544 break;
41cfde6b 545 default:
9e4a8d29 546 if (fnamecmp_type >= basis_dir_cnt) {
c56595d7
WD
547 rprintf(FERROR,
548 "invalid basis_dir index: %d.\n",
9e4a8d29 549 fnamecmp_type);
c56595d7
WD
550 exit_cleanup(RERR_PROTOCOL);
551 }
41cfde6b 552 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
9e4a8d29 553 basis_dir[fnamecmp_type], fname);
41cfde6b
WD
554 fnamecmp = fnamecmpbuf;
555 break;
556 }
9e4a8d29 557 if (!fnamecmp || (server_filter_list.head
77943e69 558 && check_filter(&server_filter_list, fname, 0) < 0)) {
9e4a8d29 559 fnamecmp = fname;
77943e69
WD
560 fnamecmp_type = FNAMECMP_FNAME;
561 }
9e4a8d29
WD
562 } else {
563 /* Reminder: --inplace && --partial-dir are never
564 * enabled at the same time. */
f3d6d480 565 if (inplace && make_backups > 0) {
9e4a8d29
WD
566 if (!(fnamecmp = get_backup_name(fname)))
567 fnamecmp = fname;
77943e69
WD
568 else
569 fnamecmp_type = FNAMECMP_BACKUP;
9e4a8d29
WD
570 } else if (partial_dir && partialptr)
571 fnamecmp = partialptr;
572 else
573 fnamecmp = fname;
574 }
dc55d7bd 575
910e89b9
WD
576 initial_stats = stats;
577
17fadf7d 578 /* open the file */
8c9fd200 579 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 580
9e4a8d29
WD
581 if (fd1 == -1 && protocol_version < 29) {
582 if (fnamecmp != fname) {
583 fnamecmp = fname;
584 fd1 = do_open(fnamecmp, O_RDONLY, 0);
585 }
586
587 if (fd1 == -1 && basis_dir[0]) {
588 /* pre-29 allowed only one alternate basis */
589 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
590 basis_dir[0], fname);
591 fnamecmp = fnamecmpbuf;
592 fd1 = do_open(fnamecmp, O_RDONLY, 0);
593 }
594 }
77943e69
WD
595
596 updating_basis_or_equiv = inplace
597 && (fnamecmp == fname || fnamecmp_type == FNAMECMP_BACKUP);
9e4a8d29 598
d5dcb6f7
WD
599 if (fd1 == -1) {
600 st.st_mode = 0;
601 st.st_size = 0;
602 } else if (do_fstat(fd1,&st) != 0) {
3f0211b6 603 rsyserr(FERROR_XFER, errno, "fstat %s failed",
d62bcc17 604 full_fname(fnamecmp));
112d728f 605 discard_receive_data(f_in, F_LENGTH(file));
2f03f956 606 close(fd1);
a430691d
WD
607 if (inc_recurse)
608 send_msg_int(MSG_NO_SEND, ndx);
2f03f956
AT
609 continue;
610 }
611
350e4e4d
S
612 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
613 /* this special handling for directories
614 * wouldn't be necessary if robust_rename()
615 * and the underlying robust_unlink could cope
616 * with directories
617 */
3f0211b6 618 rprintf(FERROR_XFER, "recv_files: %s is a directory\n",
ea42541f 619 full_fname(fnamecmp));
112d728f 620 discard_receive_data(f_in, F_LENGTH(file));
2f03f956 621 close(fd1);
a430691d
WD
622 if (inc_recurse)
623 send_msg_int(MSG_NO_SEND, ndx);
2f03f956
AT
624 continue;
625 }
626
350e4e4d
S
627 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
628 close(fd1);
629 fd1 = -1;
350e4e4d
S
630 }
631
a9d6e6fc
WD
632 /* If we're not preserving permissions, change the file-list's
633 * mode based on the local permissions and some heuristics. */
634 if (!preserve_perms) {
635 int exists = fd1 != -1;
1c3344a1
WD
636#ifdef SUPPORT_ACLS
637 const char *dn = file->dirname ? file->dirname : ".";
638 if (parent_dirname != dn
639 && strcmp(parent_dirname, dn) != 0) {
640 dflt_perms = default_perms_for_dir(dn);
641 parent_dirname = dn;
642 }
643#endif
644 file->mode = dest_mode(file->mode, st.st_mode,
645 dflt_perms, exists);
4df9f368
AT
646 }
647
48459ba1 648 /* We now check to see if we are writing the file "inplace" */
a3221d2a 649 if (inplace) {
97894c64 650 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0600);
a3221d2a 651 if (fd2 == -1) {
3f0211b6 652 rsyserr(FERROR_XFER, errno, "open %s failed",
dc55d7bd 653 full_fname(fname));
a3221d2a
WD
654 }
655 } else {
2cce7545
WD
656 fd2 = open_tmpfile(fnametmp, fname, file);
657 if (fd2 != -1)
658 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
659 }
a3221d2a 660
2cce7545
WD
661 if (fd2 == -1) {
662 discard_receive_data(f_in, F_LENGTH(file));
663 if (fd1 != -1)
664 close(fd1);
665 if (inc_recurse)
666 send_msg_int(MSG_NO_SEND, ndx);
667 continue;
a3221d2a 668 }
2f03f956 669
a8ed4958 670 /* log the transfer */
910e89b9 671 if (log_before_transfer)
85909931 672 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
4bb0af79 673 else if (!am_server && verbose && do_progress)
45c49b52 674 rprintf(FINFO, "%s\n", fname);
11a5a3c7 675
2f03f956 676 /* recv file data */
7e5fa372 677 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
112d728f 678 fname, fd2, F_LENGTH(file));
1b7c47cb 679
2fedf3d5 680 log_item(log_code, file, &initial_stats, iflags, NULL);
17fadf7d 681
d2a918b4 682 if (fd1 != -1)
2f03f956 683 close(fd1);
9f27cd8c 684 if (close(fd2) < 0) {
d62bcc17
WD
685 rsyserr(FERROR, errno, "close failed on %s",
686 full_fname(fnametmp));
9f27cd8c
WD
687 exit_cleanup(RERR_FILEIO);
688 }
17fadf7d 689
68795c64 690 if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
01d124d9 691 if (partialptr == fname)
83235dbc
WD
692 partialptr = NULL;
693 if (!finish_transfer(fname, fnametmp, fnamecmp,
694 partialptr, file, recv_ok, 1))
695 recv_ok = -1;
696 else if (fnamecmp == partialptr) {
aec6b9f8
WD
697 do_unlink(partialptr);
698 handle_partial_dir(partialptr, PDIR_DELETE);
699 }
700 } else if (keep_partial && partialptr
701 && handle_partial_dir(partialptr, PDIR_CREATE)) {
83235dbc
WD
702 if (!finish_transfer(partialptr, fnametmp, fnamecmp, NULL,
703 file, recv_ok, !partial_dir))
3e7934a5 704 recv_ok = -1;
83235dbc
WD
705 else if (delay_updates && recv_ok) {
706 bitbag_set_bit(delayed_bits, ndx);
707 recv_ok = 2;
3e7934a5 708 }
aec6b9f8 709 } else {
a7260c40 710 partialptr = NULL;
55e50d89 711 do_unlink(fnametmp);
a7260c40
WD
712 }
713
2f03f956 714 cleanup_disable();
554e0a8d 715
83235dbc
WD
716 switch (recv_ok) {
717 case 1:
3ea6e0e7 718 if (remove_source_files || inc_recurse
112d728f 719 || (preserve_hard_links && F_IS_HLINKED(file)))
0395130c 720 send_msg_int(MSG_SUCCESS, ndx);
83235dbc
WD
721 break;
722 case 0: {
3f0211b6 723 enum logcode msgtype = redoing || read_batch ? FERROR : FWARNING;
007e3c0e 724 if (msgtype == FERROR || verbose) {
a7260c40
WD
725 char *errstr, *redostr, *keptstr;
726 if (!(keep_partial && partialptr) && !inplace)
727 keptstr = "discarded";
728 else if (partial_dir)
729 keptstr = "put into partial-dir";
730 else
731 keptstr = "retained";
007e3c0e
WD
732 if (msgtype == FERROR) {
733 errstr = "ERROR";
734 redostr = "";
735 } else {
736 errstr = "WARNING";
737 redostr = " (will try again)";
738 }
739 rprintf(msgtype,
a7260c40 740 "%s: %s failed verification -- update %s%s.\n",
45c49b52 741 errstr, fname, keptstr, redostr);
007e3c0e 742 }
d0221f1d 743 if (!redoing) {
0395130c 744 send_msg_int(MSG_REDO, ndx);
f3d6d480 745 file->flags |= FLAG_FILE_SENT;
3ea6e0e7 746 } else if (inc_recurse)
d0221f1d 747 send_msg_int(MSG_NO_SEND, ndx);
83235dbc
WD
748 break;
749 }
750 case -1:
751 if (inc_recurse)
752 send_msg_int(MSG_NO_SEND, ndx);
753 break;
2f03f956
AT
754 }
755 }
f3d6d480
WD
756 if (make_backups < 0)
757 make_backups = -make_backups;
2f03f956 758
ac3f7b81 759 if (phase == 2 && delay_updates) /* for protocol_version < 29 */
f3d6d480 760 handle_delayed_updates(local_name);
48e1c8c6 761
2f03f956
AT
762 if (verbose > 2)
763 rprintf(FINFO,"recv_files finished\n");
17fadf7d 764
2f03f956
AT
765 return 0;
766}