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