check for null unmap
[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
43a481dc
AT
22extern int csum_length;
23
c627d613
AT
24extern int verbose;
25extern int am_server;
26extern int always_checksum;
27extern time_t starttime;
28
c6e7fcb4
AT
29extern int remote_version;
30
c627d613
AT
31extern char *backup_suffix;
32
33extern int block_size;
34extern int update_only;
35extern int make_backups;
36extern int preserve_links;
dc5ddbcc 37extern int preserve_hard_links;
c627d613
AT
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);
43a481dc 75 write_buf(f_out,s->sums[i].sum2,csum_length);
c627d613
AT
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 */
c6e7fcb4 86static struct sum_struct *generate_sums(struct map_struct *buf,off_t len,int n)
c627d613
AT
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)
dc5ddbcc 111 fprintf(FERROR,"count=%d rem=%d n=%d flength=%d\n",
c627d613
AT
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);
d9bea2dd 119 char *map = map_ptr(buf,offset,n1);
c627d613 120
d9bea2dd
AT
121 s->sums[i].sum1 = get_checksum1(map,n1);
122 get_checksum2(map,n1,s->sums[i].sum2);
c627d613
AT
123
124 s->sums[i].offset = offset;
125 s->sums[i].len = n1;
126 s->sums[i].i = i;
127
128 if (verbose > 3)
dc5ddbcc 129 fprintf(FERROR,"chunk[%d] offset=%d len=%d sum1=%08x\n",
c627d613
AT
130 i,(int)s->sums[i].offset,s->sums[i].len,s->sums[i].sum1);
131
132 len -= n1;
c627d613
AT
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)
dc5ddbcc 159 fprintf(FERROR,"count=%d n=%d rem=%d\n",
c627d613
AT
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);
43a481dc 172 read_buf(f,s->sums[i].sum2,csum_length);
c627d613
AT
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)
dc5ddbcc 185 fprintf(FERROR,"chunk[%d] len=%d offset=%d sum1=%08x\n",
c627d613
AT
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) {
dc5ddbcc 205 fprintf(FERROR,"stat %s : %s\n",fname,strerror(errno));
c627d613
AT
206 return;
207 }
208 st = &st2;
209 }
210
7bec6a5c
AT
211 if (preserve_times && !S_ISLNK(st->st_mode) &&
212 st->st_mtime != file->modtime) {
c627d613
AT
213 updated = 1;
214 if (set_modtime(fname,file->modtime) != 0) {
dc5ddbcc 215 fprintf(FERROR,"failed to set times on %s : %s\n",
c627d613
AT
216 fname,strerror(errno));
217 return;
218 }
219 }
220
221#ifdef HAVE_CHMOD
7bec6a5c
AT
222 if (preserve_perms && !S_ISLNK(st->st_mode) &&
223 st->st_mode != file->mode) {
c627d613
AT
224 updated = 1;
225 if (chmod(fname,file->mode) != 0) {
dc5ddbcc 226 fprintf(FERROR,"failed to set permissions on %s : %s\n",
c627d613
AT
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)
dc5ddbcc 240 fprintf(FERROR,"chown %s : %s\n",fname,strerror(errno));
c627d613
AT
241 return;
242 }
243 }
244
245 if (verbose > 1 && report) {
246 if (updated)
dc5ddbcc 247 fprintf(FINFO,"%s\n",fname);
c627d613 248 else
dc5ddbcc 249 fprintf(FINFO,"%s is uptodate\n",fname);
c627d613
AT
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;
c6e7fcb4 258 struct map_struct *buf;
c627d613
AT
259 struct sum_struct *s;
260 char sum[SUM_LENGTH];
261 int statret;
dc5ddbcc 262 struct file_struct *file = &flist->files[i];
c627d613
AT
263
264 if (verbose > 2)
9e31c482 265 fprintf(FERROR,"recv_generator(%s,%d)\n",fname,i);
c627d613
AT
266
267 statret = lstat(fname,&st);
268
269#if SUPPORT_LINKS
dc5ddbcc 270 if (preserve_links && S_ISLNK(file->mode)) {
c627d613
AT
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;
dc5ddbcc
AT
277 if (strcmp(lnk,file->link) == 0) {
278 set_perms(fname,file,&st,1);
c627d613
AT
279 return;
280 }
281 }
282 }
283 if (!dry_run) unlink(fname);
dc5ddbcc
AT
284 if (!dry_run && symlink(file->link,fname) != 0) {
285 fprintf(FERROR,"link %s -> %s : %s\n",
286 fname,file->link,strerror(errno));
c627d613 287 } else {
dc5ddbcc 288 set_perms(fname,file,NULL,0);
c627d613 289 if (verbose)
dc5ddbcc
AT
290 fprintf(FINFO,"%s -> %s\n",
291 fname,file->link);
c627d613
AT
292 }
293 return;
294 }
295#endif
296
297#ifdef HAVE_MKNOD
dc5ddbcc 298 if (preserve_devices && IS_DEVICE(file->mode)) {
c627d613 299 if (statret != 0 ||
dc5ddbcc
AT
300 st.st_mode != file->mode ||
301 st.st_rdev != file->rdev) {
c627d613
AT
302 if (!dry_run) unlink(fname);
303 if (verbose > 2)
dc5ddbcc
AT
304 fprintf(FERROR,"mknod(%s,0%o,0x%x)\n",
305 fname,(int)file->mode,(int)file->rdev);
c627d613 306 if (!dry_run &&
dc5ddbcc
AT
307 mknod(fname,file->mode,file->rdev) != 0) {
308 fprintf(FERROR,"mknod %s : %s\n",fname,strerror(errno));
c627d613 309 } else {
dc5ddbcc 310 set_perms(fname,file,NULL,0);
c627d613 311 if (verbose)
dc5ddbcc 312 fprintf(FINFO,"%s\n",fname);
c627d613
AT
313 }
314 } else {
dc5ddbcc 315 set_perms(fname,file,&st,1);
c627d613
AT
316 }
317 return;
318 }
319#endif
320
dc5ddbcc
AT
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);
c627d613
AT
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)
dc5ddbcc 338 fprintf(FERROR,"recv_generator failed to open %s\n",fname);
c627d613
AT
339 }
340 return;
341 }
342
343 if (!S_ISREG(st.st_mode)) {
dc5ddbcc 344 fprintf(FERROR,"%s : not a regular file\n",fname);
c627d613
AT
345 return;
346 }
347
dc5ddbcc 348 if (update_only && st.st_mtime >= file->modtime) {
c627d613 349 if (verbose > 1)
dc5ddbcc 350 fprintf(FERROR,"%s is newer\n",fname);
c627d613
AT
351 return;
352 }
353
354 if (always_checksum && S_ISREG(st.st_mode)) {
355 file_checksum(fname,sum,st.st_size);
356 }
357
dc5ddbcc
AT
358 if (st.st_size == file->length &&
359 ((!ignore_times && st.st_mtime == file->modtime) ||
c627d613 360 (always_checksum && S_ISREG(st.st_mode) &&
dc5ddbcc
AT
361 memcmp(sum,file->sum,csum_length) == 0))) {
362 set_perms(fname,file,&st,1);
c627d613
AT
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) {
dc5ddbcc 375 fprintf(FERROR,"failed to open %s : %s\n",fname,strerror(errno));
c627d613
AT
376 return;
377 }
378
379 if (st.st_size > 0) {
380 buf = map_file(fd,st.st_size);
c627d613
AT
381 } else {
382 buf = NULL;
383 }
384
385 if (verbose > 3)
9e31c482 386 fprintf(FERROR,"gen mapped %s of size %d\n",fname,(int)st.st_size);
c627d613
AT
387
388 s = generate_sums(buf,st.st_size,block_size);
389
9e31c482
AT
390 if (verbose > 2)
391 fprintf(FERROR,"sending sums for %d\n",i);
392
c627d613
AT
393 write_int(f_out,i);
394 send_sums(s,f_out);
395 write_flush(f_out);
396
397 close(fd);
1cdc8b50 398 if (buf) unmap_file(buf);
c627d613
AT
399
400 free_sums(s);
401}
402
403
404
9e31c482 405static int receive_data(int f_in,struct map_struct *buf,int fd,char *fname)
c627d613
AT
406{
407 int i,n,remainder,len,count;
408 off_t offset = 0;
409 off_t offset2;
70d794dc 410 char *data;
9e31c482
AT
411 static char file_sum1[SUM_LENGTH];
412 static char file_sum2[SUM_LENGTH];
413 char *map=NULL;
c627d613
AT
414
415 count = read_int(f_in);
416 n = read_int(f_in);
417 remainder = read_int(f_in);
418
9e31c482
AT
419 sum_init();
420
70d794dc 421 for (i=recv_token(f_in,&data); i != 0; i=recv_token(f_in,&data)) {
c627d613
AT
422 if (i > 0) {
423 if (verbose > 3)
dc5ddbcc 424 fprintf(FERROR,"data recv %d at %d\n",i,(int)offset);
c627d613 425
9e31c482
AT
426 sum_update(data,i);
427
70d794dc 428 if (write_sparse(fd,data,i) != i) {
dc5ddbcc 429 fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
34ccb63e 430 exit_cleanup(1);
c627d613
AT
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)
dc5ddbcc 441 fprintf(FERROR,"chunk[%d] of size %d at %d offset=%d\n",
c627d613
AT
442 i,len,(int)offset2,(int)offset);
443
9e31c482
AT
444 map = map_ptr(buf,offset2,len);
445
446 sum_update(map,len);
447
448 if (write_sparse(fd,map,len) != len) {
dc5ddbcc 449 fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
34ccb63e 450 exit_cleanup(1);
c627d613
AT
451 }
452 offset += len;
453 }
454 }
7bec6a5c
AT
455
456 if (offset > 0 && sparse_end(fd) != 0) {
dc5ddbcc 457 fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
34ccb63e 458 exit_cleanup(1);
7bec6a5c 459 }
9e31c482
AT
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;
c627d613
AT
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) {
dc5ddbcc 478 fprintf(FERROR,"unlink %s : %s\n",f->name,strerror(errno));
c627d613 479 } else if (verbose) {
dc5ddbcc 480 fprintf(FERROR,"deleting %s\n",f->name);
c627d613
AT
481 }
482 } else {
483 if (!dry_run && rmdir(f->name) != 0) {
484 if (errno != ENOTEMPTY)
dc5ddbcc 485 fprintf(FERROR,"rmdir %s : %s\n",f->name,strerror(errno));
c627d613 486 } else if (verbose) {
dc5ddbcc 487 fprintf(FERROR,"deleting directory %s\n",f->name);
c627d613
AT
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
4fe159a8 499 if (cvs_exclude)
79fbb6f5 500 add_cvs_excludes();
4fe159a8 501
c627d613
AT
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
34ccb63e 515void exit_cleanup(int code)
c627d613
AT
516{
517 if (cleanup_fname)
518 unlink(cleanup_fname);
34ccb63e
AT
519 exit(code);
520}
521
522void sig_int(void)
523{
524 exit_cleanup(1);
c627d613
AT
525}
526
527
c6e7fcb4 528int recv_files(int f_in,struct file_list *flist,char *local_name,int f_gen)
c627d613
AT
529{
530 int fd1,fd2;
531 struct stat st;
532 char *fname;
533 char fnametmp[MAXPATHLEN];
c6e7fcb4 534 struct map_struct *buf;
c627d613 535 int i;
dc5ddbcc 536 struct file_struct *file;
c6e7fcb4 537 int phase=0;
9e31c482 538 int recv_ok;
c627d613 539
981791bd 540 if (verbose > 2) {
dc5ddbcc 541 fprintf(FERROR,"recv_files(%d) starting\n",flist->count);
981791bd 542 }
c627d613
AT
543
544 if (recurse && delete_mode && !local_name && flist->count>0) {
545 delete_files(flist);
546 }
547
548 while (1)
9e31c482 549 {
c627d613 550 i = read_int(f_in);
c6e7fcb4
AT
551 if (i == -1) {
552 if (phase==0 && remote_version >= 13) {
553 phase++;
9e31c482
AT
554 csum_length = SUM_LENGTH;
555 if (verbose > 2)
556 fprintf(FERROR,"recv_files phase=%d\n",phase);
c6e7fcb4
AT
557 write_int(f_gen,-1);
558 write_flush(f_gen);
559 continue;
560 }
561 break;
562 }
c627d613 563
dc5ddbcc
AT
564 file = &flist->files[i];
565 fname = file->name;
c627d613
AT
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)
dc5ddbcc 577 fprintf(FERROR,"recv_files(%s)\n",fname);
c627d613
AT
578
579 /* open the file */
ac1eb754 580 fd1 = open(fname,O_RDONLY);
c627d613 581
ac1eb754 582 if (fd1 != -1 && fstat(fd1,&st) != 0) {
dc5ddbcc 583 fprintf(FERROR,"fstat %s : %s\n",fname,strerror(errno));
c627d613
AT
584 close(fd1);
585 return -1;
586 }
587
ac1eb754 588 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
dc5ddbcc 589 fprintf(FERROR,"%s : not a regular file\n",fname);
c627d613
AT
590 close(fd1);
591 return -1;
592 }
593
ac1eb754 594 if (fd1 != -1 && st.st_size > 0) {
c627d613 595 buf = map_file(fd1,st.st_size);
9e31c482
AT
596 if (verbose > 2)
597 fprintf(FERROR,"recv mapped %s of size %d\n",fname,(int)st.st_size);
c627d613
AT
598 } else {
599 buf = NULL;
600 }
601
c627d613
AT
602 /* open tmp file */
603 sprintf(fnametmp,"%s.XXXXXX",fname);
604 if (NULL == mktemp(fnametmp)) {
dc5ddbcc 605 fprintf(FERROR,"mktemp %s failed\n",fnametmp);
c627d613
AT
606 return -1;
607 }
dc5ddbcc 608 fd2 = open(fnametmp,O_WRONLY|O_CREAT,file->mode);
c627d613 609 if (fd2 == -1) {
dc5ddbcc 610 fprintf(FERROR,"open %s : %s\n",fnametmp,strerror(errno));
c627d613
AT
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 */
9e31c482 620 recv_ok = receive_data(f_in,buf,fd2,fname);
c627d613 621
981791bd 622 if (fd1 != -1) {
1cdc8b50 623 if (buf) unmap_file(buf);
981791bd
AT
624 close(fd1);
625 }
c627d613
AT
626 close(fd2);
627
628 if (verbose > 2)
dc5ddbcc 629 fprintf(FERROR,"renaming %s to %s\n",fnametmp,fname);
c627d613
AT
630
631 if (make_backups) {
632 char fnamebak[MAXPATHLEN];
633 sprintf(fnamebak,"%s%s",fname,backup_suffix);
ac1eb754 634 if (rename(fname,fnamebak) != 0 && errno != ENOENT) {
dc5ddbcc 635 fprintf(FERROR,"rename %s %s : %s\n",fname,fnamebak,strerror(errno));
34ccb63e 636 exit_cleanup(1);
c627d613
AT
637 }
638 }
639
640 /* move tmp file over real file */
641 if (rename(fnametmp,fname) != 0) {
dc5ddbcc 642 fprintf(FERROR,"rename %s -> %s : %s\n",
c627d613
AT
643 fnametmp,fname,strerror(errno));
644 }
645
646 cleanup_fname = NULL;
647
dc5ddbcc 648 set_perms(fname,file,NULL,0);
9e31c482
AT
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 }
c627d613
AT
655 }
656
657 if (verbose > 2)
dc5ddbcc 658 fprintf(FERROR,"recv_files finished\n");
c627d613
AT
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;
c6e7fcb4 669 struct map_struct *buf;
c627d613
AT
670 struct stat st;
671 char fname[MAXPATHLEN];
672 off_t total=0;
673 int i;
dc5ddbcc 674 struct file_struct *file;
c6e7fcb4 675 int phase = 0;
c627d613
AT
676
677 if (verbose > 2)
dc5ddbcc 678 fprintf(FERROR,"send_files starting\n");
c627d613 679
720b47f2
AT
680 setup_nonblocking(f_in,f_out);
681
c627d613
AT
682 while (1)
683 {
684 i = read_int(f_in);
c6e7fcb4
AT
685 if (i == -1) {
686 if (phase==0 && remote_version >= 13) {
687 phase++;
9e31c482 688 csum_length = SUM_LENGTH;
c6e7fcb4
AT
689 write_int(f_out,-1);
690 write_flush(f_out);
9e31c482
AT
691 if (verbose > 2)
692 fprintf(FERROR,"send_files phase=%d\n",phase);
c6e7fcb4
AT
693 continue;
694 }
695 break;
696 }
c627d613 697
dc5ddbcc
AT
698 file = &flist->files[i];
699
c627d613 700 fname[0] = 0;
dc5ddbcc
AT
701 if (file->dir) {
702 strcpy(fname,file->dir);
c627d613
AT
703 strcat(fname,"/");
704 }
dc5ddbcc 705 strcat(fname,file->name);
c627d613
AT
706
707 if (verbose > 2)
dc5ddbcc 708 fprintf(FERROR,"send_files(%d,%s)\n",i,fname);
c627d613
AT
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) {
dc5ddbcc 719 fprintf(FERROR,"receive_sums failed\n");
c627d613
AT
720 return -1;
721 }
722
723 fd = open(fname,O_RDONLY);
724 if (fd == -1) {
dc5ddbcc 725 fprintf(FERROR,"send_files failed to open %s: %s\n",
c627d613
AT
726 fname,strerror(errno));
727 continue;
728 }
729
730 /* map the local file */
731 if (fstat(fd,&st) != 0) {
dc5ddbcc 732 fprintf(FERROR,"fstat failed : %s\n",strerror(errno));
c627d613
AT
733 return -1;
734 }
735
736 if (st.st_size > 0) {
737 buf = map_file(fd,st.st_size);
c627d613
AT
738 } else {
739 buf = NULL;
740 }
741
742 if (verbose > 2)
dc5ddbcc 743 fprintf(FERROR,"send_files mapped %s of size %d\n",
c627d613
AT
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)
dc5ddbcc 753 fprintf(FERROR,"calling match_sums %s\n",fname);
c627d613
AT
754
755 if (!am_server && verbose)
756 printf("%s\n",fname);
757
720b47f2 758 match_sums(f_out,s,buf,st.st_size);
c627d613
AT
759 write_flush(f_out);
760
1cdc8b50 761 if (buf) unmap_file(buf);
c627d613
AT
762 close(fd);
763
764 free_sums(s);
765
766 if (verbose > 2)
dc5ddbcc 767 fprintf(FERROR,"sender finished %s\n",fname);
c627d613
AT
768
769 total += st.st_size;
770 }
771
dc5ddbcc
AT
772 if (verbose > 2)
773 fprintf(FERROR,"send files finished\n");
774
c627d613
AT
775 match_report();
776
777 write_int(f_out,-1);
778 write_flush(f_out);
779
780 return total;
781}
782
783
784
c6e7fcb4 785void generate_files(int f,struct file_list *flist,char *local_name,int f_recv)
c627d613
AT
786{
787 int i;
9e31c482 788 int phase=0;
c627d613
AT
789
790 if (verbose > 2)
dc5ddbcc 791 fprintf(FERROR,"generator starting pid=%d count=%d\n",
c627d613
AT
792 (int)getpid(),flist->count);
793
794 for (i = 0; i < flist->count; i++) {
dc5ddbcc
AT
795 struct file_struct *file = &flist->files[i];
796 if (!file->name) continue;
797 if (S_ISDIR(file->mode)) {
c627d613 798 if (dry_run) continue;
dc5ddbcc 799 if (mkdir(file->name,file->mode) != 0 &&
c627d613 800 errno != EEXIST) {
dc5ddbcc
AT
801 fprintf(FERROR,"mkdir %s : %s\n",
802 file->name,strerror(errno));
c627d613
AT
803 }
804 continue;
805 }
dc5ddbcc 806 recv_generator(local_name?local_name:file->name,
c627d613
AT
807 flist,i,f);
808 }
c6e7fcb4 809
9e31c482
AT
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
c627d613
AT
817 write_int(f,-1);
818 write_flush(f);
c6e7fcb4
AT
819
820 if (remote_version >= 13) {
c6e7fcb4
AT
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
9e31c482
AT
827 phase++;
828 if (verbose > 2)
829 fprintf(FERROR,"generate_files phase=%d\n",phase);
830
c6e7fcb4
AT
831 write_int(f,-1);
832 write_flush(f);
833 }
834
835
c627d613 836 if (verbose > 2)
dc5ddbcc 837 fprintf(FERROR,"generator wrote %d\n",write_total());
c627d613 838}
dc5ddbcc
AT
839
840