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