Moved inline functions from rsync.h into ifuncs.h.
[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 (strcmp(flist->files[0]->basename, ".") == 0)
586 flist->files[0]->flags |= FLAG_DIR_CREATED;
587
588 if (verbose)
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 (!push_dir(dest_path, dry_run > 1)) {
597 rsyserr(FERROR, errno, "push_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 (!push_dir(dest_path, 0)) {
617 rsyserr(FERROR, errno, "push_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/* Call this if the destination dir (which is assumed to be in curr_dir)
627 * does not yet exist and we can't create it due to being in dry-run
628 * mode. We'll fix dirs that can be relative to the non-existent dir. */
629static void fix_basis_dirs(void)
630{
631 char **dir, *new, *slash;
632 int len;
633
634 if (dry_run <= 1)
635 return;
636
637 slash = strrchr(curr_dir, '/');
638
639 for (dir = basis_dir; *dir; dir++) {
640 if (**dir == '/')
641 continue;
642 len = curr_dir_len + 1 + strlen(*dir) + 1;
643 if (!(new = new_array(char, len)))
644 out_of_memory("fix_basis_dirs");
645 if (slash && strncmp(*dir, "../", 3) == 0) {
646 /* We want to remove only one leading "../" prefix for
647 * the directory we couldn't create in dry-run mode:
648 * this ensures that any other ".." references get
649 * evaluated the same as they would for a live copy. */
650 *slash = '\0';
651 pathjoin(new, len, curr_dir, *dir + 3);
652 *slash = '/';
653 } else
654 pathjoin(new, len, curr_dir, *dir);
655 *dir = new;
656 }
657}
658
659/* This is only called by the sender. */
660static void read_final_goodbye(int f_in)
661{
662 int i, iflags, xlen;
663 uchar fnamecmp_type;
664 char xname[MAXPATHLEN];
665
666 if (protocol_version < 29)
667 i = read_int(f_in);
668 else {
669 i = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
670 xname, &xlen);
671 }
672
673 if (i != NDX_DONE) {
674 rprintf(FERROR, "Invalid packet at end of run (%d) [%s]\n",
675 i, who_am_i());
676 exit_cleanup(RERR_PROTOCOL);
677 }
678}
679
680static void do_server_sender(int f_in, int f_out, int argc, char *argv[])
681{
682 struct file_list *flist;
683 char *dir = argv[0];
684
685 if (verbose > 2) {
686 rprintf(FINFO, "server_sender starting pid=%ld\n",
687 (long)getpid());
688 }
689
690 if (am_daemon && lp_write_only(module_id)) {
691 rprintf(FERROR, "ERROR: module is write only\n");
692 exit_cleanup(RERR_SYNTAX);
693 return;
694 }
695 if (am_daemon && lp_read_only(module_id) && remove_source_files) {
696 rprintf(FERROR,
697 "ERROR: --remove-%s-files cannot be used with a read-only module\n",
698 remove_source_files == 1 ? "source" : "sent");
699 exit_cleanup(RERR_SYNTAX);
700 return;
701 }
702
703 if (!relative_paths) {
704 if (!push_dir(dir, 0)) {
705 rsyserr(FERROR, errno, "push_dir#3 %s failed",
706 full_fname(dir));
707 exit_cleanup(RERR_FILESELECT);
708 }
709 }
710 argc--;
711 argv++;
712
713 if (argc == 0 && (recurse || list_only)) {
714 argc = 1;
715 argv--;
716 argv[0] = ".";
717 }
718
719 flist = send_file_list(f_out,argc,argv);
720 if (!flist || flist->used == 0)
721 exit_cleanup(0);
722
723 io_start_buffering_in(f_in);
724
725 send_files(f_in, f_out);
726 io_flush(FULL_FLUSH);
727 handle_stats(f_out);
728 if (protocol_version >= 24)
729 read_final_goodbye(f_in);
730 io_flush(FULL_FLUSH);
731 exit_cleanup(0);
732}
733
734
735static int do_recv(int f_in, int f_out, char *local_name)
736{
737 int pid;
738 int exit_code = 0;
739 int error_pipe[2];
740
741 /* The receiving side mustn't obey this, or an existing symlink that
742 * points to an identical file won't be replaced by the referent. */
743 copy_links = copy_dirlinks = 0;
744
745#ifdef SUPPORT_HARD_LINKS
746 if (preserve_hard_links && !inc_recurse)
747 match_hard_links(first_flist);
748#endif
749
750 if (fd_pair(error_pipe) < 0) {
751 rsyserr(FERROR, errno, "pipe failed in do_recv");
752 exit_cleanup(RERR_IPC);
753 }
754
755 io_flush(NORMAL_FLUSH);
756
757 if ((pid = do_fork()) == -1) {
758 rsyserr(FERROR, errno, "fork failed in do_recv");
759 exit_cleanup(RERR_IPC);
760 }
761
762 if (pid == 0) {
763 close(error_pipe[0]);
764 if (f_in != f_out)
765 close(f_out);
766
767 /* we can't let two processes write to the socket at one time */
768 io_end_multiplex_out();
769
770 /* set place to send errors */
771 set_msg_fd_out(error_pipe[1]);
772 io_start_buffering_out(error_pipe[1]);
773
774 recv_files(f_in, local_name);
775 io_flush(FULL_FLUSH);
776 handle_stats(f_in);
777
778 send_msg(MSG_DONE, "", 1, 0);
779 write_varlong(error_pipe[1], stats.total_read, 3);
780 io_flush(FULL_FLUSH);
781
782 /* Handle any keep-alive packets from the post-processing work
783 * that the generator does. */
784 if (protocol_version >= 29) {
785 int iflags, xlen;
786 uchar fnamecmp_type;
787 char xname[MAXPATHLEN];
788
789 kluge_around_eof = -1;
790
791 /* This should only get stopped via a USR2 signal. */
792 read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
793 xname, &xlen);
794
795 rprintf(FERROR, "Invalid packet at end of run [%s]\n",
796 who_am_i());
797 exit_cleanup(RERR_PROTOCOL);
798 }
799
800 /* Finally, we go to sleep until our parent kills us with a
801 * USR2 signal. We sleep for a short time, as on some OSes
802 * a signal won't interrupt a sleep! */
803 while (1)
804 msleep(20);
805 }
806
807 am_generator = 1;
808
809 io_end_multiplex_in();
810 if (write_batch && !am_server)
811 stop_write_batch();
812
813 close(error_pipe[1]);
814 if (f_in != f_out)
815 close(f_in);
816
817 io_start_buffering_out(f_out);
818
819 set_msg_fd_in(error_pipe[0]);
820 io_start_buffering_in(error_pipe[0]);
821
822#ifdef SUPPORT_HARD_LINKS
823 if (preserve_hard_links && inc_recurse) {
824 struct file_list *flist;
825 for (flist = first_flist; flist; flist = flist->next)
826 match_hard_links(flist);
827 }
828#endif
829
830 generate_files(f_out, local_name);
831
832 handle_stats(-1);
833 io_flush(FULL_FLUSH);
834 if (protocol_version >= 24) {
835 /* send a final goodbye message */
836 write_ndx(f_out, NDX_DONE);
837 }
838 io_flush(FULL_FLUSH);
839
840 set_msg_fd_in(-1);
841 kill(pid, SIGUSR2);
842 wait_process_with_flush(pid, &exit_code);
843 return exit_code;
844}
845
846static void do_server_recv(int f_in, int f_out, int argc, char *argv[])
847{
848 int exit_code;
849 struct file_list *flist;
850 char *local_name = NULL;
851 char *dir = NULL;
852 int save_verbose = verbose;
853
854 if (filesfrom_fd >= 0) {
855 /* We can't mix messages with files-from data on the socket,
856 * so temporarily turn off verbose messages. */
857 verbose = 0;
858 }
859
860 if (verbose > 2) {
861 rprintf(FINFO, "server_recv(%d) starting pid=%ld\n",
862 argc, (long)getpid());
863 }
864
865 if (am_daemon && lp_read_only(module_id)) {
866 rprintf(FERROR,"ERROR: module is read only\n");
867 exit_cleanup(RERR_SYNTAX);
868 return;
869 }
870
871 if (argc > 0) {
872 dir = argv[0];
873 argc--;
874 argv++;
875 if (!am_daemon && !push_dir(dir, 0)) {
876 rsyserr(FERROR, errno, "push_dir#4 %s failed",
877 full_fname(dir));
878 exit_cleanup(RERR_FILESELECT);
879 }
880 }
881
882 if (protocol_version >= 30)
883 io_start_multiplex_in();
884 else
885 io_start_buffering_in(f_in);
886 recv_filter_list(f_in);
887
888 if (filesfrom_fd >= 0) {
889 /* We need to send the files-from names to the sender at the
890 * same time that we receive the file-list from them, so we
891 * need the IO routines to automatically write out the names
892 * onto our f_out socket as we read the file-list. This
893 * avoids both deadlock and extra delays/buffers. */
894 io_set_filesfrom_fds(filesfrom_fd, f_out);
895 filesfrom_fd = -1;
896 }
897
898 flist = recv_file_list(f_in);
899 if (!flist) {
900 rprintf(FERROR,"server_recv: recv_file_list error\n");
901 exit_cleanup(RERR_FILESELECT);
902 }
903 if (inc_recurse && file_total == 1)
904 recv_additional_file_list(f_in);
905 verbose = save_verbose;
906
907 if (argc > 0)
908 local_name = get_local_name(flist,argv[0]);
909
910 /* Now that we know what our destination directory turned out to be,
911 * we can sanitize the --link-/copy-/compare-dest args correctly. */
912 if (sanitize_paths) {
913 char **dir;
914 for (dir = basis_dir; *dir; dir++) {
915 *dir = sanitize_path(NULL, *dir, NULL, curr_dir_depth, NULL);
916 }
917 if (partial_dir) {
918 partial_dir = sanitize_path(NULL, partial_dir, NULL, curr_dir_depth, NULL);
919 }
920 }
921 fix_basis_dirs();
922
923 if (server_filter_list.head) {
924 char **dir;
925 struct filter_list_struct *elp = &server_filter_list;
926
927 for (dir = basis_dir; *dir; dir++) {
928 if (check_filter(elp, *dir, 1) < 0)
929 goto options_rejected;
930 }
931 if (partial_dir && *partial_dir == '/'
932 && check_filter(elp, partial_dir, 1) < 0) {
933 options_rejected:
934 rprintf(FERROR,
935 "Your options have been rejected by the server.\n");
936 exit_cleanup(RERR_SYNTAX);
937 }
938 }
939
940 exit_code = do_recv(f_in, f_out, local_name);
941 exit_cleanup(exit_code);
942}
943
944
945int child_main(int argc, char *argv[])
946{
947 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
948 return 0;
949}
950
951
952void start_server(int f_in, int f_out, int argc, char *argv[])
953{
954 set_nonblocking(f_in);
955 set_nonblocking(f_out);
956
957 io_set_sock_fds(f_in, f_out);
958 setup_protocol(f_out, f_in);
959
960 if (protocol_version >= 23)
961 io_start_multiplex_out();
962
963 if (am_sender) {
964 keep_dirlinks = 0; /* Must be disabled on the sender. */
965 if (need_messages_from_generator)
966 io_start_multiplex_in();
967 recv_filter_list(f_in);
968 do_server_sender(f_in, f_out, argc, argv);
969 } else
970 do_server_recv(f_in, f_out, argc, argv);
971 exit_cleanup(0);
972}
973
974
975/*
976 * This is called once the connection has been negotiated. It is used
977 * for rsyncd, remote-shell, and local connections.
978 */
979int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
980{
981 struct file_list *flist = NULL;
982 int exit_code = 0, exit_code2 = 0;
983 char *local_name = NULL;
984
985 cleanup_child_pid = pid;
986 if (!read_batch) {
987 set_nonblocking(f_in);
988 set_nonblocking(f_out);
989 }
990
991 io_set_sock_fds(f_in, f_out);
992 setup_protocol(f_out,f_in);
993
994 /* We set our stderr file handle to blocking because ssh might have
995 * set it to non-blocking. This can be particularly troublesome if
996 * stderr is a clone of stdout, because ssh would have set our stdout
997 * to non-blocking at the same time (which can easily cause us to lose
998 * output from our print statements). This kluge shouldn't cause ssh
999 * any problems for how we use it. Note also that we delayed setting
1000 * this until after the above protocol setup so that we know for sure
1001 * that ssh is done twiddling its file descriptors. */
1002 set_blocking(STDERR_FILENO);
1003
1004 if (am_sender) {
1005 keep_dirlinks = 0; /* Must be disabled on the sender. */
1006 if (protocol_version >= 30)
1007 io_start_multiplex_out();
1008 else
1009 io_start_buffering_out(f_out);
1010 if (!filesfrom_host)
1011 set_msg_fd_in(f_in);
1012 send_filter_list(f_out);
1013 if (filesfrom_host)
1014 filesfrom_fd = f_in;
1015
1016 if (write_batch && !am_server)
1017 start_write_batch(f_out);
1018 flist = send_file_list(f_out, argc, argv);
1019 set_msg_fd_in(-1);
1020 if (verbose > 3)
1021 rprintf(FINFO,"file list sent\n");
1022
1023 if (protocol_version >= 23)
1024 io_start_multiplex_in();
1025
1026 io_flush(NORMAL_FLUSH);
1027 send_files(f_in, f_out);
1028 io_flush(FULL_FLUSH);
1029 handle_stats(-1);
1030 if (protocol_version >= 24)
1031 read_final_goodbye(f_in);
1032 if (pid != -1) {
1033 if (verbose > 3)
1034 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
1035 io_flush(FULL_FLUSH);
1036 wait_process_with_flush(pid, &exit_code);
1037 }
1038 output_summary();
1039 io_flush(FULL_FLUSH);
1040 exit_cleanup(exit_code);
1041 }
1042
1043 if (!read_batch) {
1044 if (protocol_version >= 23)
1045 io_start_multiplex_in();
1046 if (need_messages_from_generator)
1047 io_start_multiplex_out();
1048 }
1049
1050 if (argc == 0)
1051 list_only |= 1;
1052
1053 send_filter_list(read_batch ? -1 : f_out);
1054
1055 if (filesfrom_fd >= 0) {
1056 io_set_filesfrom_fds(filesfrom_fd, f_out);
1057 filesfrom_fd = -1;
1058 }
1059
1060 if (write_batch && !am_server)
1061 start_write_batch(f_in);
1062 flist = recv_file_list(f_in);
1063 if (inc_recurse && file_total == 1)
1064 recv_additional_file_list(f_in);
1065
1066 if (flist && flist->used > 0) {
1067 local_name = get_local_name(flist, argv[0]);
1068
1069 fix_basis_dirs();
1070
1071 exit_code2 = do_recv(f_in, f_out, local_name);
1072 } else {
1073 handle_stats(-1);
1074 output_summary();
1075 }
1076
1077 if (pid != -1) {
1078 if (verbose > 3)
1079 rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
1080 io_flush(FULL_FLUSH);
1081 wait_process_with_flush(pid, &exit_code);
1082 }
1083
1084 return MAX(exit_code, exit_code2);
1085}
1086
1087static int copy_argv(char *argv[])
1088{
1089 int i;
1090
1091 for (i = 0; argv[i]; i++) {
1092 if (!(argv[i] = strdup(argv[i]))) {
1093 rprintf (FERROR, "out of memory at %s(%d)\n",
1094 __FILE__, __LINE__);
1095 return RERR_MALLOC;
1096 }
1097 }
1098
1099 return 0;
1100}
1101
1102
1103/**
1104 * Start a client for either type of remote connection. Work out
1105 * whether the arguments request a remote shell or rsyncd connection,
1106 * and call the appropriate connection function, then run_client.
1107 *
1108 * Calls either start_socket_client (for sockets) or do_cmd and
1109 * client_run (for ssh).
1110 **/
1111static int start_client(int argc, char *argv[])
1112{
1113 char *p, *shell_machine = NULL, *shell_user = NULL;
1114 char **remote_argv;
1115 int remote_argc;
1116 int f_in, f_out;
1117 int ret;
1118 pid_t pid;
1119
1120 /* Don't clobber argv[] so that ps(1) can still show the right
1121 * command line. */
1122 if ((ret = copy_argv(argv)) != 0)
1123 return ret;
1124
1125 if (!read_batch) { /* for read_batch, NO source is specified */
1126 char *path = check_for_hostspec(argv[0], &shell_machine, &rsync_port);
1127 if (path) { /* source is remote */
1128 char *dummy1;
1129 int dummy2;
1130 *argv = path;
1131 remote_argv = argv;
1132 remote_argc = argc;
1133 argv += argc - 1;
1134 if (argc == 1 || **argv == ':')
1135 argc = 0; /* no dest arg */
1136 else if (check_for_hostspec(*argv, &dummy1, &dummy2)) {
1137 rprintf(FERROR,
1138 "The source and destination cannot both be remote.\n");
1139 exit_cleanup(RERR_SYNTAX);
1140 } else {
1141 remote_argc--; /* don't count dest */
1142 argc = 1;
1143 }
1144 if (filesfrom_host && *filesfrom_host
1145 && strcmp(filesfrom_host, shell_machine) != 0) {
1146 rprintf(FERROR,
1147 "--files-from hostname is not the same as the transfer hostname\n");
1148 exit_cleanup(RERR_SYNTAX);
1149 }
1150 am_sender = 0;
1151 if (rsync_port)
1152 daemon_over_rsh = shell_cmd ? 1 : -1;
1153 } else { /* source is local, check dest arg */
1154 am_sender = 1;
1155
1156 if (argc > 1) {
1157 p = argv[--argc];
1158 remote_argv = argv + argc;
1159 } else {
1160 static char *dotarg[1] = { "." };
1161 p = dotarg[0];
1162 remote_argv = dotarg;
1163 list_only = 1;
1164 }
1165 remote_argc = 1;
1166
1167 path = check_for_hostspec(p, &shell_machine, &rsync_port);
1168 if (path && filesfrom_host && *filesfrom_host
1169 && strcmp(filesfrom_host, shell_machine) != 0) {
1170 rprintf(FERROR,
1171 "--files-from hostname is not the same as the transfer hostname\n");
1172 exit_cleanup(RERR_SYNTAX);
1173 }
1174 if (!path) { /* no hostspec found, so src & dest are local */
1175 local_server = 1;
1176 if (filesfrom_host) {
1177 rprintf(FERROR,
1178 "--files-from cannot be remote when the transfer is local\n");
1179 exit_cleanup(RERR_SYNTAX);
1180 }
1181 shell_machine = NULL;
1182 } else { /* hostspec was found, so dest is remote */
1183 argv[argc] = path;
1184 if (rsync_port)
1185 daemon_over_rsh = shell_cmd ? 1 : -1;
1186 }
1187 }
1188 } else { /* read_batch */
1189 local_server = 1;
1190 if (check_for_hostspec(argv[argc-1], &shell_machine, &rsync_port)) {
1191 rprintf(FERROR, "remote destination is not allowed with --read-batch\n");
1192 exit_cleanup(RERR_SYNTAX);
1193 }
1194 remote_argv = argv + argc - 1;
1195 remote_argc = 1;
1196 }
1197
1198 if (am_sender) {
1199 char *dummy1;
1200 int dummy2;
1201 int i;
1202 /* For local source, extra source args must not have hostspec. */
1203 for (i = 1; i < argc; i++) {
1204 if (check_for_hostspec(argv[i], &dummy1, &dummy2)) {
1205 rprintf(FERROR, "Unexpected remote arg: %s\n", argv[i]);
1206 exit_cleanup(RERR_SYNTAX);
1207 }
1208 }
1209 } else {
1210 int i;
1211 /* For remote source, any extra source args must be ":SOURCE" args. */
1212 for (i = 1; i < remote_argc; i++) {
1213 if (*remote_argv[i] != ':') {
1214 rprintf(FERROR, "Unexpected local arg: %s\n", remote_argv[i]);
1215 rprintf(FERROR, "If arg is a remote file/dir, prefix it with a colon (:).\n");
1216 exit_cleanup(RERR_SYNTAX);
1217 }
1218 remote_argv[i]++;
1219 }
1220 if (argc == 0)
1221 list_only |= 1;
1222 }
1223
1224 if (daemon_over_rsh < 0)
1225 return start_socket_client(shell_machine, remote_argc, remote_argv, argc, argv);
1226
1227 if (password_file && !daemon_over_rsh) {
1228 rprintf(FERROR, "The --password-file option may only be "
1229 "used when accessing an rsync daemon.\n");
1230 exit_cleanup(RERR_SYNTAX);
1231 }
1232
1233 if (shell_machine) {
1234 p = strrchr(shell_machine,'@');
1235 if (p) {
1236 *p = 0;
1237 shell_user = shell_machine;
1238 shell_machine = p+1;
1239 }
1240 }
1241
1242 if (verbose > 3) {
1243 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
1244 NS(shell_cmd), NS(shell_machine), NS(shell_user),
1245 remote_argv ? NS(remote_argv[0]) : "");
1246 }
1247
1248 pid = do_cmd(shell_cmd, shell_machine, shell_user, remote_argv, remote_argc,
1249 &f_in, &f_out);
1250
1251 /* if we're running an rsync server on the remote host over a
1252 * remote shell command, we need to do the RSYNCD protocol first */
1253 if (daemon_over_rsh) {
1254 int tmpret;
1255 tmpret = start_inband_exchange(f_in, f_out, shell_user, remote_argc, remote_argv);
1256 if (tmpret < 0)
1257 return tmpret;
1258 }
1259
1260 ret = client_run(f_in, f_out, pid, argc, argv);
1261
1262 fflush(stdout);
1263 fflush(stderr);
1264
1265 return ret;
1266}
1267
1268
1269static RETSIGTYPE sigusr1_handler(UNUSED(int val))
1270{
1271 exit_cleanup(RERR_SIGNAL1);
1272}
1273
1274static RETSIGTYPE sigusr2_handler(UNUSED(int val))
1275{
1276 if (!am_server)
1277 output_summary();
1278 close_all();
1279 if (log_got_error)
1280 _exit(RERR_PARTIAL);
1281 _exit(0);
1282}
1283
1284RETSIGTYPE remember_children(UNUSED(int val))
1285{
1286#ifdef WNOHANG
1287 int cnt, status;
1288 pid_t pid;
1289 /* An empty waitpid() loop was put here by Tridge and we could never
1290 * get him to explain why he put it in, so rather than taking it
1291 * out we're instead saving the child exit statuses for later use.
1292 * The waitpid() loop presumably eliminates all possibility of leaving
1293 * zombie children, maybe that's why he did it. */
1294 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
1295 /* save the child's exit status */
1296 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
1297 if (pid_stat_table[cnt].pid == 0) {
1298 pid_stat_table[cnt].pid = pid;
1299 pid_stat_table[cnt].status = status;
1300 break;
1301 }
1302 }
1303 }
1304#endif
1305#ifndef HAVE_SIGACTION
1306 signal(SIGCHLD, remember_children);
1307#endif
1308}
1309
1310
1311/**
1312 * This routine catches signals and tries to send them to gdb.
1313 *
1314 * Because it's called from inside a signal handler it ought not to
1315 * use too many library routines.
1316 *
1317 * @todo Perhaps use "screen -X" instead/as well, to help people
1318 * debugging without easy access to X. Perhaps use an environment
1319 * variable, or just call a script?
1320 *
1321 * @todo The /proc/ magic probably only works on Linux (and
1322 * Solaris?) Can we be more portable?
1323 **/
1324#ifdef MAINTAINER_MODE
1325const char *get_panic_action(void)
1326{
1327 const char *cmd_fmt = getenv("RSYNC_PANIC_ACTION");
1328
1329 if (cmd_fmt)
1330 return cmd_fmt;
1331 else
1332 return "xterm -display :0 -T Panic -n Panic "
1333 "-e gdb /proc/%d/exe %d";
1334}
1335
1336
1337/**
1338 * Handle a fatal signal by launching a debugger, controlled by $RSYNC_PANIC_ACTION.
1339 *
1340 * This signal handler is only installed if we were configured with
1341 * --enable-maintainer-mode. Perhaps it should always be on and we
1342 * should just look at the environment variable, but I'm a bit leery
1343 * of a signal sending us into a busy loop.
1344 **/
1345static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
1346{
1347 char cmd_buf[300];
1348 int ret;
1349
1350 snprintf(cmd_buf, sizeof cmd_buf, get_panic_action(),
1351 getpid(), getpid());
1352
1353 /* Unless we failed to execute gdb, we allow the process to
1354 * continue. I'm not sure if that's right. */
1355 ret = system(cmd_buf);
1356 if (ret)
1357 _exit(ret);
1358}
1359#endif
1360
1361
1362int main(int argc,char *argv[])
1363{
1364 int ret;
1365 int orig_argc = argc;
1366 char **orig_argv = argv;
1367#ifdef HAVE_SIGACTION
1368# ifdef HAVE_SIGPROCMASK
1369 sigset_t sigmask;
1370
1371 sigemptyset(&sigmask);
1372# endif
1373 sigact.sa_flags = SA_NOCLDSTOP;
1374#endif
1375 SIGACTMASK(SIGUSR1, sigusr1_handler);
1376 SIGACTMASK(SIGUSR2, sigusr2_handler);
1377 SIGACTMASK(SIGCHLD, remember_children);
1378#ifdef MAINTAINER_MODE
1379 SIGACTMASK(SIGSEGV, rsync_panic_handler);
1380 SIGACTMASK(SIGFPE, rsync_panic_handler);
1381 SIGACTMASK(SIGABRT, rsync_panic_handler);
1382 SIGACTMASK(SIGBUS, rsync_panic_handler);
1383#endif
1384
1385 starttime = time(NULL);
1386 am_root = (MY_UID() == 0);
1387
1388 memset(&stats, 0, sizeof(stats));
1389
1390 if (argc < 2) {
1391 usage(FERROR);
1392 exit_cleanup(RERR_SYNTAX);
1393 }
1394
1395 /* we set a 0 umask so that correct file permissions can be
1396 * carried across */
1397 orig_umask = umask(0);
1398
1399#if defined CONFIG_LOCALE && defined HAVE_SETLOCALE
1400 setlocale(LC_CTYPE, "");
1401#endif
1402
1403 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
1404 /* FIXME: We ought to call the same error-handling
1405 * code here, rather than relying on getopt. */
1406 option_error();
1407 exit_cleanup(RERR_SYNTAX);
1408 }
1409
1410 SIGACTMASK(SIGINT, sig_int);
1411 SIGACTMASK(SIGHUP, sig_int);
1412 SIGACTMASK(SIGTERM, sig_int);
1413#if defined HAVE_SIGACTION && HAVE_SIGPROCMASK
1414 sigprocmask(SIG_UNBLOCK, &sigmask, NULL);
1415#endif
1416
1417 /* Ignore SIGPIPE; we consistently check error codes and will
1418 * see the EPIPE. */
1419 SIGACTION(SIGPIPE, SIG_IGN);
1420#ifdef SIGXFSZ
1421 SIGACTION(SIGXFSZ, SIG_IGN);
1422#endif
1423
1424 /* Initialize push_dir here because on some old systems getcwd
1425 * (implemented by forking "pwd" and reading its output) doesn't
1426 * work when there are other child processes. Also, on all systems
1427 * that implement getcwd that way "pwd" can't be found after chroot. */
1428 push_dir(NULL, 0);
1429
1430 init_flist();
1431
1432 if ((write_batch || read_batch) && !am_server) {
1433 if (write_batch)
1434 write_batch_shell_file(orig_argc, orig_argv, argc);
1435
1436 if (read_batch && strcmp(batch_name, "-") == 0)
1437 batch_fd = STDIN_FILENO;
1438 else {
1439 batch_fd = do_open(batch_name,
1440 write_batch ? O_WRONLY | O_CREAT | O_TRUNC
1441 : O_RDONLY, S_IRUSR | S_IWUSR);
1442 }
1443 if (batch_fd < 0) {
1444 rsyserr(FERROR, errno, "Batch file %s open error",
1445 full_fname(batch_name));
1446 exit_cleanup(RERR_FILEIO);
1447 }
1448 if (read_batch)
1449 read_stream_flags(batch_fd);
1450 else
1451 write_stream_flags(batch_fd);
1452
1453 }
1454 if (write_batch < 0)
1455 dry_run = 1;
1456
1457 if (am_daemon && !am_server)
1458 return daemon_main();
1459
1460 if (am_server && protect_args) {
1461 char buf[MAXPATHLEN];
1462 protect_args = 2;
1463 read_args(STDIN_FILENO, NULL, buf, sizeof buf, 1, &argv, &argc, NULL);
1464 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
1465 option_error();
1466 exit_cleanup(RERR_SYNTAX);
1467 }
1468 }
1469
1470 if (argc < 1) {
1471 usage(FERROR);
1472 exit_cleanup(RERR_SYNTAX);
1473 }
1474
1475 if (am_server) {
1476 set_nonblocking(STDIN_FILENO);
1477 set_nonblocking(STDOUT_FILENO);
1478 if (am_daemon)
1479 return start_daemon(STDIN_FILENO, STDOUT_FILENO);
1480 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1481 }
1482
1483 ret = start_client(argc, argv);
1484 if (ret == -1)
1485 exit_cleanup(RERR_STARTCLIENT);
1486 else
1487 exit_cleanup(ret);
1488
1489 return ret;
1490}