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