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