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