Better pid handling.
[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=%d\n",(int)getpid());
368
369 if (!relative_paths && !push_dir(dir)) {
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 MSG_DONE 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)) {
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 send_files(flist,f_out,f_in);
611 io_flush(FULL_FLUSH);
612 if (protocol_version >= 24) {
613 /* final goodbye message */
614 read_int(f_in);
615 }
616 if (pid != -1) {
617 if (verbose > 3)
618 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
619 io_flush(FULL_FLUSH);
620 wait_process(pid, &status);
621 }
622 report(-1);
623 io_flush(FULL_FLUSH);
624 exit_cleanup(status);
625 }
626
627 if (argc == 0) {
628 list_only = 1;
629 }
630
631 if (!write_batch)
632 send_exclude_list(f_out);
633
634 if (filesfrom_fd >= 0) {
635 io_set_filesfrom_fds(filesfrom_fd, f_out);
636 filesfrom_fd = -1;
637 }
638
639 flist = recv_file_list(f_in);
640 if (!flist || flist->count == 0) {
641 rprintf(FINFO, "client: nothing to do: "
642 "perhaps you need to specify some filenames or "
643 "the --recursive option?\n");
644 exit_cleanup(0);
645 }
646
647 local_name = get_local_name(flist,argv[0]);
648
649 status2 = do_recv(f_in,f_out,flist,local_name);
650
651 if (pid != -1) {
652 if (verbose > 3)
653 rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
654 io_flush(FULL_FLUSH);
655 wait_process(pid, &status);
656 }
657
658 return MAX(status, status2);
659}
660
661static int copy_argv (char *argv[])
662{
663 int i;
664
665 for (i = 0; argv[i]; i++) {
666 if (!(argv[i] = strdup(argv[i]))) {
667 rprintf (FERROR, "out of memory at %s(%d)\n",
668 __FILE__, __LINE__);
669 return RERR_MALLOC;
670 }
671 }
672
673 return 0;
674}
675
676
677/**
678 * Start a client for either type of remote connection. Work out
679 * whether the arguments request a remote shell or rsyncd connection,
680 * and call the appropriate connection function, then run_client.
681 *
682 * Calls either start_socket_client (for sockets) or do_cmd and
683 * client_run (for ssh).
684 **/
685static int start_client(int argc, char *argv[])
686{
687 char *p;
688 char *shell_machine = NULL;
689 char *shell_path = NULL;
690 char *shell_user = NULL;
691 int ret;
692 pid_t pid;
693 int f_in,f_out;
694 int rc;
695
696 /* Don't clobber argv[] so that ps(1) can still show the right
697 * command line. */
698 if ((rc = copy_argv(argv)))
699 return rc;
700
701 /* rsync:// always uses rsync server over direct socket connection */
702 if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0) {
703 char *host, *path;
704
705 host = argv[0] + strlen(URL_PREFIX);
706 p = strchr(host,'/');
707 if (p) {
708 *p = 0;
709 path = p+1;
710 } else {
711 path = "";
712 }
713 p = strchr(host,':');
714 if (p) {
715 rsync_port = atoi(p+1);
716 *p = 0;
717 }
718 return start_socket_client(host, path, argc-1, argv+1);
719 }
720
721 if (!read_batch) {
722 p = find_colon(argv[0]);
723 if (p) {
724 if (remote_filesfrom_file
725 && remote_filesfrom_file != files_from + 1
726 && strncmp(files_from, argv[0], p-argv[0]+1) != 0) {
727 rprintf(FERROR,
728 "--files-from hostname is not transfer hostname\n");
729 exit_cleanup(RERR_SYNTAX);
730 }
731 if (p[1] == ':') { /* double colon */
732 *p = 0;
733 if (!shell_cmd) {
734 return start_socket_client(argv[0], p+2,
735 argc-1, argv+1);
736 }
737 p++;
738 daemon_over_rsh = 1;
739 }
740
741 if (argc < 1) {
742 usage(FERROR);
743 exit_cleanup(RERR_SYNTAX);
744 }
745
746 am_sender = 0;
747 *p = 0;
748 shell_machine = argv[0];
749 shell_path = p+1;
750 argc--;
751 argv++;
752 } else {
753 am_sender = 1;
754
755 /* rsync:// destination uses rsync server over direct socket */
756 if (strncasecmp(URL_PREFIX, argv[argc-1], strlen(URL_PREFIX)) == 0) {
757 char *host, *path;
758
759 host = argv[argc-1] + strlen(URL_PREFIX);
760 p = strchr(host,'/');
761 if (p) {
762 *p = 0;
763 path = p+1;
764 } else {
765 path = "";
766 }
767 p = strchr(host,':');
768 if (p) {
769 rsync_port = atoi(p+1);
770 *p = 0;
771 }
772 return start_socket_client(host, path, argc-1, argv);
773 }
774
775 p = find_colon(argv[argc-1]);
776 if (p && remote_filesfrom_file
777 && remote_filesfrom_file != files_from + 1
778 && strncmp(files_from, argv[argc-1], p-argv[argc-1]+1) != 0) {
779 rprintf(FERROR,
780 "--files-from hostname is not transfer hostname\n");
781 exit_cleanup(RERR_SYNTAX);
782 }
783 if (!p) {
784 local_server = 1;
785 if (remote_filesfrom_file) {
786 rprintf(FERROR,
787 "--files-from is remote but transfer is local\n");
788 exit_cleanup(RERR_SYNTAX);
789 }
790 } else if (p[1] == ':') { /* double colon */
791 *p = 0;
792 if (!shell_cmd) {
793 return start_socket_client(argv[argc-1], p+2,
794 argc-1, argv);
795 }
796 p++;
797 daemon_over_rsh = 1;
798 }
799
800 if (argc < 2) {
801 usage(FERROR);
802 exit_cleanup(RERR_SYNTAX);
803 }
804
805 if (local_server) {
806 shell_machine = NULL;
807 shell_path = argv[argc-1];
808 } else {
809 *p = 0;
810 shell_machine = argv[argc-1];
811 shell_path = p+1;
812 }
813 argc--;
814 }
815 } else {
816 am_sender = 1;
817 local_server = 1;
818 shell_path = argv[argc-1];
819 }
820
821 if (shell_machine) {
822 p = strrchr(shell_machine,'@');
823 if (p) {
824 *p = 0;
825 shell_user = shell_machine;
826 shell_machine = p+1;
827 }
828 }
829
830 if (verbose > 3) {
831 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
832 shell_cmd?shell_cmd:"",
833 shell_machine?shell_machine:"",
834 shell_user?shell_user:"",
835 shell_path?shell_path:"");
836 }
837
838 if (!am_sender && argc > 1) {
839 usage(FERROR);
840 exit_cleanup(RERR_SYNTAX);
841 }
842
843 if (argc == 0 && !am_sender) {
844 list_only = 1;
845 }
846
847 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,
848 &f_in,&f_out);
849
850 /* if we're running an rsync server on the remote host over a
851 * remote shell command, we need to do the RSYNCD protocol first */
852 if (daemon_over_rsh) {
853 int tmpret;
854 tmpret = start_inband_exchange(shell_user, shell_path,
855 f_in, f_out, argc);
856 if (tmpret < 0)
857 return tmpret;
858 }
859
860 ret = client_run(f_in, f_out, pid, argc, argv);
861
862 fflush(stdout);
863 fflush(stderr);
864
865 return ret;
866}
867
868
869static RETSIGTYPE sigusr1_handler(UNUSED(int val))
870{
871 exit_cleanup(RERR_SIGNAL);
872}
873
874static RETSIGTYPE sigusr2_handler(UNUSED(int val))
875{
876 if (log_got_error) _exit(RERR_PARTIAL);
877 _exit(0);
878}
879
880static RETSIGTYPE sigchld_handler(UNUSED(int val))
881{
882#ifdef WNOHANG
883 int cnt, status;
884 pid_t pid;
885 /* An empty waitpid() loop was put here by Tridge and we could never
886 * get him to explain why he put it in, so rather than taking it
887 * out we're instead saving the child exit statuses for later use.
888 * The waitpid() loop presumably eliminates all possibility of leaving
889 * zombie children, maybe that's why he did it.
890 */
891 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
892 /* save the child's exit status */
893 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
894 if (pid_stat_table[cnt].pid == 0) {
895 pid_stat_table[cnt].pid = pid;
896 pid_stat_table[cnt].status = status;
897 break;
898 }
899 }
900 }
901#endif
902}
903
904
905/**
906 * This routine catches signals and tries to send them to gdb.
907 *
908 * Because it's called from inside a signal handler it ought not to
909 * use too many library routines.
910 *
911 * @todo Perhaps use "screen -X" instead/as well, to help people
912 * debugging without easy access to X. Perhaps use an environment
913 * variable, or just call a script?
914 *
915 * @todo The /proc/ magic probably only works on Linux (and
916 * Solaris?) Can we be more portable?
917 **/
918#ifdef MAINTAINER_MODE
919const char *get_panic_action(void)
920{
921 const char *cmd_fmt = getenv("RSYNC_PANIC_ACTION");
922
923 if (cmd_fmt)
924 return cmd_fmt;
925 else
926 return "xterm -display :0 -T Panic -n Panic "
927 "-e gdb /proc/%d/exe %d";
928}
929
930
931/**
932 * Handle a fatal signal by launching a debugger, controlled by $RSYNC_PANIC_ACTION.
933 *
934 * This signal handler is only installed if we were configured with
935 * --enable-maintainer-mode. Perhaps it should always be on and we
936 * should just look at the environment variable, but I'm a bit leery
937 * of a signal sending us into a busy loop.
938 **/
939static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
940{
941 char cmd_buf[300];
942 int ret;
943
944 sprintf(cmd_buf, get_panic_action(),
945 getpid(), getpid());
946
947 /* Unless we failed to execute gdb, we allow the process to
948 * continue. I'm not sure if that's right. */
949 ret = system(cmd_buf);
950 if (ret)
951 _exit(ret);
952}
953#endif
954
955
956int main(int argc,char *argv[])
957{
958 int ret;
959 int orig_argc;
960 char **orig_argv;
961
962 orig_argc = argc;
963 orig_argv = argv;
964
965 signal(SIGUSR1, sigusr1_handler);
966 signal(SIGUSR2, sigusr2_handler);
967 signal(SIGCHLD, sigchld_handler);
968#ifdef MAINTAINER_MODE
969 signal(SIGSEGV, rsync_panic_handler);
970 signal(SIGFPE, rsync_panic_handler);
971 signal(SIGABRT, rsync_panic_handler);
972 signal(SIGBUS, rsync_panic_handler);
973#endif /* def MAINTAINER_MODE */
974
975 starttime = time(NULL);
976 am_root = (getuid() == 0);
977
978 memset(&stats, 0, sizeof(stats));
979
980 if (argc < 2) {
981 usage(FERROR);
982 exit_cleanup(RERR_SYNTAX);
983 }
984
985 /* we set a 0 umask so that correct file permissions can be
986 * carried across */
987 orig_umask = (int)umask(0);
988
989 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
990 /* FIXME: We ought to call the same error-handling
991 * code here, rather than relying on getopt. */
992 option_error();
993 exit_cleanup(RERR_SYNTAX);
994 }
995
996 signal(SIGINT,SIGNAL_CAST sig_int);
997 signal(SIGHUP,SIGNAL_CAST sig_int);
998 signal(SIGTERM,SIGNAL_CAST sig_int);
999
1000 /* Ignore SIGPIPE; we consistently check error codes and will
1001 * see the EPIPE. */
1002 signal(SIGPIPE, SIG_IGN);
1003
1004 /* Initialize push_dir here because on some old systems getcwd
1005 * (implemented by forking "pwd" and reading its output) doesn't
1006 * work when there are other child processes. Also, on all systems
1007 * that implement getcwd that way "pwd" can't be found after chroot. */
1008 push_dir(NULL);
1009
1010 if (write_batch && !am_server) {
1011 write_batch_argvs_file(orig_argc, orig_argv);
1012 }
1013
1014 if (am_daemon && !am_server)
1015 return daemon_main();
1016
1017 if (argc < 1) {
1018 usage(FERROR);
1019 exit_cleanup(RERR_SYNTAX);
1020 }
1021
1022 if (dry_run)
1023 verbose = MAX(verbose,1);
1024
1025#ifndef SUPPORT_LINKS
1026 if (!am_server && preserve_links) {
1027 rprintf(FERROR,"ERROR: symbolic links not supported\n");
1028 exit_cleanup(RERR_UNSUPPORTED);
1029 }
1030#endif
1031
1032 if (am_server) {
1033 set_nonblocking(STDIN_FILENO);
1034 set_nonblocking(STDOUT_FILENO);
1035 if (am_daemon)
1036 return start_daemon(STDIN_FILENO, STDOUT_FILENO);
1037 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1038 }
1039
1040 ret = start_client(argc, argv);
1041 if (ret == -1)
1042 exit_cleanup(RERR_STARTCLIENT);
1043 else
1044 exit_cleanup(ret);
1045
1046 return ret;
1047}