Tweaked the output a little.
[rsync/rsync.git] / receiver.c
... / ...
CommitLineData
1/*
2 * Routines only used by the receiving process.
3 *
4 * Copyright (C) 1996-2000 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003, 2004, 2005, 2006 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
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 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
21 */
22
23#include "rsync.h"
24
25extern int verbose;
26extern int do_xfers;
27extern int am_server;
28extern int do_progress;
29extern int log_before_transfer;
30extern int stdout_format_has_i;
31extern int logfile_format_has_i;
32extern int csum_length;
33extern int read_batch;
34extern int write_batch;
35extern int batch_gen_fd;
36extern int protocol_version;
37extern int relative_paths;
38extern int preserve_hard_links;
39extern int preserve_perms;
40extern int basis_dir_cnt;
41extern int make_backups;
42extern int cleanup_got_literal;
43extern int remove_source_files;
44extern int append_mode;
45extern int sparse_files;
46extern int keep_partial;
47extern int checksum_seed;
48extern int inplace;
49extern int delay_updates;
50extern struct stats stats;
51extern char *stdout_format;
52extern char *tmpdir;
53extern char *partial_dir;
54extern char *basis_dir[];
55extern struct file_list *the_file_list;
56extern struct filter_list_struct server_filter_list;
57
58static struct bitbag *delayed_bits = NULL;
59static int phase = 0;
60/* We're either updating the basis file or an identical copy: */
61static int updating_basis;
62
63
64/*
65 * get_tmpname() - create a tmp filename for a given filename
66 *
67 * If a tmpdir is defined, use that as the directory to
68 * put it in. Otherwise, the tmp filename is in the same
69 * directory as the given name. Note that there may be no
70 * directory at all in the given name!
71 *
72 * The tmp filename is basically the given filename with a
73 * dot prepended, and .XXXXXX appended (for mkstemp() to
74 * put its unique gunk in). Take care to not exceed
75 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
76 * the basename basically becomes 8 chars longer. In that
77 * case, the original name is shortened sufficiently to
78 * make it all fit.
79 *
80 * Of course, there's no real reason for the tmp name to
81 * look like the original, except to satisfy us humans.
82 * As long as it's unique, rsync will work.
83 */
84
85int get_tmpname(char *fnametmp, char *fname)
86{
87 int maxname, added, length = 0;
88 char *f;
89
90 if (tmpdir) {
91 /* Note: this can't overflow, so the return value is safe */
92 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
93 fnametmp[length++] = '/';
94 }
95
96 if ((f = strrchr(fname, '/')) != NULL) {
97 ++f;
98 if (!tmpdir) {
99 length = f - fname;
100 /* copy up to and including the slash */
101 strlcpy(fnametmp, fname, length + 1);
102 }
103 } else
104 f = fname;
105 fnametmp[length++] = '.';
106
107 /* The maxname value is bufsize, and includes space for the '\0'.
108 * (Note that NAME_MAX get -8 for the leading '.' above.) */
109 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
110
111 if (maxname < 1) {
112 rprintf(FERROR, "temporary filename too long: %s\n", fname);
113 fnametmp[0] = '\0';
114 return 0;
115 }
116
117 added = strlcpy(fnametmp + length, f, maxname);
118 if (added >= maxname)
119 added = maxname - 1;
120 memcpy(fnametmp + length + added, ".XXXXXX", 8);
121
122 return 1;
123}
124
125
126static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
127 char *fname, int fd, OFF_T total_size)
128{
129 static char file_sum1[MD4_SUM_LENGTH];
130 static char file_sum2[MD4_SUM_LENGTH];
131 struct map_struct *mapbuf;
132 struct sum_struct sum;
133 int32 len;
134 OFF_T offset = 0;
135 OFF_T offset2;
136 char *data;
137 int32 i;
138 char *map = NULL;
139
140 read_sum_head(f_in, &sum);
141
142 if (fd_r >= 0 && size_r > 0) {
143 int32 read_size = MAX(sum.blength * 2, 16*1024);
144 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
145 if (verbose > 2) {
146 rprintf(FINFO, "recv mapped %s of size %.0f\n",
147 fname_r, (double)size_r);
148 }
149 } else
150 mapbuf = NULL;
151
152 sum_init(checksum_seed);
153
154 if (append_mode) {
155 OFF_T j;
156 sum.flength = (OFF_T)sum.count * sum.blength;
157 if (sum.remainder)
158 sum.flength -= sum.blength - sum.remainder;
159 for (j = CHUNK_SIZE; j < sum.flength; j += CHUNK_SIZE) {
160 if (do_progress)
161 show_progress(offset, total_size);
162 sum_update(map_ptr(mapbuf, offset, CHUNK_SIZE),
163 CHUNK_SIZE);
164 offset = j;
165 }
166 if (offset < sum.flength) {
167 int32 len = (int32)(sum.flength - offset);
168 if (do_progress)
169 show_progress(offset, total_size);
170 sum_update(map_ptr(mapbuf, offset, len), len);
171 offset = sum.flength;
172 }
173 if (fd != -1 && (j = do_lseek(fd, offset, SEEK_SET)) != offset) {
174 rsyserr(FERROR, errno, "lseek of %s returned %.0f, not %.0f",
175 full_fname(fname), (double)j, (double)offset);
176 exit_cleanup(RERR_FILEIO);
177 }
178 }
179
180 while ((i = recv_token(f_in, &data)) != 0) {
181 if (do_progress)
182 show_progress(offset, total_size);
183
184 if (i > 0) {
185 if (verbose > 3) {
186 rprintf(FINFO,"data recv %d at %.0f\n",
187 i,(double)offset);
188 }
189
190 stats.literal_data += i;
191 cleanup_got_literal = 1;
192
193 sum_update(data, i);
194
195 if (fd != -1 && write_file(fd,data,i) != i)
196 goto report_write_error;
197 offset += i;
198 continue;
199 }
200
201 i = -(i+1);
202 offset2 = i * (OFF_T)sum.blength;
203 len = sum.blength;
204 if (i == (int)sum.count-1 && sum.remainder != 0)
205 len = sum.remainder;
206
207 stats.matched_data += len;
208
209 if (verbose > 3) {
210 rprintf(FINFO,
211 "chunk[%d] of size %ld at %.0f offset=%.0f\n",
212 i, (long)len, (double)offset2, (double)offset);
213 }
214
215 if (mapbuf) {
216 map = map_ptr(mapbuf,offset2,len);
217
218 see_token(map, len);
219 sum_update(map, len);
220 }
221
222 if (updating_basis) {
223 if (offset == offset2 && fd != -1) {
224 OFF_T pos;
225 if (flush_write_file(fd) < 0)
226 goto report_write_error;
227 offset += len;
228 if ((pos = do_lseek(fd, len, SEEK_CUR)) != offset) {
229 rsyserr(FERROR, errno,
230 "lseek of %s returned %.0f, not %.0f",
231 full_fname(fname),
232 (double)pos, (double)offset);
233 exit_cleanup(RERR_FILEIO);
234 }
235 continue;
236 }
237 }
238 if (fd != -1 && map && write_file(fd, map, len) != (int)len)
239 goto report_write_error;
240 offset += len;
241 }
242
243 if (flush_write_file(fd) < 0)
244 goto report_write_error;
245
246#ifdef HAVE_FTRUNCATE
247 if (inplace && fd != -1)
248 ftruncate(fd, offset);
249#endif
250
251 if (do_progress)
252 end_progress(total_size);
253
254 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
255 report_write_error:
256 rsyserr(FERROR, errno, "write failed on %s",
257 full_fname(fname));
258 exit_cleanup(RERR_FILEIO);
259 }
260
261 sum_end(file_sum1);
262
263 if (mapbuf)
264 unmap_file(mapbuf);
265
266 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
267 if (verbose > 2)
268 rprintf(FINFO,"got file_sum\n");
269 if (fd != -1 && memcmp(file_sum1, file_sum2, MD4_SUM_LENGTH) != 0)
270 return 0;
271 return 1;
272}
273
274
275static void discard_receive_data(int f_in, OFF_T length)
276{
277 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
278}
279
280static void handle_delayed_updates(struct file_list *flist, char *local_name)
281{
282 char *fname, *partialptr;
283 int ndx;
284
285 for (ndx = -1; (ndx = bitbag_next_bit(delayed_bits, ndx)) >= 0; ) {
286 struct file_struct *file = flist->files[ndx];
287 fname = local_name ? local_name : f_name(file, NULL);
288 if ((partialptr = partial_dir_fname(fname)) != NULL) {
289 if (make_backups && !make_backup(fname))
290 continue;
291 if (verbose > 2) {
292 rprintf(FINFO, "renaming %s to %s\n",
293 partialptr, fname);
294 }
295 /* We don't use robust_rename() here because the
296 * partial-dir must be on the same drive. */
297 if (do_rename(partialptr, fname) < 0) {
298 rsyserr(FERROR, errno,
299 "rename failed for %s (from %s)",
300 full_fname(fname), partialptr);
301 } else {
302 if (remove_source_files
303 || (preserve_hard_links && F_IS_HLINKED(file)))
304 send_msg_int(MSG_SUCCESS, ndx);
305 handle_partial_dir(partialptr, PDIR_DELETE);
306 }
307 }
308 }
309}
310
311static int get_next_gen_ndx(int batch_gen_fd, int next_gen_ndx, int desired_ndx)
312{
313 while (next_gen_ndx < desired_ndx) {
314 if (next_gen_ndx >= 0) {
315 rprintf(FINFO,
316 "(No batched update for%s \"%s\")\n",
317 phase ? " resend of" : "",
318 f_name(the_file_list->files[next_gen_ndx], NULL));
319 }
320 next_gen_ndx = read_int(batch_gen_fd);
321 if (next_gen_ndx == -1)
322 next_gen_ndx = the_file_list->count;
323 }
324 return next_gen_ndx;
325}
326
327
328/**
329 * main routine for receiver process.
330 *
331 * Receiver process runs on the same host as the generator process. */
332int recv_files(int f_in, struct file_list *flist, char *local_name)
333{
334 int next_gen_ndx = -1;
335 int fd1,fd2;
336 STRUCT_STAT st;
337 int iflags, xlen;
338 char *fname, fbuf[MAXPATHLEN];
339 char xname[MAXPATHLEN];
340 char fnametmp[MAXPATHLEN];
341 char *fnamecmp, *partialptr;
342 char fnamecmpbuf[MAXPATHLEN];
343 uchar fnamecmp_type;
344 struct file_struct *file;
345 struct stats initial_stats;
346 int save_make_backups = make_backups;
347 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
348 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
349 int max_phase = protocol_version >= 29 ? 2 : 1;
350 int ndx, recv_ok;
351
352 if (verbose > 2)
353 rprintf(FINFO, "recv_files(%d) starting\n", flist->count);
354
355 if (delay_updates)
356 delayed_bits = bitbag_create(flist->count);
357
358 updating_basis = inplace;
359
360 while (1) {
361 cleanup_disable();
362
363 ndx = read_int(f_in);
364 if (ndx == NDX_DONE) {
365 if (read_batch) {
366 get_next_gen_ndx(batch_gen_fd, next_gen_ndx,
367 flist->count);
368 next_gen_ndx = -1;
369 }
370 if (++phase > max_phase)
371 break;
372 csum_length = SUM_LENGTH;
373 if (verbose > 2)
374 rprintf(FINFO, "recv_files phase=%d\n", phase);
375 if (phase == 2 && delay_updates)
376 handle_delayed_updates(flist, local_name);
377 send_msg(MSG_DONE, "", 0);
378 if (keep_partial && !partial_dir)
379 make_backups = 0; /* prevents double backup */
380 if (append_mode) {
381 append_mode = 0;
382 sparse_files = 0;
383 }
384 continue;
385 }
386
387 iflags = read_item_attrs(f_in, -1, ndx, &fnamecmp_type,
388 xname, &xlen);
389 if (iflags == ITEM_IS_NEW) /* no-op packet */
390 continue;
391
392 file = flist->files[ndx];
393 fname = local_name ? local_name : f_name(file, fbuf);
394
395 if (verbose > 2)
396 rprintf(FINFO, "recv_files(%s)\n", fname);
397
398 if (!(iflags & ITEM_TRANSFER)) {
399 maybe_log_item(file, iflags, itemizing, xname);
400 continue;
401 }
402 if (phase == 2) {
403 rprintf(FERROR,
404 "got transfer request in phase 2 [%s]\n",
405 who_am_i());
406 exit_cleanup(RERR_PROTOCOL);
407 }
408
409 stats.current_file_index = ndx;
410 stats.num_transferred_files++;
411 stats.total_transferred_size += F_LENGTH(file);
412 cleanup_got_literal = 0;
413
414 if (server_filter_list.head
415 && check_filter(&server_filter_list, fname, 0) < 0) {
416 rprintf(FERROR, "attempt to hack rsync failed.\n");
417 exit_cleanup(RERR_PROTOCOL);
418 }
419
420 if (!do_xfers) { /* log the transfer */
421 log_item(FCLIENT, file, &stats, iflags, NULL);
422 if (read_batch)
423 discard_receive_data(f_in, F_LENGTH(file));
424 continue;
425 }
426 if (write_batch < 0) {
427 log_item(FINFO, file, &stats, iflags, NULL);
428 if (!am_server)
429 discard_receive_data(f_in, F_LENGTH(file));
430 continue;
431 }
432
433 if (read_batch) {
434 next_gen_ndx = get_next_gen_ndx(batch_gen_fd, next_gen_ndx, ndx);
435 if (ndx < next_gen_ndx) {
436 rprintf(FINFO,
437 "(Skipping batched update for \"%s\")\n",
438 fname);
439 discard_receive_data(f_in, F_LENGTH(file));
440 continue;
441 }
442 next_gen_ndx = -1;
443 }
444
445 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
446
447 if (protocol_version >= 29) {
448 switch (fnamecmp_type) {
449 case FNAMECMP_FNAME:
450 fnamecmp = fname;
451 break;
452 case FNAMECMP_PARTIAL_DIR:
453 fnamecmp = partialptr;
454 break;
455 case FNAMECMP_BACKUP:
456 fnamecmp = get_backup_name(fname);
457 break;
458 case FNAMECMP_FUZZY:
459 updating_basis = 0;
460 if (file->dirname) {
461 pathjoin(fnamecmpbuf, MAXPATHLEN,
462 file->dirname, xname);
463 fnamecmp = fnamecmpbuf;
464 } else
465 fnamecmp = xname;
466 break;
467 default:
468 updating_basis = 0;
469 if (fnamecmp_type >= basis_dir_cnt) {
470 rprintf(FERROR,
471 "invalid basis_dir index: %d.\n",
472 fnamecmp_type);
473 exit_cleanup(RERR_PROTOCOL);
474 }
475 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
476 basis_dir[fnamecmp_type], fname);
477 fnamecmp = fnamecmpbuf;
478 break;
479 }
480 if (!fnamecmp || (server_filter_list.head
481 && check_filter(&server_filter_list, fname, 0) < 0))
482 fnamecmp = fname;
483 } else {
484 /* Reminder: --inplace && --partial-dir are never
485 * enabled at the same time. */
486 if (inplace && make_backups) {
487 if (!(fnamecmp = get_backup_name(fname)))
488 fnamecmp = fname;
489 } else if (partial_dir && partialptr)
490 fnamecmp = partialptr;
491 else
492 fnamecmp = fname;
493 }
494
495 initial_stats = stats;
496
497 /* open the file */
498 fd1 = do_open(fnamecmp, O_RDONLY, 0);
499
500 if (fd1 == -1 && protocol_version < 29) {
501 if (fnamecmp != fname) {
502 fnamecmp = fname;
503 fd1 = do_open(fnamecmp, O_RDONLY, 0);
504 }
505
506 if (fd1 == -1 && basis_dir[0]) {
507 /* pre-29 allowed only one alternate basis */
508 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
509 basis_dir[0], fname);
510 fnamecmp = fnamecmpbuf;
511 fd1 = do_open(fnamecmp, O_RDONLY, 0);
512 }
513 }
514
515 if (fd1 == -1) {
516 st.st_mode = 0;
517 st.st_size = 0;
518 } else if (do_fstat(fd1,&st) != 0) {
519 rsyserr(FERROR, errno, "fstat %s failed",
520 full_fname(fnamecmp));
521 discard_receive_data(f_in, F_LENGTH(file));
522 close(fd1);
523 continue;
524 }
525
526 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
527 /* this special handling for directories
528 * wouldn't be necessary if robust_rename()
529 * and the underlying robust_unlink could cope
530 * with directories
531 */
532 rprintf(FERROR,"recv_files: %s is a directory\n",
533 full_fname(fnamecmp));
534 discard_receive_data(f_in, F_LENGTH(file));
535 close(fd1);
536 continue;
537 }
538
539 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
540 close(fd1);
541 fd1 = -1;
542 }
543
544 /* If we're not preserving permissions, change the file-list's
545 * mode based on the local permissions and some heuristics. */
546 if (!preserve_perms) {
547 int exists = fd1 != -1;
548 file->mode = dest_mode(file->mode, st.st_mode, exists);
549 }
550
551 /* We now check to see if we are writing the file "inplace" */
552 if (inplace) {
553 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0600);
554 if (fd2 == -1) {
555 rsyserr(FERROR, errno, "open %s failed",
556 full_fname(fname));
557 discard_receive_data(f_in, F_LENGTH(file));
558 if (fd1 != -1)
559 close(fd1);
560 continue;
561 }
562 } else {
563 if (!get_tmpname(fnametmp,fname)) {
564 discard_receive_data(f_in, F_LENGTH(file));
565 if (fd1 != -1)
566 close(fd1);
567 continue;
568 }
569
570 /* we initially set the perms without the
571 * setuid/setgid bits to ensure that there is no race
572 * condition. They are then correctly updated after
573 * the lchown. Thanks to snabb@epipe.fi for pointing
574 * this out. We also set it initially without group
575 * access because of a similar race condition. */
576 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
577
578 /* in most cases parent directories will already exist
579 * because their information should have been previously
580 * transferred, but that may not be the case with -R */
581 if (fd2 == -1 && relative_paths && errno == ENOENT
582 && create_directory_path(fnametmp) == 0) {
583 /* Get back to name with XXXXXX in it. */
584 get_tmpname(fnametmp, fname);
585 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
586 }
587 if (fd2 == -1) {
588 rsyserr(FERROR, errno, "mkstemp %s failed",
589 full_fname(fnametmp));
590 discard_receive_data(f_in, F_LENGTH(file));
591 if (fd1 != -1)
592 close(fd1);
593 continue;
594 }
595
596 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
597 }
598
599 /* log the transfer */
600 if (log_before_transfer)
601 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
602 else if (!am_server && verbose && do_progress)
603 rprintf(FINFO, "%s\n", fname);
604
605 /* recv file data */
606 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
607 fname, fd2, F_LENGTH(file));
608
609 log_item(log_code, file, &initial_stats, iflags, NULL);
610
611 if (fd1 != -1)
612 close(fd1);
613 if (close(fd2) < 0) {
614 rsyserr(FERROR, errno, "close failed on %s",
615 full_fname(fnametmp));
616 exit_cleanup(RERR_FILEIO);
617 }
618
619 if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
620 char *temp_copy_name;
621 if (partialptr == fname)
622 partialptr = temp_copy_name = NULL;
623 else if (*partial_dir == '/')
624 temp_copy_name = NULL;
625 else
626 temp_copy_name = partialptr;
627 finish_transfer(fname, fnametmp, temp_copy_name,
628 file, recv_ok, 1);
629 if (fnamecmp == partialptr) {
630 do_unlink(partialptr);
631 handle_partial_dir(partialptr, PDIR_DELETE);
632 }
633 } else if (keep_partial && partialptr
634 && handle_partial_dir(partialptr, PDIR_CREATE)) {
635 finish_transfer(partialptr, fnametmp, NULL,
636 file, recv_ok, !partial_dir);
637 if (delay_updates && recv_ok) {
638 bitbag_set_bit(delayed_bits, ndx);
639 recv_ok = -1;
640 }
641 } else {
642 partialptr = NULL;
643 do_unlink(fnametmp);
644 }
645
646 cleanup_disable();
647
648 if (recv_ok > 0) {
649 if (remove_source_files
650 || (preserve_hard_links && F_IS_HLINKED(file)))
651 send_msg_int(MSG_SUCCESS, ndx);
652 } else if (!recv_ok) {
653 enum logcode msgtype = phase || read_batch ? FERROR : FINFO;
654 if (msgtype == FERROR || verbose) {
655 char *errstr, *redostr, *keptstr;
656 if (!(keep_partial && partialptr) && !inplace)
657 keptstr = "discarded";
658 else if (partial_dir)
659 keptstr = "put into partial-dir";
660 else
661 keptstr = "retained";
662 if (msgtype == FERROR) {
663 errstr = "ERROR";
664 redostr = "";
665 } else {
666 errstr = "WARNING";
667 redostr = " (will try again)";
668 }
669 rprintf(msgtype,
670 "%s: %s failed verification -- update %s%s.\n",
671 errstr, fname, keptstr, redostr);
672 }
673 if (!phase)
674 send_msg_int(MSG_REDO, ndx);
675 }
676 }
677 make_backups = save_make_backups;
678
679 if (phase == 2 && delay_updates) /* for protocol_version < 29 */
680 handle_delayed_updates(flist, local_name);
681
682 if (verbose > 2)
683 rprintf(FINFO,"recv_files finished\n");
684
685 return 0;
686}