Added close_multiplexing_in() and renamed io_multiplexing_close()
[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;
24extern int recurse;
25extern int delete_mode;
92b9eb97
WD
26extern int delete_after;
27extern int max_delete;
2f03f956
AT
28extern int csum_length;
29extern struct stats stats;
30extern int dry_run;
16cc9ca2
WD
31extern int read_batch;
32extern int batch_gen_fd;
2f03f956
AT
33extern int am_server;
34extern int relative_paths;
566fce32 35extern int keep_dirlinks;
2f03f956 36extern int preserve_hard_links;
92b9eb97 37extern int preserve_perms;
2f03f956
AT
38extern int cvs_exclude;
39extern int io_error;
40extern char *tmpdir;
375a4556 41extern char *compare_dest;
53dd3135 42extern int make_backups;
16417f8b 43extern int do_progress;
d74a2e3e 44extern char *backup_dir;
53dd3135 45extern char *backup_suffix;
d74a2e3e 46extern int backup_suffix_len;
925c517f 47extern int cleanup_got_literal;
92b9eb97
WD
48extern int module_id;
49extern int ignore_errors;
50extern int orig_umask;
55e50d89 51extern int keep_partial;
ba582f75 52extern int checksum_seed;
a3221d2a 53extern int inplace;
2f03f956 54
5ebab6c1
WD
55extern struct exclude_list_struct server_exclude_list;
56
57
d74a2e3e 58static void delete_one(char *fn, int is_dir)
2f03f956 59{
d74a2e3e
WD
60 if (!is_dir) {
61 if (robust_unlink(fn) != 0) {
d62bcc17
WD
62 rsyserr(FERROR, errno, "delete_one: unlink %s failed",
63 full_fname(fn));
d2a918b4 64 } else if (verbose)
ecc81fce 65 rprintf(FINFO, "deleting %s\n", safe_fname(fn));
17fadf7d 66 } else {
d74a2e3e 67 if (do_rmdir(fn) != 0) {
eb84a83b
WD
68 if (errno == ENOTDIR && keep_dirlinks) {
69 delete_one(fn, 0);
70 return;
71 }
d74a2e3e 72 if (errno != ENOTEMPTY && errno != EEXIST) {
d62bcc17
WD
73 rsyserr(FERROR, errno,
74 "delete_one: rmdir %s failed",
75 full_fname(fn));
d74a2e3e 76 }
ecc81fce
WD
77 } else if (verbose) {
78 rprintf(FINFO, "deleting directory %s\n",
79 safe_fname(fn));
80 }
2f03f956
AT
81 }
82}
83
84
d74a2e3e
WD
85static int is_backup_file(char *fn)
86{
87 int k = strlen(fn) - backup_suffix_len;
88 return k > 0 && strcmp(fn+k, backup_suffix) == 0;
89}
2f03f956
AT
90
91
1e82e2ce
WD
92/* This deletes any files on the receiving side that are not present
93 * on the sending side. */
6957ae33 94void delete_files(struct file_list *flist)
2f03f956
AT
95{
96 struct file_list *local_file_list;
97 int i, j;
a24639bb 98 char *argv[1], fbuf[MAXPATHLEN];
0b73ca12 99 static int deletion_count;
2f03f956
AT
100
101 if (cvs_exclude)
102 add_cvs_excludes();
103
ef55c686 104 if (io_error && !(lp_ignore_errors(module_id) || ignore_errors)) {
2f03f956
AT
105 rprintf(FINFO,"IO error encountered - skipping file deletion\n");
106 return;
107 }
108
1e82e2ce 109 for (j = 0; j < flist->count; j++) {
a5342644
WD
110 if (!(flist->files[j]->flags & FLAG_TOP_DIR)
111 || !S_ISDIR(flist->files[j]->mode))
112 continue;
2f03f956 113
a24639bb 114 argv[0] = f_name_to(flist->files[j], fbuf);
2f03f956 115
a24639bb 116 if (!(local_file_list = send_file_list(-1, 1, argv)))
2f03f956 117 continue;
2f03f956
AT
118
119 if (verbose > 1)
ecc81fce 120 rprintf(FINFO, "deleting in %s\n", safe_fname(fbuf));
2f03f956 121
446e239e 122 for (i = local_file_list->count-1; i >= 0; i--) {
92b9eb97
WD
123 if (max_delete && deletion_count > max_delete)
124 break;
125 if (!local_file_list->files[i]->basename)
126 continue;
127 if (flist_find(flist,local_file_list->files[i]) < 0) {
53dd3135 128 char *f = f_name(local_file_list->files[i]);
d74a2e3e 129 if (make_backups && (backup_dir || !is_backup_file(f))) {
d2a918b4 130 make_backup(f);
ecc81fce
WD
131 if (verbose) {
132 rprintf(FINFO, "deleting %s\n",
133 safe_fname(f));
134 }
53dd3135 135 } else {
d74a2e3e
WD
136 int mode = local_file_list->files[i]->mode;
137 delete_one(f, S_ISDIR(mode) != 0);
53dd3135 138 }
31f3b68a 139 deletion_count++;
53dd3135 140 }
2f03f956
AT
141 }
142 flist_free(local_file_list);
2f03f956
AT
143 }
144}
145
146
52d3e106
S
147/*
148 * get_tmpname() - create a tmp filename for a given filename
149 *
150 * If a tmpdir is defined, use that as the directory to
151 * put it in. Otherwise, the tmp filename is in the same
152 * directory as the given name. Note that there may be no
153 * directory at all in the given name!
17fadf7d 154 *
52d3e106
S
155 * The tmp filename is basically the given filename with a
156 * dot prepended, and .XXXXXX appended (for mkstemp() to
157 * put its unique gunk in). Take care to not exceed
158 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
159 * the basename basically becomes 8 chars longer. In that
160 * case, the original name is shortened sufficiently to
161 * make it all fit.
17fadf7d 162 *
52d3e106
S
163 * Of course, there's no real reason for the tmp name to
164 * look like the original, except to satisfy us humans.
165 * As long as it's unique, rsync will work.
166 */
167
2f03f956
AT
168static int get_tmpname(char *fnametmp, char *fname)
169{
170 char *f;
52d3e106
S
171 int length = 0;
172 int maxname;
2f03f956 173
2f03f956 174 if (tmpdir) {
a24639bb 175 /* Note: this can't overflow, so the return value is safe */
b7cee949 176 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
52d3e106
S
177 fnametmp[length++] = '/';
178 fnametmp[length] = '\0'; /* always NULL terminated */
0c2ef5f4 179 }
52d3e106 180
0c2ef5f4 181 if ((f = strrchr(fname, '/')) != NULL) {
52d3e106
S
182 ++f;
183 if (!tmpdir) {
184 length = f - fname;
0c2ef5f4 185 /* copy up to and including the slash */
52d3e106 186 strlcpy(fnametmp, fname, length + 1);
0c2ef5f4 187 }
446e239e 188 } else
52d3e106 189 f = fname;
52d3e106
S
190 fnametmp[length++] = '.';
191 fnametmp[length] = '\0'; /* always NULL terminated */
2f03f956 192
52d3e106 193 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
2f03f956 194
0c2ef5f4 195 if (maxname < 1) {
52d3e106
S
196 rprintf(FERROR, "temporary filename too long: %s\n", fname);
197 fnametmp[0] = '\0';
2f03f956
AT
198 return 0;
199 }
200
17fadf7d 201 strlcpy(fnametmp + length, f, maxname);
52d3e106 202 strcat(fnametmp + length, ".XXXXXX");
2f03f956
AT
203
204 return 1;
205}
206
207
7e5fa372
WD
208static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
209 char *fname, int fd, OFF_T total_size)
2f03f956 210{
7e5fa372
WD
211 static char file_sum1[MD4_SUM_LENGTH];
212 static char file_sum2[MD4_SUM_LENGTH];
213 struct map_struct *mapbuf;
fc0257c9
S
214 struct sum_struct sum;
215 unsigned int len;
2f03f956 216 OFF_T offset = 0;
89e540e6 217 OFF_T offset2;
2f03f956 218 char *data;
7e5fa372 219 int i;
e1f67417 220 char *map = NULL;
17fadf7d 221
fc0257c9 222 read_sum_head(f_in, &sum);
17fadf7d 223
7e5fa372
WD
224 if (fd_r >= 0 && size_r > 0) {
225 mapbuf = map_file(fd_r, size_r, sum.blength);
226 if (verbose > 2) {
227 rprintf(FINFO, "recv mapped %s of size %.0f\n",
ecc81fce 228 safe_fname(fname_r), (double)size_r);
7e5fa372
WD
229 }
230 } else
231 mapbuf = NULL;
232
ba582f75 233 sum_init(checksum_seed);
17fadf7d 234
3f55bd5d 235 while ((i = recv_token(f_in, &data)) != 0) {
16417f8b
WD
236 if (do_progress)
237 show_progress(offset, total_size);
2f03f956
AT
238
239 if (i > 0) {
2f03f956 240 if (verbose > 3) {
5f808dfb
AT
241 rprintf(FINFO,"data recv %d at %.0f\n",
242 i,(double)offset);
2f03f956
AT
243 }
244
245 stats.literal_data += i;
246 cleanup_got_literal = 1;
17fadf7d 247
2f03f956
AT
248 sum_update(data,i);
249
250 if (fd != -1 && write_file(fd,data,i) != i) {
d62bcc17
WD
251 rsyserr(FERROR, errno, "write failed on %s",
252 full_fname(fname));
65417579 253 exit_cleanup(RERR_FILEIO);
2f03f956
AT
254 }
255 offset += i;
256 continue;
17fadf7d 257 }
2f03f956
AT
258
259 i = -(i+1);
fc0257c9
S
260 offset2 = i*(OFF_T)sum.blength;
261 len = sum.blength;
d2a918b4 262 if (i == (int)sum.count-1 && sum.remainder != 0)
fc0257c9 263 len = sum.remainder;
17fadf7d 264
2f03f956 265 stats.matched_data += len;
17fadf7d 266
2f03f956 267 if (verbose > 3)
5f808dfb
AT
268 rprintf(FINFO,"chunk[%d] of size %d at %.0f offset=%.0f\n",
269 i,len,(double)offset2,(double)offset);
17fadf7d 270
446e239e
WD
271 if (mapbuf) {
272 map = map_ptr(mapbuf,offset2,len);
17fadf7d 273
c55f7021
AT
274 see_token(map, len);
275 sum_update(map,len);
276 }
17fadf7d 277
fab65a5b 278 if (inplace) {
89e540e6 279 if (offset == offset2 && fd != -1) {
fab65a5b 280 flush_write_file(fd);
89e540e6
WD
281 offset += len;
282 if (do_lseek(fd, len, SEEK_CUR) != offset) {
fab65a5b
WD
283 rsyserr(FERROR, errno,
284 "lseek failed on %s",
285 full_fname(fname));
286 exit_cleanup(RERR_FILEIO);
287 }
89e540e6 288 continue;
a3221d2a 289 }
2f03f956 290 }
fab65a5b
WD
291 if (fd != -1 && write_file(fd, map, len) != (int)len) {
292 rsyserr(FERROR, errno, "write failed on %s",
293 full_fname(fname));
294 exit_cleanup(RERR_FILEIO);
295 }
2f03f956
AT
296 offset += len;
297 }
298
76c21947
WD
299 flush_write_file(fd);
300
a3221d2a 301#ifdef HAVE_FTRUNCATE
fab65a5b 302 if (inplace && fd != -1)
a3221d2a
WD
303 ftruncate(fd, offset);
304#endif
305
16417f8b
WD
306 if (do_progress)
307 end_progress(total_size);
2f03f956
AT
308
309 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
d62bcc17
WD
310 rsyserr(FERROR, errno, "write failed on %s",
311 full_fname(fname));
65417579 312 exit_cleanup(RERR_FILEIO);
2f03f956
AT
313 }
314
315 sum_end(file_sum1);
316
7e5fa372
WD
317 if (mapbuf)
318 unmap_file(mapbuf);
319
bc63ae3f 320 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
d2a918b4 321 if (verbose > 2)
bc63ae3f 322 rprintf(FINFO,"got file_sum\n");
d2a918b4 323 if (fd != -1 && memcmp(file_sum1, file_sum2, MD4_SUM_LENGTH) != 0)
bc63ae3f 324 return 0;
2f03f956
AT
325 return 1;
326}
327
328
8ed9d849
WD
329static void discard_receive_data(int f_in, OFF_T length)
330{
7e5fa372 331 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
8ed9d849
WD
332}
333
334
b35d0d8e
MP
335/**
336 * main routine for receiver process.
337 *
338 * Receiver process runs on the same host as the generator process. */
d3979b02 339int recv_files(int f_in, struct file_list *flist, char *local_name)
17fadf7d 340{
16cc9ca2 341 int next_gen_i = -1;
2f03f956
AT
342 int fd1,fd2;
343 STRUCT_STAT st;
446e239e 344 char *fname, fbuf[MAXPATHLEN];
f62c17e3 345 char template[MAXPATHLEN];
2f03f956 346 char fnametmp[MAXPATHLEN];
375a4556
DD
347 char *fnamecmp;
348 char fnamecmpbuf[MAXPATHLEN];
2f03f956 349 struct file_struct *file;
1b7c47cb 350 struct stats initial_stats;
4e834af1
WD
351 int save_make_backups = make_backups;
352 int i, recv_ok, phase = 0;
11a5a3c7 353
d2a918b4 354 if (verbose > 2)
2f03f956 355 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
2f03f956 356
cb869c26 357 if (flist->hlink_pool) {
9935066b
S
358 pool_destroy(flist->hlink_pool);
359 flist->hlink_pool = NULL;
360 }
361
17fadf7d 362 while (1) {
2f03f956
AT
363 cleanup_disable();
364
365 i = read_int(f_in);
366 if (i == -1) {
16cc9ca2
WD
367 if (read_batch) {
368 if (next_gen_i != flist->count)
369 while (read_int(batch_gen_fd) != -1) {}
370 next_gen_i = -1;
371 }
372
4e834af1
WD
373 if (phase)
374 break;
5ebab6c1 375
4e834af1
WD
376 phase = 1;
377 csum_length = SUM_LENGTH;
378 if (verbose > 2)
379 rprintf(FINFO, "recv_files phase=%d\n", phase);
380 send_msg(MSG_DONE, "", 0);
381 if (keep_partial)
382 make_backups = 0; /* prevents double backup */
383 continue;
2f03f956
AT
384 }
385
386 if (i < 0 || i >= flist->count) {
17fadf7d 387 rprintf(FERROR,"Invalid file index %d in recv_files (count=%d)\n",
2f03f956 388 i, flist->count);
65417579 389 exit_cleanup(RERR_PROTOCOL);
2f03f956
AT
390 }
391
392 file = flist->files[i];
2f03f956 393
97feb557 394 stats.current_file_index = i;
2f03f956
AT
395 stats.num_transferred_files++;
396 stats.total_transferred_size += file->length;
925c517f 397 cleanup_got_literal = 0;
2f03f956
AT
398
399 if (local_name)
400 fname = local_name;
446e239e 401 else
3fef5364 402 fname = f_name_to(file, fbuf);
2f03f956
AT
403
404 if (dry_run) {
ecc81fce
WD
405 if (!am_server && verbose) /* log the transfer */
406 rprintf(FINFO, "%s\n", safe_fname(fname));
2f03f956
AT
407 continue;
408 }
409
1b7c47cb
AT
410 initial_stats = stats;
411
2f03f956 412 if (verbose > 2)
ecc81fce 413 rprintf(FINFO, "recv_files(%s)\n", safe_fname(fname));
2f03f956 414
375a4556
DD
415 fnamecmp = fname;
416
16cc9ca2
WD
417 if (read_batch) {
418 while (i > next_gen_i) {
419 next_gen_i = read_int(batch_gen_fd);
420 if (next_gen_i == -1)
421 next_gen_i = flist->count;
422 }
423 if (i < next_gen_i) {
424 rprintf(FINFO, "skipping update for \"%s\"\n",
ecc81fce 425 safe_fname(fname));
16cc9ca2
WD
426 discard_receive_data(f_in, file->length);
427 continue;
428 }
429 }
430
5ebab6c1
WD
431 if (server_exclude_list.head
432 && check_exclude(&server_exclude_list, fname,
433 S_ISDIR(file->mode)) < 0) {
434 if (verbose) {
435 rprintf(FINFO,
436 "skipping server-excluded update for \"%s\"\n",
ecc81fce 437 safe_fname(fname));
5ebab6c1 438 }
8ed9d849 439 discard_receive_data(f_in, file->length);
5ebab6c1
WD
440 continue;
441 }
442
17fadf7d 443 /* open the file */
8c9fd200 444 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 445
c338460d 446 if (fd1 == -1 && compare_dest != NULL) {
375a4556 447 /* try the file at compare_dest instead */
f91e01d9
WD
448 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
449 compare_dest, fname);
375a4556 450 fnamecmp = fnamecmpbuf;
8c9fd200 451 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 452 }
2f03f956
AT
453
454 if (fd1 != -1 && do_fstat(fd1,&st) != 0) {
d62bcc17
WD
455 rsyserr(FERROR, errno, "fstat %s failed",
456 full_fname(fnamecmp));
8ed9d849 457 discard_receive_data(f_in, file->length);
2f03f956
AT
458 close(fd1);
459 continue;
460 }
461
350e4e4d
S
462 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
463 /* this special handling for directories
464 * wouldn't be necessary if robust_rename()
465 * and the underlying robust_unlink could cope
466 * with directories
467 */
ea42541f
WD
468 rprintf(FERROR,"recv_files: %s is a directory\n",
469 full_fname(fnamecmp));
8ed9d849 470 discard_receive_data(f_in, file->length);
2f03f956
AT
471 close(fd1);
472 continue;
473 }
474
350e4e4d
S
475 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
476 close(fd1);
477 fd1 = -1;
350e4e4d
S
478 }
479
4df9f368 480 if (fd1 != -1 && !preserve_perms) {
85ed0aa3 481 /* if the file exists already and we aren't preserving
17fadf7d
WD
482 * permissions then act as though the remote end sent
483 * us the file permissions we already have */
4df9f368
AT
484 file->mode = st.st_mode;
485 }
486
a3221d2a
WD
487 /* We now check to see if we are writing file "inplace" */
488 if (inplace) {
489 fd2 = do_open(fnamecmp, O_WRONLY|O_CREAT, 0);
490 if (fd2 == -1) {
491 rsyserr(FERROR, errno, "open %s failed",
492 full_fname(fnamecmp));
8ed9d849 493 discard_receive_data(f_in, file->length);
a3221d2a
WD
494 if (fd1 != -1)
495 close(fd1);
496 continue;
497 }
498 } else {
499 if (!get_tmpname(fnametmp,fname)) {
8ed9d849 500 discard_receive_data(f_in, file->length);
a3221d2a
WD
501 if (fd1 != -1)
502 close(fd1);
503 continue;
504 }
505
506 strlcpy(template, fnametmp, sizeof template);
2f03f956 507
a3221d2a
WD
508 /* we initially set the perms without the
509 * setuid/setgid bits to ensure that there is no race
510 * condition. They are then correctly updated after
511 * the lchown. Thanks to snabb@epipe.fi for pointing
512 * this out. We also set it initially without group
513 * access because of a similar race condition. */
f62c17e3 514 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
17fadf7d 515
a3221d2a
WD
516 /* in most cases parent directories will already exist
517 * because their information should have been previously
518 * transferred, but that may not be the case with -R */
519 if (fd2 == -1 && relative_paths && errno == ENOENT
520 && create_directory_path(fnametmp, orig_umask) == 0) {
521 strlcpy(fnametmp, template, sizeof fnametmp);
522 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
523 }
524 if (fd2 == -1) {
525 rsyserr(FERROR, errno, "mkstemp %s failed",
526 full_fname(fnametmp));
8ed9d849 527 discard_receive_data(f_in, file->length);
a3221d2a
WD
528 if (fd1 != -1)
529 close(fd1);
530 continue;
531 }
532
7e5fa372 533 cleanup_set(fnametmp, fname, file, fd1, fd2);
a3221d2a 534 }
2f03f956 535
ecc81fce
WD
536 if (!am_server && verbose) /* log the transfer */
537 rprintf(FINFO, "%s\n", safe_fname(fname));
11a5a3c7 538
2f03f956 539 /* recv file data */
7e5fa372
WD
540 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
541 fname, fd2, file->length);
1b7c47cb
AT
542
543 log_recv(file, &initial_stats);
17fadf7d 544
d2a918b4 545 if (fd1 != -1)
2f03f956 546 close(fd1);
9f27cd8c 547 if (close(fd2) < 0) {
d62bcc17
WD
548 rsyserr(FERROR, errno, "close failed on %s",
549 full_fname(fnametmp));
9f27cd8c
WD
550 exit_cleanup(RERR_FILEIO);
551 }
17fadf7d 552
9bccfc42 553 if (recv_ok || keep_partial || inplace)
55e50d89
WD
554 finish_transfer(fname, fnametmp, file, recv_ok);
555 else
556 do_unlink(fnametmp);
c6b81a98 557
2f03f956 558 cleanup_disable();
554e0a8d 559
2f03f956 560 if (!recv_ok) {
007e3c0e
WD
561 int msgtype = csum_length == SUM_LENGTH || read_batch ?
562 FERROR : FINFO;
563 if (msgtype == FERROR || verbose) {
564 char *errstr, *redostr;
565 char *keptstr = keep_partial || inplace ?
566 "retain" : "discard";
567 if (msgtype == FERROR) {
568 errstr = "ERROR";
569 redostr = "";
570 } else {
571 errstr = "WARNING";
572 redostr = " (will try again)";
573 }
574 rprintf(msgtype,
575 "%s: %s failed verification -- update %sed%s.\n",
ecc81fce
WD
576 errstr, safe_fname(fname),
577 keptstr, redostr);
007e3c0e 578 }
e2bc4126 579 if (csum_length != SUM_LENGTH) {
0569a133 580 char buf[4];
0569a133
WD
581 SIVAL(buf, 0, i);
582 send_msg(MSG_REDO, buf, 4);
2f03f956
AT
583 }
584 }
585 }
4e834af1 586 make_backups = save_make_backups;
2f03f956 587
e76ca145 588 if (delete_after && recurse && !local_name && flist->count > 0)
3f55bd5d 589 delete_files(flist);
57df171b 590
2f03f956
AT
591 if (verbose > 2)
592 rprintf(FINFO,"recv_files finished\n");
17fadf7d 593
2f03f956
AT
594 return 0;
595}