Fixed a glitch in the sending of mount-point dirs in inc_recurse mode.
[rsync/rsync.git] / main.c
CommitLineData
0f78b815
WD
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>
ba2133d6 7 * Copyright (C) 2003-2007 Wayne Davison
0f78b815
WD
8 *
9 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
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.
0f78b815
WD
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 *
e7c67065 19 * You should have received a copy of the GNU General Public License along
4fd842f9 20 * with this program; if not, visit the http://fsf.org website.
0f78b815 21 */
c627d613
AT
22
23#include "rsync.h"
1b42f628 24#include "ifuncs.h"
a72ba0cf 25#include "io.h"
d9401514
WD
26#if defined CONFIG_LOCALE && defined HAVE_LOCALE_H
27#include <locale.h>
28#endif
c627d613 29
50839b4b
WD
30extern int verbose;
31extern int dry_run;
32extern int list_only;
32eda096 33extern int am_root;
d9c7edf6
WD
34extern int am_server;
35extern int am_sender;
b695f242 36extern int am_generator;
d9c7edf6 37extern int am_daemon;
3ea6e0e7 38extern int inc_recurse;
32eda096 39extern int blocking_io;
47c11975 40extern int remove_source_files;
bf26aa22 41extern int need_messages_from_generator;
051182cb 42extern int kluge_around_eof;
32eda096 43extern int do_stats;
32eda096
WD
44extern int log_got_error;
45extern int module_id;
bb6721dc 46extern int copy_links;
a695b379 47extern int copy_dirlinks;
83926d3c 48extern int keep_dirlinks;
32eda096 49extern int preserve_hard_links;
d04e9c51 50extern int protocol_version;
f3d6d480 51extern int file_total;
32eda096 52extern int recurse;
f7e5068d 53extern int protect_args;
32eda096 54extern int relative_paths;
7c58c991 55extern int sanitize_paths;
c2a2147a 56extern int curr_dir_depth;
615a5415 57extern int curr_dir_len;
7c58c991 58extern int module_id;
32eda096 59extern int rsync_port;
b1df18d7 60extern int whole_file;
32eda096
WD
61extern int read_batch;
62extern int write_batch;
b9f592fb 63extern int batch_fd;
32eda096
WD
64extern int filesfrom_fd;
65extern pid_t cleanup_child_pid;
50839b4b 66extern struct stats stats;
860236bf 67extern char *filesfrom_host;
c2c8db91 68extern char *partial_dir;
7c58c991 69extern char *basis_dir[];
32eda096
WD
70extern char *rsync_path;
71extern char *shell_cmd;
9b3318b0 72extern char *batch_name;
a39da29a 73extern char *password_file;
615a5415 74extern char curr_dir[MAXPATHLEN];
da131912 75extern struct file_list *first_flist;
c2c8db91 76extern struct filter_list_struct server_filter_list;
71605b0f
WD
77#ifdef ICONV_OPTION
78extern iconv_t ic_send;
79#endif
57dee64e
WD
80
81int local_server = 0;
e208631a 82int daemon_over_rsh = 0;
05278935 83mode_t orig_umask = 0;
f3d6d480 84int batch_gen_fd = -1;
c627d613 85
91c5833b
WD
86/* There's probably never more than at most 2 outstanding child processes,
87 * but set it higher, just in case. */
84e6d6fd 88#define MAXCHILDPROCS 7
ee7118a8 89
8261af74
WD
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
60ee01f5
WD
96static struct sigaction sigact;
97#endif
98
ee7118a8
DD
99struct pid_status {
100 pid_t pid;
84e6d6fd 101 int status;
ee7118a8
DD
102} pid_stat_table[MAXCHILDPROCS];
103
33c4b445
WD
104static time_t starttime, endtime;
105static int64 total_read, total_written;
106
e5a2b854 107static void show_malloc_stats(void);
82980a23 108
97d8e709 109/* Works like waitpid(), but if we already harvested the child pid in our
6d59ac19 110 * remember_children(), we succeed instead of returning an error. */
97d8e709 111pid_t wait_process(pid_t pid, int *status_ptr, int flags)
82980a23 112{
d365e229
WD
113 pid_t waited_pid;
114
115 do {
116 waited_pid = waitpid(pid, status_ptr, flags);
117 } while (waited_pid == -1 && errno == EINTR);
d9c7edf6 118
6fb812f7 119 if (waited_pid == -1 && errno == ECHILD) {
97d8e709 120 /* Status of requested child no longer available: check to
6d59ac19 121 * see if it was processed by remember_children(). */
97d8e709 122 int cnt;
84e6d6fd 123 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
ee7118a8 124 if (pid == pid_stat_table[cnt].pid) {
97d8e709 125 *status_ptr = pid_stat_table[cnt].status;
ee7118a8 126 pid_stat_table[cnt].pid = 0;
97d8e709 127 return pid;
ee7118a8
DD
128 }
129 }
130 }
131
97d8e709
WD
132 return waited_pid;
133}
134
135/* Wait for a process to exit, calling io_flush while waiting. */
84e6d6fd 136static void wait_process_with_flush(pid_t pid, int *exit_code_ptr)
97d8e709
WD
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
d9c7edf6
WD
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
dbefb6b4 149 * this to the caller so that they know something went wrong. */
84e6d6fd
WD
150 if (waited_pid < 0) {
151 rsyserr(FERROR, errno, "waitpid");
152 *exit_code_ptr = RERR_WAITCHILD;
153 } else if (!WIFEXITED(status)) {
40e6752f 154#ifdef WCOREDUMP
dbefb6b4 155 if (WCOREDUMP(status))
84e6d6fd 156 *exit_code_ptr = RERR_CRASHED;
40e6752f
WD
157 else
158#endif
159 if (WIFSIGNALED(status))
84e6d6fd 160 *exit_code_ptr = RERR_TERMINATED;
dbefb6b4 161 else
84e6d6fd 162 *exit_code_ptr = RERR_WAITCHILD;
dbefb6b4 163 } else
84e6d6fd 164 *exit_code_ptr = WEXITSTATUS(status);
82980a23
AT
165}
166
b9f592fb
WD
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). */
33c4b445 175static void handle_stats(int f)
c627d613 176{
33c4b445
WD
177 endtime = time(NULL);
178
b9f592fb 179 /* Cache two stats because the read/write code can change it. */
33c4b445
WD
180 total_read = stats.total_read;
181 total_written = stats.total_written;
7a6421fa 182
7bb7058e 183 if (do_stats && verbose > 1) {
5c15e29f 184 /* These come out from every process */
7bb7058e 185 show_malloc_stats();
86943126 186 show_flist_stats();
5c15e29f
MP
187 }
188
e5fbaa71
S
189 if (am_generator)
190 return;
191
248fbb8c 192 if (am_daemon) {
83926d3c
WD
193 if (f == -1 || !am_sender)
194 return;
248fbb8c
AT
195 }
196
e19452a9 197 if (am_server) {
3e491682 198 if (am_sender) {
a72ba0cf
WD
199 write_varlong30(f, total_read, 3);
200 write_varlong30(f, total_written, 3);
201 write_varlong30(f, stats.total_size, 3);
f0f7e760 202 if (protocol_version >= 29) {
a72ba0cf
WD
203 write_varlong30(f, stats.flist_buildtime, 3);
204 write_varlong30(f, stats.flist_xfertime, 3);
f0f7e760 205 }
e19452a9 206 }
7a6421fa
AT
207 return;
208 }
e19452a9
DD
209
210 /* this is the client */
d9c7edf6 211
9d19f8a5 212 if (f < 0 && !am_sender) /* e.g. when we got an empty file list. */
0f78b815 213 ;
9d19f8a5 214 else if (!am_sender) {
58c5c245
WD
215 /* Read the first two in opposite order because the meaning of
216 * read/write swaps when switching from sender to receiver. */
a72ba0cf
WD
217 total_written = read_varlong30(f, 3);
218 total_read = read_varlong30(f, 3);
219 stats.total_size = read_varlong30(f, 3);
f0f7e760 220 if (protocol_version >= 29) {
a72ba0cf
WD
221 stats.flist_buildtime = read_varlong30(f, 3);
222 stats.flist_xfertime = read_varlong30(f, 3);
f0f7e760 223 }
e4676bb5 224 } else if (write_batch) {
b9f592fb
WD
225 /* The --read-batch process is going to be a client
226 * receiver, so we need to give it the stats. */
a72ba0cf
WD
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);
f0f7e760 230 if (protocol_version >= 29) {
a72ba0cf
WD
231 write_varlong30(batch_fd, stats.flist_buildtime, 3);
232 write_varlong30(batch_fd, stats.flist_xfertime, 3);
f0f7e760 233 }
a800434a 234 }
e4676bb5 235}
a800434a 236
e4676bb5
WD
237static void output_summary(void)
238{
a800434a 239 if (do_stats) {
b64ee91a
WD
240 rprintf(FCLIENT, "\n");
241 rprintf(FINFO,"Number of files: %d\n", stats.num_files);
d9c7edf6
WD
242 rprintf(FINFO,"Number of files transferred: %d\n",
243 stats.num_transferred_files);
60613dc8
WD
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));
eb0144d7
WD
252 rprintf(FINFO,"File list size: %s\n",
253 human_num(stats.flist_size));
f0f7e760
WD
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 }
60613dc8
WD
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));
7a6421fa 266 }
d9c7edf6 267
e19452a9 268 if (verbose || do_stats) {
b64ee91a 269 rprintf(FCLIENT, "\n");
b9f592fb 270 rprintf(FINFO,
b64ee91a 271 "sent %s bytes received %s bytes %s bytes/sec\n",
60613dc8
WD
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),
b9f592fb 276 (double)stats.total_size / (total_written+total_read));
e19452a9 277 }
fc8a6b97
AT
278
279 fflush(stdout);
280 fflush(stderr);
c627d613
AT
281}
282
283
e5a2b854
MP
284/**
285 * If our C library can get malloc statistics, then show them to FINFO
286 **/
287static void show_malloc_stats(void)
288{
4f5b0756 289#ifdef HAVE_MALLINFO
e5a2b854
MP
290 struct mallinfo mi;
291
292 mi = mallinfo();
293
b64ee91a
WD
294 rprintf(FCLIENT, "\n");
295 rprintf(FINFO, RSYNC_NAME "[%d] (%s%s%s) heap statistics:\n",
f846a9bf
WD
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);
e5a2b854
MP
320#endif /* HAVE_MALLINFO */
321}
322
323
0882faa2 324/* Start the remote shell. cmd may be NULL to use the default. */
f7e5068d
WD
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)
c627d613 327{
6c2e5b56 328 int i, argc = 0;
887e553f 329 char *args[MAX_ARGS];
19b27a48 330 pid_t ret;
82f0c63e 331 char *dir = NULL;
bb4aa89c 332 int dash_l_set = 0;
366345fe 333
088aac85 334 if (!read_batch && !local_server) {
82f0c63e 335 char *t, *f, in_quote = '\0';
9af87151 336 char *rsh_env = getenv(RSYNC_RSH_ENV);
366345fe 337 if (!cmd)
9af87151 338 cmd = rsh_env;
366345fe
AT
339 if (!cmd)
340 cmd = RSYNC_RSH;
341 cmd = strdup(cmd);
d9c7edf6 342 if (!cmd)
366345fe
AT
343 goto oom;
344
82f0c63e
WD
345 for (t = f = cmd; *f; f++) {
346 if (*f == ' ')
347 continue;
e7a392c7 348 /* Comparison leaves rooms for server_options(). */
f7e5068d
WD
349 if (argc >= MAX_ARGS - MAX_SERVER_ARGS)
350 goto arg_overflow;
82f0c63e
WD
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';
887e553f 376 }
c627d613 377
d9c7edf6 378 /* check to see if we've already been given '-l user' in
9af87151 379 * the remote-shell command */
bb4aa89c
WD
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
4f5b0756 385#ifdef HAVE_REMSH
366345fe
AT
386 /* remsh (on HPUX) takes the arguments the other way around */
387 args[argc++] = machine;
bb4aa89c 388 if (user && !(daemon_over_rsh && dash_l_set)) {
366345fe
AT
389 args[argc++] = "-l";
390 args[argc++] = user;
391 }
7b8356d0 392#else
bb4aa89c 393 if (user && !(daemon_over_rsh && dash_l_set)) {
366345fe
AT
394 args[argc++] = "-l";
395 args[argc++] = user;
396 }
397 args[argc++] = machine;
7b8356d0 398#endif
c627d613 399
366345fe 400 args[argc++] = rsync_path;
c627d613 401
9af87151 402 if (blocking_io < 0) {
90e22f4b
WD
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;
66b71163 410 }
e384bfbd 411
93689aa5 412 server_options(args,&argc);
e7a392c7 413
f7e5068d
WD
414 if (argc >= MAX_ARGS - 2)
415 goto arg_overflow;
366345fe 416 }
c627d613 417
366345fe 418 args[argc++] = ".";
76076c4b 419
f7e5068d
WD
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 }
c627d613 431
366345fe 432 args[argc] = NULL;
c627d613 433
366345fe 434 if (verbose > 3) {
e7a392c7 435 for (i = 0; i < argc; i++)
b64ee91a
WD
436 rprintf(FCLIENT, "cmd[%d]=%s ", i, args[i]);
437 rprintf(FCLIENT, "\n");
366345fe
AT
438 }
439
c0d8e84c
WD
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];
f7e5068d
WD
447 *f_out_p = from_gen_pipe[1];
448 *f_in_p = batch_fd;
c0d8e84c
WD
449 ret = -1; /* no child pid */
450 } else if (local_server) {
b1df18d7
WD
451 /* If the user didn't request --[no-]whole-file, force
452 * it on, but only if we're not batch processing. */
c0d8e84c 453 if (whole_file < 0 && !write_batch)
b1df18d7 454 whole_file = 1;
f7e5068d
WD
455 ret = local_child(argc, args, f_in_p, f_out_p, child_main);
456 } else {
457 if (protect_args) {
71605b0f
WD
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
f7e5068d 467 ret = piped_child(args, f_in_p, f_out_p);
71605b0f
WD
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
f7e5068d
WD
492 } else
493 ret = piped_child(args, f_in_p, f_out_p);
494 }
c627d613 495
3a69fad0
WD
496 if (dir)
497 free(dir);
82306bf6 498
366345fe 499 return ret;
c627d613 500
acee11fc 501 oom:
366345fe
AT
502 out_of_memory("do_cmd");
503 return 0; /* not reached */
c627d613
AT
504}
505
eb598fac
WD
506/* The receiving side operates in one of two modes:
507 *
cc8c5057
WD
508 * 1. it receives any number of files into a destination directory,
509 * placing them according to their names in the file-list.
eb598fac
WD
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 *
a7d461fc
WD
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. */
eb598fac 519static char *get_local_name(struct file_list *flist, char *dest_path)
c627d613 520{
7a6421fa 521 STRUCT_STAT st;
a7d461fc 522 int statret;
eb598fac 523 char *cp;
c627d613 524
eb598fac
WD
525 if (verbose > 2) {
526 rprintf(FINFO, "get_local_name count=%d %s\n",
f3d6d480 527 file_total, NS(dest_path));
eb598fac 528 }
1f0610ef 529
ee8e2b15 530 if (!dest_path || list_only)
1f0610ef 531 return NULL;
c95da96a 532
a7d461fc 533 /* See what currently exists at the destination. */
1a7f3d99 534 if ((statret = do_stat(dest_path, &st)) == 0) {
a7d461fc 535 /* If the destination is a dir, enter it and use mode 1. */
1ff5450d 536 if (S_ISDIR(st.st_mode)) {
615a5415 537 if (!push_dir(dest_path, 0)) {
982e05bb 538 rsyserr(FERROR, errno, "push_dir#1 %s failed",
eb598fac 539 full_fname(dest_path));
65417579 540 exit_cleanup(RERR_FILESELECT);
1ff5450d
AT
541 }
542 return NULL;
543 }
f3d6d480 544 if (file_total > 1) {
eb598fac
WD
545 rprintf(FERROR,
546 "ERROR: destination must be a directory when"
547 " copying more than 1 file\n");
65417579 548 exit_cleanup(RERR_FILESELECT);
1ff5450d 549 }
f3d6d480 550 if (file_total == 1 && S_ISDIR(flist->files[0]->mode)) {
44c26bf2
WD
551 rprintf(FERROR,
552 "ERROR: cannot overwrite non-directory"
553 " with a directory\n");
554 exit_cleanup(RERR_FILESELECT);
555 }
cc8c5057 556 } else if (errno != ENOENT) {
a7d461fc
WD
557 /* If we don't know what's at the destination, fail. */
558 rsyserr(FERROR, errno, "ERROR: cannot stat destination %s",
cc8c5057
WD
559 full_fname(dest_path));
560 exit_cleanup(RERR_FILESELECT);
1ff5450d
AT
561 }
562
eb598fac
WD
563 cp = strrchr(dest_path, '/');
564
a7d461fc
WD
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. */
f3d6d480 568 if (file_total > 1 || (cp && !cp[1])) {
eb598fac
WD
569 /* Lop off the final slash (if any). */
570 if (cp && !cp[1])
571 *cp = '\0';
572
a7d461fc
WD
573 if (statret == 0) {
574 rprintf(FERROR,
575 "ERROR: destination path is not a directory\n");
576 exit_cleanup(RERR_SYNTAX);
577 }
578
05278935 579 if (mkdir_defmode(dest_path) != 0) {
eb598fac
WD
580 rsyserr(FERROR, errno, "mkdir %s failed",
581 full_fname(dest_path));
582 exit_cleanup(RERR_FILEIO);
583 }
1ff5450d 584
288b12ee
WD
585 if (strcmp(flist->files[0]->basename, ".") == 0)
586 flist->files[0]->flags |= FLAG_DIR_CREATED;
2a94207a 587
eb598fac
WD
588 if (verbose)
589 rprintf(FINFO, "created directory %s\n", dest_path);
590
591 if (dry_run) {
615a5415 592 /* Indicate that dest dir doesn't really exist. */
eb598fac 593 dry_run++;
eb598fac
WD
594 }
595
615a5415 596 if (!push_dir(dest_path, dry_run > 1)) {
eb598fac
WD
597 rsyserr(FERROR, errno, "push_dir#2 %s failed",
598 full_fname(dest_path));
599 exit_cleanup(RERR_FILESELECT);
600 }
e5a96f0f 601
e5a96f0f 602 return NULL;
1ff5450d
AT
603 }
604
eb598fac
WD
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';
615a5415 616 if (!push_dir(dest_path, 0)) {
eb598fac
WD
617 rsyserr(FERROR, errno, "push_dir#3 %s failed",
618 full_fname(dest_path));
65417579 619 exit_cleanup(RERR_FILESELECT);
1ff5450d 620 }
eb598fac 621 *cp = '/';
1ff5450d 622
eb598fac 623 return cp + 1;
c627d613
AT
624}
625
615a5415
WD
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{
ddcba3f0 631 char **dir, *new, *slash;
615a5415
WD
632 int len;
633
ddcba3f0
WD
634 if (dry_run <= 1)
635 return;
636
637 slash = strrchr(curr_dir, '/');
638
615a5415
WD
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");
ddcba3f0
WD
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);
615a5415
WD
655 *dir = new;
656 }
657}
c627d613 658
1a8e5c97 659/* This is only called by the sender. */
16edf865 660static void read_final_goodbye(int f_in)
4e0fcd85 661{
f3d6d480
WD
662 int i, iflags, xlen;
663 uchar fnamecmp_type;
664 char xname[MAXPATHLEN];
1a8e5c97
WD
665
666 if (protocol_version < 29)
667 i = read_int(f_in);
668 else {
16edf865
WD
669 i = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
670 xname, &xlen);
4e0fcd85
WD
671 }
672
82ad07c4 673 if (i != NDX_DONE) {
c7791b8c
WD
674 rprintf(FERROR, "Invalid packet at end of run (%d) [%s]\n",
675 i, who_am_i());
1a8e5c97 676 exit_cleanup(RERR_PROTOCOL);
4e0fcd85
WD
677 }
678}
679
eb598fac 680static void do_server_sender(int f_in, int f_out, int argc, char *argv[])
c627d613 681{
7a6421fa
AT
682 struct file_list *flist;
683 char *dir = argv[0];
c627d613 684
45e08edb
WD
685 if (verbose > 2) {
686 rprintf(FINFO, "server_sender starting pid=%ld\n",
687 (long)getpid());
688 }
d9c7edf6 689
2adbcdc7 690 if (am_daemon && lp_write_only(module_id)) {
7a92ded3
WD
691 rprintf(FERROR, "ERROR: module is write only\n");
692 exit_cleanup(RERR_SYNTAX);
693 return;
694 }
47c11975 695 if (am_daemon && lp_read_only(module_id) && remove_source_files) {
bf26aa22 696 rprintf(FERROR,
044ccbaa 697 "ERROR: --remove-%s-files cannot be used with a read-only module\n",
47c11975 698 remove_source_files == 1 ? "source" : "sent");
bf26aa22
WD
699 exit_cleanup(RERR_SYNTAX);
700 return;
701 }
7a92ded3 702
582c1589 703 if (!relative_paths) {
615a5415 704 if (!push_dir(dir, 0)) {
582c1589
WD
705 rsyserr(FERROR, errno, "push_dir#3 %s failed",
706 full_fname(dir));
707 exit_cleanup(RERR_FILESELECT);
708 }
7a6421fa
AT
709 }
710 argc--;
711 argv++;
d9c7edf6 712
48a1ff0d 713 if (argc == 0 && (recurse || list_only)) {
e1f67417 714 argc = 1;
7a6421fa
AT
715 argv--;
716 argv[0] = ".";
717 }
d9c7edf6 718
7a6421fa 719 flist = send_file_list(f_out,argc,argv);
9decb4d2 720 if (!flist || flist->used == 0)
8d9dc9f9 721 exit_cleanup(0);
8d9dc9f9 722
f3d6d480 723 io_start_buffering_in(f_in);
da3478b2 724
f3d6d480 725 send_files(f_in, f_out);
f1e3656e 726 io_flush(FULL_FLUSH);
33c4b445 727 handle_stats(f_out);
4e0fcd85 728 if (protocol_version >= 24)
16edf865 729 read_final_goodbye(f_in);
f1e3656e 730 io_flush(FULL_FLUSH);
7a6421fa 731 exit_cleanup(0);
c627d613
AT
732}
733
734
f3d6d480 735static int do_recv(int f_in, int f_out, char *local_name)
dc5ddbcc 736{
d186eb1a 737 int pid;
84e6d6fd 738 int exit_code = 0;
c70e07d9 739 int error_pipe[2];
dc5ddbcc 740
bb6721dc
WD
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. */
a695b379 743 copy_links = copy_dirlinks = 0;
bb6721dc 744
1e1ca253 745#ifdef SUPPORT_HARD_LINKS
d4d6646a 746 if (preserve_hard_links && !inc_recurse)
da131912 747 match_hard_links(first_flist);
1e1ca253 748#endif
dc5ddbcc 749
c70e07d9 750 if (fd_pair(error_pipe) < 0) {
ab759cd2 751 rsyserr(FERROR, errno, "pipe failed in do_recv");
c8f2f857 752 exit_cleanup(RERR_IPC);
554e0a8d 753 }
d9c7edf6 754
f1e3656e 755 io_flush(NORMAL_FLUSH);
c6e7fcb4 756
ba449e44 757 if ((pid = do_fork()) == -1) {
c8f2f857 758 rsyserr(FERROR, errno, "fork failed in do_recv");
ba449e44
WD
759 exit_cleanup(RERR_IPC);
760 }
761
762 if (pid == 0) {
554e0a8d 763 close(error_pipe[0]);
3a69fad0
WD
764 if (f_in != f_out)
765 close(f_out);
e08c9610 766
554e0a8d 767 /* we can't let two processes write to the socket at one time */
f3d6d480 768 io_end_multiplex_out();
554e0a8d
AT
769
770 /* set place to send errors */
f1e3656e 771 set_msg_fd_out(error_pipe[1]);
f3d6d480 772 io_start_buffering_out(error_pipe[1]);
554e0a8d 773
f3d6d480 774 recv_files(f_in, local_name);
f1e3656e 775 io_flush(FULL_FLUSH);
33c4b445 776 handle_stats(f_in);
e08c9610 777
332cf6df 778 send_msg(MSG_DONE, "", 1, 0);
a72ba0cf 779 write_varlong(error_pipe[1], stats.total_read, 3);
f1e3656e 780 io_flush(FULL_FLUSH);
4e0fcd85 781
40df65fd
WD
782 /* Handle any keep-alive packets from the post-processing work
783 * that the generator does. */
4e0fcd85 784 if (protocol_version >= 29) {
f3d6d480
WD
785 int iflags, xlen;
786 uchar fnamecmp_type;
787 char xname[MAXPATHLEN];
788
051182cb 789 kluge_around_eof = -1;
1a8e5c97
WD
790
791 /* This should only get stopped via a USR2 signal. */
16edf865 792 read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
f3d6d480 793 xname, &xlen);
1a8e5c97 794
3485ae83
WD
795 rprintf(FERROR, "Invalid packet at end of run [%s]\n",
796 who_am_i());
1a8e5c97 797 exit_cleanup(RERR_PROTOCOL);
4e0fcd85
WD
798 }
799
9e0582f9
WD
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! */
f1e3656e
WD
803 while (1)
804 msleep(20);
d186eb1a 805 }
dc5ddbcc 806
b695f242 807 am_generator = 1;
f3d6d480
WD
808
809 io_end_multiplex_in();
e8a96e27 810 if (write_batch && !am_server)
b9f592fb 811 stop_write_batch();
b695f242 812
554e0a8d 813 close(error_pipe[1]);
3a69fad0
WD
814 if (f_in != f_out)
815 close(f_in);
e1b3d5c4 816
f3d6d480 817 io_start_buffering_out(f_out);
b3e10ed7 818
f1e3656e 819 set_msg_fd_in(error_pipe[0]);
f3d6d480 820 io_start_buffering_in(error_pipe[0]);
554e0a8d 821
da131912
WD
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
f3d6d480 830 generate_files(f_out, local_name);
8d9dc9f9 831
33c4b445 832 handle_stats(-1);
f1e3656e 833 io_flush(FULL_FLUSH);
d04e9c51 834 if (protocol_version >= 24) {
8ada7518 835 /* send a final goodbye message */
9ae7a2cd 836 write_ndx(f_out, NDX_DONE);
8ada7518 837 }
f1e3656e 838 io_flush(FULL_FLUSH);
8ada7518 839
f1e3656e 840 set_msg_fd_in(-1);
089a2435 841 kill(pid, SIGUSR2);
84e6d6fd
WD
842 wait_process_with_flush(pid, &exit_code);
843 return exit_code;
dc5ddbcc
AT
844}
845
f3d6d480 846static void do_server_recv(int f_in, int f_out, int argc, char *argv[])
c627d613 847{
84e6d6fd 848 int exit_code;
7a6421fa 849 struct file_list *flist;
6c2e5b56 850 char *local_name = NULL;
7a6421fa 851 char *dir = NULL;
07bff66f
WD
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 }
f0fca04e 859
45e08edb
WD
860 if (verbose > 2) {
861 rprintf(FINFO, "server_recv(%d) starting pid=%ld\n",
862 argc, (long)getpid());
863 }
09b7f5db 864
2adbcdc7 865 if (am_daemon && lp_read_only(module_id)) {
09b7f5db
AT
866 rprintf(FERROR,"ERROR: module is read only\n");
867 exit_cleanup(RERR_SYNTAX);
868 return;
869 }
870
7a6421fa
AT
871 if (argc > 0) {
872 dir = argv[0];
873 argc--;
874 argv++;
615a5415 875 if (!am_daemon && !push_dir(dir, 0)) {
982e05bb
WD
876 rsyserr(FERROR, errno, "push_dir#4 %s failed",
877 full_fname(dir));
65417579 878 exit_cleanup(RERR_FILESELECT);
d9c7edf6 879 }
7a6421fa 880 }
c627d613 881
f3d6d480
WD
882 if (protocol_version >= 30)
883 io_start_multiplex_in();
884 else
885 io_start_buffering_in(f_in);
57dee64e 886 recv_filter_list(f_in);
c627d613 887
7c2a9e76 888 if (filesfrom_fd >= 0) {
07bff66f
WD
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. */
7c2a9e76
WD
894 io_set_filesfrom_fds(filesfrom_fd, f_out);
895 filesfrom_fd = -1;
896 }
897
b9f592fb 898 flist = recv_file_list(f_in);
4c36a13e
AT
899 if (!flist) {
900 rprintf(FERROR,"server_recv: recv_file_list error\n");
65417579 901 exit_cleanup(RERR_FILESELECT);
7a6421fa 902 }
3ea6e0e7 903 if (inc_recurse && file_total == 1)
f3d6d480
WD
904 recv_additional_file_list(f_in);
905 verbose = save_verbose;
d9c7edf6 906
29fad7a3 907 if (argc > 0)
7a6421fa 908 local_name = get_local_name(flist,argv[0]);
c627d613 909
7c58c991
WD
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) {
7c58c991 913 char **dir;
c2c8db91 914 for (dir = basis_dir; *dir; dir++) {
c2a2147a 915 *dir = sanitize_path(NULL, *dir, NULL, curr_dir_depth, NULL);
c2c8db91
WD
916 }
917 if (partial_dir) {
918 partial_dir = sanitize_path(NULL, partial_dir, NULL, curr_dir_depth, NULL);
c2c8db91
WD
919 }
920 }
ddcba3f0 921 fix_basis_dirs();
615a5415 922
c2c8db91
WD
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 }
7c58c991
WD
938 }
939
f3d6d480 940 exit_code = do_recv(f_in, f_out, local_name);
84e6d6fd 941 exit_cleanup(exit_code);
c627d613
AT
942}
943
944
734a94a2 945int child_main(int argc, char *argv[])
25d34a5c
MP
946{
947 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
734a94a2 948 return 0;
25d34a5c
MP
949}
950
951
9486289c 952void start_server(int f_in, int f_out, int argc, char *argv[])
366345fe 953{
f0359dd0
AT
954 set_nonblocking(f_in);
955 set_nonblocking(f_out);
956
da3478b2
WD
957 io_set_sock_fds(f_in, f_out);
958 setup_protocol(f_out, f_in);
959
d04e9c51 960 if (protocol_version >= 23)
da3478b2 961 io_start_multiplex_out();
7a6421fa 962
7a6421fa 963 if (am_sender) {
83926d3c 964 keep_dirlinks = 0; /* Must be disabled on the sender. */
bf26aa22
WD
965 if (need_messages_from_generator)
966 io_start_multiplex_in();
7842418b 967 recv_filter_list(f_in);
7a6421fa 968 do_server_sender(f_in, f_out, argc, argv);
07613def 969 } else
7a6421fa 970 do_server_recv(f_in, f_out, argc, argv);
7a6421fa 971 exit_cleanup(0);
366345fe
AT
972}
973
0ba48136
MP
974
975/*
976 * This is called once the connection has been negotiated. It is used
977 * for rsyncd, remote-shell, and local connections.
978 */
19b27a48 979int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
9486289c 980{
088aac85 981 struct file_list *flist = NULL;
84e6d6fd 982 int exit_code = 0, exit_code2 = 0;
9486289c 983 char *local_name = NULL;
19b27a48
AT
984
985 cleanup_child_pid = pid;
67a28eb2 986 if (!read_batch) {
b9f592fb
WD
987 set_nonblocking(f_in);
988 set_nonblocking(f_out);
989 }
f0359dd0 990
da3478b2 991 io_set_sock_fds(f_in, f_out);
6d7b6081
AT
992 setup_protocol(f_out,f_in);
993
18882701
WD
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
9486289c 1004 if (am_sender) {
83926d3c 1005 keep_dirlinks = 0; /* Must be disabled on the sender. */
f3d6d480
WD
1006 if (protocol_version >= 30)
1007 io_start_multiplex_out();
1008 else
1009 io_start_buffering_out(f_out);
860236bf 1010 if (!filesfrom_host)
a0a33ee5 1011 set_msg_fd_in(f_in);
57dee64e 1012 send_filter_list(f_out);
860236bf 1013 if (filesfrom_host)
7c2a9e76 1014 filesfrom_fd = f_in;
b9f592fb 1015
e8a96e27 1016 if (write_batch && !am_server)
b9f592fb 1017 start_write_batch(f_out);
a00628b3 1018 flist = send_file_list(f_out, argc, argv);
a0a33ee5 1019 set_msg_fd_in(-1);
d9c7edf6 1020 if (verbose > 3)
9486289c 1021 rprintf(FINFO,"file list sent\n");
f3d6d480
WD
1022
1023 if (protocol_version >= 23)
1024 io_start_multiplex_in();
e1b3d5c4 1025
f1e3656e 1026 io_flush(NORMAL_FLUSH);
f3d6d480 1027 send_files(f_in, f_out);
f1e3656e 1028 io_flush(FULL_FLUSH);
33c4b445 1029 handle_stats(-1);
4e0fcd85 1030 if (protocol_version >= 24)
16edf865 1031 read_final_goodbye(f_in);
9486289c
AT
1032 if (pid != -1) {
1033 if (verbose > 3)
08a740ff 1034 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
f1e3656e 1035 io_flush(FULL_FLUSH);
84e6d6fd 1036 wait_process_with_flush(pid, &exit_code);
9486289c 1037 }
33c4b445 1038 output_summary();
c87ae64a 1039 io_flush(FULL_FLUSH);
84e6d6fd 1040 exit_cleanup(exit_code);
9486289c 1041 }
f7632fc6 1042
f3d6d480
WD
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 }
bf26aa22 1049
48a1ff0d
WD
1050 if (argc == 0)
1051 list_only |= 1;
d9c7edf6 1052
57dee64e 1053 send_filter_list(read_batch ? -1 : f_out);
d9c7edf6 1054
7c2a9e76
WD
1055 if (filesfrom_fd >= 0) {
1056 io_set_filesfrom_fds(filesfrom_fd, f_out);
1057 filesfrom_fd = -1;
1058 }
1059
e8a96e27 1060 if (write_batch && !am_server)
b9f592fb 1061 start_write_batch(f_in);
9486289c 1062 flist = recv_file_list(f_in);
3ea6e0e7 1063 if (inc_recurse && file_total == 1)
f3d6d480 1064 recv_additional_file_list(f_in);
d9c7edf6 1065
9decb4d2 1066 if (flist && flist->used > 0) {
9d19f8a5 1067 local_name = get_local_name(flist, argv[0]);
d9c7edf6 1068
ddcba3f0 1069 fix_basis_dirs();
615a5415 1070
f3d6d480 1071 exit_code2 = do_recv(f_in, f_out, local_name);
9d19f8a5
WD
1072 } else {
1073 handle_stats(-1);
1074 output_summary();
1075 }
d9c7edf6 1076
9486289c 1077 if (pid != -1) {
8d9dc9f9 1078 if (verbose > 3)
08a740ff 1079 rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
f1e3656e 1080 io_flush(FULL_FLUSH);
84e6d6fd 1081 wait_process_with_flush(pid, &exit_code);
9486289c 1082 }
d9c7edf6 1083
84e6d6fd 1084 return MAX(exit_code, exit_code2);
9486289c
AT
1085}
1086
07613def 1087static int copy_argv(char *argv[])
7169bb4a
MP
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
c1a04ecb 1103/**
0ba48136
MP
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.
0b4af330
MP
1107 *
1108 * Calls either start_socket_client (for sockets) or do_cmd and
1109 * client_run (for ssh).
c1a04ecb 1110 **/
fc8a6b97 1111static int start_client(int argc, char *argv[])
5d6bcd44 1112{
f7e5068d
WD
1113 char *p, *shell_machine = NULL, *shell_user = NULL;
1114 char **remote_argv;
1115 int remote_argc;
1116 int f_in, f_out;
19b27a48
AT
1117 int ret;
1118 pid_t pid;
7169bb4a
MP
1119
1120 /* Don't clobber argv[] so that ps(1) can still show the right
d9c7edf6 1121 * command line. */
f7e5068d
WD
1122 if ((ret = copy_argv(argv)) != 0)
1123 return ret;
5d6bcd44 1124
d16c245f 1125 if (!read_batch) { /* for read_batch, NO source is specified */
f7e5068d
WD
1126 char *path = check_for_hostspec(argv[0], &shell_machine, &rsync_port);
1127 if (path) { /* source is remote */
9425918d
WD
1128 char *dummy1;
1129 int dummy2;
f7e5068d
WD
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)) {
9425918d
WD
1137 rprintf(FERROR,
1138 "The source and destination cannot both be remote.\n");
1139 exit_cleanup(RERR_SYNTAX);
f7e5068d
WD
1140 } else {
1141 remote_argc--; /* don't count dest */
1142 argc = 1;
9425918d 1143 }
860236bf
WD
1144 if (filesfrom_host && *filesfrom_host
1145 && strcmp(filesfrom_host, shell_machine) != 0) {
7c2a9e76 1146 rprintf(FERROR,
50b31539 1147 "--files-from hostname is not the same as the transfer hostname\n");
7c2a9e76
WD
1148 exit_cleanup(RERR_SYNTAX);
1149 }
42ccb4c0 1150 am_sender = 0;
e208631a
WD
1151 if (rsync_port)
1152 daemon_over_rsh = shell_cmd ? 1 : -1;
42ccb4c0
WD
1153 } else { /* source is local, check dest arg */
1154 am_sender = 1;
1155
f7e5068d 1156 if (argc > 1) {
ee8e2b15 1157 p = argv[--argc];
f7e5068d
WD
1158 remote_argv = argv + argc;
1159 } else {
1160 static char *dotarg[1] = { "." };
1161 p = dotarg[0];
1162 remote_argv = dotarg;
ee8e2b15 1163 list_only = 1;
d9c7edf6 1164 }
f7e5068d 1165 remote_argc = 1;
a125c82a 1166
f7e5068d
WD
1167 path = check_for_hostspec(p, &shell_machine, &rsync_port);
1168 if (path && filesfrom_host && *filesfrom_host
860236bf 1169 && strcmp(filesfrom_host, shell_machine) != 0) {
7c2a9e76 1170 rprintf(FERROR,
50b31539 1171 "--files-from hostname is not the same as the transfer hostname\n");
7c2a9e76
WD
1172 exit_cleanup(RERR_SYNTAX);
1173 }
f7e5068d 1174 if (!path) { /* no hostspec found, so src & dest are local */
d9c7edf6 1175 local_server = 1;
860236bf 1176 if (filesfrom_host) {
7c2a9e76 1177 rprintf(FERROR,
50b31539 1178 "--files-from cannot be remote when the transfer is local\n");
7c2a9e76
WD
1179 exit_cleanup(RERR_SYNTAX);
1180 }
860236bf 1181 shell_machine = NULL;
f7e5068d
WD
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 }
5d6bcd44 1187 }
d16c245f 1188 } else { /* read_batch */
d9c7edf6 1189 local_server = 1;
f7e5068d 1190 if (check_for_hostspec(argv[argc-1], &shell_machine, &rsync_port)) {
b9f592fb
WD
1191 rprintf(FERROR, "remote destination is not allowed with --read-batch\n");
1192 exit_cleanup(RERR_SYNTAX);
1193 }
f7e5068d
WD
1194 remote_argv = argv + argc - 1;
1195 remote_argc = 1;
6902ed17
MP
1196 }
1197
f7e5068d
WD
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;
e208631a
WD
1222 }
1223
1224 if (daemon_over_rsh < 0)
f7e5068d 1225 return start_socket_client(shell_machine, remote_argc, remote_argv, argc, argv);
e208631a 1226
a39da29a 1227 if (password_file && !daemon_over_rsh) {
327c559a
WD
1228 rprintf(FERROR, "The --password-file option may only be "
1229 "used when accessing an rsync daemon.\n");
a39da29a
WD
1230 exit_cleanup(RERR_SYNTAX);
1231 }
1232
5d6bcd44 1233 if (shell_machine) {
6fc048f4 1234 p = strrchr(shell_machine,'@');
5d6bcd44
AT
1235 if (p) {
1236 *p = 0;
1237 shell_user = shell_machine;
1238 shell_machine = p+1;
1239 }
1240 }
1241
1242 if (verbose > 3) {
9486289c 1243 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
f7e5068d
WD
1244 NS(shell_cmd), NS(shell_machine), NS(shell_user),
1245 remote_argv ? NS(remote_argv[0]) : "");
5d6bcd44 1246 }
d9c7edf6 1247
f7e5068d
WD
1248 pid = do_cmd(shell_cmd, shell_machine, shell_user, remote_argv, remote_argc,
1249 &f_in, &f_out);
75aeac44
WD
1250
1251 /* if we're running an rsync server on the remote host over a
9af87151 1252 * remote shell command, we need to do the RSYNCD protocol first */
75aeac44
WD
1253 if (daemon_over_rsh) {
1254 int tmpret;
f7e5068d 1255 tmpret = start_inband_exchange(f_in, f_out, shell_user, remote_argc, remote_argv);
75aeac44
WD
1256 if (tmpret < 0)
1257 return tmpret;
1258 }
1259
fc8a6b97
AT
1260 ret = client_run(f_in, f_out, pid, argc, argv);
1261
1262 fflush(stdout);
1263 fflush(stderr);
1264
1265 return ret;
5d6bcd44
AT
1266}
1267
366345fe 1268
067669da
WD
1269static RETSIGTYPE sigusr1_handler(UNUSED(int val))
1270{
6bf32edb 1271 exit_cleanup(RERR_SIGNAL1);
82306bf6
AT
1272}
1273
067669da
WD
1274static RETSIGTYPE sigusr2_handler(UNUSED(int val))
1275{
33c4b445
WD
1276 if (!am_server)
1277 output_summary();
40df65fd 1278 close_all();
33c4b445
WD
1279 if (log_got_error)
1280 _exit(RERR_PARTIAL);
8b35435f
AT
1281 _exit(0);
1282}
1283
6d59ac19 1284RETSIGTYPE remember_children(UNUSED(int val))
067669da 1285{
029c1713 1286#ifdef WNOHANG
ee7118a8
DD
1287 int cnt, status;
1288 pid_t pid;
1289 /* An empty waitpid() loop was put here by Tridge and we could never
d9c7edf6 1290 * get him to explain why he put it in, so rather than taking it
ee7118a8
DD
1291 * out we're instead saving the child exit statuses for later use.
1292 * The waitpid() loop presumably eliminates all possibility of leaving
97d8e709 1293 * zombie children, maybe that's why he did it. */
ee7118a8 1294 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
9af87151
WD
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 }
ee7118a8 1303 }
029c1713 1304#endif
8261af74 1305#ifndef HAVE_SIGACTION
6d59ac19 1306 signal(SIGCHLD, remember_children);
60ee01f5 1307#endif
19b27a48
AT
1308}
1309
c0531332
MP
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
4fdc39dd
MP
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
9fb3f7a9
MP
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 **/
067669da 1345static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
c0531332
MP
1346{
1347 char cmd_buf[300];
1348 int ret;
4fdc39dd 1349
83078af5
WD
1350 snprintf(cmd_buf, sizeof cmd_buf, get_panic_action(),
1351 getpid(), getpid());
c0531332
MP
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
5d6bcd44 1362int main(int argc,char *argv[])
d9c7edf6 1363{
ff81e809 1364 int ret;
66a9dc96
WD
1365 int orig_argc = argc;
1366 char **orig_argv = argv;
8261af74
WD
1367#ifdef HAVE_SIGACTION
1368# ifdef HAVE_SIGPROCMASK
60ee01f5 1369 sigset_t sigmask;
5d6bcd44 1370
60ee01f5 1371 sigemptyset(&sigmask);
8261af74 1372# endif
60ee01f5
WD
1373 sigact.sa_flags = SA_NOCLDSTOP;
1374#endif
1375 SIGACTMASK(SIGUSR1, sigusr1_handler);
1376 SIGACTMASK(SIGUSR2, sigusr2_handler);
6d59ac19 1377 SIGACTMASK(SIGCHLD, remember_children);
c0531332 1378#ifdef MAINTAINER_MODE
60ee01f5
WD
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
5d6bcd44 1384
7a6421fa 1385 starttime = time(NULL);
6fe05820 1386 am_root = (MY_UID() == 0);
c627d613 1387
a800434a
AT
1388 memset(&stats, 0, sizeof(stats));
1389
df5e03da
AT
1390 if (argc < 2) {
1391 usage(FERROR);
65417579 1392 exit_cleanup(RERR_SYNTAX);
df5e03da
AT
1393 }
1394
7a6421fa 1395 /* we set a 0 umask so that correct file permissions can be
9af87151 1396 * carried across */
05278935 1397 orig_umask = umask(0);
5d6bcd44 1398
eb598fac
WD
1399#if defined CONFIG_LOCALE && defined HAVE_SETLOCALE
1400 setlocale(LC_CTYPE, "");
1401#endif
1402
50135767 1403 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
d9c7edf6
WD
1404 /* FIXME: We ought to call the same error-handling
1405 * code here, rather than relying on getopt. */
50135767 1406 option_error();
65417579 1407 exit_cleanup(RERR_SYNTAX);
b11ed3b1 1408 }
5d6bcd44 1409
60ee01f5
WD
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
6b83141d 1416
34758d5c
MP
1417 /* Ignore SIGPIPE; we consistently check error codes and will
1418 * see the EPIPE. */
60ee01f5 1419 SIGACTION(SIGPIPE, SIG_IGN);
55e54e46
WD
1420#ifdef SIGXFSZ
1421 SIGACTION(SIGXFSZ, SIG_IGN);
1422#endif
34758d5c 1423
c226b7c2 1424 /* Initialize push_dir here because on some old systems getcwd
9af87151
WD
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. */
615a5415 1428 push_dir(NULL, 0);
c226b7c2 1429
44e9e221
WD
1430 init_flist();
1431
e8a96e27 1432 if ((write_batch || read_batch) && !am_server) {
b9f592fb 1433 if (write_batch)
66a9dc96 1434 write_batch_shell_file(orig_argc, orig_argv, argc);
b9f592fb 1435
dbbab0c4
WD
1436 if (read_batch && strcmp(batch_name, "-") == 0)
1437 batch_fd = STDIN_FILENO;
1438 else {
1439 batch_fd = do_open(batch_name,
b9f592fb
WD
1440 write_batch ? O_WRONLY | O_CREAT | O_TRUNC
1441 : O_RDONLY, S_IRUSR | S_IWUSR);
dbbab0c4 1442 }
b9f592fb
WD
1443 if (batch_fd < 0) {
1444 rsyserr(FERROR, errno, "Batch file %s open error",
71903f60 1445 full_fname(batch_name));
b9f592fb
WD
1446 exit_cleanup(RERR_FILEIO);
1447 }
9459290a
WD
1448 if (read_batch)
1449 read_stream_flags(batch_fd);
e10664c5
WD
1450 else
1451 write_stream_flags(batch_fd);
1452
6902ed17 1453 }
e8a96e27
WD
1454 if (write_batch < 0)
1455 dry_run = 1;
6902ed17 1456
75aeac44 1457 if (am_daemon && !am_server)
7a6421fa 1458 return daemon_main();
f0fca04e 1459
f7e5068d
WD
1460 if (am_server && protect_args) {
1461 char buf[MAXPATHLEN];
71605b0f 1462 protect_args = 2;
f7e5068d
WD
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
08ac228f
AT
1470 if (argc < 1) {
1471 usage(FERROR);
65417579 1472 exit_cleanup(RERR_SYNTAX);
08ac228f
AT
1473 }
1474
7a6421fa 1475 if (am_server) {
f0359dd0
AT
1476 set_nonblocking(STDIN_FILENO);
1477 set_nonblocking(STDOUT_FILENO);
75aeac44
WD
1478 if (am_daemon)
1479 return start_daemon(STDIN_FILENO, STDOUT_FILENO);
7a6421fa
AT
1480 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1481 }
c627d613 1482
ff81e809 1483 ret = start_client(argc, argv);
d9c7edf6 1484 if (ret == -1)
9098bbf3 1485 exit_cleanup(RERR_STARTCLIENT);
088aac85 1486 else
9098bbf3
MP
1487 exit_cleanup(ret);
1488
0f5a04e3 1489 return ret;
c627d613 1490}