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