added resend logic
[rsync/rsync.git] / rsync.c
... / ...
CommitLineData
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20#include "rsync.h"
21
22extern int csum_length;
23
24extern int verbose;
25extern int am_server;
26extern int always_checksum;
27extern time_t starttime;
28
29extern int remote_version;
30
31extern char *backup_suffix;
32
33extern int block_size;
34extern int update_only;
35extern int make_backups;
36extern int preserve_links;
37extern int preserve_hard_links;
38extern int preserve_perms;
39extern int preserve_devices;
40extern int preserve_uid;
41extern int preserve_gid;
42extern int preserve_times;
43extern int dry_run;
44extern int ignore_times;
45extern int recurse;
46extern int delete_mode;
47extern int cvs_exclude;
48
49/*
50 free a sums struct
51 */
52static void free_sums(struct sum_struct *s)
53{
54 if (s->sums) free(s->sums);
55 free(s);
56}
57
58
59
60/*
61 send a sums struct down a fd
62 */
63static void send_sums(struct sum_struct *s,int f_out)
64{
65 int i;
66
67 /* tell the other guy how many we are going to be doing and how many
68 bytes there are in the last chunk */
69 write_int(f_out,s?s->count:0);
70 write_int(f_out,s?s->n:block_size);
71 write_int(f_out,s?s->remainder:0);
72 if (s)
73 for (i=0;i<s->count;i++) {
74 write_int(f_out,s->sums[i].sum1);
75 write_buf(f_out,s->sums[i].sum2,csum_length);
76 }
77 write_flush(f_out);
78}
79
80
81/*
82 generate a stream of signatures/checksums that describe a buffer
83
84 generate approximately one checksum every n bytes
85 */
86static struct sum_struct *generate_sums(struct map_struct *buf,off_t len,int n)
87{
88 int i;
89 struct sum_struct *s;
90 int count;
91 int block_len = n;
92 int remainder = (len%block_len);
93 off_t offset = 0;
94
95 count = (len+(block_len-1))/block_len;
96
97 s = (struct sum_struct *)malloc(sizeof(*s));
98 if (!s) out_of_memory("generate_sums");
99
100 s->count = count;
101 s->remainder = remainder;
102 s->n = n;
103 s->flength = len;
104
105 if (count==0) {
106 s->sums = NULL;
107 return s;
108 }
109
110 if (verbose > 3)
111 fprintf(FERROR,"count=%d rem=%d n=%d flength=%d\n",
112 s->count,s->remainder,s->n,(int)s->flength);
113
114 s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count);
115 if (!s->sums) out_of_memory("generate_sums");
116
117 for (i=0;i<count;i++) {
118 int n1 = MIN(len,n);
119 char *map = map_ptr(buf,offset,n1);
120
121 s->sums[i].sum1 = get_checksum1(map,n1);
122 get_checksum2(map,n1,s->sums[i].sum2);
123
124 s->sums[i].offset = offset;
125 s->sums[i].len = n1;
126 s->sums[i].i = i;
127
128 if (verbose > 3)
129 fprintf(FERROR,"chunk[%d] offset=%d len=%d sum1=%08x\n",
130 i,(int)s->sums[i].offset,s->sums[i].len,s->sums[i].sum1);
131
132 len -= n1;
133 offset += n1;
134 }
135
136 return s;
137}
138
139
140/*
141 receive the checksums for a buffer
142 */
143static struct sum_struct *receive_sums(int f)
144{
145 struct sum_struct *s;
146 int i;
147 off_t offset = 0;
148 int block_len;
149
150 s = (struct sum_struct *)malloc(sizeof(*s));
151 if (!s) out_of_memory("receive_sums");
152
153 s->count = read_int(f);
154 s->n = read_int(f);
155 s->remainder = read_int(f);
156 s->sums = NULL;
157
158 if (verbose > 3)
159 fprintf(FERROR,"count=%d n=%d rem=%d\n",
160 s->count,s->n,s->remainder);
161
162 block_len = s->n;
163
164 if (s->count == 0)
165 return(s);
166
167 s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count);
168 if (!s->sums) out_of_memory("receive_sums");
169
170 for (i=0;i<s->count;i++) {
171 s->sums[i].sum1 = read_int(f);
172 read_buf(f,s->sums[i].sum2,csum_length);
173
174 s->sums[i].offset = offset;
175 s->sums[i].i = i;
176
177 if (i == s->count-1 && s->remainder != 0) {
178 s->sums[i].len = s->remainder;
179 } else {
180 s->sums[i].len = s->n;
181 }
182 offset += s->sums[i].len;
183
184 if (verbose > 3)
185 fprintf(FERROR,"chunk[%d] len=%d offset=%d sum1=%08x\n",
186 i,s->sums[i].len,(int)s->sums[i].offset,s->sums[i].sum1);
187 }
188
189 s->flength = offset;
190
191 return s;
192}
193
194
195static void set_perms(char *fname,struct file_struct *file,struct stat *st,
196 int report)
197{
198 int updated = 0;
199 struct stat st2;
200
201 if (dry_run) return;
202
203 if (!st) {
204 if (stat(fname,&st2) != 0) {
205 fprintf(FERROR,"stat %s : %s\n",fname,strerror(errno));
206 return;
207 }
208 st = &st2;
209 }
210
211 if (preserve_times && !S_ISLNK(st->st_mode) &&
212 st->st_mtime != file->modtime) {
213 updated = 1;
214 if (set_modtime(fname,file->modtime) != 0) {
215 fprintf(FERROR,"failed to set times on %s : %s\n",
216 fname,strerror(errno));
217 return;
218 }
219 }
220
221#ifdef HAVE_CHMOD
222 if (preserve_perms && !S_ISLNK(st->st_mode) &&
223 st->st_mode != file->mode) {
224 updated = 1;
225 if (chmod(fname,file->mode) != 0) {
226 fprintf(FERROR,"failed to set permissions on %s : %s\n",
227 fname,strerror(errno));
228 return;
229 }
230 }
231#endif
232
233 if ((preserve_uid && st->st_uid != file->uid) ||
234 (preserve_gid && st->st_gid != file->gid)) {
235 updated = 1;
236 if (chown(fname,
237 preserve_uid?file->uid:-1,
238 preserve_gid?file->gid:-1) != 0) {
239 if (verbose>1 || preserve_uid)
240 fprintf(FERROR,"chown %s : %s\n",fname,strerror(errno));
241 return;
242 }
243 }
244
245 if (verbose > 1 && report) {
246 if (updated)
247 fprintf(FINFO,"%s\n",fname);
248 else
249 fprintf(FINFO,"%s is uptodate\n",fname);
250 }
251}
252
253
254void recv_generator(char *fname,struct file_list *flist,int i,int f_out)
255{
256 int fd;
257 struct stat st;
258 struct map_struct *buf;
259 struct sum_struct *s;
260 char sum[SUM_LENGTH];
261 int statret;
262 struct file_struct *file = &flist->files[i];
263
264 if (verbose > 2)
265 fprintf(FERROR,"recv_generator(%s,%d)\n",fname,i);
266
267 statret = lstat(fname,&st);
268
269#if SUPPORT_LINKS
270 if (preserve_links && S_ISLNK(file->mode)) {
271 char lnk[MAXPATHLEN];
272 int l;
273 if (statret == 0) {
274 l = readlink(fname,lnk,MAXPATHLEN-1);
275 if (l > 0) {
276 lnk[l] = 0;
277 if (strcmp(lnk,file->link) == 0) {
278 set_perms(fname,file,&st,1);
279 return;
280 }
281 }
282 }
283 if (!dry_run) unlink(fname);
284 if (!dry_run && symlink(file->link,fname) != 0) {
285 fprintf(FERROR,"link %s -> %s : %s\n",
286 fname,file->link,strerror(errno));
287 } else {
288 set_perms(fname,file,NULL,0);
289 if (verbose)
290 fprintf(FINFO,"%s -> %s\n",
291 fname,file->link);
292 }
293 return;
294 }
295#endif
296
297#ifdef HAVE_MKNOD
298 if (preserve_devices && IS_DEVICE(file->mode)) {
299 if (statret != 0 ||
300 st.st_mode != file->mode ||
301 st.st_rdev != file->rdev) {
302 if (!dry_run) unlink(fname);
303 if (verbose > 2)
304 fprintf(FERROR,"mknod(%s,0%o,0x%x)\n",
305 fname,(int)file->mode,(int)file->rdev);
306 if (!dry_run &&
307 mknod(fname,file->mode,file->rdev) != 0) {
308 fprintf(FERROR,"mknod %s : %s\n",fname,strerror(errno));
309 } else {
310 set_perms(fname,file,NULL,0);
311 if (verbose)
312 fprintf(FINFO,"%s\n",fname);
313 }
314 } else {
315 set_perms(fname,file,&st,1);
316 }
317 return;
318 }
319#endif
320
321 if (preserve_hard_links && check_hard_link(file)) {
322 if (verbose > 1)
323 fprintf(FINFO,"%s is a hard link\n",file->name);
324 return;
325 }
326
327 if (!S_ISREG(file->mode)) {
328 fprintf(FERROR,"skipping non-regular file %s\n",fname);
329 return;
330 }
331
332 if (statret == -1) {
333 if (errno == ENOENT) {
334 write_int(f_out,i);
335 if (!dry_run) send_sums(NULL,f_out);
336 } else {
337 if (verbose > 1)
338 fprintf(FERROR,"recv_generator failed to open %s\n",fname);
339 }
340 return;
341 }
342
343 if (!S_ISREG(st.st_mode)) {
344 fprintf(FERROR,"%s : not a regular file\n",fname);
345 return;
346 }
347
348 if (update_only && st.st_mtime >= file->modtime) {
349 if (verbose > 1)
350 fprintf(FERROR,"%s is newer\n",fname);
351 return;
352 }
353
354 if (always_checksum && S_ISREG(st.st_mode)) {
355 file_checksum(fname,sum,st.st_size);
356 }
357
358 if (st.st_size == file->length &&
359 ((!ignore_times && st.st_mtime == file->modtime) ||
360 (always_checksum && S_ISREG(st.st_mode) &&
361 memcmp(sum,file->sum,csum_length) == 0))) {
362 set_perms(fname,file,&st,1);
363 return;
364 }
365
366 if (dry_run) {
367 write_int(f_out,i);
368 return;
369 }
370
371 /* open the file */
372 fd = open(fname,O_RDONLY);
373
374 if (fd == -1) {
375 fprintf(FERROR,"failed to open %s : %s\n",fname,strerror(errno));
376 return;
377 }
378
379 if (st.st_size > 0) {
380 buf = map_file(fd,st.st_size);
381 } else {
382 buf = NULL;
383 }
384
385 if (verbose > 3)
386 fprintf(FERROR,"gen mapped %s of size %d\n",fname,(int)st.st_size);
387
388 s = generate_sums(buf,st.st_size,block_size);
389
390 if (verbose > 2)
391 fprintf(FERROR,"sending sums for %d\n",i);
392
393 write_int(f_out,i);
394 send_sums(s,f_out);
395 write_flush(f_out);
396
397 close(fd);
398 unmap_file(buf);
399
400 free_sums(s);
401}
402
403
404
405static int receive_data(int f_in,struct map_struct *buf,int fd,char *fname)
406{
407 int i,n,remainder,len,count;
408 off_t offset = 0;
409 off_t offset2;
410 char *data;
411 static char file_sum1[SUM_LENGTH];
412 static char file_sum2[SUM_LENGTH];
413 char *map=NULL;
414
415 count = read_int(f_in);
416 n = read_int(f_in);
417 remainder = read_int(f_in);
418
419 sum_init();
420
421 for (i=recv_token(f_in,&data); i != 0; i=recv_token(f_in,&data)) {
422 if (i > 0) {
423 if (verbose > 3)
424 fprintf(FERROR,"data recv %d at %d\n",i,(int)offset);
425
426 sum_update(data,i);
427
428 if (write_sparse(fd,data,i) != i) {
429 fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
430 exit_cleanup(1);
431 }
432 offset += i;
433 } else {
434 i = -(i+1);
435 offset2 = i*n;
436 len = n;
437 if (i == count-1 && remainder != 0)
438 len = remainder;
439
440 if (verbose > 3)
441 fprintf(FERROR,"chunk[%d] of size %d at %d offset=%d\n",
442 i,len,(int)offset2,(int)offset);
443
444 map = map_ptr(buf,offset2,len);
445
446 sum_update(map,len);
447
448 if (write_sparse(fd,map,len) != len) {
449 fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
450 exit_cleanup(1);
451 }
452 offset += len;
453 }
454 }
455
456 if (offset > 0 && sparse_end(fd) != 0) {
457 fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
458 exit_cleanup(1);
459 }
460
461 sum_end(file_sum1);
462
463 if (remote_version >= 14) {
464 read_buf(f_in,file_sum2,SUM_LENGTH);
465 if (verbose > 2)
466 fprintf(FERROR,"got file_sum\n");
467 if (memcmp(file_sum1,file_sum2,SUM_LENGTH) != 0)
468 return 0;
469 }
470 return 1;
471}
472
473
474static void delete_one(struct file_struct *f)
475{
476 if (!S_ISDIR(f->mode)) {
477 if (!dry_run && unlink(f->name) != 0) {
478 fprintf(FERROR,"unlink %s : %s\n",f->name,strerror(errno));
479 } else if (verbose) {
480 fprintf(FERROR,"deleting %s\n",f->name);
481 }
482 } else {
483 if (!dry_run && rmdir(f->name) != 0) {
484 if (errno != ENOTEMPTY)
485 fprintf(FERROR,"rmdir %s : %s\n",f->name,strerror(errno));
486 } else if (verbose) {
487 fprintf(FERROR,"deleting directory %s\n",f->name);
488 }
489 }
490}
491
492
493static void delete_files(struct file_list *flist)
494{
495 struct file_list *local_file_list;
496 char *dot=".";
497 int i;
498
499 if (cvs_exclude)
500 add_cvs_excludes();
501
502 if (!(local_file_list = send_file_list(-1,recurse,1,&dot)))
503 return;
504
505 for (i=local_file_list->count;i>=0;i--) {
506 if (!local_file_list->files[i].name) continue;
507 if (-1 == flist_find(flist,&local_file_list->files[i])) {
508 delete_one(&local_file_list->files[i]);
509 }
510 }
511}
512
513static char *cleanup_fname = NULL;
514
515void exit_cleanup(int code)
516{
517 if (cleanup_fname)
518 unlink(cleanup_fname);
519 exit(code);
520}
521
522void sig_int(void)
523{
524 exit_cleanup(1);
525}
526
527
528int recv_files(int f_in,struct file_list *flist,char *local_name,int f_gen)
529{
530 int fd1,fd2;
531 struct stat st;
532 char *fname;
533 char fnametmp[MAXPATHLEN];
534 struct map_struct *buf;
535 int i;
536 struct file_struct *file;
537 int phase=0;
538 int recv_ok;
539
540 if (verbose > 2) {
541 fprintf(FERROR,"recv_files(%d) starting\n",flist->count);
542 }
543
544 if (recurse && delete_mode && !local_name && flist->count>0) {
545 delete_files(flist);
546 }
547
548 while (1)
549 {
550 i = read_int(f_in);
551 if (i == -1) {
552 if (phase==0 && remote_version >= 13) {
553 phase++;
554 csum_length = SUM_LENGTH;
555 if (verbose > 2)
556 fprintf(FERROR,"recv_files phase=%d\n",phase);
557 write_int(f_gen,-1);
558 write_flush(f_gen);
559 continue;
560 }
561 break;
562 }
563
564 file = &flist->files[i];
565 fname = file->name;
566
567 if (local_name)
568 fname = local_name;
569
570 if (dry_run) {
571 if (!am_server && verbose)
572 printf("%s\n",fname);
573 continue;
574 }
575
576 if (verbose > 2)
577 fprintf(FERROR,"recv_files(%s)\n",fname);
578
579 /* open the file */
580 fd1 = open(fname,O_RDONLY);
581
582 if (fd1 != -1 && fstat(fd1,&st) != 0) {
583 fprintf(FERROR,"fstat %s : %s\n",fname,strerror(errno));
584 close(fd1);
585 return -1;
586 }
587
588 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
589 fprintf(FERROR,"%s : not a regular file\n",fname);
590 close(fd1);
591 return -1;
592 }
593
594 if (fd1 != -1 && st.st_size > 0) {
595 buf = map_file(fd1,st.st_size);
596 if (verbose > 2)
597 fprintf(FERROR,"recv mapped %s of size %d\n",fname,(int)st.st_size);
598 } else {
599 buf = NULL;
600 }
601
602 /* open tmp file */
603 sprintf(fnametmp,"%s.XXXXXX",fname);
604 if (NULL == mktemp(fnametmp)) {
605 fprintf(FERROR,"mktemp %s failed\n",fnametmp);
606 return -1;
607 }
608 fd2 = open(fnametmp,O_WRONLY|O_CREAT,file->mode);
609 if (fd2 == -1) {
610 fprintf(FERROR,"open %s : %s\n",fnametmp,strerror(errno));
611 return -1;
612 }
613
614 cleanup_fname = fnametmp;
615
616 if (!am_server && verbose)
617 printf("%s\n",fname);
618
619 /* recv file data */
620 recv_ok = receive_data(f_in,buf,fd2,fname);
621
622 if (fd1 != -1) {
623 unmap_file(buf);
624 close(fd1);
625 }
626 close(fd2);
627
628 if (verbose > 2)
629 fprintf(FERROR,"renaming %s to %s\n",fnametmp,fname);
630
631 if (make_backups) {
632 char fnamebak[MAXPATHLEN];
633 sprintf(fnamebak,"%s%s",fname,backup_suffix);
634 if (rename(fname,fnamebak) != 0 && errno != ENOENT) {
635 fprintf(FERROR,"rename %s %s : %s\n",fname,fnamebak,strerror(errno));
636 exit_cleanup(1);
637 }
638 }
639
640 /* move tmp file over real file */
641 if (rename(fnametmp,fname) != 0) {
642 fprintf(FERROR,"rename %s -> %s : %s\n",
643 fnametmp,fname,strerror(errno));
644 }
645
646 cleanup_fname = NULL;
647
648 set_perms(fname,file,NULL,0);
649
650 if (!recv_ok) {
651 if (verbose > 1)
652 fprintf(FERROR,"redoing %s(%d)\n",fname,i);
653 write_int(f_gen,i);
654 }
655 }
656
657 if (verbose > 2)
658 fprintf(FERROR,"recv_files finished\n");
659
660 return 0;
661}
662
663
664
665off_t send_files(struct file_list *flist,int f_out,int f_in)
666{
667 int fd;
668 struct sum_struct *s;
669 struct map_struct *buf;
670 struct stat st;
671 char fname[MAXPATHLEN];
672 off_t total=0;
673 int i;
674 struct file_struct *file;
675 int phase = 0;
676
677 if (verbose > 2)
678 fprintf(FERROR,"send_files starting\n");
679
680 setup_nonblocking(f_in,f_out);
681
682 while (1)
683 {
684 i = read_int(f_in);
685 if (i == -1) {
686 if (phase==0 && remote_version >= 13) {
687 phase++;
688 csum_length = SUM_LENGTH;
689 write_int(f_out,-1);
690 write_flush(f_out);
691 if (verbose > 2)
692 fprintf(FERROR,"send_files phase=%d\n",phase);
693 continue;
694 }
695 break;
696 }
697
698 file = &flist->files[i];
699
700 fname[0] = 0;
701 if (file->dir) {
702 strcpy(fname,file->dir);
703 strcat(fname,"/");
704 }
705 strcat(fname,file->name);
706
707 if (verbose > 2)
708 fprintf(FERROR,"send_files(%d,%s)\n",i,fname);
709
710 if (dry_run) {
711 if (!am_server && verbose)
712 printf("%s\n",fname);
713 write_int(f_out,i);
714 continue;
715 }
716
717 s = receive_sums(f_in);
718 if (!s) {
719 fprintf(FERROR,"receive_sums failed\n");
720 return -1;
721 }
722
723 fd = open(fname,O_RDONLY);
724 if (fd == -1) {
725 fprintf(FERROR,"send_files failed to open %s: %s\n",
726 fname,strerror(errno));
727 continue;
728 }
729
730 /* map the local file */
731 if (fstat(fd,&st) != 0) {
732 fprintf(FERROR,"fstat failed : %s\n",strerror(errno));
733 return -1;
734 }
735
736 if (st.st_size > 0) {
737 buf = map_file(fd,st.st_size);
738 } else {
739 buf = NULL;
740 }
741
742 if (verbose > 2)
743 fprintf(FERROR,"send_files mapped %s of size %d\n",
744 fname,(int)st.st_size);
745
746 write_int(f_out,i);
747
748 write_int(f_out,s->count);
749 write_int(f_out,s->n);
750 write_int(f_out,s->remainder);
751
752 if (verbose > 2)
753 fprintf(FERROR,"calling match_sums %s\n",fname);
754
755 if (!am_server && verbose)
756 printf("%s\n",fname);
757
758 match_sums(f_out,s,buf,st.st_size);
759 write_flush(f_out);
760
761 unmap_file(buf);
762 close(fd);
763
764 free_sums(s);
765
766 if (verbose > 2)
767 fprintf(FERROR,"sender finished %s\n",fname);
768
769 total += st.st_size;
770 }
771
772 if (verbose > 2)
773 fprintf(FERROR,"send files finished\n");
774
775 match_report();
776
777 write_int(f_out,-1);
778 write_flush(f_out);
779
780 return total;
781}
782
783
784
785void generate_files(int f,struct file_list *flist,char *local_name,int f_recv)
786{
787 int i;
788 int phase=0;
789
790 if (verbose > 2)
791 fprintf(FERROR,"generator starting pid=%d count=%d\n",
792 (int)getpid(),flist->count);
793
794 for (i = 0; i < flist->count; i++) {
795 struct file_struct *file = &flist->files[i];
796 if (!file->name) continue;
797 if (S_ISDIR(file->mode)) {
798 if (dry_run) continue;
799 if (mkdir(file->name,file->mode) != 0 &&
800 errno != EEXIST) {
801 fprintf(FERROR,"mkdir %s : %s\n",
802 file->name,strerror(errno));
803 }
804 continue;
805 }
806 recv_generator(local_name?local_name:file->name,
807 flist,i,f);
808 }
809
810 phase++;
811 csum_length = SUM_LENGTH;
812 ignore_times=1;
813
814 if (verbose > 2)
815 fprintf(FERROR,"generate_files phase=%d\n",phase);
816
817 write_int(f,-1);
818 write_flush(f);
819
820 if (remote_version >= 13) {
821 for (i=read_int(f_recv); i != -1; i=read_int(f_recv)) {
822 struct file_struct *file = &flist->files[i];
823 recv_generator(local_name?local_name:file->name,
824 flist,i,f);
825 }
826
827 phase++;
828 if (verbose > 2)
829 fprintf(FERROR,"generate_files phase=%d\n",phase);
830
831 write_int(f,-1);
832 write_flush(f);
833 }
834
835
836 if (verbose > 2)
837 fprintf(FERROR,"generator wrote %d\n",write_total());
838}
839
840