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