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