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