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