New function: who_am_i() returns "sender", "receiver", or "generator".
[rsync/rsync.git] / main.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2
3 Copyright (C) 1996-2001 by Andrew Tridgell <tridge@samba.org>
4 Copyright (C) Paul Mackerras 1996
5 Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20*/
21
22#include "rsync.h"
23
24time_t starttime = 0;
25
26extern struct stats stats;
27extern int am_root;
28extern int am_server;
29extern int am_sender;
30extern int am_daemon;
31extern int verbose;
32extern int blocking_io;
33extern int cvs_exclude;
34extern int delete_mode;
35extern int delete_excluded;
36extern int delete_after;
37extern int daemon_over_rsh;
38extern int do_stats;
39extern int dry_run;
40extern int list_only;
41extern int local_server;
42extern int log_got_error;
43extern int module_id;
44extern int orig_umask;
45extern int preserve_hard_links;
46extern int protocol_version;
47extern int recurse;
48extern int relative_paths;
49extern int rsync_port;
50extern int read_batch;
51extern int write_batch;
52extern int filesfrom_fd;
53extern pid_t cleanup_child_pid;
54extern char *files_from;
55extern char *remote_filesfrom_file;
56extern char *rsync_path;
57extern char *shell_cmd;
58extern struct file_list *batch_flist;
59
60/* there's probably never more than at most 2 outstanding child processes,
61 * but set it higher just in case.
62 */
63#define MAXCHILDPROCS 5
64
65struct pid_status {
66 pid_t pid;
67 int status;
68} pid_stat_table[MAXCHILDPROCS];
69
70static void show_malloc_stats(void);
71
72/****************************************************************************
73wait for a process to exit, calling io_flush while waiting
74****************************************************************************/
75void wait_process(pid_t pid, int *status)
76{
77 pid_t waited_pid;
78 int cnt;
79
80 while ((waited_pid = waitpid(pid, status, WNOHANG)) == 0) {
81 msleep(20);
82 io_flush(FULL_FLUSH);
83 }
84
85 if ((waited_pid == -1) && (errno == ECHILD)) {
86 /* status of requested child no longer available.
87 * check to see if it was processed by the sigchld_handler.
88 */
89 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
90 if (pid == pid_stat_table[cnt].pid) {
91 *status = pid_stat_table[cnt].status;
92 pid_stat_table[cnt].pid = 0;
93 break;
94 }
95 }
96 }
97
98 /* TODO: If the child exited on a signal, then log an
99 * appropriate error message. Perhaps we should also accept a
100 * message describing the purpose of the child. Also indicate
101 * this to the caller so that thhey know something went
102 * wrong. */
103 *status = WEXITSTATUS(*status);
104}
105
106static void report(int f)
107{
108 time_t t = time(NULL);
109 int send_stats;
110
111 if (do_stats && verbose > 1) {
112 /* These come out from every process */
113 show_malloc_stats();
114 show_flist_stats();
115 }
116
117 if (am_daemon) {
118 log_exit(0, __FILE__, __LINE__);
119 if (f == -1 || !am_sender) return;
120 }
121
122 send_stats = verbose || protocol_version >= 20;
123 if (am_server) {
124 if (am_sender && send_stats) {
125 int64 w;
126 /* store total_written in a temporary
127 * because write_longint changes it */
128 w = stats.total_written;
129 write_longint(f,stats.total_read);
130 write_longint(f,w);
131 write_longint(f,stats.total_size);
132 }
133 return;
134 }
135
136 /* this is the client */
137
138 if (!am_sender && send_stats) {
139 int64 r;
140 stats.total_written = read_longint(f);
141 /* store total_read in a temporary, read_longint changes it */
142 r = read_longint(f);
143 stats.total_size = read_longint(f);
144 stats.total_read = r;
145 }
146
147 if (do_stats) {
148 if (!am_sender && !send_stats) {
149 /* missing the bytes written by the generator */
150 rprintf(FINFO, "\nCannot show stats as receiver because remote protocol version is less than 20\n");
151 rprintf(FINFO, "Use --stats -v to show stats\n");
152 return;
153 }
154 rprintf(FINFO,"\nNumber of files: %d\n", stats.num_files);
155 rprintf(FINFO,"Number of files transferred: %d\n",
156 stats.num_transferred_files);
157 rprintf(FINFO,"Total file size: %.0f bytes\n",
158 (double)stats.total_size);
159 rprintf(FINFO,"Total transferred file size: %.0f bytes\n",
160 (double)stats.total_transferred_size);
161 rprintf(FINFO,"Literal data: %.0f bytes\n",
162 (double)stats.literal_data);
163 rprintf(FINFO,"Matched data: %.0f bytes\n",
164 (double)stats.matched_data);
165 rprintf(FINFO,"File list size: %d\n", stats.flist_size);
166 rprintf(FINFO,"Total bytes written: %.0f\n",
167 (double)stats.total_written);
168 rprintf(FINFO,"Total bytes read: %.0f\n",
169 (double)stats.total_read);
170 }
171
172 if (verbose || do_stats) {
173 rprintf(FINFO,"\nwrote %.0f bytes read %.0f bytes %.2f bytes/sec\n",
174 (double)stats.total_written,
175 (double)stats.total_read,
176 (stats.total_written+stats.total_read)/(0.5 + (t-starttime)));
177 rprintf(FINFO,"total size is %.0f speedup is %.2f\n",
178 (double)stats.total_size,
179 (1.0*stats.total_size)/(stats.total_written+stats.total_read));
180 }
181
182 fflush(stdout);
183 fflush(stderr);
184}
185
186
187/**
188 * If our C library can get malloc statistics, then show them to FINFO
189 **/
190static void show_malloc_stats(void)
191{
192#ifdef HAVE_MALLINFO
193 struct mallinfo mi;
194
195 mi = mallinfo();
196
197 rprintf(FINFO, "\n" RSYNC_NAME "[%d] (%s%s%s) heap statistics:\n",
198 getpid(),
199 am_server ? "server " : "",
200 am_daemon ? "daemon " : "",
201 am_sender ? "sender" : "receiver");
202 rprintf(FINFO, " arena: %10d (bytes from sbrk)\n", mi.arena);
203 rprintf(FINFO, " ordblks: %10d (chunks not in use)\n", mi.ordblks);
204 rprintf(FINFO, " smblks: %10d\n", mi.smblks);
205 rprintf(FINFO, " hblks: %10d (chunks from mmap)\n", mi.hblks);
206 rprintf(FINFO, " hblkhd: %10d (bytes from mmap)\n", mi.hblkhd);
207 rprintf(FINFO, " usmblks: %10d\n", mi.usmblks);
208 rprintf(FINFO, " fsmblks: %10d\n", mi.fsmblks);
209 rprintf(FINFO, " uordblks: %10d (bytes used)\n", mi.uordblks);
210 rprintf(FINFO, " fordblks: %10d (bytes free)\n", mi.fordblks);
211 rprintf(FINFO, " keepcost: %10d (bytes in releasable chunk)\n", mi.keepcost);
212#endif /* HAVE_MALLINFO */
213}
214
215
216/* Start the remote shell. cmd may be NULL to use the default. */
217static pid_t do_cmd(char *cmd,char *machine,char *user,char *path,int *f_in,int *f_out)
218{
219 char *args[100];
220 int i,argc=0;
221 pid_t ret;
222 char *tok,*dir=NULL;
223 int dash_l_set = 0;
224
225 if (!read_batch && !local_server) {
226 char *rsh_env = getenv(RSYNC_RSH_ENV);
227 if (!cmd)
228 cmd = rsh_env;
229 if (!cmd)
230 cmd = RSYNC_RSH;
231 cmd = strdup(cmd);
232 if (!cmd)
233 goto oom;
234
235 for (tok=strtok(cmd," ");tok;tok=strtok(NULL," ")) {
236 args[argc++] = tok;
237 }
238
239 /* check to see if we've already been given '-l user' in
240 * the remote-shell command */
241 for (i = 0; i < argc-1; i++) {
242 if (!strcmp(args[i], "-l") && args[i+1][0] != '-')
243 dash_l_set = 1;
244 }
245
246#if HAVE_REMSH
247 /* remsh (on HPUX) takes the arguments the other way around */
248 args[argc++] = machine;
249 if (user && !(daemon_over_rsh && dash_l_set)) {
250 args[argc++] = "-l";
251 args[argc++] = user;
252 }
253#else
254 if (user && !(daemon_over_rsh && dash_l_set)) {
255 args[argc++] = "-l";
256 args[argc++] = user;
257 }
258 args[argc++] = machine;
259#endif
260
261 args[argc++] = rsync_path;
262
263 if (blocking_io < 0) {
264 char *cp;
265 if ((cp = strrchr(cmd, '/')) != NULL)
266 cp++;
267 else
268 cp = cmd;
269 if (strcmp(cp, "rsh") == 0 || strcmp(cp, "remsh") == 0)
270 blocking_io = 1;
271 }
272
273 server_options(args,&argc);
274 }
275
276 args[argc++] = ".";
277
278 if (!daemon_over_rsh && path && *path)
279 args[argc++] = path;
280
281 args[argc] = NULL;
282
283 if (verbose > 3) {
284 rprintf(FINFO,"cmd=");
285 for (i=0;i<argc;i++)
286 rprintf(FINFO,"%s ",args[i]);
287 rprintf(FINFO,"\n");
288 }
289
290 if (local_server) {
291 if (read_batch)
292 create_flist_from_batch(); /* sets batch_flist */
293 ret = local_child(argc, args, f_in, f_out, child_main);
294 } else {
295 ret = piped_child(args,f_in,f_out);
296 }
297
298 if (dir) free(dir);
299
300 return ret;
301
302oom:
303 out_of_memory("do_cmd");
304 return 0; /* not reached */
305}
306
307
308
309
310static char *get_local_name(struct file_list *flist,char *name)
311{
312 STRUCT_STAT st;
313 int e;
314
315 if (verbose > 2)
316 rprintf(FINFO,"get_local_name count=%d %s\n",
317 flist->count, NS(name));
318
319 if (!name)
320 return NULL;
321
322 if (do_stat(name,&st) == 0) {
323 if (S_ISDIR(st.st_mode)) {
324 if (!push_dir(name)) {
325 rprintf(FERROR, "push_dir %s failed: %s (1)\n",
326 full_fname(name), strerror(errno));
327 exit_cleanup(RERR_FILESELECT);
328 }
329 return NULL;
330 }
331 if (flist->count > 1) {
332 rprintf(FERROR,"ERROR: destination must be a directory when copying more than 1 file\n");
333 exit_cleanup(RERR_FILESELECT);
334 }
335 return name;
336 }
337
338 if (flist->count <= 1 && ((e = strlen(name)) <= 1 || name[e-1] != '/'))
339 return name;
340
341 if (do_mkdir(name,0777 & ~orig_umask) != 0) {
342 rprintf(FERROR, "mkdir %s failed: %s\n",
343 full_fname(name), strerror(errno));
344 exit_cleanup(RERR_FILEIO);
345 } else {
346 if (verbose > 0)
347 rprintf(FINFO,"created directory %s\n",name);
348 }
349
350 if (!push_dir(name)) {
351 rprintf(FERROR, "push_dir %s failed: %s (2)\n",
352 full_fname(name), strerror(errno));
353 exit_cleanup(RERR_FILESELECT);
354 }
355
356 return NULL;
357}
358
359
360static void do_server_sender(int f_in, int f_out, int argc,char *argv[])
361{
362 int i;
363 struct file_list *flist;
364 char *dir = argv[0];
365
366 if (verbose > 2) {
367 rprintf(FINFO, "server_sender starting pid=%ld\n",
368 (long)getpid());
369 }
370
371 if (!relative_paths && !push_dir(dir)) {
372 rprintf(FERROR, "push_dir %s failed: %s (3)\n",
373 full_fname(dir), strerror(errno));
374 exit_cleanup(RERR_FILESELECT);
375 }
376 argc--;
377 argv++;
378
379 if (strcmp(dir,".")) {
380 int l = strlen(dir);
381 if (strcmp(dir,"/") == 0)
382 l = 0;
383 for (i=0;i<argc;i++)
384 argv[i] += l+1;
385 }
386
387 if (argc == 0 && recurse) {
388 argc=1;
389 argv--;
390 argv[0] = ".";
391 }
392
393 flist = send_file_list(f_out,argc,argv);
394 if (!flist || flist->count == 0) {
395 exit_cleanup(0);
396 }
397
398 io_start_buffering_in(f_in);
399 io_start_buffering_out(f_out);
400 send_files(flist,f_out,f_in);
401 io_flush(FULL_FLUSH);
402 report(f_out);
403 if (protocol_version >= 24) {
404 /* final goodbye message */
405 read_int(f_in);
406 }
407 io_flush(FULL_FLUSH);
408 exit_cleanup(0);
409}
410
411
412static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
413{
414 int pid;
415 int status=0;
416 int error_pipe[2];
417
418 if (preserve_hard_links)
419 init_hard_links(flist);
420
421 if (!delete_after) {
422 /* I moved this here from recv_files() to prevent a race condition */
423 if (recurse && delete_mode && !local_name && flist->count>0) {
424 delete_files(flist);
425 }
426 }
427
428 if (fd_pair(error_pipe) < 0) {
429 rprintf(FERROR,"error pipe failed in do_recv\n");
430 exit_cleanup(RERR_SOCKETIO);
431 }
432
433 io_flush(NORMAL_FLUSH);
434
435 if ((pid=do_fork()) == 0) {
436 close(error_pipe[0]);
437 if (f_in != f_out) close(f_out);
438
439 /* we can't let two processes write to the socket at one time */
440 io_multiplexing_close();
441
442 /* set place to send errors */
443 set_msg_fd_out(error_pipe[1]);
444
445 recv_files(f_in,flist,local_name);
446 io_flush(FULL_FLUSH);
447 report(f_in);
448
449 send_msg(MSG_DONE, "", 0);
450 io_flush(FULL_FLUSH);
451 /* finally we go to sleep until our parent kills us
452 * with a USR2 signal. We sleep for a short time as on
453 * some OSes a signal won't interrupt a sleep! */
454 while (1)
455 msleep(20);
456 }
457
458 close(error_pipe[1]);
459 if (f_in != f_out) close(f_in);
460
461 io_start_buffering_out(f_out);
462
463 set_msg_fd_in(error_pipe[0]);
464
465 generate_files(f_out, flist, local_name);
466
467 get_redo_num(); /* Read final MSG_DONE and any prior messages. */
468 io_flush(FULL_FLUSH);
469 if (protocol_version >= 24) {
470 /* send a final goodbye message */
471 write_int(f_out, -1);
472 }
473 io_flush(FULL_FLUSH);
474
475 set_msg_fd_in(-1);
476 kill(pid, SIGUSR2);
477 wait_process(pid, &status);
478 return status;
479}
480
481
482static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
483{
484 int status;
485 struct file_list *flist;
486 char *local_name=NULL;
487 char *dir = NULL;
488
489 if (verbose > 2) {
490 rprintf(FINFO, "server_recv(%d) starting pid=%ld\n",
491 argc, (long)getpid());
492 }
493
494 if (am_daemon && lp_read_only(module_id) && !am_sender) {
495 rprintf(FERROR,"ERROR: module is read only\n");
496 exit_cleanup(RERR_SYNTAX);
497 return;
498 }
499
500
501 if (argc > 0) {
502 dir = argv[0];
503 argc--;
504 argv++;
505 if (!am_daemon && !push_dir(dir)) {
506 rprintf(FERROR, "push_dir %s failed: %s (4)\n",
507 full_fname(dir), strerror(errno));
508 exit_cleanup(RERR_FILESELECT);
509 }
510 }
511
512 io_start_buffering_in(f_in);
513 if (delete_mode && !delete_excluded)
514 recv_exclude_list(f_in);
515
516 if (filesfrom_fd >= 0) {
517 /* We're receiving the file info from the sender, so we need
518 * the IO routines to automatically write out the names onto
519 * our f_out socket as we read the list info from the sender.
520 * This avoids both deadlock and extra delays/buffers. */
521 io_set_filesfrom_fds(filesfrom_fd, f_out);
522 filesfrom_fd = -1;
523 }
524
525 if (read_batch)
526 flist = batch_flist;
527 else
528 flist = recv_file_list(f_in);
529 if (!flist) {
530 rprintf(FERROR,"server_recv: recv_file_list error\n");
531 exit_cleanup(RERR_FILESELECT);
532 }
533
534 if (argc > 0) {
535 if (strcmp(dir,".")) {
536 argv[0] += strlen(dir);
537 if (argv[0][0] == '/') argv[0]++;
538 }
539 local_name = get_local_name(flist,argv[0]);
540 }
541
542 status = do_recv(f_in,f_out,flist,local_name);
543 exit_cleanup(status);
544}
545
546
547int child_main(int argc, char *argv[])
548{
549 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
550 return 0;
551}
552
553
554void start_server(int f_in, int f_out, int argc, char *argv[])
555{
556 setup_protocol(f_out, f_in);
557
558 set_nonblocking(f_in);
559 set_nonblocking(f_out);
560
561 if (protocol_version >= 23)
562 io_start_multiplex_out(f_out);
563
564 if (am_sender) {
565 if (!read_batch) {
566 recv_exclude_list(f_in);
567 if (cvs_exclude)
568 add_cvs_excludes();
569 }
570 do_server_sender(f_in, f_out, argc, argv);
571 } else {
572 do_server_recv(f_in, f_out, argc, argv);
573 }
574 exit_cleanup(0);
575}
576
577
578/*
579 * This is called once the connection has been negotiated. It is used
580 * for rsyncd, remote-shell, and local connections.
581 */
582int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
583{
584 struct file_list *flist = NULL;
585 int status = 0, status2 = 0;
586 char *local_name = NULL;
587
588 cleanup_child_pid = pid;
589 if (read_batch)
590 flist = batch_flist;
591
592 set_nonblocking(f_in);
593 set_nonblocking(f_out);
594
595 setup_protocol(f_out,f_in);
596
597 if (protocol_version >= 23)
598 io_start_multiplex_in(f_in);
599
600 if (am_sender) {
601 io_start_buffering_out(f_out);
602 if (cvs_exclude)
603 add_cvs_excludes();
604 if (delete_mode && !delete_excluded)
605 send_exclude_list(f_out);
606 if (remote_filesfrom_file)
607 filesfrom_fd = f_in;
608 if (!read_batch) /* don't write to pipe */
609 flist = send_file_list(f_out,argc,argv);
610 if (verbose > 3)
611 rprintf(FINFO,"file list sent\n");
612
613 io_flush(NORMAL_FLUSH);
614 send_files(flist,f_out,f_in);
615 io_flush(FULL_FLUSH);
616 if (protocol_version >= 24) {
617 /* final goodbye message */
618 read_int(f_in);
619 }
620 if (pid != -1) {
621 if (verbose > 3)
622 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
623 io_flush(FULL_FLUSH);
624 wait_process(pid, &status);
625 }
626 report(-1);
627 io_flush(FULL_FLUSH);
628 exit_cleanup(status);
629 }
630
631 if (argc == 0) {
632 list_only = 1;
633 }
634
635 if (!write_batch)
636 send_exclude_list(f_out);
637
638 if (filesfrom_fd >= 0) {
639 io_set_filesfrom_fds(filesfrom_fd, f_out);
640 filesfrom_fd = -1;
641 }
642
643 flist = recv_file_list(f_in);
644 if (!flist || flist->count == 0) {
645 rprintf(FINFO, "client: nothing to do: "
646 "perhaps you need to specify some filenames or "
647 "the --recursive option?\n");
648 exit_cleanup(0);
649 }
650
651 local_name = get_local_name(flist,argv[0]);
652
653 status2 = do_recv(f_in,f_out,flist,local_name);
654
655 if (pid != -1) {
656 if (verbose > 3)
657 rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
658 io_flush(FULL_FLUSH);
659 wait_process(pid, &status);
660 }
661
662 return MAX(status, status2);
663}
664
665static int copy_argv (char *argv[])
666{
667 int i;
668
669 for (i = 0; argv[i]; i++) {
670 if (!(argv[i] = strdup(argv[i]))) {
671 rprintf (FERROR, "out of memory at %s(%d)\n",
672 __FILE__, __LINE__);
673 return RERR_MALLOC;
674 }
675 }
676
677 return 0;
678}
679
680
681/**
682 * Start a client for either type of remote connection. Work out
683 * whether the arguments request a remote shell or rsyncd connection,
684 * and call the appropriate connection function, then run_client.
685 *
686 * Calls either start_socket_client (for sockets) or do_cmd and
687 * client_run (for ssh).
688 **/
689static int start_client(int argc, char *argv[])
690{
691 char *p;
692 char *shell_machine = NULL;
693 char *shell_path = NULL;
694 char *shell_user = NULL;
695 int ret;
696 pid_t pid;
697 int f_in,f_out;
698 int rc;
699
700 /* Don't clobber argv[] so that ps(1) can still show the right
701 * command line. */
702 if ((rc = copy_argv(argv)))
703 return rc;
704
705 /* rsync:// always uses rsync server over direct socket connection */
706 if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0) {
707 char *host, *path;
708
709 host = argv[0] + strlen(URL_PREFIX);
710 p = strchr(host,'/');
711 if (p) {
712 *p = 0;
713 path = p+1;
714 } else {
715 path = "";
716 }
717 p = strchr(host,':');
718 if (p) {
719 rsync_port = atoi(p+1);
720 *p = 0;
721 }
722 return start_socket_client(host, path, argc-1, argv+1);
723 }
724
725 if (!read_batch) {
726 p = find_colon(argv[0]);
727 if (p) {
728 if (remote_filesfrom_file
729 && remote_filesfrom_file != files_from + 1
730 && strncmp(files_from, argv[0], p-argv[0]+1) != 0) {
731 rprintf(FERROR,
732 "--files-from hostname is not transfer hostname\n");
733 exit_cleanup(RERR_SYNTAX);
734 }
735 if (p[1] == ':') { /* double colon */
736 *p = 0;
737 if (!shell_cmd) {
738 return start_socket_client(argv[0], p+2,
739 argc-1, argv+1);
740 }
741 p++;
742 daemon_over_rsh = 1;
743 }
744
745 if (argc < 1) {
746 usage(FERROR);
747 exit_cleanup(RERR_SYNTAX);
748 }
749
750 am_sender = 0;
751 *p = 0;
752 shell_machine = argv[0];
753 shell_path = p+1;
754 argc--;
755 argv++;
756 } else {
757 am_sender = 1;
758
759 /* rsync:// destination uses rsync server over direct socket */
760 if (strncasecmp(URL_PREFIX, argv[argc-1], strlen(URL_PREFIX)) == 0) {
761 char *host, *path;
762
763 host = argv[argc-1] + strlen(URL_PREFIX);
764 p = strchr(host,'/');
765 if (p) {
766 *p = 0;
767 path = p+1;
768 } else {
769 path = "";
770 }
771 p = strchr(host,':');
772 if (p) {
773 rsync_port = atoi(p+1);
774 *p = 0;
775 }
776 return start_socket_client(host, path, argc-1, argv);
777 }
778
779 p = find_colon(argv[argc-1]);
780 if (p && remote_filesfrom_file
781 && remote_filesfrom_file != files_from + 1
782 && strncmp(files_from, argv[argc-1], p-argv[argc-1]+1) != 0) {
783 rprintf(FERROR,
784 "--files-from hostname is not transfer hostname\n");
785 exit_cleanup(RERR_SYNTAX);
786 }
787 if (!p) {
788 local_server = 1;
789 if (remote_filesfrom_file) {
790 rprintf(FERROR,
791 "--files-from is remote but transfer is local\n");
792 exit_cleanup(RERR_SYNTAX);
793 }
794 } else if (p[1] == ':') { /* double colon */
795 *p = 0;
796 if (!shell_cmd) {
797 return start_socket_client(argv[argc-1], p+2,
798 argc-1, argv);
799 }
800 p++;
801 daemon_over_rsh = 1;
802 }
803
804 if (argc < 2) {
805 usage(FERROR);
806 exit_cleanup(RERR_SYNTAX);
807 }
808
809 if (local_server) {
810 shell_machine = NULL;
811 shell_path = argv[argc-1];
812 } else {
813 *p = 0;
814 shell_machine = argv[argc-1];
815 shell_path = p+1;
816 }
817 argc--;
818 }
819 } else {
820 am_sender = 1;
821 local_server = 1;
822 shell_path = argv[argc-1];
823 }
824
825 if (shell_machine) {
826 p = strrchr(shell_machine,'@');
827 if (p) {
828 *p = 0;
829 shell_user = shell_machine;
830 shell_machine = p+1;
831 }
832 }
833
834 if (verbose > 3) {
835 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
836 shell_cmd?shell_cmd:"",
837 shell_machine?shell_machine:"",
838 shell_user?shell_user:"",
839 shell_path?shell_path:"");
840 }
841
842 if (!am_sender && argc > 1) {
843 usage(FERROR);
844 exit_cleanup(RERR_SYNTAX);
845 }
846
847 if (argc == 0 && !am_sender) {
848 list_only = 1;
849 }
850
851 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,
852 &f_in,&f_out);
853
854 /* if we're running an rsync server on the remote host over a
855 * remote shell command, we need to do the RSYNCD protocol first */
856 if (daemon_over_rsh) {
857 int tmpret;
858 tmpret = start_inband_exchange(shell_user, shell_path,
859 f_in, f_out, argc);
860 if (tmpret < 0)
861 return tmpret;
862 }
863
864 ret = client_run(f_in, f_out, pid, argc, argv);
865
866 fflush(stdout);
867 fflush(stderr);
868
869 return ret;
870}
871
872
873static RETSIGTYPE sigusr1_handler(UNUSED(int val))
874{
875 exit_cleanup(RERR_SIGNAL);
876}
877
878static RETSIGTYPE sigusr2_handler(UNUSED(int val))
879{
880 if (log_got_error) _exit(RERR_PARTIAL);
881 _exit(0);
882}
883
884static RETSIGTYPE sigchld_handler(UNUSED(int val))
885{
886#ifdef WNOHANG
887 int cnt, status;
888 pid_t pid;
889 /* An empty waitpid() loop was put here by Tridge and we could never
890 * get him to explain why he put it in, so rather than taking it
891 * out we're instead saving the child exit statuses for later use.
892 * The waitpid() loop presumably eliminates all possibility of leaving
893 * zombie children, maybe that's why he did it.
894 */
895 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
896 /* save the child's exit status */
897 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
898 if (pid_stat_table[cnt].pid == 0) {
899 pid_stat_table[cnt].pid = pid;
900 pid_stat_table[cnt].status = status;
901 break;
902 }
903 }
904 }
905#endif
906}
907
908
909/**
910 * This routine catches signals and tries to send them to gdb.
911 *
912 * Because it's called from inside a signal handler it ought not to
913 * use too many library routines.
914 *
915 * @todo Perhaps use "screen -X" instead/as well, to help people
916 * debugging without easy access to X. Perhaps use an environment
917 * variable, or just call a script?
918 *
919 * @todo The /proc/ magic probably only works on Linux (and
920 * Solaris?) Can we be more portable?
921 **/
922#ifdef MAINTAINER_MODE
923const char *get_panic_action(void)
924{
925 const char *cmd_fmt = getenv("RSYNC_PANIC_ACTION");
926
927 if (cmd_fmt)
928 return cmd_fmt;
929 else
930 return "xterm -display :0 -T Panic -n Panic "
931 "-e gdb /proc/%d/exe %d";
932}
933
934
935/**
936 * Handle a fatal signal by launching a debugger, controlled by $RSYNC_PANIC_ACTION.
937 *
938 * This signal handler is only installed if we were configured with
939 * --enable-maintainer-mode. Perhaps it should always be on and we
940 * should just look at the environment variable, but I'm a bit leery
941 * of a signal sending us into a busy loop.
942 **/
943static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
944{
945 char cmd_buf[300];
946 int ret;
947
948 sprintf(cmd_buf, get_panic_action(),
949 getpid(), getpid());
950
951 /* Unless we failed to execute gdb, we allow the process to
952 * continue. I'm not sure if that's right. */
953 ret = system(cmd_buf);
954 if (ret)
955 _exit(ret);
956}
957#endif
958
959
960int main(int argc,char *argv[])
961{
962 int ret;
963 int orig_argc;
964 char **orig_argv;
965
966 orig_argc = argc;
967 orig_argv = argv;
968
969 signal(SIGUSR1, sigusr1_handler);
970 signal(SIGUSR2, sigusr2_handler);
971 signal(SIGCHLD, sigchld_handler);
972#ifdef MAINTAINER_MODE
973 signal(SIGSEGV, rsync_panic_handler);
974 signal(SIGFPE, rsync_panic_handler);
975 signal(SIGABRT, rsync_panic_handler);
976 signal(SIGBUS, rsync_panic_handler);
977#endif /* def MAINTAINER_MODE */
978
979 starttime = time(NULL);
980 am_root = (getuid() == 0);
981
982 memset(&stats, 0, sizeof(stats));
983
984 if (argc < 2) {
985 usage(FERROR);
986 exit_cleanup(RERR_SYNTAX);
987 }
988
989 /* we set a 0 umask so that correct file permissions can be
990 * carried across */
991 orig_umask = (int)umask(0);
992
993 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
994 /* FIXME: We ought to call the same error-handling
995 * code here, rather than relying on getopt. */
996 option_error();
997 exit_cleanup(RERR_SYNTAX);
998 }
999
1000 signal(SIGINT,SIGNAL_CAST sig_int);
1001 signal(SIGHUP,SIGNAL_CAST sig_int);
1002 signal(SIGTERM,SIGNAL_CAST sig_int);
1003
1004 /* Ignore SIGPIPE; we consistently check error codes and will
1005 * see the EPIPE. */
1006 signal(SIGPIPE, SIG_IGN);
1007
1008 /* Initialize push_dir here because on some old systems getcwd
1009 * (implemented by forking "pwd" and reading its output) doesn't
1010 * work when there are other child processes. Also, on all systems
1011 * that implement getcwd that way "pwd" can't be found after chroot. */
1012 push_dir(NULL);
1013
1014 if (write_batch && !am_server) {
1015 write_batch_argvs_file(orig_argc, orig_argv);
1016 }
1017
1018 if (am_daemon && !am_server)
1019 return daemon_main();
1020
1021 if (argc < 1) {
1022 usage(FERROR);
1023 exit_cleanup(RERR_SYNTAX);
1024 }
1025
1026 if (dry_run)
1027 verbose = MAX(verbose,1);
1028
1029#ifndef SUPPORT_LINKS
1030 if (!am_server && preserve_links) {
1031 rprintf(FERROR,"ERROR: symbolic links not supported\n");
1032 exit_cleanup(RERR_UNSUPPORTED);
1033 }
1034#endif
1035
1036 if (am_server) {
1037 set_nonblocking(STDIN_FILENO);
1038 set_nonblocking(STDOUT_FILENO);
1039 if (am_daemon)
1040 return start_daemon(STDIN_FILENO, STDOUT_FILENO);
1041 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1042 }
1043
1044 ret = start_client(argc, argv);
1045 if (ret == -1)
1046 exit_cleanup(RERR_STARTCLIENT);
1047 else
1048 exit_cleanup(ret);
1049
1050 return ret;
1051}