- Fixed an inc_recurse problem with implied dirs not getting created
[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"
a72ba0cf 24#include "io.h"
d9401514
WD
25#if defined CONFIG_LOCALE && defined HAVE_LOCALE_H
26#include <locale.h>
27#endif
c627d613 28
50839b4b
WD
29extern int verbose;
30extern int dry_run;
31extern int list_only;
32eda096 32extern int am_root;
d9c7edf6
WD
33extern int am_server;
34extern int am_sender;
b695f242 35extern int am_generator;
d9c7edf6 36extern int am_daemon;
3ea6e0e7 37extern int inc_recurse;
32eda096 38extern int blocking_io;
47c11975 39extern int remove_source_files;
bf26aa22 40extern int need_messages_from_generator;
051182cb 41extern int kluge_around_eof;
32eda096 42extern int do_stats;
32eda096
WD
43extern int log_got_error;
44extern int module_id;
bb6721dc 45extern int copy_links;
a695b379 46extern int copy_dirlinks;
83926d3c 47extern int keep_dirlinks;
32eda096 48extern int preserve_hard_links;
d04e9c51 49extern int protocol_version;
f3d6d480 50extern int file_total;
32eda096 51extern int recurse;
f7e5068d 52extern int protect_args;
32eda096 53extern int relative_paths;
7c58c991 54extern int sanitize_paths;
c2a2147a 55extern int curr_dir_depth;
615a5415 56extern int curr_dir_len;
7c58c991 57extern int module_id;
32eda096 58extern int rsync_port;
b1df18d7 59extern int whole_file;
32eda096
WD
60extern int read_batch;
61extern int write_batch;
b9f592fb 62extern int batch_fd;
32eda096
WD
63extern int filesfrom_fd;
64extern pid_t cleanup_child_pid;
50839b4b 65extern struct stats stats;
860236bf 66extern char *filesfrom_host;
c2c8db91 67extern char *partial_dir;
7c58c991 68extern char *basis_dir[];
32eda096
WD
69extern char *rsync_path;
70extern char *shell_cmd;
9b3318b0 71extern char *batch_name;
a39da29a 72extern char *password_file;
615a5415 73extern char curr_dir[MAXPATHLEN];
da131912 74extern struct file_list *first_flist;
c2c8db91 75extern struct filter_list_struct server_filter_list;
57dee64e
WD
76
77int local_server = 0;
2a94207a 78int new_root_dir = 0;
e208631a 79int daemon_over_rsh = 0;
05278935 80mode_t orig_umask = 0;
f3d6d480 81int batch_gen_fd = -1;
c627d613 82
91c5833b
WD
83/* There's probably never more than at most 2 outstanding child processes,
84 * but set it higher, just in case. */
84e6d6fd 85#define MAXCHILDPROCS 7
ee7118a8 86
8261af74
WD
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
60ee01f5
WD
93static struct sigaction sigact;
94#endif
95
ee7118a8
DD
96struct pid_status {
97 pid_t pid;
84e6d6fd 98 int status;
ee7118a8
DD
99} pid_stat_table[MAXCHILDPROCS];
100
33c4b445
WD
101static time_t starttime, endtime;
102static int64 total_read, total_written;
103
e5a2b854 104static void show_malloc_stats(void);
82980a23 105
97d8e709 106/* Works like waitpid(), but if we already harvested the child pid in our
6d59ac19 107 * remember_children(), we succeed instead of returning an error. */
97d8e709 108pid_t wait_process(pid_t pid, int *status_ptr, int flags)
82980a23 109{
d365e229
WD
110 pid_t waited_pid;
111
112 do {
113 waited_pid = waitpid(pid, status_ptr, flags);
114 } while (waited_pid == -1 && errno == EINTR);
d9c7edf6 115
6fb812f7 116 if (waited_pid == -1 && errno == ECHILD) {
97d8e709 117 /* Status of requested child no longer available: check to
6d59ac19 118 * see if it was processed by remember_children(). */
97d8e709 119 int cnt;
84e6d6fd 120 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
ee7118a8 121 if (pid == pid_stat_table[cnt].pid) {
97d8e709 122 *status_ptr = pid_stat_table[cnt].status;
ee7118a8 123 pid_stat_table[cnt].pid = 0;
97d8e709 124 return pid;
ee7118a8
DD
125 }
126 }
127 }
128
97d8e709
WD
129 return waited_pid;
130}
131
132/* Wait for a process to exit, calling io_flush while waiting. */
84e6d6fd 133static void wait_process_with_flush(pid_t pid, int *exit_code_ptr)
97d8e709
WD
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
d9c7edf6
WD
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
dbefb6b4 146 * this to the caller so that they know something went wrong. */
84e6d6fd
WD
147 if (waited_pid < 0) {
148 rsyserr(FERROR, errno, "waitpid");
149 *exit_code_ptr = RERR_WAITCHILD;
150 } else if (!WIFEXITED(status)) {
40e6752f 151#ifdef WCOREDUMP
dbefb6b4 152 if (WCOREDUMP(status))
84e6d6fd 153 *exit_code_ptr = RERR_CRASHED;
40e6752f
WD
154 else
155#endif
156 if (WIFSIGNALED(status))
84e6d6fd 157 *exit_code_ptr = RERR_TERMINATED;
dbefb6b4 158 else
84e6d6fd 159 *exit_code_ptr = RERR_WAITCHILD;
dbefb6b4 160 } else
84e6d6fd 161 *exit_code_ptr = WEXITSTATUS(status);
82980a23
AT
162}
163
b9f592fb
WD
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). */
33c4b445 172static void handle_stats(int f)
c627d613 173{
33c4b445
WD
174 endtime = time(NULL);
175
b9f592fb 176 /* Cache two stats because the read/write code can change it. */
33c4b445
WD
177 total_read = stats.total_read;
178 total_written = stats.total_written;
7a6421fa 179
7bb7058e 180 if (do_stats && verbose > 1) {
5c15e29f 181 /* These come out from every process */
7bb7058e 182 show_malloc_stats();
86943126 183 show_flist_stats();
5c15e29f
MP
184 }
185
e5fbaa71
S
186 if (am_generator)
187 return;
188
248fbb8c 189 if (am_daemon) {
83926d3c
WD
190 if (f == -1 || !am_sender)
191 return;
248fbb8c
AT
192 }
193
e19452a9 194 if (am_server) {
3e491682 195 if (am_sender) {
a72ba0cf
WD
196 write_varlong30(f, total_read, 3);
197 write_varlong30(f, total_written, 3);
198 write_varlong30(f, stats.total_size, 3);
f0f7e760 199 if (protocol_version >= 29) {
a72ba0cf
WD
200 write_varlong30(f, stats.flist_buildtime, 3);
201 write_varlong30(f, stats.flist_xfertime, 3);
f0f7e760 202 }
e19452a9 203 }
7a6421fa
AT
204 return;
205 }
e19452a9
DD
206
207 /* this is the client */
d9c7edf6 208
9d19f8a5 209 if (f < 0 && !am_sender) /* e.g. when we got an empty file list. */
0f78b815 210 ;
9d19f8a5 211 else if (!am_sender) {
58c5c245
WD
212 /* Read the first two in opposite order because the meaning of
213 * read/write swaps when switching from sender to receiver. */
a72ba0cf
WD
214 total_written = read_varlong30(f, 3);
215 total_read = read_varlong30(f, 3);
216 stats.total_size = read_varlong30(f, 3);
f0f7e760 217 if (protocol_version >= 29) {
a72ba0cf
WD
218 stats.flist_buildtime = read_varlong30(f, 3);
219 stats.flist_xfertime = read_varlong30(f, 3);
f0f7e760 220 }
e4676bb5 221 } else if (write_batch) {
b9f592fb
WD
222 /* The --read-batch process is going to be a client
223 * receiver, so we need to give it the stats. */
a72ba0cf
WD
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);
f0f7e760 227 if (protocol_version >= 29) {
a72ba0cf
WD
228 write_varlong30(batch_fd, stats.flist_buildtime, 3);
229 write_varlong30(batch_fd, stats.flist_xfertime, 3);
f0f7e760 230 }
a800434a 231 }
e4676bb5 232}
a800434a 233
e4676bb5
WD
234static void output_summary(void)
235{
a800434a 236 if (do_stats) {
b64ee91a
WD
237 rprintf(FCLIENT, "\n");
238 rprintf(FINFO,"Number of files: %d\n", stats.num_files);
d9c7edf6
WD
239 rprintf(FINFO,"Number of files transferred: %d\n",
240 stats.num_transferred_files);
60613dc8
WD
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));
eb0144d7
WD
249 rprintf(FINFO,"File list size: %s\n",
250 human_num(stats.flist_size));
f0f7e760
WD
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 }
60613dc8
WD
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));
7a6421fa 263 }
d9c7edf6 264
e19452a9 265 if (verbose || do_stats) {
b64ee91a 266 rprintf(FCLIENT, "\n");
b9f592fb 267 rprintf(FINFO,
b64ee91a 268 "sent %s bytes received %s bytes %s bytes/sec\n",
60613dc8
WD
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),
b9f592fb 273 (double)stats.total_size / (total_written+total_read));
e19452a9 274 }
fc8a6b97
AT
275
276 fflush(stdout);
277 fflush(stderr);
c627d613
AT
278}
279
280
e5a2b854
MP
281/**
282 * If our C library can get malloc statistics, then show them to FINFO
283 **/
284static void show_malloc_stats(void)
285{
4f5b0756 286#ifdef HAVE_MALLINFO
e5a2b854
MP
287 struct mallinfo mi;
288
289 mi = mallinfo();
290
b64ee91a
WD
291 rprintf(FCLIENT, "\n");
292 rprintf(FINFO, RSYNC_NAME "[%d] (%s%s%s) heap statistics:\n",
f846a9bf
WD
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);
e5a2b854
MP
317#endif /* HAVE_MALLINFO */
318}
319
320
0882faa2 321/* Start the remote shell. cmd may be NULL to use the default. */
f7e5068d
WD
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)
c627d613 324{
6c2e5b56 325 int i, argc = 0;
887e553f 326 char *args[MAX_ARGS];
19b27a48 327 pid_t ret;
82f0c63e 328 char *dir = NULL;
bb4aa89c 329 int dash_l_set = 0;
366345fe 330
088aac85 331 if (!read_batch && !local_server) {
82f0c63e 332 char *t, *f, in_quote = '\0';
9af87151 333 char *rsh_env = getenv(RSYNC_RSH_ENV);
366345fe 334 if (!cmd)
9af87151 335 cmd = rsh_env;
366345fe
AT
336 if (!cmd)
337 cmd = RSYNC_RSH;
338 cmd = strdup(cmd);
d9c7edf6 339 if (!cmd)
366345fe
AT
340 goto oom;
341
82f0c63e
WD
342 for (t = f = cmd; *f; f++) {
343 if (*f == ' ')
344 continue;
e7a392c7 345 /* Comparison leaves rooms for server_options(). */
f7e5068d
WD
346 if (argc >= MAX_ARGS - MAX_SERVER_ARGS)
347 goto arg_overflow;
82f0c63e
WD
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';
887e553f 373 }
c627d613 374
d9c7edf6 375 /* check to see if we've already been given '-l user' in
9af87151 376 * the remote-shell command */
bb4aa89c
WD
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
4f5b0756 382#ifdef HAVE_REMSH
366345fe
AT
383 /* remsh (on HPUX) takes the arguments the other way around */
384 args[argc++] = machine;
bb4aa89c 385 if (user && !(daemon_over_rsh && dash_l_set)) {
366345fe
AT
386 args[argc++] = "-l";
387 args[argc++] = user;
388 }
7b8356d0 389#else
bb4aa89c 390 if (user && !(daemon_over_rsh && dash_l_set)) {
366345fe
AT
391 args[argc++] = "-l";
392 args[argc++] = user;
393 }
394 args[argc++] = machine;
7b8356d0 395#endif
c627d613 396
366345fe 397 args[argc++] = rsync_path;
c627d613 398
9af87151 399 if (blocking_io < 0) {
90e22f4b
WD
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;
66b71163 407 }
e384bfbd 408
93689aa5 409 server_options(args,&argc);
e7a392c7 410
f7e5068d
WD
411 if (argc >= MAX_ARGS - 2)
412 goto arg_overflow;
366345fe 413 }
c627d613 414
366345fe 415 args[argc++] = ".";
76076c4b 416
f7e5068d
WD
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 }
c627d613 428
366345fe 429 args[argc] = NULL;
c627d613 430
366345fe 431 if (verbose > 3) {
e7a392c7 432 for (i = 0; i < argc; i++)
b64ee91a
WD
433 rprintf(FCLIENT, "cmd[%d]=%s ", i, args[i]);
434 rprintf(FCLIENT, "\n");
366345fe
AT
435 }
436
c0d8e84c
WD
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];
f7e5068d
WD
444 *f_out_p = from_gen_pipe[1];
445 *f_in_p = batch_fd;
c0d8e84c
WD
446 ret = -1; /* no child pid */
447 } else if (local_server) {
b1df18d7
WD
448 /* If the user didn't request --[no-]whole-file, force
449 * it on, but only if we're not batch processing. */
c0d8e84c 450 if (whole_file < 0 && !write_batch)
b1df18d7 451 whole_file = 1;
f7e5068d
WD
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 }
c627d613 473
3a69fad0
WD
474 if (dir)
475 free(dir);
82306bf6 476
366345fe 477 return ret;
c627d613 478
acee11fc 479 oom:
366345fe
AT
480 out_of_memory("do_cmd");
481 return 0; /* not reached */
c627d613
AT
482}
483
eb598fac
WD
484/* The receiving side operates in one of two modes:
485 *
cc8c5057
WD
486 * 1. it receives any number of files into a destination directory,
487 * placing them according to their names in the file-list.
eb598fac
WD
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 *
a7d461fc
WD
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. */
eb598fac 497static char *get_local_name(struct file_list *flist, char *dest_path)
c627d613 498{
7a6421fa 499 STRUCT_STAT st;
a7d461fc 500 int statret;
eb598fac 501 char *cp;
c627d613 502
eb598fac
WD
503 if (verbose > 2) {
504 rprintf(FINFO, "get_local_name count=%d %s\n",
f3d6d480 505 file_total, NS(dest_path));
eb598fac 506 }
1f0610ef 507
ee8e2b15 508 if (!dest_path || list_only)
1f0610ef 509 return NULL;
c95da96a 510
a7d461fc 511 /* See what currently exists at the destination. */
1a7f3d99 512 if ((statret = do_stat(dest_path, &st)) == 0) {
a7d461fc 513 /* If the destination is a dir, enter it and use mode 1. */
1ff5450d 514 if (S_ISDIR(st.st_mode)) {
615a5415 515 if (!push_dir(dest_path, 0)) {
982e05bb 516 rsyserr(FERROR, errno, "push_dir#1 %s failed",
eb598fac 517 full_fname(dest_path));
65417579 518 exit_cleanup(RERR_FILESELECT);
1ff5450d
AT
519 }
520 return NULL;
521 }
f3d6d480 522 if (file_total > 1) {
eb598fac
WD
523 rprintf(FERROR,
524 "ERROR: destination must be a directory when"
525 " copying more than 1 file\n");
65417579 526 exit_cleanup(RERR_FILESELECT);
1ff5450d 527 }
f3d6d480 528 if (file_total == 1 && S_ISDIR(flist->files[0]->mode)) {
44c26bf2
WD
529 rprintf(FERROR,
530 "ERROR: cannot overwrite non-directory"
531 " with a directory\n");
532 exit_cleanup(RERR_FILESELECT);
533 }
cc8c5057 534 } else if (errno != ENOENT) {
a7d461fc
WD
535 /* If we don't know what's at the destination, fail. */
536 rsyserr(FERROR, errno, "ERROR: cannot stat destination %s",
cc8c5057
WD
537 full_fname(dest_path));
538 exit_cleanup(RERR_FILESELECT);
1ff5450d
AT
539 }
540
eb598fac
WD
541 cp = strrchr(dest_path, '/');
542
a7d461fc
WD
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. */
f3d6d480 546 if (file_total > 1 || (cp && !cp[1])) {
eb598fac
WD
547 /* Lop off the final slash (if any). */
548 if (cp && !cp[1])
549 *cp = '\0';
550
a7d461fc
WD
551 if (statret == 0) {
552 rprintf(FERROR,
553 "ERROR: destination path is not a directory\n");
554 exit_cleanup(RERR_SYNTAX);
555 }
556
05278935 557 if (mkdir_defmode(dest_path) != 0) {
eb598fac
WD
558 rsyserr(FERROR, errno, "mkdir %s failed",
559 full_fname(dest_path));
560 exit_cleanup(RERR_FILEIO);
561 }
1ff5450d 562
2a94207a
WD
563 new_root_dir = 1;
564
eb598fac
WD
565 if (verbose)
566 rprintf(FINFO, "created directory %s\n", dest_path);
567
568 if (dry_run) {
615a5415 569 /* Indicate that dest dir doesn't really exist. */
eb598fac 570 dry_run++;
eb598fac
WD
571 }
572
615a5415 573 if (!push_dir(dest_path, dry_run > 1)) {
eb598fac
WD
574 rsyserr(FERROR, errno, "push_dir#2 %s failed",
575 full_fname(dest_path));
576 exit_cleanup(RERR_FILESELECT);
577 }
e5a96f0f 578
e5a96f0f 579 return NULL;
1ff5450d
AT
580 }
581
eb598fac
WD
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';
615a5415 593 if (!push_dir(dest_path, 0)) {
eb598fac
WD
594 rsyserr(FERROR, errno, "push_dir#3 %s failed",
595 full_fname(dest_path));
65417579 596 exit_cleanup(RERR_FILESELECT);
1ff5450d 597 }
eb598fac 598 *cp = '/';
1ff5450d 599
eb598fac 600 return cp + 1;
c627d613
AT
601}
602
615a5415
WD
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{
ddcba3f0 608 char **dir, *new, *slash;
615a5415
WD
609 int len;
610
ddcba3f0
WD
611 if (dry_run <= 1)
612 return;
613
614 slash = strrchr(curr_dir, '/');
615
615a5415
WD
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");
ddcba3f0
WD
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);
615a5415
WD
632 *dir = new;
633 }
634}
c627d613 635
1a8e5c97 636/* This is only called by the sender. */
16edf865 637static void read_final_goodbye(int f_in)
4e0fcd85 638{
f3d6d480
WD
639 int i, iflags, xlen;
640 uchar fnamecmp_type;
641 char xname[MAXPATHLEN];
1a8e5c97
WD
642
643 if (protocol_version < 29)
644 i = read_int(f_in);
645 else {
16edf865
WD
646 i = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
647 xname, &xlen);
4e0fcd85
WD
648 }
649
82ad07c4 650 if (i != NDX_DONE) {
c7791b8c
WD
651 rprintf(FERROR, "Invalid packet at end of run (%d) [%s]\n",
652 i, who_am_i());
1a8e5c97 653 exit_cleanup(RERR_PROTOCOL);
4e0fcd85
WD
654 }
655}
656
eb598fac 657static void do_server_sender(int f_in, int f_out, int argc, char *argv[])
c627d613 658{
7a6421fa
AT
659 struct file_list *flist;
660 char *dir = argv[0];
c627d613 661
45e08edb
WD
662 if (verbose > 2) {
663 rprintf(FINFO, "server_sender starting pid=%ld\n",
664 (long)getpid());
665 }
d9c7edf6 666
2adbcdc7 667 if (am_daemon && lp_write_only(module_id)) {
7a92ded3
WD
668 rprintf(FERROR, "ERROR: module is write only\n");
669 exit_cleanup(RERR_SYNTAX);
670 return;
671 }
47c11975 672 if (am_daemon && lp_read_only(module_id) && remove_source_files) {
bf26aa22 673 rprintf(FERROR,
044ccbaa 674 "ERROR: --remove-%s-files cannot be used with a read-only module\n",
47c11975 675 remove_source_files == 1 ? "source" : "sent");
bf26aa22
WD
676 exit_cleanup(RERR_SYNTAX);
677 return;
678 }
7a92ded3 679
582c1589 680 if (!relative_paths) {
615a5415 681 if (!push_dir(dir, 0)) {
582c1589
WD
682 rsyserr(FERROR, errno, "push_dir#3 %s failed",
683 full_fname(dir));
684 exit_cleanup(RERR_FILESELECT);
685 }
7a6421fa
AT
686 }
687 argc--;
688 argv++;
d9c7edf6 689
48a1ff0d 690 if (argc == 0 && (recurse || list_only)) {
e1f67417 691 argc = 1;
7a6421fa
AT
692 argv--;
693 argv[0] = ".";
694 }
d9c7edf6 695
7a6421fa 696 flist = send_file_list(f_out,argc,argv);
9decb4d2 697 if (!flist || flist->used == 0)
8d9dc9f9 698 exit_cleanup(0);
8d9dc9f9 699
f3d6d480 700 io_start_buffering_in(f_in);
da3478b2 701
f3d6d480 702 send_files(f_in, f_out);
f1e3656e 703 io_flush(FULL_FLUSH);
33c4b445 704 handle_stats(f_out);
4e0fcd85 705 if (protocol_version >= 24)
16edf865 706 read_final_goodbye(f_in);
f1e3656e 707 io_flush(FULL_FLUSH);
7a6421fa 708 exit_cleanup(0);
c627d613
AT
709}
710
711
f3d6d480 712static int do_recv(int f_in, int f_out, char *local_name)
dc5ddbcc 713{
d186eb1a 714 int pid;
84e6d6fd 715 int exit_code = 0;
c70e07d9 716 int error_pipe[2];
dc5ddbcc 717
bb6721dc
WD
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. */
a695b379 720 copy_links = copy_dirlinks = 0;
bb6721dc 721
1e1ca253 722#ifdef SUPPORT_HARD_LINKS
d4d6646a 723 if (preserve_hard_links && !inc_recurse)
da131912 724 match_hard_links(first_flist);
1e1ca253 725#endif
dc5ddbcc 726
c70e07d9 727 if (fd_pair(error_pipe) < 0) {
ab759cd2 728 rsyserr(FERROR, errno, "pipe failed in do_recv");
c8f2f857 729 exit_cleanup(RERR_IPC);
554e0a8d 730 }
d9c7edf6 731
f1e3656e 732 io_flush(NORMAL_FLUSH);
c6e7fcb4 733
ba449e44 734 if ((pid = do_fork()) == -1) {
c8f2f857 735 rsyserr(FERROR, errno, "fork failed in do_recv");
ba449e44
WD
736 exit_cleanup(RERR_IPC);
737 }
738
739 if (pid == 0) {
554e0a8d 740 close(error_pipe[0]);
3a69fad0
WD
741 if (f_in != f_out)
742 close(f_out);
e08c9610 743
554e0a8d 744 /* we can't let two processes write to the socket at one time */
f3d6d480 745 io_end_multiplex_out();
554e0a8d
AT
746
747 /* set place to send errors */
f1e3656e 748 set_msg_fd_out(error_pipe[1]);
f3d6d480 749 io_start_buffering_out(error_pipe[1]);
554e0a8d 750
f3d6d480 751 recv_files(f_in, local_name);
f1e3656e 752 io_flush(FULL_FLUSH);
33c4b445 753 handle_stats(f_in);
e08c9610 754
332cf6df 755 send_msg(MSG_DONE, "", 1, 0);
a72ba0cf 756 write_varlong(error_pipe[1], stats.total_read, 3);
f1e3656e 757 io_flush(FULL_FLUSH);
4e0fcd85 758
40df65fd
WD
759 /* Handle any keep-alive packets from the post-processing work
760 * that the generator does. */
4e0fcd85 761 if (protocol_version >= 29) {
f3d6d480
WD
762 int iflags, xlen;
763 uchar fnamecmp_type;
764 char xname[MAXPATHLEN];
765
051182cb 766 kluge_around_eof = -1;
1a8e5c97
WD
767
768 /* This should only get stopped via a USR2 signal. */
16edf865 769 read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
f3d6d480 770 xname, &xlen);
1a8e5c97 771
3485ae83
WD
772 rprintf(FERROR, "Invalid packet at end of run [%s]\n",
773 who_am_i());
1a8e5c97 774 exit_cleanup(RERR_PROTOCOL);
4e0fcd85
WD
775 }
776
9e0582f9
WD
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! */
f1e3656e
WD
780 while (1)
781 msleep(20);
d186eb1a 782 }
dc5ddbcc 783
b695f242 784 am_generator = 1;
f3d6d480
WD
785
786 io_end_multiplex_in();
e8a96e27 787 if (write_batch && !am_server)
b9f592fb 788 stop_write_batch();
b695f242 789
554e0a8d 790 close(error_pipe[1]);
3a69fad0
WD
791 if (f_in != f_out)
792 close(f_in);
e1b3d5c4 793
f3d6d480 794 io_start_buffering_out(f_out);
b3e10ed7 795
f1e3656e 796 set_msg_fd_in(error_pipe[0]);
f3d6d480 797 io_start_buffering_in(error_pipe[0]);
554e0a8d 798
da131912
WD
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
f3d6d480 807 generate_files(f_out, local_name);
8d9dc9f9 808
33c4b445 809 handle_stats(-1);
f1e3656e 810 io_flush(FULL_FLUSH);
d04e9c51 811 if (protocol_version >= 24) {
8ada7518 812 /* send a final goodbye message */
9ae7a2cd 813 write_ndx(f_out, NDX_DONE);
8ada7518 814 }
f1e3656e 815 io_flush(FULL_FLUSH);
8ada7518 816
f1e3656e 817 set_msg_fd_in(-1);
089a2435 818 kill(pid, SIGUSR2);
84e6d6fd
WD
819 wait_process_with_flush(pid, &exit_code);
820 return exit_code;
dc5ddbcc
AT
821}
822
f3d6d480 823static void do_server_recv(int f_in, int f_out, int argc, char *argv[])
c627d613 824{
84e6d6fd 825 int exit_code;
7a6421fa 826 struct file_list *flist;
6c2e5b56 827 char *local_name = NULL;
7a6421fa 828 char *dir = NULL;
07bff66f
WD
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 }
f0fca04e 836
45e08edb
WD
837 if (verbose > 2) {
838 rprintf(FINFO, "server_recv(%d) starting pid=%ld\n",
839 argc, (long)getpid());
840 }
09b7f5db 841
2adbcdc7 842 if (am_daemon && lp_read_only(module_id)) {
09b7f5db
AT
843 rprintf(FERROR,"ERROR: module is read only\n");
844 exit_cleanup(RERR_SYNTAX);
845 return;
846 }
847
7a6421fa
AT
848 if (argc > 0) {
849 dir = argv[0];
850 argc--;
851 argv++;
615a5415 852 if (!am_daemon && !push_dir(dir, 0)) {
982e05bb
WD
853 rsyserr(FERROR, errno, "push_dir#4 %s failed",
854 full_fname(dir));
65417579 855 exit_cleanup(RERR_FILESELECT);
d9c7edf6 856 }
7a6421fa 857 }
c627d613 858
f3d6d480
WD
859 if (protocol_version >= 30)
860 io_start_multiplex_in();
861 else
862 io_start_buffering_in(f_in);
57dee64e 863 recv_filter_list(f_in);
c627d613 864
7c2a9e76 865 if (filesfrom_fd >= 0) {
07bff66f
WD
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. */
7c2a9e76
WD
871 io_set_filesfrom_fds(filesfrom_fd, f_out);
872 filesfrom_fd = -1;
873 }
874
b9f592fb 875 flist = recv_file_list(f_in);
4c36a13e
AT
876 if (!flist) {
877 rprintf(FERROR,"server_recv: recv_file_list error\n");
65417579 878 exit_cleanup(RERR_FILESELECT);
7a6421fa 879 }
3ea6e0e7 880 if (inc_recurse && file_total == 1)
f3d6d480
WD
881 recv_additional_file_list(f_in);
882 verbose = save_verbose;
d9c7edf6 883
29fad7a3 884 if (argc > 0)
7a6421fa 885 local_name = get_local_name(flist,argv[0]);
c627d613 886
7c58c991
WD
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) {
7c58c991 890 char **dir;
c2c8db91 891 for (dir = basis_dir; *dir; dir++) {
c2a2147a 892 *dir = sanitize_path(NULL, *dir, NULL, curr_dir_depth, NULL);
c2c8db91
WD
893 }
894 if (partial_dir) {
895 partial_dir = sanitize_path(NULL, partial_dir, NULL, curr_dir_depth, NULL);
c2c8db91
WD
896 }
897 }
ddcba3f0 898 fix_basis_dirs();
615a5415 899
c2c8db91
WD
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 }
7c58c991
WD
915 }
916
f3d6d480 917 exit_code = do_recv(f_in, f_out, local_name);
84e6d6fd 918 exit_cleanup(exit_code);
c627d613
AT
919}
920
921
734a94a2 922int child_main(int argc, char *argv[])
25d34a5c
MP
923{
924 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
734a94a2 925 return 0;
25d34a5c
MP
926}
927
928
9486289c 929void start_server(int f_in, int f_out, int argc, char *argv[])
366345fe 930{
f0359dd0
AT
931 set_nonblocking(f_in);
932 set_nonblocking(f_out);
933
da3478b2
WD
934 io_set_sock_fds(f_in, f_out);
935 setup_protocol(f_out, f_in);
332cf6df 936#ifdef ICONV_CONST
9656de5d
WD
937 setup_iconv();
938#endif
da3478b2 939
d04e9c51 940 if (protocol_version >= 23)
da3478b2 941 io_start_multiplex_out();
7a6421fa 942
7a6421fa 943 if (am_sender) {
83926d3c 944 keep_dirlinks = 0; /* Must be disabled on the sender. */
bf26aa22
WD
945 if (need_messages_from_generator)
946 io_start_multiplex_in();
7842418b 947 recv_filter_list(f_in);
7a6421fa 948 do_server_sender(f_in, f_out, argc, argv);
07613def 949 } else
7a6421fa 950 do_server_recv(f_in, f_out, argc, argv);
7a6421fa 951 exit_cleanup(0);
366345fe
AT
952}
953
0ba48136
MP
954
955/*
956 * This is called once the connection has been negotiated. It is used
957 * for rsyncd, remote-shell, and local connections.
958 */
19b27a48 959int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
9486289c 960{
088aac85 961 struct file_list *flist = NULL;
84e6d6fd 962 int exit_code = 0, exit_code2 = 0;
9486289c 963 char *local_name = NULL;
19b27a48
AT
964
965 cleanup_child_pid = pid;
67a28eb2 966 if (!read_batch) {
b9f592fb
WD
967 set_nonblocking(f_in);
968 set_nonblocking(f_out);
969 }
f0359dd0 970
da3478b2 971 io_set_sock_fds(f_in, f_out);
6d7b6081 972 setup_protocol(f_out,f_in);
332cf6df 973#ifdef ICONV_CONST
9656de5d
WD
974 setup_iconv();
975#endif
6d7b6081 976
18882701
WD
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
9486289c 987 if (am_sender) {
83926d3c 988 keep_dirlinks = 0; /* Must be disabled on the sender. */
f3d6d480
WD
989 if (protocol_version >= 30)
990 io_start_multiplex_out();
991 else
992 io_start_buffering_out(f_out);
860236bf 993 if (!filesfrom_host)
a0a33ee5 994 set_msg_fd_in(f_in);
57dee64e 995 send_filter_list(f_out);
860236bf 996 if (filesfrom_host)
7c2a9e76 997 filesfrom_fd = f_in;
b9f592fb 998
e8a96e27 999 if (write_batch && !am_server)
b9f592fb 1000 start_write_batch(f_out);
a00628b3 1001 flist = send_file_list(f_out, argc, argv);
a0a33ee5 1002 set_msg_fd_in(-1);
d9c7edf6 1003 if (verbose > 3)
9486289c 1004 rprintf(FINFO,"file list sent\n");
f3d6d480
WD
1005
1006 if (protocol_version >= 23)
1007 io_start_multiplex_in();
e1b3d5c4 1008
f1e3656e 1009 io_flush(NORMAL_FLUSH);
f3d6d480 1010 send_files(f_in, f_out);
f1e3656e 1011 io_flush(FULL_FLUSH);
33c4b445 1012 handle_stats(-1);
4e0fcd85 1013 if (protocol_version >= 24)
16edf865 1014 read_final_goodbye(f_in);
9486289c
AT
1015 if (pid != -1) {
1016 if (verbose > 3)
08a740ff 1017 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
f1e3656e 1018 io_flush(FULL_FLUSH);
84e6d6fd 1019 wait_process_with_flush(pid, &exit_code);
9486289c 1020 }
33c4b445 1021 output_summary();
c87ae64a 1022 io_flush(FULL_FLUSH);
84e6d6fd 1023 exit_cleanup(exit_code);
9486289c 1024 }
f7632fc6 1025
f3d6d480
WD
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 }
bf26aa22 1032
48a1ff0d
WD
1033 if (argc == 0)
1034 list_only |= 1;
d9c7edf6 1035
57dee64e 1036 send_filter_list(read_batch ? -1 : f_out);
d9c7edf6 1037
7c2a9e76
WD
1038 if (filesfrom_fd >= 0) {
1039 io_set_filesfrom_fds(filesfrom_fd, f_out);
1040 filesfrom_fd = -1;
1041 }
1042
e8a96e27 1043 if (write_batch && !am_server)
b9f592fb 1044 start_write_batch(f_in);
9486289c 1045 flist = recv_file_list(f_in);
3ea6e0e7 1046 if (inc_recurse && file_total == 1)
f3d6d480 1047 recv_additional_file_list(f_in);
d9c7edf6 1048
9decb4d2 1049 if (flist && flist->used > 0) {
9d19f8a5 1050 local_name = get_local_name(flist, argv[0]);
d9c7edf6 1051
ddcba3f0 1052 fix_basis_dirs();
615a5415 1053
f3d6d480 1054 exit_code2 = do_recv(f_in, f_out, local_name);
9d19f8a5
WD
1055 } else {
1056 handle_stats(-1);
1057 output_summary();
1058 }
d9c7edf6 1059
9486289c 1060 if (pid != -1) {
8d9dc9f9 1061 if (verbose > 3)
08a740ff 1062 rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
f1e3656e 1063 io_flush(FULL_FLUSH);
84e6d6fd 1064 wait_process_with_flush(pid, &exit_code);
9486289c 1065 }
d9c7edf6 1066
84e6d6fd 1067 return MAX(exit_code, exit_code2);
9486289c
AT
1068}
1069
07613def 1070static int copy_argv(char *argv[])
7169bb4a
MP
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
c1a04ecb 1086/**
0ba48136
MP
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.
0b4af330
MP
1090 *
1091 * Calls either start_socket_client (for sockets) or do_cmd and
1092 * client_run (for ssh).
c1a04ecb 1093 **/
fc8a6b97 1094static int start_client(int argc, char *argv[])
5d6bcd44 1095{
f7e5068d
WD
1096 char *p, *shell_machine = NULL, *shell_user = NULL;
1097 char **remote_argv;
1098 int remote_argc;
1099 int f_in, f_out;
19b27a48
AT
1100 int ret;
1101 pid_t pid;
7169bb4a
MP
1102
1103 /* Don't clobber argv[] so that ps(1) can still show the right
d9c7edf6 1104 * command line. */
f7e5068d
WD
1105 if ((ret = copy_argv(argv)) != 0)
1106 return ret;
5d6bcd44 1107
d16c245f 1108 if (!read_batch) { /* for read_batch, NO source is specified */
f7e5068d
WD
1109 char *path = check_for_hostspec(argv[0], &shell_machine, &rsync_port);
1110 if (path) { /* source is remote */
9425918d
WD
1111 char *dummy1;
1112 int dummy2;
f7e5068d
WD
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)) {
9425918d
WD
1120 rprintf(FERROR,
1121 "The source and destination cannot both be remote.\n");
1122 exit_cleanup(RERR_SYNTAX);
f7e5068d
WD
1123 } else {
1124 remote_argc--; /* don't count dest */
1125 argc = 1;
9425918d 1126 }
860236bf
WD
1127 if (filesfrom_host && *filesfrom_host
1128 && strcmp(filesfrom_host, shell_machine) != 0) {
7c2a9e76 1129 rprintf(FERROR,
50b31539 1130 "--files-from hostname is not the same as the transfer hostname\n");
7c2a9e76
WD
1131 exit_cleanup(RERR_SYNTAX);
1132 }
42ccb4c0 1133 am_sender = 0;
e208631a
WD
1134 if (rsync_port)
1135 daemon_over_rsh = shell_cmd ? 1 : -1;
42ccb4c0
WD
1136 } else { /* source is local, check dest arg */
1137 am_sender = 1;
1138
f7e5068d 1139 if (argc > 1) {
ee8e2b15 1140 p = argv[--argc];
f7e5068d
WD
1141 remote_argv = argv + argc;
1142 } else {
1143 static char *dotarg[1] = { "." };
1144 p = dotarg[0];
1145 remote_argv = dotarg;
ee8e2b15 1146 list_only = 1;
d9c7edf6 1147 }
f7e5068d 1148 remote_argc = 1;
a125c82a 1149
f7e5068d
WD
1150 path = check_for_hostspec(p, &shell_machine, &rsync_port);
1151 if (path && filesfrom_host && *filesfrom_host
860236bf 1152 && strcmp(filesfrom_host, shell_machine) != 0) {
7c2a9e76 1153 rprintf(FERROR,
50b31539 1154 "--files-from hostname is not the same as the transfer hostname\n");
7c2a9e76
WD
1155 exit_cleanup(RERR_SYNTAX);
1156 }
f7e5068d 1157 if (!path) { /* no hostspec found, so src & dest are local */
d9c7edf6 1158 local_server = 1;
860236bf 1159 if (filesfrom_host) {
7c2a9e76 1160 rprintf(FERROR,
50b31539 1161 "--files-from cannot be remote when the transfer is local\n");
7c2a9e76
WD
1162 exit_cleanup(RERR_SYNTAX);
1163 }
860236bf 1164 shell_machine = NULL;
f7e5068d
WD
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 }
5d6bcd44 1170 }
d16c245f 1171 } else { /* read_batch */
d9c7edf6 1172 local_server = 1;
f7e5068d 1173 if (check_for_hostspec(argv[argc-1], &shell_machine, &rsync_port)) {
b9f592fb
WD
1174 rprintf(FERROR, "remote destination is not allowed with --read-batch\n");
1175 exit_cleanup(RERR_SYNTAX);
1176 }
f7e5068d
WD
1177 remote_argv = argv + argc - 1;
1178 remote_argc = 1;
6902ed17
MP
1179 }
1180
f7e5068d
WD
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;
e208631a
WD
1205 }
1206
1207 if (daemon_over_rsh < 0)
f7e5068d 1208 return start_socket_client(shell_machine, remote_argc, remote_argv, argc, argv);
e208631a 1209
a39da29a 1210 if (password_file && !daemon_over_rsh) {
327c559a
WD
1211 rprintf(FERROR, "The --password-file option may only be "
1212 "used when accessing an rsync daemon.\n");
a39da29a
WD
1213 exit_cleanup(RERR_SYNTAX);
1214 }
1215
5d6bcd44 1216 if (shell_machine) {
6fc048f4 1217 p = strrchr(shell_machine,'@');
5d6bcd44
AT
1218 if (p) {
1219 *p = 0;
1220 shell_user = shell_machine;
1221 shell_machine = p+1;
1222 }
1223 }
1224
1225 if (verbose > 3) {
9486289c 1226 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
f7e5068d
WD
1227 NS(shell_cmd), NS(shell_machine), NS(shell_user),
1228 remote_argv ? NS(remote_argv[0]) : "");
5d6bcd44 1229 }
d9c7edf6 1230
f7e5068d
WD
1231 pid = do_cmd(shell_cmd, shell_machine, shell_user, remote_argv, remote_argc,
1232 &f_in, &f_out);
75aeac44
WD
1233
1234 /* if we're running an rsync server on the remote host over a
9af87151 1235 * remote shell command, we need to do the RSYNCD protocol first */
75aeac44
WD
1236 if (daemon_over_rsh) {
1237 int tmpret;
f7e5068d 1238 tmpret = start_inband_exchange(f_in, f_out, shell_user, remote_argc, remote_argv);
75aeac44
WD
1239 if (tmpret < 0)
1240 return tmpret;
1241 }
1242
fc8a6b97
AT
1243 ret = client_run(f_in, f_out, pid, argc, argv);
1244
1245 fflush(stdout);
1246 fflush(stderr);
1247
1248 return ret;
5d6bcd44
AT
1249}
1250
366345fe 1251
067669da
WD
1252static RETSIGTYPE sigusr1_handler(UNUSED(int val))
1253{
6bf32edb 1254 exit_cleanup(RERR_SIGNAL1);
82306bf6
AT
1255}
1256
067669da
WD
1257static RETSIGTYPE sigusr2_handler(UNUSED(int val))
1258{
33c4b445
WD
1259 if (!am_server)
1260 output_summary();
40df65fd 1261 close_all();
33c4b445
WD
1262 if (log_got_error)
1263 _exit(RERR_PARTIAL);
8b35435f
AT
1264 _exit(0);
1265}
1266
6d59ac19 1267RETSIGTYPE remember_children(UNUSED(int val))
067669da 1268{
029c1713 1269#ifdef WNOHANG
ee7118a8
DD
1270 int cnt, status;
1271 pid_t pid;
1272 /* An empty waitpid() loop was put here by Tridge and we could never
d9c7edf6 1273 * get him to explain why he put it in, so rather than taking it
ee7118a8
DD
1274 * out we're instead saving the child exit statuses for later use.
1275 * The waitpid() loop presumably eliminates all possibility of leaving
97d8e709 1276 * zombie children, maybe that's why he did it. */
ee7118a8 1277 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
9af87151
WD
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 }
ee7118a8 1286 }
029c1713 1287#endif
8261af74 1288#ifndef HAVE_SIGACTION
6d59ac19 1289 signal(SIGCHLD, remember_children);
60ee01f5 1290#endif
19b27a48
AT
1291}
1292
c0531332
MP
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
4fdc39dd
MP
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
9fb3f7a9
MP
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 **/
067669da 1328static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
c0531332
MP
1329{
1330 char cmd_buf[300];
1331 int ret;
4fdc39dd 1332
83078af5
WD
1333 snprintf(cmd_buf, sizeof cmd_buf, get_panic_action(),
1334 getpid(), getpid());
c0531332
MP
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
5d6bcd44 1345int main(int argc,char *argv[])
d9c7edf6 1346{
ff81e809 1347 int ret;
66a9dc96
WD
1348 int orig_argc = argc;
1349 char **orig_argv = argv;
8261af74
WD
1350#ifdef HAVE_SIGACTION
1351# ifdef HAVE_SIGPROCMASK
60ee01f5 1352 sigset_t sigmask;
5d6bcd44 1353
60ee01f5 1354 sigemptyset(&sigmask);
8261af74 1355# endif
60ee01f5
WD
1356 sigact.sa_flags = SA_NOCLDSTOP;
1357#endif
1358 SIGACTMASK(SIGUSR1, sigusr1_handler);
1359 SIGACTMASK(SIGUSR2, sigusr2_handler);
6d59ac19 1360 SIGACTMASK(SIGCHLD, remember_children);
c0531332 1361#ifdef MAINTAINER_MODE
60ee01f5
WD
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
5d6bcd44 1367
7a6421fa 1368 starttime = time(NULL);
6fe05820 1369 am_root = (MY_UID() == 0);
c627d613 1370
a800434a
AT
1371 memset(&stats, 0, sizeof(stats));
1372
df5e03da
AT
1373 if (argc < 2) {
1374 usage(FERROR);
65417579 1375 exit_cleanup(RERR_SYNTAX);
df5e03da
AT
1376 }
1377
7a6421fa 1378 /* we set a 0 umask so that correct file permissions can be
9af87151 1379 * carried across */
05278935 1380 orig_umask = umask(0);
5d6bcd44 1381
eb598fac
WD
1382#if defined CONFIG_LOCALE && defined HAVE_SETLOCALE
1383 setlocale(LC_CTYPE, "");
1384#endif
1385
50135767 1386 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
d9c7edf6
WD
1387 /* FIXME: We ought to call the same error-handling
1388 * code here, rather than relying on getopt. */
50135767 1389 option_error();
65417579 1390 exit_cleanup(RERR_SYNTAX);
b11ed3b1 1391 }
5d6bcd44 1392
60ee01f5
WD
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
6b83141d 1399
34758d5c
MP
1400 /* Ignore SIGPIPE; we consistently check error codes and will
1401 * see the EPIPE. */
60ee01f5 1402 SIGACTION(SIGPIPE, SIG_IGN);
55e54e46
WD
1403#ifdef SIGXFSZ
1404 SIGACTION(SIGXFSZ, SIG_IGN);
1405#endif
34758d5c 1406
c226b7c2 1407 /* Initialize push_dir here because on some old systems getcwd
9af87151
WD
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. */
615a5415 1411 push_dir(NULL, 0);
c226b7c2 1412
44e9e221
WD
1413 init_flist();
1414
e8a96e27 1415 if ((write_batch || read_batch) && !am_server) {
b9f592fb 1416 if (write_batch)
66a9dc96 1417 write_batch_shell_file(orig_argc, orig_argv, argc);
b9f592fb 1418
dbbab0c4
WD
1419 if (read_batch && strcmp(batch_name, "-") == 0)
1420 batch_fd = STDIN_FILENO;
1421 else {
1422 batch_fd = do_open(batch_name,
b9f592fb
WD
1423 write_batch ? O_WRONLY | O_CREAT | O_TRUNC
1424 : O_RDONLY, S_IRUSR | S_IWUSR);
dbbab0c4 1425 }
b9f592fb
WD
1426 if (batch_fd < 0) {
1427 rsyserr(FERROR, errno, "Batch file %s open error",
71903f60 1428 full_fname(batch_name));
b9f592fb
WD
1429 exit_cleanup(RERR_FILEIO);
1430 }
9459290a
WD
1431 if (read_batch)
1432 read_stream_flags(batch_fd);
e10664c5
WD
1433 else
1434 write_stream_flags(batch_fd);
1435
6902ed17 1436 }
e8a96e27
WD
1437 if (write_batch < 0)
1438 dry_run = 1;
6902ed17 1439
75aeac44 1440 if (am_daemon && !am_server)
7a6421fa 1441 return daemon_main();
f0fca04e 1442
f7e5068d
WD
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
08ac228f
AT
1453 if (argc < 1) {
1454 usage(FERROR);
65417579 1455 exit_cleanup(RERR_SYNTAX);
08ac228f
AT
1456 }
1457
7a6421fa 1458 if (am_server) {
f0359dd0
AT
1459 set_nonblocking(STDIN_FILENO);
1460 set_nonblocking(STDOUT_FILENO);
75aeac44
WD
1461 if (am_daemon)
1462 return start_daemon(STDIN_FILENO, STDOUT_FILENO);
7a6421fa
AT
1463 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1464 }
c627d613 1465
ff81e809 1466 ret = start_client(argc, argv);
d9c7edf6 1467 if (ret == -1)
9098bbf3 1468 exit_cleanup(RERR_STARTCLIENT);
088aac85 1469 else
9098bbf3
MP
1470 exit_cleanup(ret);
1471
0f5a04e3 1472 return ret;
c627d613 1473}