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