Unified the externs.
[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, 0)) {
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, 0)) {
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=%d\n",(int)getpid());
368
369 if (!relative_paths && !push_dir(dir, 0)) {
370 rprintf(FERROR, "push_dir %s failed: %s (3)\n",
371 full_fname(dir), strerror(errno));
372 exit_cleanup(RERR_FILESELECT);
373 }
374 argc--;
375 argv++;
376
377 if (strcmp(dir,".")) {
378 int l = strlen(dir);
379 if (strcmp(dir,"/") == 0)
380 l = 0;
381 for (i=0;i<argc;i++)
382 argv[i] += l+1;
383 }
384
385 if (argc == 0 && recurse) {
386 argc=1;
387 argv--;
388 argv[0] = ".";
389 }
390
391 flist = send_file_list(f_out,argc,argv);
392 if (!flist || flist->count == 0) {
393 exit_cleanup(0);
394 }
395
396 io_start_buffering_in(f_in);
397 io_start_buffering_out(f_out);
398 send_files(flist,f_out,f_in);
399 io_flush(FULL_FLUSH);
400 report(f_out);
401 if (protocol_version >= 24) {
402 /* final goodbye message */
403 read_int(f_in);
404 }
405 io_flush(FULL_FLUSH);
406 exit_cleanup(0);
407}
408
409
410static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
411{
412 int pid;
413 int status=0;
414 int error_pipe[2];
415
416 if (preserve_hard_links)
417 init_hard_links(flist);
418
419 if (!delete_after) {
420 /* I moved this here from recv_files() to prevent a race condition */
421 if (recurse && delete_mode && !local_name && flist->count>0) {
422 delete_files(flist);
423 }
424 }
425
426 if (fd_pair(error_pipe) < 0) {
427 rprintf(FERROR,"error pipe failed in do_recv\n");
428 exit_cleanup(RERR_SOCKETIO);
429 }
430
431 io_flush(NORMAL_FLUSH);
432
433 if ((pid=do_fork()) == 0) {
434 close(error_pipe[0]);
435 if (f_in != f_out) close(f_out);
436
437 /* we can't let two processes write to the socket at one time */
438 io_multiplexing_close();
439
440 /* set place to send errors */
441 set_msg_fd_out(error_pipe[1]);
442
443 recv_files(f_in,flist,local_name);
444 io_flush(FULL_FLUSH);
445 report(f_in);
446
447 send_msg(MSG_DONE, "", 0);
448 io_flush(FULL_FLUSH);
449 /* finally we go to sleep until our parent kills us
450 * with a USR2 signal. We sleep for a short time as on
451 * some OSes a signal won't interrupt a sleep! */
452 while (1)
453 msleep(20);
454 }
455
456 close(error_pipe[1]);
457 if (f_in != f_out) close(f_in);
458
459 io_start_buffering_out(f_out);
460
461 set_msg_fd_in(error_pipe[0]);
462
463 generate_files(f_out, flist, local_name);
464
465 get_redo_num(); /* Read final -1, and any prior messages. */
466 io_flush(FULL_FLUSH);
467 if (protocol_version >= 24) {
468 /* send a final goodbye message */
469 write_int(f_out, -1);
470 }
471 io_flush(FULL_FLUSH);
472
473 set_msg_fd_in(-1);
474 kill(pid, SIGUSR2);
475 wait_process(pid, &status);
476 return status;
477}
478
479
480static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
481{
482 int status;
483 struct file_list *flist;
484 char *local_name=NULL;
485 char *dir = NULL;
486
487 if (verbose > 2)
488 rprintf(FINFO,"server_recv(%d) starting pid=%d\n",argc,(int)getpid());
489
490 if (am_daemon && lp_read_only(module_id) && !am_sender) {
491 rprintf(FERROR,"ERROR: module is read only\n");
492 exit_cleanup(RERR_SYNTAX);
493 return;
494 }
495
496
497 if (argc > 0) {
498 dir = argv[0];
499 argc--;
500 argv++;
501 if (!am_daemon && !push_dir(dir, 0)) {
502 rprintf(FERROR, "push_dir %s failed: %s (4)\n",
503 full_fname(dir), strerror(errno));
504 exit_cleanup(RERR_FILESELECT);
505 }
506 }
507
508 io_start_buffering_in(f_in);
509 if (delete_mode && !delete_excluded)
510 recv_exclude_list(f_in);
511
512 if (filesfrom_fd >= 0) {
513 /* We're receiving the file info from the sender, so we need
514 * the IO routines to automatically write out the names onto
515 * our f_out socket as we read the list info from the sender.
516 * This avoids both deadlock and extra delays/buffers. */
517 io_set_filesfrom_fds(filesfrom_fd, f_out);
518 filesfrom_fd = -1;
519 }
520
521 if (read_batch)
522 flist = batch_flist;
523 else
524 flist = recv_file_list(f_in);
525 if (!flist) {
526 rprintf(FERROR,"server_recv: recv_file_list error\n");
527 exit_cleanup(RERR_FILESELECT);
528 }
529
530 if (argc > 0) {
531 if (strcmp(dir,".")) {
532 argv[0] += strlen(dir);
533 if (argv[0][0] == '/') argv[0]++;
534 }
535 local_name = get_local_name(flist,argv[0]);
536 }
537
538 status = do_recv(f_in,f_out,flist,local_name);
539 exit_cleanup(status);
540}
541
542
543int child_main(int argc, char *argv[])
544{
545 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
546 return 0;
547}
548
549
550void start_server(int f_in, int f_out, int argc, char *argv[])
551{
552 setup_protocol(f_out, f_in);
553
554 set_nonblocking(f_in);
555 set_nonblocking(f_out);
556
557 if (protocol_version >= 23)
558 io_start_multiplex_out(f_out);
559
560 if (am_sender) {
561 if (!read_batch) {
562 recv_exclude_list(f_in);
563 if (cvs_exclude)
564 add_cvs_excludes();
565 }
566 do_server_sender(f_in, f_out, argc, argv);
567 } else {
568 do_server_recv(f_in, f_out, argc, argv);
569 }
570 exit_cleanup(0);
571}
572
573
574/*
575 * This is called once the connection has been negotiated. It is used
576 * for rsyncd, remote-shell, and local connections.
577 */
578int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
579{
580 struct file_list *flist = NULL;
581 int status = 0, status2 = 0;
582 char *local_name = NULL;
583
584 cleanup_child_pid = pid;
585 if (read_batch)
586 flist = batch_flist;
587
588 set_nonblocking(f_in);
589 set_nonblocking(f_out);
590
591 setup_protocol(f_out,f_in);
592
593 if (protocol_version >= 23)
594 io_start_multiplex_in(f_in);
595
596 if (am_sender) {
597 io_start_buffering_out(f_out);
598 if (cvs_exclude)
599 add_cvs_excludes();
600 if (delete_mode && !delete_excluded)
601 send_exclude_list(f_out);
602 if (remote_filesfrom_file)
603 filesfrom_fd = f_in;
604 if (!read_batch) /* don't write to pipe */
605 flist = send_file_list(f_out,argc,argv);
606 if (verbose > 3)
607 rprintf(FINFO,"file list sent\n");
608
609 io_flush(NORMAL_FLUSH);
610 io_start_buffering_out(f_out);
611 send_files(flist,f_out,f_in);
612 io_flush(FULL_FLUSH);
613 if (protocol_version >= 24) {
614 /* final goodbye message */
615 read_int(f_in);
616 }
617 if (pid != -1) {
618 if (verbose > 3)
619 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
620 io_flush(FULL_FLUSH);
621 wait_process(pid, &status);
622 }
623 report(-1);
624 io_flush(FULL_FLUSH);
625 exit_cleanup(status);
626 }
627
628 if (argc == 0) {
629 list_only = 1;
630 }
631
632 if (!write_batch)
633 send_exclude_list(f_out);
634
635 if (filesfrom_fd >= 0) {
636 io_set_filesfrom_fds(filesfrom_fd, f_out);
637 filesfrom_fd = -1;
638 }
639
640 flist = recv_file_list(f_in);
641 if (!flist || flist->count == 0) {
642 rprintf(FINFO, "client: nothing to do: "
643 "perhaps you need to specify some filenames or "
644 "the --recursive option?\n");
645 exit_cleanup(0);
646 }
647
648 local_name = get_local_name(flist,argv[0]);
649
650 status2 = do_recv(f_in,f_out,flist,local_name);
651
652 if (pid != -1) {
653 if (verbose > 3)
654 rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
655 io_flush(FULL_FLUSH);
656 wait_process(pid, &status);
657 }
658
659 return MAX(status, status2);
660}
661
662static int copy_argv (char *argv[])
663{
664 int i;
665
666 for (i = 0; argv[i]; i++) {
667 if (!(argv[i] = strdup(argv[i]))) {
668 rprintf (FERROR, "out of memory at %s(%d)\n",
669 __FILE__, __LINE__);
670 return RERR_MALLOC;
671 }
672 }
673
674 return 0;
675}
676
677
678/**
679 * Start a client for either type of remote connection. Work out
680 * whether the arguments request a remote shell or rsyncd connection,
681 * and call the appropriate connection function, then run_client.
682 *
683 * Calls either start_socket_client (for sockets) or do_cmd and
684 * client_run (for ssh).
685 **/
686static int start_client(int argc, char *argv[])
687{
688 char *p;
689 char *shell_machine = NULL;
690 char *shell_path = NULL;
691 char *shell_user = NULL;
692 int ret;
693 pid_t pid;
694 int f_in,f_out;
695 int rc;
696
697 /* Don't clobber argv[] so that ps(1) can still show the right
698 * command line. */
699 if ((rc = copy_argv(argv)))
700 return rc;
701
702 /* rsync:// always uses rsync server over direct socket connection */
703 if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0) {
704 char *host, *path;
705
706 host = argv[0] + strlen(URL_PREFIX);
707 p = strchr(host,'/');
708 if (p) {
709 *p = 0;
710 path = p+1;
711 } else {
712 path = "";
713 }
714 p = strchr(host,':');
715 if (p) {
716 rsync_port = atoi(p+1);
717 *p = 0;
718 }
719 return start_socket_client(host, path, argc-1, argv+1);
720 }
721
722 if (!read_batch) {
723 p = find_colon(argv[0]);
724 if (p) {
725 if (remote_filesfrom_file
726 && remote_filesfrom_file != files_from + 1
727 && strncmp(files_from, argv[0], p-argv[0]+1) != 0) {
728 rprintf(FERROR,
729 "--files-from hostname is not transfer hostname\n");
730 exit_cleanup(RERR_SYNTAX);
731 }
732 if (p[1] == ':') { /* double colon */
733 *p = 0;
734 if (!shell_cmd) {
735 return start_socket_client(argv[0], p+2,
736 argc-1, argv+1);
737 }
738 p++;
739 daemon_over_rsh = 1;
740 }
741
742 if (argc < 1) {
743 usage(FERROR);
744 exit_cleanup(RERR_SYNTAX);
745 }
746
747 am_sender = 0;
748 *p = 0;
749 shell_machine = argv[0];
750 shell_path = p+1;
751 argc--;
752 argv++;
753 } else {
754 am_sender = 1;
755
756 /* rsync:// destination uses rsync server over direct socket */
757 if (strncasecmp(URL_PREFIX, argv[argc-1], strlen(URL_PREFIX)) == 0) {
758 char *host, *path;
759
760 host = argv[argc-1] + strlen(URL_PREFIX);
761 p = strchr(host,'/');
762 if (p) {
763 *p = 0;
764 path = p+1;
765 } else {
766 path = "";
767 }
768 p = strchr(host,':');
769 if (p) {
770 rsync_port = atoi(p+1);
771 *p = 0;
772 }
773 return start_socket_client(host, path, argc-1, argv);
774 }
775
776 p = find_colon(argv[argc-1]);
777 if (p && remote_filesfrom_file
778 && remote_filesfrom_file != files_from + 1
779 && strncmp(files_from, argv[argc-1], p-argv[argc-1]+1) != 0) {
780 rprintf(FERROR,
781 "--files-from hostname is not transfer hostname\n");
782 exit_cleanup(RERR_SYNTAX);
783 }
784 if (!p) {
785 local_server = 1;
786 if (remote_filesfrom_file) {
787 rprintf(FERROR,
788 "--files-from is remote but transfer is local\n");
789 exit_cleanup(RERR_SYNTAX);
790 }
791 } else if (p[1] == ':') { /* double colon */
792 *p = 0;
793 if (!shell_cmd) {
794 return start_socket_client(argv[argc-1], p+2,
795 argc-1, argv);
796 }
797 p++;
798 daemon_over_rsh = 1;
799 }
800
801 if (argc < 2) {
802 usage(FERROR);
803 exit_cleanup(RERR_SYNTAX);
804 }
805
806 if (local_server) {
807 shell_machine = NULL;
808 shell_path = argv[argc-1];
809 } else {
810 *p = 0;
811 shell_machine = argv[argc-1];
812 shell_path = p+1;
813 }
814 argc--;
815 }
816 } else {
817 am_sender = 1;
818 local_server = 1;
819 shell_path = argv[argc-1];
820 }
821
822 if (shell_machine) {
823 p = strchr(shell_machine,'@');
824 if (p) {
825 *p = 0;
826 shell_user = shell_machine;
827 shell_machine = p+1;
828 }
829 }
830
831 if (verbose > 3) {
832 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
833 shell_cmd?shell_cmd:"",
834 shell_machine?shell_machine:"",
835 shell_user?shell_user:"",
836 shell_path?shell_path:"");
837 }
838
839 if (!am_sender && argc > 1) {
840 usage(FERROR);
841 exit_cleanup(RERR_SYNTAX);
842 }
843
844 if (argc == 0 && !am_sender) {
845 list_only = 1;
846 }
847
848 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,
849 &f_in,&f_out);
850
851 /* if we're running an rsync server on the remote host over a
852 * remote shell command, we need to do the RSYNCD protocol first */
853 if (daemon_over_rsh) {
854 int tmpret;
855 tmpret = start_inband_exchange(shell_user, shell_path,
856 f_in, f_out, argc);
857 if (tmpret < 0)
858 return tmpret;
859 }
860
861 ret = client_run(f_in, f_out, pid, argc, argv);
862
863 fflush(stdout);
864 fflush(stderr);
865
866 return ret;
867}
868
869
870static RETSIGTYPE sigusr1_handler(UNUSED(int val))
871{
872 exit_cleanup(RERR_SIGNAL);
873}
874
875static RETSIGTYPE sigusr2_handler(UNUSED(int val))
876{
877 if (log_got_error) _exit(RERR_PARTIAL);
878 _exit(0);
879}
880
881static RETSIGTYPE sigchld_handler(UNUSED(int val))
882{
883#ifdef WNOHANG
884 int cnt, status;
885 pid_t pid;
886 /* An empty waitpid() loop was put here by Tridge and we could never
887 * get him to explain why he put it in, so rather than taking it
888 * out we're instead saving the child exit statuses for later use.
889 * The waitpid() loop presumably eliminates all possibility of leaving
890 * zombie children, maybe that's why he did it.
891 */
892 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
893 /* save the child's exit status */
894 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
895 if (pid_stat_table[cnt].pid == 0) {
896 pid_stat_table[cnt].pid = pid;
897 pid_stat_table[cnt].status = status;
898 break;
899 }
900 }
901 }
902#endif
903}
904
905
906/**
907 * This routine catches signals and tries to send them to gdb.
908 *
909 * Because it's called from inside a signal handler it ought not to
910 * use too many library routines.
911 *
912 * @todo Perhaps use "screen -X" instead/as well, to help people
913 * debugging without easy access to X. Perhaps use an environment
914 * variable, or just call a script?
915 *
916 * @todo The /proc/ magic probably only works on Linux (and
917 * Solaris?) Can we be more portable?
918 **/
919#ifdef MAINTAINER_MODE
920const char *get_panic_action(void)
921{
922 const char *cmd_fmt = getenv("RSYNC_PANIC_ACTION");
923
924 if (cmd_fmt)
925 return cmd_fmt;
926 else
927 return "xterm -display :0 -T Panic -n Panic "
928 "-e gdb /proc/%d/exe %d";
929}
930
931
932/**
933 * Handle a fatal signal by launching a debugger, controlled by $RSYNC_PANIC_ACTION.
934 *
935 * This signal handler is only installed if we were configured with
936 * --enable-maintainer-mode. Perhaps it should always be on and we
937 * should just look at the environment variable, but I'm a bit leery
938 * of a signal sending us into a busy loop.
939 **/
940static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
941{
942 char cmd_buf[300];
943 int ret;
944
945 sprintf(cmd_buf, get_panic_action(),
946 getpid(), getpid());
947
948 /* Unless we failed to execute gdb, we allow the process to
949 * continue. I'm not sure if that's right. */
950 ret = system(cmd_buf);
951 if (ret)
952 _exit(ret);
953}
954#endif
955
956
957int main(int argc,char *argv[])
958{
959 int ret;
960 int orig_argc;
961 char **orig_argv;
962
963 orig_argc = argc;
964 orig_argv = argv;
965
966 signal(SIGUSR1, sigusr1_handler);
967 signal(SIGUSR2, sigusr2_handler);
968 signal(SIGCHLD, sigchld_handler);
969#ifdef MAINTAINER_MODE
970 signal(SIGSEGV, rsync_panic_handler);
971 signal(SIGFPE, rsync_panic_handler);
972 signal(SIGABRT, rsync_panic_handler);
973 signal(SIGBUS, rsync_panic_handler);
974#endif /* def MAINTAINER_MODE */
975
976 starttime = time(NULL);
977 am_root = (getuid() == 0);
978
979 memset(&stats, 0, sizeof(stats));
980
981 if (argc < 2) {
982 usage(FERROR);
983 exit_cleanup(RERR_SYNTAX);
984 }
985
986 /* we set a 0 umask so that correct file permissions can be
987 * carried across */
988 orig_umask = (int)umask(0);
989
990 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
991 /* FIXME: We ought to call the same error-handling
992 * code here, rather than relying on getopt. */
993 option_error();
994 exit_cleanup(RERR_SYNTAX);
995 }
996
997 signal(SIGINT,SIGNAL_CAST sig_int);
998 signal(SIGHUP,SIGNAL_CAST sig_int);
999 signal(SIGTERM,SIGNAL_CAST sig_int);
1000
1001 /* Ignore SIGPIPE; we consistently check error codes and will
1002 * see the EPIPE. */
1003 signal(SIGPIPE, SIG_IGN);
1004
1005 /* Initialize push_dir here because on some old systems getcwd
1006 * (implemented by forking "pwd" and reading its output) doesn't
1007 * work when there are other child processes. Also, on all systems
1008 * that implement getcwd that way "pwd" can't be found after chroot. */
1009 push_dir(NULL,0);
1010
1011 if (write_batch && !am_server) {
1012 write_batch_argvs_file(orig_argc, orig_argv);
1013 }
1014
1015 if (am_daemon && !am_server)
1016 return daemon_main();
1017
1018 if (argc < 1) {
1019 usage(FERROR);
1020 exit_cleanup(RERR_SYNTAX);
1021 }
1022
1023 if (dry_run)
1024 verbose = MAX(verbose,1);
1025
1026#ifndef SUPPORT_LINKS
1027 if (!am_server && preserve_links) {
1028 rprintf(FERROR,"ERROR: symbolic links not supported\n");
1029 exit_cleanup(RERR_UNSUPPORTED);
1030 }
1031#endif
1032
1033 if (am_server) {
1034 set_nonblocking(STDIN_FILENO);
1035 set_nonblocking(STDOUT_FILENO);
1036 if (am_daemon)
1037 return start_daemon(STDIN_FILENO, STDOUT_FILENO);
1038 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1039 }
1040
1041 ret = start_client(argc, argv);
1042 if (ret == -1)
1043 exit_cleanup(RERR_STARTCLIENT);
1044 else
1045 exit_cleanup(ret);
1046
1047 return ret;
1048}