documented --delete disabling on IO errors
[rsync/rsync.git] / main.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
f0fca04e 22time_t starttime = 0;
a800434a
AT
23
24struct stats stats;
5d6bcd44 25
34ccb63e 26extern int csum_length;
c627d613 27
7a6421fa 28extern int verbose;
c627d613
AT
29
30static void report(int f)
31{
7a6421fa
AT
32 time_t t = time(NULL);
33 extern int am_server;
34 extern int am_sender;
248fbb8c 35 extern int am_daemon;
a800434a 36 extern int do_stats;
7a6421fa 37
248fbb8c 38 if (am_daemon) {
9b73d1c0 39 log_exit(0);
7b372642 40 if (f == -1 || !am_sender) return;
248fbb8c
AT
41 }
42
7b372642
AT
43 if (!verbose) return;
44
ba5e128d
AT
45 if (am_server && !am_sender) return;
46
7a6421fa 47 if (am_server && am_sender) {
a800434a
AT
48 write_longint(f,stats.total_read);
49 write_longint(f,stats.total_written);
50 write_longint(f,stats.total_size);
7a6421fa
AT
51 return;
52 }
c627d613 53
a800434a
AT
54 if (!am_sender) {
55 int64 r;
56 stats.total_written = read_longint(f);
57 r = read_longint(f);
58 stats.total_size = read_longint(f);
59 stats.total_read = r;
60 }
61
62 if (do_stats) {
1f658d42
AT
63 rprintf(FINFO,"\nNumber of files: %d\n", stats.num_files);
64 rprintf(FINFO,"Number of files transferred: %d\n",
a800434a 65 stats.num_transferred_files);
1f658d42 66 rprintf(FINFO,"Total file size: %.0f bytes\n",
a800434a 67 (double)stats.total_size);
1f658d42 68 rprintf(FINFO,"Total transferred file size: %.0f bytes\n",
a800434a 69 (double)stats.total_transferred_size);
1f658d42 70 rprintf(FINFO,"Literal data: %.0f bytes\n",
a800434a 71 (double)stats.literal_data);
1f658d42 72 rprintf(FINFO,"Matched data: %.0f bytes\n",
a800434a 73 (double)stats.matched_data);
1f658d42
AT
74 rprintf(FINFO,"File list size: %d\n", stats.flist_size);
75 rprintf(FINFO,"Total bytes written: %.0f\n",
a800434a 76 (double)stats.total_written);
1f658d42 77 rprintf(FINFO,"Total bytes read: %.0f\n\n",
a800434a 78 (double)stats.total_read);
7a6421fa
AT
79 }
80
1f658d42 81 rprintf(FINFO,"wrote %.0f bytes read %.0f bytes %.2f bytes/sec\n",
a800434a
AT
82 (double)stats.total_written,
83 (double)stats.total_read,
84 (stats.total_written+stats.total_read)/(0.5 + (t-starttime)));
1f658d42 85 rprintf(FINFO,"total size is %.0f speedup is %.2f\n",
a800434a
AT
86 (double)stats.total_size,
87 (1.0*stats.total_size)/(stats.total_written+stats.total_read));
fc8a6b97
AT
88
89 fflush(stdout);
90 fflush(stderr);
c627d613
AT
91}
92
93
e3cd198f 94static int do_cmd(char *cmd,char *machine,char *user,char *path,int *f_in,int *f_out)
c627d613 95{
366345fe
AT
96 char *args[100];
97 int i,argc=0, ret;
98 char *tok,*dir=NULL;
7a6421fa
AT
99 extern int local_server;
100 extern char *rsync_path;
366345fe
AT
101
102 if (!local_server) {
103 if (!cmd)
104 cmd = getenv(RSYNC_RSH_ENV);
105 if (!cmd)
106 cmd = RSYNC_RSH;
107 cmd = strdup(cmd);
108 if (!cmd)
109 goto oom;
110
111 for (tok=strtok(cmd," ");tok;tok=strtok(NULL," ")) {
112 args[argc++] = tok;
113 }
c627d613 114
7b8356d0 115#if HAVE_REMSH
366345fe
AT
116 /* remsh (on HPUX) takes the arguments the other way around */
117 args[argc++] = machine;
118 if (user) {
119 args[argc++] = "-l";
120 args[argc++] = user;
121 }
7b8356d0 122#else
366345fe
AT
123 if (user) {
124 args[argc++] = "-l";
125 args[argc++] = user;
126 }
127 args[argc++] = machine;
7b8356d0 128#endif
c627d613 129
366345fe 130 args[argc++] = rsync_path;
c627d613 131
366345fe
AT
132 server_options(args,&argc);
133 }
c627d613 134
366345fe 135 args[argc++] = ".";
76076c4b 136
366345fe
AT
137 if (path && *path)
138 args[argc++] = path;
c627d613 139
366345fe 140 args[argc] = NULL;
c627d613 141
366345fe 142 if (verbose > 3) {
9486289c 143 rprintf(FINFO,"cmd=");
366345fe 144 for (i=0;i<argc;i++)
9486289c
AT
145 rprintf(FINFO,"%s ",args[i]);
146 rprintf(FINFO,"\n");
366345fe
AT
147 }
148
149 if (local_server) {
150 ret = local_child(argc, args, f_in, f_out);
151 } else {
152 ret = piped_child(args,f_in,f_out);
153 }
c627d613 154
366345fe 155 if (dir) free(dir);
82306bf6 156
366345fe 157 return ret;
c627d613
AT
158
159oom:
366345fe
AT
160 out_of_memory("do_cmd");
161 return 0; /* not reached */
c627d613
AT
162}
163
164
165
166
167static char *get_local_name(struct file_list *flist,char *name)
168{
7a6421fa
AT
169 STRUCT_STAT st;
170 extern int orig_umask;
c627d613 171
c95da96a
AT
172 if (verbose > 2)
173 rprintf(FINFO,"get_local_name count=%d %s\n",
174 flist->count, name);
175
1ff5450d
AT
176 if (do_stat(name,&st) == 0) {
177 if (S_ISDIR(st.st_mode)) {
5243c216
AT
178 if (!push_dir(name, 0)) {
179 rprintf(FERROR,"push_dir %s : %s (1)\n",
1ff5450d
AT
180 name,strerror(errno));
181 exit_cleanup(1);
182 }
183 return NULL;
184 }
185 if (flist->count > 1) {
186 rprintf(FERROR,"ERROR: destination must be a directory when copying more than 1 file\n");
187 exit_cleanup(1);
188 }
189 return name;
190 }
191
192 if (flist->count == 1)
193 return name;
194
195 if (!name)
196 return NULL;
197
198 if (do_mkdir(name,0777 & ~orig_umask) != 0) {
199 rprintf(FERROR,"mkdir %s : %s (1)\n",name,strerror(errno));
200 exit_cleanup(1);
201 } else {
b536f47e
AT
202 if (verbose > 0)
203 rprintf(FINFO,"created directory %s\n",name);
1ff5450d
AT
204 }
205
5243c216
AT
206 if (!push_dir(name, 0)) {
207 rprintf(FERROR,"push_dir %s : %s (2)\n",
208 name,strerror(errno));
1ff5450d
AT
209 exit_cleanup(1);
210 }
211
212 return NULL;
c627d613
AT
213}
214
215
216
217
9486289c 218static void do_server_sender(int f_in, int f_out, int argc,char *argv[])
c627d613 219{
7a6421fa
AT
220 int i;
221 struct file_list *flist;
222 char *dir = argv[0];
223 extern int relative_paths;
7a6421fa 224 extern int recurse;
c627d613 225
7a6421fa
AT
226 if (verbose > 2)
227 rprintf(FINFO,"server_sender starting pid=%d\n",(int)getpid());
c627d613 228
5243c216
AT
229 if (!relative_paths && !push_dir(dir, 0)) {
230 rprintf(FERROR,"push_dir %s: %s (3)\n",dir,strerror(errno));
7a6421fa
AT
231 exit_cleanup(1);
232 }
233 argc--;
234 argv++;
c627d613 235
7a6421fa
AT
236 if (strcmp(dir,".")) {
237 int l = strlen(dir);
238 if (strcmp(dir,"/") == 0)
239 l = 0;
240 for (i=0;i<argc;i++)
241 argv[i] += l+1;
242 }
c627d613 243
7a6421fa
AT
244 if (argc == 0 && recurse) {
245 argc=1;
246 argv--;
247 argv[0] = ".";
248 }
249
3eb38818
AT
250 set_nonblocking(f_out);
251 if (f_in != f_out)
252 set_nonblocking(f_in);
253
7a6421fa 254 flist = send_file_list(f_out,argc,argv);
8d9dc9f9
AT
255 if (!flist || flist->count == 0) {
256 exit_cleanup(0);
257 }
258
7a6421fa
AT
259 send_files(flist,f_out,f_in);
260 report(f_out);
8d9dc9f9 261 io_flush();
7a6421fa 262 exit_cleanup(0);
c627d613
AT
263}
264
265
dc5ddbcc
AT
266static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
267{
d186eb1a
AT
268 int pid;
269 int status=0;
270 int recv_pipe[2];
271 extern int preserve_hard_links;
dc5ddbcc 272
d186eb1a
AT
273 if (preserve_hard_links)
274 init_hard_links(flist);
dc5ddbcc 275
d186eb1a
AT
276 if (pipe(recv_pipe) < 0) {
277 rprintf(FERROR,"pipe failed in do_recv\n");
8d9dc9f9 278 exit_cleanup(1);
d186eb1a 279 }
c6e7fcb4 280
8d9dc9f9 281 io_flush();
c6e7fcb4 282
d186eb1a 283 if ((pid=do_fork()) == 0) {
e08c9610
AT
284 close(recv_pipe[0]);
285 if (f_in != f_out) close(f_out);
286
e1b3d5c4 287 set_nonblocking(f_in);
3eb38818 288 set_nonblocking(recv_pipe[1]);
e1b3d5c4 289
e08c9610 290 recv_files(f_in,flist,local_name,recv_pipe[1]);
ba5e128d 291 report(f_in);
e08c9610 292
8d9dc9f9
AT
293 io_flush();
294 _exit(0);
d186eb1a 295 }
dc5ddbcc 296
e08c9610
AT
297 close(recv_pipe[1]);
298 io_close_input(f_in);
299 if (f_in != f_out) close(f_in);
e1b3d5c4
AT
300
301 set_nonblocking(f_out);
3eb38818 302 set_nonblocking(recv_pipe[0]);
e1b3d5c4 303
b3e10ed7
AT
304 io_start_buffering(f_out);
305
e08c9610 306 generate_files(f_out,flist,local_name,recv_pipe[0]);
8d9dc9f9
AT
307
308 io_flush();
d186eb1a 309 waitpid(pid, &status, 0);
d186eb1a 310 return status;
dc5ddbcc
AT
311}
312
c627d613 313
9486289c 314static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
c627d613 315{
7a6421fa
AT
316 int status;
317 struct file_list *flist;
318 char *local_name=NULL;
319 char *dir = NULL;
320 extern int delete_mode;
321 extern int am_daemon;
f0fca04e 322
7a6421fa
AT
323 if (verbose > 2)
324 rprintf(FINFO,"server_recv(%d) starting pid=%d\n",argc,(int)getpid());
325
7a6421fa
AT
326 if (argc > 0) {
327 dir = argv[0];
328 argc--;
329 argv++;
5243c216
AT
330 if (!am_daemon && !push_dir(dir, 0)) {
331 rprintf(FERROR,"push_dir %s : %s (4)\n",
7a6421fa
AT
332 dir,strerror(errno));
333 exit_cleanup(1);
334 }
335 }
c627d613 336
7a6421fa
AT
337 if (delete_mode)
338 recv_exclude_list(f_in);
c627d613 339
7a6421fa
AT
340 flist = recv_file_list(f_in);
341 if (!flist || flist->count == 0) {
8d9dc9f9 342 rprintf(FERROR,"server_recv: nothing to do\n");
7a6421fa
AT
343 exit_cleanup(1);
344 }
345
346 if (argc > 0) {
347 if (strcmp(dir,".")) {
348 argv[0] += strlen(dir);
349 if (argv[0][0] == '/') argv[0]++;
350 }
351 local_name = get_local_name(flist,argv[0]);
352 }
c627d613 353
7a6421fa
AT
354 status = do_recv(f_in,f_out,flist,local_name);
355 exit_cleanup(status);
c627d613
AT
356}
357
358
9486289c 359void start_server(int f_in, int f_out, int argc, char *argv[])
366345fe 360{
7a6421fa
AT
361 extern int cvs_exclude;
362 extern int am_sender;
363
3eb38818
AT
364 set_nonblocking(f_out);
365 if (f_in != f_out)
366 set_nonblocking(f_in);
367
7a6421fa 368 setup_protocol(f_out, f_in);
3eb38818 369
7a6421fa
AT
370 if (am_sender) {
371 recv_exclude_list(f_in);
372 if (cvs_exclude)
373 add_cvs_excludes();
374 do_server_sender(f_in, f_out, argc, argv);
375 } else {
376 do_server_recv(f_in, f_out, argc, argv);
377 }
378 exit_cleanup(0);
366345fe
AT
379}
380
3591c066 381int client_run(int f_in, int f_out, int pid, int argc, char *argv[])
9486289c
AT
382{
383 struct file_list *flist;
384 int status = 0, status2 = 0;
385 char *local_name = NULL;
7a6421fa 386 extern int am_sender;
f7632fc6 387 extern int list_only;
9486289c
AT
388
389 setup_protocol(f_out,f_in);
390
391 if (am_sender) {
7a6421fa
AT
392 extern int cvs_exclude;
393 extern int delete_mode;
9486289c
AT
394 if (cvs_exclude)
395 add_cvs_excludes();
396 if (delete_mode)
397 send_exclude_list(f_out);
398 flist = send_file_list(f_out,argc,argv);
399 if (verbose > 3)
400 rprintf(FINFO,"file list sent\n");
e1b3d5c4
AT
401
402 set_nonblocking(f_out);
403 if (f_in != f_out)
404 set_nonblocking(f_in);
405
9486289c
AT
406 send_files(flist,f_out,f_in);
407 if (pid != -1) {
408 if (verbose > 3)
8d9dc9f9
AT
409 rprintf(FINFO,"client_run waiting on %d\n",pid);
410 io_flush();
9486289c
AT
411 waitpid(pid, &status, 0);
412 }
413 report(-1);
414 exit_cleanup(status);
415 }
f7632fc6
AT
416
417 if (argc == 0) list_only = 1;
9486289c
AT
418
419 send_exclude_list(f_out);
420
421 flist = recv_file_list(f_in);
422 if (!flist || flist->count == 0) {
8d9dc9f9 423 rprintf(FINFO,"client: nothing to do\n");
9486289c
AT
424 exit_cleanup(0);
425 }
426
427 local_name = get_local_name(flist,argv[0]);
428
429 status2 = do_recv(f_in,f_out,flist,local_name);
430
9486289c 431 if (pid != -1) {
8d9dc9f9
AT
432 if (verbose > 3)
433 rprintf(FINFO,"client_run2 waiting on %d\n",pid);
434 io_flush();
9486289c
AT
435 waitpid(pid, &status, 0);
436 }
437
438 return status | status2;
439}
440
ca6c93f8
AT
441static char *find_colon(char *s)
442{
443 char *p, *p2;
444
445 p = strchr(s,':');
446 if (!p) return NULL;
447
448 /* now check to see if there is a / in the string before the : - if there is then
449 discard the colon on the assumption that the : is part of a filename */
450 p2 = strchr(s,'/');
451 if (p2 && p2 < p) return NULL;
452
453 return p;
454}
9486289c 455
fc8a6b97 456static int start_client(int argc, char *argv[])
5d6bcd44
AT
457{
458 char *p;
459 char *shell_machine = NULL;
460 char *shell_path = NULL;
461 char *shell_user = NULL;
fc8a6b97 462 int pid, ret;
5d6bcd44 463 int f_in,f_out;
7a6421fa
AT
464 extern int local_server;
465 extern int am_sender;
466 extern char *shell_cmd;
5d6bcd44 467
f7632fc6
AT
468 if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0) {
469 char *host, *path;
470
471 host = argv[0] + strlen(URL_PREFIX);
472 p = strchr(host,'/');
473 if (p) {
474 *p = 0;
475 path = p+1;
476 } else {
477 path="";
478 }
479 return start_socket_client(host, path, argc-1, argv+1);
480 }
481
ca6c93f8 482 p = find_colon(argv[0]);
5d6bcd44
AT
483
484 if (p) {
9486289c
AT
485 if (p[1] == ':') {
486 *p = 0;
487 return start_socket_client(argv[0], p+2, argc-1, argv+1);
488 }
3591c066 489
f7632fc6 490 if (argc < 1) {
3591c066
AT
491 usage(FERROR);
492 exit_cleanup(1);
493 }
494
5d6bcd44
AT
495 am_sender = 0;
496 *p = 0;
497 shell_machine = argv[0];
498 shell_path = p+1;
499 argc--;
500 argv++;
501 } else {
502 am_sender = 1;
9486289c 503
ca6c93f8 504 p = find_colon(argv[argc-1]);
5d6bcd44
AT
505 if (!p) {
506 local_server = 1;
9486289c
AT
507 } else if (p[1] == ':') {
508 *p = 0;
509 return start_socket_client(argv[argc-1], p+2, argc-1, argv);
5d6bcd44 510 }
3591c066
AT
511
512 if (argc < 2) {
513 usage(FERROR);
514 exit_cleanup(1);
515 }
9486289c 516
5d6bcd44
AT
517 if (local_server) {
518 shell_machine = NULL;
519 shell_path = argv[argc-1];
520 } else {
521 *p = 0;
522 shell_machine = argv[argc-1];
523 shell_path = p+1;
524 }
525 argc--;
526 }
527
528 if (shell_machine) {
529 p = strchr(shell_machine,'@');
530 if (p) {
531 *p = 0;
532 shell_user = shell_machine;
533 shell_machine = p+1;
534 }
535 }
536
537 if (verbose > 3) {
9486289c 538 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
5d6bcd44
AT
539 shell_cmd?shell_cmd:"",
540 shell_machine?shell_machine:"",
541 shell_user?shell_user:"",
542 shell_path?shell_path:"");
543 }
544
f7632fc6 545 if (!am_sender && argc > 1) {
5d6bcd44
AT
546 usage(FERROR);
547 exit_cleanup(1);
548 }
549
550 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,&f_in,&f_out);
551
fc8a6b97
AT
552 ret = client_run(f_in, f_out, pid, argc, argv);
553
554 fflush(stdout);
555 fflush(stderr);
556
557 return ret;
5d6bcd44
AT
558}
559
366345fe 560
6e4fb64e 561static RETSIGTYPE sigusr1_handler(int val) {
82306bf6
AT
562 exit_cleanup(1);
563}
564
5d6bcd44 565int main(int argc,char *argv[])
7a6421fa
AT
566{
567 extern int am_root;
568 extern int orig_umask;
569 extern int dry_run;
570 extern int am_daemon;
571 extern int am_server;
5d6bcd44 572
7a6421fa 573 signal(SIGUSR1, sigusr1_handler);
5d6bcd44 574
7a6421fa
AT
575 starttime = time(NULL);
576 am_root = (getuid() == 0);
c627d613 577
a800434a
AT
578 memset(&stats, 0, sizeof(stats));
579
df5e03da
AT
580 if (argc < 2) {
581 usage(FERROR);
8d9dc9f9 582 exit_cleanup(1);
df5e03da
AT
583 }
584
7a6421fa
AT
585 /* we set a 0 umask so that correct file permissions can be
586 carried across */
587 orig_umask = (int)umask(0);
5d6bcd44 588
b11ed3b1
AT
589 if (!parse_arguments(argc, argv)) {
590 exit_cleanup(1);
591 }
5d6bcd44 592
7a6421fa
AT
593 argc -= optind;
594 argv += optind;
595 optind = 0;
c627d613 596
7a6421fa
AT
597 signal(SIGCHLD,SIG_IGN);
598 signal(SIGINT,SIGNAL_CAST sig_int);
599 signal(SIGPIPE,SIGNAL_CAST sig_int);
600 signal(SIGHUP,SIGNAL_CAST sig_int);
8638dd48 601 signal(SIGTERM,SIGNAL_CAST sig_int);
6b83141d 602
7a6421fa
AT
603 if (am_daemon) {
604 return daemon_main();
605 }
f0fca04e 606
08ac228f
AT
607 if (argc < 1) {
608 usage(FERROR);
8d9dc9f9 609 exit_cleanup(1);
08ac228f
AT
610 }
611
7a6421fa
AT
612 if (dry_run)
613 verbose = MAX(verbose,1);
c627d613 614
cbbe4892 615#ifndef SUPPORT_LINKS
7a6421fa
AT
616 if (!am_server && preserve_links) {
617 rprintf(FERROR,"ERROR: symbolic links not supported\n");
618 exit_cleanup(1);
619 }
cbbe4892
AT
620#endif
621
7a6421fa
AT
622 if (am_server) {
623 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
624 }
c627d613 625
7a6421fa 626 return start_client(argc, argv);
c627d613 627}
82306bf6 628