- Fixed an inc_recurse problem with implied dirs not getting created
[rsync/rsync.git] / main.c
1 /*
2  * The startup routines, including main(), for rsync.
3  *
4  * Copyright (C) 1996-2001 Andrew Tridgell <tridge@samba.org>
5  * Copyright (C) 1996 Paul Mackerras
6  * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
7  * Copyright (C) 2003-2007 Wayne Davison
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, visit the http://fsf.org website.
21  */
22
23 #include "rsync.h"
24 #include "io.h"
25 #if defined CONFIG_LOCALE && defined HAVE_LOCALE_H
26 #include <locale.h>
27 #endif
28
29 extern int verbose;
30 extern int dry_run;
31 extern int list_only;
32 extern int am_root;
33 extern int am_server;
34 extern int am_sender;
35 extern int am_generator;
36 extern int am_daemon;
37 extern int inc_recurse;
38 extern int blocking_io;
39 extern int remove_source_files;
40 extern int need_messages_from_generator;
41 extern int kluge_around_eof;
42 extern int do_stats;
43 extern int log_got_error;
44 extern int module_id;
45 extern int copy_links;
46 extern int copy_dirlinks;
47 extern int keep_dirlinks;
48 extern int preserve_hard_links;
49 extern int protocol_version;
50 extern int file_total;
51 extern int recurse;
52 extern int protect_args;
53 extern int relative_paths;
54 extern int sanitize_paths;
55 extern int curr_dir_depth;
56 extern int curr_dir_len;
57 extern int module_id;
58 extern int rsync_port;
59 extern int whole_file;
60 extern int read_batch;
61 extern int write_batch;
62 extern int batch_fd;
63 extern int filesfrom_fd;
64 extern pid_t cleanup_child_pid;
65 extern struct stats stats;
66 extern char *filesfrom_host;
67 extern char *partial_dir;
68 extern char *basis_dir[];
69 extern char *rsync_path;
70 extern char *shell_cmd;
71 extern char *batch_name;
72 extern char *password_file;
73 extern char curr_dir[MAXPATHLEN];
74 extern struct file_list *first_flist;
75 extern struct filter_list_struct server_filter_list;
76
77 int local_server = 0;
78 int new_root_dir = 0;
79 int daemon_over_rsh = 0;
80 mode_t orig_umask = 0;
81 int batch_gen_fd = -1;
82
83 /* There's probably never more than at most 2 outstanding child processes,
84  * but set it higher, just in case. */
85 #define MAXCHILDPROCS 7
86
87 #ifdef HAVE_SIGACTION
88 # ifdef HAVE_SIGPROCMASK
89 #  define SIGACTMASK(n,h) SIGACTION(n,h), sigaddset(&sigmask,(n))
90 # else
91 #  define SIGACTMASK(n,h) SIGACTION(n,h)
92 # endif
93 static struct sigaction sigact;
94 #endif
95
96 struct pid_status {
97         pid_t pid;
98         int status;
99 } pid_stat_table[MAXCHILDPROCS];
100
101 static time_t starttime, endtime;
102 static int64 total_read, total_written;
103
104 static void show_malloc_stats(void);
105
106 /* Works like waitpid(), but if we already harvested the child pid in our
107  * remember_children(), we succeed instead of returning an error. */
108 pid_t wait_process(pid_t pid, int *status_ptr, int flags)
109 {
110         pid_t waited_pid;
111         
112         do {
113                 waited_pid = waitpid(pid, status_ptr, flags);
114         } while (waited_pid == -1 && errno == EINTR);
115
116         if (waited_pid == -1 && errno == ECHILD) {
117                 /* Status of requested child no longer available:  check to
118                  * see if it was processed by remember_children(). */
119                 int cnt;
120                 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
121                         if (pid == pid_stat_table[cnt].pid) {
122                                 *status_ptr = pid_stat_table[cnt].status;
123                                 pid_stat_table[cnt].pid = 0;
124                                 return pid;
125                         }
126                 }
127         }
128
129         return waited_pid;
130 }
131
132 /* Wait for a process to exit, calling io_flush while waiting. */
133 static void wait_process_with_flush(pid_t pid, int *exit_code_ptr)
134 {
135         pid_t waited_pid;
136         int status;
137
138         while ((waited_pid = wait_process(pid, &status, WNOHANG)) == 0) {
139                 msleep(20);
140                 io_flush(FULL_FLUSH);
141         }
142
143         /* TODO: If the child exited on a signal, then log an
144          * appropriate error message.  Perhaps we should also accept a
145          * message describing the purpose of the child.  Also indicate
146          * this to the caller so that they know something went wrong. */
147         if (waited_pid < 0) {
148                 rsyserr(FERROR, errno, "waitpid");
149                 *exit_code_ptr = RERR_WAITCHILD;
150         } else if (!WIFEXITED(status)) {
151 #ifdef WCOREDUMP
152                 if (WCOREDUMP(status))
153                         *exit_code_ptr = RERR_CRASHED;
154                 else
155 #endif
156                 if (WIFSIGNALED(status))
157                         *exit_code_ptr = RERR_TERMINATED;
158                 else
159                         *exit_code_ptr = RERR_WAITCHILD;
160         } else
161                 *exit_code_ptr = WEXITSTATUS(status);
162 }
163
164 /* This function gets called from all 3 processes.  We want the client side
165  * to actually output the text, but the sender is the only process that has
166  * all the stats we need.  So, if we're a client sender, we do the report.
167  * If we're a server sender, we write the stats on the supplied fd.  If
168  * we're the client receiver we read the stats from the supplied fd and do
169  * the report.  All processes might also generate a set of debug stats, if
170  * the verbose level is high enough (this is the only thing that the
171  * generator process and the server receiver ever do here). */
172 static void handle_stats(int f)
173 {
174         endtime = time(NULL);
175
176         /* Cache two stats because the read/write code can change it. */
177         total_read = stats.total_read;
178         total_written = stats.total_written;
179
180         if (do_stats && verbose > 1) {
181                 /* These come out from every process */
182                 show_malloc_stats();
183                 show_flist_stats();
184         }
185
186         if (am_generator)
187                 return;
188
189         if (am_daemon) {
190                 if (f == -1 || !am_sender)
191                         return;
192         }
193
194         if (am_server) {
195                 if (am_sender) {
196                         write_varlong30(f, total_read, 3);
197                         write_varlong30(f, total_written, 3);
198                         write_varlong30(f, stats.total_size, 3);
199                         if (protocol_version >= 29) {
200                                 write_varlong30(f, stats.flist_buildtime, 3);
201                                 write_varlong30(f, stats.flist_xfertime, 3);
202                         }
203                 }
204                 return;
205         }
206
207         /* this is the client */
208
209         if (f < 0 && !am_sender) /* e.g. when we got an empty file list. */
210                 ;
211         else if (!am_sender) {
212                 /* Read the first two in opposite order because the meaning of
213                  * read/write swaps when switching from sender to receiver. */
214                 total_written = read_varlong30(f, 3);
215                 total_read = read_varlong30(f, 3);
216                 stats.total_size = read_varlong30(f, 3);
217                 if (protocol_version >= 29) {
218                         stats.flist_buildtime = read_varlong30(f, 3);
219                         stats.flist_xfertime = read_varlong30(f, 3);
220                 }
221         } else if (write_batch) {
222                 /* The --read-batch process is going to be a client
223                  * receiver, so we need to give it the stats. */
224                 write_varlong30(batch_fd, total_read, 3);
225                 write_varlong30(batch_fd, total_written, 3);
226                 write_varlong30(batch_fd, stats.total_size, 3);
227                 if (protocol_version >= 29) {
228                         write_varlong30(batch_fd, stats.flist_buildtime, 3);
229                         write_varlong30(batch_fd, stats.flist_xfertime, 3);
230                 }
231         }
232 }
233
234 static void output_summary(void)
235 {
236         if (do_stats) {
237                 rprintf(FCLIENT, "\n");
238                 rprintf(FINFO,"Number of files: %d\n", stats.num_files);
239                 rprintf(FINFO,"Number of files transferred: %d\n",
240                         stats.num_transferred_files);
241                 rprintf(FINFO,"Total file size: %s bytes\n",
242                         human_num(stats.total_size));
243                 rprintf(FINFO,"Total transferred file size: %s bytes\n",
244                         human_num(stats.total_transferred_size));
245                 rprintf(FINFO,"Literal data: %s bytes\n",
246                         human_num(stats.literal_data));
247                 rprintf(FINFO,"Matched data: %s bytes\n",
248                         human_num(stats.matched_data));
249                 rprintf(FINFO,"File list size: %s\n",
250                         human_num(stats.flist_size));
251                 if (stats.flist_buildtime) {
252                         rprintf(FINFO,
253                                 "File list generation time: %.3f seconds\n",
254                                 (double)stats.flist_buildtime / 1000);
255                         rprintf(FINFO,
256                                 "File list transfer time: %.3f seconds\n",
257                                 (double)stats.flist_xfertime / 1000);
258                 }
259                 rprintf(FINFO,"Total bytes sent: %s\n",
260                         human_num(total_written));
261                 rprintf(FINFO,"Total bytes received: %s\n",
262                         human_num(total_read));
263         }
264
265         if (verbose || do_stats) {
266                 rprintf(FCLIENT, "\n");
267                 rprintf(FINFO,
268                         "sent %s bytes  received %s bytes  %s bytes/sec\n",
269                         human_num(total_written), human_num(total_read),
270                         human_dnum((total_written + total_read)/(0.5 + (endtime - starttime)), 2));
271                 rprintf(FINFO, "total size is %s  speedup is %.2f\n",
272                         human_num(stats.total_size),
273                         (double)stats.total_size / (total_written+total_read));
274         }
275
276         fflush(stdout);
277         fflush(stderr);
278 }
279
280
281 /**
282  * If our C library can get malloc statistics, then show them to FINFO
283  **/
284 static void show_malloc_stats(void)
285 {
286 #ifdef HAVE_MALLINFO
287         struct mallinfo mi;
288
289         mi = mallinfo();
290
291         rprintf(FCLIENT, "\n");
292         rprintf(FINFO, RSYNC_NAME "[%d] (%s%s%s) heap statistics:\n",
293                 getpid(), am_server ? "server " : "",
294                 am_daemon ? "daemon " : "", who_am_i());
295         rprintf(FINFO, "  arena:     %10ld   (bytes from sbrk)\n",
296                 (long)mi.arena);
297         rprintf(FINFO, "  ordblks:   %10ld   (chunks not in use)\n",
298                 (long)mi.ordblks);
299         rprintf(FINFO, "  smblks:    %10ld\n",
300                 (long)mi.smblks);
301         rprintf(FINFO, "  hblks:     %10ld   (chunks from mmap)\n",
302                 (long)mi.hblks);
303         rprintf(FINFO, "  hblkhd:    %10ld   (bytes from mmap)\n",
304                 (long)mi.hblkhd);
305         rprintf(FINFO, "  allmem:    %10ld   (bytes from sbrk + mmap)\n",
306                 (long)mi.arena + mi.hblkhd);
307         rprintf(FINFO, "  usmblks:   %10ld\n",
308                 (long)mi.usmblks);
309         rprintf(FINFO, "  fsmblks:   %10ld\n",
310                 (long)mi.fsmblks);
311         rprintf(FINFO, "  uordblks:  %10ld   (bytes used)\n",
312                 (long)mi.uordblks);
313         rprintf(FINFO, "  fordblks:  %10ld   (bytes free)\n",
314                 (long)mi.fordblks);
315         rprintf(FINFO, "  keepcost:  %10ld   (bytes in releasable chunk)\n",
316                 (long)mi.keepcost);
317 #endif /* HAVE_MALLINFO */
318 }
319
320
321 /* Start the remote shell.   cmd may be NULL to use the default. */
322 static pid_t do_cmd(char *cmd, char *machine, char *user, char **remote_argv, int remote_argc,
323                     int *f_in_p, int *f_out_p)
324 {
325         int i, argc = 0;
326         char *args[MAX_ARGS];
327         pid_t ret;
328         char *dir = NULL;
329         int dash_l_set = 0;
330
331         if (!read_batch && !local_server) {
332                 char *t, *f, in_quote = '\0';
333                 char *rsh_env = getenv(RSYNC_RSH_ENV);
334                 if (!cmd)
335                         cmd = rsh_env;
336                 if (!cmd)
337                         cmd = RSYNC_RSH;
338                 cmd = strdup(cmd);
339                 if (!cmd)
340                         goto oom;
341
342                 for (t = f = cmd; *f; f++) {
343                         if (*f == ' ')
344                                 continue;
345                         /* Comparison leaves rooms for server_options(). */
346                         if (argc >= MAX_ARGS - MAX_SERVER_ARGS)
347                                 goto arg_overflow;
348                         args[argc++] = t;
349                         while (*f != ' ' || in_quote) {
350                                 if (!*f) {
351                                         if (in_quote) {
352                                                 rprintf(FERROR,
353                                                     "Missing trailing-%c in remote-shell command.\n",
354                                                     in_quote);
355                                                 exit_cleanup(RERR_SYNTAX);
356                                         }
357                                         f--;
358                                         break;
359                                 }
360                                 if (*f == '\'' || *f == '"') {
361                                         if (!in_quote) {
362                                                 in_quote = *f++;
363                                                 continue;
364                                         }
365                                         if (*f == in_quote && *++f != in_quote) {
366                                                 in_quote = '\0';
367                                                 continue;
368                                         }
369                                 }
370                                 *t++ = *f++;
371                         }
372                         *t++ = '\0';
373                 }
374
375                 /* check to see if we've already been given '-l user' in
376                  * the remote-shell command */
377                 for (i = 0; i < argc-1; i++) {
378                         if (!strcmp(args[i], "-l") && args[i+1][0] != '-')
379                                 dash_l_set = 1;
380                 }
381
382 #ifdef HAVE_REMSH
383                 /* remsh (on HPUX) takes the arguments the other way around */
384                 args[argc++] = machine;
385                 if (user && !(daemon_over_rsh && dash_l_set)) {
386                         args[argc++] = "-l";
387                         args[argc++] = user;
388                 }
389 #else
390                 if (user && !(daemon_over_rsh && dash_l_set)) {
391                         args[argc++] = "-l";
392                         args[argc++] = user;
393                 }
394                 args[argc++] = machine;
395 #endif
396
397                 args[argc++] = rsync_path;
398
399                 if (blocking_io < 0) {
400                         char *cp;
401                         if ((cp = strrchr(cmd, '/')) != NULL)
402                                 cp++;
403                         else
404                                 cp = cmd;
405                         if (strcmp(cp, "rsh") == 0 || strcmp(cp, "remsh") == 0)
406                                 blocking_io = 1;
407                 }
408
409                 server_options(args,&argc);
410
411                 if (argc >= MAX_ARGS - 2)
412                         goto arg_overflow;
413         }
414
415         args[argc++] = ".";
416
417         if (!daemon_over_rsh) {
418                 while (remote_argc > 0) {
419                         if (argc >= MAX_ARGS - 1) {
420                           arg_overflow:
421                                 rprintf(FERROR, "internal: args[] overflowed in do_cmd()\n");
422                                 exit_cleanup(RERR_SYNTAX);
423                         }
424                         args[argc++] = *remote_argv++;
425                         remote_argc--;
426                 }
427         }
428
429         args[argc] = NULL;
430
431         if (verbose > 3) {
432                 for (i = 0; i < argc; i++)
433                         rprintf(FCLIENT, "cmd[%d]=%s ", i, args[i]);
434                 rprintf(FCLIENT, "\n");
435         }
436
437         if (read_batch) {
438                 int from_gen_pipe[2];
439                 if (fd_pair(from_gen_pipe) < 0) {
440                         rsyserr(FERROR, errno, "pipe");
441                         exit_cleanup(RERR_IPC);
442                 }
443                 batch_gen_fd = from_gen_pipe[0];
444                 *f_out_p = from_gen_pipe[1];
445                 *f_in_p = batch_fd;
446                 ret = -1; /* no child pid */
447         } else if (local_server) {
448                 /* If the user didn't request --[no-]whole-file, force
449                  * it on, but only if we're not batch processing. */
450                 if (whole_file < 0 && !write_batch)
451                         whole_file = 1;
452                 ret = local_child(argc, args, f_in_p, f_out_p, child_main);
453         } else {
454                 if (protect_args) {
455                         char *save_opts1, *save_opts2;
456                         for (i = 0; strcmp(args[i], "--server") != 0; i++) {}
457                         save_opts1 = args[i+1];
458                         save_opts2 = args[i+2];
459                         args[i+1] = "-s";
460                         args[i+2] = NULL;
461                         ret = piped_child(args, f_in_p, f_out_p);
462                         args[i] = args[i-1]; /* move command name over --server */
463                         args[i+1] = save_opts1;
464                         args[i+2] = save_opts2;
465                         while (args[i]) {
466                                 write_sbuf(*f_out_p, args[i++]);
467                                 write_byte(*f_out_p, 0);
468                         }
469                         write_byte(*f_out_p, 0);
470                 } else
471                         ret = piped_child(args, f_in_p, f_out_p);
472         }
473
474         if (dir)
475                 free(dir);
476
477         return ret;
478
479   oom:
480         out_of_memory("do_cmd");
481         return 0; /* not reached */
482 }
483
484 /* The receiving side operates in one of two modes:
485  *
486  * 1. it receives any number of files into a destination directory,
487  * placing them according to their names in the file-list.
488  *
489  * 2. it receives a single file and saves it using the name in the
490  * destination path instead of its file-list name.  This requires a
491  * "local name" for writing out the destination file.
492  *
493  * So, our task is to figure out what mode/local-name we need.
494  * For mode 1, we change into the destination directory and return NULL.
495  * For mode 2, we change into the directory containing the destination
496  * file (if we aren't already there) and return the local-name. */
497 static char *get_local_name(struct file_list *flist, char *dest_path)
498 {
499         STRUCT_STAT st;
500         int statret;
501         char *cp;
502
503         if (verbose > 2) {
504                 rprintf(FINFO, "get_local_name count=%d %s\n",
505                         file_total, NS(dest_path));
506         }
507
508         if (!dest_path || list_only)
509                 return NULL;
510
511         /* See what currently exists at the destination. */
512         if ((statret = do_stat(dest_path, &st)) == 0) {
513                 /* If the destination is a dir, enter it and use mode 1. */
514                 if (S_ISDIR(st.st_mode)) {
515                         if (!push_dir(dest_path, 0)) {
516                                 rsyserr(FERROR, errno, "push_dir#1 %s failed",
517                                         full_fname(dest_path));
518                                 exit_cleanup(RERR_FILESELECT);
519                         }
520                         return NULL;
521                 }
522                 if (file_total > 1) {
523                         rprintf(FERROR,
524                                 "ERROR: destination must be a directory when"
525                                 " copying more than 1 file\n");
526                         exit_cleanup(RERR_FILESELECT);
527                 }
528                 if (file_total == 1 && S_ISDIR(flist->files[0]->mode)) {
529                         rprintf(FERROR,
530                                 "ERROR: cannot overwrite non-directory"
531                                 " with a directory\n");
532                         exit_cleanup(RERR_FILESELECT);
533                 }
534         } else if (errno != ENOENT) {
535                 /* If we don't know what's at the destination, fail. */
536                 rsyserr(FERROR, errno, "ERROR: cannot stat destination %s",
537                         full_fname(dest_path));
538                 exit_cleanup(RERR_FILESELECT);
539         }
540
541         cp = strrchr(dest_path, '/');
542
543         /* If we need a destination directory because the transfer is not
544          * of a single non-directory or the user has requested one via a
545          * destination path ending in a slash, create one and use mode 1. */
546         if (file_total > 1 || (cp && !cp[1])) {
547                 /* Lop off the final slash (if any). */
548                 if (cp && !cp[1])
549                         *cp = '\0';
550
551                 if (statret == 0) {
552                         rprintf(FERROR,
553                             "ERROR: destination path is not a directory\n");
554                         exit_cleanup(RERR_SYNTAX);
555                 }
556
557                 if (mkdir_defmode(dest_path) != 0) {
558                         rsyserr(FERROR, errno, "mkdir %s failed",
559                                 full_fname(dest_path));
560                         exit_cleanup(RERR_FILEIO);
561                 }
562
563                 new_root_dir = 1;
564
565                 if (verbose)
566                         rprintf(FINFO, "created directory %s\n", dest_path);
567
568                 if (dry_run) {
569                         /* Indicate that dest dir doesn't really exist. */
570                         dry_run++;
571                 }
572
573                 if (!push_dir(dest_path, dry_run > 1)) {
574                         rsyserr(FERROR, errno, "push_dir#2 %s failed",
575                                 full_fname(dest_path));
576                         exit_cleanup(RERR_FILESELECT);
577                 }
578
579                 return NULL;
580         }
581
582         /* Otherwise, we are writing a single file, possibly on top of an
583          * existing non-directory.  Change to the item's parent directory
584          * (if it has a path component), return the basename of the
585          * destination file as the local name, and use mode 2. */
586         if (!cp)
587                 return dest_path;
588
589         if (cp == dest_path)
590                 dest_path = "/";
591
592         *cp = '\0';
593         if (!push_dir(dest_path, 0)) {
594                 rsyserr(FERROR, errno, "push_dir#3 %s failed",
595                         full_fname(dest_path));
596                 exit_cleanup(RERR_FILESELECT);
597         }
598         *cp = '/';
599
600         return cp + 1;
601 }
602
603 /* Call this if the destination dir (which is assumed to be in curr_dir)
604  * does not yet exist and we can't create it due to being in dry-run
605  * mode.  We'll fix dirs that can be relative to the non-existent dir. */
606 static void fix_basis_dirs(void)
607 {
608         char **dir, *new, *slash;
609         int len;
610
611         if (dry_run <= 1)
612                 return;
613
614         slash = strrchr(curr_dir, '/');
615
616         for (dir = basis_dir; *dir; dir++) {
617                 if (**dir == '/')
618                         continue;
619                 len = curr_dir_len + 1 + strlen(*dir) + 1;
620                 if (!(new = new_array(char, len)))
621                         out_of_memory("fix_basis_dirs");
622                 if (slash && strncmp(*dir, "../", 3) == 0) {
623                     /* We want to remove only one leading "../" prefix for
624                      * the directory we couldn't create in dry-run mode:
625                      * this ensures that any other ".." references get
626                      * evaluated the same as they would for a live copy. */
627                     *slash = '\0';
628                     pathjoin(new, len, curr_dir, *dir + 3);
629                     *slash = '/';
630                 } else
631                     pathjoin(new, len, curr_dir, *dir);
632                 *dir = new;
633         }
634 }
635
636 /* This is only called by the sender. */
637 static void read_final_goodbye(int f_in)
638 {
639         int i, iflags, xlen;
640         uchar fnamecmp_type;
641         char xname[MAXPATHLEN];
642
643         if (protocol_version < 29)
644                 i = read_int(f_in);
645         else {
646                 i = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
647                                        xname, &xlen);
648         }
649
650         if (i != NDX_DONE) {
651                 rprintf(FERROR, "Invalid packet at end of run (%d) [%s]\n",
652                         i, who_am_i());
653                 exit_cleanup(RERR_PROTOCOL);
654         }
655 }
656
657 static void do_server_sender(int f_in, int f_out, int argc, char *argv[])
658 {
659         struct file_list *flist;
660         char *dir = argv[0];
661
662         if (verbose > 2) {
663                 rprintf(FINFO, "server_sender starting pid=%ld\n",
664                         (long)getpid());
665         }
666
667         if (am_daemon && lp_write_only(module_id)) {
668                 rprintf(FERROR, "ERROR: module is write only\n");
669                 exit_cleanup(RERR_SYNTAX);
670                 return;
671         }
672         if (am_daemon && lp_read_only(module_id) && remove_source_files) {
673                 rprintf(FERROR,
674                     "ERROR: --remove-%s-files cannot be used with a read-only module\n",
675                     remove_source_files == 1 ? "source" : "sent");
676                 exit_cleanup(RERR_SYNTAX);
677                 return;
678         }
679
680         if (!relative_paths) {
681                 if (!push_dir(dir, 0)) {
682                         rsyserr(FERROR, errno, "push_dir#3 %s failed",
683                                 full_fname(dir));
684                         exit_cleanup(RERR_FILESELECT);
685                 }
686         }
687         argc--;
688         argv++;
689
690         if (argc == 0 && (recurse || list_only)) {
691                 argc = 1;
692                 argv--;
693                 argv[0] = ".";
694         }
695
696         flist = send_file_list(f_out,argc,argv);
697         if (!flist || flist->used == 0)
698                 exit_cleanup(0);
699
700         io_start_buffering_in(f_in);
701
702         send_files(f_in, f_out);
703         io_flush(FULL_FLUSH);
704         handle_stats(f_out);
705         if (protocol_version >= 24)
706                 read_final_goodbye(f_in);
707         io_flush(FULL_FLUSH);
708         exit_cleanup(0);
709 }
710
711
712 static int do_recv(int f_in, int f_out, char *local_name)
713 {
714         int pid;
715         int exit_code = 0;
716         int error_pipe[2];
717
718         /* The receiving side mustn't obey this, or an existing symlink that
719          * points to an identical file won't be replaced by the referent. */
720         copy_links = copy_dirlinks = 0;
721
722 #ifdef SUPPORT_HARD_LINKS
723         if (preserve_hard_links && !inc_recurse)
724                 match_hard_links(first_flist);
725 #endif
726
727         if (fd_pair(error_pipe) < 0) {
728                 rsyserr(FERROR, errno, "pipe failed in do_recv");
729                 exit_cleanup(RERR_IPC);
730         }
731
732         io_flush(NORMAL_FLUSH);
733
734         if ((pid = do_fork()) == -1) {
735                 rsyserr(FERROR, errno, "fork failed in do_recv");
736                 exit_cleanup(RERR_IPC);
737         }
738
739         if (pid == 0) {
740                 close(error_pipe[0]);
741                 if (f_in != f_out)
742                         close(f_out);
743
744                 /* we can't let two processes write to the socket at one time */
745                 io_end_multiplex_out();
746
747                 /* set place to send errors */
748                 set_msg_fd_out(error_pipe[1]);
749                 io_start_buffering_out(error_pipe[1]);
750
751                 recv_files(f_in, local_name);
752                 io_flush(FULL_FLUSH);
753                 handle_stats(f_in);
754
755                 send_msg(MSG_DONE, "", 1, 0);
756                 write_varlong(error_pipe[1], stats.total_read, 3);
757                 io_flush(FULL_FLUSH);
758
759                 /* Handle any keep-alive packets from the post-processing work
760                  * that the generator does. */
761                 if (protocol_version >= 29) {
762                         int iflags, xlen;
763                         uchar fnamecmp_type;
764                         char xname[MAXPATHLEN];
765
766                         kluge_around_eof = -1;
767
768                         /* This should only get stopped via a USR2 signal. */
769                         read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
770                                            xname, &xlen);
771
772                         rprintf(FERROR, "Invalid packet at end of run [%s]\n",
773                                 who_am_i());
774                         exit_cleanup(RERR_PROTOCOL);
775                 }
776
777                 /* Finally, we go to sleep until our parent kills us with a
778                  * USR2 signal.  We sleep for a short time, as on some OSes
779                  * a signal won't interrupt a sleep! */
780                 while (1)
781                         msleep(20);
782         }
783
784         am_generator = 1;
785
786         io_end_multiplex_in();
787         if (write_batch && !am_server)
788                 stop_write_batch();
789
790         close(error_pipe[1]);
791         if (f_in != f_out)
792                 close(f_in);
793
794         io_start_buffering_out(f_out);
795
796         set_msg_fd_in(error_pipe[0]);
797         io_start_buffering_in(error_pipe[0]);
798
799 #ifdef SUPPORT_HARD_LINKS
800         if (preserve_hard_links && inc_recurse) {
801                 struct file_list *flist;
802                 for (flist = first_flist; flist; flist = flist->next)
803                         match_hard_links(flist);
804         }
805 #endif
806
807         generate_files(f_out, local_name);
808
809         handle_stats(-1);
810         io_flush(FULL_FLUSH);
811         if (protocol_version >= 24) {
812                 /* send a final goodbye message */
813                 write_ndx(f_out, NDX_DONE);
814         }
815         io_flush(FULL_FLUSH);
816
817         set_msg_fd_in(-1);
818         kill(pid, SIGUSR2);
819         wait_process_with_flush(pid, &exit_code);
820         return exit_code;
821 }
822
823 static void do_server_recv(int f_in, int f_out, int argc, char *argv[])
824 {
825         int exit_code;
826         struct file_list *flist;
827         char *local_name = NULL;
828         char *dir = NULL;
829         int save_verbose = verbose;
830
831         if (filesfrom_fd >= 0) {
832                 /* We can't mix messages with files-from data on the socket,
833                  * so temporarily turn off verbose messages. */
834                 verbose = 0;
835         }
836
837         if (verbose > 2) {
838                 rprintf(FINFO, "server_recv(%d) starting pid=%ld\n",
839                         argc, (long)getpid());
840         }
841
842         if (am_daemon && lp_read_only(module_id)) {
843                 rprintf(FERROR,"ERROR: module is read only\n");
844                 exit_cleanup(RERR_SYNTAX);
845                 return;
846         }
847
848         if (argc > 0) {
849                 dir = argv[0];
850                 argc--;
851                 argv++;
852                 if (!am_daemon && !push_dir(dir, 0)) {
853                         rsyserr(FERROR, errno, "push_dir#4 %s failed",
854                                 full_fname(dir));
855                         exit_cleanup(RERR_FILESELECT);
856                 }
857         }
858
859         if (protocol_version >= 30)
860                 io_start_multiplex_in();
861         else
862                 io_start_buffering_in(f_in);
863         recv_filter_list(f_in);
864
865         if (filesfrom_fd >= 0) {
866                 /* We need to send the files-from names to the sender at the
867                  * same time that we receive the file-list from them, so we
868                  * need the IO routines to automatically write out the names
869                  * onto our f_out socket as we read the file-list.  This
870                  * avoids both deadlock and extra delays/buffers. */
871                 io_set_filesfrom_fds(filesfrom_fd, f_out);
872                 filesfrom_fd = -1;
873         }
874
875         flist = recv_file_list(f_in);
876         if (!flist) {
877                 rprintf(FERROR,"server_recv: recv_file_list error\n");
878                 exit_cleanup(RERR_FILESELECT);
879         }
880         if (inc_recurse && file_total == 1)
881                 recv_additional_file_list(f_in);
882         verbose = save_verbose;
883
884         if (argc > 0)
885                 local_name = get_local_name(flist,argv[0]);
886
887         /* Now that we know what our destination directory turned out to be,
888          * we can sanitize the --link-/copy-/compare-dest args correctly. */
889         if (sanitize_paths) {
890                 char **dir;
891                 for (dir = basis_dir; *dir; dir++) {
892                         *dir = sanitize_path(NULL, *dir, NULL, curr_dir_depth, NULL);
893                 }
894                 if (partial_dir) {
895                         partial_dir = sanitize_path(NULL, partial_dir, NULL, curr_dir_depth, NULL);
896                 }
897         }
898         fix_basis_dirs();
899
900         if (server_filter_list.head) {
901                 char **dir;
902                 struct filter_list_struct *elp = &server_filter_list;
903
904                 for (dir = basis_dir; *dir; dir++) {
905                         if (check_filter(elp, *dir, 1) < 0)
906                                 goto options_rejected;
907                 }
908                 if (partial_dir && *partial_dir == '/'
909                  && check_filter(elp, partial_dir, 1) < 0) {
910                     options_rejected:
911                         rprintf(FERROR,
912                                 "Your options have been rejected by the server.\n");
913                         exit_cleanup(RERR_SYNTAX);
914                 }
915         }
916
917         exit_code = do_recv(f_in, f_out, local_name);
918         exit_cleanup(exit_code);
919 }
920
921
922 int child_main(int argc, char *argv[])
923 {
924         start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
925         return 0;
926 }
927
928
929 void start_server(int f_in, int f_out, int argc, char *argv[])
930 {
931         set_nonblocking(f_in);
932         set_nonblocking(f_out);
933
934         io_set_sock_fds(f_in, f_out);
935         setup_protocol(f_out, f_in);
936 #ifdef ICONV_CONST
937         setup_iconv();
938 #endif
939
940         if (protocol_version >= 23)
941                 io_start_multiplex_out();
942
943         if (am_sender) {
944                 keep_dirlinks = 0; /* Must be disabled on the sender. */
945                 if (need_messages_from_generator)
946                         io_start_multiplex_in();
947                 recv_filter_list(f_in);
948                 do_server_sender(f_in, f_out, argc, argv);
949         } else
950                 do_server_recv(f_in, f_out, argc, argv);
951         exit_cleanup(0);
952 }
953
954
955 /*
956  * This is called once the connection has been negotiated.  It is used
957  * for rsyncd, remote-shell, and local connections.
958  */
959 int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
960 {
961         struct file_list *flist = NULL;
962         int exit_code = 0, exit_code2 = 0;
963         char *local_name = NULL;
964
965         cleanup_child_pid = pid;
966         if (!read_batch) {
967                 set_nonblocking(f_in);
968                 set_nonblocking(f_out);
969         }
970
971         io_set_sock_fds(f_in, f_out);
972         setup_protocol(f_out,f_in);
973 #ifdef ICONV_CONST
974         setup_iconv();
975 #endif
976
977         /* We set our stderr file handle to blocking because ssh might have
978          * set it to non-blocking.  This can be particularly troublesome if
979          * stderr is a clone of stdout, because ssh would have set our stdout
980          * to non-blocking at the same time (which can easily cause us to lose
981          * output from our print statements).  This kluge shouldn't cause ssh
982          * any problems for how we use it.  Note also that we delayed setting
983          * this until after the above protocol setup so that we know for sure
984          * that ssh is done twiddling its file descriptors.  */
985         set_blocking(STDERR_FILENO);
986
987         if (am_sender) {
988                 keep_dirlinks = 0; /* Must be disabled on the sender. */
989                 if (protocol_version >= 30)
990                         io_start_multiplex_out();
991                 else
992                         io_start_buffering_out(f_out);
993                 if (!filesfrom_host)
994                         set_msg_fd_in(f_in);
995                 send_filter_list(f_out);
996                 if (filesfrom_host)
997                         filesfrom_fd = f_in;
998
999                 if (write_batch && !am_server)
1000                         start_write_batch(f_out);
1001                 flist = send_file_list(f_out, argc, argv);
1002                 set_msg_fd_in(-1);
1003                 if (verbose > 3)
1004                         rprintf(FINFO,"file list sent\n");
1005
1006                 if (protocol_version >= 23)
1007                         io_start_multiplex_in();
1008
1009                 io_flush(NORMAL_FLUSH);
1010                 send_files(f_in, f_out);
1011                 io_flush(FULL_FLUSH);
1012                 handle_stats(-1);
1013                 if (protocol_version >= 24)
1014                         read_final_goodbye(f_in);
1015                 if (pid != -1) {
1016                         if (verbose > 3)
1017                                 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
1018                         io_flush(FULL_FLUSH);
1019                         wait_process_with_flush(pid, &exit_code);
1020                 }
1021                 output_summary();
1022                 io_flush(FULL_FLUSH);
1023                 exit_cleanup(exit_code);
1024         }
1025
1026         if (!read_batch) {
1027                 if (protocol_version >= 23)
1028                         io_start_multiplex_in();
1029                 if (need_messages_from_generator)
1030                         io_start_multiplex_out();
1031         }
1032
1033         if (argc == 0)
1034                 list_only |= 1;
1035
1036         send_filter_list(read_batch ? -1 : f_out);
1037
1038         if (filesfrom_fd >= 0) {
1039                 io_set_filesfrom_fds(filesfrom_fd, f_out);
1040                 filesfrom_fd = -1;
1041         }
1042
1043         if (write_batch && !am_server)
1044                 start_write_batch(f_in);
1045         flist = recv_file_list(f_in);
1046         if (inc_recurse && file_total == 1)
1047                 recv_additional_file_list(f_in);
1048
1049         if (flist && flist->used > 0) {
1050                 local_name = get_local_name(flist, argv[0]);
1051
1052                 fix_basis_dirs();
1053
1054                 exit_code2 = do_recv(f_in, f_out, local_name);
1055         } else {
1056                 handle_stats(-1);
1057                 output_summary();
1058         }
1059
1060         if (pid != -1) {
1061                 if (verbose > 3)
1062                         rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
1063                 io_flush(FULL_FLUSH);
1064                 wait_process_with_flush(pid, &exit_code);
1065         }
1066
1067         return MAX(exit_code, exit_code2);
1068 }
1069
1070 static int copy_argv(char *argv[])
1071 {
1072         int i;
1073
1074         for (i = 0; argv[i]; i++) {
1075                 if (!(argv[i] = strdup(argv[i]))) {
1076                         rprintf (FERROR, "out of memory at %s(%d)\n",
1077                                  __FILE__, __LINE__);
1078                         return RERR_MALLOC;
1079                 }
1080         }
1081
1082         return 0;
1083 }
1084
1085
1086 /**
1087  * Start a client for either type of remote connection.  Work out
1088  * whether the arguments request a remote shell or rsyncd connection,
1089  * and call the appropriate connection function, then run_client.
1090  *
1091  * Calls either start_socket_client (for sockets) or do_cmd and
1092  * client_run (for ssh).
1093  **/
1094 static int start_client(int argc, char *argv[])
1095 {
1096         char *p, *shell_machine = NULL, *shell_user = NULL;
1097         char **remote_argv;
1098         int remote_argc;
1099         int f_in, f_out;
1100         int ret;
1101         pid_t pid;
1102
1103         /* Don't clobber argv[] so that ps(1) can still show the right
1104          * command line. */
1105         if ((ret = copy_argv(argv)) != 0)
1106                 return ret;
1107
1108         if (!read_batch) { /* for read_batch, NO source is specified */
1109                 char *path = check_for_hostspec(argv[0], &shell_machine, &rsync_port);
1110                 if (path) { /* source is remote */
1111                         char *dummy1;
1112                         int dummy2;
1113                         *argv = path;
1114                         remote_argv = argv;
1115                         remote_argc = argc;
1116                         argv += argc - 1;
1117                         if (argc == 1 || **argv == ':')
1118                                 argc = 0; /* no dest arg */
1119                         else if (check_for_hostspec(*argv, &dummy1, &dummy2)) {
1120                                 rprintf(FERROR,
1121                                         "The source and destination cannot both be remote.\n");
1122                                 exit_cleanup(RERR_SYNTAX);
1123                         } else {
1124                                 remote_argc--; /* don't count dest */
1125                                 argc = 1;
1126                         }
1127                         if (filesfrom_host && *filesfrom_host
1128                             && strcmp(filesfrom_host, shell_machine) != 0) {
1129                                 rprintf(FERROR,
1130                                         "--files-from hostname is not the same as the transfer hostname\n");
1131                                 exit_cleanup(RERR_SYNTAX);
1132                         }
1133                         am_sender = 0;
1134                         if (rsync_port)
1135                                 daemon_over_rsh = shell_cmd ? 1 : -1;
1136                 } else { /* source is local, check dest arg */
1137                         am_sender = 1;
1138
1139                         if (argc > 1) {
1140                                 p = argv[--argc];
1141                                 remote_argv = argv + argc;
1142                         } else {
1143                                 static char *dotarg[1] = { "." };
1144                                 p = dotarg[0];
1145                                 remote_argv = dotarg;
1146                                 list_only = 1;
1147                         }
1148                         remote_argc = 1;
1149
1150                         path = check_for_hostspec(p, &shell_machine, &rsync_port);
1151                         if (path && filesfrom_host && *filesfrom_host
1152                             && strcmp(filesfrom_host, shell_machine) != 0) {
1153                                 rprintf(FERROR,
1154                                         "--files-from hostname is not the same as the transfer hostname\n");
1155                                 exit_cleanup(RERR_SYNTAX);
1156                         }
1157                         if (!path) { /* no hostspec found, so src & dest are local */
1158                                 local_server = 1;
1159                                 if (filesfrom_host) {
1160                                         rprintf(FERROR,
1161                                                 "--files-from cannot be remote when the transfer is local\n");
1162                                         exit_cleanup(RERR_SYNTAX);
1163                                 }
1164                                 shell_machine = NULL;
1165                         } else { /* hostspec was found, so dest is remote */
1166                                 argv[argc] = path;
1167                                 if (rsync_port)
1168                                         daemon_over_rsh = shell_cmd ? 1 : -1;
1169                         }
1170                 }
1171         } else {  /* read_batch */
1172                 local_server = 1;
1173                 if (check_for_hostspec(argv[argc-1], &shell_machine, &rsync_port)) {
1174                         rprintf(FERROR, "remote destination is not allowed with --read-batch\n");
1175                         exit_cleanup(RERR_SYNTAX);
1176                 }
1177                 remote_argv = argv + argc - 1;
1178                 remote_argc = 1;
1179         }
1180
1181         if (am_sender) {
1182                 char *dummy1;
1183                 int dummy2;
1184                 int i;
1185                 /* For local source, extra source args must not have hostspec. */
1186                 for (i = 1; i < argc; i++) {
1187                         if (check_for_hostspec(argv[i], &dummy1, &dummy2)) {
1188                                 rprintf(FERROR, "Unexpected remote arg: %s\n", argv[i]);
1189                                 exit_cleanup(RERR_SYNTAX);
1190                         }
1191                 }
1192         } else {
1193                 int i;
1194                 /* For remote source, any extra source args must be ":SOURCE" args. */
1195                 for (i = 1; i < remote_argc; i++) {
1196                         if (*remote_argv[i] != ':') {
1197                                 rprintf(FERROR, "Unexpected local arg: %s\n", remote_argv[i]);
1198                                 rprintf(FERROR, "If arg is a remote file/dir, prefix it with a colon (:).\n");
1199                                 exit_cleanup(RERR_SYNTAX);
1200                         }
1201                         remote_argv[i]++;
1202                 }
1203                 if (argc == 0)
1204                         list_only |= 1;
1205         }
1206
1207         if (daemon_over_rsh < 0)
1208                 return start_socket_client(shell_machine, remote_argc, remote_argv, argc, argv);
1209
1210         if (password_file && !daemon_over_rsh) {
1211                 rprintf(FERROR, "The --password-file option may only be "
1212                                 "used when accessing an rsync daemon.\n");
1213                 exit_cleanup(RERR_SYNTAX);
1214         }
1215
1216         if (shell_machine) {
1217                 p = strrchr(shell_machine,'@');
1218                 if (p) {
1219                         *p = 0;
1220                         shell_user = shell_machine;
1221                         shell_machine = p+1;
1222                 }
1223         }
1224
1225         if (verbose > 3) {
1226                 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
1227                         NS(shell_cmd), NS(shell_machine), NS(shell_user),
1228                         remote_argv ? NS(remote_argv[0]) : "");
1229         }
1230
1231         pid = do_cmd(shell_cmd, shell_machine, shell_user, remote_argv, remote_argc,
1232                      &f_in, &f_out);
1233
1234         /* if we're running an rsync server on the remote host over a
1235          * remote shell command, we need to do the RSYNCD protocol first */
1236         if (daemon_over_rsh) {
1237                 int tmpret;
1238                 tmpret = start_inband_exchange(f_in, f_out, shell_user, remote_argc, remote_argv);
1239                 if (tmpret < 0)
1240                         return tmpret;
1241         }
1242
1243         ret = client_run(f_in, f_out, pid, argc, argv);
1244
1245         fflush(stdout);
1246         fflush(stderr);
1247
1248         return ret;
1249 }
1250
1251
1252 static RETSIGTYPE sigusr1_handler(UNUSED(int val))
1253 {
1254         exit_cleanup(RERR_SIGNAL1);
1255 }
1256
1257 static RETSIGTYPE sigusr2_handler(UNUSED(int val))
1258 {
1259         if (!am_server)
1260                 output_summary();
1261         close_all();
1262         if (log_got_error)
1263                 _exit(RERR_PARTIAL);
1264         _exit(0);
1265 }
1266
1267 RETSIGTYPE remember_children(UNUSED(int val))
1268 {
1269 #ifdef WNOHANG
1270         int cnt, status;
1271         pid_t pid;
1272         /* An empty waitpid() loop was put here by Tridge and we could never
1273          * get him to explain why he put it in, so rather than taking it
1274          * out we're instead saving the child exit statuses for later use.
1275          * The waitpid() loop presumably eliminates all possibility of leaving
1276          * zombie children, maybe that's why he did it. */
1277         while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
1278                 /* save the child's exit status */
1279                 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
1280                         if (pid_stat_table[cnt].pid == 0) {
1281                                 pid_stat_table[cnt].pid = pid;
1282                                 pid_stat_table[cnt].status = status;
1283                                 break;
1284                         }
1285                 }
1286         }
1287 #endif
1288 #ifndef HAVE_SIGACTION
1289         signal(SIGCHLD, remember_children);
1290 #endif
1291 }
1292
1293
1294 /**
1295  * This routine catches signals and tries to send them to gdb.
1296  *
1297  * Because it's called from inside a signal handler it ought not to
1298  * use too many library routines.
1299  *
1300  * @todo Perhaps use "screen -X" instead/as well, to help people
1301  * debugging without easy access to X.  Perhaps use an environment
1302  * variable, or just call a script?
1303  *
1304  * @todo The /proc/ magic probably only works on Linux (and
1305  * Solaris?)  Can we be more portable?
1306  **/
1307 #ifdef MAINTAINER_MODE
1308 const char *get_panic_action(void)
1309 {
1310         const char *cmd_fmt = getenv("RSYNC_PANIC_ACTION");
1311
1312         if (cmd_fmt)
1313                 return cmd_fmt;
1314         else
1315                 return "xterm -display :0 -T Panic -n Panic "
1316                         "-e gdb /proc/%d/exe %d";
1317 }
1318
1319
1320 /**
1321  * Handle a fatal signal by launching a debugger, controlled by $RSYNC_PANIC_ACTION.
1322  *
1323  * This signal handler is only installed if we were configured with
1324  * --enable-maintainer-mode.  Perhaps it should always be on and we
1325  * should just look at the environment variable, but I'm a bit leery
1326  * of a signal sending us into a busy loop.
1327  **/
1328 static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
1329 {
1330         char cmd_buf[300];
1331         int ret;
1332
1333         snprintf(cmd_buf, sizeof cmd_buf, get_panic_action(),
1334                  getpid(), getpid());
1335
1336         /* Unless we failed to execute gdb, we allow the process to
1337          * continue.  I'm not sure if that's right. */
1338         ret = system(cmd_buf);
1339         if (ret)
1340                 _exit(ret);
1341 }
1342 #endif
1343
1344
1345 int main(int argc,char *argv[])
1346 {
1347         int ret;
1348         int orig_argc = argc;
1349         char **orig_argv = argv;
1350 #ifdef HAVE_SIGACTION
1351 # ifdef HAVE_SIGPROCMASK
1352         sigset_t sigmask;
1353
1354         sigemptyset(&sigmask);
1355 # endif
1356         sigact.sa_flags = SA_NOCLDSTOP;
1357 #endif
1358         SIGACTMASK(SIGUSR1, sigusr1_handler);
1359         SIGACTMASK(SIGUSR2, sigusr2_handler);
1360         SIGACTMASK(SIGCHLD, remember_children);
1361 #ifdef MAINTAINER_MODE
1362         SIGACTMASK(SIGSEGV, rsync_panic_handler);
1363         SIGACTMASK(SIGFPE, rsync_panic_handler);
1364         SIGACTMASK(SIGABRT, rsync_panic_handler);
1365         SIGACTMASK(SIGBUS, rsync_panic_handler);
1366 #endif
1367
1368         starttime = time(NULL);
1369         am_root = (MY_UID() == 0);
1370
1371         memset(&stats, 0, sizeof(stats));
1372
1373         if (argc < 2) {
1374                 usage(FERROR);
1375                 exit_cleanup(RERR_SYNTAX);
1376         }
1377
1378         /* we set a 0 umask so that correct file permissions can be
1379          * carried across */
1380         orig_umask = umask(0);
1381
1382 #if defined CONFIG_LOCALE && defined HAVE_SETLOCALE
1383         setlocale(LC_CTYPE, "");
1384 #endif
1385
1386         if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
1387                 /* FIXME: We ought to call the same error-handling
1388                  * code here, rather than relying on getopt. */
1389                 option_error();
1390                 exit_cleanup(RERR_SYNTAX);
1391         }
1392
1393         SIGACTMASK(SIGINT, sig_int);
1394         SIGACTMASK(SIGHUP, sig_int);
1395         SIGACTMASK(SIGTERM, sig_int);
1396 #if defined HAVE_SIGACTION && HAVE_SIGPROCMASK
1397         sigprocmask(SIG_UNBLOCK, &sigmask, NULL);
1398 #endif
1399
1400         /* Ignore SIGPIPE; we consistently check error codes and will
1401          * see the EPIPE. */
1402         SIGACTION(SIGPIPE, SIG_IGN);
1403 #ifdef SIGXFSZ
1404         SIGACTION(SIGXFSZ, SIG_IGN);
1405 #endif
1406
1407         /* Initialize push_dir here because on some old systems getcwd
1408          * (implemented by forking "pwd" and reading its output) doesn't
1409          * work when there are other child processes.  Also, on all systems
1410          * that implement getcwd that way "pwd" can't be found after chroot. */
1411         push_dir(NULL, 0);
1412
1413         init_flist();
1414
1415         if ((write_batch || read_batch) && !am_server) {
1416                 if (write_batch)
1417                         write_batch_shell_file(orig_argc, orig_argv, argc);
1418
1419                 if (read_batch && strcmp(batch_name, "-") == 0)
1420                         batch_fd = STDIN_FILENO;
1421                 else {
1422                         batch_fd = do_open(batch_name,
1423                                    write_batch ? O_WRONLY | O_CREAT | O_TRUNC
1424                                    : O_RDONLY, S_IRUSR | S_IWUSR);
1425                 }
1426                 if (batch_fd < 0) {
1427                         rsyserr(FERROR, errno, "Batch file %s open error",
1428                                 full_fname(batch_name));
1429                         exit_cleanup(RERR_FILEIO);
1430                 }
1431                 if (read_batch)
1432                         read_stream_flags(batch_fd);
1433                 else
1434                         write_stream_flags(batch_fd);
1435
1436         }
1437         if (write_batch < 0)
1438                 dry_run = 1;
1439
1440         if (am_daemon && !am_server)
1441                 return daemon_main();
1442
1443         if (am_server && protect_args) {
1444                 char buf[MAXPATHLEN];
1445                 protect_args = 0;
1446                 read_args(STDIN_FILENO, NULL, buf, sizeof buf, 1, &argv, &argc, NULL);
1447                 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
1448                         option_error();
1449                         exit_cleanup(RERR_SYNTAX);
1450                 }
1451         }
1452
1453         if (argc < 1) {
1454                 usage(FERROR);
1455                 exit_cleanup(RERR_SYNTAX);
1456         }
1457
1458         if (am_server) {
1459                 set_nonblocking(STDIN_FILENO);
1460                 set_nonblocking(STDOUT_FILENO);
1461                 if (am_daemon)
1462                         return start_daemon(STDIN_FILENO, STDOUT_FILENO);
1463                 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1464         }
1465
1466         ret = start_client(argc, argv);
1467         if (ret == -1)
1468                 exit_cleanup(RERR_STARTCLIENT);
1469         else
1470                 exit_cleanup(ret);
1471
1472         return ret;
1473 }