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