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