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