- improved filename packing
[rsync/rsync.git] / rsync.c
CommitLineData
c627d613
AT
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 verbose;
23extern int am_server;
24extern int always_checksum;
25extern time_t starttime;
26
27extern char *backup_suffix;
28
29extern int block_size;
30extern int update_only;
31extern int make_backups;
32extern int preserve_links;
33extern int preserve_perms;
34extern int preserve_devices;
35extern int preserve_uid;
36extern int preserve_gid;
37extern int preserve_times;
38extern int dry_run;
39extern int ignore_times;
40extern int recurse;
41extern int delete_mode;
42extern int cvs_exclude;
43
44/*
45 free a sums struct
46 */
47static void free_sums(struct sum_struct *s)
48{
49 if (s->sums) free(s->sums);
50 free(s);
51}
52
53
54
55/*
56 send a sums struct down a fd
57 */
58static void send_sums(struct sum_struct *s,int f_out)
59{
60 int i;
61
62 /* tell the other guy how many we are going to be doing and how many
63 bytes there are in the last chunk */
64 write_int(f_out,s?s->count:0);
65 write_int(f_out,s?s->n:block_size);
66 write_int(f_out,s?s->remainder:0);
67 if (s)
68 for (i=0;i<s->count;i++) {
69 write_int(f_out,s->sums[i].sum1);
70 write_buf(f_out,s->sums[i].sum2,SUM_LENGTH);
71 }
72 write_flush(f_out);
73}
74
75
76/*
77 generate a stream of signatures/checksums that describe a buffer
78
79 generate approximately one checksum every n bytes
80 */
81static struct sum_struct *generate_sums(char *buf,off_t len,int n)
82{
83 int i;
84 struct sum_struct *s;
85 int count;
86 int block_len = n;
87 int remainder = (len%block_len);
88 off_t offset = 0;
89
90 count = (len+(block_len-1))/block_len;
91
92 s = (struct sum_struct *)malloc(sizeof(*s));
93 if (!s) out_of_memory("generate_sums");
94
95 s->count = count;
96 s->remainder = remainder;
97 s->n = n;
98 s->flength = len;
99
100 if (count==0) {
101 s->sums = NULL;
102 return s;
103 }
104
105 if (verbose > 3)
106 fprintf(stderr,"count=%d rem=%d n=%d flength=%d\n",
107 s->count,s->remainder,s->n,(int)s->flength);
108
109 s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count);
110 if (!s->sums) out_of_memory("generate_sums");
111
112 for (i=0;i<count;i++) {
113 int n1 = MIN(len,n);
d9bea2dd 114 char *map = map_ptr(buf,offset,n1);
c627d613 115
d9bea2dd
AT
116 s->sums[i].sum1 = get_checksum1(map,n1);
117 get_checksum2(map,n1,s->sums[i].sum2);
c627d613
AT
118
119 s->sums[i].offset = offset;
120 s->sums[i].len = n1;
121 s->sums[i].i = i;
122
123 if (verbose > 3)
124 fprintf(stderr,"chunk[%d] offset=%d len=%d sum1=%08x\n",
125 i,(int)s->sums[i].offset,s->sums[i].len,s->sums[i].sum1);
126
127 len -= n1;
c627d613
AT
128 offset += n1;
129 }
130
131 return s;
132}
133
134
135/*
136 receive the checksums for a buffer
137 */
138static struct sum_struct *receive_sums(int f)
139{
140 struct sum_struct *s;
141 int i;
142 off_t offset = 0;
143 int block_len;
144
145 s = (struct sum_struct *)malloc(sizeof(*s));
146 if (!s) out_of_memory("receive_sums");
147
148 s->count = read_int(f);
149 s->n = read_int(f);
150 s->remainder = read_int(f);
151 s->sums = NULL;
152
153 if (verbose > 3)
154 fprintf(stderr,"count=%d n=%d rem=%d\n",
155 s->count,s->n,s->remainder);
156
157 block_len = s->n;
158
159 if (s->count == 0)
160 return(s);
161
162 s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count);
163 if (!s->sums) out_of_memory("receive_sums");
164
165 for (i=0;i<s->count;i++) {
166 s->sums[i].sum1 = read_int(f);
167 read_buf(f,s->sums[i].sum2,SUM_LENGTH);
168
169 s->sums[i].offset = offset;
170 s->sums[i].i = i;
171
172 if (i == s->count-1 && s->remainder != 0) {
173 s->sums[i].len = s->remainder;
174 } else {
175 s->sums[i].len = s->n;
176 }
177 offset += s->sums[i].len;
178
179 if (verbose > 3)
180 fprintf(stderr,"chunk[%d] len=%d offset=%d sum1=%08x\n",
181 i,s->sums[i].len,(int)s->sums[i].offset,s->sums[i].sum1);
182 }
183
184 s->flength = offset;
185
186 return s;
187}
188
189
190static void set_perms(char *fname,struct file_struct *file,struct stat *st,
191 int report)
192{
193 int updated = 0;
194 struct stat st2;
195
196 if (dry_run) return;
197
198 if (!st) {
199 if (stat(fname,&st2) != 0) {
200 fprintf(stderr,"stat %s : %s\n",fname,strerror(errno));
201 return;
202 }
203 st = &st2;
204 }
205
206 if (preserve_times && st->st_mtime != file->modtime) {
207 updated = 1;
208 if (set_modtime(fname,file->modtime) != 0) {
209 fprintf(stderr,"failed to set times on %s : %s\n",
210 fname,strerror(errno));
211 return;
212 }
213 }
214
215#ifdef HAVE_CHMOD
216 if (preserve_perms && st->st_mode != file->mode) {
217 updated = 1;
218 if (chmod(fname,file->mode) != 0) {
219 fprintf(stderr,"failed to set permissions on %s : %s\n",
220 fname,strerror(errno));
221 return;
222 }
223 }
224#endif
225
226 if ((preserve_uid && st->st_uid != file->uid) ||
227 (preserve_gid && st->st_gid != file->gid)) {
228 updated = 1;
229 if (chown(fname,
230 preserve_uid?file->uid:-1,
231 preserve_gid?file->gid:-1) != 0) {
232 if (verbose>1 || preserve_uid)
233 fprintf(stderr,"chown %s : %s\n",fname,strerror(errno));
234 return;
235 }
236 }
237
238 if (verbose > 1 && report) {
239 if (updated)
240 fprintf(am_server?stderr:stdout,"%s\n",fname);
241 else
242 fprintf(am_server?stderr:stdout,"%s is uptodate\n",fname);
243 }
244}
245
246
247void recv_generator(char *fname,struct file_list *flist,int i,int f_out)
248{
249 int fd;
250 struct stat st;
251 char *buf;
252 struct sum_struct *s;
253 char sum[SUM_LENGTH];
254 int statret;
255
256 if (verbose > 2)
257 fprintf(stderr,"recv_generator(%s)\n",fname);
258
259 statret = lstat(fname,&st);
260
261#if SUPPORT_LINKS
262 if (preserve_links && S_ISLNK(flist->files[i].mode)) {
263 char lnk[MAXPATHLEN];
264 int l;
265 if (statret == 0) {
266 l = readlink(fname,lnk,MAXPATHLEN-1);
267 if (l > 0) {
268 lnk[l] = 0;
269 if (strcmp(lnk,flist->files[i].link) == 0) {
270 if (verbose > 1)
271 fprintf(am_server?stderr:stdout,"%s is uptodate\n",fname);
272 return;
273 }
274 }
275 }
276 if (!dry_run) unlink(fname);
277 if (!dry_run && symlink(flist->files[i].link,fname) != 0) {
278 fprintf(stderr,"link %s -> %s : %s\n",
279 fname,flist->files[i].link,strerror(errno));
280 } else {
281 if (verbose)
282 fprintf(am_server?stderr:stdout,"%s -> %s\n",fname,flist->files[i].link);
283 }
284 return;
285 }
286#endif
287
288#ifdef HAVE_MKNOD
182dca5c 289 if (preserve_devices && IS_DEVICE(flist->files[i].mode)) {
c627d613
AT
290 if (statret != 0 ||
291 st.st_mode != flist->files[i].mode ||
292 st.st_rdev != flist->files[i].dev) {
293 if (!dry_run) unlink(fname);
294 if (verbose > 2)
295 fprintf(stderr,"mknod(%s,0%o,0x%x)\n",
296 fname,(int)flist->files[i].mode,(int)flist->files[i].dev);
297 if (!dry_run &&
298 mknod(fname,flist->files[i].mode,flist->files[i].dev) != 0) {
299 fprintf(stderr,"mknod %s : %s\n",fname,strerror(errno));
300 } else {
301 set_perms(fname,&flist->files[i],NULL,0);
302 if (verbose)
303 fprintf(am_server?stderr:stdout,"%s\n",fname);
304 }
305 } else {
306 set_perms(fname,&flist->files[i],&st,1);
307 }
308 return;
309 }
310#endif
311
312 if (!S_ISREG(flist->files[i].mode)) {
313 fprintf(stderr,"skipping non-regular file %s\n",fname);
314 return;
315 }
316
317 if (statret == -1) {
318 if (errno == ENOENT) {
319 write_int(f_out,i);
320 if (!dry_run) send_sums(NULL,f_out);
321 } else {
322 if (verbose > 1)
323 fprintf(stderr,"recv_generator failed to open %s\n",fname);
324 }
325 return;
326 }
327
328 if (!S_ISREG(st.st_mode)) {
329 fprintf(stderr,"%s : not a regular file\n",fname);
330 return;
331 }
332
333 if (update_only && st.st_mtime >= flist->files[i].modtime) {
334 if (verbose > 1)
335 fprintf(stderr,"%s is newer\n",fname);
336 return;
337 }
338
339 if (always_checksum && S_ISREG(st.st_mode)) {
340 file_checksum(fname,sum,st.st_size);
341 }
342
343 if (st.st_size == flist->files[i].length &&
344 ((!ignore_times && st.st_mtime == flist->files[i].modtime) ||
345 (always_checksum && S_ISREG(st.st_mode) &&
346 memcmp(sum,flist->files[i].sum,SUM_LENGTH) == 0))) {
347 set_perms(fname,&flist->files[i],&st,1);
348 return;
349 }
350
351 if (dry_run) {
352 write_int(f_out,i);
353 return;
354 }
355
356 /* open the file */
357 fd = open(fname,O_RDONLY);
358
359 if (fd == -1) {
360 fprintf(stderr,"failed to open %s : %s\n",fname,strerror(errno));
361 return;
362 }
363
364 if (st.st_size > 0) {
365 buf = map_file(fd,st.st_size);
c627d613
AT
366 } else {
367 buf = NULL;
368 }
369
370 if (verbose > 3)
371 fprintf(stderr,"mapped %s of size %d\n",fname,(int)st.st_size);
372
373 s = generate_sums(buf,st.st_size,block_size);
374
375 write_int(f_out,i);
376 send_sums(s,f_out);
377 write_flush(f_out);
378
379 close(fd);
380 unmap_file(buf,st.st_size);
381
382 free_sums(s);
383}
384
385
386
387static void receive_data(int f_in,char *buf,int fd,char *fname)
388{
389 int i,n,remainder,len,count;
390 off_t offset = 0;
391 off_t offset2;
392
393 count = read_int(f_in);
394 n = read_int(f_in);
395 remainder = read_int(f_in);
396
397 for (i=read_int(f_in); i != 0; i=read_int(f_in)) {
398 if (i > 0) {
399 if (verbose > 3)
400 fprintf(stderr,"data recv %d at %d\n",i,(int)offset);
401
402 if (read_write(f_in,fd,i) != i) {
403 fprintf(stderr,"write failed on %s : %s\n",fname,strerror(errno));
404 exit(1);
405 }
406 offset += i;
407 } else {
408 i = -(i+1);
409 offset2 = i*n;
410 len = n;
411 if (i == count-1 && remainder != 0)
412 len = remainder;
413
414 if (verbose > 3)
415 fprintf(stderr,"chunk[%d] of size %d at %d offset=%d\n",
416 i,len,(int)offset2,(int)offset);
417
d9bea2dd 418 if (write(fd,map_ptr(buf,offset2,len),len) != len) {
c627d613
AT
419 fprintf(stderr,"write failed on %s : %s\n",fname,strerror(errno));
420 exit(1);
421 }
422 offset += len;
423 }
424 }
425}
426
427
428static void delete_one(struct file_struct *f)
429{
430 if (!S_ISDIR(f->mode)) {
431 if (!dry_run && unlink(f->name) != 0) {
432 fprintf(stderr,"unlink %s : %s\n",f->name,strerror(errno));
433 } else if (verbose) {
434 fprintf(stderr,"deleting %s\n",f->name);
435 }
436 } else {
437 if (!dry_run && rmdir(f->name) != 0) {
438 if (errno != ENOTEMPTY)
439 fprintf(stderr,"rmdir %s : %s\n",f->name,strerror(errno));
440 } else if (verbose) {
441 fprintf(stderr,"deleting directory %s\n",f->name);
442 }
443 }
444}
445
446
447static void delete_files(struct file_list *flist)
448{
449 struct file_list *local_file_list;
450 char *dot=".";
451 int i;
452
4fe159a8 453 if (cvs_exclude)
79fbb6f5 454 add_cvs_excludes();
4fe159a8 455
c627d613
AT
456 if (!(local_file_list = send_file_list(-1,recurse,1,&dot)))
457 return;
458
459 for (i=local_file_list->count;i>=0;i--) {
460 if (!local_file_list->files[i].name) continue;
461 if (-1 == flist_find(flist,&local_file_list->files[i])) {
462 delete_one(&local_file_list->files[i]);
463 }
464 }
465}
466
467static char *cleanup_fname = NULL;
468
ac1eb754 469void sig_int(void)
c627d613
AT
470{
471 if (cleanup_fname)
472 unlink(cleanup_fname);
473 exit(1);
474}
475
476
477int recv_files(int f_in,struct file_list *flist,char *local_name)
478{
479 int fd1,fd2;
480 struct stat st;
481 char *fname;
482 char fnametmp[MAXPATHLEN];
483 char *buf;
484 int i;
485
981791bd 486 if (verbose > 2) {
c627d613 487 fprintf(stderr,"recv_files(%d) starting\n",flist->count);
981791bd 488 }
c627d613
AT
489
490 if (recurse && delete_mode && !local_name && flist->count>0) {
491 delete_files(flist);
492 }
493
494 while (1)
495 {
496 i = read_int(f_in);
497 if (i == -1) break;
498
499 fname = flist->files[i].name;
500
501 if (local_name)
502 fname = local_name;
503
504 if (dry_run) {
505 if (!am_server && verbose)
506 printf("%s\n",fname);
507 continue;
508 }
509
510 if (verbose > 2)
511 fprintf(stderr,"recv_files(%s)\n",fname);
512
513 /* open the file */
ac1eb754 514 fd1 = open(fname,O_RDONLY);
c627d613 515
ac1eb754 516 if (fd1 != -1 && fstat(fd1,&st) != 0) {
c627d613
AT
517 fprintf(stderr,"fstat %s : %s\n",fname,strerror(errno));
518 close(fd1);
519 return -1;
520 }
521
ac1eb754 522 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
c627d613
AT
523 fprintf(stderr,"%s : not a regular file\n",fname);
524 close(fd1);
525 return -1;
526 }
527
ac1eb754 528 if (fd1 != -1 && st.st_size > 0) {
c627d613 529 buf = map_file(fd1,st.st_size);
c627d613
AT
530 } else {
531 buf = NULL;
532 }
533
534 if (verbose > 2)
535 fprintf(stderr,"mapped %s of size %d\n",fname,(int)st.st_size);
536
537 /* open tmp file */
538 sprintf(fnametmp,"%s.XXXXXX",fname);
539 if (NULL == mktemp(fnametmp)) {
540 fprintf(stderr,"mktemp %s failed\n",fnametmp);
541 return -1;
542 }
d9bea2dd 543 fd2 = open(fnametmp,O_WRONLY|O_CREAT,flist->files[i].mode);
c627d613
AT
544 if (fd2 == -1) {
545 fprintf(stderr,"open %s : %s\n",fnametmp,strerror(errno));
546 return -1;
547 }
548
549 cleanup_fname = fnametmp;
550
551 if (!am_server && verbose)
552 printf("%s\n",fname);
553
554 /* recv file data */
555 receive_data(f_in,buf,fd2,fname);
556
981791bd
AT
557 if (fd1 != -1) {
558 unmap_file(buf,st.st_size);
559 close(fd1);
560 }
c627d613
AT
561 close(fd2);
562
563 if (verbose > 2)
564 fprintf(stderr,"renaming %s to %s\n",fnametmp,fname);
565
566 if (make_backups) {
567 char fnamebak[MAXPATHLEN];
568 sprintf(fnamebak,"%s%s",fname,backup_suffix);
ac1eb754 569 if (rename(fname,fnamebak) != 0 && errno != ENOENT) {
c627d613
AT
570 fprintf(stderr,"rename %s %s : %s\n",fname,fnamebak,strerror(errno));
571 exit(1);
572 }
573 }
574
575 /* move tmp file over real file */
576 if (rename(fnametmp,fname) != 0) {
577 fprintf(stderr,"rename %s -> %s : %s\n",
578 fnametmp,fname,strerror(errno));
579 }
580
581 cleanup_fname = NULL;
582
c627d613
AT
583 set_perms(fname,&flist->files[i],NULL,0);
584 }
585
586 if (verbose > 2)
587 fprintf(stderr,"recv_files finished\n");
588
589 return 0;
590}
591
592
593
594off_t send_files(struct file_list *flist,int f_out,int f_in)
595{
596 int fd;
597 struct sum_struct *s;
598 char *buf;
599 struct stat st;
600 char fname[MAXPATHLEN];
601 off_t total=0;
602 int i;
603
604 if (verbose > 2)
605 fprintf(stderr,"send_files starting\n");
606
720b47f2
AT
607 setup_nonblocking(f_in,f_out);
608
c627d613
AT
609 while (1)
610 {
611 i = read_int(f_in);
612 if (i == -1) break;
613
614 fname[0] = 0;
615 if (flist->files[i].dir) {
616 strcpy(fname,flist->files[i].dir);
617 strcat(fname,"/");
618 }
619 strcat(fname,flist->files[i].name);
620
621 if (verbose > 2)
622 fprintf(stderr,"send_files(%d,%s)\n",i,fname);
623
624 if (dry_run) {
625 if (!am_server && verbose)
626 printf("%s\n",fname);
627 write_int(f_out,i);
628 continue;
629 }
630
631 s = receive_sums(f_in);
632 if (!s) {
633 fprintf(stderr,"receive_sums failed\n");
634 return -1;
635 }
636
637 fd = open(fname,O_RDONLY);
638 if (fd == -1) {
639 fprintf(stderr,"send_files failed to open %s: %s\n",
640 fname,strerror(errno));
641 continue;
642 }
643
644 /* map the local file */
645 if (fstat(fd,&st) != 0) {
646 fprintf(stderr,"fstat failed : %s\n",strerror(errno));
647 return -1;
648 }
649
650 if (st.st_size > 0) {
651 buf = map_file(fd,st.st_size);
c627d613
AT
652 } else {
653 buf = NULL;
654 }
655
656 if (verbose > 2)
657 fprintf(stderr,"send_files mapped %s of size %d\n",
658 fname,(int)st.st_size);
659
660 write_int(f_out,i);
661
662 write_int(f_out,s->count);
663 write_int(f_out,s->n);
664 write_int(f_out,s->remainder);
665
666 if (verbose > 2)
667 fprintf(stderr,"calling match_sums %s\n",fname);
668
669 if (!am_server && verbose)
670 printf("%s\n",fname);
671
720b47f2 672 match_sums(f_out,s,buf,st.st_size);
c627d613
AT
673 write_flush(f_out);
674
675 unmap_file(buf,st.st_size);
676 close(fd);
677
678 free_sums(s);
679
680 if (verbose > 2)
681 fprintf(stderr,"sender finished %s\n",fname);
682
683 total += st.st_size;
684 }
685
686 match_report();
687
688 write_int(f_out,-1);
689 write_flush(f_out);
690
691 return total;
692}
693
694
695
696void generate_files(int f,struct file_list *flist,char *local_name)
697{
698 int i;
699
700 if (verbose > 2)
701 fprintf(stderr,"generator starting pid=%d count=%d\n",
702 (int)getpid(),flist->count);
703
704 for (i = 0; i < flist->count; i++) {
705 if (!flist->files[i].name) continue;
706 if (S_ISDIR(flist->files[i].mode)) {
707 if (dry_run) continue;
708 if (mkdir(flist->files[i].name,flist->files[i].mode) != 0 &&
709 errno != EEXIST) {
710 fprintf(stderr,"mkdir %s : %s\n",
711 flist->files[i].name,strerror(errno));
712 }
713 continue;
714 }
715 recv_generator(local_name?local_name:flist->files[i].name,
716 flist,i,f);
717 }
718 write_int(f,-1);
719 write_flush(f);
720 if (verbose > 2)
721 fprintf(stderr,"generator wrote %d\n",write_total());
722}